diff --git a/.gitignore b/.gitignore index df48e88d..85e97b01 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1,23 @@ -backend/.venv +backend/*venv +etl/*venv __pycache__/ -.env +.idea +backend/.env +frontend/.env +etl/.env *.pyc - +.vscode node_modules *.log* .nuxt .nitro .cache .output -.env dist - -# deployment dir -deployment -gitlab-templates -.gitlab-ci.yml \ No newline at end of file +.coverage +backend/.DS_Store +.DS_Store +**/*secrets.txt +**/*secret*.json +**/static_content_draft.json +**/static_content_pub.json diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 00000000..17b1d52e --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,5 @@ +{ + "semi": false, + "singleQuote": true, + "trailingComma": "es5" +} \ No newline at end of file diff --git a/LICENSE.md b/LICENSE.md index ed38ebab..72261d7c 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -285,4 +285,4 @@ the rights granted in Article 2 of this Licence and protect the covered Source Code from exclusive appropriation. All other changes or additions to this Appendix require the production of a new -EUPL version. +EUPL version. \ No newline at end of file diff --git a/README.md b/README.md index ab8a3bcd..e35d3c6c 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,18 @@ -# About the Algorithm Register -The Ministry of the Interior and Kingdom Relations is developing the Algorithm Register. The team does this using an open development style, through open source software. Anyone can view the team’s progress on the GitHub of the Ministry of the Interior and Kingdom Relations. The Algorithm Register is under development. The content changes over time. New algorithms are added and algorithms are updated. -The Algorithm Register (algoritmes.overheid.nl) is being developed with open source software. The source code can be viewed here on GitHub. It can be downloaded and reused. Github is a platform with transparent version control, where technology in development can be easily shared. -## Motivation -The government increasingly works digitally and uses more and more algorithms when doing so. The government wants to work towards transparent and responsible use of these algorithms. Therefore, the government is making information about the algorithms used by the government available to everyone: citizens, their representatives, the media and (government) professionals. -See the Frequently Asked Questions on the Algorithm Register for more information. -### Open source software -Will you join us and add your thoughts? To contribute, create an account on GitHub (https://github.com/signup ) and read this readme and the code of conduct to get started. -Once signed-up, you can provide feedback on the code of this website, on the algorithm 'standard', on the published description or on the user-friendliness of the website, etc. -Get started: join us and add your thoughts! +# About the Algorithm Register +The Ministry of the Interior and Kingdom Relations is developing the Algorithm Register. The team does this using an open development style, through open source software. Anyone can view the team’s progress on the GitHub of the Ministry of the Interior and Kingdom Relations. The Algorithm Register is under development. The content changes over time. New algorithms are added and algorithms are updated. +The Algorithm Register (algoritmes.overheid.nl) is being developed with open source software. The source code can be viewed here on GitHub. It can be downloaded and reused. Github is a platform with transparent version control, where technology in development can be easily shared. + +## Motivation + +The government increasingly works digitally and uses more and more algorithms when doing so. The government wants to work towards transparent and responsible use of these algorithms. Therefore, the government is making information about the algorithms used by the government available to everyone: citizens, their representatives, the media and (government) professionals. +See the Frequently Asked Questions on the Algorithm Register for more information. + +### Open source software + +Will you join us and add your thoughts? To contribute, create an account on GitHub (https://github.com/signup ) and read this readme and the code of conduct to get started. +Once signed-up, you can provide feedback on the code of this website, on the algorithm 'standard', on the published description or on the user-friendliness of the website, etc. +Get started: join us and add your thoughts! # Technical information @@ -25,11 +29,11 @@ The documentation below is tested on Ubuntu, but it should work on Windows as we ### Environment variables -Environment variables are stored in `.env`, but because they can contain secrets (passwords), it is not in the repository. Therefore, copy and paste `.env.dummy` to `.env`. For local development, no changes are needed. +Environment variables are stored in `.env` in the frontend and backend, but because they can contain secrets (passwords), it is not in the repository. Therefore, copy and paste `.env.dummy` to `.env`. ### Database -1. Start database. Run from root folder: `docker compose up -d`. +1. Start database. Run from `/backend` folder: `docker compose up -d`. Validate the backend is running by navigating to the GUI (DBgate) on `http://localhost:8093`. There you should be able to open the database `algreg_db`. @@ -39,26 +43,24 @@ All commnands below should be run from the `/backend` directory. 2. Specify Python version to use for virtual environment: `poetry env use `. (The required Python version is specified in `backend/.python-version`.) 3. Install packages: `poetry install`. -4. Run database migrations: `poetry run uvicorn upgrade head`. +4. Run database migrations: `poetry run alembic upgrade head`. 5. Start backend: `poetry run uvicorn app.main:app --reload` -Validate the backend is running by navigating to the documentation on `http://localhost:8000/api-docs`. +Validate the backend is running by navigating to the documentation on `http://localhost:8000/api/api-docs`. ### Frontend 1. Install dependencies. Run from '`/frontend`: `npm install`. -2. Start local server. Run from '`/frontend`: `npm run dev -- -o`. +2. Start local server. Run from '`/frontend`: `npm run dev -- --port 3000`. Validate the frontend is running by navigating to `http://localhost:3000`. -## Run locally +There is also a second frontend: 'frontend-beheer' (management frontend). This frontend is used to manage the algorithms. To run it, follow these steps: -1. Start database from backend. Run from `/backend`: `docker compose up -d` -2. Ensure latest migration has been completed. Run from `/backend`: `poetry run alembic upgrade head` -3. Navigate to `/frontend` and run `npm run dev`. -4. Navigate to `/backend` and run `poetry run uvicorn app.main:app --reload` +1. Install dependencies. Run from '`/frontend-beheer`: `npm install`. +2. Start local server. Run from '`/frontend-beheer`: `npm run dev -- --port 3001`. -## Other +Validate that frontend-beheer is running by navigating to `http://localhost:3001`. ### Linting @@ -73,6 +75,16 @@ This project uses Volar. Install Volar in Visual Studio Code and enable [take ov Note: Vue linting config inspired by a repository on [Github](https://github.com/weicheng2138/nuxt3-eslint-starter). +### Versioning + +This register allows use of multiple versions of the metadatastandard. To add a new version (`v0_x_x`), follow these steps: + +1. in `/backend/app/schemas/config`, you see the metadatastandard in JSON format. Create a new file with your file version name, e.g. `v0_x_x.json`. Change the standard as you see fit. +2. in `/backend/app/routers`, duplicate one of the version folders. Rename it the same as your version in step 1, e.g. `v0_x_x`. Do not change the content. +3. add the name of this file in the \_\_init\_\_.py file in the same folder, e.g. `from . import v0_1, v0_x_x # noqa`. +4. If your new schema involves changes to the database (notably for new columns) you'll have to do a SQLAlchemy model change (in `/backend/app/models/algoritme_version.py`) as well as a database migration. +5. The frontend needs a configuration file in `backend/app/config/layouts` named similar to the other files, e.g. `v0_x_x.json`. The configuration file defines how the data should be displayed in the tabs. + ### Icons Icons library can be found at `https://icones.js.org/`. diff --git a/algoritmeregister.code-workspace b/algoritmeregister.code-workspace index 79026c55..d486b808 100644 --- a/algoritmeregister.code-workspace +++ b/algoritmeregister.code-workspace @@ -8,21 +8,42 @@ }, { "path": "backend" + }, + { + "path": "frontend-beheer-2024" + }, + { + "path": "etl" } ], "settings": { - "python.linting.flake8Enabled": true, - "python.linting.enabled": true, - "prettier.enable": true, - "editor.formatOnSave": true, + "editor.formatOnPaste": false, // required + "editor.formatOnType": false, // required + "editor.formatOnSave": true, // optional + "editor.formatOnSaveMode": "file", // required to format on save + "files.autoSave": "onFocusChange", // optional but recommended + "vs-code-prettier-eslint.prettierLast": false, // set as "true" to run 'prettier' last not first + // "editor.defaultFormatter": "rvest.vs-code-prettier-eslint", + "search.exclude": { + "*.yaml": true, "*.mjs": true, "*.sql": true, "**/.nuxt": true, "**/.output": true, "**/dist/_nuxt": true, "**/dist/": true, - "**/alembic/scripts": true + "**/alembic/scripts": true, + "frontend-beheer/**": true + }, + "[typescript]": { + "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[vue]": { + "editor.defaultFormatter": "rvest.vs-code-prettier-eslint" + }, + "[python]": { + "editor.defaultFormatter": "ms-python.black-formatter" } } } diff --git a/backend/.coveragerc b/backend/.coveragerc new file mode 100644 index 00000000..6fae3992 --- /dev/null +++ b/backend/.coveragerc @@ -0,0 +1,17 @@ +[run] +branch=True +source = app +omit = + */__init__.py + **/models/** + **/schemas/config/** + **/schemas/algoritme_version.py + **/schemas/misc.py + **/schemas/preditor.py +[report] +exclude_lines = + import + from + logger + logging + if __name__ == .__main__.: diff --git a/backend/.env.dummy b/backend/.env.dummy index 28911df3..dad4e7d6 100644 --- a/backend/.env.dummy +++ b/backend/.env.dummy @@ -1,6 +1,37 @@ -POSTGRES_SERVER=127.0.0.1 +C3PO_URL=http://localhost:8004/api +USE_C3PO=False +SEND_EMAILS=False +NOTIFY_C3PO_ERRORS=False + +PREVIEW_URL=http://localhost:3001 + +POSTGRES_SERVER=localhost POSTGRES_PORT=5432 -POSTGRES_USER=postgres -POSTGRES_PASSWORD=postgres POSTGRES_DB=algreg_db -DEV_DOCKER_CONTAINER_NAME_PREFIX=Algoritme_register \ No newline at end of file +POSTGRES_DB_NAME=algreg_db + +BACKEND_PORT=8000 +DBGATE_PORT=8002 +ETL_PORT=8001 +LOADING_ENV=local + +ENABLE_TRANSLATION=True +OPENAI_API_KEY=secret +AZURE_TRANSLATE_ENDPOINT=https://api.cognitive.microsofttranslator.com/translate +AZURE_TRANSLATE_API_KEY=secret +AZURE_TRANSLATE_REGION=westeurope +DEEPL_API_KEY=secret + +WEBSPELLCHECKER_PORT=8003 +WEBSPELLCHECKER_URL=https://svc.webspellchecker.net:443/api +WEBSPELLCHECKER_LICENSE_KEY=secret + +PREDITOR_SHARED_SECRET_KEY="shared_secret_key" +PREDITOR_SHARED_TOTP_SEED="shared_totp_seed" + +ENABLE_AUTH=0 +DEBUGGER_LOGGING=0 + +KEYCLOAK_API_SECRET=secret_here +KEYCLOAK_API_CLIENT=service-client +KEYCLOAK_API_URI=uri_here \ No newline at end of file diff --git a/backend/.vscode/launch.json b/backend/.vscode/launch.json deleted file mode 100644 index f9abe25b..00000000 --- a/backend/.vscode/launch.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "name": "Python: FastAPI", - "type": "python", - "request": "launch", - "module": "uvicorn", - "args": ["app.main:app"], - "jinja": true, - "justMyCode": true - } - ] -} diff --git a/backend/.vscode/settings.json b/backend/.vscode/settings.json index de288e1e..9b388533 100644 --- a/backend/.vscode/settings.json +++ b/backend/.vscode/settings.json @@ -1,3 +1,7 @@ { - "python.formatting.provider": "black" + "python.testing.pytestArgs": [ + "tests" + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true } \ No newline at end of file diff --git a/backend/Dockerfile b/backend/Dockerfile index a233eff1..69c77798 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,42 +1,56 @@ -# FROM harbor.cicd.s15m.nl/ictu-devops-pub/rid_base:3.11_alpine_3.16 -FROM harbor.cicd.s15m.nl/ictu-devops-pub/rid_base:3.11-slim2-0.1 - -ENV YOUR_ENV=${YOUR_ENV} \ - PYTHONFAULTHANDLER=1 \ - PYTHONUNBUFFERED=1 \ - PYTHONHASHSEED=random \ - PIP_NO_CACHE_DIR=off \ - PIP_DISABLE_PIP_VERSION_CHECK=on \ - PIP_DEFAULT_TIMEOUT=100 \ - POETRY_VERSION=1.2.2 - -RUN apt-get update && \ - apt-get -y install sudo - -ADD ./backend/app /backend/app -ADD ./backend/alembic /backend/alembic -ADD ./backend/common /backend/common -COPY ./backend/alembic.ini /backend/alembic.ini -COPY ./backend/poetry.lock /backend/poetry.lock -COPY ./backend/pyproject.toml /backend/pyproject.toml -COPY ./backend/start.sh /backend/start.sh +FROM <..>./algreg_base AS buildstep + +# Make sure these are set, either here or in the base image. +ENV YOUR_ENV=${YOUR_ENV} +# ENV PYTHONFAULTHANDLER=1 \ +# PYTHONUNBUFFERED=1 \ +# PYTHONHASHSEED=random \ +# PIP_NO_CACHE_DIR=off \ +# PIP_DISABLE_PIP_VERSION_CHECK=on \ +# PIP_DEFAULT_TIMEOUT=100 \ +# POETRY_VERSION=1.2.2 + +RUN mkdir -p /mnt/credentials +WORKDIR /backend + +ADD /backend/app /backend/app +ADD /backend/alembic /backend/alembic +ADD /backend/common /backend/common +ADD /backend/scripts /backend/scripts +ADD /backend/etl /backend/etl +COPY /backend/alembic.ini /backend/alembic.ini +COPY /backend/poetry.lock /backend/poetry.lock +COPY /backend/pyproject.toml /backend/pyproject.toml +COPY /backend/start.sh /backend/start.sh + +RUN poetry config virtualenvs.create false +RUN poetry install --without dev --no-interaction --no-ansi + +FROM <..>./python:3.11.1-lunar-devops_base_0.2 WORKDIR /backend -RUN sudo apt-get -y install gcc g++ && \ - pip install "poetry==$POETRY_VERSION" && \ - poetry config virtualenvs.create false && \ - poetry install --without dev --no-interaction --no-ansi && \ - apt-get remove --purge -y gcc g++ && \ - pip uninstall -y "poetry==$POETRY_VERSION" && \ - sudo apt-get clean +COPY --from=buildstep /backend /backend -# Expose ports -EXPOSE 8000:8000 +# Copy python binaries ensuring a clean install without overhead +COPY --from=buildstep /usr/local/lib /usr/local/lib +RUN ln -f -s /usr/bin/python3.11 /usr/bin/python3 +ENV PYTHONPATH="${PYTHONPATH}:/usr/local/lib/python3.11/site-packages" + +# remove unused dist-packages to prevent false positives for trivy +RUN rm -rf /usr/local/lib/python3.11/dist-packages -ENV PYTHONPATH="$PYTHONPATH:/:/backend" +# add testing tools +RUN pip install pytest==7.3.1 coverage==7.2.7 -# Run the application -RUN sudo chmod 777 /backend/start.sh +# # add non root user for security with home directory for test files +RUN groupadd -r nonroot &&\ + useradd -r -g nonroot nonroot +RUN chown -R nonroot:nonroot /backend -CMD ["./start.sh"] \ No newline at end of file +# make start.sh executable +RUN chmod 777 /backend/start.sh + +USER nonroot +EXPOSE 8000:8000 +CMD ["./start.sh"] diff --git a/backend/alembic/env.py b/backend/alembic/env.py index 267abaa5..0c4bde80 100644 --- a/backend/alembic/env.py +++ b/backend/alembic/env.py @@ -5,6 +5,7 @@ from alembic import context from common.database_url import get_database_url +from app.database.database import Base # this is the Alembic Config object, which provides # access to the values within the .ini file in use. @@ -19,7 +20,7 @@ # for 'autogenerate' support # from myapp import mymodel # target_metadata = mymodel.Base.metadata -target_metadata = None +target_metadata = Base.metadata # other values from the config, defined by the needs of env.py, # can be acquired: @@ -67,9 +68,7 @@ def run_migrations_online() -> None: ) with connectable.connect() as connection: - context.configure( - connection=connection, target_metadata=target_metadata - ) + context.configure(connection=connection, target_metadata=target_metadata) with context.begin_transaction(): context.run_migrations() diff --git a/backend/alembic/scripts/create_frysian_full_text_search_configuration.sql b/backend/alembic/scripts/create_frysian_full_text_search_configuration.sql new file mode 100644 index 00000000..108e7b66 --- /dev/null +++ b/backend/alembic/scripts/create_frysian_full_text_search_configuration.sql @@ -0,0 +1,82 @@ +CREATE TEXT SEARCH CONFIGURATION FRY (copy = pg_catalog.dutch); + +-- Frisian abbreviation configuration +CREATE TEXT SEARCH DICTIONARY frisian_syn_thesaurus ( + TEMPLATE = thesaurus, + DictFile = fy_synonyms, + Dictionary = pg_catalog.dutch_stem +); + +ALTER TEXT SEARCH CONFIGURATION FRY + ALTER MAPPING FOR asciiword, asciihword, hword_asciipart, word, hword, hword_part + WITH frisian_syn_thesaurus, dutch_stem, dutch_opentaal_hunspell; + +DROP INDEX IF EXISTS gin_idx; + +CREATE INDEX gin_idx ON algoritme_version USING gin (vector); + +ALTER TABLE IF EXISTS organisation_details +ADD COLUMN IF NOT EXISTS vector tsvector; + +-- Adding Frisian organisation names to vector +UPDATE organisation_details SET vector = to_tsvector((CASE WHEN language='ENG' THEN 'ENG' WHEN language='FRY' THEN 'FRY' ELSE 'NLD' END)::regconfig, + COALESCE(name,'')); + +CREATE OR REPLACE FUNCTION update_vector_org() RETURNS TRIGGER AS $$ +BEGIN + NEW.vector := + to_tsvector((CASE WHEN NEW.language='ENG' THEN 'ENG' WHEN NEW.language='FRY' THEN 'FRY' ELSE 'NLD' END)::regconfig, COALESCE(NEW.name,'')); + RETURN NEW; +END; +$$ LANGUAGE plpgsql; + +CREATE OR REPLACE TRIGGER vector_trigger_org BEFORE INSERT OR UPDATE +ON organisation_details FOR EACH ROW EXECUTE FUNCTION + update_vector_org(); + +--re-calculate vector column +UPDATE algoritme_version SET vector = to_tsvector((CASE WHEN language='ENG' THEN 'ENG' WHEN language='FRY' THEN 'FRY' ELSE 'NLD' END)::regconfig, + COALESCE(name,'') || ' ' || COALESCE(organization,'') || ' ' || COALESCE(department,'') || ' ' || + COALESCE(description_short,'') || ' ' || COALESCE(type,'') || ' ' || COALESCE(category,'') || ' ' || + COALESCE(website,'') || ' ' || COALESCE(status,'') || ' ' || COALESCE(goal,'') || ' ' || COALESCE(impact,'') || ' ' || + COALESCE(proportionality,'') || ' ' || COALESCE(decision_making_process,'') || ' ' || COALESCE(documentation,'') || ' ' || + COALESCE(competent_authority,'') || ' ' || COALESCE(lawful_basis,'') || ' ' || COALESCE(iama,'') || ' ' || + COALESCE(iama_description,'') || ' ' || COALESCE(dpia_description,'') || ' ' || COALESCE(objection_procedure,'') || ' ' || + COALESCE(standard_version,'') || ' ' || COALESCE(url,'') || ' ' || COALESCE(contact_email,'') || ' ' || + COALESCE(area,'') || ' ' || COALESCE(lang,'') || ' ' || COALESCE(revision_date,'') || ' ' || + COALESCE(description,'') || ' ' || COALESCE(application_url,'') || ' ' || COALESCE(publiccode,'') || ' ' || + COALESCE(source_data,'') || ' ' || COALESCE(methods_and_models,'') || ' ' || COALESCE(monitoring,'') || ' ' || + COALESCE(human_intervention,'') || ' ' || COALESCE(risks,'') || ' ' || COALESCE(performance_standard,'') || ' ' || + COALESCE(provider,'') || ' ' || COALESCE(process_index_url,'') || ' ' || COALESCE(tags,'') || ' ' || + COALESCE(begin_date,'') || ' ' || COALESCE(end_date,'') || ' ' || COALESCE(lawful_basis_link,'') || ' ' || + COALESCE(impacttoetsen,'') || ' ' || COALESCE(source_data_link,'') || ' ' || COALESCE(publication_category,'') || ' ' || + COALESCE(lawful_basis_grouping,'[]') || ' ' || COALESCE(impacttoetsen_grouping,'[]') || ' ' || COALESCE(source_data_grouping,'[]')); + +-- replace trigger to contain Frisian language +CREATE OR REPLACE FUNCTION update_vector() RETURNS TRIGGER AS $$ +BEGIN + NEW.vector := + to_tsvector((CASE WHEN NEW.language='ENG' THEN 'ENG' WHEN NEW.language='FRY' THEN 'FRY' ELSE 'NLD' END)::regconfig, COALESCE(NEW.name,'') || ' ' || COALESCE(NEW.organization,'') || ' ' || COALESCE(NEW.department,'') || ' ' || + COALESCE(NEW.description_short,'') || ' ' || COALESCE(NEW.type,'') || ' ' || COALESCE(NEW.category,'') || ' ' || + COALESCE(NEW.website,'') || ' ' || COALESCE(NEW.status,'') || ' ' || COALESCE(NEW.goal,'') || ' ' || COALESCE(NEW.impact,'') || ' ' || + COALESCE(NEW.proportionality,'') || ' ' || COALESCE(NEW.decision_making_process,'') || ' ' || COALESCE(NEW.documentation,'') || ' ' || + COALESCE(NEW.competent_authority,'') || ' ' || COALESCE(NEW.lawful_basis,'') || ' ' || COALESCE(NEW.iama,'') || ' ' || + COALESCE(NEW.iama_description,'') || ' ' || COALESCE(NEW.dpia_description,'') || ' ' || COALESCE(NEW.objection_procedure,'') || ' ' || + COALESCE(NEW.standard_version,'') || ' ' || COALESCE(NEW.url,'') || ' ' || COALESCE(NEW.contact_email,'') || ' ' || + COALESCE(NEW.area,'') || ' ' || COALESCE(NEW.lang,'') || ' ' || COALESCE(NEW.revision_date,'') || ' ' || + COALESCE(NEW.description,'') || ' ' || COALESCE(NEW.application_url,'') || ' ' || COALESCE(NEW.publiccode,'') || ' ' || + COALESCE(NEW.source_data,'') || ' ' || COALESCE(NEW.methods_and_models,'') || ' ' || COALESCE(NEW.monitoring,'') || ' ' || + COALESCE(NEW.human_intervention,'') || ' ' || COALESCE(NEW.risks,'') || ' ' || COALESCE(NEW.performance_standard,'') || ' ' || + COALESCE(NEW.provider,'') || ' ' || COALESCE(NEW.process_index_url,'') || ' ' || COALESCE(NEW.tags,'') || ' ' || + COALESCE(NEW.begin_date,'') || ' ' || COALESCE(NEW.end_date,'') || ' ' || COALESCE(NEW.lawful_basis_link,'') || ' ' || + COALESCE(NEW.impacttoetsen,'') || ' ' || COALESCE(NEW.source_data_link,'') || ' ' || COALESCE(NEW.publication_category,'') || ' ' || + COALESCE(NEW.lawful_basis_grouping,'[]') || ' ' || COALESCE(NEW.impacttoetsen_grouping,'[]') || ' ' || COALESCE(NEW.source_data_grouping,'[]')); + RETURN NEW; +END; +$$ LANGUAGE plpgsql; + +CREATE OR REPLACE TRIGGER vector_trigger BEFORE INSERT OR UPDATE +ON algoritme_version FOR EACH ROW EXECUTE FUNCTION + update_vector(); + +ANALYZE algoritme_version; \ No newline at end of file diff --git a/backend/alembic/scripts/create_vectorized_column.sql b/backend/alembic/scripts/create_vectorized_column.sql new file mode 100644 index 00000000..b3096060 --- /dev/null +++ b/backend/alembic/scripts/create_vectorized_column.sql @@ -0,0 +1,45 @@ +ALTER TABLE IF EXISTS algoritme_version +ADD COLUMN IF NOT EXISTS vector tsvector; + +UPDATE algoritme_version SET vector = to_tsvector((CASE WHEN language='ENG' THEN 'ENG' ELSE 'NLD' END)::regconfig, + COALESCE(name,'') || ' ' || COALESCE(organization,'') || ' ' || COALESCE(department,'') || ' ' || + COALESCE(description_short,'') || ' ' || COALESCE(type,'') || ' ' || COALESCE(category,'') || ' ' || + COALESCE(website,'') || ' ' || COALESCE(status,'') || ' ' || COALESCE(goal,'') || ' ' || COALESCE(impact,'') || ' ' || + COALESCE(proportionality,'') || ' ' || COALESCE(decision_making_process,'') || ' ' || COALESCE(documentation,'') || ' ' || + COALESCE(competent_authority,'') || ' ' || COALESCE(lawful_basis,'') || ' ' || COALESCE(iama,'') || ' ' || + COALESCE(iama_description,'') || ' ' || COALESCE(dpia_description,'') || ' ' || COALESCE(objection_procedure,'') || ' ' || + COALESCE(standard_version,'') || ' ' || COALESCE(url,'') || ' ' || COALESCE(contact_email,'') || ' ' || + COALESCE(area,'') || ' ' || COALESCE(lang,'') || ' ' || COALESCE(revision_date,'') || ' ' || + COALESCE(description,'') || ' ' || COALESCE(application_url,'') || ' ' || COALESCE(publiccode,'') || ' ' || + COALESCE(source_data,'') || ' ' || COALESCE(methods_and_models,'') || ' ' || COALESCE(monitoring,'') || ' ' || + COALESCE(human_intervention,'') || ' ' || COALESCE(risks,'') || ' ' || COALESCE(performance_standard,'') || ' ' || + COALESCE(provider,'') || ' ' || COALESCE(process_index_url,'') || ' ' || COALESCE(tags,'') || ' ' || + COALESCE(begin_date,'') || ' ' || COALESCE(end_date,'') || ' ' || COALESCE(lawful_basis_link,'') || ' ' || + COALESCE(impacttoetsen,'') || ' ' || COALESCE(source_data_link,'')); + +CREATE INDEX gin_idx ON algoritme_version USING gin (vector); + +CREATE OR REPLACE FUNCTION update_vector() RETURNS TRIGGER AS $$ +BEGIN + NEW.vector := + to_tsvector((CASE WHEN NEW.language='ENG' THEN 'ENG' ELSE 'NLD' END)::regconfig, COALESCE(NEW.name,'') || ' ' || COALESCE(NEW.organization,'') || ' ' || COALESCE(NEW.department,'') || ' ' || + COALESCE(NEW.description_short,'') || ' ' || COALESCE(NEW.type,'') || ' ' || COALESCE(NEW.category,'') || ' ' || + COALESCE(NEW.website,'') || ' ' || COALESCE(NEW.status,'') || ' ' || COALESCE(NEW.goal,'') || ' ' || COALESCE(NEW.impact,'') || ' ' || + COALESCE(NEW.proportionality,'') || ' ' || COALESCE(NEW.decision_making_process,'') || ' ' || COALESCE(NEW.documentation,'') || ' ' || + COALESCE(NEW.competent_authority,'') || ' ' || COALESCE(NEW.lawful_basis,'') || ' ' || COALESCE(NEW.iama,'') || ' ' || + COALESCE(NEW.iama_description,'') || ' ' || COALESCE(NEW.dpia_description,'') || ' ' || COALESCE(NEW.objection_procedure,'') || ' ' || + COALESCE(NEW.standard_version,'') || ' ' || COALESCE(NEW.url,'') || ' ' || COALESCE(NEW.contact_email,'') || ' ' || + COALESCE(NEW.area,'') || ' ' || COALESCE(NEW.lang,'') || ' ' || COALESCE(NEW.revision_date,'') || ' ' || + COALESCE(NEW.description,'') || ' ' || COALESCE(NEW.application_url,'') || ' ' || COALESCE(NEW.publiccode,'') || ' ' || + COALESCE(NEW.source_data,'') || ' ' || COALESCE(NEW.methods_and_models,'') || ' ' || COALESCE(NEW.monitoring,'') || ' ' || + COALESCE(NEW.human_intervention,'') || ' ' || COALESCE(NEW.risks,'') || ' ' || COALESCE(NEW.performance_standard,'') || ' ' || + COALESCE(NEW.provider,'') || ' ' || COALESCE(NEW.process_index_url,'') || ' ' || COALESCE(NEW.tags,'') || ' ' || + COALESCE(NEW.begin_date,'') || ' ' || COALESCE(NEW.end_date,'') || ' ' || COALESCE(NEW.lawful_basis_link,'') || ' ' || + COALESCE(NEW.impacttoetsen,'') || ' ' || COALESCE(NEW.source_data_link,'')); + RETURN NEW; +END; +$$ LANGUAGE plpgsql; + +CREATE TRIGGER vector_trigger BEFORE INSERT OR UPDATE +ON algoritme_version FOR EACH ROW EXECUTE FUNCTION + update_vector(); \ No newline at end of file diff --git a/backend/alembic/scripts/create_vectorized_column_org.sql b/backend/alembic/scripts/create_vectorized_column_org.sql new file mode 100644 index 00000000..2421119f --- /dev/null +++ b/backend/alembic/scripts/create_vectorized_column_org.sql @@ -0,0 +1,17 @@ +ALTER TABLE IF EXISTS organisation_details +ADD COLUMN IF NOT EXISTS vector tsvector; + +UPDATE organisation_details SET vector = to_tsvector((CASE WHEN language='ENG' THEN 'ENG' ELSE 'NLD' END)::regconfig, + COALESCE(name,'')); + +CREATE OR REPLACE FUNCTION update_vector_org() RETURNS TRIGGER AS $$ +BEGIN + NEW.vector := + to_tsvector((CASE WHEN NEW.language='ENG' THEN 'ENG' ELSE 'NLD' END)::regconfig, COALESCE(NEW.name,'')); + RETURN NEW; +END; +$$ LANGUAGE plpgsql; + +CREATE TRIGGER vector_trigger_org BEFORE INSERT OR UPDATE +ON organisation_details FOR EACH ROW EXECUTE FUNCTION + update_vector_org(); \ No newline at end of file diff --git a/backend/alembic/scripts/create_words_table.sql b/backend/alembic/scripts/create_words_table.sql new file mode 100644 index 00000000..e820a45a --- /dev/null +++ b/backend/alembic/scripts/create_words_table.sql @@ -0,0 +1,17 @@ +CREATE TABLE words AS SELECT word FROM ts_stat('SELECT vector FROM algoritme_version'); + +CREATE OR REPLACE FUNCTION update_words() +RETURNS TRIGGER AS $$ +BEGIN + INSERT INTO words (word) + SELECT word + FROM ts_stat('SELECT vector FROM algoritme_version') + WHERE word NOT IN (SELECT word FROM words); + RETURN NEW; +END; +$$ LANGUAGE plpgsql; + +CREATE TRIGGER update_words_trigger +AFTER INSERT ON algoritme_version +FOR EACH ROW +EXECUTE FUNCTION update_words(); \ No newline at end of file diff --git a/backend/alembic/scripts/downgrade_vector_1_0_0.sql b/backend/alembic/scripts/downgrade_vector_1_0_0.sql new file mode 100644 index 00000000..3577fdd4 --- /dev/null +++ b/backend/alembic/scripts/downgrade_vector_1_0_0.sql @@ -0,0 +1,36 @@ +UPDATE algoritme_version SET vector = to_tsvector((CASE WHEN language='ENG' THEN 'ENG' ELSE 'NLD' END)::regconfig, + COALESCE(name,'') || ' ' || COALESCE(organization,'') || ' ' || COALESCE(department,'') || ' ' || + COALESCE(description_short,'') || ' ' || COALESCE(type,'') || ' ' || COALESCE(category,'') || ' ' || + COALESCE(website,'') || ' ' || COALESCE(status,'') || ' ' || COALESCE(goal,'') || ' ' || COALESCE(impact,'') || ' ' || + COALESCE(proportionality,'') || ' ' || COALESCE(decision_making_process,'') || ' ' || COALESCE(documentation,'') || ' ' || + COALESCE(competent_authority,'') || ' ' || COALESCE(lawful_basis,'') || ' ' || COALESCE(iama,'') || ' ' || + COALESCE(iama_description,'') || ' ' || COALESCE(dpia_description,'') || ' ' || COALESCE(objection_procedure,'') || ' ' || + COALESCE(standard_version,'') || ' ' || COALESCE(url,'') || ' ' || COALESCE(contact_email,'') || ' ' || + COALESCE(area,'') || ' ' || COALESCE(lang,'') || ' ' || COALESCE(revision_date,'') || ' ' || + COALESCE(description,'') || ' ' || COALESCE(application_url,'') || ' ' || COALESCE(publiccode,'') || ' ' || + COALESCE(source_data,'') || ' ' || COALESCE(methods_and_models,'') || ' ' || COALESCE(monitoring,'') || ' ' || + COALESCE(human_intervention,'') || ' ' || COALESCE(risks,'') || ' ' || COALESCE(performance_standard,'') || ' ' || + COALESCE(provider,'') || ' ' || COALESCE(process_index_url,'') || ' ' || COALESCE(tags,'') || ' ' || + COALESCE(begin_date,'') || ' ' || COALESCE(end_date,'') || ' ' || COALESCE(lawful_basis_link,'') || ' ' || + COALESCE(impacttoetsen,'') || ' ' || COALESCE(source_data_link,'')); + +CREATE OR REPLACE FUNCTION update_vector() RETURNS TRIGGER AS $$ +BEGIN + NEW.vector := + to_tsvector((CASE WHEN NEW.language='ENG' THEN 'ENG' ELSE 'NLD' END)::regconfig, COALESCE(NEW.name,'') || ' ' || COALESCE(NEW.organization,'') || ' ' || COALESCE(NEW.department,'') || ' ' || + COALESCE(NEW.description_short,'') || ' ' || COALESCE(NEW.type,'') || ' ' || COALESCE(NEW.category,'') || ' ' || + COALESCE(NEW.website,'') || ' ' || COALESCE(NEW.status,'') || ' ' || COALESCE(NEW.goal,'') || ' ' || COALESCE(NEW.impact,'') || ' ' || + COALESCE(NEW.proportionality,'') || ' ' || COALESCE(NEW.decision_making_process,'') || ' ' || COALESCE(NEW.documentation,'') || ' ' || + COALESCE(NEW.competent_authority,'') || ' ' || COALESCE(NEW.lawful_basis,'') || ' ' || COALESCE(NEW.iama,'') || ' ' || + COALESCE(NEW.iama_description,'') || ' ' || COALESCE(NEW.dpia_description,'') || ' ' || COALESCE(NEW.objection_procedure,'') || ' ' || + COALESCE(NEW.standard_version,'') || ' ' || COALESCE(NEW.url,'') || ' ' || COALESCE(NEW.contact_email,'') || ' ' || + COALESCE(NEW.area,'') || ' ' || COALESCE(NEW.lang,'') || ' ' || COALESCE(NEW.revision_date,'') || ' ' || + COALESCE(NEW.description,'') || ' ' || COALESCE(NEW.application_url,'') || ' ' || COALESCE(NEW.publiccode,'') || ' ' || + COALESCE(NEW.source_data,'') || ' ' || COALESCE(NEW.methods_and_models,'') || ' ' || COALESCE(NEW.monitoring,'') || ' ' || + COALESCE(NEW.human_intervention,'') || ' ' || COALESCE(NEW.risks,'') || ' ' || COALESCE(NEW.performance_standard,'') || ' ' || + COALESCE(NEW.provider,'') || ' ' || COALESCE(NEW.process_index_url,'') || ' ' || COALESCE(NEW.tags,'') || ' ' || + COALESCE(NEW.begin_date,'') || ' ' || COALESCE(NEW.end_date,'') || ' ' || COALESCE(NEW.lawful_basis_link,'') || ' ' || + COALESCE(NEW.impacttoetsen,'') || ' ' || COALESCE(NEW.source_data_link,'')); + RETURN NEW; +END; +$$ LANGUAGE plpgsql; diff --git a/backend/alembic/scripts/execute_abbreviation_dictionairy_configuration.sql b/backend/alembic/scripts/execute_abbreviation_dictionairy_configuration.sql new file mode 100644 index 00000000..9b0312a7 --- /dev/null +++ b/backend/alembic/scripts/execute_abbreviation_dictionairy_configuration.sql @@ -0,0 +1,48 @@ +-- Dutch abbreviation configuration +CREATE TEXT SEARCH DICTIONARY dutch_syn_thesaurus ( + TEMPLATE = thesaurus, + DictFile = nl_synonyms, + Dictionary = pg_catalog.dutch_stem +); + +ALTER TEXT SEARCH CONFIGURATION NLD + ALTER MAPPING FOR asciiword, asciihword, hword_asciipart, word, hword, hword_part + WITH dutch_syn_thesaurus, dutch_stem, dutch_opentaal_hunspell; + +-- English abbreviation configuration +CREATE TEXT SEARCH DICTIONARY english_syn_thesaurus ( + TEMPLATE = thesaurus, + DictFile = en_synonyms, + Dictionary = pg_catalog.english_stem +); + +ALTER TEXT SEARCH CONFIGURATION ENG + ALTER MAPPING FOR asciiword, asciihword, hword_asciipart, word, hword, hword_part + WITH english_syn_thesaurus, english_stem, english_hunspell; + +-- Drop the existing index +DROP INDEX IF EXISTS gin_idx; + +-- Recreate the index +CREATE INDEX gin_idx ON algoritme_version USING gin (vector); + +-- Perform tsvector generation on data with thesaurus knowledge of abbreviation +UPDATE algoritme_version SET vector = to_tsvector((CASE WHEN language='ENG' THEN 'ENG' ELSE 'NLD' END)::regconfig, + COALESCE(name,'') || ' ' || COALESCE(organization,'') || ' ' || COALESCE(department,'') || ' ' || + COALESCE(description_short,'') || ' ' || COALESCE(type,'') || ' ' || COALESCE(category,'') || ' ' || + COALESCE(website,'') || ' ' || COALESCE(status,'') || ' ' || COALESCE(goal,'') || ' ' || COALESCE(impact,'') || ' ' || + COALESCE(proportionality,'') || ' ' || COALESCE(decision_making_process,'') || ' ' || COALESCE(documentation,'') || ' ' || + COALESCE(competent_authority,'') || ' ' || COALESCE(lawful_basis,'') || ' ' || COALESCE(iama,'') || ' ' || + COALESCE(iama_description,'') || ' ' || COALESCE(dpia_description,'') || ' ' || COALESCE(objection_procedure,'') || ' ' || + COALESCE(standard_version,'') || ' ' || COALESCE(url,'') || ' ' || COALESCE(contact_email,'') || ' ' || + COALESCE(area,'') || ' ' || COALESCE(lang,'') || ' ' || COALESCE(revision_date,'') || ' ' || + COALESCE(description,'') || ' ' || COALESCE(application_url,'') || ' ' || COALESCE(publiccode,'') || ' ' || + COALESCE(source_data,'') || ' ' || COALESCE(methods_and_models,'') || ' ' || COALESCE(monitoring,'') || ' ' || + COALESCE(human_intervention,'') || ' ' || COALESCE(risks,'') || ' ' || COALESCE(performance_standard,'') || ' ' || + COALESCE(provider,'') || ' ' || COALESCE(process_index_url,'') || ' ' || COALESCE(tags,'') || ' ' || + COALESCE(begin_date,'') || ' ' || COALESCE(end_date,'') || ' ' || COALESCE(lawful_basis_link,'') || ' ' || + COALESCE(impacttoetsen,'') || ' ' || COALESCE(source_data_link,'') || ' ' || COALESCE(publication_category,'') || ' ' || + COALESCE(lawful_basis_grouping,'[]') || ' ' || COALESCE(impacttoetsen_grouping,'[]') || ' ' || COALESCE(source_data_grouping,'[]')); + + +ANALYZE algoritme_version; diff --git a/backend/alembic/scripts/execute_full_text_search_configuration.sql b/backend/alembic/scripts/execute_full_text_search_configuration.sql new file mode 100644 index 00000000..3cb7c5ff --- /dev/null +++ b/backend/alembic/scripts/execute_full_text_search_configuration.sql @@ -0,0 +1,38 @@ +-- Dutch full text search configuration +CREATE TEXT SEARCH DICTIONARY dutch_opentaal_hunspell ( + template = ispell, + dictfile = nl_nl, + afffile = nl_nl, + stopwords = dutch_stopwords_extended +); + +CREATE TEXT SEARCH CONFIGURATION NLD (copy = pg_catalog.dutch); + +ALTER TEXT SEARCH CONFIGURATION NLD + ALTER MAPPING FOR asciiword, asciihword, hword_asciipart, word, hword, hword_part + WITH dutch_opentaal_hunspell, dutch_stem; + +CREATE TEXT SEARCH DICTIONARY dutch_syn ( + TEMPLATE = synonym, + SYNONYMS = dutch_synonyms +); + +ALTER TEXT SEARCH CONFIGURATION NLD + ALTER MAPPING FOR asciiword + WITH dutch_syn, dutch_stem; + +-- English full text search configuration +CREATE TEXT SEARCH DICTIONARY english_hunspell ( + template = ispell, + dictfile = en_gb, + afffile = en_gb, + stopwords = english_stopwords_extended +); + +CREATE TEXT SEARCH CONFIGURATION ENG (copy = pg_catalog.english); + +ALTER TEXT SEARCH CONFIGURATION ENG + ALTER MAPPING FOR asciiword, asciihword, hword_asciipart, word, hword, hword_part + WITH english_hunspell, english_stem; + +CREATE EXTENSION pg_trgm; diff --git a/backend/alembic/scripts/remove_vectorized_column.sql b/backend/alembic/scripts/remove_vectorized_column.sql new file mode 100644 index 00000000..9b176613 --- /dev/null +++ b/backend/alembic/scripts/remove_vectorized_column.sql @@ -0,0 +1,5 @@ +ALTER TABLE algoritme_version DROP COLUMN vector; + +DROP INDEX IF EXISTS gin_idx; + +DROP TRIGGER vector_trigger ON algoritme_version; \ No newline at end of file diff --git a/backend/alembic/scripts/remove_vectorized_column_org.sql b/backend/alembic/scripts/remove_vectorized_column_org.sql new file mode 100644 index 00000000..9542e053 --- /dev/null +++ b/backend/alembic/scripts/remove_vectorized_column_org.sql @@ -0,0 +1,5 @@ +ALTER TABLE organisation_details DROP COLUMN vector; + +DROP INDEX IF EXISTS gin_idx; + +DROP TRIGGER vector_trigger ON organisation_details; \ No newline at end of file diff --git a/backend/alembic/scripts/remove_words_table.sql b/backend/alembic/scripts/remove_words_table.sql new file mode 100644 index 00000000..189b7498 --- /dev/null +++ b/backend/alembic/scripts/remove_words_table.sql @@ -0,0 +1,3 @@ +DROP TABLE IF EXISTS words; + +DROP TRIGGER update_words_trigger ON algoritme_version; \ No newline at end of file diff --git a/backend/alembic/scripts/upgrade_vector_1_0_0.sql b/backend/alembic/scripts/upgrade_vector_1_0_0.sql new file mode 100644 index 00000000..eeeeea60 --- /dev/null +++ b/backend/alembic/scripts/upgrade_vector_1_0_0.sql @@ -0,0 +1,38 @@ +UPDATE algoritme_version SET vector = to_tsvector((CASE WHEN language='ENG' THEN 'ENG' ELSE 'NLD' END)::regconfig, + COALESCE(name,'') || ' ' || COALESCE(organization,'') || ' ' || COALESCE(department,'') || ' ' || + COALESCE(description_short,'') || ' ' || COALESCE(type,'') || ' ' || COALESCE(category,'') || ' ' || + COALESCE(website,'') || ' ' || COALESCE(status,'') || ' ' || COALESCE(goal,'') || ' ' || COALESCE(impact,'') || ' ' || + COALESCE(proportionality,'') || ' ' || COALESCE(decision_making_process,'') || ' ' || COALESCE(documentation,'') || ' ' || + COALESCE(competent_authority,'') || ' ' || COALESCE(lawful_basis,'') || ' ' || COALESCE(iama,'') || ' ' || + COALESCE(iama_description,'') || ' ' || COALESCE(dpia_description,'') || ' ' || COALESCE(objection_procedure,'') || ' ' || + COALESCE(standard_version,'') || ' ' || COALESCE(url,'') || ' ' || COALESCE(contact_email,'') || ' ' || + COALESCE(area,'') || ' ' || COALESCE(lang,'') || ' ' || COALESCE(revision_date,'') || ' ' || + COALESCE(description,'') || ' ' || COALESCE(application_url,'') || ' ' || COALESCE(publiccode,'') || ' ' || + COALESCE(source_data,'') || ' ' || COALESCE(methods_and_models,'') || ' ' || COALESCE(monitoring,'') || ' ' || + COALESCE(human_intervention,'') || ' ' || COALESCE(risks,'') || ' ' || COALESCE(performance_standard,'') || ' ' || + COALESCE(provider,'') || ' ' || COALESCE(process_index_url,'') || ' ' || COALESCE(tags,'') || ' ' || + COALESCE(begin_date,'') || ' ' || COALESCE(end_date,'') || ' ' || COALESCE(lawful_basis_link,'') || ' ' || + COALESCE(impacttoetsen,'') || ' ' || COALESCE(source_data_link,'') || ' ' || COALESCE(publication_category,'') || ' ' || + COALESCE(lawful_basis_grouping,'[]') || ' ' || COALESCE(impacttoetsen_grouping,'[]') || ' ' || COALESCE(source_data_grouping,'[]')); + +CREATE OR REPLACE FUNCTION update_vector() RETURNS TRIGGER AS $$ +BEGIN + NEW.vector := + to_tsvector((CASE WHEN NEW.language='ENG' THEN 'ENG' ELSE 'NLD' END)::regconfig, COALESCE(NEW.name,'') || ' ' || COALESCE(NEW.organization,'') || ' ' || COALESCE(NEW.department,'') || ' ' || + COALESCE(NEW.description_short,'') || ' ' || COALESCE(NEW.type,'') || ' ' || COALESCE(NEW.category,'') || ' ' || + COALESCE(NEW.website,'') || ' ' || COALESCE(NEW.status,'') || ' ' || COALESCE(NEW.goal,'') || ' ' || COALESCE(NEW.impact,'') || ' ' || + COALESCE(NEW.proportionality,'') || ' ' || COALESCE(NEW.decision_making_process,'') || ' ' || COALESCE(NEW.documentation,'') || ' ' || + COALESCE(NEW.competent_authority,'') || ' ' || COALESCE(NEW.lawful_basis,'') || ' ' || COALESCE(NEW.iama,'') || ' ' || + COALESCE(NEW.iama_description,'') || ' ' || COALESCE(NEW.dpia_description,'') || ' ' || COALESCE(NEW.objection_procedure,'') || ' ' || + COALESCE(NEW.standard_version,'') || ' ' || COALESCE(NEW.url,'') || ' ' || COALESCE(NEW.contact_email,'') || ' ' || + COALESCE(NEW.area,'') || ' ' || COALESCE(NEW.lang,'') || ' ' || COALESCE(NEW.revision_date,'') || ' ' || + COALESCE(NEW.description,'') || ' ' || COALESCE(NEW.application_url,'') || ' ' || COALESCE(NEW.publiccode,'') || ' ' || + COALESCE(NEW.source_data,'') || ' ' || COALESCE(NEW.methods_and_models,'') || ' ' || COALESCE(NEW.monitoring,'') || ' ' || + COALESCE(NEW.human_intervention,'') || ' ' || COALESCE(NEW.risks,'') || ' ' || COALESCE(NEW.performance_standard,'') || ' ' || + COALESCE(NEW.provider,'') || ' ' || COALESCE(NEW.process_index_url,'') || ' ' || COALESCE(NEW.tags,'') || ' ' || + COALESCE(NEW.begin_date,'') || ' ' || COALESCE(NEW.end_date,'') || ' ' || COALESCE(NEW.lawful_basis_link,'') || ' ' || + COALESCE(NEW.impacttoetsen,'') || ' ' || COALESCE(NEW.source_data_link,'') || ' ' || COALESCE(NEW.publication_category,'') || ' ' || + COALESCE(NEW.lawful_basis_grouping,'[]') || ' ' || COALESCE(NEW.impacttoetsen_grouping,'[]') || ' ' || COALESCE(NEW.source_data_grouping,'[]')); + RETURN NEW; +END; +$$ LANGUAGE plpgsql; diff --git a/backend/alembic/versions/04b904159980_rename_schema_to_standard_version.py b/backend/alembic/versions/04b904159980_rename_schema_to_standard_version.py new file mode 100644 index 00000000..affec4cc --- /dev/null +++ b/backend/alembic/versions/04b904159980_rename_schema_to_standard_version.py @@ -0,0 +1,27 @@ +"""rename schema to standard_version + +Revision ID: 04b904159980 +Revises: 845b0b6e654f +Create Date: 2023-04-05 11:57:40.883818 + +""" +from alembic import op + + +# revision identifiers, used by Alembic. +revision = "04b904159980" +down_revision = "845b0b6e654f" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.alter_column( + "algoritme_version", "schema", nullable=True, new_column_name="standard_version" + ) + + +def downgrade() -> None: + op.alter_column( + "algoritme_version", "standard_version", nullable=True, new_column_name="schema" + ) diff --git a/backend/alembic/versions/0a0ff83803b0_add_action_history_table.py b/backend/alembic/versions/0a0ff83803b0_add_action_history_table.py new file mode 100644 index 00000000..6fe36a7c --- /dev/null +++ b/backend/alembic/versions/0a0ff83803b0_add_action_history_table.py @@ -0,0 +1,79 @@ +"""add action_history table + +Revision ID: 0a0ff83803b0 +Revises: 6ce739d70f55 +Create Date: 2023-04-13 15:12:33.051656 + +""" +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql +from app.schemas import OperationEnum + +# revision identifiers, used by Alembic. +revision = "0a0ff83803b0" +down_revision = "8691fce44bf2" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + operation = postgresql.ENUM(OperationEnum, name="operation", create_type=False) + operation.create(op.get_bind(), checkfirst=True) + + op.create_table( + "action_history", + sa.Column("id", sa.Integer(), nullable=False), + sa.Column("algoritme_version_id", sa.Integer(), nullable=False), + sa.Column( + "operation", + operation, + nullable=False, + ), + sa.Column("user_id", sa.VARCHAR(length=1024), nullable=False), + sa.Column( + "create_dt", + sa.DateTime(timezone=True), + server_default=sa.text("now()"), + nullable=False, + ), + sa.ForeignKeyConstraint( + ["algoritme_version_id"], + ["algoritme_version.id"], + name="action_history_algoritme_version_fkey", + ondelete="CASCADE", + ), + sa.PrimaryKeyConstraint("id"), + ) + op.create_index( + op.f("ix_action_history_id"), "action_history", ["id"], unique=False + ) + op.drop_column("algoritme_version", "end_dt") + op.drop_column("algoritme_version", "created_by") + + +def downgrade() -> None: + op.add_column( + "algoritme_version", + sa.Column( + "created_by", + sa.VARCHAR(length=100), + autoincrement=False, + nullable=False, + server_default="Unknown due to alembic downgrade", + ), + ) + op.add_column( + "algoritme_version", + sa.Column( + "end_dt", + postgresql.TIMESTAMP(timezone=True), + autoincrement=False, + nullable=True, + ), + ) + op.drop_index(op.f("ix_action_history_id"), table_name="action_history") + op.drop_table("action_history") + + new_type = postgresql.ENUM(OperationEnum, name="operation", create_type=False) + new_type.drop(op.get_bind()) diff --git a/backend/alembic/versions/0a1b6fc81205_remove_leverancier_id.py b/backend/alembic/versions/0a1b6fc81205_remove_leverancier_id.py new file mode 100644 index 00000000..c572c95d --- /dev/null +++ b/backend/alembic/versions/0a1b6fc81205_remove_leverancier_id.py @@ -0,0 +1,32 @@ +"""remove leverancier_id + +Revision ID: 0a1b6fc81205 +Revises: 0a0ff83803b0 +Create Date: 2023-04-19 17:06:04.283044 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "0a1b6fc81205" +down_revision = "0a0ff83803b0" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.drop_column("algoritme", "leverancier_id") + + +def downgrade() -> None: + op.add_column( + "algoritme", + sa.Column( + "leverancier_id", + sa.VARCHAR(length=1024), + autoincrement=False, + nullable=True, + ), + ) diff --git a/backend/alembic/versions/116c2febf399_migrate_name_to_organisation_details.py b/backend/alembic/versions/116c2febf399_migrate_name_to_organisation_details.py new file mode 100644 index 00000000..38f81b86 --- /dev/null +++ b/backend/alembic/versions/116c2febf399_migrate_name_to_organisation_details.py @@ -0,0 +1,72 @@ +"""migrate name to organisation_details + +Revision ID: 116c2febf399 +Revises: 79c11dd82bc1 +Create Date: 2023-12-06 14:24:53.014796 + +""" +from alembic import op +import sqlalchemy as sa +from app.models import OrganisationDetails + +# revision identifiers, used by Alembic. +revision = "116c2febf399" +down_revision = "79c11dd82bc1" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + conn = op.get_bind() + res = conn.execute(sa.text("select id, name from organisation")) + if not res: + raise ConnectionError + organisations = res.fetchall() + + if len(organisations): + organisation_details = [] + for org in organisations: + entry = {"organisation_id": org[0], "language": "NLD", "name": org[1]} + organisation_details.append(entry) + + conn.execute( + OrganisationDetails.__table__.insert().values(organisation_details) + ) + + op.drop_column("organisation", "name") + + +def downgrade() -> None: + op.add_column( + "organisation", + sa.Column("name", sa.VARCHAR(length=1024), nullable=True), + ) + + conn = op.get_bind() + res = conn.execute( + sa.text( + "select name, organisation_id from organisation_details where language='NLD'" + ) + ) + if not res: + raise ConnectionError + organisation_details = res.fetchall() + + if len(organisation_details): + when_text = " ".join( + [f"WHEN id='{r[1]}' THEN '{r[0]}'" for r in organisation_details] + ) + set_owner_statement = sa.text( + f""" + UPDATE organisation + SET name = + CASE + {when_text} + END; + """ + ) + conn.execute(set_owner_statement) + + conn.execute(sa.text("DELETE FROM organisation_details")) + + op.alter_column("organisation", "name", server_default=None, nullable=False) diff --git a/backend/alembic/versions/216e1a80d74b_initial_version.py b/backend/alembic/versions/216e1a80d74b_initial_version.py deleted file mode 100644 index a9f48817..00000000 --- a/backend/alembic/versions/216e1a80d74b_initial_version.py +++ /dev/null @@ -1,28 +0,0 @@ -"""initial-version - -Revision ID: 216e1a80d74b -Revises: Builds initial structure from init.sql -Create Date: 2022-11-22 10:11:29.745888 - -""" -from alembic import op -import os - -# revision identifiers, used by Alembic. -revision = '216e1a80d74b' -down_revision = None -branch_labels = None -depends_on = None - - -def upgrade() -> None: - structure_filepath = os.path.abspath("alembic/scripts/init.sql") - with open(structure_filepath) as f: - sql_file = f.read() - op.execute(sql_file + "SET search_path TO public") - pass - - -def downgrade() -> None: - # op.drop_table("default") - pass diff --git a/backend/alembic/versions/243d3a6d2320_vectorised_organisation_details_column.py b/backend/alembic/versions/243d3a6d2320_vectorised_organisation_details_column.py new file mode 100644 index 00000000..816784d9 --- /dev/null +++ b/backend/alembic/versions/243d3a6d2320_vectorised_organisation_details_column.py @@ -0,0 +1,26 @@ +"""vectorised_organisation_details_column + +Revision ID: 243d3a6d2320 +Revises: a3ff62ca5a84 +Create Date: 2024-03-25 16:39:43.425389 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "243d3a6d2320" +down_revision = "a3ff62ca5a84" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + with open("alembic/scripts/create_vectorized_column_org.sql") as file: + op.execute(file.read()) + + +def downgrade() -> None: + with open("alembic/scripts/remove_vectorized_column_org.sql") as file: + op.execute(file.read()) diff --git a/backend/alembic/versions/26b1ef55e478_create_table_html_figures.py b/backend/alembic/versions/26b1ef55e478_create_table_html_figures.py new file mode 100644 index 00000000..02eb5ac4 --- /dev/null +++ b/backend/alembic/versions/26b1ef55e478_create_table_html_figures.py @@ -0,0 +1,37 @@ +"""create_table_html_figures + +Revision ID: 26b1ef55e478 +Revises: 59ae16a67b97 +Create Date: 2024-06-12 14:40:23.906428 + +""" + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "26b1ef55e478" +down_revision = "cbebdfcd0582" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.create_table( + "html_figures", + sa.Column("id", sa.Integer, primary_key=True, index=True), + sa.Column( + "date", + sa.DateTime(timezone=True), + nullable=False, + server_default=sa.func.now(), + ), + sa.Column("html", sa.TEXT, nullable=False), + sa.Column("most_recent", sa.Boolean, nullable=False), + sa.Column("static_data", sa.JSON, nullable=True), + ) + + +def downgrade() -> None: + op.drop_table("html_figures") diff --git a/backend/alembic/versions/2929cd63a048_add_organisation_table.py b/backend/alembic/versions/2929cd63a048_add_organisation_table.py new file mode 100644 index 00000000..275d9efc --- /dev/null +++ b/backend/alembic/versions/2929cd63a048_add_organisation_table.py @@ -0,0 +1,52 @@ +"""add organisation table + +Revision ID: 2929cd63a048 +Revises: ba4ce1f66866 +Create Date: 2023-09-18 16:00:07.290568 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "2929cd63a048" +down_revision = "ba4ce1f66866" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.create_table( + "organisation", + sa.Column("id", sa.Integer(), nullable=False), + sa.Column("code", sa.VARCHAR(length=1024), nullable=False), + sa.Column("name", sa.VARCHAR(length=1024), nullable=False), + sa.Column( + "create_dt", + sa.DateTime(timezone=True), + server_default=sa.text("now()"), + nullable=False, + ), + sa.PrimaryKeyConstraint("id"), + ) + op.create_index(op.f("ix_organisation_id"), "organisation", ["id"], unique=False) + op.add_column( + "algoritme", + sa.Column("organisation_id", sa.Integer(), nullable=True), + ) + op.create_foreign_key( + "algoritme_organisation_fkey", + "algoritme", + "organisation", + ["organisation_id"], + ["id"], + ondelete="CASCADE", + ) + + +def downgrade() -> None: + op.drop_constraint("algoritme_organisation_fkey", "algoritme", type_="foreignkey") + op.drop_column("algoritme", "organisation_id") + op.drop_index(op.f("ix_organisation_id"), table_name="organisation") + op.drop_table("organisation") diff --git a/backend/alembic/versions/33b0feaf1896_increase_column_size_impacttoetsen.py b/backend/alembic/versions/33b0feaf1896_increase_column_size_impacttoetsen.py new file mode 100644 index 00000000..01d7134f --- /dev/null +++ b/backend/alembic/versions/33b0feaf1896_increase_column_size_impacttoetsen.py @@ -0,0 +1,36 @@ +"""increase_column_size_impacttoetsen + +Revision ID: 33b0feaf1896 +Revises: 729c45f8a00f +Create Date: 2024-10-29 11:58:07.316625 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = '33b0feaf1896' +down_revision = '729c45f8a00f' +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.alter_column( + "algoritme_version", + "impacttoetsen", + existing_type=sa.VARCHAR(length=1024), + type_=sa.VARCHAR(length=5000), + existing_nullable=True, + ) + + +def downgrade() -> None: + op.alter_column( + "algoritme_version", + "impacttoetsen", + existing_type=sa.VARCHAR(length=5000), + type_=sa.VARCHAR(length=1024), + existing_nullable=True, + ) diff --git a/backend/alembic/versions/3a08d0a0aede_add_frysian_to_language_enum.py b/backend/alembic/versions/3a08d0a0aede_add_frysian_to_language_enum.py new file mode 100644 index 00000000..2bcb89d8 --- /dev/null +++ b/backend/alembic/versions/3a08d0a0aede_add_frysian_to_language_enum.py @@ -0,0 +1,56 @@ +"""Add frysian to language enum + +Revision ID: 3a08d0a0aede +Revises: a3ff62ca5a84 +Create Date: 2024-03-28 11:35:36.416446 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "3a08d0a0aede" +down_revision = "243d3a6d2320" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + # Temporary enum trick to safely alter the enum in postgres + new_enum = sa.Enum("NLD", "ENG", "FRY", name="_tmp_enum") + new_enum.create(op.get_bind(), checkfirst=False) + + # Alter the 'language' columns in 'algoritme_version' and 'organisation_details' to use the tmp ENUM type + op.execute( + "ALTER TABLE algoritme_version ALTER COLUMN language TYPE _tmp_enum USING language::text::_tmp_enum" + ) + op.execute( + "ALTER TABLE organisation_details ALTER COLUMN language TYPE _tmp_enum USING language::text::_tmp_enum" + ) + + # Drop the old ENUM type if it's not used anywhere else + op.execute("DROP TYPE language") + + # Rename the tmp ENUM type back to 'language' + op.execute("ALTER TYPE _tmp_enum RENAME TO language") + + +def downgrade() -> None: + # Temporary enum trick to safely alter the enum in postgres + new_enum = sa.Enum("NLD", "ENG", name="_tmp_enum") + new_enum.create(op.get_bind(), checkfirst=False) + + # Alter the 'language' columns in 'algoritme_version' and 'organisation_details' to use the tmp ENUM type + op.execute( + "ALTER TABLE algoritme_version ALTER COLUMN language TYPE _tmp_enum USING language::text::_tmp_enum" + ) + op.execute( + "ALTER TABLE organisation_details ALTER COLUMN language TYPE _tmp_enum USING language::text::_tmp_enum" + ) + + # Drop the old ENUM type if it's not used anywhere else + op.execute("DROP TYPE language") + + # Rename the tmp ENUM type back to 'language' + op.execute("ALTER TYPE _tmp_enum RENAME TO language") diff --git a/backend/alembic/versions/3de4ce027fe0_execute_full_text_search_configuration.py b/backend/alembic/versions/3de4ce027fe0_execute_full_text_search_configuration.py new file mode 100644 index 00000000..5dc252d3 --- /dev/null +++ b/backend/alembic/versions/3de4ce027fe0_execute_full_text_search_configuration.py @@ -0,0 +1,26 @@ +"""execute full text search database configuration + +Revision ID: 3de4ce027fe0 +Revises: d621bd490e48 +Create Date: 2023-11-14 11:46:16.008798 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "3de4ce027fe0" +down_revision = "d621bd490e48" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + with open("alembic/scripts/execute_full_text_search_configuration.sql") as file: + op.execute(file.read()) + + +def downgrade() -> None: + # No downgrade available. + pass diff --git a/backend/alembic/versions/412c46f50f27_add_organisation_type.py b/backend/alembic/versions/412c46f50f27_add_organisation_type.py new file mode 100644 index 00000000..f9f56dd2 --- /dev/null +++ b/backend/alembic/versions/412c46f50f27_add_organisation_type.py @@ -0,0 +1,35 @@ +"""add organisation type + +Revision ID: 412c46f50f27 +Revises: d621bd490e48 +Create Date: 2023-11-01 12:09:40.159758 + +""" +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql +from app.schemas import OrgType + +# revision identifiers, used by Alembic. +revision = "412c46f50f27" +down_revision = "b5ce4561c092" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + org_type = postgresql.ENUM(OrgType, name="type", create_type=False) + org_type.create(op.get_bind(), checkfirst=True) + + op.add_column( + "organisation", + sa.Column("type", org_type, nullable=True), + ) + + +def downgrade() -> None: + # Results in loss of data!!! + op.drop_column("organisation", "type") + + org_type = postgresql.ENUM(OrgType, name="type", create_type=False) + org_type.drop(op.get_bind()) diff --git a/backend/alembic/versions/42e58f22ba71_migrate_data_to_org_table.py b/backend/alembic/versions/42e58f22ba71_migrate_data_to_org_table.py new file mode 100644 index 00000000..498a9eb3 --- /dev/null +++ b/backend/alembic/versions/42e58f22ba71_migrate_data_to_org_table.py @@ -0,0 +1,143 @@ +"""migrate data to org table + +Revision ID: 42e58f22ba71 +Revises: 2929cd63a048 +Create Date: 2023-09-18 16:08:39.722690 + +""" +from alembic import op +import sqlalchemy as sa +from app.models import Organisation + +# revision identifiers, used by Alembic. +revision = "42e58f22ba71" +down_revision = "2929cd63a048" +branch_labels = None +depends_on = None + +name_mapping = { + "provincie-noord-brabant": "Provincie Noord-Brabant", + "provincie-noord-holland": "Provincie Noord-Holland", + "provincie-zuid-holland": "Provincie Zuid-Holland", + "ministerie-fin": "Ministerie van Financiën", + "ministerie-ezk": "Ministerie van Economische Zaken en Klimaat", + "ministerie-az": "Ministerie van Algemene Zaken", + "ministerie-bzk": "Ministerie van Binnenlandse Zaken en Koninkrijksrelaties", + "ministerie-bz": "Ministerie van Buitenlandse Zaken", + "ministerie-def": "Ministerie van Defensie", + "ministerie-ienw": "Ministerie van Infrastructuur en Waterstaat", + "ministerie-jenv": "Ministerie van Justitie en Veiligheid", + "ministerie-lnw": "Ministerie van Landbouw, Natuur en Voedselkwaliteit", + "ministerie-ocw": "Ministerie van Onderwijs, Cultuur en Wetenschap", + "ministerie-szw": "Ministerie van Sociale Zaken en Werkgelegenheid", + "ministerie-vws": "Ministerie van Volksgezondheid, Welzijn en Sport", + "justitiele-informatiedienst": "Justitiële Informatiedienst", + "rvig": "Rijksdienst voor Identiteitsgegevens", + "directie-financieel-economische-zaken": "Directie Financieel-Economische Zaken", + "inspectie-van-het-onderwijs": "Inspectie van het Onderwijs (OCW)", + "gemeente-sudwest-fryslan": "Gemeente Súdwest-Fryslân", + "omgevingsdienst-west-brabant": "Omgevingsdienst Midden- en West-Brabant", + "gemeente-goeree-overflakkee": "Gemeente Goeree-Overflakkee", + "gemeente-ouder-amstel": "Gemeente Ouder-Amstel", + "kamer-van-koophandel": "Kamer van Koophandel", + "rijksdienst-voor-ondernemend-nederland": "Rijksdienst voor Ondernemend Nederland", + "gemeente-shertogenbosch": "Gemeente 's-Hertogenbosch", + "odmh": "Omgevingsdienst Midden-Holland", + "SED-organisatie": "SED Organisatie (Gemeente Stede Broec, Enkhuizen, Drechterland)", + "provincie-friesland": "Provinsje Fryslân", + "gemeente-geldrop-mierlo": "Gemeente Geldrop-Mierlo", + "gemeente-nuenen-gerwen-en-nederwetten": "Gemeente Nuenen, Gerwen en Nederwetten", + "gemeente-son-en-breugel": "Gemeente Son en Breugel", + "DCMR-milieudienst-rijnmond": "DCMR Milieudienst Rijnmond", +} + + +def upgrade() -> None: + conn = op.get_bind() + res = conn.execute(sa.text("select id, owner from algoritme")) + if not res: + raise ConnectionError + results = res.fetchall() + + if len(results) == 0: + return + # Construct the rows for organisation table. Done in dict so it is easy to see unique orgs + unique_orgs = {} + for r in results: + if r[1] in name_mapping.keys(): + name = name_mapping[r[1]] + else: + name = r[1].split("-") + name = [word.capitalize() for word in name] + name = " ".join(name) + + entry = {"code": r[1], "name": name} + + key = r[1] + if key not in unique_orgs.keys(): + unique_orgs[key] = entry + + # insertion is done with list + orgs = [unique_orgs[key] for key in unique_orgs.keys()] + conn.execute(Organisation.__table__.insert().values(orgs)) # type: ignore + + # Get the new data, so that we have the id's. + res = conn.execute(sa.text("select id, code from organisation")) + if not res: + raise ConnectionError + organisations = res.fetchall() + + # new column in algoritme must have proper id's for references + when_text = " ".join( + [f"WHEN owner='{org[1]}' THEN {org[0]}" for org in organisations] + ) + update_statement = sa.text( + f""" + UPDATE algoritme + SET organisation_id = + CASE + {when_text} + END; + """ + ) + conn.execute(update_statement) + + # When done, remove owner column. Now uses organisation_id instead. + op.drop_column("algoritme", "owner") + + +def downgrade() -> None: + op.add_column( + "algoritme", + sa.Column("owner", sa.VARCHAR(length=1024), autoincrement=False, nullable=True), + ) + + conn = op.get_bind() + res = conn.execute(sa.text("select id, code, name from organisation")) + if not res: + raise ConnectionError + results = res.fetchall() + + when_text = " ".join( + [f"WHEN organisation_id='{r[0]}' THEN '{r[1]}'" for r in results] + ) + set_owner_statement = sa.text( + f""" + UPDATE algoritme + SET owner = + CASE + {when_text} + END; + """ + ) + conn.execute(set_owner_statement) + + reset_organisation_id_statement = sa.text( + """ + UPDATE algoritme + SET organisation_id = NULL + """ + ) + conn.execute(reset_organisation_id_statement) + + conn.execute(sa.text("DELETE FROM organisation")) diff --git a/backend/alembic/versions/4fa08b56de37_iama_column.py b/backend/alembic/versions/4fa08b56de37_iama_column.py deleted file mode 100644 index f5eba67b..00000000 --- a/backend/alembic/versions/4fa08b56de37_iama_column.py +++ /dev/null @@ -1,36 +0,0 @@ -"""iama column - -Revision ID: 4fa08b56de37 -Revises: 995060402de4 -Create Date: 2022-12-09 08:57:39.343415 - -""" -from alembic import op -import sqlalchemy as sa - - -# revision identifiers, used by Alembic. -revision = "4fa08b56de37" -down_revision = "995060402de4" -branch_labels = None -depends_on = None - - -def upgrade() -> None: - connection = op.get_bind() - connection.execute("delete from algoritme") - op.add_column( - table_name="juridisch", - column=sa.Column("iama", sa.VARCHAR(128), nullable=False), - ) - op.add_column( - table_name="juridisch", - column=sa.Column("iama_description", sa.VARCHAR(5000), nullable=False), - ) - - -def downgrade() -> None: - [ - op.drop_column(table_name="juridisch", column_name=column_name) - for column_name in ["iama", "iama_description"] - ] diff --git a/backend/alembic/versions/59ae16a67b97_add_state_in_algoritme_version.py b/backend/alembic/versions/59ae16a67b97_add_state_in_algoritme_version.py new file mode 100644 index 00000000..84cbe6d9 --- /dev/null +++ b/backend/alembic/versions/59ae16a67b97_add_state_in_algoritme_version.py @@ -0,0 +1,28 @@ +"""add state in algoritme_version + +Revision ID: 59ae16a67b97 +Revises: 808e25658734 +Create Date: 2024-05-31 11:53:10.552962 + +""" + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "59ae16a67b97" +down_revision = "808e25658734" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.add_column( + "algoritme_version", + sa.Column("state", sa.VARCHAR(), server_default="STATE_1", nullable=False), + ) + + +def downgrade() -> None: + op.drop_column("algoritme_version", "state") diff --git a/backend/alembic/versions/6ce739d70f55_add_released_column.py b/backend/alembic/versions/6ce739d70f55_add_released_column.py new file mode 100644 index 00000000..70a9c2dd --- /dev/null +++ b/backend/alembic/versions/6ce739d70f55_add_released_column.py @@ -0,0 +1,27 @@ +"""add released column + +Revision ID: 6ce739d70f55 +Revises: 04b904159980 +Create Date: 2023-04-12 15:12:17.599672 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "6ce739d70f55" +down_revision = "04b904159980" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.add_column( + "algoritme_version", + sa.Column("released", sa.Boolean(), nullable=False, server_default="False"), + ) + + +def downgrade() -> None: + op.drop_column("algoritme_version", "released") diff --git a/backend/alembic/versions/729c45f8a00f_add_precomputed_stats_table.py b/backend/alembic/versions/729c45f8a00f_add_precomputed_stats_table.py new file mode 100644 index 00000000..9a3367e8 --- /dev/null +++ b/backend/alembic/versions/729c45f8a00f_add_precomputed_stats_table.py @@ -0,0 +1,39 @@ +"""add_precomputed_values_table + +Revision ID: 729c45f8a00f +Revises: fd3c6095627b +Create Date: 2024-09-13 17:18:48.551788 + +""" +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql +from app.schemas import Language + + +# revision identifiers, used by Alembic. +revision = '729c45f8a00f' +down_revision = 'fd3c6095627b' +branch_labels = None +depends_on = None + + +def upgrade() -> None: + language = postgresql.ENUM(Language, name="language", create_type=False) + op.create_table( + "precomputed_values", + sa.Column("id", sa.Integer(), primary_key=True, index=True), + sa.Column("language", language, nullable=False), + sa.Column("key", sa.VARCHAR(length=1024), nullable=False), + sa.Column("value", sa.JSON(), nullable=False), + sa.Column( + "create_dt", + sa.DateTime(timezone=True), + nullable=False, + server_default=sa.func.now(), + ), + ) + + +def downgrade() -> None: + op.drop_table("precomputed_values") diff --git a/backend/alembic/versions/79c11dd82bc1_add_organisation_details.py b/backend/alembic/versions/79c11dd82bc1_add_organisation_details.py new file mode 100644 index 00000000..337a6cdc --- /dev/null +++ b/backend/alembic/versions/79c11dd82bc1_add_organisation_details.py @@ -0,0 +1,59 @@ +"""add organisation_details + +Revision ID: 79c11dd82bc1 +Revises: f3c9f5768daf +Create Date: 2023-12-06 14:12:24.554285 + +""" +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql +from app.schemas import Language + +# revision identifiers, used by Alembic. +revision = "79c11dd82bc1" +down_revision = "f3c9f5768daf" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.add_column( + "organisation", + sa.Column("show_page", sa.Boolean(), nullable=False, server_default="False"), + ) + + language = postgresql.ENUM(Language, name="language", create_type=False) + + op.create_table( + "organisation_details", + sa.Column("id", sa.Integer(), nullable=False), + sa.Column("organisation_id", sa.Integer(), nullable=False), + sa.Column("language", language, nullable=False), + sa.Column("name", sa.VARCHAR(length=1024), nullable=False), + sa.Column("email", sa.VARCHAR(length=1024), nullable=True), + sa.Column("about", sa.VARCHAR(length=2500), nullable=True), + sa.Column( + "create_dt", + sa.DateTime(timezone=True), + server_default=sa.text("now()"), + nullable=False, + ), + sa.ForeignKeyConstraint( + ["organisation_id"], ["organisation.id"], ondelete="cascade" + ), + sa.PrimaryKeyConstraint("id"), + sa.UniqueConstraint( + "language", "organisation_id", name="language_organisation_id_uc" + ), + ) + op.create_index( + op.f("ix_organisation_details_id"), "organisation_details", ["id"], unique=False + ) + + +def downgrade() -> None: + op.drop_index(op.f("ix_organisation_details_id"), table_name="organisation_details") + op.drop_table("organisation_details") + + op.drop_column("organisation", "show_page") diff --git a/backend/alembic/versions/808e25658734_add_flow_in_table.py b/backend/alembic/versions/808e25658734_add_flow_in_table.py new file mode 100644 index 00000000..2e6b11c9 --- /dev/null +++ b/backend/alembic/versions/808e25658734_add_flow_in_table.py @@ -0,0 +1,28 @@ +"""add flow in table + +Revision ID: 808e25658734 +Revises: dc89dfa5c832 +Create Date: 2024-05-29 14:20:48.811051 + +""" + +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "808e25658734" +down_revision = "dc89dfa5c832" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.add_column( + "organisation", + sa.Column("flow", sa.VARCHAR(), server_default="ictu_last", nullable=False), + ) + + +def downgrade() -> None: + op.drop_column("organisation", "flow") diff --git a/backend/alembic/versions/8420ea417658_increase_organisation_details_about.py b/backend/alembic/versions/8420ea417658_increase_organisation_details_about.py new file mode 100644 index 00000000..a0ae7444 --- /dev/null +++ b/backend/alembic/versions/8420ea417658_increase_organisation_details_about.py @@ -0,0 +1,36 @@ +"""Increase the about column of the organisation_details table + +Revision ID: 8420ea417658 +Revises: e4dc5e7bafc3 +Create Date: 2024-01-29 19:12:12.627372 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "8420ea417658" +down_revision = "e4dc5e7bafc3" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.alter_column( + "organisation_details", + "about", + existing_type=sa.VARCHAR(length=2500), + type_=sa.VARCHAR(length=10000), + existing_nullable=True, + ) + + +def downgrade() -> None: + op.alter_column( + "organisation_details", + "about", + existing_type=sa.VARCHAR(length=10000), + type_=sa.VARCHAR(length=2500), + existing_nullable=True, + ) diff --git a/backend/alembic/versions/845b0b6e654f_build_tables.py b/backend/alembic/versions/845b0b6e654f_build_tables.py new file mode 100644 index 00000000..d0b08d43 --- /dev/null +++ b/backend/alembic/versions/845b0b6e654f_build_tables.py @@ -0,0 +1,111 @@ +"""build tables + +Revision ID: 845b0b6e654f +Revises: +Create Date: 2023-03-07 16:56:50.020821 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "845b0b6e654f" +down_revision = None +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.create_table( + "algoritme", + sa.Column("id", sa.Integer(), nullable=False), + sa.Column("lars", sa.String(length=8), nullable=True), + sa.Column("leverancier_id", sa.String(length=1024), nullable=True), + sa.Column("owner", sa.String(length=1024), nullable=True), + sa.Column( + "create_dt", + sa.DateTime(timezone=True), + server_default=sa.text("now()"), + nullable=False, + ), + sa.PrimaryKeyConstraint("id"), + ) + op.create_index(op.f("ix_algoritme_id"), "algoritme", ["id"], unique=False) + op.create_index(op.f("ix_algoritme_lars"), "algoritme", ["lars"], unique=False) + + op.create_table( + "algoritme_version", + sa.Column("id", sa.Integer(), nullable=False), + sa.Column("algoritme_id", sa.Integer(), nullable=False), + sa.Column("name", sa.VARCHAR(length=1024), nullable=True), + sa.Column("organization", sa.VARCHAR(length=1024), nullable=True), + sa.Column("department", sa.VARCHAR(length=1024), nullable=True), + sa.Column("description_short", sa.VARCHAR(length=5000), nullable=True), + sa.Column("type", sa.VARCHAR(length=1024), nullable=True), + sa.Column("category", sa.VARCHAR(length=1024), nullable=True), + sa.Column("website", sa.VARCHAR(length=1024), nullable=True), + sa.Column("status", sa.VARCHAR(length=1024), nullable=True), + sa.Column("goal", sa.VARCHAR(length=5000), nullable=True), + sa.Column("impact", sa.VARCHAR(length=5000), nullable=True), + sa.Column("proportionality", sa.VARCHAR(length=5000), nullable=True), + sa.Column("decision_making_process", sa.VARCHAR(length=5000), nullable=True), + sa.Column("documentation", sa.VARCHAR(length=1024), nullable=True), + sa.Column("competent_authority", sa.VARCHAR(length=1024), nullable=True), + sa.Column("lawful_basis", sa.VARCHAR(length=5000), nullable=True), + sa.Column("iama", sa.VARCHAR(length=128), nullable=True), + sa.Column("iama_description", sa.VARCHAR(length=5000), nullable=True), + sa.Column("dpia", sa.VARCHAR(length=128), nullable=True), + sa.Column("dpia_description", sa.VARCHAR(length=5000), nullable=True), + sa.Column("objection_procedure", sa.VARCHAR(length=5000), nullable=True), + sa.Column("schema", sa.VARCHAR(length=1024), nullable=True), + sa.Column("uuid", sa.VARCHAR(length=1024), nullable=True), + sa.Column("url", sa.VARCHAR(length=1024), nullable=True), + sa.Column("contact_email", sa.VARCHAR(length=1024), nullable=True), + sa.Column("area", sa.VARCHAR(length=1024), nullable=True), + sa.Column("lang", sa.VARCHAR(length=1024), nullable=True), + sa.Column("revision_date", sa.VARCHAR(length=1024), nullable=True), + sa.Column("description", sa.VARCHAR(length=10000), nullable=True), + sa.Column("application_url", sa.VARCHAR(length=1024), nullable=True), + sa.Column("publiccode", sa.VARCHAR(length=1024), nullable=True), + sa.Column("mprd", sa.VARCHAR(length=500), nullable=True), + sa.Column("source_data", sa.VARCHAR(length=5000), nullable=True), + sa.Column("methods_and_models", sa.VARCHAR(length=5000), nullable=True), + sa.Column("monitoring", sa.VARCHAR(length=5000), nullable=True), + sa.Column("human_intervention", sa.VARCHAR(length=5000), nullable=True), + sa.Column("risks", sa.VARCHAR(length=5000), nullable=True), + sa.Column("performance_standard", sa.VARCHAR(length=5000), nullable=True), + sa.Column( + "create_dt", + sa.DateTime(timezone=True), + server_default=sa.text("now()"), + nullable=True, + ), + sa.Column("end_dt", sa.DateTime(timezone=True), nullable=True), + sa.Column( + "published", + sa.Boolean, + nullable=False, + server_default="False", + ), + sa.Column("preview_active", sa.Boolean, nullable=False, server_default="False"), + sa.Column("created_by", sa.VARCHAR(length=100), nullable=False), + sa.ForeignKeyConstraint( + ["algoritme_id"], + ["algoritme.id"], + name="algoritme_version_algoritme_id_fkey", + ondelete="CASCADE", + ), + sa.PrimaryKeyConstraint("id"), + ) + op.create_index( + op.f("ix_algoritme_version_id"), "algoritme_version", ["id"], unique=False + ) + + +def downgrade() -> None: + op.drop_index(op.f("ix_algoritme_version_id"), table_name="algoritme_version") + op.drop_table("algoritme_version") + op.drop_index(op.f("ix_algoritme_id"), table_name="algoritme") + op.drop_index(op.f("ix_algoritme_lars"), table_name="algoritme") + op.drop_table("algoritme") diff --git a/backend/alembic/versions/8691fce44bf2_add_columns_for_0_3_1.py b/backend/alembic/versions/8691fce44bf2_add_columns_for_0_3_1.py new file mode 100644 index 00000000..715f26ee --- /dev/null +++ b/backend/alembic/versions/8691fce44bf2_add_columns_for_0_3_1.py @@ -0,0 +1,41 @@ +"""add columns for 0.3.1 + +Revision ID: 8691fce44bf2 +Revises: 6ce739d70f55 +Create Date: 2023-04-18 13:28:26.382907 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "8691fce44bf2" +down_revision = "6ce739d70f55" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.add_column( + "algoritme_version", + sa.Column("provider", sa.VARCHAR(length=100), nullable=True), + ) + op.add_column( + "algoritme_version", + sa.Column("process_index_url", sa.VARCHAR(length=500), nullable=True), + ) + op.add_column( + "algoritme_version", sa.Column("tags", sa.VARCHAR(length=2500), nullable=True) + ) + op.add_column( + "algoritme_version", + sa.Column("source_id", sa.VARCHAR(length=100), nullable=True), + ) + + +def downgrade() -> None: + op.drop_column("algoritme_version", "tags") + op.drop_column("algoritme_version", "process_index_url") + op.drop_column("algoritme_version", "provider") + op.drop_column("algoritme_version", "source_id") diff --git a/backend/alembic/versions/8d57b6b9667f_create_algoritme_slug.py b/backend/alembic/versions/8d57b6b9667f_create_algoritme_slug.py deleted file mode 100644 index ba0e214d..00000000 --- a/backend/alembic/versions/8d57b6b9667f_create_algoritme_slug.py +++ /dev/null @@ -1,37 +0,0 @@ -"""create algoritme slug - -Revision ID: 8d57b6b9667f -Revises: 4fa08b56de37 -Create Date: 2022-12-09 09:42:25.407514 - -""" -from alembic import op -import sqlalchemy as sa - - -# revision identifiers, used by Alembic. -revision = "8d57b6b9667f" -down_revision = "4fa08b56de37" -branch_labels = None -depends_on = None - - -def upgrade() -> None: - connection = op.get_bind() - connection.execute("delete from algoritme") - slug_column_name = "slug" - table_name = "algoritme" - op.add_column( - table_name=table_name, - column=sa.Column(slug_column_name, sa.VARCHAR(128), nullable=False), - ) - op.create_index( - index_name="index_slug", - table_name=table_name, - columns=[slug_column_name], - unique=True, - ) - - -def downgrade() -> None: - op.drop_column(table_name="algoritme", column_name="slug") diff --git a/backend/alembic/versions/926a9cef924c_verwijder_algorimes_spoedverzoek.py b/backend/alembic/versions/926a9cef924c_verwijder_algorimes_spoedverzoek.py deleted file mode 100644 index 06f1ed82..00000000 --- a/backend/alembic/versions/926a9cef924c_verwijder_algorimes_spoedverzoek.py +++ /dev/null @@ -1,27 +0,0 @@ -"""verwijder algorimes (spoedverzoek) - -Revision ID: 926a9cef924c -Revises: f35c8031d388 -Create Date: 2022-12-05 12:23:43.539969 - -""" -from alembic import op -import sqlalchemy as sa - - -# revision identifiers, used by Alembic. -revision = "926a9cef924c" -down_revision = "f35c8031d388" -branch_labels = None -depends_on = None - - -def upgrade() -> None: - ids_to_be_removed = [46, 47, 48, 49, 50, 51, 52] - query = sa.text("delete from algoritme where id in :ids_to_be_removed") - connection = op.get_bind() - connection.execute(query, ids_to_be_removed=tuple(ids_to_be_removed)) - - -def downgrade() -> None: - pass diff --git a/backend/alembic/versions/94bf47cb75fb_vectorised_algoritme_version_columns.py b/backend/alembic/versions/94bf47cb75fb_vectorised_algoritme_version_columns.py new file mode 100644 index 00000000..d955994d --- /dev/null +++ b/backend/alembic/versions/94bf47cb75fb_vectorised_algoritme_version_columns.py @@ -0,0 +1,25 @@ +"""vectorised algoritme version columns + +Revision ID: 94bf47cb75fb +Revises: 3de4ce027fe0 +Create Date: 2023-10-30 11:08:48.176935 + +""" +from alembic import op + + +# revision identifiers, used by Alembic. +revision = "94bf47cb75fb" +down_revision = "3de4ce027fe0" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + with open("alembic/scripts/create_vectorized_column.sql") as file: + op.execute(file.read()) + + +def downgrade() -> None: + with open("alembic/scripts/remove_vectorized_column.sql") as file: + op.execute(file.read()) diff --git a/backend/alembic/versions/995060402de4_algoritme_uuid.py b/backend/alembic/versions/995060402de4_algoritme_uuid.py deleted file mode 100644 index b2d68308..00000000 --- a/backend/alembic/versions/995060402de4_algoritme_uuid.py +++ /dev/null @@ -1,51 +0,0 @@ -"""algoritme uuid - -Revision ID: 995060402de4 -Revises: 926a9cef924c -Create Date: 2022-12-05 21:33:36.143948 - -""" -from alembic import op -import sqlalchemy as sa -from sqlalchemy.dialects.postgresql import UUID - - -# revision identifiers, used by Alembic. -revision = "995060402de4" -down_revision = "926a9cef924c" -branch_labels = None -depends_on = None - -tables = ["algoritme", "inzet", "juridisch", "metadata", "toepassing", "toezicht"] - - -def upgrade() -> None: - op.add_column( - table_name="algoritme", - column=sa.Column( - "uuid", - UUID(as_uuid=True), - nullable=False, - server_default=sa.text("gen_random_uuid()"), - ), - ) - op.create_index( - index_name="index_uuid", table_name="algoritme", columns=["uuid"], unique=True - ) - - for table in tables: - op.add_column( - table_name=table, - column=sa.Column( - "toegevoegd_op", - sa.DateTime(timezone=True), - server_default=sa.sql.func.now(), - nullable=False, - ), - ) - - -def downgrade() -> None: - for table in tables: - op.drop_column(table_name=table, column_name="toegevoegd_op") - op.drop_column(table_name="algoritme", column_name="uuid") diff --git a/backend/alembic/versions/9e7ff58ba2cd_upload_data.py b/backend/alembic/versions/9e7ff58ba2cd_upload_data.py deleted file mode 100644 index 054faeee..00000000 --- a/backend/alembic/versions/9e7ff58ba2cd_upload_data.py +++ /dev/null @@ -1,29 +0,0 @@ -"""upload data - -Revision ID: 9e7ff58ba2cd -Revises: 216e1a80d74b -Create Date: 2022-11-22 11:53:02.393973 - -""" -from alembic import op -import os - -# revision identifiers, used by Alembic. -revision = '9e7ff58ba2cd' -down_revision = '216e1a80d74b' -branch_labels = None -depends_on = None - - -def upgrade() -> None: - structure_filepath = os.path.abspath("alembic/scripts/init_testdata.sql") - with open(structure_filepath) as f: - sql_file = f.read() - op.execute(sql_file + "SET search_path TO public") - pass - - -def downgrade() -> None: - tables = ["algemene_informatie", "inzet", "juridisch", "toepassing", "toezicht", "metadata"] - for table in tables: - op.execute(f"drop table {table} cascade") diff --git a/backend/alembic/versions/a3ff62ca5a84_execute_abbreviation_dictionary_.py b/backend/alembic/versions/a3ff62ca5a84_execute_abbreviation_dictionary_.py new file mode 100644 index 00000000..30d4948b --- /dev/null +++ b/backend/alembic/versions/a3ff62ca5a84_execute_abbreviation_dictionary_.py @@ -0,0 +1,28 @@ +"""execute_abbreviation_dictionary_configuration + +Revision ID: a3ff62ca5a84 +Revises: 8420ea417658 +Create Date: 2024-02-12 17:13:04.828637 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "a3ff62ca5a84" +down_revision = "d807befdcc18" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + with open( + "alembic/scripts/execute_abbreviation_dictionairy_configuration.sql" + ) as file: + op.execute(file.read()) + + +def downgrade() -> None: + # No downgrade available. + pass diff --git a/backend/alembic/versions/b5ce4561c092_words_table_for_algoritme_version.py b/backend/alembic/versions/b5ce4561c092_words_table_for_algoritme_version.py new file mode 100644 index 00000000..f285fb89 --- /dev/null +++ b/backend/alembic/versions/b5ce4561c092_words_table_for_algoritme_version.py @@ -0,0 +1,26 @@ +"""Create words table for algoritme version + +Revision ID: b5ce4561c092 +Revises: 94bf47cb75fb +Create Date: 2023-11-13 12:18:23.132668 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "b5ce4561c092" +down_revision = "94bf47cb75fb" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + with open("alembic/scripts/create_words_table.sql") as file: + op.execute(file.read()) + + +def downgrade() -> None: + with open("alembic/scripts/remove_words_table.sql") as file: + op.execute(file.read()) diff --git a/backend/alembic/versions/ba4ce1f66866_0_4_0.py b/backend/alembic/versions/ba4ce1f66866_0_4_0.py new file mode 100644 index 00000000..3a4739f8 --- /dev/null +++ b/backend/alembic/versions/ba4ce1f66866_0_4_0.py @@ -0,0 +1,60 @@ +"""0.4.0 + +Revision ID: ba4ce1f66866 +Revises: 0a1b6fc81205 +Create Date: 2023-05-30 11:29:29.903615 + +""" +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql + +# revision identifiers, used by Alembic. +revision = "ba4ce1f66866" +down_revision = "0a1b6fc81205" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.add_column( + "algoritme_version", + sa.Column("begin_date", sa.VARCHAR(length=7), nullable=True), + ) + op.add_column( + "algoritme_version", sa.Column("end_date", sa.VARCHAR(length=7), nullable=True) + ) + op.add_column( + "algoritme_version", + sa.Column("lawful_basis_link", sa.VARCHAR(length=200), nullable=True), + ) + op.add_column( + "algoritme_version", + sa.Column("impacttoetsen", sa.VARCHAR(length=1024), nullable=True), + ) + op.add_column( + "algoritme_version", + sa.Column("source_data_link", sa.VARCHAR(length=500), nullable=True), + ) + op.alter_column( + "algoritme_version", + "provider", + existing_type=sa.VARCHAR(length=100), + type_=sa.VARCHAR(length=200), + existing_nullable=True, + ) + + +def downgrade() -> None: + op.alter_column( + "algoritme_version", + "provider", + existing_type=sa.VARCHAR(length=200), + type_=sa.VARCHAR(length=100), + existing_nullable=True, + ) + op.drop_column("algoritme_version", "source_data_link") + op.drop_column("algoritme_version", "impacttoetsen") + op.drop_column("algoritme_version", "lawful_basis_link") + op.drop_column("algoritme_version", "end_date") + op.drop_column("algoritme_version", "begin_date") diff --git a/backend/alembic/versions/c6bff8b8c900_add_language_dependency.py b/backend/alembic/versions/c6bff8b8c900_add_language_dependency.py new file mode 100644 index 00000000..fd240d2d --- /dev/null +++ b/backend/alembic/versions/c6bff8b8c900_add_language_dependency.py @@ -0,0 +1,34 @@ +"""add language dependency + +Revision ID: c6bff8b8c900 +Revises: 42e58f22ba71 +Create Date: 2023-10-02 14:50:06.490302 + +""" +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql +from app.schemas import Language + +# revision identifiers, used by Alembic. +revision = "c6bff8b8c900" +down_revision = "42e58f22ba71" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + language = postgresql.ENUM(Language, name="language", create_type=False) + language.create(op.get_bind(), checkfirst=True) + + op.add_column( + "algoritme_version", + sa.Column("language", language, server_default="NLD", nullable=True), + ) + + +def downgrade() -> None: + op.drop_column("algoritme_version", "language") + + language_enum = postgresql.ENUM(Language, name="language", create_type=False) + language_enum.drop(op.get_bind()) diff --git a/backend/alembic/versions/cbebdfcd0582_convert_db_action_enum_to_varchar.py b/backend/alembic/versions/cbebdfcd0582_convert_db_action_enum_to_varchar.py new file mode 100644 index 00000000..935bc85f --- /dev/null +++ b/backend/alembic/versions/cbebdfcd0582_convert_db_action_enum_to_varchar.py @@ -0,0 +1,34 @@ +"""Convert DB action ENUM to VARCHAR + +Revision ID: cbebdfcd0582 +Revises: 59ae16a67b97 +Create Date: 2024-06-24 15:50:18.051669 + +""" + +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql + +from app.schemas import OperationEnum + +# revision identifiers, used by Alembic. +revision = "cbebdfcd0582" +down_revision = "59ae16a67b97" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.alter_column( + "action_history", "operation", type_=sa.VARCHAR(length=32), nullable=False + ) + op.execute("DROP TYPE operation") + + +def downgrade() -> None: + operation = postgresql.ENUM(OperationEnum, name="operation", create_type=False) + operation.create(op.get_bind(), checkfirst=True) + op.execute( + "ALTER TABLE action_history ALTER COLUMN operation TYPE operation USING operation::text::operation" + ) diff --git a/backend/alembic/versions/d621bd490e48_remove_default_value_language.py b/backend/alembic/versions/d621bd490e48_remove_default_value_language.py new file mode 100644 index 00000000..a9e509be --- /dev/null +++ b/backend/alembic/versions/d621bd490e48_remove_default_value_language.py @@ -0,0 +1,26 @@ +"""remove default value language + +Revision ID: d621bd490e48 +Revises: c6bff8b8c900 +Create Date: 2023-10-02 14:55:10.969871 + +""" +from alembic import op + +# revision identifiers, used by Alembic. +revision = "d621bd490e48" +down_revision = "c6bff8b8c900" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.alter_column( + "algoritme_version", "language", server_default=None, nullable=False + ) + + +def downgrade() -> None: + op.alter_column( + "algoritme_version", "language", server_default="NLD", nullable=True + ) diff --git a/backend/alembic/versions/d807befdcc18_rename_email_to_contact_info_org_page.py b/backend/alembic/versions/d807befdcc18_rename_email_to_contact_info_org_page.py new file mode 100644 index 00000000..80007ecc --- /dev/null +++ b/backend/alembic/versions/d807befdcc18_rename_email_to_contact_info_org_page.py @@ -0,0 +1,28 @@ +"""rename_email_to_contact_info_org_page + +Revision ID: d807befdcc18 +Revises: 8420ea417658 +Create Date: 2024-02-15 17:22:18.045561 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "d807befdcc18" +down_revision = "8420ea417658" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.alter_column( + "organisation_details", "email", nullable=True, new_column_name="contact_info" + ) + + +def downgrade() -> None: + op.alter_column( + "organisation_details", "contact_info", nullable=True, new_column_name="email" + ) diff --git a/backend/alembic/versions/dc89dfa5c832_execute_fts_conf_frisian.py b/backend/alembic/versions/dc89dfa5c832_execute_fts_conf_frisian.py new file mode 100644 index 00000000..e1e21299 --- /dev/null +++ b/backend/alembic/versions/dc89dfa5c832_execute_fts_conf_frisian.py @@ -0,0 +1,29 @@ +"""execute full text search configuration for frisian language + +Revision ID: dc89dfa5c832 +Revises: 3a08d0a0aede +Create Date: 2024-04-02 16:30:43.079651 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "dc89dfa5c832" +down_revision = "3a08d0a0aede" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + # pass + with open( + "alembic/scripts/create_frysian_full_text_search_configuration.sql" + ) as file: + op.execute(file.read()) + + +def downgrade() -> None: + # No downgrade available. + pass diff --git a/backend/alembic/versions/e4dc5e7bafc3_increase_column_sizes.py b/backend/alembic/versions/e4dc5e7bafc3_increase_column_sizes.py new file mode 100644 index 00000000..03c1207d --- /dev/null +++ b/backend/alembic/versions/e4dc5e7bafc3_increase_column_sizes.py @@ -0,0 +1,64 @@ +"""increase column sizes of provider, lawful_basis_link and methods_and_models + +Revision ID: e4dc5e7bafc3 +Revises: 116c2febf399 +Create Date: 2023-12-19 15:51:20.345004 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "e4dc5e7bafc3" +down_revision = "116c2febf399" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.alter_column( + "algoritme_version", + "provider", + existing_type=sa.VARCHAR(length=200), + type_=sa.VARCHAR(length=5000), + existing_nullable=True, + ) + op.alter_column( + "algoritme_version", + "lawful_basis_link", + existing_type=sa.VARCHAR(length=200), + type_=sa.VARCHAR(length=5000), + existing_nullable=True, + ) + op.alter_column( + "algoritme_version", + "methods_and_models", + existing_type=sa.VARCHAR(length=5000), + type_=sa.VARCHAR(length=10000), + existing_nullable=True, + ) + + +def downgrade() -> None: + op.alter_column( + "algoritme_version", + "provider", + existing_type=sa.VARCHAR(length=5000), + type_=sa.VARCHAR(length=200), + existing_nullable=True, + ) + op.alter_column( + "algoritme_version", + "lawful_basis_link", + existing_type=sa.VARCHAR(length=5000), + type_=sa.VARCHAR(length=200), + existing_nullable=True, + ) + op.alter_column( + "algoritme_version", + "methods_and_models", + existing_type=sa.VARCHAR(length=10000), + type_=sa.VARCHAR(length=5000), + existing_nullable=True, + ) diff --git a/backend/alembic/versions/f35c8031d388_adjust_table_name_algemene_informatie.py b/backend/alembic/versions/f35c8031d388_adjust_table_name_algemene_informatie.py deleted file mode 100644 index 845fcbde..00000000 --- a/backend/alembic/versions/f35c8031d388_adjust_table_name_algemene_informatie.py +++ /dev/null @@ -1,23 +0,0 @@ -"""adjust table name algemene_informatie - -Revision ID: f35c8031d388 -Revises: 9e7ff58ba2cd -Create Date: 2022-11-25 10:53:00.746239 - -""" -from alembic import op - - -# revision identifiers, used by Alembic. -revision = "f35c8031d388" -down_revision = "9e7ff58ba2cd" -branch_labels = None -depends_on = None - - -def upgrade() -> None: - op.rename_table("algemene_informatie", "algoritme") - - -def downgrade() -> None: - op.rename_table("algoritme", "algemene_informatie") diff --git a/backend/alembic/versions/f3c9f5768daf_1_0_0.py b/backend/alembic/versions/f3c9f5768daf_1_0_0.py new file mode 100644 index 00000000..62130e90 --- /dev/null +++ b/backend/alembic/versions/f3c9f5768daf_1_0_0.py @@ -0,0 +1,46 @@ +"""1.0.0 + +Revision ID: f3c9f5768daf +Revises: 412c46f50f27 +Create Date: 2023-11-28 14:51:58.879670 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = "f3c9f5768daf" +down_revision = "412c46f50f27" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + op.add_column( + "algoritme_version", + sa.Column("publication_category", sa.VARCHAR(length=1000), nullable=True), + ) + op.add_column( + "algoritme_version", + sa.Column("lawful_basis_grouping", sa.JSON(), nullable=True), + ) + op.add_column( + "algoritme_version", + sa.Column("impacttoetsen_grouping", sa.JSON(), nullable=True), + ) + op.add_column( + "algoritme_version", sa.Column("source_data_grouping", sa.JSON(), nullable=True) + ) + + with open("alembic/scripts/upgrade_vector_1_0_0.sql") as file: + op.execute(file.read()) + + +def downgrade() -> None: + with open("alembic/scripts/downgrade_vector_1_0_0.sql") as file: + op.execute(file.read()) + op.drop_column("algoritme_version", "source_data_grouping") + op.drop_column("algoritme_version", "impacttoetsen_grouping") + op.drop_column("algoritme_version", "lawful_basis_grouping") + op.drop_column("algoritme_version", "publication_category") diff --git a/backend/alembic/versions/fd3c6095627b_add_broken_link_logging_table.py b/backend/alembic/versions/fd3c6095627b_add_broken_link_logging_table.py new file mode 100644 index 00000000..bb10e0b2 --- /dev/null +++ b/backend/alembic/versions/fd3c6095627b_add_broken_link_logging_table.py @@ -0,0 +1,47 @@ +"""add_broken_link_logging_table + +Revision ID: fd3c6095627b +Revises: 59ae16a67b97 +Create Date: 2024-06-17 16:14:30.271900 + +""" + +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import postgresql +from app.schemas import Language + + +# revision identifiers, used by Alembic. +revision = "fd3c6095627b" +down_revision = "26b1ef55e478" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + language = postgresql.ENUM(Language, name="language", create_type=False) + language.create(op.get_bind(), checkfirst=True) + op.create_table( + "broken_links", + sa.Column("id", sa.Integer(), nullable=False), + sa.Column("lars", sa.String(length=8), nullable=True), + sa.Column("name", sa.VARCHAR(length=1024), nullable=True), + sa.Column("organisation", sa.VARCHAR(length=1024), nullable=True), + sa.Column("language", language, server_default=None, nullable=True), + sa.Column("broken_links", sa.JSON, nullable=True), + sa.Column("batch", sa.Integer(), nullable=True), + sa.Column( + "create_dt", + sa.DateTime(timezone=True), + server_default=sa.text("now()"), + nullable=False, + ), + sa.PrimaryKeyConstraint("id"), + ) + op.create_index(op.f("ix_broken_links_id"), "broken_links", ["id"], unique=False) + + +def downgrade() -> None: + op.drop_index(op.f("ix_broken_links_id"), table_name="broken_links") + op.drop_table("broken_links") diff --git a/backend/app/__init__.py b/backend/app/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/backend/app/api.py b/backend/app/api.py new file mode 100644 index 00000000..102045c4 --- /dev/null +++ b/backend/app/api.py @@ -0,0 +1,66 @@ +import re +from fastapi import FastAPI, APIRouter +from starlette.middleware.cors import CORSMiddleware +from fastapi.responses import RedirectResponse + +from app import routers +from app.util.logger import get_logger + +logger = get_logger(__name__) + +api = FastAPI( + docs_url="/api-docs", + title="Algoritmeregister aanlevering API", + swagger_ui_parameters={ + "displayRequestDuration": True, + "defaultModelsExpandDepth": -1, + }, +) + +router = APIRouter() + +api.include_router(routers.downloads.router, prefix="/downloads", tags=["Downloads"]) +api.include_router(routers.organisation_details.router, tags=["Organisatiedetails"]) +api.include_router(routers.organisation.router, tags=["Organisatie"]) +api.include_router(routers.algoritme.router, tags=["Algoritme"]) +api.include_router(routers.c3po.router, prefix="/c3po", tags=["C3PO"]) +api.include_router(routers.templates.router, prefix="/templates", tags=["Templates"]) +api.include_router(routers.user.router, tags=["User"]) +api.include_router(routers.broken_links.router, tags=["Dashboard"]) +api.include_router(routers.aggregations.router, tags=["Aggregations"]) + +# Includes fastapi instances in routers folders dynamically. +version_pattern = re.compile(r"v\d_\d[a-z]?") +file_names = [item for item in dir(routers) if version_pattern.match(item)] +for f in file_names: + file = getattr(routers, f) + mount_router = getattr(file, "api") + api.mount(f"/{f}", mount_router) + + +@api.middleware("http") +async def redirect_legacy_aanleverapi(request, call_next): + """ + Dynamically redirect valid API calls with an extra zero to the corresponding new version. + """ + version_mapping = {f"{version}_0": version for version in file_names} + request_url = request.url.path + if not request_url.startswith("/aanleverapi"): + response = await call_next(request) + return response + + request_api_version = request_url.split("/")[2] + if request_api_version not in version_mapping.keys(): + response = await call_next(request) + return response + + new_url = request_url.replace( + request_api_version, version_mapping[request_api_version] + ) + response = RedirectResponse(url=new_url) + return response + + +api.add_middleware( + CORSMiddleware, allow_origins=["*"], allow_methods=["*"], allow_headers=["*"] +) diff --git a/backend/app/config/api.py b/backend/app/config/api.py new file mode 100644 index 00000000..af776801 --- /dev/null +++ b/backend/app/config/api.py @@ -0,0 +1,109 @@ +from typing import TypedDict +from app import schemas + +default_responses = { + 401: {"description": "Authentication Error", "model": schemas.Message}, + 404: {"description": "Not Found Error", "model": schemas.Message}, + 429: {"description": "Too Many Requests Error", "model": schemas.Message}, +} + +responses = { + "get_all": { + **default_responses, + 200: { + "content": { + "application/json": {"schema": {"title": "List of algorithm summaries"}} + } + }, + }, + "get_one": { + **default_responses, + 200: { + "content": { + "application/json": { + "schema": {"title": "Any of the algorithm standards."} + } + } + }, + }, + "get_one_published": { + **default_responses, + 200: { + "content": { + "application/json": { + "schema": {"title": "Any of the algorithm standards."} + } + } + }, + }, + "post": {**default_responses}, + "put": {**default_responses}, + "delete": {**default_responses}, + "publish": {**default_responses}, + "release": { + **default_responses, + 409: {"description": "Conflict Error", "model": schemas.Message}, + }, + "preview": {**default_responses}, + "remove": {**default_responses}, + "archive_version": {**default_responses}, + "unarchive_version": {**default_responses}, +} + + +class EndpointText(TypedDict): + summary: str + description: str + + +api_text: dict[str, EndpointText] = { + "get_all": { + "summary": "Haal alle beschikbare algoritmes op.", + "description": "Geeft een samenvatting van de algoritmes terug waar u bewerkingsrechten voor heeft.", + }, + "get_one": { + "summary": "Haal de nieuwste versie van één algoritme op.", + "description": """Verkrijg de nieuwste gegevens van één algoritme. Dit is niet per se gepubliceerd.""", + }, + "get_one_published": { + "summary": "Haal de gepubliceerde versie van één algoritme op.", + "description": "Verkrijg de gepubliceerde versie van één algoritme.", + }, + "post": { + "summary": "Maak een nieuw algoritme.", + "description": "Het aanroepen van dit endpoint creeërt een nieuw algoritme.", + }, + "put": { + "summary": "Update een algoritme.", + "description": "Sla de nieuwe algoritme-informatie op. Hiermee is het nog niet gepubliceerd.", + }, + "delete": { + "summary": "Verberg een algoritme.", + "description": "Verberg een algoritme, zodat deze niet meer publiek toegankelijk is.", + }, + "publish": { + "summary": "Publiceer een algoritme.", + "description": "Publiceer de laatste gegevens van een algoritme, zodat deze publiek toegankelijk zijn.", + }, + "release": { + "summary": "Geef een algoritme vrij voor publicatie.", + "description": "Geef de laatste gegevens van een algoritme vrij, zodat BZK ze kan gaan inspecteren, en " + "uiteindelijk publiceren.", + }, + "preview": { + "summary": "Bekijk een preview van een algoritme.", + "description": """Krijg een URL waarmee de laatste gegevens van een algoritme kunnen worden bekeken.""", + }, + "remove": { + "summary": "Verwijder een algoritme. Alleen beschikbaar voor beheerders.", + "description": "", + }, + "archive_version": { + "summary": "Archiveer een niet-gepubliceerde versie van een algoritme.", + "description": "Archiveer een gepubliceerde versie van een algoritme.", + }, + "unarchive_version": { + "summary": "Maak de archivering van een algoritmeversie ongedaan.", + "description": "Maak de archivering van een algoritmeversie ongedaan.", + }, +} diff --git a/backend/app/config/layouts/types.py b/backend/app/config/layouts/types.py new file mode 100644 index 00000000..df0ee5a4 --- /dev/null +++ b/backend/app/config/layouts/types.py @@ -0,0 +1,17 @@ +from pydantic import BaseModel + + +class GenericCardGrouping(BaseModel): + mainElement: str + subElements: list[str] + + +class TabGrouping(BaseModel): + key: str + label: str + rows: list[str] + + +class LayoutJson(BaseModel): + genericCardGrouping: GenericCardGrouping + tabsGrouping: list[TabGrouping] diff --git a/backend/app/config/layouts/v0_1.json b/backend/app/config/layouts/v0_1.json new file mode 100644 index 00000000..9e67d12c --- /dev/null +++ b/backend/app/config/layouts/v0_1.json @@ -0,0 +1,73 @@ +{ + "genericCardGrouping": { + "mainElement": "description_short", + "subElements": ["organization", "department", "category", "type", "status"] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "label": "Algemene informatie", + "rows": [ + "name", + "organization", + "department", + "description_short", + "type", + "category", + "website", + "status" + ] + }, + { + "key": "inzet", + "label": "Inzet", + "rows": [ + "goal", + "impact", + "proportionality", + "decision_making_process", + "documentation" + ] + }, + { + "key": "juridisch", + "label": "Juridisch", + "rows": [ + "competent_authority", + "lawful_basis", + "iama", + "iama_description", + "dpia", + "dpia_description", + "objection_procedure" + ] + }, + { + "key": "metadata_algorithm", + "label": "Metadata", + "rows": ["url", "contact_email", "area", "lang", "revision_date"] + }, + { + "key": "toepassing", + "label": "Toepassing", + "rows": [ + "description", + "application_url", + "publiccode", + "mprd", + "source_data", + "methods_and_models" + ] + }, + { + "key": "toezicht", + "label": "Toezicht", + "rows": [ + "monitoring", + "human_intervention", + "risks", + "performance_standard" + ] + } + ] +} diff --git a/backend/app/config/layouts/v0_1_0.json b/backend/app/config/layouts/v0_1_0.json new file mode 100644 index 00000000..c99ca24f --- /dev/null +++ b/backend/app/config/layouts/v0_1_0.json @@ -0,0 +1,85 @@ +{ + "headerCardGrouping": { + "mainElement": "description_short", + "subElements": [ + "organization", + "department", + "category", + "type", + "status" + ] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "label": "Algemene informatie", + "rows": [ + "name", + "organization", + "department", + "description_short", + "type", + "category", + "website", + "status" + ] + }, + { + "key": "inzet", + "label": "Inzet", + "rows": [ + "goal", + "impact", + "proportionality", + "decision_making_process", + "documentation" + ] + }, + { + "key": "juridisch", + "label": "Juridisch", + "rows": [ + "competent_authority", + "lawful_basis", + "iama", + "iama_description", + "dpia", + "dpia_description", + "objection_procedure" + ] + }, + { + "key": "metadata_algorithm", + "label": "Metadata", + "rows": [ + "url", + "contact_email", + "area", + "lang", + "revision_date" + ] + }, + { + "key": "toepassing", + "label": "Toepassing", + "rows": [ + "description", + "application_url", + "publiccode", + "mprd", + "source_data", + "methods_and_models" + ] + }, + { + "key": "toezicht", + "label": "Toezicht", + "rows": [ + "monitoring", + "human_intervention", + "risks", + "performance_standard" + ] + } + ] +} \ No newline at end of file diff --git a/backend/app/config/layouts/v0_2_3.json b/backend/app/config/layouts/v0_2_3.json new file mode 100644 index 00000000..c99ca24f --- /dev/null +++ b/backend/app/config/layouts/v0_2_3.json @@ -0,0 +1,85 @@ +{ + "headerCardGrouping": { + "mainElement": "description_short", + "subElements": [ + "organization", + "department", + "category", + "type", + "status" + ] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "label": "Algemene informatie", + "rows": [ + "name", + "organization", + "department", + "description_short", + "type", + "category", + "website", + "status" + ] + }, + { + "key": "inzet", + "label": "Inzet", + "rows": [ + "goal", + "impact", + "proportionality", + "decision_making_process", + "documentation" + ] + }, + { + "key": "juridisch", + "label": "Juridisch", + "rows": [ + "competent_authority", + "lawful_basis", + "iama", + "iama_description", + "dpia", + "dpia_description", + "objection_procedure" + ] + }, + { + "key": "metadata_algorithm", + "label": "Metadata", + "rows": [ + "url", + "contact_email", + "area", + "lang", + "revision_date" + ] + }, + { + "key": "toepassing", + "label": "Toepassing", + "rows": [ + "description", + "application_url", + "publiccode", + "mprd", + "source_data", + "methods_and_models" + ] + }, + { + "key": "toezicht", + "label": "Toezicht", + "rows": [ + "monitoring", + "human_intervention", + "risks", + "performance_standard" + ] + } + ] +} \ No newline at end of file diff --git a/backend/app/config/layouts/v0_3_1.json b/backend/app/config/layouts/v0_3_1.json new file mode 100644 index 00000000..d3872cad --- /dev/null +++ b/backend/app/config/layouts/v0_3_1.json @@ -0,0 +1,85 @@ +{ + "headerCardGrouping": { + "mainElement": "description_short", + "subElements": [ + "organization", + "department", + "category", + "type", + "status" + ] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "label": "Algemene informatie", + "rows": [ + "name", + "organization", + "department", + "description_short", + "type", + "category", + "website", + "status" + ] + }, + { + "key": "inzet", + "label": "Inzet", + "rows": [ + "goal", + "impact", + "proportionality", + "provider", + "application_url", + "process_index_url" + ] + }, + { + "key": "juridisch", + "label": "Juridisch", + "rows": [ + "lawful_basis", + "iama", + "iama_description", + "dpia", + "objection_procedure" + ] + }, + { + "key": "metadata_algorithm", + "label": "Metadata", + "rows": [ + "url", + "contact_email", + "area", + "lang", + "standard_version", + "source_id", + "revision_date", + "tags" + ] + }, + { + "key": "toepassing", + "label": "Toepassing", + "rows": [ + "description", + "source_data", + "methods_and_models", + "publiccode" + ] + }, + { + "key": "toezicht", + "label": "Toezicht", + "rows": [ + "monitoring", + "human_intervention", + "risks", + "performance_standard" + ] + } + ] +} \ No newline at end of file diff --git a/backend/app/config/layouts/v0_4.json b/backend/app/config/layouts/v0_4.json new file mode 100644 index 00000000..1c808fb9 --- /dev/null +++ b/backend/app/config/layouts/v0_4.json @@ -0,0 +1,50 @@ +{ + "genericCardGrouping": { + "mainElement": "description_short", + "subElements": ["organization", "category", "type", "status"] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "label": "Algemene informatie", + "rows": [ + "name", + "organization", + "description_short", + "type", + "category", + "status", + "begin_date", + "end_date", + "contact_email", + "website", + "url" + ] + }, + { + "key": "verantwoordGebruik", + "label": "Verantwoord gebruik", + "rows": [ + "goal", + "proportionality", + "human_intervention", + "risks", + "lawful_basis", + "lawful_basis_link", + "impacttoetsen", + "iama_description" + ] + }, + { + "key": "technischeWerking", + "label": "Technische werking", + "rows": [ + "source_data", + "source_data_link", + "methods_and_models", + "provider", + "publiccode" + ] + } + ] +} diff --git a/backend/app/config/layouts/v0_4_0.json b/backend/app/config/layouts/v0_4_0.json new file mode 100644 index 00000000..1bb91f73 --- /dev/null +++ b/backend/app/config/layouts/v0_4_0.json @@ -0,0 +1,55 @@ +{ + "headerCardGrouping": { + "mainElement": "description_short", + "subElements": [ + "organization", + "category", + "type", + "status" + ] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "label": "Algemene informatie", + "rows": [ + "name", + "organization", + "description_short", + "type", + "category", + "status", + "begin_date", + "end_date", + "contact_email", + "website", + "url" + ] + }, + { + "key": "verantwoordGebruik", + "label": "Verantwoord gebruik", + "rows": [ + "goal", + "proportionality", + "human_intervention", + "risks", + "lawful_basis", + "lawful_basis_link", + "impacttoetsen", + "iama_description" + ] + }, + { + "key": "technischeWerking", + "label": "Technische werking", + "rows": [ + "source_data", + "source_data_link", + "methods_and_models", + "provider", + "publiccode" + ] + } + ] +} \ No newline at end of file diff --git a/backend/app/config/layouts/v1_0.json b/backend/app/config/layouts/v1_0.json new file mode 100644 index 00000000..ebf007f1 --- /dev/null +++ b/backend/app/config/layouts/v1_0.json @@ -0,0 +1,56 @@ +{ + "genericCardGrouping": { + "mainElement": "description_short", + "subElements": ["organization", "category", "status"] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "label": "Algemene informatie", + "rows": [ + "name", + "description_short", + "organization", + "category", + "status", + "begin_date", + "end_date", + "contact_email", + "website", + "publication_category", + "url" + ] + }, + { + "key": "verantwoordGebruik", + "label": "Verantwoord gebruik", + "rows": [ + "goal", + "proportionality", + "human_intervention", + "risks", + "lawful_basis", + "lawful_basis_grouping", + "process_index_url", + "impacttoetsen", + "impacttoetsen_grouping" + ] + }, + { + "key": "werking", + "label": "Werking", + "rows": [ + "source_data", + "source_data_grouping", + "methods_and_models", + "provider", + "publiccode" + ] + }, + { + "key": "metadata", + "label": "Metadata", + "rows": ["lang", "standard_version", "source_id", "tags"] + } + ] +} diff --git a/backend/app/config/layouts/v1_0_0.json b/backend/app/config/layouts/v1_0_0.json new file mode 100644 index 00000000..3d3eba8b --- /dev/null +++ b/backend/app/config/layouts/v1_0_0.json @@ -0,0 +1,65 @@ +{ + "headerCardGrouping": { + "mainElement": "description_short", + "subElements": [ + "organization", + "category", + "status" + ] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "label": "Algemene informatie", + "rows": [ + "name", + "description_short", + "organization", + "category", + "status", + "begin_date", + "end_date", + "contact_email", + "website", + "publication_category", + "url" + ] + }, + { + "key": "verantwoordGebruik", + "label": "Verantwoord gebruik", + "rows": [ + "goal", + "proportionality", + "human_intervention", + "risks", + "lawful_basis", + "lawful_basis_grouping", + "process_index_url", + "impacttoetsen", + "impacttoetsen_grouping" + ] + }, + { + "key": "werking", + "label": "Werking", + "rows": [ + "source_data", + "source_data_grouping", + "methods_and_models", + "provider", + "publiccode" + ] + }, + { + "key": "metadata", + "label": "Metadata", + "rows": [ + "lang", + "standard_version", + "source_id", + "tags" + ] + } + ] +} \ No newline at end of file diff --git a/backend/app/config/org_name_mapping.py b/backend/app/config/org_name_mapping.py new file mode 100644 index 00000000..4579e0ac --- /dev/null +++ b/backend/app/config/org_name_mapping.py @@ -0,0 +1,231 @@ +from app.schemas.misc import Language + +org_name_mapping: dict[Language, dict[str, dict[str, str]]] = { + Language.NLD: { + "ap": { + "name": "Autoriteit Persoonsgegevens", + "code": "autoriteit-persoonsgegevens", + }, + "buza": {"name": "Ministerie van Buitenlandse Zaken", "code": "ministerie-bz"}, + "bz": {"name": "Ministerie van Buitenlandse Zaken", "code": "ministerie-bz"}, + "bzk": { + "name": "Ministerie van Binnenlandse Zaken en Koninkrijksrelaties", + "code": "ministerie-bzk", + }, + "cbr": { + "name": "Centraal Bureau Rijvaardigheidsbewijzen", + "code": "centraal-bureau-rijvaardigheidsbewijzen", + }, + "cjib": { + "name": "Centraal Justitieel Incassobureau", + "code": "centraal-justitieel-incassobureau", + }, + "ind": {"name": "IND", "code": "ind"}, + "jenv": { + "name": "Ministerie van Justitie en Veiligheid", + "code": "ministerie-jenv", + }, + "kvk": {"name": "Kamer van Koophandel", "code": "kamer-van-koophandel"}, + "minbz": { + "name": "Ministerie van Buitenlandse Zaken", + "code": "ministerie-buza", + }, + "minbzk": { + "name": "Ministerie van Binnenlandse Zaken en Koninkrijksrelaties", + "code": "ministerie-bzk", + }, + "minjenv": { + "name": "Ministerie van Justitie en Veiligheid", + "code": "ministerie-jenv", + }, + "minocw": { + "name": "Ministerie van Onderwijs, Cultuur en Wetenschap", + "code": "inspectie-van-het-onderwijs", + }, + "minvws": { + "name": "Ministerie van Volksgezondheid, Welzijn en Sport", + "code": "ministerie-vws", + }, + "nfi": { + "name": "Nederlands Forensisch Instituut", + "code": "nederlands-forensisch-instituut", + }, + "ocw": { + "name": "Ministerie van Onderwijs, Cultuur en Wetenschap", + "code": "inspectie-van-het-onderwijs", + }, + "rvdk": { + "name": "Raad voor de Kinderbescherming", + "code": "raad-kinderbescherming", + }, + "rvig": {"name": "Rijksdienst voor Identiteitsgegevens", "code": "rvig"}, + "rvo": { + "name": "Rijksdienst voor Ondernemend Nederland", + "code": "rijksdienst-voor-ondernemend-nederland", + }, + "rvr": { + "name": "Raad voor Rechtsbijstand", + "code": "raad-voor-de-rechtsbijstand", + }, + "svb": {"name": "Sociale Verzekeringsbank", "code": "sociale-verzekeringsbank"}, + "szw": { + "name": "Ministerie van Sociale Zaken en Werkgelegenheid", + "code": "ministerie-szw", + }, + "uwv": { + "name": "Uitvoeringsinstituut Werknemersverzekeringen", + "code": "uitvoeringsinstituut-werknemersverzekeringen", + }, + "vws": { + "name": "Ministerie van Volksgezondheid, Welzijn en Sport", + "code": "ministerie-vws", + }, + }, + Language.ENG: { + "ap": { + "name": "Dutch Data Protection Authority", + "code": "autoriteit-persoonsgegevens", + }, + "buza": {"name": "Ministry of Foreign Affairs", "code": "ministerie-bz"}, + "bz": {"name": "Ministry of Foreign Affairs", "code": "ministerie-bz"}, + "bzk": { + "name": "Ministry of the Interior and Kingdom Relations", + "code": "ministerie-bzk", + }, + "cbr": { + "name": "Central Office for Motor Vehicle Driver Testing", + "code": "centraal-bureau-rijvaardigheidsbewijzen", + }, + "cjib": { + "name": "Central Judicial Collection Agency", + "code": "centraal-justitieel-incassobureau", + }, + "ind": {"name": "IND", "code": "ind"}, + "jenv": {"name": "Ministry of Justice and Security", "code": "ministerie-jenv"}, + "kvk": {"name": "Chamber of Commerce", "code": "kamer-van-koophandel"}, + "minbz": {"name": "Ministry of Foreign Affairs", "code": "ministerie-bz"}, + "minbzk": { + "name": "Ministry of the Interior and Kingdom Relations", + "code": "ministerie-bzk", + }, + "minjenv": { + "name": "Ministry of Justice and Security", + "code": "ministerie-jenv", + }, + "minocw": { + "name": "Ministry of Education, Culture and Science", + "code": "inspectie-van-het-onderwijs", + }, + "minvws": { + "name": "Ministerie van Volksgezondheid, Welzijn en Sport", + "code": "ministerie-vws", + }, + "nfi": { + "name": "Netherlands Forensic Institute", + "code": "nederlands-forensisch-instituut", + }, + "ocw": { + "name": "Ministry of Education, Culture and Science", + "code": "inspectie-van-het-onderwijs", + }, + "rvdk": { + "name": "Child Care and Protection Board", + "code": "raad-kinderbescherming", + }, + "rvig": {"name": "Identity and Passport Service", "code": "rvig"}, + "rvo": { + "name": "Netherlands Enterprise Agency", + "code": "rijksdienst-voor-ondernemend-nederland", + }, + "rvr": {"name": "Council Legal Aid", "code": "raad-voor-de-rechtsbijstand"}, + "svb": {"name": "Social Insurance Bank", "code": "sociale-verzekeringsbank"}, + "szw": { + "name": "Ministry of Social Affairs and Employment", + "code": "ministerie-szw", + }, + "uwv": { + "name": "Employee Insurance Agency", + "code": "uitvoeringsinstituut-werknemersverzekeringen", + }, + "vws": { + "name": "Ministry of Health Welfare and Sport", + "code": "ministerie-vws", + }, + }, + Language.FRY: { + "ap": { + "name": "Autoriteit Persoansgegevens", + "code": "autoriteit-persoonsgegevens", + }, + "buza": {"name": "ministearje fan útlânske saken", "code": "ministerie-bz"}, + "bz": {"name": "ministearje fan útlânske saken", "code": "ministerie-bz"}, + "bzk": { + "name": "Ministearje fan Ynlânske Saken en Keninkryksrelaasjes", + "code": "ministerie-bzk", + }, + "cbr": { + "name": "Sintraal Buro Rydfeardigensbewizen", + "code": "centraal-bureau-rijvaardigheidsbewijzen", + }, + "cjib": { + "name": "Sintraal Justysjeel Ynkassoburo", + "code": "centraal-justitieel-incassobureau", + }, + "ind": {"name": "IND", "code": "ind"}, + "jenv": { + "name": "Ministearje fan Justysje en Feiligens", + "code": "ministerie-jenv", + }, + "kvk": {"name": "Keamer fan Keaphannel", "code": "kamer-van-koophandel"}, + "minbz": {"name": "ministearje fan útlânske saken", "code": "ministerie-bz"}, + "minbzk": { + "name": "Ministearje fan Ynlânske Saken en Keninkryksrelaasjes", + "code": "ministerie-bzk", + }, + "minjenv": { + "name": "Ministearje fan Justysje en Feiligens", + "code": "ministerie-jenv", + }, + "minocw": { + "name": "Ministearje fan Underwiis, Kultuer en Wittenskip", + "code": "inspectie-van-het-onderwijs", + }, + "minvws": { + "name": "Ministearje fan Folkssûnens, Wolwêzen en Sport", + "code": "ministerie-vws", + }, + "nfi": { + "name": "Nederlânsk Forensysk Ynstitút", + "code": "nederlands-forensisch-instituut", + }, + "ocw": { + "name": "Ministearje fan Underwiis, Kultuer en Wittenskip", + "code": "inspectie-van-het-onderwijs", + }, + "rvdk": { + "name": "Bernebeskerming Ried", + "code": "raad-kinderbescherming", + }, + "rvo": { + "name": "Netherlands Enterprise Agency", + "code": "rijksdienst-voor-ondernemend-nederland", + }, + "rvr": { + "name": "Bestjoer foar juridyske help", + "code": "raad-voor-de-rechtsbijstand", + }, + "svb": {"name": "Sosjale fersekeringsbank", "code": "sociale-verzekeringsbank"}, + "szw": { + "name": "Ministearje fan Sosjale Saken en Wurkgelegenheid", + "code": "ministerie-szw", + }, + "uwv": { + "name": "Ynstitút foar Employee Insurance", + "code": "uitvoeringsinstituut-werknemersverzekeringen", + }, + "vws": { + "name": "Ministearje fan Folkssûnens, Wolwêzen en Sport", + "code": "ministerie-vws", + }, + }, +} diff --git a/backend/app/config/org_type_mapping.py b/backend/app/config/org_type_mapping.py new file mode 100644 index 00000000..b21d69ad --- /dev/null +++ b/backend/app/config/org_type_mapping.py @@ -0,0 +1,80 @@ +from app.schemas.misc import Language, OrgType + + +org_type_mapping: dict[Language, dict[OrgType, str]] = { + Language.NLD: { + OrgType.adviescollege: "Adviescollege", + OrgType.agentschap: "Agentschap", + OrgType.brandweer: "Brandweer", + OrgType.caribisch_openbaar_lichaam: "Caribisch openbaar lichaam", + OrgType.gemeente: "Gemeente", + OrgType.grensoverschrijdend_regionaal_samenwerkingsorgaan: ( + "Grensoverschrijdend regionaal samenwerkingsorgaan" + ), + OrgType.hoog_college_van_staat: "Hoog College van Staat", + OrgType.interdepartementale_commissie: "Interdepartementale commissie", + OrgType.kabinet_van_de_koning: "Kabinet van de Koning", + OrgType.koepelorganisatie: "Koepelorganisatie", + OrgType.ministerie: "Ministerie", + OrgType.openbaar_lichaam_voor_beroep_en_bedrijf: "Openbaar lichaam voor beroep en bedrijf", + OrgType.organisatie_met_overheidsbemoeienis: "Organisatie met overheidsbemoeienis", + OrgType.organisatieonderdeel: "Organisatieonderdeel", + OrgType.politie: "Politie", + OrgType.provincie: "Provincie", + OrgType.rechtspraak: "Rechtspraak", + OrgType.regionaal_samenwerkingsorgaan: "Regionaal samenwerkingsorgaan", + OrgType.waterschap: "Waterschap", + OrgType.zelfstandig_bestuursorgaan: "Zelfstandig bestuursorgaan", + OrgType.overig: "Overig", + }, + Language.ENG: { + OrgType.adviescollege: "Advisory board", + OrgType.agentschap: "Agency", + OrgType.brandweer: "Fire brigade", + OrgType.caribisch_openbaar_lichaam: "Caribbean public body", + OrgType.gemeente: "Municipality", + OrgType.grensoverschrijdend_regionaal_samenwerkingsorgaan: ( + "Cross-border regional cooperation body" + ), + OrgType.hoog_college_van_staat: "High Council of State", + OrgType.interdepartementale_commissie: "Interdepartmental committee", + OrgType.kabinet_van_de_koning: "King's Cabinet", + OrgType.koepelorganisatie: "Umbrella organization", + OrgType.ministerie: "Ministry", + OrgType.openbaar_lichaam_voor_beroep_en_bedrijf: "Public body for professions and businesses", + OrgType.organisatie_met_overheidsbemoeienis: "Organization with government interference", + OrgType.organisatieonderdeel: "Organizational unit", + OrgType.politie: "Police", + OrgType.provincie: "Province", + OrgType.rechtspraak: "Jurisdiction", + OrgType.regionaal_samenwerkingsorgaan: "Regional cooperation body", + OrgType.waterschap: "Water Authority", + OrgType.zelfstandig_bestuursorgaan: "Independent administrative body", + OrgType.overig: "Other", + }, + Language.FRY: { + OrgType.adviescollege: "Advyskolleezje", + OrgType.agentschap: "Agentskip", + OrgType.brandweer: "Brânwacht", + OrgType.caribisch_openbaar_lichaam: "Karibysk iepen lichem", + OrgType.gemeente: "Gemeente", + OrgType.grensoverschrijdend_regionaal_samenwerkingsorgaan: ( + "Grensoerskridend regionaal gearwurkingsorgaan" + ), + OrgType.hoog_college_van_staat: "Heech Kolleezje fan Steat", + OrgType.interdepartementale_commissie: "Ynterdepartemintale kommisje", + OrgType.kabinet_van_de_koning: "Kabinet fan de Kening", + OrgType.koepelorganisatie: "Koepelorganisaasje", + OrgType.ministerie: "Ministerie", + OrgType.openbaar_lichaam_voor_beroep_en_bedrijf: "Iepen lichem foar berop en bedriuw", + OrgType.organisatie_met_overheidsbemoeienis: "Organisaasje mei oerheidsoerlis", + OrgType.organisatieonderdeel: "Organisaasjeûnderdiel", + OrgType.politie: "Polysje", + OrgType.provincie: "Provinsje", + OrgType.rechtspraak: "Rjochtsspraak", + OrgType.regionaal_samenwerkingsorgaan: "Regionaal gearwurkingsorgaan", + OrgType.waterschap: "Wetterskip", + OrgType.zelfstandig_bestuursorgaan: "Selsstannich bestjoersorgaan", + OrgType.overig: "Oar", + }, +} diff --git a/backend/app/config/publication_standard.py b/backend/app/config/publication_standard.py new file mode 100644 index 00000000..b4d7e768 --- /dev/null +++ b/backend/app/config/publication_standard.py @@ -0,0 +1 @@ +publication_standard: dict[str, str] = {"preferredVersion": "1.0"} diff --git a/backend/app/config/resource.py b/backend/app/config/resource.py index 22c88dd6..f792be1d 100644 --- a/backend/app/config/resource.py +++ b/backend/app/config/resource.py @@ -4,62 +4,47 @@ class Columns(str, Enum): all = "*" - algoritme_organization = "algoritme.organization" - algoritme_name = "algoritme.name" - algoritme_department = "algoritme.department" - algoritme_description_short = "algoritme.description_short" - algoritme_type = "algoritme.type" - algoritme_category = "algoritme.category" - algoritme_website = "algoritme.website" - algoritme_status = "algoritme.status" - algoritme_uuid = "algoritme.uuid" - algoritme_toegevoegd_op = "algoritme.toegevoegd_op" - algoritme_slug = "algoritme.slug" - - inzet_goal = "inzet.goal" - inzet_impact = "inzet.impact" - inzet_proportionality = "inzet.proportionality" - inzet_decision_making_process = "inzet.decision_making_process" - inzet_documentation = "inzet.documentation" - inzet_toegevoegd_op = "inzet.toegevoegd_op" - - juridisch_competent_authority = "juridisch.competent_authority" - juridisch_lawful_basis = "juridisch.lawful_basis" - juridisch_iama = "juridisch.iama" - juridisch_iama_description = "juridisch.iama_description" - juridisch_dpia = "juridisch.dpia" - juridisch_dpia_description = "juridisch.dpia_description" - juridisch_objection_procedure = "juridisch.objection_procedure" - juridisch_toegevoegd_op = "juridisch.toegevoegd_op" - - metadata_schema = "metadata.schema" - metadata_uuid = "metadata.uuid" - metadata_url = "metadata.url" - metadata_contact_email = "metadata.contact_email" - metadata_area = "metadata.area" - metadata_lang = "metadata.lang" - metadata_revision_date = "metadata.revision_date" - metadata_toegevoegd_op = "metadata.toegevoegd_op" - - toepassing_description = "toepassing.description" - toepassing_application_url = "toepassing.application_url" - toepassing_publiccode = "toepassing.publiccode" - toepassing_mprd = "toepassing.mprd" - toepassing_source_data = "toepassing.source_data" - toepassing_methods_and_models = "toepassing.methods_and_models" - toepassing_toegevoegd_op = "toepassing.toegevoegd_op" - - toezicht_monitoring = "toezicht.monitoring" - toezicht_human_intervention = "toezicht.human_intervention" - toezicht_risks = "toezicht.risks" - toezicht_performance_standard = "toezicht.performance_standard" - toezicht_toegevoegd_op = "toezicht.toegevoegd_op" - - -# columns=metadata.contact_email -# columns=metadata.toegevoegd_op - -# columns=toepassing.toegevoegd_op - -# columns=toezicht.human_intervention -# columns=toezicht.toegevoegd_op + algoritme_organization = "organization" + algoritme_name = "name" + algoritme_department = "department" + algoritme_description_short = "description_short" + algoritme_type = "type" + algoritme_category = "category" + algoritme_website = "website" + algoritme_status = "status" + algoritme_uuid = "uuid" + algoritme_create_dt = "create_dt" + + inzet_goal = "goal" + inzet_impact = "impact" + inzet_proportionality = "proportionality" + inzet_decision_making_process = "decision_making_process" + inzet_documentation = "documentation" + + juridisch_competent_authority = "competent_authority" + juridisch_lawful_basis = "lawful_basis" + juridisch_iama = "iama" + juridisch_iama_description = "iama_description" + juridisch_dpia = "dpia" + juridisch_dpia_description = "dpia_description" + juridisch_objection_procedure = "objection_procedure" + + metadata_standard_version = "standard_version" + metadata_uuid = "uuid" + metadata_url = "url" + metadata_contact_email = "contact_email" + metadata_area = "area" + metadata_lang = "lang" + metadata_revision_date = "revision_date" + + toepassing_description = "description" + toepassing_application_url = "application_url" + toepassing_publiccode = "publiccode" + toepassing_mprd = "mprd" + toepassing_source_data = "source_data" + toepassing_methods_and_models = "methods_and_models" + + toezicht_monitoring = "monitoring" + toezicht_human_intervention = "human_intervention" + toezicht_risks = "risks" + toezicht_performance_standard = "performance_standard" diff --git a/backend/app/config/settings.py b/backend/app/config/settings.py new file mode 100644 index 00000000..4a24907f --- /dev/null +++ b/backend/app/config/settings.py @@ -0,0 +1,46 @@ +from pydantic import BaseSettings, Field + + +class Settings(BaseSettings): + enable_debug: bool = Field(default=False) + enable_translation: bool = Field(default=False) + preview_url: str = Field(default="localhost:3001") + webform_url: str = Field(default="localhost:3001/webformulier") + retract_preview_time: int = Field(default=600) + debugger_logging: bool = Field(default=True) + + application_mail_address: str = Field(default="Algoritmeregister@") + c3po_url: str = Field(default="http://localhost:8500/api") + use_c3po: bool = Field(default=False) + send_emails: bool = Field(default=True) + # Will only work if send_emails is also True + notify_c3po_errors: bool = Field(default=True) + + +class Keycloak(BaseSettings): + KEYCLOAK_URI: str = Field(default="") + KEYCLOAK_REALM: str = Field(default="algreg_dev") + KEYCLOAK_CLIENT: str = Field(default="authentication-client") + ENABLE_AUTH: bool = Field(default=True) + KEYCLOAK_API_URI: str = Field( + default="" + ) + KEYCLOAK_API_CLIENT: str = Field(default="service-client") + KEYCLOAK_API_SECRET: str = Field(default="") + + +class AzureTranslation(BaseSettings): + api_key: str = Field(env="AZURE_TRANSLATE_API_KEY", default="secret") + endpoint: str = Field(env="AZURE_TRANSLATE_ENDPOINT") + region: str = Field(env="AZURE_TRANSLATE_REGION") + + +class DeepLSettings(BaseSettings): + api_key: str = Field(env="DEEPL_API_KEY") + + +class WebSpellChecker(BaseSettings): + api_key: str = Field(env="WEBSPELLCHECKER_API_KEY") + api_url: str = Field(env="WEBSPELLCHECKER_URL") + + diff --git a/backend/app/controllers/__init__.py b/backend/app/controllers/__init__.py new file mode 100644 index 00000000..8b9b69bd --- /dev/null +++ b/backend/app/controllers/__init__.py @@ -0,0 +1,10 @@ +from .algoritme_version import * # noqa +from .mailing import * # noqa +from .file_download import generate_download_file # noqa +from .word_download import * # noqa +from .pdf_download import generate_pdf_download # noqa +from .organisation import * # noqa +from .templates import get_template_summary, get_template_by_id # noqa +from .organisation_details import * # noqa +from .html_figures import * # noqa +from .precomputed_values import * # noqa diff --git a/backend/app/controllers/action.py b/backend/app/controllers/action.py new file mode 100644 index 00000000..3e121e71 --- /dev/null +++ b/backend/app/controllers/action.py @@ -0,0 +1,154 @@ +from fastapi import BackgroundTasks, HTTPException +from app import models, schemas +from app.config.settings import Settings +from app.controllers.algoritme_version.endpoints import ( + apply_translation, + set_highlighted_algorithms, +) +from app.controllers.mailing import send_email +from app.controllers.user import get_from_keycloak_user +from app.middleware.authorisation.schemas import State +from app.middleware.authorisation.user_configuration import UserConfiguration +from app.middleware.authorisation.config._base import ( + load_flow_configurations, +) +from app.repositories.action_history import ActionHistoryRepository +from app.repositories.algoritme_version import AlgoritmeVersionRepository +from app.repositories.organisation import OrganisationRepository +from app.schemas.action import StateChangeAction +from sqlalchemy.orm import Session + +from app.schemas.action_history import ActionHistoryIn +from app.schemas.misc import Language, OperationEnum +from app.services.keycloak.schemas import KeycloakUser +from app.services.translation.base_translator import LanguageCode +from app.util.logger import get_logger + +logger = get_logger(__name__) +env_settings = Settings() + + +def get_state_change_action( + db: Session, as_org: str, action_key: str +) -> StateChangeAction: + """ + Provides an action based on the organisation (e.g. their flow) + and the requested action_key. + """ + all_flows = load_flow_configurations() + + org_repository = OrganisationRepository(db) + org = org_repository.get_by_code(as_org) + if not org: + raise HTTPException(404) + flow = all_flows[org.flow] + return flow["state_change_actions"][action_key] + + +def get_available_actions_by_lars( + db: Session, keycloak_user: KeycloakUser, lars: str +) -> list[StateChangeAction]: + """ + Provides the actions available based on the user and + the state of the requested algorithm description, and + the flow in which the organisation operates. + """ + # Collect algorithm description to get the state and flow. + algo_repository = AlgoritmeVersionRepository(db) + algo = algo_repository.get_latest_by_lars_by_lang(lars, Language.NLD) + if not algo: + raise HTTPException(404) + organisation = algo.owner + + user = get_from_keycloak_user(db, keycloak_user) + user_config = UserConfiguration(user) + all_permissions = user_config._state_change_permissions(organisation) + for a in all_permissions: + if a.origin_state != algo.state: + a.enabled = False + return all_permissions + + +def update_state_by_lars( + db: Session, + user: KeycloakUser, + lars: str, + as_org: str, + action_key: str, + background_tasks: BackgroundTasks, +) -> None: + """ + Updates the state of the algorithm version, if the origin state matches the current state. + The variants in other languages are also handled, if it concerns publishing/retraction. + """ + algo_repository = AlgoritmeVersionRepository(db) + action_history_repo = ActionHistoryRepository(db) + + action = get_state_change_action(db, as_org, action_key) + origin_state = action.origin_state + target_state = action.target_state + + latest_nld = algo_repository.get_latest_by_lars_by_lang(lars, Language.NLD) + if not latest_nld: + raise HTTPException(404) + # Latest record has to mach origin state, except during retraction + if latest_nld.state != origin_state and origin_state != State.PUBLISHED: + raise HTTPException( + 400, f"INVALID ORIGIN_STATE, CURRENT STATE: {latest_nld.state}" + ) + + if origin_state == State.PUBLISHED or target_state == State.PUBLISHED: + # Retraction or publication, expire all. + algos_all_lang = algo_repository.get_published_by_lars(lars) + for algo in algos_all_lang: + algo_repository.update_state_by_id(algo.id, State.EXPIRED) + action_history_repo.add( + ActionHistoryIn( + algoritme_version_id=algo.id, + user_id=user.username, + operation=OperationEnum.retracted, + ) + ) + + if target_state == State.PUBLISHED: + # Publication -> do translations. + for lang in [LanguageCode.ENGLISH, LanguageCode.FRISIAN]: + new_algo = schemas.AlgoritmeVersionIn(**latest_nld.dict()) + new_algo_model = models.AlgoritmeVersion(**new_algo.dict()) + background_tasks.add_task( + apply_translation, new_algo_model, db, user.username, lang + ) + + # Update state of NLD record (can be because of published, retracted or anything else.) + algo_repository.update_state_by_id(latest_nld.id, target_state) + if action.key == "publish": + operation = OperationEnum.published + elif action.key == "release": + operation = OperationEnum.released + elif action.key == "retract": + operation = OperationEnum.retracted + elif action.key == "release_to_2": + operation = OperationEnum.released + else: + # TODO: actions should have predefined operation attached to them + # missing operation: reject_to_1. + logger.error("This action is not implemented") + raise HTTPException(500) + + action_history_repo.add( + ActionHistoryIn( + algoritme_version_id=latest_nld.id, + operation=operation, + user_id=user.username, + ) + ) + + if action.send_email_type is not None: + background_tasks.add_task( + send_email, db=db, email_type=action.send_email_type, lars=lars + ) + if origin_state == State.PUBLISHED or target_state == State.PUBLISHED: + # Retracting or publishing -> set highlighted algorithms + background_tasks.add_task(set_highlighted_algorithms, db) + + db.commit() diff --git a/backend/app/controllers/algoritme.py b/backend/app/controllers/algoritme.py new file mode 100644 index 00000000..f387a837 --- /dev/null +++ b/backend/app/controllers/algoritme.py @@ -0,0 +1,50 @@ +from sqlalchemy.orm import Session +from fastapi import HTTPException, status +from app import schemas +from app.middleware.authorisation.schemas import Role, State +from app.repositories.organisation import OrganisationRepository +from app.repositories import AlgoritmeVersionRepository +from app.schemas.misc import Language +from app.services.keycloak import KeycloakUser + + +def get_algoritme_owner( + db: Session, user: KeycloakUser, lars: str +) -> schemas.OrganisationIn: + organisation_repo = OrganisationRepository(db) + organisation = organisation_repo.get_by_lars(lars) + if not organisation: + raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="NOT_FOUND") + + if Role.Administrator in user.roles or Role.AllGroups in user.roles: + return organisation + + if organisation.code not in user.groups: + raise HTTPException(status_code=status.HTTP_403_FORBIDDEN, detail="NO_ACCESS") + + return organisation + + +def get_algoritme_versions_by_id( + db: Session, lars: str, include_archived: bool = False +) -> list[schemas.AlgoritmeVersionLastEdit]: + algoritme_version_repo = AlgoritmeVersionRepository(db) + versions = algoritme_version_repo.get_all_versions_by_lars_by_lang( + lars, Language.NLD + ) + if not include_archived: + versions = [ + version for version in versions if not version.state == State.ARCHIVED + ] + return versions + + +def get_archived_versions( + db: Session, org: str +) -> list[schemas.AlgoritmeVersionLastEdit]: + algoritme_version_repo = AlgoritmeVersionRepository(db) + all_versions = algoritme_version_repo.get_archive(org, Language.NLD) + schema_versions = [ + schemas.AlgoritmeVersionLastEdit.from_orm(version) for version in all_versions + ] + return schema_versions diff --git a/backend/app/controllers/algoritme_version/__init__.py b/backend/app/controllers/algoritme_version/__init__.py new file mode 100644 index 00000000..7d87b8f7 --- /dev/null +++ b/backend/app/controllers/algoritme_version/__init__.py @@ -0,0 +1,15 @@ +from .endpoints import ( # noqa + get_algorithm_summary, + get_one_newest, + get_one_published, + update_new_version, + post_one, + get_preview_link, + remove_one, + set_archive_status, +) +from .util import ( # noqa + wait_then_disable_preview, + disable_preview, + find_version_changes, +) diff --git a/backend/app/controllers/algoritme_version/endpoints.py b/backend/app/controllers/algoritme_version/endpoints.py new file mode 100644 index 00000000..15e8bbdf --- /dev/null +++ b/backend/app/controllers/algoritme_version/endpoints.py @@ -0,0 +1,427 @@ +import re +from fastapi import HTTPException, status +from sqlalchemy.orm import Session +from sqlalchemy import or_ +from app import models, schemas +from app.middleware.authorisation.schemas import State +from app.services.keycloak import KeycloakUser +from app.services import translation +from app.util import upc +from app.config.settings import Settings +from app.schemas import Language, OperationEnum, PreComputedValues +from .util import ( + find_version_changes, +) +from app.services.algoritme_version import db_list_to_python_list +from app.repositories import ( + AlgoritmeVersionRepository, + OrganisationRepository, + AlgoritmeRepository, + ActionHistoryRepository, + PreComputedValuesRepository, +) +from app.util.logger import get_logger +from app.services.translation import LanguageCode +from app.controllers.precomputed_values import calc_highlighted_algorithms + +logger = get_logger(__name__) +# Version agnostic database handling +env_settings = Settings() + + +def get_algorithm_summary( + as_org: str, + db: Session, +) -> list[schemas.AlgorithmSummary]: + # Gets latest versions. + algoritme_version_repository = AlgoritmeVersionRepository(db) + latest_versions = algoritme_version_repository.get_latest_by_org_by_lang( + as_org, Language.NLD + ) + published_versions = algoritme_version_repository.get_published_by_org_by_lang( + as_org, Language.NLD + ) + # This dict described which algoritme_version row is published for each algorithm. + # structure: + # lars_code : id_in_db + # published_ids = { + # '12345678': '234', + # '11111111': '111', + # } + published_ids = {} + if published_versions: + for published_algo in published_versions: + lars_code = published_algo.lars + published_ids[lars_code] = published_algo.id + + # build an 'id' list + ids = [] + for algo in latest_versions: + ids.append(algo.id) + + # This is a list of all history associated with the algoritme_version entries. + algos_history = ( + db.query(models.ActionHistory) + .filter( + models.ActionHistory.algoritme_version_id.in_(ids), + or_( + models.ActionHistory.operation == OperationEnum.created, + models.ActionHistory.operation == OperationEnum.new_version, + models.ActionHistory.operation == OperationEnum.released, + models.ActionHistory.operation == OperationEnum.retracted, + ), + ) + .order_by(models.ActionHistory.create_dt.desc()) + .all() + ) + + # This dict describes who edited the algoritme_version last. + # structure: + # algoritme_version_id : user_id + # published_ids = { + # '12345678': 'example@ictu.nl', + # '11111111': 'example2@ictu.nl', + # } + last_edited = {} + for history_point in algos_history: + algoritme_version_id = history_point.algoritme_version_id + if algoritme_version_id not in last_edited: + last_edited[algoritme_version_id] = history_point.user_id + + summary_list = [] + for latest_algo in latest_versions: + lars_code = latest_algo.lars + + summary_list.append( + schemas.AlgorithmSummary( + name=latest_algo.name, + schema_version=latest_algo.standard_version, + last_update_dt=latest_algo.create_dt, + lars=latest_algo.lars, + source_id=latest_algo.source_id, + published=lars_code in published_ids, + current_version_released=latest_algo.state == State.STATE_2, + current_version_published=latest_algo.state == State.PUBLISHED, + last_update_by=last_edited.get(latest_algo.id) or "Onbekend", + ) + ) + summary_list.sort(key=lambda x: x.last_update_dt, reverse=True) + return summary_list + + +def get_one_newest( + lars: str, + db: Session, +) -> schemas.AlgoritmeVersionDB: + algoritme_version_repository = AlgoritmeVersionRepository(db) + newest_algo = algoritme_version_repository.get_latest_by_lars_by_lang( + lars, Language.NLD + ) + if not newest_algo: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail=f"Er is geen algoritme met LARS-code: {lars}.", + ) + return newest_algo + + +def get_one_published( + lars: str, + db: Session, +) -> schemas.AlgoritmeVersionDB: + algoritme_version_repository = AlgoritmeVersionRepository(db) + newest_algo = algoritme_version_repository.get_published_by_lars_by_lang( + lars, Language.NLD + ) + if not newest_algo: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail=f"Er is geen gepubliceerd algoritme met LARS-code: {lars}.", + ) + return newest_algo + + +def post_one( + as_org: str, + body: schemas.AlgoritmeVersionContent, + db: Session, + user: KeycloakUser, +) -> schemas.NewAlgorithmResponse: + organisation_repo = OrganisationRepository(session=db) + algoritme_version_repo = AlgoritmeVersionRepository(session=db) + algoritme_repo = AlgoritmeRepository(session=db) + action_history_repo = ActionHistoryRepository(session=db) + + org = organisation_repo.get_by_code(as_org) + if not org: + raise HTTPException(status.HTTP_404_NOT_FOUND, detail="ORG_NOT_FOUND") + + # Generates a unique id for this algorithm. + current_lars_codes = algoritme_repo.get_all_lars() + new_lars = upc.find_new_upc(avoid_upc_list=current_lars_codes) + + algoritme = schemas.AlgoritmeIn(lars=new_lars, organisation_id=org.id) + algoritme_db = algoritme_repo.add(algoritme) + + # Creates new entry in algoritme_version table. + algoritme_version = schemas.AlgoritmeVersionIn( + **body.dict(), + algoritme_id=algoritme_db.id, + language=Language.NLD, + state=State.STATE_1, + ) + algoritme_version_db = algoritme_version_repo.add(algoritme_version) + + # Logs action + action = schemas.ActionHistoryIn( + algoritme_version_id=algoritme_version_db.id, + operation=OperationEnum.created, + user_id=user.username, + ) + action_history_repo.add(action) + return schemas.NewAlgorithmResponse(lars_code=new_lars) + + +def apply_translation( + algo: models.AlgoritmeVersion, + db: Session, + username: str, + language: LanguageCode = LanguageCode.ENGLISH, +) -> schemas.AlgoritmeVersionIn: + algo = db_list_to_python_list(algo) + preprocessor = translation.Preprocessor( + algo, + attrs_to_delete=[ + "id", + "create_dt", + "algoritme", + "lars", + "owner", + "published", + "released", + "preview_active", + "state", + ], + target_lang=language.value, + ) + # 1. Add the non-translatable fields as-is + translated_dict = preprocessor.get_non_translatable_fields() + + # 2. Add translations for fields that have a list as value + list_fields = preprocessor.get_list_fields() + list_translator = translation.ListValuesTranslator( + field_dict=list_fields, + organisation_name=algo.organization, + algorithm_name=algo.name, + ) + translation_response = list_translator.translate( + preprocessor.translation_spec["default_translations"] + ) + translated_dict.update(translation_response.fields) + + # 3. Add translations for fields that need automatic translation + auto_translate_fields = preprocessor.get_auto_translate_fields() + auto_translator = translation.AutoTranslator( + field_dict=auto_translate_fields, + target_lang=language, + organisation_name=algo.organization, + algorithm_name=algo.name, + ) + translation_response = auto_translator.translate() + translated_dict.update(translation_response.fields) + + # 4. Translate the fields that have a default translation + default_translator = translation.DefaultValuesTranslator( + field_dict=preprocessor.get_default_translate_fields(), + target_lang=language, + organisation_name=algo.organization, + algorithm_name=algo.name, + ) + translation_response = default_translator.translate( + preprocessor.translation_spec["default_translations"] + ) + translated_dict.update(translation_response.fields) + + # 5. Truncate the fields that are too long + preprocessor.truncate_fields(translated_dict) + + # 6. Save the translations + algoritme_version = save_translation(algo, db, translated_dict, username, language) + return algoritme_version + + +def save_translation( + algo: models.AlgoritmeVersion, + db: Session, + translated_dict, + username: str, + language=LanguageCode.ENGLISH, +): + """ + Saves the translation to the database. + """ + lang_code_map = { + LanguageCode.ENGLISH: Language.ENG, + LanguageCode.FRISIAN: Language.FRY, + } + algoritme_version = schemas.AlgoritmeVersionIn( + **translated_dict, state=State.PUBLISHED + ) + algoritme_version.language = lang_code_map[language] + algoritme_version.create_dt = algo.create_dt # Date should be the same + + algoritme_version_repository = AlgoritmeVersionRepository(db) + algoritme_version_db = algoritme_version_repository.add(algoritme_version) + + action_history_repository = ActionHistoryRepository(db) + action = schemas.ActionHistoryIn( + algoritme_version_id=algoritme_version_db.id, + operation=OperationEnum.created, + user_id=username, + ) + action_history_repository.add(action) + action = schemas.ActionHistoryIn( + algoritme_version_id=algoritme_version_db.id, + operation=OperationEnum.published, + user_id=username, + ) + action_history_repository.add(action) + + return algoritme_version + + +def update_new_version( + body: schemas.AlgoritmeVersionContent, + lars: str, + db: Session, + user: KeycloakUser, +) -> schemas.AlgorithmActionResponse | None: + algoritme_repo = AlgoritmeRepository(db) + algoritme_version_repo = AlgoritmeVersionRepository(db) + action_history_repo = ActionHistoryRepository(db) + + algoritme = algoritme_repo.get_by_lars(lars) + if not algoritme: + raise HTTPException(status.HTTP_404_NOT_FOUND, "ALGORITHM_NOT_FOUND") + + latest_version = algoritme_version_repo.get_latest_by_lars_by_lang( + lars, Language.NLD + ) + if not latest_version: + raise HTTPException(status.HTTP_404_NOT_FOUND, "ALGORITHM_NOT_FOUND") + change_found = find_version_changes( + schemas.AlgoritmeVersionContent(**latest_version.dict()), body + ) + if not change_found: + return schemas.AlgorithmActionResponse(message="NO_CHANGES") + + # Expire the previous version + if latest_version.state != State.PUBLISHED: + logger.warning("The state change to expired is not logged") + algoritme_version_repo.update_state_by_id(latest_version.id, State.EXPIRED) + # TODO: Add expired as option to operations. + # action_history_repo.add( + # ActionHistoryIn( + # algoritme_version_id=latest_version.id, + # operation=OperationEnum.expired, + # user_id=user.username, + # ) + # ) + + # Build new version + new_version = schemas.AlgoritmeVersionIn( + **body.dict(), + algoritme_id=algoritme.id, + language=Language.NLD, + state=State.STATE_1, + ) + new_version = algoritme_version_repo.add(new_version) + action_history_repo.add( + schemas.ActionHistoryIn( + algoritme_version_id=new_version.id, + operation=OperationEnum.new_version, + user_id=user.username, + ) + ) + + +def get_preview_link(lars: str, db: Session, user: KeycloakUser) -> schemas.PreviewUrl: + algoritme_version_repo = AlgoritmeVersionRepository(db) + action_history_repo = ActionHistoryRepository(db) + previewed_algo = algoritme_version_repo.preview_latest_by_lars(lars) + latest_by_lang = algoritme_version_repo.get_latest_by_lars_by_lang( + lars, lang=Language.NLD + ) + if latest_by_lang: + name = latest_by_lang.name + org = latest_by_lang.organization + name = name if name is not None else "" + org = org if org is not None else "" + slug = name.lower() + " " + org.lower() + slug = re.sub(r"[^a-zA-Z0-9 ]", "", slug) + slug = re.sub(r" {2,}", "-", slug) + slug = slug.replace(" ", "-") + + if previewed_algo: + action_history_repo.add( + schemas.ActionHistoryIn( + algoritme_version_id=previewed_algo.id, + operation=OperationEnum.preview_activated, + user_id=user.username, + ) + ) + else: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail=f"Er is geen algoritme gevonden met LARS-code: ({lars})", + ) + url = f"{env_settings.preview_url}/nl/algoritme/{slug}/C{lars}" + return schemas.PreviewUrl(url=url) + + +def remove_one(lars: str, db: Session) -> None: + algoritme_repository = AlgoritmeRepository(db) + n_removed = algoritme_repository.delete_by_lars(lars) + if n_removed == 0: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail=f"Er is geen algoritme gevonden met LARS-code: ({lars})", + ) + db.commit() + + +def set_archive_status( + version_id: int, + db: Session, + archived: bool, + user_id: str, +) -> None: + algo_version_repo = AlgoritmeVersionRepository(db) + algo_version = algo_version_repo.get_by_id(version_id) + if not algo_version: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail=f"Er is geen algoritmeversie gevonden met ID: ({version_id})", + ) + new_state = State.ARCHIVED if archived else State.STATE_1 + algo_version_repo.update_state_by_id(version_id, new_state) + + action_history_repo = ActionHistoryRepository(db) + action_history_repo.add( + schemas.ActionHistoryIn( + algoritme_version_id=algo_version.id, + operation=OperationEnum.archived if archived else OperationEnum.unarchived, + user_id=user_id, + ) + ) + + +def set_highlighted_algorithms( + db: Session, key=PreComputedValues.highlighted_algorithms +) -> None: + pre_comp_value_repo = PreComputedValuesRepository(db) + for lang in Language: + highlighted_algs = calc_highlighted_algorithms(db, lang) + data_to_store = {"language": lang, "key": key, "value": highlighted_algs} + precomputed_value = schemas.PrecomputedValueIn(**data_to_store) + pre_comp_value_repo.add(precomputed_value) diff --git a/backend/app/controllers/algoritme_version/util.py b/backend/app/controllers/algoritme_version/util.py new file mode 100644 index 00000000..0141d081 --- /dev/null +++ b/backend/app/controllers/algoritme_version/util.py @@ -0,0 +1,51 @@ +from sqlalchemy.orm import Session +from threading import Timer +from app.config.settings import Settings +from app import schemas +from app.repositories import ActionHistoryRepository, AlgoritmeVersionRepository + +env_settings = Settings() + + +def wait_then_disable_preview(lars: str, db: Session) -> None: + S = Timer( + env_settings.retract_preview_time, + disable_preview, + kwargs={ + "lars": lars, + "db": db, + "user": "system", + "reason": schemas.OperationEnum.preview_timeout, + }, + ) + S.start() + + +def disable_preview( + lars: str, db: Session, user: str, reason: schemas.OperationEnum +) -> bool: + algoritme_version_repo = AlgoritmeVersionRepository(db) + action_history_repo = ActionHistoryRepository(db) + + preview_algo = algoritme_version_repo.unpreview_by_lars(lars) + if not preview_algo: + return False + action_history_repo.add( + schemas.ActionHistoryIn( + algoritme_version_id=preview_algo.id, user_id=user, operation=reason + ) + ) + return True + + +def find_version_changes( + v1: schemas.AlgoritmeVersionContent, v2: schemas.AlgoritmeVersionContent +) -> bool: + """ + Compares two algoritme_versions. + Return true if at least one difference is found. + """ + for key in dict(v1).keys(): + if getattr(v1, key) != getattr(v2, key): + return True + return False diff --git a/backend/app/controllers/c3po.py b/backend/app/controllers/c3po.py new file mode 100644 index 00000000..b8c6e877 --- /dev/null +++ b/backend/app/controllers/c3po.py @@ -0,0 +1,131 @@ +import requests +from fastapi import HTTPException, status +from app.controllers import collect_structure_data, get_ttl_hash +from app.schemas import ( + C3poRequest, + User, + ProcessingRequest, + C3poResults, + RuleSetOut, + Rule, + ProcessingRequestOut, +) +from functools import lru_cache +from app.config.settings import Settings +import time +from app.util.logger import get_logger +from app.util.html import strip_html + +logger = get_logger(__name__) +env_settings = Settings() + + +def get_c3po(url: str) -> requests.Response: + try: + response = requests.request("get", url) + + if response.status_code != 200: + raise HTTPException( + status_code=status.HTTP_424_FAILED_DEPENDENCY, + detail=f"C3PO_REQUEST_FAILED: {response.status_code}", + ) + return response + except requests.ConnectionError: + raise HTTPException( + status_code=status.HTTP_424_FAILED_DEPENDENCY, + detail="C3PO_CONN_ERROR", + ) + + +def post_c3po_request(data: ProcessingRequestOut) -> requests.Response: + try: + post_response = requests.post( + f"{env_settings.c3po_url}/processing-request/", json=data + ) + + if post_response.status_code != 200: + raise HTTPException( + status_code=status.HTTP_424_FAILED_DEPENDENCY, + detail=f"C3PO_REQUEST_FAILED: {post_response.status_code}", + ) + return post_response + except requests.ConnectionError: + raise HTTPException( + status_code=status.HTTP_424_FAILED_DEPENDENCY, + detail="C3PO_CONN_ERROR", + ) + + +@lru_cache(maxsize=1) +def get_version_rules() -> list[RuleSetOut]: + response = get_c3po(f"{env_settings.c3po_url}/rule/") + + # approach is all rules for all fields with allowed html tags + rules = [] + for rule in response.json(): + rule_model = Rule(**rule) + + rules.append( + { + "rule_code": rule_model.rule_code, + "rule_variant": rule_model.rule_variant, + "description": rule_model.description, + "severity_level": rule_model.severity_level, + } + ) + + schemas, _ = collect_structure_data(get_ttl_hash(60)) + schema = schemas["0.4.0"] + rule_sets: list[RuleSetOut] = [] + for key in schema.keys(): + rule_set = {"code": key, "rules": rules} + rule_set_model = RuleSetOut(**rule_set) + if schema[key].allowed_html_tags is None: + continue + rule_sets.append(rule_set_model) + + return rule_sets + + +async def forward_request(body: C3poRequest, user: User) -> C3poResults: + rule_response = get_c3po(f"{env_settings.c3po_url}/rule/") + rules = [rule["rule_code"] for rule in rule_response.json()] + text_raw = strip_html(body.text) + data: ProcessingRequestOut = {"payload": text_raw, "rule_codes": rules} + post_response = post_c3po_request(data).json() + request_id = post_response["processing_request_id"] + + tries = 0 + time.sleep(1) + max_tries = 60 + results = [] + while tries < max_tries: + response = get_c3po(f"{env_settings.c3po_url}/processing-request/{request_id}") + + response_model = ProcessingRequest(**response.json()) + + results = [] + for task_result in response_model.tasks: + if task_result.status in ["new", "pending"]: + continue + + results.append( + { + "rule_code": task_result.rule.rule_code, + "description": task_result.rule.description, + "feedback_message": task_result.feedback_message, + "result": task_result.result, + } + ) + + if len(results) == len(rules): + break + time.sleep(1) + logger.info( + f"Collected {len(results)}/{len(rules)} results, trying {max_tries - tries -1} more times..." + ) + tries += 1 + + response = {"rules": results} + response = C3poResults(**response) + return response diff --git a/backend/app/controllers/excel_download.py b/backend/app/controllers/excel_download.py new file mode 100644 index 00000000..21fffd16 --- /dev/null +++ b/backend/app/controllers/excel_download.py @@ -0,0 +1,155 @@ +import datetime +import io +from typing import Literal +import pandas as pd +from functools import lru_cache +from sqlalchemy.orm import Session +from fastapi.responses import StreamingResponse +from fastapi import HTTPException, status +from app import schemas +from app.repositories import AlgoritmeVersionRepository +from app.schemas.versions import create_algorithm_in_schema +from app.util.config_load import get_ttl_hash, collect_structure_data +from app.util.stringify import stringify + + +version_options = Literal["published", "latest"] + + +@lru_cache(maxsize=8) +def get_column_name_mapping(version: str) -> dict[str, str]: + standards, _ = collect_structure_data(get_ttl_hash()) + + standard = standards[version] + mapping = {} + for key in standard.keys(): + mapping[key] = standard[key].title + return mapping + + +def get_excel_data( + db: Session, + lars: str | None, + org_name: str | None, + lang: schemas.Language, + which_version: version_options, +) -> list[schemas.AlgoritmeVersionDownload]: + """ + Prepare algorithm data for download. + """ + algoritme_version_repository = AlgoritmeVersionRepository(db) + algorithms: list[schemas.AlgoritmeVersionDB] = [] + + if org_name: + if which_version == "latest": + algorithms = algoritme_version_repository.get_latest_by_org_by_lang( + org_name, lang + ) + elif which_version == "published": + algorithms = algoritme_version_repository.get_published_by_org_by_lang( + org_name, lang + ) + elif lars: + if which_version == "latest": + algorithm = algoritme_version_repository.get_latest_by_lars_by_lang( + lars, lang + ) + elif which_version == "published": + algorithm = algoritme_version_repository.get_published_by_lars_by_lang( + lars, lang + ) + if not algorithm: + return [] + algorithms = [algorithm] + else: + if which_version == "latest": + algorithms = algoritme_version_repository.get_latest_by_lang(lang) + if which_version == "published": + algorithms = algoritme_version_repository.get_published_by_lang(lang) + return [schemas.AlgoritmeVersionDownload(**alg.dict()) for alg in algorithms] + + +def build_excel_doc( + algorithms: list[schemas.AlgoritmeVersionDownload], +) -> io.BytesIO: + dataframes: dict[str, pd.DataFrame] = {} + for algorithm in algorithms: + # Detect version filter based on that schema + std = algorithm.standard_version + if not std: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, detail="STANDARD_VALUE_NOT_FOUND" + ) + schema = create_algorithm_in_schema("v" + std.replace(".", "_")) + data = schema(**algorithm.dict()).dict() + + # Remove lists from data + stringified_data = {key: stringify(data[key]) for key in data.keys()} + + # Group DataFrames by standard_version + if std not in dataframes: + dataframes[std] = pd.DataFrame(stringified_data, index=[0]) + else: + df = pd.DataFrame(stringified_data, index=[0]) + dataframes[std] = pd.concat([dataframes[std], df], ignore_index=True) + + stream = io.BytesIO() + with pd.ExcelWriter(stream) as writer: + for key in dataframes.keys(): + df = dataframes[key] + df = df.rename(columns=get_column_name_mapping(key)) + df = df.replace(r"\n", "", regex=True).T + df.to_excel(writer, sheet_name=key, index=True, header=False) + stream.seek(0) + + return stream + + +def generate_excel_download( + db: Session, + lang: schemas.Language = schemas.Language.NLD, + *, + org_name: str | None = None, + lars: str | None = None, + which_version: version_options = "published", +): + """ + Generates excel file. Can do so for all descriptions under and org or a single one (by lars). + + Args: + - db (Session): SQLAlchemy Session + - lang (Language): specified language, defaults to NLD + *, + - org_name (str|None): organisation name. Causes excel to be for whole organisation + - lars (str|None): lars-code for a description. Causes excel to be for one description only. + Either org_name or lars can be specified, never both. If neither are specified, the whole DB will be queried. + - which_version (published|latest): Specifies whether you want the published version or the latest + (possibly unpublished) version. + """ + if lars and org_name: + raise ValueError("Please enter one of two identifiers: lars | org_name") + + algorithms = get_excel_data(db, lars, org_name, lang, which_version) + if len(algorithms) == 0: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail="NO_DATA_FOUND", + ) + + stream = build_excel_doc(algorithms) + + timestamp = datetime.datetime.now().strftime("%Y%m%d") + filename: str = "" + if lars: + filename = f"{algorithms[0].name} {timestamp}.xlsx" + elif org_name: + filename = ( + f"Algoritmebeschrijvingen van {algorithms[0].organization} {timestamp}.xlsx" + ) + else: + filename = f"Algoritmebeschrijvingen {timestamp}.xlsx" + + media_type = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" + response = StreamingResponse(io.BytesIO(stream.read()), media_type=media_type) + response.headers["Content-Disposition"] = f'attachment; filename="{filename}"' + return response diff --git a/backend/app/controllers/file_download.py b/backend/app/controllers/file_download.py new file mode 100644 index 00000000..91d15e05 --- /dev/null +++ b/backend/app/controllers/file_download.py @@ -0,0 +1,176 @@ +import datetime +import io +from typing import Any, Literal +import pandas as pd +from functools import lru_cache +from sqlalchemy.orm import Session +from fastapi.responses import StreamingResponse +from fastapi import HTTPException, status +from app import schemas +from app.repositories import AlgoritmeVersionRepository +from app.schemas.misc import Language +from app.schemas.versions import create_algorithm_in_schema +from app.util.config_load import get_ttl_hash, collect_structure_data +from app.util.stringify import stringify + + +version_options = Literal["published", "latest"] + + +@lru_cache(maxsize=8) +def get_column_name_mapping(version: str) -> dict[str, str]: + standards, _ = collect_structure_data(get_ttl_hash()) + + standard = standards[version] + mapping = {} + for key in standard.keys(): + mapping[key] = standard[key].title + return mapping + + +def get_download_data( + db: Session, + lars: str | None, + org_name: str | None, + lang: Language, + which_version: version_options, +) -> list[schemas.AlgoritmeVersionDownload]: + """ + Prepare algorithm data for download. + """ + algoritme_version_repository = AlgoritmeVersionRepository(db) + algorithms: list[schemas.AlgoritmeVersionDB] = [] + + if org_name: + if which_version == "latest": + algorithms = algoritme_version_repository.get_latest_by_org_by_lang( + org_name, lang + ) + elif which_version == "published": + algorithms = algoritme_version_repository.get_published_by_org_by_lang( + org_name, lang + ) + elif lars: + if which_version == "latest": + algorithm = algoritme_version_repository.get_latest_by_lars_by_lang( + lars, lang + ) + elif which_version == "published": + algorithm = algoritme_version_repository.get_published_by_lars_by_lang( + lars, lang + ) + if not algorithm: + return [] + algorithms = [algorithm] + else: + if which_version == "latest": + algorithms = algoritme_version_repository.get_latest_by_lang(lang) + if which_version == "published": + algorithms = algoritme_version_repository.get_published_by_lang(lang) + return [schemas.AlgoritmeVersionDownload(**alg.dict()) for alg in algorithms] + + +def generate_download_stream( + algorithms: list[schemas.AlgoritmeVersionDownload], + lang: Language, + file_type: Literal["excel", "csv"] = "excel", +) -> io.BytesIO: + dataframes: dict[str, pd.DataFrame] = {} + for algorithm in algorithms: + # Detect version filter based on that schema + std = algorithm.standard_version + if not std: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, detail="STANDARD_VALUE_NOT_FOUND" + ) + + # Remove lists from data, and remove unused fields for this schema + schema = create_algorithm_in_schema("v" + std.replace(".", "_")) + data: dict[str, Any] = dict(algorithm) + stringified_data = { + key: stringify(data[key]) + for key in data.keys() + if key in schema.__fields__.keys() + } + + # Group DataFrames by standard_version + if std not in dataframes: + dataframes[std] = pd.DataFrame(stringified_data, index=[0]) + else: + df = pd.DataFrame(stringified_data, index=[0]) + dataframes[std] = pd.concat([dataframes[std], df], ignore_index=True) + + stream = io.BytesIO() + if file_type == "excel": + with pd.ExcelWriter(stream) as writer: + for key in sorted(dataframes.keys(), reverse=True): + df = dataframes[key] + if lang == Language.NLD: + df = df.rename(columns=get_column_name_mapping(key)) + df = df.replace(r"\n", "", regex=True).T + df = df.replace(r"<[^<>]*>", "", regex=True) + df.to_excel(writer, sheet_name=key, index=True, header=False) + elif file_type == "csv": + # concat the dataframed vertically and write to stream + df = pd.concat(dataframes.values(), ignore_index=True) + df = df.replace(r"<[^<>]*>", "", regex=True) + df = df.rename(columns={"lars": "algorithm_id"}) + # write to stream + df.to_csv(stream, index=False, header=True, sep=",", encoding="utf-8-sig") + + stream.seek(0) + + return stream + + +def generate_download_file( + db: Session, + lang: Language = Language.NLD, + *, + org_name: str | None = None, + lars: str | None = None, + which_version: version_options = "published", + file_type: Literal["excel", "csv"] = "excel", +): + """ + Generates excel file. Can do so for all descriptions under and org or a single one (by lars). + + Args: + - db (Session): SQLAlchemy Session + - lang (Language): specified language, defaults to NLD + *, + - org_name (str|None): organisation name. Causes excel to be for whole organisation + - lars (str|None): lars-code for a description. Causes excel to be for one description only. + Either org_name or lars can be specified, never both. If neither are specified, the whole DB will be queried. + - which_version (published|latest): Specifies whether you want the published version or the latest + (possibly unpublished) version. + """ + if lars and org_name: + raise ValueError("Please enter one of two identifiers: lars | org_name") + + algorithms = get_download_data(db, lars, org_name, lang, which_version) + if len(algorithms) == 0: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail="NO_DATA_FOUND", + ) + + stream = generate_download_stream(algorithms, lang=lang, file_type=file_type) + + timestamp = datetime.datetime.now().strftime("%Y%m%d") + filename: str = "" + file_extension = "xlsx" if file_type == "excel" else "csv" + if lars: + filename = f"{algorithms[0].name.encode('utf-8')} {timestamp}.{file_extension}" + elif org_name: + filename = f"Algoritmebeschrijvingen van {algorithms[0].organization} {timestamp}.{file_extension}" + else: + filename = f"Algoritmebeschrijvingen {timestamp}.{file_extension}" + + if file_type == "csv": + media_type = "text/csv" + else: + media_type = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" + response = StreamingResponse(io.BytesIO(stream.read()), media_type=media_type) + response.headers["Content-Disposition"] = f'attachment; filename="{filename}"' + return response diff --git a/backend/app/controllers/flow.py b/backend/app/controllers/flow.py new file mode 100644 index 00000000..969fa6bf --- /dev/null +++ b/backend/app/controllers/flow.py @@ -0,0 +1,36 @@ +from fastapi import HTTPException +from sqlalchemy.orm import Session +from app.controllers.user import get_from_keycloak_users +from app.middleware.authorisation.config._base import load_flow_configurations +from app.middleware.authorisation.schemas import Role +from app.repositories.organisation import OrganisationRepository +from app.schemas.flow import FlowStructure, FlowStructureRole +from app.services.keycloak.repository import KeycloakRepository +from app.middleware import kc_settings + + +def get_one(db: Session, org_code: str) -> FlowStructure: + org_repo = OrganisationRepository(db) + org = org_repo.get_by_code(org_code) + if not org: + raise HTTPException(404) + + flow = load_flow_configurations()[org.flow] + + # Gets all users and groups them by roles. + kc_repo = KeycloakRepository(kc_settings) + keycloak_users = kc_repo.get_all(group=org_code) + # Users that have access to all groups are added. + keycloak_users_all_groups = kc_repo.get_all(role=Role.AllGroups) + users = get_from_keycloak_users(db, [*keycloak_users, *keycloak_users_all_groups]) + roles: list[FlowStructureRole] = [] + for role in flow["role_label_mapping"]: + members = [u for u in users if role in u.roles] + role_structure = FlowStructureRole( + key=role, + alias=flow["role_label_mapping"][role], + min_required=1, + members=members, + ) + roles.append(role_structure) + return FlowStructure(key=org.flow, alias=flow["alias"], roles=roles) diff --git a/backend/app/controllers/governmental_organisations.py b/backend/app/controllers/governmental_organisations.py new file mode 100644 index 00000000..a40e91a8 --- /dev/null +++ b/backend/app/controllers/governmental_organisations.py @@ -0,0 +1,203 @@ +import re +from typing import Literal +import pandas as pd +from sqlalchemy.orm import Session + +from app.repositories.algoritme_version import AlgoritmeVersionRepository +from app.repositories.organisation import OrganisationRepository +from app.schemas.misc import OrgType +from app.schemas.organization import OrganisationGovernmental +from app.util.logger import get_logger +from etl.figures.controllers.joined_organisations import ( + get_all_organisations_joined_date, +) + + +logger = get_logger(__name__) + +GROUPING_TO_INDIVIDUAL_MUNICPALITIES: dict[str, list[str]] = { + "gemeente-nuenen": [], + "gemeente-gerwen": [], + "gemeente-nederwetten": [], + "gemeente-nuenen-gerwen-en-nederwetten": ["gemeente-nuenen-ca"], + "servicecentrum-mer": [ + "gemeente-maasgouw", + "gemeente-echt-susteren", + "gemeente-roerdalen", + ], + "samenwerking-a2-gemeenten": [ + "gemeente-heeze-leende", + "gemeente-cranendonck", + "gemeente-valkenswaard", + ], +} + +mapping_provinces: dict[str, str] = {"provincie-fryslân": "provincie-friesland"} +mapping_water_authorities: dict[str, str] = { + "wetterskip-fryslân": "waterschap-friesland", + "hoogheemraadschap-van-delfland": "hh-delfland", + "waterschap-hunze-en-aas": "waterschap-hunze-aas", +} +mapping_environmental_services: dict[str, str] = { + "omgevingsdienst-midden--en-west-brabant": "omgevingsdienst-west-brabant", + "dcmr-milieudienst-rijnmond": "DCMR-milieudienst-rijnmond", + "fryske-utfieringstsjinst-miljeu-en-omjouwing": "omgevingsdienst-friesland", + "omgevingsdienst-midden-holland": "odmh", +} + +KEYWORDS_ENVIRONMENTAL_SERVICES: list[str] = ["dcmr", "omgevingsdienst", "rud", "odmh"] +KEYWORDS_WATER_AUTHORITIES: list[str] = ["waterschap", "hoogheemraadschap", "hh-"] + + +def name_to_code(name: str, org_type: OrgType) -> str: + without_outer_whitespace = name.strip() + replace_and_character = without_outer_whitespace.replace("&", "en").lower() + with_dashes = replace_and_character.replace(" ", "-") + without_forbidden = re.sub(r"[\(\)'\.]", "", with_dashes) + if org_type == OrgType.provincie: + return mapping_provinces.get(without_forbidden, without_forbidden) + elif org_type == OrgType.waterschap: + return mapping_water_authorities.get(without_forbidden, without_forbidden) + elif org_type == OrgType.omgevingsdienst: + return mapping_environmental_services.get(without_forbidden, without_forbidden) + + return without_forbidden + + +def handle_code_not_found( + code: str, + all_municipalities: dict[str, OrganisationGovernmental], + attribute: Literal["joined", "show_page", "number_of_algorithmdescriptions"], + *, + show_page: bool | None = None, +) -> None: + """ + If the code from the DB can't be found in the list of gemeentes, not all is lost. + There are some situations where municipalities work together. Their joined name is handled here. + """ + found_aliases = GROUPING_TO_INDIVIDUAL_MUNICPALITIES.get(code, None) + if found_aliases is None: + logger.error(f"{code} NOT FOUND, municipality data incomplete. ({attribute})") + return + elif found_aliases == []: + # Special case: ignore this municipality + return + + for alias in found_aliases: + match attribute: + case "joined": + all_municipalities[alias].joined = True + case "show_page": + if show_page is None: + raise ValueError( + "When changing show_page, you must supply the show_page kwarg." + ) + all_municipalities[alias].show_page = show_page + case "number_of_algorithmdescriptions": + all_municipalities[alias].number_of_algorithmdescriptions += 1 + + +def get_governmental_organisations( + db: Session, org_type: OrgType +) -> list[OrganisationGovernmental]: + """ + For all governmental organisations, builds summaries. + """ + if org_type == OrgType.gemeente: + csv_file = "etl/figures/csv/Gemeenten.csv" + elif org_type == OrgType.waterschap: + csv_file = "etl/figures/csv/Waterschappen.csv" + elif org_type == OrgType.provincie: + csv_file = "etl/figures/csv/Provincies.csv" + elif org_type == OrgType.omgevingsdienst: + csv_file = "etl/figures/csv/Omgevingsdiensten.csv" + + csv_data = pd.read_csv(csv_file, sep=";", encoding="utf-8") + # To improve the number of loops, we start with a dictionary, and convert to a list later. + all_gov_organisations: dict[str, OrganisationGovernmental] = {} + for org in csv_data.itertuples(): + code = name_to_code(org[1], org_type) + org_gov = OrganisationGovernmental(name=org[1], identifier=org[2], code=code) + all_gov_organisations[code] = org_gov + all_codes = all_gov_organisations.keys() + + # Add joined property. + joined_organisations = get_all_organisations_joined_date() + joined_gov_organisations = [ + o + for o in joined_organisations + if (org_type in o.code) + or ( + org_type == OrgType.waterschap + and any(keyword in o.code.lower() for keyword in KEYWORDS_WATER_AUTHORITIES) + ) + or ( + org_type == OrgType.omgevingsdienst + and any( + keyword in o.code.lower() for keyword in KEYWORDS_ENVIRONMENTAL_SERVICES + ) + ) + ] + for org in joined_gov_organisations: + if org_type == OrgType.gemeente and org.code not in all_codes: + handle_code_not_found(org.code, all_gov_organisations, "joined") + continue + all_gov_organisations[org.code].joined = True + + # Add number of published algorithms. + algoritme_version_repo = AlgoritmeVersionRepository(db) + all_published = algoritme_version_repo.get_all_published_first_version() + gov_organisation_published = [ + a + for a in all_published + if (org_type in a.code) + or ( + org_type == OrgType.waterschap + and any(keyword in a.code.lower() for keyword in KEYWORDS_WATER_AUTHORITIES) + ) + or ( + org_type == OrgType.omgevingsdienst + and any( + keyword in a.code.lower() for keyword in KEYWORDS_ENVIRONMENTAL_SERVICES + ) + ) + ] + for published in gov_organisation_published: + if org_type == OrgType.gemeente and published.code not in all_codes: + handle_code_not_found( + published.code, all_gov_organisations, "number_of_algorithmdescriptions" + ) + continue + all_gov_organisations[published.code].number_of_algorithmdescriptions += 1 + + # Add show_page property. + org_repo = OrganisationRepository(db) + db_gov_organisations = org_repo.get_by_type( + org_type + if org_type != OrgType.omgevingsdienst + else OrgType.regionaal_samenwerkingsorgaan + ) + if org_type == OrgType.omgevingsdienst: + db_gov_organisations = [ + gov_organisation + for gov_organisation in db_gov_organisations + if any( + gov_organisation.code.split("-")[0].lower() in keyword + for keyword in KEYWORDS_ENVIRONMENTAL_SERVICES + ) + ] + + for gov_organisation in db_gov_organisations: + if org_type == OrgType.gemeente and gov_organisation.code not in all_codes: + handle_code_not_found( + gov_organisation.code, + all_gov_organisations, + "show_page", + show_page=gov_organisation.show_page, + ) + continue + all_gov_organisations[ + gov_organisation.code + ].show_page = gov_organisation.show_page + + return [v for _, v in all_gov_organisations.items()] diff --git a/backend/app/controllers/html_figures.py b/backend/app/controllers/html_figures.py new file mode 100644 index 00000000..dc9e6ef6 --- /dev/null +++ b/backend/app/controllers/html_figures.py @@ -0,0 +1,8 @@ +from sqlalchemy.orm import Session +from app import schemas +from app.repositories.html_figures import HtmlFiguresRepository + + +def get_html_figures_recent(db: Session) -> schemas.HtmlFigures: + html_figures_repo = HtmlFiguresRepository(db) + return html_figures_repo.get_most_recent() diff --git a/backend/app/controllers/mailing.py b/backend/app/controllers/mailing.py new file mode 100644 index 00000000..f6a468bb --- /dev/null +++ b/backend/app/controllers/mailing.py @@ -0,0 +1,183 @@ +import pytz +from fastapi import Depends, HTTPException +from sqlalchemy import text +from datetime import datetime +from app.config.settings import Settings +from app import mailing, models +from app.middleware.middleware import get_db +from app.schemas.action import EmailType +from app.schemas.misc import Language +from sqlalchemy.orm import Session +from app.util.logger import get_logger + +logger = get_logger(__name__) +env_settings = Settings() + +DEFAULT_SENDER = env_settings.application_mail_address +WEBFORM_URL = env_settings.webform_url + + +def send_email( + db: Session, + email_type: EmailType, + lars: str | None = None, +) -> None: + match email_type: + case EmailType.RELEASE_SELF_PUBLISH_TWO: + raise NotImplementedError("Not yet implemented") + case EmailType.RELEASE_ICTU_LAST: + if lars is None: + raise HTTPException(500) + handle_release_mail(lars, db) + case EmailType.RETRACT: + if lars is None: + raise HTTPException(500) + handle_retract_mail(lars, db) + + +def handle_release_mail(lars: str, db: Session = Depends(get_db)): + algoritme_version: models.Algoritme = ( + db.query(models.AlgoritmeVersion) + .join(models.Algoritme) + .filter(models.Algoritme.lars == lars) + .order_by(models.AlgoritmeVersion.create_dt.desc()) + .first() + ) + if not algoritme_version: + logger.error(f"No algorithm found with lars {lars}. Mail not sent") + return + + editor_name_query: models.ActionHistory = ( + db.query(models.ActionHistory) + .filter(models.ActionHistory.algoritme_version_id == algoritme_version.id) + .order_by(models.ActionHistory.create_dt.desc()) + .first() + ) + if not editor_name_query: + logger.error( + f"Last edit of algoritme_version {algoritme_version.id} not found. Mail not sent" + ) + return + + editor_name = editor_name_query.user_id + + previous_publication_count = db.execute( + text( + """ select count(*) + from action_history h + inner join algoritme_version v on v.id = h.algoritme_version_id + inner join algoritme a on a.id = v.algoritme_id + where + h.operation = 'published' + and a.lars = :lars + ;""" + ), + {"lars": algoritme_version.lars}, + ) + if previous_publication_count.scalar() == 0: + subject = f"Vrijgave voor eerste publicatie: {algoritme_version.name}" + first_publication_addendum = ( + "

Deze beschrijving is nog niet eerder gepubliceerd.

" + ) + else: + subject = f"Vrijgave voor publicatie: {algoritme_version.name}" + first_publication_addendum = "" + + webform_link = f"{WEBFORM_URL}/algoritme/{algoritme_version.lars}/bewerken" + + time = datetime.time( + datetime.now().astimezone(pytz.timezone("Europe/Amsterdam")) + ).strftime("%H:%M") + + receivers = ["devops@ictu.nl"] + sender = DEFAULT_SENDER + + plain_message = f"""Beste beheerder, Er is een nieuw algoritme vrijgegeven + van de organisatie {algoritme_version.organization}.""" + html_message = f""" + + +

+ Een nieuwe versie van algoritmebeschrijving {algoritme_version.name} [{algoritme_version.lars}] is + door {editor_name} van {algoritme_version.organization}, + op {datetime.date(datetime.now())} om {time} + vrijgegeven voor publicatie. +

+

Gelieve deze beschrijving te reviewen en bij goedkeuring te + publiceren via deze link .

+

Gelieve bij afkeuring contact op te nemen met de algoritmehouder om af te stemmen welke aanpassing + nodig is.

+ + {first_publication_addendum} + +

Dit is een automatisch bericht.

+ + + """ + + mailing.send_notification_mail( + receivers=receivers, + sender=sender, + subject=subject, + plain_message=plain_message, + html_message=html_message, + ) + + +def handle_retract_mail(lars: str, db: Session = Depends(get_db)): + algoritme_version: models.AlgoritmeVersion = ( + db.query(models.AlgoritmeVersion) + .join(models.Algoritme) + .filter( + models.Algoritme.lars == lars, + models.AlgoritmeVersion.language == Language.NLD, + ) + .order_by(models.AlgoritmeVersion.create_dt.desc()) + .first() + ) + if not algoritme_version: + logger.error("Algoritme_version not found. Retract mail not sent.") + return + + editor_name_query: models.ActionHistory = ( + db.query(models.ActionHistory) + .filter(models.ActionHistory.algoritme_version_id == algoritme_version.id) + .order_by(models.ActionHistory.create_dt.desc()) + .first() + ) + if not editor_name_query: + logger.error("Last edit of algoritme_version not found. Mail not sent.") + return + + editor_name = editor_name_query.user_id + + time = datetime.time( + datetime.now().astimezone(pytz.timezone("Europe/Amsterdam")) + ).strftime("%H:%M") + + receivers = ["devops@ictu.nl"] + sender = DEFAULT_SENDER + subject = f"Ingetrokken: {algoritme_version.name}" + plain_message = f"""Beste beheerder, Er is een algoritme ingetrokken + van de organisatie {algoritme_version.organization}.""" + html_message = f""" + + +

+ Een algoritmebeschrijving: {algoritme_version.name} [{algoritme_version.lars}] is + door {editor_name} van {algoritme_version.organization}, op {datetime.date(datetime.now())} om + {time} ingetrokken. +

+ +

Dit is een automatisch bericht.

+ + + """ + + mailing.send_notification_mail( + receivers=receivers, + sender=sender, + subject=subject, + plain_message=plain_message, + html_message=html_message, + ) diff --git a/backend/app/controllers/organisation/__init__.py b/backend/app/controllers/organisation/__init__.py new file mode 100644 index 00000000..1724afaa --- /dev/null +++ b/backend/app/controllers/organisation/__init__.py @@ -0,0 +1,2 @@ +from .webform import * # noqa +from .public import * # noqa diff --git a/backend/app/controllers/organisation/public.py b/backend/app/controllers/organisation/public.py new file mode 100644 index 00000000..ca7c5706 --- /dev/null +++ b/backend/app/controllers/organisation/public.py @@ -0,0 +1,147 @@ +from app import models, schemas +from sqlalchemy.orm import Session +from sqlalchemy import and_, func, ColumnElement +from app.repositories.organisation import OrganisationRepository +from app.services.keycloak.repository import KeycloakRepository +from app.middleware import kc_settings +from app.schemas.algoritme_version import FilterData +from app.schemas.misc import Language, OrgType +from app.config.org_type_mapping import org_type_mapping + + +def build_org_filter_data_by_lang( + organisations: list[schemas.OrganisationOverview], language: Language +) -> list[schemas.FilterData]: + uniq_org_types = set([OrgType[r.type] for r in organisations]) + orgtype_dict: dict[OrgType, int] = {orgtype: 0 for orgtype in uniq_org_types} + for org in organisations: + orgtype_dict[org.type] += 1 + + result = [ + FilterData( + key=orgtype, + label=org_type_mapping[language][orgtype], + count=count, + ) + for orgtype, count in orgtype_dict.items() + ] + result.sort(key=lambda x: x.count, reverse=True) + return result + + +def get_basic_search_clause(searchtext: str, language: Language) -> ColumnElement[bool]: + return models.OrganisationDetails.vector.op("@@")( + func.websearch_to_tsquery(language.value, searchtext) + ) + + +def prep_search_for_query(search_query_value: str) -> str: + adjusted_search_query = search_query_value.replace(" of ", " or ") + return adjusted_search_query + + +def get_similarity_search_clause( + db: Session, searchtext: str, language: Language +) -> ColumnElement[bool]: + """ + Full text search query based on concatenation of a set of words from the 'words' table. + The words are selected if their similarity is greater then the threshold when compared to the search value. + """ + similarity_threshold = 0.4 + # similarity threshold is set to 0.4 because it returns good results + + subquery = ( + db.query( + func.websearch_to_tsquery( + language.value, func.string_agg(models.Words.word, " or ") + ) + ) + .filter(func.similarity(models.Words.word, searchtext) > similarity_threshold) + .as_scalar() + ) + return models.OrganisationDetails.vector.op("@@")(subquery) + + +def get_orgs_count(db: Session, language: Language) -> int: + org_repo = OrganisationRepository(db) + data = org_repo.get_overview_by_lang(language) + total_count = len(data) + return total_count + + +def get_orgs_by_query( + db: Session, query: schemas.OrganisationQuery, language: Language +) -> schemas.OrganisationQueryResponse: + org_type = query.organisationtype + page = query.page + searchtext = query.searchtext + if searchtext: + searchtext = prep_search_for_query(searchtext) + limit = min(query.limit, 20) + offset = (page - 1) * limit + + filter_clauses = [] + selected_filters = [] + if org_type: + selected_filters.append( + schemas.SelectedFilters( + key="organisationtype", value=org_type_mapping[language][org_type] + ) + ) + if searchtext: + selected_filters.append( + schemas.SelectedFilters(key="searchtext", value=searchtext) + ) + filter_clauses.append(get_basic_search_clause(searchtext, language)) + filter_clause = and_(*filter_clauses) + + org_repo = OrganisationRepository(db) + data = org_repo.get_overview_by_type_by_lang(org_type, language, filter_clause) + + if len(data) == 0 and searchtext: + # If a searchtext is given, we use similarity search in case of no results. Replace basic search on last entry: + filter_clauses[-1] = get_similarity_search_clause(db, searchtext, language) + filter_clause = and_(*filter_clauses) + data = org_repo.get_overview_by_type_by_lang(org_type, language, filter_clause) + + total_count = len(data) + data.sort(key=lambda x: x.count, reverse=True) + results = data[offset : offset + limit] # noqa + organisationtype_filterdata = build_org_filter_data_by_lang(data, language) + + filter_data = schemas.OrganisationFilterData( + organisationtype=organisationtype_filterdata + ) + + return schemas.OrganisationQueryResponse( + results=results, + total_count=total_count, + filter_data=filter_data, + selected_filters=selected_filters, + ) + + +def get_all_organisations_joined_date() -> list[schemas.OrganisationJoinedDate]: + """ + Returns a list of all organisations and their 'aansluitdatum'; + This is the date that the oldest account associated with them was first created. + """ + kc_repo = KeycloakRepository(kc_settings) + all_users = kc_repo.get_all() + + organisation_oldest_date = {} + for user in all_users: + groups = user.groups + created_at = user.created_at + for group in groups: + if group not in organisation_oldest_date: + organisation_oldest_date[group] = created_at + elif created_at < organisation_oldest_date[group]: + organisation_oldest_date[group] = created_at + + formatted_organisation_dates = [ + schemas.OrganisationJoinedDate(code=code, create_dt=date) + for code, date in organisation_oldest_date.items() + ] + + return formatted_organisation_dates diff --git a/backend/app/controllers/organisation/webform.py b/backend/app/controllers/organisation/webform.py new file mode 100644 index 00000000..a545fb54 --- /dev/null +++ b/backend/app/controllers/organisation/webform.py @@ -0,0 +1,242 @@ +from fastapi import BackgroundTasks, HTTPException, status +from sqlalchemy.orm import Session +from app import schemas, models +from app.middleware.authorisation.schemas import Role +from app.repositories.organisation import OrganisationRepository +from app.repositories.organisation_details import OrganisationDetailsRepository +from app.schemas.misc import Language +from app.schemas.organization import ( + GetOrganisationsResponse, + OrganisationConfig, + OrganisationConfigIn, +) +from app.services.keycloak import KeycloakUser +from app.services import translation +from app.services.keycloak.repository import KeycloakRepository +from app.services.keycloak.schemas import KeycloakUserUpdate +from app.services.translation import LanguageCode +from app.middleware import kc_settings + + +def get_orgs( + db: Session, + user: KeycloakUser, + limit: int | None = None, + skip: int | None = None, + q: str | None = None, +) -> GetOrganisationsResponse: + org_details_repo = OrganisationDetailsRepository(db) + # Gets orgs based on requested parameters. The limit is manual, to avoid doing 2 calls to DB. + if Role.AllGroups in user.roles or Role.Administrator in user.roles: + orgs = org_details_repo.get_org_configs_by_lang(Language.NLD, skip=skip, q=q) + else: + orgs = org_details_repo.get_org_configs_by_org_list_by_lang( + user.groups, Language.NLD, skip=skip, q=q + ) + return GetOrganisationsResponse( + organisations=orgs[0:limit], count=len(orgs) + (skip or 0) + ) + + +def is_unique_code(db: Session, organisation: OrganisationConfigIn) -> bool: + """Test for presence of the organisation code in the DB. If found, throws an HTTPException""" + organisation_repo = OrganisationRepository(db) + duplicate_code = organisation_repo.get_by_code(organisation.code) + if duplicate_code is not None: + raise HTTPException(status_code=status.HTTP_409_CONFLICT, detail="CODE_TAKEN") + return True + + +def is_unique_name(db: Session, config: OrganisationConfigIn) -> bool: + """Test for presence of the organisation name in the DB. If found, throws an HTTPExcetion""" + org_detail_repo = OrganisationDetailsRepository(db) + duplicate_name = org_detail_repo.get_by_name(config.name) + if duplicate_name is not None: + raise HTTPException(status_code=status.HTTP_409_CONFLICT, detail="NAME_TAKEN") + return True + + +def create_org( + background_tasks: BackgroundTasks, db: Session, config: OrganisationConfigIn +) -> OrganisationConfig: + is_unique_name(db, config) + is_unique_code(db, config) + + org_model = models.Organisation( + type=config.type, code=config.code, flow=config.flow + ) + db.add(org_model) + db.flush() + + org_detail_model = models.OrganisationDetails( + name=config.name, language=Language.NLD, organisation_id=org_model.id + ) + db.add(org_detail_model) + db.commit() + + org_detail_repo = OrganisationDetailsRepository(db) + org_config = org_detail_repo.get_org_configs_by_code_by_lang( + config.code, Language.NLD + ) + if not org_config: + raise HTTPException(status.HTTP_409_CONFLICT, "RECORD_NOT_FOUND") + + background_tasks.add_task( + translate_org_name, db, org_config.name, org_config.id, LanguageCode.ENGLISH + ) + background_tasks.add_task( + translate_org_name, db, org_config.name, org_config.id, LanguageCode.FRISIAN + ) + return org_config + + +def update_org( + background_tasks: BackgroundTasks, + db: Session, + org_code: str, + config: OrganisationConfigIn, +) -> OrganisationConfig: + current_org_query = ( + db.query( + models.Organisation.id, + models.Organisation.code, + models.Organisation.type, + models.OrganisationDetails.name, + ) + .join( + models.Organisation, + models.Organisation.id == models.OrganisationDetails.organisation_id, + ) + .filter( + models.OrganisationDetails.language == Language.NLD, + models.Organisation.code == org_code, + ) + ) + current_org = current_org_query.first() + if not current_org: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, detail="ORG_NOT_FOUND" + ) + + if org_code != config.code: + # On code change, test for uniqueness. + is_unique_code(db, config) + + if current_org.name != config.name: + # On name change, test for uniqueness. + is_unique_name(db, config) + + db.query(models.Organisation).filter(models.Organisation.code == org_code).update( + { + models.Organisation.code: config.code, + models.Organisation.type: config.type, + models.Organisation.flow: config.flow, + }, + synchronize_session=False, + ) + db.query(models.OrganisationDetails).filter( + models.OrganisationDetails.organisation_id == current_org.id, + models.OrganisationDetails.language == Language.NLD, + ).update({models.OrganisationDetails.name: config.name}, synchronize_session=False) + # If update is succesful, and code changed, also update the rights of the users. + if org_code != config.code: + kc_repo = KeycloakRepository(kc_settings) + users = kc_repo.get_all(group=org_code) + for user in users: + new_groups = [config.code] + [g for g in user.groups if g != org_code] + updated_user = {**user.dict(), "groups": new_groups} + kc_repo.update_user(user.id, KeycloakUserUpdate(**updated_user)) + + db.commit() + + background_tasks.add_task( + translate_org_name, db, config.name, current_org.id, LanguageCode.ENGLISH + ) + background_tasks.add_task( + translate_org_name, db, config.name, current_org.id, LanguageCode.FRISIAN + ) + + org_details_repo = OrganisationDetailsRepository(db) + org_config = org_details_repo.get_org_configs_by_code_by_lang( + config.code, Language.NLD + ) + if not org_config: + raise HTTPException(status.HTTP_409_CONFLICT, "RECORD_NOT_FOUND") + return org_config + + +def remove_org( + db: Session, + org_code: str, +) -> None: + org_repo = OrganisationRepository(db) + org = org_repo.get_by_code(org_code) + if not org: + raise HTTPException(404) + org_repo.delete_by_code(org_code) + + +def update_org_show_page( + db: Session, org_code: str, show_page: bool +) -> OrganisationConfig: + org_repo = OrganisationRepository(db) + org = org_repo.get_by_code(org_code) + if not org: + raise HTTPException(status.HTTP_404_NOT_FOUND) + + org.show_page = show_page + item = schemas.OrganisationIn.from_orm(org) + org_repo.update_by_code(org.code, item) + + org_detail_repo = OrganisationDetailsRepository(db) + org_config = org_detail_repo.get_org_configs_by_code_by_lang(org_code, Language.NLD) + if not org_config: + raise HTTPException(status.HTTP_409_CONFLICT, "RECORD_NOT_FOUND") + return org_config + + +def translate_org_name( + db: Session, + org_name: str, + org_id: int, + target_lang: LanguageCode = LanguageCode.ENGLISH, +) -> None: + org_details_repo = OrganisationDetailsRepository(db) + + # Load preprocessor class, because it has the default translations + preprocessor = translation.Preprocessor( + models.AlgoritmeVersion(), target_lang=target_lang.value + ) + # key is organization, because the file is also written for algoritme_version, where the column has that name. + field_dict = {"organization": org_name} + default_translator = translation.DefaultValuesTranslator( + field_dict=field_dict, + target_lang=target_lang, + organisation_name=org_name, + ) + translation_response = default_translator.translate( + preprocessor.translation_spec["default_translations"] + ) + if not translation_response.fields: + raise HTTPException(status.HTTP_424_FAILED_DEPENDENCY, "Translation failed") + + lang_code_map = { + LanguageCode.ENGLISH: Language.ENG, + LanguageCode.FRISIAN: Language.FRY, + } + org_detail = org_details_repo.get_by_org_id_by_lang( + org_id, lang_code_map[target_lang] + ) + if not org_detail: + org_details_in = schemas.OrganisationDetailsIn( + about=None, + contact_info=None, + name=str(translation_response.fields["organization"]), + organisation_id=org_id, + language=lang_code_map[target_lang], + ) + org_details_repo.add(org_details_in) + else: + org_details_in = schemas.OrganisationDetailsIn(**dict(org_detail)) + org_details_in.name = str(translation_response.fields["organization"]) + org_details_repo.update_by_id(org_detail.id, org_details_in) diff --git a/backend/app/controllers/organisation_details.py b/backend/app/controllers/organisation_details.py new file mode 100644 index 00000000..eeceb802 --- /dev/null +++ b/backend/app/controllers/organisation_details.py @@ -0,0 +1,136 @@ +from fastapi import BackgroundTasks, HTTPException, status +from sqlalchemy.orm import Session +from app import schemas +from app.repositories import OrganisationDetailsRepository, AlgoritmeVersionRepository +from app.repositories.organisation import OrganisationRepository +from app.schemas.misc import Language +from app.services import translation +from app.services.translation import LanguageCode + + +def get_org_page_info( + db: Session, org_code: str, lang: Language +) -> schemas.OrganisationDetailsPage: + org_details_repo = OrganisationDetailsRepository(db) + algoritme_version_repo = AlgoritmeVersionRepository(db) + + org_algorithms = algoritme_version_repo.get_published_by_org_by_lang(org_code, lang) + algoritme_versions = [ + schemas.AlgoritmeVersionQuery(**algo.dict()) for algo in org_algorithms + ] + + org_details = org_details_repo.get_shown_by_code_by_lang(org_code, lang) + if org_details: + return schemas.OrganisationDetailsPage( + **dict(org_details), algoritme_versions=algoritme_versions + ) + + org_config = org_details_repo.get_org_configs_by_code_by_lang(org_code, lang) + if not org_config: + raise HTTPException(status.HTTP_404_NOT_FOUND, "ORG_NOT_FOUND") + + return schemas.OrganisationDetailsPage( + name=org_config.name, + show_page=org_config.show_page, + algoritme_versions=algoritme_versions, + ) + + +def get_org_detail(db: Session, as_org: str) -> schemas.OrganisationDetailsDB: + org_detail_repo = OrganisationDetailsRepository(db) + org_repo = OrganisationRepository(db) + org = org_repo.get_by_code(as_org) + if not org: + raise HTTPException(404) + org_detail = org_detail_repo.get_by_org_id_by_lang(org.id, Language.NLD) + return schemas.OrganisationDetailsDB.from_orm(org_detail) + + +def update_org_details( + background_tasks: BackgroundTasks, + db: Session, + as_org: str, + organisation_detail: schemas.OrganisationDetailsUpdatable, +) -> schemas.OrganisationDetailsDB: + org_detail_repo = OrganisationDetailsRepository(db) + org_repo = OrganisationRepository(db) + org = org_repo.get_by_code(as_org) + if not org: + raise HTTPException(404) + org_detail = org_detail_repo.get_by_org_id_by_lang(org.id, Language.NLD) + if not org_detail: + raise HTTPException(404) + + org_detail_in = schemas.OrganisationDetailsIn.from_orm(org_detail) + org_detail_in.about = organisation_detail.about + org_detail_in.contact_info = organisation_detail.contact_info + record = org_detail_repo.update_by_id(org_detail.id, org_detail_in) + + # Translate about to english + background_tasks.add_task( + translate_org_details, + db, + org.id, + organisation_detail, + org_detail.name, + LanguageCode.ENGLISH, + ) + background_tasks.add_task( + translate_org_details, + db, + org.id, + organisation_detail, + org_detail.name, + LanguageCode.FRISIAN, + ) + return schemas.OrganisationDetailsDB.from_orm(record) + + +def translate_org_details( + db: Session, + org_id: int, + organisation_detail: schemas.OrganisationDetailsUpdatable, + org_name: str, + lang: LanguageCode = LanguageCode.ENGLISH, +) -> None: + org_detail_repo = OrganisationDetailsRepository(db) + + lang_code_map = { + LanguageCode.ENGLISH: Language.ENG, + LanguageCode.FRISIAN: Language.FRY, + } + auto_translator = translation.AutoTranslator( + field_dict={"about": organisation_detail.about}, + target_lang=lang, + organisation_name=org_name, + ) + translation_response = auto_translator.translate() + if not translation_response.fields: + raise HTTPException( + status.HTTP_424_FAILED_DEPENDENCY, + detail="Translation for field 'about' failed.", + ) + about_translated = translation_response.fields.get("about", "") + if not isinstance(about_translated, str): + raise HTTPException( + status.HTTP_424_FAILED_DEPENDENCY, + detail=f"Translation to {lang_code_map[lang].value} failed for field {'about'}," + f" got: {translation_response.fields.get('about', '')}.", + ) + + org_detail_translated = org_detail_repo.get_by_org_id_by_lang( + org_id, lang_code_map[lang] + ) + if not org_detail_translated: + raise HTTPException( + 409, + "Application has conflicting DB state, please contact administrator", + ) + + org_detail_in_translated = schemas.OrganisationDetailsIn.from_orm( + org_detail_translated + ) + org_detail_in_translated.about = about_translated + org_detail_in_translated.contact_info = organisation_detail.contact_info + + org_detail_repo.update_by_id(org_detail_translated.id, org_detail_in_translated) diff --git a/backend/app/controllers/organization.py b/backend/app/controllers/organization.py new file mode 100644 index 00000000..86344c16 --- /dev/null +++ b/backend/app/controllers/organization.py @@ -0,0 +1,79 @@ +from fastapi import HTTPException, status +from sqlalchemy.orm import Session +from app import schemas, models +from app.repositories.organisation import OrganisationRepository + + +def get_orgs(db: Session, user: schemas.User) -> list[schemas.OrganisationIn]: + if user.role == "publisher" or user.role == "admin": + all_orgs = ( + db.query(models.Organisation).order_by(models.Organisation.name).all() + ) + return [schemas.OrganisationIn.from_orm(org) for org in all_orgs] + else: + org_list = user.organizations + some_orgs = ( + db.query(models.Organisation) + .order_by(models.Organisation.name) + .filter(models.Organisation.code.in_(org_list)) + .all() + ) + if not some_orgs: + return [] + return [schemas.OrganisationIn.from_orm(org) for org in some_orgs] + + +def is_unique_code(db: Session, organisation: schemas.OrganisationIn) -> bool: + """Test for presence of the organisation code in the DB. If found, throws an HTTPExcetion""" + organisation_repo = OrganisationRepository(db) + duplicate_code = organisation_repo.get_by_code(organisation.code) + if duplicate_code is not None: + raise HTTPException(status_code=status.HTTP_409_CONFLICT, detail="CODE_TAKEN") + return True + + +def is_unique_name(db: Session, organisation: schemas.OrganisationIn) -> bool: + """Test for presence of the organisation name in the DB. If found, throws an HTTPExcetion""" + organisation_repo = OrganisationRepository(db) + duplicate_name = organisation_repo.get_by_name(organisation.name) + if duplicate_name is not None: + raise HTTPException(status_code=status.HTTP_409_CONFLICT, detail="NAME_TAKEN") + return True + + +def create_org(db: Session, organisation: schemas.OrganisationIn): + is_unique_name(db, organisation) + is_unique_code(db, organisation) + + org_model = models.Organisation(**organisation.dict()) + db.add(org_model) + db.commit() + + +def update_org(db: Session, org_code: str, organisation: schemas.OrganisationIn): + if org_code != organisation.code: + # On code change, test for uniqueness. + is_unique_code(db, organisation) + + current_org_query = db.query(models.Organisation).filter( + models.Organisation.code == org_code + ) + current_org: models.Organisation | None = current_org_query.first() + if not current_org: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, detail="ORG_NOT_FOUND" + ) + + if current_org.name != organisation.name: + # On name change, test for uniqueness. + is_unique_name(db, organisation) + + current_org_query.update( + { + models.Organisation.code: organisation.code, + models.Organisation.name: organisation.name, + models.Organisation.type: organisation.type, + }, + synchronize_session=False, + ) + db.commit() diff --git a/backend/app/controllers/pdf_download.py b/backend/app/controllers/pdf_download.py new file mode 100644 index 00000000..a59d35b8 --- /dev/null +++ b/backend/app/controllers/pdf_download.py @@ -0,0 +1,171 @@ +import datetime +import io +from fastapi.responses import StreamingResponse +from fastapi import HTTPException, status +from sqlalchemy.orm import Session + +from app.schemas.misc import Language +from .pdf_wrapper import TextStyle, PDF +from app import schemas +from app.schemas.config.types import SchemaProperty +from app.config.layouts.types import LayoutJson +from app.repositories import AlgoritmeVersionRepository +from app.util.config_load import get_ttl_hash, collect_structure_data +from app.util.stringify import stringify + + +def get_org_data(db: Session, org_name: str) -> list[schemas.AlgoritmeVersionDownload]: + algoritme_version_repository = AlgoritmeVersionRepository(db) + algorithms = algoritme_version_repository.get_latest_by_org_by_lang( + org_name, Language.NLD + ) + return [schemas.AlgoritmeVersionDownload(**row.dict()) for row in algorithms] + + +def get_algo_data(db: Session, lars: str) -> schemas.AlgoritmeVersionDownload | None: + algoritme_version_repository = AlgoritmeVersionRepository(db) + algorithm = algoritme_version_repository.get_latest_by_lars_by_lang( + lars, Language.NLD + ) + if algorithm: + return schemas.AlgoritmeVersionDownload(**algorithm.dict()) + + +def build_description( + pdf: PDF, + algorithm: schemas.AlgoritmeVersionDownload, + layout: LayoutJson, + schema: dict[str, SchemaProperty], +) -> PDF: + pdf.next_page() + + pdf.add_heading(f"{algorithm.name} ({algorithm.lars})", TextStyle.H2) + pdf.add_paragraph(f"Publicatiestandaard: {algorithm.standard_version}") + pdf.print_block() + + for tab_group in layout.tabsGrouping: + pdf.add_heading(tab_group.label, TextStyle.H3) + pdf.print_block(lower_limit=0.25) + + field_list = tab_group.rows + for field in field_list: + key: str = f"{algorithm.lars}__{field}" + value: str = stringify(getattr(algorithm, field)) + if not value: + value = "" + max_length: int = schema[field].max_length or 1000 + pdf.add_heading(schema[field].title, TextStyle.H4) + pdf.add_textfield(value, key, max_length=max_length) + pdf.print_block() + return pdf + + +def get_all_algorithm_pdf(db: Session, org_name: str): + data = get_org_data(db, org_name) + if len(data) == 0: + return None, None + + organisation = data[0].organization + timestamp = datetime.datetime.now().strftime("%Y-%m-%d") + + pdf = PDF() + author = "Webformulier van het Algoritmeregister" + title = f"Algoritmebeschrijvingen van {organisation}" + subject = f"Algoritmebeschrijvingen van {organisation}" + pdf.set_metadata(author=author, title=title, subject=subject) + + introduction: str = f"""Dit document bevat algoritmebeschrijvingen van {organisation} \ +uitgedraaid op {timestamp}.\n Gebruik het om algoritmebeschrijvingen intern te reviewen \ +en wijzigingen te accorderen voor publicatie \nop het algoritmeregister van de Nederlandse \ +overheid. Heeft u vragen of heeft u hulp nodig? \n\ +Neem via mail contact op met: algoritmeregister@minbzk.nl.""" + + pdf.add_heading("Algoritmebeschrijvingen", TextStyle.H1) + pdf.add_heading(f"Algoritmes van {organisation}", TextStyle.SUBTITLE) + pdf.add_paragraph(introduction) + pdf.print_block() + + schemas, layouts = collect_structure_data(get_ttl_hash()) + for algorithm in data: + if not algorithm.standard_version: + raise HTTPException(status.HTTP_404_NOT_FOUND, "STANDARD_VALUE_NOT_FOUND") + schema = schemas[algorithm.standard_version] + layout = layouts[algorithm.standard_version] + pdf = build_description(pdf, algorithm, layout, schema) + + pdf.save() + stream = pdf.stream + stream.seek(0) + + filename = f"Algoritmebeschrijvingen van {organisation} op {timestamp}.pdf" + return stream, filename + + +def get_one_algorithm_pdf(db: Session, lars: str): + algorithm = get_algo_data(db, lars) + if not algorithm: + return None, None + + organisation = algorithm.organization + name = algorithm.name + timestamp = datetime.datetime.now().strftime("%Y-%m-%d") + + pdf = PDF() + author = "Webformulier van het Algoritmeregister" + title = f"Algoritmebeschrijving van {organisation}" + subject = f"Algoritmebeschrijving van {organisation}" + pdf.set_metadata(author=author, title=title, subject=subject) + + introduction: str = f"""Dit document bevat de algoritmebeschrijving: {name},\n \ +uitgedraaid op {timestamp}. Gebruik het om de inhoud intern te reviewen \ +en wijzigingen te accorderen \n voor publicatie op het algoritmeregister van de Nederlandse \ +overheid. Heeft u vragen of heeft u hulp nodig? \n\ +Neem via mail contact op met: algoritmeregister@minbzk.nl.""" + + pdf.add_heading("Algoritmebeschrijvingen", TextStyle.H1) + pdf.add_heading(f"Algoritmes van {organisation}", TextStyle.SUBTITLE) + pdf.add_paragraph(introduction) + pdf.print_block() + + schemas, layouts = collect_structure_data(get_ttl_hash()) + if not algorithm.standard_version: + raise HTTPException(status.HTTP_404_NOT_FOUND, "STANDARD_VALUE_NOT_FOUND") + schema = schemas[algorithm.standard_version] + layout = layouts[algorithm.standard_version] + + pdf = build_description(pdf, algorithm, layout, schema) + + pdf.save() + stream = pdf.stream + stream.seek(0) + + filename = f"{algorithm.name.encode('utf-8')} {timestamp}.pdf" + return stream, filename + + +def generate_pdf_download( + db: Session, *, org_name: str | None = None, lars: str | None = None +): + if lars: + stream, filename = get_one_algorithm_pdf(db, lars) + elif org_name: + stream, filename = get_all_algorithm_pdf(db, org_name) + else: + raise ValueError("Please enter one of two identifiers: lars | org_name") + + if stream is None: + raise HTTPException( + status_code=status.HTTP_400_BAD_REQUEST, + detail="No algorithm descriptions found. Unable to make document", + ) + media_type = ( + "application/vnd.openxmlformats-officedocument.wordprocessingml.document" + ) + response = StreamingResponse(io.BytesIO(stream.read()), media_type=media_type) + + response.headers["Content-Disposition"] = f'attachment; filename="{filename}"' + return response + + +if __name__ == "__main__": + collect_structure_data() diff --git a/backend/app/controllers/pdf_wrapper/__init__.py b/backend/app/controllers/pdf_wrapper/__init__.py new file mode 100644 index 00000000..0e57627c --- /dev/null +++ b/backend/app/controllers/pdf_wrapper/__init__.py @@ -0,0 +1,4 @@ +from .types import * # noqa +from .style_config import font_styles_config # noqa +from .canvas import CanvasEditor # noqa +from .pdf import PDF # noqa diff --git a/backend/app/controllers/pdf_wrapper/canvas.py b/backend/app/controllers/pdf_wrapper/canvas.py new file mode 100644 index 00000000..e0189892 --- /dev/null +++ b/backend/app/controllers/pdf_wrapper/canvas.py @@ -0,0 +1,102 @@ +from typing import Tuple +from reportlab.lib.pagesizes import A4 +from reportlab.pdfgen import canvas +from reportlab.pdfgen.textobject import PDFTextObject +from . import font_styles_config +from . import TextStyle, StyleDict, TextFieldEntry, TextEntry, TextBlockConfig + + +def prepare_text_for_textfield(value: str | None) -> str: + if not value: + return "" + value = value.replace("’", "'") + value = value.replace("‘", "'") + value = value.replace("≥", ">") + value = value.replace("“", '"') + value = value.replace("”", '"') + value = value.replace("–", "-") + value = value.replace("‑", "-") + value = value.replace("•", "") + return value + + +class CanvasEditor(canvas.Canvas): + y_start = 780 + x_start = 50 + y_end = 50 + + def __init__(self, stream): + super().__init__(stream, pagesize=A4) + + self._x: int = self.x_start + self._y: int = self.y_start + self.styles: dict[TextStyle, StyleDict] = font_styles_config + + def next_page(self): + self.showPage() + self._x = self.x_start + self._y = self.y_start + + def print_textfield(self, textfield: TextFieldEntry, height: int) -> None: + self.acroForm.textfield( + name=f"name__{textfield['key']}", + tooltip=f"tooltip__{textfield['key']}", + value=prepare_text_for_textfield(textfield["text"]), + maxlen=textfield["max_length"], + x=self._x, + y=self._y, + fieldFlags="multiline", + width=500, + height=height, + borderWidth=0, + ) + + def print_block(self, block: TextBlockConfig, height: int) -> None: + if height > self.y_start - self.y_end: + raise ValueError("Block exceeds page size") + + if self._y - height < self.y_end: + self.next_page() + + for element in block: + if element["type"] == "text": + self._y, text_object = self.build_text_object(element, self._y) + + style: StyleDict = self.styles[element["style"]] + self.setFont(*style["font"]) + self.setFillColor(style["color"]) + self.drawText(text_object) + elif element["type"] == "textfield": + height = self.get_textfield_height(element) + self._y -= height + 10 + self.print_textfield(element, height) + + def get_textfield_height(self, textfield_element: TextFieldEntry) -> int: + return round(max(textfield_element["max_length"], 500) / 500) * 20 + + def estimate_block_height(self, block: TextBlockConfig) -> int: + y_loop = 0 + for element in block: + if element["type"] == "text": + y_loop, _ = self.build_text_object(element, y_loop) + elif element["type"] == "textfield": + height = self.get_textfield_height(element) + y_loop -= height + return -y_loop + + def build_text_object( + self, text_element: TextEntry, y: int + ) -> Tuple[int, PDFTextObject]: + style: StyleDict = self.styles[text_element["style"]] + y_out = y - style["height"] + + text_object: PDFTextObject = self.beginText(self.x_start, y_out) + text_object.textLines(text_element["text"]) + + return y_out, text_object + + def get_page_progression(self) -> float: + """ + Return the fractional progression along the page. 1 means at the top, 0 means at the bottom + """ + return (self._y - self.y_end) / (self.y_start - self.y_end) diff --git a/backend/app/controllers/pdf_wrapper/pdf.py b/backend/app/controllers/pdf_wrapper/pdf.py new file mode 100644 index 00000000..e9519ad8 --- /dev/null +++ b/backend/app/controllers/pdf_wrapper/pdf.py @@ -0,0 +1,57 @@ +import io +from . import TextStyle, TextEntry, TextFieldEntry, CanvasEditor, TextBlockConfig + + +class PDF: + def __init__(self): + self.stream = io.BytesIO() + self.__canvas = CanvasEditor(self.stream) + self.block: TextBlockConfig = [] + + def set_metadata(self, *, author: str, title: str, subject: str): + if author: + self.__canvas.setAuthor(author) + if title: + self.__canvas.setTitle(title) + if subject: + self.__canvas.setSubject(subject) + + def save(self): + self.__canvas.save() + + def next_page(self): + self.__canvas.next_page() + + def clear_block(self): + self.block = [] + + def print_block(self, *, clear: bool = True, lower_limit: float = 0.0): + """ + lower_limit: how far down the page is the block still allowed to start printing? for example: + 0.25 means: if the block starts in the last 25% of the page, print on the next page instead. + """ + progression = self.__canvas.get_page_progression() + if progression < lower_limit: + self.next_page() + + height: int = self.__canvas.estimate_block_height(self.block) + self.__canvas.print_block(self.block, height) + if clear: + self.clear_block() + + def add_heading(self, text: str, heading: TextStyle): + config: TextEntry = {"type": "text", "style": heading, "text": text} + self.block.append(config) + + def add_paragraph(self, text: str): + config: TextEntry = {"type": "text", "style": TextStyle.P, "text": text} + self.block.append(config) + + def add_textfield(self, text: str, key: str, *, max_length: int = 1000): + config: TextFieldEntry = { + "type": "textfield", + "text": text, + "max_length": max_length, + "key": key, + } + self.block.append(config) diff --git a/backend/app/controllers/pdf_wrapper/style_config.py b/backend/app/controllers/pdf_wrapper/style_config.py new file mode 100644 index 00000000..2e4bb8a6 --- /dev/null +++ b/backend/app/controllers/pdf_wrapper/style_config.py @@ -0,0 +1,41 @@ +from . import TextStyle, StyleDict +from reportlab.lib.colors import Color + +font: str = "Helvetica" +font_styles_config: dict[TextStyle, StyleDict] = { + TextStyle.H1: { + "font": (f"{font}-Bold", 22), + "height": 22, + "color": Color(0.15, 0.35, 0.56), # type: ignore + }, + TextStyle.H2: { + "font": (f"{font}-Bold", 18), + "height": 28, + "color": Color(0.15, 0.35, 0.56), # type: ignore + }, + TextStyle.H3: { + "font": (f"{font}-Bold", 15), + "height": 23, + "color": Color(0.15, 0.35, 0.56), # type: ignore + }, + TextStyle.H4: { + "font": (f"{font}-Bold", 12), + "height": 18, + "color": Color(0.15, 0.35, 0.56), # type: ignore + }, + TextStyle.SUBTITLE: { + "font": (font, 12), + "height": 18, + "color": Color(0.5, 0.5, 0.5), # type: ignore + }, + TextStyle.P: { + "font": (font, 10), + "height": 16, + "color": Color(0, 0, 0), + }, + TextStyle.DEFAULT: { + "font": (font, 10), + "height": 13, + "color": Color(0, 0, 0), + }, +} diff --git a/backend/app/controllers/pdf_wrapper/types.py b/backend/app/controllers/pdf_wrapper/types.py new file mode 100644 index 00000000..673fb0f2 --- /dev/null +++ b/backend/app/controllers/pdf_wrapper/types.py @@ -0,0 +1,35 @@ +from enum import Enum +from typing import TypedDict, Literal, Tuple, Union +from reportlab.lib.colors import Color + + +class TextStyle(Enum): + H1 = "h1" + H2 = "h2" + H3 = "h3" + H4 = "h4" + SUBTITLE = "subtitle" + P = "p" + DEFAULT = "default" + + +class TextEntry(TypedDict): + type: Literal["text"] + text: str + style: TextStyle + + +class TextFieldEntry(TypedDict): + type: Literal["textfield"] + text: str + key: str + max_length: int + + +TextBlockConfig = list[Union[TextEntry, TextFieldEntry]] + + +class StyleDict(TypedDict): + font: Tuple[str, int] + height: int + color: Color diff --git a/backend/app/controllers/precomputed_values.py b/backend/app/controllers/precomputed_values.py new file mode 100644 index 00000000..6211cd80 --- /dev/null +++ b/backend/app/controllers/precomputed_values.py @@ -0,0 +1,55 @@ +from sqlalchemy.orm import Session +from app.repositories.precomputed_values import PreComputedValuesRepository +from app.schemas.misc import Language +from app import models, schemas +from sqlalchemy import and_, func, desc +from app.middleware.authorisation.schemas import State +from app.services.algoritme_version import db_list_to_python_list + + +def get_precomputed_values_by_lang( + db: Session, lang: Language +) -> list[schemas.HighlightedAlgorithmResponse]: + precomputed_values_repo = PreComputedValuesRepository(db) + return precomputed_values_repo.get_highlighted_values(lang) + + +def calc_highlighted_algorithms( + db: Session, language: Language +) -> list[schemas.HighlightedAlgorithmResponse]: + latest_upload_owner = ( + db.query( + models.Algoritme.organisation_id, + func.max(models.AlgoritmeVersion.create_dt).label("max_creation_dt"), + ) + .join( + models.Algoritme, + models.Algoritme.id == models.AlgoritmeVersion.algoritme_id, + ) + .filter( + models.AlgoritmeVersion.state == State.PUBLISHED, + models.AlgoritmeVersion.language == language, + ) + .group_by(models.Algoritme.organisation_id) + .subquery() + ) + + latest_algo_owner = ( + db.query(models.AlgoritmeVersion) + .join( + latest_upload_owner, + and_( + latest_upload_owner.c.max_creation_dt + == models.AlgoritmeVersion.create_dt + ), + ) + .filter(models.AlgoritmeVersion.language == language) + .order_by(desc(models.AlgoritmeVersion.create_dt)) + .limit(3) + .all() + ) + for n, _ in enumerate(latest_algo_owner): + latest_algo_owner[n] = db_list_to_python_list(latest_algo_owner[n]) + return [ + schemas.HighlightedAlgorithmResponse.from_orm(alg) for alg in latest_algo_owner + ] diff --git a/backend/app/controllers/smart_search.py b/backend/app/controllers/smart_search.py new file mode 100644 index 00000000..215c04fd --- /dev/null +++ b/backend/app/controllers/smart_search.py @@ -0,0 +1,243 @@ +from sqlalchemy.orm import Session +from sqlalchemy import and_, func, ColumnElement, cast, String, or_, not_ +from app import models, schemas, repositories +from app.middleware.authorisation.schemas import State +from app.schemas.misc import Language +from app.config.org_type_mapping import org_type_mapping + + +def prep_search_for_query(search_query_value: str) -> str: + adjusted_search_query = search_query_value.replace(" of ", " or ") + return adjusted_search_query + + +def get_basic_search_clause(searchtext: str, language: Language) -> ColumnElement[bool]: + return models.AlgoritmeVersion.vector.op("@@")( + func.websearch_to_tsquery(language.value, searchtext) + ) + + +def get_similarity_search_clause( + db: Session, searchtext: str, language: Language +) -> ColumnElement[bool]: + """ + Full text search query based on concatenation of a set of words from the 'words' table. + The words are selected if their similarity is greater then the threshold when compared to the search value. + """ + similarity_threshold = 0.4 + # similarity threshold is set to 0.4 because it returns good results + + subquery = ( + db.query( + func.websearch_to_tsquery( + language.value, func.string_agg(models.Words.word, " or ") + ) + ) + .filter(func.similarity(models.Words.word, searchtext) > similarity_threshold) + .as_scalar() + ) + return models.AlgoritmeVersion.vector.op("@@")(subquery) + + +def perform_smart_search( + algoritme_query: schemas.algoritme_version.AlgoritmeQuery, + db: Session, + language: Language, +) -> schemas.AlgoritmeQueryResponse: + algoritme_version_repo = repositories.AlgoritmeVersionRepository(db) + org_repo = repositories.OrganisationRepository(db) + + searchtext = prep_search_for_query(algoritme_query.searchtext) + organisation = algoritme_query.organisation + publicationcategory = algoritme_query.publicationcategory + organisationtype = algoritme_query.organisationtype + impact_assessment = algoritme_query.impact_assessment + sort_option = algoritme_query.sort_option + + limit = algoritme_query.limit + page = algoritme_query.page + offset = (page - 1) * limit + + selected_filters = [] + + query_filters = [] + query_filters.append(models.AlgoritmeVersion.state == State.PUBLISHED) + query_filters.append(models.AlgoritmeVersion.language == language) + + if organisationtype: + selected_filters.append( + schemas.SelectedFilters( + key="organisationtype", + value=org_type_mapping[language][organisationtype], + ) + ) + query_filters.append(models.Organisation.type == organisationtype) + + if publicationcategory: + selected_filters.append( + schemas.SelectedFilters( + key="publicationcategory", value=publicationcategory + ) + ) + query_filters.append( + models.AlgoritmeVersion.publication_category == publicationcategory + ) + + if organisation: + selected_filters.append( + schemas.SelectedFilters(key="organisation", value=organisation) + ) + query_filters.append(models.AlgoritmeVersion.organization == organisation) + + if impact_assessment: + selected_filters.append( + schemas.SelectedFilters(key="impact_assessment", value=impact_assessment) + ) + ia_query_filters = get_impact_assessment_filters( + impact_assessment, db, language + ) + query_filters.extend(ia_query_filters) + + if searchtext: + selected_filters.append( + schemas.SelectedFilters(key="searchtext", value=algoritme_query.searchtext) + ) + + query_filters.append(get_basic_search_clause(searchtext, language)) + + # Last entry is the search filter!! + filter_clause = and_(*query_filters) + + # Perform query + results = algoritme_version_repo.get_published_by_filter( + filter_clause, offset, limit + ) + if len(results) == 0 and searchtext: + # If a searchtext is given, we use similarity search in case of no results. Replace basic search on last entry: + query_filters[-1] = get_similarity_search_clause(db, searchtext, language) + filter_clause = and_(*query_filters) + results = algoritme_version_repo.get_published_by_filter( + filter_clause, offset, limit + ) + + # Get all the records -> limit set to a random big number. + total_count = len( + algoritme_version_repo.get_published_by_filter(filter_clause, 0, 99999999) + ) + ( + org_filterdata, + orgtype_filterdata, + ) = org_repo.get_aggregated_organisations_by_filter_by_lang( + filter_clause, + sort_opt=sort_option, + lang=language, + ) + publicationcategory_filterdata = ( + algoritme_version_repo.get_pubcat_by_filter_by_lang( + filter_clause, lang=language + ) + ) + impact_assessment_filterdata = ( + algoritme_version_repo.get_impact_assessments_by_filter_by_lang( + filter_clause, lang=language + ) + ) + + filter_data = schemas.AlgoritmeFilterData( + organisation=org_filterdata, + publicationcategory=publicationcategory_filterdata, + impact_assessment=impact_assessment_filterdata, + organisationtype=orgtype_filterdata, + ) + + return schemas.AlgoritmeQueryResponse( + results=results, + total_count=total_count, + filter_data=filter_data, + selected_filters=selected_filters, + ) + + +def get_impact_assessment_filters( + impact_assessment: schemas.ImpactAssessments, db: Session, language: Language +) -> list[ColumnElement[bool]]: + """ + Add filters for impact assessment to the query filters. + + Checks for the following pattern: ...{"": "<LINK>"}... + """ + ia_query_filters = [] + grouping_pattern_subfilter = cast( + models.AlgoritmeVersion.impacttoetsen_grouping, String + ).like("%{%:%}%") + if impact_assessment == schemas.ImpactAssessments.NONE: + ia_query_filters.append( + or_( + models.AlgoritmeVersion.impacttoetsen_grouping.is_(None), + not_(grouping_pattern_subfilter), + ) + ) + else: + ia_query_filters.append(grouping_pattern_subfilter) + + if impact_assessment in schemas.misc.standard_impact_assessment_titles: + ia_query_filters.append( + cast(models.AlgoritmeVersion.impacttoetsen_grouping, String).like( + f'%{{"%{impact_assessment}%' + ) + ) + + if impact_assessment == schemas.ImpactAssessments.OTHER: + overview_impacttoetsen = ( + db.query( + models.AlgoritmeVersion.impacttoetsen_grouping, + models.AlgoritmeVersion.algoritme_id, + ) + .filter( + models.AlgoritmeVersion.language == language, + models.AlgoritmeVersion.state == State.PUBLISHED, + ) + .all() + ) + matching_ids = [] + + for impacttoetsen_grouping, algoritme_id in overview_impacttoetsen: + if impacttoetsen_grouping is not None: + contains_standard = False + contains_custom = False + + for assessment in impacttoetsen_grouping: + title = assessment.get("title") + if title in schemas.misc.standard_impact_assessment_titles: + contains_standard = True + else: + contains_custom = True + if contains_custom and (not contains_standard or contains_standard): + matching_ids.append(algoritme_id) + + if matching_ids: + ia_query_filters.append( + models.AlgoritmeVersion.algoritme_id.in_(matching_ids) + ) + + return ia_query_filters + + +def perform_suggestion_search( + searchtext: str, db: Session, language: Language +) -> schemas.SearchSuggestionResponse: + algoritme_version_repo = repositories.AlgoritmeVersionRepository(db) + + query_filters = [] + query_filters.append(models.AlgoritmeVersion.state == State.PUBLISHED) + query_filters.append(models.AlgoritmeVersion.language == language) + + if searchtext: + query_filters.append(get_basic_search_clause(searchtext, language)) + + filter_clause = and_(*query_filters) + + results = algoritme_version_repo.get_published_by_filter(filter_clause) + results = [schemas.SearchSuggestionAlgorithms(**dict(result)) for result in results] + + return schemas.SearchSuggestionResponse(algorithms=results) diff --git a/backend/app/controllers/templates.py b/backend/app/controllers/templates.py new file mode 100644 index 00000000..661dd7f0 --- /dev/null +++ b/backend/app/controllers/templates.py @@ -0,0 +1,56 @@ +import os +import json +from pathlib import Path +from app import schemas +from functools import lru_cache + + +def get_supplier_names(standard_version: str) -> list[str]: + filenames = os.listdir(f"app/data/templates/{standard_version}") + return [filename[:-5] for filename in filenames] + + +@lru_cache(maxsize=3) +def get_supplier_templates( + supplier: str, standard_version: str +) -> list[schemas.AlgoritmeVersionTemplate]: + file_path = Path(f"app/data/templates/{standard_version}/{supplier}.json") + with open(file_path, "r") as filehandler: + json_obj = json.load(filehandler) + return [schemas.AlgoritmeVersionTemplate(**template) for template in json_obj] + + +@lru_cache(maxsize=1) +def get_template_summary(standard_version: str) -> list[schemas.StandardSupplier]: + suppliers = get_supplier_names(standard_version) + + suppliers_summary: list[schemas.StandardSupplier] = [] + for supplier in suppliers: + templates = get_supplier_templates(supplier, standard_version) + + templates_summary = [] + for template in templates: + templates_summary.append( + schemas.TemplateSummary(name=template.name, id=template.id) + ) + + supplier_summary = schemas.StandardSupplier( + name=supplier, algorithm_descriptions=templates_summary + ) + suppliers_summary.append(supplier_summary) + return suppliers_summary + + +def get_template_by_id( + standard_version: str, id: str +) -> schemas.AlgoritmeVersionTemplate | None: + suppliers = get_supplier_names(standard_version) + + templates: list[schemas.AlgoritmeVersionTemplate] = [] + for supplier in suppliers: + templates.extend(get_supplier_templates(supplier, standard_version)) + + for template in templates: + print(template) + if id == template.id: + return template diff --git a/backend/app/controllers/user.py b/backend/app/controllers/user.py new file mode 100644 index 00000000..29ab0936 --- /dev/null +++ b/backend/app/controllers/user.py @@ -0,0 +1,99 @@ +from sqlalchemy.orm import Session +from app.middleware.authorisation.schemas import Role +from app.repositories.organisation_details import OrganisationDetailsRepository +from app.schemas.misc import Language +from app.schemas.user import GetUsersResponse, User +from app.services.keycloak.repository import KeycloakRepository + +from app.middleware import kc_settings +from app.services.keycloak.schemas import ( + KeycloakUser, + KeycloakUserFromRepo, + KeycloakUserNew, + KeycloakUserUpdate, +) + + +def get_user_from_keycloak_data(db: Session, keycloak_user: KeycloakUser) -> User: + org_details_repo = OrganisationDetailsRepository(db) + if Role.AllGroups in keycloak_user.roles: + orgs = org_details_repo.get_org_configs_by_lang(Language.NLD) + else: + orgs = org_details_repo.get_org_configs_by_org_list_by_lang( + keycloak_user.groups, Language.NLD + ) + return User(**keycloak_user.dict(), organisations=orgs) + + +def get_all_users( + db: Session, + limit: int, + skip: int, + q: str | None, + role: str | None = None, + org: str | None = None, +) -> GetUsersResponse: + kc_repo = KeycloakRepository(kc_settings) + keycloak_users = kc_repo.get_all(limit=limit, skip=skip, role=role, group=org, q=q) + users = get_from_keycloak_users(db, keycloak_users) + count = kc_repo.get_count(limit=limit, skip=skip, role=role, group=org, q=q) + + return GetUsersResponse(users=users, count=count) + + +def get_from_keycloak_users( + db: Session, keycloak_users: list[KeycloakUserFromRepo] +) -> list[User]: + # Collects all the group names so only 1 DB call is needed. + all_group_codes = [] + for user in keycloak_users: + all_group_codes.extend(user.groups) + all_group_codes = list(set(all_group_codes)) + + org_repo = OrganisationDetailsRepository(db) + includes_all_groups_user = any(Role.AllGroups in u.roles for u in keycloak_users) + if includes_all_groups_user: + all_groups = org_repo.get_org_configs_by_lang(Language.NLD) + else: + all_groups = org_repo.get_org_configs_by_org_list_by_lang( + all_group_codes, Language.NLD + ) + + users: list[User] = [] + for user in keycloak_users: + groups_for_this_user = [g for g in all_groups if g.code in user.groups] + users.append(User(**user.dict(), organisations=groups_for_this_user)) + return users + + +def get_from_keycloak_user(db: Session, keycloak_user: KeycloakUser) -> User: + if Role.AllGroups in keycloak_user.roles: + groups = OrganisationDetailsRepository(db).get_org_configs_by_lang(Language.NLD) + else: + groups = OrganisationDetailsRepository(db).get_org_configs_by_org_list_by_lang( + keycloak_user.groups, Language.NLD + ) + return User(**keycloak_user.dict(), organisations=groups) + + +def create_user(db: Session, body: KeycloakUserNew) -> User: + kc_repo = KeycloakRepository(kc_settings) + new_keycloak_user = kc_repo.create_user(body) + return get_user_from_keycloak_data(db, new_keycloak_user) + + +def get_user(db: Session, user_id: str) -> User: + kc_repo = KeycloakRepository(kc_settings) + keycloak_user = kc_repo.get_user(user_id) + return get_user_from_keycloak_data(db, keycloak_user) + + +def update_user(db: Session, user_id: str, body: KeycloakUserUpdate) -> User: + kc_repo = KeycloakRepository(kc_settings) + keycloak_user = kc_repo.update_user(user_id, body) + return get_user_from_keycloak_data(db, keycloak_user) + + +def delete_user(user_id: str) -> None: + kc_repo = KeycloakRepository(kc_settings) + kc_repo.delete_user(user_id) diff --git a/backend/app/controllers/word_download.py b/backend/app/controllers/word_download.py new file mode 100644 index 00000000..91b7f660 --- /dev/null +++ b/backend/app/controllers/word_download.py @@ -0,0 +1,224 @@ +import datetime +import io +from typing import Tuple +from docx import Document, document +from fastapi.responses import StreamingResponse +from fastapi import HTTPException, status +from sqlalchemy.orm import Session +from app import schemas +from app.schemas.config.types import SchemaProperty +from app.config.layouts.types import LayoutJson +from app.schemas.misc import Language +from app.util.config_load import get_ttl_hash, collect_structure_data +from app.repositories import AlgoritmeVersionRepository + + +def get_org_data(db: Session, org_name: str) -> list[schemas.AlgoritmeVersionDownload]: + algoritme_version_repository = AlgoritmeVersionRepository(db) + algorithms = algoritme_version_repository.get_latest_by_org_by_lang( + org_name, Language.NLD + ) + return [schemas.AlgoritmeVersionDownload(**row.dict()) for row in algorithms] + + +def get_algo_data(db: Session, lars: str) -> schemas.AlgoritmeVersionDownload | None: + algoritme_version_repository = AlgoritmeVersionRepository(db) + algorithm = algoritme_version_repository.get_latest_by_lars_by_lang( + lars, Language.NLD + ) + if algorithm: + return schemas.AlgoritmeVersionDownload(**algorithm.dict()) + + +def insert_rich_text_field(doc, field: str): + from bs4 import BeautifulSoup, Tag + + soup = BeautifulSoup(field, "html.parser") + current_key_type = None + + for tag in soup.descendants: + if isinstance(tag, Tag): + if tag.name in ["div", "p"]: + if tag.find("p"): + continue + else: + text = tag.get_text(strip=True) + if text: + doc.add_paragraph(text) + elif tag.name == "ul": + current_key_type = "List Bullet" + elif tag.name == "ol": + current_key_type = "List Number" + elif tag.name == "li": + text = tag.get_text(strip=True) + if current_key_type: + doc.add_paragraph(text, style=current_key_type) + elif tag.name == "br": + doc.add_paragraph("") + + return doc + + +def insert_list_field(doc: document.Document, field: list[str] | list[dict]): + if type(field[0]) == str: + if len(field) > 1: + for bullet in field: + doc.add_paragraph(str(bullet), style="List Bullet") + else: + doc.add_paragraph(field[0]) + elif type(field[0]) == dict: + if len(field) > 1: + for bullet in field: + stringified_dict = ", ".join(filter(None, dict(bullet).values())) # type: ignore + doc.add_paragraph(stringified_dict, style="List Bullet") + else: + stringified_dict = ", ".join(filter(None, field[0].values())) + doc.add_paragraph(stringified_dict) + return doc + + +def insert_styled_field( + doc: document.Document, + field: str | list[str] | list[dict], + *, + is_rich_text: bool = False, +): + if type(field) == str: + if is_rich_text: + return insert_rich_text_field(doc, field) + doc.add_paragraph(field) + return doc + elif type(field) == list: + return insert_list_field(doc, field) + else: + return doc + + +def build_description( + doc: document.Document, + algorithm: schemas.AlgoritmeVersionDownload, + layout: LayoutJson, + schema: dict[str, SchemaProperty], +): + doc.add_heading(f"{algorithm.name} ({algorithm.lars})", 1) + p = doc.add_paragraph("Publicatiestandaard: ") + p.add_run(f"{algorithm.standard_version}").bold = True + + for tab_group in layout.tabsGrouping: + doc.add_heading(f"{tab_group.label}", 2) + + field_list = tab_group.rows + for field in field_list: + doc.add_heading(f"{schema[field].title}", 3) + + field_value = getattr(algorithm, field) + is_rich_text = schema[field].allowed_html_tags is not None + if field_value is None: + field_value = "" + is_rich_text = False + + doc = insert_styled_field(doc, field_value, is_rich_text=is_rich_text) + + return doc + + +def get_all_algorithm_doc(db: Session, org_name: str): + data = get_org_data(db, org_name) + if len(data) == 0: + return None, None + + standards, layouts = collect_structure_data(get_ttl_hash()) + organisation = data[0].organization + timestamp = datetime.datetime.now().strftime("%Y-%m-%d") + + doc = Document() + doc.add_heading("Algoritmebeschrijvingen", 0) + doc.add_paragraph(f"Algoritmes van {organisation}", style="Subtitle") + doc.add_paragraph( + f"""Dit document bevat algoritmebeschrijvingen van {organisation}, uitgedraaid op {timestamp}. \ +Gebruik het om algoritmebeschrijvingen intern te reviewen en wijzigingen te accorderen voor publicatie \ +op het algoritmeregister van de Nederlandse overheid. Heeft u vragen of heeft u hulp nodig? Neem via mail \ +contact op met: algoritmeregister@minbzk.nl.""" + ) + + for algorithm in data: + doc.add_page_break() + if not algorithm.standard_version: + raise HTTPException( + status_code=status.HTTP_409_CONFLICT, detail="STANDARD_NOT_KNOWN" + ) + layout = layouts[algorithm.standard_version] + schema = standards[algorithm.standard_version] + + doc = build_description(doc, algorithm, layout, schema) + + stream = io.BytesIO() + doc.save(stream) + stream.seek(0) + + filename = f"Algoritmebeschrijvingen van {organisation} op {timestamp}.docx" + return stream, filename + + +def get_one_algorithm_doc(db, lars: str) -> Tuple[io.BytesIO | None, str | None]: + algorithm = get_algo_data(db, lars) + if algorithm is None: + return None, None + + standards, layouts = collect_structure_data(get_ttl_hash()) + organisation = algorithm.organization + name = algorithm.name + timestamp = datetime.datetime.now().strftime("%Y-%m-%d") + + doc: document.Document = Document() + doc.add_heading("Algoritmebeschrijving", 0) + doc.add_paragraph(f"Algoritme: {name} van {organisation}", style="Subtitle") + doc.add_paragraph( + f"""Dit document bevat de algoritmebeschrijving: {name} van {organisation}, uitgedraaid op {timestamp}. \ +Gebruik het om algoritmebeschrijvingen intern te reviewen en wijzigingen te accorderen voor publicatie \ +op het algoritmeregister van de Nederlandse overheid. Heeft u vragen of heeft u hulp nodig? Neem via mail \ +contact op met: algoritmeregister@minbzk.nl.""" + ) + + if not algorithm.standard_version: + raise HTTPException( + status_code=status.HTTP_409_CONFLICT, detail="STANDARD_NOT_KNOWN" + ) + layout = layouts[algorithm.standard_version] + schema = standards[algorithm.standard_version] + + doc = build_description(doc, algorithm, layout, schema) + + stream = io.BytesIO() + doc.save(stream) + stream.seek(0) + + filename = f"{name.encode('utf-8')} {timestamp}.docx" + return stream, filename + + +def generate_word_download( + db: Session, *, org_name: str | None = None, lars: str | None = None +): + if lars: + stream, filename = get_one_algorithm_doc(db, lars) + elif org_name: + stream, filename = get_all_algorithm_doc(db, org_name) + else: + raise ValueError("Please enter one of two identifiers: lars | org_name") + + if stream is None: + raise HTTPException( + status_code=status.HTTP_400_BAD_REQUEST, + detail="No algorithm descriptions found. Unable to make document", + ) + media_type = ( + "application/vnd.openxmlformats-officedocument.wordprocessingml.document" + ) + response = StreamingResponse(io.BytesIO(stream.read()), media_type=media_type) + response.headers["Content-Disposition"] = f'attachment; filename="{filename}"' + return response + + +if __name__ == "__main__": + collect_structure_data() diff --git a/backend/app/data/default/supporting_text.json b/backend/app/data/default/supporting_text.json new file mode 100644 index 00000000..f939f732 --- /dev/null +++ b/backend/app/data/default/supporting_text.json @@ -0,0 +1,394 @@ +{ + "en": { + "Footer: Contact": { + "content": "<h1>Contact us</h1>\n<p>This website is under development. Do you have questions about the Algorithm Register? Or are you a (government) professional and do you or your organization want <a href=\"meedoen\">to participate in the further development</a> of the Algorithm Register? Look at the information on: <a href=\"over\">About the Algorithm Register</a> and the <a href=\"vragen\">Frequently Asked Questions</a>; For questions, please contact: <a href=\"mailto:algoritmeregister@minbzk.nl\">algorithmregister@minbzk.nl</a>.</p>", + "pageTitle": "" + }, + "Footer: Vragen": { + "question14": "How do I stay informed about the development of the Algorithm Register?", + "question15": "Is the Dutch Algorithm Register also the register as described in the European AI Act?", + "question16": "Will there be legislation regarding the Algorithm Register?", + "question17": "Is your question not listed?", + "group1": "A General information", + "group3": "C Complaints or objections", + "group5": "E Legislation and the European AI Act", + "content": "<h1>Frequently asked questions</h1>\n<h2>1. What is the Algorithm Register?</h2>\n<p class=\"mb-4\">This website provides information about the algorithms used by the Dutch government. This makes the information visible, traceable and accessible to citizens and their representatives, the media and supervisors.</p>\n<h2>2. What is the aim of this website?</h2>\n<p class=\"mb-4\">The aim is to make information about algorithms centrally accessible for everyone. That allows everyone to see in which impactful processes these algorithms are used. The information on this website provides the ability to oversee algorithms. For example, discrimination or unlawfulness can be exposed, and whether the algorithm provides desirable outcomes can be checked. When someone does not agree with the use of algorithms, the Algorithm Register indicates how objections can be made.</p>\n<h2>3. What are algorithms?</h2>\n<p class=\"mb-4\">An algorithm is a set of rules and instructions executed by a computer. Algorithms help, for example, to analyse problems, but also to make decisions. This allows the government to combine and analyse large amounts of data (source: Algemene Rekenkamer).</p>\n<p class=\"mb-4\">Do you want to know more about algorithms? Find more information on <a href=\"https://www.mediawijsheid.nl/algoritmes/\" target=\"_blank\" rel=\"noopener\"> Mediawijsheid<img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link to external page\"></a> or take the (free) <a href=\"https://ethiek.ai-cursus.nl/home\" target=\"_blank\" rel=\"noopener\">National AI-course<img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link to external page\"></a>.</p>\n<h2>4. I have questions about an algorithm on this site, who do I contact?</h2>\n<p class=\"mb-4\">If you have a question about a specific algorithm, please contact the ‘owner’ of the algorithm. Contact details can be found in the description of the algorithm.</p>\n<p class=\"mb-4\">For other questions please email: <a href=\"mailto:algoritmeregister@minbzk.nl\"> algoritmeregister@minbzk.nl</a>.</p>\n<h2>5. Are all algorithms used by the government available on this website?</h2>\n<p class=\"mb-4\">A leading group of government organisations is currently making their algorithms available via this website. In 2023, even more government organisations will publish their algorithms in the Algorithm Register. For the time being, the number of algorithms on this website will continue to grow.</p>\n<p class=\"mb-4\">In the future, it will become a legal requirement to make algorithms publicly available. As a result, most relevant algorithms will become available in the Algorithm Register. There will be justified exceptions to this. For example, certain algorithms used for investigation, law enforcement, defense or intelligence gathering. The exact framework is still being finalized.</p>\n<h2>6. Why do some algorithms contain more information than others?</h2>\n<p class=\"mb-4\">Currently, the Algorithm Register is completed voluntarily by government organisations. Not every organisation has chosen to publish all information. Ultimately, it will be legally defined which information is mandatory and which information is optional.</p>\n<h2>7. Who develops and maintains the Algorithm Register?</h2>\n<p class=\"mb-4\">The development of the Algorithm Register was started by the Public Control of Algorithms Consortium. In it, government organisations worked on policy instruments for the responsible use of algorithms. One of the outcomes of that work was research into the creation of a register of algorithms. The Ministry of the Interior and Kingdom Relations has built on knowledge gained from this research to create this Algorithm Register. The ministry is working with ICTU to develop this website. All organisations that have currently supplied one or more algorithms to the Algorithm Register can be found under the heading ‘Algorithms’.</p>\n<h2>8. How do algorithm registers of individual government organisations relate to this website?</h2>\n<p class=\"mb-4\">The Algorithm Register is the central location for all government algorithms. Some government organisations also have their own algorithm register. This gives organisations the opportunity to provide more information or to provide it in a different way. In the current version of this website, information was entered manually. In 2023, the possibility of an automatic upload will be investigated.</p>", + "pageTitle": "Frequently Asked Questions", + "question1": "What is the Algorithm Register?", + "answer1": "<p>The Algorithm Register contains information about algorithms used by the government. This information is thus findable and available to citizens, their representatives, the media and regulators.</p>", + "question2": "What does the government use algorithms for?", + "answer2": "<p>Algorithms can help to efficiently process large amounts of data and provide better insights. Algorithms help to improve that service and save time and money. The government uses algorithms to analyze data, make decisions and automate tasks. Examples of algorithms used by the government are traffic monitoring and online applications for government products.</p>", + "question3": "Which algorithms belong in the algorithm register?", + "answer3": "<p>In any case, this register should include:</p>\n<ul>\n<li>The algorithms that are designated as high risk by the proposed European legislation (the AI Act). These are algorithms that have elements of autonomy. In Dutch we usually call these (partly) self-learning algorithms. The algorithm must also be operational in one of the application areas of Annex III. Think of areas such as biometrics, critical infrastructure and employment. <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">More about the risk classification in the AI Act</a>.</li>\n<li>Algorithms that have a direct impact on those involved. For example, they contribute to a decision that affects someone's rights, someone's legal status or their rights under a contract. For example: imposing a fine or granting or refusing a subsidy.</li>\n</ul>\n<p>In addition, there are a number of other reasons to fully publish algorithms. For example, when algorithms receive a lot of social attention. There are also reasons not to publish an algorithm in full, for example when an algorithm is used for detection. Ideally, the government will then publish the part of the information about the algorithm that can be published.</p>", + "question4": "Which organizations publish their algorithms in the Algorithm Register?", + "answer4": "<p>Publication is currently still voluntary for governments. The Algorithm Register therefore contains information about algorithms of government organizations that have chosen this themselves. New organizations are added regularly.</p>\n<p>In the future, publication of algorithms <a href=\"{localised_url}/footer/vragen#question3\">that belong in this register</a> will be mandatory for all government organisations; so the national government, provinces, municipalities, water boards. It is not yet clear whether other public sector organizations such as healthcare and education will also fall under this obligation. This will become clearer on the way to legislation in 2025.</p>", + "question5": "What about my privacy when using algorithms?", + "answer5": "<p>Some algorithms use personal data for their task. Personal data is data that contains information that can be used to identify an individual, such as name, address, date of birth or financial information. There are many requirements for the use of personal data, including by the government. Many requirements are laid down in legislation, such as the GDPR. The Algorithm Register contains information about which data sources the algorithm uses. And about which tests were performed before the algorithm was put into use, for example a privacy test (DPIA). The <a href=\"https://www.autoriteitpersoonsgegevens.nl/\" target=\"_blank\">Dutch Data Protection Authority</a> monitors compliance with privacy requirements and, since 1 January, also <a href=\"https://www.autoriteitpersoonsgegevens.nl/actueel/algoritmetoezicht-ap-van-start\" target=\"_blank\">monitors algorithms.</a></p>", + "question6": "How many algorithms does the government use and how many are included in this register?", + "answer6": "<p>We are at the beginning of a process in which the government is actively making algorithms public. The number of algorithms in the register is not yet the total number of algorithms used by the government. To estimate the value of that number, the following question is relevant: how many algorithms does the government actually use? And how many of them are impactful or high-risk according to the AI Act? At the moment there is little insight into the total number of algorithms used by the government. It is therefore also unknown how many algorithms ultimately should end up in the register. Over the years, more and more insight will be gained into the number and nature of government algorithms.</p>", + "question7": "What information about algorithms can I get from the Algorithm Register?", + "answer7": "<p>The <a href=\"https://algoritmes.pleio.nl/wiki/view/543701c4-318c-4186-b144-de72feca1065/handleiding-algoritmeregister-publicatiestandaard\" target=\"_blank\">Publication Standard</a> describes the information needed to describe an Algorithm. This Publication Standard is constantly being improved so that it is more in line with practice, in consultation with governments, stakeholders and experts. The fields from the publication standard are therefore not yet mandatory. The result is that for some algorithms in the register, not all fields have been entered yet. Government organizations are encouraged to publish as much information as possible about their algorithms.</p>", + "question8": "How do I find an algorithm in this registry?", + "question9": "What do I do if the algorithm I am looking for is not listed?", + "answer9": "<p>Then contact the organization that uses the algorithm and ask for an explanation of the decision or process. For most organizations, the contact details are in the description of the algorithm. Can't get out of there? Please contact <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a> and we will refer you specifically.</p>", + "question10": "What do I do if the information about the algorithm is unclear or information is missing?", + "answer10": "<p>Questions about a description or missing information should be directed to the organization that published the algorithm. For most algorithms in the registry, the contact information is in the description. Can't get out of there? Please contact <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a> and we will refer you directly.</p>", + "question11": "Where can I file a complaint or appeal against a government algorithm in this registry?", + "answer11": "<p>You can lodge an objection and a complaint with the organization that uses the algorithm. (You can read how to do that in this answer [link FAQ 10]. That is always the first step. If you cannot find a solution together, you can get help. For example, from the Nationale Ombudsman. More about what the <a href=\"https://www.nationaleombudsman.nl/over-de-nationale-ombudsman\" target=\"_blank\">Nationale Ombudsman</a> can do Directly to <a href=\"https://www.nationaleombudsman.nl/klacht-indienen/uw-klacht\" target=\"_blank\">the complaint form</a> .</p>", + "question12": "Can I opt out of using algorithms?", + "answer12": "<p>You cannot opt out of using algorithms. You can, however, find information in this register about how the algorithm works and what it does. And you can <a href=\"#question10\">ask for an explanation</a> if you do not understand an algorithm's decision or if you think it is incorrect. You can <a href=\"#question11\">object</a> if you believe that the algorithm has made mistakes that have disadvantaged you and/or others.</p>", + "answer15": "<p>The Dutch Algorithm Register really stems from a Dutch wish, based on a number of reports, parliamentary motions and advice to create a register for more transparency from the Dutch government.</p>\n<p>The <a href=\"https://www.consilium.europa.eu/en/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">draft AI Act</a> will probably require that high-risk AI algorithms be documented. These algorithms will eventually end up in this Algorithm Register. In order to comply with the requirements of the law, the publication standard will eventually be adjusted. There are also differences: not all algorithms in the Algorithm Register are high-risk and/or AI algorithms. There are also non-self-learning algorithms and/or algorithms with a lower risk character in this register. That remains the case. The register does seek a connection with the AI Act, so that it becomes easy for governments listed in the Dutch register to also comply with the obligations under the AI Act. Here we also have to wait for what the European Database will look like. It depends on the European Commission, the Dutch government is discussing this.</p>", + "answer16": "<p>The need for additional legislation is being investigated. This is being considered in conjunction with EU legislation. This was announced in the <a href=\"https://www.rijksoverheid.nl/documenten/kamerstukken/2022/12/21/kamerbrief-over-het-algoritmeregister\" target=\"_blank\">letter to</a> the House of Representatives of December 2022. This will certainly last until 2025.</p>", + "question13": "How do I participate as a government organization?", + "answer13": "<p>Join us and publish the information about your organization's algorithms. Also think about the further development of this Algorithm Register. You can find this information on the ' <a href=\"meedoen\">Getting involved</a> ' page.</p>", + "answer17": "<p>Ask your question via <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a>.</p>", + "group2": "B Using the Algorithm Register", + "group4": "D Participate | to stay informed", + "group6": "F Other question", + "answer8": "<p>There are two options. You can first search by organisation, word or theme. For example: Municipality X, Parking or Social Security. You will then receive an overview of the algorithms published by this municipality, with this word in the descriptions, or in this theme. A second option is to 'browse' through <a href=\"https://test.algoritmeoverheid.nl/algoritme\">all the algorithms in the registry</a> .</p>", + "answer14": "<ul>\n<li>We regularly organize open meetings. View the <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">agenda</a> on the Pleio page on algorithms.</li>\n<li>On <a href=\"http://algoritmes.pleio.nl/\" target=\"_blank\">algoritmes.pleio.nl</a> you will find news, the agenda and a number of communities where you can stay informed about a certain subject and where you can talk.</li>\n<li>Subscribe to the newsletter and regularly receive an update of the algorithm news in your mailbox. <a href=\"https://algoritmeregister.email-provider.eu/memberforms/subscribe/standalone/form/?a=1pjwwoyxrs&l=vdfr1sbovb\" target=\"_blank\">Sign In.</a></li>\n<li>algoritmes.overheid.nl is developed with open source software. The code and, for example, the publication standard, can be found on <a href=\"https://github.com/MinBZK/Algoritmeregister\" target=\"_blank\">the GitHub page of the Ministry of the Interior and Kingdom Relations</a>.</li>\n</ul>" + }, + "Footer: Privacyverklaring": { + "content": "<h1>Privacy</h1>\n<p class=\"mb-2\">This website uses analytical cookies only. Cookies are small text files that websites store on your computer. This makes it possible to recognize your computer during your visit. This information helps the development team to improve the site. Analytical cookies answer the following questions:</p>\n<ul class=\"ml-4\" type=\"disc\">\n<li>Is this a new visitor or has the visitor visited the site before</li>\n<li>Which pages were consulted during the visit</li>\n<li>Which site was the visitor directed from</li>\n<li>Did the visitor immediately leave the site ('bouncing').</li>\n</ul>\n<p class=\"mb-4\">The cookies are not used to create a profile or to follow you further. This website does not place third-party cookies.</p>\n<h2>Data received via email</h2>\n<p class=\"mb-4\">Personal information that becomes known to the Algorithm Register by email is treated confidentially by the team. Such personal data will only be kept by the team while they work on a response to your message. Once the question is answered or if no question is asked, the team will only record the question itself and the answer to that question. Upon request, the question and answer can also be deleted.</p>", + "pageTitle": "Privacy" + }, + "Footer: Toegankelijkheid": { + "content": "<h1>Accessibility</h1>\n<p class=\"mb-4\">During the development of this website, anything deemed beneficial and any requirements to make it accessible were immediately incorporated. The development team has been trained in digital accessibility. An independent accessibility expert regularly provides advise.</p>\n<p class=\"mb-4\">This website complies with WCAG 2.1 level AA, the Web Content Accessibility Guidelines.</p>\n<p class=\"mb-4\">This means that the website can be used by anyone including people with a disability.</p>\n<p class=\"mb-4\">For more information see:</p>\n<ul class=\"ml-4\" type=\"disc\">\n<li><a href=\"https://www.toegankelijkheidsverklaring.nl/register?w=algoritmes\" target=\"_blank\" rel=\"noopener\"> Registry of accessibility statements of the Dutch government<img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link to external page\"></a>.</li>\n<li><a href=\"https://www.toegankelijkheidscertificaat.nl/algoritmes.overheid.nl/\" target=\"_blank\" rel=\"noopener\"> Certificate of Accessibility <img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link to external page\"></a>.</li>\n</ul>", + "pageTitle": "Accessibility" + }, + "Footer: Webarchief": { + "content": "<h1>Web archive</h1>\n<p>Websites are an important source of information for citizens, companies and governments. This also applies to previous versions of websites. They may contain information that is still relevant and may confer rights. By archiving websites, they remain permanently accessible: they remain available for reviewing public information. This is mandatory for all government websites.</p>\n<p>These versions can be found in the <a href=\"https://sitearchief.nl/#archive/\" target=\"_blank\"> web archive</a> (Dutch only).</p>\n<p>The overview shows the archives of all mandatory participants. Click on an archive, select a date from the past and the website will adjust its content to what was current at that time. You can go back as far as January 25, 2023.</p>\n<p>Want to learn more? <a href=\"https://www.nationaalarchief.nl/archiveren/kennisbank/Richtlijn-Archiveren-Overheidswebsites/\" target=\"_blank\"> Check out the Guidelines for Archiving Government Websites</a>.</p >", + "pageTitle": "Webarchive" + }, + "Footer: Over": { + "content": "<h1>About the Algorithm Register</h1>\n<p>The government wants the government to use algorithms responsibly. People must be able to trust that algorithms comply with society's values and norms. And there must be an explanation of how algorithms work. The government does this by checking algorithms before use for how they work and for possible discrimination and arbitrariness. When the government is open about algorithms and their application, citizens, organizations and media can follow it critically and check whether it follows the law and the rules.</p>\n<h2>Responsible algorithm use</h2>\n<p>The following processes, among others, contribute to responsible algorithm use:</p>\n<ol>\n<li>The Algorithm Register helps to make algorithms findable, to explain them better and to make their application and results understandable.</li>\n<li>The Algorithm Supervisor (the Dutch Data Protection Authority) coordinates the control of algorithms: do the government's algorithms comply with all the rules that apply to them? <a href=\"https://www.autoriteitpersoonsgegevens.nl/actueel/algoritmetoezicht-ap-van-start\" target=\"_blank\">Learn more about the regulator</a> .</li>\n<li>The Ministry of the Interior and Kingdom Relations is working on the <a href=\"https://algoritmes.pleio.nl/cms/view/3877b524-e174-40c6-bcac-f3db875867e1/implementatiekader\" target=\"_blank\">'Use of Algorithms' Implementation Framework</a> . This makes it clear to governments what requirements apply to algorithms and how they can ensure that their algorithms can meet those requirements.</li>\n<li>Legislation: there will be a legal framework for the transparency of algorithms. This was announced in the <a href=\"https://www.rijksoverheid.nl/documenten/kamerstukken/2022/12/21/kamerbrief-over-het-algoritmeregister\" target=\"_blank\">letter to parliament dated December 2022</a> .</li>\n</ol>\n<h2>Open development</h2>\n<p>The first version of the Algorithm Register was launched in December 2022. This forms the basis for further development. Because we put the solution into practice, we can gain knowledge and experience. We are developing the register openly, together with experts, (potential) users and stakeholders.</p>\n<p>Do you want <a href=\"meedoen\">to contribute to that</a> ?</p>\n<h2>More and more algorithms</h2>\n<p>The Algorithm Register is not yet complete. Providing information about algorithms is not yet mandatory for government organizations. That obligation will come. Before then, more and more government organizations publish algorithms in the register of their own accord. Because they want to be open and transparent about their processes and the use of algorithms.</p>\n<p>Read, for example <a href=\"https://algoritmes.pleio.nl/news/view/a830d9ff-b026-4c30-8f62-51d1a89f87bd/amersfoort-heeft-primeur-publicatie-algoritme-via-nieuw-webformulier\" target=\"_blank\">, the story of the municipality of Amersfoort</a> and <a href=\"https://algoritmes.pleio.nl/news/view/28f9200f-f1ca-4d6a-adaf-8cd08612544e/odnzkg-publiceert-algoritmes-openheid-en-transparantie-als-kernwaarden\" target=\"_blank\">the North Sea Canal Area Environment Agency</a> .</p>", + "pageTitle": "" + }, + "Footer: Meedoen": { + "pageTitle": "Join", + "content": "<h1>Join</h1>\n<p>You can participate if you <a href=\"meedoen#overheden\">work for the government</a> and if you <a href=\"meedoen#geinteresseerd\">do not work for the government</a> .</p>\n<h2 id=\"overheden\">Governments: participate and think along</h2>\n<p>More and more governments are participating and are publishing information about their high-impact algorithms and high-risk algorithms in accordance with the forthcoming <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">European AI Act in this government Algorithm Register.</a></p>\n<p>The starting point is that governments themselves are responsible for drawing up and managing their algorithms in the Algorithm Register. The Algorithm Register supports this with help, guidelines, tools and a publication standard.</p>\n<h3>Help and handouts</h3>\n<ol>\n<li>Does your organization want to participate and publish the algorithms you use? You can read more information about this at algorithms.pleio.nl, for example in the <a href=\"https://algoritmes.pleio.nl/wiki/view/9719101e-b82e-4043-8837-ecdacded24c2/handreiking-algoritmeregister\" target=\"_blank\">guide 'Getting started with the algorithm register'</a> .</li>\n<li>You can find the planning and background information on algorithms.pleio.nl. You will also find stories from organizations about how and why they are connected to the Algorithm Register. For example, from <a href=\"https://algoritmes.pleio.nl/news/view/a830d9ff-b026-4c30-8f62-51d1a89f87bd/amersfoort-heeft-primeur-publicatie-algoritme-via-nieuw-webformulier\" target=\"_blank\">the municipality of Amersfoort</a> and <a href=\"https://algoritmes.pleio.nl/news/view/28f9200f-f1ca-4d6a-adaf-8cd08612544e/odnzkg-publiceert-algoritmes-openheid-en-transparantie-als-kernwaarden\" target=\"_blank\">the NZKG Environmental Service</a> .</li>\n<li><a href=\"https://algoritmes.pleio.nl/wiki/view/543701c4-318c-4186-b144-de72feca1065/handleiding-algoritmeregister-publicatiestandaard\" target=\"_blank\">Have a look at the publication standard</a> – what information do you provide if you want to publish an algorithm? This standard is still under development.</li>\n<li>You can also contact us for help at <a href=\"mailto:algoritmeregister@minbzk.nl\">algorithmregister@minbzk.nl</a> .</li>\n</ol>\n<h3>Tools: easy self-publishing</h3>\n<ol>\n<li>You can submit with <a href=\"https://algoritmes.pleio.nl/wiki/view/b22c2b86-ad44-458d-8c2b-b8ee99bcc077/account-aanmaken-en-gebruik-maken-van-het-algoritmeregister\" target=\"_blank\">an online form</a> or automated via an <a href=\"https://algoritmes.pleio.nl/wiki/view/a7b22f88-9e7d-4198-89d6-dc333c09e2e7/handleiding-api-algoritmeregister\" target=\"_blank\">API.</a></li>\n<li>Every quarter we showcase the new tools of the application in public demos. In between you stay informed in the sprint reviews. <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">View the agenda for this</a> .</li>\n</ol>\n<h2 id=\"geinteresseerd\">Interested? Stay informed and join the conversation</h2>\n<p>We are further developing the Algorithm Register, the tools and standards together with stakeholders. Do you not work for the government and do you like to talk and think along? This can be done in the following ways.</p>\n<ol>\n<li>Join the <a href=\"https://algoritmes.pleio.nl\" target=\"_blank\">community</a> on the Pleio platform. <a href=\"https://account.pleio.nl/register/\" target=\"_blank\">Create an account for this</a> .</li>\n<li>The registry software is open source. <a href=\"https://github.com/MinBZK/Algoritmeregister\" target=\"_blank\">View the code</a> on the GitHub of the Ministry of the Interior and Kingdom Relations.</li>\n<li>Public online Heartbeats and Meetups: there are regular meetings about the state of affairs (Heartbeats) and about specific themes (Meetups). View the <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">calendar</a> .</li>\n<li>(Potential) users, civil society organizations and experts contribute ideas about the further improvement of the Algorithm Register. So that the Algorithm Register will be as close as possible to what people need. For example, we conduct a lot of interviews for this purpose.</li>\n</ol>\n<div> </div>" + }, + "Footer: Over algoritmes": { + "pageTitle": "About algorithms", + "img_alt": "The collection 'all algorithms' contains both the subset 'Impactful algorithms' (with influence on people) and the subset 'AI'.", + "content": "<h1>About algorithms</h1>\n<div>\n<p><strong>An algorithm is a set of rules and instructions that a computer automatically follows when making calculations to solve a problem or answer a question (source: Netherlands Court of Audit). You come across algorithms everywhere, including in government.</strong></p>\n</div>\n<div>\n<p>Anyone who regularly does something on the internet comes across algorithms. Browsers, online banking, streaming services such as Netflix, and social media such as Facebook and Instagram; algorithms make it possible.</p>\n</div>\n<div>\n<p>The government also uses algorithms. Consider applying for a grant online. The algorithm then helps to immediately assess whether you meet the conditions or not. This is an example of an algorithm with clear decision rules and an unequivocal answer: yes or no?</p>\n</div>\n<div>\n<p>Other algorithms can recognize trends. For example, they show how crime develops in a city. This helps the police and municipality to take the right measures. Or they analyze (anonymous) health data, which can be used to make public health policy. Sometimes these algorithms are '(self) learning'. That is, they are trained to discover patterns themselves.</p>\n</div>\n<div>\n<h2 role=\"heading\">Impactful algorithms</h2>\n</div>\n<div>\n<p>Algorithms are not perfect. They sometimes make mistakes and there is a risk of prejudice, just like with humans. In the past, this has gone horribly wrong with automated government processes.</p>\n</div>\n<div>\n<p>The government is working on improvement. It does this, for example, by developing and using algorithms in a responsible manner. It is important that the government is transparent about the impactful algorithms it uses. So that citizens and stakeholders have insight into algorithms that influence their lives. For example, algorithms that have legal consequences for people, or that ensure that the government classifies people, are full of impact. For example, identifying people who are entitled to certain provisions, so that the government can proactively offer help.</p>\n</div>\n<div>\n<h2 role=\"heading\">Visible and controllable</h2>\n</div>\n<div>\n<p>The Algorithm Register wants to make the impactful algorithms used visible and verifiable. So that you as a citizen, advocate, expert or journalist can watch. If you have any questions or think something is wrong with an algorithm in this register, you can <a href=\"vragen#question10\">contact</a> the organization that manages the algorithm. Or: <a href=\"over\">Read more about the Algorithm Register</a>.</p>\n</div>\n<div>\n<h2 role=\"heading\">Relationship with AI</h2>\n</div>\n<div>\n<p>Artificial (or artificial) intelligence (AI) enables computers and machines to perform intelligent tasks. A well-known example of this is ChatGPT, a program that can answer the questions you ask it. Another example is AI that can help a doctor quickly detect different types of cancer.</p>\n</div>\n<div>\n<p>Algorithms are an important part of AI, as they help computers and machines perform these tasks with mathematical formulas and patterns. AI can therefore discover connections and analyze images, for example. The relationship between AI and algorithms is as follows: AI consists of algorithms, but not all algorithms are part of AI. For example, the aforementioned non-self-learning algorithms are not AI systems, but you will find them in this register.</p>\n</div>\n<div>\n<p>You can see this connection between AI and algorithms in the diagram below. Part of all algorithms – whether or not part of an AI system – are impactful.</p>\n</div>", + "content2": "<div>\n<p>That means two things. First: all AI consists of algorithms, but a small part of the algorithms are part of an AI system. Second, there is an overlap between impactful algorithms and AI. Some AI is impactful, other AI is not.</p>\n</div>\n<div>\n<h2 role=\"heading\">Legislation</h2>\n</div>\n<div>\n<p>The European Union is working on legislation specifically for AI: the AI Act. More about the <a href=\"vragen#question15\">relationship between the Algorithm Register and the upcoming AI Act</a>.</p>\n</div>" + }, + "footer": { + "text": "Please note: this website is under development. The information changes often. Do you want", + "textForLink": "to help?" + }, + "Home": { + "about": "<p><strong>About algorithms</strong></p>\n<p>An algorithm is a set of rules and instructions that a computer automatically follows when making calculations to solve a problem or answer a question. <a href=\"{localised_url}/footer/over-algoritmes\">More about algorithms</a>.</p>", + "collaborate": "<p><strong>Developing together</strong><br />More and more government organizations publish information about their algorithms in the Algorithm Register. The register is being developed further. <a href=\"{localised_url}/footer/meedoen\">Join us too</a>.</p>", + "aboutRegister": "<p><strong>About this register</strong></p>\n<p>More and more Dutch government organizations publish the algorithms they use in their work in this Algorithm Register. They focus on impactful algorithms and give the visitor insight into how these algorithms work. <a href=\"{localised_url}/footer/over\">More about this register</a>.</p>", + "highlightTextBottom": "<p>Or <a href=\"{localised_url}/algoritme\">browse all algorithms</a></p>", + "toDo": "<p><strong>What can I do here?</strong></p>\n<p>How can you use the Algorithm Register? And what do you do if the algorithm you are looking for is not yet in this registry? <a href=\"{localised_url}/footer/vragen\">View the frequently asked questions</a>.</p>", + "highlightTextTop": "View the 3 most recently changed algorithm descriptions" + }, + "Zoekbalk": { + "hint": "Search by word, theme or organisation" + }, + "Footer: Versie-informatie": { + "content": "<div>\n<h1>Version information</h1>\n</div>\n<div>\n<h2>October 2023</h2>\n</div>\n<div>\n<p>In this release, a number of important improvements have been made to The Algorithm Register for the user.</p>\n</div>\n<div>\n<p>1. The download options are extended.</p>\n</div>\n<div>\n<p>From now on, the algorithm descriptions can be downloaded in single form and in bulk. This can be done in Microsoft Word, in Microsoft Excel with sorting by publication standard, or as a PDF with editable fields.</p>\n<p>2. The flows for organizations have been simplified.</p>\n</div>\n<div>\n<p>This speeds up the process of publishing an algorithm description. A release can be responded to much faster. This now takes a few seconds, instead of 15 minutes.</p>\n</div>\n<div>\n<p>3. The database has been upgraded to the latest architecture.</p>\n</div>\n<div>\n<p>The availability of the website has been increased by the features of the new architecture. The user hardly notices this.</p>\n</div>\n<div>\n<p>4. Version control now shows who last edited the web forms.</p>\n</div>\n<div>\n<p>This allows editors to see who made previous changes. That means the traceability for organizations is increased. It also helps ICTU with looking back in time and allows them to better help organzations with their changes.</p>\n</div>\n<div>\n<p>5. The web form is now available at a new address.</p>\n</div>\n<div>\n<p>After a test period, the web form was moved to <a href=\"https://algoritmes.overheid.nl/webformulier\" target=\"_blank\">https://algoritmes.overheid.nl/webformulier</a>. This also applies to the delivery API, which has been moved to <a href=\"https://algoritmes.overheid.nl/aanleverapi\" target=\"_blank\">https://algoritmes.overheid.nl/aanleverapi</a>.</p>\n</div>", + "pageTitle": "Version information" + }, + "language-disclaimer": { + "closeText": "Close", + "content": "<p><strong>Please note: </strong>The algorithm descriptions in English have been automatically translated. Errors may have been introduced in this process. For the original descriptions, go to the Dutch version of the Algorithm Register.</p>", + "goToDutch": "Go to Dutch language" + } + }, + "nl": { + "Footer: Contact": { + "content": "<h1>Neem contact op</h1>\n<p>Deze website is in ontwikkeling. Heb je vragen over het Algoritmeregister? Of ben je een (overheids)professional en wil jij of je organisatie <a href=\"meedoen\">meedoen aan de verdere ontwikkeling</a> van het Algoritmeregister? Kijk naar de informatie op: <a href=\"over\">Over het Algoritmeregister</a> en de <a href=\"vragen\"> Veelgestelde vragen</a>;Voor vragen, neem contact op met: <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a>. </p>", + "pageTitle": "Contact" + }, + "Footer: Vragen": { + "question14": "Hoe blijf ik op de hoogte van ontwikkeling van het Algoritmeregister?", + "question15": "Is het Nederlandse Algoritmeregister ook het register zoals beschreven in de Europese AI Verordening?", + "question16": "Komt er wetgeving rond het Algoritmeregister?", + "question17": "Staat jouw vraag er niet bij?", + "group1": "A Algemene informatie", + "group3": "C Klachten of bezwaren", + "group5": "E Wetgeving en de Europese AI-Verordening", + "content": "<h1>Veelgestelde vragen</h1>\n<h2>1. Wat is het Algoritmeregister?</h2>\n<p class=\"mb-4\">Op het Algoritmeregister staat informatie over algoritmes die de overheid gebruikt. Zo is deze informatie vindbaar en beschikbaar voor burgers, hun belangenbehartigers, de media en toezichthouders.</p>\n<h2>2. Wat is het doel van deze website?</h2>\n<p class=\"mb-4\">Het doel is informatie over algoritmes voor iedereen centraal vindbaar te laten zijn. Op die manier kan iedereen zien in welke impactvolle processen algoritmes gebruikt worden. De informatie geeft de mogelijkheid om toezicht te houden op algoritmes. Zo kan gekeken worden naar discriminatie en onrechtmatigheid, maar ook de wenselijkheid. Wanneer mensen het niet eens zijn met het gebruik van algoritmes, geeft het Algoritmeregister aan waar bezwaar gemaakt kan worden.</p>\n<h2>3. Wat zijn algoritmes?</h2>\n<p class=\"mb-4\">Een algoritme is een set van regels en instructies die een computer uitvoert. Algoritmes helpen bijvoorbeeld om problemen te analyseren maar ook om beslissingen te nemen. Zo kan de overheid grote hoeveelheden gegevens (data) combineren en analyseren (bron: Algemene Rekenkamer).</p>\n<p class=\"mb-4\">Wil je meer weten over algoritmes? <a href=\"https://www.mediawijsheid.nl/algoritmes/\" target=\"_blank\" rel=\"noopener\"> Bekijk de informatie op Mediawijsheid<img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link naar externe pagina\"></a> of bekijk de (gratis) <a href=\"https://ethiek.ai-cursus.nl/home\" target=\"_blank\" rel=\"noopener\">Nationale AI-cursus<img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link naar externe pagina\"></a>.</p>\n<h2>4. Ik heb een vraag over een algoritme op deze site, waar kan ik deze stellen?</h2>\n<p class=\"mb-4\">Het kan natuurlijk ook dat je na het lezen van de registratie van een algoritme vragen hebt over een specifiek algoritme. Die kun je stellen aan de ‘eigenaar’ van het algoritme. De contactgegevens vind je in de beschrijving van het algoritme. Alle overige vragen kun je sturen naar: <a href=\"mailto:algoritmeregister@minbzk.nl\" target=\"_blank\" rel=\"noopener\"> algoritmeregister@minbzk.nl<img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-mail.8d4dd9cb.svg\" alt=\"Link naar een e-mailadres\"></a>.</p>\n<h2>5. Staan alle algoritmes van de overheid op deze website?</h2>\n<p class=\"mb-4\">Op dit moment stelt een kopgroep van overheidsorganisaties hun algoritmes beschikbaar via deze website. In 2023 publiceren nog meer overheidsorganisaties in het Algoritmeregister. Voorlopig gaat het aantal algoritmes op deze website dus nog groeien.</p>\n<p class=\"mb-4\">In de toekomst wordt het wettelijk verplicht algoritmes publiekelijk beschikbaar te maken. Daardoor komen de meeste relevante algoritmes in het Algoritmeregister. Hierop zullen gerechtvaardigde uitzonderingen komen. Denk aan opsporing, rechtshandhaving, defensie of inlichtingenverzameling. De exacte kaders worden nog uitgewerkt.</p>\n<h2>6. Bij sommige algoritmes staat meer informatie dan bij andere algoritmes?</h2>\n<p class=\"mb-4\">Momenteel gebeurt het vullen van het Algoritmeregister vrijwillig door overheidsorganisaties. Niet elke organisatie heeft ervoor gekozen alle informatie te publiceren. Uiteindelijk wordt er wettelijk vastgelegd welke informatie verplicht aangeleverd moet worden, en welke informatie optioneel is.</p>\n<h2>7. Wie werken er aan het Algoritmeregister?</h2>\n<p class=\"mb-4\">De ontwikkeling van het Algoritmeregister is begonnen met het consortium Publieke controle op algoritmes. Daarin werkten overheidsorganisaties aan beleidsinstrumenten voor een verantwoorde inzet van algoritmes. Een van de resultaten is onderzoek naar het Algoritmeregister. Het ministerie van Binnenlandse Zaken en Koninkrijksrelaties heeft voortgebouwd op deze opgedane kennis om tot dit Algoritmeregister te komen. Voor het ontwikkelen van de website werkt het ministerie samen met ICTU. In het Algoritmeregister is te zien welke organisaties op dit moment algoritmes aangeleverd hebben voor het Algoritmeregister. Kijk daarvoor onder het kopje Algoritmes, hier staan alle organisaties die nu één of meerdere algoritmes hebben aangeleverd.</p>\n<h2>8. Hoe verhouden de algoritmeregisters van overheidsorganisaties zich tot deze website?</h2>\n<p class=\"mb-4\">Het Algoritmeregister is de centrale vindplek voor alle algoritmes van de overheid. Sommige overheidsorganisaties hebben daarnaast ook een eigen algoritmeregister. Organisaties hebben daar de mogelijkheid om meer informatie te bieden of op andere wijze. In de huidige versie is de informatie handmatig overgenomen. In 2023 wordt gewerkt aan de mogelijkheid van automatische uitwisseling.</p>", + "pageTitle": "Veelgestelde vragen", + "question1": "Wat is het Algoritmeregister?", + "answer1": "<p>In het Algoritmeregister staat informatie over algoritmes die de overheid gebruikt. Zo is deze informatie vindbaar en beschikbaar voor burgers, hun belangenbehartigers, de media en toezichthouders.</p>", + "question2": "Waarvoor gebruikt de overheid algoritmes?", + "answer2": "<p>Algoritmes kunnen helpen om grote hoeveelheden gegevens efficiënt te verwerken en betere inzichten te geven. Algoritmes helpen zo om die dienstverlening te verbeteren, en tijd en geld te besparen. De overheid gebruikt algoritmes om gegevens te analyseren, beslissingen te nemen en taken te automatiseren. Voorbeelden van algoritmes die de overheid gebruikt zijn verkeersmonitoring en het online aanvragen van overheidsproducten.</p>", + "question3": "Welke algoritmes horen in het algoritmeregister thuis?", + "answer3": "<p>In ieder geval horen in dit register thuis:</p>\n<ul>\n<li>De algoritmes die door de voorgenomen Europese wetgeving (de AI-Verordering) als hoogrisico worden aangeduid. Dat zijn algoritmes die elementen van autonomie kennen. In het Nederlands noemen we dat meestal (deels) zelflerende algoritmes. Het algoritme moet daarnaast operationeel zijn in één van de toepassingsgebieden van Annex III. Denk aan gebieden als biometrie, kritieke infrastructuur en werkgelegenheid. <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">Meer over de risicoclassificatie in de AI-Verordening</a>.</li>\n<li>Algoritmes die direct impact hebben op de betrokkenen. Ze dragen bijvoorbeeld bij aan een besluit dat van invloed is op iemands rechten, op iemands juridische status of zijn rechten vanuit een overeenkomst. Denk aan: het opleggen van boete of het toekennen of weigeren van een subsidie.</li>\n</ul>\n<p>Daarnaast zijn er nog een aantal andere redenen om algoritmes volledig te publiceren. Bijvoorbeeld wanneer algoritmes veel maatschappelijke aandacht krijgen. Er zijn ook redenen om een algoritme niet volledig te publiceren, bijvoorbeeld wanneer een algoritme wordt gebruikt voor opsporing. Idealiter publiceert de overheid dan het deel van de informatie over het algoritme wat wel gepubliceerd kan worden.</p>", + "question4": "Welke organisaties publiceren hun algoritmes in het Algoritmeregister?", + "answer4": "<p>Nu is publicatie nog vrijwillig voor overheden. In het Algoritmeregister staat daarom informatie over algoritmes van overheidsorganisaties die daar zelf voor gekozen hebben. Regelmatig komen daar nieuwe organisaties bij.</p>\n<p>In de toekomst wordt publicatie van algoritmes <a href=\"{localised_url}/footer/vragen#question3\">die in dit register thuishoren</a> verplicht voor alle overheidsorganisaties; dus de rijksoverheid, provincies, gemeenten, waterschappen. Nog niet duidelijk is of andere organisaties uit de publieke sector zoals zorg en onderwijs ook onder deze verplichting gaan vallen. Dat wordt duidelijker op weg naar wetgeving in 2025.</p>", + "question5": "Hoe zit het met mijn privacy bij het gebruik van algoritmes?", + "answer5": "<p>Sommige algoritmes gebruiken persoonsgegevens voor hun taak. Persoonsgegevens zijn gegevens die informatie bevatten die kan worden gebruikt om een individu te identificeren, zoals naam, adres, geboortedatum of financiële informatie. Er zijn veel eisen aan het gebruik van persoonsgegevens, ook door de overheid. Veel eisen staan in wetgeving, zoals de AVG. In het Algoritmeregister staat informatie over welke gegevensbronnen het algoritme gebruikt. En over welke toetsen zijn uitgevoerd voordat het algoritme in gebruik werd genomen, bijvoorbeeld een privacytoets (DPIA). De <a href=\"https://www.autoriteitpersoonsgegevens.nl/\" target=\"_blank\">Autoriteit Persoonsgegevens</a> houdt toezicht op naleving van de privacy-eisen en sinds 1 januari ook <a href=\"https://www.autoriteitpersoonsgegevens.nl/actueel/algoritmetoezicht-ap-van-start\" target=\"_blank\">toezicht op algoritmes.</a></p>", + "question6": "Hoeveel algoritmes gebruikt de overheid en hoeveel komen er in dit register?", + "answer6": "<p>We staan aan het begin van een proces waarin de overheid actief algoritmes openbaar maakt. Het aantal algoritmes in het register is nog niet het totaal aantal algoritmes dat de overheid gebruikt. Om dat aantal naar waarde te kunnen schatten, is de volgende vraag relevant: hoeveel algoritmes gebruikt de overheid eigenlijk? En hoeveel zijn er daarvan impactvol of hoog-risico volgens de AI-Verordening? Op dit moment is er weinig zicht op het totale aantal algoritmes bij de overheid. Het is dus ook niet bekend hoeveel algoritmes uiteindelijk in het register terecht horen te komen. In de loop der jaren zal er steeds meer inzicht ontstaan in het aantal en de aard van algoritmes bij de overheid.</p>", + "question7": "Welke informatie over algoritmes haal ik uit het Algoritmeregister?", + "answer7": "<p>De <a href=\"https://algoritmes.pleio.nl/wiki/view/543701c4-318c-4186-b144-de72feca1065/handleiding-algoritmeregister-publicatiestandaard\" target=\"_blank\">Publicatiestandaard</a> beschrijft de informatie die nodig is om een Algoritme te beschrijven. Deze Publicatiestandaard wordt steeds verder verbeterd zodat het beter aansluit op de praktijk, in overleg met overheden, belanghebbenden en experts. De velden uit de publicatiestandaard zijn daarom nog niet verplicht. Gevolg is dat bij sommige algoritmes in het register, nog niet alle velden zijn ingevoerd. Overheidsorganisaties worden gestimuleerd om zoveel mogelijk informatie over hun algoritmes te publiceren.</p>", + "question8": "Hoe vind ik een algoritme in dit register?", + "question9": "Wat doe ik als het algoritme dat ik zoek er niet instaat?", + "answer9": "<p>Neem dan contact op met de organisatie die het algoritme inzet, en vraag om toelichting op het besluit of het proces. Bij de meeste organisaties staan de contactgegevens in de beschrijving van het algoritme. Kom je daar niet uit? Neem dan contact op met <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a> dan verwijzen wij je gericht door. </p>", + "question10": "Wat doe ik als de informatie over het algoritme niet duidelijk is of als er informatie ontbreekt?", + "answer10": "<p>Vragen over een beschrijving of missende informatie, stel je aan de organisatie die het algoritme heeft gepubliceerd. Bij de meeste algoritmes in het register staan de contactgegevens in de beschrijving. Kom je daar niet uit? Neem dan contact op met <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a>, dan verwijzen wij je gericht door.</p>", + "question11": "Waar kan ik een klacht indienen of bezwaar maken tegen een algoritme van de overheid in dit register?", + "answer11": "<p>Bezwaar maken en een klacht indienen, doe je bij de organisatie die het algoritme inzet. (Hoe je dat doet, lees je in dit antwoord [link FAQ 10]. Dat is altijd de eerste stap. Kom je er samen niet uit, dan kun je hulp krijgen. Bijvoorbeeld bij de Nationale Ombudsman. Meer over wat de <a href=\"https://www.nationaleombudsman.nl/over-de-nationale-ombudsman\" target=\"_blank\">Nationale Ombudsman</a> kan betekenen. Direct naar <a href=\"https://www.nationaleombudsman.nl/klacht-indienen/uw-klacht\" target=\"_blank\">het klachtenformulier</a>.</p>", + "question12": "Kan ik mij afmelden voor het gebruik van algoritmes?", + "answer12": "<p>Je kunt je niet afmelden voor het gebruik van algoritmes. Wel kun je in dit register informatie vinden over hoe het algoritme werkt en wat het doet. En je kunt <a href=\"#question10\">vragen om een toelichting</a> als je een beslissing van een algoritme niet snapt of als je denkt dat het niet klopt. Je kunt <a href=\"#question11\">bezwaar maken</a> als je denkt dat het algoritme fouten heeft gemaakt die jou en/of anderen hebben benadeeld.</p>", + "answer15": "<p>Het Nederlandse Algoritmeregister komt echt voort uit een Nederlandse wens, gebaseerd op een aantal rapporten, kamermoties en adviezen om tot een register te komen voor meer transparantie vanuit de Nederlandse overheid.  </p>\n<p>De <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">concept AI-Verordening</a> gaat waarschijnlijk verplicht stellen dat hoogrisico AI-algoritmes worden gedocumenteerd. Deze algoritmes zullen uiteindelijk in dit Algoritmeregister terecht komen. Om te voldoen aan de eisen van de wet wordt op den duur de publicatiestandaard aangepast. Er zijn ook verschillen: niet alle algoritmes in het Algoritmeregister zijn hoogrisico en/of AI-algoritmes. Er staan ook niet-zelflerende algoritmes en/of algoritmes met een lager risicokarakter in dit register. Dat blijft ook zo. Het register zoekt wel de aansluiting op de AI-Verordening Zodat het makkelijk wordt voor overheden die in het Nederlandse register staan daarmee ook te voldoen aan de verplichtingen vanuit de AI-Verordening. Hier is het ook wel wachten op hoe de Europese Databank eruit gaat zien. Het hangt van de Europese commissie af, de Nederlandse overheid is daarover in gesprek.</p>", + "answer16": "<p>Er wordt onderzocht of aanvullende wetgeving nodig is. Dit wordt bezien in samenhang met de EU-wetgeving. Dat is aangekondigd in de <a href=\"https://www.rijksoverheid.nl/documenten/kamerstukken/2022/12/21/kamerbrief-over-het-algoritmeregister\" target=\"_blank\">Kamerbrief</a> van december 2022. Dit duurt zeker nog tot 2025.</p>", + "question13": "Hoe doe ik mee als overheidsorganisatie?", + "answer13": "<p>Doe mee en publiceer de informatie over de algoritmes van je organisatie. Denk ook mee over de verdere ontwikkeling van dit Algoritmeregister. Deze informatie vind je op de pagina ‘<a href=\"meedoen\">Meedoen</a>’.</p>", + "answer17": "<p>Stel je vraag via <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a>.</p>", + "group2": "B Gebruik van het Algoritmeregister", + "group4": "D Meedoen | op de hoogte blijven", + "group6": "F Andere vraag", + "answer8": "<p>Er zijn twee mogelijkheden. Je kunt allereerst zoeken op organisatie, woord of thema. Bijvoorbeeld: Gemeente X, Parkeren of Sociale Zekerheid. Je krijgt dan een overzicht van de algoritmes die door deze gemeente, met dit woord in de omschrijvingen, of in dit thema zijn gepubliceerd. Een tweede mogelijkheid is om door <a href=\"https://test.algoritmeoverheid.nl/algoritme\">alle algoritmes in het register</a> te ‘bladeren’. </p>", + "answer14": "<ul>\n<li>We organiseren regelmatig open bijeenkomsten. Bekijk daarvoor de <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">agenda</a> op de Pleio pagina rond algoritmes.</li>\n<li>Op <a href=\"http://algoritmes.pleio.nl/\" target=\"_blank\">algoritmes.pleio.nl</a> vind je nieuws, de agenda en een aantal community’s waar je over een bepaald onderwerp op de hoogte blijft en mee kunt praten.</li>\n<li>Abonneer je op de nieuwsbrief en krijg regelmatig een update van het algoritmenieuws in je mailbox. <a href=\"https://algoritmeregister.email-provider.eu/memberforms/subscribe/standalone/form/?a=1pjwwoyxrs&l=vdfr1sbovb\" target=\"_blank\">Meld je aan.</a></li>\n<li>Algoritmes.overheid.nl is ontwikkeld met open source software. De code en bijvoorbeeld de publicatiestandaard, vind je op <a href=\"https://github.com/MinBZK/Algoritmeregister\" target=\"_blank\">de GitHub pagina van het ministerie van BZK</a>.</li>\n</ul>" + }, + "Footer: Privacyverklaring": { + "content": "<h1>Privacy</h1>\n<p>Deze website maakt gebruik van analytische cookies. Cookies zijn kleine tekstbestanden die websites op jouw computer opslaan. Daarmee is jouw computer te herkennen tijdens uw bezoek. Deze informatie helpt het bouwteam om de site te verbeteren. Analytische cookies geven antwoord op bijvoorbeeld de volgende vragen:</p>\n<ul>\n<li>Is de bezoeker nieuw of heeft de bezoeker de site al eerder bezocht</li>\n<li>Welke pagina's zijn tijdens het bezoek geraadpleegd</li>\n<li>Van welke site is de bezoeker gekomen</li>\n<li>Heeft de bezoeker de site meteen weer verlaten ('bouncing').</li>\n</ul>\n<p>Deze cookies worden niet gebruikt om een profiel aan te maken of jou verder te volgen. Deze website plaatst geen cookies van derde partijen (third-party cookies).</p>\n<h2>Gegevens via e-mail</h2>\n<p>Persoonlijke informatie die via e-mail bij het Algoritmeregister bekend wordt, behandelt het team vertrouwelijk. Dergelijke persoonlijke gegevens bewaart het team alleen voor de duur van de behandeling van het bericht. Nadat je antwoord hebt gekregen of als er geen antwoord gevraagd wordt, slaat het team alleen de vraag en het antwoord op. Op verzoek verwijdert het team ook de vraag en het antwoord.</p>", + "pageTitle": "Privacy" + }, + "Footer: Toegankelijkheid": { + "content": "<h1>Toegankelijkheid</h1>\n<p>Bij het ontwikkelen van deze website worden de wensen en eisen voor een toegankelijke website direct ingebouwd. Het bouwteam van het Algoritmeregister is getraind in digitale toegankelijkheid. Een onafhankelijke toegankelijkheidsexpert levert regelmatig advies.</p>\n<p>Deze website voldoet aan WCAG 2.1 niveau AA, de Web Content Accesibility Guidelines.</p>\n<p>Dit betekent dat de website gebruikt kan worden door iedereen, inclusief mensen met een functiebeperking.</p>\n<p>Voor meer informatie:</p>\n<ul>\n<li><a href=\"https://www.toegankelijkheidsverklaring.nl/register?w=algoritmes\" target=\"_blank\"> Register van Toegankelijkheidsverklaringen van de overheid</a>.</li>\n<li><a href=\"https://www.toegankelijkheidscertificaat.nl/algoritmes.overheid.nl/\" target=\"_blank\"> Toegankelijkheidscertificaat</a>.</li>\n</ul>", + "pageTitle": "Toegankelijkheid" + }, + "Footer: Webarchief": { + "content": "<h1>Webarchief</h1>\n<p>Websites zijn een belangrijke informatiebron voor burgers, bedrijven en overheden. Dit geldt ook voor vorige versies van websites. Hier kan informatie op staan die nog steeds relevant is en waar rechten aan kunnen worden ontleend. Door websites te archiveren, kunnen ze duurzaam toegankelijk blijven: ze blijven dus beschikbaar voor het terugkijken van openbare informatie. Dit is verplicht voor alle overheidswebsites.</p>\n<p>Deze versies komen te staan in het <a href=\"https://sitearchief.nl/#archive/\" target=\"_blank\"> webarchief</a>.</p>\n<p>In het overzicht vind je de webarchieven van alle verplichte deelnemers. Klik op een archief, kies een datum uit het verleden via de kalender en de site past haar inhoud aan op wat er toen actueel was. Je kunt teruggaan tot 25 januari 2023.</p>\n<p>Meer weten? <a href=\"https://www.nationaalarchief.nl/archiveren/kennisbank/Richtlijn-Archiveren-Overheidswebsites/\" target=\"_blank\"> Bekijk de Richtlijn archiveren overheidswebsites hier</a>.</p>", + "pageTitle": "Webarchief" + }, + "Footer: Over": { + "content": "<h1>Over het Algoritmeregister</h1>\n<p>De regering wil dat de overheid algoritmes verantwoord gebruikt. Mensen moeten erop kunnen vertrouwen dat algoritmes voldoen aan de waarden en normen van de samenleving. En er moet uitleg zijn over hoe algoritmes werken. Dat doet de overheid door algoritmes voor het gebruik te controleren op hoe ze werken en op eventuele discriminatie en willekeur daarbij. Wanneer de overheid open is over algoritmes en hun toepassing, kunnen burgers, organisaties en media haar kritisch volgen en controleren of ze de wet en de regels volgt.</p>\n<h2>Verantwoord algoritmegebruik</h2>\n<p>Onder andere de volgende trajecten dragen bij aan verantwoord algoritmegebruik:</p>\n<ol>\n<li>Het Algoritmeregister helpt om algoritmes vindbaar te maken, beter uit te leggen en hun toepassing en resultaten begrijpelijk te maken.</li>\n<li>De Algoritmetoezichthouder (de Autoriteit Persoonsgegevens) coördineert de controle op algoritmes: voldoen de algoritmes van de overheid aan alle regels die daarvoor gelden? <a href=\"https://www.autoriteitpersoonsgegevens.nl/actueel/algoritmetoezicht-ap-van-start\" target=\"_blank\">Meer informatie over de toezichthouder</a>.</li>\n<li>Het ministerie van BZK werkt aan het <a href=\"https://algoritmes.pleio.nl/cms/view/3877b524-e174-40c6-bcac-f3db875867e1/implementatiekader\" target=\"_blank\">Implementatiekader 'Inzet van algoritmes'</a>. Dat maakt voor overheden duidelijk welke eisen er gelden voor algoritmes en hoe ze ervoor kunnen zorgen dat hun algoritmes aan die eisen kunnen voldoen.</li>\n<li>Wetgeving: er komt een wettelijk kader voor transparantie van algoritmes. Dat is aangekondigd in de <a href=\"https://www.rijksoverheid.nl/documenten/kamerstukken/2022/12/21/kamerbrief-over-het-algoritmeregister\" target=\"_blank\">kamerbrief van december 2022</a>.</li>\n</ol>\n<h2>Open ontwikkeling</h2>\n<p>In december 2022 is de eerste versie van het Algoritmeregister gelanceerd. Dit vormt de basis voor verdere ontwikkeling. Doordat we de oplossing in de praktijk brengen kunnen we kennis en ervaring op doen. We ontwikkelen het register open door, samen met experts, (potentiële) gebruikers en belanghebbenden.</p>\n<p>Wil je <a href=\"meedoen\">daaraan bijdragen</a>?</p>\n<h2>Steeds meer algoritmes</h2>\n<p>Het Algoritmeregister is nog niet compleet. Het aanleveren van informatie over algoritmes is nu nog niet verplicht voor overheidsorganisaties. Die verplichting komt er wel aan. Voor die tijd publiceren steeds meer overheidsorganisaties algoritmes uit eigen beweging in het register. Omdat zij open en transparant willen zijn over hun processen en de inzet van algoritmes daarbij.</p>\n<p>Lees bijvoorbeeld <a href=\"https://algoritmes.pleio.nl/news/view/a830d9ff-b026-4c30-8f62-51d1a89f87bd/amersfoort-heeft-primeur-publicatie-algoritme-via-nieuw-webformulier\" target=\"_blank\">het verhaal van de gemeente Amersfoort</a> en <a href=\"https://algoritmes.pleio.nl/news/view/28f9200f-f1ca-4d6a-adaf-8cd08612544e/odnzkg-publiceert-algoritmes-openheid-en-transparantie-als-kernwaarden\" target=\"_blank\">van de Omgevingsdienst Noordzeekanaalgebied</a>.</p>", + "pageTitle": "Over het Algoritmeregister" + }, + "Footer: Meedoen": { + "pageTitle": "Meedoen", + "content": "<h1>Meedoen</h1>\n<p>Je kunt meedoen als je <a href=\"meedoen#overheden\">bij de overheid werkt</a>, en als je <a href=\"meedoen#geinteresseerd\">niet bij de overheid werkt</a>.</p>\n<h2 id=\"overheden\">Overheden: doe mee en denk mee</h2>\n<p>Steeds meer overheden doen mee en publiceren in dit Algoritmeregister van de overheid informatie over hun impactvolle algoritmes en algoritmes met een hoog-risico volgens de aanstaande <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">Europese AI Verordening.</a></p>\n<p>Uitgangspunt is dat overheden zelf verantwoordelijk zijn voor het opstellen en het beheer van hun algoritmes in het Algoritmeregister. Het Algoritmeregister ondersteunt daarbij met hulp, handreikingen, tools en een publicatiestandaard.</p>\n<h3>Hulp en handreikingen</h3>\n<ol>\n<li>Wil jouw organisatie meedoen en de algoritmes die jullie gebruiken publiceren? Meer informatie daarover lees je op algoritmes.pleio.nl, bijvoorbeeld in de <a href=\"https://algoritmes.pleio.nl/wiki/view/9719101e-b82e-4043-8837-ecdacded24c2/handreiking-algoritmeregister\" target=\"_blank\">handreiking ‘Aan de slag met het algoritmeregister’</a>.</li>\n<li>Op algoritmes.pleio.nl vind je de planning en achtergrondinformatie. Bovendien vind je daar verhalen van organisaties over hoe en waarom ze zijn aangesloten op het Algoritmeregister. Bijvoorbeeld van <a href=\"https://algoritmes.pleio.nl/news/view/a830d9ff-b026-4c30-8f62-51d1a89f87bd/amersfoort-heeft-primeur-publicatie-algoritme-via-nieuw-webformulier\" target=\"_blank\">de gemeente Amersfoort</a> en <a href=\"https://algoritmes.pleio.nl/news/view/28f9200f-f1ca-4d6a-adaf-8cd08612544e/odnzkg-publiceert-algoritmes-openheid-en-transparantie-als-kernwaarden\" target=\"_blank\">de Omgevingsdienst NZKG</a>.</li>\n<li><a href=\"https://algoritmes.pleio.nl/wiki/view/543701c4-318c-4186-b144-de72feca1065/handleiding-algoritmeregister-publicatiestandaard\" target=\"_blank\">Bekijk de publicatiestandaard</a> – welke informatie lever je aan als je een algoritme wilt publiceren? Deze standaard is nog in ontwikkeling.</li>\n<li>Je kunt ook contact met ons opnemen voor hulp via <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a>.</li>\n</ol>\n<h3>Tools: zelf makkelijk publiceren</h3>\n<ol>\n<li>Je kunt aanleveren met <a href=\"https://algoritmes.pleio.nl/wiki/view/b22c2b86-ad44-458d-8c2b-b8ee99bcc077/account-aanmaken-en-gebruik-maken-van-het-algoritmeregister\" target=\"_blank\">een online formulier</a> of geautomatiseerd via een <a href=\"https://algoritmes.pleio.nl/wiki/view/a7b22f88-9e7d-4198-89d6-dc333c09e2e7/handleiding-api-algoritmeregister\" target=\"_blank\">API.</a></li>\n<li>Ieder kwartaal presenteren we de nieuwe tools van de applicatie in openbare demo’s. Tussendoor blijf je op de hoogte in de sprintreviews. <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">Bekijk daarvoor de agenda</a>.</li>\n</ol>\n<h2 id=\"geinteresseerd\">Geïnteresseerd? Blijf op de hoogte en praat mee</h2>\n<p>Het Algoritmeregister, de hulpmiddelen en standaarden ontwikkelen we samen met stakeholders verder door. Werk je niet bij de overheid en praat en denk je graag mee? Dat kan op de volgende manieren.</p>\n<ol>\n<li>Doe mee met de <a href=\"https://algoritmes.pleio.nl\" target=\"_blank\">community</a> op het platform Pleio. <a href=\"https://account.pleio.nl/register/\" target=\"_blank\">Maak daarvoor een account aan</a>.</li>\n<li>De software van het register is open source. <a href=\"https://github.com/MinBZK/Algoritmeregister\" target=\"_blank\">Bekijk de code</a> op de GitHub van het ministerie van BZK.</li>\n<li>Openbare online Heartbeats en Meetups: regelmatig zijn er bijeenkomsten over de stand van zaken (Heartbeats) en over specifieke thema’s (Meetups). Bekijk de <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">agenda</a>.</li>\n<li>(Potentiële) gebruikers, maatschappelijke organisaties en experts denken mee over de verdere verbetering van het Algoritmeregister. Zodat het Algoritmeregister straks zoveel mogelijk aansluit op wat mensen nodig hebben. We houden daarvoor bijvoorbeeld veel interviews.</li>\n</ol>\n<div> </div>" + }, + "Footer: Over algoritmes": { + "pageTitle": "Over algoritmes", + "img_alt": "De verzameling 'alle algoritmes' bevat zowel deelverzameling 'Impactvolle algoritmes' (met invloed op mensen) als de deelverzameling 'AI'.", + "content": "<h1>Over algoritmes</h1>\n<div>\n<p><strong>Een algoritme is een set van regels en instructies die een computer geautomatiseerd volgt bij het maken van berekeningen om een probleem op te lossen of een vraag te beantwoorden (bron: Algemene Rekenkamer). Je komt algoritmes overal tegen, ook bij de overheid. </strong></p>\n</div>\n<div>\n<p>Wie regelmatig iets op internet doet, komt algoritmes tegen. Browsers, online bankieren, streamingdiensten als Netflix, en sociale media als Facebook en Instagram; algoritmes maken het mogelijk.</p>\n</div>\n<div>\n<p>Ook de overheid gebruikt algoritmes. Denk aan het online aanvragen van een subsidie. Het algoritme helpt dan om direct te beoordelen of je voldoet aan de voorwaarden of niet. Dit is een voorbeeld van een algoritme met duidelijke beslisregels en een eenduidig antwoord: ja of nee?  </p>\n</div>\n<div>\n<p>Andere algoritmes kunnen trends herkennen. Ze laten bijvoorbeeld zien hoe criminaliteit zich ontwikkelt in een stad. Dat helpt de politie en gemeente de juiste maatregelen te nemen. Of ze analyseren (anoniem) gezondheidsgegevens, waarmee beleid voor de publieke gezondheid gemaakt kan worden. Soms zijn deze algoritmes ‘(zelf)lerend’. Dat wil zeggen dat ze getraind worden om zelf patronen te ontdekken.  </p>\n</div>\n<div>\n<h2 role=\"heading\">Impactvolle algoritmes </h2>\n</div>\n<div>\n<p>Algoritmes zijn niet perfect. Ze maken soms fouten en er is een risico op vooroordelen, net als bij mensen. In het verleden is dat een paar keer flink misgegaan met geautomatiseerde processen bij de overheid.  </p>\n</div>\n<div>\n<p>De overheid werkt aan verbetering. Dat doet ze bijvoorbeeld door algoritmes op een verantwoorde manier te ontwikkelen en te gebruiken. Belangrijk is dat de overheid transparant is over de impactvolle algoritmes die ze gebruikt. Zodat burgers en belanghebbenden inzicht hebben in algoritmes die invloed hebben op hun leven. Impactvol zijn bijvoorbeeld de algoritmes die rechtsgevolgen hebben voor mensen, of die zorgen dat de overheid mensen classificeert. Denk aan het identificeren van mensen die recht hebben op bepaalde voorzieningen, zodat de overheid proactief hulp kan bieden.  </p>\n</div>\n<div>\n<h2 role=\"heading\">Zichtbaar en controleerbaar </h2>\n</div>\n<div>\n<p>Het Algoritmeregister wil de gebruikte impactvolle algoritmes zichtbaar en controleerbaar maken. Zodat jij als burger, belangenbehartiger, expert of journalist kan meekijken. Wanneer je vragen hebt, of denkt dat er iets niet klopt met een algoritme in dit register, kun je <a href=\"vragen#question10\">contact opnemen</a> met de organisatie die het algoritme beheert. Of: <a href=\"over\">Lees meer over het Algoritmeregister</a>.</p>\n</div>\n<div>\n<h2 role=\"heading\">Relatie met AI </h2>\n</div>\n<div>\n<p>Artificiële (of kunstmatige) intelligentie (AI) stelt computers en machines in staat intelligente taken uit te voeren. Een bekend voorbeeld daarvan is ChatGPT, een programma dat de vragen kan beantwoorden die je eraan stelt. Een ander voorbeeld is AI die een arts kan helpen om verschillende soorten kanker snel op te sporen.  </p>\n</div>\n<div>\n<p>Algoritmes zijn een belangrijk onderdeel van AI, omdat ze computers en machines helpen om deze taken uit te voeren met wiskundige formules en patronen. AI kan daardoor bijvoorbeeld verbanden ontdekken en beelden analyseren. De relatie tussen AI en algoritmes is als volgt: AI bestaat uit algoritmes, maar niet alle algoritmes zijn onderdeel van AI. De eerdergenoemde niet-zelflerende algoritmes zijn bijvoorbeeld geen AI-systemen, maar je vindt ze wel terug in dit register.  </p>\n</div>\n<div>\n<p>Dit verband tussen AI en algoritmes, zie je terug in het onderstaande schema. Een deel van alle algoritmes – al dan niet onderdeel van een AI-systeem – is impactvol.  </p>\n</div>", + "content2": "<div>\n<p>Dat betekent twee dingen. Ten eerste: alle AI bestaat uit algoritmes, maar een klein deel van de algoritmes zijn onderdeel van een AI-systeem. Ten tweede: er is een overlap tussen impactvolle algoritmes en AI. Sommige AI is impactvol, andere AI niet. </p>\n</div>\n<div>\n<h2 role=\"heading\">Wetgeving </h2>\n</div>\n<div>\n<p>De Europese Unie werkt aan wetgeving specifiek voor AI: de AI Verordening. Meer over de <a href=\"vragen#question15\">relatie tussen het Algoritmeregister en de aankomende AI Verordening</a>.</p>\n</div>" + }, + "footer": { + "text": "Let op: deze website is in ontwikkeling. De informatie verandert vaak. Wil je", + "textForLink": "meehelpen?" + }, + "Home": { + "about": "<p><strong>Over algoritmes</strong></p>\n<p>Een algoritme is een set van regels en instructies die een computer geautomatiseerd volgt bij het maken van berekeningen om een probleem op te lossen of een vraag te beantwoorden. <a href=\"{localised_url}/footer/over-algoritmes\">Meer over algoritmes</a>.</p>", + "collaborate": "<p><strong>Samen doorontwikkelen</strong><br />Steeds meer overheidsorganisaties publiceren informatie over hun algoritmes in het Algoritmeregister. Het register wordt open doorontwikkeld. <a href=\"{localised_url}/footer/meedoen\">Doe ook mee</a>.</p>", + "aboutRegister": "<p><strong>Over dit register</strong></p>\n<p>In dit Algoritmeregister publiceren steeds meer Nederlandse overheidsorganisaties de algoritmes die zij gebruiken in hun werk. Ze focussen op impactvolle algoritmes en geven de bezoeker inzicht in hoe deze algoritmes werken. <a href=\"{localised_url}/footer/over\">Meer over dit register</a>.</p>", + "highlightTextBottom": "<p>Of <a href=\"{localised_url}/algoritme\">blader door alle algoritmes</a></p>", + "toDo": "<p><strong>Wat kan ik hier doen?</strong></p>\n<p>Hoe kun je het Algoritmeregister gebruiken? En wat doe je als het algoritme dat je zoekt, nog niet in dit register staat? <a href=\"{localised_url}/footer/vragen\">Bekijk de veelgestelde vragen</a>.</p>", + "highlightTextTop": "Bekijk de 3 meest recent gewijzigde algoritmebeschrijvingen" + }, + "Zoekbalk": { + "hint": "Zoek op woord, thema of organisatie" + }, + "Footer: Versie-informatie": { + "content": "<div>\n<h1>Versie-informatie </h1>\n</div>\n<div>\n<h2>Oktober 2023 </h2>\n</div>\n<div>\n<p>In deze release zijn een aantal belangrijke verbeteringen op Het Algoritmeregister doorgevoerd voor de gebruiker. </p>\n</div>\n<div>\n<p>1. De downloadopties zijn uitgebreid.  </p>\n</div>\n<div>\n<p>Vanaf nu zijn de algoritmebeschrijvingen in enkele vorm en in bulk te downloaden. Dit kan in Microsoft Word met correcte styling, in Microsoft Excel met sortering per publicatiestandaard, of als PDF met bewerkbare invulvelden.</p>\n<p>2. De flows voor organisaties zijn versimpeld en versneld. </p>\n</div>\n<div>\n<p>Hiermee versnelt het proces van publiceren van een algoritmebeschrijving. Er kan vele malen sneller gereageerd worden op een vrijgave. Dit duurt nu een paar seconden, in plaats van ongeveer 15 minuten.  </p>\n</div>\n<div>\n<p>3. De database is geüpgraded naar de nieuwste architectuur.  </p>\n</div>\n<div>\n<p>De beschikbaarheid van de website is verhoogd door de eigenschappen van de nieuwe architectuur. Verder merkt de gebruiker hier weinig van.  </p>\n</div>\n<div>\n<p>4 .Door versiebeheer is nu te zien wie de webformulieren het laatst heeft bewerkt.  </p>\n</div>\n<div>\n<p>Dit maakt het mogelijk voor redacteurs om te zien wie het laatst aanpassingen heeft gemaakt. De traceerbaarheid voor organisaties wordt dus vergroot. Ook helpt het ICTU met het terugkijken in de tijd en kan ze partijen beter helpen met hun wijzigingen.  </p>\n</div>\n<div>\n<p>5. Het webformulier is nu beschikbaar op een nieuw adres.  </p>\n</div>\n<div>\n<p>Na een testperiode is het webformulier verhuisd naar <a href=\"https://algoritmes.overheid.nl/webformulier\" target=\"_blank\">https://algoritmes.overheid.nl/webformulier</a>. Dit geldt ook voor de aanlever-API, die is verhuisd naar <a href=\"https://algoritmes.overheid.nl/aanleverapi\" target=\"_blank\">https://algoritmes.overheid.nl/aanleverapi</a>. </p>\n</div>", + "pageTitle": "Versie-informatie" + }, + "language-disclaimer": { + "closeText": "Sluiten", + "content": "<p><strong>Let op:</strong> De algoritmebeschrijvingen in het engels zijn automatisch vertaald. Hier kunnen fouten in zitten. Voor de originele beschrijvingen gaat u naar de nederlandse versie van het Algoritmeregister.</p>", + "goToDutch": "Ga naar Nederlands" + } + }, + "fy": { + "Footer: Contact": { + "content": "", + "pageTitle": "" + }, + "Footer: Vragen": { + "question14": "", + "question15": "", + "question16": "", + "question17": "", + "group1": "", + "group3": "", + "group5": "", + "content": "", + "pageTitle": "", + "question1": "", + "answer1": "", + "question2": "", + "answer2": "", + "question3": "", + "answer3": "", + "question4": "", + "answer4": "", + "question5": "", + "answer5": "", + "question6": "", + "answer6": "", + "question7": "", + "answer7": "", + "question8": "", + "question9": "", + "answer9": "", + "question10": "", + "answer10": "", + "question11": "", + "answer11": "", + "question12": "", + "answer12": "", + "answer15": "", + "answer16": "", + "question13": "", + "answer13": "", + "answer17": "", + "group2": "", + "group4": "", + "group6": "", + "answer8": "", + "answer14": "" + }, + "Footer: Privacyverklaring": { + "content": "", + "pageTitle": "" + }, + "Footer: Toegankelijkheid": { + "content": "", + "pageTitle": "" + }, + "Footer: Over": { + "content": "<h1>Oer dizze site</h1>", + "pageTitle": "" + }, + "Footer: Meedoen": { + "pageTitle": "", + "content": "" + }, + "Footer: Over algoritmes": { + "pageTitle": "", + "img_alt": "", + "content": "", + "content2": "" + }, + "footer": { + "text": "", + "textForLink": "" + }, + "Home": { + "about": "", + "collaborate": "", + "aboutRegister": "", + "highlightTextBottom": "", + "toDo": "", + "highlightTextTop": "" + }, + "Zoekbalk": { + "hint": "" + }, + "Footer: Versie-informatie": { + "content": "", + "pageTitle": "" + }, + "language-disclaimer": { + "closeText": "", + "content": "", + "goToDutch": "" + } + }, + "pap": { + "Footer: Contact": { + "content": "", + "pageTitle": "" + }, + "Footer: Vragen": { + "question14": "", + "question15": "", + "question16": "", + "question17": "", + "group1": "", + "group3": "", + "group5": "", + "content": "", + "pageTitle": "", + "question1": "", + "answer1": "", + "question2": "", + "answer2": "", + "question3": "", + "answer3": "", + "question4": "", + "answer4": "", + "question5": "", + "answer5": "", + "question6": "", + "answer6": "", + "question7": "", + "answer7": "", + "question8": "", + "question9": "", + "answer9": "", + "question10": "", + "answer10": "", + "question11": "", + "answer11": "", + "question12": "", + "answer12": "", + "answer15": "", + "answer16": "", + "question13": "", + "answer13": "", + "answer17": "", + "group2": "", + "group4": "", + "group6": "", + "answer8": "", + "answer14": "" + }, + "Footer: Privacyverklaring": { + "content": "", + "pageTitle": "" + }, + "Footer: Toegankelijkheid": { + "content": "", + "pageTitle": "" + }, + "Footer: Over": { + "content": "", + "pageTitle": "" + }, + "Footer: Meedoen": { + "pageTitle": "", + "content": "" + }, + "Footer: Over algoritmes": { + "pageTitle": "", + "img_alt": "", + "content": "", + "content2": "" + }, + "footer": { + "text": "", + "textForLink": "" + }, + "Home": { + "about": "", + "collaborate": "", + "aboutRegister": "", + "highlightTextBottom": "", + "toDo": "", + "highlightTextTop": "" + }, + "Zoekbalk": { + "hint": "" + }, + "Footer: Versie-informatie": { + "content": "", + "pageTitle": "" + }, + "language-disclaimer": { + "closeText": "", + "content": "", + "goToDutch": "" + } + } +} diff --git a/backend/app/data/preditor/pvc_mounts_here.txt b/backend/app/data/preditor/pvc_mounts_here.txt new file mode 100644 index 00000000..cbd7b50a --- /dev/null +++ b/backend/app/data/preditor/pvc_mounts_here.txt @@ -0,0 +1 @@ +The PVC overwrites anything in this folder. For local development use the static_content_default.json in the app/data folder. \ No newline at end of file diff --git a/backend/app/data/static_content_default.json b/backend/app/data/static_content_default.json new file mode 100644 index 00000000..66471525 --- /dev/null +++ b/backend/app/data/static_content_default.json @@ -0,0 +1,570 @@ +{ + "en": { + "Footer: Contact": { + "content": "<h1>Contact us </h1>\n<p>This site is currently under development. Do you have questions about the Algorithm Register? Or are you a (government) professional and do you or your organisation want to participate in the further development of the Algorithm Register? Find more information at: <a href=\"over\"> About this website</a> and <a href=\"vragen\"> Frequently asked questions</a>.</p>\n<p>If you have further questions, then please contact: <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a>.</p>", + "pageTitle": "" + }, + "Footer: Vragen": { + "question14": "How do I stay informed about the development of the Algorithm Register?", + "question15": "Is the Dutch Algorithm Register also the register as described in the European AI Act?", + "question16": "Will there be legislation regarding the Algorithm Register?", + "question17": "Is your question not listed?", + "group1": "A General information", + "group3": "C Complaints or objections", + "group5": "E Legislation and the European AI Act", + "content": "<h1>Frequently asked questions</h1>\n<h2>1. What is the Algorithm Register?</h2>\n<p class=\"mb-4\">This website provides information about the algorithms used by the Dutch government. This makes the information visible, traceable and accessible to citizens and their representatives, the media and supervisors.</p>\n<h2>2. What is the aim of this website?</h2>\n<p class=\"mb-4\">The aim is to make information about algorithms centrally accessible for everyone. That allows everyone to see in which impactful processes these algorithms are used. The information on this website provides the ability to oversee algorithms. For example, discrimination or unlawfulness can be exposed, and whether the algorithm provides desirable outcomes can be checked. When someone does not agree with the use of algorithms, the Algorithm Register indicates how objections can be made.</p>\n<h2>3. What are algorithms?</h2>\n<p class=\"mb-4\">An algorithm is a set of rules and instructions executed by a computer. Algorithms help, for example, to analyse problems, but also to make decisions. This allows the government to combine and analyse large amounts of data (source: Algemene Rekenkamer).</p>\n<p class=\"mb-4\">Do you want to know more about algorithms? Find more information on <a href=\"https://www.mediawijsheid.nl/algoritmes/\" target=\"_blank\" rel=\"noopener\"> Mediawijsheid<img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link to external page\"></a> or take the (free) <a href=\"https://ethiek.ai-cursus.nl/home\" target=\"_blank\" rel=\"noopener\">National AI-course<img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link to external page\"></a>.</p>\n<h2>4. I have questions about an algorithm on this site, who do I contact?</h2>\n<p class=\"mb-4\">If you have a question about a specific algorithm, please contact the ‘owner’ of the algorithm. Contact details can be found in the description of the algorithm.</p>\n<p class=\"mb-4\">For other questions please email: <a href=\"mailto:algoritmeregister@minbzk.nl\"> algoritmeregister@minbzk.nl</a>.</p>\n<h2>5. Are all algorithms used by the government available on this website?</h2>\n<p class=\"mb-4\">A leading group of government organisations is currently making their algorithms available via this website. In 2023, even more government organisations will publish their algorithms in the Algorithm Register. For the time being, the number of algorithms on this website will continue to grow.</p>\n<p class=\"mb-4\">In the future, it will become a legal requirement to make algorithms publicly available. As a result, most relevant algorithms will become available in the Algorithm Register. There will be justified exceptions to this. For example, certain algorithms used for investigation, law enforcement, defense or intelligence gathering. The exact framework is still being finalized.</p>\n<h2>6. Why do some algorithms contain more information than others?</h2>\n<p class=\"mb-4\">Currently, the Algorithm Register is completed voluntarily by government organisations. Not every organisation has chosen to publish all information. Ultimately, it will be legally defined which information is mandatory and which information is optional.</p>\n<h2>7. Who develops and maintains the Algorithm Register?</h2>\n<p class=\"mb-4\">The development of the Algorithm Register was started by the Public Control of Algorithms Consortium. In it, government organisations worked on policy instruments for the responsible use of algorithms. One of the outcomes of that work was research into the creation of a register of algorithms. The Ministry of the Interior and Kingdom Relations has built on knowledge gained from this research to create this Algorithm Register. The ministry is working with ICTU to develop this website. All organisations that have currently supplied one or more algorithms to the Algorithm Register can be found under the heading ‘Algorithms’.</p>\n<h2>8. How do algorithm registers of individual government organisations relate to this website?</h2>\n<p class=\"mb-4\">The Algorithm Register is the central location for all government algorithms. Some government organisations also have their own algorithm register. This gives organisations the opportunity to provide more information or to provide it in a different way. In the current version of this website, information was entered manually. In 2023, the possibility of an automatic upload will be investigated.</p>", + "pageTitle": "Frequently Asked Questions", + "question1": "What is the Algorithm Register?", + "answer1": "<p>The Algorithm Register contains information about algorithms used by the government. This information is thus findable and available to citizens, their representatives, the media and regulators.</p>", + "question2": "What does the government use algorithms for?", + "answer2": "<p>Algorithms can help to efficiently process large amounts of data and provide better insights. Algorithms help to improve that service and save time and money. The government uses algorithms to analyze data, make decisions and automate tasks. Examples of algorithms used by the government are traffic monitoring and online applications for government products.</p>", + "question3": "Which algorithms do the descriptions in the Algorithm Register belong to?", + "answer3": "<p>In any case, this register should include:</p><ul><li> Information about algorithms that are designated as high-risk by the proposed European legislation (the AI Regulation). These are algorithms that have elements of autonomy. In Dutch we usually call these (partly) self-learning algorithms. The algorithm must also be operational in one of the application areas of Annex III. Consider areas such as biometrics, critical infrastructure and employment. <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">More about the risk classification in the AI Regulation</a> and <a href=\"https://spanish-presidency.consilium.europa.eu/en/news/council-parliament-deal-first-worldwide-rules-artificial-intelligence/\" target=\"_blank\">its changes</a>.</li><li> Information about algorithms that have a direct impact on those involved. For example, they contribute to a decision that affects someone's rights, their legal status or their rights under an agreement. Consider: imposing a fine or awarding or refusing a subsidy.</li></ul><p> In addition, there are a number of other reasons to fully publish algorithms. For example, when algorithms receive a lot of social attention. There are also reasons not to publish all information about an algorithm, for example when an algorithm is used for detection. Ideally, the government will then publish that part of the information about the algorithm that can be published. More about <a href=\"https://algoritmes.pleio.nl/wiki/view/19bb6e9e-7a97-43d5-bef3-b1d66e59f4ff/handreiking-algoritmeregister\" target=\"_blank\">selection of algorithms for the register</a> can be found in the guide.</p>", + "question4": "Which organizations publish about their algorithms in the Algorithm Register?", + "answer4": "<p>The Algorithm Register contains information about algorithms from many different government organizations. New organizations are added regularly.</p><p> In the future, publication of algorithms <a href=\"{localised_url}/footer/vragen#question3\">that belong in this register</a> will be mandatory for all government organizations; i.e. the national government, provinces, municipalities, water boards. It is not yet clear whether other public sector organizations such as healthcare and education will also fall under this obligation. This will become clearer on the way to legislation in 2025. They are already welcome to publish their algorithms in the Algorithm Register.</p>", + "question5": "What about my privacy when using algorithms?", + "answer5": "<p>Some algorithms use personal data for their task. Personal data is data that contains information that can be used to identify an individual, such as name, address, date of birth or financial information. There are many requirements for the use of personal data, including by the government. Many requirements are laid down in legislation, such as the GDPR. The Algorithm Register contains information about which data sources the algorithm uses. And about which tests were performed before the algorithm was put into use, for example a privacy test (DPIA). The <a href=\"https://www.autoriteitpersoonsgegevens.nl/\" target=\"_blank\">Dutch Data Protection Authority</a> monitors compliance with privacy requirements and, since 1 January, also <a href=\"https://www.autoriteitpersoonsgegevens.nl/actueel/algoritmetoezicht-ap-van-start\" target=\"_blank\">monitors algorithms.</a></p>", + "question6": "How many algorithms does the government use and how much information is included in this register?", + "answer6": "<p>We are at the beginning of a process in which the government is actively making information about algorithms public. The number of algorithms in the register is not yet the total number of algorithms used by the government. There is currently little insight into the total number of government algorithms. It is therefore not known how many algorithms the information should ultimately end up in the register. Over the years, more and more insight will emerge into the number and nature of government algorithms.</p>", + "question7": "What information about algorithms can I get from the Algorithm Register?", + "answer7": "<p>The <a href=\"https://algoritmes.pleio.nl/wiki/view/543701c4-318c-4186-b144-de72feca1065/handleiding-algoritmeregister-publicatiestandaard\" target=\"_blank\">Publication Standard</a> describes the information needed to describe an Algorithm. This Publication Standard is constantly being improved so that it is more in line with practice, in consultation with governments, stakeholders and experts. The fields from the publication standard are therefore not yet mandatory. The result is that for some algorithms in the register, not all fields have been entered yet. Government organizations are encouraged to publish as much information as possible about their algorithms.</p>", + "question8": "How do I find an algorithm in this registry?", + "question9": "What do I do if the algorithm I am looking for is not listed?", + "answer9": "<p>Then contact the organization that uses the algorithm and ask for an explanation of the decision or process. For most organizations, the contact details are in the description of the algorithm. Can't get out of there? Please contact <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a> and we will refer you specifically.</p>", + "question10": "What do I do if the information about the algorithm is unclear or information is missing?", + "answer10": "<p>Questions about a description or missing information should be directed to the organization that published the algorithm. For most algorithms in the registry, the contact information is in the description. Can't get out of there? Please contact <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a> and we will refer you directly.</p>", + "question11": "Where can I file a complaint or appeal against a government algorithm in this registry?", + "answer11": "<p>You can lodge an objection and a complaint with the organization that uses the algorithm. (You can read how to do that in this answer [link FAQ 10]. That is always the first step. If you cannot find a solution together, you can get help. For example, from the Nationale Ombudsman. More about what the <a href=\"https://www.nationaleombudsman.nl/over-de-nationale-ombudsman\" target=\"_blank\">Nationale Ombudsman</a> can do Directly to <a href=\"https://www.nationaleombudsman.nl/klacht-indienen/uw-klacht\" target=\"_blank\">the complaint form</a> .</p>", + "question12": "Can I opt out of using algorithms?", + "answer12": "<p>You cannot opt out of using algorithms. You can, however, find information in this register about how the algorithm works and what it does. And you can <a href=\"#question10\">ask for an explanation</a> if you do not understand an algorithm's decision or if you think it is incorrect. You can <a href=\"#question11\">object</a> if you believe that the algorithm has made mistakes that have disadvantaged you and/or others.</p>", + "answer15": "<p>The Dutch Algorithm Register stems from a Dutch wish, based on a number of reports, parliamentary motions and advice, to create a register for more transparency from the Dutch government.</p><p> The <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">draft AI Regulation</a> will probably make it mandatory that high-risk AI systems be documented. Information about these algorithms ultimately ends up in this Algorithm Register. To meet the requirements of the law, the publication standard will be adjusted over time. There are also differences: not all descriptions in the Algorithm Register are about high-risk and/or AI systems. There are also non-self-learning algorithms and/or algorithms with a lower risk character in this register. That will remain the case. The register does seek connections with the AI Regulation, so that it becomes easy for governments that are in the Dutch register to also comply with the obligations under the AI Regulation. Here we also have to wait to see what the European Database will look like. It depends on the European Commission, the Dutch government is discussing this.</p>", + "answer16": "<p>The need for additional legislation is being investigated. This is being considered in conjunction with EU legislation. This was announced in the <a href=\"https://www.rijksoverheid.nl/documenten/kamerstukken/2022/12/21/kamerbrief-over-het-algoritmeregister\" target=\"_blank\">letter to</a> the House of Representatives of December 2022. This will certainly last until 2025.</p>", + "question13": "How do I participate as a government organization?", + "answer13": "<p>Join us and publish the information about your organization's algorithms. Also think about the further development of this Algorithm Register. <a href=\"https://algoritmes.pleio.nl/\">Join the community.</a></p>", + "answer17": "<p>Ask your question via <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a>.</p>", + "group2": "B Using the Algorithm Register", + "group4": "D Participate | to stay informed", + "group6": "F Other question", + "answer8": "<p>There are two options. You can first search by organisation, word or theme. For example: Municipality X, Parking or Social Security. You will then receive an overview of the algorithms published by this municipality, with this word in the descriptions, or in this theme. A second option is to 'browse' through <a href=\"https://test.algoritmeoverheid.nl/algoritme\">all the algorithms in the registry</a> .</p>", + "answer14": "<ul>\n<li>We regularly organize open meetings. View the <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">agenda</a> on the Pleio page on algorithms.</li>\n<li>On <a href=\"http://algoritmes.pleio.nl/\" target=\"_blank\">algoritmes.pleio.nl</a> you will find news, the agenda and a number of communities where you can stay informed about a certain subject and where you can talk.</li>\n<li>Subscribe to the newsletter and regularly receive an update of the algorithm news in your mailbox. <a href=\"https://algoritmeregister.email-provider.eu/memberforms/subscribe/standalone/form/?a=1pjwwoyxrs&l=vdfr1sbovb\" target=\"_blank\">Sign In.</a></li>\n<li>algoritmes.overheid.nl is developed with open source software. The code and, for example, the publication standard, can be found on <a href=\"https://github.com/MinBZK/Algoritmeregister\" target=\"_blank\">the GitHub page of the Ministry of the Interior and Kingdom Relations</a>.</li>\n</ul>", + "question18": "Who is responsible for algorithms and AI within an organization?", + "answer18": "<p>Every organization can determine who is responsible for algorithms and AI. And the registration in the Algorithm Register. In practice, we often see that this responsibility is vested in a CISO (Chief Information Security Officer), CIO (Chief Information Officer), data specialist, data protection officer (FG) or similar positions. Do you want to get started? Then start bringing these people together in your organization. A first step is often to inventory the algorithms that the organization uses. If you don't know exactly which algorithms you are using, you can also check with the supplier of your applications. Also check immediately whether there is already a <a href=\"https://algorithms.pleio.nl/wiki/view/6c4da291-2636-4dde-b234-ad057ee528ad/ templates-suppliers\" target=\"_blank\"> template</a> is available for registration in the algorithm's registry. In terms of ownership, responsibility for algorithms in some organizations is placed with the CISO / CIO. Other organizations choose to make the department to which the algorithm applies (for example parking) responsible (in this case the mobility department). That is something you need to discuss internally.</p>", + "question19": "What is the relationship between the Algorithm Framework and the Algorithm Register?", + "answer19": "<p>In the Algorithm Framework you will find an overview of all requirements that algorithms must meet according to legislation and regulations. It also contains examples of measures that help you comply with these regulations. Finally, good examples of how to meet those requirements are listed. Publication of algorithms in the Algorithm Register is one of the measures we take as a government to ensure more transparency.</p>" + }, + "Footer: Privacyverklaring": { + "content": "<h1>Privacy</h1>\n<p class=\"mb-2\">This website uses analytical cookies only. Cookies are small text files that websites store on your computer. This makes it possible to recognize your computer during your visit. This information helps the development team to improve the site. Analytical cookies answer the following questions:</p>\n<ul class=\"ml-4\" type=\"disc\">\n<li>Is this a new visitor or has the visitor visited the site before</li>\n<li>Which pages were consulted during the visit</li>\n<li>Which site was the visitor directed from</li>\n<li>Did the visitor immediately leave the site ('bouncing').</li>\n</ul>\n<p class=\"mb-4\">The cookies are not used to create a profile or to follow you further. This website does not place third-party cookies.</p>\n<h2>Data received via email</h2>\n<p class=\"mb-4\">Personal information that becomes known to the Algorithm Register by email is treated confidentially by the team. Such personal data will only be kept by the team while they work on a response to your message. Once the question is answered or if no question is asked, the team will only record the question itself and the answer to that question. Upon request, the question and answer can also be deleted.</p>", + "pageTitle": "Privacy" + }, + "Footer: Toegankelijkheid": { + "content": "<h1>Accessibility</h1>\n<p class=\"mb-4\">During the development of this website, anything deemed beneficial and any requirements to make it accessible were immediately incorporated. The development team has been trained in digital accessibility. An independent accessibility expert regularly provides advise.</p>\n<p class=\"mb-4\">This website complies with WCAG 2.1 level AA, the Web Content Accessibility Guidelines.</p>\n<p class=\"mb-4\">This means that the website can be used by anyone including people with a disability.</p>\n<p class=\"mb-4\">For more information see:</p>\n<ul class=\"ml-4\" type=\"disc\">\n<li><a href=\"https://www.toegankelijkheidsverklaring.nl/register?w=algoritmes\" target=\"_blank\" rel=\"noopener\"> Registry of accessibility statements of the Dutch government<img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link to external page\"></a>.</li>\n<li><a href=\"https://www.toegankelijkheidscertificaat.nl/algoritmes.overheid.nl/\" target=\"_blank\" rel=\"noopener\"> Certificate of Accessibility <img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link to external page\"></a>.</li>\n</ul>", + "pageTitle": "Accessibility" + }, + "Footer: Over": { + "content": "<h1>About the Algorithm Register</h1><p> The government wants the government to use algorithms responsibly. People must be able to trust that algorithms comply with the values and norms of society. And there must be an explanation of how algorithms work. When the government is open about algorithms and their application, citizens, organizations and media can monitor it critically and check whether it is following the law and the rules.</p><h2> Responsible algorithm use</h2><p> The following processes, among others, contribute to responsible algorithm use:</p><ol><li> The Algorithm Register helps to make algorithms findable, better explained and their application and impact understandable.</li><li> <a href=\"https://www.autoriteitpersoonsgegevens.nl/themas/algoritmes-ai/coordinatie-toezicht-algoritmes-ai\" target=\"_blank\">The Algorithm Supervisor</a> (the Dutch Data Protection Authority) coordinates the control of algorithms: do the government algorithms comply with all applicable rules?</li><li> The Ministry of the Interior and Kingdom Relations is working on the <a href=\"https://algoritmes.pleio.nl/page/view/3877b524-e174-40c6-bcac-f3db875867e1/algoritmekader\" target=\"_blank\">Algorithm Framework</a>. This makes it clear to governments what requirements apply to algorithms and how they can ensure that their algorithms can meet them.</li><li> Legislation: there will be a legal obligation for transparency of algorithms. This was announced in the <a href=\"https://www.rijksoverheid.nl/documenten/kamerstukken/2022/12/21/kamerbrief-over-het-algoritmeregister\" target=\"_blank\">letter to parliament of December 2022</a>.</li></ol><h2> Goals of the Algorithm Register</h2><p> What do we want to achieve with the Algorithm Register? The goals of the Algorithm Register are interrelated, as this image shows. The goals are briefly explained below the image. A more detailed explanation of the goals can be found in the <a href=\"https://algoritmes.pleio.nl/wiki/view/19bb6e9e-7a97-43d5-bef3-b1d66e59f4ff/handreiking-algoritmeregister\" target=\"_blank\">Algorithm Register Guide</a>.</p><div><div><ol role=\"list\"><li role=\"listitem\"><p> <strong>Increasing trust in the government</strong><br /> The government can only effectively provide social added value if there is trust in the government and people feel heard and involved. The Algorithm Register should help improve confidence in the government.</p></li><li role=\"listitem\"><p> <strong>Strengthening the position of citizens and companies</strong><br /> The Algorithm Register provides citizens and companies with more information about how government processes work and what choices have been made.</p></li><li role=\"listitem\"><p> <strong>More clarity about algorithm and AI use (Demystification)</strong><br /> Many people are unclear about what an algorithm is and how it affects their lives. The Algorithm Register provides insight into where and how the government uses algorithms and AI.</p></li><li role=\"listitem\"><p> <strong>Act responsibly<br /></strong> The government must act in a responsible manner. The Algorithm Register makes government actions more public.</p></li><li role=\"listitem\"><p> <strong>Increasing the controllability of the government</strong><br /> If the government shows what it is doing, citizens and organizations can monitor it better. The Algorithm Register supports this control by society.</p></li><li role=\"listitem\"><p> <strong>Increase explainability</strong><br /> Filling the Algorithm Register forces the government to explain its decision-making process and the application of algorithms in a comprehensible way. In addition, citizens can indicate whether an explanation is clear and whether they experience the operation the same.</p></li><li role=\"listitem\"><p> <strong>Be more transparent about trading</strong><br /> In order to provide openness and accountability, the government must be transparent. Carefully filling the Algorithm Register is one of the ways to do this.</p></li></ol></div></div><h2> Open development</h2><p> The first version of the Algorithm Register was launched in December 2022. This forms the basis for further development. By putting the solution into practice, we can gain knowledge and experience. We develop the register openly, together with experts, (potential) users and stakeholders. For example, in 2023 the report ' <a href=\"https://algoritmes.pleio.nl/attachment/entity/e59fb733-51ca-4811-9b6e-1d89d348a5b3\" target=\"_blank\">Target group analysis Algorithm register</a> ' was published. More and more points for improvement have been incorporated into this website.</p><p> Do you <a href=\"https://algoritmes.overheid.nl/nl/footer/meedoen\" target=\"_blank\">also want to contribute</a> ?</p><h2> More and more algorithms</h2><p> The Algorithm Register is not yet complete. Providing information about algorithms is not yet mandatory for government organizations. That obligation will come. Before then, more and more government organizations are publishing information about their algorithms. Because they want to be open and transparent about their processes and the use of algorithms.</p><p> For example, read <a href=\"https://algoritmes.pleio.nl/news/view/68abf211-f915-4433-ab28-9d51b5aa443e/groningen-over-de-winst-maak-het-niet-te-ambtelijk\" target=\"_blank\">the story of the municipality of Groningen</a>.</p>", + "pageTitle": "" + }, + "Footer: Meedoen": { + "pageTitle": "Join", + "content": "<h1>Participate</h1><p> You can participate if you <a href=\"meedoen#overheden\">work for the government</a> and if you <a href=\"meedoen#geinteresseerd\">do not work for the government</a>.</p><h2 id=\"overheden\"> Governments: participate and think along</h2><p> More and more governments are participating and publishing information in this government algorithm register about their high-impact algorithms and high-risk algorithms according to the upcoming <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">European AI Regulation.</a></p><p> The basic principle is that governments themselves are responsible for drawing up and managing their algorithm descriptions in the Algorithm Register. The Algorithm Register provides support with help, guidelines, tools and a publication standard.</p><h3> Help and guidance</h3><ol><li> Does your organization want to participate and publish about the algorithms you use? You can read more information about this on <a href=\"https://algoritmes.pleio.nl/\" target=\"_blank\">Algorithms Pleio environment</a> , for example in the <a href=\"https://algoritmes.pleio.nl/wiki/view/19bb6e9e-7a97-43d5-bef3-b1d66e59f4ff/handreiking-algoritmeregister\" target=\"_blank\">guide 'Getting started with the algorithm register'</a>.</li><li> You can find the planning and background information on algorithms.pleio.nl. You will also find <a href=\"https://algoritmes.pleio.nl/page/view/67f8e63c-82b4-474e-a003-6ab8923d5184/praktijkverhalen-nieuw\" target=\"_blank\">practical stories from organizations</a> about how and why they are connected to the Algorithm Register. For example from <a href=\"https://algoritmes.pleio.nl/news/view/68abf211-f915-4433-ab28-9d51b5aa443e/groningen-over-de-winst-maak-het-niet-te-ambtelijk\" target=\"_blank\">the municipality of Groningen</a>.</li><li> <a href=\"https://algoritmes.pleio.nl/wiki/view/2bcdf820-ce62-4249-95f7-d1a13fb6e1c9/handleiding-algoritmeregister-publicatiestandaard\" target=\"_blank\">View the publication standard</a> – what information do you provide if you want to publish the description of an algorithm?</li><li> You can also contact us for assistance via <a href=\"mailto:algoritmeregister@minbzk.nl\">algorithmregister@minbzk.nl</a>.</li></ol><h3> Tools: easy self-publishing</h3><ol><li> You can submit with <a href=\"https://algoritmes.pleio.nl/wiki/view/b22c2b86-ad44-458d-8c2b-b8ee99bcc077/account-aanmaken-en-gebruik-maken-van-het-algoritmeregister\" target=\"_blank\">an online form</a> or automatically via an <a href=\"https://algoritmes.pleio.nl/wiki/view/6f6b7a6a-6ae9-4ae3-9f80-2d1137985091/handleiding-api-algoritmeregister\" target=\"_blank\">API.</a></li><li> Every quarter we present the application's new tools in public demos. In between, you stay informed in the sprint reviews. <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">View the agenda for this</a>.</li></ol><h2 id=\"geinteresseerd\"> Interested? Stay informed and join the conversation</h2><p> We will further develop the Algorithm Register, the tools and standards together with stakeholders. Do you not work for the government and would you like to discuss and think along? This can be done in the following ways.</p><ol><li> Join the <a href=\"https://algoritmes.pleio.nl\" target=\"_blank\">community</a> on the Pleio platform. <a href=\"https://account.pleio.nl/register/\" target=\"_blank\">Create an account for this</a>.</li><li> The registry software is open source. <a href=\"https://github.com/MinBZK/Algoritmeregister\" target=\"_blank\">View the code</a> on the Ministry of the Interior and Kingdom Relations' GitHub.</li><li> Public online meetings: there are regular meetings about the state of affairs and specific themes. View the <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">agenda</a>.</li><li> (Potential) users, social organizations and experts contribute ideas about further improvements to the Algorithm Register. So that the Algorithm Register will soon be as close as possible to what people need. For example, we conduct many interviews for this purpose. The report ' <a href=\"https://algoritmes.pleio.nl/attachment/entity/e59fb733-51ca-4811-9b6e-1d89d348a5b3\" target=\"_blank\">Target group analysis Algorithm register</a> ' was published in 2023. More and more points for improvement have been incorporated into this website. A second target group analysis will follow in 2024.</li></ol><div></div>" + }, + "Footer: Over algoritmes": { + "pageTitle": "About algorithms", + "img_alt": "The collection 'all algorithms' contains both the subset 'Impactful algorithms' (with influence on people) and the subset 'AI'.", + "content": "<h1>About algorithms</h1>\n<div>\n<p><strong>An algorithm is a set of rules and instructions that a computer automatically follows when making calculations to solve a problem or answer a question (source: Netherlands Court of Audit). You come across algorithms everywhere, including in government.</strong></p>\n</div>\n<div>\n<p>Anyone who regularly does something on the internet comes across algorithms. Browsers, online banking, streaming services such as Netflix, and social media such as Facebook and Instagram; algorithms make it possible.</p>\n</div>\n<div>\n<p>The government also uses algorithms. Consider applying for a grant online. The algorithm then helps to immediately assess whether you meet the conditions or not. This is an example of an algorithm with clear decision rules and an unequivocal answer: yes or no?</p>\n</div>\n<div>\n<p>Other algorithms can recognize trends. For example, they show how crime develops in a city. This helps the police and municipality to take the right measures. Or they analyze (anonymous) health data, which can be used to make public health policy. Sometimes these algorithms are '(self) learning'. That is, they are trained to discover patterns themselves.</p>\n</div>\n<div>\n<h2 role=\"heading\">Impactful algorithms</h2>\n</div>\n<div>\n<p>Algorithms are not perfect. They sometimes make mistakes and there is a risk of prejudice, just like with humans. In the past, this has gone horribly wrong with automated government processes.</p>\n</div>\n<div>\n<p>The government is working on improvement. It does this, for example, by developing and using algorithms in a responsible manner. It is important that the government is transparent about the impactful algorithms it uses. So that citizens and stakeholders have insight into algorithms that influence their lives. For example, algorithms that have legal consequences for people, or that ensure that the government classifies people, are full of impact. For example, identifying people who are entitled to certain provisions, so that the government can proactively offer help.</p>\n</div>\n<div>\n<h2 role=\"heading\">Visible and controllable</h2>\n</div>\n<div>\n<p>The Algorithm Register wants to make the impactful algorithms used visible and verifiable. So that you as a citizen, advocate, expert or journalist can watch. If you have any questions or think something is wrong with an algorithm in this register, you can <a href=\"vragen#question10\">contact</a> the organization that manages the algorithm. Or: <a href=\"over\">Read more about the Algorithm Register</a>.</p>\n</div>\n<div>\n<h2 role=\"heading\">Relationship with AI</h2>\n</div>\n<div>\n<p>Artificial (or artificial) intelligence (AI) enables computers and machines to perform intelligent tasks. A well-known example of this is ChatGPT, a program that can answer the questions you ask it. Another example is AI that can help a doctor quickly detect different types of cancer.</p>\n</div>\n<div>\n<p>Algorithms are an important part of AI, as they help computers and machines perform these tasks with mathematical formulas and patterns. AI can therefore discover connections and analyze images, for example. The relationship between AI and algorithms is as follows: AI consists of algorithms, but not all algorithms are part of AI. For example, the aforementioned non-self-learning algorithms are not AI systems, but you will find them in this register.</p>\n</div>\n<div>\n<p>You can see this connection between AI and algorithms in the diagram below. Part of all algorithms – whether or not part of an AI system – are impactful.</p>\n</div>", + "content2": "<div>\n<p>That means two things. First: all AI consists of algorithms, but a small part of the algorithms are part of an AI system. Second, there is an overlap between impactful algorithms and AI. Some AI is impactful, other AI is not.</p>\n</div>\n<div>\n<h2 role=\"heading\">Legislation</h2>\n</div>\n<div>\n<p>The European Union is working on legislation specifically for AI: the AI Act. More about the <a href=\"vragen#question15\">relationship between the Algorithm Register and the upcoming AI Act</a>.</p>\n</div>" + }, + "footer": { + "text": "Please note: this website is under development. The information changes often. Do you want", + "textForLink": "to help?" + }, + "Home": { + "about": "<p><strong>About algorithms</strong></p>\n<p>An algorithm is a set of rules and instructions that a computer automatically follows when making calculations to solve a problem or answer a question. <a href=\"{localised_url}/footer/over-algoritmes\">More about algorithms</a>.</p>", + "collaborate": "<p><strong>Developing together</strong><br />More and more government organizations publish information about their algorithms in the Algorithm Register. The register is being developed further. <a href=\"https://algoritmes.pleio.nl/\">Join the community</a>.</p>", + "aboutRegister": "<p><strong>About this register</strong></p>\n<p>More and more Dutch government organizations publish the algorithms they use in their work in this Algorithm Register. They focus on impactful algorithms and give the visitor insight into how these algorithms work. <a href=\"{localised_url}/footer/registreer-je-algoritme\">Register your algorithm</a>.</p>", + "highlightTextBottom": "<p>Or <a href=\"{localised_url}/algoritme\">browse all algorithms</a></p>", + "toDo": "<p><strong>What can I do here?</strong></p>\n<p>How can you use the Algorithm Register? And what do you do if the algorithm you are looking for is not yet in this registry? <a href=\"{localised_url}/footer/vragen\">View the frequently asked questions</a>.</p>", + "highlightTextTop": "View the 3 most recently changed algorithm descriptions", + "title-tag": "The Algorithm Register of the Dutch government", + "meta-description": "The algorithm register collects all algorithm descriptions used by government organizations in the Netherlands." + }, + "Zoekbalk": { + "hint": "Search by word, theme or organisation", + "hintOrganisatie": "Search by organisation" + }, + "language-disclaimer": { + "closeText": "Close", + "content": "<p><strong>Please note: </strong>The algorithm descriptions in English have been automatically translated. Errors may have been introduced in this process. For the original descriptions, go to the Dutch version of the Algorithm Register.</p>", + "goToDutch": "Go to Dutch language" + }, + "Footer: Archief": { + "content": "<h1>Archive</h1>\n<p>Websites are an important source of information for citizens, companies and governments. This also applies to previous versions of websites. They may contain information that is still relevant and may confer rights. By archiving websites, they remain permanently accessible: they remain available for reviewing public information. This is mandatory for all government websites.</p>\n<p>These versions can be found in the <a href=\"https://minbzk.sitearchief.nl/?subsite=algoritmeoverheid#archive\" target=\"_blank\" aria-label=\"Koppeling web archive\">web archive</a> (Dutch only). The overview shows the archives of all mandatory participants. Click on an archive, select a date from the past and the website will adjust its content to what was current at that time. You can go back as far as January 25, 2023.</p>\n<p>Want to learn more? <a href=\"https://www.nationaalarchief.nl/archiveren/kennisbank/Richtlijn-Archiveren-Overheidswebsites\" target=\"_blank\" aria-label=\"Koppeling Check out the Guidelines for Archiving Government Websites\">Check out the Guidelines for Archiving Government Websites</a>. </p>", + "pageTitle": "Archive" + }, + "Footer: Kwetsbaarheid melden": { + "content": "<h1>Report vulnerability</h1>\n<p>If you discover a weak spot or vulnerability on this website, please report it to the National Cyber Security Center (NCSC). Making such a report is called Coordinated Vulnerability Disclosure (CVD). We will look into the problem together with the NCSC and resolve it as quickly as possible.</p>", + "pageTitle": "Report vulnerability" + }, + "Footer: Release-notes": { + "pageTitle": "Release notes", + "content": "<h2>Release notes</h2><p> On this page you will find changes to the software that are useful to know if you are a visitor or editor.</p><h2> May 3, 2024</h2><h3> For editors:</h3><div><p> <strong>Improved: Publishing process</strong><br /> Organizations use a web form with a publication process that allows them to control what they publish. The publication process has several steps. This quarter we are working on improving the entire process. This is necessary because of the growth of the register and we would like to meet the wishes of an increasingly large group of editors. The most important improvements so far are:</p></div><div><ul role=\"list\"><li role=\"listitem\"><p> The web form has been better designed for a more user-friendly experience.</p></li><li role=\"listitem\"><p> A draft version is now created every time an algorithm description is saved. This makes it possible to roll back previously saved versions of descriptions.</p></li></ul></div><div><p> We will also extensively test these (and future) improvements until July. If the results are good, the web form will be updated next summer.</p></div><div><p> <strong>Added: New templates</strong><br /> In the web form, organizations can use templates of algorithm descriptions from suppliers. From now on, organizations can also use new templates to publish the description of the 'Octobox Anonymize' algorithm (from Octobox and DocDirekt) and 'Public space notifications' (from the Municipality of Amsterdam).</p></div><div><p> <strong>Fixed: Organization details web form</strong><br /> The web form can be used by organizations to write text for their organization page in the Algorithm Register. There it can be indicated how organizations deal with algorithms and the publication thereof in the Algorithm Register. An error briefly occurred where these organization details could not be saved. This error has been fixed and everything is working properly again.</p></div><h2> April 19, 2024</h2><div><h3 role=\"heading\"> For visitors:</h3></div><div><p> <strong>Improved: Suggestions for organizations based on search term</strong><br /> As you type, suggestions of organizations that may be searched will appear below the search bar. By clicking on a suggestion, the search term is automatically completed.</p></div><div><p> <strong>Improved: Easier navigation to all algorithm descriptions</strong><br /> The total number of algorithms is clickable above the search bar. By clicking on this you will go directly to the overview of all published algorithm descriptions.</p></div><div><p> <strong>Improved: All selection filters can be cleared at once</strong><br /> All search criteria that you have used when searching for an algorithm description or organization can now be removed at once by clicking on 'Remove selection' above the filter block.</p></div><div><p> <strong>New: More clear what can be searched for on a page via the search bar</strong><br /> Via the menu options 'Algorithms' and 'Organizations' you can search for algorithm descriptions and organizations that have published in the Algorithm Register. The search bar on those pages has been given a title to make it clearer what can be found there.</p></div><h2> April 5, 2024</h2><h3> For visitors:</h3><p> <strong>New: The Algorithm Register is automatically translated into Frisian (beta)</strong><br /> Frisian visitors can now also use the Algorithm Register. The website can be used in Frisian via the Language button at the top right of each page (on mobile via the 'Menu' button). The algorithm descriptions in Frisian have been automatically translated. There may be errors in this. For the original descriptions, go to the Dutch version of the Algorithm Register.</p><h2> March 2024</h2><h3> For visitors:</h3><p> <strong>Adjusted: Text adjustments on information pages<br /></strong> The heading 'Objectives of the Algorithm Register' has been added to the ' <a href=\"https://algoritmes.overheid.nl/nl/footer/over\" target=\"_blank\">About the Algorithm Register</a> ' page, where our seven objectives are briefly explained.</p><p> <strong>Improved: Web Archive<br /></strong> The web archiving for the Algorithm Register is working properly again. For more information click <a href=\"https://algoritmes.overheid.nl/nl/footer/archief\">here</a>.</p><p> <strong>Adjusted: the search bar now remembers suggestions from the search engine<br /></strong> When typing a search query, suggestions will appear below the search bar. When clicking outside the search bar, those suggestions disappear, but they now return when you click in the search bar again.</p><p> <strong>New: It is now possible to search via the 'Organizations' menu option.</strong><br /> In the main menu at the top there is an 'Organizations' option where you can view a list of all organizations that have published, listing their algorithm descriptions. From now on you can use the search bar to search for organizations from that page.</p><div><p> <strong>Improved: Search with organization abbreviation displays the option to navigate directly to the organization page<br /></strong> It is now possible to navigate directly to an organization page using an abbreviation, for example BZK (Home Affairs and Kingdom Relations) or UWV (Employee Insurance Agency).</p><p> <strong>Improved: With an organization name as a search term you will now find all algorithm descriptions of that organization</strong><br /> If you type the name of an organization in the search bar, you expect to find at least all algorithm descriptions of that organization. That wasn't always the case. The search function has been technically adjusted to ensure completeness.</p><p> <strong>Improved: Smarter search when an organization name is used as a search term<br /></strong> If you typed the abbreviated or full name of an organization in the search bar, the search result would be all algorithm descriptions where the organization name appeared somewhere in the description. Even if those were algorithm descriptions from other organizations. That's not always what you're looking for. That is why you will now receive suggestions below the search bar that you can choose from. This allows you to search faster and more specifically. These suggestions will be further expanded and refined in the near future.</p><p> <strong>Changed: Publishing standard is now also shown</strong><br /> When displaying the search results, it is now also shown which version of the publishing standard was used. Because the available information may differ per version.</p><p> <strong>Improved: With downloads you see that the download is still in progress<br /></strong> Due to the growth of the Algorithm Register, downloading now takes a little longer. You will now receive feedback about this so that you know that you have to wait a while until the download is ready.<strong><br /></strong></p><h3> <strong>For editors:</strong></h3><p> <strong>New: Algorithm description Anonymization completed faster using the eData BV template<br /></strong> In the web form, organizations can now use the template from the supplier eData BV (also known as eSpecialists BV) to complete the Anonymization algorithm description more quickly.</p><p> <strong>Adjusted: Checking the link to your own website on the organization page<br /></strong> On this register, organizations can explain how they deal with algorithms in their own organization page. In the field: 'More information' you can include a link to a page on your own website. It is now no longer possible to add spaces in that link. It is now allowed to add a slash ('/') at the end of a link.</p><p> <strong>Fixed: Texts organized into paragraphs with blank lines between them were not saved<br /></strong> Due to a recent bug, information spread over multiple paragraphs was not saved. So information disappeared. This has now been resolved.</p><br /><h2> February 2024</h2><h3> For visitors:</h3><p> <strong>Fixed: No more strange character in CSV download</strong><br /> When downloading algorithm descriptions in a CSV file, a strange character sometimes appeared. This error has now been resolved.</p><p> <strong>Fixed: English Excel download now includes English labels</strong><br /> When downloading English algorithm descriptions, Dutch labels were shown. These labels, seen in column A, have now been translated into English.</p><p> <strong>Fixed: Tabs in Excel file are displayed consecutively</strong><br /> When downloading algorithm descriptions with multiple publishing standards, the tabs are listed from newest to oldest version.</p><p> <strong>Changed: Version information has been renamed to release notes</strong><br /> In the colophon, version information has been renamed to release notes.</p><p> <strong>Fixed: No more HTML code in Excel downloads</strong><br /> When downloading algorithm descriptions in an Excel file, formatting code was unintentionally included. This is technical code intended for displaying text on the website. This error has now been resolved.</p><h3> For editors:</h3><p> <strong>New: Create algorithm description faster with the help of a template</strong><br /> You can now use templates in the web form to fill out your algorithm description faster. To start with, 9 templates have been made available by suppliers who mainly supply to municipalities.<br /><br /> <strong>Adjusted: Publication standard version 1.0 now mandatory for new algorithm descriptions</strong><br /> The final version of the Publication Standard was adopted in December 2023. It is now no longer possible to start new descriptions in an older version of the standard. You can still edit existing descriptions in an older standard.</p><p></p><h2> January 2024</h2><h3> For visitors:</h3><p> <strong>Improved: The download options have been expanded</strong><strong><br /></strong> All algorithm descriptions can be downloaded from the register. This can be done for all algorithm descriptions simultaneously in one very large file. This can also be done separately per algorithm description. It is now possible to download algorithm descriptions in both Dutch and English. And this can be done as an Excel file or as a CSV file. If you choose a CSV file, you can also open it in Excel, but to open algorithm descriptions in Excel it is more convenient to download them as an Excel file.</p><p> <strong>New: Search terms are highlighted in yellow in the search results</strong><strong><br /></strong> When searching, you may sometimes see your search term highlighted in yellow in the search results. This is true if the term appears in the short description. If the term is found elsewhere in an algorithm description, you will see that algorithm in the search results, but not with the search term highlighted in yellow.</p><p> <strong>Improved: Filter options now also work in the English view</strong><strong><br /></strong> Filter options in the 'Algorithms' page now also work in English.</p><p> <strong>Improved: Use search terms to filter</strong><strong><br /></strong> You can now combine search terms with other filter options for a more targeted search.</p><p> <strong>New: Menu option: 'Organizations'</strong><strong><br /></strong> A new option 'Organizations' has been added in the main menu at the top. Here you will now find a list of all organizations that have published, with a summary of their algorithm descriptions. Organizations now have a new option to provide their own general explanation. They can also provide an explanation as to why they do not publish on the Algorithm Register.</p><p> <strong>New: Information page: 'Report vulnerability'</strong><br /> The footer contains a link to a new page with instructions on how to report a vulnerability in the security of the website.</p><p> <strong>Fixed: Organizations are now sorted alphabetically in lists</strong><strong><br /></strong> Organizations are now listed in alphabetical order by default everywhere.</p><p> <strong>Adjusted: The 'Web Archive' link has been renamed to 'Archive'</strong><br /> In the footer there is a link to the website's daily updated web archive. The name of this link has been changed to 'Archive'. This is to match the naming on other government sites.</p><h3> For editors:</h3><p> <strong>New: Writing help is available for spelling and language errors</strong><strong><br /></strong> When completing the web form, a spelling check is now automatically performed as in a word processor and suggestions for improvements are given.</p><p> <strong>New: You can now add information about your organization</strong><strong><br /></strong> You now have the option to provide additional information about how the organization deals with algorithms and their publication on the Algorithm Register. There is also an option to add a link to an information page on the organization's own website. Ask your contact person to help you use it for the first time.</p><h2> December 2023</h2><h3> For visitors:</h3><p> <strong>The search results are displayed more compactly</strong><br /> The visitor now sees more search results at a glance.</p><p> <strong>Search suggestions are displayed</strong><br /> The visitor will see suggestions below the search bar based on the letters typed.</p><p> <strong>The web archive has been added to the footer</strong><br /> For more information click <a href=\"https://algoritmes.overheid.nl/nl/footer/archief\">here</a>.</p><p> <strong>The register is automatically translated into English</strong><br /> International visitors can now also use the Algorithm Register.</p><p> <strong>The download button</strong><br /> The button that used to download a CSV file now downloads an Excel file.</p><h3> For editors:</h3><p> <strong>Organization page</strong><br /> In the organization details page, the editor can describe additional information about how they handle algorithms and their publication.</p><p> <strong>Technical errors that occurred when downloading an algorithm description have been resolved</strong><br /> Where the editor could previously leave fields empty or incomplete and save them, he now receives an error message. This error message states which field still requires action.</p><div><h2> November 2023</h2></div><div><h3> For visitors:</h3><p> <strong>The search engine has been updated</strong><br /> You can now search for combinations of keywords, spelling errors, abbreviations and synonyms.</p><p> <strong>The search results are divided into organization types</strong><br /> On the left side of the search results, the user is given the option to choose an organization type and sees an overview of the selected filters.</p><h3> For editors:</h3><p> <strong>The editor sees how far the web form has been completed</strong><br /> Based on a progress bar above the input form, the editor can see how complete the algorithm description is.</p><p> <strong>The final version of the Publication Standard is available<br /></strong> Algorithm descriptions on the register have a fixed text structure: the Publication Standard. Previously, this standard was still under development and various concept versions were used side by side. The final 1.0 version became available in December. It is best for the editor to publish new algorithm descriptions directly in this new format. The editor can migrate existing descriptions from the old format to the new format. This is not necessary immediately, but it is recommended. In this way, the editor helps to improve the quality of the register. Migration assistance is available.</p></div></div><div><h2> October 2023</h2></div><div><h3> For editors:</h3></div><div><p> <strong>The download options are extensive<br /></strong> The algorithm descriptions can be downloaded from the web form in single form and in bulk in Microsoft Word, in Microsoft Excel, or as a PDF.</p></div><div><p> <strong>The publication process has been accelerated<br /></strong> Publishing an algorithm description now takes place immediately after release from the editor.</p></div><div><p> <strong>The web form includes version control<br /></strong> Editors can now see who last edited the algorithm description(s) on the web form overview page.</p></div><div><p> <strong>The web form has moved<br /></strong> After a test period, the web form was moved to <a href=\"https://algoritmes.overheid.nl/webformulier\" target=\"_blank\">https://algorithms.overheid.nl/webvorm</a>. This also applies to the delivery API, which has been moved to <a href=\"https://algoritmes.overheid.nl/aanleverapi\" target=\"_blank\">https://algorithms.overheid.nl/aanleverapi</a>.</p></div>" + }, + "Footer: Zelf aan de slag": { + "pageTitle": "Get started yourself", + "content": "More information will follow." + }, + "Footer: Registreer je algoritme": { + "pageTitle": "Register your algorithm", + "content": "<h1>Register your algorithm</h1>\n<div><p>Do you work for a government and would you like to register an algorithm? Then make an appointment for an introduction or connection session via <a href=\"mailto:algoritmeregister@minbzk.nl\" target=\"_blank\" rel=\"noopener\">algorithmregister@minbzk.nl</a>. We are happy to help you!</p></div><div><p>And check the online community for <a href=\"https://algoritmes.pleio.nl/wiki/view/828fc5d8-8bbb-4b85-ac37-ea5f30f4055f/handige-hulpmiddelen-algoritmeregister\" target=\"_blank\" rel=\"noopener\">resources</a> and <a href=\"https://algoritmes.pleio.nl/wiki/view/78bb37a7-6a8a-4829-8d6d-b630ed914f18/veelgestelde-vragen\" target=\"_blank\" rel=\"noopener\">FAQs</a>. Check at least the following information there:</p></div><div><ol role=\"list\"><li role=\"listitem\"><p><a href=\"https://algoritmes.pleio.nl/wiki/view/df456f50-7225-4109-a143-9738ce130a1f/in-5-stappen-naar-publicatie-in-algoritmeregister\" target=\"_blank\" rel=\"noopener\">Publishing in 5 steps</a></p></li><li role=\"listitem\"><p><a href=\"https://algoritmes.pleio.nl/wiki/view/2bcdf820-ce62-4249-95f7-d1a13fb6e1c9/handleiding-publicatiestandaard\" target=\"_blank\" rel=\"noopener\">Guidelines for the Algorithm Register</a></p></li><li><a href=\"https://algoritmes.pleio.nl/wiki/view/6c4da291-2636-4dde-b234-ad057ee528ad/sjablonen-leveranciers\" target=\"_blank\" rel=\"noopener\">Available templates</a></li></ol></div><div><p>Here you will find everything you need.</p></div>" + }, + "Algoritmes-overzicht": { + "title-tag": "Overview of algorithm descriptions", + "title-tag-on-append": ": Search for algorithm descriptions", + "meta-description": "Search here for algorithm descriptions of all Dutch government organizations." + }, + "Organisatie-overzicht": { + "title-tag": "Organization overview", + "title-tag-on-append": ": Search for organisations", + "meta-description": "Search here for information about organizations' algorithm descriptions." + }, + "Organisatie-details": { + "meta-description": "{org-name} publishes {algorithm-description-count} algorithms." + }, + "Dashboard": { + "title-org-top-20": "Organisations top 20" + }, + "Organisatie niet gepubliceerd": { + "pageTitle": "First publication in preparation", + "content": "<h1>First publication in preparation</h1>\n<p>The organization you were looking for is active on the Algorithm Register but has not yet published. Are you part of this organization yourself and would you like to learn more about it? Please contact us.<br><br><a href=\"{localised_url}/footer/contact\">Contact</a></p>" + }, + "Organisatie niet aangesloten": { + "pageTitle": "Not on the Algorithm Register?", + "content": "<h1>Not on the Algorithm Register?</h1>\n<p>The organization you were looking for is not yet active on the register. Are you part of this organization yourself and would you like to get started? We are happy to help you!<br><br><a href=\"{localised_url}/footer/registreer-je-algoritme\">Register your algorithm</a></p>" + } + }, + "nl": { + "Footer: Contact": { + "content": "<h1>Neem contact op</h1>\n<p>Deze website is in ontwikkeling. Heb je vragen over het Algoritmeregister? Of ben je een (overheids)professional en wil jij of je organisatie <a href=\"meedoen\">meedoen aan de verdere ontwikkeling</a> van het Algoritmeregister? Kijk naar de informatie op: <a href=\"over\">Over het Algoritmeregister</a> en de <a href=\"vragen\"> Veelgestelde vragen</a>.</p>\n<p>Voor vragen, neem contact op met: <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a>.</p>", + "pageTitle": "Contact" + }, + "Footer: Vragen": { + "question14": "Hoe blijf ik op de hoogte van ontwikkeling van het Algoritmeregister?", + "question15": "Is het Nederlandse Algoritmeregister ook het register zoals beschreven in de Europese AI Verordening?", + "question16": "Komt er wetgeving rond het Algoritmeregister?", + "question17": "Staat jouw vraag er niet bij?", + "group1": "A - Algemene informatie", + "group3": "C - Klachten of bezwaren", + "group5": "E - Wetgeving en de Europese AI-Verordening", + "content": "<h1>Veelgestelde vragen</h1>\n<h2>1. Wat is het Algoritmeregister?</h2>\n<p class=\"mb-4\">Op het Algoritmeregister staat informatie over algoritmes die de overheid gebruikt. Zo is deze informatie vindbaar en beschikbaar voor burgers, hun belangenbehartigers, de media en toezichthouders.</p>\n<h2>2. Wat is het doel van deze website?</h2>\n<p class=\"mb-4\">Het doel is informatie over algoritmes voor iedereen centraal vindbaar te laten zijn. Op die manier kan iedereen zien in welke impactvolle processen algoritmes gebruikt worden. De informatie geeft de mogelijkheid om toezicht te houden op algoritmes. Zo kan gekeken worden naar discriminatie en onrechtmatigheid, maar ook de wenselijkheid. Wanneer mensen het niet eens zijn met het gebruik van algoritmes, geeft het Algoritmeregister aan waar bezwaar gemaakt kan worden.</p>\n<h2>3. Wat zijn algoritmes?</h2>\n<p class=\"mb-4\">Een algoritme is een set van regels en instructies die een computer uitvoert. Algoritmes helpen bijvoorbeeld om problemen te analyseren maar ook om beslissingen te nemen. Zo kan de overheid grote hoeveelheden gegevens (data) combineren en analyseren (bron: Algemene Rekenkamer).</p>\n<p class=\"mb-4\">Wil je meer weten over algoritmes? <a href=\"https://www.mediawijsheid.nl/algoritmes/\" target=\"_blank\" rel=\"noopener\"> Bekijk de informatie op Mediawijsheid<img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link naar externe pagina\"></a> of bekijk de (gratis) <a href=\"https://ethiek.ai-cursus.nl/home\" target=\"_blank\" rel=\"noopener\">Nationale AI-cursus<img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link naar externe pagina\"></a>.</p>\n<h2>4. Ik heb een vraag over een algoritme op deze site, waar kan ik deze stellen?</h2>\n<p class=\"mb-4\">Het kan natuurlijk ook dat je na het lezen van de registratie van een algoritme vragen hebt over een specifiek algoritme. Die kun je stellen aan de ‘eigenaar’ van het algoritme. De contactgegevens vind je in de beschrijving van het algoritme. Alle overige vragen kun je sturen naar: <a href=\"mailto:algoritmeregister@minbzk.nl\" target=\"_blank\" rel=\"noopener\"> algoritmeregister@minbzk.nl<img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-mail.8d4dd9cb.svg\" alt=\"Link naar een e-mailadres\"></a>.</p>\n<h2>5. Staan alle algoritmes van de overheid op deze website?</h2>\n<p class=\"mb-4\">Op dit moment stelt een kopgroep van overheidsorganisaties hun algoritmes beschikbaar via deze website. In 2023 publiceren nog meer overheidsorganisaties in het Algoritmeregister. Voorlopig gaat het aantal algoritmes op deze website dus nog groeien.</p>\n<p class=\"mb-4\">In de toekomst wordt het wettelijk verplicht algoritmes publiekelijk beschikbaar te maken. Daardoor komen de meeste relevante algoritmes in het Algoritmeregister. Hierop zullen gerechtvaardigde uitzonderingen komen. Denk aan opsporing, rechtshandhaving, defensie of inlichtingenverzameling. De exacte kaders worden nog uitgewerkt.</p>\n<h2>6. Bij sommige algoritmes staat meer informatie dan bij andere algoritmes?</h2>\n<p class=\"mb-4\">Momenteel gebeurt het vullen van het Algoritmeregister vrijwillig door overheidsorganisaties. Niet elke organisatie heeft ervoor gekozen alle informatie te publiceren. Uiteindelijk wordt er wettelijk vastgelegd welke informatie verplicht aangeleverd moet worden, en welke informatie optioneel is.</p>\n<h2>7. Wie werken er aan het Algoritmeregister?</h2>\n<p class=\"mb-4\">De ontwikkeling van het Algoritmeregister is begonnen met het consortium Publieke controle op algoritmes. Daarin werkten overheidsorganisaties aan beleidsinstrumenten voor een verantwoorde inzet van algoritmes. Een van de resultaten is onderzoek naar het Algoritmeregister. Het ministerie van Binnenlandse Zaken en Koninkrijksrelaties heeft voortgebouwd op deze opgedane kennis om tot dit Algoritmeregister te komen. Voor het ontwikkelen van de website werkt het ministerie samen met ICTU. In het Algoritmeregister is te zien welke organisaties op dit moment algoritmes aangeleverd hebben voor het Algoritmeregister. Kijk daarvoor onder het kopje Algoritmes, hier staan alle organisaties die nu één of meerdere algoritmes hebben aangeleverd.</p>\n<h2>8. Hoe verhouden de algoritmeregisters van overheidsorganisaties zich tot deze website?</h2>\n<p class=\"mb-4\">Het Algoritmeregister is de centrale vindplek voor alle algoritmes van de overheid. Sommige overheidsorganisaties hebben daarnaast ook een eigen algoritmeregister. Organisaties hebben daar de mogelijkheid om meer informatie te bieden of op andere wijze. In de huidige versie is de informatie handmatig overgenomen. In 2023 wordt gewerkt aan de mogelijkheid van automatische uitwisseling.</p>", + "pageTitle": "Veelgestelde vragen", + "question1": "Wat is het Algoritmeregister?", + "answer1": "<p>In het Algoritmeregister staat informatie over algoritmes die de overheid gebruikt. Zo is deze informatie vindbaar en beschikbaar voor burgers, hun belangenbehartigers, de media en toezichthouders.</p>", + "question2": "Waarvoor gebruikt de overheid algoritmes?", + "answer2": "<p>Algoritmes kunnen helpen om grote hoeveelheden gegevens efficiënt te verwerken en betere inzichten te geven. Algoritmes helpen zo om die dienstverlening te verbeteren, en tijd en geld te besparen. De overheid gebruikt algoritmes om gegevens te analyseren, beslissingen te nemen en taken te automatiseren. Voorbeelden van algoritmes die de overheid gebruikt zijn verkeersmonitoring en het online aanvragen van overheidsproducten.</p>", + "question3": "Van welke algoritmes horen de beschrijvingen in het Algoritmeregister thuis?", + "answer3": "<p>In ieder geval horen in dit register thuis:</p>\n<ul>\n<li>Informatie over algoritmes die door de voorgenomen Europese wetgeving (de AI-Verordering) als hoogrisico worden aangeduid. Dat zijn algoritmes die elementen van autonomie (zelfstandigheid) kennen. In het Nederlands noemen we dat meestal (deels) zelflerende algoritmes. Het algoritme moet daarnaast operationeel zijn in één van de toepassingsgebieden van Annex III. Denk aan gebieden als biometrie, kritieke infrastructuur en werkgelegenheid. <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">Meer over de risicoclassificatie in de AI-Verordening</a> en <a href=\"https://spanish-presidency.consilium.europa.eu/en/news/council-parliament-deal-first-worldwide-rules-artificial-intelligence/\" target=\"_blank\">de wijzigingen daarop</a>.</li>\n<li>Informatie over algoritmes die direct impact hebben op de betrokkenen. Ze dragen bijvoorbeeld bij aan een besluit dat van invloed is op iemands rechten, op iemands juridische status of zijn rechten vanuit een overeenkomst. Denk aan: het opleggen van boete of het toekennen of weigeren van een subsidie.</li>\n</ul>\n<p>Daarnaast zijn er nog een aantal andere redenen om algoritmes volledig te publiceren. Bijvoorbeeld wanneer algoritmes veel maatschappelijke aandacht krijgen. Er zijn ook redenen om niet alle informatie over een algoritme te publiceren, bijvoorbeeld wanneer een algoritme wordt gebruikt voor opsporing. Idealiter publiceert de overheid dan het deel van de informatie over het algoritme dat wel gepubliceerd kan worden. Meer over <a href=\"https://algoritmes.pleio.nl/wiki/view/19bb6e9e-7a97-43d5-bef3-b1d66e59f4ff/handreiking-algoritmeregister\" target=\"_blank\">selectie van algoritmes voor het register </a>staat in de handreiking.</p>", + "question4": "Welke organisaties publiceren over hun algoritmes in het Algoritmeregister?", + "answer4": "<p>In het Algoritmeregister staat informatie over algoritmes van veel verschillende overheidsorganisaties. Regelmatig komen daar nieuwe organisaties bij.</p>\n<p>In de toekomst wordt publicatie van algoritmes <a href=\"{localised_url}/footer/vragen#question3\">die in dit register thuishoren</a> verplicht voor alle overheidsorganisaties; dus de rijksoverheid, provincies, gemeenten, waterschappen. Nog niet duidelijk is of andere organisaties uit de publieke sector zoals zorg en onderwijs ook onder deze verplichting gaan vallen. Dat wordt duidelijker op weg naar wetgeving in 2025. Zij zijn wel al welkom om hun algoritmes in het Algoritmeregister te publiceren.</p>", + "question5": "Hoe zit het met mijn privacy bij het gebruik van algoritmes?", + "answer5": "<p>Sommige algoritmes gebruiken persoonsgegevens voor hun taak. Persoonsgegevens zijn gegevens die informatie bevatten die kan worden gebruikt om een individu te identificeren, zoals naam, adres, geboortedatum of financiële informatie. Er zijn veel eisen aan het gebruik van persoonsgegevens, ook door de overheid. Veel eisen staan in wetgeving, zoals de AVG. In het Algoritmeregister staat informatie over welke gegevensbronnen het algoritme gebruikt. En over welke toetsen zijn uitgevoerd voordat het algoritme in gebruik werd genomen, bijvoorbeeld een privacytoets (DPIA). De <a href=\"https://www.autoriteitpersoonsgegevens.nl/\" target=\"_blank\">Autoriteit Persoonsgegevens</a> houdt toezicht op naleving van de privacy-eisen en sinds 1 januari ook <a href=\"https://www.autoriteitpersoonsgegevens.nl/actueel/algoritmetoezicht-ap-van-start\" target=\"_blank\">toezicht op algoritmes.</a></p>", + "question6": "Hoeveel algoritmes gebruikt de overheid en over hoeveel komt er informatie in dit register?", + "answer6": "<p>We staan aan het begin van een proces waarin de overheid actief informatie over algoritmes openbaar maakt. Het aantal algoritmes in het register is nog niet het totaal aantal algoritmes dat de overheid gebruikt. Op dit moment is er weinig zicht op het totale aantal algoritmes bij de overheid. Het is dus ook niet bekend over hoeveel algoritmes de informatie uiteindelijk in het register terecht hoort te komen. In de loop der jaren zal er steeds meer inzicht ontstaan in het aantal en de aard van algoritmes bij de overheid.</p>", + "question7": "Welke informatie over algoritmes haal ik uit het Algoritmeregister?", + "answer7": "<p>De <a href=\"https://algoritmes.pleio.nl/wiki/view/543701c4-318c-4186-b144-de72feca1065/handleiding-algoritmeregister-publicatiestandaard\" target=\"_blank\">Publicatiestandaard</a> beschrijft de informatie die nodig is om een Algoritme te beschrijven. Deze Publicatiestandaard wordt steeds verder verbeterd zodat het beter aansluit op de praktijk, in overleg met overheden, belanghebbenden en experts. De velden uit de publicatiestandaard zijn daarom nog niet verplicht. Gevolg is dat bij sommige algoritmes in het register, nog niet alle velden zijn ingevoerd. Overheidsorganisaties worden gestimuleerd om zoveel mogelijk informatie over hun algoritmes te publiceren.</p>", + "question8": "Hoe vind ik een algoritme in dit register?", + "question9": "Wat doe ik als het algoritme dat ik zoek er niet instaat?", + "answer9": "<p>Neem dan contact op met de organisatie die het algoritme inzet, en vraag om toelichting op het besluit of het proces. Bij de meeste organisaties staan de contactgegevens in de beschrijving van het algoritme. Kom je daar niet uit? Neem dan contact op met <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a> dan verwijzen wij je gericht door. </p>", + "question10": "Wat doe ik als de informatie over het algoritme niet duidelijk is of als er informatie ontbreekt?", + "answer10": "<p>Vragen over een beschrijving of missende informatie, stel je aan de organisatie die het algoritme heeft gepubliceerd. Bij de meeste algoritmes in het register staan de contactgegevens in de beschrijving. Kom je daar niet uit? Neem dan contact op met <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a>, dan verwijzen wij je gericht door.</p>", + "question11": "Waar kan ik een klacht indienen of bezwaar maken tegen een algoritme van de overheid in dit register?", + "answer11": "<p>Bezwaar maken en een klacht indienen, doe je bij de organisatie die het algoritme inzet. (Hoe je dat doet, lees je in dit antwoord [link FAQ 10]. Dat is altijd de eerste stap. Kom je er samen niet uit, dan kun je hulp krijgen. Bijvoorbeeld bij de Nationale Ombudsman. Meer over wat de <a href=\"https://www.nationaleombudsman.nl/over-de-nationale-ombudsman\" target=\"_blank\">Nationale Ombudsman</a> kan betekenen. Direct naar <a href=\"https://www.nationaleombudsman.nl/klacht-indienen/uw-klacht\" target=\"_blank\">het klachtenformulier</a>.</p>", + "question12": "Kan ik mij afmelden voor het gebruik van algoritmes?", + "answer12": "<p>Je kunt je niet afmelden voor het gebruik van algoritmes. Wel kun je in dit register informatie vinden over hoe het algoritme werkt en wat het doet. En je kunt <a href=\"#question10\">vragen om een toelichting</a> als je een beslissing van een algoritme niet snapt of als je denkt dat het niet klopt. Je kunt <a href=\"#question11\">bezwaar maken</a> als je denkt dat het algoritme fouten heeft gemaakt die jou en/of anderen hebben benadeeld.</p>", + "answer15": "<p>Het Nederlandse Algoritmeregister komt voort uit een Nederlandse wens, gebaseerd op een aantal rapporten, kamermoties en adviezen om tot een register te komen voor meer transparantie vanuit de Nederlandse overheid. </p>\n<p>De <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">concept AI-Verordening</a> gaat waarschijnlijk verplicht stellen dat hoogrisico AI-systemen worden gedocumenteerd. Informatie over deze algoritmes komt uiteindelijk in dit Algoritmeregister terecht. Om te voldoen aan de eisen van de wet wordt op den duur de publicatiestandaard aangepast. Er zijn ook verschillen: niet alle beschrijvingen in het Algoritmeregister gaan over hoogrisico en/of AI-systemen. Er staan ook niet-zelflerende algoritmes en/of algoritmes met een lager risicokarakter in dit register. Dat blijft ook zo. Het register zoekt wel de aansluiting op de AI-Verordening Zodat het makkelijk wordt voor overheden die in het Nederlandse register staan, ook te voldoen aan de verplichtingen vanuit de AI-Verordening. Hier is het ook wel wachten op hoe de Europese Databank eruit gaat zien. Het hangt van de Europese commissie af, de Nederlandse overheid is daarover in gesprek.</p>", + "answer16": "<p>Er wordt onderzocht of aanvullende wetgeving nodig is. Dit wordt bezien in samenhang met de EU-wetgeving. Dat is aangekondigd in de <a href=\"https://www.rijksoverheid.nl/documenten/kamerstukken/2022/12/21/kamerbrief-over-het-algoritmeregister\" target=\"_blank\">Kamerbrief</a> van december 2022. Dit duurt zeker nog tot 2025.</p>", + "question13": "Hoe doe ik mee als overheidsorganisatie?", + "answer13": "<p>Doe mee en publiceer de informatie over de algoritmes van je organisatie. Denk ook mee over de verdere ontwikkeling van dit Algoritmeregister. <a href=\"https://algoritmes.pleio.nl/\">Sluit aan bij de community</a>.</p>", + "answer17": "<p>Stel je vraag via <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a>.</p>", + "group2": "B - Gebruik van het Algoritmeregister", + "group4": "D - Meedoen | op de hoogte blijven", + "group6": "F - Andere vraag", + "answer8": "<p>Er zijn twee mogelijkheden. Je kunt allereerst zoeken op organisatie, woord of thema. Bijvoorbeeld: Gemeente X, Parkeren of Sociale Zekerheid. Je krijgt dan een overzicht van de algoritmes die door deze gemeente, met dit woord in de omschrijvingen, of in dit thema zijn gepubliceerd. Een tweede mogelijkheid is om door <a href=\"https://test.algoritmeoverheid.nl/algoritme\">alle algoritmes in het register</a> te ‘bladeren’. </p>", + "answer14": "<ul>\n<li>We organiseren regelmatig open bijeenkomsten. Bekijk daarvoor de <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">agenda</a> op de Pleio pagina rond algoritmes.</li>\n<li>Op <a href=\"http://algoritmes.pleio.nl/\" target=\"_blank\">algoritmes.pleio.nl</a> vind je nieuws, de agenda en een aantal community’s waar je over een bepaald onderwerp op de hoogte blijft en mee kunt praten.</li>\n<li>Abonneer je op de nieuwsbrief en krijg regelmatig een update van het algoritmenieuws in je mailbox. <a href=\"https://algoritmeregister.email-provider.eu/memberforms/subscribe/standalone/form/?a=1pjwwoyxrs&l=vdfr1sbovb\" target=\"_blank\">Meld je aan.</a></li>\n<li>Algoritmes.overheid.nl is ontwikkeld met open source software. De code en bijvoorbeeld de publicatiestandaard, vind je op <a href=\"https://github.com/MinBZK/Algoritmeregister\" target=\"_blank\">de GitHub pagina van het ministerie van BZK</a>.</li>\n</ul>", + "question18": "Wie is verantwoordelijk voor algoritmes en AI binnen een organisatie?", + "answer18": "<p>Iedere organisatie kan zelf bepalen wie er verantwoordelijk is voor algoritmes en AI. En de registratie in het Algoritmeregister. In de praktijk zien we vaak dat deze verantwoordelijkheid is belegd bij een CISO (Chief Information Security Officer), CIO (Chief Information Officer), dataspecialist, functionaris gegevensbescherming (fg) of soortgelijke functies. Wil je aan de slag? Begin dan om deze mensen in je organisatie bij elkaar te brengen. Een eerste stap is vaak om de algoritmes die de organisatie gebruikt te inventariseren. Als je niet precies weet welke algoritmes je gebruikt, kun je ook checken bij de leverancier van je applicaties. Check ook meteen of er al een <a href=\"https://algoritmes.pleio.nl/wiki/view/6c4da291-2636-4dde-b234-ad057ee528ad/sjablonen-leveranciers\" target=\"_blank\">sjabloon</a> beschikbaar is voor registratie in het register van het algoritme. Qua eigenaarschap wordt de verantwoordelijkheid voor algoritmes in sommige organisaties bij de CISO / CIO neergelegd. Andere organisaties kiezen ervoor om de afdeling waar het algoritme betrekking op heeft (bijvoorbeeld parkeren) verantwoordelijk te maken (in dit geval afdeling mobiliteit). Dat is iets wat je intern moet bespreken.</p>", + "question19": "Wat is de relatie tussen het Algoritmekader en het Algoritmeregister?", + "answer19": "<p>In het Algoritmekader vind je een overzicht van alle vereisten waaraan algoritmen moeten voldoen volgens wet- en regelgeving. Ook staan er voorbeelden in van maatregelen die je helpen om te voldoen aan die regelgeving. Tenslotte worden goede voorbeelden opgesomd van hoe je aan die vereisten kunt voldoen. Publicatie van algoritmes in het Algoritmeregister is een van de maatregelen die we als overheid nemen om te zorgen voor meer transparantie.</p>" + }, + "Footer: Privacyverklaring": { + "content": "<h1>Privacy</h1>\n<p>Deze website maakt gebruik van analytische cookies. Cookies zijn kleine tekstbestanden die websites op jouw computer opslaan. Daarmee is jouw computer te herkennen tijdens uw bezoek. Deze informatie helpt het bouwteam om de site te verbeteren. Analytische cookies geven antwoord op bijvoorbeeld de volgende vragen:</p>\n<ul>\n<li>Is de bezoeker nieuw of heeft de bezoeker de site al eerder bezocht</li>\n<li>Welke pagina's zijn tijdens het bezoek geraadpleegd</li>\n<li>Van welke site is de bezoeker gekomen</li>\n<li>Heeft de bezoeker de site meteen weer verlaten ('bouncing').</li>\n</ul>\n<p>Deze cookies worden niet gebruikt om een profiel aan te maken of jou verder te volgen. Deze website plaatst geen cookies van derde partijen (third-party cookies).</p>\n<h2>Gegevens via e-mail</h2>\n<p>Persoonlijke informatie die via e-mail bij het Algoritmeregister bekend wordt, behandelt het team vertrouwelijk. Dergelijke persoonlijke gegevens bewaart het team alleen voor de duur van de behandeling van het bericht. Nadat je antwoord hebt gekregen of als er geen antwoord gevraagd wordt, slaat het team alleen de vraag en het antwoord op. Op verzoek verwijdert het team ook de vraag en het antwoord.</p>", + "pageTitle": "Privacy" + }, + "Footer: Toegankelijkheid": { + "content": "<h1>Toegankelijkheid</h1>\n<p>Bij het ontwikkelen van deze website worden de wensen en eisen voor een toegankelijke website direct ingebouwd. Het bouwteam van het Algoritmeregister is getraind in digitale toegankelijkheid. Een onafhankelijke toegankelijkheidsexpert levert regelmatig advies.</p>\n<p>Deze website voldoet aan WCAG 2.1 niveau AA, de Web Content Accesibility Guidelines.</p>\n<p>Dit betekent dat de website gebruikt kan worden door iedereen, inclusief mensen met een functiebeperking.</p>\n<p>Voor meer informatie:</p>\n<ul>\n<li><a href=\"https://www.toegankelijkheidsverklaring.nl/register?w=algoritmes\" target=\"_blank\"> Register van Toegankelijkheidsverklaringen van de overheid</a>.</li>\n<li><a href=\"https://www.toegankelijkheidscertificaat.nl/algoritmes.overheid.nl/\" target=\"_blank\"> Toegankelijkheidscertificaat</a>.</li>\n</ul>", + "pageTitle": "Toegankelijkheid" + }, + "Footer: Over": { + "content": "<h1>Over het Algoritmeregister</h1>\n<p>De regering wil dat de overheid algoritmes verantwoord gebruikt. Mensen moeten erop kunnen vertrouwen dat algoritmes voldoen aan de waarden en normen van de samenleving. En er moet uitleg zijn over hoe algoritmes werken. Wanneer de overheid open is over algoritmes en hun toepassing, kunnen burgers, organisaties en media haar kritisch volgen en controleren of ze de wet en de regels volgt.</p>\n<h2>Verantwoord algoritmegebruik</h2>\n<p>Onder andere de volgende trajecten dragen bij aan verantwoord algoritmegebruik:</p>\n<ol>\n<li>Het Algoritmeregister helpt om algoritmes vindbaar te maken, beter uit te leggen en hun toepassing en impact begrijpelijk te maken.</li>\n<li><a href=\"https://www.autoriteitpersoonsgegevens.nl/themas/algoritmes-ai/coordinatie-toezicht-algoritmes-ai\" target=\"_blank\">De Algoritmetoezichthouder</a> (de Autoriteit Persoonsgegevens) coördineert de controle op algoritmes: voldoen de algoritmes van de overheid aan alle regels die daarvoor gelden? </li>\n<li>Het ministerie van BZK werkt aan het <a href=\"https://algoritmes.pleio.nl/page/view/3877b524-e174-40c6-bcac-f3db875867e1/algoritmekader\" target=\"_blank\">Algoritmekader</a>. Dat maakt voor overheden duidelijk welke eisen er gelden voor algoritmes en hoe ze ervoor kunnen zorgen dat hun algoritmes daaraan kunnen voldoen.</li>\n<li>Wetgeving: er komt een wettelijke verplichting voor transparantie van algoritmes. Dat is aangekondigd in de <a href=\"https://www.rijksoverheid.nl/documenten/kamerstukken/2022/12/21/kamerbrief-over-het-algoritmeregister\" target=\"_blank\">kamerbrief van december 2022</a>.</li>\n</ol>\n<h2>Doelen van het Algoritmeregister</h2>\n<p>Wat willen we bereiken met het Algoritmeregister? De doelen van het Algoritmeregister hangen met elkaar samen. Hieronder worden de doelen kort toegelicht. Een uitgebreidere toelichting op de doelen vind je in de <a href=\"https://algoritmes.pleio.nl/wiki/view/19bb6e9e-7a97-43d5-bef3-b1d66e59f4ff/handreiking-algoritmeregister\" target=\"_blank\">Handreiking Algoritmeregister</a>. </p>\n<div>\n<div>\n<ol role=\"list\">\n<li role=\"listitem\">\n<p><strong>Vertrouwen in de overheid vergroten</strong><br />De overheid kan alleen effectief maatschappelijke meerwaarde bieden, als er vertrouwen in de overheid is en mensen zich gehoord en betrokken voelen. Het Algoritmeregister moet helpen het vertrouwen in de overheid te verbeteren. </p>\n</li>\n<li role=\"listitem\">\n<p><strong>Versterken van de positie van burgers en bedrijven</strong><br />Met het Algoritmeregister krijgen burgers en bedrijven meer informatie in handen over hoe processen van de overheid werken en welke keuzes zijn gemaakt. </p>\n</li>\n<li role=\"listitem\">\n<p><strong>Meer duidelijkheid over algoritme- en AI-gebruik (Demystificatie)</strong><br />Voor veel mensen is onduidelijk wat een algoritme is en hoe deze effect heeft op zijn of haar leven. Het Algoritmeregister maakt inzichtelijk waar en hoe de overheid algoritmes en AI gebruikt. </p>\n</li>\n<li role=\"listitem\">\n<p><strong>Verantwoord handelen<br /></strong>De overheid moet op een verantwoorde manier handelen. Het Algoritmeregister maakt het handelen van de overheid meer openbaar.</p>\n</li>\n<li role=\"listitem\">\n<p><strong>Controleerbaarheid van de overheid vergroten</strong><br />Als de overheid laat zien wat ze doet, kunnen burgers en organisaties haar beter controleren. Het Algoritmeregister ondersteunt deze controle door de maatschappij.</p>\n</li>\n<li role=\"listitem\">\n<p><strong>Vergroten uitlegbaarheid</strong><br />Het vullen van het Algoritmeregister dwingt de overheid om haar besluitvormingsproces en de toepassing van algoritmes begrijpelijk uit te leggen. Daarnaast kunnen burgers hierdoor aangeven of een uitleg duidelijk is en of zij de werking hetzelfde ervaren.  </p>\n</li>\n<li role=\"listitem\">\n<p><strong>Transparanter zijn over het handelen</strong><br />Om openheid en controleerbaarheid te kunnen bieden, moet de overheid transparant zijn. Het zorgvuldig vullen van het Algoritmeregister is een van de manieren om dat te doen.</p>\n</li>\n</ol>\n</div>\n</div>\n<h2>Open ontwikkeling</h2>\n<p>In december 2022 is de eerste versie van het Algoritmeregister gelanceerd. Dit vormt de basis voor verdere ontwikkeling. Doordat we de oplossing in de praktijk brengen kunnen we kennis en ervaring op doen. We ontwikkelen het register open door, samen met experts, (potentiële) gebruikers en belanghebbenden. In 2023 kwam bijvoorbeeld het rapport ‘<a href=\"https://algoritmes.pleio.nl/attachment/entity/e59fb733-51ca-4811-9b6e-1d89d348a5b3\" target=\"_blank\">Doelgroepenanalyse Algoritmeregister</a>’ uit. Steeds meer verbeterpunten daaruit zijn verwerkt in deze website.  </p>\n<p>Wil je <a href=\"https://algoritmes.overheid.nl/nl/footer/meedoen\" target=\"_blank\">ook bijdragen</a> ?</p>\n<h2>Steeds meer algoritmes</h2>\n<p>Het Algoritmeregister is nog niet compleet. Het aanleveren van informatie over algoritmes is nu nog niet verplicht voor overheidsorganisaties. Die verplichting komt er wel aan. Voor die tijd publiceren steeds meer overheidsorganisaties informatie over hun algoritmes. Omdat zij open en transparant willen zijn over hun processen en de inzet van algoritmes daarbij.</p>\n<p>Lees bijvoorbeeld <a href=\"https://algoritmes.pleio.nl/news/view/68abf211-f915-4433-ab28-9d51b5aa443e/groningen-over-de-winst-maak-het-niet-te-ambtelijk\" target=\"_blank\">het verhaal van de gemeente Groningen</a>.</p>", + "pageTitle": "Over het Algoritmeregister" + }, + "Footer: Meedoen": { + "pageTitle": "Meedoen", + "content": "<h1>Meedoen</h1>\n<p>Je kunt meedoen als je <a href=\"meedoen#overheden\">bij de overheid werkt</a>, en als je <a href=\"meedoen#geinteresseerd\">niet bij de overheid werkt</a>.</p>\n<h2 id=\"overheden\">Overheden: doe mee en denk mee</h2>\n<p>Steeds meer overheden doen mee en publiceren in dit Algoritmeregister van de overheid informatie over hun impactvolle algoritmes en algoritmes met een hoog-risico volgens de aanstaande <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">Europese AI Verordening.</a></p>\n<p>Uitgangspunt is dat overheden zelf verantwoordelijk zijn voor het opstellen en het beheer van hun algoritmebeschrijvingen in het Algoritmeregister. Het Algoritmeregister ondersteunt daarbij met hulp, handreikingen, tools en een publicatiestandaard.</p>\n<h3>Hulp en handreikingen</h3>\n<ol>\n<li>Wil jouw organisatie meedoen en publiceren over de algoritmes die jullie gebruiken? Meer informatie daarover lees je op <a href=\"https://algoritmes.pleio.nl/\" target=\"_blank\">Algoritmes Pleio omgeving</a>, bijvoorbeeld in de <a href=\"https://algoritmes.pleio.nl/wiki/view/19bb6e9e-7a97-43d5-bef3-b1d66e59f4ff/handreiking-algoritmeregister\" target=\"_blank\">handreiking ‘Aan de slag met het algoritmeregister’</a>.</li>\n<li>Op algoritmes.pleio.nl vind je de planning en achtergrondinformatie. Bovendien vind je daar <a href=\"https://algoritmes.pleio.nl/page/view/67f8e63c-82b4-474e-a003-6ab8923d5184/praktijkverhalen-nieuw\" target=\"_blank\">praktijkverhalen van organisaties</a> over hoe en waarom ze zijn aangesloten op het Algoritmeregister. Bijvoorbeeld van <a href=\"https://algoritmes.pleio.nl/news/view/68abf211-f915-4433-ab28-9d51b5aa443e/groningen-over-de-winst-maak-het-niet-te-ambtelijk\" target=\"_blank\">de gemeente Groningen</a>.</li>\n<li><a href=\"https://algoritmes.pleio.nl/wiki/view/2bcdf820-ce62-4249-95f7-d1a13fb6e1c9/handleiding-algoritmeregister-publicatiestandaard\" target=\"_blank\">Bekijk de publicatiestandaard</a> – welke informatie lever je aan als je de beschrijving van een algoritme wilt publiceren?</li>\n<li>Je kunt ook contact met ons opnemen voor hulp via <a href=\"mailto:algoritmeregister@minbzk.nl\">algoritmeregister@minbzk.nl</a>.</li>\n</ol>\n<h3>Tools: zelf makkelijk publiceren</h3>\n<ol>\n<li>Je kunt aanleveren met <a href=\"https://algoritmes.pleio.nl/wiki/view/b22c2b86-ad44-458d-8c2b-b8ee99bcc077/account-aanmaken-en-gebruik-maken-van-het-algoritmeregister\" target=\"_blank\">een online formulier</a> of geautomatiseerd via een <a href=\"https://algoritmes.pleio.nl/wiki/view/6f6b7a6a-6ae9-4ae3-9f80-2d1137985091/handleiding-api-algoritmeregister\" target=\"_blank\">API.</a></li>\n<li>Ieder kwartaal presenteren we de nieuwe tools van de applicatie in openbare demo’s. Tussendoor blijf je op de hoogte in de sprintreviews. <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">Bekijk daarvoor de agenda</a>.</li>\n</ol>\n<h2 id=\"geinteresseerd\">Geïnteresseerd? Blijf op de hoogte en praat mee</h2>\n<p>Het Algoritmeregister, de hulpmiddelen en standaarden ontwikkelen we samen met stakeholders verder door. Werk je niet bij de overheid en praat en denk je graag mee? Dat kan op de volgende manieren.</p>\n<ol>\n<li>Doe mee met de <a href=\"https://algoritmes.pleio.nl\" target=\"_blank\">community</a> op het platform Pleio. <a href=\"https://account.pleio.nl/register/\" target=\"_blank\">Maak daarvoor een account aan</a>.</li>\n<li>De software van het register is open source. <a href=\"https://github.com/MinBZK/Algoritmeregister\" target=\"_blank\">Bekijk de code</a> op de GitHub van het ministerie van BZK.</li>\n<li>Openbare online bijeenkomsten: regelmatig zijn er bijeenkomsten over de stand van zaken en over specifieke thema’s. Bekijk de <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">agenda</a>.</li>\n<li>(Potentiële) gebruikers, maatschappelijke organisaties en experts denken mee over de verdere verbetering van het Algoritmeregister. Zodat het Algoritmeregister straks zoveel mogelijk aansluit op wat mensen nodig hebben. We houden daarvoor bijvoorbeeld veel interviews. In 2023 kwam het rapport '<a href=\"https://algoritmes.pleio.nl/attachment/entity/e59fb733-51ca-4811-9b6e-1d89d348a5b3\" target=\"_blank\">Doelgroepenanalyse Algoritmeregister</a>' uit. Steeds meer verbeterpunten daaruit zijn verwerkt in deze website. In 2024 volgt een tweede doelgroepenanalyse.</li>\n</ol>\n<div> </div>" + }, + "Footer: Over algoritmes": { + "pageTitle": "Over algoritmes", + "img_alt": "De verzameling 'alle algoritmes' bevat zowel deelverzameling 'Impactvolle algoritmes' (met invloed op mensen) als de deelverzameling 'AI'.", + "content": "<h1>Over algoritmes</h1>\n<div>\n<p><strong>Een algoritme is een set van regels en instructies die een computer geautomatiseerd volgt bij het maken van berekeningen om een probleem op te lossen of een vraag te beantwoorden (bron: Algemene Rekenkamer). Je komt algoritmes overal tegen, ook bij de overheid. </strong></p>\n</div>\n<div>\n<p>Wie regelmatig iets op internet doet, komt algoritmes tegen. Browsers, online bankieren, streamingdiensten als Netflix, en sociale media als Facebook en Instagram; algoritmes maken het mogelijk.</p>\n</div>\n<div>\n<p>Ook de overheid gebruikt algoritmes. Denk aan het online aanvragen van een subsidie. Het algoritme helpt dan om direct te beoordelen of je voldoet aan de voorwaarden of niet. Dit is een voorbeeld van een algoritme met duidelijke beslisregels en een eenduidig antwoord: ja of nee? </p>\n</div>\n<div>\n<p>Andere algoritmes kunnen trends herkennen. Ze laten bijvoorbeeld zien hoe criminaliteit zich ontwikkelt in een stad. Dat helpt de politie en gemeente de juiste maatregelen te nemen. Of ze analyseren (anoniem) gezondheidsgegevens, waarmee beleid voor de publieke gezondheid gemaakt kan worden. Soms zijn deze algoritmes ‘(zelf)lerend’. Dat wil zeggen dat ze getraind worden om zelf patronen te ontdekken. </p>\n</div>\n<div>\n<h2 role=\"heading\">Impactvolle algoritmes </h2>\n</div>\n<div>\n<p>Algoritmes zijn niet perfect. Ze maken soms fouten en er is een risico op vooroordelen, net als bij mensen. In het verleden is dat een paar keer flink misgegaan met geautomatiseerde processen bij de overheid. </p>\n</div>\n<div>\n<p>De overheid werkt aan verbetering. Dat doet ze bijvoorbeeld door algoritmes op een verantwoorde manier te ontwikkelen en te gebruiken. Belangrijk is dat de overheid transparant is over de impactvolle algoritmes die ze gebruikt. Zodat burgers en belanghebbenden inzicht hebben in algoritmes die invloed hebben op hun leven. Impactvol zijn bijvoorbeeld de algoritmes die rechtsgevolgen hebben voor mensen, of die zorgen dat de overheid mensen classificeert. Denk aan het identificeren van mensen die recht hebben op bepaalde voorzieningen, zodat de overheid proactief hulp kan bieden. </p>\n</div>\n<div>\n<h2 role=\"heading\">Zichtbaar en controleerbaar </h2>\n</div>\n<div>\n<p>Het Algoritmeregister wil de gebruikte impactvolle algoritmes zichtbaar en controleerbaar maken. Zodat jij als burger, belangenbehartiger, expert of journalist kan meekijken. Wanneer je vragen hebt, of denkt dat er iets niet klopt met een algoritme in dit register, kun je <a href=\"vragen#question10\">contact opnemen</a> met de organisatie die het algoritme beheert. Of: <a href=\"over\">Lees meer over het Algoritmeregister</a>.</p>\n</div>\n<div>\n<h2 role=\"heading\">Relatie met AI </h2>\n</div>\n<div>\n<p>Artificiële (of kunstmatige) intelligentie (AI) stelt computers en machines in staat intelligente taken uit te voeren. Een bekend voorbeeld daarvan is ChatGPT, een programma dat de vragen kan beantwoorden die je eraan stelt. Een ander voorbeeld is AI die een arts kan helpen om verschillende soorten kanker snel op te sporen. </p>\n</div>\n<div>\n<p>Algoritmes zijn een belangrijk onderdeel van AI, omdat ze computers en machines helpen om deze taken uit te voeren met wiskundige formules en patronen. AI kan daardoor bijvoorbeeld verbanden ontdekken en beelden analyseren. De relatie tussen AI en algoritmes is als volgt: AI bestaat uit algoritmes, maar niet alle algoritmes zijn onderdeel van AI. De eerdergenoemde niet-zelflerende algoritmes zijn bijvoorbeeld geen AI-systemen, maar je vindt ze wel terug in dit register. </p>\n</div>\n<div>\n<p>Dit verband tussen AI en algoritmes, zie je terug in het onderstaande schema. Een deel van alle algoritmes – al dan niet onderdeel van een AI-systeem – is impactvol. </p>\n</div>", + "content2": "<div>\n<p>Dat betekent twee dingen. Ten eerste: alle AI bestaat uit algoritmes, maar een klein deel van de algoritmes zijn onderdeel van een AI-systeem. Ten tweede: er is een overlap tussen impactvolle algoritmes en AI. Sommige AI is impactvol, andere AI niet. </p>\n</div>\n<div>\n<h2 role=\"heading\">Wetgeving </h2>\n</div>\n<div>\n<p>De Europese Unie werkt aan wetgeving specifiek voor AI: de AI Verordening. Meer over de <a href=\"vragen#question15\">relatie tussen het Algoritmeregister en de aankomende AI Verordening</a>.</p>\n</div>" + }, + "Footer: Zelf aan de slag": { + "pageTitle": "Zelf aan de slag", + "content": "Meer informatie volgt." + }, + "footer": { + "text": "Let op: deze website is in ontwikkeling. De informatie verandert vaak. Wil je", + "textForLink": "meehelpen?" + }, + "Home": { + "about": "<p><strong>Over algoritmes</strong></p>\n<p>Een algoritme is een set van regels en instructies die een computer geautomatiseerd volgt bij het maken van berekeningen om een probleem op te lossen of een vraag te beantwoorden. <a href=\"{localised_url}/footer/over-algoritmes\">Meer over algoritmes</a>.</p>", + "collaborate": "<p><strong>Samen doorontwikkelen</strong><br />Steeds meer overheidsorganisaties publiceren informatie over hun algoritmes in het Algoritmeregister. Het register wordt open doorontwikkeld. <a href=\"https://algoritmes.pleio.nl/\">Sluit aan bij de community</a>.</p>", + "aboutRegister": "<p><strong>Over dit register</strong></p>\n<p>In dit Algoritmeregister publiceren steeds meer Nederlandse overheidsorganisaties informatie over algoritmes die zij gebruiken in hun werk. Ze focussen op impactvolle algoritmes en geven de bezoeker inzicht in hoe deze algoritmes werken. <a href=\"{localised_url}/footer/registreer-je-algoritme\">Registreer je algoritme</a>.</p>", + "highlightTextBottom": "<p>Of <a href=\"{localised_url}/algoritme\">blader door alle algoritmes</a></p>", + "toDo": "<p><strong>Wat kan ik hier doen?</strong></p>\n<p>Hoe kun je het Algoritmeregister gebruiken? En wat doe je als het algoritme dat je zoekt, nog niet in dit register staat? <a href=\"{localised_url}/footer/vragen\">Bekijk de veelgestelde vragen</a>.</p>", + "highlightTextTop": "Bekijk de 3 meest recent gewijzigde algoritmebeschrijvingen", + "title-tag": "Het algoritmeregister van de Nederlandse overheid", + "meta-description": "Het algoritmeregister verzamelt alle algoritmebeschrijvingen in gebruik door de overheidsorganisaties in Nederland." + }, + "Zoekbalk": { + "hint": "Zoek op woord, thema of organisatie", + "hintOrganisatie": "Zoek een organisatie" + }, + "language-disclaimer": { + "closeText": "Sluiten", + "content": "<p><strong>Let op:</strong> De algoritmebeschrijvingen in het Engels zijn automatisch vertaald. Hier kunnen fouten in zitten. Voor de originele beschrijvingen gaat u naar de Nederlandse versie van het Algoritmeregister.</p>", + "goToDutch": "Ga naar Nederlands" + }, + "Footer: Archief": { + "content": "<h1>Archief</h1>\n<p>Websites zijn een belangrijke informatiebron voor burgers, bedrijven en overheden. Dit geldt ook voor vorige versies van websites. Hier kan informatie op staan die nog steeds relevant is en waar rechten aan kunnen worden ontleend. Door websites te archiveren, kunnen ze duurzaam toegankelijk blijven: ze blijven dus beschikbaar voor het terugkijken van openbare informatie. Dit is verplicht voor alle overheidswebsites.<br /><br />Deze versies komen te staan in het <a href=\"https://minbzk.sitearchief.nl/?subsite=algoritmeoverheid#archive\" target=\"_blank\">archief</a>. In het overzicht vind je de webarchieven van alle verplichte deelnemers. Klik op een archief, kies een datum uit het verleden via de kalender en de site past haar inhoud aan op wat er toen actueel was. Je kunt teruggaan tot 25 januari 2023.</p>\n<p>Meer weten? <a href=\"https://www.nationaalarchief.nl/archiveren/kennisbank/Richtlijn-Archiveren-Overheidswebsites\">Bekijk de Richtlijn archiveren overheidswebsites hier</a>.</p>", + "pageTitle": "Archief" + }, + "Footer: Kwetsbaarheid melden": { + "content": "<h1>Kwetsbaarheid melden</h1>\n<p>Ontdekt u een zwakke plek of kwetsbaarheid op deze website, meld dit dan aan het Nationaal Cyber Security Centrum (NCSC). Het maken van zo’n melding heet Coordinated Vulnerability Disclosure (CVD). Wij bekijken samen met het NCSC het probleem en lossen dit zo snel mogelijk op.</p>", + "pageTitle": "Kwetsbaarheid melden" + }, + "Footer: Release-notes": { + "pageTitle": "Releasenotes", + "content": "<h2>Releasenotes</h2>\n<p>Op deze pagina vind je wijzigingen in de software die handig zijn om te kennen als je bezoeker of redacteur bent.</p>\n<p> </p>\n<h2>14 juni 2024 </h2>\n<div>\n<h3 role=\"heading\">Voor redacteurs: </h3>\n<div>\n<p><strong>Verbeterd: Publicatieproces </strong><br />Momenteel wordt het webformulier vernieuwd t.b.v. het groeiende Algoritmeregister en de steeds groter wordende groep publicerende organisaties. In deze release zitten de volgende onderdelen: </p>\n</div>\n<div>\n<ul role=\"list\">\n<li role=\"listitem\">\n<p>Vanuit het webformulier kunnen gebruikersaccounts aangemaakt en hun rechten ingesteld worden. </p>\n</li>\n</ul>\n</div>\n<div>\n<ul role=\"list\">\n<li role=\"listitem\">\n<p>Er kan per redacteur worden ingesteld of zij de organisatiedetails mogen aanpassen. </p>\n</li>\n</ul>\n</div>\n<div>\n<ul role=\"list\">\n<li role=\"listitem\">\n<p>In overleg kan er een alternatieve werkstroom ingesteld worden voor het publiceren van algoritmebeschrijvingen. Organisaties kunnen dan middels twee van hun eigen werknemers publiceren volgens het vierogenprincipe, zonder tussenkomst van ICTU. </p>\n</li>\n</ul>\n</div>\n<div>\n<p>Dit is onderdeel van de doorontwikkeling van het nieuwe webformulier dat uitgebreid wordt getest tot juli. Bij goed resultaat wordt het webformulier deze zomer vernieuwd. </p>\n</div>\n</div>\n<div>\n<p><strong>Verbeterd: Versiebeheer</strong> <br />Elke keer als een algoritmebeschrijving door een redacteur wordt opgeslagen, wordt er een versie aangemaakt en bewaard. Zo’n vorige versie kan vervolgens teruggezet worden, indien nodig. Redacteuren krijgen nu de mogelijkheid om opgeslagen versies van algoritmebeschrijvingen die niet gepubliceerd zijn te archiveren. De redacteur heeft ook de mogelijkheid de gearchiveerde versies weer te dearchiveren en weer te publiceren. </p>\n</div>\n<div>\n<p>Dit is tevens onderdeel van de doorontwikkeling van het nieuwe webformulier. </p>\n</div>\n<div>\n<h3 role=\"heading\">Voor bezoekers: </h3>\n</div>\n<div>\n<p><strong>Verbeterd: Slimmer zoeken </strong><br />1) Voor steeds meer algoritmes worden toetsen uitgevoerd die inzicht geven in de impact van een algoritme. Het is nu mogelijk om te zoeken middels een selectiefilter naar algoritmebeschrijvingen waarvoor een bepaalde impacttoets is uitgevoerd. Hierbij wordt onderscheid gemaakt tussen de volgende uitgevoerde toetsen als zoekcriteria: </p>\n</div>\n<div>\n<ul role=\"list\">\n<li role=\"listitem\">\n<p>Data Protection Impact Assessment (DPIA) </p>\n</li>\n</ul>\n</div>\n<div>\n<ul role=\"list\">\n<li role=\"listitem\">\n<p>Impact Assessment Mensenrechten en Algoritmes (IAMA) </p>\n</li>\n</ul>\n</div>\n<div>\n<ul role=\"list\">\n<li role=\"listitem\">\n<p>Overige </p>\n</li>\n</ul>\n</div>\n<div>\n<ul role=\"list\">\n<li role=\"listitem\">\n<p>Geen </p>\n</li>\n</ul>\n</div>\n<div>\n<p>Alleen gepubliceerde algoritmebeschrijvingen volgens publicatiestandaard 1.0 kunnen aan de hand van dit selectiefilter gevonden worden. </p>\n</div>\n<div>\n<p>2) Het was al mogelijk voor bezoekers om een selectiefilter toe te passen om alleen naar algoritmebeschrijvingen van een specifiek organisatie te zoeken. Daarbij selecteert men eerst een organisatie-type (bijv. ‘Provincie’, ‘Gemeente’, ‘Ministerie’, etc.) en daarna een specifieke organisatie. Pas wanneer de organisatie werd geselecteerd, werd de zoekopdracht uitgevoerd en dus de resultaten bijgewerkt. Vanaf nu wordt de zoekopdracht al uitgevoerd bij het selecteren van een organisatie-type, zodat het mogelijk is om ook naar de algoritmebeschrijvingen te zoeken van alle organisaties die onder een bepaald type vallen. </p>\n</div>\n<div>\n<p><strong>Opgelost: Download alle algoritmes </strong><br />Via de menu-optie ‘Algoritmes’ is het mogelijk om alle algoritmebeschrijvingen te downloaden. Er deed zich een fout voor waarbij de download bleef hangen. Die fout is nu verholpen. </p>\n<p> </p>\n</div>\n<h2>Mei 2024 </h2>\n<div>\n<h3 role=\"heading\">Voor redacteurs: </h3>\n</div>\n<div>\n<p><strong>Verbeterd: Webformulier </strong><br />Het veld Verwijzing Impacttoetsen in het webformulier geeft de redacteur nu de optie met één muis klik te kiezen voor Data Protection Impact Assessment (DPIA) en Impact Assessment Mensenrechten en Algoritmes (IAMA). Zo zorgen we ervoor dat de impacttoetsen op dezelfde manier vermeld worden bij alle publicaties met standaard 1.0. Mocht geen van deze impacttoetsen gebruikt zijn, heeft de redacteur de mogelijkheid zelf een impacttoets in te vullen. </p>\n</div>\n<div>\n<p><strong>Verbeterd: Kwaliteitsmeting </strong><br />De redacteur krijgt nu een melding wanneer er een veld in het webformulier wordt ingevuld met een niet (meer) werkende of bestaande link. Het betreffende veld wordt daarbij uitgelicht, waardoor de redacteur meteen weet om welk veld het gaat. Zonder aanpassing van niet werkende link kan de algoritmebeschrijving niet gepubliceerd worden. </p>\n</div>\n<div>\n<p>Dit is ook onderdeel van de eerder vermelde doorontwikkeling van het nieuwe webformulier dat na positief resultaat n.a.v. grondige testen hopelijk deze zomer vernieuwd zal worden. </p>\n</div>\n<div>\n<p><strong>Toegevoegd: Nieuwe sjabloon </strong><br />In het webformulier kunnen organisaties gebruik maken van sjablonen van algoritmebeschrijvingen van leveranciers. Vanaf nu kunnen organisaties ook het nieuwe sjabloon gebruiken om de beschrijving van het algoritme ‘Anonimiseringssoftware’ (van DataMask B.V.) te publiceren. </p>\n<p><strong>Verbeterd: Publicatieproces </strong><br />Zoals eerder vermeld wordt er gewerkt aan de verbetering van het publicatieproces, vanwege de groei van het register. In deze release zitten een aantal optimalisaties voor de vormgeving van het webformulier. Deze (en toekomstige) verbeteringen testen we uitvoerig tot juli. Bij goed resultaat wordt het webformulier deze zomer vernieuwd. </p>\n</div>\n<div>\n<div>\n<p><strong>Verbeterd: Publicatieproces </strong><br />Organisaties gebruiken een webformulier met een publicatieproces waarmee ze zelf de regie kunnen voeren over wat ze publiceren. Het publicatieproces kent meerdere stappen. Dit kwartaal bouwen we aan verbetering van het hele proces. Dat is nodig vanwege de groei van het register en we willen graag tegemoetkomen aan wensen van een steeds grotere groep redacteurs. De belangrijkste verbeteringen tot nu toe zijn: </p>\n</div>\n<div>\n<ul role=\"list\">\n<li role=\"listitem\">\n<p>Het webformulier is beter vormgegeven voor een gebruiksvriendelijkere ervaring. </p>\n</li>\n<li role=\"listitem\">\n<p>Elke keer dat een algoritmebeschrijving wordt opgeslagen wordt er nu een conceptversie aangemaakt. Hierdoor is het mogelijk om eerder opgeslagen versies van beschrijvingen terug te draaien. </p>\n</li>\n</ul>\n</div>\n<div>\n<p>Tot juli gaan we deze (en toekomstige) verbeteringen ook uitvoerig testen. Bij goed resultaat wordt het webformulier komende zomer vernieuwd. </p>\n</div>\n<div>\n<p><strong>Toegevoegd: Nieuwe sjablonen </strong><br />In het webformulier kunnen organisaties gebruik maken van sjablonen van algoritmebeschrijvingen van leveranciers. Vanaf nu kunnen organisaties ook nieuwe sjablonen gebruiken om de beschrijving van het algoritme ‘Octobox Anonimiseren’ (van Octobox en DocDirekt) en ‘Meldingen openbare ruimte’ (van Gemeente Amsterdam) te publiceren. </p>\n</div>\n<div>\n<p><strong>Opgelost: Organisatiedetails webformulier </strong><br />Het webformulier is door organisaties te gebruiken om een tekst te schrijven voor hun organisatiepagina in het Algoritmeregister. Daar kan aangegeven worden hoe organisaties omgaan met algoritmes en de publicatie daarover in het Algoritmeregister. Er deed zich kort een fout voor waarbij deze organisatiedetails niet opgeslagen konden worden. Deze fout is hersteld en alles werkt weer naar behoren. </p>\n</div>\n</div>\n<div>\n<h3>Voor bezoekers:</h3>\n</div>\n<div>\n<p><strong>Verbeterd: Slimmer zoeken </strong><br />Het is nu mogelijk om een selectiefilter toe te passen bij het zoeken naar algoritmebeschrijvingen, waardoor je alleen resultaten krijgt die onder een bepaalde publicatiecategorie vallen. Hierbij is onderscheid gemaakt tussen de volgende categorieën: </p>\n</div>\n<div>\n<ul role=\"list\">\n<li role=\"listitem\">\n<p>Hoog-risico AI-systeem </p>\n</li>\n<li role=\"listitem\">\n<p>Impactvolle algoritmes </p>\n</li>\n<li role=\"listitem\">\n<p>Overige algoritmes </p>\n</li>\n</ul>\n</div>\n<div>\n<p> </p>\n</div>\n<h2>April 2024</h2>\n<h3>Voor bezoekers:</h3>\n<div>\n<p><strong>Verbeterd: Suggesties voor organisaties op basis van zoekterm </strong><br />Onder de zoekbalk verschijnen tijdens het typen suggesties van organisaties waar mogelijk op gezocht wordt. Door op een suggestie te klikken, wordt de zoekterm automatisch aangevuld.</p>\n</div>\n<div>\n<p><strong>Verbeterd: Makkelijker navigeren naar alle algoritmebeschrijvingen </strong><br />Boven de zoekbalk is het totaal aantal algoritmes aanklikbaar. Door hierop te klikken kom je direct bij het overzicht van alle gepubliceerde algoritmebeschrijvingen terecht.</p>\n</div>\n<div>\n<p><strong>Verbeterd: Alle selectiefilters kunnen in één keer gewist worden </strong><br />Alle zoekcriteria die je hebt gebruikt bij het zoeken naar een algoritmebeschrijving of organisatie kunnen nu in een keer weggehaald worden door boven het filterblok op ‘Verwijder selectie’ te klikken.</p>\n</div>\n<div>\n<p><strong>Nieuw: Duidelijker wat er via de zoekbalk gezocht kan worden op een pagina </strong><br />Via de menu-opties ‘Algoritmes’ en ‘Organisaties’ kan er gezocht worden naar algoritmebeschrijvingen en organisaties die gepubliceerd hebben in het Algoritmeregister. De zoekbalk op die pagina’s heeft een titel gekregen om duidelijker te maken wat daar gevonden kan worden.</p>\n</div>\n<p><strong>Nieuw: Het Algoritmeregister wordt automatisch vertaald naar het Fries (bèta)</strong><br />Friese bezoekers kunnen nu ook gebruik maken van het Algoritmeregister. Via de Taalknop rechstboven op elke pagina (op mobiel via de 'Menu'-knop) is de website in het Fries te gebruiken. De algoritmebeschrijvingen in het Fries zijn automatisch vertaald. Hier kunnen fouten in zitten. Voor de originele beschrijvingen gaat u naar de Nederlandse versie van het Algoritmeregister. </p>\n<h2>Maart 2024 </h2>\n<h3>Voor bezoekers:</h3>\n<p><strong>Aangepast: Tekstaanpassingen informatiepagina's<br /></strong>Het kopje 'Doelen van het Algoritmeregister' is toegevoegd aan de pagina '<a href=\"https://algoritmes.overheid.nl/nl/footer/over\" target=\"_blank\">Over het Algoritmeregister</a>', waar onze zeven doelstellingen kort worden toegelicht.</p>\n<p><strong>Verbeterd: Webarchief<br /></strong>De webarchivering voor het Algoritmeregister werkt weer naar behoren. Voor meer informatie, klik <a href=\"https://algoritmes.overheid.nl/nl/footer/archief\">hier</a>.</p>\n<p><strong>Aangepast: de zoekbalk onthoudt nu de suggesties van de zoektern<br /></strong>Tijdens het intypen van een zoekopdracht verschijnen er suggesties onder de zoekbalk. Als buiten de zoekbalk geklikt wordt verdwijnen die suggesties, maar ze komen nu terug wanneer je weer in de zoekbalk klikt. </p>\n<p><strong>Nieuw: Het is nu mogelijk om via de menu-optie ‘Organisaties’ te zoeken.</strong><br />In het hoofdmenu bovenin is een optie ‘Organisaties’ waar je een lijst kan bekijken van alle organisaties die hebben gepubliceerd, met een opsomming van hun algoritmebeschrijvingen. Vanaf nu kan je vanaf die pagina de zoekbalk gebruiken om naar organisaties te zoeken.</p>\n<div>\n<p><strong>Verbeterd: Zoeken met organisatie-afkorting geeft de optie weer om direct te navigeren naar de organisatiepagina<br /></strong>Het is nu mogelijk om direct naar een organisatiepagina te navigeren aan de hand van een afkorting, bijvoorbeeld BZK (Binnenlandse Zaken en Koninkrijksrelaties) of UWV (Uitvoeringsinstituut Werknemersverzekeringen).</p>\n<p><strong>Verbeterd: Met een organisatienaam als zoekterm vind je nu álle algoritmebeschrijvingen van die organisatie</strong><br />Als je de naam van een organisatie intypt in de zoekbalk dan verwacht je minimaal álle algoritmebeschrijvingen van die organisatie te vinden. Dat was niet altijd het geval. De zoekfunctie is technisch aangepast om volledigheid te garanderen.</p>\n<p><strong>Verbeterd: Slimmer zoeken als een organisatienaam als zoekterm is gebruikt<br /></strong>Als je de verkorte of volledige naam van een organisatie in de zoekbalk intypte kreeg je als zoekresultaat álle algoritmeschrijvingen waar de organisatienaam ergens in de beschrijving voorkwam. Ook als dat algoritmebeschrijvingen van andere organisaties waren. Dat is niet altijd wat je zoekt. Daarom krijg je onder de zoekbalk nu suggesties waar je uit kunt kiezen. Daarmee kun je sneller en gerichter zoeken. De komende tijd zullen deze suggesties verder worden uitgebreid en verfijnd.</p>\n<p><strong>Aangepast: Publicatiestandaard wordt nu ook weergegeven</strong><br />Bij de weergave van de zoekresultaten wordt nu ook weergegeven welke versie van de publicatiestandaard is gebruikt. Want per versie kan de beschikbare informatie verschillen.</p>\n<p><strong>Verbeterd: Bij downloads zie je dat de download nog bezig is<br /></strong>Door de groei van het Algoritmeregister duurt het downloaden inmiddels wat langer. Daarover krijg je nu feedback zodat je weet dat je even moet wachten totdat de download klaar is.<strong><br /></strong></p>\n<h3><strong>Voor redacteurs:</strong></h3>\n<p><strong>Nieuw: Algoritmebeschrijving Anonimiseren sneller gevuld met behulp van het sjabloon van eData B.V.<br /></strong>In het webformulier kunnen organisaties nu het sjabloon gebruiken van de leverancier eData B.V. (ook bekend als eSpecialisten B.V.) om de algoritmebeschrijving van Anonimiseren sneller in te vullen.</p>\n<p><strong>Aangepast: Controle van de link naar de eigen website op de organisatiepagina<br /></strong>Op dit register kunnen organisaties in een eigen organisatiepagina toelichten hoe zij met algoritmes omgaan. In het veld: 'Meer informatie' kan daar een link worden opgenomen naar een pagina op de eigen website. Het is het nu niet meer mogelijk om spaties in die link toe te voegen. Het is nu wel toegestaan om een slash ('/') aan het einde van een link toe te voegen.</p>\n<p><strong>Opgelost: Teksten die ingedeeld waren in alinea's met lege regels daartussen werden niet opgeslagen<br /></strong>Door een recentelijk ontstane bug werd informatie die verdeeld was over meerdere alinea's niet opgeslagen. Zo verdween er informatie. Dit is nu opgelost.</p>\n<br />\n<h2>Februari 2024</h2>\n<h3>Voor bezoekers:</h3>\n<p><strong>Opgelost: Geen vreemd teken meer in CSV-download</strong><br />Bij het downloaden van algoritmebeschrijvingen in een CSV-bestand kwam er soms een vreemd teken mee. Deze fout is nu opgelost.</p>\n<p><strong>Opgelost: Engelstalige Excel-download bevat nu Engelse labels</strong><br />Bij het downloaden van Engelstalige algoritmebeschrijvingen werden Nederlandstalige labels getoond. Deze labels, te zien in kolom A, zijn nu vertaald naar het Engels.</p>\n<p><strong>Opgelost: Tabbladen in Excel-bestand worden opeenvolgend weergegeven</strong><br />Bij het downloaden van algoritmebeschrijvingen met meerdere publicatiestandaarden, worden de tabbladen weergegeven van nieuwste naar oudste versie. </p>\n<p><strong>Aangepast: Versie-informatie is hernoemd naar releasenotes</strong><br />In het colofon is versie-informatie hernoemd naar releasenotes.</p>\n<p><strong>Opgelost: Geen HTML-code meer in Excel-downloads</strong><br />Bij het downloaden van algoritmebeschrijvingen in een Excel-bestand kwam onbedoeld opmaakcode mee. Dit is technische code die bedoeld is voor weergave van tekst op de website. Deze fout is nu opgelost.</p>\n<h3>Voor redacteurs:</h3>\n<p><strong>Nieuw: Sneller algoritmebeschrijving maken met hulp van een sjabloon</strong><br />In het webformulier kun je nu sjablonen gebruiken om je algoritmebeschrijving sneller te kunnen invullen. Om te beginnen zijn 9 sjablonen beschikbaar gesteld door leveranciers die vooral leveren aan gemeenten. <br /><br /><strong>Aangepast: Publicatiestandaard versie nu 1.0 verplicht voor nieuwe algoritmebeschrijvingen</strong><br />In december 2023 is de definitieve versie van de Publicatiestandaard vastgesteld. Het is nu niet meer mogelijk om nieuwe beschrijvingen te beginnen in een oudere versie van de standaard. Bestaande beschrijvingen kun je nog wel in een oudere standaard bewerken.</p>\n<p> </p>\n<h2>Januari 2024</h2>\n<h3>Voor bezoekers:</h3>\n<p><strong>Verbeterd: De downloadmogelijkheden zijn uitgebreid</strong><strong><br /></strong>Alle algoritmebeschrijvingen zijn in het register zijn te downloaden. Dat kan voor alle algoritmebeschrijvingen tegelijk in één heel groot bestand. Het kan ook per algoritmebeschrijving afzonderlijk. Het is nu mogelijk om algoritmebeschrijvingen zowel in het Nederlands én in het Engels te downloaden. En dat kan als Excelbestand of als CSV-bestand. Als je kiest voor CSV-bestand kun je die ook openen in Excel, maar om algoritmebeschrijvingen te openen in Excel werkt het handiger om ze als Excel-bestand te downloaden.</p>\n<p><strong>Nieuw: Zoektermen worden geel gearceerd in de zoekresultaten</strong><strong><br /></strong>Bij het zoeken zie je je zoekterm soms in de zoekresultaten geel gearceerd terug. Dat is zo als de term voorkomt in de korte beschrijving. Als de term ergens anders in een algoritmebeschrijving is gevonden dan zie je dat algoritme wel terug in de zoekresultaten, maar niet met de zoekterm geel gearceerd.</p>\n<p><strong>Verbeterd: Filtermogelijkheden werken nu ook in de Engelse weergave</strong><strong><br /></strong>Filtermogelijkheden in de ‘Algoritmes’-pagina werken nu ook in het Engels.</p>\n<p><strong>Verbeterd: Zoektermen gebruiken om te filteren</strong><strong><br /></strong>Je kunt zoektermen nu combineren met andere filteropties zodat je gerichter kunt zoeken.</p>\n<p><strong>Nieuw: Menu-optie: ‘Organisaties’</strong><strong><br /></strong>In het hoofdmenu bovenin is een nieuwe optie ‘Organisaties’ bijgekomen. Hier vind je nu een lijst van alle organisaties die hebben gepubliceerd, met een opsomming van hun algoritmebeschrijvingen. Organisaties hebben nu een nieuwe mogelijkheid om daar een eigen algemene toelichting bij te geven. Ook kunnen ze een uitleg geven over waarom zij niet op het Algoritmeregister publiceren.</p>\n<p><strong>Nieuw: Informatiepagina: ‘Kwetsbaarheid melden’</strong><br />In de voettekst is een link opgenomen naar een nieuwe pagina met instructies hoe je een kwetsbaarheid in de beveiliging van de website kunt melden.</p>\n<p><strong>Opgelost: Organisaties worden nu in lijsten alfabetisch gesorteerd</strong><strong><br /></strong>Organisaties worden nu overal standaard in alfabetische volgorde weergegeven.</p>\n<p><strong>Aangepast: De link ‘Webarchief’ is hernoemd naar ‘Archief’</strong><br />In de voettekst staat een link naar het dagelijks bijgewerkte webarchief van de website. De naam van deze link is aangepast naar ‘Archief’. Dat is om aan te sluiten bij de naamgeving op andere overheidssites.</p>\n<h3>Voor redacteurs:</h3>\n<p><strong>Nieuw: Er is schrijfhulp beschikbaar voor spel- en taalfouten</strong><strong><br /></strong>Bij het invullen van het webformulier wordt nu automatisch een spellingscontrole uitgevoerd zoals in een tekstverwerker en worden verbetersuggesties gegeven.</p>\n<p><strong>Nieuw: Je kunt nu informatie over je organisatie toevoegen</strong><strong><br /></strong>Je hebt nu de mogelijkheid extra informatie te geven over hoe de organisatie omgaat met algoritmes en de publicatie daarvan op het Algoritmeregister. Ook is er een mogelijkheid om een link toe te voegen naar een informatiepagina op de eigen website van de organisatie. Vraag je contactpersoon om je te helpen die voor de eerste keer te gebruiken.</p>\n<h2>December 2023</h2>\n<h3>Voor bezoekers:</h3>\n<p><strong>De zoekresultaten worden compacter weergegeven</strong><br />De bezoeker ziet nu meer zoekresultaten in één oogopslag.</p>\n<p><strong>Er worden zoeksuggesties weergegeven</strong> <br />De bezoeker krijgt suggesties onder de zoekbalk te zien op basis van de ingetypte letters.</p>\n<p><strong>Het webarchief is toegevoegd aan de footer</strong><br />Voor meer informatie, klik <a href=\"https://algoritmes.overheid.nl/nl/footer/archief\">hier</a>.</p>\n<p><strong>Het register wordt automatisch vertaald naar het Engels</strong><br />Internationale bezoekers kunnen nu ook gebruik maken van het Algoritmeregister.</p>\n<p><strong>De downloadknop</strong> <br />De knop waarmee je eerst een CSV-bestand downloadde, downloadt nu een Excelbestand.</p>\n<h3>Voor redacteurs:</h3>\n<p><strong>Organisatiepagina</strong><br />In de organisatiedetails pagina kan de redacteur extra informatie beschrijven over hoe zij omgaan met algoritmes en de publicatie ervan.</p>\n<p><strong>Technische foutjes die ontstonden bij het downloaden van een algoritmebeschrijving zijn opgelost</strong><br />Waar de redacteur eerst velden leeg of incompleet kon achterlaten en opslaan, krijgt deze nu een foutmelding. In deze foutmelding staat voor welk veld nog actie nodig is.</p>\n<div>\n<h2>November 2023 </h2>\n</div>\n<div>\n<h3>Voor bezoekers:</h3>\n<p><strong>De zoekmachine is geüpdatet</strong><br />Er kan nu gezocht worden op combinaties van zoekwoorden, spelfouten, afkortingen en synoniemen.</p>\n<p><strong>De zoekresultaten worden onderverdeeld in organisatietypes</strong><br />Aan de linkerkant van de zoekresultaten krijgt de gebruiker de optie om te kiezen voor een organisatietype en ziet daarbij een overzicht van de gekozen filters.</p>\n<h3>Voor redacteurs:</h3>\n<p><strong>De redacteur ziet hoe ver het webformulier is ingevuld</strong><br />Aan de hand van een progressiebalk boven het invulformulier ziet de redacteur hoe compleet de algoritmebeschrijving is. </p>\n<p><strong>De definitieve versie van de Publicatiestandaard is beschikbaar<br /></strong>Algoritmebeschrijvingen op het register hebben een vaste tekststructuur: de Publicatiestandaard. Eerder was deze standaard nog in ontwikkeling en zijn verschillende conceptversies naast elkaar in gebruik genomen. Per december is de definitieve 1.0-versie beschikbaar gekomen. Nieuwe algoritmebeschrijvingen kan de redacteur het beste direct in dit nieuwe formaat publiceren. Bestaande beschrijvingen kun de redacteur van het oude formaat migreren naar het nieuwe formaat. Dat hoeft niet direct, maar wordt wel aangeraden. Zo helpt de redacteur de kwaliteit van het register te verbeteren. Hulp bij migratie is beschikbaar.</p>\n</div>\n</div>\n<div>\n<h2>Oktober 2023 </h2>\n</div>\n<div>\n<h3>Voor redacteurs:</h3>\n</div>\n<div>\n<p><strong>De downloadopties zijn uitgebreid<br /></strong>De algoritmebeschrijvingen zijn op het webformulier in enkele vorm en in bulk te downloaden in Microsoft Word, in Microsoft Excel, of als PDF.</p>\n</div>\n<div>\n<p><strong>Het publicatieproces is versneld<br /></strong>Het publiceren van een algoritmebeschrijving vindt nu na vrijgave van de redacteur meteen plaats.</p>\n</div>\n<div>\n<p><strong>Het webformulier bevat versiebeheer <br /></strong>Redacteurs kunnen nu op de overzichtspagina van het webformulier zien wie de algoritmebeschrijving(en) voor het laatst heeft bewerkt.</p>\n</div>\n<div>\n<p><strong>Het webformulier is verhuisd <br /></strong>Na een testperiode is het webformulier verhuisd naar <a href=\"https://algoritmes.overheid.nl/webformulier\" target=\"_blank\">https://algoritmes.overheid.nl/webformulier</a>. Dit geldt ook voor de aanlever-API, die is verhuisd naar <a href=\"https://algoritmes.overheid.nl/aanleverapi\" target=\"_blank\">https://algoritmes.overheid.nl/aanleverapi</a>. </p>\n</div>" + }, + "Footer: Registreer je algoritme": { + "pageTitle": "Registreer je algoritme", + "content": "<h1>Registreer je algoritme</h1>\n<div><p>Werk je bij een overheid en wil je ook een algoritme registreren? Maak dan een afspraak voor een kennismaking of aansluitsessie via <a href=\"mailto:algoritmeregister@minbzk.nl\" target=\"_blank\" rel=\"noopener\">algoritmeregister@minbzk.nl</a>. We helpen je graag!  </p></div><div><p>En kijk op de online community naar <a href=\"https://algoritmes.pleio.nl/wiki/view/828fc5d8-8bbb-4b85-ac37-ea5f30f4055f/handige-hulpmiddelen-algoritmeregister\" target=\"_blank\" rel=\"noopener\">hulpmiddelen</a> en <a href=\"https://algoritmes.pleio.nl/wiki/view/78bb37a7-6a8a-4829-8d6d-b630ed914f18/veelgestelde-vragen\" target=\"_blank\" rel=\"noopener\">veelgestelde vragen</a>. Check daar in ieder geval de volgende informatie: </p></div><div><ol role=\"list\"><li role=\"listitem\"><p><a href=\"https://algoritmes.pleio.nl/wiki/view/df456f50-7225-4109-a143-9738ce130a1f/in-5-stappen-naar-publicatie-in-algoritmeregister\" target=\"_blank\" rel=\"noopener\">Publiceren in 5 stappen</a> </p></li><li role=\"listitem\"><p><a href=\"https://algoritmes.pleio.nl/wiki/view/2bcdf820-ce62-4249-95f7-d1a13fb6e1c9/handleiding-publicatiestandaard\" target=\"_blank\" rel=\"noopener\">Handreiking Algoritmeregister</a> </p></li><li><a href=\"https://algoritmes.pleio.nl/wiki/view/6c4da291-2636-4dde-b234-ad057ee528ad/sjablonen-leveranciers\" target=\"_blank\" rel=\"noopener\">Beschikbare sjablonen</a> </li></ol></div><div><p>Hier vind je alles wat je nodig hebt. </p></div>" + }, + "Algoritmes-overzicht": { + "title-tag": "Algoritmebeschrijving overzicht", + "title-tag-on-append": ": Zoeken naar algoritmebeschrijvingen", + "meta-description": "Zoek hier naar algoritmebeschrijvingen van alle organisaties van de Nederlandse overheid." + }, + "Organisatie-overzicht": { + "title-tag": "Organisatieoverzicht", + "title-tag-on-append": ": Zoeken naar organisaties", + "meta-description": "Zoek hier voor informatie over de algoritmebeschrijvingen van organisaties." + }, + "Organisatie-details": { + "meta-description": "{org-name} publiceert {algorithm-description-count} algoritmes." + }, + "Dashboard": { + "title-org-top-20": "Organisaties top 20" + }, + "Organisatie niet gepubliceerd": { + "pageTitle": "Eerste publicatie in voorbereiding", + "content": "<h1>Eerste publicatie in voorbereiding</h1>\n<p>De organisatie die je zocht is actief op het Algoritmeregister maar heeft nog niet gepubliceerd. Ben je zelf van deze organisatie en wil je daar meer over nemen? Neem dan even contact met ons op.<br><br><a href=\"{localised_url}/footer/contact\">Contact</a></p>" + }, + "Organisatie niet aangesloten": { + "pageTitle": "Niet op het Algoritmeregister?", + "content": "<h1>Niet op het Algoritmeregister?</h1>\n<p>De organisatie die je zocht is nog niet actief op het register. Ben je zelf van deze organisatie en wil je aan de slag? We helpen je graag!<br><br><a href=\"{localised_url}/footer/registreer-je-algoritme\">Registreer je algoritme</a></p>" + } + }, + "fy": { + "Footer: Contact": { + "content": "<h1>Nim dan kontakt mei ús op</h1><p> Dizze webside is yn ûntwikkeling. Hawwe jo fragen oer it Algoritmeregister? Of binne jo in (oerheids)profesjonele en wolle jo of jo organisaasje <a href=\"meedoen\">meidwaan oan de fierdere ûntwikkeling</a> fan it Algoritmeregister? Sjoch nei de ynformaasje op: <a href=\"over\">Oer it algoritmeregister</a> en de <a href=\"vragen\">faak stelde fragen</a>.</p><p> Foar fragen kinne jo kontakt opnimme mei: <a href=\"mailto:algoritmeregister@minbzk.nl\">algorithmregister@minbzk.nl</a>.</p>", + "pageTitle": "Kontakt" + }, + "Footer: Vragen": { + "question14": "Hoe bliuw ik op 'e hichte oer ûntwikkelings yn it Algoritmeregister?", + "question15": "Is it Nederlânske algoritmeregister ek it register lykas beskreaun yn de Europeeske AI-feroardering?", + "question16": "Komt der wetjouwing oangeande it Algoritmeregister?", + "question17": "Is jo fraach net opnommen?", + "group1": "A Algemiene ynformaasje", + "group3": "C Klachten of beswieren", + "group5": "E Wetjouwing en de Europeeske AI-feroardering", + "content": "<h1>Faak Stelde Fragen</h1><h2> 1. Wat is it Algoritme Register?</h2><p class=\"mb-4\"> It Algorithm Register befettet ynformaasje oer algoritmen brûkt troch de oerheid. Dit makket dizze ynformaasje te finen en beskikber foar boargers, harren advokaten, de media en tafersjochhâlders.</p><h2> 2. Wat is it doel fan dizze webside?</h2><p class=\"mb-4\"> Doel is om ynformaasje oer algoritmen sintraal foar elkenien tagonklik te meitsjen. Op dizze manier kin elkenien sjen yn hokker ynfloedrike prosessen algoritmen wurde brûkt. De ynformaasje jout de mooglikheid om algoritmen te kontrolearjen. Sa kin diskriminaasje en yllegaalheid ûndersocht wurde, mar ek winsklikens. As minsken it net iens binne mei it brûken fan algoritmen, jout it Algoritmeregister oan wêr't beswier yn makke wurde kin.</p><h2> 3. Wat binne algoritmen?</h2><p class=\"mb-4\"> In algoritme is in set fan regels en ynstruksjes dy't in kompjûter útfiert. Algoritmen helpe bygelyks by it analysearjen fan problemen, mar ek by it nimmen fan besluten. Dêrmei kin de oerheid grutte hoemannichten gegevens kombinearje en analysearje (boarne: Rekkenkeamer).</p><p class=\"mb-4\"> Wolle jo mear witte oer algoritmen? <a href=\"https://www.mediawijsheid.nl/algoritmes/\" target=\"_blank\" rel=\"noopener\">Besjoch de ynformaasje oer Media Literacy <img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link nei eksterne side\"></a> of besjoch de (fergees) <a href=\"https://ethiek.ai-cursus.nl/home\" target=\"_blank\" rel=\"noopener\">Nasjonale AI-kursus <img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-link-external-v2.22cf45ec.svg\" alt=\"Link nei eksterne side\"></a>.</p><h2> 4. Ik haw in fraach oer in algoritme op dizze side, wêr kin ik freegje it?</h2><p class=\"mb-4\"> It is fansels ek mooglik dat jo nei it lêzen fan de registraasje fan in algoritme fragen hawwe oer in spesifyk algoritme. Jo kinne dit freegje oan de 'eigner' fan it algoritme. De kontaktgegevens kinne fûn wurde yn 'e beskriuwing fan it algoritme. Alle oare fragen kinne jo stjoere nei: <a href=\"mailto:algoritmeregister@minbzk.nl\" target=\"_blank\" rel=\"noopener\">algorithmregister@minbzk.nl <img class=\"is-external-icon\" src=\"https://algoritmes.overheid.nl/_nuxt/icon-mail.8d4dd9cb.svg\" alt=\"Link nei in e-mailadres\"></a>.</p><h2> 5. Binne alle regear algoritmen op dizze webside?</h2><p class=\"mb-4\"> In liedende groep fan oerheidsorganisaasjes makket op it stuit har algoritmen beskikber fia dizze webside. Yn 2023 sille noch mear oerheidsorganisaasjes publisearje yn it Algoritmeregister. Foar it momint sil it oantal algoritmen op dizze webside trochgean te groeien.</p><p class=\"mb-4\"> Yn 'e takomst sil it wetlik ferplicht wurde om algoritmen iepenbier beskikber te meitsjen. Dit betsjut dat de measte relevante algoritmen binne opnommen yn it Algoritmeregister. D'r sille rjochtfeardige útsûnderings op dit wêze. Tink oan ûndersyk, hanthavenjen fan wet, definsje of yntelliginsje sammeljen. De krekte kaders wurde noch útwurke.</p><h2> 6. Guon algoritmen befetsje mear ynformaasje as oare algoritmen?</h2><p class=\"mb-4\"> Op it stuit wurdt it ynfoljen fan it Algoritmeregister frijwillich dien troch oerheidsorganisaasjes. Net elke organisaasje hat der foar keazen om alle ynformaasje te publisearjen. Uteinlik is it wetlik fêststeld hokker ynformaasje ferplicht is en hokker ynformaasje opsjoneel is.</p><h2> 7. Wa wurket oan it Algoritme Register?</h2><p class=\"mb-4\"> De ûntwikkeling fan it Algoritmeregister is begûn mei it konsortium Iepenbiere kontrôle fan algoritmen. Oerheidsorganisaasjes wurken oan beliedsynstruminten foar it ferantwurde gebrûk fan algoritmen. Ien fan de resultaten is ûndersyk nei it Algoritmeregister. It ministearje fan Ynlânske Saken en Keninkryksrelaasjes hat op dizze opboude kennis boud om dit Algoritmeregister te meitsjen. It ministearje wurket mei ICTU oan it ûntwikkeljen fan de webside. It Algoritmeregister lit sjen hokker organisaasjes op it stuit algoritmen foar it Algoritmeregister levere hawwe. Sjoch asjebleaft ûnder it kopke Algoritmen, hjir fine jo alle organisaasjes dy't no ien of mear algoritmen levere hawwe.</p><h2> 8. Hoe ferhâlde de algoritmeregisters fan oerheidsorganisaasjes mei dizze webside?</h2><p class=\"mb-4\"> It Algoritmeregister is de sintrale lokaasje foar alle oerheidsalgoritmen. Guon regearingsorganisaasjes hawwe ek in eigen algoritmeregister. Organisaasjes hawwe de opsje om mear ynformaasje te jaan of op in oare manier. Yn de hjoeddeiske ferzje is de ynformaasje mei de hân kopiearre. Yn 2023 wurdt wurke oan de mooglikheid fan automatyske útwikseling.</p>", + "pageTitle": "Faak Stelde Fragen", + "question1": "Wat is it algoritmeregister?", + "answer1": "<p>It Algorithm Register befettet ynformaasje oer algoritmen brûkt troch de oerheid. Dit makket dizze ynformaasje te finen en beskikber foar boargers, harren advokaten, de media en tafersjochhâlders.</p>", + "question2": "Wêr brûkt de oerheid algoritmen foar?", + "answer2": "<p>Algoritmen kinne helpe om grutte hoemannichten gegevens effisjint te ferwurkjen en bettere ynsjoch te leverjen. Algoritmen helpe om dy tsjinst te ferbetterjen en tiid en jild te besparjen. De oerheid brûkt algoritmen om gegevens te analysearjen, besluten te nimmen en taken te automatisearjen. Foarbylden fan algoritmen brûkt troch de oerheid binne ferkearsmonitoring en online applikaasjes foar oerheidsprodukten.</p>", + "question3": "By hokker algoritmen hearre de beskriuwingen yn it Algoritmeregister?", + "answer3": "<p>Yn alle gefallen moat dit register omfetsje:</p><ul><li> Ynformaasje oer algoritmen dy't wurde oanwiisd as heech-risiko troch de foarstelde Jeropeeske wetjouwing (de AI-feroardering). Dit binne algoritmen dy't eleminten fan autonomy hawwe. Yn it Nederlânsk neame wy dat meastentiids (foar in part) selslearjende algoritmen. It algoritme moat ek operasjoneel wêze yn ien fan 'e tapassingsgebieten fan bylage III. Beskôgje gebieten lykas biometry, krityske ynfrastruktuer en wurkgelegenheid. <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">Mear oer de risikoklassifikaasje yn 'e AI-feroardering</a> en <a href=\"https://spanish-presidency.consilium.europa.eu/en/news/council-parliament-deal-first-worldwide-rules-artificial-intelligence/\" target=\"_blank\">de feroaringen derfan</a>.</li><li> Ynformaasje oer algoritmen dy't in direkte ynfloed hawwe op de belutsenen. Se drage bygelyks by oan in beslút dat ynfloed hat op de rjochten fan immen, har juridyske status of har rjochten ûnder in oerienkomst. Tink oan: in boete oplizze of subsydzje jaan of wegerje.</li></ul><p> Derneist binne d'r in oantal oare redenen om algoritmen folslein te publisearjen. Bygelyks as algoritmen in soad sosjale oandacht krije. Der binne ek redenen om net alle ynformaasje oer in algoritme te publisearjen, bygelyks as in algoritme brûkt wurdt foar deteksje. Idealiter sil de oerheid dan dat diel fan de ynformaasje oer it algoritme publisearje dat publisearre wurde kin. Mear oer <a href=\"https://algoritmes.pleio.nl/wiki/view/19bb6e9e-7a97-43d5-bef3-b1d66e59f4ff/handreiking-algoritmeregister\" target=\"_blank\">seleksje fan algoritmen foar it register</a> is te finen yn 'e gids.</p>", + "question4": "Hokker organisaasjes publisearje oer har algoritmen yn it Algoritmeregister?", + "answer4": "<p>It Algoritmeregister befettet ynformaasje oer algoritmen fan in protte ferskate oerheidsorganisaasjes. Der komme geregeld nije organisaasjes by.</p><p> Yn 'e takomst sil publikaasje fan algoritmen <a href=\"{localised_url}/footer/vragen#question3\">dy't yn dit register hearre</a> ferplicht wêze foar alle oerheidsorganisaasjes; dus it Ryk, provinsjes, gemeenten, wetterskippen. It is noch net dúdlik oft oare publike organisaasjes lykas soarch en ûnderwiis ek ûnder dizze ferplichting falle. Dat wurdt dúdliker op wei nei wetjouwing yn 2025. Se binne al wolkom om harren algoritmen te publisearjen yn it Algoritmeregister.</p>", + "question5": "Hoe sit it mei myn privacy by it brûken fan algoritmen?", + "answer5": "<p>Guon algoritmen brûke persoanlike gegevens foar har taak. Persoanlike gegevens binne gegevens dy't ynformaasje befetsje dy't brûkt wurde kinne om in yndividu te identifisearjen, lykas namme, adres, bertedatum of finansjele ynformaasje. D'r binne in protte easken foar it brûken fan persoanlike gegevens, ynklusyf troch de oerheid. In protte easken binne opnommen yn wetjouwing, lykas de GDPR. It Algoritmeregister befettet ynformaasje oer hokker gegevensboarnen it algoritme brûkt. En oer hokker tests útfierd binne foardat it algoritme yn gebrûk nommen waard, bygelyks in privacytest (DPIA). De <a href=\"https://www.autoriteitpersoonsgegevens.nl/\" target=\"_blank\">Nederlandse Autoriteit Persoonsgegevens</a> hâldt tafersjoch op it neilibjen fan privacy-easken en <a href=\"https://www.autoriteitpersoonsgegevens.nl/actueel/algoritmetoezicht-ap-van-start\" target=\"_blank\">hâldt sûnt 1 jannewaris ek algoritmen ta.</a></p>", + "question6": "Hoefolle algoritmen brûkt de oerheid en hoefolle ynformaasje is opnommen yn dit register?", + "answer6": "<p>Wy steane oan it begjin fan in proses wêryn't de oerheid ynformaasje oer algoritmen aktyf iepenbier makket. It oantal algoritmen yn it register is noch net it totale oantal algoritmen dat troch de oerheid brûkt wurdt. Der is op it stuit net folle ynsjoch yn it totale oantal oerheidsalgoritmen. It is dêrom net bekend hoefolle algoritmen de ynformaasje úteinlik yn it register telâne komme moat. Yn de rin fan de jierren sil der hieltyd mear ynsjoch komme yn it tal en de aard fan oerheidsalgoritmen.</p>", + "question7": "Hokker ynformaasje oer algoritmen krij ik fan it Algoritmeregister?", + "answer7": "<p>De <a href=\"https://algoritmes.pleio.nl/wiki/view/543701c4-318c-4186-b144-de72feca1065/handleiding-algoritmeregister-publicatiestandaard\" target=\"_blank\">publikaasjestandert</a> beskriuwt de ynformaasje dy't nedich is om in algoritme te beskriuwen. Dizze Publikaasjestandert wurdt kontinu ferbettere sadat it better ôfstimd is mei de praktyk, yn oerlis mei oerheden, belanghawwenden en saakkundigen. De fjilden út de publikaasjestandert binne dus noch net ferplicht. It resultaat is dat mei guon algoritmen yn it register noch net alle fjilden ynfierd binne. Oerheidsorganisaasjes wurde stimulearre om safolle mooglik ynformaasje oer harren algoritmen te publisearjen.</p>", + "question8": "Hoe fyn ik in algoritme yn dit register?", + "question9": "Wat moat ik dwaan as it algoritme wêr't ik nei sykje net stiet?", + "answer9": "<p>Nim asjebleaft kontakt op mei de organisaasje dy't it algoritme brûkt en freegje om in útlis fan it beslút as it proses. De measte organisaasjes befetsje kontaktgegevens yn 'e beskriuwing fan it algoritme. Kin it net útfine? Nim dan kontakt op <a href=\"mailto:algoritmeregister@minbzk.nl\">mei algorithmregister@minbzk.nl</a> en wy ferwize jo spesifyk.</p>", + "question10": "Wat moat ik dwaan as de ynformaasje oer it algoritme net dúdlik is of as ynformaasje ûntbrekt?", + "answer10": "<p>As jo fragen hawwe oer in beskriuwing of ûntbrekkende ynformaasje, nim dan kontakt op mei de organisaasje dy't it algoritme publisearre. De measte algoritmen yn it register befetsje kontaktgegevens yn 'e beskriuwing. Kin it net útfine? Nim dan kontakt op <a href=\"mailto:algoritmeregister@minbzk.nl\">mei algorithmregister@minbzk.nl</a> en wy ferwize jo spesifyk.</p>", + "question11": "Wêr kin ik in klacht yntsjinje of beswier meitsje tsjin in regearingsalgoritme yn dit register?", + "answer11": "<p>Jo kinne beswier meitsje en in klacht yntsjinje by de organisaasje dy't it algoritme brûkt. (Hoe't jo dat dogge kinne jo lêze yn dit antwurd [keppeling FAQ 10]. Dat is altyd de earste stap. As jo net tegearre ta in oerienkomst komme kinne jo help krije, bygelyks fan de Nasjonale Ombudsman. Mear oer wat de <a href=\"https://www.nationaleombudsman.nl/over-de-nationale-ombudsman\" target=\"_blank\">Nasjonale Ombudsman</a> kin direkt dwaan oan <a href=\"https://www.nationaleombudsman.nl/klacht-indienen/uw-klacht\" target=\"_blank\">it klachtenformulier</a>.</p>", + "question12": "Kin ik my útskriuwe foar it brûken fan algoritmen?", + "answer12": "<p>Jo kinne net útskriuwe foar it brûken fan algoritmen. Yn dit register kinne jo lykwols ynformaasje fine oer hoe't it algoritme wurket en wat it docht. En jo kinne <a href=\"#question10\">om in ferklearring freegje</a> as jo it beslút fan in algoritme net begripe of as jo tinke dat it ferkeard is. Jo kinne <a href=\"#question11\">beswier meitsje</a> as jo tinke dat it algoritme flaters makke hat dy't jo en/of oaren benaud hawwe.</p>", + "answer15": "<p>It Dutch Algoritme Register komt út in Nederlânske winsk om op basis fan in tal rapporten, parlemintêre moasjes en advizen in register te meitsjen foar mear transparânsje fan de Nederlânske oerheid.</p><p> It <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">ûntwerp fan AI-feroardering</a> sil it wierskynlik ferplicht meitsje dat AI-systemen mei heech risiko wurde dokuminteare. Ynformaasje oer dizze algoritmen einiget úteinlik yn dit Algoritme Register. Om oan de easken fan de wet te foldwaan, wurdt de publikaasjestandert yn de rin fan de tiid oanpast. Der binne ek ferskillen: net alle beskriuwingen yn it Algoritmeregister geane oer heechrisiko- en/of AI-systemen. Der binne ek net-sels-learende algoritmen en/of algoritmen mei in leger risiko karakter yn dit register. Dat sil sa bliuwe. It register siket wol ferbinings mei de KI-regeling, sadat it foar oerheden dy't yn it Nederlânske register steane maklik wurde om ek te foldwaan oan de ferplichtings ûnder de KI-regeling. Hjir moatte wy ek ôfwachtsje hoe't de Europeeske Databank derút komt te sjen. It hinget fan de Europeeske Kommisje ôf, it Nederlânske regear praat dêroer.</p>", + "answer16": "<p>Der wurdt ûndersocht oft ekstra wetjouwing nedich is. Dit wurdt sjoen yn gearhing mei EU-wetjouwing. Dat waard bekend makke yn de <a href=\"https://www.rijksoverheid.nl/documenten/kamerstukken/2022/12/21/kamerbrief-over-het-algoritmeregister\" target=\"_blank\">brief oan de Twadde Keamer</a> fan desimber 2022. Dat duorret grif oant 2025.</p>", + "question13": "Hoe doch ik mei as oerheidsorganisaasje?", + "answer13": "<p>Doch mei oan en publisearje de ynformaasje oer de algoritmen fan jo organisaasje. Besjoch ek de fierdere ûntwikkeling fan dit Algoritmeregister. <a href=\"https://algoritmes.pleio.nl/)\">Doch mei oan de mienskip</a>.</p>", + "answer17": "<p>Stel jo fraach fia <a href=\"mailto:algoritmeregister@minbzk.nl\">algorithmregister@minbzk.nl</a>.</p>", + "group2": "B Gebrûk fan it algoritmeregister", + "group4": "D Meidwaan | op 'e hichte bliuwe", + "group6": "F In oare fraach", + "answer8": "<p>Der binne twa opsjes. Earst kinne jo sykje op organisaasje, wurd of tema. Bygelyks: Gemeente Jo krije dan in oersjoch fan de troch dizze gemeente publisearre algoritmen, mei dit wurd yn de beskriuwingen, of yn dit tema. In twadde opsje is om te 'blêdzjen' troch <a href=\"https://test.algoritmeoverheid.nl/algoritme\">alle algoritmen yn it register</a>.</p>", + "answer14": "<ul><li>Wy organisearje geregeld iepen gearkomsten. Besjoch de <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">aginda</a> op 'e Pleio-algoritme-side.</li><li> Op <a href=\"http://algoritmes.pleio.nl/\" target=\"_blank\">Algorithms.pleio.nl</a> fine jo nijs, de aginda en in tal mienskippen dêr't jo op 'e hichte bliuwe kinne fan in spesifyk ûnderwerp en dêr't jo oer prate kinne.</li><li> Abonnearje op de nijsbrief en ûntfange regelmjittige updates oer algoritmenijs yn jo postfak. <a href=\"https://algoritmeregister.email-provider.eu/memberforms/subscribe/standalone/form/?a=1pjwwoyxrs&l=vdfr1sbovb\" target=\"_blank\">Ynlogge.</a></li><li> Algorithms.overheid.nl is ûntwikkele mei iepen boarne software. De koade en bygelyks de publikaasjestandert binne te finen op <a href=\"https://github.com/MinBZK/Algoritmeregister\" target=\"_blank\">de GitHub-side fan it ministearje fan Ynlânske Saken en Keninkryksrelaasjes</a>.</li></ul>", + "question18": "Wa is ferantwurdlik foar algoritmen en AI binnen in organisaasje?", + "answer18": "<p>Elke organisaasje kin bepale wa't ferantwurdlik is foar algoritmen en AI. En de registraasje yn it Algoritme Register. Yn 'e praktyk sjogge wy faak dat dizze ferantwurdlikens leit yn in CISO (Chief Information Security Officer), CIO (Chief Information Officer), gegevensspesjalist, gegevensbeskermingsoffisier (FG) of ferlykbere posysjes. Wolle jo begjinne? Begjin dan dizze minsken byinoar te bringen yn jo organisaasje. In earste stap is faak om de algoritmen te ynventarisearjen dy't de organisaasje brûkt. As jo ​​​​net krekt witte hokker algoritmen jo brûke, kinne jo ek kontrolearje mei de leveransier fan jo applikaasjes. Kontrolearje ek daliks oft der al in <a href=\"https://algorithms.pleio.nl/wiki/view/6c4da291-2636-4dde-b234-ad057ee528ad/ templates-suppliers\" target=\"_blank\" is > sjabloan</a> is beskikber foar registraasje yn it register fan it algoritme. Wat eigendom oanbelanget, wurdt ferantwurdlikens foar algoritmen yn guon organisaasjes pleatst by de CISO / CIO. Oare organisaasjes kieze der foar om de ôfdieling dêr't it algoritme op jildt (bygelyks parkeare) ferantwurdlik te meitsjen (yn dit gefal de ôfdieling mobiliteit). Dat is wat jo yntern moatte beprate.</p>", + "question19": "Wat is de relaasje tusken it Algorithm Framework en it Algoritme Register?", + "answer19": "<p>Yn it Algorithme Framework fine jo in oersjoch fan alle easken dêr't algoritmen neffens wet- en regeljouwing oan foldwaan moatte. It befettet ek foarbylden fan maatregels dy't jo helpe te foldwaan oan dizze regeljouwing. As lêste wurde goede foarbylden neamd fan hoe't jo oan dy easken foldwaan kinne. Publikaasje fan algoritmen yn it Algoritmeregister is ien fan de maatregels dy't wy as oerheid nimme om mear transparânsje te garandearjen.</p>" + }, + "Footer: Privacyverklaring": { + "content": "<h1>Privacy</h1><p> Dizze webside brûkt analytyske cookies. Cookies binne lytse tekstbestannen dy't websiden op jo kompjûter opslaan. Dit makket jo kompjûter werkenber by jo besite. Dizze ynformaasje helpt it bouteam om de side te ferbetterjen. Analytyske cookies beantwurdzje bygelyks de folgjende fragen:</p><ul><li> Is de besiker nij of hat de besiker de side earder besocht?</li><li> Hokker siden waarden rieplachte by de besite</li><li> Fan hokker side kaam de besiker?</li><li> Hat de besiker fuortdaliks de side ferlitten ('bouncing').</li></ul><p> Dizze cookies wurde net brûkt om in profyl te meitsjen of om jo fierder te folgjen. Dizze webside pleatst gjin cookies fan tredden (cookies fan tredden).</p><h2> Gegevens fia e-post</h2><p> It team behannelet persoanlike ynformaasje dy't bekend wurdt by it Algoritmeregister fia e-post fertroulik. It team bewarret sokke persoanlike gegevens allinich foar de doer fan 'e behanneling fan it berjocht. Neidat jo in antwurd hawwe krigen of as gjin antwurd frege wurdt, bewarret it team allinich de fraach en antwurd. Op fersyk sil it team ek de fraach en antwurd fuortsmite.</p>", + "pageTitle": "Privacy" + }, + "Footer: Toegankelijkheid": { + "content": "<h1>Tagonklikheid</h1><p> By it ûntwikkeljen fan dizze webside binne de winsken en easken foar in tagonklike webside fuortdaliks ferwurke. It bouteam Algorithm Register is oplaat yn digitale tagonklikens. In ûnôfhinklike tagonklikensekspert jout geregeld advys.</p><p> Dizze webside foldocht oan WCAG 2.1 nivo AA, de Web Content Accessibility Guidelines.</p><p> Dat betsjut dat de webside troch elkenien brûkt wurde kin, ek minsken mei in beheining.</p><p> Foar mear ynformaasje:</p><ul><li> <a href=\"https://www.toegankelijkheidsverklaring.nl/register?w=algoritmes\" target=\"_blank\">Register fan oerheid Tagonklikheid ferklearrings</a>.</li><li> <a href=\"https://www.toegankelijkheidscertificaat.nl/algoritmes.overheid.nl/\" target=\"_blank\">Tagonklikheid Sertifikaat</a>.</li></ul>", + "pageTitle": "Tagonklikheid" + }, + "Footer: Over": { + "content": "<h1>Oer it Algoritme Register</h1><p> De oerheid wol dat de oerheid algoritmen ferantwurde brûkt. Minsken moatte fertrouwe kinne dat algoritmen foldogge oan de wearden en noarmen fan 'e maatskippij. En d'r moat in útlis wêze oer hoe't algoritmen wurkje. As de oerheid iepen is oer algoritmen en de tapassing dêrfan, kinne boargers, organisaasjes en media it kritysk folgje en kontrolearje oft it de wet en de regels folget.</p><h2> Ferantwurdlik algoritme gebrûk</h2><p> De folgjende prosessen, ûnder oaren, drage by oan ferantwurde gebrûk fan algoritmen:</p><ol><li> It Algoritmeregister helpt om algoritmen fynber te meitsjen, better útlein en har tapassing en ynfloed begryplik te meitsjen.</li><li> <a href=\"https://www.autoriteitpersoonsgegevens.nl/themas/algoritmes-ai/coordinatie-toezicht-algoritmes-ai\" target=\"_blank\">De Algoritmetoezichthouder</a> (de Nederlandse Autoriteit Persoonsgegevens) koördinearret de kontrôle fan algoritmen: foldogge de oerheidsalgoritmen oan alle jildende regels?</li><li> It ministearje fan Ynlânske Saken en Keninkryksrelaasjes wurket oan it <a href=\"https://algoritmes.pleio.nl/page/view/3877b524-e174-40c6-bcac-f3db875867e1/algoritmekader\" target=\"_blank\">Algoritme Kader</a>. Dit makket oerheden dúdlik hokker easken oan algoritmen jilde en hoe't se der foar soargje kinne dat har algoritmen dêr oan foldwaan.</li><li> Wetjouwing: der komt in wetlike ferplichting foar transparânsje fan algoritmen. Dat waard bekend makke yn de <a href=\"https://www.rijksoverheid.nl/documenten/kamerstukken/2022/12/21/kamerbrief-over-het-algoritmeregister\" target=\"_blank\">brief oan it parlemint fan desimber 2022</a>.</li></ol><h2> Doelen fan it Algoritme Register</h2><p> Wat wolle wy berikke mei it Algoritmeregister? De doelen fan it Algoritmeregister binne mei-inoar ferbûn, lykas dizze ôfbylding lit sjen. De doelen wurde koart útlein ûnder de ôfbylding. In mear detaillearre útlis fan de doelen is te finen yn de <a href=\"https://algoritmes.pleio.nl/wiki/view/19bb6e9e-7a97-43d5-bef3-b1d66e59f4ff/handreiking-algoritmeregister\" target=\"_blank\">Algorithm Register Guide</a>.</p><div><div><ol role=\"list\"><li role=\"listitem\"><p> <strong>Fergrutsjen fan fertrouwen yn de oerheid</strong><br /> De oerheid kin pas effektyf sosjale mearwearde leverje as der fertrouwen is yn de oerheid en minsken har heard en belutsen fiele. It Algoritmeregister moat helpe om it fertrouwen yn 'e oerheid te ferbetterjen.</p></li><li role=\"listitem\"><p> <strong>It fersterkjen fan de posysje fan boargers en bedriuwen</strong><br /> It Algoritmeregister jout boargers en bedriuwen mear ynformaasje oer hoe’t oerheidsprosessen wurkje en hokker karren makke binne.</p></li><li role=\"listitem\"><p> <strong>Mear dúdlikens oer algoritme en AI-gebrûk (Demystifikaasje)</strong><br /> In protte minsken binne ûndúdlik oer wat in algoritme is en hoe't it har libben beynfloedet. It Algoritmeregister jout ynsjoch yn wêr en hoe't de oerheid algoritmen en AI brûkt.</p></li><li role=\"listitem\"><p> <strong>Ferantwurdlik hannelje<br /></strong> De oerheid moat op in ferantwurde wize hannelje. It Algoritmeregister makket oerheidsaksjes mear iepenbier.</p></li><li role=\"listitem\"><p> <strong>It fergrutsjen fan de kontrolearberens fan 'e oerheid</strong><br /> As de oerheid sjen lit wat it docht, kinne boargers en organisaasjes it better yn de gaten hâlde. It Algoritmeregister stipet dizze kontrôle troch de maatskippij.</p></li><li role=\"listitem\"><p> <strong>Fergrutsje de ferklearring</strong><br /> It ynfoljen fan it Algoritmeregister twingt de oerheid om har beslútfoarmingsproses en de tapassing fan algoritmen op in begryplike manier út te lizzen. Boppedat kinne boargers oanjaan oft in taljochting dúdlik is en oft se de operaasje itselde belibje.</p></li><li role=\"listitem\"><p> <strong>Wês transparanter oer hannel</strong><br /> Om iepenheid en ferantwurding te jaan moat de oerheid transparant wêze. It foarsichtich ynfoljen fan it Algoritmeregister is ien fan 'e manieren om dit te dwaan.</p></li></ol></div></div><h2> Iepen ûntwikkeling</h2><p> De earste ferzje fan it Algorithm Register waard lansearre yn desimber 2022. Dit is de basis foar fierdere ûntwikkeling. Troch de oplossing yn 'e praktyk te bringen kinne wy kennis en ûnderfining ophelje. Wy ûntwikkelje it register iepen, tegearre mei saakkundigen, (potinsjele) brûkers en belanghawwenden. Bygelyks, yn 2023 waard it rapport ' <a href=\"https://algoritmes.pleio.nl/attachment/entity/e59fb733-51ca-4811-9b6e-1d89d348a5b3\" target=\"_blank\">Doelgroepanalyse Algoritmeregister</a> ' publisearre. Hieltyd mear punten foar ferbettering binne opnommen yn dizze webside.</p><p> <a href=\"https://algoritmes.overheid.nl/nl/footer/meedoen\" target=\"_blank\">Wolle jo ek bydrage</a> ?</p><h2> Mear en mear algoritmen</h2><p> It Algoritmeregister is noch net kompleet. It jaan fan ynformaasje oer algoritmen is noch net ferplicht foar oerheidsorganisaasjes. Dy ferplichting sil komme. Foar dy tiid publisearje hieltyd mear oerheidsorganisaasjes ynformaasje oer har algoritmen. Om't se iepen en transparant wêze wolle oer har prosessen en it brûken fan algoritmen.</p><p> Lês bygelyks <a href=\"https://algoritmes.pleio.nl/news/view/68abf211-f915-4433-ab28-9d51b5aa443e/groningen-over-de-winst-maak-het-niet-te-ambtelijk\" target=\"_blank\">it ferhaal fan de gemeente Grins</a>.</p>", + "pageTitle": "Oer it Algoritme Register" + }, + "Footer: Meedoen": { + "pageTitle": "Dielnimme", + "content": "<h1>Dielnimme</h1><p> Jo kinne meidwaan as jo <a href=\"meedoen#overheden\">foar de oerheid wurkje</a> en as jo <a href=\"meedoen#geinteresseerd\">net foar de oerheid wurkje</a>.</p><h2 id=\"overheden\"> Oerheden: meidwaan en meitinke</h2><p> Hieltyd mear oerheden dogge mei en publisearje ynformaasje yn dit regearingsalgoritmeregister oer har algoritmen mei hege ynfloed en algoritmen mei hege risiko neffens de kommende <a href=\"https://www.consilium.europa.eu/nl/press/press-releases/2022/12/06/artificial-intelligence-act-council-calls-for-promoting-safe-ai-that-respects-fundamental-rights/\" target=\"_blank\">Jeropeeske AI-regeling.</a></p><p> It basisprinsipe is dat oerheden sels ferantwurdlik binne foar it opstellen en behearen fan har algoritmebeskriuwings yn it Algoritmeregister. It Algoritmeregister jout stipe mei help, rjochtlinen, ark en in publikaasjestandert.</p><h3> Help en begelieding</h3><ol><li> Wolle jo organisaasje meidwaan en publisearje oer de algoritmen dy't jo brûke? Jo kinne hjir mear ynformaasje oer lêze op <a href=\"https://algoritmes.pleio.nl/\" target=\"_blank\">Algoritmen Pleio-omjouwing</a> , bygelyks yn 'e <a href=\"https://algoritmes.pleio.nl/wiki/view/19bb6e9e-7a97-43d5-bef3-b1d66e59f4ff/handreiking-algoritmeregister\" target=\"_blank\">gids 'Aan de slag mei it algoritmeregister'</a>.</li><li> Jo kinne de planning en eftergrûnynformaasje fine op algorithms.pleio.nl. Jo fine ek <a href=\"https://algoritmes.pleio.nl/page/view/67f8e63c-82b4-474e-a003-6ab8923d5184/praktijkverhalen-nieuw\" target=\"_blank\">praktyske ferhalen fan organisaasjes</a> oer hoe en wêrom se ferbûn binne mei it Algoritmeregister. Bygelyks fan <a href=\"https://algoritmes.pleio.nl/news/view/68abf211-f915-4433-ab28-9d51b5aa443e/groningen-over-de-winst-maak-het-niet-te-ambtelijk\" target=\"_blank\">de gemeente Grins</a>.</li><li> <a href=\"https://algoritmes.pleio.nl/wiki/view/2bcdf820-ce62-4249-95f7-d1a13fb6e1c9/handleiding-algoritmeregister-publicatiestandaard\" target=\"_blank\">Besjoch de publikaasjestandert</a> - hokker ynformaasje jouwe jo as jo de beskriuwing fan in algoritme wolle publisearje?</li><li> Jo kinne ek kontakt mei ús opnimme foar assistinsje fia <a href=\"mailto:algoritmeregister@minbzk.nl\">algorithmregister@minbzk.nl</a>.</li></ol><h3> Tools: maklik sels-publisearjen</h3><ol><li> Jo kinne yntsjinje mei <a href=\"https://algoritmes.pleio.nl/wiki/view/b22c2b86-ad44-458d-8c2b-b8ee99bcc077/account-aanmaken-en-gebruik-maken-van-het-algoritmeregister\" target=\"_blank\">in online formulier</a> of automatysk fia in <a href=\"https://algoritmes.pleio.nl/wiki/view/6f6b7a6a-6ae9-4ae3-9f80-2d1137985091/handleiding-api-algoritmeregister\" target=\"_blank\">API.</a></li><li> Elk kwartaal presintearje wy de nije ark fan 'e applikaasje yn iepenbiere demo's. Tuskentroch bliuwst op ‘e hichte yn de sprintresinsjes. <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">Besjoch de aginda hjirfoar</a>.</li></ol><h2 id=\"geinteresseerd\"> Ynteressearre? Bliuw op 'e hichte en doch mei oan it petear</h2><p> Wy sille tegearre mei belanghawwenden it Algoritmeregister, de ark en noarmen fierder ûntwikkelje. Wurkje jo net foar de oerheid en wolle jo meiprate en meitinke? Dit kin dien wurde op de folgjende manieren.</p><ol><li> Doch mei oan 'e <a href=\"https://algoritmes.pleio.nl\" target=\"_blank\">mienskip</a> op it Pleio-platfoarm. <a href=\"https://account.pleio.nl/register/\" target=\"_blank\">Meitsje in akkount foar dit</a>.</li><li> De registersoftware is iepen boarne. <a href=\"https://github.com/MinBZK/Algoritmeregister\" target=\"_blank\">Besjoch de koade</a> op GitHub fan it Ministearje fan Ynlânske Saken en Keninkryksrelaasjes.</li><li> Iepenbiere online gearkomsten: der binne geregeld gearkomsten oer de stân fan saken en spesifike tema's. Besjoch de <a href=\"https://algoritmes.pleio.nl/events\" target=\"_blank\">aginda</a>.</li><li> (Potinsjele) brûkers, sosjale organisaasjes en saakkundigen drage ideeën oan oer fierdere ferbetteringen oan it Algoritmeregister. Sadat it Algoritmeregister meikoarten sa ticht mooglik komt by wat minsken nedich binne. Wy fiere bygelyks in protte ynterviews foar dit doel. It rapport ' <a href=\"https://algoritmes.pleio.nl/attachment/entity/e59fb733-51ca-4811-9b6e-1d89d348a5b3\" target=\"_blank\">Doelgroepanalyse Algoritme register</a> ' waard publisearre yn 2023. Hieltyd mear punten foar ferbettering binne opnommen yn dizze webside. In twadde doelgroepanalyse folget yn 2024.</li></ol><div></div>" + }, + "Footer: Over algoritmes": { + "pageTitle": "Oer algoritmen", + "img_alt": "De kolleksje 'alle algoritmen' befettet sawol de subset 'Impactful algorithms' (mei ynfloed op minsken) as de subset 'AI'.", + "content": "<h1>Oer algoritmen</h1><div><p> <strong>In algoritme is in set regels en ynstruksjes dy't in kompjûter automatysk folget by it meitsjen fan berekkeningen om in probleem op te lossen of in fraach te beantwurdzjen (boarne: Rekkenkeamer). Jo tsjinkomme oeral algoritmen, ek yn oerheid.</strong></p></div><div><p> Elkenien dy't geregeld wat op ynternet docht, komt algoritmen tsjin. Browsers, online bankieren, streamingtsjinsten lykas Netflix, en sosjale media lykas Facebook en Instagram; algoritmen meitsje it mooglik.</p></div><div><p> De oerheid brûkt ek algoritmen. Tink oan it online oanfreegjen fan subsydzje. It algoritme helpt dan om fuortendaliks te beoardieljen oft jo oan de betingsten foldwaan of net. Dit is in foarbyld fan in algoritme mei dúdlike beslútregels en in dúdlik antwurd: ja of nee?</p></div><div><p> Oare algoritmen kinne trends werkenne. Se litte bygelyks sjen hoe't kriminaliteit him ûntjout yn in stêd. Dat helpt plysje en gemeente om de goede maatregels te nimmen. Of se analysearje (anonime) sûnensgegevens, dy't brûkt wurde kinne om folkssûnensbelied te meitsjen. Soms binne dizze algoritmen '(sels)learend'. Dit betsjut dat se oplaat wurde om sels patroanen te ûntdekken.</p></div><div><h2 role=\"heading\"> Impactful algoritmen</h2></div><div><p> Algoritmen binne net perfekt. Se meitsje soms flaters en der is risiko op foaroardielen, krekt as by minsken. Dit is yn it ferline ferskate kearen ferkeard gien mei automatisearre oerheidsprosessen.</p></div><div><p> It Ryk wurket oan ferbetterings. Dat docht se bygelyks troch op in ferantwurde wize algoritmen te ûntwikkeljen en te brûken. It is wichtich dat de oerheid transparant is oer de ynfloedrike algoritmen dy't se brûkt. Sadat boargers en belanghawwenden ynsjoch hawwe yn algoritmen dy't harren libben beynfloedzje. Bygelyks, algoritmen dy't juridyske gefolgen hawwe foar minsken of dy't soargje dat de oerheid minsken klassifisearret, hawwe ynfloed. Tink oan it identifisearjen fan minsken dy't rjocht hawwe op bepaalde útkearingen, sadat de oerheid proaktyf bystân jaan kin.</p></div><div><h2 role=\"heading\"> Sichtber en kontrolearber</h2></div><div><p> It Algoritmeregister hat as doel de brûkte algoritmen mei hege ynfloed sichtber en ferifieare te meitsjen. Sadat jo as boarger, advokaat, saakkundige of sjoernalist sjen kinne. As jo fragen hawwe, of tinke dat der wat mis is mei in algoritme yn dit register, kinne jo <a href=\"vragen#question10\">kontakt opnimme mei</a> de organisaasje dy't it algoritme beheart. Of: <a href=\"over\">Lês mear oer it Algoritme Register</a>.</p></div><div><h2 role=\"heading\"> Relaasje mei AI</h2></div><div><p> Keunstmjittige (as keunstmjittige) yntelliginsje (AI) stelt kompjûters en masines yn steat om yntelliginte taken út te fieren. In bekend foarbyld hjirfan is ChatGPT, in programma dat de fragen beantwurdzje kin dy't jo it stelle. In oar foarbyld is AI dy't in dokter kin helpe om ferskate soarten kanker fluch te ûntdekken.</p></div><div><p> Algoritmen binne in wichtich ûnderdiel fan AI, om't se kompjûters en masines helpe om dizze taken út te fieren mei wiskundige formules en patroanen. AI kin bygelyks ferbinings ûntdekke en ôfbyldings analysearje. De relaasje tusken AI en algoritmen is as folget: AI bestiet út algoritmen, mar net alle algoritmen binne diel fan AI. Bygelyks, de earder neamde net-sels-learende algoritmen binne gjin AI-systemen, mar jo kinne se fine yn dit register.</p></div><div><p> Dizze ferbining tusken AI en algoritmen kin sjoen wurde yn it diagram hjirûnder. Guon fan alle algoritmen - oft diel fan in AI-systeem of net - hawwe in ynfloed.</p></div>", + "content2": "<div><p>Dat betsjut twa dingen. Earst: alle AI bestiet út algoritmen, mar in lyts part fan de algoritmen is diel fan in AI-systeem. Twadder is d'r in oerlap tusken ynfloedrike algoritmen en AI. Guon AI hat ynfloed, guon AI is net.</p></div><div><h2 role=\"heading\"> Wetjouwing</h2></div><div><p> De Jeropeeske Uny wurket oan wetjouwing spesifyk foar AI: de AI-feroardering. Mear oer de <a href=\"vragen#question15\">relaasje tusken it Algoritmeregister en de kommende AI-regeling</a>.</p></div>" + }, + "Footer: Zelf aan de slag": { + "pageTitle": "Begjin sels", + "content": "Mear ynformaasje sil folgje." + }, + "footer": { + "text": "", + "textForLink": "" + }, + "Home": { + "about": "<p><strong>Oer algoritmen</strong></p><p> In algoritme is in set regels en ynstruksjes dy't in kompjûter automatysk folget by it meitsjen fan berekkeningen om in probleem op te lossen of in fraach te beantwurdzjen. <a href=\"{localised_url}/footer/over-algoritmes\">Mear oer algoritmen</a>.</p>", + "collaborate": "<p><strong>Trochgean mei ûntwikkeljen tegearre</strong><br /> Hieltyd mear oerheidsorganisaasjes publisearje ynformaasje oer har algoritmen yn it Algoritmeregister. It register wurdt op iepen wize fierder útwurke. <a href=\"https://algoritmes.pleio.nl/\">Join de mienskip</a>.</p>", + "aboutRegister": "<p><strong>Oer dit register</strong></p><p> Yn dit Algoritmeregister publisearje hieltyd mear Nederlânske oerheidsorganisaasjes ynformaasje oer algoritmen dy't se yn har wurk brûke. Se rjochtsje har op ynfloedrike algoritmen en jouwe de besiker ynsjoch yn hoe't dizze algoritmen wurkje. <a href=\"{localised_url}/footer/registreer-je-algoritme\">Registrearje jo algoritme</a>.</p>", + "highlightTextBottom": "<p><a href=\"{localised_url}/algoritme\">Of blêdzje troch alle algoritmen</a></p>", + "toDo": "<p><strong>Wat kin ik hjir dwaan?</strong></p>\n<p>Hoe kinne jo it Algoritmeregister brûke? En wat dogge jo as it algoritme dat jo sykje noch net yn dit register stiet? <a href=\"{localised_url}/footer/vragen\">Besjoch de faak stelde fragen</a>.</p>", + "highlightTextTop": "Besjoch de 3 meast resint feroare algoritmebeskriuwingen", + "title-tag": "it Algoritmeregister fan de Nederlânske oerheid", + "meta-description": "It algoritmeregister sammelet alle algoritmebeskriuwingen dy't brûkt wurde troch oerheidsorganisaasjes yn Nederlân." + }, + "Zoekbalk": { + "hint": "Sykje op wurd, tema of organisaasje", + "hintOrganisatie": "Sykje in organisaasje" + }, + "language-disclaimer": { + "closeText": "Slute", + "content": "<p><strong>Tink derom</strong>: De algoritmebeskriuwingen yn it Frysk binne automatysk oerset. Hjir kinne flaters yn sitte. Foar de orizjinele beskriuwingen geane jo nei de Nederlânske ferzje fan it Algoritmeregister.</p>", + "goToDutch": "Gean nei it Nederlânsk" + }, + "Footer: Archief": { + "content": "<h1>Argyf</h1><p> Websiden binne in wichtige boarne fan ynformaasje foar boargers, bedriuwen en oerheden. Dat jildt ek foar eardere ferzjes fan websiden. Dit kin ynformaasje befetsje dy't noch relevant is en dêr't rjochten oan ûntliend wurde kinne. Troch it argivearjen fan websiden kinne se permanint tagonklik bliuwe: se bliuwe dus beskikber foar it besjen fan publike ynformaasje. Dit is ferplichte foar alle oerheidswebsides.<br /><br /> Dizze ferzjes sille yn it <a href=\"https://minbzk.sitearchief.nl/?subsite=algoritmeoverheid#archive\" target=\"_blank\">argyf</a> pleatst wurde. Yn it oersjoch fine jo de webargiven fan alle ferplichte dielnimmers. Klik op in argyf, kies in datum út it ferline fia de kalinder en de side past de ynhâld oan oan wat doe aktueel wie. Jo kinne weromgean nei 25 jannewaris 2023.</p><p> Mear witte? <a href=\"https://www.nationaalarchief.nl/archiveren/kennisbank/Richtlijn-Archiveren-Overheidswebsites\">Besjoch de rjochtlinen foar it argyfearjen fan regearingswebsiden hjir</a>.</p>", + "pageTitle": "Argyf" + }, + "Footer: Kwetsbaarheid melden": { + "content": "<h1>Meld kwetsberens</h1><p> As jo in swak plak of kwetsberens op dizze webside ûntdekke, rapportearje it dan asjebleaft oan it National Cyber Security Center (NCSC). It meitsjen fan sa'n rapport hjit Coordinated Vulnerability Disclosure (CVD). Wy sille tegearre mei it NCSC nei it probleem sjen en it sa gau mooglik oplosse.</p>", + "pageTitle": "Meld kwetsberens" + }, + "Footer: Release-notes": { + "pageTitle": "Release notysjes", + "content": "<h2>Release notysjes</h2>\n<p>Op dizze side fine jo wizigingen oan 'e software dy't nuttich binne om te witten as jo in besiker of bewurker binne.</p>\n<h2>3 mei 2024</h2>\n<h3>Foar redaksje:</h3>\n<div>\n<p><strong>Ferbettere: Publishing proses</strong><br />Organisaasjes brûke in webformulier mei in publikaasjeproses wêrmei se kinne kontrolearje wat se publisearje. It publikaasjeproses hat ferskate stappen. Dit kwartaal wurkje wy oan it ferbetterjen fan it hiele proses. Dat is nedich fanwegen de groei fan it register en wy wolle graach foldwaan oan de winsken fan in hieltyd gruttere groep redaksjes. De wichtichste ferbetterings oant no binne:</p>\n</div>\n<div>\n<ul role=\"list\">\n<li role=\"listitem\">\n<p>It webformulier is better ûntwurpen foar in mear brûkerfreonlike ûnderfining.</p>\n</li>\n<li role=\"listitem\">\n<p>In konseptferzje wurdt no oanmakke elke kear as in algoritmebeskriuwing wurdt opslein. Dit makket it mooglik om earder bewarre ferzjes fan beskriuwingen werom te rôljen.</p>\n</li>\n</ul>\n</div>\n<div>\n<p>Wy sille dizze (en takomstige) ferbetteringen ek wiidweidich testen oant july. As de resultaten goed binne, wurdt it webformulier nije simmer bywurke.</p>\n</div>\n<div>\n<p><strong>Added: Nije sjabloanen</strong><br />Yn it webformulier kinne organisaasjes sjabloanen brûke fan algoritmebeskriuwings fan leveransiers. Organisaasjes kinne fan no ôf ek nije sjabloanen brûke om de beskriuwing fan it algoritme 'Octobox Anonymize' (fan Octobox en DocDirekt) en 'Notifikaasjes foar iepenbiere romte' (fan de Gemeente Amsterdam) te publisearjen.</p>\n</div>\n<div>\n<p><strong>Oplost: Organisaasje details webformulier</strong><br />It webformulier kin brûkt wurde troch organisaasjes om tekst te skriuwen foar har organisaasjeside yn it Algoritmeregister. Dêr kin oanjûn wurde hoe't organisaasjes omgean mei algoritmen en de publikaasje dêrfan yn it Algoritmeregister. Der is koart in flater bard wêrby't dizze organisaasjedetails net bewarre wurde koenen. Dizze flater is reparearre en alles wurket wer goed.</p>\n</div>\n<h2>19 april 2024</h2>\n<div>\n<h3 role=\"heading\">Foar besikers:</h3>\n</div>\n<div>\n<p><strong>Ferbettere: Suggestjes foar organisaasjes basearre op sykterm</strong><br />Wylst jo typen, sille suggestjes fan organisaasjes dy't socht wurde kinne ferskine ûnder de sykbalke. Troch op in suggestje te klikken, wurdt de sykterm automatysk foltôge.</p>\n</div>\n<div>\n<p><strong>Ferbettere: Makliker navigaasje nei alle algoritmebeskriuwingen</strong><br />It totale oantal algoritmen is te klikken boppe de sykbalke. Troch hjirop te klikken geane jo direkt nei it oersjoch fan alle publisearre algoritmebeskriuwingen.</p>\n</div>\n<div>\n<p><strong>Ferbettere: Alle seleksjefilters kinne tagelyk wurde wiske</strong><br />Alle sykkritearia dy't jo brûkt hawwe by it sykjen nei in algoritmebeskriuwing of organisaasje kinne no yn ien kear fuortsmiten wurde troch te klikken op 'Seleksje fuortsmite' boppe it filterblok.</p>\n</div>\n<div>\n<p><strong>Nij: Dúdliker wêr't op in side nei socht wurde kin fia de sykbalke</strong><br />Fia de menuopsjes 'Algorithmen' en 'Organisaasjes' kinne jo sykje nei algoritmebeskriuwings en organisaasjes dy't publisearre hawwe yn it Algoritmeregister. De sykbalke op dy siden hat in titel krigen om dúdliker te meitsjen wat dêr te finen is.</p>\n</div>\n<h2>5 april 2024</h2>\n<h3>Foar besikers:</h3>\n<p><strong>Nij: It Algoritmeregister wurdt automatysk oerset yn it Frysk (beta)</strong><br />Fryske besikers kinne no ek gebrûk meitsje fan it Algoritmeregister. De webside kin brûkt wurde yn it Frysk fia de knop Taal rjochtsboppe op elke side (mobyl fia de knop 'Menu'). De algoritmebeskriuwings yn it Frysk binne automatysk oerset. Der kinne flaters yn dit. Gean foar de orizjinele beskriuwingen nei de Nederlânske ferzje fan it Algoritmeregister.</p>\n<h2>maart 2024</h2>\n<h3>Foar besikers:</h3>\n<p><strong>Oanpast: Tekstoanpassingen op ynformaasjesiden<br /></strong> De kop 'Doelstellingen fan it algoritmeregister' is tafoege oan 'e side ' <a href=\"https://algoritmes.overheid.nl/nl/footer/over\" target=\"_blank\">Oer it algoritmeregister</a> ', wêr't ús sân doelstellingen koart útlein wurde.</p>\n<p><strong>Ferbettere: Webargyf<br /></strong> De webargivearring foar it Algoritmeregister wurket wer goed. Foar mear ynformaasje klik <a href=\"https://algoritmes.overheid.nl/nl/footer/archief\">hjir</a>.</p>\n<p><strong>Oanpast: de sykbalke ûnthâldt no suggestjes fan 'e sykmasjine<br /></strong> By it typen fan in sykfraach sille suggestjes ûnder de sykbalke ferskine. As jo bûten de sykbalke klikke, ferdwine dy suggestjes, mar se komme no werom as jo opnij yn 'e sykbalke klikke.</p>\n<p><strong>Nij: It is no mooglik om te sykjen fia de menu-opsje 'Organisaasjes'.</strong><br />Yn it haadmenu boppe-oan is d'r in opsje 'Organisaasjes' wêr't jo in list kinne besjen fan alle organisaasjes dy't publisearre hawwe, mei har algoritmebeskriuwings. Fanôf no kinne jo de sykbalke brûke om organisaasjes fan dy side te sykjen.</p>\n<div>\n<p><strong>Ferbettere: Sykje mei organisaasjeôfkoarting toant de opsje om direkt nei de organisaasjeside te navigearjen<br /></strong> It is no mooglik om direkt nei in organisaasjeside te navigearjen mei in ôfkoarting, bygelyks BZK (Binnenlânske Saken en Keninkryksrelaasjes) of UWV (Employee Insurance Agency).</p>\n<p><strong>Ferbettere: Mei in organisaasjenamme as sykterm fine jo no alle algoritmebeskriuwings fan dy organisaasje</strong><br />As jo de namme fan in organisaasje yn 'e sykbalke ynfiere, ferwachtsje jo op syn minst alle algoritmebeskriuwingen fan dy organisaasje te finen. Dat wie net altyd it gefal. De sykfunksje is technysk oanpast om folsleinens te garandearjen.</p>\n<p><strong>Ferbettere: Smarter sykjen as in organisaasjenamme wurdt brûkt as sykterm<br /></strong> As jo de ôfkoarte of folsleine namme fan in organisaasje yn 'e sykbalke ynfierd hawwe, soe it sykresultaat alle algoritmebeskriuwings wêze wêr't de organisaasjenamme earne yn 'e beskriuwing stie. Sels al wiene dat algoritmebeskriuwingen fan oare organisaasjes. Dat is net altyd wat jo sykje. Dêrom krije jo no suggestjes ûnder de sykbalke wêrút jo kinne kieze. Hjirmei kinne jo rapper en spesifyk sykje. Dizze suggestjes sille yn 'e heine takomst fierder útwreide en ferfine.</p>\n<p><strong>Feroare: Publishing standert wurdt no ek werjûn</strong><br />By it werjaan fan de sykresultaten is no ek te sjen hokker ferzje fan de publisearjende standert brûkt is. Omdat de beskikbere ynformaasje kin ferskille per ferzje.</p>\n<p><strong>Ferbettere: Mei downloads sjogge jo dat de ynlaad noch oan 'e gong is<br /></strong> Troch de groei fan it Algorithm Register duorret it downloaden no wat langer. Jo krije no feedback hjiroer, sadat jo witte dat jo in skoft wachtsje moatte oant de ynlaad klear is.<strong><br /></strong></p>\n<h3><strong>Foar redaksje:</strong></h3>\n<p><strong>Nij: Algoritme beskriuwing Anonymisaasje folle rapper mei it eData BV-sjabloan<br /></strong> Yn it webformulier kinne organisaasjes no it sjabloan fan de leveransier eData BV (ek wol eSpecialists BV neamd) brûke om de beskriuwing fan it Anonymisaasjealgoritme flugger te foltôgjen.</p>\n<p><strong>Oanpast: Kontrolearje de keppeling nei jo eigen webside op 'e organisaasjeside<br /></strong> Op dit register kinne organisaasjes útlizze hoe't se omgean mei algoritmen op har eigen organisaasjepagina. Yn it fjild: 'Mear ynformaasje' kinne jo in keppeling opnimme nei in side op jo eigen webside. It is no net mear mooglik om spaasjes yn dy keppeling ta te foegjen. It is no tastien om in slash ('/') oan 'e ein fan in keppeling ta te foegjen.</p>\n<p><strong>Oplost: teksten organisearre yn paragrafen mei lege rigels dertusken waarden net bewarre<br /></strong> Fanwegen in resinte brek waard ynformaasje ferspraat oer meardere paragrafen net bewarre. Sa ferdwûn ynformaasje. Dit is no oplost.</p>\n<br />\n<h2>febrewaris 2024</h2>\n<h3>Foar besikers:</h3>\n<p><strong>Oplost: Gjin frjemd karakter mear yn CSV-download</strong><br />By it downloaden fan algoritmebeskriuwingen yn in CSV-bestân ferskynde soms in frjemd karakter. Dizze flater is no ferholpen.</p>\n<p><strong>Oplost: Ingelske Excel-download omfettet no Ingelske labels</strong><br />By it downloaden fan Ingelske algoritmebeskriuwingen waarden Nederlânske labels toand. Dizze labels, te sjen yn kolom A, binne no oerset yn it Ingelsk.</p>\n<p><strong>Oplost: Ljeppers yn Excel-bestân wurde efterinoar werjûn</strong><br />By it downloaden fan algoritmebeskriuwingen mei meardere publisearjende noarmen, wurde de ljeppers fermeld fan nijste oant âldste ferzje.</p>\n<p><strong>Feroare: Ferzje-ynformaasje is omneamd ta release-notysjes</strong><br />Yn 'e kolofon is ferzje-ynformaasje omneamd ta release-notysjes.</p>\n<p><strong>Oplost: Gjin HTML-koade mear yn Excel-downloads</strong><br />By it downloaden fan algoritmebeskriuwingen yn in Excel-bestân, waard opmaakkoade ûnbedoeld opnommen. Dit is technyske koade bedoeld foar it werjaan fan tekst op 'e webside. Dizze flater is no ferholpen.</p>\n<h3>Foar redaksje:</h3>\n<p><strong>Nij: Meitsje rapper algoritmebeskriuwing mei help fan in sjabloan</strong><br />Jo kinne no sjabloanen brûke yn it webformulier om jo algoritmebeskriuwing rapper yn te foljen. Om te begjinnen binne 9 sjabloanen beskikber steld troch leveransiers dy't benammen oan gemeenten leverje.<br /><br /><strong>Oanpast: Publikaasje standert ferzje 1.0 no ferplicht foar nije algoritme beskriuwingen</strong><br />De definitive ferzje fan 'e publikaasjestandert waard yn desimber 2023 oannaam. It is no net mear mooglik om nije beskriuwingen te begjinnen yn in âldere ferzje fan de standert. Jo kinne besteande beskriuwingen noch bewurkje yn in âldere standert.</p>\n<p> </p>\n<h2>jannewaris 2024</h2>\n<h3>Foar besikers:</h3>\n<p><strong>Ferbettere: De downloadopsjes binne útwreide</strong><strong><br /></strong> Alle algoritme beskriuwingen kinne wurde ynladen út it register. Dit kin dien wurde foar alle algoritmebeskriuwingen tagelyk yn ien heul grut bestân. Dit kin ek dien wurde apart per algoritme beskriuwing. It is no mooglik om algoritmebeskriuwingen te downloaden yn sawol it Nederlânsk as it Ingelsk. En dit kin dien wurde as in Excel-bestân of as in CSV-bestân. As jo in CSV-bestân kieze, kinne jo it ek iepenje yn Excel, mar om algoritmebeskriuwingen yn Excel te iepenjen is it handiger om se te downloaden as in Excel-bestân.</p>\n<p><strong>Nij: Syktermen wurde yn giel markearre yn 'e sykresultaten</strong><strong><br /></strong> By it sykjen kinne jo soms jo sykterm yn giel markearre sjen yn 'e sykresultaten. Dit is wier as de term ferskynt yn 'e koarte beskriuwing. As de term earne oars fûn wurdt yn in algoritmebeskriuwing, sille jo dat algoritme sjen yn 'e sykresultaten, mar net mei de sykterm yn giel markearre.</p>\n<p><strong>Ferbettere: filteropsjes wurkje no ek yn 'e Ingelske werjefte</strong><strong><br /></strong> Filteropsjes op 'e side 'Algorithms' wurkje no ek yn it Ingelsk.</p>\n<p><strong>Ferbettere: Brûk syktermen om te filterjen</strong><strong><br /></strong> Jo kinne no sykbegripen kombinearje mei oare filteropsjes foar in mear rjochte sykopdracht.</p>\n<p><strong>Nij: Menu-opsje: 'Organisaasjes'</strong><strong><br /></strong> In nije opsje 'Organisaasjes' is tafoege yn it haadmenu boppe. Hjir fine jo no in list fan alle organisaasjes dy't publisearre hawwe, mei in gearfetting fan har algoritmebeskriuwings. Organisaasjes hawwe no in nije opsje om har eigen algemiene útlis te jaan. Se kinne ek in útlis jaan oer wêrom't se net publisearje op it Algoritmeregister.</p>\n<p><strong>Nij: Ynformaasjeside: 'Kwetsberens melde'</strong><br />De footer befettet in keppeling nei in nije side mei ynstruksjes oer hoe't jo in kwetsberens yn 'e feiligens fan' e webside kinne rapportearje.</p>\n<p><strong>Oplost: Organisaasjes binne no alfabetysk yn listen sortearre</strong><strong><br /></strong> Organisaasjes wurde no standert oeral yn alfabetyske folchoarder neamd.</p>\n<p><strong>Oanpast: de keppeling 'Webargyf' is omneamd ta 'Argyf'</strong><br />Yn de footer is d'r in keppeling nei it deistich bywurke webargyf fan 'e webside. De namme fan dizze keppeling is feroare yn 'Argyf'. Dit is om te passen by de nammejouwing op oare oerheidssites.</p>\n<h3>Foar redaksje:</h3>\n<p><strong>Nij: Skriuwhelp is beskikber foar staverings- en taalflaters</strong><strong><br /></strong> By it ynfoljen fan it webformulier wurdt no automatysk in staveringskontrôle útfierd lykas yn in tekstferwurker en wurde suggestjes foar ferbetteringen jûn.</p>\n<p><strong>Nij: Jo kinne no ynformaasje tafoegje oer jo organisaasje</strong><strong><br /></strong> Jo hawwe no de opsje om ekstra ynformaasje te jaan oer hoe't de organisaasje omgiet mei algoritmen en har publikaasje yn it Algoritmeregister. Der is ek in opsje om in keppeling ta te foegjen nei in ynformaasjeside op de eigen webside fan de organisaasje. Freegje jo kontaktpersoan om jo te helpen it foar it earst te brûken.</p>\n<h2>desimber 2023</h2>\n<h3>Foar besikers:</h3>\n<p><strong>De sykresultaten wurde kompakter werjûn</strong><br />De besiker sjocht no mear sykresultaten yn ien eachopslach.</p>\n<p><strong>Syksuggestjes wurde werjûn</strong><br />De besiker sil suggestjes sjen ûnder de sykbalke basearre op de typte letters.</p>\n<p><strong>It webargyf is tafoege oan de foettekst</strong><br />Foar mear ynformaasje klik <a href=\"https://algoritmes.overheid.nl/nl/footer/archief\">hjir</a>.</p>\n<p><strong>It register wurdt automatysk oerset yn it Ingelsk</strong><br />Ynternasjonale besikers kinne no ek it Algoritmeregister brûke.</p>\n<p><strong>De download knop</strong><br />De knop dy't eartiids in CSV-bestân downloade, downloadt no in Excel-bestân.</p>\n<h3>Foar redaksje:</h3>\n<p><strong>Organisaasje side</strong><br />Op de side fan 'e organisaasjedetails kin de bewurker oanfoljende ynformaasje beskriuwe oer hoe't se omgean mei algoritmen en har publikaasje.</p>\n<p><strong>Technyske flaters dy't barde by it downloaden fan in algoritmebeskriuwing binne oplost</strong><br />Wêr't de bewurker earder fjilden leech of ûnfolslein litte koe en opslaan, kriget er no in flatermelding. Dit flaterberjocht jout oan hokker fjild noch aksje nedich is.</p>\n<div>\n<h2>novimber 2023</h2>\n</div>\n<div>\n<h3>Foar besikers:</h3>\n<p><strong>De sykmasine is bywurke</strong><br />Jo kinne no sykje nei kombinaasjes fan trefwurden, staveringsflaters, ôfkoartings en synonimen.</p>\n<p><strong>De sykresultaten binne ferdield yn organisaasjetypen</strong><br />Oan de linkerkant fan de sykresultaten wurdt de brûker de opsje jûn om in organisaasjetype te kiezen en sjocht in oersjoch fan de selektearre filters.</p>\n<h3>Foar redaksje:</h3>\n<p><strong>De redaksje sjocht hoe fier it webformulier ynfolle is</strong><br />Op grûn fan in foarútgongbalke boppe it ynfierformulier kin de bewurker sjen hoe folslein de algoritmebeskriuwing is.</p>\n<p><strong>De definitive ferzje fan de publikaasjestandert is beskikber<br /></strong> Algoritmebeskriuwingen op it register hawwe in fêste tekststruktuer: de Publikaasjestandert. Earder wie dizze standert noch yn ûntwikkeling en waarden ferskate konseptferzjes njonkeninoar brûkt. De definitive 1.0 ferzje waard beskikber yn desimber. It is it bêste foar de bewurker om nije algoritmebeskriuwingen direkt yn dit nije formaat te publisearjen. De bewurker kin besteande beskriuwingen migrearje fan it âlde formaat nei it nije formaat. Dit is net nedich fuortendaliks, mar it is oan te rieden. Sa helpt de redaksje de kwaliteit fan it register te ferbetterjen. Migraasjehelp is beskikber.</p>\n</div>\n</div>\n<div>\n<h2>oktober 2023</h2>\n</div>\n<div>\n<h3>Foar redaksje:</h3>\n</div>\n<div>\n<p><strong>De downloadopsjes binne wiidweidich<br /></strong> De algoritmebeskriuwingen kinne wurde downloade fan it webformulier yn ienige foarm en yn bulk yn Microsoft Word, yn Microsoft Excel, of as PDF.</p>\n</div>\n<div>\n<p><strong>It publikaasjeproses is fersneld<br /></strong> It publisearjen fan in algoritmebeskriuwing fynt no direkt nei frijlitting fan de bewurker plak.</p>\n</div>\n<div>\n<p><strong>It webformulier omfettet ferzjekontrôle<br /></strong> Bewurkers kinne no sjen wa't de algoritmebeskriuwing(en) it lêst bewurke hat op de oersjochside fan it webformulier.</p>\n</div>\n<div>\n<p><strong>It webformulier is ferpleatst<br /></strong> Nei in testperioade is it webformulier ferpleatst nei <a href=\"https://algoritmes.overheid.nl/webformulier\" target=\"_blank\">https://algorithms.overheid.nl/webvorm</a>. Dat jildt ek foar de leverings-API, dy't ferpleatst is nei <a href=\"https://algoritmes.overheid.nl/aanleverapi\" target=\"_blank\">https://algorithms.overheid.nl/aanleverapi</a>.</p>\n</div>" + }, + "Footer: Registreer je algoritme": { + "pageTitle": "Registrearje jo algoritme", + "content": "<h1>Registrearje jo algoritme</h1>\n<div><p>Wurkje jo foar in oerheid en wolle jo ek in algoritme registrearje? Meitsje dan in ôfspraak foar in ynlieding of ferbiningssesje fia <a href=\"mailto:algoritmeregister@minbzk.nl\" target=\"_blank\" rel=\"noopener\">algorithmregister@minbzk.nl</a>. Wy helpe jo graach!</p></div><div><p>En besjoch de online mienskip foar <a href=\"https://algoritmes.pleio.nl/wiki/view/828fc5d8-8bbb-4b85-ac37-ea5f30f4055f/handige-hulpmiddelen-algoritmeregister\" target=\"_blank\" rel=\"noopener\">boarnen</a> en <a href=\"https://algoritmes.pleio.nl/wiki/view/78bb37a7-6a8a-4829-8d6d-b630ed914f18/veelgestelde-vragen\" target=\"_blank\" rel=\"noopener\">faak stelde fragen</a>. Kontrolearje yn alle gefallen de folgjende ynformaasje:</p></div><div><ol role=\"list\"><li role=\"listitem\"><p><a href=\"https://algoritmes.pleio.nl/wiki/view/df456f50-7225-4109-a143-9738ce130a1f/in-5-stappen-naar-publicatie-in-algoritmeregister\" target=\"_blank\" rel=\"noopener\">Publisearje yn 5 stappen</a></p></li><li role=\"listitem\"><p><a href=\"https://algoritmes.pleio.nl/wiki/view/2bcdf820-ce62-4249-95f7-d1a13fb6e1c9/handleiding-publicatiestandaard\" target=\"_blank\" rel=\"noopener\">Algoritme Register Guide</a></p></li><li><a href=\"https://algoritmes.pleio.nl/wiki/view/6c4da291-2636-4dde-b234-ad057ee528ad/sjablonen-leveranciers\" target=\"_blank\" rel=\"noopener\">Beskikbere sjabloanen</a></li></ol></div><div><p>Hjir fine jo alles wat jo nedich hawwe.</p></div>" + }, + "Algoritmes-overzicht": { + "title-tag": "Algoritme beskriuwing oersjoch", + "title-tag-on-append": ": Sykje nei algoritmebeskriuwings", + "meta-description": "Sykje hjir foar algoritmebeskriuwings fan alle Nederlânske oerheidsorganisaasjes." + }, + "Organisatie-overzicht": { + "title-tag": "Organisaasje oersjoch", + "title-tag-on-append": ": Sykje organisaasjes", + "meta-description": "Sykje hjir foar ynformaasje oer algoritmebeskriuwingen fan organisaasjes." + }, + "Organisatie-details": { + "meta-description": "{org-name} publisearret {algorithm-description-count} algoritmen." + }, + "Dashboard": { + "title-org-top-20": "Organisaasjes top 20" + }, + "Organisatie niet gepubliceerd": { + "pageTitle": "Earste publikaasje yn tarieding", + "content": "<h1>Earste publikaasje yn tarieding</h1>\n<p>De organisaasje dy't jo sochten is aktyf yn it Algoritmeregister mar is noch net publisearre. Binne jo sels diel fan dizze organisaasje en wolle jo der mear oer witte? Nim dan kontakt mei ús op.<br><br><a href=\"{localised_url}/footer/contact\">Kontakt</a></p>" + }, + "Organisatie niet aangesloten": { + "pageTitle": "Net yn it Algoritmeregister?", + "content": "<h1>Net yn it Algoritmeregister?</h1>\n<p>De organisaasje dy't jo sochten is noch net aktyf yn it register. Binne jo sels diel fan dizze organisaasje en wolle jo begjinne? Wy helpe jo graach!<br><br><a href=\"{localised_url}/footer/registreer-je-algoritme\">Registrearje jo algoritme</a></p>" + } + }, + "pap": { + "Footer: Contact": { + "content": "", + "pageTitle": "" + }, + "Footer: Vragen": { + "question14": "", + "question15": "", + "question16": "", + "question17": "", + "group1": "", + "group3": "", + "group5": "", + "content": "", + "pageTitle": "", + "question1": "", + "answer1": "", + "question2": "", + "answer2": "", + "question3": "", + "answer3": "", + "question4": "", + "answer4": "", + "question5": "", + "answer5": "", + "question6": "", + "answer6": "", + "question7": "", + "answer7": "", + "question8": "", + "question9": "", + "answer9": "", + "question10": "", + "answer10": "", + "question11": "", + "answer11": "", + "question12": "", + "answer12": "", + "answer15": "", + "answer16": "", + "question13": "", + "answer13": "", + "answer17": "", + "group2": "", + "group4": "", + "group6": "", + "answer8": "", + "answer14": "", + "question18": "", + "answer18": "", + "question19": "", + "answer19": "" + }, + "Footer: Privacyverklaring": { + "content": "", + "pageTitle": "" + }, + "Footer: Toegankelijkheid": { + "content": "", + "pageTitle": "" + }, + "Footer: Over": { + "content": "", + "pageTitle": "" + }, + "Footer: Meedoen": { + "pageTitle": "", + "content": "" + }, + "Footer: Over algoritmes": { + "pageTitle": "", + "img_alt": "", + "content": "", + "content2": "" + }, + "Footer: Zelf aan de slag": { + "pageTitle": "", + "content": "" + }, + "footer": { + "text": "", + "textForLink": "" + }, + "Home": { + "about": "", + "collaborate": "", + "aboutRegister": "", + "highlightTextBottom": "", + "toDo": "", + "highlightTextTop": "", + "title-tag": "", + "meta-description": "" + }, + "Zoekbalk": { + "hint": "", + "hintOrganisatie": "" + }, + "language-disclaimer": { + "closeText": "", + "content": "", + "goToDutch": "" + }, + "Footer: Archief": { + "content": "", + "pageTitle": "" + }, + "Footer: Kwetsbaarheid melden": { + "content": "", + "pageTitle": "" + }, + "Footer: Release-notes": { + "pageTitle": "", + "content": "" + }, + "Algoritmes-overzicht": { + "title-tag": "", + "title-tag-on-append": "", + "meta-description": "" + }, + "Organisatie-overzicht": { + "title-tag": "", + "title-tag-on-append": "", + "meta-description": "" + }, + "Organisatie-details": { + "meta-description": "" + }, + "Dashboard": { + "title-org-top-20": "" + }, + "Organisatie niet gepubliceerd": { + "pageTitle": "", + "content": "" + }, + "Organisatie niet aangesloten": { + "pageTitle": "", + "content": "" + } + } +} diff --git a/backend/app/data/templates/0.4.0/Centric.json b/backend/app/data/templates/0.4.0/Centric.json new file mode 100644 index 00000000..6c8acc18 --- /dev/null +++ b/backend/app/data/templates/0.4.0/Centric.json @@ -0,0 +1,44 @@ +[ + { + "id": "centric-burgerzaken-ediensten", + "name": "Burgerzaken: eDiensten", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4.0 beschikbaar zijn", + "organization": null + }, + { + "id": "centric-module-inzicht", + "name": "Burgerzaken: Module Inzicht", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4.0 beschikbaar zijn", + "organization": null + }, + { + "id": "centric-ediensten-voor-aanvragen", + "name": "Sociaal Domein: eDiensten voor aanvragen", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4.0 beschikbaar zijn", + "organization": null + }, + { + "id": "centric-pko-kennissystemen", + "name": "Sociaal Domein: PKO Kennissystemen", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4.0 beschikbaar zijn", + "organization": null + }, + { + "id": "centric-legesberekening", + "name": "Leefomgeving: Legesberekening", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4.0 beschikbaar zijn", + "organization": null + }, + { + "id": "centric-belastingen-lokale-heffingen", + "name": "Belastingen: Berekening belastingbedrag lokale heffingen", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4.0 beschikbaar zijn", + "organization": null + }, + { + "id": "centric-belastingen-woz", + "name": "Belastingen: WOZ taxatiemodellen", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4.0 beschikbaar zijn", + "organization": null + } +] \ No newline at end of file diff --git a/backend/app/data/templates/0.4.0/PinkRoccade.json b/backend/app/data/templates/0.4.0/PinkRoccade.json new file mode 100644 index 00000000..30c072c3 --- /dev/null +++ b/backend/app/data/templates/0.4.0/PinkRoccade.json @@ -0,0 +1,37 @@ +[ + { + "id": "pinkroccade-iburgerzaken", + "name": "iBurgerzaken e-diensten", + "organization": null, + "description_short": null, + "type": "Nee", + "category": [ + "Dienstverlening" + ], + "website": null, + "status": "In gebruik", + "begin_date": "2014-06", + "end_date": null, + "goal": "<div><div>Doel</div>\n<div>Het doel van de e-diensten met het onderliggende algoritme is inwoners en ondernemers maximaal ondersteunen/begeleiden bij een digitale aanvraag. Daardoor kan deze aanvraag juist en volledig worden ingediend. Het algoritme controleert verschillende gegevens van de inwoner. Als er geen bijzonderheden geconstateerd worden in de aanvraag of aangifte kan deze verwerkt worden zonder tussenkomst van een burgerzakenmedewerker.25 oktober 2023 PinkRoccade Publiekszaken 3 / 5 Als er wel een of meerdere bijzonderheden geconstateerd worden komt de aanvraag/aangifte altijd terecht in een werklijst. Daar wordt deze gecontroleerd door een burgerzakenmedewerker. Het algoritme kan alleen automatisch een aanvraag/aangifte goedkeuren. Een aanvraag/aangifte afkeuren kan alleen de burgerzakenmedewerker.</div>\n<div></div>\n<div>Impact</div>\n<div>De impact is dat een dergelijke aanvraag efficiënt kan worden afgehandeld door de gemeente; burger/bedrijf heeft namelijk diverse stappen (werkzaamheden) al uitgevoerd waardoor de ambtenaar meer tijd overhoudt voor de bijzondere en/of ingewikkelde aangiften/aanvragen die de gemeente ontvangt. In een aantal gevallen kan deze aanvraag zelfs volledig automatisch worden verwerkt. De kwaliteit van de dienstverlening gaat door deze diensten omhoog, net als de kwaliteit van de gegevens in de BRP.</div></div>", + "proportionality": "<p>Alle aanvragen via de balie afhandelen is voor gemeenten geen optie meer. Dat komt door de aantallen en de tijdsdruk. Een algoritme biedt inwoners en ondernemers begeleiding bij (digitale) aanvragen. Een gemeente kan ervoor kiezen om elke digitale aanvraag nog ter beoordeling aan de burgerzakenmedewerker aan te bieden voordat deze wordt afgehandeld. Voor mensen die niet of minder digivaardig zijn bestaat er altijd nog de mogelijkheid om via de balie van de gemeente de aanvraag te doen.</p>", + "provider": "PinkRoccade Local Government", + "lawful_basis": "<div><div>Wet basisregistratie personen</div>\n<div>Wet rechten burgerlijke stand</div></div>", + "lawful_basis_link": "https://wetten.overheid.nl/BWBR0033715\nhttps://wetten.overheid.nl/BWBR0001851", + "impacttoetsen": [ + "DPIA, via gemeenten" + ], + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "0.4.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "<div>Gegevens die worden gebruikt komen uit de BRP, burgerlijke stand registers, KvK, CRB (Centraal Rijbewijzenregister) en aangehaakte gegevens.</div>", + "source_data_link": "BRP: https://www.rvig.nl/basisregistratie-personen \nLV BAG: https://www.kadaster.nl/zakelijk/registraties/basisregistraties/bag \nCRB: https://www.rdw.nl/", + "methods_and_models": "<p>Via de website van de gemeente kan een inwoner of ondernemer een e-dienst starten. Iedere aanvraag wordt tijdens het invullen al getoetst tegen de voor de aanvraag geldende wet- en regelgeving. Een volledig ingevulde digitale aanvraag/aangifte komt ter beoordeling en afhandeling van een burgerzakenmedewerker, op de werklijst in iBurgerzaken. Bij het openen van een aanvraag of aangifte op de werklijst is het voor de burgerzakenmedewerker zichtbaar welke controle een meldingen heeft opgeleverd, voor een juiste beoordeling en afhandeling. Een gemeente kan voor een aantal digitale aanvragen kiezen of iBurgerzaken, deze zonder tussenkomst van een burgerzakenmedewerker, automatisch mag verwerken. iBurgerzaken verwerkt een aanvraag geheel automatisch als geen enkele controle een waarschuwing oplevert. Daarnaast kan de gemeente ook kiezen in welke situaties de aanvraag altijd op de werklijst ter beoordeling en afhandeling komt. Bijvoorbeeld bij Verhuizing binnen Nederland: als er sprake is van overbewoning op het nieuw adres.</p>", + "publiccode": null, + "human_intervention": "<p>Het algoritme gaat uit van een positief scenario. Daardoor worden alleen eenvoudige aangiften en aanvragen automatisch verwerkt. Wanneer een of meerdere bijzonderheden optreden, dan wordt de aanvraag/aangifte altijd door een burgerzakenmedewerker beoordeeld. De burgerzakenmedewerker controleert deze dan zelf; verwerken of afwijzen. Bij afwijzing is het altijd de burgerzakenmedewerker die dit doet en nooit het algoritme.</p>", + "risks": "<p>Het is aan gemeenten om vorm te geven aan het risicobeheer en aan de hand daarvan de e-diensten te configureren.</p>" + } +] \ No newline at end of file diff --git a/backend/app/data/templates/0.4.0/Procura.json b/backend/app/data/templates/0.4.0/Procura.json new file mode 100644 index 00000000..9b3585f7 --- /dev/null +++ b/backend/app/data/templates/0.4.0/Procura.json @@ -0,0 +1,35 @@ +[ + { + "id": "procura-vrijbrp-risicoanalyse", + "name": "vrijBRP - Risicoanalyse", + "organization": null, + "description_short": null, + "type": "Nee", + "category": [ + "Dienstverlening" + ], + "website": null, + "status": "In gebruik", + "begin_date": null, + "end_date": null, + "goal": "<div>Het doel was het in staat stellen van gemeenten om doelmatiger om te kunnen gaan met controles van verhuismutaties. Impact op burgers is in de regel positief of klein. Veel aangiften kunnen nu automatisch worden verwerkt (sneller). Aangiften die \"uitvallen\" en dus handmatige controle vergen kunnen een iets langere verwerkingstijd hebben.</div>", + "proportionality": "<div>Doordat veel eenvoudige aangiften automatisch verwerkt worden houdt de ambtenaar meer tijd over voor de bijzondere en/of ingewikkelde aangiften die de gemeente ontvangt. Hierdoor kunnen deze beter en nauwkeuriger beoordeeld worden. Hierdoor wordt de aangever beter geholpen en worden er minder fouten gemaakt. Dit zorgt voor een betere kwaliteit van de BRP.</div>", + "provider": "Procura", + "lawful_basis": "<div>Wet BRP, artikelen 1.4, 2.45 en 2.37a t/m g</div>", + "lawful_basis_link": "https://wetten.overheid.nl/BWBR0033715", + "impacttoetsen": null, + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "0.4.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "<div>\n<ul>\n<li>BSN verhuizende personen</li>\n<li>Aanwezige markering van de verhuizende personen</li>\n<li>Aanwezige markering van het nieuwe adres van de verhuizende personen</li>\n<li>Functie van het oude/nieuwe adres (woonadres/briefadres)</li>\n<li>Onderzoeksgegevens categorie 08</li>\n<li>verblijfplaats verhuizende personen</li>\n<li>Tijd van de e-aangifte</li>\n<li>Reisdocumentgegevens verhuizende personen</li>\n<li>Rijbewijsgegevens verhuizende personen</li>\n<li>BAG-gegevens nieuwe adres verhuizende personen</li>\n<li>Gegevens over curatele in BRP verhuizende personen</li>\n<li>Adreshistorie verhuizende personen</li>\n</ul>\n</div>", + "source_data_link": null, + "methods_and_models": "<div>Zodra er een online verhuizing binnenkomt, wordt aan de verhuiszaak een zaak risicoanalyse gekoppeld. Die risicoanalysezaak wordt automatisch uitgevoerd en checkt of de aangifte afwijkende eigenschappen bevat. Zijn er<br>geen bijzonderheden? Dan wordt de verhuizing automatisch verwerkt. Leveren de controles van de risicoanalyse een score op die boven een drempelwaarde komt? Dan krijgt de verhuiszaak een andere status (in behandeling) waardoor deze niet wordt verwerkt zonder dat een ambtenaar de zaak behandelt. Deze beoordeelt of aanvullende vragen of onderzoek nodig zijn. Is de conclusie dat de aangifte in orde is, dan verwerkt de ambtenaar deze alsnog. De controles in de risicoanalyse zijn grotendeels gebaseerd op de controles van de Landelijke Aanpak Adreskwaliteit (LAA) én controles die de ambtenaar zal herkennen uit de dagelijkse praktijk. Denk bijvoorbeeld aan controle op veelverhuizers, het gebruiksdoel van een woning, overbewoning van een adres of een adres waar veel verhuisbewegingen op plaatsvinden.</div>", + "publiccode": null, + "human_intervention": "<div>Zie de omschrijving bij de technische werking. De controles binnen de risicoanalyse kunnen door de gemeente zelf worden bepaald (welke wel/niet). Ook is men zelf in controle over de scores (de zwaarte) die aan elke controle kan worden toegekend en de drempelwaarde die bepaald of een aangifte automatisch wordt verwerkt of niet.</div>", + "risks": null + } +] \ No newline at end of file diff --git a/backend/app/data/templates/0.4/Centric.json b/backend/app/data/templates/0.4/Centric.json new file mode 100644 index 00000000..64444c3f --- /dev/null +++ b/backend/app/data/templates/0.4/Centric.json @@ -0,0 +1,44 @@ +[ + { + "id": "centric-burgerzaken-ediensten", + "name": "Burgerzaken: eDiensten", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4 beschikbaar zijn", + "organization": null + }, + { + "id": "centric-module-inzicht", + "name": "Burgerzaken: Module Inzicht", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4 beschikbaar zijn", + "organization": null + }, + { + "id": "centric-ediensten-voor-aanvragen", + "name": "Sociaal Domein: eDiensten voor aanvragen", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4 beschikbaar zijn", + "organization": null + }, + { + "id": "centric-pko-kennissystemen", + "name": "Sociaal Domein: PKO Kennissystemen", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4 beschikbaar zijn", + "organization": null + }, + { + "id": "centric-legesberekening", + "name": "Leefomgeving: Legesberekening", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4 beschikbaar zijn", + "organization": null + }, + { + "id": "centric-belastingen-lokale-heffingen", + "name": "Belastingen: Berekening belastingbedrag lokale heffingen", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4 beschikbaar zijn", + "organization": null + }, + { + "id": "centric-belastingen-woz", + "name": "Belastingen: WOZ taxatiemodellen", + "description_short": "Dit sjabloon is binnenkort beschikbaar, zodra de sjablonen in versie 0.4 beschikbaar zijn", + "organization": null + } +] \ No newline at end of file diff --git a/backend/app/data/templates/0.4/PinkRoccade.json b/backend/app/data/templates/0.4/PinkRoccade.json new file mode 100644 index 00000000..4effe165 --- /dev/null +++ b/backend/app/data/templates/0.4/PinkRoccade.json @@ -0,0 +1,37 @@ +[ + { + "id": "pinkroccade-iburgerzaken", + "name": "iBurgerzaken e-diensten", + "organization": null, + "description_short": null, + "type": "Nee", + "category": [ + "Dienstverlening" + ], + "website": null, + "status": "In gebruik", + "begin_date": "2014-06", + "end_date": null, + "goal": "<div><div>Doel</div>\n<div>Het doel van de e-diensten met het onderliggende algoritme is inwoners en ondernemers maximaal ondersteunen/begeleiden bij een digitale aanvraag. Daardoor kan deze aanvraag juist en volledig worden ingediend. Het algoritme controleert verschillende gegevens van de inwoner. Als er geen bijzonderheden geconstateerd worden in de aanvraag of aangifte kan deze verwerkt worden zonder tussenkomst van een burgerzakenmedewerker.25 oktober 2023 PinkRoccade Publiekszaken 3 / 5 Als er wel een of meerdere bijzonderheden geconstateerd worden komt de aanvraag/aangifte altijd terecht in een werklijst. Daar wordt deze gecontroleerd door een burgerzakenmedewerker. Het algoritme kan alleen automatisch een aanvraag/aangifte goedkeuren. Een aanvraag/aangifte afkeuren kan alleen de burgerzakenmedewerker.</div>\n<div></div>\n<div>Impact</div>\n<div>De impact is dat een dergelijke aanvraag efficiënt kan worden afgehandeld door de gemeente; burger/bedrijf heeft namelijk diverse stappen (werkzaamheden) al uitgevoerd waardoor de ambtenaar meer tijd overhoudt voor de bijzondere en/of ingewikkelde aangiften/aanvragen die de gemeente ontvangt. In een aantal gevallen kan deze aanvraag zelfs volledig automatisch worden verwerkt. De kwaliteit van de dienstverlening gaat door deze diensten omhoog, net als de kwaliteit van de gegevens in de BRP.</div></div>", + "proportionality": "<p>Alle aanvragen via de balie afhandelen is voor gemeenten geen optie meer. Dat komt door de aantallen en de tijdsdruk. Een algoritme biedt inwoners en ondernemers begeleiding bij (digitale) aanvragen. Een gemeente kan ervoor kiezen om elke digitale aanvraag nog ter beoordeling aan de burgerzakenmedewerker aan te bieden voordat deze wordt afgehandeld. Voor mensen die niet of minder digivaardig zijn bestaat er altijd nog de mogelijkheid om via de balie van de gemeente de aanvraag te doen.</p>", + "provider": "PinkRoccade Local Government", + "lawful_basis": "<div><div>Wet basisregistratie personen</div>\n<div>Wet rechten burgerlijke stand</div></div>", + "lawful_basis_link": "https://wetten.overheid.nl/BWBR0033715\nhttps://wetten.overheid.nl/BWBR0001851", + "impacttoetsen": [ + "DPIA, via gemeenten" + ], + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "0.4", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "<div>Gegevens die worden gebruikt komen uit de BRP, burgerlijke stand registers, KvK, CRB (Centraal Rijbewijzenregister) en aangehaakte gegevens.</div>", + "source_data_link": "BRP: https://www.rvig.nl/basisregistratie-personen \nLV BAG: https://www.kadaster.nl/zakelijk/registraties/basisregistraties/bag \nCRB: https://www.rdw.nl/", + "methods_and_models": "<p>Via de website van de gemeente kan een inwoner of ondernemer een e-dienst starten. Iedere aanvraag wordt tijdens het invullen al getoetst tegen de voor de aanvraag geldende wet- en regelgeving. Een volledig ingevulde digitale aanvraag/aangifte komt ter beoordeling en afhandeling van een burgerzakenmedewerker, op de werklijst in iBurgerzaken. Bij het openen van een aanvraag of aangifte op de werklijst is het voor de burgerzakenmedewerker zichtbaar welke controle een meldingen heeft opgeleverd, voor een juiste beoordeling en afhandeling. Een gemeente kan voor een aantal digitale aanvragen kiezen of iBurgerzaken, deze zonder tussenkomst van een burgerzakenmedewerker, automatisch mag verwerken. iBurgerzaken verwerkt een aanvraag geheel automatisch als geen enkele controle een waarschuwing oplevert. Daarnaast kan de gemeente ook kiezen in welke situaties de aanvraag altijd op de werklijst ter beoordeling en afhandeling komt. Bijvoorbeeld bij Verhuizing binnen Nederland: als er sprake is van overbewoning op het nieuw adres.</p>", + "publiccode": null, + "human_intervention": "<p>Het algoritme gaat uit van een positief scenario. Daardoor worden alleen eenvoudige aangiften en aanvragen automatisch verwerkt. Wanneer een of meerdere bijzonderheden optreden, dan wordt de aanvraag/aangifte altijd door een burgerzakenmedewerker beoordeeld. De burgerzakenmedewerker controleert deze dan zelf; verwerken of afwijzen. Bij afwijzing is het altijd de burgerzakenmedewerker die dit doet en nooit het algoritme.</p>", + "risks": "<p>Het is aan gemeenten om vorm te geven aan het risicobeheer en aan de hand daarvan de e-diensten te configureren.</p>" + } +] \ No newline at end of file diff --git a/backend/app/data/templates/0.4/Procura.json b/backend/app/data/templates/0.4/Procura.json new file mode 100644 index 00000000..749403d1 --- /dev/null +++ b/backend/app/data/templates/0.4/Procura.json @@ -0,0 +1,35 @@ +[ + { + "id": "procura-vrijbrp-risicoanalyse", + "name": "vrijBRP - Risicoanalyse", + "organization": null, + "description_short": null, + "type": "Nee", + "category": [ + "Dienstverlening" + ], + "website": null, + "status": "In gebruik", + "begin_date": null, + "end_date": null, + "goal": "<div>Het doel was het in staat stellen van gemeenten om doelmatiger om te kunnen gaan met controles van verhuismutaties. Impact op burgers is in de regel positief of klein. Veel aangiften kunnen nu automatisch worden verwerkt (sneller). Aangiften die \"uitvallen\" en dus handmatige controle vergen kunnen een iets langere verwerkingstijd hebben.</div>", + "proportionality": "<div>Doordat veel eenvoudige aangiften automatisch verwerkt worden houdt de ambtenaar meer tijd over voor de bijzondere en/of ingewikkelde aangiften die de gemeente ontvangt. Hierdoor kunnen deze beter en nauwkeuriger beoordeeld worden. Hierdoor wordt de aangever beter geholpen en worden er minder fouten gemaakt. Dit zorgt voor een betere kwaliteit van de BRP.</div>", + "provider": "Procura", + "lawful_basis": "<div>Wet BRP, artikelen 1.4, 2.45 en 2.37a t/m g</div>", + "lawful_basis_link": "https://wetten.overheid.nl/BWBR0033715", + "impacttoetsen": null, + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "0.4", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "<div>\n<ul>\n<li>BSN verhuizende personen</li>\n<li>Aanwezige markering van de verhuizende personen</li>\n<li>Aanwezige markering van het nieuwe adres van de verhuizende personen</li>\n<li>Functie van het oude/nieuwe adres (woonadres/briefadres)</li>\n<li>Onderzoeksgegevens categorie 08</li>\n<li>verblijfplaats verhuizende personen</li>\n<li>Tijd van de e-aangifte</li>\n<li>Reisdocumentgegevens verhuizende personen</li>\n<li>Rijbewijsgegevens verhuizende personen</li>\n<li>BAG-gegevens nieuwe adres verhuizende personen</li>\n<li>Gegevens over curatele in BRP verhuizende personen</li>\n<li>Adreshistorie verhuizende personen</li>\n</ul>\n</div>", + "source_data_link": null, + "methods_and_models": "<div>Zodra er een online verhuizing binnenkomt, wordt aan de verhuiszaak een zaak risicoanalyse gekoppeld. Die risicoanalysezaak wordt automatisch uitgevoerd en checkt of de aangifte afwijkende eigenschappen bevat. Zijn er<br>geen bijzonderheden? Dan wordt de verhuizing automatisch verwerkt. Leveren de controles van de risicoanalyse een score op die boven een drempelwaarde komt? Dan krijgt de verhuiszaak een andere status (in behandeling) waardoor deze niet wordt verwerkt zonder dat een ambtenaar de zaak behandelt. Deze beoordeelt of aanvullende vragen of onderzoek nodig zijn. Is de conclusie dat de aangifte in orde is, dan verwerkt de ambtenaar deze alsnog. De controles in de risicoanalyse zijn grotendeels gebaseerd op de controles van de Landelijke Aanpak Adreskwaliteit (LAA) én controles die de ambtenaar zal herkennen uit de dagelijkse praktijk. Denk bijvoorbeeld aan controle op veelverhuizers, het gebruiksdoel van een woning, overbewoning van een adres of een adres waar veel verhuisbewegingen op plaatsvinden.</div>", + "publiccode": null, + "human_intervention": "<div>Zie de omschrijving bij de technische werking. De controles binnen de risicoanalyse kunnen door de gemeente zelf worden bepaald (welke wel/niet). Ook is men zelf in controle over de scores (de zwaarte) die aan elke controle kan worden toegekend en de drempelwaarde die bepaald of een aangifte automatisch wordt verwerkt of niet.</div>", + "risks": null + } +] \ No newline at end of file diff --git a/backend/app/data/templates/1.0/BMconsultants.json b/backend/app/data/templates/1.0/BMconsultants.json new file mode 100644 index 00000000..e52e33b6 --- /dev/null +++ b/backend/app/data/templates/1.0/BMconsultants.json @@ -0,0 +1,37 @@ +[ + { + "id": "bm-dataprotector", + "name": "Dataprotector", + "organization": null, + "description_short": "Dataprotector biedt de mogelijkheid om geautomatiseerd documenten en teksten te anonimiseren en neemt daardoor vele uren handmatig en repetitief werk uit handen van uw medewerkers.", + "type": null, + "category": [], + "publication_category": "Overige algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": null, + "end_date": null, + "goal": "<p>Anonimiseren voor Woo en AVG.</p>", + "proportionality": "<p>Verbetering van de dienstverlening door sneller geanonimiseerde documenten te kunnen presenteren.</p>", + "provider": "BMconsultants BV", + "lawful_basis": "<p>AVG, Woo</p>", + "lawful_basis_grouping": [ + { "title": "AVG", "link": "https://wetten.overheid.nl/BWBR0040940" }, + { "title": "Woo", "link": "https://wetten.overheid.nl/BWBR0024779" } + ], + "impacttoetsen": null, + "iama_description": null, + "url": "https://www.tm7.eu", + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": "Dataprotector", + "tags": "<p>Anonimiseren, Lakken, Pseudonimiseren, Redigeren, Anonimize</p>", + "source_data": "<p>Pakket is gemaakt om Nederlandse persoonsgegevens te vinden. Het optimaliseren van het proces is in de afgelopen 29 jaar geëvolueerd waardoor de oorspronkelijke trainingsdocumenten niet meer van toepassing zijn.</p>", + "source_data_link": null, + "methods_and_models": "<p>Verzameling van reguliere expressie ontwikkeld in Nederland. Er wordt geen gebruik gemaakt van LLM's.</p>", + "publiccode": null, + "human_intervention": "<p>Standaard is er een menselijke controle aanwezig.</p>", + "risks": "<p>Toegang tot de documenten wordt beperkt door autorisatie, individuele documenten wordt versleuteld.</p>" + } +] diff --git a/backend/app/data/templates/1.0/Centric.json b/backend/app/data/templates/1.0/Centric.json new file mode 100644 index 00000000..838e7770 --- /dev/null +++ b/backend/app/data/templates/1.0/Centric.json @@ -0,0 +1,254 @@ +[ + { + "id": "centric-burgerzaken-ediensten", + "name": "Burgerzaken: eDiensten", + "description_short": "Inwoners van Nederlandse gemeenten kunnen digitaal verschillende burgerzaken-processen digitaal regelen met de gemeente. Om eenvoudige aangiften automatisch te verwerken voert het systeem verschillende controles uit op de persoonslijst, het adres en aangehaakte gegevens.", + "organization": null, + "type": "Op regels gebaseerd", + "publication_category": "Impactvolle algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": "", + "end_date": null, + "goal": "Het belang van een correct geregistreerd adres gaat verder dan het op orde houden van de Basisregistratie Personen (BRP). Vindt er bijvoorbeeld een ramp plaats, dan wil je iedereen in de omgeving tijdig kunnen waarschuwen. Ook verstrek je als gemeente voorzieningen, uitkeringen of subsidies aan inwoners, op basis van het in de BRP geregistreerde adres. Dat maakt een correcte adresregistratie belangrijk voor zowel inwoners als overheid.\n Het algoritme controleert verschillende gegevens van de burger. Indien er geen bijzonderheden geconstateerd worden in de aanvraag of aangifte kan deze verwerkt worden zonder tussenkomst van een medewerker. Indien er wel een bijzonderheid geconstateerd wordt valt de aanvraag/aangifte in een wachtkamer waar deze gecontroleerd wordt door een medewerker. Het algoritme kan alleen automatisch een aanvraag/aangifte goedkeuren. Een aanvraag/aangifte afkeuren kan alleen de ambtenaar.", + "proportionality": "Doordat veel eenvoudige aanvragen/aangiften automatisch verwerkt worden houdt de ambtenaar meer tijd over voor de bijzondere en/of ingewikkelde aangiften/aanvragen die de gemeente ontvangt. Hierdoor kunnen deze beter en nauwkeuriger beoordeeld worden. Hierdoor wordt de aangever/aanvrager beter geholpen en worden er minder fouten gemaakt. Dit zorgt voor een betere kwaliteit van de BRP.", + "provider": "Centric Netherlands BV", + "lawful_basis": "<div><div>Wet basisregistratie personen</div>\n<div>Wet rechten burgerlijke stand</div></div>", + "lawful_basis_grouping": [ + { + "title": "Wet basisregistratie personen", + "link": "https://wetten.overheid.nl/BWBR0033715/2023-01-01" + }, + { + "title": "Wet rechten burgerlijke stand", + "link": "https://wetten.overheid.nl/BWBR0001851/2019-02-16" + } + ], + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "", + "source_data_link": "BRP: https://www.rvig.nl/basisregistratie-personen \nLV BAG: https://www.kadaster.nl/zakelijk/registraties/basisregistraties/bag \nCRB: https://www.rdw.nl/", + "methods_and_models": "Beslisbomen", + "publiccode": null, + "human_intervention": "Het algoritme gaat uit van een positief scenario. Dit betekent dat eenvoudige aangiften en aanvragen automatisch verwerkt worden. Wanneer een bijzonderheid optreedt wordt de aanvraag/aangifte altijd door een ambtenaar beoordeeld. De ambtenaar controleert dan zelf de aanvraag/aangifte en kan deze verwerken of afwijzen. Bij afwijzing is het altijd de ambtenaar die dit doet en nooit het algoritme.", + "risks": "" + }, + { + "id": "centric-module-inzicht", + "name": "Burgerzaken: Module Inzicht", + "description_short": "De module Inzicht controleert voor de gemeente de online aangiften. Met slimme controles bepaalt de module welke aangiften geen bijzonderheden kennen en welke aanleiding geven voor meer onderzoek.", + "organization": null, + "type": "Op regels gebaseerd", + "publication_category": "Impactvolle algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": "", + "end_date": null, + "goal": "<div><p>Zodra er een online verhuizing binnenkomt, controleert de Module Inzicht of de aangifte afwijkende eigenschappen bevat. Zijn er geen bijzonderheden? Dan wordt de verhuizing automatisch verwerkt. Leveren de controles van de modules een signaal op? Dan zet de module de aangifte voor de ambtenaar klaar in de wachtkamer van Centric Burgerzaken. Daar beoordeelt de ambtenaar of aanvullende vragen of onderzoek nodig zijn. Is de conclusie dat de aangifte in orde is, dan verwerkt de ambtenaar deze alsnog. De module Inzicht toetst de online aangiften aan de hand van controles van de Landelijke Aanpak Adreskwaliteit (LAA) én controles die de ambtenaar zal herkennen uit de dagelijkse praktijk. Denk bijvoorbeeld aan controle op veelverhuizers, het gebruiksdoel van een woning, overbewoning van een adres of een adres waar veel verhuisbewegingen op plaatsvinden.</p><p><br></p><p>Het belang van een correct geregistreerd adres gaat verder dan het op orde houden van de Basisregistratie Personen (BRP). Vindt er bijvoorbeeld een ramp plaats, dan wil je iedereen in de omgeving tijdig kunnen waarschuwen. Ook verstrek je als gemeente voorzieningen, uitkeringen of subsidies aan inwoners, op basis van het in de BRP geregistreerde adres. Dat maakt een correcte adresregistratie belangrijk voor zowel inwoners als overheid.</p><p><br></p><p>Het algoritme controleert verschillende gegevens van de burger. Indien er geen bijzonderheden geconstateerd worden in de aangifte kan deze verwerkt worden zonder tussenkomst van een medewerker. Indien er wel een bijzonderheid geconstateerd wordt valt de aangifte in een wachtkamer waar deze gecontroleerd wordt door een medewerker. Het algoritme kan alleen automatisch een aangifte goedkeuren. Een aangifte afkeuren kan alleen de ambtenaar.</p></div>", + "proportionality": "Doordat veel eenvoudige aangiften automatisch verwerkt worden houdt de ambtenaar meer tijd over voor de bijzondere en/of ingewikkelde aangiften die de gemeente ontvangt. Hierdoor kunnen deze beter en nauwkeuriger beoordeeld worden. Hierdoor wordt de aangever beter geholpen en worden er minder fouten gemaakt. Dit zorgt voor een betere kwaliteit van de BRP.", + "provider": "Centric Netherlands BV", + "lawful_basis": "Wet basisregistratie personen", + "lawful_basis_grouping": [ + { + "title": "Wet basisregistratie personen", + "link": "https://wetten.overheid.nl/BWBR0033715/2023-01-01" + } + ], + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "", + "source_data_link": "", + "methods_and_models": "Beslisbomen", + "publiccode": null, + "human_intervention": "Het algoritme gaat uit van een positief scenario. Dit betekent dat eenvoudige aangiften automatisch verwerkt worden. Wanneer een bijzonderheid optreedt wordt de aangifte altijd door een ambtenaar beoordeeld. De ambtenaar controleert dan zelf de aangifte en kan deze verwerken of afwijzen. Bij afwijzing is het altijd de ambtenaar die dit doet en nooit het algoritme.", + "risks": "" + }, + { + "id": "centric-ediensten-voor-aanvragen", + "name": "Sociaal Domein: eDiensten voor aanvragen", + "description_short": "Het algoritme wordt gebruikt door ca. 50 gemeenten en bepaalt, op basis van ingelezen gegevens en door de aanvrager gegeven antwoorden, of de aanvrager in aanmerking komt voor een van de aan te vragen uitkeringen.", + "organization": null, + "type": "Op regels gebaseerd", + "publication_category": "Impactvolle algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": "", + "end_date": null, + "goal": "Efficiënt en uniform innemen van en besluiten op aanvragen voor bijstand, bijzondere bijstand, Bbz, IIT en minimaregelingen.\nHet algoritme wordt ingezet in een applicatie voor inwoners van de ca. 50 aangesloten gemeenten en controleert gedurende de aanvraag of de aanvrager voldoet aan verschillende (wettelijke) criteria. De uitkomst wordt gedeeld met de aanvrager.", + "proportionality": "Een voordeel van het inzetten van het algoritme is dat er veel handwerk door consulenten bespaard kan worden. Door een algoritme in te zetten aan de voorkant van het proces ben je ervan verzekerd dat op de juiste manier in de systemen terecht komt en voorkom je onterechte aanvragen. Risico's bij het gebruik van het algoritme zijn niet noemenswaardig, waarmee de proportionaliteit in orde is.", + "provider": "Centric Netherlands BV", + "lawful_basis": "De wettelijke grondslag voor de inzet van het algoritme is de uitvoering van de wettelijke taak Participatiewet (met als onderdeel de wet SUWI), de Gemeentewet en WEU (Wet Eenmalige Uitvraag).", + "lawful_basis_grouping": [ + { + "title": "Participatiewet", + "link": "https://wetten.overheid.nl/BWBR0015703/" + } + ], + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "", + "source_data_link": "", + "methods_and_models": "Beslisbomen", + "publiccode": null, + "human_intervention": "De medewerker heeft de mogelijkheid om de uitkomst van het algoritme te overrulen.", + "risks": "Er zijn geen voorziene risico's bij het gebruik van de in de beslisboom vastgelegde algoritmes. Het enige benoembare risico is dat een aanvrager ten onrechte een aanvraag niet indient vanwege een door het systeem gewekte verwachting over de uitkomst. Dit wordt gemitigeerd door de applicatie zo gebruiksvriendelijk mogelijk te maken en de uitleg op de schermen zo helder als mogelijk weer te geven." + }, + { + "id": "centric-pko-kennissystemen", + "name": "Sociaal Domein: PKO Kennissystemen", + "description_short": "Het algoritme wordt gebruikt door ca. 80 gemeenten en ondersteunt de consulenten van gemeenten bij het beslissen op uitkeringsaanvragen, het correct registreren van de uitkomsten en het produceren van documenten.", + "organization": null, + "type": "Op regels gebaseerd", + "publication_category": "Impactvolle algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": "", + "end_date": null, + "goal": "Efficiënt en uniform behandelen van en besluiten op aanvragen, mutaties en heronderzoeken voor bijstand, bijzondere bijstand, IIT, verhaal op onderhoudsplichtigen en terugvordering van te veel ontvangen bijstand.\nHet algoritme wordt ingezet in een applicatie voor inwoners van de ca. 80 aangesloten gemeenten en controleert gedurende het proces of wordt voldaan aan verschillende (wettelijke) criteria. De consulent krijgt gedurende de hele behandeling de mogelijkheid om af te wijken van de voorgestelde keuzes van het kennissysteem.", + "proportionality": "Een voordeel van het inzetten van het algoritme is dat er veel handwerk door consulenten bespaard kan worden. Door een kennissysteem in te zetten borg je daarnaast kennis, maak je ingewikkelde administratieve processen eenvoudiger, zorg je voor uniformiteit in de uitvoering en in de documentoutput. Risico's bij het gebruik van het algoritme zijn mede vanwege de mogelijkheid om in te grijpen op de door het systeem getrokken conclusies niet noemenswaardig, waarmee de proportionaliteit in orde is.", + "provider": "Centric Netherlands BV", + "lawful_basis": "De wettelijke grondslag voor de inzet van het algoritme is uitvoering van de wettelijke taak Participatiewet (met als onderdeel de wet SUWI).", + "lawful_basis_grouping": [ + { + "title": "Wet basisregistratie personen", + "link": "https://wetten.overheid.nl/BWBR0033715/2023-01-01" + }, + { + "title": "Wet rechten burgerlijke stand", + "link": "https://wetten.overheid.nl/BWBR0001851/2019-02-16" + }, + { + "title": "Wet structuur uitvoeringsorganisatie werk en inkomen", + "link": "https://wetten.overheid.nl/BWBR0013060/2023-01-01" + } + ], + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "", + "source_data_link": "", + "methods_and_models": "Beslisbomen", + "publiccode": null, + "human_intervention": "De medewerker heeft de mogelijkheid om de uitkomst van het algoritme te overrulen.", + "risks": "Er zijn geen voorziene risico's bij het gebruik van de in de beslisboom vastgelegde algoritmes." + }, + { + "id": "centric-legesberekening", + "name": "Leefomgeving: Legesberekening", + "description_short": "Om leges te kunnen heffen moeten klanten grondslagsoorten en legessoorten specificeren op basis waarvan het legesbedrag bepaald wordt.", + "organization": null, + "type": "Op regels gebaseerd ", + "publication_category": "Impactvolle algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": "", + "end_date": null, + "goal": "Leges zijn feitelijk vergoedingen voor gemeentelijke dienstverlening. De tarieven worden vastgesteld door de gemeenteraad en staan in de Legesverordening. Om leges te kunnen heffen moeten gemeenten grondslagsoorten en legessoorten specificeren. Leges worden berekend over een grondslag. De grondslagsoort bepaalt waar de grondslag voor de legesberekening gevonden moet worden. De legessoort bepaalt de berekening om tot het legesbedrag te komen.\nInitiatiefnemers (burgers en organisaties) betalen voor de diensten van de gemeente zoals is uitgewerkt in de legesverordening van iedere gemeente.", + "proportionality": "De grondslagen en de berekening moeten in overeenstemming zijn met de geldende legesverordening.", + "provider": "Centric Netherlands BV", + "lawful_basis": "Elke gemeente stelt jaarlijks de zogenaamde legesverordening vast. In deze legesverordening staat precies hoe de leges berekend moeten worden en waarover deze geheven worden.", + "lawful_basis_grouping": [ + { + "title": "Gemeentewet", + "link": "https://wetten.overheid.nl/BWBR0005416/" + } + ], + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "", + "source_data_link": "", + "methods_and_models": "<div><p>Vast tarief: Bij deze berekeningsmethode wordt niets berekend. Een grondslagsoort is daarom ook niet van toepassing. </p><p>Percentage: Bij deze berekeningsmethode wordt een percentage van de grondslag berekend. Dit percentage kan positief (toeslag) of negatief (korting) zijn. </p><p>Schalen: Bij deze berekeningsmethode wordt één berekening uitgevoerd, afhankelijk van de schaal waarbinnen de grondslag valt. Deze berekeningsmethode past men toe wanneer er meerdere rekenregels zijn, waarvan er altijd maar één van toepassing kan zijn. Als de grondslag tussen het minimum en het maximum ligt, dan wordt deze schaal gebruikt. Voor de berekening wordt de grondslag afgerond. De factor en het basisbedrag kunnen zowel positief als negatief zijn. </p><p>Schijven: Bij deze berekeningsmethode wordt voor elke schijf een berekening uitgevoerd, voor dat deel van de grondslag dat binnen de schijf valt. Deze berekeningsmethode past men toe wanneer er een gestaffelde berekening nodig is. Als een deel van de grondslag tussen het minimum en het maximum ligt, dan wordt dat deel van de grondslag voor de berekening van deze schijf gebruikt. Voor de berekening wordt de grondslag afgerond. De factor en het basisbedrag kunnen zowel positief als negatief zijn. Na de berekening wordt het bedrag afgerond. Na afronding wordt gecontroleerd of het bedrag tussen het minimum en maximumbedrag ligt. Als het bedrag hoger ligt dan het maximum, dan wordt het maximum gebruikt. Als het bedrag tussen het minimum en het maximum ligt, dan wordt het bedrag gebruikt. Als het bedrag lager ligt dan het minimum, dan wordt het minimum gebruikt.</p></div>", + "publiccode": null, + "human_intervention": "Verantwoordelijke en gemachtigde medewerkers accorderen handmatig alle berekende leges voordat deze gefactureerd kunnen worden. Dit is een menselijke interactie die niet overgeslagen kan worden. Deze handeling wordt ook duurzaam vastgelegd in de applicatie. Initiatiefnemers (burgers en organisaties) hebben het recht bezwaar te maken tegen de opgelegde leges of in beroep te gaan tegen een afgewezen bezwaar.", + "risks": "Omdat gewerkt wordt met persoonsgegevens voor het kunnen opleggen van de leges is de AVG van toepassing. Onbevoegden kunnen niet bij gegevens komen door de gerealiseerde informatiebeveiliging. Beveiligingsrisico’s zijn beheerst door de algehele ingerichte beveiliging op systemen en verbindingen. Deze voldoen aan de eisen. Het is mogelijk dat gewerkt wordt met de verkeerde grondslag of dat de inrichting van het systeem niet actueel of correct is. Hierdoor kunnen verkeerde leges opgelegd worden. Verantwoordelijke en gemachtigde medewerkers accorderen handmatig alle berekende leges voordat deze gefactureerd kunnen worden. Dit is een menselijke interactie die niet overgeslagen kan worden. Deze handeling wordt ook duurzaam vastgelegd in de applicatie. Initiatiefnemers (burgers en organisaties) hebben het recht bezwaar te maken tegen de opgelegde leges of in beroep te gaan tegen een afgewezen bezwaar." + }, + { + "id": "centric-belastingen-lokale-heffingen", + "name": "Belastingen: Berekening belastingbedrag lokale heffingen", + "description_short": "Betreft eenvoudige algoritmes die bestaan uit vaste rekenregels om op basis van een belastinggrondslag, de maatstaf en een tarief een belastingbedrag te berekenen.", + "organization": null, + "type": "Op regels gebaseerd", + "publication_category": "Impactvolle algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": "", + "end_date": null, + "goal": "Het doel is het efficiënt en uniform berekenen van belastingbedragen.\n De impact hangt samen met de belastingplicht van burgers en bedrijven. De uitkomst van de algoritmes is het belastbare bedrag. Dit wordt formeel door de heffingsambtenaar vastgesteld.", + "proportionality": "Zonder deze eenvoudige algoritmes is het niet mogelijk efficiënt, maar ook uniform belastingbedragen voor burgers en bedrijven te berekenen.", + "provider": "Centric Netherlands BV", + "lawful_basis": "Gemeentewet, Waterschapswet, AWR, Wet WOZ.", + "lawful_basis_grouping": null, + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "", + "source_data_link": "", + "methods_and_models": "De meestvoorkomende methode is een rekenregel, bestaande uit de vermenigvuldiging van een maatstaf met een tarief. In enkele gevallen is sprake van een staffeling, waarbij de toegepaste rekenregels mede afhankelijk zijn van de maatstaf.", + "publiccode": null, + "human_intervention": "De uitkomst van de algoritmes wordt telkens vastgesteld door de heffingsambtenaar. Om dit zorgvuldig te doen vinden diverse controleslagen plaats, bijvoorbeeld door het doen van steekproeven.", + "risks": "Geen" + }, + { + "id": "centric-belastingen-woz", + "name": "Belastingen: WOZ taxatiemodellen", + "description_short": "Taxatiemodellen voor de berekeningen van de WOZ-waarde binnen Key2Waarderen.", + "organization": null, + "type": "Op regels gebaseerd", + "publication_category": "Impactvolle algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": "", + "end_date": null, + "goal": "Het doel van de toegepaste algoritmes is het berekenen van de marktwaarde van onroerende zaken in het kader van de Wet WOZ. De hoogte van de WOZ-waarde heeft voor belanghebbenden (burgers en bedrijven) verschillende implicaties. De belangrijkste impact is gelegen in de directe belastingen, zoals de onroerendezaakbelasting. Daarnaast heeft de hoogte van de WOZ-waarde -direct of indirect- invloed op andere belastingen, zoals de erf- en schenkbelasting, de inkomstenbelasting en de vennootschapsbelasting.", + "proportionality": "Voor het efficiënt, juist en uniform kunnen berekenen van de WOZ-waarde is het inzetten van taxatiemodellen cruciaal. Zonder deze modellen is dit niet mogelijk.", + "provider": "Centric Netherlands BV", + "lawful_basis": "Wet Waardering Onroerende Zaken (WOZ)", + "lawful_basis_grouping": [ + { + "title": "Wet waardering onroerende zaken", + "link": "https://wetten.overheid.nl/BWBR0007119/" + } + ], + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "", + "source_data_link": "", + "methods_and_models": "<div><p>Key2waarderen maakt gebruik van modelmatige vergelijking. Modelmatige vergelijking wil zeggen dat bij de onderbouwing van een object wordt gezocht naar verkochte woningen, die het meeste lijken op het hoofdgebouw van het te vergelijken object. De volgende uitgangspunten zijn van toepassing: </p><ul><li>De waarde van het hoofdgebouw wordt bepaald door deze te vergelijken met het hoofdgebouw van peilpunten;</li><li>De waarde van de grond en overige onderdelen worden bepaald door gebruik te maken van modelkengetallen; </li><li>Taxateurs stellen de parameters van het model in, zoals de gebruiksoppervlakte, bouwjaar, ligging, kwaliteit, onderhoud, etc.</li></ul><p><br></p></div>", + "publiccode": null, + "human_intervention": "De WOZ-waarde wordt formeel - op grond van artikel 22 van de Wet WOZ - vastgesteld door de heffingsambtenaar. Om te komen tot een waardevaststelling, wordt ex. artikel 17 van de Wet WOZ, de waarde bepaald. Het bepalen van de WOZ-waarde gebeurt de facto door de WOZ-taxateur, die hierbij zoveel mogelijk gebruik maakt van taxatiemodellen. Deze modellen bestaan uit een reeks van algoritmes.", + "risks": "" + } +] diff --git a/backend/app/data/templates/1.0/DataMask.json b/backend/app/data/templates/1.0/DataMask.json new file mode 100644 index 00000000..f960c74f --- /dev/null +++ b/backend/app/data/templates/1.0/DataMask.json @@ -0,0 +1,55 @@ +[ + { + "id": "datamask-anonimiseringssoftware", + "name": "Anonimiseringssoftware", + "description_short": "Het algoritme onderstreept de persoonsgegevens in documenten. Een medewerker moet alle pagina's bekijken en controleren of het document goed geanonimiseerd is. Daarna verwijdert de software alle gemarkeerde informatie en wordt het zwartgelakt. Daarna kunnen de documenten gepubliceerd worden, bijvoorbeeld op basis van de Wet Open Overheid.", + "organization": null, + "type": "Zelflerend", + "publication_category": "Overige algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": "", + "end_date": "", + "goal": "De anonimiseringssoftware wordt ingezet om documenten die de gemeente publiceert sneller en beter te anonimiseren. Zo voorkomen we datalekken en dragen we bij aan een betere bescherming van de AVG-rechten van betrokkenen.", + "proportionality": "De gemeente moet steeds vaker informatie openbaar maken. Daarom moet privacy- of bedrijfsgevoelige informatie worden weggelakt. Voordat het algoritme werd ingezet, ging dit lakken niet altijd goed. Er kwamen datalekken voor waarbij niet alle persoonsgegevens weggelakt waren of waarbij weggelakte informatie toch te lezen was. Het voordeel van de anonimiseringssoftware is dat er sneller en beter geanonimiseerd wordt. Het nadeel is dat de tekstlaag van het document door een Microsoft Azure server wordt geanalyseerd. De inhoud wordt niet op deze server opgeslagen, waardoor het privacyrisico van het gebruik van het algoritme niet opweegt tegen het privacy voordeel van de afname van het aantal datalekken door onjuist anonimiseren. ", + "provider": "DataMask B.V.", + "lawful_basis": "1. WOO\n2. WDO\n3. UAVG\n4. WEP\n5. WDO", + "lawful_basis_grouping": [ + { + "title": "Woo", + "link": "https://wetten.overheid.nl/BWBR0045754/" + }, + { + "title": "WDO", + "link": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:31995L0046" + }, + { + "title": "UAVG", + "link": "https://wetten.overheid.nl/BWBR0040940" + }, + { + "title": "Wep", + "link": "https://wetten.overheid.nl/BWBR0043961" + }, + { + "title": "Wdo", + "link": "https://wetten.overheid.nl/BWBR0048156" + } + ], + "iama_description": null, + "impacttoetsen_grouping": [ + ], + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "Alle informatie die te vinden is in de geuploade documenten (behalve de metadata), wordt verwerkt door het algoritme. Het kan daarbij gaan om gewone persoonsgegevens, bijzondere persoonsgegevens en strafrechtelijke gegevens. Het kan ook gaan om bedrijfsgevoelige informatie.", + "source_data_link": "", + "methods_and_models": "Documenten worden door een medewerker geupload naar de applicatie. Op dat moment wordt een kopie gemaakt van het origineel in de vorm van een PDF met tekstlaag en wordt de metadata van het oorspronkelijke document uit de kopie verwijderd. Deze kopie komt op een Nederlandse server terecht en blijft daar maximaal 30 dagen staan. De tekstlaag van de PDF wordt door een API aangeboden aan het machine learning algoritme. Het gaat om een Natural Language Processing algoritme (named entity recognition) van Microsoft Azure. De API levert terug op welke locatie in de geanalyseerde teksten waarschijnlijk een persoonsgegeven voorkomt, samen met de waarschijnlijkheidsscore (een percentage). Op dat moment wordt de tekstlaag bij Azure direct verwijderd. De waarschijnlijkheidsscore wordt samen met door de leverancier ontwikkelde eigen ai-modellen gebruikt om de herkenning van persoonsgegevens zo accuraat mogelijk te kunnen doen. De modellen worden getraind met gebruik van o.a. de volgende getrainde datasets als CoNLL-2003, UD Dutch LassySmall v2.8, Dutch NER Annotations for UD LassySmall en UD Dutch Alpino v2.8. Minimale kengetallen voor de nauwkeurigheid van het vaststellen van de persoonsgegevens zijn als volgt: Named entities (precision): 0.78, Named entities (recall): 0.76, Named entities (F-score): 0.77.Tot slot controleert een medewerker het document en wanneer deze het document afrondt, worden de te anonimiseren gegevens definitief uit de tekstlaag verwijderd en wordt een zwart balkje geplaatst.", + "publiccode": null, + "human_intervention": "De uitkomst van het algoritme wordt gecontroleerd door een medewerker. De medewerker wordt door de software verplicht om alle pagina's te controleren. De medewerker bepaalt of het document correct is geanonimiseerd.", + "risks": "Er bestaat geen risico op geautomatiseerde besluitvorming en het algoritme heeft geen impact op grondrechten, omdat het algoritme geen besluiten neemt met rechtsgevolgen. Het doet alleen een voorstel voor het anonimiseren van persoonsgegevens. Het algoritme wordt ook gebruikt door de ontwikkelaar zelf, waardoor fouten snel gevonden worden. Daarnaast wordt het algoritme periodiek getraind. Op verzoek van onze organisatie worden onze documenten niet gebruikt om het algoritme te trainen. Wanneer het algoritme niet goed genoeg werkt, kunnen we met black- en whitelists bijsturen.De medewerker van de gemeente doet altijd de laatste toets of een document juist is geanonimiseerd. Het risico bestaat dat medewerkers niet goed controleren, dit mitigeren we door aandacht te geven aan het belang van een zorgvuldige controle van de door het algoritme gevonden persoonsgegevens.Het laatste risico dat overblijft is het privacyrisico van het gebuik van Azure. Omdat Microsoft verplicht kan worden gegevens die het verwerkt over te dragen aan de Amerikaanse autoriteiten vanwege de Patriot Act. Om deze risico's te beperken heeft de leverancier privacy by default toegepast. Tekst die door de API in synchrone of asynchrone aanroepen wordt verzonden aan de Azure dienst kunnen tijdelijk worden opgeslagen door Azure voor debugging. Maar deze optie heeft de leverancier uitgeschakeld. Dat beperkt het risico. Onmiddellijk na de verwerking door Azure wordt de data en de dataverwerking verwijderd. Verder is de leverancier ISO 27001 gecertificeerd. De risico's wegen niet op tegen de privacyvoordelen en het risico van gebrekkig anonimiseren door deze software niet te gebruiken." + } +] diff --git a/backend/app/data/templates/1.0/DocDirekt.json b/backend/app/data/templates/1.0/DocDirekt.json new file mode 100644 index 00000000..bab074e2 --- /dev/null +++ b/backend/app/data/templates/1.0/DocDirekt.json @@ -0,0 +1,59 @@ +[ + { + "id": "docdirekt-anonimiseren", + "name": "Octobox Anonimiseren", + "organization": null, + "description_short": "Het algoritme in de software is voornamelijk ingesteld op herkennen en anonimiseren van privacygevoelige informatie in documenten. Grondslag hiervan is de AVG. De tool wordt ook gebruikt om informatie die om andere reden niet gedeeld kan worden (op basis van een andere grondslag, bijvoorbeeld de Woo) te markeren en maskeren in een document. ", + "type": "Nee", + "category": ["Organisatie en bedrijfsvoering"], + "publication_category": "Overige algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": null, + "end_date": null, + "goal": "<div><p>De anonimiseringstool wordt ingezet om invulling te geven aan enerzijds transparantie en anderzijds aan de noodzakelijke bescherming van de personen, bedrijven en instellingen op wie documenten betrekking hebben.</p><p><br></p><p>Transparantie omdat het de organisatie in staat stelt om informatie volgens regelgeving zoals de Woo te delen, actief danwel passief. Voor de burger over wie er gegevens in te publiceren documenten zijn opgenomen, betekent het gebruik dat er geen privacy schending plaatsvindt en de organisatie daarmee voldoet aan de AVG. Dat geldt ook voor de bescherming van privacygegevens van de medewerkers van de organisatie.</p><p><br></p><p>De aanvrager van een Woo verzoek krijgt de informatie waarom zij vroeg, hetzij in geanonimiseerde versie of deels gemaskeerd op basis van een andere grondslag. Voor de afdelingen binnen de organisatie die voor het afhandelen van een Woo verzoek en/of publicatie van informatie verantwoordelijk zijn, betekent het dat ze voldoen aan wet- en regelgeving. Gebruik van de software verkort de doorlooptijd en draagt derhalve bij aan het binnen de wettelijke termijnen kunnen aanbieden van gevraagde informatie.</p><p><br></p><p>De risico impact van het algoritme is laag. Dat geldt voor personen (burgers, medewerkers van afnemende organisaties) en bedrijven en instellingen. Het algoritme zoekt specifiek naar (persoons)gegevens en maskeert deze of duidt ze aan ongeacht de verdere inhoud van documenten. Er wordt een voorstel gedaan voor het anonimiseren van een tekstfragment aan een vakinhoudelijk persoon, er is geen sprake van automatische beslissingen. Daarnaast heeft de tool als optie om handmatig informatie te maskeren die om andere redenen niet publiek gemaakt kan worden. Daarmee kan bijvoorbeeld een tekstfragment met strategische informatie gemarkeerd worden, ter bescherming van de eigen organisatie of een partnerorganisatie (overheid, bedrijf of instelling). De grondslag van het anonimiseren of maskeren wordt vermeld in het vak.</p></div>", + "proportionality": "<p>Het komt voor dat tekstfragmenten in documenten die openbaar gemaakt worden, niet gedeeld kunnen worden met het publiek. De Woo heeft voorzien in Grondslagen op basis waarvan dat mogelijk is. En ook de AVG is zo'n grondslag voor niet Woo-gebonden publicaties. Zonder het gebruik van de software zou het anonimiseren van tekstfragmenten in documenten significant meer tijd in beslag nemen. Het gebruik van de anonimiseringstool zorgt voor een versnelling en vereenvoudiging van het proces voor actieve en passieve openbaarmaking. Het geautomatiseerd anonimiseren is ook minder foutgevoelig dan menselijk handelen. Daardoor is de kans op een datalek kleiner en zijn de gegevens van personen beter beschermd.</p>", + "provider": "Octobox Nederland B.V.", + "lawful_basis": "<div><p>Algemene verordening gegevensbescherming (AVG)</p><p>Omgevingswet</p><p>Algemene Wet Bestuursrecht (AWB)</p><p>Bekendmakingswet</p><p>Wet Open Overheid (WOO)</p><p>Wet Elektronische Publicaties (WEP)</p></div>", + "lawful_basis_grouping": [ + { + "title": "Algemene verordening gegevensbescherming (AVG)", + "link": "https://wetten.overheid.nl/BWBR0040940" + }, + { + "title": "Omgevingswet", + "link": "https://wetten.overheid.nl/BWBR0037885" + }, + { + "title": "Algemene Wet Bestuursrecht (AWB)", + "link": "https://wetten.overheid.nl/BWBR0005537" + }, + { + "title": "Bekendmakingswet", + "link": "https://wetten.overheid.nl/BWBR0004287" + }, + { + "title": "Wet Open Overheid (WOO)", + "link": "https://wetten.overheid.nl/BWBR0045754" + }, + { + "title": "Wet Elektronische Publicaties (WEP)", + "link": "https://wetten.overheid.nl/BWBR0043961" + } + ], + "impacttoetsen": null, + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "<div><p>In het begin van het gebruik werd een inrichtingsdocument samengesteld door organisatie en leverancier. Hierin staan voorkeuren van de organisatie met betrekking tot het anonimiseren. Deze set wordt samengevoegd met het Basismodel van Octobox, dat standaard op zoek gaat naar personen te herleiden gegevens, zoals Burgerservicenummers, Bankrekeningnummers, telefoonnummers, e-mailadressen, datums, woonadressen en postcodes.</p><p>De organisatie kan een voorkeur hebben om bepaalde namen niet te lakken (bewindspersoon, directeur) en andere juist wel. De namen van medewerkers kunnen ontbreken in het Basismodel en alvast op voorhand worden toegevoegd. Een andere voorkeur die de organisatie kan aangeven is bijvoorbeeld het formaat waarin een e-mailadres onherkenbaar gemaakt wordt.</p></div>", + "source_data_link": null, + "methods_and_models": "<div><p>Op basis van slimme regels doorzoekt de software de teksten van elk document in het aangeboden dossier. Bepaalde teksten, woorden of karaktercombinaties worden herkend als naar personen te herleiden gegevens, zoals Burgerservicenummers, Bankrekeningnummers, telefoonnummers, e-mailadressen, datums, woonadressen en postcodes.</p><p>De software kan ingesteld worden op de mate van zekerheid waarin aan een voorwaarde voldaan wordt. Voor de medewerker wordt op het scherm aangegeven welke tekstfragmenten met zekerheid gelakt moeten worden, en welke in mindere mate aan de opgestelde slimme regel voldoet. Via het scherm kan de medewerker de voorstellen goed- of afkeuren, en ook wijzigen voor goedkeuring. Ook kan de medewerker zelf tekst markeren en voor aflakken in aanmerking laten komen, inclusief het toevoegen van een grondslag. </p><p>Het is mogelijk om een tweede medewerker het werk van de eerste te controleren. Als alle (pagina's van alle) documenten in het dossier zijn beoordeeld wordt de definitieve versie gecreëerd, in een geschikt formaat voor publicatie.</p></div>", + "publiccode": null, + "human_intervention": "<div><p>Menselijke tussenkomst en controle is in het gebruik altijd de norm. De software werkt op basis van een inrichtingsdocument. De organisatie kan via dit inrichtingsdocument en verschillende mechanismen het algoritmegebruik afstemmen/parametriseren op de eigen unieke situatie. Er wordt een voorstel gedaan voor het anonimiseren van een tekstfragment aan een vakinhoudelijk persoon. Er is geen sprake van geautomatische beslissingen. </p><p>Het algoritme zoekt specifiek naar (persoons)gegevens en markeert deze of duidt ze aan ongeacht de verdere inhoud van documenten. De vakinhoudelijk persoon behandelt de voorstellen en geeft aan waar ze correct zijn, verbetert waar het moet. Eventueel kan dit werk ook binnen de software door een tweede persoon getoetst worden. Voor de burger betekent dit dat de organisatie aantoonbaar en proportioneel werkt aan het wegnemen van (de kans op) privacyschending en voldoen daarmee aan de AVG.</p></div>", + "risks": "<div><p>Om het risico dat documenten onvoldoende worden geanonimiseerd te mitigeren vindt er altijd controle door een mens plaats. Dit betreft een volledige controle waar de software op intuïtieve wijze gebruikt kan worden om te controleren of wijzigen/verrijken. Als er geen menselijke controle zou plaatsvinden bij het anonimiseren van documenten, kunnen er verschillende risico's ontstaan, met name als gevolg van het openbaar maken of publiceren van privacygevoelige gegevens. Deze tool in samenwerking met de mens, helpt dit te voorkomen:</p><p><br></p><p>Schending van Privacywetgeving:</p><p>Het onbedoeld openbaar maken van persoonlijke gegevens kan een schending van de privacywetgeving inhouden, zoals de AVG in de EU. Dit kan leiden tot aanzienlijke boetes en juridische sancties.</p><p><br></p><p>Identiteitsdiefstal:</p><p>Als persoonlijke identificeerbare informatie (PII) zoals namen, adressen en sofinummers openbaar wordt gemaakt, kan dit leiden tot identiteitsdiefstal en financiële fraude.</p><p><br></p><p>Schade aan reputatie:</p><p>Zowel de reputatie van de individuen wiens informatie is gelekt als die van de organisatie die verantwoordelijk is voor het lek kunnen ernstige schade oplopen.</p><p><br></p><p>Verlies van Vertrouwen:</p><p>Het vertrouwen van het publiek en de betrokken stakeholders in de organisatie kan afnemen, wat kan leiden tot een afname van de betrokkenheid en steun.</p><p><br></p><p>Persoonlijke Schade:</p><p>Individuen kunnen emotionele en psychologische schade ondervinden als hun persoonlijke gegevens, zoals medische of financiële informatie, openbaar worden gemaakt.</p><p><br></p><p>Exploitatie en Misbruik:</p><p>Openbaar gemaakte gegevens kunnen worden gebruikt voor kwaadwillende doeleinden, zoals staking, intimidatie of discriminatie.</p><p><br></p><p>Menselijke controle helpt om deze risico's te beperken door een extra laag van beoordeling en bevestiging te bieden dat de anonimiseringsprocessen adequaat zijn uitgevoerd voordat informatie openbaar wordt gemaakt.</p></div>" + } +] diff --git a/backend/app/data/templates/1.0/Gemeente Amsterdam.json b/backend/app/data/templates/1.0/Gemeente Amsterdam.json new file mode 100644 index 00000000..18f6d89a --- /dev/null +++ b/backend/app/data/templates/1.0/Gemeente Amsterdam.json @@ -0,0 +1,33 @@ +[ + { + "id": "gemeente-amsterdam-meldingen-openbare-ruimte", + "name": "Meldingen openbare ruimte", + "organization": null, + "description_short": "Als er op straat of in een park iets gemaakt of opgeruimd moet worden, dan kan dat bij de gemeente worden gemeld via Signalen, het open source meldingensysteem van voor en door gemeenten. ", + "type": "Nee", + "category": ["Openbare orde en veiligheid"], + "publication_category": "Impactvolle algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": null, + "end_date": null, + "goal": "<div><p>Als er op straat of in een park iets gemaakt of opgeruimd moet worden, dan kan dat bij de gemeente worden gemeld via Signalen, het open source meldingensysteem van voor en door gemeenten. Ook een gevaarlijke verkeerssituatie, woonoverlast of overlast van personen en horeca kan gemeld worden. Voorheen moesten mensen zelf kiezen bij welke categorie hun melding het beste paste (bijvoorbeeld ‘overlast’ of ‘straatmeubilair’), zodat de melding bij de juiste afdeling van de gemeente terecht kwam. </p><p>Maar de gemeente is een complexe organisatie en de lijst met categorieën is lang. Daardoor koos men niet altijd de juiste categorie. Dat zorgde soms voor vertraging in de afhandeling van meldingen. Daarom gebruiken we nu een algoritme dat woorden herkent, bijvoorbeeld ‘afval’ en ‘stoep’. Op basis daarvan wordt bepaald bij welke categorie de melding het best past en welke afdeling de melding moet afhandelen. De melder hoeft dus geen categorie meer te kiezen, en de melding wordt sneller afgehandeld omdat hij bij de juiste afdeling terecht komt.</p></div>", + "proportionality": "", + "provider": "", + "lawful_basis": "", + "lawful_basis_grouping": null, + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": "<p>Meldingen Klachten Natural language processing</p>", + "source_data": "<div><p>Meldingen</p><p><br></p><p>De dataset bestaat uit meldingen die eerder gedaan zijn (vrij tekstveld). In eerste instantie hebben we 300.000 meldingen uit de afgelopen jaren gebruikt om het algoritme te trainen. Regelmatig wordt het bijgetraind met nieuwe meldingen en uitgevoerde correcties op bestaande meldingen. Als het Actie Service Centrum of afdelingen een verkeerde categorisering zien, (zie Menselijk toezicht) corrigeren zij dit handmatig in het meldingensysteem. Deze correcties worden gebruikt bij het bijtrainen. We onderzoeken of het bijtrainen van het algoritme in de toekomst geautomatiseerd kan.</p><p><br></p><p>Deze dataset kunnen we in dit register niet openbaar maken. Omdat de data uit een vrij tekstveld komen, kunnen daar persoonsgegevens in staan, hoewel daar expliciet niet om wordt gevraagd.</p><p><br></p><p>E-mailadres en telefoonnummer voor vervolgvragen</p><p><br></p><p>Iemand die een melding doet, kan zijn of haar telefoonnummer en/of e-mailadres achterlaten als hij of zij dat wil. We houden de melder dan op de hoogte van de voortgang en we hebben de mogelijkheid om hem of haar terug te bellen. Deze informatie wordt niet langer bewaard dan voor dit doel nodig is en wordt dus niet door het algoritme gebruikt.</p><p><br></p><p>Voor overige informatie over verwerking van persoonsgegevens, zie: https://www.amsterdam.nl/privacy/specifieke/privacyverklaringen-wonen/meldingen-overlast-privacy</p></div>", + "source_data_grouping": null, + "methods_and_models": "<div><p>Architectuur van het model</p><p><br></p><p>De tekst van de melding wordt opgedeeld in losse woorden. Van elk woord uit een melding wordt geanalyseerd hoe uniek het is voor die melding, afgezet tegen de totale collectie woorden (‘TF-IDF’ of ‘term frequency-inverse document frequency’). Een woord als ‘de’ of ‘bedankt’ krijgt daardoor een laag gewicht en een woord als ‘vuilnis’ krijgt een hoger gewicht.</p><p><br></p><p>Van die combinatie van woorden wordt vervolgens met logistische regressie (een machine-learning-techniek) bepaald bij welke categorie de melding hoort en daarmee bij welke afdeling binnen de gemeente de melding het meest waarschijnlijk past.</p></div>", + "publiccode": null, + "human_intervention": "<p>Alle meldingen die met minder dan 40% zekerheid bij een bepaalde categorie ingedeeld worden, worden doorgestuurd naar het Actie Service Centrum. Vervolgens vindt een menselijke beoordeling plaats en wordt de melding alsnog gecategoriseerd. Ook de meldingen die onterecht doorgestuurd worden naar een verkeerde categorie, worden door de verantwoordelijke afdeling (soms via het Actie Service Centrum) handmatig in de juiste categorie geplaatst.</p>", + "risks": "<p>Er zitten weinig risico’s aan dit algoritme. Het plaatst een melding in de juiste categorie en zorgt dat het sneller bij de juiste afdeling onder de aandacht is. Als het algoritme een melding niet met voldoende zekerheid in een categorie kan plaatsen, komt hij in de categorie ‘Overig’ terecht. Medewerkers van het Actie Service Centrum bekijken die meldingen en zetten ze handmatig in de juiste categorie. Als het algoritme niet naar behoren werkt, duurt het dus iets langer voordat de melding bij de juiste afdeling is. De melder kan persoonsgegevens toevoegen als hij of zij op de hoogte gehouden wil worden. Deze gegevens worden beveiligd opgeslagen en niet door het algoritme gebruikt.</p>" + } +] diff --git a/backend/app/data/templates/1.0/Gemeente Tilburg.json b/backend/app/data/templates/1.0/Gemeente Tilburg.json new file mode 100644 index 00000000..c295e21e --- /dev/null +++ b/backend/app/data/templates/1.0/Gemeente Tilburg.json @@ -0,0 +1,34 @@ +[ + { + "id": "gemeente-tilburg-virtuele-gemeente-assistent-gem", + "name": "Virtuele gemeente assistent Gem", + "organization": null, + "description_short": "De virtuele assistent Gem is een digitale hulp op de websites voor het beantwoorden van burger- en ondernemersvragen. Via de chat-knop op onze websites kunt u in gesprek met Gem.", + "type": null, + "category": ["Organisatie en bedrijfsvoering"], + "publication_category": "Impactvolle algoritmes", + "website": "Team Virtuele Assistent Gem Common Ground", + "status": "In gebruik", + "begin_date": null, + "end_date": null, + "goal": "<div><p>Zo goed mogelijk de inwoner begrijpen en hem aan het juiste antwoord helpen. Dat kan soms een inhoudelijk of procedureel antwoord zijn, soms een doorverwijzing of een overdracht naar een (livechat-)medewerker. </p><p>De virtuele assistent wordt alleen ingezet om meer hulp te kunnen bieden door landelijk vastgestelde antwoorden te geven op burger- en ondernemersvragen of doorverwijzing naar een medewerker.</p></div>", + "proportionality": "<p>Het gebruik van de chatbot GEM helpt betrouwbare overheidsinformatie richting inwoners te kunnen leveren op een toegankelijke manier passend bij moderne technieken en dienstverlening. Hierdoor zijn inwoners beter geïnformeerd over hun rechten en plichten. </p>", + "provider": "Gemeente Tilburg", + "lawful_basis": "<p>Het leveren van betrouwbare overheidsinformatie over producten en diensten</p>", + "lawful_basis_grouping": null, + "impacttoetsen": null, + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "", + "source_data_link": null, + "methods_and_models": "<div><p>De gemeente biedt digitale hulp aan inwoners en ondernemers met een vraag. Deze digitale hulp heet ‘virtuele assistent GEM’. Via de chat-knop op onze websites kunt u in gesprek met GEM. De virtuele assistent maakt gebruik van kunstmatige intelligentie, ook wel bekend als artificiële intelligentie (AI). </p><p>AI helpt GEM om de inwoner beter te begrijpen en de juiste informatie te geven. Specifiek maakt GEM gebruikt van supervised machine learning, waarbij op basis van de vraag berekend wordt welk antwoord uit de antwoordenbibliotheek het beste antwoord geeft op de vraag. Zodra een vraag onvoldoende goed beantwoord kan worden, wordt het gesprek voortgezet door een medewerker. </p><p>Aan het eind van het gesprek kan de gebruiker aangeven of het antwoord heeft geholpen. De volgende keer dat een persoon een soortgelijke vraag stelt, is de kans groter dat het antwoord dat het meest geholpen heeft, wordt gekozen. GEM kan op basis van deze bibliotheek dus inhoudelijk antwoorden op vragen, maar ook doorverwijzen naar een informatiepagina of het gesprek laten voortzetten door een medewerker. </p><p>De antwoorden die GEM kan geven worden landelijk vastgelegd. Dit kost minder beheer en straalt meer eenheid uit tussen gemeenten.</p></div>", + "publiccode": null, + "human_intervention": "<p>De antwoorden die GEM kan geven staan in een landelijke bibliotheek. Medewerkers van de gemeente kunnen antwoorden wijzigen zodat de antwoorden aansluiten op lokale situaties. GEM heeft geen rol in besluiten, het adviseert inwoners. </p>", + "risks": "<p>Gem is een generieke applicatie. Gebruikersfeedback wordt gemonitord en er zijn afspraken over het onderhoud. Medewerkers van de gemeente zorgen dat de antwoorden passen bij de situatie in de gemeente.</p>" + } +] diff --git a/backend/app/data/templates/1.0/Octobox.json b/backend/app/data/templates/1.0/Octobox.json new file mode 100644 index 00000000..bfe66f49 --- /dev/null +++ b/backend/app/data/templates/1.0/Octobox.json @@ -0,0 +1,59 @@ +[ + { + "id": "octobox-anonimiseren", + "name": "Octobox Anonimiseren", + "organization": null, + "description_short": "Het algoritme in de software is voornamelijk ingesteld op herkennen en anonimiseren van privacygevoelige informatie in documenten. Grondslag hiervan is de AVG. De tool wordt ook gebruikt om informatie die om andere reden niet gedeeld kan worden (op basis van een andere grondslag, bijvoorbeeld de Woo) te markeren en maskeren in een document. ", + "type": "Nee", + "category": ["Organisatie en bedrijfsvoering"], + "publication_category": "Overige algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": null, + "end_date": null, + "goal": "<div><p>De anonimiseringstool wordt ingezet om invulling te geven aan enerzijds transparantie en anderzijds aan de noodzakelijke bescherming van de personen, bedrijven en instellingen op wie documenten betrekking hebben.</p><p><br></p><p>Transparantie omdat het de organisatie in staat stelt om informatie volgens regelgeving zoals de Woo te delen, actief danwel passief. Voor de burger over wie er gegevens in te publiceren documenten zijn opgenomen, betekent het gebruik dat er geen privacy schending plaatsvindt en de organisatie daarmee voldoet aan de AVG. Dat geldt ook voor de bescherming van privacygegevens van de medewerkers van de organisatie.</p><p><br></p><p>De aanvrager van een Woo verzoek krijgt de informatie waarom zij vroeg, hetzij in geanonimiseerde versie of deels gemaskeerd op basis van een andere grondslag. Voor de afdelingen binnen de organisatie die voor het afhandelen van een Woo verzoek en/of publicatie van informatie verantwoordelijk zijn, betekent het dat ze voldoen aan wet- en regelgeving. Gebruik van de software verkort de doorlooptijd en draagt derhalve bij aan het binnen de wettelijke termijnen kunnen aanbieden van gevraagde informatie.</p><p><br></p><p>De risico impact van het algoritme is laag. Dat geldt voor personen (burgers, medewerkers van afnemende organisaties) en bedrijven en instellingen. Het algoritme zoekt specifiek naar (persoons)gegevens en maskeert deze of duidt ze aan ongeacht de verdere inhoud van documenten. Er wordt een voorstel gedaan voor het anonimiseren van een tekstfragment aan een vakinhoudelijk persoon, er is geen sprake van automatische beslissingen. Daarnaast heeft de tool als optie om handmatig informatie te maskeren die om andere redenen niet publiek gemaakt kan worden. Daarmee kan bijvoorbeeld een tekstfragment met strategische informatie gemarkeerd worden, ter bescherming van de eigen organisatie of een partnerorganisatie (overheid, bedrijf of instelling). De grondslag van het anonimiseren of maskeren wordt vermeld in het vak.</p></div>", + "proportionality": "<p>Het komt voor dat tekstfragmenten in documenten die openbaar gemaakt worden, niet gedeeld kunnen worden met het publiek. De Woo heeft voorzien in Grondslagen op basis waarvan dat mogelijk is. En ook de AVG is zo'n grondslag voor niet Woo-gebonden publicaties. Zonder het gebruik van de software zou het anonimiseren van tekstfragmenten in documenten significant meer tijd in beslag nemen. Het gebruik van de anonimiseringstool zorgt voor een versnelling en vereenvoudiging van het proces voor actieve en passieve openbaarmaking. Het geautomatiseerd anonimiseren is ook minder foutgevoelig dan menselijk handelen. Daardoor is de kans op een datalek kleiner en zijn de gegevens van personen beter beschermd.</p>", + "provider": "Octobox Nederland B.V.", + "lawful_basis": "<div><p>Algemene verordening gegevensbescherming (AVG)</p><p>Omgevingswet</p><p>Algemene Wet Bestuursrecht (AWB)</p><p>Bekendmakingswet</p><p>Wet Open Overheid (WOO)</p><p>Wet Elektronische Publicaties (WEP)</p></div>", + "lawful_basis_grouping": [ + { + "title": "Algemene verordening gegevensbescherming (AVG)", + "link": "https://wetten.overheid.nl/BWBR0040940" + }, + { + "title": "Omgevingswet", + "link": "https://wetten.overheid.nl/BWBR0037885" + }, + { + "title": "Algemene Wet Bestuursrecht (AWB)", + "link": "https://wetten.overheid.nl/BWBR0005537" + }, + { + "title": "Bekendmakingswet", + "link": "https://wetten.overheid.nl/BWBR0004287" + }, + { + "title": "Wet Open Overheid (WOO)", + "link": "https://wetten.overheid.nl/BWBR0045754" + }, + { + "title": "Wet Elektronische Publicaties (WEP)", + "link": "https://wetten.overheid.nl/BWBR0043961" + } + ], + "impacttoetsen": null, + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "<div><p>In het begin van het gebruik werd een inrichtingsdocument samengesteld door organisatie en leverancier. Hierin staan voorkeuren van de organisatie met betrekking tot het anonimiseren. Deze set wordt samengevoegd met het Basismodel van Octobox, dat standaard op zoek gaat naar personen te herleiden gegevens, zoals Burgerservicenummers, Bankrekeningnummers, telefoonnummers, e-mailadressen, datums, woonadressen en postcodes.</p><p>De organisatie kan een voorkeur hebben om bepaalde namen niet te lakken (bewindspersoon, directeur) en andere juist wel. De namen van medewerkers kunnen ontbreken in het Basismodel en alvast op voorhand worden toegevoegd. Een andere voorkeur die de organisatie kan aangeven is bijvoorbeeld het formaat waarin een e-mailadres onherkenbaar gemaakt wordt.</p></div>", + "source_data_link": null, + "methods_and_models": "<div><p>Op basis van slimme regels doorzoekt de software de teksten van elk document in het aangeboden dossier. Bepaalde teksten, woorden of karaktercombinaties worden herkend als naar personen te herleiden gegevens, zoals Burgerservicenummers, Bankrekeningnummers, telefoonnummers, e-mailadressen, datums, woonadressen en postcodes.</p><p>De software kan ingesteld worden op de mate van zekerheid waarin aan een voorwaarde voldaan wordt. Voor de medewerker wordt op het scherm aangegeven welke tekstfragmenten met zekerheid gelakt moeten worden, en welke in mindere mate aan de opgestelde slimme regel voldoet. Via het scherm kan de medewerker de voorstellen goed- of afkeuren, en ook wijzigen voor goedkeuring. Ook kan de medewerker zelf tekst markeren en voor aflakken in aanmerking laten komen, inclusief het toevoegen van een grondslag. </p><p>Het is mogelijk om een tweede medewerker het werk van de eerste te controleren. Als alle (pagina's van alle) documenten in het dossier zijn beoordeeld wordt de definitieve versie gecreëerd, in een geschikt formaat voor publicatie.</p></div>", + "publiccode": null, + "human_intervention": "<div><p>Menselijke tussenkomst en controle is in het gebruik altijd de norm. De software werkt op basis van een inrichtingsdocument. De organisatie kan via dit inrichtingsdocument en verschillende mechanismen het algoritmegebruik afstemmen/parametriseren op de eigen unieke situatie. Er wordt een voorstel gedaan voor het anonimiseren van een tekstfragment aan een vakinhoudelijk persoon. Er is geen sprake van geautomatische beslissingen. </p><p>Het algoritme zoekt specifiek naar (persoons)gegevens en markeert deze of duidt ze aan ongeacht de verdere inhoud van documenten. De vakinhoudelijk persoon behandelt de voorstellen en geeft aan waar ze correct zijn, verbetert waar het moet. Eventueel kan dit werk ook binnen de software door een tweede persoon getoetst worden. Voor de burger betekent dit dat de organisatie aantoonbaar en proportioneel werkt aan het wegnemen van (de kans op) privacyschending en voldoen daarmee aan de AVG.</p></div>", + "risks": "<div><p>Om het risico dat documenten onvoldoende worden geanonimiseerd te mitigeren vindt er altijd controle door een mens plaats. Dit betreft een volledige controle waar de software op intuïtieve wijze gebruikt kan worden om te controleren of wijzigen/verrijken. Als er geen menselijke controle zou plaatsvinden bij het anonimiseren van documenten, kunnen er verschillende risico's ontstaan, met name als gevolg van het openbaar maken of publiceren van privacygevoelige gegevens. Deze tool in samenwerking met de mens, helpt dit te voorkomen:</p><p><br></p><p>Schending van Privacywetgeving:</p><p>Het onbedoeld openbaar maken van persoonlijke gegevens kan een schending van de privacywetgeving inhouden, zoals de AVG in de EU. Dit kan leiden tot aanzienlijke boetes en juridische sancties.</p><p><br></p><p>Identiteitsdiefstal:</p><p>Als persoonlijke identificeerbare informatie (PII) zoals namen, adressen en sofinummers openbaar wordt gemaakt, kan dit leiden tot identiteitsdiefstal en financiële fraude.</p><p><br></p><p>Schade aan reputatie:</p><p>Zowel de reputatie van de individuen wiens informatie is gelekt als die van de organisatie die verantwoordelijk is voor het lek kunnen ernstige schade oplopen.</p><p><br></p><p>Verlies van Vertrouwen:</p><p>Het vertrouwen van het publiek en de betrokken stakeholders in de organisatie kan afnemen, wat kan leiden tot een afname van de betrokkenheid en steun.</p><p><br></p><p>Persoonlijke Schade:</p><p>Individuen kunnen emotionele en psychologische schade ondervinden als hun persoonlijke gegevens, zoals medische of financiële informatie, openbaar worden gemaakt.</p><p><br></p><p>Exploitatie en Misbruik:</p><p>Openbaar gemaakte gegevens kunnen worden gebruikt voor kwaadwillende doeleinden, zoals staking, intimidatie of discriminatie.</p><p><br></p><p>Menselijke controle helpt om deze risico's te beperken door een extra laag van beoordeling en bevestiging te bieden dat de anonimiseringsprocessen adequaat zijn uitgevoerd voordat informatie openbaar wordt gemaakt.</p></div>" + } +] diff --git a/backend/app/data/templates/1.0/PinkRoccade.json b/backend/app/data/templates/1.0/PinkRoccade.json new file mode 100644 index 00000000..7d27b5be --- /dev/null +++ b/backend/app/data/templates/1.0/PinkRoccade.json @@ -0,0 +1,114 @@ +[ + { + "id": "pinkroccade-iburgerzaken", + "name": "iBurgerzaken e-diensten", + "organization": null, + "description_short": "Inwoners en ondernemers van Nederlandse gemeenten krijgen de mogelijkheid om digitaal een 31-tal burgerzakenproducten aan te vragen via de gemeentelijke website. Hierbij voert het systeem controles uit op de persoonsgegevens.", + "type": "Nee", + "category": ["Organisatie en bedrijfsvoering"], + "publication_category": "Impactvolle algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": "2014-06", + "end_date": null, + "goal": "<div><p>Het doel van de e-diensten met het onderliggende algoritme is inwoners en ondernemers maximaal ondersteunen/begeleiden bij een digitale aanvraag. Daardoor kan deze aanvraag juist en volledig worden ingediend. Het algoritme controleert verschillende gegevens van de inwoner. Als er geen aanvullende gegevens nodig zijn van de inwoner en er geen handmatige acties of controles van de gemeente zijn vereist (zoals bijvoorbeeld ondertekening) om de aanvraag te verwerken, dan kan deze verwerkt worden zonder tussenkomst van een burgerzakenmedewerker. Zijn er wel aanvullende gegevens, controles of acties nodig, dan komt de aanvraag/aangifte altijd terecht in een werklijst. Daar wordt deze gecontroleerd door een burgerzakenmedewerker. Het algoritme kan alleen automatisch een aanvraag/aangifte goedkeuren. Een aanvraag/aangifte afkeuren kan alleen de burgerzakenmedewerker.</p><p><br></p><p>De impact is dat een dergelijke aanvraag efficiënt kan worden afgehandeld door de gemeente; een inwoner/bedrijf heeft namelijk diverse stappen (werkzaamheden) al uitgevoerd, waardoor de ambtenaar meer tijd overhoudt voor de bijzondere en/of ingewikkelde aangiften/aanvragen die de gemeente ontvangt. In een aantal gevallen kan deze aanvraag zelfs volledig automatisch worden verwerkt. De kwaliteit van de dienstverlening gaat door deze diensten omhoog, net als de kwaliteit van de gegevens in de BRP.</p></div>", + "proportionality": "<p>Alle aanvragen via de balie afhandelen is voor gemeenten geen optie meer. Dat komt door de aantallen en de tijdsdruk. Een algoritme biedt inwoners en ondernemers begeleiding bij (digitale) aanvragen. Een gemeente kan ervoor kiezen om elke digitale aanvraag nog ter beoordeling aan de burgerzakenmedewerker aan te bieden voordat deze wordt afgehandeld. Voor mensen die niet of minder digivaardig zijn, bestaat er altijd nog de mogelijkheid om via de balie van de gemeente de aanvraag te doen.</p>", + "provider": "PinkRoccade Local Government", + "lawful_basis": "<div><div>Wet basisregistratie personen</div>\n<div>Wet rechten burgerlijke stand</div></div>", + "lawful_basis_grouping": [ + { + "title": "Wet basisregistratie personen", + "link": "https://wetten.overheid.nl/BWBR0033715" + }, + { + "title": "Wet rechten burgerlijke stand", + "link": "https://wetten.overheid.nl/BWBR0001851" + } + ], + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "<div>Gegevens die worden gebruikt komen uit de BRP, burgerlijke stand registers, KvK, CRB (Centraal Rijbewijzenregister) en aangehaakte gegevens.</div>", + "source_data_grouping": [ + { + "title": "BRP", + "link": "https://www.rvig.nl/basisregistratie-personen" + }, + { + "title": "LV BAG", + "link": "https://www.kadaster.nl/zakelijk/registraties/basisregistraties/bag" + }, + { + "title": "CRB", + "link": "https://www.rdw.nl/" + } + ], + "methods_and_models": "<div><p>Via de website van de gemeente kan een inwoner of ondernemer een e-dienst starten. Iedere aanvraag wordt tijdens het invullen al getoetst tegen de voor de aanvraag geldende wet- en regelgeving. Een volledig ingevulde digitale aanvraag/aangifte komt ter beoordeling en afhandeling van een burgerzakenmedewerker, op de werklijst in iBurgerzaken. Bij het openen van een aanvraag of aangifte op de werklijst is het voor de burgerzakenmedewerker zichtbaar welke controle een melding heeft opgeleverd, voor een juiste beoordeling en afhandeling. </p><p><br></p><p>Een gemeente kan voor een aantal digitale aanvragen kiezen of iBurgerzaken, deze zonder tussenkomst van een burgerzakenmedewerker, automatisch mag verwerken. iBurgerzaken verwerkt een aanvraag geheel automatisch als geen enkele controle een waarschuwing oplevert. Daarnaast kan de gemeente ook kiezen in welke situaties de aanvraag altijd op de werklijst ter beoordeling en afhandeling komt. Bijvoorbeeld bij Verhuizing binnen Nederland: als er sprake is van overbewoning op het nieuw adres.</p></div>", + "publiccode": null, + "human_intervention": "<p>Het algoritme gaat uit van een positief scenario. Daardoor worden alleen eenvoudige aangiften en aanvragen automatisch verwerkt. Wanneer een of meerdere bijzonderheden optreden, dan wordt de aanvraag/aangifte altijd door een burgerzakenmedewerker beoordeeld. De burgerzakenmedewerker controleert deze dan zelf; verwerken of afwijzen. Bij afwijzing is het altijd de burgerzakenmedewerker die dit doet en nooit het algoritme.</p>", + "risks": "<p>Het is aan gemeenten om vorm te geven aan het risicobeheer en aan de hand daarvan de e-diensten te configureren.</p>" + }, + { + "id": "pinkroccade-civision-samenlevingszaken", + "name": "CiVision Samenlevingszaken", + "description_short": "CiVision Samenlevingszaken is een backoffice applicatie voor het sociaal domein. Binnen deze applicatie worden voorzieningen voor een inwoner berekend en verstrekt. Dit zijn verstrekkingen in het kader van inkomensregelingen, re-integratievoorzieningen en voorzieningen ter maatschappelijke ondersteuning en voor de hulp aan jeugdigen.", + "organization": null, + "category": ["Organisatie en bedrijfsvoering"], + "type": null, + "publication_category": "Impactvolle algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": "", + "end_date": null, + "goal": "<p>Het principe van algoritme heeft als doel om inkomensvoorzieningen en subsidies geautomatiseerd te kunnen berekenen. Zodat rechthebbenden de juiste verstrekking ontvangen. Deze berekeningen gebeuren op basis van businesslogica. Deze bestaat uit variabelen die zijn gebaseerd op geldende wet- en regelgeving.</p>", + "proportionality": "<p>Met het toepassen van businesslogica is de gebruiker in staat om een betrouwbare en correcte berekening te maken. Hierdoor ontvangt de rechthebbende van een inkomensregeling of subsidie het juiste bedrag en worden gelijke gevallen op een gelijke manier behandeld.</p>", + "provider": "PinkRoccade Local Government", + "lawful_basis": "<p>Algoritmen bevinden zich uitsluitend in onze ondersteuning van de Participatiewet, Ioaw, Ioaz en Bbz2004. De wetgeving hieromtrent is leidend voor onze businesslogica. Zowel voor inkomensregelingen als subsidies die worden verstrekt in het werkdomein.</p>", + "lawful_basis_grouping": [ + { + "title": "Participatiewet", + "link": "https://wetten.overheid.nl/BWBR0015703/2024-07-01/0" + }, + { + "title": "Ioaw", + "link": "https://wetten.overheid.nl/BWBR0004044/2024-07-01/0" + }, + { + "title": "Ioaz", + "link": "https://wetten.overheid.nl/BWBR0004163/2024-07-01/0" + }, + { + "title": "Bbz2004", + "link": "https://wetten.overheid.nl/BWBR0015711/2024-01-01/0" + }, + { + "title": "Regeling Participatiewet, Ioaw, Ioaz", + "link": "https://wetten.overheid.nl/BWBR0015738/2024-06-01/0" + }, + { + "title": "Wet minimumloon en minimumvakantiebijslag", + "link": "https://wetten.overheid.nl/BWBR0002638/2024-07-01" + } + ], + "impacttoetsen": "", + "impacttoetsen_grouping": [ + ], + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "", + "source_data_link": "", + "methods_and_models": "<div><p>Op basis van de ingegeven variabelen komt op basis van vaste logica het te verstrekken recht tot stand. </p><p><br></p><p>Voor het bepalen van de hoogte van de inkomensvoorzieningen kent de applicatie normen en grondslagen. Deze bedragen worden periodiek bijgesteld door de wetgever. De van toepassing zijnde norm of grondslag leiden we af uit de situatie van de inwoner. Zo wordt op basis van de leeftijd van de inwoner, burgerlijke staat, aanwezige kinderen en medebewoners de norm of de hoogte van de grondslag bepaald. Overige variabelen die van invloed zijn op de daadwerkelijke hoogte van de verstrekking, bijvoorbeeld inkomsten of een verlaging, worden ingesloten in de berekening. Zodat het te verstrekken bedrag in de applicatie wordt berekend. De rekenlogica strekt zich eveneens uit over de verantwoording die een gebruiker moet afleggen over verstrekte inkomensregelingen. Denk hierbij aan het opstellen van de loonaangifte en het bruteren van vordering.</p><p><br></p><p>Voor het berekenen van subsidies kennen we ook de relevante normen. Deze zijn gebaseerd op landelijk vastgestelde minimumlonen. Welk minimumloon van toepassing is in een berekening leiden we af van de leeftijd van de inwoner en de aard van het dienstverband van een inwoner. In de berekening van de subsidies wordt rekening gehouden met de omvang van de arbeidsovereenkomst en de vastgestelde loonwaarde van de inwoner. Het te verstrekken bedrag aan subsidie komt uiteindelijk tot stand na toepassing van alle relevante variabelen die op het van toepassing zijnde minimumloon worden toegepast.</p></div>", + "publiccode": null, + "human_intervention": "<p>Bij elke verstrekking die gedaan wordt, worden controlemechanismen gehanteerd. Op verschillende momenten tussen de invoer van gegevens en de daadwerkelijke uitvoer van de verstrekking kunnen menselijke controle worden toegepast.</p>", + "risks": "<p>Een aanpassing van de businesslogica wordt uitvoerig getest voor deze wordt vrijgegeven voor gebruikers. Daarnaast dwingt de applicatie controles af voordat een verwerking definitief wordt gemaakt. Tot het moment dat de verwerking definitief is gemaakt kan de verwerking teruggedraaid worden. Daarnaast is de businesslogica bij PinkRoccade in beheer en afgeschermd voor gebruikers. </p>" + } +] diff --git a/backend/app/data/templates/1.0/Procura.json b/backend/app/data/templates/1.0/Procura.json new file mode 100644 index 00000000..a5199a31 --- /dev/null +++ b/backend/app/data/templates/1.0/Procura.json @@ -0,0 +1,39 @@ +[ + { + "id": "procura-vrijbrp-risicoanalyse", + "name": "vrijBRP - Risicoanalyse", + "organization": null, + "description_short": "Een controle die op verhuiszaken (per type aan te geven of dit van toepassing is) wordt uitgevoerd om te kunnen bepalen of handmatige controleactie door een medewerker nodig is, of dat de verhuiszaak zonder tussenkomst van een medewerker kan worden verwerkt in de BRP.", + "type": "Nee", + "category": ["Organisatie en bedrijfsvoering"], + "publication_category": "Impactvolle algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": null, + "end_date": null, + "goal": "<div>Het doel was het in staat stellen van gemeenten om doelmatiger om te kunnen gaan met controles van verhuismutaties. Impact op burgers is in de regel positief of klein. Veel aangiften kunnen nu automatisch worden verwerkt (sneller). Aangiften die \"uitvallen\" en dus handmatige controle vergen kunnen een iets langere verwerkingstijd hebben.</div>", + "proportionality": "<div>Doordat veel eenvoudige aangiften automatisch verwerkt worden houdt de ambtenaar meer tijd over voor de bijzondere en/of ingewikkelde aangiften die de gemeente ontvangt. Hierdoor kunnen deze beter en nauwkeuriger beoordeeld worden. Hierdoor wordt de aangever beter geholpen en worden er minder fouten gemaakt. Dit zorgt voor een betere kwaliteit van de BRP.</div>", + "provider": "Procura", + "lawful_basis": "<div>Wet BRP, artikelen 1.4, 2.45 en 2.37a t/m g</div>", + "lawful_basis_grouping": [ + { + "title": "Wet basisregistratie personen", + "link": "https://wetten.overheid.nl/BWBR0033715/" + } + ], + "impacttoetsen": null, + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "<div>\n<ul>\n<li>BSN verhuizende personen</li>\n<li>Aanwezige markering van de verhuizende personen</li>\n<li>Aanwezige markering van het nieuwe adres van de verhuizende personen</li>\n<li>Functie van het oude/nieuwe adres (woonadres/briefadres)</li>\n<li>Onderzoeksgegevens categorie 08</li>\n<li>verblijfplaats verhuizende personen</li>\n<li>Tijd van de e-aangifte</li>\n<li>Reisdocumentgegevens verhuizende personen</li>\n<li>Rijbewijsgegevens verhuizende personen</li>\n<li>BAG-gegevens nieuwe adres verhuizende personen</li>\n<li>Gegevens over curatele in BRP verhuizende personen</li>\n<li>Adreshistorie verhuizende personen</li>\n</ul>\n</div>", + "source_data_link": null, + "methods_and_models": "<div>Zodra er een online verhuizing binnenkomt, wordt aan de verhuiszaak een zaak risicoanalyse gekoppeld. Die risicoanalysezaak wordt automatisch uitgevoerd en checkt of de aangifte afwijkende eigenschappen bevat. Zijn er geen bijzonderheden? Dan wordt de verhuizing automatisch verwerkt. Leveren de controles van de risicoanalyse een score op die boven een drempelwaarde komt? Dan krijgt de verhuiszaak een andere status (in behandeling) waardoor deze niet wordt verwerkt zonder dat een ambtenaar de zaak behandelt. Deze beoordeelt of aanvullende vragen of onderzoek nodig zijn. Is de conclusie dat de aangifte in orde is, dan verwerkt de ambtenaar deze alsnog. De controles in de risicoanalyse zijn grotendeels gebaseerd op de controles van de Landelijke Aanpak Adreskwaliteit (LAA) én controles die de ambtenaar zal herkennen uit de dagelijkse praktijk. Denk bijvoorbeeld aan controle op veelverhuizers, het gebruiksdoel van een woning, overbewoning van een adres of een adres waar veel verhuisbewegingen op plaatsvinden.</div>", + "publiccode": null, + "human_intervention": "<div>Zie de omschrijving bij de technische werking. De controles binnen de risicoanalyse kunnen door de gemeente zelf worden bepaald (welke wel/niet). Ook is men zelf in controle over de scores (de zwaarte) die aan elke controle kan worden toegekend en de drempelwaarde die bepaald of een aangifte automatisch wordt verwerkt of niet.</div>", + "risks": null + } +] diff --git a/backend/app/data/templates/1.0/Xxllnc.json b/backend/app/data/templates/1.0/Xxllnc.json new file mode 100644 index 00000000..bce9de2c --- /dev/null +++ b/backend/app/data/templates/1.0/Xxllnc.json @@ -0,0 +1,55 @@ +[ + { + "id": "xxllnc-Anonimiseren", + "name": "Anonimiseren", + "description_short": "Het algoritme onderstreept de persoonsgegevens in documenten. Een medewerker moet alle pagina's bekijken en controleren of het document goed geanonimiseerd is. Daarna verwijdert de software alle gemarkeerde informatie en wordt het zwartgelakt. Daarna kunnen de documenten gepubliceerd worden, bijvoorbeeld op basis van de Wet Open Overheid (WOO).", + "organization": null, + "type": "Zelflerend", + "publication_category": "Overige algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": "", + "end_date": "", + "goal": "De anonimiseringssoftware wordt ingezet om documenten die de gemeente publiceert sneller en beter te anonimiseren. Zo voorkomen we datalekken en dragen we bij aan een betere bescherming van de AVG-rechten van betrokkenen.", + "proportionality": "De gemeente moet steeds vaker informatie openbaar maken. Daarom moet privacy- of bedrijfsgevoelige informatie worden weggelakt. Voordat het algoritme werd ingezet, ging dit lakken niet altijd goed. Er kwamen datalekken voor waarbij niet alle persoonsgegevens weggelakt waren of waarbij weggelakte informatie toch te lezen was. Het voordeel van de anonimiseringssoftware is dat er sneller en beter geanonimiseerd wordt. Het nadeel is dat de tekstlaag van het document door een Microsoft Azure server wordt geanalyseerd. De inhoud wordt niet op deze server opgeslagen, waardoor het privacyrisico van het gebruik van het algoritme niet opweegt tegen het privacyvoordeel van de afname van het aantal datalekken door onjuist anonimiseren. ", + "provider": "Xxllnc", + "lawful_basis": "1. WOO\n2. WDO\n3. UAVG\n4. WEP\n5. WDO", + "lawful_basis_grouping": [ + { + "title": "Woo", + "link": "https://wetten.overheid.nl/BWBR0045754/" + }, + { + "title": "WDO", + "link": "https://eur-lex.europa.eu/legal-content/NL/TXT/HTML/?uri=CELEX:31995L0046" + }, + { + "title": "UAVG", + "link": "https://wetten.overheid.nl/BWBR0040940" + }, + { + "title": "Wep", + "link": "https://wetten.overheid.nl/BWBR0043961" + }, + { + "title": "Wdo", + "link": "https://wetten.overheid.nl/BWBR0048156" + } + ], + "iama_description": null, + "impacttoetsen_grouping": [ + ], + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "Alle informatie die te vinden is in de geüploade documenten (behalve de metadata), wordt verwerkt door het algoritme. Het kan daarbij gaan om gewone persoonsgegevens, bijzondere persoonsgegevens en strafrechtelijke gegevens. Het kan ook gaan om bedrijfsgevoelige informatie.", + "source_data_link": "", + "methods_and_models": "Documenten worden door een medewerker geüpload naar de applicatie. Op dat moment wordt een kopie gemaakt van het origineel in de vorm van een PDF met tekstlaag en wordt de metadata van het oorspronkelijke document uit de kopie verwijderd. Deze kopie komt op een Nederlandse server terecht en blijft daar maximaal 30 dagen staan. De tekstlaag van de PDF wordt door een API aangeboden aan het machine learning algoritme. Het gaat om een Natural Language Processing algoritme (named entity recognition) van Microsoft Azure. De API levert terug op welke locatie in de geanalyseerde teksten waarschijnlijk een persoonsgegeven voorkomt, samen met de waarschijnlijkheidsscore (een percentage). Op dat moment wordt de tekstlaag bij Azure direct verwijderd. De waarschijnlijkheidsscore wordt samen met door de leverancier ontwikkelde eigen ai-modellen gebruikt om de herkenning van persoonsgegevens zo accuraat mogelijk te kunnen doen. De modellen worden getraind met gebruik van o.a. de volgende getrainde datasets als CoNLL-2003, UD Dutch LassySmall v2.8, Dutch NER Annotations for UD LassySmall en UD Dutch Alpino v2.8. Minimale kengetallen voor de nauwkeurigheid van het vaststellen van de persoonsgegevens zijn als volgt: Named entities (precision): 0.78, Named entities (recall): 0.76, Named entities (F-score): 0.77. Tot slot controleert een medewerker het document en wanneer deze het document afrondt, worden de te anonimiseren gegevens definitief uit de tekstlaag verwijderd en wordt een zwart balkje geplaatst.", + "publiccode": null, + "human_intervention": "De uitkomst van het algoritme wordt gecontroleerd door een medewerker. De medewerker wordt door de software verplicht om alle pagina's te controleren. De medewerker bepaalt of het document correct is geanonimiseerd.", + "risks": "Er bestaat geen risico op geautomatiseerde besluitvorming en het algoritme heeft geen impact op grondrechten, omdat het algoritme geen besluiten neemt met rechtsgevolgen. Het doet alleen een voorstel voor het anonimiseren van persoonsgegevens. Het algoritme wordt ook gebruikt door de ontwikkelaar zelf, waardoor fouten snel gevonden worden. Daarnaast wordt het algoritme periodiek getraind. Op verzoek van onze organisatie worden onze documenten niet gebruikt om het algoritme te trainen. Wanneer het algoritme niet goed genoeg werkt, kunnen we met black- en whitelists bijsturen. De medewerker van de gemeente doet altijd de laatste toets of een document juist is geanonimiseerd. Het risico bestaat dat medewerkers niet goed controleren, dit mitigeren we door aandacht te geven aan het belang van een zorgvuldige controle van de door het algoritme gevonden persoonsgegevens. Het laatste risico dat overblijft, is het privacyrisico van het gebruik van Azure. Omdat Microsoft verplicht kan worden gegevens die het verwerkt over te dragen aan de Amerikaanse autoriteiten vanwege de Patriot Act. Om deze risico's te beperken heeft de leverancier privacy by default toegepast. Tekst die door de API in synchrone of asynchrone aanroepen wordt verzonden aan de Azure dienst kunnen tijdelijk worden opgeslagen door Azure voor debugging. Maar deze optie heeft de leverancier uitgeschakeld. Dat beperkt het risico. Onmiddellijk na de verwerking door Azure wordt de data en de dataverwerking verwijderd. Verder is de leverancier ISO 27001 gecertificeerd. De risico's wegen niet op tegen de privacyvoordelen en het risico van gebrekkig anonimiseren door deze software niet te gebruiken." + } +] diff --git a/backend/app/data/templates/1.0/Zivver.json b/backend/app/data/templates/1.0/Zivver.json new file mode 100644 index 00000000..ad4c166e --- /dev/null +++ b/backend/app/data/templates/1.0/Zivver.json @@ -0,0 +1,34 @@ +[ + { + "id": "zivver-smart-classification", + "name": "Zivver", + "organization": null, + "description_short": "Dit algoritme helpt e-mailgebruikers te bepalen wanneer een e-mail gevoelige informatie bevat en beveiligd dient te worden verstuurd.", + "type": null, + "category": [], + "publication_category": "Overige algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": null, + "end_date": null, + "goal": "<div><p>Het doel van dit algoritme is om er aan bij te dragen dat informatie die wordt verzonden per e-mail op de juiste wijze wordt beveiligd. Ofwel: niet met te weinig beveiligingsmaatregelen, maar ook niet met te veel. Het algoritme levert hier een bijdrage aan door verzenders van een e-mail te attenderen op gevoelige informatie en aan te moedigen deze informatie vervolgens veilig te verzenden. Als zij hiervoor kiezen dan wordt de e-mail beveiligd met encryptie, tweefactorauthenticatie voor de ontvanger, intrekmogelijkheid en logging.</p><p>Dit zorgt ervoor dat gevoelige informatie wordt beveiligd, terwijl ongevoelige informatie toegankelijk is zonder extra frictie voor de ontvanger. Het algoritme heeft alleen impact op het proces van het verzenden van e-mails en raakt niet aan de materiële rechtspositie van burgers of bedrijven.</p></div>", + "proportionality": "<p>Het gebruik van dit algoritme draagt er aan bij dat e-mails met het juiste niveau van beveiliging worden verstuurd. De classificatie van e-mails door middel van een algoritme is effectiever dan classificatie op basis van een door menselijke input samengestelde woordenlijst of classificatie door de verzender, terwijl tegelijkertijd het algoritme geen invloed heeft op de inhoud van een e-mail.</p>", + "provider": "Zivver", + "lawful_basis": "", + "lawful_basis_grouping": null, + "impacttoetsen": null, + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "<p>Het algoritme is gebaseerd op geanonimiseerde historische berichten in combinatie met of deze berichten wel of niet veilig verzonden zijn. De anonimisering wordt in meerdere stappen gedaan, waarbij alleen aggregaten over vele duizenden berichten opgeslagen worden. Daarnaast worden persoonsgegevens geautomatiseerd uit de data verwijderd. Hiermee is de data geanonimiseerd en zijn de originele berichten onmogelijk uit de data te halen.</p>", + "source_data_link": null, + "methods_and_models": "<p>Bij het samenstellen van een nieuwe e-mail wordt op basis van de termen in het bericht en de bijlagen gekeken hoe vergelijkbaar dit is met eerder (veilig of normaal) verzonden e-mails. Als de e-mail voldoende vergelijkbaar is met berichten die normaal gesproken veilig verzonden worden, wordt de e-mail als potentieel gevoelig gemarkeerd. Op basis van de terminologie in de e-mail wordt bepaald of deze relateert aan een specifieke categorie van gevoelige informatie, zoals medisch of juridisch. Op het moment dat de e-mail als gevoelig is geclassificeerd en over een onderwerp gaat waarvan de organisatie heeft ingesteld dat dit veilig verzonden moet worden, krijgt de gebruiker een aanbeveling om de e-mail veilig te verzenden. </p>", + "publiccode": null, + "human_intervention": "<p>In beginsel maakt de gebruiker zelf de keuze om een e-mail wel of niet veilig te verzenden op basis van de aanbeveling door het algoritme. Het is ook mogelijk om de keuze om een e-mail wel of niet veilig te verzenden te automatiseren op basis van het algoritme. In dat geval kan een gebruiker er alsnog zelf voor kiezen om een e-mail expliciet veilig te verzenden.</p>", + "risks": "<p>De overall prestaties van het algoritme worden gemonitord door de leverancier. Als blijkt dat het algoritme vaker verkeerde classificaties maakt, wordt dit opgepikt door de monitoring, zodat aanpassingen aan het algoritme kunnen worden doorgevoerd. Voor de gebruikende organisatie is de nauwkeurigheid van Smart Classification ook zichtbaar in een beheerdersdashboard.</p>" + } +] diff --git a/backend/app/data/templates/1.0/Zylab.json b/backend/app/data/templates/1.0/Zylab.json new file mode 100644 index 00000000..0dfaa83d --- /dev/null +++ b/backend/app/data/templates/1.0/Zylab.json @@ -0,0 +1,45 @@ +[ + { + "id": "zylab-tekstanalyse", + "name": "Tekstanalyse", + "organization": null, + "description_short": "Op basis van taaltechnologie worden persoons- en bedrijfsnamen gelezen en uitgefilterd uit tekstbestanden als emails en losse documenten.", + "type": null, + "category": [], + "publication_category": "Overige algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": null, + "end_date": null, + "goal": "<p>Ondersteuning in het beoordelingsproces waar wettelijke bescherming geldt op informatie die openbaar wordt gemaakt. Bescherming vanuit de AVG- (personen) en Woo-wetgeving (vooral bedrijfsvertrouwelijk), waar uitzonderingsgronden in benoemd worden.</p>", + "proportionality": "<p>De handmatige beoordeling is intensief en foutgevoelig. Een suggestielijst vanuit het algoritme van entiteitsextractie brengt alle denkbare gevallen van personen in de tekst in beeld.</p>", + "provider": "ZyLAB eDiscovery & Compliance Services B.V.", + "lawful_basis": "<p>Wetgeving rond openbaarheid van overheidsdata (Woo)</p>", + "lawful_basis_grouping": [ + { + "title": "Wet open overheid", + "link": "https://wetten.overheid.nl/BWBR0045754/2023-04-01#Hoofdstuk5" + } + ], + "impacttoetsen": null, + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": "<p>NER, Lakken, Redaction, Text Mining, Taaltechnologie, Linguistiek, LLM</p>", + "source_data": "<p>Dit betreft documenten en berichteninformatie binnen Rijksoverheden. Waaronder email, bestanden, Whatsapp-berichten en andere media waar bestuurlijke besluitvorming in gevonden kan worden. </p>", + "source_data_link": null, + "source_data_grouping": [ + { + "title": "Algemene Office applicaties", + "link": "Dit betreft standaard Office formaten inclusief email en social media formaten." + } + ], + "methods_and_models": "<p>Teksten worden op basis van Named Entity Recognition (NER) herkend en een proces binnen Insights extraheert de namen voor verdere afhandeling richting de beheerinterface en de automatische lakregels. </p>", + "publiccode": null, + "human_intervention": "<p>Binnen de software wordt een lijst opgebouwd en aangeboden aan de gebruiker om te selecteren in het automatische lakproces. De keuze om een geadviseerde term als persoonsnaam over te nemen en niet openbaar te maken, is aan de gebruiker.</p>", + "risks": "<p>Er bestaat geen risico op geautomatiseerde besluitvorming en het algoritme heeft geen impact op grondrechten, omdat het algoritme geen besluiten neemt met rechtsgevolgen. Het doet alleen een voorstel voor het anonimiseren van persoonsgegevens. De medewerker van het bestuursorgaan doet altijd de laatste toets of een document juist is geanonimiseerd. </p>" + } +] diff --git a/backend/app/data/templates/1.0/eData - eSpecialisten.json b/backend/app/data/templates/1.0/eData - eSpecialisten.json new file mode 100644 index 00000000..68242414 --- /dev/null +++ b/backend/app/data/templates/1.0/eData - eSpecialisten.json @@ -0,0 +1,49 @@ +[ + { + "id": "edata-especialisten-anonimiseren", + "name": "Anonimiseren", + "organization": null, + "description_short": "Het identificeren en anonimiseren van privacygevoelige informatie in informatieobjecten (in veel gevallen documenten).", + "type": "", + "category": ["Organisatie en bedrijfsvoering"], + "publication_category": "Overige algoritmes", + "website": null, + "status": "In gebruik", + "begin_date": null, + "end_date": null, + "goal": "Het doel van het algoritme is het anonimiseren van privacygevoelige informatie in informatieobjecten. Hierdoor wordt de persoonlijke informatie beschermd en blijft de privacy van individuen gewaarborgd.", + "proportionality": "Het algoritme is getraind op het herkennen van privacy gevoelige informatie, maar beperkt zich tot classificatie en zal daardoor nooit inhoudelijke informatie onthullen. Bovendien draagt de technologie bij aan verbetering van de kwaliteit van anonimisatie.", + "provider": "eData B.V.", + "lawful_basis": "<div><div>Wet open overheid</div>\n<div>Wet elektronische publicaties</div></div>", + "lawful_basis_grouping": [ + { + "title": "Wet open overheid (WOO)", + "link": "https://wetten.overheid.nl/BWBR0045754/" + }, + { + "title": "Wet elektronische publicaties (WEP)", + "link": "https://wetten.overheid.nl/BWBR0043961/" + } + ], + "impacttoetsen": null, + "iama_description": null, + "url": null, + "lang": "NLD", + "standard_version": "1.0", + "uuid": null, + "source_id": null, + "tags": null, + "source_data": "Ruimtelijke plannen en interne documenten.", + "source_data_link": "https://www.ruimtelijkeplannen.nl/home", + "source_data_grouping": [ + { + "title": "Ruimtelijke plannen en interne documenten", + "link": "https://www.ruimtelijkeplannen.nl/home" + } + ], + "methods_and_models": "Deep learning-modellen die op zowel visuele als tekstuele wijze bepalen welke informatie als privacygevoelig wordt beschouwd.", + "publiccode": null, + "human_intervention": "De uitkomsten van het algoritme fungeren slechts als hulpmiddel, waarbij menselijke tussenkomst altijd nodig is voor de definitieve anonimisatie.", + "risks": "Om de privacyrisico's van het algoritme te waarborgen, ondergaat het constante evaluatie en updates om nieuwe bedreigingen en privacy-uitdagingen aan te pakken. Menselijk toezicht en interventie zijn ingebed om fouten te corrigeren. Bovendien wordt er voortdurend in dialoog gegaan met belanghebbenden." + } +] diff --git a/backend/app/database/database.py b/backend/app/database/database.py index 40a4bae4..d66c9849 100644 --- a/backend/app/database/database.py +++ b/backend/app/database/database.py @@ -1,11 +1,19 @@ from sqlalchemy import create_engine -from sqlalchemy.ext.declarative import declarative_base -from sqlalchemy.orm import sessionmaker +from sqlalchemy.orm import sessionmaker, declarative_base from common.database_url import get_database_url +from app.config.settings import Settings SQLALCHEMY_DATABASE_URL = get_database_url() -engine = create_engine(SQLALCHEMY_DATABASE_URL) + +env_settings = Settings() + +engine = create_engine( + SQLALCHEMY_DATABASE_URL, + echo=env_settings.enable_debug, + max_overflow=40, + pool_timeout=10, +) SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine) Base = declarative_base() diff --git a/backend/app/etl/config/excel_column_mapping.py b/backend/app/etl/config/excel_column_mapping.py deleted file mode 100644 index d87319ff..00000000 --- a/backend/app/etl/config/excel_column_mapping.py +++ /dev/null @@ -1,39 +0,0 @@ -excel_column_mapping = { - "Naam": "name", - "Organisatie": "organization", - "Afdeling": "department", - "Korte omschrijving": "description_short", - "Type algoritme": "type", - "Domein": "category", - "Link naar publiekspagina": "website", - "Status": "status", - "Doel": "goal", - "Impact": "impact", - "Proportionaliteit": "proportionality", - "Proces": "decision_making_process", - "Link naar projectpagina": "documentation", - "Omschrijving": "description", - "Link naar ontwikkelaar": "application_url", - "Link naar broncode": "publiccode", - "Koppelingen met basisregistraties": "mprd", - "Databronnen": "source_data", - "Methoden en modellen": "methods_and_models", - "Monitoring": "monitoring", - "Menselijke tussenkomst": "human_intervention", - "Risico's": "risks", - "Prestatienormen": "performance_standard", - "Bevoegde autoriteit": "competent_authority", - "Wettelijke grondslag": "lawful_basis", - "Impact Assessment Mensenrechten en Algoritmes (IAMA)": "iama", - "Omschrijving van de IAMA": "iama_description", - "Data Protection Impact Assessment (DPIA)": "dpia", - "Omschrijving van de DPIA": "dpia_description", - "Bezwaarprocedure": "objection_procedure", - "Schema": "schema", - "UUID": "id", - "URL van de bronregistratie": "url", - "E-mailadres van de contactpersoon": "contact_email", - "Geografisch gebied": "area", - "Taal": "lang", - "Herzieningsdatum": "revision_date", -} diff --git a/backend/app/etl/config/main.py b/backend/app/etl/config/main.py deleted file mode 100644 index adff6b69..00000000 --- a/backend/app/etl/config/main.py +++ /dev/null @@ -1,61 +0,0 @@ -import app.models - -models = { - "inzet": app.models.Inzet, - "algoritme": app.models.Algoritme, - "juridisch": app.models.Juridisch, - "metadata_algorithm": app.models.Metadata, - "toepassing": app.models.Toepassing, - "toezicht": app.models.Toezicht, -} - -column_grouping = { - "inzet": [ - "goal", - "impact", - "proportionality", - "decision_making_process", - "documentation", - ], - "juridisch": [ - "competent_authority", - "lawful_basis", - "iama", - "iama_description", - "dpia", - "dpia_description", - "objection_procedure", - ], - "metadata_algorithm": [ - "schema", - "url", - "contact_email", - "area", - "lang", - "revision_date", - ], - "toepassing": [ - "description", - "application_url", - "publiccode", - "mprd", - "source_data", - "methods_and_models", - ], - "toezicht": [ - "monitoring", - "human_intervention", - "risks", - "performance_standard", - ], - "algoritme": [ - "name", - "organization", - "department", - "description_short", - "type", - "category", - "website", - "status", - ], -} diff --git a/backend/app/etl/data/Masterlijst_Algoritmeregister.xlsx b/backend/app/etl/data/Masterlijst_Algoritmeregister.xlsx deleted file mode 100644 index f6789814..00000000 Binary files a/backend/app/etl/data/Masterlijst_Algoritmeregister.xlsx and /dev/null differ diff --git a/backend/app/etl/load.py b/backend/app/etl/load.py deleted file mode 100644 index 4e012d93..00000000 --- a/backend/app/etl/load.py +++ /dev/null @@ -1,7 +0,0 @@ -from app.etl.resources.loader import AlgoritmeLoader - - -def load(): - excel_file = "app/etl/data/Masterlijst_Algoritmeregister.xlsx" - loader = AlgoritmeLoader(excel_file=excel_file) - return loader.load_algoritmes() diff --git a/backend/app/etl/resources/loader.py b/backend/app/etl/resources/loader.py deleted file mode 100644 index af9b2b5e..00000000 --- a/backend/app/etl/resources/loader.py +++ /dev/null @@ -1,110 +0,0 @@ -import pandas as pd -import numpy as np -import json -from app.database.database import SessionLocal -from app.etl.config.main import models, column_grouping -from app.etl.config.excel_column_mapping import excel_column_mapping -from slugify import slugify - - -class AlgoritmeLoader: - """Load algoritmes from a json file. Existing algoritmes will be removed.""" - - def __init__(self, excel_file: str | None = None, json_file: str | None = None): - - if excel_file is not None: - df = self.__get_df_algoritme_from_excel(excel_file) - elif json_file is not None: - df = self.__get_df_algoritme_from_json(json_file=json_file) - else: - raise RuntimeError("Either excel_file or json_file must be specified") - - self.__algoritmes = self.process_df(df) - - @staticmethod - def __get_df_algoritme_from_excel(excel_file: str) -> pd.DataFrame: - sheet_names = pd.read_excel(excel_file, sheet_name=None).keys() - included_sheet_names = [ - sheet_name - for sheet_name in sheet_names - if sheet_name not in ["Template (dupliceer dit blad)", "Lege invullijst"] - ] - sheet_name = included_sheet_names[0] - df_all = pd.DataFrame() - for sheet_name in included_sheet_names: - df = ( - pd.read_excel(excel_file, sheet_name=sheet_name, header=None) - .drop(columns=[0]) - .set_index(1) - .T - ) - df_all = pd.concat([df_all, df]) - return df_all.rename(columns=excel_column_mapping) - - @staticmethod - def __get_df_algoritme_from_json(json_file: str) -> pd.DataFrame: - with open(json_file) as f: - algoritmes: list[dict] = json.load(f) - df = pd.DataFrame(algoritmes)[3:] - return df - - @staticmethod - def process_df(df: pd.DataFrame) -> list[dict]: - df.columns = df.columns.str.lower() - - boolean_cols = ["dpia", "mprd"] - non_null_columns = [c for c in list(df.columns) if c not in boolean_cols] - - string_cols = [ - "source_data", - ] - - for bc in boolean_cols: - df[bc] = df[bc].map({"Ja": True, "Nee": False, np.nan: None}) - - for nc in non_null_columns: - df[nc] = df[nc].fillna("") - - for sc in string_cols: - df[sc] = df[sc].str.slice(0, 5000) - - return df.replace({np.nan: None}).to_dict(orient="records") - - def __get_model_from_algoritme_data(self, algoritme: dict, model_key: str): - kwargs = {c: algoritme[c] for c in column_grouping[model_key]} - model = models[model_key](**kwargs) - return model - - def load_algoritmes(self): - - algoritmes = self.__algoritmes - - with SessionLocal() as session: - session.query(models["algoritme"]).delete() - session.commit() - - # insert algoritmes - for a in algoritmes: - new_algoritme = self.__get_model_from_algoritme_data( - algoritme=a, model_key="algoritme" - ) - a_name: str = new_algoritme.name - a_organization: str = new_algoritme.organization - new_algoritme.slug = self.slugify_str_list([a_name, a_organization]) - - property_keys = [key for key in models.keys() if key != "algoritme"] - for pk in property_keys: - setattr( - new_algoritme, - pk, - self.__get_model_from_algoritme_data(algoritme=a, model_key=pk), - ) - - session.add(new_algoritme) - - session.commit() - return True - - @staticmethod - def slugify_str_list(str_list: list[str]): - return slugify("-".join(str_list)) diff --git a/backend/app/mailing/__init__.py b/backend/app/mailing/__init__.py new file mode 100644 index 00000000..c42d7e6f --- /dev/null +++ b/backend/app/mailing/__init__.py @@ -0,0 +1 @@ +from .mailing import * # noqa diff --git a/backend/app/mailing/mailing.py b/backend/app/mailing/mailing.py new file mode 100644 index 00000000..3851d9cb --- /dev/null +++ b/backend/app/mailing/mailing.py @@ -0,0 +1,50 @@ +from email.message import EmailMessage +import smtplib +from app.config.settings import Settings +from app.util.logger import get_logger + +env_settings = Settings() +logger = get_logger(__name__) + +EMAIL_DOMAIN = "<EMAIL_DOMAIN>" + + +def send_notification_mail( + receivers: list[str], + sender: str, + subject: str, + plain_message: str, + html_message: str, +) -> None: + """ + Sends a notification mail individually to all receivers. + """ + if not env_settings.send_emails: + logger.info( + "Sending emails is disabled for this environment, email sending aborted." + ) + return + if not sender.endswith(EMAIL_DOMAIN): + logger.error( + "Cannot send email since incorrect sender mail address is configured." + ) + return + + for receiver in receivers: + msg = EmailMessage() + msg["Subject"] = subject + msg["From"] = sender + msg["To"] = receiver + msg.set_content(plain_message) + msg.add_alternative( + html_message, + subtype="html", + ) + try: + logger.info(f"Sending mail to {receiver}: {subject}") + session = smtplib.SMTP("mail-relay-algoritmeregister") + session.send_message(msg, sender, receiver) + session.quit() + logger.info(f"Succesfully sent notification mail to: {receiver}") + except Exception: + logger.error(f"Failed to send notification mail to: {receiver}") diff --git a/backend/app/main.py b/backend/app/main.py index dfb86e13..4c2e4314 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -1,27 +1,161 @@ -from fastapi import FastAPI +from sqlalchemy.orm import Session +from datetime import datetime, time +import hashlib +from typing import Callable +from fastapi import FastAPI, Request, Response +from fastapi_cache import FastAPICache from starlette.middleware.cors import CORSMiddleware -from fastapi import APIRouter -from app.routers import default, aggregations -from app.etl.load import load -from app.util.logger import get_logger +from app.api import api +from fastapi_cache.backends.inmemory import InMemoryBackend +from fastapi_utils.tasks import repeat_every +from app.routers.public import ( + aggregations, + algorithm, + default, + organisation_details, + text_loader, + downloads, + organisation, + dashboard, + precomputed_values, +) +from app.spell_checker import spell_check_api +from app.util.logger import get_logger +from app.config.settings import Settings +from slowapi import Limiter, _rate_limit_exceeded_handler +from slowapi.util import get_remote_address +from slowapi.middleware import SlowAPIMiddleware +from slowapi.errors import RateLimitExceeded +from starlette.types import Message +from starlette.background import BackgroundTask logger = get_logger(__name__) -data_loaded = load() -if data_loaded: - logger.info("Algoritmes loaded") -else: - logger.info("Data not loaded") +# Only do automatic data loading on the public website +env_settings = Settings() -app = FastAPI(docs_url="/api-docs", title="Application API") +app = FastAPI( + docs_url="/api-docs", + openapi_url="/api/openapi.json", + title="Application API", + swagger_ui_parameters={"displayRequestDuration": True}, +) +limiter = Limiter(key_func=get_remote_address, default_limits=["25/minute"]) +api.state.limiter = limiter +api.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler) +api.add_middleware(SlowAPIMiddleware) -router = APIRouter() -app.include_router(default.router, prefix="/api", tags=["default"]) +app.include_router(dashboard.router, prefix="/api", tags=["Dashboard"]) +app.include_router(algorithm.router, prefix="/api", tags=["Algoritmebeschrijvingen"]) +app.include_router(aggregations.router, prefix="/api", tags=["Dashboard"]) +app.include_router(organisation.router, prefix="/api", tags=["Organisaties"]) +app.include_router( + organisation_details.router, + prefix="/api/organisation-details", + tags=["Organisaties"], +) +app.include_router(downloads.router, prefix="/api", tags=["Downloads"]) +app.include_router(default.router, prefix="/api", tags=["Miscellaneous"]) +app.include_router(text_loader.router, tags=["text_loader"]) +app.include_router( + precomputed_values.router, prefix="/api", tags=["Algoritmebeschrijvingen"] +) -router = APIRouter() -app.include_router(aggregations.router, prefix="/api", tags=["aggregations"]) +app.mount("/aanleverapi", api) +app.mount("/spellcheck", spell_check_api) app.add_middleware( CORSMiddleware, allow_origins=["*"], allow_methods=["*"], allow_headers=["*"] ) + + +@app.on_event("startup") +async def startup(): + def key_builder( + func: Callable, + namespace: str | None = "", + request: Request | None = None, + response: Response | None = None, + args: tuple | None = None, + kwargs: dict | None = None, + ): + """ + Builds a key for the caching based off of the function parameters. + Same as default_key_builder, but it removes a kwarg with type == Session, + to avoid detecting a false difference between calls. Session is a unique + object every call. + """ + if not kwargs: + filtered_kwargs = None + else: + filtered_kwargs = { + k: v for k, v in kwargs.items() if not isinstance(v, Session) + } + prefix = f"{FastAPICache.get_prefix()}:{namespace}:" + cache_key = ( + prefix + + hashlib.md5( # nosec:B303 + f"{func.__module__}:{func.__name__}:{args}:{filtered_kwargs}".encode() + ).hexdigest() + ) + return cache_key + + FastAPICache.init(InMemoryBackend(), key_builder=key_builder) + + +@app.on_event("startup") +@repeat_every(seconds=60) # 1 minute +async def cache_clearing(): + """ + Clears the cache if it is just past midnight + """ + current_time = datetime.now().time() + start_time = time(0, 0) + end_time = time(0, 1) + if start_time <= current_time <= end_time: + logger.info("Clearing cache") + await FastAPICache.clear(namespace="dashboard") + + +def log_info(req_body, req_meth, req_url, res_status): + if req_body: + logger.info( + f"Req Method: {req_meth}, Req URL: {req_url}, Res Status: {res_status}, Req Body: {req_body}" + ) + else: + logger.info( + f"Req Method: {req_meth}, Req URL: {req_url}, Res Status: {res_status}" + ) + + +async def set_body(request: Request, body: bytes): + async def receive() -> Message: + return {"type": "http.request", "body": body} + + request._receive = receive + + +if env_settings.debugger_logging: + + @app.middleware("http") + async def request_response_logging_middleware(request: Request, call_next): + + req_body = await request.body() + await set_body(request, req_body) + response = await call_next(request) + + res_body = b"" + async for chunk in response.body_iterator: + res_body += chunk + + task = BackgroundTask( + log_info, req_body, request.method, request.url, response.status_code + ) + return Response( + content=res_body, + status_code=response.status_code, + headers=dict(response.headers), + media_type=response.media_type, + background=task, + ) diff --git a/backend/app/middleware/__init__.py b/backend/app/middleware/__init__.py new file mode 100644 index 00000000..fc72af33 --- /dev/null +++ b/backend/app/middleware/__init__.py @@ -0,0 +1,3 @@ +from .middleware import get_db # noqa +from .keycloak_authenticator import get_current_user # noqa +from .keycloak_api import kc_settings # noqa diff --git a/backend/app/middleware/authorisation/authoriser.py b/backend/app/middleware/authorisation/authoriser.py new file mode 100644 index 00000000..8f3606e3 --- /dev/null +++ b/backend/app/middleware/authorisation/authoriser.py @@ -0,0 +1,131 @@ +from enum import Enum +from typing import Annotated + +from fastapi import Depends, HTTPException, Request +from sqlalchemy.orm import Session + +from app.controllers.user import get_from_keycloak_user +from app.middleware.keycloak_authenticator import get_current_user +from app.middleware.middleware import get_db +from app.services.keycloak.schemas import KeycloakUser +from .schemas import Role, Permission +from .user_configuration import UserConfiguration + + +class AuthType(Enum): + """ + BaseOnly: Only need base rights, that's it. + OrgOnly: Only need Organisation (Org) membership + RoleOnly: Only need to have a certain Role + OrgRole: Need access to Org and a certain Role + OrgPermission: Org membership + a Permission derived from your role in the flow + OrgRightStateChange: Org membership + a right to change state (needs action_key as path parameters) + OrgRightState: Org membership + a right only available at a certain state + """ + + BaseOnly = "base-only" + OrgOnly = "org-only" + RoleOnly = "role-only" + OrgRole = "org-role" + OrgPermission = "org-permission" + OrgRightStateChange = "org-right-state-change" + + +class Authoriser: + def __init__( + self, + authorisation_type: AuthType, + admin_auto_success: bool = True, + role: Role | None = None, + permission: Permission | None = None, + legacy_action_key: str | None = None, + ): + self.authorisation_type = authorisation_type + self.admin_auto_success = admin_auto_success + self.role = role + self.permission = permission + self.legacy_action_key = legacy_action_key + + async def __call__( + self, + keycloak_user: Annotated[KeycloakUser, Depends(get_current_user)], + db: Annotated[Session, Depends(get_db)], + request: Request, + ) -> None: + """ + Forwards to the correct authorisation method based on authorisation_type. + Check the 'match-case' to find which parameters are + required for each authorisation type. + """ + # Aborts early when user is not activated. + if Role.Disabled in keycloak_user.roles: + raise HTTPException(403, "USER_NOT_ACTIVATED") + + # Register path parameters if they are given in the endpoint definition. + as_org = request.path_params.get("organisation_name", None) + action_key = request.path_params.get("action_name", None) + + self.db = db + user = get_from_keycloak_user(db, keycloak_user) + user_config = UserConfiguration(user) + # Returns early when the user has admin rights. + if self.admin_auto_success and Role.Administrator in user.roles: + return + + match self.authorisation_type: + case AuthType.BaseOnly: + # Should always succeed when this place is reached. + pass + case AuthType.OrgOnly: + if as_org is None: + raise HTTPException(500) + self.__check_org_membership(keycloak_user, as_org) + case AuthType.RoleOnly: + if self.role is None: + raise HTTPException(500) + self.__check_role_ownership(keycloak_user, self.role) + case AuthType.OrgRole: + if as_org is None or self.role is None: + raise HTTPException(500) + self.__check_org_membership(keycloak_user, as_org) + self.__check_role_ownership(keycloak_user, self.role) + case AuthType.OrgPermission: + if as_org is None or self.permission is None: + raise HTTPException(500) + # Org membership is implicitly checked in this method. + self.__check_permission(user_config, as_org, self.permission) + case AuthType.OrgRightStateChange: + if as_org is None or action_key is None: + # Could still be hardcoded in the endpoint (in the case of old API endpoints): + if not self.legacy_action_key: + raise HTTPException(500) + action_key = self.legacy_action_key + # Org membership is implicitly checked in this method. + self.__check_state_change_permission(user_config, as_org, action_key) + case _: + raise NotImplementedError("Unknown authorisation type given.") + + def __check_org_membership(self, user: KeycloakUser, as_org: str) -> None: + if as_org not in user.groups and Role.AllGroups not in user.roles: + raise HTTPException(403, f"REQUIRED_ORGANISATION_{as_org.upper()}_MISSING") + + def __check_role_ownership(self, user: KeycloakUser, role: Role) -> None: + if role not in user.roles: + raise HTTPException(403, f"REQUIRED_ROLE_{role.value.upper()}_MISSING") + + def __check_permission( + self, user: UserConfiguration, as_org: str, permission: Permission + ) -> None: + if not user.has_permission(as_org, permission): + raise HTTPException( + 403, f"REQUIRED_PERMISSION_{permission.value.upper()}_MISSING" + ) + + def __check_state_change_permission( + self, + user: UserConfiguration, + as_org: str, + action_key: str, + ) -> None: + if not user.check_state_change_permission(as_org, action_key): + raise HTTPException(403, "REQUIRED_STATE_CHANGE_PERMISSION_MISSING") diff --git a/backend/app/middleware/authorisation/config/ICTU_LAST.py b/backend/app/middleware/authorisation/config/ICTU_LAST.py new file mode 100644 index 00000000..c8ba8408 --- /dev/null +++ b/backend/app/middleware/authorisation/config/ICTU_LAST.py @@ -0,0 +1,64 @@ +from app.schemas.action import EmailType, StateChangeAction +from ..schemas import Role, Permission, State + +""" +The original publication flow: One person at the organisation 'releases' the content +To ICTU, which publishes it. +""" + +# Names used in frontend +FLOW_ALIAS: str = "ICTU Publiceert" + +ROLE_LABEL_MAPPING: dict[Role, str] = { + Role.ROLE_1: "Redacteur", + Role.ICTU: "ICTU-medewerker", +} + +STATE_LABEL_MAPPING: dict[State, str] = { + State.STATE_1: "In bewerking", + State.STATE_2: "Vrijgegeven", + State.PUBLISHED: "Gepubliceerd", +} + +# Define the actions to change state and their properties. +STATE_CHANGE_ACTIONS: dict[str, StateChangeAction] = { + "release": StateChangeAction( + label="Vrijgeven", + key="release", + origin_state=State.STATE_1, + target_state=State.STATE_2, + send_email_type=EmailType.RELEASE_ICTU_LAST, + ), + "publish": StateChangeAction( + label="Publiceren", + key="publish", + origin_state=State.STATE_2, + target_state=State.PUBLISHED, + ), + "retract": StateChangeAction( + label="Depubliceren", + key="retract", + origin_state=State.PUBLISHED, + target_state=State.STATE_1, + send_email_type=EmailType.RETRACT, + ), +} + +# For each role, define the actions they are allowed to take. +ROLE_STATE_CHANGE_ACTIONS_MAPPING: dict[Role, list[StateChangeAction]] = { + Role.ROLE_1: [STATE_CHANGE_ACTIONS["release"], STATE_CHANGE_ACTIONS["retract"]], + Role.ICTU: [STATE_CHANGE_ACTIONS["publish"], STATE_CHANGE_ACTIONS["retract"]], +} + +# For each role, what are their permissions? What can they see and access? +ROLE_PERMISSION_MAPPING: dict[Role, list[Permission]] = { + Role.ROLE_1: [ + Permission.GET_ALGORITHM_VERSION, + Permission.POST_ALGORITHM_VERSION, + Permission.PUT_ALGORITHM_VERSION, + ], + Role.ICTU: [ + Permission.GET_ALGORITHM_VERSION, + Permission.PUT_ALGORITHM_VERSION, + ], +} diff --git a/backend/app/middleware/authorisation/config/SELF_PUBLISH_TWO.py b/backend/app/middleware/authorisation/config/SELF_PUBLISH_TWO.py new file mode 100644 index 00000000..b8357ddc --- /dev/null +++ b/backend/app/middleware/authorisation/config/SELF_PUBLISH_TWO.py @@ -0,0 +1,64 @@ +from app.schemas.action import EmailType, StateChangeAction +from ..schemas import Role, Permission, State + +""" +Two roles exists at the organisation. One of the roles has publication rights. +""" + +# Names used in frontend +FLOW_ALIAS: str = "De organisatie publiceert in twee stappen." + +ROLE_LABEL_MAPPING: dict[Role, str] = { + Role.ROLE_1: "Redacteur", + Role.ROLE_2: "Goedkeurder", +} + +# Define the actions to change state and their properties. +STATE_CHANGE_ACTIONS: dict[str, StateChangeAction] = { + "release_to_2": StateChangeAction( + label="Vrijgeven naar goedkeurder", + key="release_to_2", + origin_state=State.STATE_1, + target_state=State.STATE_2, + send_email_type=EmailType.RELEASE_SELF_PUBLISH_TWO, + ), + "publish": StateChangeAction( + label="Publiceren", + key="publish", + origin_state=State.STATE_2, + target_state=State.PUBLISHED, + ), + "reject_to_1": StateChangeAction( + label="Terugzetten naar redacteur", + key="reject_to_1", + origin_state=State.STATE_2, + target_state=State.STATE_1, + ), + "retract": StateChangeAction( + label="Depubliceren", + key="retract", + origin_state=State.PUBLISHED, + target_state=State.STATE_2, + send_email_type=EmailType.RETRACT, + ), +} + +# For each role, define the actions they are allowed to take. +ROLE_STATE_CHANGE_ACTIONS_MAPPING: dict[Role, list[StateChangeAction]] = { + Role.ROLE_1: [STATE_CHANGE_ACTIONS["release_to_2"]], + Role.ROLE_2: [ + STATE_CHANGE_ACTIONS["publish"], + STATE_CHANGE_ACTIONS["reject_to_1"], + STATE_CHANGE_ACTIONS["retract"], + ], +} + +# For each role, what are their permissions? What can they see and access? +ROLE_PERMISSION_MAPPING: dict[Role, list[Permission]] = { + Role.ROLE_1: [ + Permission.GET_ALGORITHM_VERSION, + Permission.POST_ALGORITHM_VERSION, + Permission.PUT_ALGORITHM_VERSION, + ], + Role.ROLE_2: [Permission.GET_ALGORITHM_VERSION, Permission.PUT_ALGORITHM_VERSION], +} diff --git a/backend/app/middleware/authorisation/config/_base.py b/backend/app/middleware/authorisation/config/_base.py new file mode 100644 index 00000000..d330345e --- /dev/null +++ b/backend/app/middleware/authorisation/config/_base.py @@ -0,0 +1,44 @@ +from enum import StrEnum +from functools import lru_cache +from typing import TypedDict + +from app.schemas.action import StateChangeAction + +from ..schemas import Role, Permission +from . import ICTU_LAST, SELF_PUBLISH_TWO + + +class Flow(StrEnum): + ICTU_LAST = "ictu_last" + SELF_PUBLISH_TWO = "self_publish_two" + + +class FlowMapping(TypedDict): + role_state_change_actions_mapping: dict[Role, list[StateChangeAction]] + state_change_actions: dict[str, StateChangeAction] + role_permission_mapping: dict[Role, list[Permission]] + role_label_mapping: dict[Role, str] + alias: str + + +@lru_cache(maxsize=1) +def load_flow_configurations() -> dict[Flow, FlowMapping]: + """ + Loads all flows into a single mapping + """ + return { + Flow.ICTU_LAST: { + "role_state_change_actions_mapping": ICTU_LAST.ROLE_STATE_CHANGE_ACTIONS_MAPPING, + "state_change_actions": ICTU_LAST.STATE_CHANGE_ACTIONS, + "role_permission_mapping": ICTU_LAST.ROLE_PERMISSION_MAPPING, + "role_label_mapping": ICTU_LAST.ROLE_LABEL_MAPPING, + "alias": ICTU_LAST.FLOW_ALIAS, + }, + Flow.SELF_PUBLISH_TWO: { + "role_state_change_actions_mapping": SELF_PUBLISH_TWO.ROLE_STATE_CHANGE_ACTIONS_MAPPING, + "state_change_actions": SELF_PUBLISH_TWO.STATE_CHANGE_ACTIONS, + "role_permission_mapping": SELF_PUBLISH_TWO.ROLE_PERMISSION_MAPPING, + "role_label_mapping": SELF_PUBLISH_TWO.ROLE_LABEL_MAPPING, + "alias": SELF_PUBLISH_TWO.FLOW_ALIAS, + }, + } diff --git a/backend/app/middleware/authorisation/require_ownership.py b/backend/app/middleware/authorisation/require_ownership.py new file mode 100644 index 00000000..f4179f51 --- /dev/null +++ b/backend/app/middleware/authorisation/require_ownership.py @@ -0,0 +1,27 @@ +from typing import Annotated +from fastapi import Depends, HTTPException, Request +from sqlalchemy.orm import Session + +from app.middleware.middleware import get_db +from app.repositories.algoritme import AlgoritmeRepository + + +class RequireOwnership: + def __init__( + self, + request: Request, + db: Annotated[Session, Depends(get_db)], + ): + """ + Checks if the algorithm_id in the request is owned by organisation_name. + """ + organisation_name = request.path_params.get("organisation_name", None) + algorithm_id = request.path_params.get("algorithm_id", None) + + algo_repo = AlgoritmeRepository(db) + algo = algo_repo.get_by_lars(algorithm_id) + if not algo: + raise HTTPException(404) + + if algo.owner != organisation_name: + raise HTTPException(403) diff --git a/backend/app/middleware/authorisation/schemas.py b/backend/app/middleware/authorisation/schemas.py new file mode 100644 index 00000000..520169f1 --- /dev/null +++ b/backend/app/middleware/authorisation/schemas.py @@ -0,0 +1,41 @@ +from enum import Enum, StrEnum + + +class State(StrEnum): + """ + An arbitrary number of states to be used by flows. + An old version of an algorithm version has status EXPIRED. + Meaning only the newest versions have STATE_X and other versions + always have PUBLISHED / EXPIRED / ARCHIVED. + """ + + STATE_1 = "STATE_1" + STATE_2 = "STATE_2" + PUBLISHED = "PUBLISHED" + EXPIRED = "EXPIRED" + ARCHIVED = "ARCHIVED" + + +class Role(StrEnum): + # You need an activated account to do anything + Disabled = "disabled" + # Access to all groups, used by ICTU-employees + AllGroups = "all_groups" + # Administrator, can do anything + Administrator = "admin" + + # Has acces to the org detailpage + OrgDetail = "orgdetail" + # ICTU-employee, has special publication rights in some flows + ICTU = "ictu" + # Generic role, rights to be configured by flow + ROLE_1 = "role_1" + # Generic role, rights to be configured by flow + ROLE_2 = "role_2" + + +class Permission(Enum): + GET_ALGORITHM_VERSION = "GET_ALGORITHM_VERSION" + POST_ALGORITHM_VERSION = "POST_ALGORITHM_VERSION" + PUT_ALGORITHM_VERSION = "PUT_ALGORITHM_VERSION" + UPDATE_ORG_DETAIL = "UPDATE_ORG_DETAIL" diff --git a/backend/app/middleware/authorisation/user_configuration.py b/backend/app/middleware/authorisation/user_configuration.py new file mode 100644 index 00000000..af281104 --- /dev/null +++ b/backend/app/middleware/authorisation/user_configuration.py @@ -0,0 +1,62 @@ +from app.schemas.action import StateChangeAction +from .schemas import Permission, Role +from app.schemas.user import User +from .config._base import load_flow_configurations + + +class UserConfiguration: + """ + Provides helper methods to translate user and flow configuration + to useful statements about permissions, rights. + """ + + def __init__(self, user: User) -> None: + self.user = user + all_configs = load_flow_configurations() + self.flows = {org.code: all_configs[org.flow] for org in user.organisations} + + def has_permission(self, org_context: str, permission: Permission) -> bool: + return True if permission in self._permissions(org_context) else False + + def check_state_change_permission(self, org_context: str, action_key: str) -> bool: + """ + Returns true if any of the available actions match the requested state change. + """ + permissions = self._state_change_permissions(org_context) + return any(a for a in permissions if a.key == action_key) + + def _permissions(self, org_context: str) -> list[Permission]: + # Only permissions within the context (of the given organisation) is checked. + context = self.flows.get(org_context, None) + if context is None: + return [] + + permission_mapping = context["role_permission_mapping"] + # Collects all permissions given by the roles of the user. + permissions: list[Permission] = [] + for role in self.user.roles: + permissions.extend(permission_mapping.get(role, [])) + return list(set(permissions)) + + def _state_change_permissions(self, org_context: str) -> list[StateChangeAction]: + """ + Collects all allowed state change actions. + """ + context = self.flows.get(org_context, None) + if context is None: + return [] + state_change_mapping = context["role_state_change_actions_mapping"] + + all_permissions: list[StateChangeAction] = [] + if Role.Administrator in self.user.roles: + # Give all permissions to admin. The comprehension unfolds list of lists. + all_permissions = [x for xs in state_change_mapping.values() for x in xs] + else: + # Give only the permissions you have the role for. + for role in self.user.roles: + role_permissions = state_change_mapping.get(role, []) + all_permissions.extend(role_permissions) + ordered_actions = [ + a for a in context["state_change_actions"].values() if a in all_permissions + ] + return [StateChangeAction(**a.dict()) for a in ordered_actions] diff --git a/backend/app/middleware/decorators/__init__.py b/backend/app/middleware/decorators/__init__.py new file mode 100644 index 00000000..79f9f809 --- /dev/null +++ b/backend/app/middleware/decorators/__init__.py @@ -0,0 +1 @@ +from .auth import authorized_user_only, publisher_only, admin_only # noqa diff --git a/backend/app/middleware/decorators/auth.py b/backend/app/middleware/decorators/auth.py new file mode 100644 index 00000000..de2b15e6 --- /dev/null +++ b/backend/app/middleware/decorators/auth.py @@ -0,0 +1,101 @@ +from functools import wraps +from fastapi import HTTPException, status +from sqlalchemy.orm import Session +import logging +from app import schemas, models + +logger = logging.getLogger(__name__) + + +def authorized_user_only(func): + """Validates that the user has authorization to access the requested resource. + + Returns the same function as the input (including the args and kwargs). + + The decorator makes several assumptions regarding the database structure, and is + fit-for-purpose. It is not a general tool to check your authorization. + + Only to be used as a @decorator with FastAPI routing.""" + + @wraps(func) + async def wrapper( + *args, + db: Session, + lars: str | None = None, + as_org: str = "", + user: schemas.User, + **kwargs, + ): + # Tests if the user can act on behalf of this organisation + if ( + as_org not in user.organizations + and user.role != "admin" + and user.role != "publisher" + ): + logger.error( + f"Authorization error, requested org: {as_org}.\nOrganisations under this user: \n{user.organizations}" + ) + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail=f"Er zijn geen accountsrechten gevonden voor '{as_org}'.", + ) + + orgs = db.query(models.Organisation.code).all() + org_list = [org[0] for org in orgs] + if as_org not in org_list: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail=f"Er is geen organisatie '{as_org}' gevonden.", + ) + + # if no code is given, only authorisation for organisation is needed + if lars is None: + return await func(*args, **kwargs, db=db, as_org=as_org, user=user) + + # Tests if the algorithm requested is in the scope of this organisation + algos_in_scope = ( + db.query(models.algoritme.Algoritme.lars) + .filter(models.algoritme.Algoritme.owner == as_org) + .all() + ) + algos_in_scope_dict = [algo[0] for algo in algos_in_scope] + if lars not in algos_in_scope_dict: + logger.error( + f"""Authorization error, requested LARS-code: {lars}.\nAvailable LARS-codes for this organisation: + \n{algos_in_scope_dict}""" + ) + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail=f"Er is geen algoritme gevonden met LARS-code '{lars}' onder de organisatie '{as_org}'.", + ) + + # After authorization, return decorated function + return await func(*args, **kwargs, db=db, lars=lars, as_org=as_org, user=user) + + return wrapper + + +def publisher_only(func): + @wraps(func) + async def wrapper(*args, user: schemas.User, **kwargs): + if (user.role != "publisher") and (user.role != "admin"): + raise HTTPException( + status_code=status.HTTP_403_FORBIDDEN, + detail="Not authorized to perform this action.", + ) + return await func(*args, user=user, **kwargs) + + return wrapper + + +def admin_only(func): + @wraps(func) + async def wrapper(*args, user: schemas.User, **kwargs): + if user.role != "admin": + raise HTTPException( + status_code=status.HTTP_403_FORBIDDEN, + detail="Not authorized to perform this action.", + ) + return await func(*args, user=user, **kwargs) + + return wrapper diff --git a/backend/app/middleware/keycloak_api.py b/backend/app/middleware/keycloak_api.py new file mode 100644 index 00000000..1a02e3a0 --- /dev/null +++ b/backend/app/middleware/keycloak_api.py @@ -0,0 +1,11 @@ +from app.config.settings import Keycloak +from app.services.keycloak.repository import ConnectionSettings + + +env_settings = Keycloak() +kc_settings: ConnectionSettings = { + "realm_name": env_settings.KEYCLOAK_REALM, + "server_url": env_settings.KEYCLOAK_API_URI, + "client_id": env_settings.KEYCLOAK_API_CLIENT, + "client_secret_key": env_settings.KEYCLOAK_API_SECRET, +} diff --git a/backend/app/middleware/keycloak_authenticator.py b/backend/app/middleware/keycloak_authenticator.py new file mode 100644 index 00000000..cafcc2fc --- /dev/null +++ b/backend/app/middleware/keycloak_authenticator.py @@ -0,0 +1,124 @@ +from typing import Annotated +from fastapi.security import OAuth2AuthorizationCodeBearer +from fastapi import Depends +from keycloak import KeycloakOpenID +from fastapi import HTTPException, status +import jwt +from jwt.exceptions import ExpiredSignatureError +import time +from app.config.settings import Keycloak +from app.middleware.authorisation.schemas import Role +from app.services.keycloak import KeycloakUser +from app.services.keycloak.data_validator import KeycloakValidator +from app.util.logger import get_logger + +logger = get_logger(__name__) + +settings = Keycloak() +URI = settings.KEYCLOAK_URI +CLIENT = settings.KEYCLOAK_CLIENT +REALM = settings.KEYCLOAK_REALM + +oauth2_scheme = OAuth2AuthorizationCodeBearer( + authorizationUrl=f"{URI}/realms/{REALM}/protocol/openid-connect/auth", + tokenUrl=f"{URI}/realms/{REALM}/protocol/openid-connect/token", + auto_error=False, +) + +cache = dict() + +logger.debug(f"{URI}/realms/{REALM}/protocol/openid-connect/auth") + + +class UserUnauthorizedException(HTTPException): + def __init__(self): + super().__init__( + status_code=status.HTTP_401_UNAUTHORIZED, + detail="Inloggegevens konden niet succesvol worden gevalideerd.", + headers={"WWW-Authenticate": "Bearer"}, + ) + + +def _update_public_key(keycloak_openid: KeycloakOpenID, update_interval=30): + """ + Update cache by fetching a new public key + Returns false if last update is less than <update_interval> seconds ago to prevent overusage and infinite loops + """ + if time.time() - cache["keycloak_public_key_updated"] > update_interval: + cache["keycloak_public_key"] = keycloak_openid.public_key() + cache["keycloak_public_key_updated"] = time.time() + return True + return False + + +def _get_public_key(keycloak_openid: KeycloakOpenID): + if "keycloak_public_key" not in cache: + logger.debug("fetching public key") + cache["keycloak_public_key"] = keycloak_openid.public_key() + cache["keycloak_public_key_updated"] = time.time() + return cache["keycloak_public_key"] + + +def _decode_token(token: str): + """ + Fetch the public key from Keycloak and decode the token from the frontend. + Note: Data in the token is NOT encrypted. the public key is only to validate. + """ + logger.debug("authorizing") + # public access type + keycloak_openid = KeycloakOpenID( + server_url=URI, + client_id=CLIENT, + realm_name=REALM, + ) + + public_key = _get_public_key(keycloak_openid) + KEYCLOAK_PUBLIC_KEY = ( + "-----BEGIN PUBLIC KEY-----\n" + public_key + "\n-----END PUBLIC KEY-----" + ) + try: + decoded = jwt.decode( + token, + key=KEYCLOAK_PUBLIC_KEY, + options={"verify_signature": True, "verify_aud": False, "exp": True}, + algorithms=["RS256"], + ) + logger.debug(f'session for {decoded["preferred_username"]} still active') + return decoded + + except ExpiredSignatureError: + logger.debug("session expired") + raise UserUnauthorizedException() + + except jwt.exceptions.DecodeError: + if _update_public_key(keycloak_openid): + logger.debug("Could not decode token. Updating public key and retry once") + return _decode_token(token) + logger.debug("Could not decode token") + raise UserUnauthorizedException() + + except jwt.exceptions.ImmatureSignatureError: + logger.debug("token not yet valid, retrying") + time.sleep(0.5) + return _decode_token(token) + + +def get_current_user( + token: Annotated[str | None, Depends(oauth2_scheme)] +) -> KeycloakUser: + if not settings.ENABLE_AUTH: + return KeycloakUser( + username="local admin", + roles=[Role.Administrator, Role.AllGroups], + groups=[], + id="<UPDATE_WITH_KEYCLOAK_ADMIN_ID>", + first_name="", + last_name="", + ) + elif token is None: + raise HTTPException(401, "TOKEN_NOT_FOUND") + + user = _decode_token(token) + user_schema = KeycloakValidator().user_from_token(user) + logger.debug(f"received token for {user_schema.username}") + return user_schema diff --git a/backend/app/middleware/middleware.py b/backend/app/middleware/middleware.py index 4107fc6f..90e3f309 100644 --- a/backend/app/middleware/middleware.py +++ b/backend/app/middleware/middleware.py @@ -1,7 +1,6 @@ from app.database.database import SessionLocal -# Dependency def get_db(): db = SessionLocal() try: diff --git a/backend/app/models/__init__.py b/backend/app/models/__init__.py index 362d84db..ab97a606 100644 --- a/backend/app/models/__init__.py +++ b/backend/app/models/__init__.py @@ -1,6 +1,8 @@ from .algoritme import Algoritme # noqa -from .inzet import Inzet # noqa -from .juridisch import Juridisch # noqa -from .metadata import Metadata # noqa -from .toepassing import Toepassing # noqa -from .toezicht import Toezicht # noqa +from .algoritme_version import AlgoritmeVersion # noqa +from .words import Words # noqa +from .action_history import ActionHistory # noqa +from .organisation import Organisation # noqa +from .organisation_details import OrganisationDetails # noqa +from .html_figures import HtmlFigures # noqa +from .precomputed_values import PrecomputedValues # noqa diff --git a/backend/app/models/action_history.py b/backend/app/models/action_history.py new file mode 100644 index 00000000..e4e7e3c7 --- /dev/null +++ b/backend/app/models/action_history.py @@ -0,0 +1,21 @@ +import datetime +from sqlalchemy import Integer, DateTime, VARCHAR, ForeignKey +from sqlalchemy.orm import Mapped, mapped_column +from sqlalchemy.sql import func +from app.database.database import Base +from app.schemas import OperationEnum + + +class ActionHistory(Base): + __tablename__ = "action_history" + + id: Mapped[int] = mapped_column(Integer, primary_key=True, index=True) + algoritme_version_id = mapped_column( + Integer, ForeignKey("algoritme_version.id", ondelete="cascade"), nullable=False + ) + operation: Mapped[OperationEnum] = mapped_column(VARCHAR(32), nullable=False) + user_id: Mapped[str] = mapped_column(VARCHAR(1024), nullable=False) + + create_dt: Mapped[datetime.datetime] = mapped_column( + DateTime(timezone=True), nullable=False, server_default=func.now() + ) diff --git a/backend/app/models/algoritme.py b/backend/app/models/algoritme.py index 517956fc..db2dfef7 100644 --- a/backend/app/models/algoritme.py +++ b/backend/app/models/algoritme.py @@ -1,29 +1,28 @@ -from sqlalchemy import Column, Integer, VARCHAR, DateTime -from app.database.database import Base -from sqlalchemy.orm import relationship +import datetime +from sqlalchemy import Integer, DateTime, VARCHAR, ForeignKey +from sqlalchemy.ext.associationproxy import association_proxy +from sqlalchemy.orm import relationship, Mapped, mapped_column from sqlalchemy.sql import func +from app.database.database import Base class Algoritme(Base): __tablename__ = "algoritme" - id = Column(Integer, primary_key=True, index=True) - name = Column(VARCHAR(1024)) - organization = Column(VARCHAR(1024)) - department = Column(VARCHAR(1024)) - description_short = Column(VARCHAR(1024)) - type = Column(VARCHAR(1024)) - category = Column(VARCHAR(1024)) - website = Column(VARCHAR(1024)) - status = Column(VARCHAR(1024)) - slug = Column(VARCHAR(128)) - - toegevoegd_op = Column(DateTime(timezone=True), server_default=func.now()) - - inzet = relationship("Inzet", back_populates="algoritme", uselist=False) - juridisch = relationship("Juridisch", back_populates="algoritme", uselist=False) - metadata_algorithm = relationship( - "Metadata", back_populates="algoritme", uselist=False + id: Mapped[int] = mapped_column(Integer, primary_key=True, index=True) + lars: Mapped[str] = mapped_column(VARCHAR(8), nullable=True, index=True) + organisation_id: Mapped[str] = mapped_column( + Integer, ForeignKey("organisation.id", ondelete="cascade"), nullable=True + ) + + create_dt: Mapped[datetime.datetime] = mapped_column( + DateTime(timezone=True), nullable=False, server_default=func.now() ) - toepassing = relationship("Toepassing", back_populates="algoritme", uselist=False) - toezicht = relationship("Toezicht", back_populates="algoritme", uselist=False) + + versions = relationship("AlgoritmeVersion", back_populates="algoritme") + + organisation = relationship("Organisation", back_populates="algoritmes") + + owner = association_proxy("organisation", "code") + + code = association_proxy("organisation", "code") diff --git a/backend/app/models/algoritme_version.py b/backend/app/models/algoritme_version.py new file mode 100644 index 00000000..17004fdc --- /dev/null +++ b/backend/app/models/algoritme_version.py @@ -0,0 +1,129 @@ +import datetime +from sqlalchemy import ( + JSON, + Index, + Integer, + VARCHAR, + DateTime, + ForeignKey, + Boolean, + Enum, +) +from sqlalchemy.ext.associationproxy import association_proxy +from app.database.database import Base +from sqlalchemy.orm import relationship, Mapped, mapped_column +from sqlalchemy.sql import func +from sqlalchemy.dialects.postgresql import TSVECTOR + +from app.middleware.authorisation.schemas import State +from . import Algoritme +from app.schemas import ( + Language, + ImpacttoetsenGrouping, + SourceDataGrouping, + LawfulBasisGrouping, +) + + +class AlgoritmeVersion(Base): + __tablename__ = "algoritme_version" + + id: Mapped[int] = mapped_column(Integer, primary_key=True, index=True) + algoritme_id: Mapped[int] = mapped_column( + Integer, ForeignKey("algoritme.id", ondelete="cascade"), nullable=False + ) + language: Mapped[Language] = mapped_column(Enum(Language), nullable=False) + + name: Mapped[str | None] = mapped_column(VARCHAR(1024)) + organization: Mapped[str | None] = mapped_column(VARCHAR(1024)) + department: Mapped[str | None] = mapped_column(VARCHAR(1024)) + description_short: Mapped[str | None] = mapped_column(VARCHAR(5000)) + type: Mapped[str | None] = mapped_column(VARCHAR(1024)) + category: Mapped[str | None] = mapped_column(VARCHAR(1024)) + website: Mapped[str | None] = mapped_column(VARCHAR(1024)) + status: Mapped[str | None] = mapped_column(VARCHAR(1024)) + + # Inzet + goal: Mapped[str | None] = mapped_column(VARCHAR(5000)) + impact: Mapped[str | None] = mapped_column(VARCHAR(5000)) + proportionality: Mapped[str | None] = mapped_column(VARCHAR(5000)) + decision_making_process: Mapped[str | None] = mapped_column(VARCHAR(5000)) + documentation: Mapped[str | None] = mapped_column(VARCHAR(1024)) + + # Juridisch + competent_authority: Mapped[str | None] = mapped_column(VARCHAR(1024)) + lawful_basis: Mapped[str | None] = mapped_column(VARCHAR(5000)) + iama: Mapped[str | None] = mapped_column(VARCHAR(128)) + iama_description: Mapped[str | None] = mapped_column(VARCHAR(5000)) + dpia: Mapped[str | None] = mapped_column(VARCHAR(128)) + dpia_description: Mapped[str | None] = mapped_column(VARCHAR(5000)) + objection_procedure: Mapped[str | None] = mapped_column(VARCHAR(5000)) + + # Metadata + standard_version: Mapped[str | None] = mapped_column(VARCHAR(1024)) + uuid: Mapped[str | None] = mapped_column(VARCHAR(1024)) + url: Mapped[str | None] = mapped_column(VARCHAR(1024)) + contact_email: Mapped[str | None] = mapped_column(VARCHAR(1024)) + area: Mapped[str | None] = mapped_column(VARCHAR(1024)) + lang: Mapped[str | None] = mapped_column(VARCHAR(1024)) + revision_date: Mapped[str | None] = mapped_column(VARCHAR(1024)) + + # Toepassing + description: Mapped[str | None] = mapped_column(VARCHAR(10000)) + application_url: Mapped[str | None] = mapped_column(VARCHAR(1024)) + publiccode: Mapped[str | None] = mapped_column(VARCHAR(1024)) + mprd: Mapped[str | None] = mapped_column(VARCHAR(500)) + source_data: Mapped[str | None] = mapped_column(VARCHAR(5000)) + methods_and_models: Mapped[str | None] = mapped_column(VARCHAR(10000)) + + # Toezicht + monitoring: Mapped[str | None] = mapped_column(VARCHAR(5000)) + human_intervention: Mapped[str | None] = mapped_column(VARCHAR(5000)) + risks: Mapped[str | None] = mapped_column(VARCHAR(5000)) + performance_standard: Mapped[str | None] = mapped_column(VARCHAR(5000)) + + # Additions by 0.3.1 + provider: Mapped[str | None] = mapped_column(VARCHAR(5000)) + process_index_url: Mapped[str | None] = mapped_column(VARCHAR(500)) + tags: Mapped[str | None] = mapped_column(VARCHAR(2500)) + source_id: Mapped[str | None] = mapped_column(VARCHAR(100)) + + # Additions by 0.4 + begin_date: Mapped[str | None] = mapped_column(VARCHAR(7)) + end_date: Mapped[str | None] = mapped_column(VARCHAR(7)) + lawful_basis_link: Mapped[str | None] = mapped_column(VARCHAR(5000)) + impacttoetsen: Mapped[str | None] = mapped_column(VARCHAR(5000)) + source_data_link: Mapped[str | None] = mapped_column(VARCHAR(500)) + + # Additions by 1.0 + publication_category: Mapped[str | None] = mapped_column(VARCHAR(1000)) + lawful_basis_grouping: Mapped[list[LawfulBasisGrouping] | None] = mapped_column( + JSON + ) + impacttoetsen_grouping: Mapped[list[ImpacttoetsenGrouping] | None] = mapped_column( + JSON + ) + source_data_grouping: Mapped[list[SourceDataGrouping] | None] = mapped_column(JSON) + + published: Mapped[bool] = mapped_column(Boolean, nullable=False, default=False) + released: Mapped[bool] = mapped_column(Boolean, nullable=False, default=False) + preview_active: Mapped[bool] = mapped_column(Boolean, nullable=False, default=False) + + create_dt: Mapped[datetime.datetime | None] = mapped_column( + DateTime(timezone=True), server_default=func.now() + ) + vector: Mapped[str | None] = mapped_column(TSVECTOR) + + # Added with new publicationproces + state: Mapped[State] = mapped_column( + VARCHAR, nullable=False, server_default=State.STATE_1 + ) + + algoritme: Mapped[Algoritme] = relationship("Algoritme", back_populates="versions") + + lars = association_proxy("algoritme", "lars") + owner = association_proxy("algoritme", "owner") + code = association_proxy("algoritme", "code") + + +vector_index = Index("gin_idx", AlgoritmeVersion.vector, postgresql_using="gin") diff --git a/backend/app/models/dashboard_models/__init__.py b/backend/app/models/dashboard_models/__init__.py new file mode 100644 index 00000000..2910cf0a --- /dev/null +++ b/backend/app/models/dashboard_models/__init__.py @@ -0,0 +1 @@ +from .broken_links import BrokenLinks # noqa diff --git a/backend/app/models/dashboard_models/broken_links.py b/backend/app/models/dashboard_models/broken_links.py new file mode 100644 index 00000000..d72adc08 --- /dev/null +++ b/backend/app/models/dashboard_models/broken_links.py @@ -0,0 +1,21 @@ +import datetime +from app.database.database import Base +from sqlalchemy import JSON, VARCHAR, Enum, Integer, DateTime +from sqlalchemy.orm import Mapped, mapped_column +from sqlalchemy.sql import func + +from app.schemas.misc import Language + + +class BrokenLinks(Base): + __tablename__ = "broken_links" + id: Mapped[int] = mapped_column(Integer, primary_key=True, index=True) + lars: Mapped[str] = mapped_column(VARCHAR(8), nullable=True, index=True) + name: Mapped[str | None] = mapped_column(VARCHAR(1024)) + organisation: Mapped[str | None] = mapped_column(VARCHAR(1024)) + language: Mapped[Language] = mapped_column(Enum(Language), nullable=False) + batch: Mapped[int] = mapped_column(Integer, nullable=False) + broken_links: Mapped[list[str] | None] = mapped_column(JSON) + create_dt: Mapped[datetime.datetime] = mapped_column( + DateTime(timezone=True), nullable=False, server_default=func.now() + ) diff --git a/backend/app/models/html_figures.py b/backend/app/models/html_figures.py new file mode 100644 index 00000000..d61c719a --- /dev/null +++ b/backend/app/models/html_figures.py @@ -0,0 +1,17 @@ +import datetime +from sqlalchemy import Boolean, Integer, DateTime, JSON, TEXT +from sqlalchemy.orm import Mapped, mapped_column +from sqlalchemy.sql import func +from app.database.database import Base + + +class HtmlFigures(Base): + __tablename__ = "html_figures" + + id: Mapped[int] = mapped_column(Integer, primary_key=True, index=True) + date: Mapped[datetime.datetime] = mapped_column( + DateTime(timezone=True), nullable=False, server_default=func.now() + ) + html: Mapped[str] = mapped_column(TEXT, nullable=False) + most_recent: Mapped[bool] = mapped_column(Boolean, nullable=False) + static_data: Mapped[dict] = mapped_column(JSON, nullable=True) diff --git a/backend/app/models/inzet.py b/backend/app/models/inzet.py deleted file mode 100644 index 1db3e6ae..00000000 --- a/backend/app/models/inzet.py +++ /dev/null @@ -1,20 +0,0 @@ -from sqlalchemy import Column, Integer, VARCHAR, ForeignKey, DateTime -from app.database.database import Base -from sqlalchemy.orm import relationship -from sqlalchemy.sql import func - - -class Inzet(Base): - __tablename__ = "inzet" - - id = Column(Integer, primary_key=True, index=True) - goal = Column(VARCHAR(5000)) - impact = Column(VARCHAR(5000)) - proportionality = Column(VARCHAR(5000)) - decision_making_process = Column(VARCHAR(5000)) - documentation = Column(VARCHAR(1024)) - - algoritme_id = Column(Integer, ForeignKey("algoritme.id")) - toegevoegd_op = Column(DateTime(timezone=True), server_default=func.now()) - - algoritme = relationship("Algoritme", back_populates="inzet") diff --git a/backend/app/models/juridisch.py b/backend/app/models/juridisch.py deleted file mode 100644 index ae06afae..00000000 --- a/backend/app/models/juridisch.py +++ /dev/null @@ -1,21 +0,0 @@ -from sqlalchemy import Column, Integer, VARCHAR, Boolean, ForeignKey, DateTime -from app.database.database import Base -from sqlalchemy.orm import relationship -from sqlalchemy.sql import func - - -class Juridisch(Base): - __tablename__ = "juridisch" - - id = Column(Integer, primary_key=True, index=True) - competent_authority = Column(VARCHAR(1024)) - lawful_basis = Column(VARCHAR(5000)) - iama = Column(VARCHAR(128)) - iama_description = Column(VARCHAR(5000)) - dpia = Column(Boolean) - dpia_description = Column(VARCHAR(5000)) - objection_procedure = Column(VARCHAR(5000)) - algoritme_id = Column(Integer, ForeignKey("algoritme.id")) - toegevoegd_op = Column(DateTime(timezone=True), server_default=func.now()) - - algoritme = relationship("Algoritme", back_populates="juridisch") diff --git a/backend/app/models/metadata.py b/backend/app/models/metadata.py deleted file mode 100644 index b5f9c072..00000000 --- a/backend/app/models/metadata.py +++ /dev/null @@ -1,21 +0,0 @@ -from sqlalchemy import Column, Integer, VARCHAR, ForeignKey, DateTime -from app.database.database import Base -from sqlalchemy.orm import relationship -from sqlalchemy.sql import func - - -class Metadata(Base): - __tablename__ = "metadata" - - id = Column(Integer, primary_key=True, index=True) - schema = Column(VARCHAR(1024)) - uuid = Column(VARCHAR(1024)) - url = Column(VARCHAR(1024)) - contact_email = Column(VARCHAR(1024)) - area = Column(VARCHAR(1024)) - lang = Column(VARCHAR(1024)) - revision_date = Column(VARCHAR(1024)) - algoritme_id = Column(Integer, ForeignKey("algoritme.id")) - toegevoegd_op = Column(DateTime(timezone=True), server_default=func.now()) - - algoritme = relationship("Algoritme", back_populates="metadata_algorithm") diff --git a/backend/app/models/organisation.py b/backend/app/models/organisation.py new file mode 100644 index 00000000..0b9dad3b --- /dev/null +++ b/backend/app/models/organisation.py @@ -0,0 +1,35 @@ +import datetime +from sqlalchemy import Boolean, Integer, DateTime, VARCHAR, Enum +from sqlalchemy.orm import relationship, Mapped, mapped_column +from sqlalchemy.sql import func +from app.database.database import Base +from app.models.organisation_details import OrganisationDetails +from app.schemas import OrgType +from . import Algoritme +from app.middleware.authorisation.config._base import Flow + + +class Organisation(Base): + __tablename__ = "organisation" + + id: Mapped[int] = mapped_column(Integer, primary_key=True, index=True) + code: Mapped[str] = mapped_column(VARCHAR(1024), nullable=False) + type: Mapped[OrgType] = mapped_column(Enum(OrgType, name="type"), nullable=True) + show_page: Mapped[bool] = mapped_column( + Boolean, nullable=False, server_default="False" + ) + flow: Mapped[Flow] = mapped_column( + VARCHAR, nullable=False, server_default="ictu_last" + ) + + create_dt: Mapped[datetime.datetime] = mapped_column( + DateTime(timezone=True), nullable=False, server_default=func.now() + ) + + algoritmes: Mapped[list[Algoritme]] = relationship( + "Algoritme", back_populates="organisation" + ) + + organisation_details: Mapped[list[OrganisationDetails]] = relationship( + "OrganisationDetails", back_populates="organisation" + ) diff --git a/backend/app/models/organisation_details.py b/backend/app/models/organisation_details.py new file mode 100644 index 00000000..c239094b --- /dev/null +++ b/backend/app/models/organisation_details.py @@ -0,0 +1,37 @@ +import datetime +from sqlalchemy import Integer, DateTime, VARCHAR, Enum, ForeignKey, UniqueConstraint +from sqlalchemy.ext.associationproxy import association_proxy +from sqlalchemy.orm import Mapped, mapped_column, relationship +from sqlalchemy.sql import func +from sqlalchemy.dialects.postgresql import TSVECTOR +from app.database.database import Base +from app.schemas import Language + + +class OrganisationDetails(Base): + __tablename__ = "organisation_details" + + id: Mapped[int] = mapped_column(Integer, primary_key=True, index=True) + organisation_id: Mapped[str] = mapped_column( + Integer, ForeignKey("organisation.id", ondelete="cascade"), nullable=False + ) + language: Mapped[Language] = mapped_column(Enum(Language), nullable=False) + + name: Mapped[str] = mapped_column(VARCHAR(1024), nullable=False) + contact_info: Mapped[str | None] = mapped_column(VARCHAR(1024), nullable=True) + about: Mapped[str | None] = mapped_column(VARCHAR(10000), nullable=True) + create_dt: Mapped[datetime.datetime] = mapped_column( + DateTime(timezone=True), nullable=False, server_default=func.now() + ) + vector: Mapped[str | None] = mapped_column(TSVECTOR) + __table_args__ = ( + UniqueConstraint( + "language", "organisation_id", name="language_organisation_id_uc" + ), + ) + + organisation = relationship("Organisation", back_populates="organisation_details") + + show_page = association_proxy("organisation", "show_page") + code = association_proxy("organisation", "code") + type = association_proxy("organisation", "type") diff --git a/backend/app/models/precomputed_values.py b/backend/app/models/precomputed_values.py new file mode 100644 index 00000000..c208a589 --- /dev/null +++ b/backend/app/models/precomputed_values.py @@ -0,0 +1,18 @@ +import datetime +from sqlalchemy import VARCHAR, Enum, Integer, DateTime, JSON +from sqlalchemy.orm import Mapped, mapped_column +from sqlalchemy.sql import func +from app.schemas.misc import Language +from app.database.database import Base + + +class PrecomputedValues(Base): + __tablename__ = "precomputed_values" + + id: Mapped[int] = mapped_column(Integer, primary_key=True, index=True) + language: Mapped[Language] = mapped_column(Enum(Language), nullable=False) + key: Mapped[str] = mapped_column(VARCHAR(1024), nullable=False) + value: Mapped[dict] = mapped_column(JSON, nullable=True) + create_dt: Mapped[datetime.datetime] = mapped_column( + DateTime(timezone=True), nullable=False, server_default=func.now() + ) diff --git a/backend/app/models/toepassing.py b/backend/app/models/toepassing.py deleted file mode 100644 index 91e1b973..00000000 --- a/backend/app/models/toepassing.py +++ /dev/null @@ -1,20 +0,0 @@ -from sqlalchemy import Column, Integer, VARCHAR, Boolean, ForeignKey, DateTime -from app.database.database import Base -from sqlalchemy.orm import relationship -from sqlalchemy.sql import func - - -class Toepassing(Base): - __tablename__ = "toepassing" - - id = Column(Integer, primary_key=True, index=True) - description = Column(VARCHAR(10000)) - application_url = Column(VARCHAR(1024)) - publiccode = Column(VARCHAR(1024)) - mprd = Column(Boolean) - source_data = Column(VARCHAR(5000)) - methods_and_models = Column(VARCHAR(5000)) - algoritme_id = Column(Integer, ForeignKey("algoritme.id")) - toegevoegd_op = Column(DateTime(timezone=True), server_default=func.now()) - - algoritme = relationship("Algoritme", back_populates="toepassing") diff --git a/backend/app/models/toezicht.py b/backend/app/models/toezicht.py deleted file mode 100644 index d76221f1..00000000 --- a/backend/app/models/toezicht.py +++ /dev/null @@ -1,18 +0,0 @@ -from sqlalchemy import Column, Integer, VARCHAR, ForeignKey, DateTime -from app.database.database import Base -from sqlalchemy.orm import relationship -from sqlalchemy.sql import func - - -class Toezicht(Base): - __tablename__ = "toezicht" - - id = Column(Integer, primary_key=True, index=True) - monitoring = Column(VARCHAR(5000)) - human_intervention = Column(VARCHAR(5000)) - risks = Column(VARCHAR(5000)) - performance_standard = Column(VARCHAR(5000)) - algoritme_id = Column(Integer, ForeignKey("algoritme.id")) - toegevoegd_op = Column(DateTime(timezone=True), server_default=func.now()) - - algoritme = relationship("Algoritme", back_populates="toezicht") diff --git a/backend/app/models/words.py b/backend/app/models/words.py new file mode 100644 index 00000000..7f326ce7 --- /dev/null +++ b/backend/app/models/words.py @@ -0,0 +1,9 @@ +from app.database.database import Base +from sqlalchemy import Text +from sqlalchemy.orm import Mapped, mapped_column + + +class Words(Base): + __tablename__ = "words" + + word: Mapped[str | None] = mapped_column(Text, primary_key=True) diff --git a/backend/app/notebooks/request.ipynb b/backend/app/notebooks/request.ipynb deleted file mode 100644 index 4b416d7c..00000000 --- a/backend/app/notebooks/request.ipynb +++ /dev/null @@ -1,55 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "0.020698" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "import requests\n", - "\n", - "body = {\"filters\": [], \"page\": 1, \"limit\": 100, \"search\": \"\"}\n", - "r = requests.post(\"http://localhost:8000/api/algoritme\", json=body)\n", - "r.elapsed.total_seconds()\n" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": ".venv", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.11.0" - }, - "orig_nbformat": 4, - "vscode": { - "interpreter": { - "hash": "2c68b73ee4a8a00702303c18fd5a9e80181e768c01411da6970ac8482f024551" - } - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} diff --git a/backend/app/queries/algoritme.sql b/backend/app/queries/algoritme.sql deleted file mode 100644 index 35b1a74b..00000000 --- a/backend/app/queries/algoritme.sql +++ /dev/null @@ -1,41 +0,0 @@ -with algoritme as ( - select - algoritme.*, - inzet.decision_making_process, - inzet.documentation, - inzet.goal, - inzet.impact, - inzet.proportionality, - juridisch.competent_authority, - juridisch.dpia, - juridisch.dpia_description, - juridisch.lawful_basis, - juridisch.objection_procedure, - metadata.area, - metadata.contact_email, - metadata.lang, - metadata.revision_date, - metadata.schema, - metadata.url, - toepassing.application_url, - toepassing.description, - toepassing.methods_and_models, - toepassing.mprd, - toepassing.publiccode, - toepassing.source_data, - toezicht.human_intervention, - toezicht.monitoring, - toezicht.performance_standard, - toezicht.risks - from - algoritme - join inzet on inzet.algoritme_id = algoritme.id - join juridisch on juridisch.algoritme_id = algoritme.id - join metadata on metadata.algoritme_id = algoritme.id - join toepassing on toepassing.algoritme_id = algoritme.id - join toezicht on toezicht.algoritme_id = algoritme.id -) -select - * -from - algoritme \ No newline at end of file diff --git a/backend/app/repositories/__init__.py b/backend/app/repositories/__init__.py new file mode 100644 index 00000000..fc9c4409 --- /dev/null +++ b/backend/app/repositories/__init__.py @@ -0,0 +1,8 @@ +from .algoritme_version import AlgoritmeVersionRepository # noqa +from .organisation import OrganisationRepository # noqa +from .algoritme import AlgoritmeRepository # noqa +from .action_history import ActionHistoryRepository # noqa +from .organisation_details import OrganisationDetailsRepository # noqa +from .html_figures import HtmlFiguresRepository # noqa +from .broken_links import BrokenLinksRepository # noqa +from .precomputed_values import PreComputedValuesRepository # noqa diff --git a/backend/app/repositories/action_history.py b/backend/app/repositories/action_history.py new file mode 100644 index 00000000..33b503fd --- /dev/null +++ b/backend/app/repositories/action_history.py @@ -0,0 +1,22 @@ +from sqlalchemy.orm import Session +from app import models, schemas +from .index import IRepository + + +class ActionHistoryRepository(IRepository): + def __init__(self, session: Session): + self.session = session + + def __del__(self): + self.session.commit() + + def get_all(self) -> list[schemas.ActionHistoryDB]: + actions = self.session.query(models.ActionHistory).all() + return [schemas.ActionHistoryDB.from_orm(a) for a in actions] + + def add(self, action: schemas.ActionHistoryIn) -> schemas.ActionHistoryDB: + action_model = models.ActionHistory(**action.dict()) + self.session.add(action_model) + self.session.flush() + + return schemas.ActionHistoryDB.from_orm(action_model) diff --git a/backend/app/repositories/algoritme.py b/backend/app/repositories/algoritme.py new file mode 100644 index 00000000..d53f3928 --- /dev/null +++ b/backend/app/repositories/algoritme.py @@ -0,0 +1,44 @@ +from sqlalchemy.orm import Session +from app import models, schemas +from .index import IRepository + + +class AlgoritmeRepository(IRepository): + def __init__(self, session: Session): + self.session = session + + def __del__(self): + self.session.commit() + + def get_all(self) -> list[schemas.AlgoritmeDB]: + algoritmes = self.session.query(models.Algoritme).all() + return [schemas.AlgoritmeDB.from_orm(a) for a in algoritmes] + + def get_by_lars(self, lars: str) -> schemas.AlgoritmeDB | None: + algoritme = ( + self.session.query(models.Algoritme) + .filter(models.Algoritme.lars == lars) + .first() + ) + if not algoritme: + return None + return schemas.AlgoritmeDB.from_orm(algoritme) + + def add(self, item: schemas.AlgoritmeIn) -> schemas.AlgoritmeDB: + algoritme = models.Algoritme(**item.dict()) + self.session.add(algoritme) + self.session.flush() + + return schemas.AlgoritmeDB.from_orm(algoritme) + + def get_all_lars(self) -> list[str]: + return [lars[0] for lars in self.session.query(models.Algoritme.lars).all()] + + def delete_by_lars(self, lars: str) -> int: + n_removed = ( + self.session.query(models.Algoritme) + .filter(models.Algoritme.lars == lars) + .delete() + ) + self.session.commit() + return n_removed diff --git a/backend/app/repositories/algoritme_version.py b/backend/app/repositories/algoritme_version.py new file mode 100644 index 00000000..01108582 --- /dev/null +++ b/backend/app/repositories/algoritme_version.py @@ -0,0 +1,588 @@ +from sqlalchemy.orm import Session +from sqlalchemy import ( + desc, + exists, + func, + and_, + or_, + update, + ColumnElement, + select, + not_, + cast, + Numeric, +) +from app import models, schemas +from app.middleware.authorisation.schemas import State +from app.models.algoritme_version import AlgoritmeVersion +from app.schemas.algoritme_version import FilterData +from app.schemas.misc import ( + ImpactAssessments, + Language, + ImpacttoetsenGrouping, + OperationEnum, +) +from app.schemas.algoritme_version import AlgoritmeVersionEarliestPublish +from .index import IRepository +from app.services.algoritme_version import ( + db_list_to_python_list_schema, +) +from app.schemas.misc import standard_impact_assessment_titles +from app.config.publication_standard import publication_standard + + +def process_impact_assessment_filters( + impact_assessments_by_algo: list[list[ImpacttoetsenGrouping] | None], +) -> list[FilterData]: + """Processes the impact assessment filters to remove duplicates and return a list of strings.""" + ia_filter_data: list[FilterData] = [] + + # Counts and removes the amount of entries without any impact assessments. + algo_ia_data_not_none = [ia for ia in impact_assessments_by_algo if ia is not None] + count_with_none = len(impact_assessments_by_algo) - len(algo_ia_data_not_none) + if count_with_none > 0: + ia_filter_data.append( + FilterData( + label=ImpactAssessments.NONE, + key=ImpactAssessments.NONE, + count=count_with_none, + ) + ) + + # Counts the standard Impact Assessments. + standard_ia_counts = {sia: 0 for sia in standard_impact_assessment_titles} + total_other_ias = 0 + for ia_data in algo_ia_data_not_none: + # 'OTHER' can occur twice in one algorithm, but we only count it max once. + other_ias_found = False + for ia in ia_data: + if ia["title"] in standard_impact_assessment_titles: + standard_ia_counts[ImpactAssessments(ia["title"])] += 1 + continue + elif not other_ias_found: + total_other_ias += 1 + other_ias_found = True + + for standard_ia, count in standard_ia_counts.items(): + if count > 0: + ia_filter_data.append( + FilterData(label=standard_ia, key=standard_ia, count=count) + ) + + # 'Other' are the leftovers, the ones not caught by standard Impact Assessments. + if total_other_ias > 0: + ia_filter_data.append( + FilterData( + label=schemas.ImpactAssessments.OTHER, + key=schemas.ImpactAssessments.OTHER, + count=total_other_ias, + ) + ) + + ia_filter_data.sort(key=lambda x: x.count, reverse=True) + return ia_filter_data + + +class AlgoritmeVersionRepository(IRepository): + def __init__(self, session: Session): + self.session = session + + def get_by_id(self, id: int) -> schemas.AlgoritmeVersionDB | None: + algoritme_version = self.session.query(models.AlgoritmeVersion).get(id) + if algoritme_version: + return schemas.AlgoritmeVersionDB.from_orm(algoritme_version) + + def get_all(self) -> list[schemas.AlgoritmeVersionDB]: + algoritme_versions = self.session.query(models.AlgoritmeVersion).all() + return [schemas.AlgoritmeVersionDB.from_orm(a) for a in algoritme_versions] + + def get_all_published(self) -> list[schemas.AlgoritmeVersionDB]: + algoritme_versions = ( + self.session.query(models.AlgoritmeVersion) + .filter(models.AlgoritmeVersion.state == State.PUBLISHED) + .all() + ) + return [ + db_list_to_python_list_schema(schemas.AlgoritmeVersionDB.from_orm(a)) + for a in algoritme_versions + ] + + def get_all_published_first_version(self) -> list[AlgoritmeVersionEarliestPublish]: + """ + Returns the first publication date of each published algorithm. + """ + all_published_algos = ( + select(models.AlgoritmeVersion) + .filter(models.AlgoritmeVersion.state == State.PUBLISHED) + .subquery() + ) + + # Subquery finds the first publication date of each published algorithm + subquery = ( + select( + func.min(models.ActionHistory.create_dt).label("create_dt"), + models.AlgoritmeVersion.algoritme_id, + ) + .join( + models.ActionHistory, + models.AlgoritmeVersion.id == models.ActionHistory.algoritme_version_id, + ) + .where( + models.ActionHistory.operation == OperationEnum.published, + models.AlgoritmeVersion.language == Language.NLD, + exists( + select(all_published_algos.c.algoritme_id).where( + all_published_algos.c.algoritme_id + == models.AlgoritmeVersion.algoritme_id + ) + ), + ) + .group_by(models.AlgoritmeVersion.algoritme_id) + .order_by( + func.min(models.ActionHistory.create_dt), + models.AlgoritmeVersion.algoritme_id, + ) + .subquery() + ) + + # This query couples all the requested data with the first publication date. + stmt = ( + select( + subquery.c.create_dt, + subquery.c.algoritme_id, + models.AlgoritmeVersion.organization, + models.Organisation.code, + ) + .select_from(models.AlgoritmeVersion) + .join( + models.ActionHistory, + models.AlgoritmeVersion.id == models.ActionHistory.algoritme_version_id, + ) + .join( + models.Algoritme, + models.AlgoritmeVersion.algoritme_id == models.Algoritme.id, + ) + .join( + models.Organisation, + models.Algoritme.organisation_id == models.Organisation.id, + ) + .join( + subquery, + and_( + subquery.c.create_dt == models.ActionHistory.create_dt, + subquery.c.algoritme_id == models.AlgoritmeVersion.algoritme_id, + ), + ) + ) + results = self.session.execute(stmt) + return [AlgoritmeVersionEarliestPublish.from_orm(a) for a in results] + + def get_published_by_filter( + self, + filter: ColumnElement[bool], + offset: int = 0, + limit: int = 10, + ) -> list[schemas.AlgoritmeVersionQuery]: + algoritme_versions = ( + self.session.query(models.AlgoritmeVersion) + .select_from(models.AlgoritmeVersion) + .join(models.Algoritme) + .join(models.Organisation) + .order_by(desc(models.AlgoritmeVersion.create_dt)) + .filter(filter, models.AlgoritmeVersion.state == State.PUBLISHED) + .limit(limit) + .offset(offset) + .all() + ) + return [ + db_list_to_python_list_schema(schemas.AlgoritmeVersionQuery.from_orm(a)) + for a in algoritme_versions + ] + + def get_all_published_by_pubcat( + self, lang: Language + ) -> list[schemas.PublicationCategoryCount]: + publication_categories = ( + self.session.query( + func.count(models.AlgoritmeVersion.algoritme_id), + models.AlgoritmeVersion.publication_category, + ) + .filter( + models.AlgoritmeVersion.state == State.PUBLISHED, + cast(models.AlgoritmeVersion.standard_version, Numeric(10, 2)) + == publication_standard["preferredVersion"], + models.AlgoritmeVersion.language == lang, + ) + .group_by(models.AlgoritmeVersion.publication_category) + .all() + ) + return [ + schemas.PublicationCategoryCount(category=label, count=count) + for count, label in publication_categories + ] + + def get_pubcat_by_filter_by_lang( + self, filter: ColumnElement[bool], lang: Language + ) -> list[schemas.FilterData]: + publication_categories = ( + self.session.query( + func.count(models.AlgoritmeVersion.id), + models.AlgoritmeVersion.publication_category, + ) + .join(models.Algoritme) + .join(models.Organisation) + .filter( + models.AlgoritmeVersion.language == lang, + models.AlgoritmeVersion.publication_category.is_not(None), + filter, + ) + .group_by(models.AlgoritmeVersion.publication_category) + .all() + ) + publication_categories_results = [ + schemas.FilterData(label=cat[1], key=cat[1], count=cat[0]) + for cat in publication_categories + ] + publication_categories_results.sort(key=lambda x: x.count, reverse=True) + return publication_categories_results + + def get_impact_assessments_by_filter_by_lang( + self, filter: ColumnElement[bool], lang: Language + ) -> list[schemas.FilterData]: + impact_assessments = ( + self.session.query(models.AlgoritmeVersion.impacttoetsen_grouping) + .join(models.Algoritme) + .join(models.Organisation) + .filter( + models.AlgoritmeVersion.language == lang, + filter, + ) + .all() + ) + # Validation happens in a nested list, unless there is no nested list. + validated = [ + [ImpacttoetsenGrouping(**i) for i in ia[0]] if ia[0] else None + for ia in impact_assessments + ] + return process_impact_assessment_filters(validated) + + def get_latest_by_lars_by_lang( + self, lars: str, lang: Language + ) -> schemas.AlgoritmeVersionDB | None: + latest_algo = ( + self.session.query(models.AlgoritmeVersion) + .join(models.Algoritme) + .filter( + models.Algoritme.lars == lars, + models.AlgoritmeVersion.language == lang, + ) + .order_by(desc(models.AlgoritmeVersion.create_dt)) + ).first() + if latest_algo: + latest_algo = schemas.AlgoritmeVersionDB.from_orm(latest_algo) + return db_list_to_python_list_schema(latest_algo) + + def get_published_by_lang(self, lang: Language) -> list[schemas.AlgoritmeVersionDB]: + published_algoritmes = ( + self.session.query(models.AlgoritmeVersion) + .filter( + models.AlgoritmeVersion.language == lang, + models.AlgoritmeVersion.state == State.PUBLISHED, + ) + .order_by(desc(models.AlgoritmeVersion.create_dt)) + .all() + ) + return [ + db_list_to_python_list_schema(schemas.AlgoritmeVersionDB.from_orm(alg)) + for alg in published_algoritmes + ] + + def get_latest_by_lang(self, lang: Language) -> list[schemas.AlgoritmeVersionDB]: + latest_all_algo_summary = ( + self.session.query( + models.AlgoritmeVersion.algoritme_id, + func.max(models.AlgoritmeVersion.create_dt).label("max_creation_dt"), + ) + .group_by(models.AlgoritmeVersion.algoritme_id) + .subquery() + ) + latest_all_algoritmes = ( + self.session.query(models.AlgoritmeVersion) + .join( + latest_all_algo_summary, + and_( + models.AlgoritmeVersion.algoritme_id + == latest_all_algo_summary.c.algoritme_id, + models.AlgoritmeVersion.create_dt + == latest_all_algo_summary.c.max_creation_dt, + ), + ) + .filter( + models.AlgoritmeVersion.language == lang, + ) + .all() + ) + return [ + db_list_to_python_list_schema(schemas.AlgoritmeVersionDB.from_orm(alg)) + for alg in latest_all_algoritmes + ] + + def get_latest_by_org_by_lang( + self, as_org: str, lang: Language + ) -> list[schemas.AlgoritmeVersionDB]: + """For an organisation, returns the latest versions of all algoritmebeschrijvingen under them.""" + latest_all_algoritmes = ( + self.session.query( + models.AlgoritmeVersion.algoritme_id, + func.max(models.AlgoritmeVersion.create_dt).label("max_creation_dt"), + ) + .group_by(models.AlgoritmeVersion.algoritme_id) + .subquery() + ) + latest_org_algoritmes = ( + self.session.query(models.AlgoritmeVersion) + .join(models.Algoritme) + .join(models.Organisation) + .join( + latest_all_algoritmes, + and_( + models.AlgoritmeVersion.algoritme_id + == latest_all_algoritmes.c.algoritme_id, + models.AlgoritmeVersion.create_dt + == latest_all_algoritmes.c.max_creation_dt, + ), + ) + .filter( + models.Organisation.code == as_org, + models.AlgoritmeVersion.language == lang, + ) + .all() + ) + return [ + db_list_to_python_list_schema(schemas.AlgoritmeVersionDB.from_orm(alg)) + for alg in latest_org_algoritmes + ] + + def get_published_by_lars(self, lars: str) -> list[schemas.AlgoritmeVersionDB]: + """For a lars-code, returns all published""" + published_alg = ( + self.session.query(models.AlgoritmeVersion) + .join(models.Algoritme) + .filter( + models.AlgoritmeVersion.state == State.PUBLISHED, + models.Algoritme.lars == lars, + ) + .all() + ) + return [ + db_list_to_python_list_schema(schemas.AlgoritmeVersionDB.from_orm(alg)) + for alg in published_alg + ] + + def get_published_by_lars_by_lang( + self, lars: str, lang: Language + ) -> schemas.AlgoritmeVersionDB | None: + """For a lars-code, return published by language""" + published_alg = ( + self.session.query(models.AlgoritmeVersion) + .join(models.Algoritme) + .filter( + models.AlgoritmeVersion.state == State.PUBLISHED, + models.Algoritme.lars == lars, + models.AlgoritmeVersion.language == lang, + ) + .first() + ) + if published_alg: + return db_list_to_python_list_schema( + schemas.AlgoritmeVersionDB.from_orm(published_alg) + ) + + def get_published_by_org_by_lang( + self, as_org, lang: Language + ) -> list[schemas.AlgoritmeVersionDB]: + """For an organisation, returns all published versions by language""" + published_algos = ( + self.session.query(models.AlgoritmeVersion) + .filter( + models.AlgoritmeVersion.state == State.PUBLISHED, + models.AlgoritmeVersion.owner == as_org, + models.AlgoritmeVersion.language == lang, + ) + .order_by(desc(models.AlgoritmeVersion.create_dt)) + .all() + ) + return [ + db_list_to_python_list_schema(schemas.AlgoritmeVersionDB.from_orm(alg)) + for alg in published_algos + ] + + def get_all_versions_by_lars_by_lang( + self, lars: str, lang: Language + ) -> list[schemas.AlgoritmeVersionLastEdit]: + """ + Returns all versions of an algorithm description. + Does additional joins to determine by who and when it was last edited. + """ + join_clause = and_( + models.ActionHistory.algoritme_version_id == models.AlgoritmeVersion.id, + not_(models.AlgoritmeVersion.state == State.PUBLISHED), + or_( + models.ActionHistory.operation == schemas.OperationEnum.created, + models.ActionHistory.operation == schemas.OperationEnum.new_version, + ), + ) + stmt = ( + select( + models.ActionHistory.user_id, + models.ActionHistory.create_dt, + models.Algoritme.lars, + models.AlgoritmeVersion, + ) + .select_from(models.AlgoritmeVersion) + .join(models.ActionHistory, onclause=join_clause) + .join(models.Algoritme) + .where( + models.Algoritme.lars == lars, + models.AlgoritmeVersion.language == lang, + ) + .order_by(desc(models.AlgoritmeVersion.create_dt)) + .offset(1) # Current version is skipped + ) + result = list(self.session.execute(stmt)) + return [ + db_list_to_python_list_schema( + schemas.AlgoritmeVersionLastEdit( + **r[3].__dict__, user_id=r[0], archive_dt=r[1], lars=r[2] + ) + ) + for r in result + ] + + def get_archive( + self, org: str, lang: Language + ) -> list[schemas.AlgoritmeVersionLastEdit]: + """ + Returns the most recent archived versions for all algorithm descriptions of a particular organisation. + """ + subquery = ( + select( + models.ActionHistory.algoritme_version_id, + func.max(models.ActionHistory.create_dt).label("max_create_dt"), + ) + .filter(models.ActionHistory.operation == schemas.OperationEnum.archived) + .group_by(models.ActionHistory.algoritme_version_id) + .subquery() + ) + + stmt = ( + select( + models.ActionHistory.user_id, + models.ActionHistory.create_dt, + models.Algoritme.lars, + models.AlgoritmeVersion, + ) + .select_from(models.AlgoritmeVersion) + .join( + models.ActionHistory, + and_( + models.ActionHistory.algoritme_version_id + == models.AlgoritmeVersion.id, + models.ActionHistory.operation == schemas.OperationEnum.archived, + models.AlgoritmeVersion.state == State.ARCHIVED, + ), + ) + .join( + subquery, + and_( + subquery.c.algoritme_version_id + == models.ActionHistory.algoritme_version_id, + subquery.c.max_create_dt == models.ActionHistory.create_dt, + ), + ) + .join(models.Algoritme) + .join(models.Organisation) + .where( + models.Organisation.code == org, + models.AlgoritmeVersion.language == lang, + ) + .order_by(desc(models.ActionHistory.create_dt)) + ) + + result = list(self.session.execute(stmt)) + return [ + db_list_to_python_list_schema( + schemas.AlgoritmeVersionLastEdit( + **r[3].__dict__, user_id=r[0], archive_dt=r[1], lars=r[2] + ) + ) + for r in result + ] + + def add(self, item: schemas.AlgoritmeVersionIn) -> schemas.AlgoritmeVersionDB: + algoritme_version = models.AlgoritmeVersion(**item.dict()) + self.session.add(algoritme_version) + self.session.commit() + + return schemas.AlgoritmeVersionDB.from_orm(algoritme_version) + + def update_state_by_id(self, alg_id: int, target_state: State) -> None: + stmt = ( + update(models.AlgoritmeVersion) + .where(AlgoritmeVersion.id == alg_id) + .values({"state": target_state}) + ) + self.session.execute(stmt) + self.session.commit() + + def update_by_id(self, id: int, item: schemas.AlgoritmeVersionIn) -> None: + stmt = ( + update(models.AlgoritmeVersion) + .where(models.AlgoritmeVersion.id == id) + .values(**item.dict(exclude={"create_dt"})) + ) + self.session.execute(stmt) + self.session.commit() + + def preview_latest_by_lars(self, lars: str) -> schemas.AlgoritmeVersionDB | None: + # Always NLD + latest_algo = self.get_latest_by_lars_by_lang(lars, Language.NLD) + if not latest_algo: + return None + + _ = ( + self.session.query(models.AlgoritmeVersion) + .filter(models.AlgoritmeVersion.id == latest_algo.id) + .update( + {models.AlgoritmeVersion.preview_active: True}, + synchronize_session="fetch", + ) + ) + latest_algo.preview_active = True + return latest_algo + + def unpreview_by_lars(self, lars: str) -> schemas.AlgoritmeVersionDB | None: + # Always NLD + preview_algo = ( + self.session.query(models.AlgoritmeVersion) + .join(models.Algoritme) + .filter( + models.Algoritme.lars == lars, + models.AlgoritmeVersion.preview_active, + models.AlgoritmeVersion.language == Language.NLD, + ) + .first() + ) + if not preview_algo: + return + + _ = ( + self.session.query(models.AlgoritmeVersion) + .filter(models.AlgoritmeVersion.id == preview_algo.id) + .update( + {models.AlgoritmeVersion.preview_active: False}, + synchronize_session="fetch", + ) + ) + preview_algo.preview_active = False + return preview_algo diff --git a/backend/app/repositories/broken_links.py b/backend/app/repositories/broken_links.py new file mode 100644 index 00000000..98c110b8 --- /dev/null +++ b/backend/app/repositories/broken_links.py @@ -0,0 +1,64 @@ +from sqlalchemy import func +from sqlalchemy.orm import Session +from datetime import datetime, timedelta, time +from app import schemas +from app.models.dashboard_models.broken_links import BrokenLinks +from app.schemas.broken_links import BrokenLink, BrokenLinkCount +from app.schemas.misc import Language +from .index import IRepository + + +class BrokenLinksRepository(IRepository): + def __init__(self, session: Session): + self.session = session + + def __del__(self): + self.session.commit() + + def get_all(self) -> list[schemas.BrokenLink]: + actions = self.session.query(BrokenLinks).all() + return [schemas.BrokenLink.from_orm(a) for a in actions] + + def add(self, action: schemas.BrokenLink) -> schemas.BrokenLink: + action_model = BrokenLink(**action.dict()) + self.session.add(action_model) + self.session.flush() + return schemas.BrokenLink.from_orm(action_model) + + def get_newest_batch_by_lang(self, lang: Language) -> list[schemas.BrokenLink]: + max_batch = ( + self.session.query(func.max(BrokenLinks.batch)) + .filter(BrokenLinks.language == lang) + .scalar() + ) + + broken_links = ( + self.session.query(BrokenLinks) + .filter(BrokenLinks.language == lang) + .filter(BrokenLinks.batch == max_batch) + .order_by(BrokenLinks.create_dt.desc()) + ).all() + + return [BrokenLink.from_orm(link) for link in broken_links] + + def get_newest_batch_two_weeks_by_lang( + self, lang: Language + ) -> list[schemas.BrokenLinkCount]: + fourteen_days_ago = datetime.now() - timedelta(days=14) + + broken_links_count = ( + self.session.query( + func.count(BrokenLinks.id).label("count"), + func.date(BrokenLinks.create_dt), + ) + .filter(BrokenLinks.language == lang) + .filter(BrokenLinks.create_dt >= fourteen_days_ago) + .group_by(BrokenLinks.create_dt) + ).all() + + return [ + BrokenLinkCount( + count=count, create_dt=datetime.combine(create_dt, time.min) + ) + for count, create_dt in broken_links_count + ] diff --git a/backend/app/repositories/html_figures.py b/backend/app/repositories/html_figures.py new file mode 100644 index 00000000..39f8d77a --- /dev/null +++ b/backend/app/repositories/html_figures.py @@ -0,0 +1,61 @@ +from typing import Any +from bs4 import BeautifulSoup +from sqlalchemy import delete +from sqlalchemy.orm import Session +from app import models, schemas +from .index import IRepository + +from app.util.html import get_static_html +from fastapi import HTTPException + + +class HtmlFiguresRepository(IRepository): + def __init__(self, session: Session): + self.session = session + + def __del__(self): + self.session.commit() + + def get_all(self): + pass + + def get_most_recent(self) -> schemas.HtmlFiguresOut: + html_figures = ( + self.session.query(models.HtmlFigures) + .filter(models.HtmlFigures.most_recent) + .one_or_none() + ) + if not html_figures: + raise HTTPException(404) + + static_content = get_static_html(html_figures.html) + static_data = html_figures.static_data or {} + + return schemas.HtmlFiguresOut( + date=html_figures.date, + html=html_figures.html, + static=static_content, + static_data=static_data, + ) + + def delete_most_recent(self) -> None: + stmt = delete(models.HtmlFigures).where(models.HtmlFigures.most_recent) + self.session.execute(stmt) + + def add(self, html: str, static_data: Any) -> schemas.HtmlFigures: + # Remove hrefs for the archived version + archived_html = BeautifulSoup(html, "lxml") + for a in archived_html.findAll("a"): + del a["href"] + + new_record = models.HtmlFigures( + html=html, static_data=static_data, most_recent=True + ) + archived_record = models.HtmlFigures( + html=str(archived_html), static_data=static_data, most_recent=False + ) + self.session.add(new_record) + self.session.add(archived_record) + self.session.flush() + + return schemas.HtmlFigures.from_orm(new_record) diff --git a/backend/app/repositories/index.py b/backend/app/repositories/index.py new file mode 100644 index 00000000..0b3fb69c --- /dev/null +++ b/backend/app/repositories/index.py @@ -0,0 +1,16 @@ +from abc import ABC, abstractmethod +from sqlalchemy.orm import Session + + +class IRepository(ABC): + @abstractmethod + def __init__(self, session: Session): + raise NotImplementedError + + @abstractmethod + def get_all(self): + raise NotImplementedError + + @abstractmethod + def add(self, item): + raise NotImplementedError diff --git a/backend/app/repositories/organisation.py b/backend/app/repositories/organisation.py new file mode 100644 index 00000000..5fe8ffd9 --- /dev/null +++ b/backend/app/repositories/organisation.py @@ -0,0 +1,301 @@ +from typing import Tuple +from sqlalchemy.orm import Session +from sqlalchemy import ColumnElement, delete, desc, func, select, update, or_, and_ +from app import models, schemas +from app.middleware.authorisation.schemas import State +from app.models.organisation import Organisation +from app.schemas.algoritme_version import FilterData +from app.schemas.misc import Language, OrgType, SortOption +from app.schemas.organization import OrganisationTop20 +from .index import IRepository +from app.config.org_type_mapping import org_type_mapping + + +class OrganisationRepository(IRepository): + def __init__(self, session: Session): + self.session = session + + def __del__(self): + self.session.commit() + + def get_all(self) -> list[schemas.OrganisationDB]: + all_orgs = self.session.query(models.Organisation).all() + return [schemas.OrganisationDB.from_orm(one_org) for one_org in all_orgs] + + def delete_by_code(self, org_code: str) -> None: + stmt = delete(Organisation).where(Organisation.code == org_code) + self.session.execute(stmt) + + def gen_published_nl_algos(self): + # Generates algoritme_version, but only published versions (and only dutch). + # Used to count the coupled published algorithms. + return ( + self.session.query(models.AlgoritmeVersion) + .filter( + models.AlgoritmeVersion.state == State.PUBLISHED, + models.AlgoritmeVersion.language == Language.NLD, + ) + .subquery() + ) + + def gen_all_org_counts(self, published_nl_algos): + # Generates an overview for number of published algorithms for all organisations. + return ( + self.session.query( + models.Organisation.code, + func.count(published_nl_algos.c.algoritme_id).label("count"), + ) + .select_from(models.Organisation) + .join(models.Algoritme, isouter=True) + .join( + published_nl_algos, + published_nl_algos.c.algoritme_id == models.Algoritme.id, + isouter=True, + ) + .group_by(models.Organisation.code) + .subquery() + ) + + def gen_organisation_details_lang( + self, lang: Language, filter_clause: ColumnElement[bool] | None = None + ): + # Used to get the name of the organisation, but only in the requested language. + if filter_clause is not None: + return ( + self.session.query(models.OrganisationDetails) + .filter(models.OrganisationDetails.language == lang) + .filter(filter_clause) + .subquery() + ) + return ( + self.session.query(models.OrganisationDetails) + .filter(models.OrganisationDetails.language == lang) + .subquery() + ) + + def gen_conditional_org_counts(self, all_org_counts, organisation_details_lang): + # Gets only the organisations that have (published algorithms or have a page), and comply with the type filter. + return ( + self.session.query( + models.Organisation.code, + all_org_counts.c.count, + organisation_details_lang.c.name, + models.Organisation.show_page, + models.Organisation.type, + ) + .select_from(all_org_counts) + .join( + models.Organisation, models.Organisation.code == all_org_counts.c.code + ) + .join( + organisation_details_lang, + organisation_details_lang.c.organisation_id == models.Organisation.id, + isouter=True, + ) + .filter( + or_(all_org_counts.c.count > 0, models.Organisation.show_page), + and_(organisation_details_lang.c.name.isnot(None)), + ) + ) + + def get_overview_by_lang( + self, lang: Language + ) -> list[schemas.OrganisationOverview]: + published_nl_algos = self.gen_published_nl_algos() + + all_org_counts = self.gen_all_org_counts(published_nl_algos) + + organisation_details_lang = self.gen_organisation_details_lang(lang) + + conditional_org_counts = self.gen_conditional_org_counts( + all_org_counts, organisation_details_lang + ) + + query = conditional_org_counts.order_by(organisation_details_lang.c.name).all() + + return [schemas.OrganisationOverview.from_orm(o) for o in query] + + def get_overview_by_type_by_lang( + self, + type: OrgType | None, + lang: Language, + filter_clause: ColumnElement[bool] | None, + ) -> list[schemas.OrganisationOverview]: + published_nl_algos = self.gen_published_nl_algos() + + all_org_counts = self.gen_all_org_counts(published_nl_algos) + + organisation_details_lang = self.gen_organisation_details_lang( + lang, filter_clause + ) + + conditional_org_counts = self.gen_conditional_org_counts( + all_org_counts, organisation_details_lang + ) + + if type: + conditional_org_counts = conditional_org_counts.filter( + models.Organisation.type == type + ) + query = conditional_org_counts.order_by(organisation_details_lang.c.name).all() + + return [schemas.OrganisationOverview.from_orm(o) for o in query] + + def get_aggregated_organisations_by_filter_by_lang( + self, + filter: ColumnElement[bool], + lang: Language, + sort_opt: SortOption, + ) -> Tuple[list[schemas.FilterData], list[schemas.FilterData]]: + subquery = ( + self.session.query( + models.Algoritme.organisation_id, + func.count(models.Algoritme.id).label("count"), + ) + .join(models.Organisation) + .join( + models.AlgoritmeVersion, + models.AlgoritmeVersion.algoritme_id == models.Algoritme.id, + ) + .filter(filter) + .group_by(models.Algoritme.organisation_id) + .subquery() + ) + + org_rows_model = ( + self.session.query( + models.Organisation.type, + models.OrganisationDetails.name, + models.Organisation.code, + subquery.c.count, + ) + .select_from(models.Organisation) + .join( + subquery, + models.Organisation.id == subquery.c.organisation_id, + ) + .join( + models.OrganisationDetails, + and_( + models.Organisation.id + == models.OrganisationDetails.organisation_id, + models.OrganisationDetails.language == lang, + ), + ) + ) + + org_rows = [schemas.OrganisationGrouping.from_orm(o) for o in org_rows_model] + types_present = set([r.type for r in org_rows]) + orgtype_counts = {k: 0 for k in types_present if k is not None} + org_results: list[schemas.FilterData] = [] + for org_row in org_rows: + # Handles counting by organisation type. + if org_row.type is None: + orgtype_counts[schemas.OrgType.overig] + else: + orgtype_counts[org_row.type] += org_row.count + + # Handles counting by organisations. + org = FilterData(label=org_row.name, key=org_row.name, count=org_row.count) + org_results.append(org) + + orgtype_results = [ + FilterData(label=org_type_mapping[lang][key], key=key, count=count) + for key, count in orgtype_counts.items() + ] + orgtype_results.sort(key=lambda x: x.count, reverse=True) + if sort_opt == SortOption.sort_name: + org_results.sort(key=lambda x: x.label) + if sort_opt == SortOption.sort_number: + org_results.sort(key=lambda x: x.count, reverse=True) + + return org_results, orgtype_results + + def add(self, item: schemas.OrganisationIn) -> schemas.OrganisationDB: + organization = models.Organisation(**item.dict()) + self.session.add(organization) + self.session.flush() + + return schemas.OrganisationDB.from_orm(organization) + + def get_by_code(self, code: str) -> schemas.OrganisationDB | None: + organisation = ( + self.session.query(models.Organisation) + .filter(models.Organisation.code == code) + .first() + ) + if organisation: + return schemas.OrganisationDB.from_orm(organisation) + + def get_by_name(self, name: str) -> schemas.OrganisationDB | None: + organisation = ( + self.session.query(models.Organisation) + .filter(models.Organisation.name == name) + .first() + ) + if organisation: + return schemas.OrganisationDB.from_orm(organisation) + + def get_by_lars(self, lars: str) -> schemas.OrganisationDB | None: + organisation = ( + self.session.query(models.Organisation) + .join(models.Algoritme) + .filter(models.Algoritme.lars == lars) + .first() + ) + if organisation: + return schemas.OrganisationDB.from_orm(organisation) + + def get_by_id(self, org_id: int) -> schemas.OrganisationDB | None: + organisation = ( + self.session.query(models.Organisation) + .filter(models.Organisation.id == org_id) + .first() + ) + if organisation: + return schemas.OrganisationDB.from_orm(organisation) + + def get_by_type(self, type: OrgType) -> list[schemas.OrganisationDB]: + orgs = ( + self.session.query(models.Organisation) + .filter(models.Organisation.type == type) + .all() + ) + return [schemas.OrganisationDB.from_orm(o) for o in orgs] + + def update_by_code(self, code: str, item: schemas.OrganisationIn) -> None: + stmt = ( + update(models.Organisation) + .where(models.Organisation.code == code) + .values(**dict(item)) + ) + self.session.execute(stmt) + self.session.commit() + + def get_top_20(self, language: Language) -> list[OrganisationTop20]: + stmt = ( + select(func.count(models.Organisation.id), models.OrganisationDetails.name) + .select_from(models.Organisation) + .join(models.Algoritme) + .join( + models.AlgoritmeVersion, + and_( + models.AlgoritmeVersion.algoritme_id == models.Algoritme.id, + models.AlgoritmeVersion.language == language, + models.AlgoritmeVersion.state == State.PUBLISHED, + ), + ) + .join( + models.OrganisationDetails, + and_( + models.Organisation.id + == models.OrganisationDetails.organisation_id, + models.OrganisationDetails.language == language, + ), + ) + .group_by(models.OrganisationDetails.name) + .order_by(desc(func.count(models.Organisation.id))) + .limit(20) + ) + org_counts = self.session.execute(stmt).all() + return [OrganisationTop20(name=o[1], count=o[0]) for o in org_counts] diff --git a/backend/app/repositories/organisation_details.py b/backend/app/repositories/organisation_details.py new file mode 100644 index 00000000..0a837cca --- /dev/null +++ b/backend/app/repositories/organisation_details.py @@ -0,0 +1,154 @@ +from sqlalchemy import func, update +from sqlalchemy.orm import Session +from app import models, schemas +from app.schemas.organization import OrganisationConfig +from .index import IRepository +from app.schemas import Language + + +class OrganisationDetailsRepository(IRepository): + def __init__(self, session: Session): + self.session = session + + def __del__(self): + self.session.commit() + + def get_all(self) -> list[schemas.OrganisationDetailsDB]: + organisation_details = self.session.query(models.OrganisationDetails).all() + return [ + schemas.OrganisationDetailsDB.from_orm(org_detail) + for org_detail in organisation_details + ] + + def add(self, item: schemas.OrganisationDetailsIn) -> schemas.OrganisationDetailsDB: + organization_detail = models.OrganisationDetails(**dict(item)) + self.session.add(organization_detail) + self.session.flush() + + return schemas.OrganisationDetailsDB.from_orm(organization_detail) + + def update_by_id( + self, id: int, item: schemas.OrganisationDetailsIn + ) -> schemas.OrganisationDetailsDB | None: + stmt = ( + update(models.OrganisationDetails) + .where(models.OrganisationDetails.id == id) + .values(**dict(item)) + ) + self.session.execute(stmt) + self.session.flush() + + updated_object = ( + self.session.query(models.OrganisationDetails) + .filter(models.OrganisationDetails.id == id) + .first() + ) + if updated_object: + return schemas.OrganisationDetailsDB.from_orm(updated_object) + + def get_shown_by_code_by_lang( + self, code: str, lang: Language + ) -> schemas.OrganisationDetailsDB | None: + organisation_detail = ( + self.session.query(models.OrganisationDetails) + .join( + models.Organisation, + models.Organisation.id == models.OrganisationDetails.organisation_id, + ) + .filter( + models.Organisation.code == code, + models.OrganisationDetails.language == lang, + models.Organisation.show_page, + ) + .first() + ) + if organisation_detail: + return schemas.OrganisationDetailsDB.from_orm(organisation_detail) + + def get_by_org_id_by_lang( + self, org_id: int, lang: Language + ) -> schemas.OrganisationDetailsDB | None: + organisation_detail = ( + self.session.query(models.OrganisationDetails) + .filter( + models.OrganisationDetails.organisation_id == org_id, + models.OrganisationDetails.language == lang, + ) + .first() + ) + + if organisation_detail: + return schemas.OrganisationDetailsDB.from_orm(organisation_detail) + + def get_by_name(self, name: str) -> schemas.OrganisationDetailsDB | None: + organisation_detail = ( + self.session.query(models.OrganisationDetails) + .filter(models.OrganisationDetails.name == name) + .first() + ) + if organisation_detail: + return schemas.OrganisationDetailsDB.from_orm(organisation_detail) + + def __build_org_config_query( + self, + lang: Language, + q: str | None = None, + ): + search = f"%{q.lower()}%" if q is not None else "%%" + return ( + self.session.query( + models.Organisation.id, + models.Organisation.code, + models.Organisation.type, + models.Organisation.flow, + models.Organisation.show_page, + models.OrganisationDetails.name, + ) + .join( + models.Organisation, + models.Organisation.id == models.OrganisationDetails.organisation_id, + ) + .filter(models.OrganisationDetails.language == lang) + .filter(func.lower(models.OrganisationDetails.name).like(search)) + .order_by(models.OrganisationDetails.name) + ) + + def get_org_configs_by_lang( + self, + lang: Language, + limit: int | None = None, + skip: int | None = None, + q: str | None = None, + ) -> list[OrganisationConfig]: + query = self.__build_org_config_query(lang, q) + org_configs = query.limit(limit).offset(skip).all() + return [OrganisationConfig.from_orm(org) for org in org_configs] + + def get_org_configs_by_org_list_by_lang( + self, + org_list: list[str], + lang: Language, + limit: int | None = None, + skip: int | None = None, + q: str | None = None, + ) -> list[OrganisationConfig]: + query = self.__build_org_config_query(lang, q) + org_configs = ( + query.filter( + models.Organisation.code.in_(org_list), + ) + .limit(limit) + .offset(skip) + .all() + ) + return [OrganisationConfig.from_orm(org) for org in org_configs] + + def get_org_configs_by_code_by_lang( + self, code: str, lang: Language + ) -> OrganisationConfig | None: + query = self.__build_org_config_query(lang) + org_config = query.filter( + models.Organisation.code == code, + ).first() + if org_config: + return OrganisationConfig.from_orm(org_config) diff --git a/backend/app/repositories/precomputed_values.py b/backend/app/repositories/precomputed_values.py new file mode 100644 index 00000000..931c1446 --- /dev/null +++ b/backend/app/repositories/precomputed_values.py @@ -0,0 +1,46 @@ +from sqlalchemy.orm import Session +from app import schemas +from app.models.precomputed_values import PrecomputedValues +from app.schemas.misc import Language +from .index import IRepository +from fastapi import HTTPException + + +class PreComputedValuesRepository(IRepository): + def __init__(self, session: Session): + self.session = session + + def add(self, item: schemas.PrecomputedValueIn) -> schemas.PrecomputedValue: + precomputed_values = PrecomputedValues(**item.dict()) + self.session.add(precomputed_values) + self.session.commit() + return schemas.PrecomputedValue.from_orm(precomputed_values) + + def get_all(self) -> list[schemas.PrecomputedValue]: + actions = self.session.query(PrecomputedValues).all() + return [schemas.PrecomputedValue.from_orm(a) for a in actions] + + def delete_by_key(self, key: str): + self.session.query(PrecomputedValues).filter( + PrecomputedValues.key == key + ).delete() + self.session.commit() + + def get_highlighted_values( + self, lang: Language + ) -> list[schemas.HighlightedAlgorithmResponse]: + precomputed_values = ( + self.session.query(PrecomputedValues) + .filter(PrecomputedValues.language == lang) + .order_by(PrecomputedValues.create_dt.desc()) + ).first() + + if precomputed_values: + return [ + schemas.HighlightedAlgorithmResponse(**item) + for item in precomputed_values.value + ] + else: + raise HTTPException( + status_code=404, detail="Geen precomputed values gevonden." + ) diff --git a/backend/app/routers/__init__.py b/backend/app/routers/__init__.py index e69de29b..7ee1eec8 100644 --- a/backend/app/routers/__init__.py +++ b/backend/app/routers/__init__.py @@ -0,0 +1,10 @@ +from . import v0_1, v0_4, v1_0 # noqa +from . import downloads # noqa +from . import algoritme # noqa +from . import c3po # noqa +from . import templates # noqa +from . import organisation # noqa +from . import organisation_details # noqa +from . import user # noqa +from . import broken_links # noqa +from . import aggregations # noqa diff --git a/backend/app/routers/aggregations.py b/backend/app/routers/aggregations.py index a21870e6..bb4134a1 100644 --- a/backend/app/routers/aggregations.py +++ b/backend/app/routers/aggregations.py @@ -1,79 +1,112 @@ from fastapi import APIRouter, Query from fastapi import Depends +from pydantic import BaseModel +from app.middleware.authorisation.schemas import State from app.middleware.middleware import get_db from sqlalchemy.orm import Session from sqlalchemy import text from app.config.resource import Columns -import logging +from app import models +from app.config.settings import Settings +from app.util.logger import get_logger +from app.middleware.authorisation.authoriser import AuthType, Authoriser router = APIRouter() -logger = logging.getLogger(__name__) +logger = get_logger(__name__) +env_settings = Settings() -@router.get("/columns/") +class Column(BaseModel): + column_name: str + is_nullable: str + + +@router.get( + "/columns/", + response_model=list[Column], + dependencies=[Depends(Authoriser(AuthType.BaseOnly))], +) async def get_columns(db: Session = Depends(get_db)): + skip_columns = [ + "algoritme_id", + "id", + "create_dt", + "published", + "released", + "preview_active", + "language", + ] + skip_columns_statement = [ + f"AND column_name != '{column}' " for column in skip_columns + ] stmt = text( - """SELECT table_name, column_name, is_nullable + f"""SELECT column_name, is_nullable FROM information_schema.columns WHERE table_schema = 'public' - AND column_name != 'algoritme_id' - AND column_name != 'id' - AND table_name != 'alembic_version' - ORDER BY table_name, ordinal_position + AND table_name = 'algoritme_version' + {" ".join(skip_columns_statement)} + ORDER BY ordinal_position """ ) - return db.execute(stmt).all() - + results = db.execute(stmt).all() -@router.get("/db-count/") -async def get_total_count(db: Session = Depends(get_db)) -> int: - stmt = text("SELECT count(id) FROM algoritme") - return int(db.execute(stmt).all()[0][0]) + output = [{"column_name": r[0], "is_nullable": r[1]} for r in results] + return output -@router.get("/db-count/{column}") -async def get_count_per_type(column: Columns, db: Session = Depends(get_db)): +@router.get( + "/db-count/{column}", + dependencies=[Depends(Authoriser(AuthType.BaseOnly))], +) +def get_count_per_type(column: Columns, db: Session = Depends(get_db)): stmt = text( f""" SELECT count(1), {column.value} as descriptor - FROM algoritme - LEFT JOIN inzet ON algoritme.id=inzet.algoritme_id - LEFT JOIN juridisch ON algoritme.id=juridisch.algoritme_id - LEFT JOIN metadata ON algoritme.id=metadata.algoritme_id - LEFT JOIN toepassing ON algoritme.id=toepassing.algoritme_id - LEFT JOIN toezicht ON algoritme.id=toezicht.algoritme_id + FROM algoritme_version + WHERE state = 'PUBLISHED' + AND language='NLD' GROUP BY {column.value} ORDER BY count(1) desc - LIMIT 10 + LIMIT 20 """ ) - return db.execute(stmt).all() + results = db.execute(stmt).all() + + output = [{"count": r[0], "descriptor": r[1]} for r in results] + + return output -@router.get("/completeness/") +@router.get( + "/completeness/", + dependencies=[Depends(Authoriser(AuthType.BaseOnly))], +) async def get_count_with_filled_columns( - columns: list[Columns] | None = Query(default=None), db: Session = Depends(get_db) + columns: list[Columns] = Query(default=None), db: Session = Depends(get_db) ): - selection_string = ", ".join(columns) - stmt = text( - f"""SELECT {selection_string} - FROM algoritme - LEFT JOIN inzet ON algoritme.id=inzet.algoritme_id - LEFT JOIN juridisch ON algoritme.id=juridisch.algoritme_id - LEFT JOIN metadata ON algoritme.id=metadata.algoritme_id - LEFT JOIN toepassing ON algoritme.id=toepassing.algoritme_id - LEFT JOIN toezicht ON algoritme.id=toezicht.algoritme_id - """ - ) + ignore_columns = ["end_dt", "published", "released", "language", "state"] + columns_model_list = [ + col + for col in models.AlgoritmeVersion.__table__.columns + if col.key not in ignore_columns + ] - table = db.execute(stmt).all() + if "*" not in columns: + columns_model_list = [col for col in columns_model_list if col.key in columns] + + table = ( + db.query(*columns_model_list) + .filter(models.AlgoritmeVersion.state == State.PUBLISHED) + .all() + ) - def is_filled(cell: any) -> bool: - return [""].count(cell) == 0 + def is_filled(cell) -> bool: + checks = [cell != "", cell is not None] + return all(checks) - compliantRows = [] + compliant_rows = [] for row in table: - compliantRow = all([is_filled(cell) for cell in row]) - if compliantRow: - compliantRows.append(row) - return len(compliantRows) + compliant_row = all([is_filled(cell) for cell in row]) + if compliant_row: + compliant_rows.append(row) + return len(compliant_rows) diff --git a/backend/app/routers/algoritme.py b/backend/app/routers/algoritme.py new file mode 100644 index 00000000..d566ca83 --- /dev/null +++ b/backend/app/routers/algoritme.py @@ -0,0 +1,128 @@ +from sqlalchemy import text +from fastapi import BackgroundTasks, Depends, APIRouter, Path +from sqlalchemy.orm import Session +from app import schemas +from app.controllers.action import get_available_actions_by_lars, update_state_by_lars +from app.controllers.algoritme import ( + get_archived_versions, + get_algoritme_owner, + get_algoritme_versions_by_id, +) +from app.middleware.authorisation.authoriser import AuthType, Authoriser +from app.middleware.authorisation.require_ownership import RequireOwnership +from app.middleware.authorisation.schemas import Permission +from app.middleware.keycloak_authenticator import get_current_user +from app.middleware.middleware import get_db +from app.schemas.action import ( + StateChangeActionOut, +) +from app.services.keycloak import KeycloakUser + + +router = APIRouter() + + +@router.get( + "/organisations/{organisation_name}/algorithms/archived-versions", + response_model=list[schemas.AlgoritmeVersionLastEdit], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.PUT_ALGORITHM_VERSION + ) + ), + ], +) +async def get_archived_algorithm_versions( + organisation_name: str, + db: Session = Depends(get_db), +): + return get_archived_versions(db, organisation_name) + + +@router.get( + "/algoritme/find/{algoritme_id}", + response_model=schemas.OrganisationIn, + dependencies=[Depends(Authoriser(AuthType.BaseOnly))], +) +async def find_algoritme_owner( + lars: str = Path(alias="algoritme_id"), + db: Session = Depends(get_db), + user: KeycloakUser = Depends(get_current_user), +): + return get_algoritme_owner(db, user, lars) + + +@router.get( + "/organisations/{organisation_name}/algorithms/{algorithm_id}/versions", + response_model=list[schemas.AlgoritmeVersionLastEdit], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.GET_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def get_all_versions( + lars: str = Path(alias="algorithm_id"), + include_archived: bool = False, + db: Session = Depends(get_db), +): + return get_algoritme_versions_by_id(db, lars, include_archived) + + +@router.get( + "/organisations/{organisation_name}/algorithms/{algorithm_id}/available-actions", + response_model=list[StateChangeActionOut], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.GET_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def get_available_actions( + lars: str = Path(alias="algorithm_id"), + _: str = Path(alias="organisation_name"), + user: KeycloakUser = Depends(get_current_user), + db: Session = Depends(get_db), +): + return get_available_actions_by_lars(db, user, lars) + + +@router.put( + "/organisations/{organisation_name}/algorithms/{algorithm_id}/state/{action_name}", + response_model=None, + dependencies=[ + Depends(Authoriser(AuthType.OrgRightStateChange)), + Depends(RequireOwnership), + ], +) +async def update_state( + background_tasks: BackgroundTasks, + lars: str = Path(alias="algorithm_id"), + as_org: str = Path(alias="organisation_name"), + action_name: str = Path(alias="action_name"), + user: KeycloakUser = Depends(get_current_user), + db: Session = Depends(get_db), +): + return update_state_by_lars( + db=db, + user=user, + lars=lars, + as_org=as_org, + action_key=action_name, + background_tasks=background_tasks, + ) + + +@router.get( + "/algoritme/total-count", dependencies=[Depends(Authoriser(AuthType.BaseOnly))] +) +async def get_total_count(db: Session = Depends(get_db)) -> int: + stmt = "SELECT count(id) FROM algoritme_version WHERE state = 'PUBLISHED' AND language='NLD'" + return db.execute(text(stmt)).scalar_one() diff --git a/backend/app/routers/broken_links.py b/backend/app/routers/broken_links.py new file mode 100644 index 00000000..eb22139b --- /dev/null +++ b/backend/app/routers/broken_links.py @@ -0,0 +1,23 @@ +from fastapi import APIRouter, Depends, Path +from app import repositories +from app.middleware.middleware import get_db +from sqlalchemy.orm import Session +from app.schemas.broken_links import BrokenLink +from app.schemas.misc import Language +from app.middleware.authorisation.authoriser import AuthType, Authoriser + + +router = APIRouter() + + +@router.get( + "/broken-links/{language}", + response_model=list[BrokenLink], + dependencies=[Depends(Authoriser(AuthType.BaseOnly))], +) +async def get_broken_links( + db: Session = Depends(get_db), + language: Language = Path(alias="language"), +) -> list[BrokenLink]: + brokenlink_repo = repositories.BrokenLinksRepository(db) + return brokenlink_repo.get_newest_batch_by_lang(language) diff --git a/backend/app/routers/c3po.py b/backend/app/routers/c3po.py new file mode 100644 index 00000000..7dc0a0b4 --- /dev/null +++ b/backend/app/routers/c3po.py @@ -0,0 +1,21 @@ +from fastapi import APIRouter, Depends +from app.middleware.authorisation.authoriser import AuthType, Authoriser + +import app.services.c3po +from app.util.logger import get_logger +from app.schemas.c3po import C3poResults, C3poRequest +from app.config.settings import Settings + +logger = get_logger(__name__) +env_settings = Settings() + +router = APIRouter() + + +@router.post( + "/processing-request", + response_model=C3poResults, + dependencies=[Depends(Authoriser(AuthType.BaseOnly))], +) +def post_c3po_request(body: C3poRequest): + return app.services.c3po.fetch_c3po_results(body) diff --git a/backend/app/routers/default.py b/backend/app/routers/default.py deleted file mode 100644 index 2e549637..00000000 --- a/backend/app/routers/default.py +++ /dev/null @@ -1,139 +0,0 @@ -from fastapi import APIRouter -from fastapi import Depends -from app.middleware.middleware import get_db -from sqlalchemy.orm import Session -import app.models as models -import app.schemas as schemas -import logging -from sqlalchemy import or_, and_, func, sql -import pandas as pd -from fastapi.responses import StreamingResponse -import io -import datetime -import csv - -router = APIRouter() -logger = logging.getLogger(__name__) - - -@router.post( - "/algoritme/", - # response_model=schemas.algoritme.AlgoritmeQueryResponse, -) -async def get_all( - algoritme_query: schemas.algoritme.AlgoritmeQuery, db: Session = Depends(get_db) -): - model = models.algoritme.Algoritme - - or_clauses_search = [] - if len(algoritme_query.search) > 0: - columns_to_search_in = [model.name, model.organization, model.description_short] - for c in columns_to_search_in: - or_clauses_search.append( - or_( - func.lower(c) - .like(f"%{algoritme_query.search.lower()}%") - .self_group() - ) - ) - - and_clauses_filters = [] - if len(algoritme_query.filters) > 0: - for a in algoritme_query.filters: - column = getattr(model, a.attribute) - if type(a.value) is list: - and_clauses_filters.append(and_(column.in_(a.value)).self_group()) - else: - and_clauses_filters.append(and_(column == a.value).self_group()) - - search_clause = and_(or_(*or_clauses_search)) - where_clause = and_(search_clause, and_(*and_clauses_filters)) - - query_filtered = ( - db.query(model) - .order_by(model.slug) - .filter(where_clause) - .limit(algoritme_query.limit) - .offset((algoritme_query.page - 1) * algoritme_query.limit) - ) - - aggregation_columns = [model.organization] - - aggregation_queries = [ - db.query( - sql.expression.literal(c.name).label("aggregation_column"), - c.label("aggregation_value"), - func.count(c).label("count"), - ) - .filter(where_clause) - .group_by(c) - for c in aggregation_columns - ] - - aggregation_union = aggregation_queries[0].union(*aggregation_queries[1:]).all() - - return { - "results": query_filtered.all(), - "total_count": db.query(func.count(model.id)).filter(where_clause).scalar(), - "aggregations": [ - { - "values": [a for a in aggregation_union if a[0] == c.name], - "aggregation_attribute": c.name, - } - for c in aggregation_columns - ], - } - - -@router.get( - "/algoritme/{slug}/", - response_model=schemas.algoritme.Algoritme, -) -async def get_one(slug: str, db: Session = Depends(get_db)): - return ( - db.query(models.algoritme.Algoritme) - .filter(models.algoritme.Algoritme.slug == slug) - .first() - ) - - -@router.get("/algoritme-simple-list/") -async def get_simple_list(db: Session = Depends(get_db)): - return db.query( - models.algoritme.Algoritme.slug, - models.algoritme.Algoritme.name, - models.algoritme.Algoritme.organization, - ).all() - - -@router.get("/file/algoritme") -async def download_algoritme(db: Session = Depends(get_db)): - result = ( - db.query(models.algoritme.Algoritme) - .order_by(models.algoritme.Algoritme.slug) - .all() - ) - - data = [schemas.algoritme.Algoritme.from_orm(r).dict() for r in result] - df = pd.json_normalize(data) - relevant_columns = [ - c - for c in df.columns - if c not in ["id", "slug"] - and all( - [excluded_string not in c for excluded_string in ["algoritme_id", ".id"]] - ) - ] - stream = io.BytesIO() - df = df[relevant_columns].replace(r"\n", "", regex=True) - df.to_csv(stream, index=False, quoting=csv.QUOTE_ALL, encoding="utf-8-sig") - - response = StreamingResponse(iter([stream.getvalue()]), media_type="text/csv") - timestamp = datetime.datetime.now().strftime("%Y%m%d") - filename = f"algoritmeregister_{timestamp}.csv" - - response.headers["Content-Encoding"] = "UTF-8" - response.headers["Content-type"] = "text/csv; charset=UTF-8" - response.headers["Content-Disposition"] = f"attachment; filename={filename}" - - return response diff --git a/backend/app/routers/downloads.py b/backend/app/routers/downloads.py new file mode 100644 index 00000000..50ca0004 --- /dev/null +++ b/backend/app/routers/downloads.py @@ -0,0 +1,61 @@ +from fastapi import Depends, HTTPException, Path, Query, APIRouter +from fastapi.responses import FileResponse +from sqlalchemy.orm import Session +from app.controllers import ( + generate_word_download, + generate_download_file, + generate_pdf_download, +) +from app.middleware.authorisation.authoriser import AuthType, Authoriser +from app.middleware.keycloak_authenticator import get_current_user +from app.middleware.middleware import get_db +from app.repositories.algoritme import AlgoritmeRepository +from app.repositories.organisation import OrganisationRepository +from app.services.keycloak import KeycloakUser + + +router = APIRouter() + + +@router.get( + "/organizations/{organisation_name}", + response_class=FileResponse, + dependencies=[Depends(Authoriser(AuthType.OrgOnly))], +) +async def get_file_many( + db: Session = Depends(get_db), + as_org: str = Path(alias="organisation_name"), + filetype: str = Query(alias="filetype"), + user: KeycloakUser = Depends(get_current_user), +): + if not filetype or filetype == "word": + return generate_word_download(db, org_name=as_org) + if filetype == "excel": + return generate_download_file(db, org_name=as_org, which_version="latest") + if filetype == "pdf": + return generate_pdf_download(db, org_name=as_org) + + +@router.get( + "/organizations/{organisation_name}/algorithms/{algorithm_id}", + response_class=FileResponse, + dependencies=[Depends(Authoriser(AuthType.OrgOnly))], +) +async def get_file_one( + db: Session = Depends(get_db), + lars: str = Path(alias="algorithm_id"), + as_org: str = Path(alias="organisation_name"), + filetype: str = Query(alias="filetype"), +): + org_repo = OrganisationRepository(db) + org = org_repo.get_by_code(as_org) + algoritme_repo = AlgoritmeRepository(db) + algoritme = algoritme_repo.get_by_lars(lars) + if not org or not algoritme or algoritme.owner != org.code: + return HTTPException(404) + if not filetype or filetype == "word": + return generate_word_download(db, lars=lars) + if filetype == "excel": + return generate_download_file(db, lars=lars, which_version="latest") + if filetype == "pdf": + return generate_pdf_download(db, lars=lars) diff --git a/backend/app/routers/organisation.py b/backend/app/routers/organisation.py new file mode 100644 index 00000000..840152ce --- /dev/null +++ b/backend/app/routers/organisation.py @@ -0,0 +1,97 @@ +from typing import Annotated +from fastapi import BackgroundTasks, Depends, APIRouter, Path, Query +from sqlalchemy.orm import Session +from app.controllers.organisation.webform import remove_org +from app.middleware.authorisation.authoriser import AuthType, Authoriser +from app.middleware.authorisation.schemas import Role +from app.middleware.keycloak_authenticator import get_current_user +from app.middleware.middleware import get_db +from app.schemas.flow import FlowStructure +from app.schemas.organization import ( + GetOrganisationsResponse, + OrganisationConfig, + OrganisationConfigIn, +) +from app.controllers import flow as flow_controller +from app.services.keycloak import KeycloakUser +from app.controllers import get_orgs, create_org, update_org, update_org_show_page + +router = APIRouter() + + +@router.get( + "/organisation", + response_model=GetOrganisationsResponse, + dependencies=[Depends(Authoriser(AuthType.BaseOnly))], +) +async def get_all_orgs( + db: Session = Depends(get_db), + user: KeycloakUser = Depends(get_current_user), + limit: int = Query(ge=1, le=1000, default=1000), + skip: int = Query(ge=0, default=0), + q: str | None = Query(max_length=50, default=None), +): + return get_orgs(db, user=user, limit=limit, skip=skip, q=q) + + +@router.post( + "/organisation", + response_model=OrganisationConfig, + dependencies=[Depends(Authoriser(AuthType.RoleOnly, role=Role.Administrator))], +) +async def post_org( + background_tasks: BackgroundTasks, + body: OrganisationConfigIn, + db: Session = Depends(get_db), +) -> OrganisationConfig: + return create_org(background_tasks, db, body) + + +@router.put( + "/organisation/{organisation_name}", + response_model=OrganisationConfig, + dependencies=[Depends(Authoriser(AuthType.RoleOnly, role=Role.Administrator))], +) +async def put_org( + background_tasks: BackgroundTasks, + body: OrganisationConfigIn, + as_org: str = Path(alias="organisation_name"), + db: Session = Depends(get_db), +) -> OrganisationConfig: + return update_org(background_tasks, db, as_org, body) + + +@router.delete( + "/organisation/{organisation_name}", + response_model=None, + dependencies=[Depends(Authoriser(AuthType.RoleOnly, role=Role.Administrator))], +) +async def delete_org( + as_org: str = Path(alias="organisation_name"), + db: Session = Depends(get_db), +) -> None: + return remove_org(db, as_org) + + +@router.put( + "/organisation/{organisation_name}/show_page/{change_to}", + response_model=OrganisationConfig, + dependencies=[Depends(Authoriser(AuthType.OrgRole, role=Role.OrgDetail))], +) +async def put_org_show_page( + as_org: str = Path(alias="organisation_name"), + show_page: bool = Path(alias="change_to"), + db: Session = Depends(get_db), +) -> OrganisationConfig: + return update_org_show_page(db, as_org, show_page) + + +@router.get( + "/organisation/{organisation_name}/flow", + dependencies=[Depends(Authoriser(AuthType.OrgRole, role=Role.Administrator))], +) +async def get_one_flow( + db: Annotated[Session, Depends(get_db)], + as_org: str = Path(alias="organisation_name"), +) -> FlowStructure: + return flow_controller.get_one(db, as_org) diff --git a/backend/app/routers/organisation_details.py b/backend/app/routers/organisation_details.py new file mode 100644 index 00000000..f7d4178e --- /dev/null +++ b/backend/app/routers/organisation_details.py @@ -0,0 +1,36 @@ +from fastapi import BackgroundTasks, Depends, APIRouter, Path +from sqlalchemy.orm import Session +from app import schemas, controllers + +from app.middleware.authorisation.authoriser import AuthType, Authoriser +from app.middleware.authorisation.schemas import Role +from app.middleware.middleware import get_db + + +router = APIRouter() + + +@router.get( + "/organisation-details/{organisation_name}", + response_model=schemas.OrganisationDetailsDB, + dependencies=[Depends(Authoriser(AuthType.OrgRole, role=Role.OrgDetail))], +) +async def get_org_detail( + db: Session = Depends(get_db), + as_org: str = Path(alias="organisation_name"), +): + return controllers.get_org_detail(db, as_org) + + +@router.put( + "/organisation-details/{organisation_name}", + response_model=schemas.OrganisationDetailsDB, + dependencies=[Depends(Authoriser(AuthType.OrgRole, role=Role.OrgDetail))], +) +async def put_org_detail( + background_tasks: BackgroundTasks, + body: schemas.OrganisationDetailsUpdatable, + as_org: str = Path(alias="organisation_name"), + db: Session = Depends(get_db), +): + return controllers.update_org_details(background_tasks, db, as_org, body) diff --git a/backend/app/routers/organization.py b/backend/app/routers/organization.py new file mode 100644 index 00000000..6464da5e --- /dev/null +++ b/backend/app/routers/organization.py @@ -0,0 +1,36 @@ +from fastapi import Depends, APIRouter, Path +from sqlalchemy.orm import Session +from app import schemas, middleware +from app.controllers import get_orgs, create_org, update_org +from app.middleware.decorators import admin_only, publisher_only + +router = APIRouter() + + +@router.get("/organization", response_model=list[schemas.OrganisationIn]) +async def get_all_orgs( + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(middleware.get_current_user), +): + return get_orgs(db, user=user) + + +@router.post("/organization", response_model=None) +@admin_only +async def post_org( + body: schemas.OrganisationIn, + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(middleware.get_current_user), +): + create_org(db, body) + + +@router.put("/organization/{org_id}", response_model=None) +@publisher_only +async def put_org( + body: schemas.OrganisationIn, + as_org: str = Path(alias="org_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(middleware.get_current_user), +): + update_org(db, as_org, body) diff --git a/backend/app/routers/public/__init__.py b/backend/app/routers/public/__init__.py new file mode 100644 index 00000000..27aa71a6 --- /dev/null +++ b/backend/app/routers/public/__init__.py @@ -0,0 +1 @@ +from . import * # noqa diff --git a/backend/app/routers/public/aggregations.py b/backend/app/routers/public/aggregations.py new file mode 100644 index 00000000..2d42aae7 --- /dev/null +++ b/backend/app/routers/public/aggregations.py @@ -0,0 +1,101 @@ +from fastapi import APIRouter, Query +from fastapi import Depends +from pydantic import BaseModel +from app.middleware.authorisation.schemas import State +from app.middleware.middleware import get_db +from sqlalchemy.orm import Session +from sqlalchemy import text +from app.config.resource import Columns +from app import models +from app.config.settings import Settings +from app.util.logger import get_logger + +router = APIRouter() +logger = get_logger(__name__) +env_settings = Settings() + + +class Column(BaseModel): + column_name: str + is_nullable: str + + +@router.get("/columns/", response_model=list[Column]) +async def get_columns(db: Session = Depends(get_db)): + skip_columns = [ + "algoritme_id", + "id", + "create_dt", + "published", + "released", + "preview_active", + "language", + ] + skip_columns_statement = [ + f"AND column_name != '{column}' " for column in skip_columns + ] + stmt = text( + f"""SELECT column_name, is_nullable + FROM information_schema.columns + WHERE table_schema = 'public' + AND table_name = 'algoritme_version' + {" ".join(skip_columns_statement)} + ORDER BY ordinal_position + """ + ) + results = db.execute(stmt).all() + + output = [{"column_name": r[0], "is_nullable": r[1]} for r in results] + return output + + +@router.get("/db-count/{column}") +def get_count_per_type(column: Columns, db: Session = Depends(get_db)): + stmt = text( + f""" + SELECT count(1), {column.value} as descriptor + FROM algoritme_version + WHERE state = 'PUBLISHED' + AND language='NLD' + GROUP BY {column.value} + ORDER BY count(1) desc + LIMIT 20 + """ + ) + results = db.execute(stmt).all() + + output = [{"count": r[0], "descriptor": r[1]} for r in results] + + return output + + +@router.get("/completeness/") +async def get_count_with_filled_columns( + columns: list[Columns] = Query(default=None), db: Session = Depends(get_db) +): + ignore_columns = ["end_dt", "published", "released", "language", "state"] + columns_model_list = [ + col + for col in models.AlgoritmeVersion.__table__.columns + if col.key not in ignore_columns + ] + + if "*" not in columns: + columns_model_list = [col for col in columns_model_list if col.key in columns] + + table = ( + db.query(*columns_model_list) + .filter(models.AlgoritmeVersion.state == State.PUBLISHED) + .all() + ) + + def is_filled(cell) -> bool: + checks = [cell != "", cell is not None] + return all(checks) + + compliant_rows = [] + for row in table: + compliant_row = all([is_filled(cell) for cell in row]) + if compliant_row: + compliant_rows.append(row) + return len(compliant_rows) diff --git a/backend/app/routers/public/algorithm.py b/backend/app/routers/public/algorithm.py new file mode 100644 index 00000000..11436a9e --- /dev/null +++ b/backend/app/routers/public/algorithm.py @@ -0,0 +1,133 @@ +from fastapi import APIRouter, HTTPException, status, Depends, Path, BackgroundTasks +from sqlalchemy import desc, text +from sqlalchemy.orm import Session +from app import models, schemas, controllers, repositories +from app.config.settings import Settings +from app.config.org_name_mapping import org_name_mapping +from app.middleware.authorisation.schemas import State +from app.middleware.middleware import get_db +from app.schemas.misc import Language +from app.schemas.organization import OrganisationMappingResult +from app.services.algoritme_version import db_list_to_python_list +from app.controllers.smart_search import perform_smart_search, perform_suggestion_search +from app.controllers.precomputed_values import calc_highlighted_algorithms +from app.util.logger import get_logger + +router = APIRouter() +logger = get_logger(__name__) +env_settings = Settings() + + +@router.get("/algoritme/total-count") +async def get_total_count(db: Session = Depends(get_db)) -> int: + stmt = "SELECT count(id) FROM algoritme_version WHERE state = 'PUBLISHED' AND language='NLD'" + return db.execute(text(stmt)).scalar_one() + + +@router.post( + "/algoritme/{language}", + response_model=schemas.AlgoritmeQueryResponse, +) +async def get_all( + algoritme_query: schemas.algoritme_version.AlgoritmeQuery, + db: Session = Depends(get_db), + language: Language = Path(alias="language"), +) -> schemas.AlgoritmeQueryResponse: + return perform_smart_search(algoritme_query, db, language) + + +@router.get( + "/suggestion/{language}/{search}", response_model=schemas.SearchSuggestionResponse +) +async def get_search_suggestion( + search: str = "", + db: Session = Depends(get_db), + language: Language = Path(alias="language"), +) -> schemas.SearchSuggestionResponse: + return perform_suggestion_search(search, db, language) + + +@router.get("/organisation/{language}/{search}") +async def get_elaborate_organisation( + search: str = "", + language: Language = Path(alias="language"), + db: Session = Depends(get_db), +) -> schemas.OrganisationSearchSuggestionResponse | None: + org_repo = repositories.OrganisationRepository(db) + results = org_repo.get_overview_by_lang(language) + organisation_details = [ + schemas.OrganisationMappingResult(code=result.code, name=result.name) + for result in results + if search.lower() in result.name.lower() + ] + results_from_mapping = org_name_mapping.get(language, {}).get(search.lower(), {}) + + if results_from_mapping: + mapped_org = OrganisationMappingResult(**results_from_mapping) + return schemas.OrganisationSearchSuggestionResponse(organisations=[mapped_org]) + elif organisation_details: + return schemas.OrganisationSearchSuggestionResponse( + organisations=organisation_details + ) + + +@router.get( + "/algoritme/{language}/{lars}", + response_model=schemas.AlgoritmeVersionGetOne | None, +) +async def get_one( + lars: str, + background_tasks: BackgroundTasks, + db: Session = Depends(get_db), + language: Language = Path(alias="language"), +): + if lars[0] == "C": + result = ( + db.query(models.AlgoritmeVersion) + .join(models.Algoritme) + .filter( + models.Algoritme.lars == lars[1:], + models.AlgoritmeVersion.preview_active, + models.AlgoritmeVersion.language == language, + ) + .first() + ) + + background_tasks.add_task( + controllers.disable_preview, + lars=lars[1:], + db=db, + user="anonymous website visitor", + reason=schemas.OperationEnum.preview_used, + ) + else: + result = ( + db.query(models.AlgoritmeVersion) + .join(models.Algoritme) + .filter( + models.Algoritme.lars == lars, + models.AlgoritmeVersion.state == State.PUBLISHED, + models.AlgoritmeVersion.language == language, + ) + .order_by(desc(models.AlgoritmeVersion.create_dt)) + .first() + ) + + if not result: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail="Kan algoritme niet vinden.", + ) + + result = db_list_to_python_list(result) + return schemas.AlgoritmeVersionDB.from_orm(result) + + +@router.get( + "/highlighted/{language}", + response_model=list[schemas.HighlightedAlgorithmResponse], +) +async def get_highlighted( + db: Session = Depends(get_db), language: Language = Path(alias="language") +) -> list[schemas.HighlightedAlgorithmResponse]: + return calc_highlighted_algorithms(db, language) diff --git a/backend/app/routers/public/dashboard.py b/backend/app/routers/public/dashboard.py new file mode 100644 index 00000000..faba9e75 --- /dev/null +++ b/backend/app/routers/public/dashboard.py @@ -0,0 +1,104 @@ +from fastapi import APIRouter, Path +from fastapi import Depends +from app import schemas +from app.middleware.middleware import get_db +from sqlalchemy.orm import Session +from app.config.settings import Settings +from app.repositories.organisation import OrganisationRepository +from app.repositories.algoritme_version import AlgoritmeVersionRepository +from app.controllers.organisation.public import get_all_organisations_joined_date +from app.util.create_dict import create_dict +from app.schemas.misc import Language, OrgType +from app.schemas.organization import OrganisationGovernmental +from app.util.logger import get_logger +from fastapi_cache.decorator import cache +from app.controllers.html_figures import get_html_figures_recent +from app.controllers.governmental_organisations import get_governmental_organisations + + +router = APIRouter() +logger = get_logger(__name__) +env_settings = Settings() + + +@router.get("/organisation/top-20/{lang}") +@cache(namespace="dashboard", expire=60 * 60) # 1 hour +async def get_top_20_orgs( + db: Session = Depends(get_db), + lang: Language = Path(), +): + org = OrganisationRepository(db) + return org.get_top_20(lang) + + +@router.get( + "/organisation/joined-permonth", + response_model=list[schemas.OrganisationJoinedCount], +) +@cache(namespace="dashboard", expire=60 * 60) # 1 hour +async def get_joined_organisations_permonth(): + orgs = get_all_organisations_joined_date() + return create_dict(orgs) + + +@router.get( + "/algorithm/published-permonth", + response_model=list[schemas.AlgoritmeVersionEarliestPublishCount], +) +@cache(namespace="dashboard", expire=60 * 60) # 1 hour +async def get_published_algorithmdescriptions_permonth(db: Session = Depends(get_db)): + algo_repo = AlgoritmeVersionRepository(db) + algorithms = algo_repo.get_all_published_first_version() + return create_dict(algorithms) + + +@router.get( + "/algorithm/publication-categories/{lang}", + response_model=list[schemas.PublicationCategoryCount], +) +@cache(namespace="dashboard", expire=60 * 60) # 1 hour +async def get_publication_categories( + db: Session = Depends(get_db), + lang: Language = Path(), +): + algo_version_repo = AlgoritmeVersionRepository(db) + return algo_version_repo.get_all_published_by_pubcat(lang) + + +@router.get( + "/dashboard/figures", + response_model=schemas.HtmlFiguresOut, +) +async def html_figures(db: Session = Depends(get_db)): + return get_html_figures_recent(db) + + +@router.get( + "/organisation/municipalities", response_model=list[OrganisationGovernmental] +) +@cache(namespace="dashboard", expire=60 * 60) # 1 hour +async def get_all_municipalities(db: Session = Depends(get_db)): + return get_governmental_organisations(db, OrgType.gemeente) + + +@router.get("/organisation/provinces", response_model=list[OrganisationGovernmental]) +@cache(namespace="dashboard", expire=60 * 60) # 1 hour +async def get_all_provinces(db: Session = Depends(get_db)): + return get_governmental_organisations(db, OrgType.provincie) + + +@router.get( + "/organisation/water-authorities", response_model=list[OrganisationGovernmental] +) +@cache(namespace="dashboard", expire=60 * 60) # 1 hour +async def get_all_water_authorities(db: Session = Depends(get_db)): + return get_governmental_organisations(db, OrgType.waterschap) + + +@router.get( + "/organisation/environmental-services", + response_model=list[OrganisationGovernmental], +) +@cache(namespace="dashboard", expire=60 * 60) # 1 hour +async def get_all_environmental_services(db: Session = Depends(get_db)): + return get_governmental_organisations(db, OrgType.omgevingsdienst) diff --git a/backend/app/routers/public/default.py b/backend/app/routers/public/default.py new file mode 100644 index 00000000..7e56fa10 --- /dev/null +++ b/backend/app/routers/public/default.py @@ -0,0 +1,79 @@ +from fastapi import APIRouter, Depends +from sqlalchemy import text +from sqlalchemy.orm import Session +from app.config.settings import Keycloak, Settings +from app.middleware.authorisation.schemas import State +from app.middleware.middleware import get_db +from app.schemas.misc import Language +from app import models +from app.util.logger import get_logger + +router = APIRouter() +logger = get_logger(__name__) +env_settings = Settings() + + +@router.get("/sitemap-urls") +async def get_sitemap_urls(db: Session = Depends(get_db)): + algorithms_nl = ( + db.query(models.Algoritme) + .join( + models.AlgoritmeVersion, + models.Algoritme.id == models.AlgoritmeVersion.algoritme_id, + ) + .filter(models.AlgoritmeVersion.language == Language.NLD) + .filter(models.AlgoritmeVersion.state == State.PUBLISHED) + .order_by(models.Algoritme.lars) + .all() + ) + + result_dict = [] + for algorithm in algorithms_nl: + algo_dict = { + "loc": "/nl/algoritme/" + algorithm.lars, + "lastmod": algorithm.create_dt, + "changefreq": "daily", + } + result_dict.append(algo_dict) + + algorithms_en = ( + db.query(models.Algoritme) + .join( + models.AlgoritmeVersion, + models.Algoritme.id == models.AlgoritmeVersion.algoritme_id, + ) + .filter(models.AlgoritmeVersion.language == Language.ENG) + .filter(models.AlgoritmeVersion.state == State.PUBLISHED) + .order_by(models.Algoritme.lars) + .all() + ) + for algorithm in algorithms_en: + algo_dict = { + "loc": "/en/algoritme/" + algorithm.lars, + "lastmod": algorithm.create_dt, + "changefreq": "daily", + } + result_dict.append(algo_dict) + + return result_dict + + +@router.get("/health") +def healthcheck(db: Session = Depends(get_db)) -> str: + """ + Check whether the database still responds + """ + db.execute(text("SELECT 1")) # random query + return "OK" + + +@router.get("/config") +def get_config(): + """I cannot get variables in the frontend relating to differentiate between test, acc and prod""" + settings = Keycloak() + response = { + "keycloak_uri": settings.KEYCLOAK_URI, + "keycloak_realm": settings.KEYCLOAK_REALM, + "keycloak_client": settings.KEYCLOAK_CLIENT, + } + return response diff --git a/backend/app/routers/public/downloads.py b/backend/app/routers/public/downloads.py new file mode 100644 index 00000000..c29e9c3c --- /dev/null +++ b/backend/app/routers/public/downloads.py @@ -0,0 +1,102 @@ +import io +import json +from typing import Literal + +from fastapi import APIRouter, Path, Depends, Query, HTTPException +from fastapi.encoders import jsonable_encoder +from fastapi.responses import FileResponse, StreamingResponse +from sqlalchemy.orm import Session +from app import schemas + +from app.controllers import generate_download_file +from app.middleware.authorisation.schemas import State +from app.middleware.middleware import get_db +from app.repositories.algoritme_version import AlgoritmeVersionRepository +from app.repositories.organisation_details import OrganisationDetailsRepository +from app.schemas.misc import Language + +router = APIRouter() + + +@router.get( + "/downloads/{language}", + response_class=FileResponse, +) +async def get_file_all( + db: Session = Depends(get_db), + lang: Language = Path(alias="language"), + filetype: Literal["excel", "csv"] = Query(alias="filetype"), +): + if filetype not in ["excel", "csv"]: + raise HTTPException( + status_code=400, + detail="Filetype must be excel or csv", + ) + return generate_download_file( + db, lang, which_version="published", file_type=filetype + ) + + +@router.get( + "/downloads/algorithms/{algorithm_id}/{language}", + response_class=FileResponse, +) +async def get_file_one( + db: Session = Depends(get_db), + lars: str = Path(alias="algorithm_id"), + lang: Language = Path(alias="language"), + filetype: Literal["excel", "csv"] = Query(alias="filetype"), +): + if filetype not in ["excel", "csv"]: + raise HTTPException( + status_code=400, + detail="Filetype must be excel or csv", + ) + return generate_download_file( + db, lang, lars=lars, which_version="published", file_type=filetype + ) + + +@router.get( + "/downloads/site-data/json", + response_model=schemas.SiteData, +) +async def export_site_data_json(db: Session = Depends(get_db)): + org_details_repo = OrganisationDetailsRepository(db) + algo_version_repo = AlgoritmeVersionRepository(db) + + algos = algo_version_repo.get_all_published() + parsed_algos = [ + schemas.AlgoritmeVersionExport(**dict(algo)) + for algo in algos + if algo.owner != "sandbox" + ] + published_owners = list( + set([algo.owner for algo in algos if algo.state == State.PUBLISHED]) + ) + + org_details = org_details_repo.get_all() + parsed_org_details = [] + for org_detail in org_details: + if org_detail.code == "sandbox": + continue + if org_detail.code not in published_owners: + continue + if not org_detail.show_page: + org_detail.about = None + org_detail.contact_info = None + parsed_org_detail = schemas.OrganisationDetailsExport(**dict(org_detail)) + parsed_org_details.append(parsed_org_detail) + + site_data = schemas.SiteData( + algoritme_versions=parsed_algos, organisation_details=parsed_org_details + ) + site_data_json = jsonable_encoder(site_data) + + stream = io.BytesIO() + stream.write(json.dumps(site_data_json).encode()) + response = StreamingResponse(iter([stream.getvalue()]), media_type="json") + + response.headers["Content-Disposition"] = "attachment; filename=pub_data.json" + + return response diff --git a/backend/app/routers/public/organisation.py b/backend/app/routers/public/organisation.py new file mode 100644 index 00000000..51d5eb8d --- /dev/null +++ b/backend/app/routers/public/organisation.py @@ -0,0 +1,25 @@ +from fastapi import APIRouter, Path, Depends +from sqlalchemy.orm import Session +from app import schemas, controllers +from app.middleware.middleware import get_db +from app.schemas.misc import Language + + +router = APIRouter() + + +@router.post("/organisation/{language}") +async def get_some_orgs_overview( + query: schemas.OrganisationQuery, + language: Language = Path(alias="language"), + db: Session = Depends(get_db), +) -> schemas.OrganisationQueryResponse: + return controllers.get_orgs_by_query(db, query, language) + + +@router.get("/organisation-count/{language}") +async def get_orgs_count( + db: Session = Depends(get_db), + language: Language = Path(alias="language"), +) -> int: + return controllers.get_orgs_count(db, language) diff --git a/backend/app/routers/public/organisation_details.py b/backend/app/routers/public/organisation_details.py new file mode 100644 index 00000000..e838f43e --- /dev/null +++ b/backend/app/routers/public/organisation_details.py @@ -0,0 +1,20 @@ +from fastapi import APIRouter, Path, Depends +from sqlalchemy.orm import Session +from app import schemas, controllers +from app.middleware.middleware import get_db +from app.schemas.misc import Language + + +router = APIRouter() + + +@router.get("/{org_code}/{language}", response_model=schemas.OrganisationDetailsPage) +async def get_org_page_info( + db: Session = Depends(get_db), + org_code: str = Path(alias="org_code"), + lang: Language = Path(alias="language"), +) -> schemas.OrganisationDetailsPage: + """ + This endpoint is used for the organisation page on the public frontend + """ + return controllers.get_org_page_info(db, org_code, lang) diff --git a/backend/app/routers/public/precomputed_values.py b/backend/app/routers/public/precomputed_values.py new file mode 100644 index 00000000..2353d5b8 --- /dev/null +++ b/backend/app/routers/public/precomputed_values.py @@ -0,0 +1,16 @@ +from fastapi import APIRouter, Path, Depends +from sqlalchemy.orm import Session +from app import controllers +from app.middleware.middleware import get_db +from app.schemas.misc import Language + + +router = APIRouter() + + +@router.get("/precomputed/{language}") +async def get_precomputed_values( + language: Language = Path(alias="language"), + db: Session = Depends(get_db), +): + return controllers.get_precomputed_values_by_lang(db, language) diff --git a/backend/app/routers/public/text_loader.py b/backend/app/routers/public/text_loader.py new file mode 100644 index 00000000..e6dc04d4 --- /dev/null +++ b/backend/app/routers/public/text_loader.py @@ -0,0 +1,34 @@ +import logging +from fastapi import APIRouter, Body +import json +import os +from app.config.settings import Settings + +env_settings = Settings() + +GET_URL = "/api/supporting-text" +JSON_PATH = "app/data/text_loader/supporting_text.json" +JSON_DEFAULT_PATH = "app/data/static_content_default.json" + +include_in_schema = False + +logger = logging.getLogger(__name__) +router = APIRouter() + + +def get_content_json() -> dict[str, dict[str, dict[str, str]]]: + path = JSON_PATH if os.path.exists(JSON_PATH) else JSON_DEFAULT_PATH + with open(path) as f: + content: dict[str, dict[str, dict[str, str]]] = json.load(f) + return content + + +@router.get(GET_URL) +async def get_all_content(): + """ + Fetch all content. + + :return: Content in dictionary format: lang { group { field { key, label } }} + """ + content = get_content_json() + return content diff --git a/backend/app/routers/templates.py b/backend/app/routers/templates.py new file mode 100644 index 00000000..fabb9853 --- /dev/null +++ b/backend/app/routers/templates.py @@ -0,0 +1,43 @@ +from fastapi import APIRouter, Depends, Path, HTTPException, status +from app import schemas +from app.controllers import get_template_summary, get_template_by_id +from app.middleware.authorisation.authoriser import AuthType, Authoriser + +router = APIRouter() + +output_schemas = schemas.get_all_output_schemas_union() + + +@router.get( + "/{standard_version}", + response_model=list[schemas.StandardSupplier], + dependencies=[Depends(Authoriser(AuthType.BaseOnly))], +) +async def get_template_list( + standard_version: str = Path(alias="standard_version"), +): + standard_version_int = int(standard_version.replace(".", "")) + if standard_version_int < 10: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail="ONLY_VERSION_1.0_AND_HIGHER_IS_AVAILABLE", + ) + return get_template_summary(standard_version) + + +@router.get( + "/{standard_version}/{id}", + response_model=schemas.AlgoritmeVersionTemplate | None, + dependencies=[Depends(Authoriser(AuthType.BaseOnly))], +) +async def get_one_template( + standard_version: str = Path(alias="standard_version"), + id: str = Path(alias="id"), +): + standard_version_int = int(standard_version.replace(".", "")) + if standard_version_int < 10: + raise HTTPException( + status_code=status.HTTP_404_NOT_FOUND, + detail="ONLY_VERSION_1.0_AND_HIGHER_IS_AVAILABLE", + ) + return get_template_by_id(standard_version, id) diff --git a/backend/app/routers/user.py b/backend/app/routers/user.py new file mode 100644 index 00000000..c603e001 --- /dev/null +++ b/backend/app/routers/user.py @@ -0,0 +1,88 @@ +from typing import Annotated +from fastapi import Depends, APIRouter, Query +from sqlalchemy.orm import Session + +from app.middleware.authorisation.authoriser import AuthType, Authoriser +from app.middleware.authorisation.schemas import Role +from app.middleware.keycloak_authenticator import get_current_user +from app.middleware.middleware import get_db +from app.schemas.user import User +from app.services.keycloak.schemas import ( + KeycloakUser, + KeycloakUserNew, + KeycloakUserUpdate, +) +from app.schemas import GetUsersResponse +from app.controllers import user as user_controller + +router = APIRouter() + + +@router.get( + "/user", + dependencies=[Depends(Authoriser(AuthType.RoleOnly, role=Role.ICTU))], +) +async def get_all_users( + db: Annotated[Session, Depends(get_db)], + limit: int = Query(ge=1, le=50, default=10), + skip: int = Query(ge=0, default=0), + q: str | None = Query(max_length=50, default=None), + role: str | None = None, + org: str | None = None, +) -> GetUsersResponse: + return user_controller.get_all_users(db, limit, skip, q, role, org) + + +@router.post( + "/user", + dependencies=[Depends(Authoriser(AuthType.RoleOnly, role=Role.ICTU))], +) +async def create_user( + db: Annotated[Session, Depends(get_db)], + body: KeycloakUserNew, +) -> User: + return user_controller.create_user(db, body) + + +@router.get( + "/user/me", + dependencies=[Depends(Authoriser(AuthType.BaseOnly))], +) +async def get_me( + db: Session = Depends(get_db), + user: KeycloakUser = Depends(get_current_user), +) -> User: + return user_controller.get_user(db, user.id) + + +@router.get( + "/user/{user_id}", + dependencies=[Depends(Authoriser(AuthType.RoleOnly, role=Role.ICTU))], +) +async def get_user( + db: Annotated[Session, Depends(get_db)], + user_id: str, +) -> User: + return user_controller.get_user(db, user_id) + + +@router.put( + "/user/{user_id}", + dependencies=[Depends(Authoriser(AuthType.RoleOnly, role=Role.Administrator))], +) +async def update_user( + db: Annotated[Session, Depends(get_db)], + user_id: str, + body: KeycloakUserUpdate, +) -> User: + return user_controller.update_user(db, user_id, body) + + +@router.delete( + "/user/{user_id}", + dependencies=[Depends(Authoriser(AuthType.RoleOnly, role=Role.Administrator))], +) +async def delete_user( + user_id: str, +) -> None: + return user_controller.delete_user(user_id) diff --git a/backend/app/routers/v0_1/__init__.py b/backend/app/routers/v0_1/__init__.py new file mode 100644 index 00000000..735560ed --- /dev/null +++ b/backend/app/routers/v0_1/__init__.py @@ -0,0 +1 @@ +from .algoritme import api # noqa diff --git a/backend/app/routers/v0_1/algoritme.py b/backend/app/routers/v0_1/algoritme.py new file mode 100644 index 00000000..6122e9d6 --- /dev/null +++ b/backend/app/routers/v0_1/algoritme.py @@ -0,0 +1,379 @@ +from typing import Annotated +from fastapi import Depends, Path, FastAPI, APIRouter, BackgroundTasks, routing +from slowapi import Limiter, _rate_limit_exceeded_handler +from slowapi.util import get_remote_address +from slowapi.middleware import SlowAPIMiddleware +from slowapi.errors import RateLimitExceeded +from sqlalchemy.orm import Session +from app import schemas, controllers +from app.controllers.action import update_state_by_lars +from app.middleware.authorisation.authoriser import AuthType, Authoriser +from app.middleware.authorisation.require_ownership import RequireOwnership +from app.middleware.authorisation.schemas import Permission, Role +from app.middleware.keycloak_authenticator import get_current_user +from app.config.api import api_text, responses +from app.middleware.middleware import get_db +from app.services.keycloak import KeycloakUser + +version = __name__.split(".")[-2] +input_schema = schemas.create_algorithm_in_schema(version) +output_schemas = schemas.get_all_output_schemas_union() + +version_str = version[1:].replace("_", ".") +deprecation_notice = """ +<h3>⚠️ Belangrijke mededeling</h3> +De API versies 0.1.0, 0.4.0 en 1.0.0 worden voortaan verkort naar respectievelijk 0.1, 0.4 en 1.0. +<br> +Grebruik in de API URLs dus aanleverapi/<b>v0_1</b>, aanleverapi/<b>v0_4</b> en aanleverapi/<b>v1_0</b>. +""" + +api = FastAPI( + docs_url="/api-docs", + description=deprecation_notice, + title=f"Algoritmeregister aanlevering API, versie {version_str} ", + swagger_ui_parameters={ + "displayRequestDuration": True, + "defaultModelsExpandDepth": -1, + }, +) +limiter = Limiter(key_func=get_remote_address, default_limits=["25/minute"]) +api.state.limiter = limiter +api.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler) +api.add_middleware(SlowAPIMiddleware) + +router = APIRouter() +published_router = APIRouter() +action_router = APIRouter() + + +@router.get( + "/organizations/{organisation_name}/algorithms", + response_model=list[schemas.AlgorithmSummary], + responses=responses["get_all"], + summary=api_text["get_all"]["summary"], + description=api_text["get_all"]["description"], + dependencies=[Depends(Authoriser(AuthType.OrgOnly))], +) +async def get_all_algorithms( + db: Annotated[Session, Depends(get_db)], + _: str = Path(alias="organisation_name"), + as_org: str = Path(alias="organisation_name"), +) -> list[schemas.AlgorithmSummary]: + result = controllers.algoritme_version.get_algorithm_summary( + as_org=as_org, + db=db, + ) + return result + + +@router.get( + "/organizations/{organisation_name}/algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one"], + summary=api_text["get_one"]["summary"], + description=api_text["get_one"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.GET_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def get_one_algorithm( + db: Annotated[Session, Depends(get_db)], + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_newest(lars=lars, db=db) + + +@router.post( + "/organizations/{organisation_name}/algorithms", + response_model=schemas.NewAlgorithmResponse, + responses=responses["post"], + summary=api_text["post"]["summary"], + description=api_text["post"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.POST_ALGORITHM_VERSION + ) + ), + ], +) +async def create_one_algorithm( + db: Annotated[Session, Depends(get_db)], + body: input_schema, # type: ignore + _: str = Path(alias="organisation_name"), + as_org: str = Path(alias="organisation_name"), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.NewAlgorithmResponse: + # The standard_version can not be required, because it isn't according to BZK. + if body.standard_version is None: # type: ignore + body.standard_version = version_str + + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.post_one( + as_org=as_org, body=algoritme_version, db=db, user=user + ) + + +@router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}", + responses=responses["put"], + summary=api_text["put"]["summary"], + description=api_text["put"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.PUT_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def update_one_algorithm( + db: Annotated[Session, Depends(get_db)], + body: input_schema, # type: ignore + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.update_new_version( + body=algoritme_version, lars=lars, db=db, user=user + ) + + +@action_router.get( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/preview", + response_model=schemas.PreviewUrl, + responses=responses["preview"], + summary=api_text["preview"]["summary"], + description=api_text["preview"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.GET_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def get_one_preview_url( + db: Annotated[Session, Depends(get_db)], + background_tasks: BackgroundTasks, + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.PreviewUrl: + background_tasks.add_task( + controllers.algoritme_version.wait_then_disable_preview, lars=lars, db=db + ) + return controllers.algoritme_version.get_preview_link(lars=lars, db=db, user=user) + + +@published_router.get( + "/organizations/{organisation_name}/published-algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one_published"], + summary=api_text["get_one_published"]["summary"], + description=api_text["get_one_published"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.GET_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def get_one_published_algorithm( + db: Annotated[Session, Depends(get_db)], + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_published(lars=lars, db=db) + + +@action_router.delete( + "/organizations/{organisation_name}/published-algorithms/{algorithm_id}/retract", + responses=responses["delete"], + summary=api_text["delete"]["summary"], + description=api_text["delete"]["description"], + dependencies=[ + Depends( + Authoriser(AuthType.OrgRightStateChange, legacy_action_key="retract"), + ), + Depends(RequireOwnership), + ], +) +async def retract_one_published_algorithm( + db: Annotated[Session, Depends(get_db)], + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), +) -> None: + """ + Legacy endpoint, to be used only by ictu_last flows. + Equal to moving from PUBLISHED TO STATE_1. + """ + response = update_state_by_lars( + db=db, + user=user, + lars=lars, + as_org=as_org, + action_key="retract", + background_tasks=background_tasks, + ) + return response + + +@action_router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/release", + responses=responses["release"], + summary=api_text["release"]["summary"], + description=api_text["release"]["description"], + dependencies=[ + Depends( + Authoriser(AuthType.OrgRightStateChange, legacy_action_key="release"), + ), + Depends(RequireOwnership), + ], +) +async def release_one_algorithm( + db: Annotated[Session, Depends(get_db)], + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + """ + Legacy endpoint, to be used only by ictu_last flows. + Equal to moving from STATE_1 to STATE_2. + """ + response = update_state_by_lars( + db=db, + user=user, + lars=lars, + as_org=as_org, + action_key="release", + background_tasks=background_tasks, + ) + return response + + +@action_router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/publish", + responses=responses["publish"], + summary=api_text["publish"]["summary"], + description=api_text["publish"]["description"], + include_in_schema=False, + dependencies=[ + Depends(Authoriser(AuthType.OrgRightStateChange, legacy_action_key="publish")), + Depends(RequireOwnership), + ], +) +async def publish_one_algorithm( + background_tasks: BackgroundTasks, + lars: str = Path(alias="algorithm_id"), + as_org: str = Path(alias="organisation_name"), + db: Session = Depends(get_db), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + """ + Legacy endpoint, to be used only by ictu_last flows. + Equal to moving from STATE_2 to PUBLISHED. + """ + return update_state_by_lars( + db=db, + user=user, + lars=lars, + action_key="publish", + as_org=as_org, + background_tasks=background_tasks, + ) + + +@action_router.delete( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/remove", + responses=responses["remove"], + summary=api_text["remove"]["summary"], + description=api_text["remove"]["description"], + include_in_schema=False, + dependencies=[ + Depends(Authoriser(AuthType.RoleOnly, role=Role.Administrator)), + Depends(RequireOwnership), + ], +) +async def remove_one_algorithm( + db: Annotated[Session, Depends(get_db)], + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.remove_one(lars=lars, db=db) + + +@router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/archive_version", + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.PUT_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def archive_algorithm_version( + archive_request: schemas.ArchiveVersionRequest, + as_org: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), + db: Session = Depends(get_db), +) -> None: + return controllers.algoritme_version.set_archive_status( + version_id=archive_request.algorithm_version_id, + db=db, + archived=True, + user_id=user.username, + ) + + +@router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/unarchive_version", + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.PUT_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def unarchive_algorithm_version( + archive_request: schemas.ArchiveVersionRequest, + as_org: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), + db: Session = Depends(get_db), +) -> None: + return controllers.algoritme_version.set_archive_status( + version_id=archive_request.algorithm_version_id, + db=db, + archived=False, + user_id=user.username, + ) + + +api.include_router(router, tags=["Algoritmes in ontwikkeling"]) +api.include_router(published_router, tags=["Gepubliceerde algoritmes"]) +api.include_router(action_router, tags=["Acties"]) + +# Rename all the operation_id's in the schema to the name of the corresponding route. +for route in api.routes: + if isinstance(route, routing.APIRoute): + route.operation_id = route.name diff --git a/backend/app/routers/v0_1_0/__init__.py b/backend/app/routers/v0_1_0/__init__.py new file mode 100644 index 00000000..735560ed --- /dev/null +++ b/backend/app/routers/v0_1_0/__init__.py @@ -0,0 +1 @@ +from .algoritme import api # noqa diff --git a/backend/app/routers/v0_1_0/algoritme.py b/backend/app/routers/v0_1_0/algoritme.py new file mode 100644 index 00000000..afe0e853 --- /dev/null +++ b/backend/app/routers/v0_1_0/algoritme.py @@ -0,0 +1,238 @@ +from fastapi import Depends, Path, FastAPI, APIRouter, BackgroundTasks, routing +from slowapi import Limiter, _rate_limit_exceeded_handler +from slowapi.util import get_remote_address +from slowapi.middleware import SlowAPIMiddleware +from slowapi.errors import RateLimitExceeded +from sqlalchemy.orm import Session +from app import schemas, middleware, controllers +from app.middleware.decorators import authorized_user_only, publisher_only, admin_only +from app.middleware.keycloak_authenticator import get_current_user +from app.config.api import api_text, responses + +version = __name__.split(".")[-2] +input_schema = schemas.create_algorithm_in_schema(version) +output_schemas = schemas.get_all_output_schemas_union() + +version_str = version[1:].replace("_", ".") +api = FastAPI( + docs_url="/api-docs", + title=f"Algoritmeregister aanlevering API, versie {version_str} ", + swagger_ui_parameters={ + "displayRequestDuration": True, + "defaultModelsExpandDepth": -1, + }, +) +limiter = Limiter(key_func=get_remote_address, default_limits=["15/minute"]) +api.state.limiter = limiter +api.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler) +api.add_middleware(SlowAPIMiddleware) + +router = APIRouter() +published_router = APIRouter() +action_router = APIRouter() + + +@router.get( + "/organizations/{organization_name}/algorithms", + response_model=list[schemas.AlgorithmSummary], + responses=responses["get_all"], + summary=api_text["get_all"]["summary"], + description=api_text["get_all"]["description"], +) +@authorized_user_only +async def get_all_algorithms( + as_org: str = Path(alias="organization_name"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(middleware.get_current_user), +) -> list[schemas.AlgorithmSummary]: + result = controllers.algoritme_version.get_algorithm_summary( + as_org=as_org, + db=db, + ) + return result + + +@router.get( + "/organizations/{organization_name}/algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one"], + summary=api_text["get_one"]["summary"], + description=api_text["get_one"]["description"], +) +@authorized_user_only +async def get_one_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_newest(lars=lars, db=db) + + +@router.post( + "/organizations/{organization_name}/algorithms", + response_model=schemas.NewAlgorithmResponse, + responses=responses["post"], + summary=api_text["post"]["summary"], + description=api_text["post"]["description"], +) +@authorized_user_only +async def create_one_algorithm( + body: input_schema, + as_org: str = Path(alias="organization_name"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.NewAlgorithmResponse: + # The standard_version can not be required, because it isn't according to BZK. + if body.standard_version is None: # type: ignore + body.standard_version = version_str + + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.post_one( + as_org=as_org, body=algoritme_version, db=db, user=user + ) + + +@router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}", + responses=responses["put"], + summary=api_text["put"]["summary"], + description=api_text["put"]["description"], +) +@authorized_user_only +async def update_one_algorithm( + body: input_schema, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.update_new_version( + body=algoritme_version, lars=lars, db=db, user=user + ) + + +@action_router.get( + "/organizations/{organization_name}/algorithms/{algorithm_id}/preview", + response_model=schemas.PreviewUrl, + responses=responses["preview"], + summary=api_text["preview"]["summary"], + description=api_text["preview"]["description"], +) +@authorized_user_only +async def get_one_preview_url( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.PreviewUrl: + background_tasks.add_task( + controllers.algoritme_version.wait_then_disable_preview, lars=lars, db=db + ) + return controllers.algoritme_version.get_preview_link(lars=lars, db=db, user=user) + + +@published_router.get( + "/organizations/{organization_name}/published-algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one_published"], + summary=api_text["get_one_published"]["summary"], + description=api_text["get_one_published"]["description"], +) +@authorized_user_only +async def get_one_published_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_published(lars=lars, db=db) + + +@action_router.delete( + "/organizations/{organization_name}/published-algorithms/{algorithm_id}/retract", + responses=responses["delete"], + summary=api_text["delete"]["summary"], + description=api_text["delete"]["description"], +) +@authorized_user_only +async def retract_one_published_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> None: + response = controllers.algoritme_version.retract_one(lars=lars, db=db, user=user) + background_tasks.add_task(controllers.handle_retract_mail, lars, db) + return response + + +@action_router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}/release", + responses=responses["release"], + summary=api_text["release"]["summary"], + description=api_text["release"]["description"], +) +@authorized_user_only +async def release_one_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + response = controllers.algoritme_version.release_one(lars=lars, db=db, user=user) + background_tasks.add_task(controllers.handle_release_mail, lars, db) + return response + + +@action_router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}/publish", + responses=responses["publish"], + summary=api_text["publish"]["summary"], + description=api_text["publish"]["description"], + include_in_schema=False, +) +@publisher_only +@authorized_user_only +async def publish_one_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.publish_one( + background_tasks=background_tasks, lars=lars, db=db, user=user + ) + + +@action_router.delete( + "/organizations/{organization_name}/algorithms/{algorithm_id}/remove", + responses=responses["remove"], + summary=api_text["remove"]["summary"], + description=api_text["remove"]["description"], + include_in_schema=False, +) +@admin_only +@authorized_user_only +async def remove_one_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.remove_one(lars=lars, db=db) + + +api.include_router(router, tags=["Algoritmes in ontwikkeling"]) +api.include_router(published_router, tags=["Gepubliceerde algoritmes"]) +api.include_router(action_router, tags=["Acties"]) + +# Rename all the operation_id's in the schema to the name of the corresponding route. +for route in api.routes: + if isinstance(route, routing.APIRoute): + route.operation_id = route.name diff --git a/backend/app/routers/v0_2_3/__init__.py b/backend/app/routers/v0_2_3/__init__.py new file mode 100644 index 00000000..735560ed --- /dev/null +++ b/backend/app/routers/v0_2_3/__init__.py @@ -0,0 +1 @@ +from .algoritme import api # noqa diff --git a/backend/app/routers/v0_2_3/algoritme.py b/backend/app/routers/v0_2_3/algoritme.py new file mode 100644 index 00000000..afe0e853 --- /dev/null +++ b/backend/app/routers/v0_2_3/algoritme.py @@ -0,0 +1,238 @@ +from fastapi import Depends, Path, FastAPI, APIRouter, BackgroundTasks, routing +from slowapi import Limiter, _rate_limit_exceeded_handler +from slowapi.util import get_remote_address +from slowapi.middleware import SlowAPIMiddleware +from slowapi.errors import RateLimitExceeded +from sqlalchemy.orm import Session +from app import schemas, middleware, controllers +from app.middleware.decorators import authorized_user_only, publisher_only, admin_only +from app.middleware.keycloak_authenticator import get_current_user +from app.config.api import api_text, responses + +version = __name__.split(".")[-2] +input_schema = schemas.create_algorithm_in_schema(version) +output_schemas = schemas.get_all_output_schemas_union() + +version_str = version[1:].replace("_", ".") +api = FastAPI( + docs_url="/api-docs", + title=f"Algoritmeregister aanlevering API, versie {version_str} ", + swagger_ui_parameters={ + "displayRequestDuration": True, + "defaultModelsExpandDepth": -1, + }, +) +limiter = Limiter(key_func=get_remote_address, default_limits=["15/minute"]) +api.state.limiter = limiter +api.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler) +api.add_middleware(SlowAPIMiddleware) + +router = APIRouter() +published_router = APIRouter() +action_router = APIRouter() + + +@router.get( + "/organizations/{organization_name}/algorithms", + response_model=list[schemas.AlgorithmSummary], + responses=responses["get_all"], + summary=api_text["get_all"]["summary"], + description=api_text["get_all"]["description"], +) +@authorized_user_only +async def get_all_algorithms( + as_org: str = Path(alias="organization_name"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(middleware.get_current_user), +) -> list[schemas.AlgorithmSummary]: + result = controllers.algoritme_version.get_algorithm_summary( + as_org=as_org, + db=db, + ) + return result + + +@router.get( + "/organizations/{organization_name}/algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one"], + summary=api_text["get_one"]["summary"], + description=api_text["get_one"]["description"], +) +@authorized_user_only +async def get_one_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_newest(lars=lars, db=db) + + +@router.post( + "/organizations/{organization_name}/algorithms", + response_model=schemas.NewAlgorithmResponse, + responses=responses["post"], + summary=api_text["post"]["summary"], + description=api_text["post"]["description"], +) +@authorized_user_only +async def create_one_algorithm( + body: input_schema, + as_org: str = Path(alias="organization_name"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.NewAlgorithmResponse: + # The standard_version can not be required, because it isn't according to BZK. + if body.standard_version is None: # type: ignore + body.standard_version = version_str + + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.post_one( + as_org=as_org, body=algoritme_version, db=db, user=user + ) + + +@router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}", + responses=responses["put"], + summary=api_text["put"]["summary"], + description=api_text["put"]["description"], +) +@authorized_user_only +async def update_one_algorithm( + body: input_schema, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.update_new_version( + body=algoritme_version, lars=lars, db=db, user=user + ) + + +@action_router.get( + "/organizations/{organization_name}/algorithms/{algorithm_id}/preview", + response_model=schemas.PreviewUrl, + responses=responses["preview"], + summary=api_text["preview"]["summary"], + description=api_text["preview"]["description"], +) +@authorized_user_only +async def get_one_preview_url( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.PreviewUrl: + background_tasks.add_task( + controllers.algoritme_version.wait_then_disable_preview, lars=lars, db=db + ) + return controllers.algoritme_version.get_preview_link(lars=lars, db=db, user=user) + + +@published_router.get( + "/organizations/{organization_name}/published-algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one_published"], + summary=api_text["get_one_published"]["summary"], + description=api_text["get_one_published"]["description"], +) +@authorized_user_only +async def get_one_published_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_published(lars=lars, db=db) + + +@action_router.delete( + "/organizations/{organization_name}/published-algorithms/{algorithm_id}/retract", + responses=responses["delete"], + summary=api_text["delete"]["summary"], + description=api_text["delete"]["description"], +) +@authorized_user_only +async def retract_one_published_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> None: + response = controllers.algoritme_version.retract_one(lars=lars, db=db, user=user) + background_tasks.add_task(controllers.handle_retract_mail, lars, db) + return response + + +@action_router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}/release", + responses=responses["release"], + summary=api_text["release"]["summary"], + description=api_text["release"]["description"], +) +@authorized_user_only +async def release_one_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + response = controllers.algoritme_version.release_one(lars=lars, db=db, user=user) + background_tasks.add_task(controllers.handle_release_mail, lars, db) + return response + + +@action_router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}/publish", + responses=responses["publish"], + summary=api_text["publish"]["summary"], + description=api_text["publish"]["description"], + include_in_schema=False, +) +@publisher_only +@authorized_user_only +async def publish_one_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.publish_one( + background_tasks=background_tasks, lars=lars, db=db, user=user + ) + + +@action_router.delete( + "/organizations/{organization_name}/algorithms/{algorithm_id}/remove", + responses=responses["remove"], + summary=api_text["remove"]["summary"], + description=api_text["remove"]["description"], + include_in_schema=False, +) +@admin_only +@authorized_user_only +async def remove_one_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.remove_one(lars=lars, db=db) + + +api.include_router(router, tags=["Algoritmes in ontwikkeling"]) +api.include_router(published_router, tags=["Gepubliceerde algoritmes"]) +api.include_router(action_router, tags=["Acties"]) + +# Rename all the operation_id's in the schema to the name of the corresponding route. +for route in api.routes: + if isinstance(route, routing.APIRoute): + route.operation_id = route.name diff --git a/backend/app/routers/v0_3_1/__init__.py b/backend/app/routers/v0_3_1/__init__.py new file mode 100644 index 00000000..735560ed --- /dev/null +++ b/backend/app/routers/v0_3_1/__init__.py @@ -0,0 +1 @@ +from .algoritme import api # noqa diff --git a/backend/app/routers/v0_3_1/algoritme.py b/backend/app/routers/v0_3_1/algoritme.py new file mode 100644 index 00000000..afe0e853 --- /dev/null +++ b/backend/app/routers/v0_3_1/algoritme.py @@ -0,0 +1,238 @@ +from fastapi import Depends, Path, FastAPI, APIRouter, BackgroundTasks, routing +from slowapi import Limiter, _rate_limit_exceeded_handler +from slowapi.util import get_remote_address +from slowapi.middleware import SlowAPIMiddleware +from slowapi.errors import RateLimitExceeded +from sqlalchemy.orm import Session +from app import schemas, middleware, controllers +from app.middleware.decorators import authorized_user_only, publisher_only, admin_only +from app.middleware.keycloak_authenticator import get_current_user +from app.config.api import api_text, responses + +version = __name__.split(".")[-2] +input_schema = schemas.create_algorithm_in_schema(version) +output_schemas = schemas.get_all_output_schemas_union() + +version_str = version[1:].replace("_", ".") +api = FastAPI( + docs_url="/api-docs", + title=f"Algoritmeregister aanlevering API, versie {version_str} ", + swagger_ui_parameters={ + "displayRequestDuration": True, + "defaultModelsExpandDepth": -1, + }, +) +limiter = Limiter(key_func=get_remote_address, default_limits=["15/minute"]) +api.state.limiter = limiter +api.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler) +api.add_middleware(SlowAPIMiddleware) + +router = APIRouter() +published_router = APIRouter() +action_router = APIRouter() + + +@router.get( + "/organizations/{organization_name}/algorithms", + response_model=list[schemas.AlgorithmSummary], + responses=responses["get_all"], + summary=api_text["get_all"]["summary"], + description=api_text["get_all"]["description"], +) +@authorized_user_only +async def get_all_algorithms( + as_org: str = Path(alias="organization_name"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(middleware.get_current_user), +) -> list[schemas.AlgorithmSummary]: + result = controllers.algoritme_version.get_algorithm_summary( + as_org=as_org, + db=db, + ) + return result + + +@router.get( + "/organizations/{organization_name}/algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one"], + summary=api_text["get_one"]["summary"], + description=api_text["get_one"]["description"], +) +@authorized_user_only +async def get_one_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_newest(lars=lars, db=db) + + +@router.post( + "/organizations/{organization_name}/algorithms", + response_model=schemas.NewAlgorithmResponse, + responses=responses["post"], + summary=api_text["post"]["summary"], + description=api_text["post"]["description"], +) +@authorized_user_only +async def create_one_algorithm( + body: input_schema, + as_org: str = Path(alias="organization_name"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.NewAlgorithmResponse: + # The standard_version can not be required, because it isn't according to BZK. + if body.standard_version is None: # type: ignore + body.standard_version = version_str + + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.post_one( + as_org=as_org, body=algoritme_version, db=db, user=user + ) + + +@router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}", + responses=responses["put"], + summary=api_text["put"]["summary"], + description=api_text["put"]["description"], +) +@authorized_user_only +async def update_one_algorithm( + body: input_schema, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.update_new_version( + body=algoritme_version, lars=lars, db=db, user=user + ) + + +@action_router.get( + "/organizations/{organization_name}/algorithms/{algorithm_id}/preview", + response_model=schemas.PreviewUrl, + responses=responses["preview"], + summary=api_text["preview"]["summary"], + description=api_text["preview"]["description"], +) +@authorized_user_only +async def get_one_preview_url( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.PreviewUrl: + background_tasks.add_task( + controllers.algoritme_version.wait_then_disable_preview, lars=lars, db=db + ) + return controllers.algoritme_version.get_preview_link(lars=lars, db=db, user=user) + + +@published_router.get( + "/organizations/{organization_name}/published-algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one_published"], + summary=api_text["get_one_published"]["summary"], + description=api_text["get_one_published"]["description"], +) +@authorized_user_only +async def get_one_published_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_published(lars=lars, db=db) + + +@action_router.delete( + "/organizations/{organization_name}/published-algorithms/{algorithm_id}/retract", + responses=responses["delete"], + summary=api_text["delete"]["summary"], + description=api_text["delete"]["description"], +) +@authorized_user_only +async def retract_one_published_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> None: + response = controllers.algoritme_version.retract_one(lars=lars, db=db, user=user) + background_tasks.add_task(controllers.handle_retract_mail, lars, db) + return response + + +@action_router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}/release", + responses=responses["release"], + summary=api_text["release"]["summary"], + description=api_text["release"]["description"], +) +@authorized_user_only +async def release_one_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + response = controllers.algoritme_version.release_one(lars=lars, db=db, user=user) + background_tasks.add_task(controllers.handle_release_mail, lars, db) + return response + + +@action_router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}/publish", + responses=responses["publish"], + summary=api_text["publish"]["summary"], + description=api_text["publish"]["description"], + include_in_schema=False, +) +@publisher_only +@authorized_user_only +async def publish_one_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.publish_one( + background_tasks=background_tasks, lars=lars, db=db, user=user + ) + + +@action_router.delete( + "/organizations/{organization_name}/algorithms/{algorithm_id}/remove", + responses=responses["remove"], + summary=api_text["remove"]["summary"], + description=api_text["remove"]["description"], + include_in_schema=False, +) +@admin_only +@authorized_user_only +async def remove_one_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.remove_one(lars=lars, db=db) + + +api.include_router(router, tags=["Algoritmes in ontwikkeling"]) +api.include_router(published_router, tags=["Gepubliceerde algoritmes"]) +api.include_router(action_router, tags=["Acties"]) + +# Rename all the operation_id's in the schema to the name of the corresponding route. +for route in api.routes: + if isinstance(route, routing.APIRoute): + route.operation_id = route.name diff --git a/backend/app/routers/v0_4/__init__.py b/backend/app/routers/v0_4/__init__.py new file mode 100644 index 00000000..735560ed --- /dev/null +++ b/backend/app/routers/v0_4/__init__.py @@ -0,0 +1 @@ +from .algoritme import api # noqa diff --git a/backend/app/routers/v0_4/algoritme.py b/backend/app/routers/v0_4/algoritme.py new file mode 100644 index 00000000..c41d4bd3 --- /dev/null +++ b/backend/app/routers/v0_4/algoritme.py @@ -0,0 +1,378 @@ +from typing import Annotated +from fastapi import Depends, Path, FastAPI, APIRouter, BackgroundTasks, routing +from slowapi import Limiter, _rate_limit_exceeded_handler +from slowapi.util import get_remote_address +from slowapi.middleware import SlowAPIMiddleware +from slowapi.errors import RateLimitExceeded +from sqlalchemy.orm import Session +from app import schemas, controllers +from app.controllers.action import update_state_by_lars +from app.middleware.authorisation.authoriser import AuthType, Authoriser +from app.middleware.authorisation.require_ownership import RequireOwnership +from app.middleware.authorisation.schemas import Permission, Role +from app.middleware.keycloak_authenticator import get_current_user +from app.config.api import api_text, responses +from app.middleware.middleware import get_db +from app.services.keycloak import KeycloakUser + +version = __name__.split(".")[-2] +input_schema = schemas.create_algorithm_in_schema(version) +output_schemas = schemas.get_all_output_schemas_union() + +version_str = version[1:].replace("_", ".") +deprecation_notice = """ +<h3>⚠️ Belangrijke mededeling</h3> +De API versies 0.1.0, 0.4.0 en 1.0.0 worden voortaan verkort naar respectievelijk 0.1, 0.4 en 1.0. +<br> +Grebruik in de API URLs dus aanleverapi/<b>v0_1</b>, aanleverapi/<b>v0_4</b> en aanleverapi/<b>v1_0</b>. +""" +api = FastAPI( + docs_url="/api-docs", + description=deprecation_notice, + title=f"Algoritmeregister aanlevering API, versie {version_str} ", + swagger_ui_parameters={ + "displayRequestDuration": True, + "defaultModelsExpandDepth": -1, + }, +) +limiter = Limiter(key_func=get_remote_address, default_limits=["25/minute"]) +api.state.limiter = limiter +api.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler) +api.add_middleware(SlowAPIMiddleware) + +router = APIRouter() +published_router = APIRouter() +action_router = APIRouter() + + +@router.get( + "/organizations/{organisation_name}/algorithms", + response_model=list[schemas.AlgorithmSummary], + responses=responses["get_all"], + summary=api_text["get_all"]["summary"], + description=api_text["get_all"]["description"], + dependencies=[Depends(Authoriser(AuthType.OrgOnly))], +) +async def get_all_algorithms( + db: Annotated[Session, Depends(get_db)], + _: str = Path(alias="organisation_name"), + as_org: str = Path(alias="organisation_name"), +) -> list[schemas.AlgorithmSummary]: + result = controllers.algoritme_version.get_algorithm_summary( + as_org=as_org, + db=db, + ) + return result + + +@router.get( + "/organizations/{organisation_name}/algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one"], + summary=api_text["get_one"]["summary"], + description=api_text["get_one"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.GET_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def get_one_algorithm( + db: Annotated[Session, Depends(get_db)], + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_newest(lars=lars, db=db) + + +@router.post( + "/organizations/{organisation_name}/algorithms", + response_model=schemas.NewAlgorithmResponse, + responses=responses["post"], + summary=api_text["post"]["summary"], + description=api_text["post"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.POST_ALGORITHM_VERSION + ) + ), + ], +) +async def create_one_algorithm( + db: Annotated[Session, Depends(get_db)], + body: input_schema, # type: ignore + _: str = Path(alias="organisation_name"), + as_org: str = Path(alias="organisation_name"), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.NewAlgorithmResponse: + # The standard_version can not be required, because it isn't according to BZK. + if body.standard_version is None: # type: ignore + body.standard_version = version_str + + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.post_one( + as_org=as_org, body=algoritme_version, db=db, user=user + ) + + +@router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}", + responses=responses["put"], + summary=api_text["put"]["summary"], + description=api_text["put"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.PUT_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def update_one_algorithm( + db: Annotated[Session, Depends(get_db)], + body: input_schema, # type: ignore + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.update_new_version( + body=algoritme_version, lars=lars, db=db, user=user + ) + + +@action_router.get( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/preview", + response_model=schemas.PreviewUrl, + responses=responses["preview"], + summary=api_text["preview"]["summary"], + description=api_text["preview"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.GET_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def get_one_preview_url( + db: Annotated[Session, Depends(get_db)], + background_tasks: BackgroundTasks, + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.PreviewUrl: + background_tasks.add_task( + controllers.algoritme_version.wait_then_disable_preview, lars=lars, db=db + ) + return controllers.algoritme_version.get_preview_link(lars=lars, db=db, user=user) + + +@published_router.get( + "/organizations/{organisation_name}/published-algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one_published"], + summary=api_text["get_one_published"]["summary"], + description=api_text["get_one_published"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.GET_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def get_one_published_algorithm( + db: Annotated[Session, Depends(get_db)], + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_published(lars=lars, db=db) + + +@action_router.delete( + "/organizations/{organisation_name}/published-algorithms/{algorithm_id}/retract", + responses=responses["delete"], + summary=api_text["delete"]["summary"], + description=api_text["delete"]["description"], + dependencies=[ + Depends( + Authoriser(AuthType.OrgRightStateChange, legacy_action_key="retract"), + ), + Depends(RequireOwnership), + ], +) +async def retract_one_published_algorithm( + db: Annotated[Session, Depends(get_db)], + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), +) -> None: + """ + Legacy endpoint, to be used only by ictu_last flows. + Equal to moving from PUBLISHED TO STATE_1. + """ + response = update_state_by_lars( + db=db, + user=user, + lars=lars, + as_org=as_org, + action_key="retract", + background_tasks=background_tasks, + ) + return response + + +@action_router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/release", + responses=responses["release"], + summary=api_text["release"]["summary"], + description=api_text["release"]["description"], + dependencies=[ + Depends( + Authoriser(AuthType.OrgRightStateChange, legacy_action_key="release"), + ), + Depends(RequireOwnership), + ], +) +async def release_one_algorithm( + db: Annotated[Session, Depends(get_db)], + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + """ + Legacy endpoint, to be used only by ictu_last flows. + Equal to moving from STATE_1 to STATE_2. + """ + response = update_state_by_lars( + db=db, + user=user, + lars=lars, + as_org=as_org, + action_key="release", + background_tasks=background_tasks, + ) + return response + + +@action_router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/publish", + responses=responses["publish"], + summary=api_text["publish"]["summary"], + description=api_text["publish"]["description"], + include_in_schema=False, + dependencies=[ + Depends(Authoriser(AuthType.OrgRightStateChange, legacy_action_key="publish")), + Depends(RequireOwnership), + ], +) +async def publish_one_algorithm( + background_tasks: BackgroundTasks, + lars: str = Path(alias="algorithm_id"), + as_org: str = Path(alias="organisation_name"), + db: Session = Depends(get_db), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + """ + Legacy endpoint, to be used only by ictu_last flows. + Equal to moving from STATE_2 to PUBLISHED. + """ + return update_state_by_lars( + db=db, + user=user, + lars=lars, + action_key="publish", + as_org=as_org, + background_tasks=background_tasks, + ) + + +@action_router.delete( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/remove", + responses=responses["remove"], + summary=api_text["remove"]["summary"], + description=api_text["remove"]["description"], + include_in_schema=False, + dependencies=[ + Depends(Authoriser(AuthType.RoleOnly, role=Role.Administrator)), + Depends(RequireOwnership), + ], +) +async def remove_one_algorithm( + db: Annotated[Session, Depends(get_db)], + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.remove_one(lars=lars, db=db) + + +@router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/archive_version", + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.PUT_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def archive_algorithm_version( + archive_request: schemas.ArchiveVersionRequest, + as_org: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), + db: Session = Depends(get_db), +) -> None: + return controllers.algoritme_version.set_archive_status( + version_id=archive_request.algorithm_version_id, + db=db, + archived=True, + user_id=user.username, + ) + + +@router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/unarchive_version", + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.PUT_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def unarchive_algorithm_version( + archive_request: schemas.ArchiveVersionRequest, + as_org: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), + db: Session = Depends(get_db), +) -> None: + return controllers.algoritme_version.set_archive_status( + version_id=archive_request.algorithm_version_id, + db=db, + archived=False, + user_id=user.username, + ) + + +api.include_router(router, tags=["Algoritmes in ontwikkeling"]) +api.include_router(published_router, tags=["Gepubliceerde algoritmes"]) +api.include_router(action_router, tags=["Acties"]) + +# Rename all the operation_id's in the schema to the name of the corresponding route. +for route in api.routes: + if isinstance(route, routing.APIRoute): + route.operation_id = route.name diff --git a/backend/app/routers/v0_4_0/__init__.py b/backend/app/routers/v0_4_0/__init__.py new file mode 100644 index 00000000..735560ed --- /dev/null +++ b/backend/app/routers/v0_4_0/__init__.py @@ -0,0 +1 @@ +from .algoritme import api # noqa diff --git a/backend/app/routers/v0_4_0/algoritme.py b/backend/app/routers/v0_4_0/algoritme.py new file mode 100644 index 00000000..afe0e853 --- /dev/null +++ b/backend/app/routers/v0_4_0/algoritme.py @@ -0,0 +1,238 @@ +from fastapi import Depends, Path, FastAPI, APIRouter, BackgroundTasks, routing +from slowapi import Limiter, _rate_limit_exceeded_handler +from slowapi.util import get_remote_address +from slowapi.middleware import SlowAPIMiddleware +from slowapi.errors import RateLimitExceeded +from sqlalchemy.orm import Session +from app import schemas, middleware, controllers +from app.middleware.decorators import authorized_user_only, publisher_only, admin_only +from app.middleware.keycloak_authenticator import get_current_user +from app.config.api import api_text, responses + +version = __name__.split(".")[-2] +input_schema = schemas.create_algorithm_in_schema(version) +output_schemas = schemas.get_all_output_schemas_union() + +version_str = version[1:].replace("_", ".") +api = FastAPI( + docs_url="/api-docs", + title=f"Algoritmeregister aanlevering API, versie {version_str} ", + swagger_ui_parameters={ + "displayRequestDuration": True, + "defaultModelsExpandDepth": -1, + }, +) +limiter = Limiter(key_func=get_remote_address, default_limits=["15/minute"]) +api.state.limiter = limiter +api.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler) +api.add_middleware(SlowAPIMiddleware) + +router = APIRouter() +published_router = APIRouter() +action_router = APIRouter() + + +@router.get( + "/organizations/{organization_name}/algorithms", + response_model=list[schemas.AlgorithmSummary], + responses=responses["get_all"], + summary=api_text["get_all"]["summary"], + description=api_text["get_all"]["description"], +) +@authorized_user_only +async def get_all_algorithms( + as_org: str = Path(alias="organization_name"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(middleware.get_current_user), +) -> list[schemas.AlgorithmSummary]: + result = controllers.algoritme_version.get_algorithm_summary( + as_org=as_org, + db=db, + ) + return result + + +@router.get( + "/organizations/{organization_name}/algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one"], + summary=api_text["get_one"]["summary"], + description=api_text["get_one"]["description"], +) +@authorized_user_only +async def get_one_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_newest(lars=lars, db=db) + + +@router.post( + "/organizations/{organization_name}/algorithms", + response_model=schemas.NewAlgorithmResponse, + responses=responses["post"], + summary=api_text["post"]["summary"], + description=api_text["post"]["description"], +) +@authorized_user_only +async def create_one_algorithm( + body: input_schema, + as_org: str = Path(alias="organization_name"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.NewAlgorithmResponse: + # The standard_version can not be required, because it isn't according to BZK. + if body.standard_version is None: # type: ignore + body.standard_version = version_str + + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.post_one( + as_org=as_org, body=algoritme_version, db=db, user=user + ) + + +@router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}", + responses=responses["put"], + summary=api_text["put"]["summary"], + description=api_text["put"]["description"], +) +@authorized_user_only +async def update_one_algorithm( + body: input_schema, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.update_new_version( + body=algoritme_version, lars=lars, db=db, user=user + ) + + +@action_router.get( + "/organizations/{organization_name}/algorithms/{algorithm_id}/preview", + response_model=schemas.PreviewUrl, + responses=responses["preview"], + summary=api_text["preview"]["summary"], + description=api_text["preview"]["description"], +) +@authorized_user_only +async def get_one_preview_url( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.PreviewUrl: + background_tasks.add_task( + controllers.algoritme_version.wait_then_disable_preview, lars=lars, db=db + ) + return controllers.algoritme_version.get_preview_link(lars=lars, db=db, user=user) + + +@published_router.get( + "/organizations/{organization_name}/published-algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one_published"], + summary=api_text["get_one_published"]["summary"], + description=api_text["get_one_published"]["description"], +) +@authorized_user_only +async def get_one_published_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_published(lars=lars, db=db) + + +@action_router.delete( + "/organizations/{organization_name}/published-algorithms/{algorithm_id}/retract", + responses=responses["delete"], + summary=api_text["delete"]["summary"], + description=api_text["delete"]["description"], +) +@authorized_user_only +async def retract_one_published_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> None: + response = controllers.algoritme_version.retract_one(lars=lars, db=db, user=user) + background_tasks.add_task(controllers.handle_retract_mail, lars, db) + return response + + +@action_router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}/release", + responses=responses["release"], + summary=api_text["release"]["summary"], + description=api_text["release"]["description"], +) +@authorized_user_only +async def release_one_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + response = controllers.algoritme_version.release_one(lars=lars, db=db, user=user) + background_tasks.add_task(controllers.handle_release_mail, lars, db) + return response + + +@action_router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}/publish", + responses=responses["publish"], + summary=api_text["publish"]["summary"], + description=api_text["publish"]["description"], + include_in_schema=False, +) +@publisher_only +@authorized_user_only +async def publish_one_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.publish_one( + background_tasks=background_tasks, lars=lars, db=db, user=user + ) + + +@action_router.delete( + "/organizations/{organization_name}/algorithms/{algorithm_id}/remove", + responses=responses["remove"], + summary=api_text["remove"]["summary"], + description=api_text["remove"]["description"], + include_in_schema=False, +) +@admin_only +@authorized_user_only +async def remove_one_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.remove_one(lars=lars, db=db) + + +api.include_router(router, tags=["Algoritmes in ontwikkeling"]) +api.include_router(published_router, tags=["Gepubliceerde algoritmes"]) +api.include_router(action_router, tags=["Acties"]) + +# Rename all the operation_id's in the schema to the name of the corresponding route. +for route in api.routes: + if isinstance(route, routing.APIRoute): + route.operation_id = route.name diff --git a/backend/app/routers/v1_0/__init__.py b/backend/app/routers/v1_0/__init__.py new file mode 100644 index 00000000..735560ed --- /dev/null +++ b/backend/app/routers/v1_0/__init__.py @@ -0,0 +1 @@ +from .algoritme import api # noqa diff --git a/backend/app/routers/v1_0/algoritme.py b/backend/app/routers/v1_0/algoritme.py new file mode 100644 index 00000000..1aaee435 --- /dev/null +++ b/backend/app/routers/v1_0/algoritme.py @@ -0,0 +1,378 @@ +from typing import Annotated +from fastapi import Depends, Path, FastAPI, APIRouter, BackgroundTasks, routing +from slowapi import Limiter, _rate_limit_exceeded_handler +from slowapi.util import get_remote_address +from slowapi.middleware import SlowAPIMiddleware +from slowapi.errors import RateLimitExceeded +from sqlalchemy.orm import Session +from app import schemas, controllers +from app.controllers.action import update_state_by_lars +from app.middleware.authorisation.authoriser import AuthType, Authoriser +from app.middleware.authorisation.require_ownership import RequireOwnership +from app.middleware.authorisation.schemas import Permission, Role +from app.middleware.keycloak_authenticator import get_current_user +from app.config.api import api_text, responses +from app.middleware.middleware import get_db +from app.services.keycloak import KeycloakUser + +version = __name__.split(".")[-2] +input_schema = schemas.create_algorithm_in_schema(version) +output_schemas = schemas.get_all_output_schemas_union() + +version_str = version[1:].replace("_", ".") +deprecation_notice = """ +<h3>⚠️ Belangrijke mededeling</h3> +De API versies 0.1.0, 0.4.0 en 1.0.0 worden voortaan verkort naar respectievelijk 0.1, 0.4 en 1.0. +<br> +Grebruik in de API URLs dus aanleverapi/<b>v0_1</b>, aanleverapi/<b>v0_4</b> en aanleverapi/<b>v1_0</b>. +""" +api = FastAPI( + docs_url="/api-docs", + title=f"Algoritmeregister aanlevering API, versie {version_str} ", + description=deprecation_notice, + swagger_ui_parameters={ + "displayRequestDuration": True, + "defaultModelsExpandDepth": -1, + }, +) +limiter = Limiter(key_func=get_remote_address, default_limits=["25/minute"]) +api.state.limiter = limiter +api.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler) +api.add_middleware(SlowAPIMiddleware) + +router = APIRouter() +published_router = APIRouter() +action_router = APIRouter() + + +@router.get( + "/organizations/{organisation_name}/algorithms", + response_model=list[schemas.AlgorithmSummary], + responses=responses["get_all"], + summary=api_text["get_all"]["summary"], + description=api_text["get_all"]["description"], + dependencies=[Depends(Authoriser(AuthType.OrgOnly))], +) +async def get_all_algorithms( + db: Annotated[Session, Depends(get_db)], + _: str = Path(alias="organisation_name"), + as_org: str = Path(alias="organisation_name"), +) -> list[schemas.AlgorithmSummary]: + result = controllers.algoritme_version.get_algorithm_summary( + as_org=as_org, + db=db, + ) + return result + + +@router.get( + "/organizations/{organisation_name}/algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one"], + summary=api_text["get_one"]["summary"], + description=api_text["get_one"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.GET_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def get_one_algorithm( + db: Annotated[Session, Depends(get_db)], + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_newest(lars=lars, db=db) + + +@router.post( + "/organizations/{organisation_name}/algorithms", + response_model=schemas.NewAlgorithmResponse, + responses=responses["post"], + summary=api_text["post"]["summary"], + description=api_text["post"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.POST_ALGORITHM_VERSION + ) + ), + ], +) +async def create_one_algorithm( + db: Annotated[Session, Depends(get_db)], + body: input_schema, # type: ignore + _: str = Path(alias="organisation_name"), + as_org: str = Path(alias="organisation_name"), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.NewAlgorithmResponse: + # The standard_version can not be required, because it isn't according to BZK. + if body.standard_version is None: # type: ignore + body.standard_version = version_str + + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.post_one( + as_org=as_org, body=algoritme_version, db=db, user=user + ) + + +@router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}", + responses=responses["put"], + summary=api_text["put"]["summary"], + description=api_text["put"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.PUT_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def update_one_algorithm( + db: Annotated[Session, Depends(get_db)], + body: input_schema, # type: ignore + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.update_new_version( + body=algoritme_version, lars=lars, db=db, user=user + ) + + +@action_router.get( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/preview", + response_model=schemas.PreviewUrl, + responses=responses["preview"], + summary=api_text["preview"]["summary"], + description=api_text["preview"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.GET_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def get_one_preview_url( + db: Annotated[Session, Depends(get_db)], + background_tasks: BackgroundTasks, + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.PreviewUrl: + background_tasks.add_task( + controllers.algoritme_version.wait_then_disable_preview, lars=lars, db=db + ) + return controllers.algoritme_version.get_preview_link(lars=lars, db=db, user=user) + + +@published_router.get( + "/organizations/{organisation_name}/published-algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one_published"], + summary=api_text["get_one_published"]["summary"], + description=api_text["get_one_published"]["description"], + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.GET_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def get_one_published_algorithm( + db: Annotated[Session, Depends(get_db)], + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_published(lars=lars, db=db) + + +@action_router.delete( + "/organizations/{organisation_name}/published-algorithms/{algorithm_id}/retract", + responses=responses["delete"], + summary=api_text["delete"]["summary"], + description=api_text["delete"]["description"], + dependencies=[ + Depends( + Authoriser(AuthType.OrgRightStateChange, legacy_action_key="retract"), + ), + Depends(RequireOwnership), + ], +) +async def retract_one_published_algorithm( + db: Annotated[Session, Depends(get_db)], + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), +) -> None: + """ + Legacy endpoint, to be used only by ictu_last flows. + Equal to moving from PUBLISHED TO STATE_1. + """ + response = update_state_by_lars( + db=db, + user=user, + lars=lars, + as_org=as_org, + action_key="retract", + background_tasks=background_tasks, + ) + return response + + +@action_router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/release", + responses=responses["release"], + summary=api_text["release"]["summary"], + description=api_text["release"]["description"], + dependencies=[ + Depends( + Authoriser(AuthType.OrgRightStateChange, legacy_action_key="release"), + ), + Depends(RequireOwnership), + ], +) +async def release_one_algorithm( + db: Annotated[Session, Depends(get_db)], + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + """ + Legacy endpoint, to be used only by ictu_last flows. + Equal to moving from STATE_1 to STATE_2. + """ + response = update_state_by_lars( + db=db, + user=user, + lars=lars, + as_org=as_org, + action_key="release", + background_tasks=background_tasks, + ) + return response + + +@action_router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/publish", + responses=responses["publish"], + summary=api_text["publish"]["summary"], + description=api_text["publish"]["description"], + include_in_schema=False, + dependencies=[ + Depends(Authoriser(AuthType.OrgRightStateChange, legacy_action_key="publish")), + Depends(RequireOwnership), + ], +) +async def publish_one_algorithm( + background_tasks: BackgroundTasks, + lars: str = Path(alias="algorithm_id"), + as_org: str = Path(alias="organisation_name"), + db: Session = Depends(get_db), + user: KeycloakUser = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + """ + Legacy endpoint, to be used only by ictu_last flows. + Equal to moving from STATE_2 to PUBLISHED. + """ + return update_state_by_lars( + db=db, + user=user, + lars=lars, + action_key="publish", + as_org=as_org, + background_tasks=background_tasks, + ) + + +@action_router.delete( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/remove", + responses=responses["remove"], + summary=api_text["remove"]["summary"], + description=api_text["remove"]["description"], + include_in_schema=False, + dependencies=[ + Depends(Authoriser(AuthType.RoleOnly, role=Role.Administrator)), + Depends(RequireOwnership), + ], +) +async def remove_one_algorithm( + db: Annotated[Session, Depends(get_db)], + _: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.remove_one(lars=lars, db=db) + + +@router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/archive_version", + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.PUT_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def archive_algorithm_version( + archive_request: schemas.ArchiveVersionRequest, + as_org: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), + db: Session = Depends(get_db), +) -> None: + return controllers.algoritme_version.set_archive_status( + version_id=archive_request.algorithm_version_id, + db=db, + archived=True, + user_id=user.username, + ) + + +@router.put( + "/organizations/{organisation_name}/algorithms/{algorithm_id}/unarchive_version", + dependencies=[ + Depends( + Authoriser( + AuthType.OrgPermission, permission=Permission.PUT_ALGORITHM_VERSION + ) + ), + Depends(RequireOwnership), + ], +) +async def unarchive_algorithm_version( + archive_request: schemas.ArchiveVersionRequest, + as_org: str = Path(alias="organisation_name"), + lars: str = Path(alias="algorithm_id"), + user: KeycloakUser = Depends(get_current_user), + db: Session = Depends(get_db), +) -> None: + return controllers.algoritme_version.set_archive_status( + version_id=archive_request.algorithm_version_id, + db=db, + archived=False, + user_id=user.username, + ) + + +api.include_router(router, tags=["Algoritmes in ontwikkeling"]) +api.include_router(published_router, tags=["Gepubliceerde algoritmes"]) +api.include_router(action_router, tags=["Acties"]) + +# Rename all the operation_id's in the schema to the name of the corresponding route. +for route in api.routes: + if isinstance(route, routing.APIRoute): + route.operation_id = route.name diff --git a/backend/app/routers/v1_0_0/__init__.py b/backend/app/routers/v1_0_0/__init__.py new file mode 100644 index 00000000..735560ed --- /dev/null +++ b/backend/app/routers/v1_0_0/__init__.py @@ -0,0 +1 @@ +from .algoritme import api # noqa diff --git a/backend/app/routers/v1_0_0/algoritme.py b/backend/app/routers/v1_0_0/algoritme.py new file mode 100644 index 00000000..afe0e853 --- /dev/null +++ b/backend/app/routers/v1_0_0/algoritme.py @@ -0,0 +1,238 @@ +from fastapi import Depends, Path, FastAPI, APIRouter, BackgroundTasks, routing +from slowapi import Limiter, _rate_limit_exceeded_handler +from slowapi.util import get_remote_address +from slowapi.middleware import SlowAPIMiddleware +from slowapi.errors import RateLimitExceeded +from sqlalchemy.orm import Session +from app import schemas, middleware, controllers +from app.middleware.decorators import authorized_user_only, publisher_only, admin_only +from app.middleware.keycloak_authenticator import get_current_user +from app.config.api import api_text, responses + +version = __name__.split(".")[-2] +input_schema = schemas.create_algorithm_in_schema(version) +output_schemas = schemas.get_all_output_schemas_union() + +version_str = version[1:].replace("_", ".") +api = FastAPI( + docs_url="/api-docs", + title=f"Algoritmeregister aanlevering API, versie {version_str} ", + swagger_ui_parameters={ + "displayRequestDuration": True, + "defaultModelsExpandDepth": -1, + }, +) +limiter = Limiter(key_func=get_remote_address, default_limits=["15/minute"]) +api.state.limiter = limiter +api.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler) +api.add_middleware(SlowAPIMiddleware) + +router = APIRouter() +published_router = APIRouter() +action_router = APIRouter() + + +@router.get( + "/organizations/{organization_name}/algorithms", + response_model=list[schemas.AlgorithmSummary], + responses=responses["get_all"], + summary=api_text["get_all"]["summary"], + description=api_text["get_all"]["description"], +) +@authorized_user_only +async def get_all_algorithms( + as_org: str = Path(alias="organization_name"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(middleware.get_current_user), +) -> list[schemas.AlgorithmSummary]: + result = controllers.algoritme_version.get_algorithm_summary( + as_org=as_org, + db=db, + ) + return result + + +@router.get( + "/organizations/{organization_name}/algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one"], + summary=api_text["get_one"]["summary"], + description=api_text["get_one"]["description"], +) +@authorized_user_only +async def get_one_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_newest(lars=lars, db=db) + + +@router.post( + "/organizations/{organization_name}/algorithms", + response_model=schemas.NewAlgorithmResponse, + responses=responses["post"], + summary=api_text["post"]["summary"], + description=api_text["post"]["description"], +) +@authorized_user_only +async def create_one_algorithm( + body: input_schema, + as_org: str = Path(alias="organization_name"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.NewAlgorithmResponse: + # The standard_version can not be required, because it isn't according to BZK. + if body.standard_version is None: # type: ignore + body.standard_version = version_str + + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.post_one( + as_org=as_org, body=algoritme_version, db=db, user=user + ) + + +@router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}", + responses=responses["put"], + summary=api_text["put"]["summary"], + description=api_text["put"]["description"], +) +@authorized_user_only +async def update_one_algorithm( + body: input_schema, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + algoritme_version = schemas.AlgoritmeVersionContent(**body.dict()) + return controllers.algoritme_version.update_new_version( + body=algoritme_version, lars=lars, db=db, user=user + ) + + +@action_router.get( + "/organizations/{organization_name}/algorithms/{algorithm_id}/preview", + response_model=schemas.PreviewUrl, + responses=responses["preview"], + summary=api_text["preview"]["summary"], + description=api_text["preview"]["description"], +) +@authorized_user_only +async def get_one_preview_url( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.PreviewUrl: + background_tasks.add_task( + controllers.algoritme_version.wait_then_disable_preview, lars=lars, db=db + ) + return controllers.algoritme_version.get_preview_link(lars=lars, db=db, user=user) + + +@published_router.get( + "/organizations/{organization_name}/published-algorithms/{algorithm_id}", + response_model=output_schemas | None, + responses=responses["get_one_published"], + summary=api_text["get_one_published"]["summary"], + description=api_text["get_one_published"]["description"], +) +@authorized_user_only +async def get_one_published_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgoritmeVersionDB: + return controllers.algoritme_version.get_one_published(lars=lars, db=db) + + +@action_router.delete( + "/organizations/{organization_name}/published-algorithms/{algorithm_id}/retract", + responses=responses["delete"], + summary=api_text["delete"]["summary"], + description=api_text["delete"]["description"], +) +@authorized_user_only +async def retract_one_published_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> None: + response = controllers.algoritme_version.retract_one(lars=lars, db=db, user=user) + background_tasks.add_task(controllers.handle_retract_mail, lars, db) + return response + + +@action_router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}/release", + responses=responses["release"], + summary=api_text["release"]["summary"], + description=api_text["release"]["description"], +) +@authorized_user_only +async def release_one_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + response = controllers.algoritme_version.release_one(lars=lars, db=db, user=user) + background_tasks.add_task(controllers.handle_release_mail, lars, db) + return response + + +@action_router.put( + "/organizations/{organization_name}/algorithms/{algorithm_id}/publish", + responses=responses["publish"], + summary=api_text["publish"]["summary"], + description=api_text["publish"]["description"], + include_in_schema=False, +) +@publisher_only +@authorized_user_only +async def publish_one_algorithm( + background_tasks: BackgroundTasks, + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.publish_one( + background_tasks=background_tasks, lars=lars, db=db, user=user + ) + + +@action_router.delete( + "/organizations/{organization_name}/algorithms/{algorithm_id}/remove", + responses=responses["remove"], + summary=api_text["remove"]["summary"], + description=api_text["remove"]["description"], + include_in_schema=False, +) +@admin_only +@authorized_user_only +async def remove_one_algorithm( + as_org: str = Path(alias="organization_name"), + lars: str = Path(alias="algorithm_id"), + db: Session = Depends(middleware.get_db), + user: schemas.User = Depends(get_current_user), +) -> schemas.AlgorithmActionResponse | None: + return controllers.algoritme_version.remove_one(lars=lars, db=db) + + +api.include_router(router, tags=["Algoritmes in ontwikkeling"]) +api.include_router(published_router, tags=["Gepubliceerde algoritmes"]) +api.include_router(action_router, tags=["Acties"]) + +# Rename all the operation_id's in the schema to the name of the corresponding route. +for route in api.routes: + if isinstance(route, routing.APIRoute): + route.operation_id = route.name diff --git a/backend/app/schemas/__init__.py b/backend/app/schemas/__init__.py index 7d9528d2..a60d986d 100644 --- a/backend/app/schemas/__init__.py +++ b/backend/app/schemas/__init__.py @@ -1 +1,14 @@ -from .algoritme import Algoritme # noqa +from .misc import * # noqa +from .versions import * # noqa +from .algoritme_version import * # noqa +from .util import * # noqa +from .organization import * # noqa +from .algoritme import * # noqa +from .action_history import * # noqa +from .templates import * # noqa +from .organisation_details import * # noqa +from .site_data import * # noqa +from .user import * # noqa +from .html_figures import * # noqa +from .broken_links import * # noqa +from .precomputed_values import * # noqa diff --git a/backend/app/schemas/action.py b/backend/app/schemas/action.py new file mode 100644 index 00000000..cd6b876f --- /dev/null +++ b/backend/app/schemas/action.py @@ -0,0 +1,27 @@ +from enum import Enum +from pydantic import BaseModel + +from app.middleware.authorisation.schemas import State + + +class EmailType(Enum): + RELEASE_ICTU_LAST = "release_ictu_last" + RELEASE_SELF_PUBLISH_TWO = "release_self_publish_two" + RETRACT = "retract" + + +class StateChangeActionOut(BaseModel): + label: str + key: str + enabled: bool = True + origin_state: State + target_state: State + + +class StateChangeAction(StateChangeActionOut): + send_email_type: EmailType | None = None + + +class StateChangeRequest(BaseModel): + origin_state: State + target_state: State diff --git a/backend/app/schemas/action_history.py b/backend/app/schemas/action_history.py new file mode 100644 index 00000000..8f647082 --- /dev/null +++ b/backend/app/schemas/action_history.py @@ -0,0 +1,18 @@ +from .misc import OperationEnum +from pydantic import BaseModel +import datetime + + +class ActionHistoryIn(BaseModel): + algoritme_version_id: int + operation: OperationEnum + user_id: str + create_dt: datetime.datetime | None = None + + +class ActionHistoryDB(ActionHistoryIn): + id: int + create_dt: datetime.datetime + + class Config: + orm_mode = True diff --git a/backend/app/schemas/algoritme.py b/backend/app/schemas/algoritme.py index 09c4a50b..cc6e9536 100644 --- a/backend/app/schemas/algoritme.py +++ b/backend/app/schemas/algoritme.py @@ -1,111 +1,16 @@ +import datetime from pydantic import BaseModel -from typing import TypedDict -class BaseModelOrmMode(BaseModel): - class Config: - orm_mode = True - - -class Inzet(BaseModelOrmMode): - id: str - goal: str - impact: str - proportionality: str - decision_making_process: str - documentation: str | None - algoritme_id: str | None - - -class Juridisch(BaseModelOrmMode): - id: str - competent_authority: str | None - lawful_basis: str - iama: str | None - iama_description: str | None - dpia: bool | None - dpia_description: str | None - objection_procedure: str - algoritme_id: str | None - - -class Metadata(BaseModelOrmMode): - id: str - # schema is an attribute of BaseModel, so name cannot be identical to database - schema_metadata: str | None - uuid: str | None - url: str | None - contact_email: str - area: str | None - lang: str | None - revision_date: str | None - algoritme_id: str | None - - -class Toepassing(BaseModelOrmMode): - id: str - description: str | None - application_url: str | None - publiccode: str | None - mprd: bool | None - source_data: str | None - methods_and_models: str | None - algoritme_id: str | None - +class AlgoritmeIn(BaseModel): + lars: str + organisation_id: int -class Toezicht(BaseModelOrmMode): - id: str - monitoring: str | None - human_intervention: str - risks: str | None - performance_standard: str | None - algoritme_id: str | None - -class Algoritme(BaseModelOrmMode): - slug: str - id: str - name: str - organization: str - department: str - description_short: str - type: str - category: str - website: str | None - status: str - inzet: Inzet | None - juridisch: Juridisch | None - metadata_algorithm: Metadata | None - toepassing: Toepassing | None - toezicht: Toezicht | None - - -class AlgoritmeFilters(BaseModel): - attribute: str - value: str | list[str] - - -class AlgoritmeQuery(BaseModel): - filters: list[AlgoritmeFilters] = [] - page: int = 1 - limit: int = 10 - search: str = "" - - -class AlgoritmeAggregation(BaseModel): - aggregation_value: str - count: int +class AlgoritmeDB(AlgoritmeIn): + id: int + create_dt: datetime.datetime + owner: str class Config: orm_mode = True - - -class AggregatedAttribute(TypedDict): - aggregation_attribute: str - values: list[AlgoritmeAggregation] - - -class AlgoritmeQueryResponse(BaseModel): - results: list[Algoritme] - total_count: int - aggregations: list[AggregatedAttribute] diff --git a/backend/app/schemas/algoritme_version.py b/backend/app/schemas/algoritme_version.py new file mode 100644 index 00000000..1ef729fe --- /dev/null +++ b/backend/app/schemas/algoritme_version.py @@ -0,0 +1,259 @@ +from pydantic import BaseModel, Field +from datetime import datetime + +from app.middleware.authorisation.schemas import State +from .misc import ( + Language, + ImpacttoetsenGrouping, + OrgType, + SortOption, + SourceDataGrouping, + LawfulBasisGrouping, + ImpactAssessments, +) + + +# api +class AlgorithmSummary(BaseModel): + name: str | None + schema_version: str | None + last_update_dt: datetime + lars: str + source_id: str | None + published: bool + current_version_released: bool + current_version_published: bool + last_update_by: str | None + + class Config: + orm_mode = True + + +class HighlightedAlgorithmResponse(BaseModel): + name: str + lars: str + organization: str + + class Config: + orm_mode = True + + +class NewAlgorithmResponse(BaseModel): + lars_code: str + + +class AlgorithmActionResponse(BaseModel): + message: str | None + + +class AlgoritmeVersionContent(BaseModel): + name: str | None + organization: str | None + department: str | None + description_short: str | None + type: str | None + category: str | list[str] | None + website: str | None + status: str | None + goal: str | None + impact: str | None + proportionality: str | None + decision_making_process: str | None + documentation: str | None + competent_authority: str | None + lawful_basis: str | None + iama: str | None + iama_description: str | None + dpia: str | None + dpia_description: str | None + objection_procedure: str | None + standard_version: str | None + uuid: str | None + url: str | None + contact_email: str | None + area: str | None + lang: str | None + revision_date: str | None + description: str | None + application_url: str | None + publiccode: str | None + mprd: str | None + source_data: str | None + methods_and_models: str | None + monitoring: str | None + human_intervention: str | None + risks: str | None + performance_standard: str | None + provider: str | None + process_index_url: str | None + tags: str | None + source_id: str | None + begin_date: str | None + end_date: str | None + lawful_basis_link: str | None + impacttoetsen: str | list[str] | None + source_data_link: str | None + publication_category: str | None + lawful_basis_grouping: list[LawfulBasisGrouping] | None + impacttoetsen_grouping: list[ImpacttoetsenGrouping] | None + source_data_grouping: list[SourceDataGrouping] | None + + class Config: + orm_mode = True + + +class AlgorithmVersionHistory(AlgoritmeVersionContent): + id: int + lars: str + published: bool | None + state: State + + +class AlgoritmeVersionIn(AlgoritmeVersionContent): + algoritme_id: int + language: Language + + preview_active: bool = False + create_dt: datetime | None + state: State + + +class AlgoritmeVersionDB(AlgoritmeVersionContent): + algoritme_id: int + language: Language + id: int + preview_active: bool = False + create_dt: datetime + state: State + + lars: str + owner: str + code: str + + +class AlgoritmeVersionExport(AlgoritmeVersionContent): + language: Language + owner: str + lars: str + create_dt: datetime + state: State + + +class AlgoritmeVersionTemplate(AlgoritmeVersionContent): + id: str + name: str + + +class AlgoritmeVersionLastEdit(AlgorithmVersionHistory): + create_dt: datetime + user_id: str + archive_dt: datetime + + +class AlgoritmeVersionDownload(AlgoritmeVersionContent): + lars: str + + +class AlgoritmeVersionDownloadJson(AlgoritmeVersionContent): + state: State + create_dt: datetime + owner: str + + +class AlgoritmeVersionQuery(AlgoritmeVersionContent): + lars: str + language: Language + create_dt: datetime + code: str + + +class AlgoritmeVersionGetOne(AlgoritmeVersionContent): + lars: str + create_dt: datetime + language: Language + code: str + + +class AlgoritmeQuery(BaseModel): + page: int = Field(ge=1, default=1) + limit: int = Field(ge=1, default=10, le=100) + searchtext: str = "" + organisation: str | None = None + publicationcategory: str | None = None + organisationtype: OrgType | None = None + impact_assessment: ImpactAssessments | None = None + sort_option: SortOption = Field(default=SortOption.sort_name) + + +class FilterData(BaseModel): + label: str + key: str + count: int + + +class PublicationCategoryFilter(BaseModel): + publication_category_label: str + + +class PublicationCategoryCount(BaseModel): + category: str + count: int + + +class ImpactAssessmentFilter(BaseModel): + impact_assessment_label: str + + +class OrganisationTypeFilter(BaseModel): + organisation_type: str + + +class AlgoritmeFilterData(BaseModel): + organisationtype: list[FilterData] | None = None + publicationcategory: list[FilterData] | None = None + impact_assessment: list[FilterData] | None = None + organisation: list[FilterData] | None = None + + +class SelectedFilters(BaseModel): + key: str + value: str | None + + +class AlgoritmeQueryResponse(BaseModel): + results: list[AlgoritmeVersionQuery] + total_count: int + filter_data: AlgoritmeFilterData + selected_filters: list[SelectedFilters] + + +class SearchSuggestionAlgorithms(BaseModel): + name: str + organization: str + lars: str + + class Config: + orm_mode = True + + +class SearchSuggestionResponse(BaseModel): + algorithms: list[SearchSuggestionAlgorithms] + + +class ArchiveVersionRequest(BaseModel): + algorithm_version_id: int + + +class AlgoritmeVersionEarliestPublish(BaseModel): + algoritme_id: int + organization: str + create_dt: datetime + code: str + + class Config: + orm_mode = True + + +class AlgoritmeVersionEarliestPublishCount(BaseModel): + date: str + count: int diff --git a/backend/app/schemas/broken_links.py b/backend/app/schemas/broken_links.py new file mode 100644 index 00000000..0161c07d --- /dev/null +++ b/backend/app/schemas/broken_links.py @@ -0,0 +1,27 @@ +import datetime +from typing import Optional +from pydantic import BaseModel + +from app.schemas.misc import Language + + +class BrokenLink(BaseModel): + id: int + name: str + lars: str + broken_links: list[tuple[str, Optional[int]]] + language: Language + create_dt: datetime.datetime + organisation: str + batch: int + + class Config: + orm_mode = True + + +class BrokenLinkCount(BaseModel): + count: int + create_dt: datetime.datetime + + class Config: + orm_mode = True diff --git a/backend/app/schemas/c3po/__init__.py b/backend/app/schemas/c3po/__init__.py new file mode 100644 index 00000000..ee4d1bc2 --- /dev/null +++ b/backend/app/schemas/c3po/__init__.py @@ -0,0 +1,4 @@ +from .request_in import * # noqa +from .response_out import * # noqa +from .request_out import * # noqa +from .reponse_in import * # noqa diff --git a/backend/app/schemas/c3po/reponse_in.py b/backend/app/schemas/c3po/reponse_in.py new file mode 100644 index 00000000..1e0c9572 --- /dev/null +++ b/backend/app/schemas/c3po/reponse_in.py @@ -0,0 +1,47 @@ +from typing import Any, Optional, Union + +from pydantic import BaseModel +from enum import Enum +import datetime + + +class TaskStatus(str, Enum): + NEW = "new" + PENDING = "pending" + FINISHED = "finished" + ERROR = "error" + + +class SeverityLevel(str, Enum): + INFO = "info" + WARNING = "waarschuwing" + ERROR = "fout" + + +class Rule(BaseModel): + id: int + rule_code: str + title: str + rule_type: str + description: str + severity_level: SeverityLevel + created_at: datetime.datetime + + +class Task(BaseModel): + id: int + processing_request_id: int + feedback_message: str | None + result: Optional[Union[str, list[Any], dict[str, Any]]] + status: TaskStatus + passed: bool | None + created_at: datetime.datetime + rule: Rule + + +class ProcessingRequest(BaseModel): + id: int + payload: str + tasks: list[Task] + created_at: datetime.datetime + updated_at: datetime.datetime diff --git a/backend/app/schemas/c3po/request_in.py b/backend/app/schemas/c3po/request_in.py new file mode 100644 index 00000000..dd13a85e --- /dev/null +++ b/backend/app/schemas/c3po/request_in.py @@ -0,0 +1,5 @@ +from pydantic import BaseModel + + +class C3poRequest(BaseModel): + text: str diff --git a/backend/app/schemas/c3po/request_out.py b/backend/app/schemas/c3po/request_out.py new file mode 100644 index 00000000..c1802dce --- /dev/null +++ b/backend/app/schemas/c3po/request_out.py @@ -0,0 +1,8 @@ +from typing import TypedDict, Literal + + +class ProcessingRequestOut(TypedDict): + payload: str + org_code: str + project_code: str + rule_codes: list[str] | Literal["all"] diff --git a/backend/app/schemas/c3po/response_out.py b/backend/app/schemas/c3po/response_out.py new file mode 100644 index 00000000..3afe2de7 --- /dev/null +++ b/backend/app/schemas/c3po/response_out.py @@ -0,0 +1,28 @@ +from typing import Optional, Union, Any + +from pydantic import BaseModel + + +class RuleResults(BaseModel): + rule_code: str + title: str + feedback_message: str + passed: bool | None + result: Optional[Union[str, list[Any], dict[str, Any]]] + severity_level: str + + +class C3poResults(BaseModel): + rules: list[RuleResults] + + +class Rule(BaseModel): + rule_code: str + rule_variant: str + description: str + severity_level: str + + +class RuleSetOut(BaseModel): + code: str + rules: list[Rule] diff --git a/backend/app/schemas/config/types.py b/backend/app/schemas/config/types.py new file mode 100644 index 00000000..df0429d4 --- /dev/null +++ b/backend/app/schemas/config/types.py @@ -0,0 +1,21 @@ +from pydantic import BaseModel + + +class SchemaProperty(BaseModel): + title: str + type: str + max_length: int | None + max_items: int | None + show_always: bool | None + help_text: str | None + instructions: str | None + example: str | list[str] | None + required: bool + permitted_values: list[str] | None + recommended_items: list[str] | None + allowed_html_tags: list[str] | None + items: dict[str, "SchemaProperty"] | None + + +class SchemaJson(BaseModel): + properties: dict[str, SchemaProperty] diff --git a/backend/app/schemas/config/v0_1.json b/backend/app/schemas/config/v0_1.json new file mode 100644 index 00000000..846f494d --- /dev/null +++ b/backend/app/schemas/config/v0_1.json @@ -0,0 +1,380 @@ +{ + "properties": { + "name": { + "type": "string", + "title": "Naam", + "max_length": 1024, + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "", + "example": "", + "required": true + }, + "organization": { + "type": "string", + "title": "Organisatie", + "max_length": 1024, + "show_always": true, + "help_text": "De volledige naam van de organisatie verantwoordelijk voor de inzet van het algoritme.", + "instructions": "", + "example": "", + "required": true + }, + "department": { + "type": "string", + "title": "Afdeling", + "max_length": 1024, + "show_always": true, + "help_text": "De volledige naam van de afdeling of divisie verantwoordelijk voor de inzet van het algoritme.", + "instructions": "", + "example": "", + "required": false + }, + "description_short": { + "type": "string", + "title": "Korte omschrijving", + "max_length": 5000, + "show_always": true, + "help_text": "Een korte, abstracte beschrijving van het algoritme.", + "instructions": "", + "example": "", + "required": false + }, + "type": { + "type": "string", + "title": "Type algoritme", + "max_length": 1024, + "show_always": true, + "help_text": "Is het algoritme op regels gebaseerd of zelflerend? Regelgebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes kunnen zelf verbanden ontdekken in gegevens.", + "instructions": "", + "example": "", + "required": false + }, + "category": { + "type": "string", + "title": "Beleidsterrein", + "max_length": 1024, + "show_always": true, + "help_text": "Trefwoorden over het beleidsterrein waarin het algoritme wordt ingezet.", + "instructions": "", + "example": "", + "required": false + }, + "website": { + "type": "string", + "title": "Link naar publiekspagina", + "max_length": 1024, + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "", + "example": "", + "required": false + }, + "status": { + "type": "string", + "title": "Status", + "max_length": 1024, + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "", + "example": "", + "required": false + }, + "goal": { + "type": "string", + "title": "Doel", + "max_length": 5000, + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen.", + "instructions": "", + "example": "", + "required": false + }, + "impact": { + "type": "string", + "title": "Impact", + "max_length": 5000, + "show_always": true, + "help_text": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf?", + "instructions": "", + "example": "", + "required": false + }, + "proportionality": { + "type": "string", + "title": "Proportionaliteit", + "max_length": 5000, + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "", + "example": "", + "required": false + }, + "decision_making_process": { + "type": "string", + "title": "Proces", + "max_length": 5000, + "show_always": true, + "help_text": "De naam van het bedrijfs- of besluitvormingsproces in de organisatie waarbinnen het algoritme wordt ingezet.", + "instructions": "", + "example": "", + "required": false + }, + "documentation": { + "type": "string", + "title": "Link naar projectpagina", + "max_length": 1024, + "show_always": false, + "help_text": "URL van de projectpagina van de organisatie zelf over dit specifieke gebruik van het algoritme.", + "instructions": "", + "example": "", + "required": false + }, + "description": { + "type": "string", + "title": "Omschrijving", + "max_length": 10000, + "show_always": false, + "help_text": "Een uitgebreide beschrijving van het algoritme (500-5000 tekens).", + "instructions": "", + "example": "", + "required": false + }, + "application_url": { + "type": "string", + "title": "Link naar ontwikkelaar", + "max_length": 1024, + "show_always": false, + "help_text": "Een URL naar een applicatiepagina van de ontwikkelaar. Op deze pagina kunt u meer algemene technische informatie vinden over het algoritme en de ontwikkelaar zelf.", + "instructions": "", + "example": "", + "required": false + }, + "publiccode": { + "type": "string", + "title": "Link naar broncode", + "max_length": 1024, + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf.", + "instructions": "", + "example": "", + "required": false + }, + "mprd": { + "type": "string", + "title": "Koppeling met basisregistraties", + "max_length": 500, + "show_always": false, + "help_text": "Maakt het algoritme direct gebruik van data uit het Stelsel van Basisregistraties? Meer informatie is te vinden op https://digitaleoverheid.nl/", + "instructions": "", + "example": "", + "required": false + }, + "source_data": { + "type": "string", + "title": "Databronnen", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme", + "instructions": "", + "example": "", + "required": false + }, + "methods_and_models": { + "type": "string", + "title": "Methoden en modellen", + "max_length": 5000, + "show_always": false, + "help_text": "Standaardmethoden of modellen die het algoritme gebruikt.", + "instructions": "", + "example": "", + "required": false + }, + "monitoring": { + "type": "string", + "title": "Monitoring", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord.", + "instructions": "", + "example": "", + "required": false + }, + "human_intervention": { + "type": "string", + "title": "Menselijke tussenkomst", + "max_length": 5000, + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "", + "example": "", + "required": false + }, + "risks": { + "type": "string", + "title": "Risico's", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van de voorziene risico's bij de inzet van het algoritme", + "instructions": "", + "example": "", + "required": false + }, + "performance_standard": { + "type": "string", + "title": "Prestatienormen", + "max_length": 5000, + "show_always": false, + "help_text": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten.", + "instructions": "", + "example": "", + "required": false + }, + "competent_authority": { + "type": "string", + "title": "Bevoegde authoriteit", + "max_length": 1024, + "show_always": true, + "help_text": "Volledige naam van de bevoegde autoriteit verantwoordelijk voor de inzet van het algoritme.", + "instructions": "", + "example": "", + "required": false + }, + "lawful_basis": { + "type": "string", + "title": "Wettelijke grondslag", + "max_length": 5000, + "show_always": true, + "help_text": "Een omschrijving of een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "instructions": "", + "example": "", + "required": false + }, + "iama": { + "type": "string", + "title": "Impact Assessment Mensenrechten en Algoritmes (IAMA)", + "max_length": 128, + "show_always": true, + "help_text": "Is het algoritme getoetst op het nakomen van mensenrechten met een Impact Assessment Mensenrechten en Algoritmes (IAMA)?", + "instructions": "", + "example": "", + "required": false + }, + "iama_description": { + "type": "string", + "title": "Omschrijving van de IAMA", + "max_length": 5000, + "show_always": true, + "help_text": "Een overzicht van de belangrijkste zaken die uit de impact assessment mensenrechten en algoritmes (IAMA) naar voren kwamen.", + "instructions": "", + "example": "", + "required": false + }, + "dpia": { + "type": "string", + "title": "Data Protection Impact Assessment (DPIA)", + "max_length": 128, + "show_always": false, + "help_text": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA).", + "instructions": "", + "example": "", + "required": false + }, + "dpia_description": { + "type": "string", + "title": "Omschrijving van de DPIA", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van de belangrijkste zaken die uit de data protection impact assessment (DPIA) naar voren kwamen.", + "instructions": "", + "example": "", + "required": false + }, + "objection_procedure": { + "type": "string", + "title": "Bezwaarprocedure", + "max_length": 5000, + "show_always": true, + "help_text": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme.", + "instructions": "", + "example": "", + "required": false + }, + "standard_version": { + "type": "enum", + "title": "Schema", + "show_always": false, + "help_text": "", + "instructions": "", + "example": "0.1", + "required": false, + "permitted_values": ["0.1"] + }, + "uuid": { + "type": "string", + "title": "UUID", + "max_length": 1024, + "show_always": false, + "help_text": "", + "instructions": "", + "example": "", + "required": false + }, + "url": { + "type": "string", + "title": "Link naar bronregistratie", + "max_length": 1024, + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "", + "example": "", + "required": false + }, + "contact_email": { + "type": "string", + "title": "E-mailadres van de contactpersoon", + "max_length": 1024, + "show_always": true, + "help_text": "De e-mail voor contact over deze registratie.", + "instructions": "", + "example": "", + "required": false + }, + "area": { + "type": "string", + "title": "Geografisch gebied", + "max_length": 1024, + "show_always": false, + "help_text": "Het geografische gebied waarin het algoritme wordt ingezet.", + "instructions": "", + "example": "", + "required": false + }, + "lang": { + "type": "string", + "title": "Taal", + "max_length": 1024, + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd.", + "instructions": "", + "example": "", + "required": false + }, + "revision_date": { + "type": "string", + "title": "Herzieningsdatum", + "max_length": 1024, + "show_always": false, + "help_text": "De datum waarvoor deze registratie moet worden herzien.", + "instructions": "", + "example": "", + "required": false + }, + "lars": { + "title": "Algoritme-ID", + "type": "string", + "required": false, + "instructions": "" + } + } +} diff --git a/backend/app/schemas/config/v0_1_0.json b/backend/app/schemas/config/v0_1_0.json new file mode 100644 index 00000000..7ea990a1 --- /dev/null +++ b/backend/app/schemas/config/v0_1_0.json @@ -0,0 +1,376 @@ +{ + "properties": { + "name": { + "type": "string", + "title": "Naam", + "max_length": 1024, + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "", + "example": "", + "required": true + }, + "organization": { + "type": "string", + "title": "Organisatie", + "max_length": 1024, + "show_always": true, + "help_text": "De volledige naam van de organisatie verantwoordelijk voor de inzet van het algoritme.", + "instructions": "", + "example": "", + "required": true + }, + "department": { + "type": "string", + "title": "Afdeling", + "max_length": 1024, + "show_always": true, + "help_text": "De volledige naam van de afdeling of divisie verantwoordelijk voor de inzet van het algoritme.", + "instructions": "", + "example": "", + "required": false + }, + "description_short": { + "type": "string", + "title": "Korte omschrijving", + "max_length": 5000, + "show_always": true, + "help_text": "Een korte, abstracte beschrijving van het algoritme.", + "instructions": "", + "example": "", + "required": false + }, + "type": { + "type": "string", + "title": "Type algoritme", + "max_length": 1024, + "show_always": true, + "help_text": "Is het algoritme op regels gebaseerd of zelflerend? Regelgebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes kunnen zelf verbanden ontdekken in gegevens.", + "instructions": "", + "example": "", + "required": false + }, + "category": { + "type": "string", + "title": "Beleidsterrein", + "max_length": 1024, + "show_always": true, + "help_text": "Trefwoorden over het beleidsterrein waarin het algoritme wordt ingezet.", + "instructions": "", + "example": "", + "required": false + }, + "website": { + "type": "string", + "title": "Link naar publiekspagina", + "max_length": 1024, + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "", + "example": "", + "required": false + }, + "status": { + "type": "string", + "title": "Status", + "max_length": 1024, + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "", + "example": "", + "required": false + }, + "goal": { + "type": "string", + "title": "Doel", + "max_length": 5000, + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen.", + "instructions": "", + "example": "", + "required": false + }, + "impact": { + "type": "string", + "title": "Impact", + "max_length": 5000, + "show_always": true, + "help_text": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf?", + "instructions": "", + "example": "", + "required": false + }, + "proportionality": { + "type": "string", + "title": "Proportionaliteit", + "max_length": 5000, + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "", + "example": "", + "required": false + }, + "decision_making_process": { + "type": "string", + "title": "Proces", + "max_length": 5000, + "show_always": true, + "help_text": "De naam van het bedrijfs- of besluitvormingsproces in de organisatie waarbinnen het algoritme wordt ingezet.", + "instructions": "", + "example": "", + "required": false + }, + "documentation": { + "type": "string", + "title": "Link naar projectpagina", + "max_length": 1024, + "show_always": false, + "help_text": "URL van de projectpagina van de organisatie zelf over dit specifieke gebruik van het algoritme.", + "instructions": "", + "example": "", + "required": false + }, + "description": { + "type": "string", + "title": "Omschrijving", + "max_length": 10000, + "show_always": false, + "help_text": "Een uitgebreide beschrijving van het algoritme (500-5000 tekens).", + "instructions": "", + "example": "", + "required": false + }, + "application_url": { + "type": "string", + "title": "Link naar ontwikkelaar", + "max_length": 1024, + "show_always": false, + "help_text": "Een URL naar een applicatiepagina van de ontwikkelaar. Op deze pagina kunt u meer algemene technische informatie vinden over het algoritme en de ontwikkelaar zelf.", + "instructions": "", + "example": "", + "required": false + }, + "publiccode": { + "type": "string", + "title": "Link naar broncode", + "max_length": 1024, + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf.", + "instructions": "", + "example": "", + "required": false + }, + "mprd": { + "type": "string", + "title": "Koppeling met basisregistraties", + "max_length": 500, + "show_always": false, + "help_text": "Maakt het algoritme direct gebruik van data uit het Stelsel van Basisregistraties? Meer informatie is te vinden op https://digitaleoverheid.nl/", + "instructions": "", + "example": "", + "required": false + }, + "source_data": { + "type": "string", + "title": "Databronnen", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme", + "instructions": "", + "example": "", + "required": false + }, + "methods_and_models": { + "type": "string", + "title": "Methoden en modellen", + "max_length": 5000, + "show_always": false, + "help_text": "Standaardmethoden of modellen die het algoritme gebruikt.", + "instructions": "", + "example": "", + "required": false + }, + "monitoring": { + "type": "string", + "title": "Monitoring", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord.", + "instructions": "", + "example": "", + "required": false + }, + "human_intervention": { + "type": "string", + "title": "Menselijke tussenkomst", + "max_length": 5000, + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "", + "example": "", + "required": false + }, + "risks": { + "type": "string", + "title": "Risico's", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van de voorziene risico's bij de inzet van het algoritme", + "instructions": "", + "example": "", + "required": false + }, + "performance_standard": { + "type": "string", + "title": "Prestatienormen", + "max_length": 5000, + "show_always": false, + "help_text": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten.", + "instructions": "", + "example": "", + "required": false + }, + "competent_authority": { + "type": "string", + "title": "Bevoegde authoriteit", + "max_length": 1024, + "show_always": true, + "help_text": "Volledige naam van de bevoegde autoriteit verantwoordelijk voor de inzet van het algoritme.", + "instructions": "", + "example": "", + "required": false + }, + "lawful_basis": { + "type": "string", + "title": "Wettelijke grondslag", + "max_length": 5000, + "show_always": true, + "help_text": "Een omschrijving of een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "instructions": "", + "example": "", + "required": false + }, + "iama": { + "type": "string", + "title": "Impact Assessment Mensenrechten en Algoritmes (IAMA)", + "max_length": 128, + "show_always": true, + "help_text": "Is het algoritme getoetst op het nakomen van mensenrechten met een Impact Assessment Mensenrechten en Algoritmes (IAMA)?", + "instructions": "", + "example": "", + "required": false + }, + "iama_description": { + "type": "string", + "title": "Omschrijving van de IAMA", + "max_length": 5000, + "show_always": true, + "help_text": "Een overzicht van de belangrijkste zaken die uit de impact assessment mensenrechten en algoritmes (IAMA) naar voren kwamen.", + "instructions": "", + "example": "", + "required": false + }, + "dpia": { + "type": "string", + "title": "Data Protection Impact Assessment (DPIA)", + "max_length": 128, + "show_always": false, + "help_text": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA).", + "instructions": "", + "example": "", + "required": false + }, + "dpia_description": { + "type": "string", + "title": "Omschrijving van de DPIA", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van de belangrijkste zaken die uit de data protection impact assessment (DPIA) naar voren kwamen.", + "instructions": "", + "example": "", + "required": false + }, + "objection_procedure": { + "type": "string", + "title": "Bezwaarprocedure", + "max_length": 5000, + "show_always": true, + "help_text": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme.", + "instructions": "", + "example": "", + "required": false + }, + "standard_version": { + "type": "enum", + "title": "Schema", + "show_always": false, + "help_text": "", + "instructions": "", + "example": "0.1.0", + "required": false, + "permitted_values": [ + "0.1.0" + ] + }, + "uuid": { + "type": "string", + "title": "UUID", + "max_length": 1024, + "show_always": false, + "help_text": "", + "instructions": "", + "example": "", + "required": false + }, + "url": { + "type": "string", + "title": "Link naar bronregistratie", + "max_length": 1024, + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "", + "example": "", + "required": false + }, + "contact_email": { + "type": "string", + "title": "E-mailadres van de contactpersoon", + "max_length": 1024, + "show_always": true, + "help_text": "De e-mail voor contact over deze registratie.", + "instructions": "", + "example": "", + "required": false + }, + "area": { + "type": "string", + "title": "Geografisch gebied", + "max_length": 1024, + "show_always": false, + "help_text": "Het geografische gebied waarin het algoritme wordt ingezet.", + "instructions": "", + "example": "", + "required": false + }, + "lang": { + "type": "string", + "title": "Taal", + "max_length": 1024, + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd.", + "instructions": "", + "example": "", + "required": false + }, + "revision_date": { + "type": "string", + "title": "Herzieningsdatum", + "max_length": 1024, + "show_always": false, + "help_text": "De datum waarvoor deze registratie moet worden herzien.", + "instructions": "", + "example": "", + "required": false + } + } +} \ No newline at end of file diff --git a/backend/app/schemas/config/v0_2_3.json b/backend/app/schemas/config/v0_2_3.json new file mode 100644 index 00000000..41335b9f --- /dev/null +++ b/backend/app/schemas/config/v0_2_3.json @@ -0,0 +1,392 @@ +{ + "properties": { + "name": { + "type": "string", + "title": "Naam", + "max_length": 100, + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "De algemeen gehanteerde naam van het algoritme.", + "example": "Automatische Verkeersregeling Ringweg", + "required": true + }, + "organization": { + "type": "string", + "title": "Organisatie", + "max_length": 100, + "show_always": true, + "help_text": "De volledige naam van de organisatie verantwoordelijk voor de inzet van het algoritme.", + "instructions": "De naam van de organisatie verantwoordelijk voor het gebruik van het algoritme. In het geval van een uitvoeringsorganisatie vallend onder een ministerie: gebruik de naam van de uitvoeringsorganisatie zelf, gevolgd door de afkorting tussen haakjes.", + "example": "Gemeente Noorderhaaks", + "required": true + }, + "department": { + "type": "string", + "title": "Afdeling", + "max_length": 500, + "show_always": true, + "help_text": "De volledige naam van de afdeling of divisie verantwoordelijk voor de inzet van het algoritme.", + "instructions": "De volledige naam van de afdeling van de organisatie verantwoordelijk voor het gebruik van het algoritme.", + "example": "Afdeling Verkeer & Bereikbaarheid", + "required": false + }, + "description_short": { + "type": "string", + "title": "Korte omschrijving", + "max_length": 250, + "show_always": true, + "help_text": "Een korte, abstracte beschrijving van het algoritme.", + "instructions": "Een korte, abstracte beschrijving van het algoritme. Bij voorkeur in één of twee zinnen. Vul dit veld in op B1-taalniveau.", + "example": "Dit algoritme optimaliseert de doorstroom van verkeer bij kruispunten op basis van sensoren in het wegdek.", + "required": false + }, + "type": { + "type": "enum", + "title": "Type algoritme", + "show_always": true, + "help_text": "Is het algoritme op regels gebaseerd of zelflerend? Regelgebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes kunnen zelf verbanden ontdekken in gegevens.", + "instructions": "Is het algoritme op regels gebaseerd of zelflerend? Op regels gebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes hebben zichzelf getraind op basis van data. In het geval dat een algoritme beiden doet, kies voor 'Zelflerend'.", + "example": "Regelgebaseerd", + "required": false, + "permitted_values": [ + "Regelgebaseerd", + "Zelflerend" + ] + }, + "category": { + "type": "string", + "title": "Beleidsterrein", + "max_length": 500, + "show_always": true, + "help_text": "Trefwoorden over het beleidsterrein waarin het algoritme wordt ingezet.", + "instructions": "Trefwoorden die te maken hebben met het domein waarin het algoritme wordt ingezet.", + "example": "Verkeer, Mobiliteit, VRI, Infrastructuur", + "required": false + }, + "website": { + "type": "string", + "title": "Link naar publiekspagina", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over de inzet van het algoritme binnen de organisatie. Dit is niet te verwarren met de projectpagina, waar de maatschappelijke context wordt vermeld. Denk aan bijvoorbeeld parkeercontrole in het algemeen (projectpagina) versus de inzet van slimme camera's voor nummerbordherkenning (publiekspagina).", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI", + "required": false + }, + "status": { + "type": "enum", + "title": "Status", + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "De huidige status van het algoritme: - In ontwikkeling - In gebruik - Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor ‘In gebruik’.", + "example": "In gebruik", + "required": false, + "permitted_values": [ + "In ontwikkeling", + "In gebruik", + "Buiten gebruik" + ] + }, + "goal": { + "type": "string", + "title": "Doel", + "max_length": 5000, + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen.", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen. Vul dit veld in op B1-taalniveau.", + "example": "Het doel van dit algoritme is om de doorstroom van het verkeer binnen de gemeente te verbeteren. Door kortere wachttijden bij het stoplicht kunnen weggebruikers sneller van A naar B komen.", + "required": false + }, + "impact": { + "type": "string", + "title": "Impact", + "max_length": 5000, + "show_always": true, + "help_text": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf?", + "instructions": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf? Vul dit veld in op B1-taalniveau.", + "example": "De impact op een individu is dat het algoritme bepaalt wanneer diegene aan de beurt is om over het kruispunt te steken. De consequenties van deze impact zijn in alle waarschijnlijkheid erg klein. Het betreft een oponthoud van maximaal enkele minuten.", + "required": false + }, + "proportionality": { + "type": "string", + "title": "Proportionaliteit", + "max_length": 5000, + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn.Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau.", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers.", + "required": false + }, + "decision_making_process": { + "type": "string", + "title": "Proces", + "max_length": 5000, + "show_always": true, + "help_text": "De naam van het bedrijfs- of besluitvormingsproces in de organisatie waarbinnen het algoritme wordt ingezet.", + "instructions": "De naam van het bedrijfs- of besluitvormingsproces in de organisatie waarbinnen het algoritme wordt ingezet.", + "example": "Het besluitvormingsproces van het algoritme is om te bepalen wie er op dat moment als eerste mag doorrijden over het kruispunt, ter verbetering van de algehele verkeersdoorstroming en bereikbaarheid.", + "required": false + }, + "documentation": { + "type": "string", + "title": "Link naar projectpagina", + "max_length": 500, + "show_always": false, + "help_text": "URL van de projectpagina van de organisatie zelf over dit specifieke gebruik van het algoritme.", + "instructions": "Een URL naar een maatschappelijke pagina van de organisatie zelf. Op deze pagina kunt u meer vinden over het maatschappelijke vraagstuk waar het algoritme voor wordt ingezet.Dit is niet te verwarren met de publiekspagina, waar dit specifieke algoritme onder de loep wordt genomen. Denk aan bijvoorbeeld parkeercontrole in het algemeen (projectpagina) versus de inzet van slimme camera's voor nummerbordherkenning (publiekspagina).Indien u geen aparte projectpagina hanteert, dient dit veld leeg te blijven.", + "example": "https://gemeentenoorderhaaks.nl/wat-doen-we-met-verkeer", + "required": false + }, + "description": { + "type": "string", + "title": "Omschrijving", + "max_length": 5000, + "show_always": false, + "help_text": "Een uitgebreide beschrijving van het algoritme (500-5000 tekens).", + "instructions": "Een uitgebreide beschrijving van het algoritme.Vul dit veld in op B1-taalniveau.", + "example": "Er is veel verkeer op de kruispunten van de ringweg om de gemeente Noorderhaaks. De verkeersregeling van de stoplichten loopt niet altijd hetzelfde. Met behulp van sensoren in het wegdek kan een computersysteem een idee krijgen van waar er iemand voor een stoplicht staat. Het systeem gebruikt een algoritme om te kijken of het stoplicht sneller op groen kan dan het normaal zou gaan. Het checkt of er op dat moment nog weggebruikers op andere plekken rijden. Zo niet, dan kunnen andere stoplichten sneller op rood, en het stoplicht in kwestie op groen. Zo verbetert de doorstroom van verkeer, vooral als het rustig is op de weg.", + "required": false + }, + "application_url": { + "type": "string", + "title": "Link naar ontwikkelaar", + "max_length": 100, + "show_always": false, + "help_text": "Een URL naar een applicatiepagina van de ontwikkelaar. Op deze pagina kunt u meer algemene technische informatie vinden over het algoritme en de ontwikkelaar zelf.", + "instructions": "Een URL naar de derde partij die het algoritme heeft ontwikkeld.Indien u zelf het algoritme hebt ontwikkeld, dient dit veld leeg te blijven.", + "example": "http://haakssoftwarebedrijf.nl/vrisoftware", + "required": false + }, + "publiccode": { + "type": "string", + "title": "Link naar broncode", + "max_length": 100, + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf.", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven.", + "example": "http://github.com/haakssoftwarebedrijf/vrisoftware", + "required": false + }, + "mprd": { + "type": "enum", + "title": "Koppeling met basisregistraties", + "show_always": false, + "help_text": "Maakt het algoritme direct gebruik van data uit het Stelsel van Basisregistraties? Meer informatie is te vinden op https://digitaleoverheid.nl/", + "instructions": "Maakt het algoritme direct gebruik van data uit het Stelsel van Basisregistraties? Meer informatie is te vinden op https://www.digitaleoverheid.nl/overzicht-van-alle-onderwerpen/stelselvan-basisregistraties/10-basisregistraties/", + "example": "Ja", + "required": false, + "permitted_values": [ + "Ja", + "Nee" + ] + }, + "source_data": { + "type": "string", + "title": "Databronnen", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme", + "instructions": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.Idealiter bevat het overzicht URLs naar relevante publiekspagina's over de bron, of, indien mogelijk, een URL naar de bron zelf.", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks.", + "required": false + }, + "methods_and_models": { + "type": "string", + "title": "Methoden en modellen", + "max_length": 5000, + "show_always": false, + "help_text": "Standaardmethoden of modellen die het algoritme gebruikt.", + "instructions": "Een technische uitleg van hoe het algoritme werkt en uitkomsten genereert. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas.Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL’s naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten.", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI", + "required": false + }, + "monitoring": { + "type": "string", + "title": "Monitoring", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord.", + "instructions": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord, zowel in real time als evaluatie achteraf.", + "example": "Monitoring van het verkeer wordt met plaatselijke camera's uitgevoerd. Dagelijks wordt er met steekproeven gecontroleerd op de camerabeelden of de automatische verkeersregeling zorgt voor een goede doorstroom.", + "required": false + }, + "human_intervention": { + "type": "string", + "title": "Menselijke tussenkomst", + "max_length": 5000, + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden.Vul dit veld in op B1-taalniveau.", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht.", + "required": false + }, + "risks": { + "type": "string", + "title": "Risico's", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van de voorziene risico's bij de inzet van het algoritme", + "instructions": "Een overzicht van de voorziene risico's bij de inzet van het algoritme. Denk aan risico's die kunnen ontstaan in de hele keten, van observatiedata tot uitkomst voor een gebruiker.", + "example": "De uitkomsten van het algoritme zijn alleen gebaseerd op sensoren in het wegdek die meten of er een vehikel is gepasseerd. Er is bij binnenkomst van data in het algoritme één voorzien risico: bij een defecte sensor kan het gebeuren dat weggebruikers lang blijven staan omdat ze niet worden als aanwezig worden herkend door het algoritme. Wij gaan dit tegen door de constante monitoring. Zo is de kans bijzonder klein dat dit langdurige nadelen heeft op een individu, en hoeft niemand uren stil te blijven staan. Voor de rest zijn er geen voorziene risico's, omdat bij gebrekkig functioneren van dit algoritme het traditionele systeem ook prima functioneert als plan B.", + "required": false + }, + "performance_standard": { + "type": "string", + "title": "Prestatienormen", + "max_length": 5000, + "show_always": false, + "help_text": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten.", + "instructions": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten.", + "example": "Het algoritme moet in ieder geval even goed presteren als een standaardinstelling van een verkeersinstallatie zonder sensoren. In eerdere pilots zagen we een verbetering van gemiddeld 36% minder wachttijd voor weggebruikers buiten de spits. Wij hanteren een minimum van 15% buiten spitstijden. Tijdens de spits is dit de baseline (0%).", + "required": false + }, + "competent_authority": { + "type": "string", + "title": "Bevoegde authoriteit", + "max_length": 100, + "show_always": true, + "help_text": "Volledige naam van de bevoegde autoriteit verantwoordelijk voor de inzet van het algoritme.", + "instructions": "De autoriteit die binnen de organisatie bevoegd is om te handelen op basis van de uitkomsten van het algoritme.Vaak is dit veld gelijk aan de afdeling van uw organisatie.", + "example": "Afdeling Verkeer en bereikbaarheid", + "required": false + }, + "lawful_basis": { + "type": "string", + "title": "Wettelijke grondslag", + "max_length": 5000, + "show_always": true, + "help_text": "Een omschrijving of een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "instructions": "Een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit.Indien er geen publiek beschikbare grondslag beschikbaar is, volstaat een beschrijving ook.", + "example": "http://wetten.overheid.nl/BWBR0006622/2023-01-01", + "required": false + }, + "iama": { + "type": "enum", + "title": "Impact Assessment Mensenrechten en Algoritmes (IAMA)", + "show_always": true, + "help_text": "Is het algoritme getoetst op het nakomen van mensenrechten met een Impact Assessment Mensenrechten en Algoritmes (IAMA)?", + "instructions": "Is het algoritme getoetst op het nakomen van mensenrechten met een Impact Assessment Mensenrechten en Algoritmes (IAMA)?", + "example": "Ja", + "required": false, + "permitted_values": [ + "Ja", + "Nee" + ] + }, + "iama_description": { + "type": "string", + "title": "Omschrijving van de IAMA", + "max_length": 5000, + "show_always": true, + "help_text": "Een overzicht van de belangrijkste zaken die uit de impact assessment mensenrechten en algoritmes (IAMA) naar voren kwamen.", + "instructions": "Een overzicht van de belangrijkste zaken die uit de impact assessment mensenrechten en algoritmes (IAMA) naar voren kwamen.", + "example": "Er is geen reden om aan te nemen dat er enige mensenrechtenschending plaats kan vinden op basis van het gebruikte algoritme.", + "required": false + }, + "dpia": { + "type": "enum", + "title": "Data Protection Impact Assessment (DPIA)", + "show_always": false, + "help_text": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA).", + "instructions": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA)?", + "example": "Ja", + "required": false, + "permitted_values": [ + "Ja", + "Nee" + ] + }, + "dpia_description": { + "type": "string", + "title": "Omschrijving van de DPIA", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van de belangrijkste zaken die uit de data protection impact assessment (DPIA) naar voren kwamen.", + "instructions": "Een overzicht van de belangrijkste zaken die uit de Data Protection Impact Assessment (DPIA) naar voren kwamen.", + "example": "Er komen geen gegevens bij dit algoritme kijken waarvan de inhoud privacyrisico's met zich meebrengt of zou kunnen brengen. Er worden geen mensen op schaal of systematisch gevolgd in de openbare ruimte door dit algoritme.", + "required": false + }, + "objection_procedure": { + "type": "string", + "title": "Bezwaarprocedure", + "max_length": 5000, + "show_always": true, + "help_text": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme.", + "instructions": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme.", + "example": "Indien de uitkomst van het algoritme een nadelig effect heeft gehad op bijvoorbeeld een weggebruiker of omwonende, neem dan contact op met het gemeenteloket op https://gemeentenoorderhaaks.nl/contact. Wij behandelen uw aanvraag binnen tien werkdagen.", + "required": false + }, + "standard_version": { + "type": "enum", + "title": "Schema", + "show_always": false, + "help_text": "", + "instructions": "De versie van de metadatastandaard die gehanteerd is voor deze registratie.Op dit moment is dat ‘0.2.3’.", + "example": "0.2.3", + "required": false, + "permitted_values": [ + "0.2.3" + ] + }, + "uuid": { + "type": "string", + "title": "UUID", + "max_length": 100, + "show_always": false, + "help_text": "", + "instructions": "De unieke identificatie (UUID) voor deze registratie. Bij het aanleveren van deze registraties wordt er automatisch een UUID gegenereerd door de website van het landelijk algoritmeregister. Hier dient bij de eerste aanlevering dus niks handmatig ingevuld te worden. Bij het wijzigen van registraties kan naar deze UUID verwezen worden om de juiste registratie te vinden. In het geval van een update van een al bestaand en gepubliceerde registratie, moet de UUID in de toekomst wel worden ingevuld.", + "example": "n.v.t.", + "required": false + }, + "url": { + "type": "string", + "title": "Link naar bronregistratie", + "max_length": 100, + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "Als de organisatie zelf ook een algoritmeregister gepubliceerd heeft waarvandaan uiteindelijk de informatie opgehaald wordt, dan kan vanaf hiernaar verwezen worden.", + "example": "https://algoritmes.gemeentenoorderhaaks.nl/", + "required": false + }, + "contact_email": { + "type": "string", + "title": "E-mailadres van de contactpersoon", + "max_length": 100, + "show_always": true, + "help_text": "De e-mail voor contact over deze registratie.", + "instructions": "Het e-mailadres voor contact over deze registratie. Dit moet een geldig mailadres zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme.", + "example": "Algoritmes@gemeentenoorderhaaks.nl", + "required": false + }, + "area": { + "type": "string", + "title": "Geografisch gebied", + "max_length": 100, + "show_always": false, + "help_text": "Het geografische gebied waarin het algoritme wordt ingezet.", + "instructions": "Het geografische gebied waarin het algoritme ingezet wordt, zoals een gemeente, (veiligheids)regio, natuurgebied, of provincie.", + "example": "Gemeente Noorderhaaks", + "required": false + }, + "lang": { + "type": "string", + "title": "Taal", + "max_length": 100, + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd.", + "instructions": "Naam van de taal. Op dit moment wordt alleen Nederlands aangeboden.", + "example": "Nederlands", + "required": false + }, + "revision_date": { + "type": "string", + "title": "Herzieningsdatum", + "max_length": 10, + "show_always": false, + "help_text": "De datum waarvoor deze registratie moet worden herzien.", + "instructions": "De datum waarvoor deze registratie moet worden herzien. Het is handig periodiek te controleren of de registratie nog actueel is. Het kan daarbij slim zijn om een datum te kiezen waarop een wijziging verwacht wordt. De wettelijke grondslag van sommige regelingen wijzigt bijvoorbeeld jaarlijks per 1 januari, waardoor dat een logisch moment van herziening is. ", + "example": "01-12-2023", + "required": false + } + } +} \ No newline at end of file diff --git a/backend/app/schemas/config/v0_3_1.json b/backend/app/schemas/config/v0_3_1.json new file mode 100644 index 00000000..756e63f5 --- /dev/null +++ b/backend/app/schemas/config/v0_3_1.json @@ -0,0 +1,379 @@ +{ + "properties": { + "name": { + "type": "string", + "title": "Naam", + "max_length": 100, + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "De algemeen gehanteerde naam van het algoritme.", + "example": "Automatische Verkeersregeling Ringweg", + "required": true + }, + "organization": { + "type": "string", + "title": "Organisatie", + "max_length": 100, + "show_always": true, + "help_text": "De volledige naam van de organisatie verantwoordelijk voor de inzet van het algoritme.", + "instructions": "De naam van de organisatie verantwoordelijk voor de inzetvan het algoritme. In het geval van een uitvoeringsorganisatie vallend onder een ministerie: gebruik de naam van de uitvoeringsorganisatie zelf. Bij het veld 'tags' kunnen afkortingen worden toegevoegd of ministeries voor betere vindbaarheid.", + "example": "Gemeente Noorderhaaks", + "required": true + }, + "department": { + "type": "string", + "title": "Afdeling", + "max_length": 500, + "show_always": true, + "help_text": "De volledige naam van de afdeling of divisie verantwoordelijk voor de inzet van het algoritme.", + "instructions": "De volledige naam van de afdeling van de organisatie verantwoordelijk voor het gebruik van het algoritme.", + "example": "Afdeling Verkeer & Bereikbaarheid", + "required": false + }, + "description_short": { + "type": "string", + "title": "Korte omschrijving", + "max_length": 250, + "show_always": true, + "help_text": "Een korte, abstracte beschrijving van het algoritme.", + "instructions": "Een korte, abstracte beschrijving van het algoritme (<250 tekens). Bij voorkeur in één of twee zinnen. Vul dit veld in op B1-taalniveau.", + "example": "Dit algoritme optimaliseert de doorstroom van verkeer bij kruispunten op basis van sensoren in het wegdek.", + "required": false + }, + "type": { + "type": "enum", + "title": "Type algoritme", + "show_always": true, + "help_text": "Is het algoritme op regels gebaseerd of zelflerend? Regelgebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes kunnen zelf verbanden ontdekken in gegevens.", + "instructions": "Is het algoritme op regels gebaseerd of zelflerend? Op regels gebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes hebben zichzelf getraind op basis van data. In het geval dat een algoritme deels beiden doet, kies voor 'Zelflerend'. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan 'regelgebaseerd' of 'zelflerend'.", + "example": "Regelgebaseerd", + "required": false, + "permitted_values": [ + "Regelgebaseerd", + "Zelflerend" + ] + }, + "category": { + "type": "string", + "title": "Beleidsterrein", + "max_length": 500, + "show_always": true, + "help_text": "Het beleidsterrein waarin het algoritme wordt ingezet.", + "instructions": "Het beleidsterrein waarin het algoritme wordt ingezet.", + "example": "Mobiliteit", + "required": false + }, + "website": { + "type": "string", + "title": "Link naar publiekspagina", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over de inzet van het algoritme binnen de organisatie. Begin een URL met https://", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI", + "required": false + }, + "status": { + "type": "enum", + "title": "Status", + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "De huidige status van het algoritme: - In ontwikkeling - In gebruik - Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor 'In gebruik'.", + "example": "In gebruik", + "required": false, + "permitted_values": [ + "In ontwikkeling", + "In gebruik", + "Buiten gebruik" + ] + }, + "goal": { + "type": "string", + "title": "Doel", + "max_length": 2500, + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen.", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen. Vul dit veld in op B1-taalniveau.", + "example": "Het doel van dit algoritme is om de doorstroom van het verkeer binnen de gemeente te verbeteren. Door kortere wachttijden bij het stoplicht kunnen weggebruikers sneller van A naar B komen.", + "required": false + }, + "impact": { + "type": "string", + "title": "Impact", + "max_length": 2500, + "show_always": true, + "help_text": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf?", + "instructions": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf? Vul dit veld in op B1-taalniveau.", + "example": "De impact op een individu is dat het algoritme bepaalt wanneer diegene aan de beurt is om over het kruispunt te steken. De consequenties van deze impact zijn in alle waarschijnlijkheid erg klein. Het betreft een oponthoud van maximaal enkele minuten.", + "required": false + }, + "proportionality": { + "type": "string", + "title": "Proportionaliteit", + "max_length": 2500, + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn.Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau.", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers.", + "required": false + }, + "provider": { + "type": "string", + "title": "Leverancier", + "max_length": 100, + "show_always": false, + "help_text": "Indien van toepassing, de externe leverancier van het algoritme.", + "instructions": "Naam van de externe leverancier van het algoritme. Indien uw organisatie zelf het algoritme heeft ontwikkeld, dient dit veld leeg te blijven.", + "example": "Haaks softwarebedrijf", + "required": false + }, + "application_url": { + "type": "string", + "title": "Link naar leverancier", + "max_length": 500, + "show_always": false, + "help_text": "Indien van toepassing, de link naar de externe leverancier.", + "instructions": "Een URL naar de derde partij die het algoritme heeft ontwikkeld. Indien uw organisatie zelf het algoritme heeft ontwikkeld, dient dit veld leeg te blijven. Begin een URL met https://", + "example": "https://haakssoftwarebedrijf.nl/vrisoftware", + "required": false + }, + "process_index_url": { + "type": "string", + "title": "Link naar verwerkingsregister", + "max_length": 500, + "show_always": false, + "help_text": "De link naar de AVG-verwerking in een publiek register van het algoritme.", + "instructions": "Indien van toepassing en beschikbaar, de link naar de AVG-verwerking in een publiek register van het algoritme. Begin een URL met https://", + "example": "https://gemeentenoorderhaaks.nl/verwerkingen/Automatische-Verkeersregeling-Ringweg", + "required": false + }, + "lawful_basis": { + "type": "string", + "title": "Wettelijke grondslag", + "max_length": 2500, + "show_always": true, + "help_text": "Een omschrijving of een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "instructions": "Een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit.Indien er geen publiek beschikbare grondslag beschikbaar is, volstaat een beschrijving ook.", + "example": "https://wetten.overheid.nl/BWBR0006622/2023-01-01", + "required": false + }, + "iama": { + "type": "enum", + "title": "Mensenrechtentoets", + "show_always": true, + "help_text": "Is het algoritme getoetst op het nakomen van mensenrechten zoals middels een Impact Assessment Mensenrechten en Algoritmes (IAMA)?", + "instructions": "Is het algoritme getoetst op het nakomen van mensenrechten, bijvoorbeeld met een Impact Assessment Mensenrechten en Algoritmes (IAMA)? De resultaten van de mensenrechtentoets kunnen verwerkt worden in diverse andere velden. Ook kan er in het veld 'Link naar mensenrechtentoets' gelinkt worden naar een eventueel gepubliceerde mensenrechtentoets. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan 'Ja' of 'Nee' (let op hoofdletters).'", + "example": "Ja", + "required": false, + "permitted_values": [ + "Ja", + "Nee" + ] + }, + "iama_description": { + "type": "string", + "title": "Link naar Mensenrechtentoets", + "max_length": 500, + "show_always": true, + "help_text": "Link naar de resultaten van een uitgevoerde mensenrechtentoets, zoals een IAMA.", + "instructions": "Link naar de resultaten van een mensenrechtentoets, indien deze is uitgevoerd en publiek beschikbaar is. Een voorbeeld hiervan is het impact assessment mensenrechten en algoritmes (IAMA). Begin een URL met https://", + "example": "https://gemeentenoorderhaaks.nl/Archief/toetsen/AVR-IAMA", + "required": false + }, + "dpia": { + "type": "enum", + "title": "Data Protection Impact Assessment (DPIA)", + "show_always": false, + "help_text": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA).", + "instructions": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA)? Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan 'Ja' of 'Nee' (let op hoofdletters).", + "example": "Ja", + "required": false, + "permitted_values": [ + "Ja", + "Nee" + ] + }, + "objection_procedure": { + "type": "string", + "title": "Bezwaarprocedure", + "max_length": 2500, + "show_always": true, + "help_text": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme.", + "instructions": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme.", + "example": "Indien de uitkomst van het algoritme een nadelig effect heeft gehad op bijvoorbeeld een weggebruiker of omwonende, neem dan contact op met het gemeenteloket op https://gemeentenoorderhaaks.nl/contact. Wij behandelen uw aanvraag binnen tien werkdagen.", + "required": false + }, + "url": { + "type": "string", + "title": "Link naar bronregistratie", + "max_length": 500, + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "Als de organisatie zelf ook een algoritmeregister gepubliceerd heeft waarvandaan uiteindelijk de informatie opgehaald wordt, dan kan vanaf hiernaar verwezen worden.", + "example": "https://algoritmes.gemeentenoorderhaaks.nl/", + "required": false + }, + "contact_email": { + "type": "string", + "title": "E-mailadres van de contactpersoon", + "max_length": 500, + "show_always": true, + "help_text": "De e-mail voor contact over deze registratie.", + "instructions": "Het e-mailadres voor contact over deze registratie. Dit moet een geldig mailadres zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme.", + "example": "algoritmes@gemeentenoorderhaaks.nl", + "required": false + }, + "area": { + "type": "string", + "title": "Geografisch gebied", + "max_length": 100, + "show_always": false, + "help_text": "Het geografische gebied waarin het algoritme wordt ingezet.", + "instructions": "Het geografische gebied waarin het algoritme ingezet wordt, zoals een gemeente, (veiligheids)regio, natuurgebied, of provincie.", + "example": "Gemeente Noorderhaaks", + "required": false + }, + "lang": { + "type": "string", + "title": "Taal", + "max_length": 3, + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd.", + "instructions": "De ISO 639-3 code van de taal van de registratie. Op dit moment wordt alleen Nederlands (nld) aangeboden.", + "example": "nld", + "required": false + }, + "standard_version": { + "type": "enum", + "title": "Schema", + "show_always": false, + "help_text": "De versie van de publicatiestandaard waar dit algoritme in is geregistreed.", + "instructions": "De versie van de publicatiestandaard die gehanteerd is voor deze registratie.Op dit moment is dat '0.3.1'.", + "example": "0.3.1", + "required": false, + "permitted_values": [ + "0.3.1" + ] + }, + "uuid": { + "type": "string", + "title": "UUID", + "max_length": 100, + "show_always": false, + "help_text": "De unieke code van dit algoritme in het landelijke register.", + "instructions": "De unieke identificatie voor deze registratie in landelijke register. Bij het aanleveren van deze registraties wordt er automatisch een identificatie gegenereerd door de website van het landelijk algoritmeregister. Hier dient bij de eerste aanlevering dus niks handmatig ingevuld te worden. Bij het wijzigen van registraties kan naar deze identificatie verwezen worden om de juiste registratie te vinden. In het geval van een update van een al bestaand en gepubliceerde registratie, moet de identificatie in de toekomst wel worden ingevuld.", + "example": "n.v.t.", + "required": false + }, + "source_id": { + "type": "string", + "title": "Bron-ID", + "max_length": 100, + "show_always": false, + "help_text": "De unieke code van dit algoritme in het register van de eigenaar", + "instructions": "Indien van toepassing, de unieke identificatie voor deze registratie zoals door de eigenaar wordt gehanteerd. Dit is dus de verwijzing naar het algoritme in de interne database of het interne register van uw organisatie.", + "example": "n.v.t.", + "required": false + }, + "revision_date": { + "type": "string", + "title": "Herzieningsdatum", + "max_length": 10, + "show_always": false, + "help_text": "De datum waarvoor deze registratie moet worden herzien.", + "instructions": "De datum waarvoor deze registratie moet worden herzien, in DD-MM-YYYY formaat. Het is handig periodiek te controleren of de registratie nog actueel is. Het kan daarbij slim zijn om een datum te kiezen waarop een wijziging verwacht wordt. De wettelijke grondslag van sommige regelingen wijzigt bijvoorbeeld jaarlijks per 1 januari, waardoor dat een logisch moment van herziening is. ", + "example": "01-12-2023", + "required": false + }, + "tags": { + "type": "string", + "title": "Tags", + "max_length": 2500, + "show_always": false, + "help_text": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten.", + "instructions": "Termen gerelateerd aan dit algoritme. Gescheiden door komma's. Dit veld wordt niet weergegeven op de website en kan worden gebruikt om de vindbaarheid van de registratie te verbeteren. Zo kan bijvoorbeeld de naam van het relevante ministerie worden toegevoegd om als uitvoerorganisatie beter vindbaar te zijn met de zoekfunctie.", + "example": "Verkeer, Mobiliteit, VRI, Infrastructuur, Waddengebied", + "required": false + }, + "description": { + "type": "string", + "title": "Omschrijving", + "max_length": 2500, + "show_always": false, + "help_text": "Een uitgebreide beschrijving van het algoritme (500-5000 tekens).", + "instructions": "Een uitgebreide beschrijving van het algoritme. Vul dit veld in op B1-taalniveau.", + "example": "Er is veel verkeer op de kruispunten van de ringweg om de gemeente Noorderhaaks. De verkeersregeling van de stoplichten loopt niet altijd hetzelfde. Met behulp van sensoren in het wegdek kan een computersysteem een idee krijgen van waar er iemand voor een stoplicht staat. Het systeem gebruikt een algoritme om te kijken of het stoplicht sneller op groen kan dan het normaal zou gaan. Het checkt of er op dat moment nog weggebruikers op andere plekken rijden. Zo niet, dan kunnen andere stoplichten sneller op rood, en het stoplicht in kwestie op groen. Zo verbetert de doorstroom van verkeer, vooral als het rustig is op de weg.", + "required": false + }, + "source_data": { + "type": "string", + "title": "Databronnen", + "max_length": 5000, + "show_always": false, + "help_text": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme", + "instructions": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme. Idealiter bevat het overzicht URL's naar relevante publiekspagina's over de bron, of, indien mogelijk, een URL naar de bron zelf.", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks.", + "required": false + }, + "methods_and_models": { + "type": "string", + "title": "Methoden en modellen", + "max_length": 5000, + "show_always": false, + "help_text": "Standaardmethoden of modellen die het algoritme gebruikt.", + "instructions": "Een technische uitleg van hoe het algoritme werkt en uitkomsten genereert. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas. Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL's naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten.", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI", + "required": false + }, + "publiccode": { + "type": "string", + "title": "Link naar broncode", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf.", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven. Begin een URL met https://", + "example": "https://github.com/haakssoftwarebedrijf.nl/vrisoftware", + "required": false + }, + "monitoring": { + "type": "string", + "title": "Monitoring", + "max_length": 2500, + "show_always": false, + "help_text": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord.", + "instructions": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord, zowel in real time als evaluatie achteraf.", + "example": "Bij monitoring van het algoritme wordt de gemaakte verkeersstroom vergeleken met het live-verkeer op plaatselijke camera's. Dagelijks wordt er met steekproeven gecontroleerd op de camerabeelden of de automatische verkeersregeling zorgt voor een goede doorstroom.", + "required": false + }, + "human_intervention": { + "type": "string", + "title": "Menselijke tussenkomst", + "max_length": 2500, + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden. Vul dit veld in op B1-taalniveau.", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht.", + "required": false + }, + "risks": { + "type": "string", + "title": "Risico's", + "max_length": 2500, + "show_always": false, + "help_text": "Een overzicht van de voorziene risico's bij de inzet van het algoritme", + "instructions": "Een overzicht van de voorziene risico's bij de inzet van het algoritme. Denk aan risico's die kunnen ontstaan in de hele keten, van observatiedata tot uitkomst voor een gebruiker.", + "example": "De uitkomsten van het algoritme zijn alleen gebaseerd op sensoren in het wegdek die meten of er een vehikel is gepasseerd. Er is bij binnenkomst van data in het algoritme één voorzien risico: bij een defecte sensor kan het gebeuren dat weggebruikers lang blijven staan omdat ze niet worden als aanwezig worden herkend door het algoritme. Wij gaan dit tegen door de constante monitoring. Zo is de kans bijzonder klein dat dit langdurige nadelen heeft op een individu, en hoeft niemand uren stil te blijven staan. Voor de rest zijn er geen voorziene risico's, omdat bij gebrekkig functioneren van dit algoritme het traditionele systeem ook prima functioneert als plan B.", + "required": false + }, + "performance_standard": { + "type": "string", + "title": "Prestatienormen", + "max_length": 2500, + "show_always": false, + "help_text": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten.", + "instructions": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten.", + "example": "Het algoritme moet in ieder geval even goed presteren als een standaardinstelling van een verkeersinstallatie zonder sensoren. In eerdere pilots zagen we een verbetering van gemiddeld 36% minder wachttijd voor weggebruikers buiten de spits. Wij hanteren een minimum van 15% buiten spitstijden. Tijdens de spits is dit de baseline (0%).", + "required": false + } + } +} \ No newline at end of file diff --git a/backend/app/schemas/config/v0_4.json b/backend/app/schemas/config/v0_4.json new file mode 100644 index 00000000..e115f110 --- /dev/null +++ b/backend/app/schemas/config/v0_4.json @@ -0,0 +1,332 @@ +{ + "properties": { + "name": { + "type": "string", + "title": "Naam", + "max_length": 100, + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "De algemeen gehanteerde naam van het algoritme.", + "example": "Automatische Verkeersregeling Ringweg", + "required": true + }, + "organization": { + "type": "string", + "title": "Organisatie", + "max_length": 250, + "show_always": true, + "help_text": "De volledige naam van de organisatie waar het algoritme ingezet wordt.", + "instructions": "De volledige naam van de organisatie waar het algoritme ingezet wordt. In het geval van een uitvoeringsorganisatie vallend onder een ministerie: gebruik de naam van de uitvoeringsorganisatie zelf, gevolgd door de afkorting tussen haakjes.", + "example": "Gemeente Noorderhaaks", + "required": true + }, + "description_short": { + "type": "string", + "title": "Korte omschrijving", + "max_length": 250, + "show_always": true, + "help_text": "Een korte beschrijving van het algoritme.", + "instructions": "Een korte, duidelijke beschrijving van het algoritme en het proces waarin deze gebruikt wordt. Bij voorkeur in één of twee zinnen. Doel van dit veld is om bij het zoeken naar algoritmes een korte omschrijving van het algoritme te geven. Vul dit veld in op B1-taalniveau. ", + "example": "Dit algoritme zorgt met sensoren in het wegdek ervoor dat het verkeer zo makkelijk mogelijk doorstroomt.", + "required": false + }, + "type": { + "type": "enum", + "title": "(Zelf)lerend", + "show_always": true, + "help_text": "Is het algoritme zelflerend? In een niet-zelflerend algoritme specificeert de mens de regels die de computer moet volgen. Als het een zelflerend algoritme is, leert de machine over de patronen in de data. ", + "instructions": "Is het algoritme zelflerend? In een niet-zelflerend algoritme specificeert de mens de regels die de computer moet volgen. Als het een zelflerend algoritme is, leert de machine over de patronen in de data. In het geval dat een algoritme deels beiden doet, kies voor dan voor zelflerend. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven.", + "example": "Nee", + "required": false, + "permitted_values": ["Ja", "Nee"] + }, + "category": { + "type": "array", + "title": "Beleidsterrein", + "show_always": true, + "help_text": "Het beleidsterrein waarin het algoritme wordt ingezet", + "instructions": "Beleidsterrein(en) waarin het algoritme wordt ingezet.", + "example": ["Verkeer", "Landbouw"], + "required": false, + "permitted_values": [ + "Organisatie en bedrijfsvoering", + "Dienstverlening", + "Bestuur", + "Cultuur en recreatie", + "Economie", + "Financiën", + "Huisvesting", + "Internationaal", + "Landbouw", + "Migratie en integratie", + "Natuur en milieu", + "Onderwijs en wetenschap", + "Openbare orde en veiligheid", + "Recht", + "Ruimte en infrastructuur", + "Sociale zekerheid", + "Verkeer", + "Werk", + "Zorg en gezondheid" + ] + }, + "website": { + "type": "string", + "title": "Link naar publiekspagina", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over het proces waarin het algoritme ingezet wordt. Dit is een andere pagina dan de link naar het decentrale register. Begin een URL met https:// ", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI", + "required": false + }, + "status": { + "type": "enum", + "title": "Status", + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "De huidige status van het algoritme: In ontwikkeling, In gebruik, Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor ‘In gebruik’. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven. Het is niet verplicht algoritmes in ontwikkeling te vermelden in het Algoritmeregister. De mogelijkheid wordt wel geboden voor organisaties die burgers willen betrekken al tijdens de ontwikkelingen van algoritmes. ", + "example": "In gebruik", + "required": false, + "permitted_values": ["In ontwikkeling", "In gebruik", "Buiten gebruik"] + }, + "begin_date": { + "type": "string", + "title": "Begindatum", + "max_length": 7, + "show_always": true, + "help_text": "Maand waarin het algoritme in gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme in gebruik is genomen. Schrijf de datum op zoals in dit voorbeeld: 01-1970", + "example": "2023-01", + "required": false + }, + "end_date": { + "type": "string", + "title": "Einddatum", + "max_length": 7, + "show_always": false, + "help_text": "Maand waarin het algoritme buiten gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme buiten gebruik is genomen. Als het algoritme nog in gebruik is, moet dit veld leegblijven. Schrijf de datum zoals in dit voorbeeld: 01-1970", + "example": "2023-05", + "required": false + }, + "goal": { + "type": "string", + "title": "Doel en impact", + "max_length": 2500, + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en wat voor impact de inzet heeft op burgers en bedrijven. ", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is en wat voor impact de inzet heeft op burgers en bedrijven. Vul dit veld in op B1-taalniveau. ", + "example": "", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "proportionality": { + "type": "string", + "title": "Afwegingen", + "max_length": 2500, + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn. Neem ook de ethische afwegingen mee in het invullen. Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau.", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers.", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "provider": { + "type": "string", + "title": "Leverancier", + "max_length": 200, + "show_always": false, + "help_text": "Indien van toepassing, de externe leverancier van het algoritme.", + "instructions": "Naam van de externe leverancier van het algoritme. Als het intern ontwikkeld is, noteer dan ‘Intern ontwikkeld’. Het gaat hierbij bijvoorbeeld niet om het gebruik van open source packages die gebruikt worden in een groter algoritme.", + "example": "Haaks softwarebedrijf", + "required": false + }, + "lawful_basis": { + "type": "string", + "title": "Wettelijke basis", + "max_length": 2500, + "show_always": false, + "help_text": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt ", + "instructions": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt ", + "example": "", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "lawful_basis_link": { + "type": "string", + "title": "Link naar wettelijke basis", + "max_length": 500, + "show_always": false, + "help_text": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt.", + "instructions": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "example": "https://wetten.overheid.nl/BWBR0006622/2023-01-01 ", + "required": false + }, + "impacttoetsen": { + "type": "array", + "title": "Impacttoetsen", + "show_always": true, + "help_text": "Welke impacttoetsen zijn gebruikt, zoals Data Protection Impact Assessment (DPIA) of Impact Assessment Mensenrechten en Algoritmes (IAMA)? ", + "instructions": "Naam/namen van uitgevoerde impacttoetsen. Dit veld is vrij in te vullen. De gegeven waardes zijn alleen suggesties.", + "example": ["Impact Assessment Mensenrechten en Algoritmes (IAMA)"], + "required": false, + "recommended_items": [ + "Data Protection Impact Assessment (DPIA)", + "Impact Assessment Mensenrechten en Algoritmes (IAMA)" + ] + }, + "iama_description": { + "type": "string", + "title": "Link naar impacttoetsen", + "max_length": 500, + "show_always": false, + "help_text": "Link naar de resultaten van een uitgevoerde impacttoets, zoals een DPIA IAMA.", + "instructions": "Link naar de resultaten van een impacttoets, indien deze is uitgevoerd en publiek beschikbaar is. Een voorbeeld hiervan is het impact assessment mensenrechten en algoritmes (IAMA) of het data protection impact assessment (DPIA). Formatteer het in een lijst en dusdanig dat de naam van de toets gevolgd wordt door een dubbele punt en de URL. Begin een URL met https://", + "example": "DPIA: https://link.com, IAMA: https://link.nl", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "url": { + "type": "string", + "title": "Link naar bronregistratie", + "max_length": 500, + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "Als de organisatie zelf ook een algoritmeregister gepubliceerd heeft waarvandaan uiteindelijk de informatie opgehaald wordt, dan kan vanaf hiernaar verwezen worden.", + "example": "https://algoritmes.gemeentenoorderhaaks.nl/", + "required": false + }, + "contact_email": { + "type": "string", + "title": "Contactgegevens", + "max_length": 500, + "show_always": true, + "help_text": "De contactgegevens voor deze registratie ", + "instructions": "Het e-mailadres voor contact over deze registratie. Dit kan een geldig mailadres zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme. Het alternatief is een extern webformulier die op dezelfde manier gebruikt kan worden. Begin een URL met https://.", + "example": "algoritmes@gemeentenoorderhaaks.nl", + "required": false + }, + "lang": { + "type": "string", + "title": "Taal", + "max_length": 3, + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd.", + "instructions": "De code van de taal van de registratie. Dit veld is aanwezig, omdat het Algoritmeregister meertalig aangeboden kan worden. Op dit moment wordt alleen Nederlands (nld) aangeboden. ", + "example": "nld", + "required": false + }, + "standard_version": { + "type": "enum", + "title": "Versie publicatiestandaard", + "show_always": false, + "help_text": "De versie van de publicatiestandaard waar dit algoritme in is geregistreed.", + "instructions": "De versie van de publicatiestandaard die gehanteerd is voor deze registratie.Op dit moment is dat '0.4'.", + "example": "0.4", + "required": false, + "permitted_values": ["0.4"] + }, + "uuid": { + "type": "string", + "title": "Landelijk-ID", + "max_length": 100, + "show_always": false, + "help_text": "De unieke code van dit algoritme in het landelijke register.", + "instructions": "De unieke identificatie van deze registratie in het landelijke Algoritmeregister. Bij het aanleveren van deze registratie wordt er automatisch een UUID gegenereerd door de database van het landelijk Algoritmeregister. Hier dient bij de eerste aanlevering dus niks handmatig ingevuld te worden. Bij het wijzigen van registraties kan naar deze ID verwezen worden om de juiste registratie te vinden. In het geval van een update van een al bestaand en gepubliceerde registratie, moet de ID in de toekomst wel worden ingevuld. ", + "example": "n.v.t.", + "required": false + }, + "source_id": { + "type": "string", + "title": "Bron-ID", + "max_length": 100, + "show_always": false, + "help_text": "De unieke code van dit algoritme in het register van de eigenaar", + "instructions": "Indien van toepassing, de unieke identificatie voor deze registratie zoals door de eigenaar wordt gehanteerd. Dit is dus de verwijzing naar het algoritme in de interne database of het interne register van uw organisatie.", + "example": "n.v.t.", + "required": false + }, + "tags": { + "type": "string", + "title": "Zoektermen", + "max_length": 2500, + "show_always": false, + "help_text": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten.", + "instructions": "Termen gerelateerd aan dit algoritme. Gescheiden door komma's. Dit veld wordt niet weergegeven op de website en kan worden gebruikt om de vindbaarheid van de registratie te verbeteren. Zo kan bijvoorbeeld de naam van het relevante ministerie worden toegevoegd om als uitvoerorganisatie beter vindbaar te zijn met de zoekfunctie.", + "example": "Verkeer, Mobiliteit, VRI, Infrastructuur, Waddengebied", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "source_data": { + "type": "string", + "title": "Gegevens", + "max_length": 5000, + "show_always": true, + "help_text": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks.", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "source_data_link": { + "type": "string", + "title": "Link naar gegevensbronnen", + "max_length": 500, + "show_always": false, + "help_text": "Links naar aanvullende informatie over de gebruikte gegevensbronnen", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "example": "Lijst van links naar aanvullende informatie over de gebruikte gegevensbronnen. Hierbij kan bijvoorbeeld gelinkt worden naar metadata in publieke datacatalogi of naar sensorenregistraties.", + "required": false + }, + "methods_and_models": { + "type": "string", + "title": "Technische werking", + "max_length": 5000, + "show_always": false, + "help_text": "Uitleg van hoe het algoritme werkt.", + "instructions": "Een technische uitleg van hoe het algoritme werkt en uitkomsten genereert. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas. Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL’s naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten.", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "publiccode": { + "type": "string", + "title": "Link naar broncode", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf.", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven. Begin een URL met https://", + "example": "https://github.com/haakssoftwarebedrijf.nl/vrisoftware", + "required": false + }, + "human_intervention": { + "type": "string", + "title": "Menselijke tussenkomst", + "max_length": 2500, + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden. Vul dit veld in op B1-taalniveau. ", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht.", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "risks": { + "type": "string", + "title": "Risicobeheer", + "max_length": 2500, + "show_always": true, + "help_text": "Een overzicht van de voorziene risico's bij de inzet van het algoritme en hoe deze, mits van toepassing, gemitigeerd zijn", + "instructions": "Een overzicht van de voorziene risico's bij de inzet van het algoritme en hoe deze, mits van toepassing, gemitigeerd zijn", + "example": "", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "lars": { + "title": "Algoritme-ID", + "type": "string", + "required": false, + "instructions": "Een unieke identificatie voor het algoritmebeschrijving. Dit wordt automatisch aangemaakt en ingevuld." + } + } +} diff --git a/backend/app/schemas/config/v0_4_0.json b/backend/app/schemas/config/v0_4_0.json new file mode 100644 index 00000000..c0d5e6df --- /dev/null +++ b/backend/app/schemas/config/v0_4_0.json @@ -0,0 +1,403 @@ +{ + "properties": { + "name": { + "type": "string", + "title": "Naam", + "max_length": 100, + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "De algemeen gehanteerde naam van het algoritme.", + "example": "Automatische Verkeersregeling Ringweg", + "required": true + }, + "organization": { + "type": "string", + "title": "Organisatie", + "max_length": 250, + "show_always": true, + "help_text": "De volledige naam van de organisatie waar het algoritme ingezet wordt.", + "instructions": "De volledige naam van de organisatie waar het algoritme ingezet wordt. In het geval van een uitvoeringsorganisatie vallend onder een ministerie: gebruik de naam van de uitvoeringsorganisatie zelf, gevolgd door de afkorting tussen haakjes.", + "example": "Gemeente Noorderhaaks", + "required": true + }, + "description_short": { + "type": "string", + "title": "Korte omschrijving", + "max_length": 250, + "show_always": true, + "help_text": "Een korte beschrijving van het algoritme.", + "instructions": "Een korte, duidelijke beschrijving van het algoritme en het proces waarin deze gebruikt wordt. Bij voorkeur in één of twee zinnen. Doel van dit veld is om bij het zoeken naar algoritmes een korte omschrijving van het algoritme te geven. Vul dit veld in op B1-taalniveau. ", + "example": "Dit algoritme zorgt met sensoren in het wegdek ervoor dat het verkeer zo makkelijk mogelijk doorstroomt.", + "required": false + }, + "type": { + "type": "enum", + "title": "(Zelf)lerend", + "show_always": true, + "help_text": "Is het algoritme zelflerend? In een niet-zelflerend algoritme specificeert de mens de regels die de computer moet volgen. Als het een zelflerend algoritme is, leert de machine over de patronen in de data. ", + "instructions": "Is het algoritme zelflerend? In een niet-zelflerend algoritme specificeert de mens de regels die de computer moet volgen. Als het een zelflerend algoritme is, leert de machine over de patronen in de data. In het geval dat een algoritme deels beiden doet, kies voor dan voor zelflerend. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven.", + "example": "Nee", + "required": false, + "permitted_values": [ + "Ja", + "Nee" + ] + }, + "category": { + "type": "array", + "title": "Beleidsterrein", + "show_always": true, + "help_text": "Het beleidsterrein waarin het algoritme wordt ingezet", + "instructions": "Beleidsterrein(en) waarin het algoritme wordt ingezet.", + "example": [ + "Verkeer", + "Landbouw" + ], + "required": false, + "permitted_values": [ + "Organisatie en bedrijfsvoering", + "Dienstverlening", + "Bestuur", + "Cultuur en recreatie", + "Economie", + "Financiën", + "Huisvesting", + "Internationaal", + "Landbouw", + "Migratie en integratie", + "Natuur en milieu", + "Onderwijs en wetenschap", + "Openbare orde en veiligheid", + "Recht", + "Ruimte en infrastructuur", + "Sociale zekerheid", + "Verkeer", + "Werk", + "Zorg en gezondheid" + ] + }, + "website": { + "type": "string", + "title": "Link naar publiekspagina", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over het proces waarin het algoritme ingezet wordt. Dit is een andere pagina dan de link naar het decentrale register. Begin een URL met https:// ", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI", + "required": false + }, + "status": { + "type": "enum", + "title": "Status", + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "De huidige status van het algoritme: In ontwikkeling, In gebruik, Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor ‘In gebruik’. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven. Het is niet verplicht algoritmes in ontwikkeling te vermelden in het Algoritmeregister. De mogelijkheid wordt wel geboden voor organisaties die burgers willen betrekken al tijdens de ontwikkelingen van algoritmes. ", + "example": "In gebruik", + "required": false, + "permitted_values": [ + "In ontwikkeling", + "In gebruik", + "Buiten gebruik" + ] + }, + "begin_date": { + "type": "string", + "title": "Begindatum", + "max_length": 7, + "show_always": true, + "help_text": "Maand waarin het algoritme in gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme in gebruik is genomen. Schrijf de datum op zoals in dit voorbeeld: 01-1970", + "example": "2023-01", + "required": false + }, + "end_date": { + "type": "string", + "title": "Einddatum", + "max_length": 7, + "show_always": false, + "help_text": "Maand waarin het algoritme buiten gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme buiten gebruik is genomen. Als het algoritme nog in gebruik is, moet dit veld leegblijven. Schrijf de datum zoals in dit voorbeeld: 01-1970", + "example": "2023-05", + "required": false + }, + "goal": { + "type": "string", + "title": "Doel en impact", + "max_length": 2500, + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en wat voor impact de inzet heeft op burgers en bedrijven. ", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is en wat voor impact de inzet heeft op burgers en bedrijven. Vul dit veld in op B1-taalniveau. ", + "example": "", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "proportionality": { + "type": "string", + "title": "Afwegingen", + "max_length": 2500, + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn. Neem ook de ethische afwegingen mee in het invullen. Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau.", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "provider": { + "type": "string", + "title": "Leverancier", + "max_length": 200, + "show_always": false, + "help_text": "Indien van toepassing, de externe leverancier van het algoritme.", + "instructions": "Naam van de externe leverancier van het algoritme. Als het intern ontwikkeld is, noteer dan ‘Intern ontwikkeld’. Het gaat hierbij bijvoorbeeld niet om het gebruik van open source packages die gebruikt worden in een groter algoritme.", + "example": "Haaks softwarebedrijf", + "required": false + }, + "lawful_basis": { + "type": "string", + "title": "Wettelijke basis", + "max_length": 2500, + "show_always": false, + "help_text": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt ", + "instructions": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt ", + "example": "", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "lawful_basis_link": { + "type": "string", + "title": "Link naar wettelijke basis", + "max_length": 500, + "show_always": false, + "help_text": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt.", + "instructions": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "example": "https://wetten.overheid.nl/BWBR0006622/2023-01-01 ", + "required": false + }, + "impacttoetsen": { + "type": "array", + "title": "Impacttoetsen", + "show_always": true, + "help_text": "Welke impacttoetsen zijn gebruikt, zoals Data Protection Impact Asssesment (DPIA) of Impact Assessment Mensenrechten en Algoritmes (IAMA)? ", + "instructions": "Naam/namen van uitgevoerde impacttoetsen. Dit veld is vrij in te vullen. De gegeven waardes zijn alleen suggesties.", + "example": [ + "Impact Assessment Mensenrechten en Algoritmes (IAMA)" + ], + "required": false, + "recommended_items": [ + "Data Protection Impact Asssesment (DPIA)", + "Impact Assessment Mensenrechten en Algoritmes (IAMA)" + ] + }, + "iama_description": { + "type": "string", + "title": "Link naar impacttoetsen", + "max_length": 500, + "show_always": false, + "help_text": "Link naar de resultaten van een uitgevoerde impacttoets, zoals een DPIA IAMA.", + "instructions": "Link naar de resultaten van een impacttoets, indien deze is uitgevoerd en publiek beschikbaar is. Een voorbeeld hiervan is het impact assessment mensenrechten en algoritmes (IAMA) of het data protection impact assessment (DPIA). Formatteer het in een lijst en dusdanig dat de naam van de toets gevolgd wordt door een dubbele punt en de URL. Begin een URL met https://", + "example": "DPIA: https://link.com, IAMA: https://link.nl", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "url": { + "type": "string", + "title": "Link naar bronregistratie", + "max_length": 500, + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "Als de organisatie zelf ook een algoritmeregister gepubliceerd heeft waarvandaan uiteindelijk de informatie opgehaald wordt, dan kan vanaf hiernaar verwezen worden.", + "example": "https://algoritmes.gemeentenoorderhaaks.nl/", + "required": false + }, + "contact_email": { + "type": "string", + "title": "Contactgegevens", + "max_length": 500, + "show_always": true, + "help_text": "De contactgegevens voor deze registratie ", + "instructions": "Het e-mailadres voor contact over deze registratie. Dit kan een geldig mailadres zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme. Het alternatief is een extern webformulier die op dezelfde manier gebruikt kan worden. Begin een URL met https://.", + "example": "algoritmes@gemeentenoorderhaaks.nl", + "required": false + }, + "lang": { + "type": "string", + "title": "Taal", + "max_length": 3, + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd.", + "instructions": "De code van de taal van de registratie. Dit veld is aanwezig, omdat het Algoritmeregister meertalig aangeboden kan worden. Op dit moment wordt alleen Nederlands (nld) aangeboden. ", + "example": "nld", + "required": false + }, + "standard_version": { + "type": "enum", + "title": "Versie publicatiestandaard", + "show_always": false, + "help_text": "De versie van de publicatiestandaard waar dit algoritme in is geregistreed.", + "instructions": "De versie van de publicatiestandaard die gehanteerd is voor deze registratie.Op dit moment is dat '0.4.0'.", + "example": "0.4.0", + "required": false, + "permitted_values": [ + "0.4.0" + ] + }, + "uuid": { + "type": "string", + "title": "Landelijk-ID", + "max_length": 100, + "show_always": false, + "help_text": "De unieke code van dit algoritme in het landelijke register.", + "instructions": "De unieke identificatie van deze registratie in het landelijke Algoritmeregister. Bij het aanleveren van deze registratie wordt er automatisch een UUID gegenereerd door de database van het landelijk Algoritmeregister. Hier dient bij de eerste aanlevering dus niks handmatig ingevuld te worden. Bij het wijzigen van registraties kan naar deze ID verwezen worden om de juiste registratie te vinden. In het geval van een update van een al bestaand en gepubliceerde registratie, moet de ID in de toekomst wel worden ingevuld. ", + "example": "n.v.t.", + "required": false + }, + "source_id": { + "type": "string", + "title": "Bron-ID", + "max_length": 100, + "show_always": false, + "help_text": "De unieke code van dit algoritme in het register van de eigenaar", + "instructions": "Indien van toepassing, de unieke identificatie voor deze registratie zoals door de eigenaar wordt gehanteerd. Dit is dus de verwijzing naar het algoritme in de interne database of het interne register van uw organisatie.", + "example": "n.v.t.", + "required": false + }, + "tags": { + "type": "string", + "title": "Zoektermen", + "max_length": 2500, + "show_always": false, + "help_text": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten.", + "instructions": "Termen gerelateerd aan dit algoritme. Gescheiden door komma's. Dit veld wordt niet weergegeven op de website en kan worden gebruikt om de vindbaarheid van de registratie te verbeteren. Zo kan bijvoorbeeld de naam van het relevante ministerie worden toegevoegd om als uitvoerorganisatie beter vindbaar te zijn met de zoekfunctie.", + "example": "Verkeer, Mobiliteit, VRI, Infrastructuur, Waddengebied", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "source_data": { + "type": "string", + "title": "Gegevens", + "max_length": 5000, + "show_always": true, + "help_text": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "source_data_link": { + "type": "string", + "title": "Link naar gegevensbronnen", + "max_length": 500, + "show_always": false, + "help_text": "Links naar aanvullende informatie over de gebruikte gegevensbronnen", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "example": "Lijst van links naar aanvullende informatie over de gebruikte gegevensbronnen. Hierbij kan bijvoorbeeld gelinkt worden naar metadata in publieke datacatalogi of naar sensorenregistraties.", + "required": false + }, + "methods_and_models": { + "type": "string", + "title": "Technische werking", + "max_length": 5000, + "show_always": false, + "help_text": "Uitleg van hoe het algoritme werkt.", + "instructions": "Een technische uitleg van hoe het algoritme werkt en uitkomsten genereert. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas. Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL’s naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten.", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "publiccode": { + "type": "string", + "title": "Link naar broncode", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf.", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven. Begin een URL met https://", + "example": "https://github.com/haakssoftwarebedrijf.nl/vrisoftware", + "required": false + }, + "human_intervention": { + "type": "string", + "title": "Menselijke tussenkomst", + "max_length": 2500, + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden. Vul dit veld in op B1-taalniveau. ", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "risks": { + "type": "string", + "title": "Risicobeheer", + "max_length": 2500, + "show_always": true, + "help_text": "Een overzicht van de voorziene risico's bij de inzet van het algoritme en hoe deze, mits van toepassing, gemitigeerd zijn", + "instructions": "Een overzicht van de voorziene risico's bij de inzet van het algoritme en hoe deze, mits van toepassing, gemitigeerd zijn", + "example": "", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + } + } +} \ No newline at end of file diff --git a/backend/app/schemas/config/v1_0.json b/backend/app/schemas/config/v1_0.json new file mode 100644 index 00000000..7f0e99f7 --- /dev/null +++ b/backend/app/schemas/config/v1_0.json @@ -0,0 +1,388 @@ +{ + "properties": { + "name": { + "type": "string", + "title": "Naam", + "max_length": 100, + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "Gebruik een naam, bij voorkeur met een werkwoord, die aangeeft wat het algoritme doet. Dit kan de algemeen gehanteerde naam zijn van het algoritme binnen de organisatie, mits begrijpelijk voor externen die niet bekend zijn met het algoritme.", + "example": "Automatische Verkeersregeling Ringweg", + "required": true + }, + "description_short": { + "type": "string", + "title": "Korte omschrijving", + "max_length": 350, + "show_always": true, + "help_text": "Een korte beschrijving van het algoritme.", + "instructions": "Een korte, duidelijke beschrijving van het algoritme en het proces waarin deze gebruikt wordt. Bij voorkeur in twee of drie zinnen. Doel van dit veld is om snel begrip te krijgen van wat het algoritme doet. Het veld wordt weergegeven in het zoekoverzicht. Vul dit veld in op B1-taalniveau.", + "example": "Dit algoritme zorgt met sensoren in het wegdek ervoor dat het verkeer zo makkelijk mogelijk doorstroomt.", + "required": true + }, + "organization": { + "type": "string", + "title": "Organisatie", + "max_length": 100, + "show_always": true, + "help_text": "De volledige naam van de organisatie waar het algoritme ingezet wordt.", + "instructions": "De volledige naam van de organisatie waar het algoritme ingezet wordt. Deze wordt gebaseerd op de TOOI-waardelijst: standaarden.overheid.nl. Eén registratie kan maar over één organisatie gaan. Er kunnen dus niet meerdere waarden ingevuld worden. Indien een algoritme bij meerdere organisaties wordt ingezet, zijn aparte registraties vereist.", + "example": "Gemeente Noorderhaaks", + "required": true + }, + "category": { + "type": "array", + "title": "Thema", + "max_items": 3, + "show_always": true, + "help_text": "Het beleidsterrein waarin het algoritme wordt ingezet", + "instructions": "Beleidsterrein(en) waarin het algoritme wordt ingezet.", + "example": ["Verkeer"], + "required": false, + "permitted_values": [ + "Organisatie en bedrijfsvoering", + "Cultuur en recreatie", + "Economie", + "Overheidsfinanciën", + "Wonen", + "Internationaal", + "Migratie en integratie", + "Natuur en milieu", + "Onderwijs en wetenschap", + "Openbare orde en veiligheid", + "Recht", + "Ruimte en infrastructuur", + "Sociale zekerheid", + "Verkeer", + "Werk", + "Zorg en gezondheid" + ] + }, + "status": { + "type": "enum", + "title": "Status", + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "De huidige status van het algoritme: In ontwikkeling, In gebruik, Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor ‘In gebruik’. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven. Het is niet verplicht algoritmes in ontwikkeling of buiten gebruik te vermelden in het Algoritmeregister. De mogelijkheid wordt wel geboden voor organisaties die burgers willen betrekken al tijdens de ontwikkelingen van algoritmes. ", + "example": "In gebruik", + "required": true, + "permitted_values": ["In ontwikkeling", "In gebruik", "Buiten gebruik"] + }, + "begin_date": { + "type": "string", + "title": "Begindatum", + "max_length": 7, + "show_always": true, + "help_text": "Maand waarin het algoritme in gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme in gebruik is genomen. Schrijf de datum op zoals in dit voorbeeld: 2023-01.", + "example": "2023-01", + "required": false + }, + "end_date": { + "type": "string", + "title": "Einddatum", + "max_length": 7, + "show_always": false, + "help_text": "Maand waarin het algoritme buiten gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme buiten gebruik is genomen. Als het algoritme nog in gebruik is, moet dit veld leegblijven. Schrijf de datum zoals in dit voorbeeld: 2023-01.", + "example": "2023-05", + "required": false + }, + "contact_email": { + "type": "string", + "title": "Contactgegevens", + "max_length": 500, + "show_always": true, + "help_text": "De contactgegevens voor deze registratie ", + "instructions": "Het e-mailadres of de website voor contact over deze registratie. Dit moet een geldig mailadres of website zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme. Begin een website-URL met https://", + "example": "algoritmes@gemeentenoorderhaaks.nl", + "required": true + }, + "website": { + "type": "string", + "title": "Link naar publiekspagina", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over het proces waarin het algoritme ingezet wordt. Dit kan bijvoorbeeld een pagina zijn waar de voorwaarden voor het toekennen van subsidies wordt toegelicht. Dit is een andere pagina dan de link naar het decentrale register. Begin een URL met https://", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI", + "required": false + }, + "publication_category": { + "type": "enum", + "title": "Publicatiecategorie", + "show_always": true, + "help_text": "Om te bepalen welke algoritmes gepubliceerd moeten worden, is onderscheid gemaakt tussen impactvolle en overige algoritmes. Ook definieert de AI-verordening ‘Hoog-risico AI-systemen'. ", + "instructions": "Tot welke categorie een algoritme behoort volgens de handreiking: Hoog-risico AI-systeem (Categorie A), Impactvolle algoritmes (Categorie B), Overige algoritmes (Categorie C)", + "example": "Impactvolle algoritmes", + "required": true, + "permitted_values": [ + "Hoog-risico AI-systeem", + "Impactvolle algoritmes", + "Overige algoritmes" + ] + }, + "url": { + "type": "string", + "title": "Link naar bronregistratie", + "max_length": 500, + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "Als de organisatie zelf ook een Algoritmeregister gepubliceerd heeft , dan kan vanaf hiernaar verwezen worden. Decentrale registers kunnen gewenst zijn, bijvoorbeeld om de eigen doelgroep aan te spreken. Begin een URL met https:// ", + "example": "https://algoritmes.gemeentenoorderhaaks.nl/", + "required": false + }, + "goal": { + "type": "string", + "title": "Doel en impact", + "max_length": 2500, + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en hoe burgers en bedrijven ermee in aanraking komen.", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is, geeft aan wat je ermee wilt bereiken. Zo is het doel van een parkeerscanauto om sneller foutparkeerders op te sporen. De impact beschrijft hoe burgers en bedrijven ermee in aanraking komen. Het gaat hierbij om wat de impact is als het naar behoren werkt. Risico's worden behandeld in een apart veld. In het geval van de parkeerscanauto kunnen geparkeerde auto's gescand worden. Er wordt dan gekeken of zij betaald hebben met een direct resultaat. Vul dit veld in op B1-taalniveau.", + "example": "Het doel van dit algoritme is om de doorstroom van het verkeer binnen de gemeente te verbeteren. De impact is dat weggebruikers sneller van A naar B kunnen komen door kortere wachttijden.", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "proportionality": { + "type": "string", + "title": "Afwegingen", + "max_length": 2500, + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn. Neem de eventuele ethische afwegingen mee in het invullen. Zo kan hier worden vermeld dat de inzet van een parkeerscanauto sneller en effectiever is vergeleken met menselijke controle. In dezelfde tijd kunnen meer auto's worden gecontroleerd. De besparing in mensen kan voor andere taken worden ingezet. De verhoogde kans op een foute boete wordt hierdoor gerechtvaardigd. Bovendien kunnen burgers altijd bezwaar aantekenen wat goed te controleren is. Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau. ", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers.", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "human_intervention": { + "type": "string", + "title": "Menselijke tussenkomst", + "max_length": 2500, + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden. Geef het ook aan indien er geen menselijke tussenkomst (nodig) is. Bijvoorbeeld bij slimme zoekopdrachten in grote databases. Hier is veelal geen menselijke controle of de gevonden waarden de juiste zijn. Vul dit veld in op B1-taalniveau.", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht.", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "risks": { + "type": "string", + "title": "Risicobeheer", + "max_length": 2500, + "show_always": true, + "help_text": "Een overzicht van hoe omgegaan wordt met geïdentificeerde risico's.", + "instructions": "Een overzicht van hoe omgegaan wordt met risico's. Risico’s kunnen onder andere zijn technische, juridische, financiële en ethische risico’s. De risico's kunnen divers zijn en verschillen sterk per algoritme. Maar denk bijvoorbeeld aan discriminatie en uitlegbaarheid. Beschrijf ook hoe met die risico's wordt omgegaan, bijvoorbeeld door periodieke monitoring.", + "example": "Er is sprake van constante monitoring. Daardoor kan snel opgemerkt worden als een sensor defect is, waardoor weggebruikers lang stil moeten blijven staan. Dit kan dan snel verholpen worden om de nadelige gevolgen te beperken. Met enige regelmaat wordt ook in de praktijk gekeken naar of de sensoren voldoende reageren op de auto's en of de wachttijden eerlijk verdeeld zijn.", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "lawful_basis": { + "type": "string", + "title": "Wettelijke basis", + "max_length": 2500, + "show_always": false, + "help_text": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt ", + "instructions": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt. Geef waar mogelijk in het kort aan wat het doel is van deze wet, zodat dit ook voor niet-juristen begrijpelijk is.", + "example": "Het algoritme wordt ingezet voor taken uit de Wegenverkeerswet. Een van de taken is het waarborgen van verkeersveiligheid.", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "lawful_basis_grouping": { + "type": "array", + "title": "Verwijzingen wettelijke basis", + "required": false, + "show_always": false, + "help_text": "De wettelijke basis (links), gekoppeld aan hun referentie op het internet (rechts).", + "instructions": "De wettelijke basis, gekoppeld aan hun referentie op het internet.", + "items": { + "title": { + "type": "string", + "title": "Titel van wettelijke basis", + "max_length": 100, + "help_text": "De titel van de wettelijke grondslag waar middels een URL naar verwezen wordt.", + "instructions": "De titel van de wettelijke grondslag waar middels een URL naar verwezen wordt.", + "example": "Wegenverkeerswet 1994", + "required": true + }, + "link": { + "type": "string", + "title": "Link naar wettelijke basis", + "max_length": 500, + "help_text": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt.", + "instructions": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "example": "https://wetten.overheid.nl/BWBR0006622", + "required": true + } + } + }, + "process_index_url": { + "type": "string", + "title": "Link naar verwerkingsregister", + "max_length": 500, + "show_always": false, + "help_text": "Link naar een openbaar deel van een verwerkingsregister die betrekking heeft op een algoritme. Daar kan meer gelezen worden over verwerkingen.", + "instructions": "Link naar een openbaar deel van een verwerkingsregister die betrekking heeft op een algoritme. Daar kan meer gelezen worden over verwerkingen. Bijvoorbeeld een verwerking op https://www.avgregisterrijksoverheid.nl/", + "example": "", + "required": false + }, + "impacttoetsen_grouping": { + "type": "array", + "title": "Impacttoetsen", + "required": false, + "show_always": false, + "help_text": "De impacttoetsen (links), gekoppeld aan hun referentie op het internet (rechts).", + "instructions": "De impacttoetsen, gekoppeld aan hun referentie op het internet.", + "items": { + "title": { + "type": "string", + "title": "Titel van impacttoets", + "help_text": "Welke impacttoets is gebruikt, zoals Data Protection Impact Assessment (DPIA) of Impact Assessment Mensenrechten en Algoritmes (IAMA)?", + "instructions": "Naam van uitgevoerde impacttoets. Indien er andere toetsen zijn uitgevoerd dan de DPIA of IAMA, geef hiervan de naam aan.", + "example": "Impact Assessment Mensenrechten en Algoritmes (IAMA)", + "required": true, + "recommended_items": [ + "Data Protection Impact Assessment (DPIA)", + "Impact Assessment Mensenrechten en Algoritmes (IAMA)" + ] + }, + "link": { + "type": "string", + "title": "Link naar impacttoets", + "max_length": 500, + "help_text": "Naam uitgevoerde impacttoets zoals een DPIA of IAMA en mogelijkheid om een link naar de resultaten van een uitgevoerde impacttoets op te nemen.", + "instructions": "Link naar de resultaten van een impacttoets, indien deze is uitgevoerd en publiek beschikbaar is. Een voorbeeld hiervan is het impact assessment mensenrechten en algoritmes (IAMA) of het data protection impact assessment (DPIA). Begin een URL met https://", + "example": "https://gemeentenoorderhaaks.nl/Archief/toetsen/AVR-IAMA", + "required": false + } + } + }, + "impacttoetsen": { + "type": "string", + "title": "Toelichting op impacttoetsen", + "max_length": 2500, + "show_always": false, + "help_text": "Toelichting waarom bepaalde impacttoetsen niet gedaan zijn.", + "instructions": "Het is mogelijk dat er geen impacttoets nodig was voor het algoritme. In het geval van de DPIA bijvoorbeeld als er geen sprake is van persoonsgegevens. Met dit veld kan toegelicht worden waarom bepaalde impacttoetsen niet gedaan zijn.", + "example": "", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "source_data": { + "type": "string", + "title": "Gegevens", + "max_length": 2500, + "show_always": true, + "help_text": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme. Waar mogelijk, wees specifiek. Met name voor wat betreft persoonsgegevens is het belangrijk te weten om welk type gegevens het gaat (bijvoorbeeld adres, geboorteplaats, leeftijd). Benoem waar mogelijk ook de bron zoals BRP of BKR of organisatie eigen klantgegevens.", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks.", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "source_data_grouping": { + "type": "array", + "title": "Verwijzingen gegevensbronnen", + "required": "false", + "show_always": false, + "help_text": "De gegevensbronnen (links), gekoppeld aan hun referentie op het internet (rechts).", + "instructions": "De gegevensbronnen, gekoppeld aan hun referentie op het internet.", + "items": { + "title": { + "type": "string", + "title": "Titel van gegevensbron", + "max_length": 500, + "help_text": "Titel van gelinkte gegevensbron", + "instructions": "De titel van een gelinkte gegevensbron.", + "example": "", + "required": true + }, + "link": { + "type": "string", + "title": "Link naar gegevensbron", + "max_length": 500, + "help_text": "Links naar aanvullende informatie over de gebruikte gegevensbron", + "instructions": "Een link naar een beschrijving van gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme. Hierbij kan bijvoorbeeld gelinkt worden naar metadata in publieke datacatalogi of naar sensorenregistraties.", + "example": "", + "required": true + } + } + }, + "methods_and_models": { + "type": "string", + "title": "Technische werking", + "max_length": 5000, + "show_always": false, + "help_text": "Uitleg van hoe het algoritme werkt.", + "instructions": "Uitleg van hoe het algoritme werkt. Beschrijf de input, werking en output van het algoritme. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas. Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL’s naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten. Geef tenminste aan of het zelflerend is of niet.", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "provider": { + "type": "string", + "title": "Leverancier", + "max_length": 200, + "show_always": false, + "help_text": "Indien van toepassing, de externe leverancier van het algoritme.", + "instructions": "Naam van de externe leverancier van het algoritme. Als het intern ontwikkeld is, noteer dan ‘Intern ontwikkeld’. Het gaat hierbij bijvoorbeeld niet om het gebruik van open source packages die gebruikt worden in een groter algoritme.", + "example": "Haaks softwarebedrijf", + "required": false + }, + "publiccode": { + "type": "string", + "title": "Link naar broncode", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf.", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven. Begin een URL met https://", + "example": "https://github.com/haakssoftwarebedrijf.nl/vrisoftware", + "required": false + }, + "lang": { + "type": "enum", + "title": "Taal", + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd.", + "instructions": "De code van de taal van de registratie. Dit veld is aanwezig, omdat het Algoritmeregister meertalig aangeboden kan worden. Op dit moment wordt alleen Nederlands (nld) aangeboden. De talen zijn in ISO 639-3 code.", + "example": "nld", + "permitted_values": ["nld"], + "required": true + }, + "standard_version": { + "type": "enum", + "title": "Versie publicatiestandaard", + "show_always": false, + "help_text": "De versie van de publicatiestandaard waar dit algoritme in is geregistreed.", + "instructions": "De versie van de publicatiestandaard die gehanteerd is voor deze registratie.Op dit moment is dat '1.0'.", + "example": "1.0", + "required": false, + "permitted_values": ["1.0"] + }, + "source_id": { + "type": "string", + "title": "Bron-ID", + "max_length": 100, + "show_always": false, + "help_text": "De unieke code van dit algoritme in het register van de eigenaar", + "instructions": "Indien van toepassing, de unieke identificatie voor deze registratie zoals door de eigenaar wordt gehanteerd. Dit is dus de verwijzing naar het algoritme in de interne database of het interne register van uw organisatie.", + "example": "n.v.t.", + "required": false + }, + "tags": { + "type": "string", + "title": "Zoektermen", + "max_length": 2500, + "show_always": false, + "help_text": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten.", + "instructions": "Termen gerelateerd aan dit algoritme. Gescheiden door komma's. Dit veld wordt niet weergegeven op de website en kan worden gebruikt om de vindbaarheid van de registratie te verbeteren. Zo kan bijvoorbeeld de naam van het relevante ministerie worden toegevoegd om als uitvoerorganisatie beter vindbaar te zijn met de zoekfunctie.", + "example": "Verkeer, Mobiliteit, VRI, Infrastructuur, Waddengebied", + "required": false, + "allowed_html_tags": ["div", "br", "p", "ul", "ol", "li"] + }, + "lars": { + "title": "Algoritme-ID", + "type": "string", + "required": false, + "instructions": "Een unieke identificatie voor het algoritmebeschrijving. Dit wordt automatisch aangemaakt en ingevuld." + } + } +} diff --git a/backend/app/schemas/config/v1_0_0.json b/backend/app/schemas/config/v1_0_0.json new file mode 100644 index 00000000..a5a5b836 --- /dev/null +++ b/backend/app/schemas/config/v1_0_0.json @@ -0,0 +1,455 @@ +{ + "properties": { + "name": { + "type": "string", + "title": "Naam", + "max_length": 100, + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "Gebruik een naam, bij voorkeur met een werkwoord, die aangeeft wat het algoritme doet. Dit kan de algemeen gehanteerde naam zijn van het algoritme binnen de organisatie, mits begrijpelijk voor externen die niet bekend zijn met het algoritme.", + "example": "Automatische Verkeersregeling Ringweg", + "required": true + }, + "description_short": { + "type": "string", + "title": "Korte omschrijving", + "max_length": 350, + "show_always": true, + "help_text": "Een korte beschrijving van het algoritme.", + "instructions": "Een korte, duidelijke beschrijving van het algoritme en het proces waarin deze gebruikt wordt. Bij voorkeur in twee of drie zinnen. Doel van dit veld is om snel begrip te krijgen van wat het algoritme doet. Het veld wordt weergegeven in het zoekoverzicht. Vul dit veld in op B1-taalniveau.", + "example": "Dit algoritme zorgt met sensoren in het wegdek ervoor dat het verkeer zo makkelijk mogelijk doorstroomt.", + "required": true + }, + "organization": { + "type": "string", + "title": "Organisatie", + "max_length": 100, + "show_always": true, + "help_text": "De volledige naam van de organisatie waar het algoritme ingezet wordt.", + "instructions": "De volledige naam van de organisatie waar het algoritme ingezet wordt. Deze wordt gebaseerd op de TOOI-waardelijst: standaarden.overheid.nl. Eén registratie kan maar over één organisatie gaan. Er kunnen dus niet meerdere waarden ingevuld worden. Indien een algoritme bij meerdere organisaties wordt ingezet, zijn aparte registraties vereist.", + "example": "Gemeente Noorderhaaks", + "required": true + }, + "category": { + "type": "array", + "title": "Thema", + "max_items": 3, + "show_always": true, + "help_text": "Het beleidsterrein waarin het algoritme wordt ingezet", + "instructions": "Beleidsterrein(en) waarin het algoritme wordt ingezet.", + "example": [ + "Verkeer" + ], + "required": false, + "permitted_values": [ + "Organisatie en bedrijfsvoering", + "Cultuur en recreatie", + "Economie", + "Overheidsfinanciën", + "Wonen", + "Internationaal", + "Migratie en integratie", + "Natuur en milieu", + "Onderwijs en wetenschap", + "Openbare orde en veiligheid", + "Recht", + "Ruimte en infrastructuur", + "Sociale zekerheid", + "Verkeer", + "Werk", + "Zorg en gezondheid" + ] + }, + "status": { + "type": "enum", + "title": "Status", + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "De huidige status van het algoritme: In ontwikkeling, In gebruik, Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor ‘In gebruik’. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven. Het is niet verplicht algoritmes in ontwikkeling of buiten gebruik te vermelden in het Algoritmeregister. De mogelijkheid wordt wel geboden voor organisaties die burgers willen betrekken al tijdens de ontwikkelingen van algoritmes. ", + "example": "In gebruik", + "required": true, + "permitted_values": [ + "In ontwikkeling", + "In gebruik", + "Buiten gebruik" + ] + }, + "begin_date": { + "type": "string", + "title": "Begindatum", + "max_length": 7, + "show_always": true, + "help_text": "Maand waarin het algoritme in gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme in gebruik is genomen. Schrijf de datum op zoals in dit voorbeeld: 2023-01.", + "example": "2023-01", + "required": false + }, + "end_date": { + "type": "string", + "title": "Einddatum", + "max_length": 7, + "show_always": false, + "help_text": "Maand waarin het algoritme buiten gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme buiten gebruik is genomen. Als het algoritme nog in gebruik is, moet dit veld leegblijven. Schrijf de datum zoals in dit voorbeeld: 2023-01.", + "example": "2023-05", + "required": false + }, + "contact_email": { + "type": "string", + "title": "Contactgegevens", + "max_length": 500, + "show_always": true, + "help_text": "De contactgegevens voor deze registratie ", + "instructions": "Het e-mailadres of de website voor contact over deze registratie. Dit moet een geldig mailadres of website zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme. Begin een website-URL met https://", + "example": "algoritmes@gemeentenoorderhaaks.nl", + "required": true + }, + "website": { + "type": "string", + "title": "Link naar publiekspagina", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over het proces waarin het algoritme ingezet wordt. Dit kan bijvoorbeeld een pagina zijn waar de voorwaarden voor het toekennen van subsidies wordt toegelicht. Dit is een andere pagina dan de link naar het decentrale register. Begin een URL met https://", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI", + "required": false + }, + "publication_category": { + "type": "enum", + "title": "Publicatiecategorie", + "show_always": true, + "help_text": "Om te bepalen welke algoritmes gepubliceerd moeten worden, is onderscheid gemaakt tussen impactvolle en overige algoritmes. Ook definieert de AI-verordening ‘Hoog-risico AI-systemen'. ", + "instructions": "Tot welke categorie een algoritme behoort volgens de handreiking: Hoog-risico AI-systeem (Categorie A), Impactvolle algoritmes (Categorie B), Overige algoritmes (Categorie C)", + "example": "Impactvolle algoritmes", + "required": true, + "permitted_values": [ + "Hoog-risico AI-systeem", + "Impactvolle algoritmes", + "Overige algoritmes" + ] + }, + "url": { + "type": "string", + "title": "Link naar bronregistratie", + "max_length": 500, + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "Als de organisatie zelf ook een Algoritmeregister gepubliceerd heeft , dan kan vanaf hiernaar verwezen worden. Decentrale registers kunnen gewenst zijn, bijvoorbeeld om de eigen doelgroep aan te spreken. Begin een URL met https:// ", + "example": "https://algoritmes.gemeentenoorderhaaks.nl/", + "required": false + }, + "goal": { + "type": "string", + "title": "Doel en impact", + "max_length": 2500, + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en hoe burgers en bedrijven ermee in aanraking komen.", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is, geeft aan wat je ermee wilt bereiken. Zo is het doel van een parkeerscanauto om sneller foutparkeerders op te sporen. De impact beschrijft hoe burgers en bedrijven ermee in aanraking komen. Het gaat hierbij om wat de impact is als het naar behoren werkt. Risico's worden behandeld in een apart veld. In het geval van de parkeerscanauto kunnen geparkeerde auto's gescand worden. Er wordt dan gekeken of zij betaald hebben met een direct resultaat. Vul dit veld in op B1-taalniveau.", + "example": "Het doel van dit algoritme is om de doorstroom van het verkeer binnen de gemeente te verbeteren. De impact is dat weggebruikers sneller van A naar B kunnen komen door kortere wachttijden.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "proportionality": { + "type": "string", + "title": "Afwegingen", + "max_length": 2500, + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn. Neem de eventuele ethische afwegingen mee in het invullen. Zo kan hier worden vermeld dat de inzet van een parkeerscanauto sneller en effectiever is vergeleken met menselijke controle. In dezelfde tijd kunnen meer auto's worden gecontroleerd. De besparing in mensen kan voor andere taken worden ingezet. De verhoogde kans op een foute boete wordt hierdoor gerechtvaardigd. Bovendien kunnen burgers altijd bezwaar aantekenen wat goed te controleren is. Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau. ", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "human_intervention": { + "type": "string", + "title": "Menselijke tussenkomst", + "max_length": 2500, + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden. Geef het ook aan indien er geen menselijke tussenkomst (nodig) is. Bijvoorbeeld bij slimme zoekopdrachten in grote databases. Hier is veelal geen menselijke controle of de gevonden waarden de juiste zijn. Vul dit veld in op B1-taalniveau.", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "risks": { + "type": "string", + "title": "Risicobeheer", + "max_length": 2500, + "show_always": true, + "help_text": "Een overzicht van hoe omgegaan wordt met geïdentificeerde risico's.", + "instructions": "Een overzicht van hoe omgegaan wordt met risico's. Risico’s kunnen onder andere zijn technische, juridische, financiële en ethische risico’s. De risico's kunnen divers zijn en verschillen sterk per algoritme. Maar denk bijvoorbeeld aan discriminatie en uitlegbaarheid. Beschrijf ook hoe met die risico's wordt omgegaan, bijvoorbeeld door periodieke monitoring.", + "example": "Er is sprake van constante monitoring. Daardoor kan snel opgemerkt worden als een sensor defect is, waardoor weggebruikers lang stil moeten blijven staan. Dit kan dan snel verholpen worden om de nadelige gevolgen te beperken. Met enige regelmaat wordt ook in de praktijk gekeken naar of de sensoren voldoende reageren op de auto's en of de wachttijden eerlijk verdeeld zijn.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "lawful_basis": { + "type": "string", + "title": "Wettelijke basis", + "max_length": 2500, + "show_always": false, + "help_text": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt ", + "instructions": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt. Geef waar mogelijk in het kort aan wat het doel is van deze wet, zodat dit ook voor niet-juristen begrijpelijk is.", + "example": "Het algoritme wordt ingezet voor taken uit de Wegenverkeerswet. Een van de taken is het waarborgen van verkeersveiligheid.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "lawful_basis_grouping": { + "type": "array", + "title": "Verwijzingen wettelijke basis", + "required": false, + "show_always": false, + "help_text": "De wettelijke basis (links), gekoppeld aan hun referentie op het internet (rechts).", + "instructions": "De wettelijke basis, gekoppeld aan hun referentie op het internet.", + "items": { + "title": { + "type": "string", + "title": "Titel van wettelijke basis", + "max_length": 100, + "help_text": "De titel van de wettelijke grondslag waar middels een URL naar verwezen wordt.", + "instructions": "De titel van de wettelijke grondslag waar middels een URL naar verwezen wordt.", + "example": "Wegenverkeerswet 1994", + "required": true + }, + "link": { + "type": "string", + "title": "Link naar wettelijke basis", + "max_length": 500, + "help_text": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt.", + "instructions": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "example": "https://wetten.overheid.nl/BWBR0006622", + "required": true + } + } + }, + "process_index_url": { + "type": "string", + "title": "Link naar verwerkingsregister", + "max_length": 500, + "show_always": false, + "help_text": "Link naar een openbaar deel van een verwerkingsregister die betrekking heeft op een algoritme. Daar kan meer gelezen worden over verwerkingen.", + "instructions": "Link naar een openbaar deel van een verwerkingsregister die betrekking heeft op een algoritme. Daar kan meer gelezen worden over verwerkingen. Bijvoorbeeld een verwerking op https://www.avgregisterrijksoverheid.nl/", + "example": "", + "required": false + }, + "impacttoetsen_grouping": { + "type": "array", + "title": "Verwijzingen impacttoetsen", + "required": false, + "show_always": false, + "help_text": "De impacttoetsen (links), gekoppeld aan hun referentie op het internet (rechts).", + "instructions": "De impacttoetsen, gekoppeld aan hun referentie op het internet.", + "items": { + "title": { + "type": "string", + "title": "Titel van impacttoets", + "help_text": "Welke impacttoets is gebruikt, zoals Data Protection Impact Asssesment (DPIA) of Impact Assessment Mensenrechten en Algoritmes (IAMA)?", + "instructions": "Naam van uitgevoerde impacttoets. Indien er andere toetsen zijn uitgevoerd dan de DPIA of IAMA, geef hiervan de naam aan.", + "example": "Impact Assessment Mensenrechten en Algoritmes (IAMA)", + "required": true, + "recommended_items": [ + "Data Protection Impact Asssesment (DPIA)", + "Impact Assessment Mensenrechten en Algoritmes (IAMA)" + ] + }, + "link": { + "type": "string", + "title": "Link naar impacttoets", + "max_length": 500, + "help_text": "Link naar de resultaten van een uitgevoerde impacttoets, zoals een DPIA of IAMA.", + "instructions": "Link naar de resultaten van een impacttoets, indien deze is uitgevoerd en publiek beschikbaar is. Een voorbeeld hiervan is het impact assessment mensenrechten en algoritmes (IAMA) of het data protection impact assessment (DPIA). Begin een URL met https://", + "example": "https://gemeentenoorderhaaks.nl/Archief/toetsen/AVR-IAMA", + "required": true + } + } + }, + "impacttoetsen": { + "type": "string", + "title": "Toelichting op impacttoetsen", + "max_length": 2500, + "show_always": false, + "help_text": "Toelichting waarom bepaalde impacttoetsen niet gedaan zijn.", + "instructions": "Het is mogelijk dat er geen impacttoets nodig was voor het algoritme. In het geval van de DPIA bijvoorbeeld als er geen sprake is van persoonsgegevens. Met dit veld kan toegelicht worden waarom bepaalde impacttoetsen niet gedaan zijn.", + "example": "", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "source_data": { + "type": "string", + "title": "Gegevens", + "max_length": 2500, + "show_always": true, + "help_text": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme. Waar mogelijk, wees specifiek. Met name voor wat betreft persoonsgegevens is het belangrijk te weten om welk type gegevens het gaat (bijvoorbeeld adres, geboorteplaats, leeftijd). Benoem waar mogelijk ook de bron zoals BRP of BKR of organisatie eigen klantgegevens.", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "source_data_grouping": { + "type": "array", + "title": "Verwijzingen gegevensbronnen", + "required": "false", + "show_always": false, + "help_text": "De gegevensbronnen (links), gekoppeld aan hun referentie op het internet (rechts).", + "instructions": "De gegevensbronnen, gekoppeld aan hun referentie op het internet.", + "items": { + "title": { + "type": "string", + "title": "Titel van gegevensbron", + "max_length": 500, + "help_text": "Titel van gelinkte gegevensbron", + "instructions": "De titel van een gelinkte gegevensbron.", + "example": "", + "required": true + }, + "link": { + "type": "string", + "title": "Link naar gegevensbron", + "max_length": 500, + "help_text": "Links naar aanvullende informatie over de gebruikte gegevensbron", + "instructions": "Een link naar een beschrijving van gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme. Hierbij kan bijvoorbeeld gelinkt worden naar metadata in publieke datacatalogi of naar sensorenregistraties.", + "example": "", + "required": true + } + } + }, + "methods_and_models": { + "type": "string", + "title": "Technische werking", + "max_length": 5000, + "show_always": false, + "help_text": "Uitleg van hoe het algoritme werkt.", + "instructions": "Uitleg van hoe het algoritme werkt. Beschrijf de input, werking en output van het algoritme. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas. Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL’s naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten. Geef tenminste aan of het zelflerend is of niet.", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "provider": { + "type": "string", + "title": "Leverancier", + "max_length": 200, + "show_always": false, + "help_text": "Indien van toepassing, de externe leverancier van het algoritme.", + "instructions": "Naam van de externe leverancier van het algoritme. Als het intern ontwikkeld is, noteer dan ‘Intern ontwikkeld’. Het gaat hierbij bijvoorbeeld niet om het gebruik van open source packages die gebruikt worden in een groter algoritme.", + "example": "Haaks softwarebedrijf", + "required": false + }, + "publiccode": { + "type": "string", + "title": "Link naar broncode", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf.", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven. Begin een URL met https://", + "example": "https://github.com/haakssoftwarebedrijf.nl/vrisoftware", + "required": false + }, + "lang": { + "type": "enum", + "title": "Taal", + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd.", + "instructions": "De code van de taal van de registratie. Dit veld is aanwezig, omdat het Algoritmeregister meertalig aangeboden kan worden. Op dit moment wordt alleen Nederlands (nld) aangeboden. De talen zijn in ISO 639-3 code.", + "example": "nld", + "permitted_values": [ + "nld" + ], + "required": true + }, + "standard_version": { + "type": "enum", + "title": "Versie publicatiestandaard", + "show_always": false, + "help_text": "De versie van de publicatiestandaard waar dit algoritme in is geregistreed.", + "instructions": "De versie van de publicatiestandaard die gehanteerd is voor deze registratie.Op dit moment is dat '0.4.0'.", + "example": "1.0.0", + "required": false, + "permitted_values": [ + "1.0.0" + ] + }, + "source_id": { + "type": "string", + "title": "Bron-ID", + "max_length": 100, + "show_always": false, + "help_text": "De unieke code van dit algoritme in het register van de eigenaar", + "instructions": "Indien van toepassing, de unieke identificatie voor deze registratie zoals door de eigenaar wordt gehanteerd. Dit is dus de verwijzing naar het algoritme in de interne database of het interne register van uw organisatie.", + "example": "n.v.t.", + "required": false + }, + "tags": { + "type": "string", + "title": "Zoektermen", + "max_length": 2500, + "show_always": false, + "help_text": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten.", + "instructions": "Termen gerelateerd aan dit algoritme. Gescheiden door komma's. Dit veld wordt niet weergegeven op de website en kan worden gebruikt om de vindbaarheid van de registratie te verbeteren. Zo kan bijvoorbeeld de naam van het relevante ministerie worden toegevoegd om als uitvoerorganisatie beter vindbaar te zijn met de zoekfunctie.", + "example": "Verkeer, Mobiliteit, VRI, Infrastructuur, Waddengebied", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + } + } +} \ No newline at end of file diff --git a/backend/app/schemas/flow.py b/backend/app/schemas/flow.py new file mode 100644 index 00000000..4e6525ba --- /dev/null +++ b/backend/app/schemas/flow.py @@ -0,0 +1,18 @@ +from pydantic import BaseModel + +from app.middleware.authorisation.schemas import Role +from .user import User +from app.middleware.authorisation.config._base import Flow + + +class FlowStructureRole(BaseModel): + key: Role + alias: str + min_required: int + members: list[User] + + +class FlowStructure(BaseModel): + key: Flow + alias: str + roles: list[FlowStructureRole] diff --git a/backend/app/schemas/html_figures.py b/backend/app/schemas/html_figures.py new file mode 100644 index 00000000..1ee3a681 --- /dev/null +++ b/backend/app/schemas/html_figures.py @@ -0,0 +1,19 @@ +import datetime +from pydantic import BaseModel + + +class HtmlFigures(BaseModel): + date: datetime.datetime + html: str + static_data: dict + most_recent: bool + + class Config: + orm_mode = True + + +class HtmlFiguresOut(BaseModel): + date: datetime.datetime + html: str + static_data: dict + static: dict diff --git a/backend/app/schemas/misc.py b/backend/app/schemas/misc.py new file mode 100644 index 00000000..a9b7bd27 --- /dev/null +++ b/backend/app/schemas/misc.py @@ -0,0 +1,97 @@ +from typing import TypedDict +from pydantic import BaseModel +import enum + + +class Message(BaseModel): + detail: str + + +class PreviewUrl(BaseModel): + url: str + + +class Language(enum.Enum): + NLD = "NLD" + ENG = "ENG" + FRY = "FRY" + + +class OperationEnum(str, enum.Enum): + created = "created" + new_version = "new_version" + released = "released" + published = "published" + retracted = "retracted" + preview_activated = "preview_activated" + preview_used = "preview_used" + preview_timeout = "preview_timeout" + archived = "archived" + unarchived = "unarchived" + + +class OrgType(str, enum.Enum): + adviescollege = "adviescollege" + agentschap = "agentschap" + brandweer = "brandweer" + caribisch_openbaar_lichaam = "caribisch_openbaar_lichaam" + gemeente = "gemeente" + grensoverschrijdend_regionaal_samenwerkingsorgaan = ( + "grensoverschrijdend_regionaal_samenwerkingsorgaan" + ) + hoog_college_van_staat = "hoog_college_van_staat" + interdepartementale_commissie = "interdepartementale_commissie" + kabinet_van_de_koning = "kabinet_van_de_koning" + koepelorganisatie = "koepelorganisatie" + ministerie = "ministerie" + omgevingsdienst = "omgevingsdienst" + openbaar_lichaam_voor_beroep_en_bedrijf = "openbaar_lichaam_voor_beroep_en_bedrijf" + organisatie_met_overheidsbemoeienis = "organisatie_met_overheidsbemoeienis" + organisatieonderdeel = "organisatieonderdeel" + politie = "politie" + provincie = "provincie" + regionaal_samenwerkingsverband = "regionaal_samenwerkingsverband" + rechtspraak = "rechtspraak" + regionaal_samenwerkingsorgaan = "regionaal_samenwerkingsorgaan" + waterschap = "waterschap" + zelfstandig_bestuursorgaan = "zelfstandig_bestuursorgaan" + overig = "overig" + + +class ImpacttoetsenGrouping(TypedDict): + title: str + link: str | None + + +class SourceDataGrouping(TypedDict): + title: str + link: str + + +class LawfulBasisGrouping(TypedDict): + title: str + link: str + + +class ImpactAssessments(enum.StrEnum): + DPIA = "Data Protection Impact Assessment (DPIA)" + IAMA = "Impact Assessment Mensenrechten en Algoritmes (IAMA)" + FRIA = "Fundamental Rights Impact Assessment (FRIA)" + OTHER = "Overig" + NONE = "Geen" + + +standard_impact_assessment_titles = [ + ImpactAssessments.IAMA, + ImpactAssessments.DPIA, + ImpactAssessments.FRIA, +] + + +class SortOption(enum.StrEnum): + sort_name = "sort_name" + sort_number = "sort_number" + + +class PreComputedValues(enum.StrEnum): + highlighted_algorithms = "highlighted_algorithms" diff --git a/backend/app/schemas/organisation_details.py b/backend/app/schemas/organisation_details.py new file mode 100644 index 00000000..aac3aaa7 --- /dev/null +++ b/backend/app/schemas/organisation_details.py @@ -0,0 +1,42 @@ +from pydantic import BaseModel +from datetime import datetime +from .misc import Language +from .algoritme_version import AlgoritmeVersionQuery + + +class OrganisationDetailsUpdatable(BaseModel): + about: str | None = None + contact_info: str | None = None + + class Config: + orm_mode = True + + +class OrganisationDetailsContent(OrganisationDetailsUpdatable): + name: str + + +class OrganisationDetailsIn(OrganisationDetailsContent): + organisation_id: int + language: Language + + +class OrganisationDetailsDB(OrganisationDetailsIn): + id: int + create_dt: datetime + + show_page: bool + code: str + type: str + + +class OrganisationDetailsExport(OrganisationDetailsContent): + language: Language + code: str + type: str + show_page: bool + + +class OrganisationDetailsPage(OrganisationDetailsContent): + show_page: bool + algoritme_versions: list[AlgoritmeVersionQuery] diff --git a/backend/app/schemas/organization.py b/backend/app/schemas/organization.py new file mode 100644 index 00000000..c1b16160 --- /dev/null +++ b/backend/app/schemas/organization.py @@ -0,0 +1,126 @@ +from pydantic import BaseModel, Field +from app import schemas +from app.middleware.authorisation.config._base import Flow +from app.schemas.algoritme_version import FilterData +from .misc import OrgType +from datetime import datetime + + +class OrganisationConfigIn(BaseModel): + name: str + code: str + type: OrgType + flow: Flow + + +class OrganisationConfig(OrganisationConfigIn): + show_page: bool + id: int + + class Config: + orm_mode = True + + +class OrganisationIn(BaseModel): + code: str + type: OrgType + show_page: bool + flow: Flow + + class Config: + orm_mode = True + + +class OrganisationDB(OrganisationIn): + id: int + + class Config: + orm_mode = True + + +class OrganisationGrouping(BaseModel): + type: OrgType + name: str + code: str + count: int + + class Config: + orm_mode = True + + +class OrganisationOverview(BaseModel): + code: str + count: int + name: str + show_page: bool + type: OrgType + + class Config: + orm_mode = True + + +class OrganisationTypeFilter(BaseModel): + key: str + type_label: str + + +class OrganisationFilterData(BaseModel): + organisationtype: list[FilterData] + + +class OrganisationQueryResponse(BaseModel): + results: list[OrganisationOverview] + total_count: int + filter_data: OrganisationFilterData + selected_filters: list[schemas.SelectedFilters] + + +class OrganisationQuery(BaseModel): + page: int = Field(ge=1, default=1) + limit: int = Field(ge=1, default=10, le=100) + searchtext: str | None = None + organisationtype: OrgType | None = Field(example=OrgType.gemeente) + + +class OrganisationMappingResult(BaseModel): + name: str + code: str + + class Config: + orm_mode = True + + +class OrganisationSearchSuggestionResponse(BaseModel): + organisations: list[OrganisationMappingResult] + + +class GetOrganisationsResponse(BaseModel): + organisations: list[OrganisationConfig] + count: int + + +class OrganisationTop20(BaseModel): + name: str + count: int + + +class OrganisationJoinedDate(BaseModel): + code: str + create_dt: datetime + + class Config: + orm_mode = True + + +class OrganisationGovernmental(BaseModel): + name: str + identifier: str + number_of_algorithmdescriptions: int = 0 + show_page: bool = False + joined: bool = False + code: str + + +class OrganisationJoinedCount(BaseModel): + date: str + count: int diff --git a/backend/app/schemas/precomputed_values.py b/backend/app/schemas/precomputed_values.py new file mode 100644 index 00000000..a7f5325c --- /dev/null +++ b/backend/app/schemas/precomputed_values.py @@ -0,0 +1,31 @@ +import datetime +from pydantic import BaseModel +from app.schemas.misc import Language, PreComputedValues + + +class PrecomputedValue(BaseModel): + id: int + language: Language + key: PreComputedValues + value: list[dict[str, str]] + create_dt: datetime.datetime + + class Config: + orm_mode = True + + +class PrecomputedValueIn(BaseModel): + language: Language + key: PreComputedValues + value: list[dict[str, str]] + + class Config: + orm_mode = True + + +class PrecomputedValueResponse(BaseModel): + id: int + create_dt: datetime.datetime + + class Config: + orm_mode = True diff --git a/backend/app/schemas/preditor.py b/backend/app/schemas/preditor.py new file mode 100644 index 00000000..73708172 --- /dev/null +++ b/backend/app/schemas/preditor.py @@ -0,0 +1,6 @@ +from pydantic import BaseModel + + +class Content(BaseModel): + html: str + lang: str diff --git a/backend/app/schemas/site_data.py b/backend/app/schemas/site_data.py new file mode 100644 index 00000000..0b2af76b --- /dev/null +++ b/backend/app/schemas/site_data.py @@ -0,0 +1,8 @@ +from pydantic import BaseModel +from .algoritme_version import AlgoritmeVersionExport +from .organisation_details import OrganisationDetailsExport + + +class SiteData(BaseModel): + algoritme_versions: list[AlgoritmeVersionExport] + organisation_details: list[OrganisationDetailsExport] diff --git a/backend/app/schemas/templates.py b/backend/app/schemas/templates.py new file mode 100644 index 00000000..12758fbb --- /dev/null +++ b/backend/app/schemas/templates.py @@ -0,0 +1,11 @@ +from pydantic import BaseModel + + +class TemplateSummary(BaseModel): + name: str + id: str + + +class StandardSupplier(BaseModel): + name: str + algorithm_descriptions: list[TemplateSummary] diff --git a/backend/app/schemas/user.py b/backend/app/schemas/user.py new file mode 100644 index 00000000..b60fcea0 --- /dev/null +++ b/backend/app/schemas/user.py @@ -0,0 +1,18 @@ +from pydantic import BaseModel + +from app.middleware.authorisation.schemas import Role +from app.schemas.organization import OrganisationConfig + + +class User(BaseModel): + username: str + first_name: str + last_name: str + roles: list[Role] + organisations: list[OrganisationConfig] + id: str + + +class GetUsersResponse(BaseModel): + users: list[User] + count: int diff --git a/backend/app/schemas/util.py b/backend/app/schemas/util.py new file mode 100644 index 00000000..1e7296c2 --- /dev/null +++ b/backend/app/schemas/util.py @@ -0,0 +1,19 @@ +from typing import Union +from functools import lru_cache +import os +import re +from app import schemas + + +@lru_cache(maxsize=1) +def get_all_output_schemas_union(): + file_names = os.listdir("app/schemas/config") + version_pattern = re.compile(r"v\d_\d[a-z]?") + version_names = [item[:-5] for item in file_names if version_pattern.match(item)] + + output_schemas = [] + for v in version_names: + schema = schemas.versions.create_algorithm_schema(v) + output_schemas.append(schema) + schemas_union = Union[*output_schemas] # type: ignore + return schemas_union diff --git a/backend/app/schemas/versions.py b/backend/app/schemas/versions.py new file mode 100644 index 00000000..303434f4 --- /dev/null +++ b/backend/app/schemas/versions.py @@ -0,0 +1,237 @@ +import httpx +from pydantic import BaseModel, Field, create_model, validator +from functools import lru_cache +import re +import enum +from datetime import datetime +from app.middleware.authorisation.schemas import State +from app.util.logger import get_logger +from app.schemas.config.types import SchemaJson, SchemaProperty +from . import Language +from app.util.html import strip_html, sanitize_string_fields +from .c3po.reponse_in import SeverityLevel +from app.config.settings import Settings +from app.services.c3po import handle_c3po_exception + +logger = get_logger(__name__) +env_settings = Settings() + + +class AlgorithmBase(BaseModel): + class Config: + orm_mode = True + + +def validate_max_length(cls, value, **kwargs): + if not isinstance(value, str): + return value + + field_name = kwargs["field"].name + max_length = cls.__fields__[field_name].field_info.extra.get( + "max_length_without_html" + ) + if not max_length: + return value + + if len(strip_html(value)) > max_length: + raise ValueError( + f"{field_name} exceeds the maximum length of {max_length} characters." + ) + return value + + +def apply_c3po_rules(cls, value, **kwargs): + if not isinstance(value, str) or not value: + return value + + field_name = kwargs["field"].name + if field_name not in cls.__fields__: + return value + + rule_code = "BROKEN_LINKS" + notify_critical_finding = False + try: + validation_results = httpx.Client().post( + f"{env_settings.c3po_url}/processing-request/", + json={ + "payload": value, + "rule_code": rule_code, + }, + ) + validation_results.raise_for_status() + rule_result = validation_results.json()["tasks"][0] + notify_critical_finding = ( + rule_result["rule"]["severity_level"] == SeverityLevel.ERROR + and rule_result["passed"] is False + ) + except (httpx.ConnectError, httpx.HTTPStatusError) as e: + handle_c3po_exception(e, rule_code) + + if notify_critical_finding: + raise ValueError( + f"One or more writing assistance checks failed with severity level " + f"'{SeverityLevel.ERROR}'." + ) + return value + + +def _get_versioned_name(name: str, version: str): + model_name = version + "__" + name + return model_name + + +def _get_schema_json(version: str): + version_pattern = re.compile(r"v\d_\d[a-z]?") + if not version_pattern.match(version): + raise ValueError( + f"_get_schema_json: version {version} does not match version_pattern. It checks for v\\d_\\d_\\d[a-z]?" + ) + + file_name = f"app/schemas/config/{version}.json" + data = SchemaJson.parse_file(file_name) + return data + + +def _get_type_from_json_schema(properties: SchemaProperty, key: str, version: str): + field_type = properties.type + if field_type == "string": + return str + elif field_type == "enum" or field_type == "array": + if properties.permitted_values: + # make key from values: Text text -> becomes: text_text + permitted_values_dict = { + "_".join(v.split(" ")).lower(): v for v in properties.permitted_values + } + # make name from key: text_text -> becomes TextText + enum_name = "Enum" + "".join([s.capitalize() for s in key.split("_")]) + + versioned_name = _get_versioned_name(enum_name, version) + dynamic_enum = enum.Enum(versioned_name, permitted_values_dict, type=str) + + if field_type == "enum": + return dynamic_enum + elif field_type == "array": + return list[dynamic_enum] + else: + raise ValueError(field_type) + elif properties.recommended_items and field_type == "array": + return list[str] + elif properties.items: + # Enter recursion, there is an object within an object. + sub_properties = properties.items + fields = _build_schema_fields( + SchemaJson(properties=sub_properties), version + ) + sub_schema_name = "Object" + "".join( + [s.capitalize() for s in key.split("_")] + ) + sub_schema = create_model( + _get_versioned_name(sub_schema_name, version), + **fields, + __base__=AlgorithmBase, + ) + return list[sub_schema] + else: + raise ValueError(field_type) + + +def _get_prop_dict(field_props: SchemaProperty): + field_dict = { + "title": field_props.title, + "max_length_without_html": field_props.max_length, + "max_items": field_props.max_items, + "show_always": field_props.show_always, + "help_text": field_props.help_text, + "instructions": field_props.instructions, + "example": field_props.example, + "default": (...) if field_props.required else None, + "type": field_props.type, + "recommended_items": field_props.recommended_items, + "allowed_html_tags": field_props.allowed_html_tags, + } + + return field_dict + + +def _build_schema_fields(data: SchemaJson, version: str): + fields = {} + for key in data.properties: + prop_dict = _get_prop_dict(data.properties[key]) + field_props = Field(**prop_dict) + field_type = _get_type_from_json_schema(data.properties[key], key, version) + fields[key] = (field_type, field_props) + return fields + + +def _get_algorithm_in_validators(schema: type[AlgorithmBase]): + validators = {} + max_length_fields = [] + string_fields = [] + for value in schema.__fields__.values(): + if value.type_ == str: + string_fields.append(value.name) + + add_max_length_validator = value.field_info.extra.get("max_length_without_html") + if add_max_length_validator: + max_length_fields.append(value.name) + + if len(max_length_fields) > 0: + validators["max_length_validator"] = validator( + *max_length_fields, allow_reuse=True + )(validate_max_length) + + if len(string_fields) > 0: + validators["html_validator"] = validator( + *string_fields, pre=True, allow_reuse=True + )(sanitize_string_fields) + if env_settings.use_c3po: + validators["c3po_validator"] = validator( + *string_fields, pre=True, allow_reuse=True + )(apply_c3po_rules) + + return validators + + +@lru_cache(maxsize=8) +def create_algorithm_base_schema(version: str): + """Expected version format: v0_1""" + data = _get_schema_json(version) + fields = _build_schema_fields(data, version) + + schema_algorithm_base = create_model( + "AlgorithmBase", + **fields, + __base__=AlgorithmBase, + ) + return schema_algorithm_base + + +@lru_cache(maxsize=8) +def create_algorithm_in_schema(version: str): + """Expected version format: v0_1""" + base = create_algorithm_base_schema(version) + validators = _get_algorithm_in_validators(base) + + schema_algorithm_in = create_model( + "AlgorithmIn", + __base__=base, + __validators__=validators, + ) + return schema_algorithm_in + + +@lru_cache(maxsize=8) +def create_algorithm_schema(version: str): + """Expected version format: v0_1""" + base = create_algorithm_base_schema(version) + + fields = { + "lars": (str, ...), + "create_dt": (datetime, ...), + "language": (Language, ...), + "state": (State, ...), + } + + model_name = _get_versioned_name("Algorithm", version) + algorithm = create_model(model_name, **fields, __base__=base) + return algorithm diff --git a/backend/app/services/__init__.py b/backend/app/services/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/backend/app/services/algoritme_version/__init__.py b/backend/app/services/algoritme_version/__init__.py new file mode 100644 index 00000000..5c2c63bf --- /dev/null +++ b/backend/app/services/algoritme_version/__init__.py @@ -0,0 +1 @@ +from .algoritme_version_service import * # noqa diff --git a/backend/app/services/algoritme_version/algoritme_version_service.py b/backend/app/services/algoritme_version/algoritme_version_service.py new file mode 100644 index 00000000..7a1e0020 --- /dev/null +++ b/backend/app/services/algoritme_version/algoritme_version_service.py @@ -0,0 +1,102 @@ +import re +from typing import TypeVar + +from app.schemas.algoritme_version import ( + AlgoritmeVersionLastEdit, + AlgoritmeVersionQuery, + AlgoritmeVersionDB, +) +from app.util.config_load import get_ttl_hash, collect_structure_data +from app import models + + +T = TypeVar("T", AlgoritmeVersionQuery, AlgoritmeVersionDB, AlgoritmeVersionLastEdit) + + +def convert_potential_list(field: str) -> list[str] | str: + if not isinstance(field, str): + return field + # First check is to match anything like this {.....} + pattern = r"^\{(.+)\}$" + list_match = re.match(pattern, field) + if not list_match: + return field + + # # SQLAlchemy sometimes stores array entries as with double quotes, e.g. on this string: + # # DPIA: https://google.com + # # The space seems to create these additional quotes. This is handled by taking them away + # # here. Because comma's can appear in the substrings, can't do a split, but regex works. + list_entries: list[str] = re.findall(r"(\"[^\"]+\"|[^\"{},]+)", field) + new_value: list[str] = [] + for list_entry in list_entries: + new_value.append(list_entry.replace('"', "")) + return new_value + + +def field_db_list_to_python_list(field: str) -> list[str] | str: + return convert_potential_list(field) + + +def db_list_to_python_list(model: models.AlgoritmeVersion) -> models.AlgoritmeVersion: + """Converts lists found in the SQLAlchemy model (=sql data) into python lists. + + There are certain columns which store a list of values. These columns do not have an + enumeration type, as legacy Publication Standards did not have the enumeration restriction. + Because of this the column has to be a free field format -- varchar. + + Still, it needs to be converted to a python format. This conversion looks as follows: + + "{a, b}" as str -> ["a", "b"] as list[str] + """ + standards, _ = collect_structure_data(get_ttl_hash()) + schema = standards[model.standard_version] + for c in model.__table__.columns: # type: ignore + # Check if the field is eligible for conversion. Don't want to convert lists where it is not allowed + # (by Pydantic).' + if c.key not in schema: + continue + if schema[c.key].type != "array": + continue + column_value = getattr(model, c.key) + + # Catch; if for some reason the column that should be an array is an empty string. + if column_value == "": + setattr(model, c.key, []) + continue + + if column_value: + new_value = convert_potential_list(column_value) + setattr(model, c.key, new_value) + return model + + +def db_list_to_python_list_schema( + schema: T, +) -> T: + """Converts lists found in the SQLAlchemy model (=sql data) into python lists. + + There are certain columns which store a list of values. These columns do not have an + enumeration type, as legacy Publication Standards did not have the enumeration restriction. + Because of this the column has to be a free field format -- varchar. + + Still, it needs to be converted to a python format. This conversion looks as follows: + + "{a, b}" as str -> ["a", "b"] as list[str] + """ + if not schema.standard_version: + return schema + + standards, _ = collect_structure_data(get_ttl_hash()) + standard = standards[schema.standard_version] + for c in dict(schema).keys(): # type: ignore + # Check if the field is eligible for conversion. Don't want to convert lists where it is not allowed + # (by Pydantic).' + if c not in standard: + continue + if standard[c].type != "array": + continue + column_value = getattr(schema, c) + if column_value: + new_value = convert_potential_list(column_value) + setattr(schema, c, new_value) + return schema diff --git a/backend/app/services/c3po.py b/backend/app/services/c3po.py new file mode 100644 index 00000000..4dead907 --- /dev/null +++ b/backend/app/services/c3po.py @@ -0,0 +1,138 @@ +import httpx +from fastapi import HTTPException +from starlette import status + +from app.config.settings import Settings +from app.schemas import c3po as c3po_schemas +from app.util.html import strip_html +from app.util.logger import get_logger +from app import mailing + +logger = get_logger(__name__) +env_settings = Settings() + +_LANGUAGE_CHECK_RULE_CODES = [ + "BROKEN_LINKS", + "B1_LANGUAGE_LEVEL", + "LIMITED_SENTENCE_LENGTH", +] + + +def handle_c3po_exception( + error: Exception, + rule_codes: str | list[str] = "", + organisation_name: str = "", + algorithm_name: str = "", +) -> None: + """ + Generate an informative error message. + + Distinct messages are returned for service related exceptions and unknown exceptions. + + :raises HTTPException: If the connection with the C3PO API fails + """ + if not (env_settings.send_emails and env_settings.notify_c3po_errors): + logger.info( + "Notification of C3PO errors is disabled in this environment, email sending aborted." + ) + return + + if not rule_codes: + rule_codes_text = "Niet beschikbaar" + elif isinstance(rule_codes, list): + rule_codes_text = ", ".join(rule_codes) + elif isinstance(rule_codes, str): + rule_codes_text = rule_codes + else: + raise TypeError("Invalid type for rule_codes") + + organisation_name_text = organisation_name or "Niet beschikbaar" + algorithm_name_text = algorithm_name or "Niet beschikbaar" + + prefix = "Dit is een automatisch gegenereerd bericht." + feedback_message = ( + f"Tijdens het gebruik van de C3PO service in het Algoritmeregister" + f" is een fout opgetreden van het type '{type(error).__name__}'." + ) + error_message = str(error) + postfix = "Bekijk de logging voor meer informatie." + + plain_text_message = ( + f"{prefix}\r\n" + f"{feedback_message}\r\n" + f"{postfix}\r\n" + f"Organisatienaam: {organisation_name_text}.\r\n" + f"Algoritmenaam: {algorithm_name_text}.\r\n" + f"Regelcode(s): {rule_codes_text}.\r\n" + ) + + html_message = f""" + <html> + <body> + <p>{prefix}</p> + <p>{feedback_message}</p> + <p> + <h4>Details foutmelding</b> + <h5>Naam algoritme</h5> + <p>{algorithm_name_text}<p> + <h5>Naam organisatie</h5> + <p>{organisation_name_text}<p> + <h5>Regelcode(s)</h5> + <p>{rule_codes_text}<p> + <h5>Technische foutmelding</h5> + <code>{error_message}</code> + </p> + <p>{postfix}</p> + </body> + </html> + """ + mailing.send_notification_mail( + receivers=["devops@ictu.nl"], + sender=env_settings.application_mail_address, + subject="Fout in connectie met C3PO API", + plain_message=plain_text_message, + html_message=html_message, + ) + + +def fetch_c3po_results(body: c3po_schemas.C3poRequest) -> c3po_schemas.C3poResults: + text_raw = strip_html(body.text) + data = c3po_schemas.ProcessingRequestOut( + payload=text_raw, + org_code="ictu-devops", + project_code="algreg", + # This parameter does nothing for now, will be implemented in the future + rule_codes=_LANGUAGE_CHECK_RULE_CODES, + ) + response = post_c3po_request(data) + response = c3po_schemas.C3poResults(rules=response.json()) + return response + + +def post_c3po_request(data: c3po_schemas.ProcessingRequestOut) -> httpx.Response: + with httpx.Client() as client: + try: + post_response = client.post( + f"{env_settings.c3po_url}/processing-request/batch", + json=data, + timeout=45, + ) + + if post_response.status_code != 200: + raise HTTPException( + status_code=status.HTTP_424_FAILED_DEPENDENCY, + detail=f"C3PO_REQUEST_FAILED: {post_response.status_code}", + ) + return post_response + except (httpx.ConnectError, httpx.HTTPStatusError) as e: + handle_c3po_exception( + e, + rule_codes=( + "Niet beschikbaar, regels zijn uitgevoerd in bulk. " + "Zie Expert Service logging voor meer info." + ), + ) + raise HTTPException( + status_code=status.HTTP_424_FAILED_DEPENDENCY, + detail="EXPERT_SERVICE_CONN_ERROR", + ) diff --git a/backend/app/services/keycloak/__init__.py b/backend/app/services/keycloak/__init__.py new file mode 100644 index 00000000..6f2fe901 --- /dev/null +++ b/backend/app/services/keycloak/__init__.py @@ -0,0 +1,3 @@ +from ._exceptions import NotAListError, NotValidError # noqa +from .schemas import KeycloakUser # noqa +from .repository import KeycloakRepository, ConnectionSettings # noqa diff --git a/backend/app/services/keycloak/_exceptions.py b/backend/app/services/keycloak/_exceptions.py new file mode 100644 index 00000000..e0aa092b --- /dev/null +++ b/backend/app/services/keycloak/_exceptions.py @@ -0,0 +1,28 @@ +from typing import Any +from pydantic import ValidationError + + +class NotAListError(Exception): + pass + + +class NotValidError(Exception): + def __init__(self, obj: Any, error: ValidationError): + if isinstance(obj, list) and len(obj) >= 1: + if isinstance(obj[0], dict): + keys = ", ".join(obj[0].keys()) + else: + keys = str(obj[0]) + elif isinstance(obj, dict): + keys = ", ".join(list(obj.keys())) + else: + keys = str(obj) + + wrong_keys: list[str] = [str(e._loc) for e in error.raw_errors] # type: ignore + super().__init__( + error.__str__() + + "\n\nAvailable keys from object: " + + keys + + "\n\nWrong key in validation: " + + ", ".join(wrong_keys) + ) diff --git a/backend/app/services/keycloak/data_validator.py b/backend/app/services/keycloak/data_validator.py new file mode 100644 index 00000000..d571985f --- /dev/null +++ b/backend/app/services/keycloak/data_validator.py @@ -0,0 +1,73 @@ +from typing import Any +from fastapi import HTTPException +from pydantic import ValidationError + +from .schemas import KeycloakGroup, KeycloakUser, KeycloakUserFromRepo +from . import NotAListError, NotValidError + +from app.util.logger import get_logger + +logger = get_logger(__name__) + + +class KeycloakValidator: + @classmethod + def user(cls, user: Any) -> KeycloakUserFromRepo: + try: + return KeycloakUserFromRepo( + username=user.get("username"), + roles=user.get("attributes", {}).get("roles", []), + groups=user.get("attributes", {}).get("groups", []), + id=user.get("id"), + first_name=user.get("firstName", "Onbekende voornaam"), + last_name=user.get("lastName", "Onbekende achternaam"), + created_at=user.get("createdTimestamp"), + ) + except ValidationError as e: + raise NotValidError(user, e) + + @classmethod + def user_from_token(cls, user: Any) -> KeycloakUser: + """ + The token has a different structure, needs its own validator + """ + try: + return KeycloakUser( + username=user.get("preferred_username"), + roles=user.get("roles", []), + groups=user.get("groups", []), + id=user.get("sub"), + first_name=user.get("given_name", "Onbekende voornaam"), + last_name=user.get("family_name", "Onbekende achternaam"), + ) + except ValidationError as e: + raise NotValidError(user, e) + + @classmethod + def count(cls, count: Any) -> int: + try: + return int(count) + except ValueError: + raise HTTPException(424) + + @classmethod + def users(cls, users: Any) -> list[KeycloakUserFromRepo]: + cls.__test_for_list(users) + return [cls.user(u) for u in users] + + @classmethod + def group(cls, group: Any) -> KeycloakGroup: + try: + return KeycloakGroup(name=group.get("name"), id=group.get("id")) + except ValidationError as e: + raise NotValidError(group, e) + + @classmethod + def groups(cls, groups: Any) -> list[KeycloakGroup]: + cls.__test_for_list(groups) + return [cls.group(g) for g in groups] + + @classmethod + def __test_for_list(cls, obj) -> None: + if not isinstance(obj, list): + raise NotAListError diff --git a/backend/app/services/keycloak/payload_maker.py b/backend/app/services/keycloak/payload_maker.py new file mode 100644 index 00000000..ceba5ff4 --- /dev/null +++ b/backend/app/services/keycloak/payload_maker.py @@ -0,0 +1,77 @@ +from app.services.keycloak.schemas import ( + KeycloakUser, + KeycloakUserNew, + KeycloakUserUpdate, +) + + +class KeycloakPayloadMaker: + @classmethod + def update_user(cls, user: KeycloakUser, new_values: KeycloakUserUpdate) -> dict: + """ + Constructs a payload to be used by the update_user endpoint. + """ + updated_user = KeycloakUserUpdate(**user.dict()) + # Update values in the KeycloakUserUpdate object whenever a value in update_value is given + for attr, value in new_values.__dict__.items(): + if value is not None: + setattr(updated_user, attr, value) + + return { + "firstName": updated_user.first_name, + "lastName": updated_user.last_name, + "email": user.username, # Must re-define email, else it disappears. + "attributes": {"roles": updated_user.roles, "groups": updated_user.groups}, + } + + @classmethod + def new_user(cls, body: KeycloakUserNew) -> dict: + return { + "username": body.username, + "attributes": {"groups": body.groups or [], "roles": body.roles or []}, + "enabled": True, + "email": body.username, + "firstName": body.first_name, + "lastName": body.last_name, + "requiredActions": [ + "CONFIGURE_TOTP", + "UPDATE_PASSWORD", + "VERIFY_EMAIL", + ], + } + + @classmethod + def kwargs_to_query( + cls, + *, + limit: int | None = None, + skip: int | None = None, + group: str | None = None, + role: str | None = None, + q: str | None = None + ) -> dict: + """ + Converts keyword arguments to a query that keycloak API understands. + https://www.keycloak.org/docs-api/22.0.1/rest-api/index.html + + Available keywords for conversion: + - limit: The maximum amount of results requested + - skip: The offset in results, how many results to skip. + - group: Looks for users with membership in the given group. + - role: Looks for users with the given role. + - q: Matches with users in username, first or last name, or email. + + returns: query object for keycloak API. + """ + query = {} + if limit is not None: + query["max"] = limit + if skip is not None: + query["first"] = skip + if group is not None: + query["q"] = (query.get("q") or "") + " groups:" + group + if role is not None: + query["q"] = (query.get("q") or "") + " roles:" + role + if q is not None: + query["search"] = "*" + q + "*" + return query diff --git a/backend/app/services/keycloak/repository.py b/backend/app/services/keycloak/repository.py new file mode 100644 index 00000000..3c3cbe0a --- /dev/null +++ b/backend/app/services/keycloak/repository.py @@ -0,0 +1,136 @@ +from abc import ABC +from typing import NoReturn, TypedDict, cast +from fastapi import HTTPException +from keycloak import ( + KeycloakAdmin, + KeycloakConnectionError, + KeycloakError, + KeycloakPostError, +) + +from .payload_maker import KeycloakPayloadMaker +from .schemas import ( + KeycloakGroup, + KeycloakUser, + KeycloakUserFromRepo, + KeycloakUserNew, + KeycloakUserUpdate, +) +from .data_validator import KeycloakValidator + +from app.util.logger import get_logger + +logger = get_logger(__name__) + + +class ConnectionSettings(TypedDict): + realm_name: str + server_url: str + client_id: str + client_secret_key: str + + +class KeycloakRepository(ABC): + def __init__(self, settings: ConnectionSettings): + """ + Initiating takes a long time (100ms) + """ + try: + self.client = KeycloakAdmin(**settings) + except KeycloakConnectionError: + logger.error("Keycloak cannot be found, connection failed") + raise HTTPException(424) + self.validate = KeycloakValidator() + self.make_payload = KeycloakPayloadMaker() + + def __err__( + self, + error: KeycloakError, + msg: str | None = None, + error_code: int | None = None, + ) -> NoReturn: + err: int | None = error_code or int(cast(str, error.response_code)) + logger.error( + (str(err) or "UNKNOWN ERROR: ") + (msg or str(error.error_message)) + ) + raise HTTPException(int(err) or 400, msg) + + def get_all(self, **kwargs) -> list[KeycloakUserFromRepo]: + query = self.make_payload.kwargs_to_query(**kwargs) if kwargs else {} + try: + users = self.client.get_users(query) + except KeycloakError as e: + self.__err__(e) + return self.validate.users(users) + + def get_count(self, **kwargs) -> int: + query = self.make_payload.kwargs_to_query(**kwargs) if kwargs else {} + try: + count = self.client.users_count(query) + except KeycloakError as e: + self.__err__(e) + return self.validate.count(count) + + def get_user(self, user_id: str) -> KeycloakUser: + try: + user = self.client.get_user(user_id) + except KeycloakError as e: + self.__err__(e) + return self.validate.user(user) + + def get_groups(self) -> list[KeycloakGroup]: + """ + Gets the groups registered in Keycloak. + """ + try: + groups = self.client.get_groups() + except KeycloakError as e: + self.__err__(e) + return self.validate.groups(groups) + + def get_group_members(self, group_id: str) -> list[KeycloakUserFromRepo]: + """ + Gets the members of a groups registered in Keycloak. + """ + try: + members = self.client.get_group_members(group_id) + except KeycloakError as e: + self.__err__(e) + return self.validate.users(members) + + def update_user( + self, + user_id: str, + update_values: KeycloakUserUpdate, + ) -> KeycloakUser: + try: + user = self.client.get_user(user_id) + validated_user = self.validate.user(user) + payload = self.make_payload.update_user(validated_user, update_values) + self.client.update_user(user_id, payload) + updated_user = self.client.get_user(user_id) + except KeycloakError as e: + self.__err__(e) + return self.validate.user(updated_user) + + def delete_user(self, user_id: str) -> None: + try: + self.client.delete_user(user_id) + except KeycloakError as e: + self.__err__(e) + + def create_user(self, new_user: KeycloakUserNew) -> KeycloakUser: + try: + payload = self.make_payload.new_user(new_user) + user_id = self.client.create_user(payload) + user = self.client.get_user(user_id) + except KeycloakPostError as e: + if e.response_code == 409: + self.__err__(e, "NOT_UNIQUE_USERNAME") + elif "error-invalid-email" in str(e.error_message): + self.__err__(e, "INVALID_EMAIL") + else: + self.__err__(e, "Unknown Post Error") + except KeycloakError as e: + self.__err__(e) + return self.validate.user(user) diff --git a/backend/app/services/keycloak/schemas.py b/backend/app/services/keycloak/schemas.py new file mode 100644 index 00000000..e3a1919b --- /dev/null +++ b/backend/app/services/keycloak/schemas.py @@ -0,0 +1,31 @@ +from pydantic import BaseModel +from datetime import datetime + + +class KeycloakUser(BaseModel): + groups: list[str] + roles: list[str] + first_name: str + last_name: str + username: str + id: str + + +class KeycloakUserFromRepo(KeycloakUser): + created_at: datetime + + +class KeycloakUserUpdate(BaseModel): + groups: list[str] | None = None + roles: list[str] | None = None + first_name: str | None = None + last_name: str | None = None + + +class KeycloakUserNew(KeycloakUserUpdate): + username: str + + +class KeycloakGroup(BaseModel): + name: str + id: str diff --git a/backend/app/services/translation/__init__.py b/backend/app/services/translation/__init__.py new file mode 100644 index 00000000..36bad46f --- /dev/null +++ b/backend/app/services/translation/__init__.py @@ -0,0 +1,5 @@ +from .preprocessor import Preprocessor # noqa +from .auto_translator import AutoTranslator # noqa +from .default_values_translator import DefaultValuesTranslator # noqa +from .list_values_translator import ListValuesTranslator # noqa +from .base_translator import LanguageCode # noqa diff --git a/backend/app/services/translation/auto_translator.py b/backend/app/services/translation/auto_translator.py new file mode 100644 index 00000000..f16238a2 --- /dev/null +++ b/backend/app/services/translation/auto_translator.py @@ -0,0 +1,20 @@ +from .base_translator import Translator + + +class AutoTranslator(Translator): + _PUNCTUATION_MARKS = ".,;:!?" + + def translate(self): + translated_texts = self._cloud_translate(self.text_list) + translated_texts = self.__fix_anchor_punctuation(translated_texts) + translated_fields = self.handle_response(translated_texts) + return translated_fields + + def __fix_anchor_punctuation(self, translations: list[str]) -> list[str]: + """ + Removes spaces between anchor tags and punctuation marks. + """ + for mark in self._PUNCTUATION_MARKS: + for i, sentence in enumerate(translations): + translations[i] = sentence.replace(f"</a> {mark}", f"</a>{mark}") + return translations diff --git a/backend/app/services/translation/base_translator.py b/backend/app/services/translation/base_translator.py new file mode 100644 index 00000000..32fc2463 --- /dev/null +++ b/backend/app/services/translation/base_translator.py @@ -0,0 +1,101 @@ +from abc import ABC, abstractmethod +from datetime import datetime +from typing import Any +from enum import Enum + +import httpx +from pydantic import BaseModel + +from app.config.settings import Settings +from app.services.translation import cloud_translators +from app.util.logger import get_logger + +logger = get_logger(__name__) +settings = Settings() + + +class LanguageCode(str, Enum): + DUTCH = "nl" + ENGLISH = "en" + FRISIAN = "fy" + + +class TranslationResult(BaseModel): + error: str | None + fields: dict[str, int | str | list | bool | None | datetime] | None + used_service: str + + +class Translator(ABC): + """ + Abstract base class for translation services. + + Subclasses must implement the translate() method. + """ + + _SERVICE_RELATED_EXCEPTIONS = [ + httpx.ConnectError, + httpx.HTTPStatusError, + ] + + def __init__( + self, + field_dict: dict[str, Any], + source_lang: LanguageCode = LanguageCode.DUTCH, + target_lang: LanguageCode = LanguageCode.ENGLISH, + organisation_name: str = "", + algorithm_name: str = "", + ) -> None: + self.field_dict = field_dict + self.source_lang = source_lang + self.target_lang = target_lang + self.client = None + self.text_list = list(self.field_dict.values()) + self.text_list = [text if text else "" for text in self.text_list] + self.organisation_name = organisation_name + self.algorithm_name = algorithm_name + + @abstractmethod + def translate(self, *args, **kwargs) -> TranslationResult: + """ + Apply the translation service to the text list. + """ + ... + + def _cloud_translate( + self, + original_values: str | list, + ) -> str | list: + """ + Fallback to cloud translation API if the original value is not found in the default_translations dict. + """ + translation = cloud_translators.c3po_translate( + original_values, + self.source_lang.value, + self.target_lang.value, + organisation_name=self.organisation_name, + algorithm_name=self.algorithm_name, + ) + return translation + + def handle_response(self, response: list | dict[str, Any]) -> TranslationResult: + """ + Decorator for the translate() method for automatic response and exception handling. + + Exception handling is applied on service related exceptions only. + """ + class_name = self.__class__.__name__ + if isinstance(response, dict): + result = TranslationResult( + error=None, fields=response, used_service=class_name + ) + elif isinstance(response, list): + fields = dict(zip(list(self.field_dict.keys()), response)) + result = TranslationResult( + error=None, fields=fields, used_service=class_name + ) + else: + raise TypeError( + f"Expected response to be a dict or list, got {type(response)} instead." + ) + return result diff --git a/backend/app/services/translation/cloud_translators.py b/backend/app/services/translation/cloud_translators.py new file mode 100644 index 00000000..146ee398 --- /dev/null +++ b/backend/app/services/translation/cloud_translators.py @@ -0,0 +1,154 @@ +import time +import uuid +from fastapi import HTTPException, status + +import requests + +import deepl + +from app.config import settings +from app.services.c3po import handle_c3po_exception +from app.util.logger import get_logger + +logger = get_logger(__name__) +env_settings = settings.Settings() + + +def azure_translate( + original_values: list | str, source_lang: str, target_lang: str, html=False +) -> str | list: + azure_translate_settings = settings.AzureTranslation() + api_key = azure_translate_settings.api_key + endpoint = azure_translate_settings.endpoint + region = azure_translate_settings.region + + params = { + "api-version": "3.0", + "from": source_lang, + "to": [target_lang], + "textType": "html" if html else "plain", + } + + headers = { + "Ocp-Apim-Subscription-Key": api_key, + "Ocp-Apim-Subscription-Region": region, + "Content-type": "application/json", + "X-ClientTraceId": str(uuid.uuid4()), + } + + # You can pass more than one object in body. + if isinstance(original_values, list): + if not original_values: + return [] + body = [{"text": val} for val in original_values] + else: + body = [{"text": original_values}] + + response = requests.post(endpoint, params=params, headers=headers, json=body) + if response.status_code == 429: + # pause for a minute + logger.info( + "Azure Translator API rate limit reached. Pausing for 60 seconds..." + ) + time.sleep(60) + logger.info("Resuming translation.") + response = requests.post(endpoint, params=params, headers=headers, json=body) + + response_obj = response.json() + translations = [obj["translations"][0]["text"] for obj in response_obj] + if isinstance(original_values, list): + return translations + return translations[0] + + +def deepl_translate( + original_values: list | str, source_lang: str, target_lang: str, html=False +) -> str | list: + if target_lang == "en": + target_lang = "EN-GB" + + if isinstance(original_values, list): + return _handle_list_translation(original_values, source_lang, target_lang, html) + else: + return _handle_string_translation( + original_values, source_lang, target_lang, html + ) + + +def c3po_translate( + original_values: list | str, + source_lang: str, + target_lang: str, + organisation_name: str = "", + algorithm_name: str = "", +) -> str | list: + """ + Translates Dutch text to English or Frisian using the C3PO API. + + :return: The translated values. Depending on the input, it is either a string or a list. + + :raises ValueError: If the target language is not supported + :raises httpx.ConnectError: If the connection with the C3PO API fails + :raises httpx.HTTPStatusError: If the request to the C3PO API fails + """ + if source_lang != "nl": + raise ValueError(f"Unsupported source language: {source_lang}") + + if target_lang == "en": + rule_code = "ENGLISH_TRANSLATION" + elif target_lang == "fy": + rule_code = "FRISIAN_TRANSLATION" + else: + raise ValueError(f"Unsupported target language: {target_lang}") + + request_body = { + "payload": original_values, + "rule_code": rule_code, + "org_code": "ictu-devops", + "project_code": "algreg", + } + + try: + response = requests.post( + f"{env_settings.c3po_url}/processing-request/", json=request_body + ) + response.raise_for_status() + except requests.exceptions.RequestException as e: + handle_c3po_exception(e, rule_code, organisation_name, algorithm_name) + raise HTTPException( + status_code=status.HTTP_424_FAILED_DEPENDENCY, + detail="EXPERT_SERVICE_CONN_ERROR", + ) + return response.json()["result"] + + +def _handle_string_translation( + original_values: str, source_lang: str, target_lang: str, html: bool +) -> str: + if not original_values: + return "" + deepl_api_key = settings.DeepLSettings().api_key + translator = deepl.Translator(deepl_api_key) + response = translator.translate_text( + original_values, + source_lang=source_lang, + target_lang=target_lang, + tag_handling="html" if html else None, + ) + return response.text + + +def _handle_list_translation( + original_values: list, source_lang: str, target_lang: str, html: bool +) -> list: + if not original_values: + return [] + deepl_api_key = settings.DeepLSettings().api_key + translator = deepl.Translator(deepl_api_key) + response = translator.translate_text( + original_values, + source_lang=source_lang, + target_lang=target_lang, + tag_handling="html" if html else None, + ) + return [translation.text for translation in response] diff --git a/backend/app/services/translation/default_values_translator.py b/backend/app/services/translation/default_values_translator.py new file mode 100644 index 00000000..70a1c68d --- /dev/null +++ b/backend/app/services/translation/default_values_translator.py @@ -0,0 +1,22 @@ +from .base_translator import Translator + + +class DefaultValuesTranslator(Translator): + def translate(self, translation_spec: dict[str, dict]): + raw_result = self.apply_default_translations(translation_spec) + return self.handle_response(raw_result) + + def apply_default_translations( + self, default_translations: dict[str, dict] + ) -> dict[str, str]: + new_field_dict = self.field_dict.copy() + for field_key, original_value in new_field_dict.items(): + original_value = original_value.strip() + if original_value in default_translations[field_key].keys(): + new_value = default_translations[field_key][original_value] + new_field_dict[field_key] = new_value + else: + fallback_translation = self._cloud_translate(original_value) + new_field_dict[field_key] = fallback_translation + + return new_field_dict diff --git a/backend/app/services/translation/list_values_translator.py b/backend/app/services/translation/list_values_translator.py new file mode 100644 index 00000000..4f257d00 --- /dev/null +++ b/backend/app/services/translation/list_values_translator.py @@ -0,0 +1,36 @@ +from .base_translator import Translator + + +class ListValuesTranslator(Translator): + def translate(self, translation_spec: dict[str, dict]): + new_field_dict = self.field_dict.copy() + for field_key, original_list in new_field_dict.items(): + translated_list = self.translate_list( + field_key, original_list, translation_spec + ) + new_field_dict[field_key] = translated_list + + return self.handle_response(new_field_dict) + + def translate_list( + self, field_key: str, original_list: list, default_translations: dict[str, dict] + ) -> list[str]: + """ + Translate a list of strings. + + If a string is not found in the default_translations dict, the original string is kept. + """ + + new_list = [] + for original_value in original_list: + if type(original_value) is not str: + new_list.append(original_value) + continue + original_value = original_value.strip() + if original_value in default_translations[field_key].keys(): + new_value = default_translations[field_key][original_value] + new_list.append(new_value) + else: + fallback_translation = self._cloud_translate(original_value) + new_list.append(fallback_translation) + return new_list diff --git a/backend/app/services/translation/preprocessor.py b/backend/app/services/translation/preprocessor.py new file mode 100644 index 00000000..2c3d309e --- /dev/null +++ b/backend/app/services/translation/preprocessor.py @@ -0,0 +1,140 @@ +import json +from typing import Any + +from sqlalchemy import inspect, VARCHAR +from app.database.database import Base as SQLAlchemyModel + +_FILE_TEMPLATE = "app/services/translation/translation_spec_{}.json" + + +def load_translation_spec(target_lang: str) -> dict: + """ + Load the translation specifications from a file. + + Defines the way fields should be translated (automatically or with default values) + """ + translation_spec_file = _FILE_TEMPLATE.format(target_lang) + with open(translation_spec_file, "r") as file: + return json.load(file) + + +class Preprocessor: + """ + A class for preprocessing a model instance before translation. + + Assumed order of translation: + 1. Non-translatable fields + 4. List fields + 2. Default translate fields + 3. Auto translate fields + """ + + def __init__( + self, + model_instance: SQLAlchemyModel, + attrs_to_delete: list[str] = None, + target_lang: str = "en", + ): + self.model_instance = model_instance + self.attrs_to_delete = set(attrs_to_delete) if attrs_to_delete else set() + self.model_attrs = ( + set(inspect(self.model_instance).attrs.keys()) - self.attrs_to_delete + ) + self.translation_spec = load_translation_spec(target_lang) + self.passed = set() + + def _get_none_fields(self) -> set[str]: + """ + Get the fields that have None as value and keep them. + """ + none_fields = { + field + for field in self.model_attrs + if getattr(self.model_instance, field) is None + } + return none_fields + + def get_non_translatable_fields(self) -> dict[str, Any]: + """ + Get fields that don't need translation. + """ + excluded_field_keys = set.union( + set(self.translation_spec["auto_translate_fields"]), + self.translation_spec["default_translations"].keys(), + self._get_list_field_keys(), + ) + non_translatable_field_keys = ( + self.model_attrs - excluded_field_keys + ) | self._get_none_fields() + return self.filter_fields(non_translatable_field_keys) + + def _get_list_field_keys(self) -> set[str]: + return { + field + for field in self.model_attrs + if isinstance(getattr(self.model_instance, field), list) + } + + def get_list_fields(self) -> dict[str, list[str]]: + """ + Get fields that have a list as values. + + List fields are computed by inspecting model attrs that are of type list. + """ + list_fields = self._get_list_field_keys() + return self.filter_fields(list_fields) + + def get_default_translate_fields(self) -> dict[str, Any]: + """ + Get the fields that need default translation. + + Avoid translating fields that have None or a list as value. + These are already handled by other translation methods. + """ + default_translations = self.translation_spec["default_translations"] + default_translate_fields = set(default_translations.keys()) + return self.filter_fields(default_translate_fields) + + def get_auto_translate_fields(self) -> dict[str, str]: + """ + Get the fields that need translation. + """ + auto_translate_fields = set(self.translation_spec["auto_translate_fields"]) + return self.filter_fields(auto_translate_fields) + + def filter_fields(self, field_set: set) -> dict[str, str | list]: + """ + Utility function for returning filtered fields. + """ + field_set = field_set - self.passed + self.passed.update(field_set) + fields_dict = {} + valid_fields = self.model_attrs & field_set + for field in valid_fields: + value = getattr(self.model_instance, field) + fields_dict[field] = value + + return fields_dict + + def __get_max_lengths(self) -> dict[str, int | None]: + """ + Get the maximum lengths of the fields. + """ + column_max_lengths = {} + columns = self.model_instance.__table__.columns + for column in columns: + if isinstance(column.type, VARCHAR): + column_max_lengths[column.name] = column.type.length + else: + column_max_lengths[column.name] = None + + return column_max_lengths + + def truncate_fields(self, translated_dict: dict[str, Any]): + for field_key, value in translated_dict.items(): + max_length = self.__get_max_lengths().get(field_key) + exceeds_max_length = ( + isinstance(value, str) and max_length and len(value) > max_length + ) + if exceeds_max_length: + translated_dict[field_key] = value[: max_length - 3] + "..." diff --git a/backend/app/services/translation/translation_spec.json b/backend/app/services/translation/translation_spec.json new file mode 100644 index 00000000..ccff8425 --- /dev/null +++ b/backend/app/services/translation/translation_spec.json @@ -0,0 +1,116 @@ +{ + "auto_translate_fields": [ + "name", + "description_short", + "goal", + "impact", + "proportionality", + "decision_making_process", + "lawful_basis", + "iama_description", + "dpia_description", + "objection_procedure", + "area", + "description", + "source_data", + "methods_and_models", + "monitoring", + "human_intervention", + "risks", + "performance_standard", + "tags", + "competent_authority", + "lang", + "provider" + ], + "default_translations": { + "organization": { + "Autoriteit Persoonsgegevens": "Dutch Data Protection Authority", + "Belastingdienst": "Dutch Tax and Customs Administration", + "Centraal Bureau Rijvaardigheidsbewijzen": "Central Office for Motor Vehicle Driver Testing", + "Centraal Justitieel Incassobureau": "Central Judicial Collection Agency", + "DCMR Milieudienst Rijnmond": "Environmental Protection Agency Rijnmond", + "Inspectie van het Onderwijs (OCW)": "Inspectorate of Education", + "Justitiële Informatiedienst": "Judicial Information Service", + "Kadaster": "Land Registry", + "Ministerie van Binnenlandse Zaken en Koninkrijksrelaties": "Ministry of the Interior and Kingdom Relations", + "Ministerie van Justitie en Veiligheid": "Ministry of Justice and Security", + "Nederlands Forensisch Instituut": "Netherlands Forensic Institute", + "Omgevingsdienst Midden-Holland": "Regional Environment Agency Middle Holland", + "Omgevingsdienst Noordzeekanaalgebied": "Regional Environment Agency North Sea Canal Area", + "Rijksdienst Voor Identiteitsgegevens": "National Office for Identity Data", + "Rijksdienst voor Ondernemend Nederland": "Netherlands Enterprise Agency", + "SED Organisatie (Gemeente Stede Broec, Enkhuizen, Drechterland)": "SED Organization (Municipalities Stede Broec, Enkhuizen, Drechterland)", + "Sociale Verzekeringsbank (SVB)": "Social Insurance Bank", + "Toeslagen": "Allowances", + "Uitvoeringsinstituut Werknemersverzekeringen": "Employee Insurance Agency", + "Waterschap Drents Overijsselse Delta": "Water Board Drents Overijsselse Delta", + "Waterschap Hollandse Delta": "Water Board Hollandse Delta", + "Gemeente Amersfoort": "Municipality of Amersfoort", + "Gemeente Amsterdam": "Municipality of Amsterdam", + "Gemeente Assen": "Municipality of Assen", + "Gemeente Bergen Op Zoom": "Municipality of Bergen Op Zoom", + "Gemeente Den Haag": "Municipality of The Hague", + "Gemeente Eindhoven": "Municipality of Eindhoven", + "Gemeente Emmen": "Municipality of Emmen", + "Gemeente Goeree-Overflakkee": "Municipality of Goeree-Overflakkee", + "Gemeente Lochem": "Municipality of Lochem", + "Gemeente Oirschot": "Municipality of Oirschot", + "Gemeente Rotterdam": "Municipality of Rotterdam", + "Gemeente Stichtse Vecht": "Municipality of Stichtse Vecht", + "Gemeente Súdwest-Fryslân": "Municipality of Súdwest-Fryslân", + "Gemeente Utrecht": "Municipality of Utrecht", + "Provincie Noord-Brabant": "Province of North Brabant", + "Provincie Zuid-Holland": "Province of South Holland" + }, + "category": { + "Organisatie en bedrijfsvoering" : "Organization and business operations", + "Dienstverlening" : "Service delivery", + "Bestuur": "Board", + "Cultuur en recreatie": "Culture and Recreation", + "Economie": "Economy", + "Financiën": "Finance", + "Huisvesting": "Housing", + "Internationaal": "International", + "Landbouw": "Agriculture", + "Migratie en integratie": "Migration and Integration", + "Natuur en milieu": "Nature and Environment", + "Onderwijs en wetenschap": "Education and Science", + "Openbare orde en veiligheid": "Public Order and Safety", + "Recht": "Law", + "Ruimte en infrastructuur": "Space and Infrastructure", + "Sociale zekerheid": "Social Security", + "Verkeer": "Traffic", + "Werk": "Work", + "Zorg en gezondheid": "Health and Healthcare", + "Zorg en Welzijn": "Care and Health" + }, + "type": { + "Ja": "Yes", + "Nee": "No", + "Regelgebaseerd": "Rule-based", + "Zelflerend": "Self-learning" + }, + "iama": { + "Ja": "Yes", + "Nee": "No" + }, + "dpia": { + "Ja": "Yes", + "Nee": "No" + }, + "mprd": { + "Ja": "Yes", + "Nee": "No" + }, + "impacttoetsen": { + "Data Protection Impact Assessment (DPIA)": "Data Protection Impact Assessment (DPIA)", + "Impact Assessment Mensenrechten en Algoritmes (IAMA)": "Human Rights and Algorithms Impact Assessment (IAMA)" + }, + "status": { + "In gebruik": "In use", + "In ontwikkeling": "In development", + "Buiten gebruik": "Out of use" + } + } +} \ No newline at end of file diff --git a/backend/app/services/translation/translation_spec_en.json b/backend/app/services/translation/translation_spec_en.json new file mode 100644 index 00000000..045172ae --- /dev/null +++ b/backend/app/services/translation/translation_spec_en.json @@ -0,0 +1,121 @@ +{ + "auto_translate_fields": [ + "name", + "description_short", + "goal", + "impact", + "proportionality", + "decision_making_process", + "lawful_basis", + "iama_description", + "dpia_description", + "objection_procedure", + "area", + "lang", + "description", + "source_data", + "methods_and_models", + "monitoring", + "human_intervention", + "risks", + "performance_standard", + "tags", + "competent_authority", + "provider" + ], + "default_translations": { + "organization": { + "Autoriteit Persoonsgegevens": "Dutch Data Protection Authority", + "Belastingdienst": "Dutch Tax and Customs Administration", + "Centraal Bureau Rijvaardigheidsbewijzen": "Central Office for Motor Vehicle Driver Testing", + "Centraal Justitieel Incassobureau": "Central Judicial Collection Agency", + "DCMR Milieudienst Rijnmond": "Environmental Protection Agency Rijnmond", + "Inspectie van het Onderwijs (OCW)": "Inspectorate of Education", + "Justitiële Informatiedienst": "Judicial Information Service", + "Kadaster": "Land Registry", + "Ministerie van Binnenlandse Zaken en Koninkrijksrelaties": "Ministry of the Interior and Kingdom Relations", + "Ministerie van Justitie en Veiligheid": "Ministry of Justice and Security", + "Nederlands Forensisch Instituut": "Netherlands Forensic Institute", + "Omgevingsdienst Midden-Holland": "Regional Environment Agency Middle Holland", + "Omgevingsdienst Noordzeekanaalgebied": "Regional Environment Agency North Sea Canal Area", + "Rijksdienst Voor Identiteitsgegevens": "National Office for Identity Data", + "Rijksdienst voor Ondernemend Nederland": "Netherlands Enterprise Agency", + "SED Organisatie (Gemeente Stede Broec, Enkhuizen, Drechterland)": "SED Organization (Municipalities Stede Broec, Enkhuizen, Drechterland)", + "Sociale Verzekeringsbank (SVB)": "Social Insurance Bank", + "Toeslagen": "Allowances", + "Uitvoeringsinstituut Werknemersverzekeringen": "Employee Insurance Agency", + "Waterschap Drents Overijsselse Delta": "Water Board Drents Overijsselse Delta", + "Waterschap Hollandse Delta": "Water Board Hollandse Delta", + "Gemeente Amersfoort": "Municipality of Amersfoort", + "Gemeente Amsterdam": "Municipality of Amsterdam", + "Gemeente Assen": "Municipality of Assen", + "Gemeente Bergen Op Zoom": "Municipality of Bergen Op Zoom", + "Gemeente Den Haag": "Municipality of The Hague", + "Gemeente Eindhoven": "Municipality of Eindhoven", + "Gemeente Emmen": "Municipality of Emmen", + "Gemeente Goeree-Overflakkee": "Municipality of Goeree-Overflakkee", + "Gemeente Lochem": "Municipality of Lochem", + "Gemeente Oirschot": "Municipality of Oirschot", + "Gemeente Rotterdam": "Municipality of Rotterdam", + "Gemeente Stichtse Vecht": "Municipality of Stichtse Vecht", + "Gemeente Súdwest-Fryslân": "Municipality of Súdwest-Fryslân", + "Gemeente Utrecht": "Municipality of Utrecht", + "Provincie Noord-Brabant": "Province of North Brabant", + "Provincie Zuid-Holland": "Province of South Holland" + }, + "category": { + "Organisatie en bedrijfsvoering": "Organisation and business operations", + "Dienstverlening": "Service delivery", + "Bestuur": "Board", + "Cultuur en recreatie": "Culture and Recreation", + "Economie": "Economy", + "Financiën": "Finance", + "Huisvesting": "Housing", + "Internationaal": "International", + "Landbouw": "Agriculture", + "Migratie en integratie": "Migration and Integration", + "Natuur en milieu": "Nature and Environment", + "Onderwijs en wetenschap": "Education and Science", + "Openbare orde en veiligheid": "Public Order and Safety", + "Recht": "Law", + "Ruimte en infrastructuur": "Space and Infrastructure", + "Sociale zekerheid": "Social Security", + "Verkeer": "Traffic", + "Werk": "Work", + "Zorg en gezondheid": "Health and Healthcare", + "Zorg en Welzijn": "Care and Health" + }, + "type": { + "Ja": "Yes", + "Nee": "No", + "Regelgebaseerd": "Rule-based", + "Zelflerend": "Self-learning" + }, + "iama": { + "Ja": "Yes", + "Nee": "No" + }, + "dpia": { + "Ja": "Yes", + "Nee": "No" + }, + "mprd": { + "Ja": "Yes", + "Nee": "No" + }, + "impacttoetsen": { + "Data Protection Impact Assessment (DPIA)": "Data Protection Impact Assessment (DPIA)", + "Impact Assessment Mensenrechten en Algoritmes (IAMA)": "Human Rights and Algorithms Impact Assessment (IAMA)" + }, + "status": { + "In gebruik": "In use", + "In ontwikkeling": "In development", + "Buiten gebruik": "Out of use" + }, + "publication_category": { + "Hoog-risico AI-systeem": "High-Risk AI-system", + "Impactvolle algoritmes": "Impactful algorithms", + "Overige algoritmes": "Other algorithms" + } + } +} diff --git a/backend/app/services/translation/translation_spec_fy.json b/backend/app/services/translation/translation_spec_fy.json new file mode 100644 index 00000000..c9393f13 --- /dev/null +++ b/backend/app/services/translation/translation_spec_fy.json @@ -0,0 +1,121 @@ +{ + "auto_translate_fields": [ + "name", + "description_short", + "goal", + "impact", + "proportionality", + "decision_making_process", + "lawful_basis", + "iama_description", + "dpia_description", + "objection_procedure", + "area", + "lang", + "description", + "source_data", + "methods_and_models", + "monitoring", + "human_intervention", + "risks", + "performance_standard", + "tags", + "competent_authority", + "provider" + ], + "default_translations": { + "organization": { + "Autoriteit Persoonsgegevens": "Autoriteit Persoansgegevens", + "Belastingdienst": "Belestingtsjinst", + "Centraal Bureau Rijvaardigheidsbewijzen": "Sintraal Buro Rydfeardigensbewizen", + "Centraal Justitieel Incassobureau": "Sintraal Justysjeel Ynkassoburo", + "DCMR Milieudienst Rijnmond": "DCMR Miljeutsjinst Rijnmond", + "Inspectie van het Onderwijs (OCW)": "Ynspeksje fan it Ûnderwiis", + "Justitiële Informatiedienst": "Justysjele Ynformaasjetsjinst", + "Kadaster": "Kadaster", + "Ministerie van Binnenlandse Zaken en Koninkrijksrelaties": "Ministearje fan Ynlânske Saken en Keninkryksrelaasjes", + "Ministerie van Justitie en Veiligheid": "Ministearje fan Justysje en Feiligens", + "Nederlands Forensisch Instituut": "Nederlânsk Forensysk Ynstitút", + "Omgevingsdienst Midden-Holland": "Omjouwingstsjinst Midden-Hollân", + "Omgevingsdienst Noordzeekanaalgebied": "Omjouwingstsjinst Noardseekanaalgebiet", + "Rijksdienst Voor Identiteitsgegevens": "Rykstsjinst Foar Identiteitsgegevens", + "Rijksdienst voor Ondernemend Nederland": "Rykstsjinst foar Ûndernimmend Nederlân", + "SED Organisatie (Gemeente Stede Broec, Enkhuizen, Drechterland)": "SED Organisaasje (Gemeentes Stede Broec, Enkhuizen, Drechterland)", + "Sociale Verzekeringsbank (SVB)": "Sosjale Fersekeringsbank", + "Toeslagen": "Taslaggen", + "Uitvoeringsinstituut Werknemersverzekeringen": "Útfieringsynstitút Wurknimmersfersekeringen", + "Waterschap Drents Overijsselse Delta": "Wetterskip Drintsk Oeriselske Delta", + "Waterschap Hollandse Delta": "Wetterskip Hollânske Delta", + "Gemeente Amersfoort": "Gemeente Amersfoort", + "Gemeente Amsterdam": "Gemeente Amsterdam", + "Gemeente Assen": "Gemeente Assen", + "Gemeente Bergen Op Zoom": "Gemeente Bergen Op Zoom", + "Gemeente Den Haag": "Gemeente Den Haach", + "Gemeente Eindhoven": "Gemeente Eindhoven", + "Gemeente Emmen": "Gemeente Emmen", + "Gemeente Goeree-Overflakkee": "Gemeente Goeree-Overflakkee", + "Gemeente Lochem": "Gemeente Lochem", + "Gemeente Oirschot": "Gemeente Oirskot", + "Gemeente Rotterdam": "Gemeente Rotterdam", + "Gemeente Stichtse Vecht": "Gemeente Stichtske Fecht", + "Gemeente Súdwest-Fryslân": "Gemeente Súdwest-Fryslân", + "Gemeente Utrecht": "Gemeente Utrecht", + "Provincie Noord-Brabant": "Provinsje Noard-Brabân", + "Provincie Zuid-Holland": "Provinsje Súd-Hollân" + }, + "category": { + "Organisatie en bedrijfsvoering": "Organisaasje en bedriuwsfiering", + "Dienstverlening": "Tsjinstferliening", + "Bestuur": "Bestjoer", + "Cultuur en recreatie": "Kultuer en rekreaasje", + "Economie": "Ekonomy", + "Financiën": "Finânsjes", + "Huisvesting": "Húsfesting", + "Internationaal": "Ynternasjonaal", + "Landbouw": "Lânbou", + "Migratie en integratie": "Migraasje en yntegraasje", + "Natuur en milieu": "Natuer en miljeu", + "Onderwijs en wetenschap": "Ûnderwiis en wittenskip", + "Openbare orde en veiligheid": "Iepenbiere oarder en feilichheid", + "Recht": "Rjocht", + "Ruimte en infrastructuur": "Romte en ynfrastruktuer", + "Sociale zekerheid": "Sosjale wissichheid", + "Verkeer": "Ferkear", + "Werk": "Wurk", + "Zorg en gezondheid": "Soarch en sûnens", + "Zorg en Welzijn": "Soarch en wolwêzen" + }, + "type": { + "Ja": "Ja", + "Nee": "Nee", + "Regelgebaseerd": "Regelbasearre", + "Zelflerend": "Selslearend" + }, + "iama": { + "Ja": "Ja", + "Nee": "Nee" + }, + "dpia": { + "Ja": "Ja", + "Nee": "Nee" + }, + "mprd": { + "Ja": "Ja", + "Nee": "Nee" + }, + "impacttoetsen": { + "Data Protection Impact Assessment (DPIA)": "Data Protection Impact Assessment (DPIA)", + "Impact Assessment Mensenrechten en Algoritmes (IAMA)": "Ympact Assessment Minskerjochten en Algoritmes (IAMA)" + }, + "status": { + "In gebruik": "Yn gebrûk", + "In ontwikkeling": "Yn ûntwikkeling", + "Buiten gebruik": "Bûten gebrûk" + }, + "publication_category": { + "Hoog-risico AI-systeem": "Heechrisiko AI-systeem", + "Impactvolle algoritmes": "Ympaktfolle algoritmes", + "Overige algoritmes": "Oare algoritmes" + } + } +} diff --git a/backend/app/spell_checker.py b/backend/app/spell_checker.py new file mode 100644 index 00000000..fbec0924 --- /dev/null +++ b/backend/app/spell_checker.py @@ -0,0 +1,60 @@ +import httpx +import urllib.parse +from fastapi import Request, FastAPI +from starlette.middleware.cors import CORSMiddleware +from starlette.datastructures import MutableHeaders +from slowapi import Limiter, _rate_limit_exceeded_handler +from slowapi.util import get_remote_address +from slowapi.middleware import SlowAPIMiddleware +from slowapi.errors import RateLimitExceeded + +from app.middleware import get_current_user +from app.config.settings import WebSpellChecker +from app.util.logger import get_logger + +logger = get_logger(__name__) +spell_check_api = FastAPI(docs_url=None) +spell_check_api.add_middleware( + CORSMiddleware, allow_origins=["*"], allow_methods=["*"], allow_headers=["*"] +) + + +@spell_check_api.post("/") +async def forward_spellcheck_request(request: Request): + """ + This endpoint serves as a forwarding interface to the WebSpellChecker API. + It receives a POST request from the WebSpellChecker SDK. + The request body received from this SDK contains the 'customerid' parameter, which represents the user token. + The token is authenticated and the request is forwarded to the WebSpellChecker API. + """ + request_body = await request.body() + token = _parse_token(request_body) + get_current_user(token) + + async with httpx.AsyncClient() as client: + webspellchecker_settings = WebSpellChecker() + request_body = request_body.replace( + b"customerid=" + token.encode(), + b"customerid=" + webspellchecker_settings.api_key.encode(), + ) + mutable_headers = MutableHeaders(request.headers) + mutable_headers["Content-Length"] = str(len(request_body)) + response = await client.request( + method="POST", + url=webspellchecker_settings.api_url, + headers=mutable_headers, + content=request_body, + ) + return response.json() + + +def _parse_token(request_body): + parsed_body = urllib.parse.parse_qs(request_body.decode()) + token = parsed_body["customerid"][0] + return token + + +limiter = Limiter(key_func=get_remote_address, default_limits=["160/minute"]) +spell_check_api.state.limiter = limiter +spell_check_api.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler) +spell_check_api.add_middleware(SlowAPIMiddleware) diff --git a/backend/app/util/config_load.py b/backend/app/util/config_load.py new file mode 100644 index 00000000..2453325a --- /dev/null +++ b/backend/app/util/config_load.py @@ -0,0 +1,43 @@ +from functools import lru_cache +import json +import os +import re +import time +from typing import Any, Tuple +from app.schemas.config.types import SchemaProperty, SchemaJson +from app.config.layouts.types import LayoutJson + + +def get_ttl_hash(seconds=3600): + """Returns a new value for each interval in `seconds`. Allows resetting of cache, giving an effective TTL of + `seconds`""" + return round(time.time() / seconds) + + +@lru_cache(maxsize=1) +def collect_structure_data( + ttl_hash=None, +) -> Tuple[dict[str, dict[str, SchemaProperty]], dict[str, LayoutJson]]: + del ttl_hash + + version_pattern = re.compile(r"v\d_\d[a-z]?") + filenames = [ + item for item in os.listdir("app/schemas/config") if version_pattern.match(item) + ] + + versions = [f[1:-5].replace("_", ".") for f in filenames] + + schemas: dict[str, dict[str, SchemaProperty]] = {} + layouts: dict[str, LayoutJson] = {} + for v, f in zip(versions, filenames): + filename = f"app/schemas/config/{f}" + with open(filename) as file: + schema: dict[str, Any] = json.load(file) + schemas[v] = SchemaJson(**schema).properties + + filename = f"app/config/layouts/{f}" + with open(filename) as file: + layout: dict[str, Any] = json.load(file) + layouts[v] = LayoutJson(**layout) + + return schemas, layouts diff --git a/backend/app/util/create_dict.py b/backend/app/util/create_dict.py new file mode 100644 index 00000000..5ed284ec --- /dev/null +++ b/backend/app/util/create_dict.py @@ -0,0 +1,37 @@ +from collections import defaultdict +from datetime import datetime +from dateutil.relativedelta import relativedelta + + +def create_dict(data): + twelve_months_ago = datetime.now() - relativedelta(months=12) + + monthly_counts = defaultdict(int) + + for row in data: + dt = row.create_dt + date_id = f"{dt.month}-{dt.year}" + monthly_counts[date_id] += 1 + + current_date = datetime.now() + while twelve_months_ago <= current_date: + date_id = f"{twelve_months_ago.month}-{twelve_months_ago.year}" + if date_id not in monthly_counts: + monthly_counts[date_id] = 0 + twelve_months_ago += relativedelta(months=1) + + sorted_months = sorted( + monthly_counts.keys(), key=lambda x: datetime.strptime(x, "%m-%Y") + ) + + cumulative_count = 0 + for month in sorted_months: + cumulative_count += monthly_counts[month] + monthly_counts[month] = cumulative_count + + monthly_data = [ + {"date": month, "count": monthly_counts[month]} for month in sorted_months + ] + twelve_months_data = monthly_data[-12:] + + return twelve_months_data diff --git a/backend/app/util/html.py b/backend/app/util/html.py new file mode 100644 index 00000000..8923b233 --- /dev/null +++ b/backend/app/util/html.py @@ -0,0 +1,56 @@ +from lxml import etree +from lxml.html import document_fromstring +from lxml.html.clean import Cleaner +from bs4 import BeautifulSoup +from typing import Dict +import re + + +def strip_html(value: str) -> str: + if not value.strip(): + return value + html = document_fromstring(value) + plain_text = " ".join(etree.XPath("//text()")(html)) + return plain_text + + +def sanitize_string_fields(cls, value, **kwargs): + """Preprocess html fields by sanitization.""" + if not isinstance(value, str) or not value: + return value + + field_name = kwargs["field"].name + if field_name not in cls.__fields__: + return value + + allowed_tags = cls.__fields__[field_name].field_info.extra.get("allowed_html_tags") + if not allowed_tags: + return strip_html(value) + + return sanitize_html(value, allowed_tags) + + +def sanitize_html(value: str, allowed_tags: list[str]): + cleaner = Cleaner( + allow_tags=allowed_tags, + style=True, + kill_tags=["script", "style"], + safe_attrs_only=True, + safe_attrs=[], + ) + result = cleaner.clean_html(value) + return result + + +def get_static_html(input: str) -> Dict: + static_content = {} + soup = BeautifulSoup(input, "lxml") + for div in soup.findAll("div", attrs={"class": re.compile("scrape-element")}): + static_content[div.get("id")] = str(div) + for div in soup.findAll("div", attrs={"id": re.compile("^table-types-*")}): + static_content[div.get("id")] = str(div) + for div in soup.findAll( + "div", attrs={"id": re.compile("^table-kwaliteitsregimes-*")} + ): + static_content[div.get("id")] = str(div) + return static_content diff --git a/backend/app/util/logger.py b/backend/app/util/logger.py index cac95aa1..38d8947c 100644 --- a/backend/app/util/logger.py +++ b/backend/app/util/logger.py @@ -2,7 +2,6 @@ def get_logger(name: str): - """ Inspired by: https://docs.python.org/3/howto/logging.html#configuring-logging """ @@ -17,7 +16,6 @@ def get_logger(name: str): # create formatter formatter = logging.Formatter( fmt="%(levelname)s | %(asctime)s | %(name)s | %(message)s", - datefmt="%Y-%m-%d %H:%M:%S", ) # add formatter to ch diff --git a/backend/app/util/stringify.py b/backend/app/util/stringify.py new file mode 100644 index 00000000..bbaf5ccd --- /dev/null +++ b/backend/app/util/stringify.py @@ -0,0 +1,25 @@ +from typing import Any +from enum import Enum + + +def stringify(value: Any) -> str | None: + # Handles list[str] | list[dict] | number | str + if not value: + return None + if isinstance(value, list): + if len(value) == 0: + return None + if isinstance(value[0], Enum): + return ", ".join([str(v.value) for v in value]) + if isinstance(value[0], str): + return ", ".join(list[str](value)) + elif isinstance(value[0], dict): + listified_dicts = [] + for n, cell in enumerate(list[dict](value)): + stringified_dict = ", ".join(filter(None, cell.values())) + listified_dicts.append(f"{n+1}: {stringified_dict}") + return ". ".join(listified_dicts) + if isinstance(value, Enum): + return str(value.value) + + return str(value) diff --git a/backend/app/util/time.py b/backend/app/util/time.py new file mode 100644 index 00000000..871f5884 --- /dev/null +++ b/backend/app/util/time.py @@ -0,0 +1,26 @@ +from app.util.logger import get_logger + +import time + +time_list: list[int] = [0] * 1000 + +logger = get_logger("profiler") + + +def init_time(id: int = 0): + "Logs start time with reference ID" + globals()["time_list"][id] = time.time() + + +def log_time_since(id: int = 0, pre: str | None = None): + "Prints time since zero time based on reference ID. Resets start time" + logger.info( + f"{round((time.time() - globals()['time_list'][id]) * 1000, 3):>7} ms | {pre}" + ) + init_time(id) + + +if __name__ == "__main__": + init_time(999) + time.sleep(1) + log_time_since(999) diff --git a/backend/app/util/upc.py b/backend/app/util/upc.py new file mode 100644 index 00000000..f87bf667 --- /dev/null +++ b/backend/app/util/upc.py @@ -0,0 +1,58 @@ +import random + + +def find_new_upc(avoid_upc_list: list[str]) -> str: + upc = "0" + attempt_limiter = 0 + while True: + upc = generate_upc() + if upc not in avoid_upc_list: + break + + attempt_limiter += 1 + if attempt_limiter > 1000: + raise RuntimeError("Unable to generate valid UPC") + return upc + + +def generate_upc() -> str: + """Generates a UPC Code. + + The code is eight numbers. The first seven are generated randomly, the last one is a control number based on the + first seven. + + The control value is calculated as: (even entries)*3 + (odd entries) mod 10. The resulting code does not have any + near neighbours; changing a single number, or swapping two numbers will result in an invalid UPC code. + + This can be used to generate ID's for distinct objects. It then reduces the chance of accidentally accessing another + entry due to typing errors. + """ + rl: list[int] = [random.randint(1, 9) for _ in range(0, 7)] + + e: int = rl[0] + rl[2] + rl[4] + rl[6] + o: int = rl[1] + rl[3] + rl[5] + control_value: int = (e * 3 + o) % 10 + rl.append(control_value) + + upc_string: str = "".join(list(map(str, rl))) + return upc_string + + +def validate_upc(code: str) -> bool: + """Validates a UPC code. + + See generate_upc() on how the code is built up. This function checks if the code complies + with the generation logic.""" + try: + int(code) + except (ValueError, TypeError): + return False + + if len(code) != 8: + return False + + r: str = code + e: int = int(r[0]) + int(r[2]) + int(r[4]) + int(r[6]) + o: int = int(r[1]) + int(r[3]) + int(r[5]) + c: int = (e * 3 + o) % 10 + return True if c == int(r[7]) else False diff --git a/backend/base_image/Dockerfile b/backend/base_image/Dockerfile new file mode 100644 index 00000000..843d1440 --- /dev/null +++ b/backend/base_image/Dockerfile @@ -0,0 +1,32 @@ +# Run this Dockerfile from the parent directory +FROM python:3.11.3-slim + +ENV YOUR_ENV=production \ + PYTHONFAULTHANDLER=1 \ + PYTHONUNBUFFERED=1 \ + PYTHONHASHSEED=random \ + PIP_NO_CACHE_DIR=off \ + PIP_DISABLE_PIP_VERSION_CHECK=on \ + PIP_DEFAULT_TIMEOUT=100 \ + POETRY_VERSION=1.2.2 + +WORKDIR /backend + +# Expensive operations first +RUN apt-get update +RUN apt-get -y install sudo +RUN sudo apt-get -y install gcc g++ python3-dev +RUN pip install "poetry==$POETRY_VERSION" + +# Dynamic operations last +COPY ./poetry.lock /backend/poetry.lock +COPY ./pyproject.toml /backend/pyproject.toml +RUN poetry config virtualenvs.create false +RUN poetry install --without dev --no-interaction --no-ansi + +# Cleans up cache -> Reduces size for download. +RUN sudo apt-get clean + + + + diff --git a/backend/base_image/README.md b/backend/base_image/README.md new file mode 100644 index 00000000..7a4aa7b6 --- /dev/null +++ b/backend/base_image/README.md @@ -0,0 +1,14 @@ +Does the base image need refreshing? + +Navigate to the parent directory (/backend). + +Follow the steps below. It automatically uses your current poetry.lock for packages: + +`docker build --file=base_image/Dockerfile -t algreg_base . ` +`docker tag algreg_base harbor.cicd.s15m.nl/ictu-devops-pub/algreg_base` +`docker login harbor.cicd.s15m.nl` +`docker push harbor.cicd.s15m.nl/ictu-devops-pub/algreg_base` + +or as a one-liner: + +`docker build --file=base_image/Dockerfile -t algreg_base . && docker tag algreg_base harbor-gn2.cicd.s15m.nl/ictu-devops-pub/algreg_base && docker login harbor-gn2.cicd.s15m.nl && docker push harbor-gn2.cicd.s15m.nl/ictu-devops-pub/algreg_base` diff --git a/backend/docker-compose.yml b/backend/docker-compose.yml index f527835a..2c9d3ebb 100644 --- a/backend/docker-compose.yml +++ b/backend/docker-compose.yml @@ -1,44 +1,83 @@ -version: "3.4" +version: '3.7' services: db: - image: postgres:14-alpine - container_name: ${DEV_DOCKER_CONTAINER_NAME_PREFIX}_postgres_db + image: <..>.cloudnative-pg/postgresql:15.2.7 + container_name: ${POSTGRES_DB_NAME} restart: always volumes: - ./dev_db/init.sql:/docker-entrypoint-initdb.d/init.sql - - postgres:/var/lib/postgresql/data + - db:/var/lib/postgresql/data ports: - ${POSTGRES_PORT}:${POSTGRES_PORT} environment: - POSTGRES_USER: ${POSTGRES_USER} - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} - command: -p ${POSTGRES_PORT} + POSTGRES_USER: postgres + POSTGRES_PASSWORD: postgres + PGPORT: ${POSTGRES_PORT} + command: [ "postgres", "-c", "log_statement=all", "-p", "${POSTGRES_PORT}" ] + backend: + build: + context: ../ + dockerfile: backend/Dockerfile + ports: + - ${BACKEND_PORT}:${BACKEND_PORT} + volumes: + - ./:/backend + depends_on: + - db + environment: + POSTGRES_USER: postgres + POSTGRES_PASSWORD: postgres + POSTGRES_SERVER: ${POSTGRES_DB_NAME} + POSTGRES_DB: ${POSTGRES_DB} + POSTGRES_PORT: ${POSTGRES_PORT} + C3PO_URL: ${C3PO_URL} + + restart: on-failure:10 + command: /bin/bash -c " + echo 'allow postgres to start' && sleep 3 && + alembic -c alembic.ini upgrade head && + uvicorn app.main:app --reload --host 0.0.0.0 --port ${BACKEND_PORT}" dbgate: image: dbgate/dbgate:alpine - container_name: ${DEV_DOCKER_CONTAINER_NAME_PREFIX}_dbgate + container_name: algreg_dbgate volumes: - dbgate:/root/.dbgate depends_on: - db ports: - - 8093:3000 + - ${DBGATE_PORT}:3000 environment: # docs: https://dbgate.org/docs/env-variables.html CONNECTIONS: 'CON1' LABEL_CON1: 'Postgres' SERVER_CON1: 'db' - USER_CON1: ${POSTGRES_USER} - PASSWORD_CON1: ${POSTGRES_PASSWORD} + USER_CON1: postgres + PASSWORD_CON1: postgres PORT_CON1: ${POSTGRES_PORT} ENGINE_CON1: postgres@dbgate-plugin-postgres + etl: + build: + context: ../ + dockerfile: etl/Dockerfile + ports: + - ${ETL_PORT}:${ETL_PORT} + volumes: + - ../etl:/etl + environment: + POSTGRES_USER: postgres + POSTGRES_PASSWORD: postgres + POSTGRES_SERVER: ${POSTGRES_DB_NAME} + POSTGRES_PORT: ${POSTGRES_PORT} + POSTGRES_DB: ${POSTGRES_DB} + command: /bin/bash -c "uvicorn app.main:app --reload --host 0.0.0.0 --port ${ETL_PORT}" volumes: dbgate: - name: ${DEV_DOCKER_CONTAINER_NAME_PREFIX}_dbgate - postgres: - name: ${DEV_DOCKER_CONTAINER_NAME_PREFIX}_postgres \ No newline at end of file + name: algreg_dbgate + db: + name: algreg_db diff --git a/backend/etl/cron_job.py b/backend/etl/cron_job.py new file mode 100644 index 00000000..979b00b1 --- /dev/null +++ b/backend/etl/cron_job.py @@ -0,0 +1,25 @@ +import sys + +sys.path.append("..") +from etl.logger import get_logger +from etl.jobs import broken_link_reporter, generate_html_figures +from scripts.archive import translate_algorithms, translate_organizations, add_precomputed_values + +logger = get_logger() + + +def run_jobs(log, task): + logger.info(f"Starting {log}") + task() + logger.info(f"Finished {log}") + + +def main(): + run_jobs("generating broken link report", broken_link_reporter.main) + run_jobs("generate_html_figures", generate_html_figures.main) + run_jobs("check for untranslated algo descriptions", translate_algorithms.main) + run_jobs("Update highlighted algorithms", add_precomputed_values.main) + + +if __name__ == "__main__": + main() diff --git a/backend/etl/figures/controllers/joined_organisations.py b/backend/etl/figures/controllers/joined_organisations.py new file mode 100644 index 00000000..80ea99f3 --- /dev/null +++ b/backend/etl/figures/controllers/joined_organisations.py @@ -0,0 +1,29 @@ +from app import schemas +from app.services.keycloak.repository import KeycloakRepository +from app.middleware import kc_settings + + +def get_all_organisations_joined_date() -> list[schemas.OrganisationJoinedDate]: + """ + Returns a list of all organisations and their 'aansluitdatum'; + This is the date that the oldest account associated with them was first created. + """ + kc_repo = KeycloakRepository(kc_settings) + all_users = kc_repo.get_all() + + organisation_oldest_date = {} + for user in all_users: + groups = user.groups + created_at = user.created_at + for group in groups: + if group not in organisation_oldest_date: + organisation_oldest_date[group] = created_at + elif created_at < organisation_oldest_date[group]: + organisation_oldest_date[group] = created_at + + formatted_organisation_dates = [ + schemas.OrganisationJoinedDate(code=code, create_dt=date) + for code, date in organisation_oldest_date.items() + ] + + return formatted_organisation_dates diff --git a/backend/etl/figures/csv/Gemeenten.csv b/backend/etl/figures/csv/Gemeenten.csv new file mode 100644 index 00000000..4b5f262b --- /dev/null +++ b/backend/etl/figures/csv/Gemeenten.csv @@ -0,0 +1,343 @@ +name;identifier +Gemeente Aa en Hunze;GM1680 +Gemeente Aalsmeer;GM0358 +Gemeente Aalten;GM0197 +Gemeente Achtkarspelen;GM0059 +Gemeente Alblasserdam;GM0482 +Gemeente Albrandswaard;GM0613 +Gemeente Alkmaar;GM0361 +Gemeente Almelo;GM0141 +Gemeente Almere;GM0034 +Gemeente Alphen aan den Rijn;GM0484 +Gemeente Alphen-Chaam;GM1723 +Gemeente Altena;GM1959 +Gemeente Ameland;GM0060 +Gemeente Amersfoort;GM0307 +Gemeente Amstelveen;GM0362 +Gemeente Amsterdam;GM0363 +Gemeente Apeldoorn;GM0200 +Gemeente Arnhem;GM0202 +Gemeente Assen;GM0106 +Gemeente Asten;GM0743 +Gemeente Baarle-Nassau;GM0744 +Gemeente Baarn;GM0308 +Gemeente Barendrecht;GM0489 +Gemeente Barneveld;GM0203 +Gemeente Beek;GM0888 +Gemeente Beekdaelen;GM1954 +Gemeente Beesel;GM0889 +Gemeente Berg en Dal;GM1945 +Gemeente Bergeijk;GM1724 +Gemeente Bergen (L.);GM0893 +Gemeente Bergen (NH.);GM0373 +Gemeente Bergen op Zoom;GM0748 +Gemeente Berkelland;GM1859 +Gemeente Bernheze;GM1721 +Gemeente Best;GM0753 +Gemeente Beuningen;GM0209 +Gemeente Beverwijk;GM0375 +Gemeente Bladel;GM1728 +Gemeente Blaricum;GM0376 +Gemeente Bloemendaal;GM0377 +Gemeente Bodegraven-Reeuwijk;GM1901 +Gemeente Boekel;GM0755 +Gemeente Borger-Odoorn;GM1681 +Gemeente Borne;GM0147 +Gemeente Borsele;GM0654 +Gemeente Boxtel;GM0757 +Gemeente Breda;GM0758 +Gemeente Bronckhorst;GM1876 +Gemeente Brummen;GM0213 +Gemeente Brunssum;GM0899 +Gemeente Bunnik;GM0312 +Gemeente Bunschoten;GM0313 +Gemeente Buren;GM0214 +Gemeente Capelle aan den IJssel;GM0502 +Gemeente Castricum;GM0383 +Gemeente Coevorden;GM0109 +Gemeente Cranendonck;GM1706 +Gemeente Culemborg;GM0216 +Gemeente Dalfsen;GM0148 +Gemeente Dantumadiel;GM1891 +Gemeente De Bilt;GM0310 +Gemeente De Fryske Marren;GM1940 +Gemeente De Ronde Venen;GM0736 +Gemeente De Wolden;GM1690 +Gemeente Delft;GM0503 +Gemeente Den Haag;GM0518 +Gemeente Den Helder;GM0400 +Gemeente Deurne;GM0762 +Gemeente Deventer;GM0150 +Gemeente Diemen;GM0384 +Gemeente Dijk en Waard;GM1980 +Gemeente Dinkelland;GM1774 +Gemeente Doesburg;GM0221 +Gemeente Doetinchem;GM0222 +Gemeente Dongen;GM0766 +Gemeente Dordrecht;GM0505 +Gemeente Drechterland;GM0498 +Gemeente Drimmelen;GM1719 +Gemeente Dronten;GM0303 +Gemeente Druten;GM0225 +Gemeente Duiven;GM0226 +Gemeente Echt-Susteren;GM1711 +Gemeente Edam-Volendam;GM0385 +Gemeente Ede;GM0228 +Gemeente Eemnes;GM0317 +Gemeente Eemsdelta;GM1979 +Gemeente Eersel;GM0770 +Gemeente Eijsden-Margraten;GM1903 +Gemeente Eindhoven;GM0772 +Gemeente Elburg;GM0230 +Gemeente Emmen;GM0114 +Gemeente Enkhuizen;GM0388 +Gemeente Enschede;GM0153 +Gemeente Epe;GM0232 +Gemeente Ermelo;GM0233 +Gemeente Etten-Leur;GM0777 +Gemeente Geertruidenberg;GM0779 +Gemeente Geldrop-Mierlo;GM1771 +Gemeente Gemert-Bakel;GM1652 +Gemeente Gennep;GM0907 +Gemeente Gilze en Rijen;GM0784 +Gemeente Goeree-Overflakkee;GM1924 +Gemeente Goes;GM0664 +Gemeente Goirle;GM0785 +Gemeente Gooise Meren;GM1942 +Gemeente Gorinchem;GM0512 +Gemeente Gouda;GM0513 +Gemeente Groningen;GM0014 +Gemeente Gulpen-Wittem;GM1729 +Gemeente Haaksbergen;GM0158 +Gemeente Haarlem;GM0392 +Gemeente Haarlemmermeer;GM0394 +Gemeente Halderberge;GM1655 +Gemeente Hardenberg;GM0160 +Gemeente Harderwijk;GM0243 +Gemeente Hardinxveld-Giessendam;GM0523 +Gemeente Harlingen;GM0072 +Gemeente Hattem;GM0244 +Gemeente Heemskerk;GM0396 +Gemeente Heemstede;GM0397 +Gemeente Heerde;GM0246 +Gemeente Heerenveen;GM0074 +Gemeente Heerlen;GM0917 +Gemeente Heeze-Leende;GM1658 +Gemeente Heiloo;GM0399 +Gemeente Hellendoorn;GM0163 +Gemeente Helmond;GM0794 +Gemeente Hendrik-Ido-Ambacht;GM0531 +Gemeente Hengelo;GM0164 +Gemeente Het Hogeland;GM1966 +Gemeente Heumen;GM0252 +Gemeente Heusden;GM0797 +Gemeente Hillegom;GM0534 +Gemeente Hilvarenbeek;GM0798 +Gemeente Hilversum;GM0402 +Gemeente Hoeksche Waard;GM1963 +Gemeente Hof van Twente;GM1735 +Gemeente Hollands Kroon;GM1911 +Gemeente Hoogeveen;GM0118 +Gemeente Hoorn;GM0405 +Gemeente Horst aan de Maas;GM1507 +Gemeente Houten;GM0321 +Gemeente Huizen;GM0406 +Gemeente Hulst;GM0677 +Gemeente IJsselstein;GM0353 +Gemeente Kaag en Braassem;GM1884 +Gemeente Kampen;GM0166 +Gemeente Kapelle;GM0678 +Gemeente Katwijk;GM0537 +Gemeente Kerkrade;GM0928 +Gemeente Koggenland;GM1598 +Gemeente Krimpen aan den IJssel;GM0542 +Gemeente Krimpenerwaard;GM1931 +Gemeente Laarbeek;GM1659 +Gemeente Landgraaf;GM0882 +Gemeente Landsmeer;GM0415 +Gemeente Lansingerland;GM1621 +Gemeente Laren;GM0417 +Gemeente Leeuwarden;GM0080 +Gemeente Leiden;GM0546 +Gemeente Leiderdorp;GM0547 +Gemeente Leidschendam-Voorburg;GM1916 +Gemeente Lelystad;GM0995 +Gemeente Leudal;GM1640 +Gemeente Leusden;GM0327 +Gemeente Lingewaard;GM1705 +Gemeente Lisse;GM0553 +Gemeente Lochem;GM0262 +Gemeente Loon op Zand;GM0809 +Gemeente Lopik;GM0331 +Gemeente Losser;GM0168 +Gemeente Maasdriel;GM0263 +Gemeente Maasgouw;GM1641 +Gemeente Maashorst;GM1991 +Gemeente Maassluis;GM0556 +Gemeente Maastricht;GM0935 +Gemeente Medemblik;GM0420 +Gemeente Meerssen;GM0938 +Gemeente Meierijstad;GM1948 +Gemeente Meppel;GM0119 +Gemeente Middelburg;GM0687 +Gemeente Midden-Delfland;GM1842 +Gemeente Midden-Drenthe;GM1731 +Gemeente Midden-Groningen;GM1952 +Gemeente Moerdijk;GM1709 +Gemeente Molenlanden;GM1978 +Gemeente Montferland;GM1955 +Gemeente Montfoort;GM0335 +Gemeente Mook en Middelaar;GM0944 +Gemeente Neder-Betuwe;GM1740 +Gemeente Nederweert;GM0946 +Gemeente Nieuwegein;GM0356 +Gemeente Nieuwkoop;GM0569 +Gemeente Nijkerk;GM0267 +Gemeente Nijmegen;GM0268 +Gemeente Nissewaard;GM1930 +Gemeente Noardeast-Fryslân;GM1970 +Gemeente Noord-Beveland;GM1695 +Gemeente Noordenveld;GM1699 +Gemeente Noordoostpolder;GM0171 +Gemeente Noordwijk;GM0575 +Gemeente Nuenen c.a.;GM0820 +Gemeente Nunspeet;GM0302 +Gemeente Oegstgeest;GM0579 +Gemeente Oirschot;GM0823 +Gemeente Oisterwijk;GM0824 +Gemeente Oldambt;GM1895 +Gemeente Oldebroek;GM0269 +Gemeente Oldenzaal;GM0173 +Gemeente Olst-Wijhe;GM1773 +Gemeente Ommen;GM0175 +Gemeente Oost Gelre;GM1586 +Gemeente Oosterhout;GM0826 +Gemeente Ooststellingwerf;GM0085 +Gemeente Oostzaan;GM0431 +Gemeente Opmeer;GM0432 +Gemeente Opsterland;GM0086 +Gemeente Oss;GM0828 +Gemeente Oude IJsselstreek;GM1509 +Gemeente Oudewater;GM0589 +Gemeente Overbetuwe;GM1734 +Gemeente Papendrecht;GM0590 +Gemeente Peel en Maas;GM1894 +Gemeente Pekela;GM0765 +Gemeente Pijnacker-Nootdorp;GM1926 +Gemeente Purmerend;GM0439 +Gemeente Putten;GM0273 +Gemeente Raalte;GM0177 +Gemeente Reimerswaal;GM0703 +Gemeente Renkum;GM0274 +Gemeente Renswoude;GM0339 +Gemeente Reusel-De Mierden;GM1667 +Gemeente Rheden;GM0275 +Gemeente Rhenen;GM0340 +Gemeente Ridderkerk;GM0597 +Gemeente Rijssen-Holten;GM1742 +Gemeente Rijswijk;GM0603 +Gemeente Roerdalen;GM1669 +Gemeente Roermond;GM0957 +Gemeente Roosendaal;GM1674 +Gemeente Rotterdam;GM0599 +Gemeente Rozendaal;GM0277 +Gemeente Rucphen;GM0840 +Gemeente Schagen;GM0441 +Gemeente Scherpenzeel;GM0279 +Gemeente Schiedam;GM0606 +Gemeente Schiermonnikoog;GM0088 +Gemeente Schouwen-Duiveland;GM1676 +Gemeente 's-Hertogenbosch;GM0796 +Gemeente Simpelveld;GM0965 +Gemeente Sint-Michielsgestel;GM0845 +Gemeente Sittard-Geleen;GM1883 +Gemeente Sliedrecht;GM0610 +Gemeente Sluis;GM1714 +Gemeente Smallingerland;GM0090 +Gemeente Soest;GM0342 +Gemeente Someren;GM0847 +Gemeente Son en Breugel;GM0848 +Gemeente Stadskanaal;GM0037 +Gemeente Staphorst;GM0180 +Gemeente Stede Broec;GM0532 +Gemeente Steenbergen;GM0851 +Gemeente Steenwijkerland;GM1708 +Gemeente Stein;GM0971 +Gemeente Stichtse Vecht;GM1904 +Gemeente Súdwest-Fryslân;GM1900 +Gemeente Terneuzen;GM0715 +Gemeente Terschelling;GM0093 +Gemeente Texel;GM0448 +Gemeente Teylingen;GM1525 +Gemeente Tholen;GM0716 +Gemeente Tiel;GM0281 +Gemeente Tilburg;GM0855 +Gemeente Tubbergen;GM0183 +Gemeente Twenterand;GM1700 +Gemeente Tynaarlo;GM1730 +Gemeente Tytsjerksteradiel;GM0737 +Gemeente Uitgeest;GM0450 +Gemeente Uithoorn;GM0451 +Gemeente Urk;GM0184 +Gemeente Utrecht;GM0344 +Gemeente Utrechtse Heuvelrug;GM1581 +Gemeente Vaals;GM0981 +Gemeente Valkenburg aan de Geul;GM0994 +Gemeente Valkenswaard;GM0858 +Gemeente Veendam;GM0047 +Gemeente Veenendaal;GM0345 +Gemeente Veere;GM0717 +Gemeente Veldhoven;GM0861 +Gemeente Velsen;GM0453 +Gemeente Venlo;GM0983 +Gemeente Venray;GM0984 +Gemeente Vijfheerenlanden;GM1961 +Gemeente Vlaardingen;GM0622 +Gemeente Vlieland;GM0096 +Gemeente Vlissingen;GM0718 +Gemeente Voerendaal;GM0986 +Gemeente Voorne aan Zee;GM1992 +Gemeente Voorschoten;GM0626 +Gemeente Voorst;GM0285 +Gemeente Vught;GM0865 +Gemeente Waadhoeke;GM1949 +Gemeente Waalre;GM0866 +Gemeente Waalwijk;GM0867 +Gemeente Waddinxveen;GM0627 +Gemeente Wageningen;GM0289 +Gemeente Waterland;GM0852 +Gemeente Weert;GM0988 +Gemeente West Betuwe;GM1960 +Gemeente West Maas en Waal;GM0668 +Gemeente Westerkwartier;GM1969 +Gemeente Westerveld;GM1701 +Gemeente Westervoort;GM0293 +Gemeente Westerwolde;GM1950 +Gemeente Westland;GM1783 +Gemeente Weststellingwerf;GM0098 +Gemeente Wierden;GM0189 +Gemeente Wijchen;GM0296 +Gemeente Wijdemeren;GM1696 +Gemeente Wijk bij Duurstede;GM0352 +Gemeente Winterswijk;GM0294 +Gemeente Woensdrecht;GM0873 +Gemeente Woerden;GM0632 +Gemeente Wormerland;GM0880 +Gemeente Woudenberg;GM0351 +Gemeente Zaanstad;GM0479 +Gemeente Zaltbommel;GM0297 +Gemeente Zandvoort;GM0473 +Gemeente Zeewolde;GM0050 +Gemeente Zeist;GM0355 +Gemeente Zevenaar;GM0299 +Gemeente Zoetermeer;GM0637 +Gemeente Zoeterwoude;GM0638 +Gemeente Zuidplas;GM1892 +Gemeente Zundert;GM0879 +Gemeente Zutphen;GM0301 +Gemeente Zwartewaterland;GM1896 +Gemeente Zwijndrecht;GM0642 +Gemeente Zwolle;GM0193 +Gemeente Cuijk;GM1982 +Gemeente Wassenaar;GM0629 +Gemeente Ouder-Amstel;GM0437 diff --git a/backend/etl/figures/csv/Omgevingsdiensten.csv b/backend/etl/figures/csv/Omgevingsdiensten.csv new file mode 100644 index 00000000..776992da --- /dev/null +++ b/backend/etl/figures/csv/Omgevingsdiensten.csv @@ -0,0 +1,29 @@ +name;identifier +DCMR Milieudienst Rijnmond;OD22 +Fryske Utfieringstsjinst Miljeu en Omjouwing;OD02 +Omgevingsdienst Achterhoek;OD08 +Omgevingsdienst Brabant Noord;OD29 +Omgevingsdienst de Vallei;OD09 +Omgevingsdienst Flevoland & Gooi en Vechtstreek;OD15 +Omgevingsdienst Groningen;OD01 +Omgevingsdienst Haaglanden;OD19 +Omgevingsdienst IJmond;OD17 +Omgevingsdienst IJsselland;OD04 +Omgevingsdienst Midden- en West-Brabant;OD25 +Omgevingsdienst Midden-Holland;OD21 +Omgevingsdienst Noord-Holland Noord;OD16 +Omgevingsdienst Noordzeekanaalgebied;OD18 +Omgevingsdienst Regio Arnhem;OD10 +Omgevingsdienst Regio Nijmegen;OD11 +Omgevingsdienst Regio Utrecht;OD14 +Omgevingsdienst Rivierenland;OD12 +Omgevingsdienst Twente;OD05 +Omgevingsdienst Veluwe;OD06 +Omgevingsdienst West-Holland;OD20 +Omgevingsdienst Zuid-Holland Zuid;OD23 +Omgevingsdienst Zuidoost-Brabant;OD26 +RUD Drenthe;OD03 +RUD Limburg Noord;OD27 +RUD Utrecht;OD13 +RUD Zeeland;OD24 +RUD Zuid-Limburg;OD28 \ No newline at end of file diff --git a/backend/etl/figures/csv/Provincies.csv b/backend/etl/figures/csv/Provincies.csv new file mode 100644 index 00000000..ddef7369 --- /dev/null +++ b/backend/etl/figures/csv/Provincies.csv @@ -0,0 +1,13 @@ +name;identifier +Provincie Drenthe;PV22 +Provincie Flevoland;PV24 +Provincie Fryslân;PV21 +Provincie Gelderland;PV25 +Provincie Groningen;PV20 +Provincie Limburg;PV31 +Provincie Noord-Brabant;PV30 +Provincie Noord-Holland;PV27 +Provincie Overijssel;PV23 +Provincie Utrecht;PV26 +Provincie Zeeland;PV29 +Provincie Zuid-Holland;PV28 diff --git a/backend/etl/figures/csv/Waterschappen.csv b/backend/etl/figures/csv/Waterschappen.csv new file mode 100644 index 00000000..55954667 --- /dev/null +++ b/backend/etl/figures/csv/Waterschappen.csv @@ -0,0 +1,22 @@ +name;identifier +Hoogheemraadschap De Stichtse Rijnlanden;WS14 +Hoogheemraadschap Hollands Noorderkwartier;WS12 +Hoogheemraadschap van Delfland;WS15 +Hoogheemraadschap van Rijnland;WS13 +Hoogheemraadschap van Schieland en de Krimpenerwaard;WS39 +Waterschap Aa en Maas;WS38 +Waterschap Amstel, Gooi en Vecht;WS31 +Waterschap Brabantse Delta;WS25 +Waterschap De Dommel;WS27 +Waterschap Drents Overijsselse Delta;WS59 +Waterschap Hollandse Delta;WS40 +Waterschap Hunze en Aa's;WS33 +Waterschap Limburg;WS60 +Waterschap Noorderzijlvest;WS34 +Waterschap Rijn en IJssel;WS07 +Waterschap Rivierenland;WS09 +Waterschap Scheldestromen;WS42 +Waterschap Vallei en Veluwe;WS08 +Waterschap Vechtstromen;WS44 +Waterschap Zuiderzeeland;WS37 +Wetterskip Fryslân;WS02 diff --git a/backend/etl/figures/templates/dashboard_template.html b/backend/etl/figures/templates/dashboard_template.html new file mode 100644 index 00000000..5bf7f894 --- /dev/null +++ b/backend/etl/figures/templates/dashboard_template.html @@ -0,0 +1,105 @@ +<!DOCTYPE html> +<html lang="nl"> + <head> + <title>Dashboard + + +

Dashboard

+
+

Aantal aangesloten organisaties

+
+ Chart showing joined organisations +
+
+ Grafiek die aangesloten organisaties toont +
+
+ Grafyk dy't oansletten organisaasjes toant +
+
+
+

Aantal gepubliceerde algoritmebeschrijvingen

+
+ Chart showing the number of published algorithm descriptions +
+
+ Grafiek die het aantal gepubliceerde algoritmebeschrijvingen toont +
+
+ Grafyk dy't it oantal publisearre algorithme-útlis toant +
+
+ +
+

Publicatiecategorieën

+
+ Chart showing different publication categories +
+
+ Grafiek die verschillende publicatiecategorieën toont +
+
+ Grafyk dy't ferskate publikaasjekategoryen toant +
+
+ + diff --git a/backend/etl/figures/templates/figure_mapping.py b/backend/etl/figures/templates/figure_mapping.py new file mode 100644 index 00000000..6e7531dd --- /dev/null +++ b/backend/etl/figures/templates/figure_mapping.py @@ -0,0 +1,41 @@ +from app.schemas.misc import Language + +from etl.figures.utils.utils import ( + pretty_print_today, +) + +from etl.figures.visualisations.linechart import ( + generate_linechart_published_algorithmdescriptions_permonth, + generate_linechart_joined_organisations_permonth, + generate_linechart_broken_links_perday, +) + +from etl.figures.visualisations.barchart import generate_barchart_publication_categories + + +def create_figure_mapping(): + + figure_mapping = { + "chart_joined_organisations_en": generate_linechart_joined_organisations_permonth(Language.ENG, "Period in months", "Joined organisations"), + "chart_joined_organisations_nl": generate_linechart_joined_organisations_permonth(Language.NLD, "Periode in maanden", "Aangesloten organisaties"), + "chart_joined_organisations_fy": generate_linechart_joined_organisations_permonth(Language.FRY, "Perioade yn moannen", "Oansletten organisaasjes"), + "chart_algorithmdescriptions_en": generate_linechart_published_algorithmdescriptions_permonth(Language.ENG, "Period in months", "Published algorithmdescriptions"), + "chart_algorithmdescriptions_nl": generate_linechart_published_algorithmdescriptions_permonth(Language.NLD, "Periode in maanden", "Gepubliceerde algoritmebeschrijvingen"), + "chart_algorithmdescriptions_fy": generate_linechart_published_algorithmdescriptions_permonth(Language.FRY, "Perioade yn moannen", "Publisearre algoritmebeskriuwings"), + "chart_broken_links_en": generate_linechart_broken_links_perday(Language.ENG, "Period in days", "Broken links"), + "chart_broken_links_nl": generate_linechart_broken_links_perday(Language.NLD, "Periode in dagen", "Gebroken links", ), + "chart_broken_links_fy": generate_linechart_broken_links_perday(Language.FRY, "Perioade yn dagen", "Brutsen keppelings"), + "chart_publication_categories_en": generate_barchart_publication_categories(Language.ENG, "Publicationcategories", "Matches"), + "chart_publication_categories_nl": generate_barchart_publication_categories(Language.NLD, "Publicatiecategorieën", "Aantal"), + "chart_publication_categories_fy": generate_barchart_publication_categories(Language.FRY, "Publikaasjekategoryen", "Oantal") + + } + + data = { + "date_stamp": pretty_print_today() + } + return figure_mapping, data + + +if __name__ == "__main__": + figure_mapping, data = create_figure_mapping() diff --git a/backend/etl/figures/utils/data_calls.py b/backend/etl/figures/utils/data_calls.py new file mode 100644 index 00000000..c8384819 --- /dev/null +++ b/backend/etl/figures/utils/data_calls.py @@ -0,0 +1,142 @@ +import pandas as pd +from datetime import datetime, timezone, timedelta +from dateutil.relativedelta import relativedelta + +from app.database.database import SessionLocal +from app.repositories.algoritme_version import AlgoritmeVersionRepository +from app.schemas.algoritme_version import AlgoritmeVersionEarliestPublish +from app.schemas.algoritme_version import PublicationCategoryCount +from app.schemas.broken_links import BrokenLinkCount +from app.repositories.broken_links import BrokenLinksRepository +from app.schemas.organization import OrganisationJoinedDate +from app.schemas.misc import Language +from etl.figures.controllers.joined_organisations import ( + get_all_organisations_joined_date, +) + + +def create_dataframe( + data: list[AlgoritmeVersionEarliestPublish] | list[OrganisationJoinedDate], + columnName: str, +) -> tuple[pd.DataFrame, int]: + daily_dic = {} + + # Build occurence per day dictionary + for row in data: + dt = row.create_dt + _id = f"{dt.day}-{dt.month}-{dt.year}" + if _id not in daily_dic: + daily_dic[_id] = {columnName: [], "aantal": 0} + daily_dic[_id]["aantal"] += 1 + + # dict from df + df = pd.DataFrame.from_dict(daily_dic, orient="index", columns=["aantal"]) + df.index = pd.to_datetime(df.index, format="%d-%m-%Y", dayfirst=True).to_period(freq="D") + df = df.sort_index() + + # Start_date of the dataset must be at least twelve months ago. + twelve_months_ago_dt = datetime.now(timezone.utc) - relativedelta(months=11) + twelve_months_ago_str = twelve_months_ago_dt.strftime("%d-%m-%Y") + twelve_months_ago = pd.to_datetime(twelve_months_ago_str, format="%d-%m-%Y", dayfirst=True).to_period(freq="D") + earliest_date = df.index.min() + if earliest_date < twelve_months_ago: + start_date = earliest_date + else: + start_date = twelve_months_ago + + current_date_str = datetime.now().strftime("%d-%m-%Y") + current_date = pd.to_datetime(current_date_str, format="%d-%m-%Y", dayfirst=True).to_period(freq="D") + + df = df.reindex( + pd.period_range(start_date, current_date, freq="D") + ) + + df["aantal"] = df["aantal"].infer_objects().fillna(0) + df["aantal"] = df["aantal"].cumsum() + + if isinstance(df.index, pd.PeriodIndex): + df.index = df.index.strftime('%d-%m-%Y') + + df2 = df.set_index(df.index.values.astype(str)) + + max_count = df2["aantal"].max().astype(int) + + twelve_months_ago_str = twelve_months_ago_dt.strftime("01-%m-%Y") + twelve_months_ago = pd.to_datetime(twelve_months_ago_str, format="%d-%m-%Y", dayfirst=True) + + df2.index = pd.to_datetime(df2.index, format="%d-%m-%Y", dayfirst=True) + + # Filter the DataFrame for the last twelve months + df_12_months = df2[df2.index >= twelve_months_ago] + return (df_12_months, max_count) + + +def create_dataframe_broken_links(data: list[BrokenLinkCount]) -> tuple[pd.DataFrame, int]: + daily_dic = {} + # Build occurence per day dictionary + for row in data: + dt = row.create_dt + _id = f"{dt.day}-{dt.month}-{dt.year}" + daily_dic[_id] = {"aantal": row.count} + + # dict from df + df = pd.DataFrame.from_dict(daily_dic, orient="index", columns=["aantal"]) + df.index = pd.to_datetime(df.index, format="%d-%m-%Y").to_period(freq="D") + df = df.sort_index() + + # Start_date of the dataset must be at least 14 days ago. + fourteen_days_ago_dt = datetime.now(timezone.utc) - relativedelta(days=14) + fourteen_days_ago = pd.Period(fourteen_days_ago_dt.strftime("%Y-%m-%d"), freq="D") + earliest_date = df.index.min() + if earliest_date < fourteen_days_ago: + start_date = earliest_date + else: + start_date = fourteen_days_ago + current_date = datetime.now().strftime("%Y-%m-%d") + df = df.reindex( + pd.period_range(start_date, pd.Period(current_date, freq="D"), freq="D") + ) + + df["aantal"] = df["aantal"].infer_objects().fillna(0) + + + if isinstance(df.index, pd.PeriodIndex): + df.index = df.index.strftime('%d-%m') + + df2 = df.set_index(df.index.values.astype(str)) + + max_count = df["aantal"].max().astype(int) + return (df2, max_count) + + +def create_dataframe_publicationcategories(data: list[PublicationCategoryCount], pg_title: str, count_title: str) -> tuple[pd.DataFrame, int]: + dic = [{pg_title: obj.category, count_title: obj.count} for obj in data] + df = pd.DataFrame(dic) + + return df, df[pg_title].max() + + +def published_algorithmdescriptions_permonth() -> tuple[pd.DataFrame, int]: + db = SessionLocal() + algo_repo = AlgoritmeVersionRepository(db) + algorithms = algo_repo.get_all_published_first_version() + return create_dataframe(algorithms, "algoritmes") + + +def organisations_permonth() -> tuple[pd.DataFrame, int]: + orgs = get_all_organisations_joined_date() + return create_dataframe(orgs, "organisaties") + + +def broken_links_perday(lang: Language) -> tuple[pd.DataFrame, int]: + db = SessionLocal() + brokenlink_repo = BrokenLinksRepository(db) + broken_links = brokenlink_repo.get_newest_batch_two_weeks_by_lang(lang) + return create_dataframe_broken_links(broken_links) + + +def publication_categories(lang: Language, x_axis_title: str, y_axis_title: str) -> tuple[pd.DataFrame, int]: + db = SessionLocal() + algo_repo = AlgoritmeVersionRepository(db) + publication_categories = algo_repo.get_all_published_by_pubcat(lang) + return create_dataframe_publicationcategories(publication_categories, x_axis_title, y_axis_title) diff --git a/backend/etl/figures/utils/utils.py b/backend/etl/figures/utils/utils.py new file mode 100644 index 00000000..c853c2e0 --- /dev/null +++ b/backend/etl/figures/utils/utils.py @@ -0,0 +1,25 @@ +from datetime import datetime +from bs4 import BeautifulSoup +import base64 + + +def pretty_print_today(): + today = datetime.today() + day_of_week = (today.weekday() + 1) % 7 + 1 + return f"{day_of_week} {today.day} {today.month} {today.year}" + + +def add_scope_to_table(table): + try: + soup = BeautifulSoup(str(table), "lxml") + for th in soup.find_all("th"): + th["scope"] = "col" + return str(soup) + except: + return table + + +def plotly_fig_to_png(fig): + img_bytes = fig.to_image(format="png") + base64_bytes = base64.b64encode(img_bytes) + return base64_bytes.decode() diff --git a/backend/etl/figures/visualisations/barchart.py b/backend/etl/figures/visualisations/barchart.py new file mode 100644 index 00000000..165a7610 --- /dev/null +++ b/backend/etl/figures/visualisations/barchart.py @@ -0,0 +1,42 @@ +import pandas as pd +import plotly.graph_objects as go +from app.schemas.misc import Language +from etl.logger import get_logger +from etl.figures.utils.data_calls import ( + publication_categories +) +from etl.figures.utils.utils import plotly_fig_to_png + + +log = get_logger() + + +def generate_barchart(df: pd.DataFrame, max_graph: int, x_axis_title: str, y_axis_title: str) -> str: + + fig = go.Figure([go.Bar( + x=df[x_axis_title], + y=df[y_axis_title], + width=0.3, + marker_color='rgb(21, 96, 130)' + )]) + fig.update_layout( + separators=',.', + yaxis_tickformat='.0f', + autosize=True, + plot_bgcolor="rgb(229, 241, 249)", + paper_bgcolor="rgb(229, 241, 249)", + margin=dict(l=20, r=20, t=20, b=20), + width=1300, + height=350, + yaxis=dict(range=[0, max_graph]) + ) + fig.update_xaxes(showline=True, linewidth=2, linecolor='rgba(21, 66, 115, 0.5)', title=x_axis_title) + fig.update_yaxes(showline=False, gridcolor='rgba(21, 66, 115, 0.5)', title=y_axis_title) + + return plotly_fig_to_png(fig) + + +def generate_barchart_publication_categories(lang: Language, x_axis_title: str, y_axis_title: str) -> str: + log.info(f"Generating barchart for {lang} publication categories") + df, max_graph = publication_categories(lang, x_axis_title, y_axis_title) + return generate_barchart(df, max_graph, x_axis_title, y_axis_title) diff --git a/backend/etl/figures/visualisations/choropleths.py b/backend/etl/figures/visualisations/choropleths.py new file mode 100644 index 00000000..03610177 --- /dev/null +++ b/backend/etl/figures/visualisations/choropleths.py @@ -0,0 +1,7 @@ +import base64 + +def plotly_fig_to_png(fig): + img_bytes = fig.to_image(format="png") + base64_bytes = base64.b64encode(img_bytes) + return base64_bytes.decode() + diff --git a/backend/etl/figures/visualisations/linechart.py b/backend/etl/figures/visualisations/linechart.py new file mode 100644 index 00000000..a33382fb --- /dev/null +++ b/backend/etl/figures/visualisations/linechart.py @@ -0,0 +1,77 @@ +import pandas as pd +import plotly.express as px +from app.schemas.misc import Language +from etl.logger import get_logger +from etl.figures.utils.data_calls import ( + published_algorithmdescriptions_permonth, + organisations_permonth, + broken_links_perday +) +from etl.figures.utils.utils import plotly_fig_to_png + + +log = get_logger() + + +# Generates a linechart gif image +def generate_linechart(df: pd.DataFrame, max_graph: int, x_axis_title: str, y_axis_title: str, broken_link_chart=False) -> str: + + if(broken_link_chart): + x_tick_format="%d-%m" + fig_height = 350 + x_type = 'category' + else: + df.index = pd.to_datetime(df.index, format="%d-%m-%Y") + x_tick_format="%m-%Y" + fig_height = 600 + x_type = 'date' + + # make the fig + fig = px.line(df, x=df.index, y=df["aantal"], color_discrete_sequence=['rgb(21, 96, 130)']) + fig.update_layout( + xaxis_title=x_axis_title, + yaxis_range=[0, max_graph + 1], + yaxis_title=y_axis_title, + plot_bgcolor="rgb(229, 241, 249)", + paper_bgcolor="rgb(229, 241, 249)", + margin=dict(l=20, r=20, t=20, b=20), + width=1300, + height=fig_height, + ) + + fig.update_xaxes( + tickformat=x_tick_format, + type=x_type, + showline=True, + linecolor="rgba(21, 66, 115, 0.5)", + showgrid=False, + dtick="M1", + title_font=dict(family="Arial Black, sans-serif"), + tickfont=dict(color="grey"), + ) + fig.update_yaxes( + showline=False, + gridcolor="rgba(21, 66, 115, 0.5)", + title_font=dict(family="Arial Black, sans-serif"), + tickfont=dict(color="grey"), + ) + + return plotly_fig_to_png(fig) + + +def generate_linechart_joined_organisations_permonth(lang: Language, x_axis_title: str, y_axis_title: str) -> str: + log.info(f"Generating animated chart for {lang} joined organisations per month") + df, max_graph = organisations_permonth() + return generate_linechart(df, max_graph, x_axis_title, y_axis_title) + + +def generate_linechart_published_algorithmdescriptions_permonth(lang: Language, x_axis_title: str, y_axis_title: str) -> str: + log.info(f"Generating animated chart for {lang} algorithm descriptions per month") + df, max_graph = published_algorithmdescriptions_permonth() + return generate_linechart(df, max_graph, x_axis_title, y_axis_title) + + +def generate_linechart_broken_links_perday(lang: Language, x_axis_title: str, y_axis_title: str) -> str: + log.info(f"Generating animated chart for {lang} broken links per day") + df, max_graph= broken_links_perday(lang) + return generate_linechart(df, max_graph, x_axis_title, y_axis_title, broken_link_chart=True) diff --git a/backend/etl/jobs/broken_link_reporter.py b/backend/etl/jobs/broken_link_reporter.py new file mode 100644 index 00000000..f203081c --- /dev/null +++ b/backend/etl/jobs/broken_link_reporter.py @@ -0,0 +1,85 @@ +import os +import requests +import time +from sqlalchemy import func +from app.database.database import SessionLocal +from sqlalchemy.orm import Session +from app.repositories.algoritme_version import AlgoritmeVersionRepository +from app.schemas.misc import Language +from app.models.dashboard_models.broken_links import BrokenLinks +from etl.logger import get_logger + +logger = get_logger() + +C3PO_URL = os.getenv("C3PO_URL") +if C3PO_URL: + BASE_URL = C3PO_URL + "/processing-request/" +else: + raise EnvironmentError("C3PO_URL environment variable is not set.") + + +def get_batch_number(db: Session) -> int: + return db.query(func.coalesce(func.max(BrokenLinks.batch) + 1, 1)).scalar() + + +def check_broken_link(db: Session, lang: Language, current_batch: int): + algoritme_version_repo = AlgoritmeVersionRepository(db) + latest_algos = algoritme_version_repo.get_published_by_lang(lang) + for algo in latest_algos: + algo_dict = algo.dict() + payload_values_str = " , ".join(map(str, algo_dict.values())) + + message = { + "org_code": "ictu-devops", + "project_code": "algreg", + "payload": payload_values_str, + "rule_code": "BROKEN_LINKS", + } + for _ in range(5): + try: + result = requests.post(url="%s" % (BASE_URL), json=message) + break + except requests.exceptions.ChunkedEncodingError: + time.sleep(60) + except requests.exceptions.ConnectionError: + logger.error("Connection with Expert Service not found") + return + + if result.status_code != 200: + logger.error(f"Request failed with status code {result.status_code}") + continue + + response_json = result.json() + + if not response_json: + logger.error("No data received") + continue + + if response_json.get("passed"): + continue + + broken_links = response_json.get("result") + if not broken_links: + broken_links = "No broken links found" + broken_links_results = BrokenLinks( + lars=algo.lars, + name=algo.name, + organisation=algo.organization, + batch=current_batch, + broken_links=broken_links, + language=lang, + ) + db.add(broken_links_results) + db.commit() + + +def main(): + db = SessionLocal() + batch = get_batch_number(db) + for lang in Language: + check_broken_link(db, lang, batch) + db.close() + + +if __name__ == "__main__": + main() diff --git a/backend/etl/jobs/generate_html_figures.py b/backend/etl/jobs/generate_html_figures.py new file mode 100644 index 00000000..9726b8a4 --- /dev/null +++ b/backend/etl/jobs/generate_html_figures.py @@ -0,0 +1,24 @@ +from jinja2 import FileSystemLoader, Environment + +from app.repositories.html_figures import HtmlFiguresRepository +from etl.figures.templates.figure_mapping import create_figure_mapping +from app.database.database import SessionLocal + + +def main(): + figure_mapping, data = create_figure_mapping() + file_loader = FileSystemLoader("etl/figures/templates") + env = Environment(loader=file_loader) + template = env.get_template("dashboard_template.html") + html = template.render(figure_mapping) + + db = SessionLocal() + html_repo = HtmlFiguresRepository(db) + html_repo.delete_most_recent() + html_repo.add(html, data) + db.commit() + db.close() + + +if __name__ == "__main__": + main() diff --git a/backend/etl/logger.py b/backend/etl/logger.py new file mode 100644 index 00000000..b867d1ea --- /dev/null +++ b/backend/etl/logger.py @@ -0,0 +1,14 @@ +import logging + + +def get_logger(): + # initialize new independent logger + logger = logging.getLogger(__name__) + logger.setLevel(logging.INFO) + handler = logging.StreamHandler() + formatter = logging.Formatter( + fmt="%(levelname)s | %(asctime)s | %(name)s | %(message)s", + ) + handler.setFormatter(formatter) + logger.addHandler(handler) + return logger diff --git a/backend/misc/parse-css.ipynb b/backend/misc/parse-css.ipynb index 76da38cc..9e160fcc 100644 --- a/backend/misc/parse-css.ipynb +++ b/backend/misc/parse-css.ipynb @@ -4,25 +4,28 @@ "cell_type": "code", "execution_count": 34, "metadata": {}, - "outputs": [], "source": [ "import urllib.request\n", "import ssl\n", "\n", "lines = []\n", - "with open('../../frontend/assets/styles/_koop_index.scss') as f:\n", + "with open(\"../../frontend/assets/styles/_koop_index.scss\") as f:\n", " lines = f.readlines()\n", "\n", - "with open('../../frontend/assets/styles/_koop_main.scss') as f:\n", - " lines = lines + f.readlines() \n", + "with open(\"../../frontend/assets/styles/_koop_main.scss\") as f:\n", + " lines = lines + f.readlines()\n", + "\n", "\n", "def get_path_from_string(x):\n", - " start_char = x.find('/icon-') + 1\n", - " end_char = x.find('.svg') + 4\n", + " start_char = x.find(\"/icon-\") + 1\n", + " end_char = x.find(\".svg\") + 4\n", " return x[start_char:end_char]\n", "\n", - "list = [l.split(\" \") for l in lines if 'icon-' in l]\n", - "flat_list = [item for sublist in list for item in sublist if '/theme-iconsicon-' in item]\n", + "\n", + "list = [l.split(\" \") for l in lines if \"icon-\" in l]\n", + "flat_list = [\n", + " item for sublist in list for item in sublist if \"/theme-iconsicon-\" in item\n", + "]\n", "parsed_icons = [get_path_from_string(x) for x in flat_list]\n", "\n", "parsed_icons\n", @@ -34,7 +37,8 @@ "for icon in parsed_icons:\n", " url = f\"{base_url}/{icon}\"\n", " urllib.request.urlretrieve(url, f\"../../frontend/assets/images/icons/{icon}\")" - ] + ], + "outputs": [] } ], "metadata": { diff --git a/backend/poetry.lock b/backend/poetry.lock index c2273ca4..46d65060 100644 --- a/backend/poetry.lock +++ b/backend/poetry.lock @@ -1,72 +1,252 @@ +# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand. + +[[package]] +name = "aiohttp" +version = "3.9.5" +description = "Async http client/server framework (asyncio)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "aiohttp-3.9.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:fcde4c397f673fdec23e6b05ebf8d4751314fa7c24f93334bf1f1364c1c69ac7"}, + {file = "aiohttp-3.9.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5d6b3f1fabe465e819aed2c421a6743d8debbde79b6a8600739300630a01bf2c"}, + {file = "aiohttp-3.9.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6ae79c1bc12c34082d92bf9422764f799aee4746fd7a392db46b7fd357d4a17a"}, + {file = "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d3ebb9e1316ec74277d19c5f482f98cc65a73ccd5430540d6d11682cd857430"}, + {file = "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84dabd95154f43a2ea80deffec9cb44d2e301e38a0c9d331cc4aa0166fe28ae3"}, + {file = "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c8a02fbeca6f63cb1f0475c799679057fc9268b77075ab7cf3f1c600e81dd46b"}, + {file = "aiohttp-3.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c26959ca7b75ff768e2776d8055bf9582a6267e24556bb7f7bd29e677932be72"}, + {file = "aiohttp-3.9.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:714d4e5231fed4ba2762ed489b4aec07b2b9953cf4ee31e9871caac895a839c0"}, + {file = "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e7a6a8354f1b62e15d48e04350f13e726fa08b62c3d7b8401c0a1314f02e3558"}, + {file = "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:c413016880e03e69d166efb5a1a95d40f83d5a3a648d16486592c49ffb76d0db"}, + {file = "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ff84aeb864e0fac81f676be9f4685f0527b660f1efdc40dcede3c251ef1e867f"}, + {file = "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ad7f2919d7dac062f24d6f5fe95d401597fbb015a25771f85e692d043c9d7832"}, + {file = "aiohttp-3.9.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:702e2c7c187c1a498a4e2b03155d52658fdd6fda882d3d7fbb891a5cf108bb10"}, + {file = "aiohttp-3.9.5-cp310-cp310-win32.whl", hash = "sha256:67c3119f5ddc7261d47163ed86d760ddf0e625cd6246b4ed852e82159617b5fb"}, + {file = "aiohttp-3.9.5-cp310-cp310-win_amd64.whl", hash = "sha256:471f0ef53ccedec9995287f02caf0c068732f026455f07db3f01a46e49d76bbb"}, + {file = "aiohttp-3.9.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e0ae53e33ee7476dd3d1132f932eeb39bf6125083820049d06edcdca4381f342"}, + {file = "aiohttp-3.9.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c088c4d70d21f8ca5c0b8b5403fe84a7bc8e024161febdd4ef04575ef35d474d"}, + {file = "aiohttp-3.9.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:639d0042b7670222f33b0028de6b4e2fad6451462ce7df2af8aee37dcac55424"}, + {file = "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f26383adb94da5e7fb388d441bf09c61e5e35f455a3217bfd790c6b6bc64b2ee"}, + {file = "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:66331d00fb28dc90aa606d9a54304af76b335ae204d1836f65797d6fe27f1ca2"}, + {file = "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4ff550491f5492ab5ed3533e76b8567f4b37bd2995e780a1f46bca2024223233"}, + {file = "aiohttp-3.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f22eb3a6c1080d862befa0a89c380b4dafce29dc6cd56083f630073d102eb595"}, + {file = "aiohttp-3.9.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a81b1143d42b66ffc40a441379387076243ef7b51019204fd3ec36b9f69e77d6"}, + {file = "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f64fd07515dad67f24b6ea4a66ae2876c01031de91c93075b8093f07c0a2d93d"}, + {file = "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:93e22add827447d2e26d67c9ac0161756007f152fdc5210277d00a85f6c92323"}, + {file = "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:55b39c8684a46e56ef8c8d24faf02de4a2b2ac60d26cee93bc595651ff545de9"}, + {file = "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4715a9b778f4293b9f8ae7a0a7cef9829f02ff8d6277a39d7f40565c737d3771"}, + {file = "aiohttp-3.9.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:afc52b8d969eff14e069a710057d15ab9ac17cd4b6753042c407dcea0e40bf75"}, + {file = "aiohttp-3.9.5-cp311-cp311-win32.whl", hash = "sha256:b3df71da99c98534be076196791adca8819761f0bf6e08e07fd7da25127150d6"}, + {file = "aiohttp-3.9.5-cp311-cp311-win_amd64.whl", hash = "sha256:88e311d98cc0bf45b62fc46c66753a83445f5ab20038bcc1b8a1cc05666f428a"}, + {file = "aiohttp-3.9.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:c7a4b7a6cf5b6eb11e109a9755fd4fda7d57395f8c575e166d363b9fc3ec4678"}, + {file = "aiohttp-3.9.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:0a158704edf0abcac8ac371fbb54044f3270bdbc93e254a82b6c82be1ef08f3c"}, + {file = "aiohttp-3.9.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d153f652a687a8e95ad367a86a61e8d53d528b0530ef382ec5aaf533140ed00f"}, + {file = "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82a6a97d9771cb48ae16979c3a3a9a18b600a8505b1115cfe354dfb2054468b4"}, + {file = "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:60cdbd56f4cad9f69c35eaac0fbbdf1f77b0ff9456cebd4902f3dd1cf096464c"}, + {file = "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8676e8fd73141ded15ea586de0b7cda1542960a7b9ad89b2b06428e97125d4fa"}, + {file = "aiohttp-3.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da00da442a0e31f1c69d26d224e1efd3a1ca5bcbf210978a2ca7426dfcae9f58"}, + {file = "aiohttp-3.9.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:18f634d540dd099c262e9f887c8bbacc959847cfe5da7a0e2e1cf3f14dbf2daf"}, + {file = "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:320e8618eda64e19d11bdb3bd04ccc0a816c17eaecb7e4945d01deee2a22f95f"}, + {file = "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:2faa61a904b83142747fc6a6d7ad8fccff898c849123030f8e75d5d967fd4a81"}, + {file = "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:8c64a6dc3fe5db7b1b4d2b5cb84c4f677768bdc340611eca673afb7cf416ef5a"}, + {file = "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:393c7aba2b55559ef7ab791c94b44f7482a07bf7640d17b341b79081f5e5cd1a"}, + {file = "aiohttp-3.9.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:c671dc117c2c21a1ca10c116cfcd6e3e44da7fcde37bf83b2be485ab377b25da"}, + {file = "aiohttp-3.9.5-cp312-cp312-win32.whl", hash = "sha256:5a7ee16aab26e76add4afc45e8f8206c95d1d75540f1039b84a03c3b3800dd59"}, + {file = "aiohttp-3.9.5-cp312-cp312-win_amd64.whl", hash = "sha256:5ca51eadbd67045396bc92a4345d1790b7301c14d1848feaac1d6a6c9289e888"}, + {file = "aiohttp-3.9.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:694d828b5c41255e54bc2dddb51a9f5150b4eefa9886e38b52605a05d96566e8"}, + {file = "aiohttp-3.9.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0605cc2c0088fcaae79f01c913a38611ad09ba68ff482402d3410bf59039bfb8"}, + {file = "aiohttp-3.9.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4558e5012ee03d2638c681e156461d37b7a113fe13970d438d95d10173d25f78"}, + {file = "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dbc053ac75ccc63dc3a3cc547b98c7258ec35a215a92bd9f983e0aac95d3d5b"}, + {file = "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4109adee842b90671f1b689901b948f347325045c15f46b39797ae1bf17019de"}, + {file = "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6ea1a5b409a85477fd8e5ee6ad8f0e40bf2844c270955e09360418cfd09abac"}, + {file = "aiohttp-3.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3c2890ca8c59ee683fd09adf32321a40fe1cf164e3387799efb2acebf090c11"}, + {file = "aiohttp-3.9.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3916c8692dbd9d55c523374a3b8213e628424d19116ac4308e434dbf6d95bbdd"}, + {file = "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:8d1964eb7617907c792ca00b341b5ec3e01ae8c280825deadbbd678447b127e1"}, + {file = "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:d5ab8e1f6bee051a4bf6195e38a5c13e5e161cb7bad83d8854524798bd9fcd6e"}, + {file = "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:52c27110f3862a1afbcb2af4281fc9fdc40327fa286c4625dfee247c3ba90156"}, + {file = "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:7f64cbd44443e80094309875d4f9c71d0401e966d191c3d469cde4642bc2e031"}, + {file = "aiohttp-3.9.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8b4f72fbb66279624bfe83fd5eb6aea0022dad8eec62b71e7bf63ee1caadeafe"}, + {file = "aiohttp-3.9.5-cp38-cp38-win32.whl", hash = "sha256:6380c039ec52866c06d69b5c7aad5478b24ed11696f0e72f6b807cfb261453da"}, + {file = "aiohttp-3.9.5-cp38-cp38-win_amd64.whl", hash = "sha256:da22dab31d7180f8c3ac7c7635f3bcd53808f374f6aa333fe0b0b9e14b01f91a"}, + {file = "aiohttp-3.9.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:1732102949ff6087589408d76cd6dea656b93c896b011ecafff418c9661dc4ed"}, + {file = "aiohttp-3.9.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c6021d296318cb6f9414b48e6a439a7f5d1f665464da507e8ff640848ee2a58a"}, + {file = "aiohttp-3.9.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:239f975589a944eeb1bad26b8b140a59a3a320067fb3cd10b75c3092405a1372"}, + {file = "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3b7b30258348082826d274504fbc7c849959f1989d86c29bc355107accec6cfb"}, + {file = "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cd2adf5c87ff6d8b277814a28a535b59e20bfea40a101db6b3bdca7e9926bc24"}, + {file = "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e9a3d838441bebcf5cf442700e3963f58b5c33f015341f9ea86dcd7d503c07e2"}, + {file = "aiohttp-3.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e3a1ae66e3d0c17cf65c08968a5ee3180c5a95920ec2731f53343fac9bad106"}, + {file = "aiohttp-3.9.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9c69e77370cce2d6df5d12b4e12bdcca60c47ba13d1cbbc8645dd005a20b738b"}, + {file = "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0cbf56238f4bbf49dab8c2dc2e6b1b68502b1e88d335bea59b3f5b9f4c001475"}, + {file = "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:d1469f228cd9ffddd396d9948b8c9cd8022b6d1bf1e40c6f25b0fb90b4f893ed"}, + {file = "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:45731330e754f5811c314901cebdf19dd776a44b31927fa4b4dbecab9e457b0c"}, + {file = "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:3fcb4046d2904378e3aeea1df51f697b0467f2aac55d232c87ba162709478c46"}, + {file = "aiohttp-3.9.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8cf142aa6c1a751fcb364158fd710b8a9be874b81889c2bd13aa8893197455e2"}, + {file = "aiohttp-3.9.5-cp39-cp39-win32.whl", hash = "sha256:7b179eea70833c8dee51ec42f3b4097bd6370892fa93f510f76762105568cf09"}, + {file = "aiohttp-3.9.5-cp39-cp39-win_amd64.whl", hash = "sha256:38d80498e2e169bc61418ff36170e0aad0cd268da8b38a17c4cf29d254a8b3f1"}, + {file = "aiohttp-3.9.5.tar.gz", hash = "sha256:edea7d15772ceeb29db4aff55e482d4bcfb6ae160ce144f2682de02f6d693551"}, +] + +[package.dependencies] +aiosignal = ">=1.1.2" +attrs = ">=17.3.0" +frozenlist = ">=1.1.1" +multidict = ">=4.5,<7.0" +yarl = ">=1.0,<2.0" + +[package.extras] +speedups = ["Brotli", "aiodns", "brotlicffi"] + +[[package]] +name = "aiosignal" +version = "1.3.1" +description = "aiosignal: a list of registered asynchronous callbacks" +optional = false +python-versions = ">=3.7" +files = [ + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, +] + +[package.dependencies] +frozenlist = ">=1.1.0" + [[package]] name = "alembic" -version = "1.8.1" +version = "1.11.3" description = "A database migration tool for SQLAlchemy." -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "alembic-1.11.3-py3-none-any.whl", hash = "sha256:d6c96c2482740592777c400550a523bc7a9aada4e210cae2e733354ddae6f6f8"}, + {file = "alembic-1.11.3.tar.gz", hash = "sha256:3db4ce81a9072e1b5aa44c2d202add24553182672a12daf21608d6f62a8f9cf9"}, +] [package.dependencies] Mako = "*" SQLAlchemy = ">=1.3.0" +typing-extensions = ">=4" [package.extras] tz = ["python-dateutil"] [[package]] name = "anyio" -version = "3.6.2" +version = "3.7.1" description = "High level compatibility layer for multiple asynchronous event loop implementations" -category = "main" optional = false -python-versions = ">=3.6.2" +python-versions = ">=3.7" +files = [ + {file = "anyio-3.7.1-py3-none-any.whl", hash = "sha256:91dee416e570e92c64041bd18b900d1d6fa78dff7048769ce5ac5ddad004fbb5"}, + {file = "anyio-3.7.1.tar.gz", hash = "sha256:44a3c9aba0f5defa43261a8b3efb97891f2bd7d804e0e1f56419befa1adfc780"}, +] [package.dependencies] idna = ">=2.8" sniffio = ">=1.1" [package.extras] -doc = ["packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] -test = ["contextlib2", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (<0.15)", "uvloop (>=0.15)"] -trio = ["trio (>=0.16,<0.22)"] +doc = ["Sphinx", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme (>=1.2.2)", "sphinxcontrib-jquery"] +test = ["anyio[trio]", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] +trio = ["trio (<0.22)"] [[package]] name = "appnope" version = "0.1.3" description = "Disable App Nap on macOS >= 10.9" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "appnope-0.1.3-py2.py3-none-any.whl", hash = "sha256:265a455292d0bd8a72453494fa24df5a11eb18373a60c7c0430889f22548605e"}, + {file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"}, +] [[package]] name = "asttokens" -version = "2.1.0" +version = "2.2.1" description = "Annotate AST trees with source code positions" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "asttokens-2.2.1-py2.py3-none-any.whl", hash = "sha256:6b0ac9e93fb0335014d382b8fa9b3afa7df546984258005da0b9e7095b3deb1c"}, + {file = "asttokens-2.2.1.tar.gz", hash = "sha256:4622110b2a6f30b77e1473affaa97e711bc2f07d3f10848420ff1898edbe94f3"}, +] [package.dependencies] six = "*" [package.extras] -test = ["astroid (<=2.5.3)", "pytest"] +test = ["astroid", "pytest"] + +[[package]] +name = "attrs" +version = "23.2.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, + {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] +tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] [[package]] name = "backcall" version = "0.2.0" description = "Specifications for callback functions passed in to an API" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"}, + {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, +] + +[[package]] +name = "beautifulsoup4" +version = "4.12.3" +description = "Screen-scraping library" +optional = false +python-versions = ">=3.6.0" +files = [ + {file = "beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"}, + {file = "beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051"}, +] + +[package.dependencies] +soupsieve = ">1.2" + +[package.extras] +cchardet = ["cchardet"] +chardet = ["chardet"] +charset-normalizer = ["charset-normalizer"] +html5lib = ["html5lib"] +lxml = ["lxml"] [[package]] name = "black" -version = "22.10.0" +version = "22.12.0" description = "The uncompromising code formatter." -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "black-22.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9eedd20838bd5d75b80c9f5487dbcb06836a43833a37846cf1d8c1cc01cef59d"}, + {file = "black-22.12.0-cp310-cp310-win_amd64.whl", hash = "sha256:159a46a4947f73387b4d83e87ea006dbb2337eab6c879620a3ba52699b1f4351"}, + {file = "black-22.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d30b212bffeb1e252b31dd269dfae69dd17e06d92b87ad26e23890f3efea366f"}, + {file = "black-22.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:7412e75863aa5c5411886804678b7d083c7c28421210180d67dfd8cf1221e1f4"}, + {file = "black-22.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c116eed0efb9ff870ded8b62fe9f28dd61ef6e9ddd28d83d7d264a38417dcee2"}, + {file = "black-22.12.0-cp37-cp37m-win_amd64.whl", hash = "sha256:1f58cbe16dfe8c12b7434e50ff889fa479072096d79f0a7f25e4ab8e94cd8350"}, + {file = "black-22.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77d86c9f3db9b1bf6761244bc0b3572a546f5fe37917a044e02f3166d5aafa7d"}, + {file = "black-22.12.0-cp38-cp38-win_amd64.whl", hash = "sha256:82d9fe8fee3401e02e79767016b4907820a7dc28d70d137eb397b92ef3cc5bfc"}, + {file = "black-22.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101c69b23df9b44247bd88e1d7e90154336ac4992502d4197bdac35dd7ee3320"}, + {file = "black-22.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:559c7a1ba9a006226f09e4916060982fd27334ae1998e7a38b3f33a37f7a2148"}, + {file = "black-22.12.0-py3-none-any.whl", hash = "sha256:436cc9167dd28040ad90d3b404aec22cedf24a6e4d7de221bec2730ec0c97bcf"}, + {file = "black-22.12.0.tar.gz", hash = "sha256:229351e5a18ca30f447bf724d007f890f97e13af070bb6ad4c0a441cd7596a2f"}, +] [package.dependencies] click = ">=8.0.0" @@ -84,41 +264,185 @@ uvloop = ["uvloop (>=0.15.2)"] [[package]] name = "certifi" -version = "2022.9.24" +version = "2023.7.22" description = "Python package for providing Mozilla's CA Bundle." -category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] [[package]] name = "cffi" version = "1.15.1" description = "Foreign Function Interface for Python calling C code." -category = "dev" optional = false python-versions = "*" +files = [ + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, +] [package.dependencies] pycparser = "*" [[package]] name = "charset-normalizer" -version = "2.1.1" +version = "3.2.0" description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -category = "main" optional = false -python-versions = ">=3.6.0" - -[package.extras] -unicode-backport = ["unicodedata2"] +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] [[package]] name = "click" -version = "8.1.3" +version = "8.1.7" description = "Composable command line interface toolkit" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] [package.dependencies] colorama = {version = "*", markers = "platform_system == \"Windows\""} @@ -127,192 +451,742 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""} name = "colorama" version = "0.4.6" description = "Cross-platform colored terminal text." -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "comm" +version = "0.1.4" +description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." +optional = false +python-versions = ">=3.6" +files = [ + {file = "comm-0.1.4-py3-none-any.whl", hash = "sha256:6d52794cba11b36ed9860999cd10fd02d6b2eac177068fdd585e1e2f8a96e67a"}, + {file = "comm-0.1.4.tar.gz", hash = "sha256:354e40a59c9dd6db50c5cc6b4acc887d82e9603787f83b68c01a80a923984d15"}, +] + +[package.dependencies] +traitlets = ">=4" + +[package.extras] +lint = ["black (>=22.6.0)", "mdformat (>0.7)", "mdformat-gfm (>=0.3.5)", "ruff (>=0.0.156)"] +test = ["pytest"] +typing = ["mypy (>=0.990)"] + +[[package]] +name = "coverage" +version = "6.5.0" +description = "Code coverage measurement for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "coverage-6.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ef8674b0ee8cc11e2d574e3e2998aea5df5ab242e012286824ea3c6970580e53"}, + {file = "coverage-6.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:784f53ebc9f3fd0e2a3f6a78b2be1bd1f5575d7863e10c6e12504f240fd06660"}, + {file = "coverage-6.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4a5be1748d538a710f87542f22c2cad22f80545a847ad91ce45e77417293eb4"}, + {file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83516205e254a0cb77d2d7bb3632ee019d93d9f4005de31dca0a8c3667d5bc04"}, + {file = "coverage-6.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:af4fffaffc4067232253715065e30c5a7ec6faac36f8fc8d6f64263b15f74db0"}, + {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:97117225cdd992a9c2a5515db1f66b59db634f59d0679ca1fa3fe8da32749cae"}, + {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a1170fa54185845505fbfa672f1c1ab175446c887cce8212c44149581cf2d466"}, + {file = "coverage-6.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:11b990d520ea75e7ee8dcab5bc908072aaada194a794db9f6d7d5cfd19661e5a"}, + {file = "coverage-6.5.0-cp310-cp310-win32.whl", hash = "sha256:5dbec3b9095749390c09ab7c89d314727f18800060d8d24e87f01fb9cfb40b32"}, + {file = "coverage-6.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:59f53f1dc5b656cafb1badd0feb428c1e7bc19b867479ff72f7a9dd9b479f10e"}, + {file = "coverage-6.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4a5375e28c5191ac38cca59b38edd33ef4cc914732c916f2929029b4bfb50795"}, + {file = "coverage-6.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4ed2820d919351f4167e52425e096af41bfabacb1857186c1ea32ff9983ed75"}, + {file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:33a7da4376d5977fbf0a8ed91c4dffaaa8dbf0ddbf4c8eea500a2486d8bc4d7b"}, + {file = "coverage-6.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a8fb6cf131ac4070c9c5a3e21de0f7dc5a0fbe8bc77c9456ced896c12fcdad91"}, + {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a6b7d95969b8845250586f269e81e5dfdd8ff828ddeb8567a4a2eaa7313460c4"}, + {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1ef221513e6f68b69ee9e159506d583d31aa3567e0ae84eaad9d6ec1107dddaa"}, + {file = "coverage-6.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cca4435eebea7962a52bdb216dec27215d0df64cf27fc1dd538415f5d2b9da6b"}, + {file = "coverage-6.5.0-cp311-cp311-win32.whl", hash = "sha256:98e8a10b7a314f454d9eff4216a9a94d143a7ee65018dd12442e898ee2310578"}, + {file = "coverage-6.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:bc8ef5e043a2af066fa8cbfc6e708d58017024dc4345a1f9757b329a249f041b"}, + {file = "coverage-6.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:4433b90fae13f86fafff0b326453dd42fc9a639a0d9e4eec4d366436d1a41b6d"}, + {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f4f05d88d9a80ad3cac6244d36dd89a3c00abc16371769f1340101d3cb899fc3"}, + {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94e2565443291bd778421856bc975d351738963071e9b8839ca1fc08b42d4bef"}, + {file = "coverage-6.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:027018943386e7b942fa832372ebc120155fd970837489896099f5cfa2890f79"}, + {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:255758a1e3b61db372ec2736c8e2a1fdfaf563977eedbdf131de003ca5779b7d"}, + {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:851cf4ff24062c6aec510a454b2584f6e998cada52d4cb58c5e233d07172e50c"}, + {file = "coverage-6.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:12adf310e4aafddc58afdb04d686795f33f4d7a6fa67a7a9d4ce7d6ae24d949f"}, + {file = "coverage-6.5.0-cp37-cp37m-win32.whl", hash = "sha256:b5604380f3415ba69de87a289a2b56687faa4fe04dbee0754bfcae433489316b"}, + {file = "coverage-6.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4a8dbc1f0fbb2ae3de73eb0bdbb914180c7abfbf258e90b311dcd4f585d44bd2"}, + {file = "coverage-6.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:d900bb429fdfd7f511f868cedd03a6bbb142f3f9118c09b99ef8dc9bf9643c3c"}, + {file = "coverage-6.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2198ea6fc548de52adc826f62cb18554caedfb1d26548c1b7c88d8f7faa8f6ba"}, + {file = "coverage-6.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c4459b3de97b75e3bd6b7d4b7f0db13f17f504f3d13e2a7c623786289dd670e"}, + {file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:20c8ac5386253717e5ccc827caad43ed66fea0efe255727b1053a8154d952398"}, + {file = "coverage-6.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b07130585d54fe8dff3d97b93b0e20290de974dc8177c320aeaf23459219c0b"}, + {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:dbdb91cd8c048c2b09eb17713b0c12a54fbd587d79adcebad543bc0cd9a3410b"}, + {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:de3001a203182842a4630e7b8d1a2c7c07ec1b45d3084a83d5d227a3806f530f"}, + {file = "coverage-6.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e07f4a4a9b41583d6eabec04f8b68076ab3cd44c20bd29332c6572dda36f372e"}, + {file = "coverage-6.5.0-cp38-cp38-win32.whl", hash = "sha256:6d4817234349a80dbf03640cec6109cd90cba068330703fa65ddf56b60223a6d"}, + {file = "coverage-6.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:7ccf362abd726b0410bf8911c31fbf97f09f8f1061f8c1cf03dfc4b6372848f6"}, + {file = "coverage-6.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:633713d70ad6bfc49b34ead4060531658dc6dfc9b3eb7d8a716d5873377ab745"}, + {file = "coverage-6.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:95203854f974e07af96358c0b261f1048d8e1083f2de9b1c565e1be4a3a48cfc"}, + {file = "coverage-6.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9023e237f4c02ff739581ef35969c3739445fb059b060ca51771e69101efffe"}, + {file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:265de0fa6778d07de30bcf4d9dc471c3dc4314a23a3c6603d356a3c9abc2dfcf"}, + {file = "coverage-6.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f830ed581b45b82451a40faabb89c84e1a998124ee4212d440e9c6cf70083e5"}, + {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7b6be138d61e458e18d8e6ddcddd36dd96215edfe5f1168de0b1b32635839b62"}, + {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:42eafe6778551cf006a7c43153af1211c3aaab658d4d66fa5fcc021613d02518"}, + {file = "coverage-6.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:723e8130d4ecc8f56e9a611e73b31219595baa3bb252d539206f7bbbab6ffc1f"}, + {file = "coverage-6.5.0-cp39-cp39-win32.whl", hash = "sha256:d9ecf0829c6a62b9b573c7bb6d4dcd6ba8b6f80be9ba4fc7ed50bf4ac9aecd72"}, + {file = "coverage-6.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:fc2af30ed0d5ae0b1abdb4ebdce598eafd5b35397d4d75deb341a614d333d987"}, + {file = "coverage-6.5.0-pp36.pp37.pp38-none-any.whl", hash = "sha256:1431986dac3923c5945271f169f59c45b8802a114c8f548d611f2015133df77a"}, + {file = "coverage-6.5.0.tar.gz", hash = "sha256:f642e90754ee3e06b0e7e51bce3379590e76b7f76b708e1a71ff043f87025c84"}, +] + +[package.extras] +toml = ["tomli"] + +[[package]] +name = "cryptography" +version = "41.0.7" +description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +optional = false +python-versions = ">=3.7" +files = [ + {file = "cryptography-41.0.7-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:3c78451b78313fa81607fa1b3f1ae0a5ddd8014c38a02d9db0616133987b9cdf"}, + {file = "cryptography-41.0.7-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:928258ba5d6f8ae644e764d0f996d61a8777559f72dfeb2eea7e2fe0ad6e782d"}, + {file = "cryptography-41.0.7-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5a1b41bc97f1ad230a41657d9155113c7521953869ae57ac39ac7f1bb471469a"}, + {file = "cryptography-41.0.7-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:841df4caa01008bad253bce2a6f7b47f86dc9f08df4b433c404def869f590a15"}, + {file = "cryptography-41.0.7-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:5429ec739a29df2e29e15d082f1d9ad683701f0ec7709ca479b3ff2708dae65a"}, + {file = "cryptography-41.0.7-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:43f2552a2378b44869fe8827aa19e69512e3245a219104438692385b0ee119d1"}, + {file = "cryptography-41.0.7-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:af03b32695b24d85a75d40e1ba39ffe7db7ffcb099fe507b39fd41a565f1b157"}, + {file = "cryptography-41.0.7-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:49f0805fc0b2ac8d4882dd52f4a3b935b210935d500b6b805f321addc8177406"}, + {file = "cryptography-41.0.7-cp37-abi3-win32.whl", hash = "sha256:f983596065a18a2183e7f79ab3fd4c475205b839e02cbc0efbbf9666c4b3083d"}, + {file = "cryptography-41.0.7-cp37-abi3-win_amd64.whl", hash = "sha256:90452ba79b8788fa380dfb587cca692976ef4e757b194b093d845e8d99f612f2"}, + {file = "cryptography-41.0.7-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:079b85658ea2f59c4f43b70f8119a52414cdb7be34da5d019a77bf96d473b960"}, + {file = "cryptography-41.0.7-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:b640981bf64a3e978a56167594a0e97db71c89a479da8e175d8bb5be5178c003"}, + {file = "cryptography-41.0.7-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e3114da6d7f95d2dee7d3f4eec16dacff819740bbab931aff8648cb13c5ff5e7"}, + {file = "cryptography-41.0.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:d5ec85080cce7b0513cfd233914eb8b7bbd0633f1d1703aa28d1dd5a72f678ec"}, + {file = "cryptography-41.0.7-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7a698cb1dac82c35fcf8fe3417a3aaba97de16a01ac914b89a0889d364d2f6be"}, + {file = "cryptography-41.0.7-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:37a138589b12069efb424220bf78eac59ca68b95696fc622b6ccc1c0a197204a"}, + {file = "cryptography-41.0.7-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:68a2dec79deebc5d26d617bfdf6e8aab065a4f34934b22d3b5010df3ba36612c"}, + {file = "cryptography-41.0.7-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:09616eeaef406f99046553b8a40fbf8b1e70795a91885ba4c96a70793de5504a"}, + {file = "cryptography-41.0.7-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:48a0476626da912a44cc078f9893f292f0b3e4c739caf289268168d8f4702a39"}, + {file = "cryptography-41.0.7-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:c7f3201ec47d5207841402594f1d7950879ef890c0c495052fa62f58283fde1a"}, + {file = "cryptography-41.0.7-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c5ca78485a255e03c32b513f8c2bc39fedb7f5c5f8535545bdc223a03b24f248"}, + {file = "cryptography-41.0.7-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:d6c391c021ab1f7a82da5d8d0b3cee2f4b2c455ec86c8aebbc84837a631ff309"}, + {file = "cryptography-41.0.7.tar.gz", hash = "sha256:13f93ce9bea8016c253b34afc6bd6a75993e5c40672ed5405a9c832f0d4a00bc"}, +] + +[package.dependencies] +cffi = ">=1.12" + +[package.extras] +docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] +docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] +nox = ["nox"] +pep8test = ["black", "check-sdist", "mypy", "ruff"] +sdist = ["build"] +ssh = ["bcrypt (>=3.1.5)"] +test = ["pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test-randomorder = ["pytest-randomly"] [[package]] name = "debugpy" -version = "1.6.3" +version = "1.6.7.post1" description = "An implementation of the Debug Adapter Protocol for Python" -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "debugpy-1.6.7.post1-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:903bd61d5eb433b6c25b48eae5e23821d4c1a19e25c9610205f5aeaccae64e32"}, + {file = "debugpy-1.6.7.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d16882030860081e7dd5aa619f30dec3c2f9a421e69861125f83cc372c94e57d"}, + {file = "debugpy-1.6.7.post1-cp310-cp310-win32.whl", hash = "sha256:eea8d8cfb9965ac41b99a61f8e755a8f50e9a20330938ad8271530210f54e09c"}, + {file = "debugpy-1.6.7.post1-cp310-cp310-win_amd64.whl", hash = "sha256:85969d864c45f70c3996067cfa76a319bae749b04171f2cdeceebe4add316155"}, + {file = "debugpy-1.6.7.post1-cp37-cp37m-macosx_11_0_x86_64.whl", hash = "sha256:890f7ab9a683886a0f185786ffbda3b46495c4b929dab083b8c79d6825832a52"}, + {file = "debugpy-1.6.7.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d4ac7a4dba28801d184b7fc0e024da2635ca87d8b0a825c6087bb5168e3c0d28"}, + {file = "debugpy-1.6.7.post1-cp37-cp37m-win32.whl", hash = "sha256:3370ef1b9951d15799ef7af41f8174194f3482ee689988379763ef61a5456426"}, + {file = "debugpy-1.6.7.post1-cp37-cp37m-win_amd64.whl", hash = "sha256:65b28435a17cba4c09e739621173ff90c515f7b9e8ea469b92e3c28ef8e5cdfb"}, + {file = "debugpy-1.6.7.post1-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:92b6dae8bfbd497c90596bbb69089acf7954164aea3228a99d7e43e5267f5b36"}, + {file = "debugpy-1.6.7.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72f5d2ecead8125cf669e62784ef1e6300f4067b0f14d9f95ee00ae06fc7c4f7"}, + {file = "debugpy-1.6.7.post1-cp38-cp38-win32.whl", hash = "sha256:f0851403030f3975d6e2eaa4abf73232ab90b98f041e3c09ba33be2beda43fcf"}, + {file = "debugpy-1.6.7.post1-cp38-cp38-win_amd64.whl", hash = "sha256:3de5d0f97c425dc49bce4293df6a04494309eedadd2b52c22e58d95107e178d9"}, + {file = "debugpy-1.6.7.post1-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:38651c3639a4e8bbf0ca7e52d799f6abd07d622a193c406be375da4d510d968d"}, + {file = "debugpy-1.6.7.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:038c51268367c9c935905a90b1c2d2dbfe304037c27ba9d19fe7409f8cdc710c"}, + {file = "debugpy-1.6.7.post1-cp39-cp39-win32.whl", hash = "sha256:4b9eba71c290852f959d2cf8a03af28afd3ca639ad374d393d53d367f7f685b2"}, + {file = "debugpy-1.6.7.post1-cp39-cp39-win_amd64.whl", hash = "sha256:973a97ed3b434eab0f792719a484566c35328196540676685c975651266fccf9"}, + {file = "debugpy-1.6.7.post1-py2.py3-none-any.whl", hash = "sha256:1093a5c541af079c13ac8c70ab8b24d1d35c8cacb676306cf11e57f699c02926"}, + {file = "debugpy-1.6.7.post1.zip", hash = "sha256:fe87ec0182ef624855d05e6ed7e0b7cb1359d2ffa2a925f8ec2d22e98b75d0ca"}, +] [[package]] name = "decorator" version = "5.1.1" description = "Decorators for Humans" -category = "dev" optional = false python-versions = ">=3.5" +files = [ + {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, + {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, +] + +[[package]] +name = "deepl" +version = "1.16.1" +description = "Python library for the DeepL API." +optional = false +python-versions = ">=3.6.2,<4" +files = [ + {file = "deepl-1.16.1-py3-none-any.whl", hash = "sha256:17bd19a28850a10513377afc1b0e28ee907502e4a4a547d616bfa9cf65dfd4ea"}, + {file = "deepl-1.16.1.tar.gz", hash = "sha256:b34d4a8644c9e62a7a9c24acfe80a07717bd0a3b2be77b633a10d5d4fe748dcd"}, +] + +[package.dependencies] +requests = ">=2,<3" + +[package.extras] +keyring = ["keyring (>=23.4.1,<24.0.0)"] + +[[package]] +name = "delayed-assert" +version = "0.3.6" +description = "Delayed/soft assertions for python" +optional = false +python-versions = "*" +files = [ + {file = "delayed_assert-0.3.6-py3-none-any.whl", hash = "sha256:9987466c4d05c94af21151f27e58a8c13beba176e5f358d16c21b6abd3e6268b"}, + {file = "delayed_assert-0.3.6.tar.gz", hash = "sha256:0e1c65afae4bae9c57b91c76e38287562924c9964a58c309249790c725c46239"}, +] + +[[package]] +name = "deprecated" +version = "1.2.14" +description = "Python @deprecated decorator to deprecate old python classes, functions or methods." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "Deprecated-1.2.14-py2.py3-none-any.whl", hash = "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c"}, + {file = "Deprecated-1.2.14.tar.gz", hash = "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3"}, +] + +[package.dependencies] +wrapt = ">=1.10,<2" + +[package.extras] +dev = ["PyTest", "PyTest-Cov", "bump2version (<1)", "sphinx (<2)", "tox"] + +[[package]] +name = "deprecation" +version = "2.1.0" +description = "A library to handle automated deprecations" +optional = false +python-versions = "*" +files = [ + {file = "deprecation-2.1.0-py2.py3-none-any.whl", hash = "sha256:a10811591210e1fb0e768a8c25517cabeabcba6f0bf96564f8ff45189f90b14a"}, + {file = "deprecation-2.1.0.tar.gz", hash = "sha256:72b3bde64e5d778694b0cf68178aed03d15e15477116add3fb773e581f9518ff"}, +] + +[package.dependencies] +packaging = "*" [[package]] name = "dnspython" -version = "2.2.1" +version = "2.4.2" description = "DNS toolkit" -category = "main" optional = false -python-versions = ">=3.6,<4.0" +python-versions = ">=3.8,<4.0" +files = [ + {file = "dnspython-2.4.2-py3-none-any.whl", hash = "sha256:57c6fbaaeaaf39c891292012060beb141791735dbb4004798328fc2c467402d8"}, + {file = "dnspython-2.4.2.tar.gz", hash = "sha256:8dcfae8c7460a2f84b4072e26f1c9f4101ca20c071649cb7c34e8b6a93d58984"}, +] [package.extras] -curio = ["curio (>=1.2,<2.0)", "sniffio (>=1.1,<2.0)"] -dnssec = ["cryptography (>=2.6,<37.0)"] -doh = ["h2 (>=4.1.0)", "httpx (>=0.21.1)", "requests (>=2.23.0,<3.0.0)", "requests-toolbelt (>=0.9.1,<0.10.0)"] +dnssec = ["cryptography (>=2.6,<42.0)"] +doh = ["h2 (>=4.1.0)", "httpcore (>=0.17.3)", "httpx (>=0.24.1)"] +doq = ["aioquic (>=0.9.20)"] idna = ["idna (>=2.1,<4.0)"] -trio = ["trio (>=0.14,<0.20)"] +trio = ["trio (>=0.14,<0.23)"] wmi = ["wmi (>=1.5.1,<2.0.0)"] [[package]] -name = "email-validator" -version = "1.3.0" -description = "A robust email address syntax and deliverability validation library." -category = "main" +name = "ecdsa" +version = "0.18.0" +description = "ECDSA cryptographic signature library (pure python)" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "ecdsa-0.18.0-py2.py3-none-any.whl", hash = "sha256:80600258e7ed2f16b9aa1d7c295bd70194109ad5a30fdee0eaeefef1d4c559dd"}, + {file = "ecdsa-0.18.0.tar.gz", hash = "sha256:190348041559e21b22a1d65cee485282ca11a6f81d503fddb84d5017e9ed1e49"}, +] [package.dependencies] -dnspython = ">=1.15.0" -idna = ">=2.0.0" +six = ">=1.9.0" + +[package.extras] +gmpy = ["gmpy"] +gmpy2 = ["gmpy2"] [[package]] -name = "entrypoints" -version = "0.4" -description = "Discover and load entry points from installed packages." -category = "dev" +name = "email-validator" +version = "2.0.0.post2" +description = "A robust email address syntax and deliverability validation library." optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" +files = [ + {file = "email_validator-2.0.0.post2-py3-none-any.whl", hash = "sha256:2466ba57cda361fb7309fd3d5a225723c788ca4bbad32a0ebd5373b99730285c"}, + {file = "email_validator-2.0.0.post2.tar.gz", hash = "sha256:1ff6e86044200c56ae23595695c54e9614f4a9551e0e393614f764860b3d7900"}, +] + +[package.dependencies] +dnspython = ">=2.0.0" +idna = ">=2.0.0" [[package]] name = "et-xmlfile" version = "1.1.0" description = "An implementation of lxml.xmlfile for the standard library" -category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, + {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, +] [[package]] name = "executing" version = "1.2.0" description = "Get the currently executing AST node of a frame, and other information" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "executing-1.2.0-py2.py3-none-any.whl", hash = "sha256:0314a69e37426e3608aada02473b4161d4caf5a4b244d1d0c48072b8fee7bacc"}, + {file = "executing-1.2.0.tar.gz", hash = "sha256:19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107"}, +] [package.extras] tests = ["asttokens", "littleutils", "pytest", "rich"] [[package]] name = "fastapi" -version = "0.85.2" +version = "0.95.0" description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "fastapi-0.95.0-py3-none-any.whl", hash = "sha256:daf73bbe844180200be7966f68e8ec9fd8be57079dff1bacb366db32729e6eb5"}, + {file = "fastapi-0.95.0.tar.gz", hash = "sha256:99d4fdb10e9dd9a24027ac1d0bd4b56702652056ca17a6c8721eec4ad2f14e18"}, +] [package.dependencies] -email-validator = {version = ">=1.1.1,<2.0.0", optional = true, markers = "extra == \"all\""} -itsdangerous = {version = ">=1.1.0,<3.0.0", optional = true, markers = "extra == \"all\""} -jinja2 = {version = ">=2.11.2,<4.0.0", optional = true, markers = "extra == \"all\""} -orjson = {version = ">=3.2.1,<4.0.0", optional = true, markers = "extra == \"all\""} +email-validator = {version = ">=1.1.1", optional = true, markers = "extra == \"all\""} +httpx = {version = ">=0.23.0", optional = true, markers = "extra == \"all\""} +itsdangerous = {version = ">=1.1.0", optional = true, markers = "extra == \"all\""} +jinja2 = {version = ">=2.11.2", optional = true, markers = "extra == \"all\""} +orjson = {version = ">=3.2.1", optional = true, markers = "extra == \"all\""} pydantic = ">=1.6.2,<1.7 || >1.7,<1.7.1 || >1.7.1,<1.7.2 || >1.7.2,<1.7.3 || >1.7.3,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0" -python-multipart = {version = ">=0.0.5,<0.0.6", optional = true, markers = "extra == \"all\""} -pyyaml = {version = ">=5.3.1,<7.0.0", optional = true, markers = "extra == \"all\""} -requests = {version = ">=2.24.0,<3.0.0", optional = true, markers = "extra == \"all\""} -starlette = "0.20.4" -ujson = {version = ">=4.0.1,<4.0.2 || >4.0.2,<4.1.0 || >4.1.0,<4.2.0 || >4.2.0,<4.3.0 || >4.3.0,<5.0.0 || >5.0.0,<5.1.0 || >5.1.0,<6.0.0", optional = true, markers = "extra == \"all\""} -uvicorn = {version = ">=0.12.0,<0.19.0", extras = ["standard"], optional = true, markers = "extra == \"all\""} +python-multipart = {version = ">=0.0.5", optional = true, markers = "extra == \"all\""} +pyyaml = {version = ">=5.3.1", optional = true, markers = "extra == \"all\""} +starlette = ">=0.26.1,<0.27.0" +ujson = {version = ">=4.0.1,<4.0.2 || >4.0.2,<4.1.0 || >4.1.0,<4.2.0 || >4.2.0,<4.3.0 || >4.3.0,<5.0.0 || >5.0.0,<5.1.0 || >5.1.0", optional = true, markers = "extra == \"all\""} +uvicorn = {version = ">=0.12.0", extras = ["standard"], optional = true, markers = "extra == \"all\""} + +[package.extras] +all = ["email-validator (>=1.1.1)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)", "jinja2 (>=2.11.2)", "orjson (>=3.2.1)", "python-multipart (>=0.0.5)", "pyyaml (>=5.3.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)", "uvicorn[standard] (>=0.12.0)"] +dev = ["pre-commit (>=2.17.0,<3.0.0)", "ruff (==0.0.138)", "uvicorn[standard] (>=0.12.0,<0.21.0)"] +doc = ["mdx-include (>=1.4.1,<2.0.0)", "mkdocs (>=1.1.2,<2.0.0)", "mkdocs-markdownextradata-plugin (>=0.1.7,<0.3.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "pyyaml (>=5.3.1,<7.0.0)", "typer-cli (>=0.0.13,<0.0.14)", "typer[all] (>=0.6.1,<0.8.0)"] +test = ["anyio[trio] (>=3.2.1,<4.0.0)", "black (==23.1.0)", "coverage[toml] (>=6.5.0,<8.0)", "databases[sqlite] (>=0.3.2,<0.7.0)", "email-validator (>=1.1.1,<2.0.0)", "flask (>=1.1.2,<3.0.0)", "httpx (>=0.23.0,<0.24.0)", "isort (>=5.0.6,<6.0.0)", "mypy (==0.982)", "orjson (>=3.2.1,<4.0.0)", "passlib[bcrypt] (>=1.7.2,<2.0.0)", "peewee (>=3.13.3,<4.0.0)", "pytest (>=7.1.3,<8.0.0)", "python-jose[cryptography] (>=3.3.0,<4.0.0)", "python-multipart (>=0.0.5,<0.0.7)", "pyyaml (>=5.3.1,<7.0.0)", "ruff (==0.0.138)", "sqlalchemy (>=1.3.18,<1.4.43)", "types-orjson (==3.6.2)", "types-ujson (==5.7.0.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,<6.0.0)"] + +[[package]] +name = "fastapi-cache2" +version = "0.2.1" +description = "Cache for FastAPI" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "fastapi_cache2-0.2.1-py3-none-any.whl", hash = "sha256:532c24253ab8f162ba2f0a7dcccb98591424f0424c28da70346eb3c99daf2b06"}, + {file = "fastapi_cache2-0.2.1.tar.gz", hash = "sha256:0c68803c5a7fdebfec3e4430fd08482c091344dc4dd55a00209a882220712f89"}, +] + +[package.dependencies] +aiohttp = {version = ">=3.8.3", markers = "python_version >= \"3.11\""} +fastapi = "*" +pendulum = "*" +uvicorn = "*" + +[package.extras] +all = ["aiobotocore (>=1.4.1,<2.0.0)", "aiomcache", "redis (>=4.2.0rc1,<5.0.0)"] +dynamodb = ["aiobotocore (>=1.4.1,<2.0.0)"] +memcache = ["aiomcache"] +redis = ["redis (>=4.2.0rc1,<5.0.0)"] + +[[package]] +name = "fastapi-utils" +version = "0.7.0" +description = "Reusable utilities for FastAPI" +optional = false +python-versions = "<4.0,>=3.7" +files = [ + {file = "fastapi_utils-0.7.0-py3-none-any.whl", hash = "sha256:4fc4d6a10b5c5c3f2ec564d360fc1188507b911e4b06ee4d4c111906d7ddeef1"}, + {file = "fastapi_utils-0.7.0.tar.gz", hash = "sha256:074509405b02e2651dfe2d11862dd760bacc1a64508f3d8cc44e52a6dc1ed342"}, +] + +[package.dependencies] +fastapi = ">=0.89,<1.0" +psutil = ">=5,<6" +pydantic = ">1.0,<3.0" [package.extras] -all = ["email-validator (>=1.1.1,<2.0.0)", "itsdangerous (>=1.1.0,<3.0.0)", "jinja2 (>=2.11.2,<4.0.0)", "orjson (>=3.2.1,<4.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "pyyaml (>=5.3.1,<7.0.0)", "requests (>=2.24.0,<3.0.0)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,<6.0.0)", "uvicorn[standard] (>=0.12.0,<0.19.0)"] -dev = ["autoflake (>=1.4.0,<2.0.0)", "flake8 (>=3.8.3,<6.0.0)", "pre-commit (>=2.17.0,<3.0.0)", "uvicorn[standard] (>=0.12.0,<0.19.0)"] -doc = ["mdx-include (>=1.4.1,<2.0.0)", "mkdocs (>=1.1.2,<2.0.0)", "mkdocs-markdownextradata-plugin (>=0.1.7,<0.3.0)", "mkdocs-material (>=8.1.4,<9.0.0)", "pyyaml (>=5.3.1,<7.0.0)", "typer[all] (>=0.6.1,<0.7.0)"] -test = ["anyio[trio] (>=3.2.1,<4.0.0)", "black (==22.8.0)", "databases[sqlite] (>=0.3.2,<0.7.0)", "email-validator (>=1.1.1,<2.0.0)", "flake8 (>=3.8.3,<6.0.0)", "flask (>=1.1.2,<3.0.0)", "httpx (>=0.23.0,<0.24.0)", "isort (>=5.0.6,<6.0.0)", "mypy (==0.982)", "orjson (>=3.2.1,<4.0.0)", "passlib[bcrypt] (>=1.7.2,<2.0.0)", "peewee (>=3.13.3,<4.0.0)", "pytest (>=7.1.3,<8.0.0)", "pytest-cov (>=2.12.0,<5.0.0)", "python-jose[cryptography] (>=3.3.0,<4.0.0)", "python-multipart (>=0.0.5,<0.0.6)", "pyyaml (>=5.3.1,<7.0.0)", "requests (>=2.24.0,<3.0.0)", "sqlalchemy (>=1.3.18,<=1.4.41)", "types-orjson (==3.6.2)", "types-ujson (==5.5.0)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,<6.0.0)"] +all = ["pydantic-settings (>=2.0.1,<3.0.0)", "sqlalchemy (>=1.4,<3.0)", "typing-inspect (>=0.9.0,<0.10.0)"] +session = ["sqlalchemy (>=1.4,<3.0)"] [[package]] name = "flake8" version = "5.0.4" description = "the modular source code checker: pep8 pyflakes and co" -category = "dev" optional = false python-versions = ">=3.6.1" +files = [ + {file = "flake8-5.0.4-py2.py3-none-any.whl", hash = "sha256:7a1cf6b73744f5806ab95e526f6f0d8c01c66d7bbe349562d22dfca20610b248"}, + {file = "flake8-5.0.4.tar.gz", hash = "sha256:6fbe320aad8d6b95cec8b8e47bc933004678dc63095be98528b7bdd2a9f510db"}, +] [package.dependencies] mccabe = ">=0.7.0,<0.8.0" pycodestyle = ">=2.9.0,<2.10.0" pyflakes = ">=2.5.0,<2.6.0" +[[package]] +name = "frozenlist" +version = "1.4.1" +description = "A list-like structure which implements collections.abc.MutableSequence" +optional = false +python-versions = ">=3.8" +files = [ + {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, + {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, + {file = "frozenlist-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776"}, + {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a"}, + {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad"}, + {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c"}, + {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe"}, + {file = "frozenlist-1.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a"}, + {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98"}, + {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75"}, + {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5"}, + {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950"}, + {file = "frozenlist-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc"}, + {file = "frozenlist-1.4.1-cp310-cp310-win32.whl", hash = "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1"}, + {file = "frozenlist-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439"}, + {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0"}, + {file = "frozenlist-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49"}, + {file = "frozenlist-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced"}, + {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0"}, + {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106"}, + {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068"}, + {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2"}, + {file = "frozenlist-1.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19"}, + {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82"}, + {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec"}, + {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a"}, + {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74"}, + {file = "frozenlist-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2"}, + {file = "frozenlist-1.4.1-cp311-cp311-win32.whl", hash = "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17"}, + {file = "frozenlist-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825"}, + {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae"}, + {file = "frozenlist-1.4.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb"}, + {file = "frozenlist-1.4.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b"}, + {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86"}, + {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480"}, + {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09"}, + {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a"}, + {file = "frozenlist-1.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd"}, + {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6"}, + {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1"}, + {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b"}, + {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e"}, + {file = "frozenlist-1.4.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8"}, + {file = "frozenlist-1.4.1-cp312-cp312-win32.whl", hash = "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89"}, + {file = "frozenlist-1.4.1-cp312-cp312-win_amd64.whl", hash = "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5"}, + {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d"}, + {file = "frozenlist-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826"}, + {file = "frozenlist-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb"}, + {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6"}, + {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d"}, + {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887"}, + {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a"}, + {file = "frozenlist-1.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b"}, + {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701"}, + {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0"}, + {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11"}, + {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09"}, + {file = "frozenlist-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7"}, + {file = "frozenlist-1.4.1-cp38-cp38-win32.whl", hash = "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497"}, + {file = "frozenlist-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09"}, + {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e"}, + {file = "frozenlist-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d"}, + {file = "frozenlist-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8"}, + {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0"}, + {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b"}, + {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0"}, + {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897"}, + {file = "frozenlist-1.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7"}, + {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742"}, + {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea"}, + {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5"}, + {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9"}, + {file = "frozenlist-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6"}, + {file = "frozenlist-1.4.1-cp39-cp39-win32.whl", hash = "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932"}, + {file = "frozenlist-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0"}, + {file = "frozenlist-1.4.1-py3-none-any.whl", hash = "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7"}, + {file = "frozenlist-1.4.1.tar.gz", hash = "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b"}, +] + [[package]] name = "greenlet" -version = "2.0.1" +version = "3.0.0a1" description = "Lightweight in-process concurrent programming" -category = "main" optional = false -python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" +python-versions = ">=3.7" +files = [ + {file = "greenlet-3.0.0a1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a8dd92fd76a61af2abc8ccad0c6c6069b3c4ebd4727ecc9a7c33aae37651c8c7"}, + {file = "greenlet-3.0.0a1-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:889934aa8d72b6bfc46babd1dc4b817a56c97ec0f4a10ae7551fb60ab1f96fae"}, + {file = "greenlet-3.0.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b767930af686551dc96a5eb70af3736709d547ffa275c11a5e820bfb3ae61d8d"}, + {file = "greenlet-3.0.0a1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b9a1f4d256b81f59ba87bb7a29b9b38b1c018e052dba60a543cb0ddb5062d159"}, + {file = "greenlet-3.0.0a1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c3fb459ced6c5e3b2a895f23f1400f93e9b24d85c30fbe2d637d4f7706a1116b"}, + {file = "greenlet-3.0.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:180ec55cb127bc745669eddc9793ffab6e0cf7311e67e1592f183d6ca00d88c1"}, + {file = "greenlet-3.0.0a1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:ab81f9ff3e3c2ca65e824454214c10985a846cd9bee5f4d04e15cd875d9fe13b"}, + {file = "greenlet-3.0.0a1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:21ebcb570e0d8501457d6a2695a44c5af3b6c2143dc6644ec73574beba067c90"}, + {file = "greenlet-3.0.0a1-cp310-cp310-win_amd64.whl", hash = "sha256:4d0c0ffd732466ff324ced144fad55ed5deca36f6036c1d8f04cec69b084c9d6"}, + {file = "greenlet-3.0.0a1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a4a2d6ed0515c05afd5cc435361ced0baabd9ba4536ddfe8ad9a95bcb702c8ce"}, + {file = "greenlet-3.0.0a1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ffb9f8969789771e95d3c982a36be81f0adfaa7302a1d56e29f168ca15e284b8"}, + {file = "greenlet-3.0.0a1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b3f3568478bc21b85968e8038c4f98f4bf0039a692791bc324b5e0d1522f4b1"}, + {file = "greenlet-3.0.0a1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2e160a65cc6023a237be870f2072513747d512a1d018efa083acce0b673cccc0"}, + {file = "greenlet-3.0.0a1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e31d1a33dc9006b278f72cb0aacfe397606c2693aa2fdc0c2f2dcddbad9e0b53"}, + {file = "greenlet-3.0.0a1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a00550757fca1b9cbc479f8eb1cf3514dbc0103b3f76eae46341c26ddcca67a9"}, + {file = "greenlet-3.0.0a1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:2840187a94e258445e62ff1545e34f0b1a14aef4d0078e5c88246688d2b6515e"}, + {file = "greenlet-3.0.0a1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:271ed380389d2f7e4c1545b6e0837986e62504ab561edbaff05da9c9f3f98f96"}, + {file = "greenlet-3.0.0a1-cp311-cp311-win_amd64.whl", hash = "sha256:4ff2a765f4861fc018827eab4df1992f7508d06c62de5d2fe8a6ac2233d4f1d0"}, + {file = "greenlet-3.0.0a1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:463d63ca5d8c236788284a9a44b9715372a64d5318a6b5eee36815df1ea0ba3d"}, + {file = "greenlet-3.0.0a1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f3530c0ec1fc98c43d5b7061781a8c55bd0db44f789f8152e19d9526cbed6021"}, + {file = "greenlet-3.0.0a1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bce5cf2b0f0b29680396c5c98ab39a011bd70f2dfa8b8a6811a69ee6d920cf9f"}, + {file = "greenlet-3.0.0a1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f5672082576d0e9f52fa0fa732ff57254d65faeb4a471bc339fe54b58b3e79d2"}, + {file = "greenlet-3.0.0a1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5552d7be37d878e9b6359bbffa0512d857bb9703616a4c0656b49c10739d5971"}, + {file = "greenlet-3.0.0a1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:36cebce1f30964d5672fd956860e7e7b69772da69658d5743cb676b442eeff36"}, + {file = "greenlet-3.0.0a1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:665942d3a954c3e4c976581715f57fb3b86f4cf6bae3ac30b133f8ff777ac6c7"}, + {file = "greenlet-3.0.0a1-cp312-cp312-win_amd64.whl", hash = "sha256:ce70aa089ec589b5d5fab388af9f8c9f9dfe8fe4ad844820a92eb240d8628ddf"}, + {file = "greenlet-3.0.0a1-cp37-cp37m-macosx_11_0_x86_64.whl", hash = "sha256:17503397bf6cbb5e364217143b6150c540020c51a3f6b08f9a20cd67c25e2ca8"}, + {file = "greenlet-3.0.0a1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:d61bad421c1f496f9fb6114dbd7c30a1dac0e9ff90e9be06f4472cbd8f7a1704"}, + {file = "greenlet-3.0.0a1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bab71f73001cd15723c4e2ca398f2f48e0a3f584c619eefddb1525e8986e06eb"}, + {file = "greenlet-3.0.0a1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5f61df4fe07864561f49b45c8bd4d2c42e3f03d2872ed05c844902a58b875028"}, + {file = "greenlet-3.0.0a1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c02e514c72e745e49a3ae7e672a1018ba9b68460c21e0361054e956e5d595bc6"}, + {file = "greenlet-3.0.0a1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd31ab223e43ac64fd23f8f5dad249addadac2a459f040546200acbf7e84e353"}, + {file = "greenlet-3.0.0a1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6aac94ff957b5dea0216af71ab59c602e1b947b394e4f5e878a5a65643090038"}, + {file = "greenlet-3.0.0a1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d7ba2e5cb119eddbc10874b41047ad99525e39e397f7aef500e6da0d6f46ab91"}, + {file = "greenlet-3.0.0a1-cp37-cp37m-win32.whl", hash = "sha256:ac10196b8cde7a082e4e371ff171407270d3337c8d57ed43030094eb01d9c95c"}, + {file = "greenlet-3.0.0a1-cp37-cp37m-win_amd64.whl", hash = "sha256:0a9dfcadc1d79696e90ccb1275c30ad4ec5fd3d1ab3ae6671286fac78ef33435"}, + {file = "greenlet-3.0.0a1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5942b1d6ba447cff1ec23a21ec525dde2288f00464950bc647f4e0f03bd537d1"}, + {file = "greenlet-3.0.0a1-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:450a7e52a515402fd110ba807f1a7d464424bfa703be4effbcb97e1dfbfcc621"}, + {file = "greenlet-3.0.0a1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:df34b52aa50a38d7a79f3abc9fda7e400791447aa0400ed895f275f6d8b0bb1f"}, + {file = "greenlet-3.0.0a1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cda110faee67613fed221f90467003f477088ef1cc84c8fc88537785a5b4de9"}, + {file = "greenlet-3.0.0a1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0f313771cb8ee0a04dfdf586b7d4076180d80c94be09049daeea018089b5b957"}, + {file = "greenlet-3.0.0a1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:42bfe67824a9b53e73f568f982f0d1d4c7ac0f587d2e702a23f8a7b505d7b7c2"}, + {file = "greenlet-3.0.0a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e0fc20e6e6b298861035a5fc5dcf9fbaa0546318e8bda81112591861a7dcc28f"}, + {file = "greenlet-3.0.0a1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f34ec09702be907727fd479046193725441aaaf7ed4636ca042734f469bb7451"}, + {file = "greenlet-3.0.0a1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:270432cfdd6a50016b8259b3bbf398a3f7c06a06f2c68c7b93e49f53bc193bcf"}, + {file = "greenlet-3.0.0a1-cp38-cp38-win32.whl", hash = "sha256:d47b2e1ad1429da9aa459ef189fbcd8a74ec28a16bc4c3f5f3cf3f88e36535eb"}, + {file = "greenlet-3.0.0a1-cp38-cp38-win_amd64.whl", hash = "sha256:e7b192c3df761d0fdd17c2d42d41c28460f124f5922e8bd524018f1d35610682"}, + {file = "greenlet-3.0.0a1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e20d5e8dc76b73db9280464d6e81bea05e51a99f4d4dd29c5f78dc79f294a5d3"}, + {file = "greenlet-3.0.0a1-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:ba94c08321b5d345100fc64eb1ab235f42faf9aabba805cface55ebe677f1c2c"}, + {file = "greenlet-3.0.0a1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:24071eee113d75fedebaeb86264d94f04b5a24e311c5ba3e8003c07d00112a7e"}, + {file = "greenlet-3.0.0a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:585810056a8adacd3152945ebfcd25deb58335d41f16ae4e0f3d768918957f9a"}, + {file = "greenlet-3.0.0a1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e3a99f890f2cc5535e1b3a90049c6ca9ff9da9ec251cc130c8d269997f9d32ee"}, + {file = "greenlet-3.0.0a1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c355c99be5bb23e85d899b059a4f22fdf8a0741c57e7029425ee63eb436f689"}, + {file = "greenlet-3.0.0a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dde0ab052c7a1deee8d13d72c37f2afecee30ebdf6eb139790157eaddf04dd61"}, + {file = "greenlet-3.0.0a1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ed0f4fad4c3656e34d20323a789b6a2d210a6bb82647d9c86dded372f55c58a1"}, + {file = "greenlet-3.0.0a1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:53abf19b7dc62795c67b8d0a3d8ef866db166b21017632fff2624cf8fbf3481c"}, + {file = "greenlet-3.0.0a1-cp39-cp39-win32.whl", hash = "sha256:2fcf7af83516db35af3d0ed5d182dea8585eddd891977adff1b74212f4bfd2fd"}, + {file = "greenlet-3.0.0a1-cp39-cp39-win_amd64.whl", hash = "sha256:68368e908f14887fb202a81960bfbe3a02d97e6d3fa62b821556463084ffb131"}, + {file = "greenlet-3.0.0a1.tar.gz", hash = "sha256:1bd4ea36f0aeb14ca335e0c9594a5aaefa1ac4e2db7d86ba38f0be96166b3102"}, +] [package.extras] -docs = ["Sphinx", "docutils (<0.18)"] -test = ["faulthandler", "objgraph", "psutil"] +docs = ["Sphinx"] +test = ["objgraph", "psutil"] [[package]] name = "h11" version = "0.14.0" description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] + +[[package]] +name = "httpcore" +version = "0.17.3" +description = "A minimal low-level HTTP client." +optional = false +python-versions = ">=3.7" +files = [ + {file = "httpcore-0.17.3-py3-none-any.whl", hash = "sha256:c2789b767ddddfa2a5782e3199b2b7f6894540b17b16ec26b2c4d8e103510b87"}, + {file = "httpcore-0.17.3.tar.gz", hash = "sha256:a6f30213335e34c1ade7be6ec7c47f19f50c56db36abef1a9dfa3815b1cb3888"}, +] + +[package.dependencies] +anyio = ">=3.0,<5.0" +certifi = "*" +h11 = ">=0.13,<0.15" +sniffio = "==1.*" + +[package.extras] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] [[package]] name = "httptools" -version = "0.5.0" +version = "0.6.0" description = "A collection of framework independent HTTP protocol utils." -category = "main" optional = false python-versions = ">=3.5.0" +files = [ + {file = "httptools-0.6.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:818325afee467d483bfab1647a72054246d29f9053fd17cc4b86cda09cc60339"}, + {file = "httptools-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72205730bf1be875003692ca54a4a7c35fac77b4746008966061d9d41a61b0f5"}, + {file = "httptools-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33eb1d4e609c835966e969a31b1dedf5ba16b38cab356c2ce4f3e33ffa94cad3"}, + {file = "httptools-0.6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bdc6675ec6cb79d27e0575750ac6e2b47032742e24eed011b8db73f2da9ed40"}, + {file = "httptools-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:463c3bc5ef64b9cf091be9ac0e0556199503f6e80456b790a917774a616aff6e"}, + {file = "httptools-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:82f228b88b0e8c6099a9c4757ce9fdbb8b45548074f8d0b1f0fc071e35655d1c"}, + {file = "httptools-0.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:0781fedc610293a2716bc7fa142d4c85e6776bc59d617a807ff91246a95dea35"}, + {file = "httptools-0.6.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:721e503245d591527cddd0f6fd771d156c509e831caa7a57929b55ac91ee2b51"}, + {file = "httptools-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:274bf20eeb41b0956e34f6a81f84d26ed57c84dd9253f13dcb7174b27ccd8aaf"}, + {file = "httptools-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:259920bbae18740a40236807915def554132ad70af5067e562f4660b62c59b90"}, + {file = "httptools-0.6.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03bfd2ae8a2d532952ac54445a2fb2504c804135ed28b53fefaf03d3a93eb1fd"}, + {file = "httptools-0.6.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f959e4770b3fc8ee4dbc3578fd910fab9003e093f20ac8c621452c4d62e517cb"}, + {file = "httptools-0.6.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6e22896b42b95b3237eccc42278cd72c0df6f23247d886b7ded3163452481e38"}, + {file = "httptools-0.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:38f3cafedd6aa20ae05f81f2e616ea6f92116c8a0f8dcb79dc798df3356836e2"}, + {file = "httptools-0.6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:47043a6e0ea753f006a9d0dd076a8f8c99bc0ecae86a0888448eb3076c43d717"}, + {file = "httptools-0.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:35a541579bed0270d1ac10245a3e71e5beeb1903b5fbbc8d8b4d4e728d48ff1d"}, + {file = "httptools-0.6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65d802e7b2538a9756df5acc062300c160907b02e15ed15ba035b02bce43e89c"}, + {file = "httptools-0.6.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:26326e0a8fe56829f3af483200d914a7cd16d8d398d14e36888b56de30bec81a"}, + {file = "httptools-0.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e41ccac9e77cd045f3e4ee0fc62cbf3d54d7d4b375431eb855561f26ee7a9ec4"}, + {file = "httptools-0.6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:4e748fc0d5c4a629988ef50ac1aef99dfb5e8996583a73a717fc2cac4ab89932"}, + {file = "httptools-0.6.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:cf8169e839a0d740f3d3c9c4fa630ac1a5aaf81641a34575ca6773ed7ce041a1"}, + {file = "httptools-0.6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5dcc14c090ab57b35908d4a4585ec5c0715439df07be2913405991dbb37e049d"}, + {file = "httptools-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d0b0571806a5168013b8c3d180d9f9d6997365a4212cb18ea20df18b938aa0b"}, + {file = "httptools-0.6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0fb4a608c631f7dcbdf986f40af7a030521a10ba6bc3d36b28c1dc9e9035a3c0"}, + {file = "httptools-0.6.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:93f89975465133619aea8b1952bc6fa0e6bad22a447c6d982fc338fbb4c89649"}, + {file = "httptools-0.6.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:73e9d66a5a28b2d5d9fbd9e197a31edd02be310186db423b28e6052472dc8201"}, + {file = "httptools-0.6.0-cp38-cp38-win_amd64.whl", hash = "sha256:22c01fcd53648162730a71c42842f73b50f989daae36534c818b3f5050b54589"}, + {file = "httptools-0.6.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3f96d2a351b5625a9fd9133c95744e8ca06f7a4f8f0b8231e4bbaae2c485046a"}, + {file = "httptools-0.6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:72ec7c70bd9f95ef1083d14a755f321d181f046ca685b6358676737a5fecd26a"}, + {file = "httptools-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b703d15dbe082cc23266bf5d9448e764c7cb3fcfe7cb358d79d3fd8248673ef9"}, + {file = "httptools-0.6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:82c723ed5982f8ead00f8e7605c53e55ffe47c47465d878305ebe0082b6a1755"}, + {file = "httptools-0.6.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b0a816bb425c116a160fbc6f34cece097fd22ece15059d68932af686520966bd"}, + {file = "httptools-0.6.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:dea66d94e5a3f68c5e9d86e0894653b87d952e624845e0b0e3ad1c733c6cc75d"}, + {file = "httptools-0.6.0-cp39-cp39-win_amd64.whl", hash = "sha256:23b09537086a5a611fad5696fc8963d67c7e7f98cb329d38ee114d588b0b74cd"}, + {file = "httptools-0.6.0.tar.gz", hash = "sha256:9fc6e409ad38cbd68b177cd5158fc4042c796b82ca88d99ec78f07bed6c6b796"}, +] [package.extras] test = ["Cython (>=0.29.24,<0.30.0)"] +[[package]] +name = "httpx" +version = "0.24.1" +description = "The next generation HTTP client." +optional = false +python-versions = ">=3.7" +files = [ + {file = "httpx-0.24.1-py3-none-any.whl", hash = "sha256:06781eb9ac53cde990577af654bd990a4949de37a28bdb4a230d434f3a30b9bd"}, + {file = "httpx-0.24.1.tar.gz", hash = "sha256:5853a43053df830c20f8110c5e69fe44d035d850b2dfe795e196f00fdb774bdd"}, +] + +[package.dependencies] +certifi = "*" +httpcore = ">=0.15.0,<0.18.0" +idna = "*" +sniffio = "*" + +[package.extras] +brotli = ["brotli", "brotlicffi"] +cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] + [[package]] name = "idna" version = "3.4" description = "Internationalized Domain Names in Applications (IDNA)" -category = "main" optional = false python-versions = ">=3.5" - +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "importlib-resources" +version = "6.0.1" +description = "Read resources from Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "importlib_resources-6.0.1-py3-none-any.whl", hash = "sha256:134832a506243891221b88b4ae1213327eea96ceb4e407a00d790bb0626f45cf"}, + {file = "importlib_resources-6.0.1.tar.gz", hash = "sha256:4359457e42708462b9626a04657c6208ad799ceb41e5c58c57ffa0e6a098a5d4"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-lint"] +testing = ["pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-ruff"] + +[[package]] +name = "iniconfig" +version = "2.0.0" +description = "brain-dead simple config-ini parsing" +optional = false +python-versions = ">=3.7" +files = [ + {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, + {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, +] + [[package]] name = "ipykernel" -version = "6.17.1" +version = "6.25.1" description = "IPython Kernel for Jupyter" -category = "dev" optional = false python-versions = ">=3.8" +files = [ + {file = "ipykernel-6.25.1-py3-none-any.whl", hash = "sha256:c8a2430b357073b37c76c21c52184db42f6b4b0e438e1eb7df3c4440d120497c"}, + {file = "ipykernel-6.25.1.tar.gz", hash = "sha256:050391364c0977e768e354bdb60cbbfbee7cbb943b1af1618382021136ffd42f"}, +] [package.dependencies] appnope = {version = "*", markers = "platform_system == \"Darwin\""} -debugpy = ">=1.0" +comm = ">=0.1.1" +debugpy = ">=1.6.5" ipython = ">=7.23.1" jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" matplotlib-inline = ">=0.1" nest-asyncio = "*" packaging = "*" psutil = "*" -pyzmq = ">=17" +pyzmq = ">=20" tornado = ">=6.1" -traitlets = ">=5.1.0" +traitlets = ">=5.4.0" [package.extras] -docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinxcontrib-github-alt"] -test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-cov", "pytest-timeout"] +cov = ["coverage[toml]", "curio", "matplotlib", "pytest-cov", "trio"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"] +pyqt5 = ["pyqt5"] +pyside6 = ["pyside6"] +test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio", "pytest-cov", "pytest-timeout"] [[package]] name = "ipython" -version = "8.6.0" +version = "8.14.0" description = "IPython: Productive Interactive Computing" -category = "dev" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" +files = [ + {file = "ipython-8.14.0-py3-none-any.whl", hash = "sha256:248aca623f5c99a6635bc3857677b7320b9b8039f99f070ee0d20a5ca5a8e6bf"}, + {file = "ipython-8.14.0.tar.gz", hash = "sha256:1d197b907b6ba441b692c48cf2a3a2de280dc0ac91a3405b39349a50272ca0a1"}, +] [package.dependencies] appnope = {version = "*", markers = "sys_platform == \"darwin\""} @@ -323,13 +1197,13 @@ jedi = ">=0.16" matplotlib-inline = "*" pexpect = {version = ">4.3", markers = "sys_platform != \"win32\""} pickleshare = "*" -prompt-toolkit = ">3.0.1,<3.1.0" +prompt-toolkit = ">=3.0.30,<3.0.37 || >3.0.37,<3.1.0" pygments = ">=2.4.0" stack-data = "*" traitlets = ">=5" [package.extras] -all = ["black", "curio", "docrepr", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.20)", "pandas", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"] +all = ["black", "curio", "docrepr", "ipykernel", "ipyparallel", "ipywidgets", "matplotlib", "matplotlib (!=3.2.0)", "nbconvert", "nbformat", "notebook", "numpy (>=1.21)", "pandas", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "qtconsole", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "trio", "typing-extensions"] black = ["black"] doc = ["docrepr", "ipykernel", "matplotlib", "pytest (<7)", "pytest (<7.1)", "pytest-asyncio", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "stack-data", "testpath", "typing-extensions"] kernel = ["ipykernel"] @@ -339,38 +1213,48 @@ notebook = ["ipywidgets", "notebook"] parallel = ["ipyparallel"] qtconsole = ["qtconsole"] test = ["pytest (<7.1)", "pytest-asyncio", "testpath"] -test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.20)", "pandas", "pytest (<7.1)", "pytest-asyncio", "testpath", "trio"] +test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.21)", "pandas", "pytest (<7.1)", "pytest-asyncio", "testpath", "trio"] [[package]] name = "itsdangerous" version = "2.1.2" description = "Safely pass data to untrusted environments and back." -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, + {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, +] [[package]] name = "jedi" -version = "0.18.1" +version = "0.19.0" description = "An autocompletion tool for Python that can be used for text editors." -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "jedi-0.19.0-py2.py3-none-any.whl", hash = "sha256:cb8ce23fbccff0025e9386b5cf85e892f94c9b822378f8da49970471335ac64e"}, + {file = "jedi-0.19.0.tar.gz", hash = "sha256:bcf9894f1753969cbac8022a8c2eaee06bfa3724e4192470aaffe7eb6272b0c4"}, +] [package.dependencies] -parso = ">=0.8.0,<0.9.0" +parso = ">=0.8.3,<0.9.0" [package.extras] -qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] -testing = ["Django (<3.1)", "colorama", "docopt", "pytest (<7.0.0)"] +docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] +qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] +testing = ["Django (<3.1)", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] [[package]] name = "jinja2" -version = "3.1.2" +version = "3.1.4" description = "A very fast and expressive template engine." -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "jinja2-3.1.4-py3-none-any.whl", hash = "sha256:bc5dd2abb727a5319567b7a813e6a2e7318c39f4f487cfe6c89c6f9c7d25197d"}, + {file = "jinja2-3.1.4.tar.gz", hash = "sha256:4a3aee7acbbe7303aede8e9648d13b8bf88a429282aa6122a993f0ac800cb369"}, +] [package.dependencies] MarkupSafe = ">=2.0" @@ -380,48 +1264,235 @@ i18n = ["Babel (>=2.7)"] [[package]] name = "jupyter-client" -version = "7.4.7" +version = "8.3.0" description = "Jupyter protocol implementation and client libraries" -category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" +files = [ + {file = "jupyter_client-8.3.0-py3-none-any.whl", hash = "sha256:7441af0c0672edc5d28035e92ba5e32fadcfa8a4e608a434c228836a89df6158"}, + {file = "jupyter_client-8.3.0.tar.gz", hash = "sha256:3af69921fe99617be1670399a0b857ad67275eefcfa291e2c81a160b7b650f5f"}, +] [package.dependencies] -entrypoints = "*" -jupyter-core = ">=4.9.2" -nest-asyncio = ">=1.5.4" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" python-dateutil = ">=2.8.2" pyzmq = ">=23.0" tornado = ">=6.2" -traitlets = "*" +traitlets = ">=5.3" [package.extras] -doc = ["ipykernel", "myst-parser", "sphinx (>=1.3.6)", "sphinx-rtd-theme", "sphinxcontrib-github-alt"] -test = ["codecov", "coverage", "ipykernel (>=6.12)", "ipython", "mypy", "pre-commit", "pytest", "pytest-asyncio (>=0.18)", "pytest-cov", "pytest-timeout"] +docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] +test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] [[package]] name = "jupyter-core" -version = "5.0.0" +version = "5.3.1" description = "Jupyter core package. A base package on which Jupyter projects rely." -category = "dev" optional = false python-versions = ">=3.8" +files = [ + {file = "jupyter_core-5.3.1-py3-none-any.whl", hash = "sha256:ae9036db959a71ec1cac33081eeb040a79e681f08ab68b0883e9a676c7a90dce"}, + {file = "jupyter_core-5.3.1.tar.gz", hash = "sha256:5ba5c7938a7f97a6b0481463f7ff0dbac7c15ba48cf46fa4035ca6e838aa1aba"}, +] [package.dependencies] -platformdirs = "*" -pywin32 = {version = ">=1.0", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} -traitlets = "*" +platformdirs = ">=2.5" +pywin32 = {version = ">=300", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} +traitlets = ">=5.3" [package.extras] +docs = ["myst-parser", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"] test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] +[[package]] +name = "jwcrypto" +version = "1.5.6" +description = "Implementation of JOSE Web standards" +optional = false +python-versions = ">= 3.8" +files = [ + {file = "jwcrypto-1.5.6-py3-none-any.whl", hash = "sha256:150d2b0ebbdb8f40b77f543fb44ffd2baeff48788be71f67f03566692fd55789"}, + {file = "jwcrypto-1.5.6.tar.gz", hash = "sha256:771a87762a0c081ae6166958a954f80848820b2ab066937dc8b8379d65b1b039"}, +] + +[package.dependencies] +cryptography = ">=3.4" +typing-extensions = ">=4.5.0" + +[[package]] +name = "kaleido" +version = "0.2.1" +description = "Static image export for web-based visualization libraries with zero dependencies" +optional = false +python-versions = "*" +files = [ + {file = "kaleido-0.2.1-py2.py3-none-macosx_10_11_x86_64.whl", hash = "sha256:ca6f73e7ff00aaebf2843f73f1d3bacde1930ef5041093fe76b83a15785049a7"}, + {file = "kaleido-0.2.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:bb9a5d1f710357d5d432ee240ef6658a6d124c3e610935817b4b42da9c787c05"}, + {file = "kaleido-0.2.1-py2.py3-none-manylinux1_x86_64.whl", hash = "sha256:aa21cf1bf1c78f8fa50a9f7d45e1003c387bd3d6fe0a767cfbbf344b95bdc3a8"}, + {file = "kaleido-0.2.1-py2.py3-none-manylinux2014_aarch64.whl", hash = "sha256:845819844c8082c9469d9c17e42621fbf85c2b237ef8a86ec8a8527f98b6512a"}, + {file = "kaleido-0.2.1-py2.py3-none-win32.whl", hash = "sha256:ecc72635860be616c6b7161807a65c0dbd9b90c6437ac96965831e2e24066552"}, + {file = "kaleido-0.2.1-py2.py3-none-win_amd64.whl", hash = "sha256:4670985f28913c2d063c5734d125ecc28e40810141bdb0a46f15b76c1d45f23c"}, +] + +[[package]] +name = "kaleido" +version = "0.1.0.post1" +description = "Static image export for web-based visualization libraries with zero dependencies" +optional = false +python-versions = "*" +files = [ + {file = "kaleido-0.1.0.post1-py2.py3-none-win32.whl", hash = "sha256:636aedcd89f359f54687b4fe331776a7224f7c31c27d03230e4e13c7cf4cb66a"}, + {file = "kaleido-0.1.0.post1-py2.py3-none-win_amd64.whl", hash = "sha256:2a942606a13c70dfd0a02e092ec140a1083e093ae06661c5e1b1179e477a9e44"}, +] + + +[[package]] +name = "limits" +version = "3.5.0" +description = "Rate limiting utilities" +optional = false +python-versions = ">=3.7" +files = [ + {file = "limits-3.5.0-py3-none-any.whl", hash = "sha256:3ad525faeb7e1c63859ca1cae34c9ed22a8f22c9ea9d96e2f412869f6b36beb9"}, + {file = "limits-3.5.0.tar.gz", hash = "sha256:b728c9ab3c6163997b1d11a51d252d951efd13f0d248ea2403383952498f8a22"}, +] + +[package.dependencies] +deprecated = ">=1.2" +importlib-resources = ">=1.3" +packaging = ">=21,<24" +setuptools = "*" +typing-extensions = "*" + +[package.extras] +all = ["aetcd", "coredis (>=3.4.0,<5)", "emcache (>=0.6.1)", "emcache (>=1)", "etcd3", "motor (>=3,<4)", "pymemcache (>3,<5.0.0)", "pymongo (>4.1,<5)", "redis (>3,!=4.5.2,!=4.5.3,<5.0.0)", "redis (>=4.2.0,!=4.5.2,!=4.5.3)"] +async-etcd = ["aetcd"] +async-memcached = ["emcache (>=0.6.1)", "emcache (>=1)"] +async-mongodb = ["motor (>=3,<4)"] +async-redis = ["coredis (>=3.4.0,<5)"] +etcd = ["etcd3"] +memcached = ["pymemcache (>3,<5.0.0)"] +mongodb = ["pymongo (>4.1,<5)"] +redis = ["redis (>3,!=4.5.2,!=4.5.3,<5.0.0)"] +rediscluster = ["redis (>=4.2.0,!=4.5.2,!=4.5.3)"] + +[[package]] +name = "lxml" +version = "4.9.3" +description = "Powerful and Pythonic XML processing library combining libxml2/libxslt with the ElementTree API." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, != 3.4.*" +files = [ + {file = "lxml-4.9.3-cp27-cp27m-macosx_11_0_x86_64.whl", hash = "sha256:b0a545b46b526d418eb91754565ba5b63b1c0b12f9bd2f808c852d9b4b2f9b5c"}, + {file = "lxml-4.9.3-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:075b731ddd9e7f68ad24c635374211376aa05a281673ede86cbe1d1b3455279d"}, + {file = "lxml-4.9.3-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1e224d5755dba2f4a9498e150c43792392ac9b5380aa1b845f98a1618c94eeef"}, + {file = "lxml-4.9.3-cp27-cp27m-win32.whl", hash = "sha256:2c74524e179f2ad6d2a4f7caf70e2d96639c0954c943ad601a9e146c76408ed7"}, + {file = "lxml-4.9.3-cp27-cp27m-win_amd64.whl", hash = "sha256:4f1026bc732b6a7f96369f7bfe1a4f2290fb34dce00d8644bc3036fb351a4ca1"}, + {file = "lxml-4.9.3-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c0781a98ff5e6586926293e59480b64ddd46282953203c76ae15dbbbf302e8bb"}, + {file = "lxml-4.9.3-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:cef2502e7e8a96fe5ad686d60b49e1ab03e438bd9123987994528febd569868e"}, + {file = "lxml-4.9.3-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:b86164d2cff4d3aaa1f04a14685cbc072efd0b4f99ca5708b2ad1b9b5988a991"}, + {file = "lxml-4.9.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:42871176e7896d5d45138f6d28751053c711ed4d48d8e30b498da155af39aebd"}, + {file = "lxml-4.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:ae8b9c6deb1e634ba4f1930eb67ef6e6bf6a44b6eb5ad605642b2d6d5ed9ce3c"}, + {file = "lxml-4.9.3-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:411007c0d88188d9f621b11d252cce90c4a2d1a49db6c068e3c16422f306eab8"}, + {file = "lxml-4.9.3-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:cd47b4a0d41d2afa3e58e5bf1f62069255aa2fd6ff5ee41604418ca925911d76"}, + {file = "lxml-4.9.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e2cb47860da1f7e9a5256254b74ae331687b9672dfa780eed355c4c9c3dbd23"}, + {file = "lxml-4.9.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1247694b26342a7bf47c02e513d32225ededd18045264d40758abeb3c838a51f"}, + {file = "lxml-4.9.3-cp310-cp310-win32.whl", hash = "sha256:cdb650fc86227eba20de1a29d4b2c1bfe139dc75a0669270033cb2ea3d391b85"}, + {file = "lxml-4.9.3-cp310-cp310-win_amd64.whl", hash = "sha256:97047f0d25cd4bcae81f9ec9dc290ca3e15927c192df17331b53bebe0e3ff96d"}, + {file = "lxml-4.9.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:1f447ea5429b54f9582d4b955f5f1985f278ce5cf169f72eea8afd9502973dd5"}, + {file = "lxml-4.9.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:57d6ba0ca2b0c462f339640d22882acc711de224d769edf29962b09f77129cbf"}, + {file = "lxml-4.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:9767e79108424fb6c3edf8f81e6730666a50feb01a328f4a016464a5893f835a"}, + {file = "lxml-4.9.3-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:71c52db65e4b56b8ddc5bb89fb2e66c558ed9d1a74a45ceb7dcb20c191c3df2f"}, + {file = "lxml-4.9.3-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d73d8ecf8ecf10a3bd007f2192725a34bd62898e8da27eb9d32a58084f93962b"}, + {file = "lxml-4.9.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0a3d3487f07c1d7f150894c238299934a2a074ef590b583103a45002035be120"}, + {file = "lxml-4.9.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e28c51fa0ce5674be9f560c6761c1b441631901993f76700b1b30ca6c8378d6"}, + {file = "lxml-4.9.3-cp311-cp311-win32.whl", hash = "sha256:0bfd0767c5c1de2551a120673b72e5d4b628737cb05414f03c3277bf9bed3305"}, + {file = "lxml-4.9.3-cp311-cp311-win_amd64.whl", hash = "sha256:25f32acefac14ef7bd53e4218fe93b804ef6f6b92ffdb4322bb6d49d94cad2bc"}, + {file = "lxml-4.9.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:d3ff32724f98fbbbfa9f49d82852b159e9784d6094983d9a8b7f2ddaebb063d4"}, + {file = "lxml-4.9.3-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:48d6ed886b343d11493129e019da91d4039826794a3e3027321c56d9e71505be"}, + {file = "lxml-4.9.3-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:9a92d3faef50658dd2c5470af249985782bf754c4e18e15afb67d3ab06233f13"}, + {file = "lxml-4.9.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b4e4bc18382088514ebde9328da057775055940a1f2e18f6ad2d78aa0f3ec5b9"}, + {file = "lxml-4.9.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:fc9b106a1bf918db68619fdcd6d5ad4f972fdd19c01d19bdb6bf63f3589a9ec5"}, + {file = "lxml-4.9.3-cp312-cp312-win_amd64.whl", hash = "sha256:d37017287a7adb6ab77e1c5bee9bcf9660f90ff445042b790402a654d2ad81d8"}, + {file = "lxml-4.9.3-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:56dc1f1ebccc656d1b3ed288f11e27172a01503fc016bcabdcbc0978b19352b7"}, + {file = "lxml-4.9.3-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:578695735c5a3f51569810dfebd05dd6f888147a34f0f98d4bb27e92b76e05c2"}, + {file = "lxml-4.9.3-cp35-cp35m-win32.whl", hash = "sha256:704f61ba8c1283c71b16135caf697557f5ecf3e74d9e453233e4771d68a1f42d"}, + {file = "lxml-4.9.3-cp35-cp35m-win_amd64.whl", hash = "sha256:c41bfca0bd3532d53d16fd34d20806d5c2b1ace22a2f2e4c0008570bf2c58833"}, + {file = "lxml-4.9.3-cp36-cp36m-macosx_11_0_x86_64.whl", hash = "sha256:64f479d719dc9f4c813ad9bb6b28f8390360660b73b2e4beb4cb0ae7104f1c12"}, + {file = "lxml-4.9.3-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:dd708cf4ee4408cf46a48b108fb9427bfa00b9b85812a9262b5c668af2533ea5"}, + {file = "lxml-4.9.3-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c31c7462abdf8f2ac0577d9f05279727e698f97ecbb02f17939ea99ae8daa98"}, + {file = "lxml-4.9.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:e3cd95e10c2610c360154afdc2f1480aea394f4a4f1ea0a5eacce49640c9b190"}, + {file = "lxml-4.9.3-cp36-cp36m-manylinux_2_28_x86_64.whl", hash = "sha256:4930be26af26ac545c3dffb662521d4e6268352866956672231887d18f0eaab2"}, + {file = "lxml-4.9.3-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4aec80cde9197340bc353d2768e2a75f5f60bacda2bab72ab1dc499589b3878c"}, + {file = "lxml-4.9.3-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:14e019fd83b831b2e61baed40cab76222139926b1fb5ed0e79225bc0cae14584"}, + {file = "lxml-4.9.3-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:0c0850c8b02c298d3c7006b23e98249515ac57430e16a166873fc47a5d549287"}, + {file = "lxml-4.9.3-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:aca086dc5f9ef98c512bac8efea4483eb84abbf926eaeedf7b91479feb092458"}, + {file = "lxml-4.9.3-cp36-cp36m-win32.whl", hash = "sha256:50baa9c1c47efcaef189f31e3d00d697c6d4afda5c3cde0302d063492ff9b477"}, + {file = "lxml-4.9.3-cp36-cp36m-win_amd64.whl", hash = "sha256:bef4e656f7d98aaa3486d2627e7d2df1157d7e88e7efd43a65aa5dd4714916cf"}, + {file = "lxml-4.9.3-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:46f409a2d60f634fe550f7133ed30ad5321ae2e6630f13657fb9479506b00601"}, + {file = "lxml-4.9.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:4c28a9144688aef80d6ea666c809b4b0e50010a2aca784c97f5e6bf143d9f129"}, + {file = "lxml-4.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:141f1d1a9b663c679dc524af3ea1773e618907e96075262726c7612c02b149a4"}, + {file = "lxml-4.9.3-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:53ace1c1fd5a74ef662f844a0413446c0629d151055340e9893da958a374f70d"}, + {file = "lxml-4.9.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:17a753023436a18e27dd7769e798ce302963c236bc4114ceee5b25c18c52c693"}, + {file = "lxml-4.9.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:7d298a1bd60c067ea75d9f684f5f3992c9d6766fadbc0bcedd39750bf344c2f4"}, + {file = "lxml-4.9.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:081d32421db5df44c41b7f08a334a090a545c54ba977e47fd7cc2deece78809a"}, + {file = "lxml-4.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:23eed6d7b1a3336ad92d8e39d4bfe09073c31bfe502f20ca5116b2a334f8ec02"}, + {file = "lxml-4.9.3-cp37-cp37m-win32.whl", hash = "sha256:1509dd12b773c02acd154582088820893109f6ca27ef7291b003d0e81666109f"}, + {file = "lxml-4.9.3-cp37-cp37m-win_amd64.whl", hash = "sha256:120fa9349a24c7043854c53cae8cec227e1f79195a7493e09e0c12e29f918e52"}, + {file = "lxml-4.9.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:4d2d1edbca80b510443f51afd8496be95529db04a509bc8faee49c7b0fb6d2cc"}, + {file = "lxml-4.9.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:8d7e43bd40f65f7d97ad8ef5c9b1778943d02f04febef12def25f7583d19baac"}, + {file = "lxml-4.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:71d66ee82e7417828af6ecd7db817913cb0cf9d4e61aa0ac1fde0583d84358db"}, + {file = "lxml-4.9.3-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:6fc3c450eaa0b56f815c7b62f2b7fba7266c4779adcf1cece9e6deb1de7305ce"}, + {file = "lxml-4.9.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:65299ea57d82fb91c7f019300d24050c4ddeb7c5a190e076b5f48a2b43d19c42"}, + {file = "lxml-4.9.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:eadfbbbfb41b44034a4c757fd5d70baccd43296fb894dba0295606a7cf3124aa"}, + {file = "lxml-4.9.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:3e9bdd30efde2b9ccfa9cb5768ba04fe71b018a25ea093379c857c9dad262c40"}, + {file = "lxml-4.9.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:fcdd00edfd0a3001e0181eab3e63bd5c74ad3e67152c84f93f13769a40e073a7"}, + {file = "lxml-4.9.3-cp38-cp38-win32.whl", hash = "sha256:57aba1bbdf450b726d58b2aea5fe47c7875f5afb2c4a23784ed78f19a0462574"}, + {file = "lxml-4.9.3-cp38-cp38-win_amd64.whl", hash = "sha256:92af161ecbdb2883c4593d5ed4815ea71b31fafd7fd05789b23100d081ecac96"}, + {file = "lxml-4.9.3-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:9bb6ad405121241e99a86efff22d3ef469024ce22875a7ae045896ad23ba2340"}, + {file = "lxml-4.9.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:8ed74706b26ad100433da4b9d807eae371efaa266ffc3e9191ea436087a9d6a7"}, + {file = "lxml-4.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:fbf521479bcac1e25a663df882c46a641a9bff6b56dc8b0fafaebd2f66fb231b"}, + {file = "lxml-4.9.3-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:303bf1edce6ced16bf67a18a1cf8339d0db79577eec5d9a6d4a80f0fb10aa2da"}, + {file = "lxml-4.9.3-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:5515edd2a6d1a5a70bfcdee23b42ec33425e405c5b351478ab7dc9347228f96e"}, + {file = "lxml-4.9.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:690dafd0b187ed38583a648076865d8c229661ed20e48f2335d68e2cf7dc829d"}, + {file = "lxml-4.9.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:b6420a005548ad52154c8ceab4a1290ff78d757f9e5cbc68f8c77089acd3c432"}, + {file = "lxml-4.9.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bb3bb49c7a6ad9d981d734ef7c7193bc349ac338776a0360cc671eaee89bcf69"}, + {file = "lxml-4.9.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:d27be7405547d1f958b60837dc4c1007da90b8b23f54ba1f8b728c78fdb19d50"}, + {file = "lxml-4.9.3-cp39-cp39-win32.whl", hash = "sha256:8df133a2ea5e74eef5e8fc6f19b9e085f758768a16e9877a60aec455ed2609b2"}, + {file = "lxml-4.9.3-cp39-cp39-win_amd64.whl", hash = "sha256:4dd9a263e845a72eacb60d12401e37c616438ea2e5442885f65082c276dfb2b2"}, + {file = "lxml-4.9.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:6689a3d7fd13dc687e9102a27e98ef33730ac4fe37795d5036d18b4d527abd35"}, + {file = "lxml-4.9.3-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:f6bdac493b949141b733c5345b6ba8f87a226029cbabc7e9e121a413e49441e0"}, + {file = "lxml-4.9.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:05186a0f1346ae12553d66df1cfce6f251589fea3ad3da4f3ef4e34b2d58c6a3"}, + {file = "lxml-4.9.3-pp37-pypy37_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:c2006f5c8d28dee289f7020f721354362fa304acbaaf9745751ac4006650254b"}, + {file = "lxml-4.9.3-pp38-pypy38_pp73-macosx_11_0_x86_64.whl", hash = "sha256:5c245b783db29c4e4fbbbfc9c5a78be496c9fea25517f90606aa1f6b2b3d5f7b"}, + {file = "lxml-4.9.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:4fb960a632a49f2f089d522f70496640fdf1218f1243889da3822e0a9f5f3ba7"}, + {file = "lxml-4.9.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:50670615eaf97227d5dc60de2dc99fb134a7130d310d783314e7724bf163f75d"}, + {file = "lxml-4.9.3-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9719fe17307a9e814580af1f5c6e05ca593b12fb7e44fe62450a5384dbf61b4b"}, + {file = "lxml-4.9.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:3331bece23c9ee066e0fb3f96c61322b9e0f54d775fccefff4c38ca488de283a"}, + {file = "lxml-4.9.3-pp39-pypy39_pp73-macosx_11_0_x86_64.whl", hash = "sha256:ed667f49b11360951e201453fc3967344d0d0263aa415e1619e85ae7fd17b4e0"}, + {file = "lxml-4.9.3-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_24_i686.whl", hash = "sha256:8b77946fd508cbf0fccd8e400a7f71d4ac0e1595812e66025bac475a8e811694"}, + {file = "lxml-4.9.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:e4da8ca0c0c0aea88fd46be8e44bd49716772358d648cce45fe387f7b92374a7"}, + {file = "lxml-4.9.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:fe4bda6bd4340caa6e5cf95e73f8fea5c4bfc55763dd42f1b50a94c1b4a2fbd4"}, + {file = "lxml-4.9.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:f3df3db1d336b9356dd3112eae5f5c2b8b377f3bc826848567f10bfddfee77e9"}, + {file = "lxml-4.9.3.tar.gz", hash = "sha256:48628bd53a426c9eb9bc066a923acaa0878d1e86129fd5359aee99285f4eed9c"}, +] + +[package.extras] +cssselect = ["cssselect (>=0.7)"] +html5 = ["html5lib"] +htmlsoup = ["BeautifulSoup4"] +source = ["Cython (>=0.29.35)"] + [[package]] name = "mako" version = "1.2.4" description = "A super-fast templating language that borrows the best ideas from the existing templating languages." -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "Mako-1.2.4-py3-none-any.whl", hash = "sha256:c97c79c018b9165ac9922ae4f32da095ffd3c4e6872b45eded42926deea46818"}, + {file = "Mako-1.2.4.tar.gz", hash = "sha256:d60a3903dc3bb01a18ad6a89cdbe2e4eadc69c0bc8ef1e3773ba53d44c3f7a34"}, +] [package.dependencies] MarkupSafe = ">=0.9.2" @@ -433,19 +1504,83 @@ testing = ["pytest"] [[package]] name = "markupsafe" -version = "2.1.1" +version = "2.1.3" description = "Safely add untrusted strings to HTML/XML markup." -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cd0f502fe016460680cd20aaa5a76d241d6f35a1c3350c474bac1273803893fa"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e09031c87a1e51556fdcb46e5bd4f59dfb743061cf93c4d6831bf894f125eb57"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:68e78619a61ecf91e76aa3e6e8e33fc4894a2bebe93410754bd28fce0a8a4f9f"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65c1a9bcdadc6c28eecee2c119465aebff8f7a584dd719facdd9e825ec61ab52"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:525808b8019e36eb524b8c68acdd63a37e75714eac50e988180b169d64480a00"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:962f82a3086483f5e5f64dbad880d31038b698494799b097bc59c2edf392fce6"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:aa7bd130efab1c280bed0f45501b7c8795f9fdbeb02e965371bbef3523627779"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c9c804664ebe8f83a211cace637506669e7890fec1b4195b505c214e50dd4eb7"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win32.whl", hash = "sha256:10bbfe99883db80bdbaff2dcf681dfc6533a614f700da1287707e8a5d78a8431"}, + {file = "MarkupSafe-2.1.3-cp310-cp310-win_amd64.whl", hash = "sha256:1577735524cdad32f9f694208aa75e422adba74f1baee7551620e43a3141f559"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ad9e82fb8f09ade1c3e1b996a6337afac2b8b9e365f926f5a61aacc71adc5b3c"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3c0fae6c3be832a0a0473ac912810b2877c8cb9d76ca48de1ed31e1c68386575"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b076b6226fb84157e3f7c971a47ff3a679d837cf338547532ab866c57930dbee"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfce63a9e7834b12b87c64d6b155fdd9b3b96191b6bd334bf37db7ff1fe457f2"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:338ae27d6b8745585f87218a3f23f1512dbf52c26c28e322dbe54bcede54ccb9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e4dd52d80b8c83fdce44e12478ad2e85c64ea965e75d66dbeafb0a3e77308fcc"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:df0be2b576a7abbf737b1575f048c23fb1d769f267ec4358296f31c2479db8f9"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, + {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, + {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ca379055a47383d02a5400cb0d110cef0a776fc644cda797db0c5696cfd7e18e"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7ff0f54cb4ff66dd38bebd335a38e2c22c41a8ee45aa608efc890ac3e3931bc"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c011a4149cfbcf9f03994ec2edffcb8b1dc2d2aede7ca243746df97a5d41ce48"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:56d9f2ecac662ca1611d183feb03a3fa4406469dafe241673d521dd5ae92a155"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win32.whl", hash = "sha256:8758846a7e80910096950b67071243da3e5a20ed2546e6392603c096778d48e0"}, + {file = "MarkupSafe-2.1.3-cp37-cp37m-win_amd64.whl", hash = "sha256:787003c0ddb00500e49a10f2844fac87aa6ce977b90b0feaaf9de23c22508b24"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:2ef12179d3a291be237280175b542c07a36e7f60718296278d8593d21ca937d4"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2c1b19b3aaacc6e57b7e25710ff571c24d6c3613a45e905b1fde04d691b98ee0"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8afafd99945ead6e075b973fefa56379c5b5c53fd8937dad92c662da5d8fd5ee"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c41976a29d078bb235fea9b2ecd3da465df42a562910f9022f1a03107bd02be"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d080e0a5eb2529460b30190fcfcc4199bd7f827663f858a226a81bc27beaa97e"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:69c0f17e9f5a7afdf2cc9fb2d1ce6aabdb3bafb7f38017c0b77862bcec2bbad8"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:504b320cd4b7eff6f968eddf81127112db685e81f7e36e75f9f84f0df46041c3"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42de32b22b6b804f42c5d98be4f7e5e977ecdd9ee9b660fda1a3edf03b11792d"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win32.whl", hash = "sha256:ceb01949af7121f9fc39f7d27f91be8546f3fb112c608bc4029aef0bab86a2a5"}, + {file = "MarkupSafe-2.1.3-cp38-cp38-win_amd64.whl", hash = "sha256:1b40069d487e7edb2676d3fbdb2b0829ffa2cd63a2ec26c4938b2d34391b4ecc"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:8023faf4e01efadfa183e863fefde0046de576c6f14659e8782065bcece22198"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6b2b56950d93e41f33b4223ead100ea0fe11f8e6ee5f641eb753ce4b77a7042b"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9dcdfd0eaf283af041973bff14a2e143b8bd64e069f4c383416ecd79a81aab58"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05fb21170423db021895e1ea1e1f3ab3adb85d1c2333cbc2310f2a26bc77272e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:282c2cb35b5b673bbcadb33a585408104df04f14b2d9b01d4c345a3b92861c2c"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ab4a0df41e7c16a1392727727e7998a467472d0ad65f3ad5e6e765015df08636"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7ef3cb2ebbf91e330e3bb937efada0edd9003683db6b57bb108c4001f37a02ea"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:0a4e4a1aff6c7ac4cd55792abf96c915634c2b97e3cc1c7129578aa68ebd754e"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win32.whl", hash = "sha256:fec21693218efe39aa7f8599346e90c705afa52c5b31ae019b2e57e8f6542bb2"}, + {file = "MarkupSafe-2.1.3-cp39-cp39-win_amd64.whl", hash = "sha256:3fd4abcb888d15a94f32b75d8fd18ee162ca0c064f35b11134be77050296d6ba"}, + {file = "MarkupSafe-2.1.3.tar.gz", hash = "sha256:af598ed32d6ae86f1b747b82783958b1a4ab8f617b06fe68795c7f026abbdcad"}, +] [[package]] name = "matplotlib-inline" version = "0.1.6" description = "Inline Matplotlib backend for Jupyter" -category = "dev" optional = false python-versions = ">=3.5" +files = [ + {file = "matplotlib-inline-0.1.6.tar.gz", hash = "sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304"}, + {file = "matplotlib_inline-0.1.6-py3-none-any.whl", hash = "sha256:f1f41aab5328aa5aaea9b16d083b128102f8712542f819fe7e6a420ff581b311"}, +] [package.dependencies] traitlets = "*" @@ -454,74 +1589,300 @@ traitlets = "*" name = "mccabe" version = "0.7.0" description = "McCabe checker, plugin for flake8" -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"}, + {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, +] + +[[package]] +name = "multidict" +version = "6.0.5" +description = "multidict implementation" +optional = false +python-versions = ">=3.7" +files = [ + {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9"}, + {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604"}, + {file = "multidict-6.0.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:411bf8515f3be9813d06004cac41ccf7d1cd46dfe233705933dd163b60e37600"}, + {file = "multidict-6.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d147090048129ce3c453f0292e7697d333db95e52616b3793922945804a433c"}, + {file = "multidict-6.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:215ed703caf15f578dca76ee6f6b21b7603791ae090fbf1ef9d865571039ade5"}, + {file = "multidict-6.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c6390cf87ff6234643428991b7359b5f59cc15155695deb4eda5c777d2b880f"}, + {file = "multidict-6.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21fd81c4ebdb4f214161be351eb5bcf385426bf023041da2fd9e60681f3cebae"}, + {file = "multidict-6.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3cc2ad10255f903656017363cd59436f2111443a76f996584d1077e43ee51182"}, + {file = "multidict-6.0.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:6939c95381e003f54cd4c5516740faba40cf5ad3eeff460c3ad1d3e0ea2549bf"}, + {file = "multidict-6.0.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:220dd781e3f7af2c2c1053da9fa96d9cf3072ca58f057f4c5adaaa1cab8fc442"}, + {file = "multidict-6.0.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:766c8f7511df26d9f11cd3a8be623e59cca73d44643abab3f8c8c07620524e4a"}, + {file = "multidict-6.0.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:fe5d7785250541f7f5019ab9cba2c71169dc7d74d0f45253f8313f436458a4ef"}, + {file = "multidict-6.0.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c1c1496e73051918fcd4f58ff2e0f2f3066d1c76a0c6aeffd9b45d53243702cc"}, + {file = "multidict-6.0.5-cp310-cp310-win32.whl", hash = "sha256:7afcdd1fc07befad18ec4523a782cde4e93e0a2bf71239894b8d61ee578c1319"}, + {file = "multidict-6.0.5-cp310-cp310-win_amd64.whl", hash = "sha256:99f60d34c048c5c2fabc766108c103612344c46e35d4ed9ae0673d33c8fb26e8"}, + {file = "multidict-6.0.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f285e862d2f153a70586579c15c44656f888806ed0e5b56b64489afe4a2dbfba"}, + {file = "multidict-6.0.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:53689bb4e102200a4fafa9de9c7c3c212ab40a7ab2c8e474491914d2305f187e"}, + {file = "multidict-6.0.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:612d1156111ae11d14afaf3a0669ebf6c170dbb735e510a7438ffe2369a847fd"}, + {file = "multidict-6.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7be7047bd08accdb7487737631d25735c9a04327911de89ff1b26b81745bd4e3"}, + {file = "multidict-6.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de170c7b4fe6859beb8926e84f7d7d6c693dfe8e27372ce3b76f01c46e489fcf"}, + {file = "multidict-6.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:04bde7a7b3de05732a4eb39c94574db1ec99abb56162d6c520ad26f83267de29"}, + {file = "multidict-6.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:85f67aed7bb647f93e7520633d8f51d3cbc6ab96957c71272b286b2f30dc70ed"}, + {file = "multidict-6.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:425bf820055005bfc8aa9a0b99ccb52cc2f4070153e34b701acc98d201693733"}, + {file = "multidict-6.0.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d3eb1ceec286eba8220c26f3b0096cf189aea7057b6e7b7a2e60ed36b373b77f"}, + {file = "multidict-6.0.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7901c05ead4b3fb75113fb1dd33eb1253c6d3ee37ce93305acd9d38e0b5f21a4"}, + {file = "multidict-6.0.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e0e79d91e71b9867c73323a3444724d496c037e578a0e1755ae159ba14f4f3d1"}, + {file = "multidict-6.0.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:29bfeb0dff5cb5fdab2023a7a9947b3b4af63e9c47cae2a10ad58394b517fddc"}, + {file = "multidict-6.0.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e030047e85cbcedbfc073f71836d62dd5dadfbe7531cae27789ff66bc551bd5e"}, + {file = "multidict-6.0.5-cp311-cp311-win32.whl", hash = "sha256:2f4848aa3baa109e6ab81fe2006c77ed4d3cd1e0ac2c1fbddb7b1277c168788c"}, + {file = "multidict-6.0.5-cp311-cp311-win_amd64.whl", hash = "sha256:2faa5ae9376faba05f630d7e5e6be05be22913782b927b19d12b8145968a85ea"}, + {file = "multidict-6.0.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e"}, + {file = "multidict-6.0.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b"}, + {file = "multidict-6.0.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5"}, + {file = "multidict-6.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450"}, + {file = "multidict-6.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496"}, + {file = "multidict-6.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a"}, + {file = "multidict-6.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226"}, + {file = "multidict-6.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271"}, + {file = "multidict-6.0.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb"}, + {file = "multidict-6.0.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef"}, + {file = "multidict-6.0.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24"}, + {file = "multidict-6.0.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6"}, + {file = "multidict-6.0.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda"}, + {file = "multidict-6.0.5-cp312-cp312-win32.whl", hash = "sha256:9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5"}, + {file = "multidict-6.0.5-cp312-cp312-win_amd64.whl", hash = "sha256:01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556"}, + {file = "multidict-6.0.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:19fe01cea168585ba0f678cad6f58133db2aa14eccaf22f88e4a6dccadfad8b3"}, + {file = "multidict-6.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6bf7a982604375a8d49b6cc1b781c1747f243d91b81035a9b43a2126c04766f5"}, + {file = "multidict-6.0.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:107c0cdefe028703fb5dafe640a409cb146d44a6ae201e55b35a4af8e95457dd"}, + {file = "multidict-6.0.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:403c0911cd5d5791605808b942c88a8155c2592e05332d2bf78f18697a5fa15e"}, + {file = "multidict-6.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aeaf541ddbad8311a87dd695ed9642401131ea39ad7bc8cf3ef3967fd093b626"}, + {file = "multidict-6.0.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e4972624066095e52b569e02b5ca97dbd7a7ddd4294bf4e7247d52635630dd83"}, + {file = "multidict-6.0.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d946b0a9eb8aaa590df1fe082cee553ceab173e6cb5b03239716338629c50c7a"}, + {file = "multidict-6.0.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b55358304d7a73d7bdf5de62494aaf70bd33015831ffd98bc498b433dfe5b10c"}, + {file = "multidict-6.0.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:a3145cb08d8625b2d3fee1b2d596a8766352979c9bffe5d7833e0503d0f0b5e5"}, + {file = "multidict-6.0.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:d65f25da8e248202bd47445cec78e0025c0fe7582b23ec69c3b27a640dd7a8e3"}, + {file = "multidict-6.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:c9bf56195c6bbd293340ea82eafd0071cb3d450c703d2c93afb89f93b8386ccc"}, + {file = "multidict-6.0.5-cp37-cp37m-win32.whl", hash = "sha256:69db76c09796b313331bb7048229e3bee7928eb62bab5e071e9f7fcc4879caee"}, + {file = "multidict-6.0.5-cp37-cp37m-win_amd64.whl", hash = "sha256:fce28b3c8a81b6b36dfac9feb1de115bab619b3c13905b419ec71d03a3fc1423"}, + {file = "multidict-6.0.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:76f067f5121dcecf0d63a67f29080b26c43c71a98b10c701b0677e4a065fbd54"}, + {file = "multidict-6.0.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b82cc8ace10ab5bd93235dfaab2021c70637005e1ac787031f4d1da63d493c1d"}, + {file = "multidict-6.0.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5cb241881eefd96b46f89b1a056187ea8e9ba14ab88ba632e68d7a2ecb7aadf7"}, + {file = "multidict-6.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8e94e6912639a02ce173341ff62cc1201232ab86b8a8fcc05572741a5dc7d93"}, + {file = "multidict-6.0.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09a892e4a9fb47331da06948690ae38eaa2426de97b4ccbfafbdcbe5c8f37ff8"}, + {file = "multidict-6.0.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55205d03e8a598cfc688c71ca8ea5f66447164efff8869517f175ea632c7cb7b"}, + {file = "multidict-6.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37b15024f864916b4951adb95d3a80c9431299080341ab9544ed148091b53f50"}, + {file = "multidict-6.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2a1dee728b52b33eebff5072817176c172050d44d67befd681609b4746e1c2e"}, + {file = "multidict-6.0.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:edd08e6f2f1a390bf137080507e44ccc086353c8e98c657e666c017718561b89"}, + {file = "multidict-6.0.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:60d698e8179a42ec85172d12f50b1668254628425a6bd611aba022257cac1386"}, + {file = "multidict-6.0.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:3d25f19500588cbc47dc19081d78131c32637c25804df8414463ec908631e453"}, + {file = "multidict-6.0.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:4cc0ef8b962ac7a5e62b9e826bd0cd5040e7d401bc45a6835910ed699037a461"}, + {file = "multidict-6.0.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:eca2e9d0cc5a889850e9bbd68e98314ada174ff6ccd1129500103df7a94a7a44"}, + {file = "multidict-6.0.5-cp38-cp38-win32.whl", hash = "sha256:4a6a4f196f08c58c59e0b8ef8ec441d12aee4125a7d4f4fef000ccb22f8d7241"}, + {file = "multidict-6.0.5-cp38-cp38-win_amd64.whl", hash = "sha256:0275e35209c27a3f7951e1ce7aaf93ce0d163b28948444bec61dd7badc6d3f8c"}, + {file = "multidict-6.0.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e7be68734bd8c9a513f2b0cfd508802d6609da068f40dc57d4e3494cefc92929"}, + {file = "multidict-6.0.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:1d9ea7a7e779d7a3561aade7d596649fbecfa5c08a7674b11b423783217933f9"}, + {file = "multidict-6.0.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ea1456df2a27c73ce51120fa2f519f1bea2f4a03a917f4a43c8707cf4cbbae1a"}, + {file = "multidict-6.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf590b134eb70629e350691ecca88eac3e3b8b3c86992042fb82e3cb1830d5e1"}, + {file = "multidict-6.0.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5c0631926c4f58e9a5ccce555ad7747d9a9f8b10619621f22f9635f069f6233e"}, + {file = "multidict-6.0.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dce1c6912ab9ff5f179eaf6efe7365c1f425ed690b03341911bf4939ef2f3046"}, + {file = "multidict-6.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0868d64af83169e4d4152ec612637a543f7a336e4a307b119e98042e852ad9c"}, + {file = "multidict-6.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:141b43360bfd3bdd75f15ed811850763555a251e38b2405967f8e25fb43f7d40"}, + {file = "multidict-6.0.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7df704ca8cf4a073334e0427ae2345323613e4df18cc224f647f251e5e75a527"}, + {file = "multidict-6.0.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6214c5a5571802c33f80e6c84713b2c79e024995b9c5897f794b43e714daeec9"}, + {file = "multidict-6.0.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:cd6c8fca38178e12c00418de737aef1261576bd1b6e8c6134d3e729a4e858b38"}, + {file = "multidict-6.0.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:e02021f87a5b6932fa6ce916ca004c4d441509d33bbdbeca70d05dff5e9d2479"}, + {file = "multidict-6.0.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ebd8d160f91a764652d3e51ce0d2956b38efe37c9231cd82cfc0bed2e40b581c"}, + {file = "multidict-6.0.5-cp39-cp39-win32.whl", hash = "sha256:04da1bb8c8dbadf2a18a452639771951c662c5ad03aefe4884775454be322c9b"}, + {file = "multidict-6.0.5-cp39-cp39-win_amd64.whl", hash = "sha256:d6f6d4f185481c9669b9447bf9d9cf3b95a0e9df9d169bbc17e363b7d5487755"}, + {file = "multidict-6.0.5-py3-none-any.whl", hash = "sha256:0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7"}, + {file = "multidict-6.0.5.tar.gz", hash = "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da"}, +] [[package]] name = "mypy-extensions" -version = "0.4.3" -description = "Experimental type system extensions for programs checked with the mypy typechecker." -category = "dev" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." optional = false -python-versions = "*" +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] [[package]] name = "nest-asyncio" -version = "1.5.6" +version = "1.5.7" description = "Patch asyncio to allow nested event loops" -category = "dev" optional = false python-versions = ">=3.5" +files = [ + {file = "nest_asyncio-1.5.7-py3-none-any.whl", hash = "sha256:5301c82941b550b3123a1ea772ba9a1c80bad3a182be8c1a5ae6ad3be57a9657"}, + {file = "nest_asyncio-1.5.7.tar.gz", hash = "sha256:6a80f7b98f24d9083ed24608977c09dd608d83f91cccc24c9d2cba6d10e01c10"}, +] [[package]] name = "numpy" -version = "1.23.5" -description = "NumPy is the fundamental package for array computing with Python." -category = "main" -optional = false -python-versions = ">=3.8" +version = "1.25.2" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "numpy-1.25.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:db3ccc4e37a6873045580d413fe79b68e47a681af8db2e046f1dacfa11f86eb3"}, + {file = "numpy-1.25.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:90319e4f002795ccfc9050110bbbaa16c944b1c37c0baeea43c5fb881693ae1f"}, + {file = "numpy-1.25.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dfe4a913e29b418d096e696ddd422d8a5d13ffba4ea91f9f60440a3b759b0187"}, + {file = "numpy-1.25.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f08f2e037bba04e707eebf4bc934f1972a315c883a9e0ebfa8a7756eabf9e357"}, + {file = "numpy-1.25.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bec1e7213c7cb00d67093247f8c4db156fd03075f49876957dca4711306d39c9"}, + {file = "numpy-1.25.2-cp310-cp310-win32.whl", hash = "sha256:7dc869c0c75988e1c693d0e2d5b26034644399dd929bc049db55395b1379e044"}, + {file = "numpy-1.25.2-cp310-cp310-win_amd64.whl", hash = "sha256:834b386f2b8210dca38c71a6e0f4fd6922f7d3fcff935dbe3a570945acb1b545"}, + {file = "numpy-1.25.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5462d19336db4560041517dbb7759c21d181a67cb01b36ca109b2ae37d32418"}, + {file = "numpy-1.25.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c5652ea24d33585ea39eb6a6a15dac87a1206a692719ff45d53c5282e66d4a8f"}, + {file = "numpy-1.25.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d60fbae8e0019865fc4784745814cff1c421df5afee233db6d88ab4f14655a2"}, + {file = "numpy-1.25.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e7f0f7f6d0eee8364b9a6304c2845b9c491ac706048c7e8cf47b83123b8dbf"}, + {file = "numpy-1.25.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bb33d5a1cf360304754913a350edda36d5b8c5331a8237268c48f91253c3a364"}, + {file = "numpy-1.25.2-cp311-cp311-win32.whl", hash = "sha256:5883c06bb92f2e6c8181df7b39971a5fb436288db58b5a1c3967702d4278691d"}, + {file = "numpy-1.25.2-cp311-cp311-win_amd64.whl", hash = "sha256:5c97325a0ba6f9d041feb9390924614b60b99209a71a69c876f71052521d42a4"}, + {file = "numpy-1.25.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b79e513d7aac42ae918db3ad1341a015488530d0bb2a6abcbdd10a3a829ccfd3"}, + {file = "numpy-1.25.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:eb942bfb6f84df5ce05dbf4b46673ffed0d3da59f13635ea9b926af3deb76926"}, + {file = "numpy-1.25.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e0746410e73384e70d286f93abf2520035250aad8c5714240b0492a7302fdca"}, + {file = "numpy-1.25.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7806500e4f5bdd04095e849265e55de20d8cc4b661b038957354327f6d9b295"}, + {file = "numpy-1.25.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8b77775f4b7df768967a7c8b3567e309f617dd5e99aeb886fa14dc1a0791141f"}, + {file = "numpy-1.25.2-cp39-cp39-win32.whl", hash = "sha256:2792d23d62ec51e50ce4d4b7d73de8f67a2fd3ea710dcbc8563a51a03fb07b01"}, + {file = "numpy-1.25.2-cp39-cp39-win_amd64.whl", hash = "sha256:76b4115d42a7dfc5d485d358728cdd8719be33cc5ec6ec08632a5d6fca2ed380"}, + {file = "numpy-1.25.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1a1329e26f46230bf77b02cc19e900db9b52f398d6722ca853349a782d4cff55"}, + {file = "numpy-1.25.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c3abc71e8b6edba80a01a52e66d83c5d14433cbcd26a40c329ec7ed09f37901"}, + {file = "numpy-1.25.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:1b9735c27cea5d995496f46a8b1cd7b408b3f34b6d50459d9ac8fe3a20cc17bf"}, + {file = "numpy-1.25.2.tar.gz", hash = "sha256:fd608e19c8d7c55021dffd43bfe5492fab8cc105cc8986f813f8c3c048b38760"}, +] [[package]] name = "openpyxl" -version = "3.0.10" +version = "3.1.2" description = "A Python library to read/write Excel 2010 xlsx/xlsm files" -category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "openpyxl-3.1.2-py2.py3-none-any.whl", hash = "sha256:f91456ead12ab3c6c2e9491cf33ba6d08357d802192379bb482f1033ade496f5"}, + {file = "openpyxl-3.1.2.tar.gz", hash = "sha256:a6f5977418eff3b2d5500d54d9db50c8277a368436f4e4f8ddb1be3422870184"}, +] [package.dependencies] et-xmlfile = "*" [[package]] name = "orjson" -version = "3.8.2" +version = "3.9.5" description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "orjson-3.9.5-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ad6845912a71adcc65df7c8a7f2155eba2096cf03ad2c061c93857de70d699ad"}, + {file = "orjson-3.9.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e298e0aacfcc14ef4476c3f409e85475031de24e5b23605a465e9bf4b2156273"}, + {file = "orjson-3.9.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:83c9939073281ef7dd7c5ca7f54cceccb840b440cec4b8a326bda507ff88a0a6"}, + {file = "orjson-3.9.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e174cc579904a48ee1ea3acb7045e8a6c5d52c17688dfcb00e0e842ec378cabf"}, + {file = "orjson-3.9.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f8d51702f42c785b115401e1d64a27a2ea767ae7cf1fb8edaa09c7cf1571c660"}, + {file = "orjson-3.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f13d61c0c7414ddee1ef4d0f303e2222f8cced5a2e26d9774751aecd72324c9e"}, + {file = "orjson-3.9.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d748cc48caf5a91c883d306ab648df1b29e16b488c9316852844dd0fd000d1c2"}, + {file = "orjson-3.9.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bd19bc08fa023e4c2cbf8294ad3f2b8922f4de9ba088dbc71e6b268fdf54591c"}, + {file = "orjson-3.9.5-cp310-none-win32.whl", hash = "sha256:5793a21a21bf34e1767e3d61a778a25feea8476dcc0bdf0ae1bc506dc34561ea"}, + {file = "orjson-3.9.5-cp310-none-win_amd64.whl", hash = "sha256:2bcec0b1024d0031ab3eab7a8cb260c8a4e4a5e35993878a2da639d69cdf6a65"}, + {file = "orjson-3.9.5-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8547b95ca0e2abd17e1471973e6d676f1d8acedd5f8fb4f739e0612651602d66"}, + {file = "orjson-3.9.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87ce174d6a38d12b3327f76145acbd26f7bc808b2b458f61e94d83cd0ebb4d76"}, + {file = "orjson-3.9.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a960bb1bc9a964d16fcc2d4af5a04ce5e4dfddca84e3060c35720d0a062064fe"}, + {file = "orjson-3.9.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1a7aa5573a949760d6161d826d34dc36db6011926f836851fe9ccb55b5a7d8e8"}, + {file = "orjson-3.9.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8b2852afca17d7eea85f8e200d324e38c851c96598ac7b227e4f6c4e59fbd3df"}, + {file = "orjson-3.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa185959c082475288da90f996a82e05e0c437216b96f2a8111caeb1d54ef926"}, + {file = "orjson-3.9.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:89c9332695b838438ea4b9a482bce8ffbfddde4df92750522d928fb00b7b8dce"}, + {file = "orjson-3.9.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2493f1351a8f0611bc26e2d3d407efb873032b4f6b8926fed8cfed39210ca4ba"}, + {file = "orjson-3.9.5-cp311-none-win32.whl", hash = "sha256:ffc544e0e24e9ae69301b9a79df87a971fa5d1c20a6b18dca885699709d01be0"}, + {file = "orjson-3.9.5-cp311-none-win_amd64.whl", hash = "sha256:89670fe2732e3c0c54406f77cad1765c4c582f67b915c74fda742286809a0cdc"}, + {file = "orjson-3.9.5-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:15df211469625fa27eced4aa08dc03e35f99c57d45a33855cc35f218ea4071b8"}, + {file = "orjson-3.9.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9f17c59fe6c02bc5f89ad29edb0253d3059fe8ba64806d789af89a45c35269a"}, + {file = "orjson-3.9.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ca6b96659c7690773d8cebb6115c631f4a259a611788463e9c41e74fa53bf33f"}, + {file = "orjson-3.9.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a26fafe966e9195b149950334bdbe9026eca17fe8ffe2d8fa87fdc30ca925d30"}, + {file = "orjson-3.9.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9006b1eb645ecf460da067e2dd17768ccbb8f39b01815a571bfcfab7e8da5e52"}, + {file = "orjson-3.9.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ebfdbf695734b1785e792a1315e41835ddf2a3e907ca0e1c87a53f23006ce01d"}, + {file = "orjson-3.9.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:4a3943234342ab37d9ed78fb0a8f81cd4b9532f67bf2ac0d3aa45fa3f0a339f3"}, + {file = "orjson-3.9.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e6762755470b5c82f07b96b934af32e4d77395a11768b964aaa5eb092817bc31"}, + {file = "orjson-3.9.5-cp312-none-win_amd64.whl", hash = "sha256:c74df28749c076fd6e2157190df23d43d42b2c83e09d79b51694ee7315374ad5"}, + {file = "orjson-3.9.5-cp37-cp37m-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:88e18a74d916b74f00d0978d84e365c6bf0e7ab846792efa15756b5fb2f7d49d"}, + {file = "orjson-3.9.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d28514b5b6dfaf69097be70d0cf4f1407ec29d0f93e0b4131bf9cc8fd3f3e374"}, + {file = "orjson-3.9.5-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:25b81aca8c7be61e2566246b6a0ca49f8aece70dd3f38c7f5c837f398c4cb142"}, + {file = "orjson-3.9.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:385c1c713b1e47fd92e96cf55fd88650ac6dfa0b997e8aa7ecffd8b5865078b1"}, + {file = "orjson-3.9.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9850c03a8e42fba1a508466e6a0f99472fd2b4a5f30235ea49b2a1b32c04c11"}, + {file = "orjson-3.9.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4449f84bbb13bcef493d8aa669feadfced0f7c5eea2d0d88b5cc21f812183af8"}, + {file = "orjson-3.9.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:86127bf194f3b873135e44ce5dc9212cb152b7e06798d5667a898a00f0519be4"}, + {file = "orjson-3.9.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:0abcd039f05ae9ab5b0ff11624d0b9e54376253b7d3217a358d09c3edf1d36f7"}, + {file = "orjson-3.9.5-cp37-none-win32.whl", hash = "sha256:10cc8ad5ff7188efcb4bec196009d61ce525a4e09488e6d5db41218c7fe4f001"}, + {file = "orjson-3.9.5-cp37-none-win_amd64.whl", hash = "sha256:ff27e98532cb87379d1a585837d59b187907228268e7b0a87abe122b2be6968e"}, + {file = "orjson-3.9.5-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5bfa79916ef5fef75ad1f377e54a167f0de334c1fa4ebb8d0224075f3ec3d8c0"}, + {file = "orjson-3.9.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e87dfa6ac0dae764371ab19b35eaaa46dfcb6ef2545dfca03064f21f5d08239f"}, + {file = "orjson-3.9.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50ced24a7b23058b469ecdb96e36607fc611cbaee38b58e62a55c80d1b3ad4e1"}, + {file = "orjson-3.9.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b1b74ea2a3064e1375da87788897935832e806cc784de3e789fd3c4ab8eb3fa5"}, + {file = "orjson-3.9.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7cb961efe013606913d05609f014ad43edfaced82a576e8b520a5574ce3b2b9"}, + {file = "orjson-3.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1225d2d5ee76a786bda02f8c5e15017462f8432bb960de13d7c2619dba6f0275"}, + {file = "orjson-3.9.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:f39f4b99199df05c7ecdd006086259ed25886cdbd7b14c8cdb10c7675cfcca7d"}, + {file = "orjson-3.9.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:a461dc9fb60cac44f2d3218c36a0c1c01132314839a0e229d7fb1bba69b810d8"}, + {file = "orjson-3.9.5-cp38-none-win32.whl", hash = "sha256:dedf1a6173748202df223aea29de814b5836732a176b33501375c66f6ab7d822"}, + {file = "orjson-3.9.5-cp38-none-win_amd64.whl", hash = "sha256:fa504082f53efcbacb9087cc8676c163237beb6e999d43e72acb4bb6f0db11e6"}, + {file = "orjson-3.9.5-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6900f0248edc1bec2a2a3095a78a7e3ef4e63f60f8ddc583687eed162eedfd69"}, + {file = "orjson-3.9.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17404333c40047888ac40bd8c4d49752a787e0a946e728a4e5723f111b6e55a5"}, + {file = "orjson-3.9.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0eefb7cfdd9c2bc65f19f974a5d1dfecbac711dae91ed635820c6b12da7a3c11"}, + {file = "orjson-3.9.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:68c78b2a3718892dc018adbc62e8bab6ef3c0d811816d21e6973dee0ca30c152"}, + {file = "orjson-3.9.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:591ad7d9e4a9f9b104486ad5d88658c79ba29b66c5557ef9edf8ca877a3f8d11"}, + {file = "orjson-3.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6cc2cbf302fbb2d0b2c3c142a663d028873232a434d89ce1b2604ebe5cc93ce8"}, + {file = "orjson-3.9.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b26b5aa5e9ee1bad2795b925b3adb1b1b34122cb977f30d89e0a1b3f24d18450"}, + {file = "orjson-3.9.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ef84724f7d29dcfe3aafb1fc5fc7788dca63e8ae626bb9298022866146091a3e"}, + {file = "orjson-3.9.5-cp39-none-win32.whl", hash = "sha256:664cff27f85939059472afd39acff152fbac9a091b7137092cb651cf5f7747b5"}, + {file = "orjson-3.9.5-cp39-none-win_amd64.whl", hash = "sha256:91dda66755795ac6100e303e206b636568d42ac83c156547634256a2e68de694"}, + {file = "orjson-3.9.5.tar.gz", hash = "sha256:6daf5ee0b3cf530b9978cdbf71024f1c16ed4a67d05f6ec435c6e7fe7a52724c"}, +] [[package]] name = "packaging" -version = "21.3" +version = "23.1" description = "Core utilities for Python packages" -category = "dev" optional = false -python-versions = ">=3.6" - -[package.dependencies] -pyparsing = ">=2.0.2,<3.0.5 || >3.0.5" +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] [[package]] name = "pandas" -version = "1.5.1" +version = "1.5.3" description = "Powerful data structures for data analysis, time series, and statistics" -category = "main" optional = false python-versions = ">=3.8" +files = [ + {file = "pandas-1.5.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3749077d86e3a2f0ed51367f30bf5b82e131cc0f14260c4d3e499186fccc4406"}, + {file = "pandas-1.5.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:972d8a45395f2a2d26733eb8d0f629b2f90bebe8e8eddbb8829b180c09639572"}, + {file = "pandas-1.5.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:50869a35cbb0f2e0cd5ec04b191e7b12ed688874bd05dd777c19b28cbea90996"}, + {file = "pandas-1.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3ac844a0fe00bfaeb2c9b51ab1424e5c8744f89860b138434a363b1f620f354"}, + {file = "pandas-1.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a0a56cef15fd1586726dace5616db75ebcfec9179a3a55e78f72c5639fa2a23"}, + {file = "pandas-1.5.3-cp310-cp310-win_amd64.whl", hash = "sha256:478ff646ca42b20376e4ed3fa2e8d7341e8a63105586efe54fa2508ee087f328"}, + {file = "pandas-1.5.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:6973549c01ca91ec96199e940495219c887ea815b2083722821f1d7abfa2b4dc"}, + {file = "pandas-1.5.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c39a8da13cede5adcd3be1182883aea1c925476f4e84b2807a46e2775306305d"}, + {file = "pandas-1.5.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f76d097d12c82a535fda9dfe5e8dd4127952b45fea9b0276cb30cca5ea313fbc"}, + {file = "pandas-1.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e474390e60ed609cec869b0da796ad94f420bb057d86784191eefc62b65819ae"}, + {file = "pandas-1.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f2b952406a1588ad4cad5b3f55f520e82e902388a6d5a4a91baa8d38d23c7f6"}, + {file = "pandas-1.5.3-cp311-cp311-win_amd64.whl", hash = "sha256:bc4c368f42b551bf72fac35c5128963a171b40dce866fb066540eeaf46faa003"}, + {file = "pandas-1.5.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:14e45300521902689a81f3f41386dc86f19b8ba8dd5ac5a3c7010ef8d2932813"}, + {file = "pandas-1.5.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9842b6f4b8479e41968eced654487258ed81df7d1c9b7b870ceea24ed9459b31"}, + {file = "pandas-1.5.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:26d9c71772c7afb9d5046e6e9cf42d83dd147b5cf5bcb9d97252077118543792"}, + {file = "pandas-1.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fbcb19d6fceb9e946b3e23258757c7b225ba450990d9ed63ccceeb8cae609f7"}, + {file = "pandas-1.5.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:565fa34a5434d38e9d250af3c12ff931abaf88050551d9fbcdfafca50d62babf"}, + {file = "pandas-1.5.3-cp38-cp38-win32.whl", hash = "sha256:87bd9c03da1ac870a6d2c8902a0e1fd4267ca00f13bc494c9e5a9020920e1d51"}, + {file = "pandas-1.5.3-cp38-cp38-win_amd64.whl", hash = "sha256:41179ce559943d83a9b4bbacb736b04c928b095b5f25dd2b7389eda08f46f373"}, + {file = "pandas-1.5.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c74a62747864ed568f5a82a49a23a8d7fe171d0c69038b38cedf0976831296fa"}, + {file = "pandas-1.5.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c4c00e0b0597c8e4f59e8d461f797e5d70b4d025880516a8261b2817c47759ee"}, + {file = "pandas-1.5.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a50d9a4336a9621cab7b8eb3fb11adb82de58f9b91d84c2cd526576b881a0c5a"}, + {file = "pandas-1.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd05f7783b3274aa206a1af06f0ceed3f9b412cf665b7247eacd83be41cf7bf0"}, + {file = "pandas-1.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f69c4029613de47816b1bb30ff5ac778686688751a5e9c99ad8c7031f6508e5"}, + {file = "pandas-1.5.3-cp39-cp39-win32.whl", hash = "sha256:7cec0bee9f294e5de5bbfc14d0573f65526071029d036b753ee6507d2a21480a"}, + {file = "pandas-1.5.3-cp39-cp39-win_amd64.whl", hash = "sha256:dfd681c5dc216037e0b0a2c821f5ed99ba9f03ebcf119c7dac0e9a7b960b9ec9"}, + {file = "pandas-1.5.3.tar.gz", hash = "sha256:74a3fd7e5a7ec052f183273dc7b0acd3a863edf7520f5d3a1765c04ffdb3b0b1"}, +] [package.dependencies] -numpy = {version = ">=1.21.0", markers = "python_version >= \"3.10\""} +numpy = {version = ">=1.23.2", markers = "python_version >= \"3.11\""} python-dateutil = ">=2.8.1" pytz = ">=2020.1" @@ -532,29 +1893,154 @@ test = ["hypothesis (>=5.5.3)", "pytest (>=6.0)", "pytest-xdist (>=1.31)"] name = "parso" version = "0.8.3" description = "A Python Parser" -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"}, + {file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"}, +] [package.extras] qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] testing = ["docopt", "pytest (<6.0.0)"] +[[package]] +name = "passlib" +version = "1.7.4" +description = "comprehensive password hashing framework supporting over 30 schemes" +optional = false +python-versions = "*" +files = [ + {file = "passlib-1.7.4-py2.py3-none-any.whl", hash = "sha256:aa6bca462b8d8bda89c70b382f0c298a20b5560af6cbfa2dce410c0a2fb669f1"}, + {file = "passlib-1.7.4.tar.gz", hash = "sha256:defd50f72b65c5402ab2c573830a6978e5f202ad0d984793c8dde2c4152ebe04"}, +] + +[package.extras] +argon2 = ["argon2-cffi (>=18.2.0)"] +bcrypt = ["bcrypt (>=3.1.0)"] +build-docs = ["cloud-sptheme (>=1.10.1)", "sphinx (>=1.6)", "sphinxcontrib-fulltoc (>=1.2.0)"] +totp = ["cryptography"] + [[package]] name = "pathspec" -version = "0.10.2" +version = "0.11.2" description = "Utility library for gitignore style pattern matching of file paths." -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "pendulum" +version = "3.0.0" +description = "Python datetimes made easy" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pendulum-3.0.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:2cf9e53ef11668e07f73190c805dbdf07a1939c3298b78d5a9203a86775d1bfd"}, + {file = "pendulum-3.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fb551b9b5e6059377889d2d878d940fd0bbb80ae4810543db18e6f77b02c5ef6"}, + {file = "pendulum-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c58227ac260d5b01fc1025176d7b31858c9f62595737f350d22124a9a3ad82d"}, + {file = "pendulum-3.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:60fb6f415fea93a11c52578eaa10594568a6716602be8430b167eb0d730f3332"}, + {file = "pendulum-3.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b69f6b4dbcb86f2c2fe696ba991e67347bcf87fe601362a1aba6431454b46bde"}, + {file = "pendulum-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:138afa9c373ee450ede206db5a5e9004fd3011b3c6bbe1e57015395cd076a09f"}, + {file = "pendulum-3.0.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:83d9031f39c6da9677164241fd0d37fbfc9dc8ade7043b5d6d62f56e81af8ad2"}, + {file = "pendulum-3.0.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:0c2308af4033fa534f089595bcd40a95a39988ce4059ccd3dc6acb9ef14ca44a"}, + {file = "pendulum-3.0.0-cp310-none-win_amd64.whl", hash = "sha256:9a59637cdb8462bdf2dbcb9d389518c0263799189d773ad5c11db6b13064fa79"}, + {file = "pendulum-3.0.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:3725245c0352c95d6ca297193192020d1b0c0f83d5ee6bb09964edc2b5a2d508"}, + {file = "pendulum-3.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6c035f03a3e565ed132927e2c1b691de0dbf4eb53b02a5a3c5a97e1a64e17bec"}, + {file = "pendulum-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:597e66e63cbd68dd6d58ac46cb7a92363d2088d37ccde2dae4332ef23e95cd00"}, + {file = "pendulum-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99a0f8172e19f3f0c0e4ace0ad1595134d5243cf75985dc2233e8f9e8de263ca"}, + {file = "pendulum-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:77d8839e20f54706aed425bec82a83b4aec74db07f26acd039905d1237a5e1d4"}, + {file = "pendulum-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afde30e8146292b059020fbc8b6f8fd4a60ae7c5e6f0afef937bbb24880bdf01"}, + {file = "pendulum-3.0.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:660434a6fcf6303c4efd36713ca9212c753140107ee169a3fc6c49c4711c2a05"}, + {file = "pendulum-3.0.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dee9e5a48c6999dc1106eb7eea3e3a50e98a50651b72c08a87ee2154e544b33e"}, + {file = "pendulum-3.0.0-cp311-none-win_amd64.whl", hash = "sha256:d4cdecde90aec2d67cebe4042fd2a87a4441cc02152ed7ed8fb3ebb110b94ec4"}, + {file = "pendulum-3.0.0-cp311-none-win_arm64.whl", hash = "sha256:773c3bc4ddda2dda9f1b9d51fe06762f9200f3293d75c4660c19b2614b991d83"}, + {file = "pendulum-3.0.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:409e64e41418c49f973d43a28afe5df1df4f1dd87c41c7c90f1a63f61ae0f1f7"}, + {file = "pendulum-3.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a38ad2121c5ec7c4c190c7334e789c3b4624798859156b138fcc4d92295835dc"}, + {file = "pendulum-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fde4d0b2024b9785f66b7f30ed59281bd60d63d9213cda0eb0910ead777f6d37"}, + {file = "pendulum-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b2c5675769fb6d4c11238132962939b960fcb365436b6d623c5864287faa319"}, + {file = "pendulum-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8af95e03e066826f0f4c65811cbee1b3123d4a45a1c3a2b4fc23c4b0dff893b5"}, + {file = "pendulum-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2165a8f33cb15e06c67070b8afc87a62b85c5a273e3aaa6bc9d15c93a4920d6f"}, + {file = "pendulum-3.0.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ad5e65b874b5e56bd942546ea7ba9dd1d6a25121db1c517700f1c9de91b28518"}, + {file = "pendulum-3.0.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:17fe4b2c844bbf5f0ece69cfd959fa02957c61317b2161763950d88fed8e13b9"}, + {file = "pendulum-3.0.0-cp312-none-win_amd64.whl", hash = "sha256:78f8f4e7efe5066aca24a7a57511b9c2119f5c2b5eb81c46ff9222ce11e0a7a5"}, + {file = "pendulum-3.0.0-cp312-none-win_arm64.whl", hash = "sha256:28f49d8d1e32aae9c284a90b6bb3873eee15ec6e1d9042edd611b22a94ac462f"}, + {file = "pendulum-3.0.0-cp37-cp37m-macosx_10_12_x86_64.whl", hash = "sha256:d4e2512f4e1a4670284a153b214db9719eb5d14ac55ada5b76cbdb8c5c00399d"}, + {file = "pendulum-3.0.0-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:3d897eb50883cc58d9b92f6405245f84b9286cd2de6e8694cb9ea5cb15195a32"}, + {file = "pendulum-3.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e169cc2ca419517f397811bbe4589cf3cd13fca6dc38bb352ba15ea90739ebb"}, + {file = "pendulum-3.0.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f17c3084a4524ebefd9255513692f7e7360e23c8853dc6f10c64cc184e1217ab"}, + {file = "pendulum-3.0.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:826d6e258052715f64d05ae0fc9040c0151e6a87aae7c109ba9a0ed930ce4000"}, + {file = "pendulum-3.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2aae97087872ef152a0c40e06100b3665d8cb86b59bc8471ca7c26132fccd0f"}, + {file = "pendulum-3.0.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ac65eeec2250d03106b5e81284ad47f0d417ca299a45e89ccc69e36130ca8bc7"}, + {file = "pendulum-3.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:a5346d08f3f4a6e9e672187faa179c7bf9227897081d7121866358af369f44f9"}, + {file = "pendulum-3.0.0-cp37-none-win_amd64.whl", hash = "sha256:235d64e87946d8f95c796af34818c76e0f88c94d624c268693c85b723b698aa9"}, + {file = "pendulum-3.0.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:6a881d9c2a7f85bc9adafcfe671df5207f51f5715ae61f5d838b77a1356e8b7b"}, + {file = "pendulum-3.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d7762d2076b9b1cb718a6631ad6c16c23fc3fac76cbb8c454e81e80be98daa34"}, + {file = "pendulum-3.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e8e36a8130819d97a479a0e7bf379b66b3b1b520e5dc46bd7eb14634338df8c"}, + {file = "pendulum-3.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7dc843253ac373358ffc0711960e2dd5b94ab67530a3e204d85c6e8cb2c5fa10"}, + {file = "pendulum-3.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0a78ad3635d609ceb1e97d6aedef6a6a6f93433ddb2312888e668365908c7120"}, + {file = "pendulum-3.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b30a137e9e0d1f751e60e67d11fc67781a572db76b2296f7b4d44554761049d6"}, + {file = "pendulum-3.0.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c95984037987f4a457bb760455d9ca80467be792236b69d0084f228a8ada0162"}, + {file = "pendulum-3.0.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d29c6e578fe0f893766c0d286adbf0b3c726a4e2341eba0917ec79c50274ec16"}, + {file = "pendulum-3.0.0-cp38-none-win_amd64.whl", hash = "sha256:deaba8e16dbfcb3d7a6b5fabdd5a38b7c982809567479987b9c89572df62e027"}, + {file = "pendulum-3.0.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:b11aceea5b20b4b5382962b321dbc354af0defe35daa84e9ff3aae3c230df694"}, + {file = "pendulum-3.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a90d4d504e82ad236afac9adca4d6a19e4865f717034fc69bafb112c320dcc8f"}, + {file = "pendulum-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:825799c6b66e3734227756fa746cc34b3549c48693325b8b9f823cb7d21b19ac"}, + {file = "pendulum-3.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad769e98dc07972e24afe0cff8d365cb6f0ebc7e65620aa1976fcfbcadc4c6f3"}, + {file = "pendulum-3.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6fc26907eb5fb8cc6188cc620bc2075a6c534d981a2f045daa5f79dfe50d512"}, + {file = "pendulum-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0c717eab1b6d898c00a3e0fa7781d615b5c5136bbd40abe82be100bb06df7a56"}, + {file = "pendulum-3.0.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:3ddd1d66d1a714ce43acfe337190be055cdc221d911fc886d5a3aae28e14b76d"}, + {file = "pendulum-3.0.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:822172853d7a9cf6da95d7b66a16c7160cb99ae6df55d44373888181d7a06edc"}, + {file = "pendulum-3.0.0-cp39-none-win_amd64.whl", hash = "sha256:840de1b49cf1ec54c225a2a6f4f0784d50bd47f68e41dc005b7f67c7d5b5f3ae"}, + {file = "pendulum-3.0.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3b1f74d1e6ffe5d01d6023870e2ce5c2191486928823196f8575dcc786e107b1"}, + {file = "pendulum-3.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:729e9f93756a2cdfa77d0fc82068346e9731c7e884097160603872686e570f07"}, + {file = "pendulum-3.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e586acc0b450cd21cbf0db6bae386237011b75260a3adceddc4be15334689a9a"}, + {file = "pendulum-3.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22e7944ffc1f0099a79ff468ee9630c73f8c7835cd76fdb57ef7320e6a409df4"}, + {file = "pendulum-3.0.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:fa30af36bd8e50686846bdace37cf6707bdd044e5cb6e1109acbad3277232e04"}, + {file = "pendulum-3.0.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:440215347b11914ae707981b9a57ab9c7b6983ab0babde07063c6ee75c0dc6e7"}, + {file = "pendulum-3.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:314c4038dc5e6a52991570f50edb2f08c339debdf8cea68ac355b32c4174e820"}, + {file = "pendulum-3.0.0-pp37-pypy37_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5acb1d386337415f74f4d1955c4ce8d0201978c162927d07df8eb0692b2d8533"}, + {file = "pendulum-3.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a789e12fbdefaffb7b8ac67f9d8f22ba17a3050ceaaa635cd1cc4645773a4b1e"}, + {file = "pendulum-3.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:860aa9b8a888e5913bd70d819306749e5eb488e6b99cd6c47beb701b22bdecf5"}, + {file = "pendulum-3.0.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:5ebc65ea033ef0281368217fbf59f5cb05b338ac4dd23d60959c7afcd79a60a0"}, + {file = "pendulum-3.0.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:d9fef18ab0386ef6a9ac7bad7e43ded42c83ff7ad412f950633854f90d59afa8"}, + {file = "pendulum-3.0.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:1c134ba2f0571d0b68b83f6972e2307a55a5a849e7dac8505c715c531d2a8795"}, + {file = "pendulum-3.0.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:385680812e7e18af200bb9b4a49777418c32422d05ad5a8eb85144c4a285907b"}, + {file = "pendulum-3.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9eec91cd87c59fb32ec49eb722f375bd58f4be790cae11c1b70fac3ee4f00da0"}, + {file = "pendulum-3.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4386bffeca23c4b69ad50a36211f75b35a4deb6210bdca112ac3043deb7e494a"}, + {file = "pendulum-3.0.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:dfbcf1661d7146d7698da4b86e7f04814221081e9fe154183e34f4c5f5fa3bf8"}, + {file = "pendulum-3.0.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:04a1094a5aa1daa34a6b57c865b25f691848c61583fb22722a4df5699f6bf74c"}, + {file = "pendulum-3.0.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:5b0ec85b9045bd49dd3a3493a5e7ddfd31c36a2a60da387c419fa04abcaecb23"}, + {file = "pendulum-3.0.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:0a15b90129765b705eb2039062a6daf4d22c4e28d1a54fa260892e8c3ae6e157"}, + {file = "pendulum-3.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:bb8f6d7acd67a67d6fedd361ad2958ff0539445ef51cbe8cd288db4306503cd0"}, + {file = "pendulum-3.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fd69b15374bef7e4b4440612915315cc42e8575fcda2a3d7586a0d88192d0c88"}, + {file = "pendulum-3.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc00f8110db6898360c53c812872662e077eaf9c75515d53ecc65d886eec209a"}, + {file = "pendulum-3.0.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:83a44e8b40655d0ba565a5c3d1365d27e3e6778ae2a05b69124db9e471255c4a"}, + {file = "pendulum-3.0.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:1a3604e9fbc06b788041b2a8b78f75c243021e0f512447806a6d37ee5214905d"}, + {file = "pendulum-3.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:92c307ae7accebd06cbae4729f0ba9fa724df5f7d91a0964b1b972a22baa482b"}, + {file = "pendulum-3.0.0.tar.gz", hash = "sha256:5d034998dea404ec31fae27af6b22cff1708f830a1ed7353be4d1019bb9f584e"}, +] + +[package.dependencies] +python-dateutil = ">=2.6" +tzdata = ">=2020.1" + +[package.extras] +test = ["time-machine (>=2.6.0)"] [[package]] name = "pexpect" version = "4.8.0" description = "Pexpect allows easy control of interactive console applications." -category = "dev" optional = false python-versions = "*" +files = [ + {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, + {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, +] [package.dependencies] ptyprocess = ">=0.5" @@ -563,105 +2049,341 @@ ptyprocess = ">=0.5" name = "pickleshare" version = "0.7.5" description = "Tiny 'shelve'-like database with concurrency support" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"}, + {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"}, +] + +[[package]] +name = "pillow" +version = "10.0.0" +description = "Python Imaging Library (Fork)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "Pillow-10.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:1f62406a884ae75fb2f818694469519fb685cc7eaff05d3451a9ebe55c646891"}, + {file = "Pillow-10.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d5db32e2a6ccbb3d34d87c87b432959e0db29755727afb37290e10f6e8e62614"}, + {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edf4392b77bdc81f36e92d3a07a5cd072f90253197f4a52a55a8cec48a12483b"}, + {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:520f2a520dc040512699f20fa1c363eed506e94248d71f85412b625026f6142c"}, + {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:8c11160913e3dd06c8ffdb5f233a4f254cb449f4dfc0f8f4549eda9e542c93d1"}, + {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a74ba0c356aaa3bb8e3eb79606a87669e7ec6444be352870623025d75a14a2bf"}, + {file = "Pillow-10.0.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d5d0dae4cfd56969d23d94dc8e89fb6a217be461c69090768227beb8ed28c0a3"}, + {file = "Pillow-10.0.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22c10cc517668d44b211717fd9775799ccec4124b9a7f7b3635fc5386e584992"}, + {file = "Pillow-10.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:dffe31a7f47b603318c609f378ebcd57f1554a3a6a8effbc59c3c69f804296de"}, + {file = "Pillow-10.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:9fb218c8a12e51d7ead2a7c9e101a04982237d4855716af2e9499306728fb485"}, + {file = "Pillow-10.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d35e3c8d9b1268cbf5d3670285feb3528f6680420eafe35cccc686b73c1e330f"}, + {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ed64f9ca2f0a95411e88a4efbd7a29e5ce2cea36072c53dd9d26d9c76f753b3"}, + {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b6eb5502f45a60a3f411c63187db83a3d3107887ad0d036c13ce836f8a36f1d"}, + {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:c1fbe7621c167ecaa38ad29643d77a9ce7311583761abf7836e1510c580bf3dd"}, + {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:cd25d2a9d2b36fcb318882481367956d2cf91329f6892fe5d385c346c0649629"}, + {file = "Pillow-10.0.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:3b08d4cc24f471b2c8ca24ec060abf4bebc6b144cb89cba638c720546b1cf538"}, + {file = "Pillow-10.0.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d737a602fbd82afd892ca746392401b634e278cb65d55c4b7a8f48e9ef8d008d"}, + {file = "Pillow-10.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:3a82c40d706d9aa9734289740ce26460a11aeec2d9c79b7af87bb35f0073c12f"}, + {file = "Pillow-10.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:bc2ec7c7b5d66b8ec9ce9f720dbb5fa4bace0f545acd34870eff4a369b44bf37"}, + {file = "Pillow-10.0.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:d80cf684b541685fccdd84c485b31ce73fc5c9b5d7523bf1394ce134a60c6883"}, + {file = "Pillow-10.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:76de421f9c326da8f43d690110f0e79fe3ad1e54be811545d7d91898b4c8493e"}, + {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81ff539a12457809666fef6624684c008e00ff6bf455b4b89fd00a140eecd640"}, + {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce543ed15570eedbb85df19b0a1a7314a9c8141a36ce089c0a894adbfccb4568"}, + {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:685ac03cc4ed5ebc15ad5c23bc555d68a87777586d970c2c3e216619a5476223"}, + {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d72e2ecc68a942e8cf9739619b7f408cc7b272b279b56b2c83c6123fcfa5cdff"}, + {file = "Pillow-10.0.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d50b6aec14bc737742ca96e85d6d0a5f9bfbded018264b3b70ff9d8c33485551"}, + {file = "Pillow-10.0.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:00e65f5e822decd501e374b0650146063fbb30a7264b4d2744bdd7b913e0cab5"}, + {file = "Pillow-10.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:f31f9fdbfecb042d046f9d91270a0ba28368a723302786c0009ee9b9f1f60199"}, + {file = "Pillow-10.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:1ce91b6ec08d866b14413d3f0bbdea7e24dfdc8e59f562bb77bc3fe60b6144ca"}, + {file = "Pillow-10.0.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:349930d6e9c685c089284b013478d6f76e3a534e36ddfa912cde493f235372f3"}, + {file = "Pillow-10.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3a684105f7c32488f7153905a4e3015a3b6c7182e106fe3c37fbb5ef3e6994c3"}, + {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4f69b3700201b80bb82c3a97d5e9254084f6dd5fb5b16fc1a7b974260f89f43"}, + {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f07ea8d2f827d7d2a49ecf1639ec02d75ffd1b88dcc5b3a61bbb37a8759ad8d"}, + {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:040586f7d37b34547153fa383f7f9aed68b738992380ac911447bb78f2abe530"}, + {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:f88a0b92277de8e3ca715a0d79d68dc82807457dae3ab8699c758f07c20b3c51"}, + {file = "Pillow-10.0.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c7cf14a27b0d6adfaebb3ae4153f1e516df54e47e42dcc073d7b3d76111a8d86"}, + {file = "Pillow-10.0.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3400aae60685b06bb96f99a21e1ada7bc7a413d5f49bce739828ecd9391bb8f7"}, + {file = "Pillow-10.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:dbc02381779d412145331789b40cc7b11fdf449e5d94f6bc0b080db0a56ea3f0"}, + {file = "Pillow-10.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:9211e7ad69d7c9401cfc0e23d49b69ca65ddd898976d660a2fa5904e3d7a9baa"}, + {file = "Pillow-10.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:faaf07ea35355b01a35cb442dd950d8f1bb5b040a7787791a535de13db15ed90"}, + {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9f72a021fbb792ce98306ffb0c348b3c9cb967dce0f12a49aa4c3d3fdefa967"}, + {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f7c16705f44e0504a3a2a14197c1f0b32a95731d251777dcb060aa83022cb2d"}, + {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:76edb0a1fa2b4745fb0c99fb9fb98f8b180a1bbceb8be49b087e0b21867e77d3"}, + {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:368ab3dfb5f49e312231b6f27b8820c823652b7cd29cfbd34090565a015e99ba"}, + {file = "Pillow-10.0.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:608bfdee0d57cf297d32bcbb3c728dc1da0907519d1784962c5f0c68bb93e5a3"}, + {file = "Pillow-10.0.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5c6e3df6bdd396749bafd45314871b3d0af81ff935b2d188385e970052091017"}, + {file = "Pillow-10.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:7be600823e4c8631b74e4a0d38384c73f680e6105a7d3c6824fcf226c178c7e6"}, + {file = "Pillow-10.0.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:92be919bbc9f7d09f7ae343c38f5bb21c973d2576c1d45600fce4b74bafa7ac0"}, + {file = "Pillow-10.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8182b523b2289f7c415f589118228d30ac8c355baa2f3194ced084dac2dbba"}, + {file = "Pillow-10.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:38250a349b6b390ee6047a62c086d3817ac69022c127f8a5dc058c31ccef17f3"}, + {file = "Pillow-10.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:88af2003543cc40c80f6fca01411892ec52b11021b3dc22ec3bc9d5afd1c5334"}, + {file = "Pillow-10.0.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:c189af0545965fa8d3b9613cfdb0cd37f9d71349e0f7750e1fd704648d475ed2"}, + {file = "Pillow-10.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce7b031a6fc11365970e6a5686d7ba8c63e4c1cf1ea143811acbb524295eabed"}, + {file = "Pillow-10.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:db24668940f82321e746773a4bc617bfac06ec831e5c88b643f91f122a785684"}, + {file = "Pillow-10.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:efe8c0681042536e0d06c11f48cebe759707c9e9abf880ee213541c5b46c5bf3"}, + {file = "Pillow-10.0.0.tar.gz", hash = "sha256:9c82b5b3e043c7af0d95792d0d20ccf68f61a1fec6b3530e718b688422727396"}, +] + +[package.extras] +docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-removed-in", "sphinxext-opengraph"] +tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] [[package]] name = "platformdirs" -version = "2.5.4" +version = "3.10.0" description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -category = "dev" optional = false python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "plotly" +version = "5.22.0" +description = "An open-source, interactive data visualization library for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "plotly-5.22.0-py3-none-any.whl", hash = "sha256:68fc1901f098daeb233cc3dd44ec9dc31fb3ca4f4e53189344199c43496ed006"}, + {file = "plotly-5.22.0.tar.gz", hash = "sha256:859fdadbd86b5770ae2466e542b761b247d1c6b49daed765b95bb8c7063e7469"}, +] + +[package.dependencies] +packaging = "*" +tenacity = ">=6.2.0" + +[[package]] +name = "pluggy" +version = "1.2.0" +description = "plugin and hook calling mechanisms for python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pluggy-1.2.0-py3-none-any.whl", hash = "sha256:c2fd55a7d7a3863cba1a013e4e2414658b1d07b6bc57b3919e0c63c9abb99849"}, + {file = "pluggy-1.2.0.tar.gz", hash = "sha256:d12f0c4b579b15f5e054301bb226ee85eeeba08ffec228092f8defbaa3a4c4b3"}, +] [package.extras] -docs = ["furo (>=2022.9.29)", "proselint (>=0.13)", "sphinx (>=5.3)", "sphinx-autodoc-typehints (>=1.19.4)"] -test = ["appdirs (==1.4.4)", "pytest (>=7.2)", "pytest-cov (>=4)", "pytest-mock (>=3.10)"] +dev = ["pre-commit", "tox"] +testing = ["pytest", "pytest-benchmark"] [[package]] name = "prompt-toolkit" -version = "3.0.33" +version = "3.0.39" description = "Library for building powerful interactive command lines in Python" -category = "dev" optional = false -python-versions = ">=3.6.2" +python-versions = ">=3.7.0" +files = [ + {file = "prompt_toolkit-3.0.39-py3-none-any.whl", hash = "sha256:9dffbe1d8acf91e3de75f3b544e4842382fc06c6babe903ac9acb74dc6e08d88"}, + {file = "prompt_toolkit-3.0.39.tar.gz", hash = "sha256:04505ade687dc26dc4284b1ad19a83be2f2afe83e7a828ace0c72f3a1df72aac"}, +] [package.dependencies] wcwidth = "*" [[package]] name = "psutil" -version = "5.9.4" +version = "5.9.5" description = "Cross-platform lib for process and system monitoring in Python." -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "psutil-5.9.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:be8929ce4313f9f8146caad4272f6abb8bf99fc6cf59344a3167ecd74f4f203f"}, + {file = "psutil-5.9.5-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ab8ed1a1d77c95453db1ae00a3f9c50227ebd955437bcf2a574ba8adbf6a74d5"}, + {file = "psutil-5.9.5-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:4aef137f3345082a3d3232187aeb4ac4ef959ba3d7c10c33dd73763fbc063da4"}, + {file = "psutil-5.9.5-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ea8518d152174e1249c4f2a1c89e3e6065941df2fa13a1ab45327716a23c2b48"}, + {file = "psutil-5.9.5-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:acf2aef9391710afded549ff602b5887d7a2349831ae4c26be7c807c0a39fac4"}, + {file = "psutil-5.9.5-cp27-none-win32.whl", hash = "sha256:5b9b8cb93f507e8dbaf22af6a2fd0ccbe8244bf30b1baad6b3954e935157ae3f"}, + {file = "psutil-5.9.5-cp27-none-win_amd64.whl", hash = "sha256:8c5f7c5a052d1d567db4ddd231a9d27a74e8e4a9c3f44b1032762bd7b9fdcd42"}, + {file = "psutil-5.9.5-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:3c6f686f4225553615612f6d9bc21f1c0e305f75d7d8454f9b46e901778e7217"}, + {file = "psutil-5.9.5-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7a7dd9997128a0d928ed4fb2c2d57e5102bb6089027939f3b722f3a210f9a8da"}, + {file = "psutil-5.9.5-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89518112647f1276b03ca97b65cc7f64ca587b1eb0278383017c2a0dcc26cbe4"}, + {file = "psutil-5.9.5-cp36-abi3-win32.whl", hash = "sha256:104a5cc0e31baa2bcf67900be36acde157756b9c44017b86b2c049f11957887d"}, + {file = "psutil-5.9.5-cp36-abi3-win_amd64.whl", hash = "sha256:b258c0c1c9d145a1d5ceffab1134441c4c5113b2417fafff7315a917a026c3c9"}, + {file = "psutil-5.9.5-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:c607bb3b57dc779d55e1554846352b4e358c10fff3abf3514a7a6601beebdb30"}, + {file = "psutil-5.9.5.tar.gz", hash = "sha256:5410638e4df39c54d957fc51ce03048acd8e6d60abc0f5107af51e5fb566eb3c"}, +] [package.extras] test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] [[package]] name = "psycopg2-binary" -version = "2.9.5" +version = "2.9.7" description = "psycopg2 - Python-PostgreSQL Database Adapter" -category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "psycopg2-binary-2.9.7.tar.gz", hash = "sha256:1b918f64a51ffe19cd2e230b3240ba481330ce1d4b7875ae67305bd1d37b041c"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ea5f8ee87f1eddc818fc04649d952c526db4426d26bab16efbe5a0c52b27d6ab"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2993ccb2b7e80844d534e55e0f12534c2871952f78e0da33c35e648bf002bbff"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dbbc3c5d15ed76b0d9db7753c0db40899136ecfe97d50cbde918f630c5eb857a"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:692df8763b71d42eb8343f54091368f6f6c9cfc56dc391858cdb3c3ef1e3e584"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9dcfd5d37e027ec393a303cc0a216be564b96c80ba532f3d1e0d2b5e5e4b1e6e"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17cc17a70dfb295a240db7f65b6d8153c3d81efb145d76da1e4a096e9c5c0e63"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e5666632ba2b0d9757b38fc17337d84bdf932d38563c5234f5f8c54fd01349c9"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7db7b9b701974c96a88997d458b38ccb110eba8f805d4b4f74944aac48639b42"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c82986635a16fb1fa15cd5436035c88bc65c3d5ced1cfaac7f357ee9e9deddd4"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4fe13712357d802080cfccbf8c6266a3121dc0e27e2144819029095ccf708372"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-win32.whl", hash = "sha256:122641b7fab18ef76b18860dd0c772290566b6fb30cc08e923ad73d17461dc63"}, + {file = "psycopg2_binary-2.9.7-cp310-cp310-win_amd64.whl", hash = "sha256:f8651cf1f144f9ee0fa7d1a1df61a9184ab72962531ca99f077bbdcba3947c58"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4ecc15666f16f97709106d87284c136cdc82647e1c3f8392a672616aed3c7151"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3fbb1184c7e9d28d67671992970718c05af5f77fc88e26fd7136613c4ece1f89"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a7968fd20bd550431837656872c19575b687f3f6f98120046228e451e4064df"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:094af2e77a1976efd4956a031028774b827029729725e136514aae3cdf49b87b"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:26484e913d472ecb6b45937ea55ce29c57c662066d222fb0fbdc1fab457f18c5"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f309b77a7c716e6ed9891b9b42953c3ff7d533dc548c1e33fddc73d2f5e21f9"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:6d92e139ca388ccfe8c04aacc163756e55ba4c623c6ba13d5d1595ed97523e4b"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:2df562bb2e4e00ee064779902d721223cfa9f8f58e7e52318c97d139cf7f012d"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:4eec5d36dbcfc076caab61a2114c12094c0b7027d57e9e4387b634e8ab36fd44"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:1011eeb0c51e5b9ea1016f0f45fa23aca63966a4c0afcf0340ccabe85a9f65bd"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-win32.whl", hash = "sha256:ded8e15f7550db9e75c60b3d9fcbc7737fea258a0f10032cdb7edc26c2a671fd"}, + {file = "psycopg2_binary-2.9.7-cp311-cp311-win_amd64.whl", hash = "sha256:8a136c8aaf6615653450817a7abe0fc01e4ea720ae41dfb2823eccae4b9062a3"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2dec5a75a3a5d42b120e88e6ed3e3b37b46459202bb8e36cd67591b6e5feebc1"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc10da7e7df3380426521e8c1ed975d22df678639da2ed0ec3244c3dc2ab54c8"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee919b676da28f78f91b464fb3e12238bd7474483352a59c8a16c39dfc59f0c5"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb1c0e682138f9067a58fc3c9a9bf1c83d8e08cfbee380d858e63196466d5c86"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00d8db270afb76f48a499f7bb8fa70297e66da67288471ca873db88382850bf4"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9b0c2b466b2f4d89ccc33784c4ebb1627989bd84a39b79092e560e937a11d4ac"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:51d1b42d44f4ffb93188f9b39e6d1c82aa758fdb8d9de65e1ddfe7a7d250d7ad"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:11abdbfc6f7f7dea4a524b5f4117369b0d757725798f1593796be6ece20266cb"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:f02f4a72cc3ab2565c6d9720f0343cb840fb2dc01a2e9ecb8bc58ccf95dc5c06"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-win32.whl", hash = "sha256:81d5dd2dd9ab78d31a451e357315f201d976c131ca7d43870a0e8063b6b7a1ec"}, + {file = "psycopg2_binary-2.9.7-cp37-cp37m-win_amd64.whl", hash = "sha256:62cb6de84d7767164a87ca97e22e5e0a134856ebcb08f21b621c6125baf61f16"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:59f7e9109a59dfa31efa022e94a244736ae401526682de504e87bd11ce870c22"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:95a7a747bdc3b010bb6a980f053233e7610276d55f3ca506afff4ad7749ab58a"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c721ee464e45ecf609ff8c0a555018764974114f671815a0a7152aedb9f3343"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4f37bbc6588d402980ffbd1f3338c871368fb4b1cfa091debe13c68bb3852b3"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac83ab05e25354dad798401babaa6daa9577462136ba215694865394840e31f8"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:024eaeb2a08c9a65cd5f94b31ace1ee3bb3f978cd4d079406aef85169ba01f08"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1c31c2606ac500dbd26381145684d87730a2fac9a62ebcfbaa2b119f8d6c19f4"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:42a62ef0e5abb55bf6ffb050eb2b0fcd767261fa3faf943a4267539168807522"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:7952807f95c8eba6a8ccb14e00bf170bb700cafcec3924d565235dffc7dc4ae8"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e02bc4f2966475a7393bd0f098e1165d470d3fa816264054359ed4f10f6914ea"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-win32.whl", hash = "sha256:fdca0511458d26cf39b827a663d7d87db6f32b93efc22442a742035728603d5f"}, + {file = "psycopg2_binary-2.9.7-cp38-cp38-win_amd64.whl", hash = "sha256:d0b16e5bb0ab78583f0ed7ab16378a0f8a89a27256bb5560402749dbe8a164d7"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6822c9c63308d650db201ba22fe6648bd6786ca6d14fdaf273b17e15608d0852"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8f94cb12150d57ea433e3e02aabd072205648e86f1d5a0a692d60242f7809b15"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5ee89587696d808c9a00876065d725d4ae606f5f7853b961cdbc348b0f7c9a1"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad5ec10b53cbb57e9a2e77b67e4e4368df56b54d6b00cc86398578f1c635f329"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:642df77484b2dcaf87d4237792246d8068653f9e0f5c025e2c692fc56b0dda70"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6a8b575ac45af1eaccbbcdcf710ab984fd50af048fe130672377f78aaff6fc1"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f955aa50d7d5220fcb6e38f69ea126eafecd812d96aeed5d5f3597f33fad43bb"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ad26d4eeaa0d722b25814cce97335ecf1b707630258f14ac4d2ed3d1d8415265"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:ced63c054bdaf0298f62681d5dcae3afe60cbae332390bfb1acf0e23dcd25fc8"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2b04da24cbde33292ad34a40db9832a80ad12de26486ffeda883413c9e1b1d5e"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-win32.whl", hash = "sha256:18f12632ab516c47c1ac4841a78fddea6508a8284c7cf0f292cb1a523f2e2379"}, + {file = "psycopg2_binary-2.9.7-cp39-cp39-win_amd64.whl", hash = "sha256:eb3b8d55924a6058a26db69fb1d3e7e32695ff8b491835ba9f479537e14dcf9f"}, +] [[package]] name = "ptyprocess" version = "0.7.0" description = "Run a subprocess in a pseudo terminal" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, + {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, +] [[package]] name = "pure-eval" version = "0.2.2" description = "Safely evaluate AST nodes without side effects" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, + {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, +] [package.extras] tests = ["pytest"] [[package]] -name = "py" -version = "1.11.0" -description = "library with cross-python path, ini-parsing, io, code, log facilities" -category = "dev" +name = "pyasn1" +version = "0.5.0" +description = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +files = [ + {file = "pyasn1-0.5.0-py2.py3-none-any.whl", hash = "sha256:87a2121042a1ac9358cabcaf1d07680ff97ee6404333bacca15f76aa8ad01a57"}, + {file = "pyasn1-0.5.0.tar.gz", hash = "sha256:97b7290ca68e62a832558ec3976f15cbf911bf5d7c7039d8b861c2a0ece69fde"}, +] [[package]] name = "pycodestyle" version = "2.9.1" description = "Python style guide checker" -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "pycodestyle-2.9.1-py2.py3-none-any.whl", hash = "sha256:d1735fc58b418fd7c5f658d28d943854f8a849b01a5d0a1e6f3f3fdd0166804b"}, + {file = "pycodestyle-2.9.1.tar.gz", hash = "sha256:2c9607871d58c76354b697b42f5d57e1ada7d261c261efac224b664affdc5785"}, +] [[package]] name = "pycparser" version = "2.21" description = "C parser in Python" -category = "dev" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] [[package]] name = "pydantic" -version = "1.10.2" +version = "1.10.12" description = "Data validation and settings management using python type hints" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "pydantic-1.10.12-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a1fcb59f2f355ec350073af41d927bf83a63b50e640f4dbaa01053a28b7a7718"}, + {file = "pydantic-1.10.12-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b7ccf02d7eb340b216ec33e53a3a629856afe1c6e0ef91d84a4e6f2fb2ca70fe"}, + {file = "pydantic-1.10.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8fb2aa3ab3728d950bcc885a2e9eff6c8fc40bc0b7bb434e555c215491bcf48b"}, + {file = "pydantic-1.10.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:771735dc43cf8383959dc9b90aa281f0b6092321ca98677c5fb6125a6f56d58d"}, + {file = "pydantic-1.10.12-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ca48477862372ac3770969b9d75f1bf66131d386dba79506c46d75e6b48c1e09"}, + {file = "pydantic-1.10.12-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a5e7add47a5b5a40c49b3036d464e3c7802f8ae0d1e66035ea16aa5b7a3923ed"}, + {file = "pydantic-1.10.12-cp310-cp310-win_amd64.whl", hash = "sha256:e4129b528c6baa99a429f97ce733fff478ec955513630e61b49804b6cf9b224a"}, + {file = "pydantic-1.10.12-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b0d191db0f92dfcb1dec210ca244fdae5cbe918c6050b342d619c09d31eea0cc"}, + {file = "pydantic-1.10.12-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:795e34e6cc065f8f498c89b894a3c6da294a936ee71e644e4bd44de048af1405"}, + {file = "pydantic-1.10.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:69328e15cfda2c392da4e713443c7dbffa1505bc9d566e71e55abe14c97ddc62"}, + {file = "pydantic-1.10.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2031de0967c279df0d8a1c72b4ffc411ecd06bac607a212892757db7462fc494"}, + {file = "pydantic-1.10.12-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:ba5b2e6fe6ca2b7e013398bc7d7b170e21cce322d266ffcd57cca313e54fb246"}, + {file = "pydantic-1.10.12-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2a7bac939fa326db1ab741c9d7f44c565a1d1e80908b3797f7f81a4f86bc8d33"}, + {file = "pydantic-1.10.12-cp311-cp311-win_amd64.whl", hash = "sha256:87afda5539d5140cb8ba9e8b8c8865cb5b1463924d38490d73d3ccfd80896b3f"}, + {file = "pydantic-1.10.12-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:549a8e3d81df0a85226963611950b12d2d334f214436a19537b2efed61b7639a"}, + {file = "pydantic-1.10.12-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:598da88dfa127b666852bef6d0d796573a8cf5009ffd62104094a4fe39599565"}, + {file = "pydantic-1.10.12-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba5c4a8552bff16c61882db58544116d021d0b31ee7c66958d14cf386a5b5350"}, + {file = "pydantic-1.10.12-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c79e6a11a07da7374f46970410b41d5e266f7f38f6a17a9c4823db80dadf4303"}, + {file = "pydantic-1.10.12-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ab26038b8375581dc832a63c948f261ae0aa21f1d34c1293469f135fa92972a5"}, + {file = "pydantic-1.10.12-cp37-cp37m-win_amd64.whl", hash = "sha256:e0a16d274b588767602b7646fa05af2782576a6cf1022f4ba74cbb4db66f6ca8"}, + {file = "pydantic-1.10.12-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6a9dfa722316f4acf4460afdf5d41d5246a80e249c7ff475c43a3a1e9d75cf62"}, + {file = "pydantic-1.10.12-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a73f489aebd0c2121ed974054cb2759af8a9f747de120acd2c3394cf84176ccb"}, + {file = "pydantic-1.10.12-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b30bcb8cbfccfcf02acb8f1a261143fab622831d9c0989707e0e659f77a18e0"}, + {file = "pydantic-1.10.12-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2fcfb5296d7877af406ba1547dfde9943b1256d8928732267e2653c26938cd9c"}, + {file = "pydantic-1.10.12-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:2f9a6fab5f82ada41d56b0602606a5506aab165ca54e52bc4545028382ef1c5d"}, + {file = "pydantic-1.10.12-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:dea7adcc33d5d105896401a1f37d56b47d443a2b2605ff8a969a0ed5543f7e33"}, + {file = "pydantic-1.10.12-cp38-cp38-win_amd64.whl", hash = "sha256:1eb2085c13bce1612da8537b2d90f549c8cbb05c67e8f22854e201bde5d98a47"}, + {file = "pydantic-1.10.12-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ef6c96b2baa2100ec91a4b428f80d8f28a3c9e53568219b6c298c1125572ebc6"}, + {file = "pydantic-1.10.12-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6c076be61cd0177a8433c0adcb03475baf4ee91edf5a4e550161ad57fc90f523"}, + {file = "pydantic-1.10.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d5a58feb9a39f481eda4d5ca220aa8b9d4f21a41274760b9bc66bfd72595b86"}, + {file = "pydantic-1.10.12-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5f805d2d5d0a41633651a73fa4ecdd0b3d7a49de4ec3fadf062fe16501ddbf1"}, + {file = "pydantic-1.10.12-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:1289c180abd4bd4555bb927c42ee42abc3aee02b0fb2d1223fb7c6e5bef87dbe"}, + {file = "pydantic-1.10.12-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5d1197e462e0364906cbc19681605cb7c036f2475c899b6f296104ad42b9f5fb"}, + {file = "pydantic-1.10.12-cp39-cp39-win_amd64.whl", hash = "sha256:fdbdd1d630195689f325c9ef1a12900524dceb503b00a987663ff4f58669b93d"}, + {file = "pydantic-1.10.12-py3-none-any.whl", hash = "sha256:b749a43aa51e32839c9d71dc67eb1e4221bb04af1033a32e3923d46f9effa942"}, + {file = "pydantic-1.10.12.tar.gz", hash = "sha256:0fe8a415cea8f340e7a9af9c54fc71a649b43e8ca3cc732986116b3cb135d303"}, +] [package.dependencies] -typing-extensions = ">=4.1.0" +typing-extensions = ">=4.2.0" [package.extras] dotenv = ["python-dotenv (>=0.10.4)"] @@ -671,72 +2393,253 @@ email = ["email-validator (>=1.0.3)"] name = "pyflakes" version = "2.5.0" description = "passive checker of Python programs" -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "pyflakes-2.5.0-py2.py3-none-any.whl", hash = "sha256:4579f67d887f804e67edb544428f264b7b24f435b263c4614f384135cea553d2"}, + {file = "pyflakes-2.5.0.tar.gz", hash = "sha256:491feb020dca48ccc562a8c0cbe8df07ee13078df59813b83959cbdada312ea3"}, +] [[package]] name = "pygments" -version = "2.13.0" +version = "2.16.1" description = "Pygments is a syntax highlighting package written in Python." -category = "dev" optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" +files = [ + {file = "Pygments-2.16.1-py3-none-any.whl", hash = "sha256:13fc09fa63bc8d8671a6d247e1eb303c4b343eaee81d861f3404db2935653692"}, + {file = "Pygments-2.16.1.tar.gz", hash = "sha256:1daff0494820c69bc8941e407aa20f577374ee88364ee10a98fdbe0aece96e29"}, +] [package.extras] plugins = ["importlib-metadata"] [[package]] -name = "pyparsing" -version = "3.0.9" -description = "pyparsing module - Classes and methods to define and execute parsing grammars" -category = "dev" +name = "pyjwt" +version = "2.6.0" +description = "JSON Web Token implementation in Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "PyJWT-2.6.0-py3-none-any.whl", hash = "sha256:d83c3d892a77bbb74d3e1a2cfa90afaadb60945205d1095d9221f04466f64c14"}, + {file = "PyJWT-2.6.0.tar.gz", hash = "sha256:69285c7e31fc44f68a1feb309e948e0df53259d579295e6cfe2b1792329f05fd"}, +] + +[package.dependencies] +cryptography = {version = ">=3.4.0", optional = true, markers = "extra == \"crypto\""} + +[package.extras] +crypto = ["cryptography (>=3.4.0)"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] + +[[package]] +name = "pymupdf" +version = "1.23.2" +description = "A high performance Python library for data extraction, analysis, conversion & manipulation of PDF (and other) documents." +optional = false +python-versions = ">=3.8" +files = [ + {file = "PyMuPDF-1.23.2-cp310-none-macosx_10_9_x86_64.whl", hash = "sha256:701aff64dbf0635c2c875b518979b46b935ed4d3b3d2aee1c449e2960831d766"}, + {file = "PyMuPDF-1.23.2-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:949c071b50825cf341f03546e7354cef942c36fcc071a72a0417c035d6ee7e33"}, + {file = "PyMuPDF-1.23.2-cp310-none-manylinux2014_aarch64.whl", hash = "sha256:5209612dfc9038fbbb1a61dc01bd298d5279646d5e1c98cfe80878db3d862a3e"}, + {file = "PyMuPDF-1.23.2-cp310-none-manylinux2014_x86_64.whl", hash = "sha256:f20ba77a61440220bd2e380ceef8a86bf51f97ac9374a8af00aeedea904dad46"}, + {file = "PyMuPDF-1.23.2-cp310-none-win32.whl", hash = "sha256:01c45723fbc389fac2ab8150e5ba80c357706ca69a74c29ec1a83a05921c53d1"}, + {file = "PyMuPDF-1.23.2-cp310-none-win_amd64.whl", hash = "sha256:ff799db717d5b0e423bd81fbae8131cf3463a80a642524a96952f6f3deaf2a95"}, + {file = "PyMuPDF-1.23.2-cp311-none-macosx_10_9_x86_64.whl", hash = "sha256:1f372bcc70b888f0c953add8b15627efb9f3cc2c7b8ad0916560b6081093932c"}, + {file = "PyMuPDF-1.23.2-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:6389eb4bfc27264a951497847089e5e4485f6609c351ac321071d62881a21982"}, + {file = "PyMuPDF-1.23.2-cp311-none-manylinux2014_aarch64.whl", hash = "sha256:0fc5f600b3a72c29a0944cbcbc1375962ad669023265c50cd1d8f794d7ae95f7"}, + {file = "PyMuPDF-1.23.2-cp311-none-manylinux2014_x86_64.whl", hash = "sha256:4fc4a6183a7a8006b83476fc0b26d6fb849996050e8c3c911b9d6a66fe6ccc1e"}, + {file = "PyMuPDF-1.23.2-cp311-none-win32.whl", hash = "sha256:66f94d35fd48e2b5cbe70a4601f036f76cb826318b893994ab7bd4186a65e78f"}, + {file = "PyMuPDF-1.23.2-cp311-none-win_amd64.whl", hash = "sha256:1ec04285451231c68a024657b75d59a43ce0dcdade582edf3a9cc1d86c75b826"}, + {file = "PyMuPDF-1.23.2-cp38-none-macosx_10_9_x86_64.whl", hash = "sha256:40a713ea439548cf3c6bd910dc904cb868eae9d7bc1c2d0aebc04c84431822af"}, + {file = "PyMuPDF-1.23.2-cp38-none-macosx_11_0_arm64.whl", hash = "sha256:f0d57e40bdbf6c6deacf94387d3aad918535d8723aa6e3a27e4bef1f3d52158a"}, + {file = "PyMuPDF-1.23.2-cp38-none-manylinux2014_aarch64.whl", hash = "sha256:2de9da709e14a0b32ca1ed7e268615189a8c1e76a26920dd45a92d9f0e207d1f"}, + {file = "PyMuPDF-1.23.2-cp38-none-manylinux2014_x86_64.whl", hash = "sha256:7edc4b4542041a28f5644c09c1e670215ae014adc28a81d32786db73077d4cf3"}, + {file = "PyMuPDF-1.23.2-cp38-none-win32.whl", hash = "sha256:18f19be85f277a36536277f3f4991a2d1d1b9c2d0c3a515925e9bef41780efe0"}, + {file = "PyMuPDF-1.23.2-cp38-none-win_amd64.whl", hash = "sha256:a98cf7bb1ba8d64de78f443005c0f60c0c9644f73b3ebd57cbd20e232e2e5a30"}, + {file = "PyMuPDF-1.23.2-cp39-none-macosx_10_9_x86_64.whl", hash = "sha256:ac236156688627bca0a8062bb4153f77108f072dd4a06a80626fd089c2879e04"}, + {file = "PyMuPDF-1.23.2-cp39-none-macosx_11_0_arm64.whl", hash = "sha256:c1a08531194d038e068641be92fdc31276efbee2b718a8dc4281dc593f1a99e7"}, + {file = "PyMuPDF-1.23.2-cp39-none-manylinux2014_aarch64.whl", hash = "sha256:78b6c87fd375d1b017c63a426432be7ee4859f2142108b9c5dc8283599c112eb"}, + {file = "PyMuPDF-1.23.2-cp39-none-manylinux2014_x86_64.whl", hash = "sha256:41d9cd45bb61cda890d446baeeded454fb4404086cf7f7e385e440123e9ecb56"}, + {file = "PyMuPDF-1.23.2-cp39-none-win32.whl", hash = "sha256:d34da29cd4305c4b85ea57528c1a31cfc6abfac7921d27153e633470e9dac104"}, + {file = "PyMuPDF-1.23.2-cp39-none-win_amd64.whl", hash = "sha256:86127075227f868a6b115eb96a74405539dde90168cd1a98781b0f1f6d4f9d7c"}, + {file = "PyMuPDF-1.23.2.tar.gz", hash = "sha256:32302d0eb0e28d60ba305f5d74702fb0fab2ed9d9f6b3a9d853429e5023bc6bb"}, +] + +[package.dependencies] +PyMuPDFb = "1.23.0" + +[[package]] +name = "pymupdfb" +version = "1.23.0" +description = "Rebased Python bindings for the PDF toolkit and renderer MuPDF - shared libraries only" +optional = false +python-versions = ">=3.8" +files = [ + {file = "PyMuPDFb-1.23.0-py3-none-macosx_10_9_x86_64.whl", hash = "sha256:517b6bf8eb658d15a13b43f95bd06a93ac7020b25df45b35eb43058815ff2de0"}, + {file = "PyMuPDFb-1.23.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:07f55d21e982b3ba567708f8a4d663d933b597d2dcd81e16a6b09fdc3a66e59c"}, + {file = "PyMuPDFb-1.23.0-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3acfa3b9b4a4021cac771c74621d571b9cbb6ed7dc09833fe85f4126a7d4db97"}, + {file = "PyMuPDFb-1.23.0-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c58801b097c02910238e378aad23be3ff0f5ef785bad269142b4efb353dc9728"}, + {file = "PyMuPDFb-1.23.0-py3-none-win32.whl", hash = "sha256:89bf1a1085bffa3d5f8db12fce61cc9e0644a296bcc9568637f7ab36509e79ae"}, + {file = "PyMuPDFb-1.23.0-py3-none-win_amd64.whl", hash = "sha256:a5f425f2b2d977f623ba87f869162cb1a1579023c92032f863ea541d3c8997d9"}, +] + +[[package]] +name = "pyotp" +version = "2.9.0" +description = "Python One Time Password Library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyotp-2.9.0-py3-none-any.whl", hash = "sha256:81c2e5865b8ac55e825b0358e496e1d9387c811e85bb40e71a3b29b288963612"}, + {file = "pyotp-2.9.0.tar.gz", hash = "sha256:346b6642e0dbdde3b4ff5a930b664ca82abfa116356ed48cc42c7d6590d36f63"}, +] + +[package.extras] +test = ["coverage", "mypy", "ruff", "wheel"] + +[[package]] +name = "pytest" +version = "7.4.0" +description = "pytest: simple powerful testing with Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pytest-7.4.0-py3-none-any.whl", hash = "sha256:78bf16451a2eb8c7a2ea98e32dc119fd2aa758f1d5d66dbf0a59d69a3969df32"}, + {file = "pytest-7.4.0.tar.gz", hash = "sha256:b4bf8c45bd59934ed84001ad51e11b4ee40d40a1229d2c79f9c592b0a3f6bd8a"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "sys_platform == \"win32\""} +iniconfig = "*" +packaging = "*" +pluggy = ">=0.12,<2.0" + +[package.extras] +testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] + +[[package]] +name = "pytest-mock" +version = "3.11.1" +description = "Thin-wrapper around the mock package for easier use with pytest" optional = false -python-versions = ">=3.6.8" +python-versions = ">=3.7" +files = [ + {file = "pytest-mock-3.11.1.tar.gz", hash = "sha256:7f6b125602ac6d743e523ae0bfa71e1a697a2f5534064528c6ff84c2f7c2fc7f"}, + {file = "pytest_mock-3.11.1-py3-none-any.whl", hash = "sha256:21c279fff83d70763b05f8874cc9cfb3fcacd6d354247a976f9529d19f9acf39"}, +] + +[package.dependencies] +pytest = ">=5.0" [package.extras] -diagrams = ["jinja2", "railroad-diagrams"] +dev = ["pre-commit", "pytest-asyncio", "tox"] [[package]] name = "python-dateutil" version = "2.8.2" description = "Extensions to the standard Python datetime module" -category = "main" optional = false python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] [package.dependencies] six = ">=1.5" +[[package]] +name = "python-docx" +version = "0.8.11" +description = "Create and update Microsoft Word .docx files." +optional = false +python-versions = "*" +files = [ + {file = "python-docx-0.8.11.tar.gz", hash = "sha256:1105d233a0956dd8dd1e710d20b159e2d72ac3c301041b95f4d4ceb3e0ebebc4"}, +] + +[package.dependencies] +lxml = ">=2.3.2" + [[package]] name = "python-dotenv" -version = "0.21.0" +version = "0.21.1" description = "Read key-value pairs from a .env file and set them as environment variables" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "python-dotenv-0.21.1.tar.gz", hash = "sha256:1c93de8f636cde3ce377292818d0e440b6e45a82f215c3744979151fa8151c49"}, + {file = "python_dotenv-0.21.1-py3-none-any.whl", hash = "sha256:41e12e0318bebc859fcc4d97d4db8d20ad21721a6aa5047dd59f090391cb549a"}, +] [package.extras] cli = ["click (>=5.0)"] [[package]] -name = "python-multipart" -version = "0.0.5" -description = "A streaming multipart parser for Python" -category = "main" +name = "python-jose" +version = "3.3.0" +description = "JOSE implementation in Python" optional = false python-versions = "*" +files = [ + {file = "python-jose-3.3.0.tar.gz", hash = "sha256:55779b5e6ad599c6336191246e95eb2293a9ddebd555f796a65f838f07e5d78a"}, + {file = "python_jose-3.3.0-py2.py3-none-any.whl", hash = "sha256:9b1376b023f8b298536eedd47ae1089bcdb848f1535ab30555cd92002d78923a"}, +] + +[package.dependencies] +ecdsa = "!=0.15" +pyasn1 = "*" +rsa = "*" + +[package.extras] +cryptography = ["cryptography (>=3.4.0)"] +pycrypto = ["pyasn1", "pycrypto (>=2.6.0,<2.7.0)"] +pycryptodome = ["pyasn1", "pycryptodome (>=3.3.1,<4.0.0)"] + +[[package]] +name = "python-keycloak" +version = "4.0.0" +description = "python-keycloak is a Python package providing access to the Keycloak API." +optional = false +python-versions = "<4.0,>=3.8" +files = [ + {file = "python_keycloak-4.0.0-py3-none-any.whl", hash = "sha256:5ab0a0dab88508ad4bcfae656e045c6068b2f47ea98d9e44ce6ee19f075d36e9"}, + {file = "python_keycloak-4.0.0.tar.gz", hash = "sha256:b089a3f3abc7d4f27b67f84628fe930c19ebf1cdc42e75ba3bdf0da738048bef"}, +] [package.dependencies] -six = ">=1.4.0" +deprecation = ">=2.1.0" +jwcrypto = ">=1.5.4,<2.0.0" +requests = ">=2.20.0" +requests-toolbelt = ">=0.6.0" + +[[package]] +name = "python-multipart" +version = "0.0.6" +description = "A streaming multipart parser for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "python_multipart-0.0.6-py3-none-any.whl", hash = "sha256:ee698bab5ef148b0a760751c261902cd096e57e10558e11aca17646b74ee1c18"}, + {file = "python_multipart-0.0.6.tar.gz", hash = "sha256:e9925a80bb668529f1b67c7fdb0a5dacdd7cbfc6fb0bff3ea443fe22bdd62132"}, +] + +[package.extras] +dev = ["atomicwrites (==1.2.1)", "attrs (==19.2.0)", "coverage (==6.5.0)", "hatch", "invoke (==1.7.3)", "more-itertools (==4.3.0)", "pbr (==4.3.0)", "pluggy (==1.0.0)", "py (==1.11.0)", "pytest (==7.2.0)", "pytest-cov (==4.0.0)", "pytest-timeout (==2.1.0)", "pyyaml (==5.1)"] [[package]] name = "python-slugify" version = "7.0.0" description = "A Python slugify application that also handles Unicode" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "python-slugify-7.0.0.tar.gz", hash = "sha256:7a0f21a39fa6c1c4bf2e5984c9b9ae944483fd10b54804cb0e23a3ccd4954f0b"}, + {file = "python_slugify-7.0.0-py2.py3-none-any.whl", hash = "sha256:003aee64f9fd955d111549f96c4b58a3f40b9319383c70fad6277a4974bbf570"}, +] [package.dependencies] text-unidecode = ">=1.3" @@ -746,113 +2649,433 @@ unidecode = ["Unidecode (>=1.1.1)"] [[package]] name = "pytz" -version = "2022.6" +version = "2023.3" description = "World timezone definitions, modern and historical" -category = "main" optional = false python-versions = "*" +files = [ + {file = "pytz-2023.3-py2.py3-none-any.whl", hash = "sha256:a151b3abb88eda1d4e34a9814df37de2a80e301e68ba0fd856fb9b46bfbbbffb"}, + {file = "pytz-2023.3.tar.gz", hash = "sha256:1d8ce29db189191fb55338ee6d0387d82ab59f3d00eac103412d64e0ebd0c588"}, +] [[package]] name = "pywin32" -version = "305" +version = "306" description = "Python for Window Extensions" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, + {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, + {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"}, + {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"}, + {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"}, + {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"}, + {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"}, + {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"}, + {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"}, + {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"}, + {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"}, + {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"}, + {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"}, + {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"}, +] [[package]] name = "pyyaml" -version = "6.0" +version = "6.0.1" description = "YAML parser and emitter for Python" -category = "main" optional = false python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] [[package]] name = "pyzmq" -version = "24.0.1" +version = "25.1.1" description = "Python bindings for 0MQ" -category = "dev" optional = false python-versions = ">=3.6" +files = [ + {file = "pyzmq-25.1.1-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:381469297409c5adf9a0e884c5eb5186ed33137badcbbb0560b86e910a2f1e76"}, + {file = "pyzmq-25.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:955215ed0604dac5b01907424dfa28b40f2b2292d6493445dd34d0dfa72586a8"}, + {file = "pyzmq-25.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:985bbb1316192b98f32e25e7b9958088431d853ac63aca1d2c236f40afb17c83"}, + {file = "pyzmq-25.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:afea96f64efa98df4da6958bae37f1cbea7932c35878b185e5982821bc883369"}, + {file = "pyzmq-25.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76705c9325d72a81155bb6ab48d4312e0032bf045fb0754889133200f7a0d849"}, + {file = "pyzmq-25.1.1-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:77a41c26205d2353a4c94d02be51d6cbdf63c06fbc1295ea57dad7e2d3381b71"}, + {file = "pyzmq-25.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:12720a53e61c3b99d87262294e2b375c915fea93c31fc2336898c26d7aed34cd"}, + {file = "pyzmq-25.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:57459b68e5cd85b0be8184382cefd91959cafe79ae019e6b1ae6e2ba8a12cda7"}, + {file = "pyzmq-25.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:292fe3fc5ad4a75bc8df0dfaee7d0babe8b1f4ceb596437213821f761b4589f9"}, + {file = "pyzmq-25.1.1-cp310-cp310-win32.whl", hash = "sha256:35b5ab8c28978fbbb86ea54958cd89f5176ce747c1fb3d87356cf698048a7790"}, + {file = "pyzmq-25.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:11baebdd5fc5b475d484195e49bae2dc64b94a5208f7c89954e9e354fc609d8f"}, + {file = "pyzmq-25.1.1-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:d20a0ddb3e989e8807d83225a27e5c2eb2260eaa851532086e9e0fa0d5287d83"}, + {file = "pyzmq-25.1.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e1c1be77bc5fb77d923850f82e55a928f8638f64a61f00ff18a67c7404faf008"}, + {file = "pyzmq-25.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d89528b4943d27029a2818f847c10c2cecc79fa9590f3cb1860459a5be7933eb"}, + {file = "pyzmq-25.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:90f26dc6d5f241ba358bef79be9ce06de58d477ca8485e3291675436d3827cf8"}, + {file = "pyzmq-25.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c2b92812bd214018e50b6380ea3ac0c8bb01ac07fcc14c5f86a5bb25e74026e9"}, + {file = "pyzmq-25.1.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:2f957ce63d13c28730f7fd6b72333814221c84ca2421298f66e5143f81c9f91f"}, + {file = "pyzmq-25.1.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:047a640f5c9c6ade7b1cc6680a0e28c9dd5a0825135acbd3569cc96ea00b2505"}, + {file = "pyzmq-25.1.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7f7e58effd14b641c5e4dec8c7dab02fb67a13df90329e61c869b9cc607ef752"}, + {file = "pyzmq-25.1.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c2910967e6ab16bf6fbeb1f771c89a7050947221ae12a5b0b60f3bca2ee19bca"}, + {file = "pyzmq-25.1.1-cp311-cp311-win32.whl", hash = "sha256:76c1c8efb3ca3a1818b837aea423ff8a07bbf7aafe9f2f6582b61a0458b1a329"}, + {file = "pyzmq-25.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:44e58a0554b21fc662f2712814a746635ed668d0fbc98b7cb9d74cb798d202e6"}, + {file = "pyzmq-25.1.1-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:e1ffa1c924e8c72778b9ccd386a7067cddf626884fd8277f503c48bb5f51c762"}, + {file = "pyzmq-25.1.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:1af379b33ef33757224da93e9da62e6471cf4a66d10078cf32bae8127d3d0d4a"}, + {file = "pyzmq-25.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cff084c6933680d1f8b2f3b4ff5bbb88538a4aac00d199ac13f49d0698727ecb"}, + {file = "pyzmq-25.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2400a94f7dd9cb20cd012951a0cbf8249e3d554c63a9c0cdfd5cbb6c01d2dec"}, + {file = "pyzmq-25.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d81f1ddae3858b8299d1da72dd7d19dd36aab654c19671aa8a7e7fb02f6638a"}, + {file = "pyzmq-25.1.1-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:255ca2b219f9e5a3a9ef3081512e1358bd4760ce77828e1028b818ff5610b87b"}, + {file = "pyzmq-25.1.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a882ac0a351288dd18ecae3326b8a49d10c61a68b01419f3a0b9a306190baf69"}, + {file = "pyzmq-25.1.1-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:724c292bb26365659fc434e9567b3f1adbdb5e8d640c936ed901f49e03e5d32e"}, + {file = "pyzmq-25.1.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ca1ed0bb2d850aa8471387882247c68f1e62a4af0ce9c8a1dbe0d2bf69e41fb"}, + {file = "pyzmq-25.1.1-cp312-cp312-win32.whl", hash = "sha256:b3451108ab861040754fa5208bca4a5496c65875710f76789a9ad27c801a0075"}, + {file = "pyzmq-25.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:eadbefd5e92ef8a345f0525b5cfd01cf4e4cc651a2cffb8f23c0dd184975d787"}, + {file = "pyzmq-25.1.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:db0b2af416ba735c6304c47f75d348f498b92952f5e3e8bff449336d2728795d"}, + {file = "pyzmq-25.1.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7c133e93b405eb0d36fa430c94185bdd13c36204a8635470cccc200723c13bb"}, + {file = "pyzmq-25.1.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:273bc3959bcbff3f48606b28229b4721716598d76b5aaea2b4a9d0ab454ec062"}, + {file = "pyzmq-25.1.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:cbc8df5c6a88ba5ae385d8930da02201165408dde8d8322072e3e5ddd4f68e22"}, + {file = "pyzmq-25.1.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:18d43df3f2302d836f2a56f17e5663e398416e9dd74b205b179065e61f1a6edf"}, + {file = "pyzmq-25.1.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:73461eed88a88c866656e08f89299720a38cb4e9d34ae6bf5df6f71102570f2e"}, + {file = "pyzmq-25.1.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:34c850ce7976d19ebe7b9d4b9bb8c9dfc7aac336c0958e2651b88cbd46682123"}, + {file = "pyzmq-25.1.1-cp36-cp36m-win32.whl", hash = "sha256:d2045d6d9439a0078f2a34b57c7b18c4a6aef0bee37f22e4ec9f32456c852c71"}, + {file = "pyzmq-25.1.1-cp36-cp36m-win_amd64.whl", hash = "sha256:458dea649f2f02a0b244ae6aef8dc29325a2810aa26b07af8374dc2a9faf57e3"}, + {file = "pyzmq-25.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7cff25c5b315e63b07a36f0c2bab32c58eafbe57d0dce61b614ef4c76058c115"}, + {file = "pyzmq-25.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1579413ae492b05de5a6174574f8c44c2b9b122a42015c5292afa4be2507f28"}, + {file = "pyzmq-25.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:3d0a409d3b28607cc427aa5c30a6f1e4452cc44e311f843e05edb28ab5e36da0"}, + {file = "pyzmq-25.1.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:21eb4e609a154a57c520e3d5bfa0d97e49b6872ea057b7c85257b11e78068222"}, + {file = "pyzmq-25.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:034239843541ef7a1aee0c7b2cb7f6aafffb005ede965ae9cbd49d5ff4ff73cf"}, + {file = "pyzmq-25.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f8115e303280ba09f3898194791a153862cbf9eef722ad8f7f741987ee2a97c7"}, + {file = "pyzmq-25.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:1a5d26fe8f32f137e784f768143728438877d69a586ddeaad898558dc971a5ae"}, + {file = "pyzmq-25.1.1-cp37-cp37m-win32.whl", hash = "sha256:f32260e556a983bc5c7ed588d04c942c9a8f9c2e99213fec11a031e316874c7e"}, + {file = "pyzmq-25.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:abf34e43c531bbb510ae7e8f5b2b1f2a8ab93219510e2b287a944432fad135f3"}, + {file = "pyzmq-25.1.1-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:87e34f31ca8f168c56d6fbf99692cc8d3b445abb5bfd08c229ae992d7547a92a"}, + {file = "pyzmq-25.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:c9c6c9b2c2f80747a98f34ef491c4d7b1a8d4853937bb1492774992a120f475d"}, + {file = "pyzmq-25.1.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5619f3f5a4db5dbb572b095ea3cb5cc035335159d9da950830c9c4db2fbb6995"}, + {file = "pyzmq-25.1.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5a34d2395073ef862b4032343cf0c32a712f3ab49d7ec4f42c9661e0294d106f"}, + {file = "pyzmq-25.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25f0e6b78220aba09815cd1f3a32b9c7cb3e02cb846d1cfc526b6595f6046618"}, + {file = "pyzmq-25.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:3669cf8ee3520c2f13b2e0351c41fea919852b220988d2049249db10046a7afb"}, + {file = "pyzmq-25.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:2d163a18819277e49911f7461567bda923461c50b19d169a062536fffe7cd9d2"}, + {file = "pyzmq-25.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:df27ffddff4190667d40de7beba4a950b5ce78fe28a7dcc41d6f8a700a80a3c0"}, + {file = "pyzmq-25.1.1-cp38-cp38-win32.whl", hash = "sha256:a382372898a07479bd34bda781008e4a954ed8750f17891e794521c3e21c2e1c"}, + {file = "pyzmq-25.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:52533489f28d62eb1258a965f2aba28a82aa747202c8fa5a1c7a43b5db0e85c1"}, + {file = "pyzmq-25.1.1-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:03b3f49b57264909aacd0741892f2aecf2f51fb053e7d8ac6767f6c700832f45"}, + {file = "pyzmq-25.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:330f9e188d0d89080cde66dc7470f57d1926ff2fb5576227f14d5be7ab30b9fa"}, + {file = "pyzmq-25.1.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:2ca57a5be0389f2a65e6d3bb2962a971688cbdd30b4c0bd188c99e39c234f414"}, + {file = "pyzmq-25.1.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d457aed310f2670f59cc5b57dcfced452aeeed77f9da2b9763616bd57e4dbaae"}, + {file = "pyzmq-25.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c56d748ea50215abef7030c72b60dd723ed5b5c7e65e7bc2504e77843631c1a6"}, + {file = "pyzmq-25.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:8f03d3f0d01cb5a018debeb412441996a517b11c5c17ab2001aa0597c6d6882c"}, + {file = "pyzmq-25.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:820c4a08195a681252f46926de10e29b6bbf3e17b30037bd4250d72dd3ddaab8"}, + {file = "pyzmq-25.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17ef5f01d25b67ca8f98120d5fa1d21efe9611604e8eb03a5147360f517dd1e2"}, + {file = "pyzmq-25.1.1-cp39-cp39-win32.whl", hash = "sha256:04ccbed567171579ec2cebb9c8a3e30801723c575601f9a990ab25bcac6b51e2"}, + {file = "pyzmq-25.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:e61f091c3ba0c3578411ef505992d356a812fb200643eab27f4f70eed34a29ef"}, + {file = "pyzmq-25.1.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:ade6d25bb29c4555d718ac6d1443a7386595528c33d6b133b258f65f963bb0f6"}, + {file = "pyzmq-25.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0c95ddd4f6e9fca4e9e3afaa4f9df8552f0ba5d1004e89ef0a68e1f1f9807c7"}, + {file = "pyzmq-25.1.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:48e466162a24daf86f6b5ca72444d2bf39a5e58da5f96370078be67c67adc978"}, + {file = "pyzmq-25.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:abc719161780932c4e11aaebb203be3d6acc6b38d2f26c0f523b5b59d2fc1996"}, + {file = "pyzmq-25.1.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:1ccf825981640b8c34ae54231b7ed00271822ea1c6d8ba1090ebd4943759abf5"}, + {file = "pyzmq-25.1.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c2f20ce161ebdb0091a10c9ca0372e023ce24980d0e1f810f519da6f79c60800"}, + {file = "pyzmq-25.1.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:deee9ca4727f53464daf089536e68b13e6104e84a37820a88b0a057b97bba2d2"}, + {file = "pyzmq-25.1.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:aa8d6cdc8b8aa19ceb319aaa2b660cdaccc533ec477eeb1309e2a291eaacc43a"}, + {file = "pyzmq-25.1.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:019e59ef5c5256a2c7378f2fb8560fc2a9ff1d315755204295b2eab96b254d0a"}, + {file = "pyzmq-25.1.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:b9af3757495c1ee3b5c4e945c1df7be95562277c6e5bccc20a39aec50f826cd0"}, + {file = "pyzmq-25.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:548d6482dc8aadbe7e79d1b5806585c8120bafa1ef841167bc9090522b610fa6"}, + {file = "pyzmq-25.1.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:057e824b2aae50accc0f9a0570998adc021b372478a921506fddd6c02e60308e"}, + {file = "pyzmq-25.1.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:2243700cc5548cff20963f0ca92d3e5e436394375ab8a354bbea2b12911b20b0"}, + {file = "pyzmq-25.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:79986f3b4af059777111409ee517da24a529bdbd46da578b33f25580adcff728"}, + {file = "pyzmq-25.1.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:11d58723d44d6ed4dd677c5615b2ffb19d5c426636345567d6af82be4dff8a55"}, + {file = "pyzmq-25.1.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:49d238cf4b69652257db66d0c623cd3e09b5d2e9576b56bc067a396133a00d4a"}, + {file = "pyzmq-25.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fedbdc753827cf014c01dbbee9c3be17e5a208dcd1bf8641ce2cd29580d1f0d4"}, + {file = "pyzmq-25.1.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bc16ac425cc927d0a57d242589f87ee093884ea4804c05a13834d07c20db203c"}, + {file = "pyzmq-25.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11c1d2aed9079c6b0c9550a7257a836b4a637feb334904610f06d70eb44c56d2"}, + {file = "pyzmq-25.1.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e8a701123029cc240cea61dd2d16ad57cab4691804143ce80ecd9286b464d180"}, + {file = "pyzmq-25.1.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:61706a6b6c24bdece85ff177fec393545a3191eeda35b07aaa1458a027ad1304"}, + {file = "pyzmq-25.1.1.tar.gz", hash = "sha256:259c22485b71abacdfa8bf79720cd7bcf4b9d128b30ea554f01ae71fdbfdaa23"}, +] [package.dependencies] cffi = {version = "*", markers = "implementation_name == \"pypy\""} -py = {version = "*", markers = "implementation_name == \"pypy\""} [[package]] -name = "requests" -version = "2.28.1" -description = "Python HTTP for Humans." -category = "main" +name = "reportlab" +version = "4.0.4" +description = "The Reportlab Toolkit" optional = false -python-versions = ">=3.7, <4" +python-versions = ">=3.7,<4" +files = [ + {file = "reportlab-4.0.4-py3-none-any.whl", hash = "sha256:3dcda79ce04baf70721e2ec54854722644262cac2feec3d5c4c5e77015504cb0"}, + {file = "reportlab-4.0.4.tar.gz", hash = "sha256:7f70b3b56aff5f11cb4136c51a0f5a56fe6e4c8fbbac7b903076db99a8ef31c1"}, +] [package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<3" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<1.27" +pillow = ">=9.0.0" [package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] +accel = ["rl-accel (>=0.9.0,<1.1)"] +pycairo = ["freetype-py (>=2.3.0,<2.4)", "rlPyCairo (>=0.2.0,<1)"] +renderpm = ["rl-renderPM (>=4.0.3,<4.1)"] + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] +[[package]] +name = "requests-toolbelt" +version = "1.0.0" +description = "A utility belt for advanced users of python-requests" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "requests-toolbelt-1.0.0.tar.gz", hash = "sha256:7681a0a3d047012b5bdc0ee37d7f8f07ebe76ab08caeccfc3921ce23c88d5bc6"}, + {file = "requests_toolbelt-1.0.0-py2.py3-none-any.whl", hash = "sha256:cccfdd665f0a24fcf4726e690f65639d272bb0637b9b92dfd91a5568ccf6bd06"}, +] + +[package.dependencies] +requests = ">=2.0.1,<3.0.0" + +[[package]] +name = "rsa" +version = "4.9" +description = "Pure-Python RSA implementation" +optional = false +python-versions = ">=3.6,<4" +files = [ + {file = "rsa-4.9-py3-none-any.whl", hash = "sha256:90260d9058e514786967344d0ef75fa8727eed8a7d2e43ce9f4bcf1b536174f7"}, + {file = "rsa-4.9.tar.gz", hash = "sha256:e38464a49c6c85d7f1351b0126661487a7e0a14a50f1675ec50eb34d4f20ef21"}, +] + +[package.dependencies] +pyasn1 = ">=0.1.3" + +[[package]] +name = "setuptools" +version = "68.1.2" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +optional = false +python-versions = ">=3.8" +files = [ + {file = "setuptools-68.1.2-py3-none-any.whl", hash = "sha256:3d8083eed2d13afc9426f227b24fd1659489ec107c0e86cec2ffdde5c92e790b"}, + {file = "setuptools-68.1.2.tar.gz", hash = "sha256:3d4dfa6d95f1b101d695a6160a7626e15583af71a5f52176efa5d39a054d475d"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9.3)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5,<=7.1.2)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.develop (>=7.21)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=2.2)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + [[package]] name = "six" version = "1.16.0" description = "Python 2 and 3 compatibility utilities" -category = "main" optional = false python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "slowapi" +version = "0.1.8" +description = "A rate limiting extension for Starlette and Fastapi" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "slowapi-0.1.8-py3-none-any.whl", hash = "sha256:629fc415575bbffcd9d8621cc3ce326a78402c5f9b7b50b127979118d485c72e"}, + {file = "slowapi-0.1.8.tar.gz", hash = "sha256:8cc268f5a7e3624efa3f7bd2859b895f9f2376c4ed4e0378dd2f7f3343ca608e"}, +] + +[package.dependencies] +limits = ">=2.3" + +[package.extras] +redis = ["redis (>=3.4.1,<4.0.0)"] [[package]] name = "sniffio" version = "1.3.0" description = "Sniff out which async library your code is running under" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, + {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, +] + +[[package]] +name = "soupsieve" +version = "2.5" +description = "A modern CSS selector implementation for Beautiful Soup." +optional = false +python-versions = ">=3.8" +files = [ + {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, + {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, +] [[package]] name = "sqlalchemy" -version = "1.4.44" +version = "2.0.21" description = "Database Abstraction Library" -category = "main" optional = false -python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" +python-versions = ">=3.7" +files = [ + {file = "SQLAlchemy-2.0.21-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1e7dc99b23e33c71d720c4ae37ebb095bebebbd31a24b7d99dfc4753d2803ede"}, + {file = "SQLAlchemy-2.0.21-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7f0c4ee579acfe6c994637527c386d1c22eb60bc1c1d36d940d8477e482095d4"}, + {file = "SQLAlchemy-2.0.21-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f7d57a7e140efe69ce2d7b057c3f9a595f98d0bbdfc23fd055efdfbaa46e3a5"}, + {file = "SQLAlchemy-2.0.21-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ca38746eac23dd7c20bec9278d2058c7ad662b2f1576e4c3dbfcd7c00cc48fa"}, + {file = "SQLAlchemy-2.0.21-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3cf229704074bce31f7f47d12883afee3b0a02bb233a0ba45ddbfe542939cca4"}, + {file = "SQLAlchemy-2.0.21-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fb87f763b5d04a82ae84ccff25554ffd903baafba6698e18ebaf32561f2fe4aa"}, + {file = "SQLAlchemy-2.0.21-cp310-cp310-win32.whl", hash = "sha256:89e274604abb1a7fd5c14867a412c9d49c08ccf6ce3e1e04fffc068b5b6499d4"}, + {file = "SQLAlchemy-2.0.21-cp310-cp310-win_amd64.whl", hash = "sha256:e36339a68126ffb708dc6d1948161cea2a9e85d7d7b0c54f6999853d70d44430"}, + {file = "SQLAlchemy-2.0.21-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:bf8eebccc66829010f06fbd2b80095d7872991bfe8415098b9fe47deaaa58063"}, + {file = "SQLAlchemy-2.0.21-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b977bfce15afa53d9cf6a632482d7968477625f030d86a109f7bdfe8ce3c064a"}, + {file = "SQLAlchemy-2.0.21-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ff3dc2f60dbf82c9e599c2915db1526d65415be323464f84de8db3e361ba5b9"}, + {file = "SQLAlchemy-2.0.21-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44ac5c89b6896f4740e7091f4a0ff2e62881da80c239dd9408f84f75a293dae9"}, + {file = "SQLAlchemy-2.0.21-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:87bf91ebf15258c4701d71dcdd9c4ba39521fb6a37379ea68088ce8cd869b446"}, + {file = "SQLAlchemy-2.0.21-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:b69f1f754d92eb1cc6b50938359dead36b96a1dcf11a8670bff65fd9b21a4b09"}, + {file = "SQLAlchemy-2.0.21-cp311-cp311-win32.whl", hash = "sha256:af520a730d523eab77d754f5cf44cc7dd7ad2d54907adeb3233177eeb22f271b"}, + {file = "SQLAlchemy-2.0.21-cp311-cp311-win_amd64.whl", hash = "sha256:141675dae56522126986fa4ca713739d00ed3a6f08f3c2eb92c39c6dfec463ce"}, + {file = "SQLAlchemy-2.0.21-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:56628ca27aa17b5890391ded4e385bf0480209726f198799b7e980c6bd473bd7"}, + {file = "SQLAlchemy-2.0.21-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:db726be58837fe5ac39859e0fa40baafe54c6d54c02aba1d47d25536170b690f"}, + {file = "SQLAlchemy-2.0.21-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e7421c1bfdbb7214313919472307be650bd45c4dc2fcb317d64d078993de045b"}, + {file = "SQLAlchemy-2.0.21-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:632784f7a6f12cfa0e84bf2a5003b07660addccf5563c132cd23b7cc1d7371a9"}, + {file = "SQLAlchemy-2.0.21-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:f6f7276cf26145a888f2182a98f204541b519d9ea358a65d82095d9c9e22f917"}, + {file = "SQLAlchemy-2.0.21-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2a1f7ffac934bc0ea717fa1596f938483fb8c402233f9b26679b4f7b38d6ab6e"}, + {file = "SQLAlchemy-2.0.21-cp312-cp312-win32.whl", hash = "sha256:bfece2f7cec502ec5f759bbc09ce711445372deeac3628f6fa1c16b7fb45b682"}, + {file = "SQLAlchemy-2.0.21-cp312-cp312-win_amd64.whl", hash = "sha256:526b869a0f4f000d8d8ee3409d0becca30ae73f494cbb48801da0129601f72c6"}, + {file = "SQLAlchemy-2.0.21-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:7614f1eab4336df7dd6bee05bc974f2b02c38d3d0c78060c5faa4cd1ca2af3b8"}, + {file = "SQLAlchemy-2.0.21-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d59cb9e20d79686aa473e0302e4a82882d7118744d30bb1dfb62d3c47141b3ec"}, + {file = "SQLAlchemy-2.0.21-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a95aa0672e3065d43c8aa80080cdd5cc40fe92dc873749e6c1cf23914c4b83af"}, + {file = "SQLAlchemy-2.0.21-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:8c323813963b2503e54d0944813cd479c10c636e3ee223bcbd7bd478bf53c178"}, + {file = "SQLAlchemy-2.0.21-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:419b1276b55925b5ac9b4c7044e999f1787c69761a3c9756dec6e5c225ceca01"}, + {file = "SQLAlchemy-2.0.21-cp37-cp37m-win32.whl", hash = "sha256:4615623a490e46be85fbaa6335f35cf80e61df0783240afe7d4f544778c315a9"}, + {file = "SQLAlchemy-2.0.21-cp37-cp37m-win_amd64.whl", hash = "sha256:cca720d05389ab1a5877ff05af96551e58ba65e8dc65582d849ac83ddde3e231"}, + {file = "SQLAlchemy-2.0.21-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b4eae01faee9f2b17f08885e3f047153ae0416648f8e8c8bd9bc677c5ce64be9"}, + {file = "SQLAlchemy-2.0.21-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3eb7c03fe1cd3255811cd4e74db1ab8dca22074d50cd8937edf4ef62d758cdf4"}, + {file = "SQLAlchemy-2.0.21-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c2d494b6a2a2d05fb99f01b84cc9af9f5f93bf3e1e5dbdafe4bed0c2823584c1"}, + {file = "SQLAlchemy-2.0.21-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b19ae41ef26c01a987e49e37c77b9ad060c59f94d3b3efdfdbf4f3daaca7b5fe"}, + {file = "SQLAlchemy-2.0.21-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:fc6b15465fabccc94bf7e38777d665b6a4f95efd1725049d6184b3a39fd54880"}, + {file = "SQLAlchemy-2.0.21-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:014794b60d2021cc8ae0f91d4d0331fe92691ae5467a00841f7130fe877b678e"}, + {file = "SQLAlchemy-2.0.21-cp38-cp38-win32.whl", hash = "sha256:0268256a34806e5d1c8f7ee93277d7ea8cc8ae391f487213139018b6805aeaf6"}, + {file = "SQLAlchemy-2.0.21-cp38-cp38-win_amd64.whl", hash = "sha256:73c079e21d10ff2be54a4699f55865d4b275fd6c8bd5d90c5b1ef78ae0197301"}, + {file = "SQLAlchemy-2.0.21-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:785e2f2c1cb50d0a44e2cdeea5fd36b5bf2d79c481c10f3a88a8be4cfa2c4615"}, + {file = "SQLAlchemy-2.0.21-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c111cd40910ffcb615b33605fc8f8e22146aeb7933d06569ac90f219818345ef"}, + {file = "SQLAlchemy-2.0.21-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9cba4e7369de663611ce7460a34be48e999e0bbb1feb9130070f0685e9a6b66"}, + {file = "SQLAlchemy-2.0.21-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50a69067af86ec7f11a8e50ba85544657b1477aabf64fa447fd3736b5a0a4f67"}, + {file = "SQLAlchemy-2.0.21-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ccb99c3138c9bde118b51a289d90096a3791658da9aea1754667302ed6564f6e"}, + {file = "SQLAlchemy-2.0.21-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:513fd5b6513d37e985eb5b7ed89da5fd9e72354e3523980ef00d439bc549c9e9"}, + {file = "SQLAlchemy-2.0.21-cp39-cp39-win32.whl", hash = "sha256:f9fefd6298433b6e9188252f3bff53b9ff0443c8fde27298b8a2b19f6617eeb9"}, + {file = "SQLAlchemy-2.0.21-cp39-cp39-win_amd64.whl", hash = "sha256:2e617727fe4091cedb3e4409b39368f424934c7faa78171749f704b49b4bb4ce"}, + {file = "SQLAlchemy-2.0.21-py3-none-any.whl", hash = "sha256:ea7da25ee458d8f404b93eb073116156fd7d8c2a776d8311534851f28277b4ce"}, + {file = "SQLAlchemy-2.0.21.tar.gz", hash = "sha256:05b971ab1ac2994a14c56b35eaaa91f86ba080e9ad481b20d99d77f381bb6258"}, +] [package.dependencies] -greenlet = {version = "!=0.4.17", markers = "python_version >= \"3\" and (platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\")"} +greenlet = {version = "!=0.4.17", markers = "platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\""} +typing-extensions = ">=4.2.0" [package.extras] -aiomysql = ["aiomysql", "greenlet (!=0.4.17)"] -aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing_extensions (!=3.10.0.1)"] +aiomysql = ["aiomysql (>=0.2.0)", "greenlet (!=0.4.17)"] +aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing-extensions (!=3.10.0.1)"] asyncio = ["greenlet (!=0.4.17)"] -asyncmy = ["asyncmy (>=0.2.3,!=0.2.4)", "greenlet (!=0.4.17)"] -mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2)"] +asyncmy = ["asyncmy (>=0.2.3,!=0.2.4,!=0.2.6)", "greenlet (!=0.4.17)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5)"] mssql = ["pyodbc"] mssql-pymssql = ["pymssql"] mssql-pyodbc = ["pyodbc"] -mypy = ["mypy (>=0.910)", "sqlalchemy2-stubs"] -mysql = ["mysqlclient (>=1.4.0)", "mysqlclient (>=1.4.0,<2)"] +mypy = ["mypy (>=0.910)"] +mysql = ["mysqlclient (>=1.4.0)"] mysql-connector = ["mysql-connector-python"] -oracle = ["cx_oracle (>=7)", "cx_oracle (>=7,<8)"] +oracle = ["cx-oracle (>=7)"] +oracle-oracledb = ["oracledb (>=1.0.1)"] postgresql = ["psycopg2 (>=2.7)"] postgresql-asyncpg = ["asyncpg", "greenlet (!=0.4.17)"] -postgresql-pg8000 = ["pg8000 (>=1.16.6,!=1.29.0)"] +postgresql-pg8000 = ["pg8000 (>=1.29.1)"] +postgresql-psycopg = ["psycopg (>=3.0.7)"] postgresql-psycopg2binary = ["psycopg2-binary"] postgresql-psycopg2cffi = ["psycopg2cffi"] -pymysql = ["pymysql", "pymysql (<1)"] -sqlcipher = ["sqlcipher3_binary"] +postgresql-psycopgbinary = ["psycopg[binary] (>=3.0.7)"] +pymysql = ["pymysql"] +sqlcipher = ["sqlcipher3-binary"] [[package]] name = "stack-data" -version = "0.6.1" +version = "0.6.2" description = "Extract data from python stack frames and tracebacks for informative displays" -category = "dev" optional = false python-versions = "*" +files = [ + {file = "stack_data-0.6.2-py3-none-any.whl", hash = "sha256:cbb2a53eb64e5785878201a97ed7c7b94883f48b87bfb0bbe8b623c74679e4a8"}, + {file = "stack_data-0.6.2.tar.gz", hash = "sha256:32d2dd0376772d01b6cb9fc996f3c8b57a357089dec328ed4b6553d037eaf815"}, +] [package.dependencies] asttokens = ">=2.1.0" @@ -864,1153 +3087,234 @@ tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] [[package]] name = "starlette" -version = "0.20.4" +version = "0.26.1" description = "The little ASGI library that shines." -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "starlette-0.26.1-py3-none-any.whl", hash = "sha256:e87fce5d7cbdde34b76f0ac69013fd9d190d581d80681493016666e6f96c6d5e"}, + {file = "starlette-0.26.1.tar.gz", hash = "sha256:41da799057ea8620e4667a3e69a5b1923ebd32b1819c8fa75634bbe8d8bea9bd"}, +] [package.dependencies] anyio = ">=3.4.0,<5" [package.extras] -full = ["itsdangerous", "jinja2", "python-multipart", "pyyaml", "requests"] +full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"] + +[[package]] +name = "tenacity" +version = "8.4.2" +description = "Retry code until it succeeds" +optional = false +python-versions = ">=3.8" +files = [ + {file = "tenacity-8.4.2-py3-none-any.whl", hash = "sha256:9e6f7cf7da729125c7437222f8a522279751cdfbe6b67bfe64f75d3a348661b2"}, + {file = "tenacity-8.4.2.tar.gz", hash = "sha256:cd80a53a79336edba8489e767f729e4f391c896956b57140b5d7511a64bbd3ef"}, +] + +[package.extras] +doc = ["reno", "sphinx"] +test = ["pytest", "tornado (>=4.5)", "typeguard"] [[package]] name = "text-unidecode" version = "1.3" description = "The most basic Text::Unidecode port" -category = "main" optional = false python-versions = "*" +files = [ + {file = "text-unidecode-1.3.tar.gz", hash = "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93"}, + {file = "text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8"}, +] [[package]] name = "tokenize-rt" -version = "5.0.0" +version = "5.2.0" description = "A wrapper around the stdlib `tokenize` which roundtrips." -category = "dev" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" +files = [ + {file = "tokenize_rt-5.2.0-py2.py3-none-any.whl", hash = "sha256:b79d41a65cfec71285433511b50271b05da3584a1da144a0752e9c621a285289"}, + {file = "tokenize_rt-5.2.0.tar.gz", hash = "sha256:9fe80f8a5c1edad2d3ede0f37481cc0cc1538a2f442c9c2f9e4feacd2792d054"}, +] [[package]] name = "tornado" -version = "6.2" +version = "6.3.3" description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." -category = "dev" optional = false -python-versions = ">= 3.7" +python-versions = ">= 3.8" +files = [ + {file = "tornado-6.3.3-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:502fba735c84450974fec147340016ad928d29f1e91f49be168c0a4c18181e1d"}, + {file = "tornado-6.3.3-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:805d507b1f588320c26f7f097108eb4023bbaa984d63176d1652e184ba24270a"}, + {file = "tornado-6.3.3-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1bd19ca6c16882e4d37368e0152f99c099bad93e0950ce55e71daed74045908f"}, + {file = "tornado-6.3.3-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7ac51f42808cca9b3613f51ffe2a965c8525cb1b00b7b2d56828b8045354f76a"}, + {file = "tornado-6.3.3-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:71a8db65160a3c55d61839b7302a9a400074c9c753040455494e2af74e2501f2"}, + {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:ceb917a50cd35882b57600709dd5421a418c29ddc852da8bcdab1f0db33406b0"}, + {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:7d01abc57ea0dbb51ddfed477dfe22719d376119844e33c661d873bf9c0e4a16"}, + {file = "tornado-6.3.3-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:9dc4444c0defcd3929d5c1eb5706cbe1b116e762ff3e0deca8b715d14bf6ec17"}, + {file = "tornado-6.3.3-cp38-abi3-win32.whl", hash = "sha256:65ceca9500383fbdf33a98c0087cb975b2ef3bfb874cb35b8de8740cf7f41bd3"}, + {file = "tornado-6.3.3-cp38-abi3-win_amd64.whl", hash = "sha256:22d3c2fa10b5793da13c807e6fc38ff49a4f6e1e3868b0a6f4164768bb8e20f5"}, + {file = "tornado-6.3.3.tar.gz", hash = "sha256:e7d8db41c0181c80d76c982aacc442c0783a2c54d6400fe028954201a2e032fe"}, +] [[package]] name = "traitlets" -version = "5.5.0" -description = "" -category = "dev" +version = "5.9.0" +description = "Traitlets Python configuration system" optional = false python-versions = ">=3.7" +files = [ + {file = "traitlets-5.9.0-py3-none-any.whl", hash = "sha256:9e6ec080259b9a5940c797d58b613b5e31441c2257b87c2e795c5228ae80d2d8"}, + {file = "traitlets-5.9.0.tar.gz", hash = "sha256:f6cde21a9c68cf756af02035f72d5a723bf607e862e7be33ece505abf4a3bad9"}, +] [package.extras] docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] -test = ["pre-commit", "pytest"] +test = ["argcomplete (>=2.0)", "pre-commit", "pytest", "pytest-mock"] [[package]] name = "typing-extensions" -version = "4.4.0" +version = "4.7.1" description = "Backported and Experimental Type Hints for Python 3.7+" -category = "main" optional = false python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "tzdata" +version = "2024.1" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"}, + {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"}, +] [[package]] name = "ujson" -version = "5.5.0" +version = "5.8.0" description = "Ultra fast JSON encoder and decoder for Python" -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" +files = [ + {file = "ujson-5.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f4511560d75b15ecb367eef561554959b9d49b6ec3b8d5634212f9fed74a6df1"}, + {file = "ujson-5.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9399eaa5d1931a0ead49dce3ffacbea63f3177978588b956036bfe53cdf6af75"}, + {file = "ujson-5.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c4e7bb7eba0e1963f8b768f9c458ecb193e5bf6977090182e2b4f4408f35ac76"}, + {file = "ujson-5.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40931d7c08c4ce99adc4b409ddb1bbb01635a950e81239c2382cfe24251b127a"}, + {file = "ujson-5.8.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d53039d39de65360e924b511c7ca1a67b0975c34c015dd468fca492b11caa8f7"}, + {file = "ujson-5.8.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:bdf04c6af3852161be9613e458a1fb67327910391de8ffedb8332e60800147a2"}, + {file = "ujson-5.8.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:a70f776bda2e5072a086c02792c7863ba5833d565189e09fabbd04c8b4c3abba"}, + {file = "ujson-5.8.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:f26629ac531d712f93192c233a74888bc8b8212558bd7d04c349125f10199fcf"}, + {file = "ujson-5.8.0-cp310-cp310-win32.whl", hash = "sha256:7ecc33b107ae88405aebdb8d82c13d6944be2331ebb04399134c03171509371a"}, + {file = "ujson-5.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:3b27a8da7a080add559a3b73ec9ebd52e82cc4419f7c6fb7266e62439a055ed0"}, + {file = "ujson-5.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:193349a998cd821483a25f5df30b44e8f495423840ee11b3b28df092ddfd0f7f"}, + {file = "ujson-5.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4ddeabbc78b2aed531f167d1e70387b151900bc856d61e9325fcdfefb2a51ad8"}, + {file = "ujson-5.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ce24909a9c25062e60653073dd6d5e6ec9d6ad7ed6e0069450d5b673c854405"}, + {file = "ujson-5.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:27a2a3c7620ebe43641e926a1062bc04e92dbe90d3501687957d71b4bdddaec4"}, + {file = "ujson-5.8.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2b852bdf920fe9f84e2a2c210cc45f1b64f763b4f7d01468b33f7791698e455e"}, + {file = "ujson-5.8.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:20768961a6a706170497129960762ded9c89fb1c10db2989c56956b162e2a8a3"}, + {file = "ujson-5.8.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e0147d41e9fb5cd174207c4a2895c5e24813204499fd0839951d4c8784a23bf5"}, + {file = "ujson-5.8.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e3673053b036fd161ae7a5a33358ccae6793ee89fd499000204676baafd7b3aa"}, + {file = "ujson-5.8.0-cp311-cp311-win32.whl", hash = "sha256:a89cf3cd8bf33a37600431b7024a7ccf499db25f9f0b332947fbc79043aad879"}, + {file = "ujson-5.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:3659deec9ab9eb19e8646932bfe6fe22730757c4addbe9d7d5544e879dc1b721"}, + {file = "ujson-5.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:102bf31c56f59538cccdfec45649780ae00657e86247c07edac434cb14d5388c"}, + {file = "ujson-5.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:299a312c3e85edee1178cb6453645217ba23b4e3186412677fa48e9a7f986de6"}, + {file = "ujson-5.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2e385a7679b9088d7bc43a64811a7713cc7c33d032d020f757c54e7d41931ae"}, + {file = "ujson-5.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad24ec130855d4430a682c7a60ca0bc158f8253ec81feed4073801f6b6cb681b"}, + {file = "ujson-5.8.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:16fde596d5e45bdf0d7de615346a102510ac8c405098e5595625015b0d4b5296"}, + {file = "ujson-5.8.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:6d230d870d1ce03df915e694dcfa3f4e8714369cce2346686dbe0bc8e3f135e7"}, + {file = "ujson-5.8.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:9571de0c53db5cbc265945e08f093f093af2c5a11e14772c72d8e37fceeedd08"}, + {file = "ujson-5.8.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:7cba16b26efe774c096a5e822e4f27097b7c81ed6fb5264a2b3f5fd8784bab30"}, + {file = "ujson-5.8.0-cp312-cp312-win32.whl", hash = "sha256:48c7d373ff22366eecfa36a52b9b55b0ee5bd44c2b50e16084aa88b9de038916"}, + {file = "ujson-5.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:5ac97b1e182d81cf395ded620528c59f4177eee024b4b39a50cdd7b720fdeec6"}, + {file = "ujson-5.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2a64cc32bb4a436e5813b83f5aab0889927e5ea1788bf99b930fad853c5625cb"}, + {file = "ujson-5.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:e54578fa8838ddc722539a752adfce9372474114f8c127bb316db5392d942f8b"}, + {file = "ujson-5.8.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9721cd112b5e4687cb4ade12a7b8af8b048d4991227ae8066d9c4b3a6642a582"}, + {file = "ujson-5.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d9707e5aacf63fb919f6237d6490c4e0244c7f8d3dc2a0f84d7dec5db7cb54c"}, + {file = "ujson-5.8.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0be81bae295f65a6896b0c9030b55a106fb2dec69ef877253a87bc7c9c5308f7"}, + {file = "ujson-5.8.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ae7f4725c344bf437e9b881019c558416fe84ad9c6b67426416c131ad577df67"}, + {file = "ujson-5.8.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:9ab282d67ef3097105552bf151438b551cc4bedb3f24d80fada830f2e132aeb9"}, + {file = "ujson-5.8.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:94c7bd9880fa33fcf7f6d7f4cc032e2371adee3c5dba2922b918987141d1bf07"}, + {file = "ujson-5.8.0-cp38-cp38-win32.whl", hash = "sha256:bf5737dbcfe0fa0ac8fa599eceafae86b376492c8f1e4b84e3adf765f03fb564"}, + {file = "ujson-5.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:11da6bed916f9bfacf13f4fc6a9594abd62b2bb115acfb17a77b0f03bee4cfd5"}, + {file = "ujson-5.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:69b3104a2603bab510497ceabc186ba40fef38ec731c0ccaa662e01ff94a985c"}, + {file = "ujson-5.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9249fdefeb021e00b46025e77feed89cd91ffe9b3a49415239103fc1d5d9c29a"}, + {file = "ujson-5.8.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2873d196725a8193f56dde527b322c4bc79ed97cd60f1d087826ac3290cf9207"}, + {file = "ujson-5.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a4dafa9010c366589f55afb0fd67084acd8added1a51251008f9ff2c3e44042"}, + {file = "ujson-5.8.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7a42baa647a50fa8bed53d4e242be61023bd37b93577f27f90ffe521ac9dc7a3"}, + {file = "ujson-5.8.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f3554eaadffe416c6f543af442066afa6549edbc34fe6a7719818c3e72ebfe95"}, + {file = "ujson-5.8.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:fb87decf38cc82bcdea1d7511e73629e651bdec3a43ab40985167ab8449b769c"}, + {file = "ujson-5.8.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:407d60eb942c318482bbfb1e66be093308bb11617d41c613e33b4ce5be789adc"}, + {file = "ujson-5.8.0-cp39-cp39-win32.whl", hash = "sha256:0fe1b7edaf560ca6ab023f81cbeaf9946a240876a993b8c5a21a1c539171d903"}, + {file = "ujson-5.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:3f9b63530a5392eb687baff3989d0fb5f45194ae5b1ca8276282fb647f8dcdb3"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:efeddf950fb15a832376c0c01d8d7713479fbeceaed1eaecb2665aa62c305aec"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d8283ac5d03e65f488530c43d6610134309085b71db4f675e9cf5dff96a8282"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb0142f6f10f57598655340a3b2c70ed4646cbe674191da195eb0985a9813b83"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07d459aca895eb17eb463b00441986b021b9312c6c8cc1d06880925c7f51009c"}, + {file = "ujson-5.8.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d524a8c15cfc863705991d70bbec998456a42c405c291d0f84a74ad7f35c5109"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:d6f84a7a175c75beecde53a624881ff618e9433045a69fcfb5e154b73cdaa377"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b748797131ac7b29826d1524db1cc366d2722ab7afacc2ce1287cdafccddbf1f"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2e72ba76313d48a1a3a42e7dc9d1db32ea93fac782ad8dde6f8b13e35c229130"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f504117a39cb98abba4153bf0b46b4954cc5d62f6351a14660201500ba31fe7f"}, + {file = "ujson-5.8.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a8c91b6f4bf23f274af9002b128d133b735141e867109487d17e344d38b87d94"}, + {file = "ujson-5.8.0.tar.gz", hash = "sha256:78e318def4ade898a461b3d92a79f9441e7e0e4d2ad5419abed4336d702c7425"}, +] [[package]] name = "urllib3" -version = "1.26.12" +version = "2.0.4" description = "HTTP library with thread-safe connection pooling, file post, and more." -category = "main" optional = false -python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4" +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.4-py3-none-any.whl", hash = "sha256:de7df1803967d2c2a98e4b11bb7d6bd9210474c46e8a0401514e3a42a75ebde4"}, + {file = "urllib3-2.0.4.tar.gz", hash = "sha256:8d22f86aae8ef5e410d4f539fde9ce6b2113a001bb4d189e0aed70642d602b11"}, +] [package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)", "brotlipy (>=0.6.0)"] -secure = ["certifi", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "ipaddress", "pyOpenSSL (>=0.14)", "urllib3-secure-extra"] -socks = ["PySocks (>=1.5.6,!=1.5.7,<2.0)"] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] [[package]] name = "uvicorn" -version = "0.18.3" +version = "0.23.2" description = "The lightning-fast ASGI server." -category = "main" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" +files = [ + {file = "uvicorn-0.23.2-py3-none-any.whl", hash = "sha256:1f9be6558f01239d4fdf22ef8126c39cb1ad0addf76c40e760549d2c2f43ab53"}, + {file = "uvicorn-0.23.2.tar.gz", hash = "sha256:4d3cc12d7727ba72b64d12d3cc7743124074c0a69f7b201512fc50c3e3f1569a"}, +] [package.dependencies] click = ">=7.0" colorama = {version = ">=0.4", optional = true, markers = "sys_platform == \"win32\" and extra == \"standard\""} h11 = ">=0.8" -httptools = {version = ">=0.4.0", optional = true, markers = "extra == \"standard\""} +httptools = {version = ">=0.5.0", optional = true, markers = "extra == \"standard\""} python-dotenv = {version = ">=0.13", optional = true, markers = "extra == \"standard\""} pyyaml = {version = ">=5.1", optional = true, markers = "extra == \"standard\""} -uvloop = {version = ">=0.14.0,<0.15.0 || >0.15.0,<0.15.1 || >0.15.1", optional = true, markers = "sys_platform != \"win32\" and sys_platform != \"cygwin\" and platform_python_implementation != \"PyPy\" and extra == \"standard\""} +uvloop = {version = ">=0.14.0,<0.15.0 || >0.15.0,<0.15.1 || >0.15.1", optional = true, markers = "(sys_platform != \"win32\" and sys_platform != \"cygwin\") and platform_python_implementation != \"PyPy\" and extra == \"standard\""} watchfiles = {version = ">=0.13", optional = true, markers = "extra == \"standard\""} -websockets = {version = ">=10.0", optional = true, markers = "extra == \"standard\""} +websockets = {version = ">=10.4", optional = true, markers = "extra == \"standard\""} [package.extras] -standard = ["colorama (>=0.4)", "httptools (>=0.4.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.0)"] +standard = ["colorama (>=0.4)", "httptools (>=0.5.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"] [[package]] name = "uvloop" version = "0.17.0" description = "Fast implementation of asyncio event loop on top of libuv" -category = "main" optional = false python-versions = ">=3.7" - -[package.extras] -dev = ["Cython (>=0.29.32,<0.30.0)", "Sphinx (>=4.1.2,<4.2.0)", "aiohttp", "flake8 (>=3.9.2,<3.10.0)", "mypy (>=0.800)", "psutil", "pyOpenSSL (>=22.0.0,<22.1.0)", "pycodestyle (>=2.7.0,<2.8.0)", "pytest (>=3.6.0)", "sphinx-rtd-theme (>=0.5.2,<0.6.0)", "sphinxcontrib-asyncio (>=0.3.0,<0.4.0)"] -docs = ["Sphinx (>=4.1.2,<4.2.0)", "sphinx-rtd-theme (>=0.5.2,<0.6.0)", "sphinxcontrib-asyncio (>=0.3.0,<0.4.0)"] -test = ["Cython (>=0.29.32,<0.30.0)", "aiohttp", "flake8 (>=3.9.2,<3.10.0)", "mypy (>=0.800)", "psutil", "pyOpenSSL (>=22.0.0,<22.1.0)", "pycodestyle (>=2.7.0,<2.8.0)"] - -[[package]] -name = "watchfiles" -version = "0.18.1" -description = "Simple, modern and high performance file watching and code reload in python." -category = "main" -optional = false -python-versions = ">=3.7" - -[package.dependencies] -anyio = ">=3.0.0" - -[[package]] -name = "wcwidth" -version = "0.2.5" -description = "Measures the displayed width of unicode strings in a terminal" -category = "dev" -optional = false -python-versions = "*" - -[[package]] -name = "websockets" -version = "10.4" -description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" -category = "main" -optional = false -python-versions = ">=3.7" - -[metadata] -lock-version = "1.1" -python-versions = "^3.11" -content-hash = "9d35694fa276fc3f8c0e4758f00c8f1176a84e9efe8cfde401f121b9f4c72384" - -[metadata.files] -alembic = [ - {file = "alembic-1.8.1-py3-none-any.whl", hash = "sha256:0a024d7f2de88d738d7395ff866997314c837be6104e90c5724350313dee4da4"}, - {file = "alembic-1.8.1.tar.gz", hash = "sha256:cd0b5e45b14b706426b833f06369b9a6d5ee03f826ec3238723ce8caaf6e5ffa"}, -] -anyio = [ - {file = "anyio-3.6.2-py3-none-any.whl", hash = "sha256:fbbe32bd270d2a2ef3ed1c5d45041250284e31fc0a4df4a5a6071842051a51e3"}, - {file = "anyio-3.6.2.tar.gz", hash = "sha256:25ea0d673ae30af41a0c442f81cf3b38c7e79fdc7b60335a4c14e05eb0947421"}, -] -appnope = [ - {file = "appnope-0.1.3-py2.py3-none-any.whl", hash = "sha256:265a455292d0bd8a72453494fa24df5a11eb18373a60c7c0430889f22548605e"}, - {file = "appnope-0.1.3.tar.gz", hash = "sha256:02bd91c4de869fbb1e1c50aafc4098827a7a54ab2f39d9dcba6c9547ed920e24"}, -] -asttokens = [ - {file = "asttokens-2.1.0-py2.py3-none-any.whl", hash = "sha256:1b28ed85e254b724439afc783d4bee767f780b936c3fe8b3275332f42cf5f561"}, - {file = "asttokens-2.1.0.tar.gz", hash = "sha256:4aa76401a151c8cc572d906aad7aea2a841780834a19d780f4321c0fe1b54635"}, -] -backcall = [ - {file = "backcall-0.2.0-py2.py3-none-any.whl", hash = "sha256:fbbce6a29f263178a1f7915c1940bde0ec2b2a967566fe1c65c1dfb7422bd255"}, - {file = "backcall-0.2.0.tar.gz", hash = "sha256:5cbdbf27be5e7cfadb448baf0aa95508f91f2bbc6c6437cd9cd06e2a4c215e1e"}, -] -black = [ - {file = "black-22.10.0-1fixedarch-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:5cc42ca67989e9c3cf859e84c2bf014f6633db63d1cbdf8fdb666dcd9e77e3fa"}, - {file = "black-22.10.0-1fixedarch-cp311-cp311-macosx_11_0_x86_64.whl", hash = "sha256:5d8f74030e67087b219b032aa33a919fae8806d49c867846bfacde57f43972ef"}, - {file = "black-22.10.0-1fixedarch-cp37-cp37m-macosx_10_16_x86_64.whl", hash = "sha256:197df8509263b0b8614e1df1756b1dd41be6738eed2ba9e9769f3880c2b9d7b6"}, - {file = "black-22.10.0-1fixedarch-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:2644b5d63633702bc2c5f3754b1b475378fbbfb481f62319388235d0cd104c2d"}, - {file = "black-22.10.0-1fixedarch-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:e41a86c6c650bcecc6633ee3180d80a025db041a8e2398dcc059b3afa8382cd4"}, - {file = "black-22.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2039230db3c6c639bd84efe3292ec7b06e9214a2992cd9beb293d639c6402edb"}, - {file = "black-22.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14ff67aec0a47c424bc99b71005202045dc09270da44a27848d534600ac64fc7"}, - {file = "black-22.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:819dc789f4498ecc91438a7de64427c73b45035e2e3680c92e18795a839ebb66"}, - {file = "black-22.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5b9b29da4f564ba8787c119f37d174f2b69cdfdf9015b7d8c5c16121ddc054ae"}, - {file = "black-22.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8b49776299fece66bffaafe357d929ca9451450f5466e997a7285ab0fe28e3b"}, - {file = "black-22.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:21199526696b8f09c3997e2b4db8d0b108d801a348414264d2eb8eb2532e540d"}, - {file = "black-22.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e464456d24e23d11fced2bc8c47ef66d471f845c7b7a42f3bd77bf3d1789650"}, - {file = "black-22.10.0-cp37-cp37m-win_amd64.whl", hash = "sha256:9311e99228ae10023300ecac05be5a296f60d2fd10fff31cf5c1fa4ca4b1988d"}, - {file = "black-22.10.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:fba8a281e570adafb79f7755ac8721b6cf1bbf691186a287e990c7929c7692ff"}, - {file = "black-22.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:915ace4ff03fdfff953962fa672d44be269deb2eaf88499a0f8805221bc68c87"}, - {file = "black-22.10.0-cp38-cp38-win_amd64.whl", hash = "sha256:444ebfb4e441254e87bad00c661fe32df9969b2bf224373a448d8aca2132b395"}, - {file = "black-22.10.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:974308c58d057a651d182208a484ce80a26dac0caef2895836a92dd6ebd725e0"}, - {file = "black-22.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:72ef3925f30e12a184889aac03d77d031056860ccae8a1e519f6cbb742736383"}, - {file = "black-22.10.0-cp39-cp39-win_amd64.whl", hash = "sha256:432247333090c8c5366e69627ccb363bc58514ae3e63f7fc75c54b1ea80fa7de"}, - {file = "black-22.10.0-py3-none-any.whl", hash = "sha256:c957b2b4ea88587b46cf49d1dc17681c1e672864fd7af32fc1e9664d572b3458"}, - {file = "black-22.10.0.tar.gz", hash = "sha256:f513588da599943e0cde4e32cc9879e825d58720d6557062d1098c5ad80080e1"}, -] -certifi = [ - {file = "certifi-2022.9.24-py3-none-any.whl", hash = "sha256:90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382"}, - {file = "certifi-2022.9.24.tar.gz", hash = "sha256:0d9c601124e5a6ba9712dbc60d9c53c21e34f5f641fe83002317394311bdce14"}, -] -cffi = [ - {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, - {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, - {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, - {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, - {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, - {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, - {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, - {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, - {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, - {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, - {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, - {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, - {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, - {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, - {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, - {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, - {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, - {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, - {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, - {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, - {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, - {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, - {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, - {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, - {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, - {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, - {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, - {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, - {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, - {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, - {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, - {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, - {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, -] -charset-normalizer = [ - {file = "charset-normalizer-2.1.1.tar.gz", hash = "sha256:5a3d016c7c547f69d6f81fb0db9449ce888b418b5b9952cc5e6e66843e9dd845"}, - {file = "charset_normalizer-2.1.1-py3-none-any.whl", hash = "sha256:83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f"}, -] -click = [ - {file = "click-8.1.3-py3-none-any.whl", hash = "sha256:bb4d8133cb15a609f44e8213d9b391b0809795062913b383c62be0ee95b1db48"}, - {file = "click-8.1.3.tar.gz", hash = "sha256:7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"}, -] -colorama = [ - {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, - {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, -] -debugpy = [ - {file = "debugpy-1.6.3-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:c4b2bd5c245eeb49824bf7e539f95fb17f9a756186e51c3e513e32999d8846f3"}, - {file = "debugpy-1.6.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:b8deaeb779699350deeed835322730a3efec170b88927debc9ba07a1a38e2585"}, - {file = "debugpy-1.6.3-cp310-cp310-win32.whl", hash = "sha256:fc233a0160f3b117b20216f1169e7211b83235e3cd6749bcdd8dbb72177030c7"}, - {file = "debugpy-1.6.3-cp310-cp310-win_amd64.whl", hash = "sha256:dda8652520eae3945833e061cbe2993ad94a0b545aebd62e4e6b80ee616c76b2"}, - {file = "debugpy-1.6.3-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:d5c814596a170a0a58fa6fad74947e30bfd7e192a5d2d7bd6a12156c2899e13a"}, - {file = "debugpy-1.6.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c4cd6f37e3c168080d61d698390dfe2cd9e74ebf80b448069822a15dadcda57d"}, - {file = "debugpy-1.6.3-cp37-cp37m-win32.whl", hash = "sha256:3c9f985944a30cfc9ae4306ac6a27b9c31dba72ca943214dad4a0ab3840f6161"}, - {file = "debugpy-1.6.3-cp37-cp37m-win_amd64.whl", hash = "sha256:5ad571a36cec137ae6ed951d0ff75b5e092e9af6683da084753231150cbc5b25"}, - {file = "debugpy-1.6.3-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:adcfea5ea06d55d505375995e150c06445e2b20cd12885bcae566148c076636b"}, - {file = "debugpy-1.6.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:daadab4403427abd090eccb38d8901afd8b393e01fd243048fab3f1d7132abb4"}, - {file = "debugpy-1.6.3-cp38-cp38-win32.whl", hash = "sha256:6efc30325b68e451118b795eff6fe8488253ca3958251d5158106d9c87581bc6"}, - {file = "debugpy-1.6.3-cp38-cp38-win_amd64.whl", hash = "sha256:86d784b72c5411c833af1cd45b83d80c252b77c3bfdb43db17c441d772f4c734"}, - {file = "debugpy-1.6.3-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:4e255982552b0edfe3a6264438dbd62d404baa6556a81a88f9420d3ed79b06ae"}, - {file = "debugpy-1.6.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:cca23cb6161ac89698d629d892520327dd1be9321c0960e610bbcb807232b45d"}, - {file = "debugpy-1.6.3-cp39-cp39-win32.whl", hash = "sha256:7c302095a81be0d5c19f6529b600bac971440db3e226dce85347cc27e6a61908"}, - {file = "debugpy-1.6.3-cp39-cp39-win_amd64.whl", hash = "sha256:34d2cdd3a7c87302ba5322b86e79c32c2115be396f3f09ca13306d8a04fe0f16"}, - {file = "debugpy-1.6.3-py2.py3-none-any.whl", hash = "sha256:84c39940a0cac410bf6aa4db00ba174f973eef521fbe9dd058e26bcabad89c4f"}, - {file = "debugpy-1.6.3.zip", hash = "sha256:e8922090514a890eec99cfb991bab872dd2e353ebb793164d5f01c362b9a40bf"}, -] -decorator = [ - {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, - {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, -] -dnspython = [ - {file = "dnspython-2.2.1-py3-none-any.whl", hash = "sha256:a851e51367fb93e9e1361732c1d60dab63eff98712e503ea7d92e6eccb109b4f"}, - {file = "dnspython-2.2.1.tar.gz", hash = "sha256:0f7569a4a6ff151958b64304071d370daa3243d15941a7beedf0c9fe5105603e"}, -] -email-validator = [ - {file = "email_validator-1.3.0-py2.py3-none-any.whl", hash = "sha256:816073f2a7cffef786b29928f58ec16cdac42710a53bb18aa94317e3e145ec5c"}, - {file = "email_validator-1.3.0.tar.gz", hash = "sha256:553a66f8be2ec2dea641ae1d3f29017ab89e9d603d4a25cdaac39eefa283d769"}, -] -entrypoints = [ - {file = "entrypoints-0.4-py3-none-any.whl", hash = "sha256:f174b5ff827504fd3cd97cc3f8649f3693f51538c7e4bdf3ef002c8429d42f9f"}, - {file = "entrypoints-0.4.tar.gz", hash = "sha256:b706eddaa9218a19ebcd67b56818f05bb27589b1ca9e8d797b74affad4ccacd4"}, -] -et-xmlfile = [ - {file = "et_xmlfile-1.1.0-py3-none-any.whl", hash = "sha256:a2ba85d1d6a74ef63837eed693bcb89c3f752169b0e3e7ae5b16ca5e1b3deada"}, - {file = "et_xmlfile-1.1.0.tar.gz", hash = "sha256:8eb9e2bc2f8c97e37a2dc85a09ecdcdec9d8a396530a6d5a33b30b9a92da0c5c"}, -] -executing = [ - {file = "executing-1.2.0-py2.py3-none-any.whl", hash = "sha256:0314a69e37426e3608aada02473b4161d4caf5a4b244d1d0c48072b8fee7bacc"}, - {file = "executing-1.2.0.tar.gz", hash = "sha256:19da64c18d2d851112f09c287f8d3dbbdf725ab0e569077efb6cdcbd3497c107"}, -] -fastapi = [ - {file = "fastapi-0.85.2-py3-none-any.whl", hash = "sha256:6292db0edd4a11f0d938d6033ccec5f706e9d476958bf33b119e8ddb4e524bde"}, - {file = "fastapi-0.85.2.tar.gz", hash = "sha256:3e10ea0992c700e0b17b6de8c2092d7b9cd763ce92c49ee8d4be10fee3b2f367"}, -] -flake8 = [ - {file = "flake8-5.0.4-py2.py3-none-any.whl", hash = "sha256:7a1cf6b73744f5806ab95e526f6f0d8c01c66d7bbe349562d22dfca20610b248"}, - {file = "flake8-5.0.4.tar.gz", hash = "sha256:6fbe320aad8d6b95cec8b8e47bc933004678dc63095be98528b7bdd2a9f510db"}, -] -greenlet = [ - {file = "greenlet-2.0.1-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:9ed358312e63bf683b9ef22c8e442ef6c5c02973f0c2a939ec1d7b50c974015c"}, - {file = "greenlet-2.0.1-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:4f09b0010e55bec3239278f642a8a506b91034f03a4fb28289a7d448a67f1515"}, - {file = "greenlet-2.0.1-cp27-cp27m-win32.whl", hash = "sha256:1407fe45246632d0ffb7a3f4a520ba4e6051fc2cbd61ba1f806900c27f47706a"}, - {file = "greenlet-2.0.1-cp27-cp27m-win_amd64.whl", hash = "sha256:3001d00eba6bbf084ae60ec7f4bb8ed375748f53aeaefaf2a37d9f0370558524"}, - {file = "greenlet-2.0.1-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:d566b82e92ff2e09dd6342df7e0eb4ff6275a3f08db284888dcd98134dbd4243"}, - {file = "greenlet-2.0.1-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:0722c9be0797f544a3ed212569ca3fe3d9d1a1b13942d10dd6f0e8601e484d26"}, - {file = "greenlet-2.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d37990425b4687ade27810e3b1a1c37825d242ebc275066cfee8cb6b8829ccd"}, - {file = "greenlet-2.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be35822f35f99dcc48152c9839d0171a06186f2d71ef76dc57fa556cc9bf6b45"}, - {file = "greenlet-2.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c140e7eb5ce47249668056edf3b7e9900c6a2e22fb0eaf0513f18a1b2c14e1da"}, - {file = "greenlet-2.0.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d21681f09e297a5adaa73060737e3aa1279a13ecdcfcc6ef66c292cb25125b2d"}, - {file = "greenlet-2.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fb412b7db83fe56847df9c47b6fe3f13911b06339c2aa02dcc09dce8bbf582cd"}, - {file = "greenlet-2.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:c6a08799e9e88052221adca55741bf106ec7ea0710bca635c208b751f0d5b617"}, - {file = "greenlet-2.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9e112e03d37987d7b90c1e98ba5e1b59e1645226d78d73282f45b326f7bddcb9"}, - {file = "greenlet-2.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:56961cfca7da2fdd178f95ca407fa330c64f33289e1804b592a77d5593d9bd94"}, - {file = "greenlet-2.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:13ba6e8e326e2116c954074c994da14954982ba2795aebb881c07ac5d093a58a"}, - {file = "greenlet-2.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1bf633a50cc93ed17e494015897361010fc08700d92676c87931d3ea464123ce"}, - {file = "greenlet-2.0.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:9f2c221eecb7ead00b8e3ddb913c67f75cba078fd1d326053225a3f59d850d72"}, - {file = "greenlet-2.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:13ebf93c343dd8bd010cd98e617cb4c1c1f352a0cf2524c82d3814154116aa82"}, - {file = "greenlet-2.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:6f61d71bbc9b4a3de768371b210d906726535d6ca43506737682caa754b956cd"}, - {file = "greenlet-2.0.1-cp35-cp35m-macosx_10_14_x86_64.whl", hash = "sha256:2d0bac0385d2b43a7bd1d651621a4e0f1380abc63d6fb1012213a401cbd5bf8f"}, - {file = "greenlet-2.0.1-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:f6327b6907b4cb72f650a5b7b1be23a2aab395017aa6f1adb13069d66360eb3f"}, - {file = "greenlet-2.0.1-cp35-cp35m-win32.whl", hash = "sha256:81b0ea3715bf6a848d6f7149d25bf018fd24554a4be01fcbbe3fdc78e890b955"}, - {file = "greenlet-2.0.1-cp35-cp35m-win_amd64.whl", hash = "sha256:38255a3f1e8942573b067510f9611fc9e38196077b0c8eb7a8c795e105f9ce77"}, - {file = "greenlet-2.0.1-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:04957dc96669be041e0c260964cfef4c77287f07c40452e61abe19d647505581"}, - {file = "greenlet-2.0.1-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:4aeaebcd91d9fee9aa768c1b39cb12214b30bf36d2b7370505a9f2165fedd8d9"}, - {file = "greenlet-2.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:974a39bdb8c90a85982cdb78a103a32e0b1be986d411303064b28a80611f6e51"}, - {file = "greenlet-2.0.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8dca09dedf1bd8684767bc736cc20c97c29bc0c04c413e3276e0962cd7aeb148"}, - {file = "greenlet-2.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a4c0757db9bd08470ff8277791795e70d0bf035a011a528ee9a5ce9454b6cba2"}, - {file = "greenlet-2.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:5067920de254f1a2dee8d3d9d7e4e03718e8fd2d2d9db962c8c9fa781ae82a39"}, - {file = "greenlet-2.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:5a8e05057fab2a365c81abc696cb753da7549d20266e8511eb6c9d9f72fe3e92"}, - {file = "greenlet-2.0.1-cp36-cp36m-win32.whl", hash = "sha256:3d75b8d013086b08e801fbbb896f7d5c9e6ccd44f13a9241d2bf7c0df9eda928"}, - {file = "greenlet-2.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:097e3dae69321e9100202fc62977f687454cd0ea147d0fd5a766e57450c569fd"}, - {file = "greenlet-2.0.1-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:cb242fc2cda5a307a7698c93173d3627a2a90d00507bccf5bc228851e8304963"}, - {file = "greenlet-2.0.1-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:72b00a8e7c25dcea5946692a2485b1a0c0661ed93ecfedfa9b6687bd89a24ef5"}, - {file = "greenlet-2.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5b0ff9878333823226d270417f24f4d06f235cb3e54d1103b71ea537a6a86ce"}, - {file = "greenlet-2.0.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be9e0fb2ada7e5124f5282d6381903183ecc73ea019568d6d63d33f25b2a9000"}, - {file = "greenlet-2.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b493db84d124805865adc587532ebad30efa68f79ad68f11b336e0a51ec86c2"}, - {file = "greenlet-2.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0459d94f73265744fee4c2d5ec44c6f34aa8a31017e6e9de770f7bcf29710be9"}, - {file = "greenlet-2.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:a20d33124935d27b80e6fdacbd34205732660e0a1d35d8b10b3328179a2b51a1"}, - {file = "greenlet-2.0.1-cp37-cp37m-win32.whl", hash = "sha256:ea688d11707d30e212e0110a1aac7f7f3f542a259235d396f88be68b649e47d1"}, - {file = "greenlet-2.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:afe07421c969e259e9403c3bb658968702bc3b78ec0b6fde3ae1e73440529c23"}, - {file = "greenlet-2.0.1-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:cd4ccc364cf75d1422e66e247e52a93da6a9b73cefa8cad696f3cbbb75af179d"}, - {file = "greenlet-2.0.1-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:4c8b1c43e75c42a6cafcc71defa9e01ead39ae80bd733a2608b297412beede68"}, - {file = "greenlet-2.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:659f167f419a4609bc0516fb18ea69ed39dbb25594934bd2dd4d0401660e8a1e"}, - {file = "greenlet-2.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:356e4519d4dfa766d50ecc498544b44c0249b6de66426041d7f8b751de4d6b48"}, - {file = "greenlet-2.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:811e1d37d60b47cb8126e0a929b58c046251f28117cb16fcd371eed61f66b764"}, - {file = "greenlet-2.0.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:d38ffd0e81ba8ef347d2be0772e899c289b59ff150ebbbbe05dc61b1246eb4e0"}, - {file = "greenlet-2.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:0109af1138afbfb8ae647e31a2b1ab030f58b21dd8528c27beaeb0093b7938a9"}, - {file = "greenlet-2.0.1-cp38-cp38-win32.whl", hash = "sha256:88c8d517e78acdf7df8a2134a3c4b964415b575d2840a2746ddb1cc6175f8608"}, - {file = "greenlet-2.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:d6ee1aa7ab36475035eb48c01efae87d37936a8173fc4d7b10bb02c2d75dd8f6"}, - {file = "greenlet-2.0.1-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:b1992ba9d4780d9af9726bbcef6a1db12d9ab1ccc35e5773685a24b7fb2758eb"}, - {file = "greenlet-2.0.1-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:b5e83e4de81dcc9425598d9469a624826a0b1211380ac444c7c791d4a2137c19"}, - {file = "greenlet-2.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:505138d4fa69462447a562a7c2ef723c6025ba12ac04478bc1ce2fcc279a2db5"}, - {file = "greenlet-2.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cce1e90dd302f45716a7715517c6aa0468af0bf38e814ad4eab58e88fc09f7f7"}, - {file = "greenlet-2.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9e9744c657d896c7b580455e739899e492a4a452e2dd4d2b3e459f6b244a638d"}, - {file = "greenlet-2.0.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:662e8f7cad915ba75d8017b3e601afc01ef20deeeabf281bd00369de196d7726"}, - {file = "greenlet-2.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:41b825d65f31e394b523c84db84f9383a2f7eefc13d987f308f4663794d2687e"}, - {file = "greenlet-2.0.1-cp39-cp39-win32.whl", hash = "sha256:db38f80540083ea33bdab614a9d28bcec4b54daa5aff1668d7827a9fc769ae0a"}, - {file = "greenlet-2.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:b23d2a46d53210b498e5b701a1913697671988f4bf8e10f935433f6e7c332fb6"}, - {file = "greenlet-2.0.1.tar.gz", hash = "sha256:42e602564460da0e8ee67cb6d7236363ee5e131aa15943b6670e44e5c2ed0f67"}, -] -h11 = [ - {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, - {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, -] -httptools = [ - {file = "httptools-0.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8f470c79061599a126d74385623ff4744c4e0f4a0997a353a44923c0b561ee51"}, - {file = "httptools-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e90491a4d77d0cb82e0e7a9cb35d86284c677402e4ce7ba6b448ccc7325c5421"}, - {file = "httptools-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1d2357f791b12d86faced7b5736dea9ef4f5ecdc6c3f253e445ee82da579449"}, - {file = "httptools-0.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f90cd6fd97c9a1b7fe9215e60c3bd97336742a0857f00a4cb31547bc22560c2"}, - {file = "httptools-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:5230a99e724a1bdbbf236a1b58d6e8504b912b0552721c7c6b8570925ee0ccde"}, - {file = "httptools-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:3a47a34f6015dd52c9eb629c0f5a8a5193e47bf2a12d9a3194d231eaf1bc451a"}, - {file = "httptools-0.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:24bb4bb8ac3882f90aa95403a1cb48465de877e2d5298ad6ddcfdebec060787d"}, - {file = "httptools-0.5.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e67d4f8734f8054d2c4858570cc4b233bf753f56e85217de4dfb2495904cf02e"}, - {file = "httptools-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7e5eefc58d20e4c2da82c78d91b2906f1a947ef42bd668db05f4ab4201a99f49"}, - {file = "httptools-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0297822cea9f90a38df29f48e40b42ac3d48a28637368f3ec6d15eebefd182f9"}, - {file = "httptools-0.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:557be7fbf2bfa4a2ec65192c254e151684545ebab45eca5d50477d562c40f986"}, - {file = "httptools-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:54465401dbbec9a6a42cf737627fb0f014d50dc7365a6b6cd57753f151a86ff0"}, - {file = "httptools-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:4d9ebac23d2de960726ce45f49d70eb5466725c0087a078866043dad115f850f"}, - {file = "httptools-0.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:e8a34e4c0ab7b1ca17b8763613783e2458e77938092c18ac919420ab8655c8c1"}, - {file = "httptools-0.5.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:f659d7a48401158c59933904040085c200b4be631cb5f23a7d561fbae593ec1f"}, - {file = "httptools-0.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef1616b3ba965cd68e6f759eeb5d34fbf596a79e84215eeceebf34ba3f61fdc7"}, - {file = "httptools-0.5.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3625a55886257755cb15194efbf209584754e31d336e09e2ffe0685a76cb4b60"}, - {file = "httptools-0.5.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:72ad589ba5e4a87e1d404cc1cb1b5780bfcb16e2aec957b88ce15fe879cc08ca"}, - {file = "httptools-0.5.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:850fec36c48df5a790aa735417dca8ce7d4b48d59b3ebd6f83e88a8125cde324"}, - {file = "httptools-0.5.0-cp36-cp36m-win_amd64.whl", hash = "sha256:f222e1e9d3f13b68ff8a835574eda02e67277d51631d69d7cf7f8e07df678c86"}, - {file = "httptools-0.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3cb8acf8f951363b617a8420768a9f249099b92e703c052f9a51b66342eea89b"}, - {file = "httptools-0.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:550059885dc9c19a072ca6d6735739d879be3b5959ec218ba3e013fd2255a11b"}, - {file = "httptools-0.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a04fe458a4597aa559b79c7f48fe3dceabef0f69f562daf5c5e926b153817281"}, - {file = "httptools-0.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7d0c1044bce274ec6711f0770fd2d5544fe392591d204c68328e60a46f88843b"}, - {file = "httptools-0.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:c6eeefd4435055a8ebb6c5cc36111b8591c192c56a95b45fe2af22d9881eee25"}, - {file = "httptools-0.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:5b65be160adcd9de7a7e6413a4966665756e263f0d5ddeffde277ffeee0576a5"}, - {file = "httptools-0.5.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fe9c766a0c35b7e3d6b6939393c8dfdd5da3ac5dec7f971ec9134f284c6c36d6"}, - {file = "httptools-0.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:85b392aba273566c3d5596a0a490978c085b79700814fb22bfd537d381dd230c"}, - {file = "httptools-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f5e3088f4ed33947e16fd865b8200f9cfae1144f41b64a8cf19b599508e096bc"}, - {file = "httptools-0.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c2a56b6aad7cc8f5551d8e04ff5a319d203f9d870398b94702300de50190f63"}, - {file = "httptools-0.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:9b571b281a19762adb3f48a7731f6842f920fa71108aff9be49888320ac3e24d"}, - {file = "httptools-0.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:aa47ffcf70ba6f7848349b8a6f9b481ee0f7637931d91a9860a1838bfc586901"}, - {file = "httptools-0.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:bede7ee075e54b9a5bde695b4fc8f569f30185891796b2e4e09e2226801d09bd"}, - {file = "httptools-0.5.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:64eba6f168803a7469866a9c9b5263a7463fa8b7a25b35e547492aa7322036b6"}, - {file = "httptools-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:4b098e4bb1174096a93f48f6193e7d9aa7071506a5877da09a783509ca5fff42"}, - {file = "httptools-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9423a2de923820c7e82e18980b937893f4aa8251c43684fa1772e341f6e06887"}, - {file = "httptools-0.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca1b7becf7d9d3ccdbb2f038f665c0f4857e08e1d8481cbcc1a86a0afcfb62b2"}, - {file = "httptools-0.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:50d4613025f15f4b11f1c54bbed4761c0020f7f921b95143ad6d58c151198142"}, - {file = "httptools-0.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8ffce9d81c825ac1deaa13bc9694c0562e2840a48ba21cfc9f3b4c922c16f372"}, - {file = "httptools-0.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:1af91b3650ce518d226466f30bbba5b6376dbd3ddb1b2be8b0658c6799dd450b"}, - {file = "httptools-0.5.0.tar.gz", hash = "sha256:295874861c173f9101960bba332429bb77ed4dcd8cdf5cee9922eb00e4f6bc09"}, -] -idna = [ - {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, - {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, -] -ipykernel = [ - {file = "ipykernel-6.17.1-py3-none-any.whl", hash = "sha256:3a9a1b2ad6dbbd5879855aabb4557f08e63fa2208bffed897f03070e2bb436f6"}, - {file = "ipykernel-6.17.1.tar.gz", hash = "sha256:e178c1788399f93a459c241fe07c3b810771c607b1fb064a99d2c5d40c90c5d4"}, -] -ipython = [ - {file = "ipython-8.6.0-py3-none-any.whl", hash = "sha256:91ef03016bcf72dd17190f863476e7c799c6126ec7e8be97719d1bc9a78a59a4"}, - {file = "ipython-8.6.0.tar.gz", hash = "sha256:7c959e3dedbf7ed81f9b9d8833df252c430610e2a4a6464ec13cd20975ce20a5"}, -] -itsdangerous = [ - {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, - {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, -] -jedi = [ - {file = "jedi-0.18.1-py2.py3-none-any.whl", hash = "sha256:637c9635fcf47945ceb91cd7f320234a7be540ded6f3e99a50cb6febdfd1ba8d"}, - {file = "jedi-0.18.1.tar.gz", hash = "sha256:74137626a64a99c8eb6ae5832d99b3bdd7d29a3850fe2aa80a4126b2a7d949ab"}, -] -jinja2 = [ - {file = "Jinja2-3.1.2-py3-none-any.whl", hash = "sha256:6088930bfe239f0e6710546ab9c19c9ef35e29792895fed6e6e31a023a182a61"}, - {file = "Jinja2-3.1.2.tar.gz", hash = "sha256:31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852"}, -] -jupyter-client = [ - {file = "jupyter_client-7.4.7-py3-none-any.whl", hash = "sha256:df56ae23b8e1da1b66f89dee1368e948b24a7f780fa822c5735187589fc4c157"}, - {file = "jupyter_client-7.4.7.tar.gz", hash = "sha256:330f6b627e0b4bf2f54a3a0dd9e4a22d2b649c8518168afedce2c96a1ceb2860"}, -] -jupyter-core = [ - {file = "jupyter_core-5.0.0-py3-none-any.whl", hash = "sha256:6da1fae48190da8551e1b5dbbb19d51d00b079d59a073c7030407ecaf96dbb1e"}, - {file = "jupyter_core-5.0.0.tar.gz", hash = "sha256:4ed68b7c606197c7e344a24b7195eef57898157075a69655a886074b6beb7043"}, -] -mako = [ - {file = "Mako-1.2.4-py3-none-any.whl", hash = "sha256:c97c79c018b9165ac9922ae4f32da095ffd3c4e6872b45eded42926deea46818"}, - {file = "Mako-1.2.4.tar.gz", hash = "sha256:d60a3903dc3bb01a18ad6a89cdbe2e4eadc69c0bc8ef1e3773ba53d44c3f7a34"}, -] -markupsafe = [ - {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:86b1f75c4e7c2ac2ccdaec2b9022845dbb81880ca318bb7a0a01fbf7813e3812"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f121a1420d4e173a5d96e47e9a0c0dcff965afdf1626d28de1460815f7c4ee7a"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a49907dd8420c5685cfa064a1335b6754b74541bbb3706c259c02ed65b644b3e"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:10c1bfff05d95783da83491be968e8fe789263689c02724e0c691933c52994f5"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b7bd98b796e2b6553da7225aeb61f447f80a1ca64f41d83612e6139ca5213aa4"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:b09bf97215625a311f669476f44b8b318b075847b49316d3e28c08e41a7a573f"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:694deca8d702d5db21ec83983ce0bb4b26a578e71fbdbd4fdcd387daa90e4d5e"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:efc1913fd2ca4f334418481c7e595c00aad186563bbc1ec76067848c7ca0a933"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-win32.whl", hash = "sha256:4a33dea2b688b3190ee12bd7cfa29d39c9ed176bda40bfa11099a3ce5d3a7ac6"}, - {file = "MarkupSafe-2.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:dda30ba7e87fbbb7eab1ec9f58678558fd9a6b8b853530e176eabd064da81417"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:671cd1187ed5e62818414afe79ed29da836dde67166a9fac6d435873c44fdd02"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3799351e2336dc91ea70b034983ee71cf2f9533cdff7c14c90ea126bfd95d65a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e72591e9ecd94d7feb70c1cbd7be7b3ebea3f548870aa91e2732960fa4d57a37"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6fbf47b5d3728c6aea2abb0589b5d30459e369baa772e0f37a0320185e87c980"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d5ee4f386140395a2c818d149221149c54849dfcfcb9f1debfe07a8b8bd63f9a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:bcb3ed405ed3222f9904899563d6fc492ff75cce56cba05e32eff40e6acbeaa3"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e1c0b87e09fa55a220f058d1d49d3fb8df88fbfab58558f1198e08c1e1de842a"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-win32.whl", hash = "sha256:8dc1c72a69aa7e082593c4a203dcf94ddb74bb5c8a731e4e1eb68d031e8498ff"}, - {file = "MarkupSafe-2.1.1-cp37-cp37m-win_amd64.whl", hash = "sha256:97a68e6ada378df82bc9f16b800ab77cbf4b2fada0081794318520138c088e4a"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:e8c843bbcda3a2f1e3c2ab25913c80a3c5376cd00c6e8c4a86a89a28c8dc5452"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0212a68688482dc52b2d45013df70d169f542b7394fc744c02a57374a4207003"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e576a51ad59e4bfaac456023a78f6b5e6e7651dcd383bcc3e18d06f9b55d6d1"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b9fe39a2ccc108a4accc2676e77da025ce383c108593d65cc909add5c3bd601"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:96e37a3dc86e80bf81758c152fe66dbf60ed5eca3d26305edf01892257049925"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6d0072fea50feec76a4c418096652f2c3238eaa014b2f94aeb1d56a66b41403f"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:089cf3dbf0cd6c100f02945abeb18484bd1ee57a079aefd52cffd17fba910b88"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6a074d34ee7a5ce3effbc526b7083ec9731bb3cbf921bbe1d3005d4d2bdb3a63"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-win32.whl", hash = "sha256:421be9fbf0ffe9ffd7a378aafebbf6f4602d564d34be190fc19a193232fd12b1"}, - {file = "MarkupSafe-2.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:fc7b548b17d238737688817ab67deebb30e8073c95749d55538ed473130ec0c7"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e04e26803c9c3851c931eac40c695602c6295b8d432cbe78609649ad9bd2da8a"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b87db4360013327109564f0e591bd2a3b318547bcef31b468a92ee504d07ae4f"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99a2a507ed3ac881b975a2976d59f38c19386d128e7a9a18b7df6fff1fd4c1d6"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56442863ed2b06d19c37f94d999035e15ee982988920e12a5b4ba29b62ad1f77"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3ce11ee3f23f79dbd06fb3d63e2f6af7b12db1d46932fe7bd8afa259a5996603"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:33b74d289bd2f5e527beadcaa3f401e0df0a89927c1559c8566c066fa4248ab7"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:43093fb83d8343aac0b1baa75516da6092f58f41200907ef92448ecab8825135"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8e3dcf21f367459434c18e71b2a9532d96547aef8a871872a5bd69a715c15f96"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-win32.whl", hash = "sha256:d4306c36ca495956b6d568d276ac11fdd9c30a36f1b6eb928070dc5360b22e1c"}, - {file = "MarkupSafe-2.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:46d00d6cfecdde84d40e572d63735ef81423ad31184100411e6e3388d405e247"}, - {file = "MarkupSafe-2.1.1.tar.gz", hash = "sha256:7f91197cc9e48f989d12e4e6fbc46495c446636dfc81b9ccf50bb0ec74b91d4b"}, -] -matplotlib-inline = [ - {file = "matplotlib-inline-0.1.6.tar.gz", hash = "sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304"}, - {file = "matplotlib_inline-0.1.6-py3-none-any.whl", hash = "sha256:f1f41aab5328aa5aaea9b16d083b128102f8712542f819fe7e6a420ff581b311"}, -] -mccabe = [ - {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"}, - {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, -] -mypy-extensions = [ - {file = "mypy_extensions-0.4.3-py2.py3-none-any.whl", hash = "sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d"}, - {file = "mypy_extensions-0.4.3.tar.gz", hash = "sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8"}, -] -nest-asyncio = [ - {file = "nest_asyncio-1.5.6-py3-none-any.whl", hash = "sha256:b9a953fb40dceaa587d109609098db21900182b16440652454a146cffb06e8b8"}, - {file = "nest_asyncio-1.5.6.tar.gz", hash = "sha256:d267cc1ff794403f7df692964d1d2a3fa9418ffea2a3f6859a439ff482fef290"}, -] -numpy = [ - {file = "numpy-1.23.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9c88793f78fca17da0145455f0d7826bcb9f37da4764af27ac945488116efe63"}, - {file = "numpy-1.23.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e9f4c4e51567b616be64e05d517c79a8a22f3606499941d97bb76f2ca59f982d"}, - {file = "numpy-1.23.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7903ba8ab592b82014713c491f6c5d3a1cde5b4a3bf116404e08f5b52f6daf43"}, - {file = "numpy-1.23.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e05b1c973a9f858c74367553e236f287e749465f773328c8ef31abe18f691e1"}, - {file = "numpy-1.23.5-cp310-cp310-win32.whl", hash = "sha256:522e26bbf6377e4d76403826ed689c295b0b238f46c28a7251ab94716da0b280"}, - {file = "numpy-1.23.5-cp310-cp310-win_amd64.whl", hash = "sha256:dbee87b469018961d1ad79b1a5d50c0ae850000b639bcb1b694e9981083243b6"}, - {file = "numpy-1.23.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ce571367b6dfe60af04e04a1834ca2dc5f46004ac1cc756fb95319f64c095a96"}, - {file = "numpy-1.23.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:56e454c7833e94ec9769fa0f86e6ff8e42ee38ce0ce1fa4cbb747ea7e06d56aa"}, - {file = "numpy-1.23.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5039f55555e1eab31124a5768898c9e22c25a65c1e0037f4d7c495a45778c9f2"}, - {file = "numpy-1.23.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58f545efd1108e647604a1b5aa809591ccd2540f468a880bedb97247e72db387"}, - {file = "numpy-1.23.5-cp311-cp311-win32.whl", hash = "sha256:b2a9ab7c279c91974f756c84c365a669a887efa287365a8e2c418f8b3ba73fb0"}, - {file = "numpy-1.23.5-cp311-cp311-win_amd64.whl", hash = "sha256:0cbe9848fad08baf71de1a39e12d1b6310f1d5b2d0ea4de051058e6e1076852d"}, - {file = "numpy-1.23.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f063b69b090c9d918f9df0a12116029e274daf0181df392839661c4c7ec9018a"}, - {file = "numpy-1.23.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0aaee12d8883552fadfc41e96b4c82ee7d794949e2a7c3b3a7201e968c7ecab9"}, - {file = "numpy-1.23.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92c8c1e89a1f5028a4c6d9e3ccbe311b6ba53694811269b992c0b224269e2398"}, - {file = "numpy-1.23.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d208a0f8729f3fb790ed18a003f3a57895b989b40ea4dce4717e9cf4af62c6bb"}, - {file = "numpy-1.23.5-cp38-cp38-win32.whl", hash = "sha256:06005a2ef6014e9956c09ba07654f9837d9e26696a0470e42beedadb78c11b07"}, - {file = "numpy-1.23.5-cp38-cp38-win_amd64.whl", hash = "sha256:ca51fcfcc5f9354c45f400059e88bc09215fb71a48d3768fb80e357f3b457e1e"}, - {file = "numpy-1.23.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8969bfd28e85c81f3f94eb4a66bc2cf1dbdc5c18efc320af34bffc54d6b1e38f"}, - {file = "numpy-1.23.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a7ac231a08bb37f852849bbb387a20a57574a97cfc7b6cabb488a4fc8be176de"}, - {file = "numpy-1.23.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf837dc63ba5c06dc8797c398db1e223a466c7ece27a1f7b5232ba3466aafe3d"}, - {file = "numpy-1.23.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33161613d2269025873025b33e879825ec7b1d831317e68f4f2f0f84ed14c719"}, - {file = "numpy-1.23.5-cp39-cp39-win32.whl", hash = "sha256:af1da88f6bc3d2338ebbf0e22fe487821ea4d8e89053e25fa59d1d79786e7481"}, - {file = "numpy-1.23.5-cp39-cp39-win_amd64.whl", hash = "sha256:09b7847f7e83ca37c6e627682f145856de331049013853f344f37b0c9690e3df"}, - {file = "numpy-1.23.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:abdde9f795cf292fb9651ed48185503a2ff29be87770c3b8e2a14b0cd7aa16f8"}, - {file = "numpy-1.23.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9a909a8bae284d46bbfdefbdd4a262ba19d3bc9921b1e76126b1d21c3c34135"}, - {file = "numpy-1.23.5-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:01dd17cbb340bf0fc23981e52e1d18a9d4050792e8fb8363cecbf066a84b827d"}, - {file = "numpy-1.23.5.tar.gz", hash = "sha256:1b1766d6f397c18153d40015ddfc79ddb715cabadc04d2d228d4e5a8bc4ded1a"}, -] -openpyxl = [ - {file = "openpyxl-3.0.10-py2.py3-none-any.whl", hash = "sha256:0ab6d25d01799f97a9464630abacbb34aafecdcaa0ef3cba6d6b3499867d0355"}, - {file = "openpyxl-3.0.10.tar.gz", hash = "sha256:e47805627aebcf860edb4edf7987b1309c1b3632f3750538ed962bbcc3bd7449"}, -] -orjson = [ - {file = "orjson-3.8.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:43e69b360c2851b45c7dbab3b95f7fa8469df73fab325a683f7389c4db63aa71"}, - {file = "orjson-3.8.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:64c5da5c9679ef3d85e9bbcbb62f4ccdc1f1975780caa20f2ec1e37b4da6bd36"}, - {file = "orjson-3.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3c632a2157fa9ec098d655287e9e44809615af99837c49f53d96bfbca453c5bd"}, - {file = "orjson-3.8.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f63da6309c282a2b58d4a846f0717f6440356b4872838b9871dc843ed1fe2b38"}, - {file = "orjson-3.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c9be25c313ba2d5478829d949165445c3bd36c62e07092b4ba8dbe5426574d1"}, - {file = "orjson-3.8.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:4bcce53e9e088f82633f784f79551fcd7637943ab56c51654aaf9d4c1d5cfa54"}, - {file = "orjson-3.8.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:33edb5379c6e6337f9383c85fe4080ce3aa1057cc2ce29345b7239461f50cbd6"}, - {file = "orjson-3.8.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:da35d347115758bbc8bfaf39bb213c42000f2a54e3f504c84374041d20835cd6"}, - {file = "orjson-3.8.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d755d94a90a941b91b4d39a6b02e289d8ba358af2d1a911edf266be7942609dc"}, - {file = "orjson-3.8.2-cp310-none-win_amd64.whl", hash = "sha256:7ea96923e26390b2142602ebb030e2a4db9351134696e0b219e5106bddf9b48e"}, - {file = "orjson-3.8.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:a0d89de876e6f1cef917a2338378a60a98584e1c2e1c67781e20b6ed1c512478"}, - {file = "orjson-3.8.2-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:8d47e7592fe938aec898eb22ea4946298c018133df084bc78442ff18e2c6347c"}, - {file = "orjson-3.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3d9f1043f618d0c64228aab9711e5bd822253c50b6c56223951e32b51f81d62"}, - {file = "orjson-3.8.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed10600e8b08f1e87b656ad38ab316191ce94f2c9adec57035680c0dc9e93c81"}, - {file = "orjson-3.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:99c49e49a04bf61fee7aaea6d92ac2b1fcf6507aea894bbdf3fbb25fe792168c"}, - {file = "orjson-3.8.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:1463674f8efe6984902473d7b5ce3edf444c1fcd09dc8aa4779638a28fb9ca01"}, - {file = "orjson-3.8.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:c1ef75f1d021d817e5c60a42da0b4b7e3123b1b37415260b8415666ddacc7cd7"}, - {file = "orjson-3.8.2-cp311-none-win_amd64.whl", hash = "sha256:b6007e1ac8564b13b2521720929e8bb3ccd3293d9fdf38f28728dcc06db6248f"}, - {file = "orjson-3.8.2-cp37-cp37m-macosx_10_7_x86_64.whl", hash = "sha256:a02c13ae523221576b001071354380e277346722cc6b7fdaacb0fd6db5154b3e"}, - {file = "orjson-3.8.2-cp37-cp37m-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:fa2e565cf8ffdb37ce1887bd1592709ada7f701e61aa4b1e710be94b0aecbab4"}, - {file = "orjson-3.8.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1d8864288f7c5fccc07b43394f83b721ddc999f25dccfb5d0651671a76023f5"}, - {file = "orjson-3.8.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1874c05d0bb994601fa2d51605cb910d09343c6ebd36e84a573293523fab772a"}, - {file = "orjson-3.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:349387ed6989e5db22e08c9af8d7ca14240803edc50de451d48d41a0e7be30f6"}, - {file = "orjson-3.8.2-cp37-cp37m-manylinux_2_28_aarch64.whl", hash = "sha256:4e42b19619d6e97e201053b865ca4e62a48da71165f4081508ada8e1b91c6a30"}, - {file = "orjson-3.8.2-cp37-cp37m-manylinux_2_28_x86_64.whl", hash = "sha256:bc112c17e607c59d1501e72afb44226fa53d947d364aed053f0c82d153e29616"}, - {file = "orjson-3.8.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6fda669211f2ed1fc2c8130187ec90c96b4f77b6a250004e666d2ef8ed524e5f"}, - {file = "orjson-3.8.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:aebd4e80fea0f20578fd0452908b9206a6a0d5ae9f5c99b6e665bbcd989e56cd"}, - {file = "orjson-3.8.2-cp37-none-win_amd64.whl", hash = "sha256:9f3cd0394eb6d265beb2a1572b5663bc910883ddbb5cdfbcb660f5a0444e7fd8"}, - {file = "orjson-3.8.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:74e7d54d11b3da42558d69a23bf92c2c48fabf69b38432d5eee2c5b09cd4c433"}, - {file = "orjson-3.8.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:8cbadc9be748a823f9c743c7631b1ee95d3925a9c0b21de4e862a1d57daa10ec"}, - {file = "orjson-3.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a07d5a8c69a2947d9554a00302734fe3d8516415c8b280963c92bc1033477890"}, - {file = "orjson-3.8.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b364ea01d1b71b9f97bf97af9eb79ebee892df302e127a9e2e4f8eaa74d6b98"}, - {file = "orjson-3.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b98a8c825a59db94fbe8e0cce48618624c5a6fb1436467322d90667c08a0bf80"}, - {file = "orjson-3.8.2-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:ab63103f60b516c0fce9b62cb4773f689a82ab56e19ef2387b5a3182f80c0d78"}, - {file = "orjson-3.8.2-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:73ab3f4288389381ae33ab99f914423b69570c88d626d686764634d5e0eeb909"}, - {file = "orjson-3.8.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2ab3fd8728e12c36e20c6d9d70c9e15033374682ce5acb6ed6a08a80dacd254d"}, - {file = "orjson-3.8.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:cde11822cf71a7f0daaa84223249b2696a2b6cda7fa587e9fd762dff1a8848e4"}, - {file = "orjson-3.8.2-cp38-none-win_amd64.whl", hash = "sha256:b14765ea5aabfeab1a194abfaa0be62c9fee6480a75ac8c6974b4eeede3340b4"}, - {file = "orjson-3.8.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:6068a27d59d989d4f2864c2fc3440eb7126a0cfdfaf8a4ad136b0ffd932026ae"}, - {file = "orjson-3.8.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl", hash = "sha256:6bf36fa759a1b941fc552ad76b2d7fb10c1d2a20c056be291ea45eb6ae1da09b"}, - {file = "orjson-3.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f436132e62e647880ca6988974c8e3165a091cb75cbed6c6fd93e931630c22fa"}, - {file = "orjson-3.8.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3ecd8936259a5920b52a99faf62d4efeb9f5e25a0aacf0cce1e9fa7c37af154f"}, - {file = "orjson-3.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c13114b345cda33644f64e92fe5d8737828766cf02fbbc7d28271a95ea546832"}, - {file = "orjson-3.8.2-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:6e43cdc3ddf96bdb751b748b1984b701125abacca8fc2226b808d203916e8cba"}, - {file = "orjson-3.8.2-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:ee39071da2026b11e4352d6fc3608a7b27ee14bc699fd240f4e604770bc7a255"}, - {file = "orjson-3.8.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1c3833976ebbeb3b5b6298cb22e23bf18453f6b80802103b7d08f7dd8a61611d"}, - {file = "orjson-3.8.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b9a34519d3d70935e1cd3797fbed8fbb6f61025182bea0140ca84d95b6f8fbe5"}, - {file = "orjson-3.8.2-cp39-none-win_amd64.whl", hash = "sha256:2734086d9a3dd9591c4be7d05aff9beccc086796d3f243685e56b7973ebac5bc"}, - {file = "orjson-3.8.2.tar.gz", hash = "sha256:a2fb95a45031ccf278e44341027b3035ab99caa32aa173279b1f0a06324f434b"}, -] -packaging = [ - {file = "packaging-21.3-py3-none-any.whl", hash = "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"}, - {file = "packaging-21.3.tar.gz", hash = "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"}, -] -pandas = [ - {file = "pandas-1.5.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0a78e05ec09731c5b3bd7a9805927ea631fe6f6cb06f0e7c63191a9a778d52b4"}, - {file = "pandas-1.5.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5b0c970e2215572197b42f1cff58a908d734503ea54b326412c70d4692256391"}, - {file = "pandas-1.5.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f340331a3f411910adfb4bbe46c2ed5872d9e473a783d7f14ecf49bc0869c594"}, - {file = "pandas-1.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8c709f4700573deb2036d240d140934df7e852520f4a584b2a8d5443b71f54d"}, - {file = "pandas-1.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:32e3d9f65606b3f6e76555bfd1d0b68d94aff0929d82010b791b6254bf5a4b96"}, - {file = "pandas-1.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:a52419d9ba5906db516109660b114faf791136c94c1a636ed6b29cbfff9187ee"}, - {file = "pandas-1.5.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:66a1ad667b56e679e06ba73bb88c7309b3f48a4c279bd3afea29f65a766e9036"}, - {file = "pandas-1.5.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:36aa1f8f680d7584e9b572c3203b20d22d697c31b71189322f16811d4ecfecd3"}, - {file = "pandas-1.5.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bcf1a82b770b8f8c1e495b19a20d8296f875a796c4fe6e91da5ef107f18c5ecb"}, - {file = "pandas-1.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c25e5c16ee5c0feb6cf9d982b869eec94a22ddfda9aa2fbed00842cbb697624"}, - {file = "pandas-1.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:932d2d7d3cab44cfa275601c982f30c2d874722ef6396bb539e41e4dc4618ed4"}, - {file = "pandas-1.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:eb7e8cf2cf11a2580088009b43de84cabbf6f5dae94ceb489f28dba01a17cb77"}, - {file = "pandas-1.5.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:cb2a9cf1150302d69bb99861c5cddc9c25aceacb0a4ef5299785d0f5389a3209"}, - {file = "pandas-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:81f0674fa50b38b6793cd84fae5d67f58f74c2d974d2cb4e476d26eee33343d0"}, - {file = "pandas-1.5.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:17da7035d9e6f9ea9cdc3a513161f8739b8f8489d31dc932bc5a29a27243f93d"}, - {file = "pandas-1.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:669c8605dba6c798c1863157aefde959c1796671ffb342b80fcb80a4c0bc4c26"}, - {file = "pandas-1.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:683779e5728ac9138406c59a11e09cd98c7d2c12f0a5fc2b9c5eecdbb4a00075"}, - {file = "pandas-1.5.1-cp38-cp38-win32.whl", hash = "sha256:ddf46b940ef815af4e542697eaf071f0531449407a7607dd731bf23d156e20a7"}, - {file = "pandas-1.5.1-cp38-cp38-win_amd64.whl", hash = "sha256:db45b94885000981522fb92349e6b76f5aee0924cc5315881239c7859883117d"}, - {file = "pandas-1.5.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:927e59c694e039c75d7023465d311277a1fc29ed7236b5746e9dddf180393113"}, - {file = "pandas-1.5.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e675f8fe9aa6c418dc8d3aac0087b5294c1a4527f1eacf9fe5ea671685285454"}, - {file = "pandas-1.5.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:04e51b01d5192499390c0015630975f57836cc95c7411415b499b599b05c0c96"}, - {file = "pandas-1.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cee0c74e93ed4f9d39007e439debcaadc519d7ea5c0afc3d590a3a7b2edf060"}, - {file = "pandas-1.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b156a971bc451c68c9e1f97567c94fd44155f073e3bceb1b0d195fd98ed12048"}, - {file = "pandas-1.5.1-cp39-cp39-win32.whl", hash = "sha256:05c527c64ee02a47a24031c880ee0ded05af0623163494173204c5b72ddce658"}, - {file = "pandas-1.5.1-cp39-cp39-win_amd64.whl", hash = "sha256:6bb391659a747cf4f181a227c3e64b6d197100d53da98dcd766cc158bdd9ec68"}, - {file = "pandas-1.5.1.tar.gz", hash = "sha256:249cec5f2a5b22096440bd85c33106b6102e0672204abd2d5c014106459804ee"}, -] -parso = [ - {file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"}, - {file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"}, -] -pathspec = [ - {file = "pathspec-0.10.2-py3-none-any.whl", hash = "sha256:88c2606f2c1e818b978540f73ecc908e13999c6c3a383daf3705652ae79807a5"}, - {file = "pathspec-0.10.2.tar.gz", hash = "sha256:8f6bf73e5758fd365ef5d58ce09ac7c27d2833a8d7da51712eac6e27e35141b0"}, -] -pexpect = [ - {file = "pexpect-4.8.0-py2.py3-none-any.whl", hash = "sha256:0b48a55dcb3c05f3329815901ea4fc1537514d6ba867a152b581d69ae3710937"}, - {file = "pexpect-4.8.0.tar.gz", hash = "sha256:fc65a43959d153d0114afe13997d439c22823a27cefceb5ff35c2178c6784c0c"}, -] -pickleshare = [ - {file = "pickleshare-0.7.5-py2.py3-none-any.whl", hash = "sha256:9649af414d74d4df115d5d718f82acb59c9d418196b7b4290ed47a12ce62df56"}, - {file = "pickleshare-0.7.5.tar.gz", hash = "sha256:87683d47965c1da65cdacaf31c8441d12b8044cdec9aca500cd78fc2c683afca"}, -] -platformdirs = [ - {file = "platformdirs-2.5.4-py3-none-any.whl", hash = "sha256:af0276409f9a02373d540bf8480021a048711d572745aef4b7842dad245eba10"}, - {file = "platformdirs-2.5.4.tar.gz", hash = "sha256:1006647646d80f16130f052404c6b901e80ee4ed6bef6792e1f238a8969106f7"}, -] -prompt-toolkit = [ - {file = "prompt_toolkit-3.0.33-py3-none-any.whl", hash = "sha256:ced598b222f6f4029c0800cefaa6a17373fb580cd093223003475ce32805c35b"}, - {file = "prompt_toolkit-3.0.33.tar.gz", hash = "sha256:535c29c31216c77302877d5120aef6c94ff573748a5b5ca5b1b1f76f5e700c73"}, -] -psutil = [ - {file = "psutil-5.9.4-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:c1ca331af862803a42677c120aff8a814a804e09832f166f226bfd22b56feee8"}, - {file = "psutil-5.9.4-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:68908971daf802203f3d37e78d3f8831b6d1014864d7a85937941bb35f09aefe"}, - {file = "psutil-5.9.4-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:3ff89f9b835100a825b14c2808a106b6fdcc4b15483141482a12c725e7f78549"}, - {file = "psutil-5.9.4-cp27-cp27m-win32.whl", hash = "sha256:852dd5d9f8a47169fe62fd4a971aa07859476c2ba22c2254d4a1baa4e10b95ad"}, - {file = "psutil-5.9.4-cp27-cp27m-win_amd64.whl", hash = "sha256:9120cd39dca5c5e1c54b59a41d205023d436799b1c8c4d3ff71af18535728e94"}, - {file = "psutil-5.9.4-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:6b92c532979bafc2df23ddc785ed116fced1f492ad90a6830cf24f4d1ea27d24"}, - {file = "psutil-5.9.4-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:efeae04f9516907be44904cc7ce08defb6b665128992a56957abc9b61dca94b7"}, - {file = "psutil-5.9.4-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:54d5b184728298f2ca8567bf83c422b706200bcbbfafdc06718264f9393cfeb7"}, - {file = "psutil-5.9.4-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:16653106f3b59386ffe10e0bad3bb6299e169d5327d3f187614b1cb8f24cf2e1"}, - {file = "psutil-5.9.4-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54c0d3d8e0078b7666984e11b12b88af2db11d11249a8ac8920dd5ef68a66e08"}, - {file = "psutil-5.9.4-cp36-abi3-win32.whl", hash = "sha256:149555f59a69b33f056ba1c4eb22bb7bf24332ce631c44a319cec09f876aaeff"}, - {file = "psutil-5.9.4-cp36-abi3-win_amd64.whl", hash = "sha256:fd8522436a6ada7b4aad6638662966de0d61d241cb821239b2ae7013d41a43d4"}, - {file = "psutil-5.9.4-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:6001c809253a29599bc0dfd5179d9f8a5779f9dffea1da0f13c53ee568115e1e"}, - {file = "psutil-5.9.4.tar.gz", hash = "sha256:3d7f9739eb435d4b1338944abe23f49584bde5395f27487d2ee25ad9a8774a62"}, -] -psycopg2-binary = [ - {file = "psycopg2-binary-2.9.5.tar.gz", hash = "sha256:33e632d0885b95a8b97165899006c40e9ecdc634a529dca7b991eb7de4ece41c"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:0775d6252ccb22b15da3b5d7adbbf8cfe284916b14b6dc0ff503a23edb01ee85"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ec46ed947801652c9643e0b1dc334cfb2781232e375ba97312c2fc256597632"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3520d7af1ebc838cc6084a3281145d5cd5bdd43fdef139e6db5af01b92596cb7"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5cbc554ba47ecca8cd3396ddaca85e1ecfe3e48dd57dc5e415e59551affe568e"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-manylinux_2_24_aarch64.whl", hash = "sha256:5d28ecdf191db558d0c07d0f16524ee9d67896edf2b7990eea800abeb23ebd61"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-manylinux_2_24_ppc64le.whl", hash = "sha256:b9c33d4aef08dfecbd1736ceab8b7b3c4358bf10a0121483e5cd60d3d308cc64"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:05b3d479425e047c848b9782cd7aac9c6727ce23181eb9647baf64ffdfc3da41"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:1e491e6489a6cb1d079df8eaa15957c277fdedb102b6a68cfbf40c4994412fd0"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:9e32cedc389bcb76d9f24ea8a012b3cb8385ee362ea437e1d012ffaed106c17d"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:46850a640df62ae940e34a163f72e26aca1f88e2da79148e1862faaac985c302"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-win32.whl", hash = "sha256:3d790f84201c3698d1bfb404c917f36e40531577a6dda02e45ba29b64d539867"}, - {file = "psycopg2_binary-2.9.5-cp310-cp310-win_amd64.whl", hash = "sha256:1764546ffeaed4f9428707be61d68972eb5ede81239b46a45843e0071104d0dd"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-macosx_10_9_universal2.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:426c2ae999135d64e6a18849a7d1ad0e1bd007277e4a8f4752eaa40a96b550ff"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7cf1d44e710ca3a9ce952bda2855830fe9f9017ed6259e01fcd71ea6287565f5"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:024030b13bdcbd53d8a93891a2cf07719715724fc9fee40243f3bd78b4264b8f"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bcda1c84a1c533c528356da5490d464a139b6e84eb77cc0b432e38c5c6dd7882"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-manylinux_2_24_aarch64.whl", hash = "sha256:2ef892cabdccefe577088a79580301f09f2a713eb239f4f9f62b2b29cafb0577"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-manylinux_2_24_ppc64le.whl", hash = "sha256:af0516e1711995cb08dc19bbd05bec7dbdebf4185f68870595156718d237df3e"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e72c91bda9880f097c8aa3601a2c0de6c708763ba8128006151f496ca9065935"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:e67b3c26e9b6d37b370c83aa790bbc121775c57bfb096c2e77eacca25fd0233b"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:5fc447058d083b8c6ac076fc26b446d44f0145308465d745fba93a28c14c9e32"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d892bfa1d023c3781a3cab8dd5af76b626c483484d782e8bd047c180db590e4c"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-win32.whl", hash = "sha256:2abccab84d057723d2ca8f99ff7b619285d40da6814d50366f61f0fc385c3903"}, - {file = "psycopg2_binary-2.9.5-cp311-cp311-win_amd64.whl", hash = "sha256:bef7e3f9dc6f0c13afdd671008534be5744e0e682fb851584c8c3a025ec09720"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-macosx_10_14_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:6e63814ec71db9bdb42905c925639f319c80e7909fb76c3b84edc79dadef8d60"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:212757ffcecb3e1a5338d4e6761bf9c04f750e7d027117e74aa3cd8a75bb6fbd"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f8a9bcab7b6db2e3dbf65b214dfc795b4c6b3bb3af922901b6a67f7cb47d5f8"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-manylinux_2_24_aarch64.whl", hash = "sha256:56b2957a145f816726b109ee3d4e6822c23f919a7d91af5a94593723ed667835"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-manylinux_2_24_ppc64le.whl", hash = "sha256:f95b8aca2703d6a30249f83f4fe6a9abf2e627aa892a5caaab2267d56be7ab69"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:70831e03bd53702c941da1a1ad36c17d825a24fbb26857b40913d58df82ec18b"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:dbc332beaf8492b5731229a881807cd7b91b50dbbbaf7fe2faf46942eda64a24"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:2d964eb24c8b021623df1c93c626671420c6efadbdb8655cb2bd5e0c6fa422ba"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:95076399ec3b27a8f7fa1cc9a83417b1c920d55cf7a97f718a94efbb96c7f503"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-win32.whl", hash = "sha256:3fc33295cfccad697a97a76dec3f1e94ad848b7b163c3228c1636977966b51e2"}, - {file = "psycopg2_binary-2.9.5-cp36-cp36m-win_amd64.whl", hash = "sha256:02551647542f2bf89073d129c73c05a25c372fc0a49aa50e0de65c3c143d8bd0"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:63e318dbe52709ed10d516a356f22a635e07a2e34c68145484ed96a19b0c4c68"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a7e518a0911c50f60313cb9e74a169a65b5d293770db4770ebf004245f24b5c5"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b9d38a4656e4e715d637abdf7296e98d6267df0cc0a8e9a016f8ba07e4aa3eeb"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-manylinux_2_24_aarch64.whl", hash = "sha256:68d81a2fe184030aa0c5c11e518292e15d342a667184d91e30644c9d533e53e1"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-manylinux_2_24_ppc64le.whl", hash = "sha256:7ee3095d02d6f38bd7d9a5358fcc9ea78fcdb7176921528dd709cc63f40184f5"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:46512486be6fbceef51d7660dec017394ba3e170299d1dc30928cbedebbf103a"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:b911dfb727e247340d36ae20c4b9259e4a64013ab9888ccb3cbba69b77fd9636"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:422e3d43b47ac20141bc84b3d342eead8d8099a62881a501e97d15f6addabfe9"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:c5682a45df7d9642eff590abc73157c887a68f016df0a8ad722dcc0f888f56d7"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-win32.whl", hash = "sha256:b8104f709590fff72af801e916817560dbe1698028cd0afe5a52d75ceb1fce5f"}, - {file = "psycopg2_binary-2.9.5-cp37-cp37m-win_amd64.whl", hash = "sha256:7b3751857da3e224f5629400736a7b11e940b5da5f95fa631d86219a1beaafec"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:043a9fd45a03858ff72364b4b75090679bd875ee44df9c0613dc862ca6b98460"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9ffdc51001136b699f9563b1c74cc1f8c07f66ef7219beb6417a4c8aaa896c28"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c15ba5982c177bc4b23a7940c7e4394197e2d6a424a2d282e7c236b66da6d896"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dc85b3777068ed30aff8242be2813038a929f2084f69e43ef869daddae50f6ee"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-manylinux_2_24_aarch64.whl", hash = "sha256:215d6bf7e66732a514f47614f828d8c0aaac9a648c46a831955cb103473c7147"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-manylinux_2_24_ppc64le.whl", hash = "sha256:7d07f552d1e412f4b4e64ce386d4c777a41da3b33f7098b6219012ba534fb2c2"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a0adef094c49f242122bb145c3c8af442070dc0e4312db17e49058c1702606d4"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:00475004e5ed3e3bf5e056d66e5dcdf41a0dc62efcd57997acd9135c40a08a50"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:7d88db096fa19d94f433420eaaf9f3c45382da2dd014b93e4bf3215639047c16"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:902844f9c4fb19b17dfa84d9e2ca053d4a4ba265723d62ea5c9c26b38e0aa1e6"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-win32.whl", hash = "sha256:4e7904d1920c0c89105c0517dc7e3f5c20fb4e56ba9cdef13048db76947f1d79"}, - {file = "psycopg2_binary-2.9.5-cp38-cp38-win_amd64.whl", hash = "sha256:a36a0e791805aa136e9cbd0ffa040d09adec8610453ee8a753f23481a0057af5"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-macosx_10_15_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:25382c7d174c679ce6927c16b6fbb68b10e56ee44b1acb40671e02d29f2fce7c"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9c38d3869238e9d3409239bc05bc27d6b7c99c2a460ea337d2814b35fb4fea1b"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5c6527c8efa5226a9e787507652dd5ba97b62d29b53c371a85cd13f957fe4d42"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e59137cdb970249ae60be2a49774c6dfb015bd0403f05af1fe61862e9626642d"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_24_aarch64.whl", hash = "sha256:d4c7b3a31502184e856df1f7bbb2c3735a05a8ce0ade34c5277e1577738a5c91"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-manylinux_2_24_ppc64le.whl", hash = "sha256:b9a794cef1d9c1772b94a72eec6da144c18e18041d294a9ab47669bc77a80c1d"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5254cbd4f4855e11cebf678c1a848a3042d455a22a4ce61349c36aafd4c2267"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:c5e65c6ac0ae4bf5bef1667029f81010b6017795dcb817ba5c7b8a8d61fab76f"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:74eddec4537ab1f701a1647214734bc52cee2794df748f6ae5908e00771f180a"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:01ad49d68dd8c5362e4bfb4158f2896dc6e0c02e87b8a3770fc003459f1a4425"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-win32.whl", hash = "sha256:937880290775033a743f4836aa253087b85e62784b63fd099ee725d567a48aa1"}, - {file = "psycopg2_binary-2.9.5-cp39-cp39-win_amd64.whl", hash = "sha256:484405b883630f3e74ed32041a87456c5e0e63a8e3429aa93e8714c366d62bd1"}, -] -ptyprocess = [ - {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, - {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, -] -pure-eval = [ - {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, - {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, -] -py = [ - {file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"}, - {file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"}, -] -pycodestyle = [ - {file = "pycodestyle-2.9.1-py2.py3-none-any.whl", hash = "sha256:d1735fc58b418fd7c5f658d28d943854f8a849b01a5d0a1e6f3f3fdd0166804b"}, - {file = "pycodestyle-2.9.1.tar.gz", hash = "sha256:2c9607871d58c76354b697b42f5d57e1ada7d261c261efac224b664affdc5785"}, -] -pycparser = [ - {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, - {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, -] -pydantic = [ - {file = "pydantic-1.10.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bb6ad4489af1bac6955d38ebcb95079a836af31e4c4f74aba1ca05bb9f6027bd"}, - {file = "pydantic-1.10.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a1f5a63a6dfe19d719b1b6e6106561869d2efaca6167f84f5ab9347887d78b98"}, - {file = "pydantic-1.10.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:352aedb1d71b8b0736c6d56ad2bd34c6982720644b0624462059ab29bd6e5912"}, - {file = "pydantic-1.10.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:19b3b9ccf97af2b7519c42032441a891a5e05c68368f40865a90eb88833c2559"}, - {file = "pydantic-1.10.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e9069e1b01525a96e6ff49e25876d90d5a563bc31c658289a8772ae186552236"}, - {file = "pydantic-1.10.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:355639d9afc76bcb9b0c3000ddcd08472ae75318a6eb67a15866b87e2efa168c"}, - {file = "pydantic-1.10.2-cp310-cp310-win_amd64.whl", hash = "sha256:ae544c47bec47a86bc7d350f965d8b15540e27e5aa4f55170ac6a75e5f73b644"}, - {file = "pydantic-1.10.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a4c805731c33a8db4b6ace45ce440c4ef5336e712508b4d9e1aafa617dc9907f"}, - {file = "pydantic-1.10.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d49f3db871575e0426b12e2f32fdb25e579dea16486a26e5a0474af87cb1ab0a"}, - {file = "pydantic-1.10.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:37c90345ec7dd2f1bcef82ce49b6235b40f282b94d3eec47e801baf864d15525"}, - {file = "pydantic-1.10.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7b5ba54d026c2bd2cb769d3468885f23f43710f651688e91f5fb1edcf0ee9283"}, - {file = "pydantic-1.10.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:05e00dbebbe810b33c7a7362f231893183bcc4251f3f2ff991c31d5c08240c42"}, - {file = "pydantic-1.10.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:2d0567e60eb01bccda3a4df01df677adf6b437958d35c12a3ac3e0f078b0ee52"}, - {file = "pydantic-1.10.2-cp311-cp311-win_amd64.whl", hash = "sha256:c6f981882aea41e021f72779ce2a4e87267458cc4d39ea990729e21ef18f0f8c"}, - {file = "pydantic-1.10.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c4aac8e7103bf598373208f6299fa9a5cfd1fc571f2d40bf1dd1955a63d6eeb5"}, - {file = "pydantic-1.10.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:81a7b66c3f499108b448f3f004801fcd7d7165fb4200acb03f1c2402da73ce4c"}, - {file = "pydantic-1.10.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bedf309630209e78582ffacda64a21f96f3ed2e51fbf3962d4d488e503420254"}, - {file = "pydantic-1.10.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:9300fcbebf85f6339a02c6994b2eb3ff1b9c8c14f502058b5bf349d42447dcf5"}, - {file = "pydantic-1.10.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:216f3bcbf19c726b1cc22b099dd409aa371f55c08800bcea4c44c8f74b73478d"}, - {file = "pydantic-1.10.2-cp37-cp37m-win_amd64.whl", hash = "sha256:dd3f9a40c16daf323cf913593083698caee97df2804aa36c4b3175d5ac1b92a2"}, - {file = "pydantic-1.10.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b97890e56a694486f772d36efd2ba31612739bc6f3caeee50e9e7e3ebd2fdd13"}, - {file = "pydantic-1.10.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:9cabf4a7f05a776e7793e72793cd92cc865ea0e83a819f9ae4ecccb1b8aa6116"}, - {file = "pydantic-1.10.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:06094d18dd5e6f2bbf93efa54991c3240964bb663b87729ac340eb5014310624"}, - {file = "pydantic-1.10.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cc78cc83110d2f275ec1970e7a831f4e371ee92405332ebfe9860a715f8336e1"}, - {file = "pydantic-1.10.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1ee433e274268a4b0c8fde7ad9d58ecba12b069a033ecc4645bb6303c062d2e9"}, - {file = "pydantic-1.10.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:7c2abc4393dea97a4ccbb4ec7d8658d4e22c4765b7b9b9445588f16c71ad9965"}, - {file = "pydantic-1.10.2-cp38-cp38-win_amd64.whl", hash = "sha256:0b959f4d8211fc964772b595ebb25f7652da3f22322c007b6fed26846a40685e"}, - {file = "pydantic-1.10.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c33602f93bfb67779f9c507e4d69451664524389546bacfe1bee13cae6dc7488"}, - {file = "pydantic-1.10.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:5760e164b807a48a8f25f8aa1a6d857e6ce62e7ec83ea5d5c5a802eac81bad41"}, - {file = "pydantic-1.10.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6eb843dcc411b6a2237a694f5e1d649fc66c6064d02b204a7e9d194dff81eb4b"}, - {file = "pydantic-1.10.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b8795290deaae348c4eba0cebb196e1c6b98bdbe7f50b2d0d9a4a99716342fe"}, - {file = "pydantic-1.10.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:e0bedafe4bc165ad0a56ac0bd7695df25c50f76961da29c050712596cf092d6d"}, - {file = "pydantic-1.10.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:2e05aed07fa02231dbf03d0adb1be1d79cabb09025dd45aa094aa8b4e7b9dcda"}, - {file = "pydantic-1.10.2-cp39-cp39-win_amd64.whl", hash = "sha256:c1ba1afb396148bbc70e9eaa8c06c1716fdddabaf86e7027c5988bae2a829ab6"}, - {file = "pydantic-1.10.2-py3-none-any.whl", hash = "sha256:1b6ee725bd6e83ec78b1aa32c5b1fa67a3a65badddde3976bca5fe4568f27709"}, - {file = "pydantic-1.10.2.tar.gz", hash = "sha256:91b8e218852ef6007c2b98cd861601c6a09f1aa32bbbb74fab5b1c33d4a1e410"}, -] -pyflakes = [ - {file = "pyflakes-2.5.0-py2.py3-none-any.whl", hash = "sha256:4579f67d887f804e67edb544428f264b7b24f435b263c4614f384135cea553d2"}, - {file = "pyflakes-2.5.0.tar.gz", hash = "sha256:491feb020dca48ccc562a8c0cbe8df07ee13078df59813b83959cbdada312ea3"}, -] -pygments = [ - {file = "Pygments-2.13.0-py3-none-any.whl", hash = "sha256:f643f331ab57ba3c9d89212ee4a2dabc6e94f117cf4eefde99a0574720d14c42"}, - {file = "Pygments-2.13.0.tar.gz", hash = "sha256:56a8508ae95f98e2b9bdf93a6be5ae3f7d8af858b43e02c5a2ff083726be40c1"}, -] -pyparsing = [ - {file = "pyparsing-3.0.9-py3-none-any.whl", hash = "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"}, - {file = "pyparsing-3.0.9.tar.gz", hash = "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"}, -] -python-dateutil = [ - {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, - {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, -] -python-dotenv = [ - {file = "python-dotenv-0.21.0.tar.gz", hash = "sha256:b77d08274639e3d34145dfa6c7008e66df0f04b7be7a75fd0d5292c191d79045"}, - {file = "python_dotenv-0.21.0-py3-none-any.whl", hash = "sha256:1684eb44636dd462b66c3ee016599815514527ad99965de77f43e0944634a7e5"}, -] -python-multipart = [ - {file = "python-multipart-0.0.5.tar.gz", hash = "sha256:f7bb5f611fc600d15fa47b3974c8aa16e93724513b49b5f95c81e6624c83fa43"}, -] -python-slugify = [ - {file = "python-slugify-7.0.0.tar.gz", hash = "sha256:7a0f21a39fa6c1c4bf2e5984c9b9ae944483fd10b54804cb0e23a3ccd4954f0b"}, - {file = "python_slugify-7.0.0-py2.py3-none-any.whl", hash = "sha256:003aee64f9fd955d111549f96c4b58a3f40b9319383c70fad6277a4974bbf570"}, -] -pytz = [ - {file = "pytz-2022.6-py2.py3-none-any.whl", hash = "sha256:222439474e9c98fced559f1709d89e6c9cbf8d79c794ff3eb9f8800064291427"}, - {file = "pytz-2022.6.tar.gz", hash = "sha256:e89512406b793ca39f5971bc999cc538ce125c0e51c27941bef4568b460095e2"}, -] -pywin32 = [ - {file = "pywin32-305-cp310-cp310-win32.whl", hash = "sha256:421f6cd86e84bbb696d54563c48014b12a23ef95a14e0bdba526be756d89f116"}, - {file = "pywin32-305-cp310-cp310-win_amd64.whl", hash = "sha256:73e819c6bed89f44ff1d690498c0a811948f73777e5f97c494c152b850fad478"}, - {file = "pywin32-305-cp310-cp310-win_arm64.whl", hash = "sha256:742eb905ce2187133a29365b428e6c3b9001d79accdc30aa8969afba1d8470f4"}, - {file = "pywin32-305-cp311-cp311-win32.whl", hash = "sha256:19ca459cd2e66c0e2cc9a09d589f71d827f26d47fe4a9d09175f6aa0256b51c2"}, - {file = "pywin32-305-cp311-cp311-win_amd64.whl", hash = "sha256:326f42ab4cfff56e77e3e595aeaf6c216712bbdd91e464d167c6434b28d65990"}, - {file = "pywin32-305-cp311-cp311-win_arm64.whl", hash = "sha256:4ecd404b2c6eceaca52f8b2e3e91b2187850a1ad3f8b746d0796a98b4cea04db"}, - {file = "pywin32-305-cp36-cp36m-win32.whl", hash = "sha256:48d8b1659284f3c17b68587af047d110d8c44837736b8932c034091683e05863"}, - {file = "pywin32-305-cp36-cp36m-win_amd64.whl", hash = "sha256:13362cc5aa93c2beaf489c9c9017c793722aeb56d3e5166dadd5ef82da021fe1"}, - {file = "pywin32-305-cp37-cp37m-win32.whl", hash = "sha256:a55db448124d1c1484df22fa8bbcbc45c64da5e6eae74ab095b9ea62e6d00496"}, - {file = "pywin32-305-cp37-cp37m-win_amd64.whl", hash = "sha256:109f98980bfb27e78f4df8a51a8198e10b0f347257d1e265bb1a32993d0c973d"}, - {file = "pywin32-305-cp38-cp38-win32.whl", hash = "sha256:9dd98384da775afa009bc04863426cb30596fd78c6f8e4e2e5bbf4edf8029504"}, - {file = "pywin32-305-cp38-cp38-win_amd64.whl", hash = "sha256:56d7a9c6e1a6835f521788f53b5af7912090674bb84ef5611663ee1595860fc7"}, - {file = "pywin32-305-cp39-cp39-win32.whl", hash = "sha256:9d968c677ac4d5cbdaa62fd3014ab241718e619d8e36ef8e11fb930515a1e918"}, - {file = "pywin32-305-cp39-cp39-win_amd64.whl", hash = "sha256:50768c6b7c3f0b38b7fb14dd4104da93ebced5f1a50dc0e834594bff6fbe1271"}, -] -pyyaml = [ - {file = "PyYAML-6.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d4db7c7aef085872ef65a8fd7d6d09a14ae91f691dec3e87ee5ee0539d516f53"}, - {file = "PyYAML-6.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9df7ed3b3d2e0ecfe09e14741b857df43adb5a3ddadc919a2d94fbdf78fea53c"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77f396e6ef4c73fdc33a9157446466f1cff553d979bd00ecb64385760c6babdc"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a80a78046a72361de73f8f395f1f1e49f956c6be882eed58505a15f3e430962b"}, - {file = "PyYAML-6.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:f84fbc98b019fef2ee9a1cb3ce93e3187a6df0b2538a651bfb890254ba9f90b5"}, - {file = "PyYAML-6.0-cp310-cp310-win32.whl", hash = "sha256:2cd5df3de48857ed0544b34e2d40e9fac445930039f3cfe4bcc592a1f836d513"}, - {file = "PyYAML-6.0-cp310-cp310-win_amd64.whl", hash = "sha256:daf496c58a8c52083df09b80c860005194014c3698698d1a57cbcfa182142a3a"}, - {file = "PyYAML-6.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d4b0ba9512519522b118090257be113b9468d804b19d63c71dbcf4a48fa32358"}, - {file = "PyYAML-6.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:81957921f441d50af23654aa6c5e5eaf9b06aba7f0a19c18a538dc7ef291c5a1"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:afa17f5bc4d1b10afd4466fd3a44dc0e245382deca5b3c353d8b757f9e3ecb8d"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbad0e9d368bb989f4515da330b88a057617d16b6a8245084f1b05400f24609f"}, - {file = "PyYAML-6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:432557aa2c09802be39460360ddffd48156e30721f5e8d917f01d31694216782"}, - {file = "PyYAML-6.0-cp311-cp311-win32.whl", hash = "sha256:bfaef573a63ba8923503d27530362590ff4f576c626d86a9fed95822a8255fd7"}, - {file = "PyYAML-6.0-cp311-cp311-win_amd64.whl", hash = "sha256:01b45c0191e6d66c470b6cf1b9531a771a83c1c4208272ead47a3ae4f2f603bf"}, - {file = "PyYAML-6.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:897b80890765f037df3403d22bab41627ca8811ae55e9a722fd0392850ec4d86"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50602afada6d6cbfad699b0c7bb50d5ccffa7e46a3d738092afddc1f9758427f"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48c346915c114f5fdb3ead70312bd042a953a8ce5c7106d5bfb1a5254e47da92"}, - {file = "PyYAML-6.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:98c4d36e99714e55cfbaaee6dd5badbc9a1ec339ebfc3b1f52e293aee6bb71a4"}, - {file = "PyYAML-6.0-cp36-cp36m-win32.whl", hash = "sha256:0283c35a6a9fbf047493e3a0ce8d79ef5030852c51e9d911a27badfde0605293"}, - {file = "PyYAML-6.0-cp36-cp36m-win_amd64.whl", hash = "sha256:07751360502caac1c067a8132d150cf3d61339af5691fe9e87803040dbc5db57"}, - {file = "PyYAML-6.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:819b3830a1543db06c4d4b865e70ded25be52a2e0631ccd2f6a47a2822f2fd7c"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:473f9edb243cb1935ab5a084eb238d842fb8f404ed2193a915d1784b5a6b5fc0"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0ce82d761c532fe4ec3f87fc45688bdd3a4c1dc5e0b4a19814b9009a29baefd4"}, - {file = "PyYAML-6.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:231710d57adfd809ef5d34183b8ed1eeae3f76459c18fb4a0b373ad56bedcdd9"}, - {file = "PyYAML-6.0-cp37-cp37m-win32.whl", hash = "sha256:c5687b8d43cf58545ade1fe3e055f70eac7a5a1a0bf42824308d868289a95737"}, - {file = "PyYAML-6.0-cp37-cp37m-win_amd64.whl", hash = "sha256:d15a181d1ecd0d4270dc32edb46f7cb7733c7c508857278d3d378d14d606db2d"}, - {file = "PyYAML-6.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0b4624f379dab24d3725ffde76559cff63d9ec94e1736b556dacdfebe5ab6d4b"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:213c60cd50106436cc818accf5baa1aba61c0189ff610f64f4a3e8c6726218ba"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9fa600030013c4de8165339db93d182b9431076eb98eb40ee068700c9c813e34"}, - {file = "PyYAML-6.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:277a0ef2981ca40581a47093e9e2d13b3f1fbbeffae064c1d21bfceba2030287"}, - {file = "PyYAML-6.0-cp38-cp38-win32.whl", hash = "sha256:d4eccecf9adf6fbcc6861a38015c2a64f38b9d94838ac1810a9023a0609e1b78"}, - {file = "PyYAML-6.0-cp38-cp38-win_amd64.whl", hash = "sha256:1e4747bc279b4f613a09eb64bba2ba602d8a6664c6ce6396a4d0cd413a50ce07"}, - {file = "PyYAML-6.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:055d937d65826939cb044fc8c9b08889e8c743fdc6a32b33e2390f66013e449b"}, - {file = "PyYAML-6.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e61ceaab6f49fb8bdfaa0f92c4b57bcfbea54c09277b1b4f7ac376bfb7a7c174"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d67d839ede4ed1b28a4e8909735fc992a923cdb84e618544973d7dfc71540803"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cba8c411ef271aa037d7357a2bc8f9ee8b58b9965831d9e51baf703280dc73d3"}, - {file = "PyYAML-6.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:40527857252b61eacd1d9af500c3337ba8deb8fc298940291486c465c8b46ec0"}, - {file = "PyYAML-6.0-cp39-cp39-win32.whl", hash = "sha256:b5b9eccad747aabaaffbc6064800670f0c297e52c12754eb1d976c57e4f74dcb"}, - {file = "PyYAML-6.0-cp39-cp39-win_amd64.whl", hash = "sha256:b3d267842bf12586ba6c734f89d1f5b871df0273157918b0ccefa29deb05c21c"}, - {file = "PyYAML-6.0.tar.gz", hash = "sha256:68fb519c14306fec9720a2a5b45bc9f0c8d1b9c72adf45c37baedfcd949c35a2"}, -] -pyzmq = [ - {file = "pyzmq-24.0.1-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:28b119ba97129d3001673a697b7cce47fe6de1f7255d104c2f01108a5179a066"}, - {file = "pyzmq-24.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bcbebd369493d68162cddb74a9c1fcebd139dfbb7ddb23d8f8e43e6c87bac3a6"}, - {file = "pyzmq-24.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae61446166983c663cee42c852ed63899e43e484abf080089f771df4b9d272ef"}, - {file = "pyzmq-24.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87f7ac99b15270db8d53f28c3c7b968612993a90a5cf359da354efe96f5372b4"}, - {file = "pyzmq-24.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9dca7c3956b03b7663fac4d150f5e6d4f6f38b2462c1e9afd83bcf7019f17913"}, - {file = "pyzmq-24.0.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8c78bfe20d4c890cb5580a3b9290f700c570e167d4cdcc55feec07030297a5e3"}, - {file = "pyzmq-24.0.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:48f721f070726cd2a6e44f3c33f8ee4b24188e4b816e6dd8ba542c8c3bb5b246"}, - {file = "pyzmq-24.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:afe1f3bc486d0ce40abb0a0c9adb39aed3bbac36ebdc596487b0cceba55c21c1"}, - {file = "pyzmq-24.0.1-cp310-cp310-win32.whl", hash = "sha256:3e6192dbcefaaa52ed81be88525a54a445f4b4fe2fffcae7fe40ebb58bd06bfd"}, - {file = "pyzmq-24.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:86de64468cad9c6d269f32a6390e210ca5ada568c7a55de8e681ca3b897bb340"}, - {file = "pyzmq-24.0.1-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:838812c65ed5f7c2bd11f7b098d2e5d01685a3f6d1f82849423b570bae698c00"}, - {file = "pyzmq-24.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dfb992dbcd88d8254471760879d48fb20836d91baa90f181c957122f9592b3dc"}, - {file = "pyzmq-24.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7abddb2bd5489d30ffeb4b93a428130886c171b4d355ccd226e83254fcb6b9ef"}, - {file = "pyzmq-24.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:94010bd61bc168c103a5b3b0f56ed3b616688192db7cd5b1d626e49f28ff51b3"}, - {file = "pyzmq-24.0.1-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:8242543c522d84d033fe79be04cb559b80d7eb98ad81b137ff7e0a9020f00ace"}, - {file = "pyzmq-24.0.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ccb94342d13e3bf3ffa6e62f95b5e3f0bc6bfa94558cb37f4b3d09d6feb536ff"}, - {file = "pyzmq-24.0.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:6640f83df0ae4ae1104d4c62b77e9ef39be85ebe53f636388707d532bee2b7b8"}, - {file = "pyzmq-24.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:a180dbd5ea5d47c2d3b716d5c19cc3fb162d1c8db93b21a1295d69585bfddac1"}, - {file = "pyzmq-24.0.1-cp311-cp311-win32.whl", hash = "sha256:624321120f7e60336be8ec74a172ae7fba5c3ed5bf787cc85f7e9986c9e0ebc2"}, - {file = "pyzmq-24.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:1724117bae69e091309ffb8255412c4651d3f6355560d9af312d547f6c5bc8b8"}, - {file = "pyzmq-24.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:15975747462ec49fdc863af906bab87c43b2491403ab37a6d88410635786b0f4"}, - {file = "pyzmq-24.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b947e264f0e77d30dcbccbb00f49f900b204b922eb0c3a9f0afd61aaa1cedc3d"}, - {file = "pyzmq-24.0.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0ec91f1bad66f3ee8c6deb65fa1fe418e8ad803efedd69c35f3b5502f43bd1dc"}, - {file = "pyzmq-24.0.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:db03704b3506455d86ec72c3358a779e9b1d07b61220dfb43702b7b668edcd0d"}, - {file = "pyzmq-24.0.1-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:e7e66b4e403c2836ac74f26c4b65d8ac0ca1eef41dfcac2d013b7482befaad83"}, - {file = "pyzmq-24.0.1-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7a23ccc1083c260fa9685c93e3b170baba45aeed4b524deb3f426b0c40c11639"}, - {file = "pyzmq-24.0.1-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fa0ae3275ef706c0309556061185dd0e4c4cd3b7d6f67ae617e4e677c7a41e2e"}, - {file = "pyzmq-24.0.1-cp36-cp36m-win32.whl", hash = "sha256:f01de4ec083daebf210531e2cca3bdb1608dbbbe00a9723e261d92087a1f6ebc"}, - {file = "pyzmq-24.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:de4217b9eb8b541cf2b7fde4401ce9d9a411cc0af85d410f9d6f4333f43640be"}, - {file = "pyzmq-24.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:78068e8678ca023594e4a0ab558905c1033b2d3e806a0ad9e3094e231e115a33"}, - {file = "pyzmq-24.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77c2713faf25a953c69cf0f723d1b7dd83827b0834e6c41e3fb3bbc6765914a1"}, - {file = "pyzmq-24.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8bb4af15f305056e95ca1bd086239b9ebc6ad55e9f49076d27d80027f72752f6"}, - {file = "pyzmq-24.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:0f14cffd32e9c4c73da66db97853a6aeceaac34acdc0fae9e5bbc9370281864c"}, - {file = "pyzmq-24.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0108358dab8c6b27ff6b985c2af4b12665c1bc659648284153ee501000f5c107"}, - {file = "pyzmq-24.0.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:d66689e840e75221b0b290b0befa86f059fb35e1ee6443bce51516d4d61b6b99"}, - {file = "pyzmq-24.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ae08ac90aa8fa14caafc7a6251bd218bf6dac518b7bff09caaa5e781119ba3f2"}, - {file = "pyzmq-24.0.1-cp37-cp37m-win32.whl", hash = "sha256:8421aa8c9b45ea608c205db9e1c0c855c7e54d0e9c2c2f337ce024f6843cab3b"}, - {file = "pyzmq-24.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:54d8b9c5e288362ec8595c1d98666d36f2070fd0c2f76e2b3c60fbad9bd76227"}, - {file = "pyzmq-24.0.1-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:acbd0a6d61cc954b9f535daaa9ec26b0a60a0d4353c5f7c1438ebc88a359a47e"}, - {file = "pyzmq-24.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:47b11a729d61a47df56346283a4a800fa379ae6a85870d5a2e1e4956c828eedc"}, - {file = "pyzmq-24.0.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:abe6eb10122f0d746a0d510c2039ae8edb27bc9af29f6d1b05a66cc2401353ff"}, - {file = "pyzmq-24.0.1-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:07bec1a1b22dacf718f2c0e71b49600bb6a31a88f06527dfd0b5aababe3fa3f7"}, - {file = "pyzmq-24.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0d945a85b70da97ae86113faf9f1b9294efe66bd4a5d6f82f2676d567338b66"}, - {file = "pyzmq-24.0.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:1b7928bb7580736ffac5baf814097be342ba08d3cfdfb48e52773ec959572287"}, - {file = "pyzmq-24.0.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:b946da90dc2799bcafa682692c1d2139b2a96ec3c24fa9fc6f5b0da782675330"}, - {file = "pyzmq-24.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:c8840f064b1fb377cffd3efeaad2b190c14d4c8da02316dae07571252d20b31f"}, - {file = "pyzmq-24.0.1-cp38-cp38-win32.whl", hash = "sha256:4854f9edc5208f63f0841c0c667260ae8d6846cfa233c479e29fdc85d42ebd58"}, - {file = "pyzmq-24.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:42d4f97b9795a7aafa152a36fe2ad44549b83a743fd3e77011136def512e6c2a"}, - {file = "pyzmq-24.0.1-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:52afb0ac962963fff30cf1be775bc51ae083ef4c1e354266ab20e5382057dd62"}, - {file = "pyzmq-24.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8bad8210ad4df68c44ff3685cca3cda448ee46e20d13edcff8909eba6ec01ca4"}, - {file = "pyzmq-24.0.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:dabf1a05318d95b1537fd61d9330ef4313ea1216eea128a17615038859da3b3b"}, - {file = "pyzmq-24.0.1-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5bd3d7dfd9cd058eb68d9a905dec854f86649f64d4ddf21f3ec289341386c44b"}, - {file = "pyzmq-24.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8012bce6836d3f20a6c9599f81dfa945f433dab4dbd0c4917a6fb1f998ab33d"}, - {file = "pyzmq-24.0.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c31805d2c8ade9b11feca4674eee2b9cce1fec3e8ddb7bbdd961a09dc76a80ea"}, - {file = "pyzmq-24.0.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:3104f4b084ad5d9c0cb87445cc8cfd96bba710bef4a66c2674910127044df209"}, - {file = "pyzmq-24.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:df0841f94928f8af9c7a1f0aaaffba1fb74607af023a152f59379c01c53aee58"}, - {file = "pyzmq-24.0.1-cp39-cp39-win32.whl", hash = "sha256:a435ef8a3bd95c8a2d316d6e0ff70d0db524f6037411652803e118871d703333"}, - {file = "pyzmq-24.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:2032d9cb994ce3b4cba2b8dfae08c7e25bc14ba484c770d4d3be33c27de8c45b"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:bb5635c851eef3a7a54becde6da99485eecf7d068bd885ac8e6d173c4ecd68b0"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:83ea1a398f192957cb986d9206ce229efe0ee75e3c6635baff53ddf39bd718d5"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:941fab0073f0a54dc33d1a0460cb04e0d85893cb0c5e1476c785000f8b359409"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e8f482c44ccb5884bf3f638f29bea0f8dc68c97e38b2061769c4cb697f6140d"}, - {file = "pyzmq-24.0.1-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:613010b5d17906c4367609e6f52e9a2595e35d5cc27d36ff3f1b6fa6e954d944"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:65c94410b5a8355cfcf12fd600a313efee46ce96a09e911ea92cf2acf6708804"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:20e7eeb1166087db636c06cae04a1ef59298627f56fb17da10528ab52a14c87f"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:a2712aee7b3834ace51738c15d9ee152cc5a98dc7d57dd93300461b792ab7b43"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a7c280185c4da99e0cc06c63bdf91f5b0b71deb70d8717f0ab870a43e376db8"}, - {file = "pyzmq-24.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:858375573c9225cc8e5b49bfac846a77b696b8d5e815711b8d4ba3141e6e8879"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:80093b595921eed1a2cead546a683b9e2ae7f4a4592bb2ab22f70d30174f003a"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f3f3154fde2b1ff3aa7b4f9326347ebc89c8ef425ca1db8f665175e6d3bd42f"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abb756147314430bee5d10919b8493c0ccb109ddb7f5dfd2fcd7441266a25b75"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44e706bac34e9f50779cb8c39f10b53a4d15aebb97235643d3112ac20bd577b4"}, - {file = "pyzmq-24.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:687700f8371643916a1d2c61f3fdaa630407dd205c38afff936545d7b7466066"}, - {file = "pyzmq-24.0.1.tar.gz", hash = "sha256:216f5d7dbb67166759e59b0479bca82b8acf9bed6015b526b8eb10143fb08e77"}, -] -requests = [ - {file = "requests-2.28.1-py3-none-any.whl", hash = "sha256:8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349"}, - {file = "requests-2.28.1.tar.gz", hash = "sha256:7c5599b102feddaa661c826c56ab4fee28bfd17f5abca1ebbe3e7f19d7c97983"}, -] -six = [ - {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, - {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, -] -sniffio = [ - {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, - {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, -] -sqlalchemy = [ - {file = "SQLAlchemy-1.4.44-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:da60b98b0f6f0df9fbf8b72d67d13b73aa8091923a48af79a951d4088530a239"}, - {file = "SQLAlchemy-1.4.44-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:95f4f8d62589755b507218f2e3189475a4c1f5cc9db2aec772071a7dc6cd5726"}, - {file = "SQLAlchemy-1.4.44-cp27-cp27m-win32.whl", hash = "sha256:afd1ac99179d1864a68c06b31263a08ea25a49df94e272712eb2824ef151e294"}, - {file = "SQLAlchemy-1.4.44-cp27-cp27m-win_amd64.whl", hash = "sha256:f8e5443295b218b08bef8eb85d31b214d184b3690d99a33b7bd8e5591e2b0aa1"}, - {file = "SQLAlchemy-1.4.44-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:53f90a2374f60e703c94118d21533765412da8225ba98659de7dd7998641ab17"}, - {file = "SQLAlchemy-1.4.44-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:65a0ad931944fcb0be12a8e0ac322dbd3ecf17c53f088bc10b6da8f0caac287b"}, - {file = "SQLAlchemy-1.4.44-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:595b185041a4dc5c685283ea98c2f67bbfa47bb28e4a4f5b27ebf40684e7a9f8"}, - {file = "SQLAlchemy-1.4.44-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:80ead36fb1d676cc019586ffdc21c7e906ce4bf243fe4021e4973dae332b6038"}, - {file = "SQLAlchemy-1.4.44-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:68e0cd5d32a32c4395168d42f2fefbb03b817ead3a8f3704b8bd5697c0b26c24"}, - {file = "SQLAlchemy-1.4.44-cp310-cp310-win32.whl", hash = "sha256:ae1ed1ebc407d2f66c6f0ec44ef7d56e3f455859df5494680e2cf89dad8e3ae0"}, - {file = "SQLAlchemy-1.4.44-cp310-cp310-win_amd64.whl", hash = "sha256:6f0ea4d7348feb5e5d0bf317aace92e28398fa9a6e38b7be9ec1f31aad4a8039"}, - {file = "SQLAlchemy-1.4.44-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f5e8ed9cde48b76318ab989deeddc48f833d2a6a7b7c393c49b704f67dedf01d"}, - {file = "SQLAlchemy-1.4.44-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c857676d810ca196be73c98eb839125d6fa849bfa3589be06201a6517f9961c"}, - {file = "SQLAlchemy-1.4.44-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c56e6899fa6e767e4be5d106941804a4201c5cb9620a409c0b80448ec70b656"}, - {file = "SQLAlchemy-1.4.44-cp311-cp311-win32.whl", hash = "sha256:c46322354c58d4dc039a2c982d28284330f8919f31206894281f4b595b9d8dbe"}, - {file = "SQLAlchemy-1.4.44-cp311-cp311-win_amd64.whl", hash = "sha256:7313e4acebb9ae88dbde14a8a177467a7625b7449306c03a3f9f309b30e163d0"}, - {file = "SQLAlchemy-1.4.44-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:17aee7bfcef7bf0dea92f10e5dfdd67418dcf6fe0759f520e168b605855c003e"}, - {file = "SQLAlchemy-1.4.44-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9470633395e5f24d6741b4c8a6e905bce405a28cf417bba4ccbaadf3dab0111d"}, - {file = "SQLAlchemy-1.4.44-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:393f51a09778e8984d735b59a810731394308b4038acdb1635397c2865dae2b6"}, - {file = "SQLAlchemy-1.4.44-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c7e3b9e01fdbe1ce3a165cc7e1ff52b24813ee79c6df6dee0d1e13888a97817e"}, - {file = "SQLAlchemy-1.4.44-cp36-cp36m-win32.whl", hash = "sha256:6a06c2506c41926d2769f7968759995f2505e31c5b5a0821e43ca5a3ddb0e8ae"}, - {file = "SQLAlchemy-1.4.44-cp36-cp36m-win_amd64.whl", hash = "sha256:3ca21b35b714ce36f4b8d1ee8d15f149db8eb43a472cf71600bf18dae32286e7"}, - {file = "SQLAlchemy-1.4.44-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:3cbdbed8cdcae0f83640a9c44fa02b45a6c61e149c58d45a63c9581aba62850f"}, - {file = "SQLAlchemy-1.4.44-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a22208c1982f1fe2ae82e5e4c3d4a6f2445a7a0d65fb7983a3d7cbbe3983f5a4"}, - {file = "SQLAlchemy-1.4.44-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:d3b9ac11f36ab9a726097fba7c7f6384f0129aedb017f1d4d1d4fce9052a1320"}, - {file = "SQLAlchemy-1.4.44-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d654870a66027af3a26df1372cf7f002e161c6768ebe4c9c6fdc0da331cb5173"}, - {file = "SQLAlchemy-1.4.44-cp37-cp37m-win32.whl", hash = "sha256:0be9b479c5806cece01f1581726573a8d6515f8404e082c375b922c45cfc2a7b"}, - {file = "SQLAlchemy-1.4.44-cp37-cp37m-win_amd64.whl", hash = "sha256:3eba07f740488c3a125f17c092a81eeae24a6c7ec32ac9dbc52bf7afaf0c4f16"}, - {file = "SQLAlchemy-1.4.44-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:ad5f966623905ee33694680dda1b735544c99c7638f216045d21546d3d8c6f5b"}, - {file = "SQLAlchemy-1.4.44-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f68eab46649504eb95be36ca529aea16cd199f080726c28cbdbcbf23d20b2a2"}, - {file = "SQLAlchemy-1.4.44-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:21f3df74a0ab39e1255e94613556e33c1dc3b454059fe0b365ec3bbb9ed82e4a"}, - {file = "SQLAlchemy-1.4.44-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d8080bc51a775627865e0f1dbfc0040ff4ace685f187f6036837e1727ba2ed10"}, - {file = "SQLAlchemy-1.4.44-cp38-cp38-win32.whl", hash = "sha256:b6a337a2643a41476fb6262059b8740f4b9a2ec29bf00ffb18c18c080f6e0aed"}, - {file = "SQLAlchemy-1.4.44-cp38-cp38-win_amd64.whl", hash = "sha256:b737fbeb2f78926d1f59964feb287bbbd050e7904766f87c8ce5cfb86e6d840c"}, - {file = "SQLAlchemy-1.4.44-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:c9aa372b295a36771cffc226b6517df3011a7d146ac22d19fa6a75f1cdf9d7e6"}, - {file = "SQLAlchemy-1.4.44-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:237067ba0ef45a518b64606e1807f7229969ad568288b110ed5f0ca714a3ed3a"}, - {file = "SQLAlchemy-1.4.44-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6d7e1b28342b45f19e3dea7873a9479e4a57e15095a575afca902e517fb89652"}, - {file = "SQLAlchemy-1.4.44-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94c0093678001f5d79f2dcbf3104c54d6c89e41ab50d619494c503a4d3f1aef2"}, - {file = "SQLAlchemy-1.4.44-cp39-cp39-win32.whl", hash = "sha256:7cf7c7adbf4417e3f46fc5a2dbf8395a5a69698217337086888f79700a12e93a"}, - {file = "SQLAlchemy-1.4.44-cp39-cp39-win_amd64.whl", hash = "sha256:d3b6d4588994da73567bb00af9d7224a16c8027865a8aab53ae9be83f9b7cbd1"}, - {file = "SQLAlchemy-1.4.44.tar.gz", hash = "sha256:2dda5f96719ae89b3ec0f1b79698d86eb9aecb1d54e990abb3fdd92c04b46a90"}, -] -stack-data = [ - {file = "stack_data-0.6.1-py3-none-any.whl", hash = "sha256:960cb054d6a1b2fdd9cbd529e365b3c163e8dabf1272e02cfe36b58403cff5c6"}, - {file = "stack_data-0.6.1.tar.gz", hash = "sha256:6c9a10eb5f342415fe085db551d673955611afb821551f554d91772415464315"}, -] -starlette = [ - {file = "starlette-0.20.4-py3-none-any.whl", hash = "sha256:c0414d5a56297d37f3db96a84034d61ce29889b9eaccf65eb98a0b39441fcaa3"}, - {file = "starlette-0.20.4.tar.gz", hash = "sha256:42fcf3122f998fefce3e2c5ad7e5edbf0f02cf685d646a83a08d404726af5084"}, -] -text-unidecode = [ - {file = "text-unidecode-1.3.tar.gz", hash = "sha256:bad6603bb14d279193107714b288be206cac565dfa49aa5b105294dd5c4aab93"}, - {file = "text_unidecode-1.3-py2.py3-none-any.whl", hash = "sha256:1311f10e8b895935241623731c2ba64f4c455287888b18189350b67134a822e8"}, -] -tokenize-rt = [ - {file = "tokenize_rt-5.0.0-py2.py3-none-any.whl", hash = "sha256:c67772c662c6b3dc65edf66808577968fb10badfc2042e3027196bed4daf9e5a"}, - {file = "tokenize_rt-5.0.0.tar.gz", hash = "sha256:3160bc0c3e8491312d0485171dea861fc160a240f5f5766b72a1165408d10740"}, -] -tornado = [ - {file = "tornado-6.2-cp37-abi3-macosx_10_9_universal2.whl", hash = "sha256:20f638fd8cc85f3cbae3c732326e96addff0a15e22d80f049e00121651e82e72"}, - {file = "tornado-6.2-cp37-abi3-macosx_10_9_x86_64.whl", hash = "sha256:87dcafae3e884462f90c90ecc200defe5e580a7fbbb4365eda7c7c1eb809ebc9"}, - {file = "tornado-6.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba09ef14ca9893954244fd872798b4ccb2367c165946ce2dd7376aebdde8e3ac"}, - {file = "tornado-6.2-cp37-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b8150f721c101abdef99073bf66d3903e292d851bee51910839831caba341a75"}, - {file = "tornado-6.2-cp37-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d3a2f5999215a3a06a4fc218026cd84c61b8b2b40ac5296a6db1f1451ef04c1e"}, - {file = "tornado-6.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:5f8c52d219d4995388119af7ccaa0bcec289535747620116a58d830e7c25d8a8"}, - {file = "tornado-6.2-cp37-abi3-musllinux_1_1_i686.whl", hash = "sha256:6fdfabffd8dfcb6cf887428849d30cf19a3ea34c2c248461e1f7d718ad30b66b"}, - {file = "tornado-6.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:1d54d13ab8414ed44de07efecb97d4ef7c39f7438cf5e976ccd356bebb1b5fca"}, - {file = "tornado-6.2-cp37-abi3-win32.whl", hash = "sha256:5c87076709343557ef8032934ce5f637dbb552efa7b21d08e89ae7619ed0eb23"}, - {file = "tornado-6.2-cp37-abi3-win_amd64.whl", hash = "sha256:e5f923aa6a47e133d1cf87d60700889d7eae68988704e20c75fb2d65677a8e4b"}, - {file = "tornado-6.2.tar.gz", hash = "sha256:9b630419bde84ec666bfd7ea0a4cb2a8a651c2d5cccdbdd1972a0c859dfc3c13"}, -] -traitlets = [ - {file = "traitlets-5.5.0-py3-none-any.whl", hash = "sha256:1201b2c9f76097195989cdf7f65db9897593b0dfd69e4ac96016661bb6f0d30f"}, - {file = "traitlets-5.5.0.tar.gz", hash = "sha256:b122f9ff2f2f6c1709dab289a05555be011c87828e911c0cf4074b85cb780a79"}, -] -typing-extensions = [ - {file = "typing_extensions-4.4.0-py3-none-any.whl", hash = "sha256:16fa4864408f655d35ec496218b85f79b3437c829e93320c7c9215ccfd92489e"}, - {file = "typing_extensions-4.4.0.tar.gz", hash = "sha256:1511434bb92bf8dd198c12b1cc812e800d4181cfcb867674e0f8279cc93087aa"}, -] -ujson = [ - {file = "ujson-5.5.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ff4928dc1e9704b567171c16787238201fdbf023665573c12c02146fe1e02eec"}, - {file = "ujson-5.5.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1dc2f46c31ef22b0aaa28cd71be897bea271e700636658d573df9c43c49ebbd0"}, - {file = "ujson-5.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6019e3480d933d3698f2ecb4b46d64bfadd64e718f04fac36e681f3254b49a93"}, - {file = "ujson-5.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5179088ef6487c475604b7898731a6ddeeada7702cfb2162155b016703a8475"}, - {file = "ujson-5.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c04ae27e076d81a3839047d8eed57c1e17e361640616fd520d752375e3ba8f0c"}, - {file = "ujson-5.5.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:60a4b481978ea2aad8fe8af1ecc271624d01b3cf4b09e9b643dd2fe19c07634c"}, - {file = "ujson-5.5.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7a09d203983104918c62f2eef9406f24c355511f9217967df23e70fa7f5b54ff"}, - {file = "ujson-5.5.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b9812638d7aa8ecda2e8e1513fb4da999249603bffab7439a5f8f0bb362b0db"}, - {file = "ujson-5.5.0-cp310-cp310-win32.whl", hash = "sha256:33cd9084fefc74cbacf88c92fd260b61211e00bcde38d640c369e5dc34a2b4e1"}, - {file = "ujson-5.5.0-cp310-cp310-win_amd64.whl", hash = "sha256:765d46f3d5e7a1d48075035e2d1a9164f683e3fccde834ca04602e6c588835bc"}, - {file = "ujson-5.5.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:278aa9d7cb56435c96d19f5d702e026bcf69f824e24b41e9b52706abd3565837"}, - {file = "ujson-5.5.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9585892091ae86045135d6a6129a644142d6a51b23e1428bb5de6d10bc0ce0c7"}, - {file = "ujson-5.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cdc46859024501c20ab74ad542cdf2f08b94b5ce384f2f569483fa3ed926d04"}, - {file = "ujson-5.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5bea13c73f36c4346808df3fa806596163a7962b6d28001ca2a391cab856089"}, - {file = "ujson-5.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3f3f4240d99d55eb97cb012e9adf401f5ed9cd827af0341ac44603832202b0d2"}, - {file = "ujson-5.5.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d93940664a5ccfd79f72dcb939b0c31a3479889f14f0eb95ec52976f8c0cae7d"}, - {file = "ujson-5.5.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:880c84ce59f49776cf120f77e7ca04877c97c6887917078dbc369eb47004d7cf"}, - {file = "ujson-5.5.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:977bf5be704a88d46bf5b228df8b44521b1f3119d741062191608b3a6a38f224"}, - {file = "ujson-5.5.0-cp311-cp311-win32.whl", hash = "sha256:e0b36257dc90194784531c3b922d8d31fb2b4d8e5adfd27aff4eee7174176365"}, - {file = "ujson-5.5.0-cp311-cp311-win_amd64.whl", hash = "sha256:a34a5f034b339f69ef7f6a134c22d04b92e07b6ddc1dd65382e7e4ec65d6437d"}, - {file = "ujson-5.5.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:f26544bc10c83a2ff9aa2e093500c1b473f327faae31fb468d591e5823333376"}, - {file = "ujson-5.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fd797a4837ba10671954e7c09010cec7aca67e09d193f4920a16beea5f66f65"}, - {file = "ujson-5.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7d7cfac2547c93389fa303fc0c0eb6698825564e8389c41c9b60009c746207b6"}, - {file = "ujson-5.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4875cafc9a6482c04c7df52a725d1c41beb74913c0ff4ec8f189f1954a2afe9"}, - {file = "ujson-5.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0762a4fdf86e01f3f8d8b6b7158d01fdd870799ff3f402b676e358fcd879e7eb"}, - {file = "ujson-5.5.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:6c7ae6e0778ab9610f5e80e0595957d101ab8de18c32a8c053a19943ef4831d0"}, - {file = "ujson-5.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:94874584b733a18b310b0e954d53168e62cd4a0fd9db85b1903f0902a7eb33e8"}, - {file = "ujson-5.5.0-cp37-cp37m-win32.whl", hash = "sha256:3b74467564814fbce322427a5664e6bcc7dae6dbc8acbef76300fe43ca4072ab"}, - {file = "ujson-5.5.0-cp37-cp37m-win_amd64.whl", hash = "sha256:59cdcd934385f36e8bd76aedc234371cc75c848d95bdce804ac8aa8744cfeffa"}, - {file = "ujson-5.5.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:2e506ecf89b6b9d304362ccef770831ec242a52c89dab1b4aabf1ab0eb1d5ed6"}, - {file = "ujson-5.5.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:10095160dbe6bba8059ad6677a01da251431f4c68041bf796dcac0956b34f8f7"}, - {file = "ujson-5.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5035bb997d163f346c22abcec75190e7e756a5349e7c708bd3d5fd7066a9a854"}, - {file = "ujson-5.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a7d12f2d2df195c8c4e49d2cdbad640353a856c62ca2c624d8b47aa33b65a2a2"}, - {file = "ujson-5.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1a485117f97312bef45f5d79d2ff97eff4da503b8a04f3691f59d31141686459"}, - {file = "ujson-5.5.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:21678d7e068707e4d54bdfeb8c250ebc548b51e499aed778b22112ca31a79669"}, - {file = "ujson-5.5.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5a9b1320d8363a42d857fae8065a2174d38217cdd58cd8dc4f48d54e0591271e"}, - {file = "ujson-5.5.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:701e81e047f5c0cffd4ac828efca68b0bd270c616654966a051e9a5f836b385e"}, - {file = "ujson-5.5.0-cp38-cp38-win32.whl", hash = "sha256:1cef44ea4973344baed3d50a5da4a8843de3a6af7dea7fadf0a594e53ce5892f"}, - {file = "ujson-5.5.0-cp38-cp38-win_amd64.whl", hash = "sha256:e510d288e613d6927796dfb728e13e4530fc83b9ccac5888a21f7860486eab21"}, - {file = "ujson-5.5.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e1135264bcd40965cd35b0869e36952f54825024befdc7a923df9a7d83cfd800"}, - {file = "ujson-5.5.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:703fd69d9cb21d6ec2086789df9be2cf8140a76ff127050c24007ea8940dcd3b"}, - {file = "ujson-5.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:849f2ff40264152f25589cb48ddb4a43d14db811f841ec73989bfc0c8c4853fa"}, - {file = "ujson-5.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf416a93e1331820c77e3429df26946dbd4fe105e9b487cd2d1b7298b75784a8"}, - {file = "ujson-5.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:593a0f6fb0e186c5ba65465ed6f6215a30d1efa898c25e74de1c8577a1bff6d0"}, - {file = "ujson-5.5.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:7c20cc83b0df47129ec6ed8a47fa7dcfc309c5bad029464004162738502568bb"}, - {file = "ujson-5.5.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6f83be8257b2f2dd6dea5ee62cd28db90584da7a7af1fba77a2102fc7943638a"}, - {file = "ujson-5.5.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8141f654432cf75144d6103bfac2286b8adf23467201590b173a74535d6be22d"}, - {file = "ujson-5.5.0-cp39-cp39-win32.whl", hash = "sha256:3fe1aea596f9539fc20cd9e52f098c842afc090168824fd4ca9744fe13151a03"}, - {file = "ujson-5.5.0-cp39-cp39-win_amd64.whl", hash = "sha256:a655f7b755cfc5c07f2116b6dcf0ba148c89adef9a6d40c1b0f1fada878c4345"}, - {file = "ujson-5.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f19f11055ba2961eb39bdb1ff15763a53fca4fa0b5b624da3c7a528e83cdd09c"}, - {file = "ujson-5.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7d87c817b292efb748f1974f37e8bb8a8772ef92f05f84e507159360814bcc3f"}, - {file = "ujson-5.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f9681ec4c60d0da590552427d770636d9079038c30b265f507ccde23caa7823"}, - {file = "ujson-5.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f63d1ae1ca17bb2c847e298c7bcf084a73d56d434b4c50509fb93a4b4300b0b2"}, - {file = "ujson-5.5.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:95603eff711b8f3b9596e1c961dbeb745a792ba1904141612f194e07edd71e5f"}, - {file = "ujson-5.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2d90414e3b4b44b39825049185959488e084ea7fcaf6124afd5c00893938b09d"}, - {file = "ujson-5.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7471d4486f23518cff343f1eec6c68d1b977ed74c3e6cc3e1ac896b9b7d68645"}, - {file = "ujson-5.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee9a2c9a4b2421e77f8fe33ed0621dea03c66c710707553020b1e32f3afb6240"}, - {file = "ujson-5.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a8cb3c8637006c5bd8237ebb5992a76ba06e39988ad5cff2096227443e8fd6a"}, - {file = "ujson-5.5.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d9c89c521dc90c7564358e525f849b93ad1d710553c1491f66b8cce8113bc901"}, - {file = "ujson-5.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2ab011e3556a9a1d9461bd686870c527327765ed02fe53550531d6609a8a33ff"}, - {file = "ujson-5.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:603607f56a0ee84d9cd2c7e9b1d29b18a70684b94ee34f07b9ffe8dc9c8a9f81"}, - {file = "ujson-5.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d75bef34e69e7effb7b4849e3f830e3174d2cc6ec7273503fdde111c222dc9b3"}, - {file = "ujson-5.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abfe83e082c9208891e2158c1b5044a650ecec408b823bf6bf16cd7f8085cafa"}, - {file = "ujson-5.5.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:4ef4ab8352861b99bd7fedb1fc6df3ea7f7d5216c789ba6d859e4ea06f1a4c45"}, - {file = "ujson-5.5.0.tar.gz", hash = "sha256:b25077a971c7da47bd6846a912a747f6963776d90720c88603b1b55d81790780"}, -] -urllib3 = [ - {file = "urllib3-1.26.12-py2.py3-none-any.whl", hash = "sha256:b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997"}, - {file = "urllib3-1.26.12.tar.gz", hash = "sha256:3fa96cf423e6987997fc326ae8df396db2a8b7c667747d47ddd8ecba91f4a74e"}, -] -uvicorn = [ - {file = "uvicorn-0.18.3-py3-none-any.whl", hash = "sha256:0abd429ebb41e604ed8d2be6c60530de3408f250e8d2d84967d85ba9e86fe3af"}, - {file = "uvicorn-0.18.3.tar.gz", hash = "sha256:9a66e7c42a2a95222f76ec24a4b754c158261c4696e683b9dadc72b590e0311b"}, -] -uvloop = [ +files = [ {file = "uvloop-0.17.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ce9f61938d7155f79d3cb2ffa663147d4a76d16e08f65e2c66b77bd41b356718"}, {file = "uvloop-0.17.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:68532f4349fd3900b839f588972b3392ee56042e440dd5873dfbbcd2cc67617c"}, {file = "uvloop-0.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0949caf774b9fcefc7c5756bacbbbd3fc4c05a6b7eebc7c7ad6f825b23998d6d"}, @@ -2042,98 +3346,338 @@ uvloop = [ {file = "uvloop-0.17.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:30babd84706115626ea78ea5dbc7dd8d0d01a2e9f9b306d24ca4ed5796c66ded"}, {file = "uvloop-0.17.0.tar.gz", hash = "sha256:0ddf6baf9cf11a1a22c71487f39f15b2cf78eb5bde7e5b45fbb99e8a9d91b9e1"}, ] -watchfiles = [ - {file = "watchfiles-0.18.1-cp37-abi3-macosx_10_7_x86_64.whl", hash = "sha256:9891d3c94272108bcecf5597a592e61105279def1313521e637f2d5acbe08bc9"}, - {file = "watchfiles-0.18.1-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:7102342d60207fa635e24c02a51c6628bf0472e5fef067f78a612386840407fc"}, - {file = "watchfiles-0.18.1-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:00ea0081eca5e8e695cffbc3a726bb90da77f4e3f78ce29b86f0d95db4e70ef7"}, - {file = "watchfiles-0.18.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b8e6db99e49cd7125d8a4c9d33c0735eea7b75a942c6ad68b75be3e91c242fb"}, - {file = "watchfiles-0.18.1-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bc7c726855f04f22ac79131b51bf0c9f728cb2117419ed830a43828b2c4a5fcb"}, - {file = "watchfiles-0.18.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cbaff354d12235002e62d9d3fa8bcf326a8490c1179aa5c17195a300a9e5952f"}, - {file = "watchfiles-0.18.1-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:888db233e06907c555eccd10da99b9cd5ed45deca47e41766954292dc9f7b198"}, - {file = "watchfiles-0.18.1-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:dde79930d1b28f15994ad6613aa2865fc7a403d2bb14585a8714a53233b15717"}, - {file = "watchfiles-0.18.1-cp37-abi3-win32.whl", hash = "sha256:e2b2bdd26bf8d6ed90763e6020b475f7634f919dbd1730ea1b6f8cb88e21de5d"}, - {file = "watchfiles-0.18.1-cp37-abi3-win_amd64.whl", hash = "sha256:c541e0f2c3e95e83e4f84561c893284ba984e9d0025352057396d96dceb09f44"}, - {file = "watchfiles-0.18.1-cp37-abi3-win_arm64.whl", hash = "sha256:9a26272ef3e930330fc0c2c148cc29706cc2c40d25760c7ccea8d768a8feef8b"}, - {file = "watchfiles-0.18.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:9fb12a5e2b42e0b53769455ff93546e6bc9ab14007fbd436978d827a95ca5bd1"}, - {file = "watchfiles-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:548d6b42303d40264118178053c78820533b683b20dfbb254a8706ca48467357"}, - {file = "watchfiles-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e0d8fdfebc50ac7569358f5c75f2b98bb473befccf9498cf23b3e39993bb45a"}, - {file = "watchfiles-0.18.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0f9a22fff1745e2bb930b1e971c4c5b67ea3b38ae17a6adb9019371f80961219"}, - {file = "watchfiles-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b02e7fa03cd4059dd61ff0600080a5a9e7a893a85cb8e5178943533656eec65e"}, - {file = "watchfiles-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a868ce2c7565137f852bd4c863a164dc81306cae7378dbdbe4e2aca51ddb8857"}, - {file = "watchfiles-0.18.1.tar.gz", hash = "sha256:4ec0134a5e31797eb3c6c624dbe9354f2a8ee9c720e0b46fc5b7bab472b7c6d4"}, -] -wcwidth = [ - {file = "wcwidth-0.2.5-py2.py3-none-any.whl", hash = "sha256:beb4802a9cebb9144e99086eff703a642a13d6a0052920003a230f3294bbe784"}, - {file = "wcwidth-0.2.5.tar.gz", hash = "sha256:c4d647b99872929fdb7bdcaa4fbe7f01413ed3d98077df798530e5b04f116c83"}, -] -websockets = [ - {file = "websockets-10.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d58804e996d7d2307173d56c297cf7bc132c52df27a3efaac5e8d43e36c21c48"}, - {file = "websockets-10.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:bc0b82d728fe21a0d03e65f81980abbbcb13b5387f733a1a870672c5be26edab"}, - {file = "websockets-10.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ba089c499e1f4155d2a3c2a05d2878a3428cf321c848f2b5a45ce55f0d7d310c"}, - {file = "websockets-10.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33d69ca7612f0ddff3316b0c7b33ca180d464ecac2d115805c044bf0a3b0d032"}, - {file = "websockets-10.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62e627f6b6d4aed919a2052efc408da7a545c606268d5ab5bfab4432734b82b4"}, - {file = "websockets-10.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38ea7b82bfcae927eeffc55d2ffa31665dc7fec7b8dc654506b8e5a518eb4d50"}, - {file = "websockets-10.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e0cb5cc6ece6ffa75baccfd5c02cffe776f3f5c8bf486811f9d3ea3453676ce8"}, - {file = "websockets-10.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:ae5e95cfb53ab1da62185e23b3130e11d64431179debac6dc3c6acf08760e9b1"}, - {file = "websockets-10.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7c584f366f46ba667cfa66020344886cf47088e79c9b9d39c84ce9ea98aaa331"}, - {file = "websockets-10.4-cp310-cp310-win32.whl", hash = "sha256:b029fb2032ae4724d8ae8d4f6b363f2cc39e4c7b12454df8df7f0f563ed3e61a"}, - {file = "websockets-10.4-cp310-cp310-win_amd64.whl", hash = "sha256:8dc96f64ae43dde92530775e9cb169979f414dcf5cff670455d81a6823b42089"}, - {file = "websockets-10.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:47a2964021f2110116cc1125b3e6d87ab5ad16dea161949e7244ec583b905bb4"}, - {file = "websockets-10.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:e789376b52c295c4946403bd0efecf27ab98f05319df4583d3c48e43c7342c2f"}, - {file = "websockets-10.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7d3f0b61c45c3fa9a349cf484962c559a8a1d80dae6977276df8fd1fa5e3cb8c"}, - {file = "websockets-10.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f55b5905705725af31ccef50e55391621532cd64fbf0bc6f4bac935f0fccec46"}, - {file = "websockets-10.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:00c870522cdb69cd625b93f002961ffb0c095394f06ba8c48f17eef7c1541f96"}, - {file = "websockets-10.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f38706e0b15d3c20ef6259fd4bc1700cd133b06c3c1bb108ffe3f8947be15fa"}, - {file = "websockets-10.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f2c38d588887a609191d30e902df2a32711f708abfd85d318ca9b367258cfd0c"}, - {file = "websockets-10.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:fe10ddc59b304cb19a1bdf5bd0a7719cbbc9fbdd57ac80ed436b709fcf889106"}, - {file = "websockets-10.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:90fcf8929836d4a0e964d799a58823547df5a5e9afa83081761630553be731f9"}, - {file = "websockets-10.4-cp311-cp311-win32.whl", hash = "sha256:b9968694c5f467bf67ef97ae7ad4d56d14be2751000c1207d31bf3bb8860bae8"}, - {file = "websockets-10.4-cp311-cp311-win_amd64.whl", hash = "sha256:a7a240d7a74bf8d5cb3bfe6be7f21697a28ec4b1a437607bae08ac7acf5b4882"}, - {file = "websockets-10.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:74de2b894b47f1d21cbd0b37a5e2b2392ad95d17ae983e64727e18eb281fe7cb"}, - {file = "websockets-10.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3a686ecb4aa0d64ae60c9c9f1a7d5d46cab9bfb5d91a2d303d00e2cd4c4c5cc"}, - {file = "websockets-10.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b0d15c968ea7a65211e084f523151dbf8ae44634de03c801b8bd070b74e85033"}, - {file = "websockets-10.4-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00213676a2e46b6ebf6045bc11d0f529d9120baa6f58d122b4021ad92adabd41"}, - {file = "websockets-10.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:e23173580d740bf8822fd0379e4bf30aa1d5a92a4f252d34e893070c081050df"}, - {file = "websockets-10.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:dd500e0a5e11969cdd3320935ca2ff1e936f2358f9c2e61f100a1660933320ea"}, - {file = "websockets-10.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4239b6027e3d66a89446908ff3027d2737afc1a375f8fd3eea630a4842ec9a0c"}, - {file = "websockets-10.4-cp37-cp37m-win32.whl", hash = "sha256:8a5cc00546e0a701da4639aa0bbcb0ae2bb678c87f46da01ac2d789e1f2d2038"}, - {file = "websockets-10.4-cp37-cp37m-win_amd64.whl", hash = "sha256:a9f9a735deaf9a0cadc2d8c50d1a5bcdbae8b6e539c6e08237bc4082d7c13f28"}, - {file = "websockets-10.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5c1289596042fad2cdceb05e1ebf7aadf9995c928e0da2b7a4e99494953b1b94"}, - {file = "websockets-10.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0cff816f51fb33c26d6e2b16b5c7d48eaa31dae5488ace6aae468b361f422b63"}, - {file = "websockets-10.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:dd9becd5fe29773d140d68d607d66a38f60e31b86df75332703757ee645b6faf"}, - {file = "websockets-10.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45ec8e75b7dbc9539cbfafa570742fe4f676eb8b0d3694b67dabe2f2ceed8aa6"}, - {file = "websockets-10.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f72e5cd0f18f262f5da20efa9e241699e0cf3a766317a17392550c9ad7b37d8"}, - {file = "websockets-10.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:185929b4808b36a79c65b7865783b87b6841e852ef5407a2fb0c03381092fa3b"}, - {file = "websockets-10.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7d27a7e34c313b3a7f91adcd05134315002aaf8540d7b4f90336beafaea6217c"}, - {file = "websockets-10.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:884be66c76a444c59f801ac13f40c76f176f1bfa815ef5b8ed44321e74f1600b"}, - {file = "websockets-10.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:931c039af54fc195fe6ad536fde4b0de04da9d5916e78e55405436348cfb0e56"}, - {file = "websockets-10.4-cp38-cp38-win32.whl", hash = "sha256:db3c336f9eda2532ec0fd8ea49fef7a8df8f6c804cdf4f39e5c5c0d4a4ad9a7a"}, - {file = "websockets-10.4-cp38-cp38-win_amd64.whl", hash = "sha256:48c08473563323f9c9debac781ecf66f94ad5a3680a38fe84dee5388cf5acaf6"}, - {file = "websockets-10.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:40e826de3085721dabc7cf9bfd41682dadc02286d8cf149b3ad05bff89311e4f"}, - {file = "websockets-10.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:56029457f219ade1f2fc12a6504ea61e14ee227a815531f9738e41203a429112"}, - {file = "websockets-10.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f5fc088b7a32f244c519a048c170f14cf2251b849ef0e20cbbb0fdf0fdaf556f"}, - {file = "websockets-10.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fc8709c00704194213d45e455adc106ff9e87658297f72d544220e32029cd3d"}, - {file = "websockets-10.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0154f7691e4fe6c2b2bc275b5701e8b158dae92a1ab229e2b940efe11905dff4"}, - {file = "websockets-10.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c6d2264f485f0b53adf22697ac11e261ce84805c232ed5dbe6b1bcb84b00ff0"}, - {file = "websockets-10.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9bc42e8402dc5e9905fb8b9649f57efcb2056693b7e88faa8fb029256ba9c68c"}, - {file = "websockets-10.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:edc344de4dac1d89300a053ac973299e82d3db56330f3494905643bb68801269"}, - {file = "websockets-10.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:84bc2a7d075f32f6ed98652db3a680a17a4edb21ca7f80fe42e38753a58ee02b"}, - {file = "websockets-10.4-cp39-cp39-win32.whl", hash = "sha256:c94ae4faf2d09f7c81847c63843f84fe47bf6253c9d60b20f25edfd30fb12588"}, - {file = "websockets-10.4-cp39-cp39-win_amd64.whl", hash = "sha256:bbccd847aa0c3a69b5f691a84d2341a4f8a629c6922558f2a70611305f902d74"}, - {file = "websockets-10.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:82ff5e1cae4e855147fd57a2863376ed7454134c2bf49ec604dfe71e446e2193"}, - {file = "websockets-10.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d210abe51b5da0ffdbf7b43eed0cfdff8a55a1ab17abbec4301c9ff077dd0342"}, - {file = "websockets-10.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:942de28af58f352a6f588bc72490ae0f4ccd6dfc2bd3de5945b882a078e4e179"}, - {file = "websockets-10.4-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c9b27d6c1c6cd53dc93614967e9ce00ae7f864a2d9f99fe5ed86706e1ecbf485"}, - {file = "websockets-10.4-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:3d3cac3e32b2c8414f4f87c1b2ab686fa6284a980ba283617404377cd448f631"}, - {file = "websockets-10.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:da39dd03d130162deb63da51f6e66ed73032ae62e74aaccc4236e30edccddbb0"}, - {file = "websockets-10.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:389f8dbb5c489e305fb113ca1b6bdcdaa130923f77485db5b189de343a179393"}, - {file = "websockets-10.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09a1814bb15eff7069e51fed0826df0bc0702652b5cb8f87697d469d79c23576"}, - {file = "websockets-10.4-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ff64a1d38d156d429404aaa84b27305e957fd10c30e5880d1765c9480bea490f"}, - {file = "websockets-10.4-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:b343f521b047493dc4022dd338fc6db9d9282658862756b4f6fd0e996c1380e1"}, - {file = "websockets-10.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:932af322458da7e4e35df32f050389e13d3d96b09d274b22a7aa1808f292fee4"}, - {file = "websockets-10.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d6a4162139374a49eb18ef5b2f4da1dd95c994588f5033d64e0bbfda4b6b6fcf"}, - {file = "websockets-10.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c57e4c1349fbe0e446c9fa7b19ed2f8a4417233b6984277cce392819123142d3"}, - {file = "websockets-10.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b627c266f295de9dea86bd1112ed3d5fafb69a348af30a2422e16590a8ecba13"}, - {file = "websockets-10.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:05a7233089f8bd355e8cbe127c2e8ca0b4ea55467861906b80d2ebc7db4d6b72"}, - {file = "websockets-10.4.tar.gz", hash = "sha256:eef610b23933c54d5d921c92578ae5f89813438fded840c2e9809d378dc765d3"}, + +[package.extras] +dev = ["Cython (>=0.29.32,<0.30.0)", "Sphinx (>=4.1.2,<4.2.0)", "aiohttp", "flake8 (>=3.9.2,<3.10.0)", "mypy (>=0.800)", "psutil", "pyOpenSSL (>=22.0.0,<22.1.0)", "pycodestyle (>=2.7.0,<2.8.0)", "pytest (>=3.6.0)", "sphinx-rtd-theme (>=0.5.2,<0.6.0)", "sphinxcontrib-asyncio (>=0.3.0,<0.4.0)"] +docs = ["Sphinx (>=4.1.2,<4.2.0)", "sphinx-rtd-theme (>=0.5.2,<0.6.0)", "sphinxcontrib-asyncio (>=0.3.0,<0.4.0)"] +test = ["Cython (>=0.29.32,<0.30.0)", "aiohttp", "flake8 (>=3.9.2,<3.10.0)", "mypy (>=0.800)", "psutil", "pyOpenSSL (>=22.0.0,<22.1.0)", "pycodestyle (>=2.7.0,<2.8.0)"] + +[[package]] +name = "watchfiles" +version = "0.20.0" +description = "Simple, modern and high performance file watching and code reload in python." +optional = false +python-versions = ">=3.7" +files = [ + {file = "watchfiles-0.20.0-cp37-abi3-macosx_10_7_x86_64.whl", hash = "sha256:3796312bd3587e14926013612b23066912cf45a14af71cf2b20db1c12dadf4e9"}, + {file = "watchfiles-0.20.0-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:d0002d81c89a662b595645fb684a371b98ff90a9c7d8f8630c82f0fde8310458"}, + {file = "watchfiles-0.20.0-cp37-abi3-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:570848706440373b4cd8017f3e850ae17f76dbdf1e9045fc79023b11e1afe490"}, + {file = "watchfiles-0.20.0-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a0351d20d03c6f7ad6b2e8a226a5efafb924c7755ee1e34f04c77c3682417fa"}, + {file = "watchfiles-0.20.0-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:007dcc4a401093010b389c044e81172c8a2520dba257c88f8828b3d460c6bb38"}, + {file = "watchfiles-0.20.0-cp37-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0d82dbc1832da83e441d112069833eedd4cf583d983fb8dd666fbefbea9d99c0"}, + {file = "watchfiles-0.20.0-cp37-abi3-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:99f4c65fd2fce61a571b2a6fcf747d6868db0bef8a934e8ca235cc8533944d95"}, + {file = "watchfiles-0.20.0-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5392dd327a05f538c56edb1c6ebba6af91afc81b40822452342f6da54907bbdf"}, + {file = "watchfiles-0.20.0-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:08dc702529bb06a2b23859110c214db245455532da5eaea602921687cfcd23db"}, + {file = "watchfiles-0.20.0-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:7d4e66a857621584869cfbad87039e65dadd7119f0d9bb9dbc957e089e32c164"}, + {file = "watchfiles-0.20.0-cp37-abi3-win32.whl", hash = "sha256:a03d1e6feb7966b417f43c3e3783188167fd69c2063e86bad31e62c4ea794cc5"}, + {file = "watchfiles-0.20.0-cp37-abi3-win_amd64.whl", hash = "sha256:eccc8942bcdc7d638a01435d915b913255bbd66f018f1af051cd8afddb339ea3"}, + {file = "watchfiles-0.20.0-cp37-abi3-win_arm64.whl", hash = "sha256:b17d4176c49d207865630da5b59a91779468dd3e08692fe943064da260de2c7c"}, + {file = "watchfiles-0.20.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:d97db179f7566dcf145c5179ddb2ae2a4450e3a634eb864b09ea04e68c252e8e"}, + {file = "watchfiles-0.20.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:835df2da7a5df5464c4a23b2d963e1a9d35afa422c83bf4ff4380b3114603644"}, + {file = "watchfiles-0.20.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:608cd94a8767f49521901aff9ae0c92cc8f5a24d528db7d6b0295290f9d41193"}, + {file = "watchfiles-0.20.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89d1de8218874925bce7bb2ae9657efc504411528930d7a83f98b1749864f2ef"}, + {file = "watchfiles-0.20.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:13f995d5152a8ba4ed7c2bbbaeee4e11a5944defc7cacd0ccb4dcbdcfd78029a"}, + {file = "watchfiles-0.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:9b5c8d3be7b502f8c43a33c63166ada8828dbb0c6d49c8f9ce990a96de2f5a49"}, + {file = "watchfiles-0.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e43af4464daa08723c04b43cf978ab86cc55c684c16172622bdac64b34e36af0"}, + {file = "watchfiles-0.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87d9e1f75c4f86c93d73b5bd1ebe667558357548f11b4f8af4e0e272f79413ce"}, + {file = "watchfiles-0.20.0.tar.gz", hash = "sha256:728575b6b94c90dd531514677201e8851708e6e4b5fe7028ac506a200b622019"}, +] + +[package.dependencies] +anyio = ">=3.0.0" + +[[package]] +name = "wcwidth" +version = "0.2.6" +description = "Measures the displayed width of unicode strings in a terminal" +optional = false +python-versions = "*" +files = [ + {file = "wcwidth-0.2.6-py2.py3-none-any.whl", hash = "sha256:795b138f6875577cd91bba52baf9e445cd5118fd32723b460e30a0af30ea230e"}, + {file = "wcwidth-0.2.6.tar.gz", hash = "sha256:a5220780a404dbe3353789870978e472cfe477761f06ee55077256e509b156d0"}, +] + +[[package]] +name = "websockets" +version = "11.0.3" +description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" +optional = false +python-versions = ">=3.7" +files = [ + {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3ccc8a0c387629aec40f2fc9fdcb4b9d5431954f934da3eaf16cdc94f67dbfac"}, + {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d67ac60a307f760c6e65dad586f556dde58e683fab03323221a4e530ead6f74d"}, + {file = "websockets-11.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:84d27a4832cc1a0ee07cdcf2b0629a8a72db73f4cf6de6f0904f6661227f256f"}, + {file = "websockets-11.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffd7dcaf744f25f82190856bc26ed81721508fc5cbf2a330751e135ff1283564"}, + {file = "websockets-11.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7622a89d696fc87af8e8d280d9b421db5133ef5b29d3f7a1ce9f1a7bf7fcfa11"}, + {file = "websockets-11.0.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bceab846bac555aff6427d060f2fcfff71042dba6f5fca7dc4f75cac815e57ca"}, + {file = "websockets-11.0.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:54c6e5b3d3a8936a4ab6870d46bdd6ec500ad62bde9e44462c32d18f1e9a8e54"}, + {file = "websockets-11.0.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:41f696ba95cd92dc047e46b41b26dd24518384749ed0d99bea0a941ca87404c4"}, + {file = "websockets-11.0.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:86d2a77fd490ae3ff6fae1c6ceaecad063d3cc2320b44377efdde79880e11526"}, + {file = "websockets-11.0.3-cp310-cp310-win32.whl", hash = "sha256:2d903ad4419f5b472de90cd2d40384573b25da71e33519a67797de17ef849b69"}, + {file = "websockets-11.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:1d2256283fa4b7f4c7d7d3e84dc2ece74d341bce57d5b9bf385df109c2a1a82f"}, + {file = "websockets-11.0.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e848f46a58b9fcf3d06061d17be388caf70ea5b8cc3466251963c8345e13f7eb"}, + {file = "websockets-11.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aa5003845cdd21ac0dc6c9bf661c5beddd01116f6eb9eb3c8e272353d45b3288"}, + {file = "websockets-11.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b58cbf0697721120866820b89f93659abc31c1e876bf20d0b3d03cef14faf84d"}, + {file = "websockets-11.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:660e2d9068d2bedc0912af508f30bbeb505bbbf9774d98def45f68278cea20d3"}, + {file = "websockets-11.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c1f0524f203e3bd35149f12157438f406eff2e4fb30f71221c8a5eceb3617b6b"}, + {file = "websockets-11.0.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:def07915168ac8f7853812cc593c71185a16216e9e4fa886358a17ed0fd9fcf6"}, + {file = "websockets-11.0.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b30c6590146e53149f04e85a6e4fcae068df4289e31e4aee1fdf56a0dead8f97"}, + {file = "websockets-11.0.3-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:619d9f06372b3a42bc29d0cd0354c9bb9fb39c2cbc1a9c5025b4538738dbffaf"}, + {file = "websockets-11.0.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:01f5567d9cf6f502d655151645d4e8b72b453413d3819d2b6f1185abc23e82dd"}, + {file = "websockets-11.0.3-cp311-cp311-win32.whl", hash = "sha256:e1459677e5d12be8bbc7584c35b992eea142911a6236a3278b9b5ce3326f282c"}, + {file = "websockets-11.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:e7837cb169eca3b3ae94cc5787c4fed99eef74c0ab9506756eea335e0d6f3ed8"}, + {file = "websockets-11.0.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:9f59a3c656fef341a99e3d63189852be7084c0e54b75734cde571182c087b152"}, + {file = "websockets-11.0.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2529338a6ff0eb0b50c7be33dc3d0e456381157a31eefc561771ee431134a97f"}, + {file = "websockets-11.0.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34fd59a4ac42dff6d4681d8843217137f6bc85ed29722f2f7222bd619d15e95b"}, + {file = "websockets-11.0.3-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:332d126167ddddec94597c2365537baf9ff62dfcc9db4266f263d455f2f031cb"}, + {file = "websockets-11.0.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:6505c1b31274723ccaf5f515c1824a4ad2f0d191cec942666b3d0f3aa4cb4007"}, + {file = "websockets-11.0.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f467ba0050b7de85016b43f5a22b46383ef004c4f672148a8abf32bc999a87f0"}, + {file = "websockets-11.0.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:9d9acd80072abcc98bd2c86c3c9cd4ac2347b5a5a0cae7ed5c0ee5675f86d9af"}, + {file = "websockets-11.0.3-cp37-cp37m-win32.whl", hash = "sha256:e590228200fcfc7e9109509e4d9125eace2042fd52b595dd22bbc34bb282307f"}, + {file = "websockets-11.0.3-cp37-cp37m-win_amd64.whl", hash = "sha256:b16fff62b45eccb9c7abb18e60e7e446998093cdcb50fed33134b9b6878836de"}, + {file = "websockets-11.0.3-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fb06eea71a00a7af0ae6aefbb932fb8a7df3cb390cc217d51a9ad7343de1b8d0"}, + {file = "websockets-11.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8a34e13a62a59c871064dfd8ffb150867e54291e46d4a7cf11d02c94a5275bae"}, + {file = "websockets-11.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4841ed00f1026dfbced6fca7d963c4e7043aa832648671b5138008dc5a8f6d99"}, + {file = "websockets-11.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a073fc9ab1c8aff37c99f11f1641e16da517770e31a37265d2755282a5d28aa"}, + {file = "websockets-11.0.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:68b977f21ce443d6d378dbd5ca38621755f2063d6fdb3335bda981d552cfff86"}, + {file = "websockets-11.0.3-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e1a99a7a71631f0efe727c10edfba09ea6bee4166a6f9c19aafb6c0b5917d09c"}, + {file = "websockets-11.0.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:bee9fcb41db2a23bed96c6b6ead6489702c12334ea20a297aa095ce6d31370d0"}, + {file = "websockets-11.0.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4b253869ea05a5a073ebfdcb5cb3b0266a57c3764cf6fe114e4cd90f4bfa5f5e"}, + {file = "websockets-11.0.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:1553cb82942b2a74dd9b15a018dce645d4e68674de2ca31ff13ebc2d9f283788"}, + {file = "websockets-11.0.3-cp38-cp38-win32.whl", hash = "sha256:f61bdb1df43dc9c131791fbc2355535f9024b9a04398d3bd0684fc16ab07df74"}, + {file = "websockets-11.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:03aae4edc0b1c68498f41a6772d80ac7c1e33c06c6ffa2ac1c27a07653e79d6f"}, + {file = "websockets-11.0.3-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:777354ee16f02f643a4c7f2b3eff8027a33c9861edc691a2003531f5da4f6bc8"}, + {file = "websockets-11.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8c82f11964f010053e13daafdc7154ce7385ecc538989a354ccc7067fd7028fd"}, + {file = "websockets-11.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3580dd9c1ad0701169e4d6fc41e878ffe05e6bdcaf3c412f9d559389d0c9e016"}, + {file = "websockets-11.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f1a3f10f836fab6ca6efa97bb952300b20ae56b409414ca85bff2ad241d2a61"}, + {file = "websockets-11.0.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:df41b9bc27c2c25b486bae7cf42fccdc52ff181c8c387bfd026624a491c2671b"}, + {file = "websockets-11.0.3-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:279e5de4671e79a9ac877427f4ac4ce93751b8823f276b681d04b2156713b9dd"}, + {file = "websockets-11.0.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1fdf26fa8a6a592f8f9235285b8affa72748dc12e964a5518c6c5e8f916716f7"}, + {file = "websockets-11.0.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:69269f3a0b472e91125b503d3c0b3566bda26da0a3261c49f0027eb6075086d1"}, + {file = "websockets-11.0.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:97b52894d948d2f6ea480171a27122d77af14ced35f62e5c892ca2fae9344311"}, + {file = "websockets-11.0.3-cp39-cp39-win32.whl", hash = "sha256:c7f3cb904cce8e1be667c7e6fef4516b98d1a6a0635a58a57528d577ac18a128"}, + {file = "websockets-11.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:c792ea4eabc0159535608fc5658a74d1a81020eb35195dd63214dcf07556f67e"}, + {file = "websockets-11.0.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f2e58f2c36cc52d41f2659e4c0cbf7353e28c8c9e63e30d8c6d3494dc9fdedcf"}, + {file = "websockets-11.0.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:de36fe9c02995c7e6ae6efe2e205816f5f00c22fd1fbf343d4d18c3d5ceac2f5"}, + {file = "websockets-11.0.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0ac56b661e60edd453585f4bd68eb6a29ae25b5184fd5ba51e97652580458998"}, + {file = "websockets-11.0.3-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e052b8467dd07d4943936009f46ae5ce7b908ddcac3fda581656b1b19c083d9b"}, + {file = "websockets-11.0.3-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:42cc5452a54a8e46a032521d7365da775823e21bfba2895fb7b77633cce031bb"}, + {file = "websockets-11.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e6316827e3e79b7b8e7d8e3b08f4e331af91a48e794d5d8b099928b6f0b85f20"}, + {file = "websockets-11.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8531fdcad636d82c517b26a448dcfe62f720e1922b33c81ce695d0edb91eb931"}, + {file = "websockets-11.0.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c114e8da9b475739dde229fd3bc6b05a6537a88a578358bc8eb29b4030fac9c9"}, + {file = "websockets-11.0.3-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e063b1865974611313a3849d43f2c3f5368093691349cf3c7c8f8f75ad7cb280"}, + {file = "websockets-11.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:92b2065d642bf8c0a82d59e59053dd2fdde64d4ed44efe4870fa816c1232647b"}, + {file = "websockets-11.0.3-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0ee68fe502f9031f19d495dae2c268830df2760c0524cbac5d759921ba8c8e82"}, + {file = "websockets-11.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dcacf2c7a6c3a84e720d1bb2b543c675bf6c40e460300b628bab1b1efc7c034c"}, + {file = "websockets-11.0.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b67c6f5e5a401fc56394f191f00f9b3811fe843ee93f4a70df3c389d1adf857d"}, + {file = "websockets-11.0.3-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d5023a4b6a5b183dc838808087033ec5df77580485fc533e7dab2567851b0a4"}, + {file = "websockets-11.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:ed058398f55163a79bb9f06a90ef9ccc063b204bb346c4de78efc5d15abfe602"}, + {file = "websockets-11.0.3-py3-none-any.whl", hash = "sha256:6681ba9e7f8f3b19440921e99efbb40fc89f26cd71bf539e45d8c8a25c976dc6"}, + {file = "websockets-11.0.3.tar.gz", hash = "sha256:88fc51d9a26b10fc331be344f1781224a375b78488fc343620184e95a4b27016"}, +] + +[[package]] +name = "wheel" +version = "0.38.4" +description = "A built-package format for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "wheel-0.38.4-py3-none-any.whl", hash = "sha256:b60533f3f5d530e971d6737ca6d58681ee434818fab630c83a734bb10c083ce8"}, + {file = "wheel-0.38.4.tar.gz", hash = "sha256:965f5259b566725405b05e7cf774052044b1ed30119b5d586b2703aafe8719ac"}, +] + +[package.extras] +test = ["pytest (>=3.0.0)"] + +[[package]] +name = "wrapt" +version = "1.15.0" +description = "Module for decorators, wrappers and monkey patching." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +files = [ + {file = "wrapt-1.15.0-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:ca1cccf838cd28d5a0883b342474c630ac48cac5df0ee6eacc9c7290f76b11c1"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:e826aadda3cae59295b95343db8f3d965fb31059da7de01ee8d1c40a60398b29"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:5fc8e02f5984a55d2c653f5fea93531e9836abbd84342c1d1e17abc4a15084c2"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:96e25c8603a155559231c19c0349245eeb4ac0096fe3c1d0be5c47e075bd4f46"}, + {file = "wrapt-1.15.0-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:40737a081d7497efea35ab9304b829b857f21558acfc7b3272f908d33b0d9d4c"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:f87ec75864c37c4c6cb908d282e1969e79763e0d9becdfe9fe5473b7bb1e5f09"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:1286eb30261894e4c70d124d44b7fd07825340869945c79d05bda53a40caa079"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:493d389a2b63c88ad56cdc35d0fa5752daac56ca755805b1b0c530f785767d5e"}, + {file = "wrapt-1.15.0-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:58d7a75d731e8c63614222bcb21dd992b4ab01a399f1f09dd82af17bbfc2368a"}, + {file = "wrapt-1.15.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:21f6d9a0d5b3a207cdf7acf8e58d7d13d463e639f0c7e01d82cdb671e6cb7923"}, + {file = "wrapt-1.15.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ce42618f67741d4697684e501ef02f29e758a123aa2d669e2d964ff734ee00ee"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41d07d029dd4157ae27beab04d22b8e261eddfc6ecd64ff7000b10dc8b3a5727"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54accd4b8bc202966bafafd16e69da9d5640ff92389d33d28555c5fd4f25ccb7"}, + {file = "wrapt-1.15.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2fbfbca668dd15b744418265a9607baa970c347eefd0db6a518aaf0cfbd153c0"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:76e9c727a874b4856d11a32fb0b389afc61ce8aaf281ada613713ddeadd1cfec"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e20076a211cd6f9b44a6be58f7eeafa7ab5720eb796975d0c03f05b47d89eb90"}, + {file = "wrapt-1.15.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a74d56552ddbde46c246b5b89199cb3fd182f9c346c784e1a93e4dc3f5ec9975"}, + {file = "wrapt-1.15.0-cp310-cp310-win32.whl", hash = "sha256:26458da5653aa5b3d8dc8b24192f574a58984c749401f98fff994d41d3f08da1"}, + {file = "wrapt-1.15.0-cp310-cp310-win_amd64.whl", hash = "sha256:75760a47c06b5974aa5e01949bf7e66d2af4d08cb8c1d6516af5e39595397f5e"}, + {file = "wrapt-1.15.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba1711cda2d30634a7e452fc79eabcadaffedf241ff206db2ee93dd2c89a60e7"}, + {file = "wrapt-1.15.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:56374914b132c702aa9aa9959c550004b8847148f95e1b824772d453ac204a72"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a89ce3fd220ff144bd9d54da333ec0de0399b52c9ac3d2ce34b569cf1a5748fb"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3bbe623731d03b186b3d6b0d6f51865bf598587c38d6f7b0be2e27414f7f214e"}, + {file = "wrapt-1.15.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3abbe948c3cbde2689370a262a8d04e32ec2dd4f27103669a45c6929bcdbfe7c"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b67b819628e3b748fd3c2192c15fb951f549d0f47c0449af0764d7647302fda3"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:7eebcdbe3677e58dd4c0e03b4f2cfa346ed4049687d839adad68cc38bb559c92"}, + {file = "wrapt-1.15.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:74934ebd71950e3db69960a7da29204f89624dde411afbfb3b4858c1409b1e98"}, + {file = "wrapt-1.15.0-cp311-cp311-win32.whl", hash = "sha256:bd84395aab8e4d36263cd1b9308cd504f6cf713b7d6d3ce25ea55670baec5416"}, + {file = "wrapt-1.15.0-cp311-cp311-win_amd64.whl", hash = "sha256:a487f72a25904e2b4bbc0817ce7a8de94363bd7e79890510174da9d901c38705"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:4ff0d20f2e670800d3ed2b220d40984162089a6e2c9646fdb09b85e6f9a8fc29"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:9ed6aa0726b9b60911f4aed8ec5b8dd7bf3491476015819f56473ffaef8959bd"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux2010_i686.whl", hash = "sha256:896689fddba4f23ef7c718279e42f8834041a21342d95e56922e1c10c0cc7afb"}, + {file = "wrapt-1.15.0-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:75669d77bb2c071333417617a235324a1618dba66f82a750362eccbe5b61d248"}, + {file = "wrapt-1.15.0-cp35-cp35m-win32.whl", hash = "sha256:fbec11614dba0424ca72f4e8ba3c420dba07b4a7c206c8c8e4e73f2e98f4c559"}, + {file = "wrapt-1.15.0-cp35-cp35m-win_amd64.whl", hash = "sha256:fd69666217b62fa5d7c6aa88e507493a34dec4fa20c5bd925e4bc12fce586639"}, + {file = "wrapt-1.15.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:b0724f05c396b0a4c36a3226c31648385deb6a65d8992644c12a4963c70326ba"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bbeccb1aa40ab88cd29e6c7d8585582c99548f55f9b2581dfc5ba68c59a85752"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:38adf7198f8f154502883242f9fe7333ab05a5b02de7d83aa2d88ea621f13364"}, + {file = "wrapt-1.15.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:578383d740457fa790fdf85e6d346fda1416a40549fe8db08e5e9bd281c6a475"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:a4cbb9ff5795cd66f0066bdf5947f170f5d63a9274f99bdbca02fd973adcf2a8"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:af5bd9ccb188f6a5fdda9f1f09d9f4c86cc8a539bd48a0bfdc97723970348418"}, + {file = "wrapt-1.15.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:b56d5519e470d3f2fe4aa7585f0632b060d532d0696c5bdfb5e8319e1d0f69a2"}, + {file = "wrapt-1.15.0-cp36-cp36m-win32.whl", hash = "sha256:77d4c1b881076c3ba173484dfa53d3582c1c8ff1f914c6461ab70c8428b796c1"}, + {file = "wrapt-1.15.0-cp36-cp36m-win_amd64.whl", hash = "sha256:077ff0d1f9d9e4ce6476c1a924a3332452c1406e59d90a2cf24aeb29eeac9420"}, + {file = "wrapt-1.15.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:5c5aa28df055697d7c37d2099a7bc09f559d5053c3349b1ad0c39000e611d317"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3a8564f283394634a7a7054b7983e47dbf39c07712d7b177b37e03f2467a024e"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:780c82a41dc493b62fc5884fb1d3a3b81106642c5c5c78d6a0d4cbe96d62ba7e"}, + {file = "wrapt-1.15.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e169e957c33576f47e21864cf3fc9ff47c223a4ebca8960079b8bd36cb014fd0"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b02f21c1e2074943312d03d243ac4388319f2456576b2c6023041c4d57cd7019"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f2e69b3ed24544b0d3dbe2c5c0ba5153ce50dcebb576fdc4696d52aa22db6034"}, + {file = "wrapt-1.15.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d787272ed958a05b2c86311d3a4135d3c2aeea4fc655705f074130aa57d71653"}, + {file = "wrapt-1.15.0-cp37-cp37m-win32.whl", hash = "sha256:02fce1852f755f44f95af51f69d22e45080102e9d00258053b79367d07af39c0"}, + {file = "wrapt-1.15.0-cp37-cp37m-win_amd64.whl", hash = "sha256:abd52a09d03adf9c763d706df707c343293d5d106aea53483e0ec8d9e310ad5e"}, + {file = "wrapt-1.15.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cdb4f085756c96a3af04e6eca7f08b1345e94b53af8921b25c72f096e704e145"}, + {file = "wrapt-1.15.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:230ae493696a371f1dbffaad3dafbb742a4d27a0afd2b1aecebe52b740167e7f"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:63424c681923b9f3bfbc5e3205aafe790904053d42ddcc08542181a30a7a51bd"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6bcbfc99f55655c3d93feb7ef3800bd5bbe963a755687cbf1f490a71fb7794b"}, + {file = "wrapt-1.15.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c99f4309f5145b93eca6e35ac1a988f0dc0a7ccf9ccdcd78d3c0adf57224e62f"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b130fe77361d6771ecf5a219d8e0817d61b236b7d8b37cc045172e574ed219e6"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:96177eb5645b1c6985f5c11d03fc2dbda9ad24ec0f3a46dcce91445747e15094"}, + {file = "wrapt-1.15.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:d5fe3e099cf07d0fb5a1e23d399e5d4d1ca3e6dfcbe5c8570ccff3e9208274f7"}, + {file = "wrapt-1.15.0-cp38-cp38-win32.whl", hash = "sha256:abd8f36c99512755b8456047b7be10372fca271bf1467a1caa88db991e7c421b"}, + {file = "wrapt-1.15.0-cp38-cp38-win_amd64.whl", hash = "sha256:b06fa97478a5f478fb05e1980980a7cdf2712015493b44d0c87606c1513ed5b1"}, + {file = "wrapt-1.15.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2e51de54d4fb8fb50d6ee8327f9828306a959ae394d3e01a1ba8b2f937747d86"}, + {file = "wrapt-1.15.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0970ddb69bba00670e58955f8019bec4a42d1785db3faa043c33d81de2bf843c"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76407ab327158c510f44ded207e2f76b657303e17cb7a572ffe2f5a8a48aa04d"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd525e0e52a5ff16653a3fc9e3dd827981917d34996600bbc34c05d048ca35cc"}, + {file = "wrapt-1.15.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d37ac69edc5614b90516807de32d08cb8e7b12260a285ee330955604ed9dd29"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:078e2a1a86544e644a68422f881c48b84fef6d18f8c7a957ffd3f2e0a74a0d4a"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:2cf56d0e237280baed46f0b5316661da892565ff58309d4d2ed7dba763d984b8"}, + {file = "wrapt-1.15.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7dc0713bf81287a00516ef43137273b23ee414fe41a3c14be10dd95ed98a2df9"}, + {file = "wrapt-1.15.0-cp39-cp39-win32.whl", hash = "sha256:46ed616d5fb42f98630ed70c3529541408166c22cdfd4540b88d5f21006b0eff"}, + {file = "wrapt-1.15.0-cp39-cp39-win_amd64.whl", hash = "sha256:eef4d64c650f33347c1f9266fa5ae001440b232ad9b98f1f43dfe7a79435c0a6"}, + {file = "wrapt-1.15.0-py3-none-any.whl", hash = "sha256:64b1df0f83706b4ef4cfb4fb0e4c2669100fd7ecacfb59e091fad300d4e04640"}, + {file = "wrapt-1.15.0.tar.gz", hash = "sha256:d06730c6aed78cee4126234cf2d071e01b44b915e725a6cb439a879ec9754a3a"}, +] + +[[package]] +name = "yarl" +version = "1.9.4" +description = "Yet another URL library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "yarl-1.9.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e"}, + {file = "yarl-1.9.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a3a6ed1d525bfb91b3fc9b690c5a21bb52de28c018530ad85093cc488bee2dd2"}, + {file = "yarl-1.9.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c38c9ddb6103ceae4e4498f9c08fac9b590c5c71b0370f98714768e22ac6fa66"}, + {file = "yarl-1.9.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9e09c9d74f4566e905a0b8fa668c58109f7624db96a2171f21747abc7524234"}, + {file = "yarl-1.9.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8477c1ee4bd47c57d49621a062121c3023609f7a13b8a46953eb6c9716ca392"}, + {file = "yarl-1.9.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5ff2c858f5f6a42c2a8e751100f237c5e869cbde669a724f2062d4c4ef93551"}, + {file = "yarl-1.9.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:357495293086c5b6d34ca9616a43d329317feab7917518bc97a08f9e55648455"}, + {file = "yarl-1.9.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:54525ae423d7b7a8ee81ba189f131054defdb122cde31ff17477951464c1691c"}, + {file = "yarl-1.9.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:801e9264d19643548651b9db361ce3287176671fb0117f96b5ac0ee1c3530d53"}, + {file = "yarl-1.9.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e516dc8baf7b380e6c1c26792610230f37147bb754d6426462ab115a02944385"}, + {file = "yarl-1.9.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:7d5aaac37d19b2904bb9dfe12cdb08c8443e7ba7d2852894ad448d4b8f442863"}, + {file = "yarl-1.9.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:54beabb809ffcacbd9d28ac57b0db46e42a6e341a030293fb3185c409e626b8b"}, + {file = "yarl-1.9.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bac8d525a8dbc2a1507ec731d2867025d11ceadcb4dd421423a5d42c56818541"}, + {file = "yarl-1.9.4-cp310-cp310-win32.whl", hash = "sha256:7855426dfbddac81896b6e533ebefc0af2f132d4a47340cee6d22cac7190022d"}, + {file = "yarl-1.9.4-cp310-cp310-win_amd64.whl", hash = "sha256:848cd2a1df56ddbffeb375535fb62c9d1645dde33ca4d51341378b3f5954429b"}, + {file = "yarl-1.9.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:35a2b9396879ce32754bd457d31a51ff0a9d426fd9e0e3c33394bf4b9036b099"}, + {file = "yarl-1.9.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c7d56b293cc071e82532f70adcbd8b61909eec973ae9d2d1f9b233f3d943f2c"}, + {file = "yarl-1.9.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d8a1c6c0be645c745a081c192e747c5de06e944a0d21245f4cf7c05e457c36e0"}, + {file = "yarl-1.9.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b3c1ffe10069f655ea2d731808e76e0f452fc6c749bea04781daf18e6039525"}, + {file = "yarl-1.9.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:549d19c84c55d11687ddbd47eeb348a89df9cb30e1993f1b128f4685cd0ebbf8"}, + {file = "yarl-1.9.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7409f968456111140c1c95301cadf071bd30a81cbd7ab829169fb9e3d72eae9"}, + {file = "yarl-1.9.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e23a6d84d9d1738dbc6e38167776107e63307dfc8ad108e580548d1f2c587f42"}, + {file = "yarl-1.9.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d8b889777de69897406c9fb0b76cdf2fd0f31267861ae7501d93003d55f54fbe"}, + {file = "yarl-1.9.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:03caa9507d3d3c83bca08650678e25364e1843b484f19986a527630ca376ecce"}, + {file = "yarl-1.9.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4e9035df8d0880b2f1c7f5031f33f69e071dfe72ee9310cfc76f7b605958ceb9"}, + {file = "yarl-1.9.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:c0ec0ed476f77db9fb29bca17f0a8fcc7bc97ad4c6c1d8959c507decb22e8572"}, + {file = "yarl-1.9.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:ee04010f26d5102399bd17f8df8bc38dc7ccd7701dc77f4a68c5b8d733406958"}, + {file = "yarl-1.9.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:49a180c2e0743d5d6e0b4d1a9e5f633c62eca3f8a86ba5dd3c471060e352ca98"}, + {file = "yarl-1.9.4-cp311-cp311-win32.whl", hash = "sha256:81eb57278deb6098a5b62e88ad8281b2ba09f2f1147c4767522353eaa6260b31"}, + {file = "yarl-1.9.4-cp311-cp311-win_amd64.whl", hash = "sha256:d1d2532b340b692880261c15aee4dc94dd22ca5d61b9db9a8a361953d36410b1"}, + {file = "yarl-1.9.4-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0d2454f0aef65ea81037759be5ca9947539667eecebca092733b2eb43c965a81"}, + {file = "yarl-1.9.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142"}, + {file = "yarl-1.9.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074"}, + {file = "yarl-1.9.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129"}, + {file = "yarl-1.9.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2"}, + {file = "yarl-1.9.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ea65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78"}, + {file = "yarl-1.9.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4"}, + {file = "yarl-1.9.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0"}, + {file = "yarl-1.9.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51"}, + {file = "yarl-1.9.4-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff"}, + {file = "yarl-1.9.4-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7"}, + {file = "yarl-1.9.4-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc"}, + {file = "yarl-1.9.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10"}, + {file = "yarl-1.9.4-cp312-cp312-win32.whl", hash = "sha256:4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee7"}, + {file = "yarl-1.9.4-cp312-cp312-win_amd64.whl", hash = "sha256:a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984"}, + {file = "yarl-1.9.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:63b20738b5aac74e239622d2fe30df4fca4942a86e31bf47a81a0e94c14df94f"}, + {file = "yarl-1.9.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7d7f7de27b8944f1fee2c26a88b4dabc2409d2fea7a9ed3df79b67277644e17"}, + {file = "yarl-1.9.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c74018551e31269d56fab81a728f683667e7c28c04e807ba08f8c9e3bba32f14"}, + {file = "yarl-1.9.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ca06675212f94e7a610e85ca36948bb8fc023e458dd6c63ef71abfd482481aa5"}, + {file = "yarl-1.9.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5aef935237d60a51a62b86249839b51345f47564208c6ee615ed2a40878dccdd"}, + {file = "yarl-1.9.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2b134fd795e2322b7684155b7855cc99409d10b2e408056db2b93b51a52accc7"}, + {file = "yarl-1.9.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:d25039a474c4c72a5ad4b52495056f843a7ff07b632c1b92ea9043a3d9950f6e"}, + {file = "yarl-1.9.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:f7d6b36dd2e029b6bcb8a13cf19664c7b8e19ab3a58e0fefbb5b8461447ed5ec"}, + {file = "yarl-1.9.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:957b4774373cf6f709359e5c8c4a0af9f6d7875db657adb0feaf8d6cb3c3964c"}, + {file = "yarl-1.9.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:d7eeb6d22331e2fd42fce928a81c697c9ee2d51400bd1a28803965883e13cead"}, + {file = "yarl-1.9.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:6a962e04b8f91f8c4e5917e518d17958e3bdee71fd1d8b88cdce74dd0ebbf434"}, + {file = "yarl-1.9.4-cp37-cp37m-win32.whl", hash = "sha256:f3bc6af6e2b8f92eced34ef6a96ffb248e863af20ef4fde9448cc8c9b858b749"}, + {file = "yarl-1.9.4-cp37-cp37m-win_amd64.whl", hash = "sha256:ad4d7a90a92e528aadf4965d685c17dacff3df282db1121136c382dc0b6014d2"}, + {file = "yarl-1.9.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:ec61d826d80fc293ed46c9dd26995921e3a82146feacd952ef0757236fc137be"}, + {file = "yarl-1.9.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8be9e837ea9113676e5754b43b940b50cce76d9ed7d2461df1af39a8ee674d9f"}, + {file = "yarl-1.9.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:bef596fdaa8f26e3d66af846bbe77057237cb6e8efff8cd7cc8dff9a62278bbf"}, + {file = "yarl-1.9.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d47552b6e52c3319fede1b60b3de120fe83bde9b7bddad11a69fb0af7db32f1"}, + {file = "yarl-1.9.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84fc30f71689d7fc9168b92788abc977dc8cefa806909565fc2951d02f6b7d57"}, + {file = "yarl-1.9.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4aa9741085f635934f3a2583e16fcf62ba835719a8b2b28fb2917bb0537c1dfa"}, + {file = "yarl-1.9.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:206a55215e6d05dbc6c98ce598a59e6fbd0c493e2de4ea6cc2f4934d5a18d130"}, + {file = "yarl-1.9.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07574b007ee20e5c375a8fe4a0789fad26db905f9813be0f9fef5a68080de559"}, + {file = "yarl-1.9.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5a2e2433eb9344a163aced6a5f6c9222c0786e5a9e9cac2c89f0b28433f56e23"}, + {file = "yarl-1.9.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:6ad6d10ed9b67a382b45f29ea028f92d25bc0bc1daf6c5b801b90b5aa70fb9ec"}, + {file = "yarl-1.9.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:6fe79f998a4052d79e1c30eeb7d6c1c1056ad33300f682465e1b4e9b5a188b78"}, + {file = "yarl-1.9.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:a825ec844298c791fd28ed14ed1bffc56a98d15b8c58a20e0e08c1f5f2bea1be"}, + {file = "yarl-1.9.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8619d6915b3b0b34420cf9b2bb6d81ef59d984cb0fde7544e9ece32b4b3043c3"}, + {file = "yarl-1.9.4-cp38-cp38-win32.whl", hash = "sha256:686a0c2f85f83463272ddffd4deb5e591c98aac1897d65e92319f729c320eece"}, + {file = "yarl-1.9.4-cp38-cp38-win_amd64.whl", hash = "sha256:a00862fb23195b6b8322f7d781b0dc1d82cb3bcac346d1e38689370cc1cc398b"}, + {file = "yarl-1.9.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:604f31d97fa493083ea21bd9b92c419012531c4e17ea6da0f65cacdcf5d0bd27"}, + {file = "yarl-1.9.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8a854227cf581330ffa2c4824d96e52ee621dd571078a252c25e3a3b3d94a1b1"}, + {file = "yarl-1.9.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:ba6f52cbc7809cd8d74604cce9c14868306ae4aa0282016b641c661f981a6e91"}, + {file = "yarl-1.9.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6327976c7c2f4ee6816eff196e25385ccc02cb81427952414a64811037bbc8b"}, + {file = "yarl-1.9.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8397a3817d7dcdd14bb266283cd1d6fc7264a48c186b986f32e86d86d35fbac5"}, + {file = "yarl-1.9.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0381b4ce23ff92f8170080c97678040fc5b08da85e9e292292aba67fdac6c34"}, + {file = "yarl-1.9.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23d32a2594cb5d565d358a92e151315d1b2268bc10f4610d098f96b147370136"}, + {file = "yarl-1.9.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ddb2a5c08a4eaaba605340fdee8fc08e406c56617566d9643ad8bf6852778fc7"}, + {file = "yarl-1.9.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:26a1dc6285e03f3cc9e839a2da83bcbf31dcb0d004c72d0730e755b33466c30e"}, + {file = "yarl-1.9.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:18580f672e44ce1238b82f7fb87d727c4a131f3a9d33a5e0e82b793362bf18b4"}, + {file = "yarl-1.9.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:29e0f83f37610f173eb7e7b5562dd71467993495e568e708d99e9d1944f561ec"}, + {file = "yarl-1.9.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:1f23e4fe1e8794f74b6027d7cf19dc25f8b63af1483d91d595d4a07eca1fb26c"}, + {file = "yarl-1.9.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:db8e58b9d79200c76956cefd14d5c90af54416ff5353c5bfd7cbe58818e26ef0"}, + {file = "yarl-1.9.4-cp39-cp39-win32.whl", hash = "sha256:c7224cab95645c7ab53791022ae77a4509472613e839dab722a72abe5a684575"}, + {file = "yarl-1.9.4-cp39-cp39-win_amd64.whl", hash = "sha256:824d6c50492add5da9374875ce72db7a0733b29c2394890aef23d533106e2b15"}, + {file = "yarl-1.9.4-py3-none-any.whl", hash = "sha256:928cecb0ef9d5a7946eb6ff58417ad2fe9375762382f1bf5c55e61645f2c43ad"}, + {file = "yarl-1.9.4.tar.gz", hash = "sha256:566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf"}, ] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "0b89aad2b9ad89840b7a5b7d000a9349894f9d0b3489b54a5c1a157517de78d0" diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 1d578dc9..f601ce38 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -2,22 +2,49 @@ name = "areg-packages" version = "0.1.0" description = "" -authors = ["Terry Crapts ", "Lars Musters "] +authors = [""] [tool.poetry.dependencies] python = "^3.11" -fastapi = {extras = ["all"], version = "^0.85.1"} -SQLAlchemy = "^1.4.42" +fastapi = {version = "0.95.0", extras = ["all"]} +SQLAlchemy = "^2.0.21" python-dotenv = "^0.21.0" alembic = "^1.8.1" psycopg2-binary = "^2.9.5" pandas = "^1.5.1" openpyxl = "^3.0.10" python-slugify = "^7.0.0" +python-jose = "^3.3.0" +cryptography = "^41.0.7" +passlib = "^1.7.4" +wheel = "^0.38.1" +pytest = "^7.1.2" +coverage = "^6.0" +pyjwt = {version = "2.6.0", extras = ["crypto"]} +certifi = "^2023.5.7" +slowapi = "^0.1.8" +lxml = "^4.9.2" +pytest-mock = "^3.11.1" +python-docx = "^0.8.11" +flake8 = "^5.0.4" +black = {extras = ["jupyter"], version = "^22.10.0"} +pymupdf = "^1.23.2" +reportlab = "^4.0.4" +delayed_assert = "^0.3.6" +deepl = "^1.16.1" +pyotp = "^2.9.0" +python-keycloak = "^4.0.0" +fastapi-cache2 = "^0.2.1" +fastapi-utils = "^0.7.0" +beautifulsoup4 = "^4.12.3" +plotly = "^5.22.0" +kaleido = [ + # Newest version hangs on Windows, see https://github.com/plotly/Kaleido/issues/110 + {version = "0.1.0post1", markers = "platform_system == 'Windows'" }, + {version = "0.2.1", markers = "platform_system != 'Windows'"} +] [tool.poetry.dev-dependencies] -black = {extras = ["jupyter"], version = "^22.10.0"} -flake8 = "^5.0.4" ipykernel = "^6.16.2" [tool.poetry.group.dev.dependencies] diff --git a/backend/pytest.ini b/backend/pytest.ini new file mode 100644 index 00000000..880c879e --- /dev/null +++ b/backend/pytest.ini @@ -0,0 +1,10 @@ +# pytest.ini +[pytest] +testpaths = + tests +filterwarnings = + ignore::DeprecationWarning +; This test file is dependent on Keycloak. Disabled +addopts = -k "not test_endpoints.py" + +pythonpath = . \ No newline at end of file diff --git a/backend/scripts/__init__.py b/backend/scripts/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/backend/scripts/add_og_published.py b/backend/scripts/add_og_published.py new file mode 100644 index 00000000..0c914459 --- /dev/null +++ b/backend/scripts/add_og_published.py @@ -0,0 +1,90 @@ +import pandas as pd +import json +from app.database.database import SessionLocal +from app import models +from sqlalchemy.orm import Session +from app.middleware.authorisation.schemas import State +from app.schemas import Language +from app.repositories import ActionHistoryRepository +from app.schemas import ActionHistoryIn, OperationEnum +from datetime import datetime + + +def add_113_first_published(): + db = SessionLocal() + # The ones without a 'published' are the first 113 + versions_to_publish = ( + db.query(models.AlgoritmeVersion) + .filter(models.AlgoritmeVersion.language == Language.NLD) + .order_by(models.AlgoritmeVersion.create_dt) + .limit(113) + .all() + ) + + publication_date = datetime.strptime("2023-04-01", "%Y-%m-%d") + + # Check if this script has been run before + duplicates = ( + db.query(models.ActionHistory) + .filter(models.ActionHistory.create_dt == publication_date) + .first() + ) + if duplicates: + print("These records are already present, exiting. (1)") + return + + print(f"Adding action history for {len(versions_to_publish)} descriptions.") + action_repository = ActionHistoryRepository(db) + for version in versions_to_publish: + action = ActionHistoryIn( + create_dt=publication_date, + algoritme_version_id=version.id, + operation=OperationEnum.published, + user_id="RETRO-ACTIVE LOGGER", + ) + action_repository.add(action) + db.commit() + + +def add_any_other_without_action_history(): + db = SessionLocal() + + subquery = ( + db.query(models.ActionHistory) + .filter(models.ActionHistory.operation == OperationEnum.published) + .subquery() + ) + versions_to_publish = ( + db.query(models.AlgoritmeVersion) + .join( + subquery, + isouter=True, + ) + .filter( + models.AlgoritmeVersion.state == State.PUBLISHED, + models.AlgoritmeVersion.language == Language.NLD, + subquery.columns.operation.is_(None), + ) + .all() + ) + + if not versions_to_publish: + print("No published versions without proper action history found, exiting. (2)") + return + + print(f"Adding action history for {len(versions_to_publish)} descriptions.") + action_repository = ActionHistoryRepository(db) + for version in versions_to_publish: + action = ActionHistoryIn( + create_dt=version.create_dt, + algoritme_version_id=version.id, + operation=OperationEnum.published, + user_id="RETRO-ACTIVE LOGGER", + ) + action_repository.add(action) + db.commit() + + +if __name__ == "__main__": + add_113_first_published() + add_any_other_without_action_history() diff --git a/backend/scripts/add_org_type.py b/backend/scripts/add_org_type.py new file mode 100644 index 00000000..65b6f788 --- /dev/null +++ b/backend/scripts/add_org_type.py @@ -0,0 +1,97 @@ +""" +This module assigns a type to each organisation. +It is meant to be run as a script once, and will not be used in the actual application. +""" +from sqlalchemy.orm import Session +from app.database.database import SessionLocal +import logging +from app.models import Organisation +from app.schemas import OrgType + +# initialize new independent logger +logger = logging.getLogger(__name__) +logger.setLevel(logging.INFO) +handler = logging.StreamHandler() +formatter = logging.Formatter( + fmt="%(levelname)s | %(asctime)s | %(name)s | %(message)s", +) +handler.setFormatter(formatter) +logger.addHandler(handler) + +mapping: dict[str,OrgType] = { + "rijksdienst-voor-ondernemend-nederland": OrgType.agentschap, + "rijksdienst-voor-identiteitsgegevens": OrgType.agentschap , + "kadaster": OrgType.zelfstandig_bestuursorgaan , + "uitvoeringsinstituut-werknemersverzekeringen": OrgType.zelfstandig_bestuursorgaan , + "sociale-verzekeringsbank": OrgType.zelfstandig_bestuursorgaan , + "belastingdienst": OrgType.organisatieonderdeel , + "centraal-justitieel-incassobureau": OrgType.zelfstandig_bestuursorgaan , + "centraal-bureau-rijvaardigheidsbewijzen": OrgType.zelfstandig_bestuursorgaan , + "nederlands-forensisch-instituut": OrgType.agentschap , + "inspectie-van-het-onderwijs": OrgType.organisatieonderdeel , + "DCMR-milieudienst-rijnmond": OrgType.regionaal_samenwerkingsorgaan , + "kamer-van-koophandel": OrgType.zelfstandig_bestuursorgaan , + "odmh": OrgType.regionaal_samenwerkingsorgaan , + "stichting-inlichtingenbureau": OrgType.organisatie_met_overheidsbemoeienis , + "autoriteit-persoonsgegevens": OrgType.zelfstandig_bestuursorgaan , + "rijkswaterstaat": OrgType.agentschap , + "sandbox": OrgType.overig , + "justitiele-informatiedienst": OrgType.agentschap , + "logius": OrgType.agentschap , + "SED-organisatie": OrgType.regionaal_samenwerkingsorgaan , + "dordrecht": OrgType.gemeente , + "rivm": OrgType.agentschap , + "toeslagen": OrgType.organisatieonderdeel , + "cibg": OrgType.agentschap , + "igj": OrgType.organisatieonderdeel , + "dji": OrgType.agentschap , + "stichting-mijnbouwschade-groningen": OrgType.zelfstandig_bestuursorgaan, + "politie": OrgType.politie , + "ind": OrgType.agentschap , + "grsk": OrgType.regionaal_samenwerkingsorgaan , + "raad-voor-de-rechtsbijstand": OrgType.zelfstandig_bestuursorgaan, + "alliander": OrgType.overig , + "hh-delfland": OrgType.waterschap, +} + + +def get_orgs(db: Session) -> list[Organisation]: + return db.query(Organisation).filter(Organisation.type.is_(None)).all() + + +def assign_type(db: Session, org: Organisation): + """ + Translate all algorithms to English. + """ + assigned_type = None + + if org.code.startswith('gemeente'): + assigned_type = OrgType.gemeente + elif org.code.startswith('provincie'): + assigned_type = OrgType.provincie + elif org.code.startswith('waterschap'): + assigned_type = OrgType.waterschap + elif org.code.startswith('ministerie'): + assigned_type = OrgType.ministerie + elif org.code.startswith('omgevingsdienst'): + assigned_type = OrgType.regionaal_samenwerkingsorgaan + else: + assigned_type = mapping.get(org.code) + + if assigned_type == None: + logger.info(f"Could not assign {org.code} a type") + return + + logger.info(f"Assigned {org.code} as {assigned_type}") + db.query(Organisation).filter(Organisation.id == org.id).update({Organisation.type: assigned_type}, synchronize_session=False) + db.commit() + + +if __name__ == "__main__": + logger.info("Starting assigning types to orgs.") + db = SessionLocal() + orgs = get_orgs(db) + for org in orgs: + assign_type(db, org) + logger.info("Finished assigning types to orgs.") + db.close() diff --git a/backend/scripts/archive/add_org_type.py b/backend/scripts/archive/add_org_type.py new file mode 100644 index 00000000..4df789a3 --- /dev/null +++ b/backend/scripts/archive/add_org_type.py @@ -0,0 +1,94 @@ +""" +This module assigns a type to each organisation. +It is meant to be run as a script once, and will not be used in the actual application. +""" + +from sqlalchemy.orm import Session +from app.database.database import SessionLocal +from app.models import Organisation +from app.schemas import OrgType +from app.util.logger import get_logger + +# initialize new independent logger +logger = get_logger(__name__) + +mapping: dict[str, OrgType] = { + "rijksdienst-voor-ondernemend-nederland": OrgType.agentschap, + "rijksdienst-voor-identiteitsgegevens": OrgType.agentschap, + "kadaster": OrgType.zelfstandig_bestuursorgaan, + "uitvoeringsinstituut-werknemersverzekeringen": OrgType.zelfstandig_bestuursorgaan, + "sociale-verzekeringsbank": OrgType.zelfstandig_bestuursorgaan, + "belastingdienst": OrgType.organisatieonderdeel, + "centraal-justitieel-incassobureau": OrgType.zelfstandig_bestuursorgaan, + "centraal-bureau-rijvaardigheidsbewijzen": OrgType.zelfstandig_bestuursorgaan, + "nederlands-forensisch-instituut": OrgType.agentschap, + "inspectie-van-het-onderwijs": OrgType.organisatieonderdeel, + "DCMR-milieudienst-rijnmond": OrgType.regionaal_samenwerkingsorgaan, + "kamer-van-koophandel": OrgType.zelfstandig_bestuursorgaan, + "odmh": OrgType.regionaal_samenwerkingsorgaan, + "stichting-inlichtingenbureau": OrgType.organisatie_met_overheidsbemoeienis, + "autoriteit-persoonsgegevens": OrgType.zelfstandig_bestuursorgaan, + "rijkswaterstaat": OrgType.agentschap, + "sandbox": OrgType.overig, + "justitiele-informatiedienst": OrgType.agentschap, + "logius": OrgType.agentschap, + "SED-organisatie": OrgType.regionaal_samenwerkingsorgaan, + "dordrecht": OrgType.gemeente, + "rivm": OrgType.agentschap, + "toeslagen": OrgType.organisatieonderdeel, + "cibg": OrgType.agentschap, + "igj": OrgType.organisatieonderdeel, + "dji": OrgType.agentschap, + "stichting-mijnbouwschade-groningen": OrgType.zelfstandig_bestuursorgaan, + "politie": OrgType.politie, + "ind": OrgType.agentschap, + "grsk": OrgType.regionaal_samenwerkingsorgaan, + "raad-voor-de-rechtsbijstand": OrgType.zelfstandig_bestuursorgaan, + "alliander": OrgType.overig, + "hh-delfland": OrgType.waterschap, + "raad-kinderbescherming": OrgType.organisatieonderdeel, +} + + +def get_orgs(db: Session) -> list[Organisation]: + return db.query(Organisation).filter(Organisation.type.is_(None)).all() + + +def assign_type(db: Session, org: Organisation): + """ + Translate all algorithms to English. + """ + assigned_type = None + + if org.code.startswith("gemeente"): + assigned_type = OrgType.gemeente + elif org.code.startswith("provincie"): + assigned_type = OrgType.provincie + elif org.code.startswith("waterschap"): + assigned_type = OrgType.waterschap + elif org.code.startswith("ministerie"): + assigned_type = OrgType.ministerie + elif org.code.startswith("omgevingsdienst"): + assigned_type = OrgType.regionaal_samenwerkingsorgaan + else: + assigned_type = mapping.get(org.code) + + if assigned_type == None: + logger.info(f"Could not assign {org.code} a type") + return + + logger.info(f"Assigned {org.code} as {assigned_type}") + db.query(Organisation).filter(Organisation.id == org.id).update( + {Organisation.type: assigned_type}, synchronize_session=False + ) + db.commit() + + +if __name__ == "__main__": + logger.info("Starting assigning types to orgs.") + db = SessionLocal() + orgs = get_orgs(db) + for org in orgs: + assign_type(db, org) + logger.info("Finished assigning types to orgs.") + db.close() diff --git a/backend/scripts/archive/add_precomputed_values.py b/backend/scripts/archive/add_precomputed_values.py new file mode 100644 index 00000000..feb2ad15 --- /dev/null +++ b/backend/scripts/archive/add_precomputed_values.py @@ -0,0 +1,14 @@ +from app.database.database import SessionLocal +from app.controllers.algoritme_version.endpoints import set_highlighted_algorithms +from app.repositories.precomputed_values import PreComputedValuesRepository +from app.schemas import PreComputedValues + +def main(): + db = SessionLocal() + pre_comp_value_repo = PreComputedValuesRepository(db) + pre_comp_value_repo.delete_by_key(PreComputedValues.highlighted_algorithms) + set_highlighted_algorithms(db) + db.close() + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/backend/scripts/archive/database_migration_groups.py b/backend/scripts/archive/database_migration_groups.py new file mode 100644 index 00000000..14dbbf0e --- /dev/null +++ b/backend/scripts/archive/database_migration_groups.py @@ -0,0 +1,33 @@ +from app.database.database import SessionLocal +from sqlalchemy.orm import Session + +from app.middleware import kc_settings +from app.models.organisation import Organisation +from app.services.keycloak.repository import KeycloakRepository +from app.util.logger import get_logger + + +# initialize new independent logger +logger = get_logger(__name__) + + +def migrate_groups(db: Session): + db_orgs = db.query(Organisation).all() + db_org_codes = [o.code for o in db_orgs] + + kc_repo = KeycloakRepository(kc_settings) + keycloak_orgs = kc_repo.get_groups() + for orgs in keycloak_orgs: + if orgs.name not in db_org_codes: + users = kc_repo.get_group_members(orgs.id) + print(orgs.name, "members: ", [u.username for u in users]) + + +if __name__ == "__main__": + logger.info( + "Checking groups. reporting when an unknown group is found in keycloak." + ) + db = SessionLocal() + migrate_groups(db) + logger.info("Finished checking groups.") + db.close() diff --git a/backend/scripts/archive/database_migration_state.py b/backend/scripts/archive/database_migration_state.py new file mode 100644 index 00000000..4142b418 --- /dev/null +++ b/backend/scripts/archive/database_migration_state.py @@ -0,0 +1,48 @@ +from app.database.database import SessionLocal +from sqlalchemy.orm import Session + +from app.middleware.authorisation.schemas import State +from app.models.algoritme_version import AlgoritmeVersion +from app.repositories.algoritme_version import AlgoritmeVersionRepository +from app.schemas.misc import Language +from app.util.logger import get_logger + + +# initialize new independent logger +logger = get_logger(__name__) + + +def migrate_state(db: Session): + # Start with expiring all. + algos = db.query(AlgoritmeVersion).all() + for algo in algos: + algo.state = State.EXPIRED + + # Need to put the latest versions on STATE_1. + algoritme_version_repo = AlgoritmeVersionRepository(db) + latest_algos = algoritme_version_repo.get_latest_by_lang(Language.NLD) + for algo in latest_algos: + algoritme_version_repo.update_state_by_id(algo.id, State.STATE_1) + + # For published algorithms, set state to State.PUBLISHED. + published_algos = db.query(AlgoritmeVersion).where(AlgoritmeVersion.published).all() + for algo in published_algos: + algo.state = State.PUBLISHED + + # For released algorithms, set state to State.STATE_2. + released_algos = db.query(AlgoritmeVersion).where(AlgoritmeVersion.released).all() + latest_ids = [a.id for a in latest_algos] + for algo in released_algos: + # Can only be done if it is also the latest version + if algo.id in latest_ids: + algo.state = State.STATE_2 + + db.commit() + + +if __name__ == "__main__": + logger.info("Starting updating state based on released and published columns.") + db = SessionLocal() + migrate_state(db) + logger.info("Finished updating state based on released and published columns.") + db.close() diff --git a/backend/scripts/archive/keycloak_fix_emails.py b/backend/scripts/archive/keycloak_fix_emails.py new file mode 100644 index 00000000..4aa02fa3 --- /dev/null +++ b/backend/scripts/archive/keycloak_fix_emails.py @@ -0,0 +1,27 @@ +from app.services.keycloak import KeycloakRepository +from app.middleware import kc_settings + + +def migrate_roles(): + kc_repo = KeycloakRepository(kc_settings) + # Use raw method to get all attributes + users: list[dict] = kc_repo.client.get_users() # type: ignore + for user in users: + user_id: str | None = user.get("id", None) + if not user_id: + print("email assignment failed for", user) + continue + if user.get("email", None): + continue + + print(user.get("username", ""), user.get("email", "no email")) + + user["email"] = user["username"] + try: + kc_repo.client.update_user(user_id, user) + except Exception as e: + print(e) + + +if __name__ == "__main__": + migrate_roles() diff --git a/backend/scripts/archive/keycloak_migration_groups.py b/backend/scripts/archive/keycloak_migration_groups.py new file mode 100644 index 00000000..cc441e0f --- /dev/null +++ b/backend/scripts/archive/keycloak_migration_groups.py @@ -0,0 +1,20 @@ +from app.services.keycloak import KeycloakRepository +from app.middleware import kc_settings +from app.services.keycloak.schemas import KeycloakUserUpdate + + +def migrate_groups(): + kc_repo = KeycloakRepository(kc_settings) + groups = kc_repo.get_groups() + for n, group in enumerate(groups): + print(group, f"progress: {n/len(groups)}") + members = kc_repo.get_group_members(group.id) + for member in members: + groups = list(set([*member.groups, group.name])) + kc_repo.update_user(member.id, KeycloakUserUpdate(groups=groups)) + # Optionally, remove the group. Doesn't hurt to keep it for now. + # kc_repo.client.delete_group(group.id) + + +if __name__ == "__main__": + migrate_groups() diff --git a/backend/scripts/archive/keycloak_migration_roles.py b/backend/scripts/archive/keycloak_migration_roles.py new file mode 100644 index 00000000..6dc77de3 --- /dev/null +++ b/backend/scripts/archive/keycloak_migration_roles.py @@ -0,0 +1,40 @@ +from app.middleware.authorisation.schemas import Role +from app.services.keycloak import KeycloakRepository +from app.middleware import kc_settings + + +def migrate_roles(): + kc_repo = KeycloakRepository(kc_settings) + # Use raw method to get all attributes + users: list[dict] = kc_repo.client.get_users() # type: ignore + for user in users: + print(user.get("username", "")) + + user_id: str | None = user.get("id", None) + old_role = user.get("attributes", {}).get("role", None) + if not user_id: + print("role assignment failed for", user) + continue + + # Manually handle update because we want to preserve the attribute role as well as roles. + attributes = user.get("attributes", {}) + + # Add role from 'role' attribute to 'roles' attribute, make them a unique set. + new_roles = [*attributes.get("roles", []), "orgdetail", "role_1"] + try: + # Add the old role if it is a legitimate current role + if old_role: + Role(old_role[0]) + new_roles = [*old_role, *new_roles] + except ValueError: + pass + + # Users get orgdetail and role_1 by default, to mirror current rights of users. + attributes["roles"] = list(set(new_roles)) + + user["attributes"] = attributes + kc_repo.client.update_user(user_id, user) + + +if __name__ == "__main__": + migrate_roles() diff --git a/backend/scripts/archive/translate_algorithms.py b/backend/scripts/archive/translate_algorithms.py new file mode 100644 index 00000000..4851b976 --- /dev/null +++ b/backend/scripts/archive/translate_algorithms.py @@ -0,0 +1,89 @@ +""" +This module translates all existing algorithms in the database. +It is meant to be run as a script once, and will not be used in the actual application. +""" + +from sqlalchemy.orm import Session +from app.database.database import SessionLocal +from app.middleware.authorisation.schemas import State +from app.models import AlgoritmeVersion +from app.controllers.algoritme_version.endpoints import apply_translation +from app.schemas import Language +from app.services.algoritme_version import db_list_to_python_list +from app.services.translation.base_translator import LanguageCode +from app.util.logger import get_logger + +# initialize new independent logger +logger = get_logger(__name__) + + +def get_all_published_versions(db): + """ + Get all algorithm versions from the database. + """ + model_list = ( + db.query(AlgoritmeVersion) + .filter(AlgoritmeVersion.language == Language.NLD) + .filter(AlgoritmeVersion.state == State.PUBLISHED) + .all() + ) + model_list = [db_list_to_python_list(model) for model in model_list] + return model_list + + +def apply( + db: Session, + algos: list[AlgoritmeVersion], + target_lang: LanguageCode = LanguageCode.ENGLISH, +): + """ + Translate all algorithms to English. + """ + lang_code_map = { + LanguageCode.ENGLISH: Language.ENG, + LanguageCode.FRISIAN: Language.FRY, + } + existing_translations = ( + db.query(AlgoritmeVersion) + .filter(AlgoritmeVersion.state == State.PUBLISHED) + .filter(AlgoritmeVersion.language == lang_code_map[target_lang]) + .all() + ) + + total_algos = len(algos) + for algo_count, algo in enumerate(algos, 1): + if any( + existing_translation.algoritme_id == algo.algoritme_id + for existing_translation in existing_translations + ): + logger.info( + f"({algo_count}/{total_algos}) Skipping {algo.name} because it already has a translation in {lang_code_map[target_lang]}." + ) + continue + logger.info(f"Translating {algo.name} to {lang_code_map[target_lang]}.") + apply_translation( + algo, + db, + "BULK_TRANSLATOR", + language=target_lang, + ) + logger.info( + f"({algo_count}/{total_algos}) Translated {algo.name} to {lang_code_map[target_lang]} successfully." + ) + + +def main(): + logger.info("Retrieving all Dutch algorithms.") + db = SessionLocal() + algos = get_all_published_versions(db) + logger.info(f"Found {len(algos)} Dutch algorithms to translate.") + apply(db, algos, target_lang=LanguageCode.ENGLISH) + logger.info("Finished translation of existing algorithms to English.") + logger.info("Starting translation of existing algorithms to Frisian.\n") + apply(db, algos, target_lang=LanguageCode.FRISIAN) + logger.info("Finished translation of existing algorithms to Frisian.\n") + db.close() + + +if __name__ == "__main__": + main() diff --git a/backend/scripts/archive/translate_organizations.py b/backend/scripts/archive/translate_organizations.py new file mode 100644 index 00000000..1abdbdb3 --- /dev/null +++ b/backend/scripts/archive/translate_organizations.py @@ -0,0 +1,78 @@ +""" +This module translates all existing algorithms in the database. +It is meant to be run as a script once, and will not be used in the actual application. +""" + +from sqlalchemy.orm import Session +from app.database.database import SessionLocal +from app import schemas +from app.models.organisation_details import OrganisationDetails +from app.controllers import translate_org_name +from app.schemas.misc import Language +from app.services.translation import LanguageCode +from app.util.logger import get_logger + +# initialize new independent logger +logger = get_logger(__name__) + + +def get_all_published_versions(db: Session) -> list[schemas.OrganisationDetailsDB]: + """ + Get all organisation_detailas from the database. + """ + entries = ( + db.query(OrganisationDetails) + .filter(OrganisationDetails.language == Language.NLD) + .all() + ) + return [schemas.OrganisationDetailsDB.from_orm(entry) for entry in entries] + + +def apply( + db: Session, + org_details: list[schemas.OrganisationDetailsDB], + lang: LanguageCode = LanguageCode.ENGLISH, +): + """ + Translate all algorithms to English. + """ + lang_code_map = { + LanguageCode.ENGLISH: Language.ENG, + LanguageCode.FRISIAN: Language.FRY, + } + existing_translations = ( + db.query(OrganisationDetails) + .filter(OrganisationDetails.language == lang_code_map[lang]) + .all() + ) + + total_orgs = len(org_details) + for org_count, org_detail in enumerate(org_details, 1): + if any( + existing_translation.organisation_id == org_detail.organisation_id + for existing_translation in existing_translations + ): + logger.info( + f"({org_count}/{total_orgs}) Skipping {org_detail.name} because it already has a translation in {lang_code_map[lang]}." + ) + continue + logger.info(f"Translating {org_detail.name} to {lang_code_map[lang]}.") + translate_org_name(db, org_detail.name, org_detail.id, lang) + logger.info( + f"Translated {org_detail.name} to {lang_code_map[lang]} successfully." + ) + + +def main(): + logger.info("Starting translation of existing organisations.") + db = SessionLocal() + org_details = get_all_published_versions(db) + logger.info(f"Found {len(org_details)} Dutch organisation details to translate.") + apply(db, org_details, LanguageCode.ENGLISH) + apply(db, org_details, LanguageCode.FRISIAN) + logger.info("Finished translation of existing organisations.") + db.close() + + +if __name__ == "__main__": + main() diff --git a/backend/scripts/remove_fake_accounts.py b/backend/scripts/remove_fake_accounts.py new file mode 100644 index 00000000..0226a527 --- /dev/null +++ b/backend/scripts/remove_fake_accounts.py @@ -0,0 +1,18 @@ +from app.services.keycloak.repository import KeycloakRepository + +from app.middleware import kc_settings +from etl.logger import get_logger + +logger = get_logger() + + +def remove_all_fake_accounts(): + kc_repo_tst = KeycloakRepository(kc_settings) + users = kc_repo_tst.get_all(q="fake-") + for user in users: + logger.info(f"Deleting user {user.username}") + kc_repo_tst.delete_user(user.id) + + +if __name__ == "__main__": + remove_all_fake_accounts() diff --git a/backend/scripts/remove_trailing_zeros_pub_standard.py b/backend/scripts/remove_trailing_zeros_pub_standard.py new file mode 100644 index 00000000..bed7a277 --- /dev/null +++ b/backend/scripts/remove_trailing_zeros_pub_standard.py @@ -0,0 +1,60 @@ +import argparse + +from sqlalchemy.orm import Session + +from app.database.database import SessionLocal +from app.models import AlgoritmeVersion + + +def migrate_versions(session: Session): + """Remove trailing zeros from publication standards.""" + old_versions = ['0.1.0', '0.4.0', '1.0.0'] + for old_version in old_versions: + new_version = old_version.rstrip('0').rstrip('.') + print(f'Updating version: {old_version} -> {new_version}') + ( + session.query(AlgoritmeVersion) + .filter(AlgoritmeVersion.standard_version == old_version) + .update({AlgoritmeVersion.standard_version: new_version}) + ) + session.commit() + print('Migration complete') + + +def revert(session: Session): + """Revert the migration.""" + new_versions = ['0.1', '0.4', '1.0'] + for new_version in new_versions: + original_version = new_version + '.0' + print(f'Reverting version: {new_version} -> {original_version}') + ( + session.query(AlgoritmeVersion) + .filter(AlgoritmeVersion.standard_version == new_version) + .update({AlgoritmeVersion.standard_version: original_version}) + ) + session.commit() + print('Revert complete') + + +if __name__ == '__main__': + parser = argparse.ArgumentParser( + description=( + "This script removes trailing zeros from publication standards in the AlgoritmeVersion database. " + "By default, it performs the migration. " + "Use the --revert option to revert the migration." + ) + ) + parser.add_argument( + '--revert', + action='store_true', + help='Use this option to revert back the stripped zeros.' + ) + args = parser.parse_args() + + session = SessionLocal() + if args.revert: + revert(session) + else: + migrate_versions(session) + session.commit() + session.close() diff --git a/backend/scripts/sql/description_never_published.sql b/backend/scripts/sql/description_never_published.sql new file mode 100644 index 00000000..490e2c20 --- /dev/null +++ b/backend/scripts/sql/description_never_published.sql @@ -0,0 +1,26 @@ +-- Organisaties die nog geen algoritmes hebben gepubliceerd, maar wel een conceptversie hebben opgeslagen. En welke conceptversie? +-- Which algorithm_versions have never been published before? +select + a.name, + a.organization as Organisatie, + a.create_dt as laatst_gewijzigd +from algoritme_version a +join ( + -- Get latest version of algorithms + select max(create_dt) as max_create_dt, algoritme_id + from algoritme_version + where language='NLD' + group by algoritme_id +) +j on j.algoritme_id=a.algoritme_id and a.create_dt=j.max_create_dt +where a.language='NLD' +and published=false +-- Avoid algorithm_versions that have ever been published +and not exists ( + select ax.algoritme_id from algoritme_version ax join + action_history ah on ah.algoritme_version_id=ax.id and ah.operation='published' + where ax.algoritme_id=a.algoritme_id + group by ax.algoritme_id +) +order by organization, create_dt desc +; \ No newline at end of file diff --git a/backend/scripts/sql/orgs_met_1_publicatie.sql b/backend/scripts/sql/orgs_met_1_publicatie.sql new file mode 100644 index 00000000..573f8ef2 --- /dev/null +++ b/backend/scripts/sql/orgs_met_1_publicatie.sql @@ -0,0 +1,20 @@ +-- Organisaties die maar 1 algoritme hebben gepubliceerd. En welke algoritme hebben ze gepubliceerd? +select + od.name, + a.lars, + av.name +from algoritme a +join algoritme_version av on av.state='PUBLISHED' and language='NLD' and av.algoritme_id=a.id +join organisation o on o.id=a.organisation_id +join organisation_details od on od.language='NLD' and od.organisation_id=o.id +join ( + select a.organisation_id as organisation_id + --select av.name, organisation_id + from algoritme a + join algoritme_version av on av.algoritme_id=a.id + where av.state='PUBLISHED' and av.language='NLD' + group by a.organisation_id + having count(a.organisation_id)=1 + order by a.organisation_id +) ids on ids.organisation_id=a.organisation_id +; \ No newline at end of file diff --git a/backend/scripts/translate_existing.py b/backend/scripts/translate_existing.py new file mode 100644 index 00000000..cba3e9f2 --- /dev/null +++ b/backend/scripts/translate_existing.py @@ -0,0 +1,59 @@ +""" +This module translates all existing algorithms in the database. +It is meant to be run as a script once, and will not be used in the actual application. +""" +from sqlalchemy.orm import Session +from app.database.database import SessionLocal +import logging +from app.models import AlgoritmeVersion +from app import schemas +from app.controllers.algoritme_version.endpoints import apply_translation +from app.services.algoritme_version import db_list_to_python_list + +# initialize new independent logger +logger = logging.getLogger(__name__) +logger.setLevel(logging.INFO) +handler = logging.StreamHandler() +formatter = logging.Formatter( + fmt="%(levelname)s | %(asctime)s | %(name)s | %(message)s", +) +handler.setFormatter(formatter) +logger.addHandler(handler) + + +def get_all_published_versions(db): + """ + Get all algorithm versions from the database. + """ + model_list = ( + db.query(AlgoritmeVersion) + .filter(AlgoritmeVersion.language == schemas.Language.NLD) + .filter(AlgoritmeVersion.published) + .all() + ) + model_list = [db_list_to_python_list(model) for model in model_list] + return model_list + + +def apply(db: Session, algos: list[AlgoritmeVersion]): + """ + Translate all algorithms to English. + """ + for algo in algos: + logger.info(f"Translating {algo.name} to English.") + apply_translation( + algo, + db, + "BULK_TRANSLATOR", + ) + logger.info(f"Translated {algo.name} to English successfully.") + + +if __name__ == "__main__": + logger.info("Starting translation of existing algorithms.") + db = SessionLocal() + algos = get_all_published_versions(db) + logger.info(f"Found {len(algos)} Dutch algorithms to translate.") + apply(db, algos) + logger.info("Finished translation of existing algorithms.") + db.close() diff --git a/backend/scripts/users_prd_to_tst.py b/backend/scripts/users_prd_to_tst.py new file mode 100644 index 00000000..9f03900e --- /dev/null +++ b/backend/scripts/users_prd_to_tst.py @@ -0,0 +1,98 @@ +from hashlib import md5 +from pydantic import BaseSettings, Field +from app.services.keycloak.repository import KeycloakRepository +from app.middleware import kc_settings +from app.services.keycloak.repository import ConnectionSettings +from app.services.keycloak.schemas import KeycloakUserFromRepo +from app.util.logger import get_logger + + +class KeycloakPRDSettings(BaseSettings): + KEYCLOAK_REALM_PRD: str = Field(default="algreg") + KEYCLOAK_API_URI_PRD: str = Field(default="") + KEYCLOAK_API_CLIENT_PRD: str = Field(default="service-client") + KEYCLOAK_API_SECRET_PRD: str = Field(default="") + + +env_prd_settings = KeycloakPRDSettings() + +kc_settings_prd: ConnectionSettings = { + "realm_name": env_prd_settings.KEYCLOAK_REALM_PRD, + "server_url": env_prd_settings.KEYCLOAK_API_URI_PRD, + "client_id": env_prd_settings.KEYCLOAK_API_CLIENT_PRD, + "client_secret_key": env_prd_settings.KEYCLOAK_API_SECRET_PRD, +} + +logger = get_logger(__name__) + + +def jumble_email(email: str) -> str | None: + """ + Returns anonymous version of email. Must contain an @. + """ + try: + if not "@" in email: + logger.error(f"Can't jumble {email}, not an e-mailadres. (MISSING AT SIGN)") + return + username, domain = email.split("@") + + if not "." in domain: + logger.error(f"Can't jumble {email}, not an e-mailadres. (MISSING PERIOD)") + return + domain_name, domain_extension = domain.split(".") + except Exception as e: + logger.error(f"Can't jumble {email}, not an e-mailadres. (UNKNOWN)") + return + + hashed_username = md5(username.encode()).hexdigest() + hashed_domain = md5(domain_name.encode()).hexdigest() + return f"fake-{hashed_username}@{hashed_domain}.{domain_extension}" + + +def create_old_user(kc_repo: KeycloakRepository, user: KeycloakUserFromRepo) -> None: + """ + Creates a regular user, with an old timestamp + """ + payload = { + "username": user.username, + "attributes": {"groups": user.groups or [], "roles": user.roles or []}, + "enabled": True, + "firstName": "Not available", + "lastName": "Not available", + "emailVerified": True, + "createdTimestamp": int(user.created_at.timestamp() * 1000), + } + logger.info(f"Creating user {user.username}") + kc_repo.client.create_user(payload) + + +def main(): + """ + Retrieves user accounts from PRD and inserts them in the TST environment. + Personal information is hashed or removed. The hash is used to ensure that accounts + don't get posted on TST twice. + """ + + kc_repo_prd = KeycloakRepository(kc_settings_prd) + prd_users = kc_repo_prd.get_all() + kc_repo_tst = KeycloakRepository(kc_settings) + tst_users = kc_repo_tst.get_all() + + # Email and username is the same. + current_emails = [u.username for u in tst_users] + for user in prd_users: + # if user.username.startswith("fake-"): + # continue + + if not (new_email := jumble_email(user.username)): + continue + + if new_email in current_emails: + logger.info("This fake account already exists.") + continue + user.username = new_email + create_old_user(kc_repo_tst, user) + + +if __name__ == "__main__": + main() diff --git a/backend/tests/__init__.py b/backend/tests/__init__.py new file mode 100644 index 00000000..423d8a49 --- /dev/null +++ b/backend/tests/__init__.py @@ -0,0 +1,8 @@ +import os + +# Provide FAKE but realistic values for testing +os.environ[ + "PREDITOR_SHARED_SECRET_KEY" +] = "b=9_i8v7eR&BJBu=8u4uAUuc7zy-EijCBV4vaaFpPBHY-rtbYKRReBRwX=m+3b&3" +os.environ["PREDITOR_SHARED_TOTP_SEED"] = "GCPMDAC56Q7MHOKQNN6OHMYYAR6V6UMW" +os.environ["USE_C3PO"] = "False" diff --git a/backend/tests/conftest.py b/backend/tests/conftest.py new file mode 100644 index 00000000..e9de050e --- /dev/null +++ b/backend/tests/conftest.py @@ -0,0 +1,17 @@ +# Define any fixtures or OS variables here +import json +import os +import pytest + + +MOCK_LARS_CODE = "00000000" + +os.environ["RETRACT_PREVIEW_TIME"] = "1" + + +@pytest.fixture +def mock_json_dump(monkeypatch): + def mock_dump(obj, file, *args, **kwargs): + return "hello" + + monkeypatch.setattr(json, "dump", mock_dump) diff --git a/backend/tests/files/algorithm_1_v1_0.json b/backend/tests/files/algorithm_1_v1_0.json new file mode 100644 index 00000000..46a29e41 --- /dev/null +++ b/backend/tests/files/algorithm_1_v1_0.json @@ -0,0 +1,34 @@ +{ + "name": "test_name", + "organization": "test_organization", + "description_short": "test_description_short", + "category": [ + "Bestuur" + ], + "website": "test_website", + "status": "Buiten gebruik", + "goal": "test_goal", + "proportionality": "test_proportionality", + "lawful_basis": "test_lawful_basis", + "lawful_basis_grouping": [], + "dpia": "Ja", + "standard_version": "1.0", + "uuid": "test_uuid", + "url": "test_url", + "contact_email": "test_contact_email", + "lang": "xxx", + "publiccode": "test_publiccode", + "source_data": "test_source_data", + "source_data_grouping": [], + "methods_and_models": "test_methods_and_models", + "human_intervention": "test_human_intervention", + "risks": "test_risks", + "provider": "test_provider", + "tags": "test_tags", + "source_id": "test_source_id", + "begin_date": "tb_date", + "end_date": "te_date", + "impacttoetsen": "test_impacttoetsen", + "impacttoetsen_grouping": [], + "language": "NLD" +} \ No newline at end of file diff --git a/backend/tests/files/algorithm_2_v1_0.json b/backend/tests/files/algorithm_2_v1_0.json new file mode 100644 index 00000000..eab7f368 --- /dev/null +++ b/backend/tests/files/algorithm_2_v1_0.json @@ -0,0 +1,34 @@ +{ + "name": "test_name", + "organization": "test_organization", + "description_short": "test_description_short", + "category": [ + "Bestuur" + ], + "website": "test_website", + "status": "Buiten gebruik", + "goal": "test_new_goal", + "proportionality": "test_proportionality", + "lawful_basis": "test_lawful_basis", + "lawful_basis_grouping": [], + "dpia": "Ja", + "standard_version": "1.0", + "uuid": "test_uuid", + "url": "test_url", + "contact_email": "test_contact_email", + "lang": "xxx", + "publiccode": "test_publiccode", + "source_data": "test_source_data", + "source_data_grouping": [], + "methods_and_models": "test_methods_and_models", + "human_intervention": "test_human_intervention", + "risks": "test_risks", + "provider": "test_provider", + "tags": "test_tags", + "source_id": "test_source_id", + "begin_date": "tb_date", + "end_date": "te_date", + "impacttoetsen": "test_impacttoetsen", + "impacttoetsen_grouping": [], + "language": "NLD" +} \ No newline at end of file diff --git a/backend/tests/files/algorithm_3_v1_0.json b/backend/tests/files/algorithm_3_v1_0.json new file mode 100644 index 00000000..47c77343 --- /dev/null +++ b/backend/tests/files/algorithm_3_v1_0.json @@ -0,0 +1,35 @@ +{ + "name": "test_name", + "organization": "test_organization", + "description_short": "test_description_short", + "category": [ + "Bestuur", + "Cultuur en Recreatie" + ], + "website": "test_website", + "status": "Buiten gebruik", + "goal": "test_new_goal", + "proportionality": "test_proportionality", + "lawful_basis": "test_lawful_basis", + "lawful_basis_grouping": [], + "dpia": "Ja", + "standard_version": "1.0", + "uuid": "test_uuid", + "url": "test_url", + "contact_email": "test_contact_email", + "lang": "xxx", + "publiccode": "test_publiccode", + "source_data": "test_source_data", + "source_data_grouping": [], + "methods_and_models": "test_methods_and_models", + "human_intervention": "test_human_intervention", + "risks": "test_risks", + "provider": "test_provider", + "tags": "test_tags", + "source_id": "test_source_id", + "begin_date": "tb_date", + "end_date": "te_date", + "impacttoetsen": "test_impacttoetsen", + "impacttoetsen_grouping": [], + "language": "NLD" +} \ No newline at end of file diff --git a/backend/tests/files/db_output_1.json b/backend/tests/files/db_output_1.json new file mode 100644 index 00000000..43f25267 --- /dev/null +++ b/backend/tests/files/db_output_1.json @@ -0,0 +1,44 @@ +[ + { + "name": "mock_name", + "standard_version": "0.1", + "algoritme_id": "0", + "language": "NLD", + "id": 0, + "state": "STATE_2", + "preview_active": false, + "create_dt": "2023-09-21 12:48:40.213594+00:00", + "lars": "0", + "owner": "sandbox", + "code": "gemeente-mock" + }, + { + "name": "mock_name2", + "standard_version": "0.4", + "impacttoetsen": "{mock_text,\"mock text\"}", + "algoritme_id": "1", + "language": "NLD", + "id": 1, + "state": "STATE_2", + "preview_active": false, + "create_dt": "2023-09-21 12:48:40.213594+00:00", + "lars": "1", + "owner": "sandbox", + "code": "gemeente-mock" + }, + { + "name": "mock_name3", + "standard_version": "0.4", + "impacttoetsen": "{mock_text}", + "goal": "
this is a
\n
    \n
  • mock list item
  • \n
\n
\n
    \n
  1. mock list item
  2. \n
\n ", + "algoritme_id": "2", + "language": "NLD", + "id": 2, + "state": "STATE_2", + "preview_active": false, + "create_dt": "2023-09-21 12:48:40.213594+00:00", + "lars": "2", + "owner": "sandbox", + "code": "gemeente-mock" + } +] \ No newline at end of file diff --git a/backend/tests/repository/mock_algoritme_version.py b/backend/tests/repository/mock_algoritme_version.py new file mode 100644 index 00000000..42425c24 --- /dev/null +++ b/backend/tests/repository/mock_algoritme_version.py @@ -0,0 +1,25 @@ +import datetime +from sqlalchemy.orm import Session + +from app import schemas +from app.repositories.index import IRepository + + +class MockAlgoritmeVersionRepository(IRepository): + def __init__(self, session: Session): + self.session = session + + def add(self, item: schemas.AlgoritmeVersionIn) -> schemas.AlgoritmeVersionDB: + fields_to_add = { + "algoritme_id": 0, + "language": "NLD", + "id": 0, + "state": "STATE_1", + "preview_active": False, + "create_dt": datetime.datetime(2000, 1, 1), + "lars": "00000000", + "owner": "", + "code": "", + } + schema = schemas.AlgoritmeVersionDB(**item.dict(), **fields_to_add) + return schema diff --git a/backend/tests/samples/test_db.py b/backend/tests/samples/test_db.py new file mode 100644 index 00000000..0c300537 --- /dev/null +++ b/backend/tests/samples/test_db.py @@ -0,0 +1,19 @@ +from sqlalchemy import text +from app.middleware.middleware import get_db +import app.models as models + + +def test_get_db(): + """Test if the db is reachable""" + db = next(get_db()) + assert db + assert db.execute(text("SELECT 1")) + + +def test_alembic(): + """Test if the alembic has properly initialized tables""" + db = next(get_db()) + try: + db.query(models.Algoritme).all() + except Exception: + assert False diff --git a/backend/tests/smart_search/data/_1_combinaties.json b/backend/tests/smart_search/data/_1_combinaties.json new file mode 100644 index 00000000..4678f258 --- /dev/null +++ b/backend/tests/smart_search/data/_1_combinaties.json @@ -0,0 +1,34 @@ +[ + { + "name": "", + "organization": "", + "description_short": "Amsterdam", + "algoritme_id": "1", + "standard_version": "0.4", + "state": "PUBLISHED" + }, + { + "name": "", + "organization": "", + "description_short": "parkeren", + "algoritme_id": "2", + "standard_version": "0.4", + "state": "PUBLISHED" + }, + { + "name": "", + "organization": "", + "description_short": "amsterdam rotterdam", + "algoritme_id": "3", + "standard_version": "0.4", + "state": "PUBLISHED" + }, + { + "name": "", + "organization": "", + "description_short": "amsterdam parkeren", + "algoritme_id": "4", + "standard_version": "0.4", + "state": "PUBLISHED" + } +] \ No newline at end of file diff --git a/backend/tests/smart_search/data/_2_spelling.json b/backend/tests/smart_search/data/_2_spelling.json new file mode 100644 index 00000000..4678f258 --- /dev/null +++ b/backend/tests/smart_search/data/_2_spelling.json @@ -0,0 +1,34 @@ +[ + { + "name": "", + "organization": "", + "description_short": "Amsterdam", + "algoritme_id": "1", + "standard_version": "0.4", + "state": "PUBLISHED" + }, + { + "name": "", + "organization": "", + "description_short": "parkeren", + "algoritme_id": "2", + "standard_version": "0.4", + "state": "PUBLISHED" + }, + { + "name": "", + "organization": "", + "description_short": "amsterdam rotterdam", + "algoritme_id": "3", + "standard_version": "0.4", + "state": "PUBLISHED" + }, + { + "name": "", + "organization": "", + "description_short": "amsterdam parkeren", + "algoritme_id": "4", + "standard_version": "0.4", + "state": "PUBLISHED" + } +] \ No newline at end of file diff --git a/backend/tests/smart_search/data/_3_synoniemen.json b/backend/tests/smart_search/data/_3_synoniemen.json new file mode 100644 index 00000000..1c37b850 --- /dev/null +++ b/backend/tests/smart_search/data/_3_synoniemen.json @@ -0,0 +1,50 @@ +[ + { + "name": "", + "organization": "", + "description_short": "Basisregistratie Personen", + "algoritme_id": "1", + "standard_version": "0.4", + "state": "PUBLISHED" + }, + { + "name": "", + "organization": "", + "description_short": "BRP", + "algoritme_id": "2", + "standard_version": "0.4", + "state": "PUBLISHED" + }, + { + "name": "", + "organization": "", + "description_short": "BZK", + "algoritme_id": "3", + "standard_version": "0.4", + "state": "PUBLISHED" + }, + { + "name": "", + "organization": "", + "description_short": "Ministerie van Binnenlandse Zaken en Koninkrijksrelaties", + "algoritme_id": "4", + "standard_version": "0.4", + "state": "PUBLISHED" + }, + { + "name": "", + "organization": "", + "description_short": "KvK", + "algoritme_id": "5", + "standard_version": "0.4", + "state": "PUBLISHED" + }, + { + "name": "", + "organization": "", + "description_short": "Kamer van Koophandel", + "algoritme_id": "6", + "standard_version": "0.4", + "state": "PUBLISHED" + } +] \ No newline at end of file diff --git a/backend/tests/smart_search/data/_4_zoek_suggestie.json b/backend/tests/smart_search/data/_4_zoek_suggestie.json new file mode 100644 index 00000000..c9126c65 --- /dev/null +++ b/backend/tests/smart_search/data/_4_zoek_suggestie.json @@ -0,0 +1,9 @@ +[ + { + "name": "Druktebeeld (NL)", + "organization": "gemeente Amsterdam", + "algoritme_id": "4", + "standard_version": "0.4", + "state": "PUBLISHED" + } +] \ No newline at end of file diff --git a/backend/tests/smart_search/queries.yaml b/backend/tests/smart_search/queries.yaml new file mode 100644 index 00000000..bdeed786 --- /dev/null +++ b/backend/tests/smart_search/queries.yaml @@ -0,0 +1,59 @@ +combinaties: + - id: 1 + woord: amsterdam parkeren + expected: [4] + lang: NLD + - id: 1 + woord: amsterdam or parkeren + expected: [1, 2, 3, 4] + lang: NLD + - id: 1 + woord: amsterdam -parkeren + expected: [1, 3] + lang: NLD + +spelfouten: + - id: 2 + woord: amsterdamm + expected: [1, 3, 4] + lang: NLD + - id: 2 + woord: parkerne + expected: [2, 4] + lang: NLD + +synoniemen: + - id: 3 + woord: brp + expected: [1, 2] + lang: NLD + - id: 3 + woord: basis registratie personen + expected: [1, 2] + lang: NLD + - id: 3 + woord: bzk + expected: [3, 4] + lang: NLD + - id: 3 + woord: Ministerie van Binnenlandse Zaken en Koninkrijksrelaties + expected: [3, 4] + lang: NLD + - id: 3 + woord: kvk + expected: [5,6] + lang: NLD + - id: 3 + woord: kamer van koophandel + expected: [5,6] + lang: NLD + +suggesties: + - id: 4 + woord: druktebeeld + expected: [1] + lang: NLD + - id: 4 + woord: amsterdam + expected: [1] + lang: NLD diff --git a/backend/tests/test_controllers.py b/backend/tests/test_controllers.py new file mode 100644 index 00000000..2eba7b6b --- /dev/null +++ b/backend/tests/test_controllers.py @@ -0,0 +1,140 @@ +import pytest +from fastapi import HTTPException +from app.middleware.authorisation.schemas import Role +from app.middleware.middleware import get_db +from app.schemas.misc import OrgType +from app.util.logger import get_logger +from app import controllers, schemas, models +from app.services.keycloak import KeycloakUser +import json + +"""Test all controllers""" + +logger = get_logger(__name__) + + +class TestControllers: + def setup_class(self): + self.user_sandbox = KeycloakUser( + username="test", + groups=["sandbox"], + roles=[Role.Administrator], + id="0", + first_name="", + last_name="", + ) + self.user_no_org = KeycloakUser( + username="test", + groups=[], + roles=[Role.Administrator], + id="1", + first_name="", + last_name="", + ) + self.db = next(get_db()) + + self.db.query(models.Organisation).delete() + self.db.commit() + + # Store default body + filename = "tests/files/algorithm_1_v1_0.json" + with open(filename, "r") as file: + data = json.load(file) + self.body = schemas.AlgoritmeVersionContent(**data) + + sandbox_org = models.Organisation(code="sandbox", type=OrgType.gemeente) + self.db.add(sandbox_org) + self.db.commit() + # Post one algorithm to share among tests + post_response = controllers.post_one( + "sandbox", self.body, self.db, self.user_sandbox + ) + self.lars_code = post_response.lars_code + + def teardown_class(self): + self.db.query(models.Organisation).delete() + self.db.commit() + self.db.close() + + def test_base(self): + get_all_data = controllers.get_algorithm_summary("sandbox", self.db) + assert len(get_all_data) == 1 + + def test_update_new_version(self): + filename = "tests/files/algorithm_2_v1_0.json" + with open(filename, "r") as file: + data = json.load(file) + body = schemas.AlgoritmeVersionContent(**dict(data)) + + # Update + put_response = controllers.update_new_version( + body, self.lars_code, self.db, self.user_sandbox + ) + assert put_response is None + + # Update without change in data + put_response = controllers.update_new_version( + body, self.lars_code, self.db, self.user_sandbox + ) + assert hasattr(put_response, "message") + + # Update non-existing version + with pytest.raises(HTTPException): + controllers.update_new_version(body, "00000001", self.db, self.user_sandbox) + + # Verify put + get_response = controllers.get_one_newest(self.lars_code, self.db) + assert getattr(get_response, "goal") == "test_new_goal" + + def test_preview_link(self): + preview_response = controllers.get_preview_link( + self.lars_code, self.db, self.user_sandbox + ) + assert hasattr(preview_response, "url") + + # Verify background task + controllers.wait_then_disable_preview(self.lars_code, self.db) + controllers.disable_preview( + self.lars_code, + self.db, + "", + reason=schemas.OperationEnum.preview_activated, + ) + + # Verify can't disable if not active + controllers.disable_preview( + self.lars_code, + self.db, + "", + reason=schemas.OperationEnum.preview_activated, + ) + + def test_preview_link_wrong_lars(self): + # Verify wrong lars code gives error + with pytest.raises(HTTPException): + controllers.get_preview_link("00000001", self.db, self.user_sandbox) + + def test_post_and_get(self): + post_response = controllers.post_one( + "sandbox", self.body, self.db, self.user_sandbox + ) + assert hasattr(post_response, "lars_code") + assert len(post_response.lars_code) == 8 + + # Verify post + get_one_data = controllers.get_one_newest(post_response.lars_code, self.db) + assert getattr(get_one_data, "name") == "test_name" + assert getattr(get_one_data, "organization") == "test_organization" + assert getattr(get_one_data, "standard_version") == "1.0" + + def test_remove(self): + remove_response = controllers.remove_one(self.lars_code, self.db) + assert remove_response is None + + # Test if actually removed + with pytest.raises(HTTPException): + controllers.get_one_newest(self.lars_code, self.db) + + # Verify remove when nothing there + with pytest.raises(HTTPException): + controllers.remove_one(self.lars_code, self.db) diff --git a/backend/tests/test_endpoints.py b/backend/tests/test_endpoints.py new file mode 100644 index 00000000..b009fb85 --- /dev/null +++ b/backend/tests/test_endpoints.py @@ -0,0 +1,158 @@ +from fastapi.testclient import TestClient +import requests +from app.middleware.middleware import get_db +from app import models +from app.main import app + + +def login(username: str, password: str) -> str: + LOGIN_URL = "" + REALM = "algreg_dev" + CLIENT = "authentication-client" + + user_info = { + "client_id": CLIENT, + "username": username, + "password": password, + "grant_type": "password", + "totp": "", + } + response = requests.post( + LOGIN_URL + "realms/" + REALM + "/protocol/openid-connect/token", + data=user_info, + ) + if response.status_code == 200: + token = response.json()["access_token"] + return token + else: + return "" + + +class TestEndpoints: + def setup_class(self): + self.VERSIONS = ["v0_1", "v0_4"] + self.client = TestClient(app) + self.db = next(get_db()) + self.token = "Bearer " + login(username="sandbox", password="sandbox") + + org = models.Organisation(**{"name": "sandbox", "code": "sandbox"}) + self.db.add(org) + self.db.commit() + body = { + "name": "test", + "organization": "test", + "standard_version": "0.1", + } + response = self.client.post( + "aanleverapi/v0_1/organizations/sandbox/algorithms", + json=body, + headers={"Authorization": self.token}, + ) + self.lars_code = response.json()["lars_code"] + + def teardown_class(self): + self.db.query(models.Organisation).delete() + self.db.commit() + self.db.close() + + def test_openapi(self): + for v in self.VERSIONS: + response = self.client.get(f"aanleverapi/{v}/openapi.json") + assert response.status_code == 200 + + def test_get_all_algorithms(self): + for v in self.VERSIONS: + response = self.client.get( + f"aanleverapi/{v}/organizations/sandbox/algorithms", + headers={"Authorization": self.token}, + ) + assert response.status_code == 200 + + def test_post_one_algorithm(self): + json = {"name": "test", "organization": "Sandbox"} + for v in self.VERSIONS: + json_with_version = {"standard_version": v.replace("_", ".")[1:], **json} + response = self.client.post( + f"aanleverapi/{v}/organizations/sandbox/algorithms", + json=json_with_version, + headers={"Authorization": self.token}, + ) + assert response.status_code == 200 + + response = self.client.post( + f"aanleverapi/{v}/organizations/sandbox/algorithms", + headers={"Authorization": self.token}, + json=json, + ) + lars_code = response.json()["lars_code"] + assert len(lars_code) == 8 + assert response.status_code == 200 + + # Test remove + response = self.client.delete( + f"aanleverapi/{v}/organizations/sandbox/algorithms/{lars_code}/remove", + headers={"Authorization": self.token}, + ) + assert response.status_code == 200 + + def test_get_one_algorithm(self): + for v in self.VERSIONS: + response = self.client.get( + f"aanleverapi/{v}/organizations/sandbox/algorithms/{self.lars_code}", + headers={"Authorization": self.token}, + ) + assert response.status_code == 200 + + def test_update_one_algorithm(self): + json = {"name": "test_put", "organization": "Sandbox"} + for v in self.VERSIONS: + json_with_version = {"standard_version": v.replace("_", ".")[1:], **json} + response = self.client.put( + f"aanleverapi/{v}/organizations/sandbox/algorithms/{self.lars_code}", + json=json_with_version, + headers={"Authorization": self.token}, + ) + assert response.status_code == 200 + + response = self.client.put( + f"aanleverapi/{v}/organizations/sandbox/algorithms/{self.lars_code}", + json=json, + headers={"Authorization": self.token}, + ) + assert response.status_code == 200 + + def test_get_one_preview_url(self): + for v in self.VERSIONS: + response = self.client.get( + f"aanleverapi/{v}/organizations/sandbox/algorithms/{self.lars_code}/preview", + headers={"Authorization": self.token}, + ) + assert response.status_code == 200 + + def test_publish_flow(self, mocker): + mock_smtp = mocker.MagicMock(name="app.mailing.mailing.smtplib.SMTP") + mocker.patch("app.mailing.mailing.smtplib.SMTP", new=mock_smtp) + for v in self.VERSIONS: + response = self.client.put( + f"aanleverapi/{v}/organizations/sandbox/algorithms/{self.lars_code}/release", + headers={"Authorization": self.token}, + ) + assert response.status_code == 200 + + response = self.client.put( + f"aanleverapi/{v}/organizations/sandbox/algorithms/{self.lars_code}/publish", + headers={"Authorization": self.token}, + ) + assert response.status_code == 200 + + response = self.client.get( + f"aanleverapi/{v}/organizations/sandbox/published-algorithms/{self.lars_code}", + headers={"Authorization": self.token}, + ) + assert response.status_code == 200 + + response = self.client.delete( + f"aanleverapi/{v}/organizations/sandbox/published-algorithms/{self.lars_code}/retract", + headers={"Authorization": self.token}, + ) + assert response.status_code == 200 diff --git a/backend/tests/test_file_download.py b/backend/tests/test_file_download.py new file mode 100644 index 00000000..fcdf25b4 --- /dev/null +++ b/backend/tests/test_file_download.py @@ -0,0 +1,11 @@ +import pytest +from fastapi import HTTPException +from app.controllers import file_download +from app.middleware.middleware import get_db + +db = next(get_db()) + + +def test_generate_file_download(): + with pytest.raises(HTTPException): + file_download.generate_download_file(db, org_name="sandbox") diff --git a/backend/tests/test_preditor.py b/backend/tests/test_preditor.py new file mode 100644 index 00000000..22ff564d --- /dev/null +++ b/backend/tests/test_preditor.py @@ -0,0 +1,14 @@ +from fastapi.testclient import TestClient + +# app works on specific environment variable, this is set in conftest.py +from app.main import app + +client = TestClient(app) + + +def test_get_all_content(monkeypatch): + monkeypatch.setattr( + "app.routers.public.preditor._authenticate_preditor", lambda x: None + ) + response = client.get("api/static-content") + assert response.status_code == 200 diff --git a/backend/tests/test_public_endpoints.py b/backend/tests/test_public_endpoints.py new file mode 100644 index 00000000..a873e1ab --- /dev/null +++ b/backend/tests/test_public_endpoints.py @@ -0,0 +1,74 @@ +from fastapi.testclient import TestClient +from app.main import app + + +class TestPublicEndpoints: + def setup_class(self): + self.client = TestClient(app) + + def test_get_all_algorithms(self): + body = {"filters": [], "page": 1, "limit": 10, "search": ""} + endpoint = "api/algoritme/NLD" + response = self.client.post(endpoint, json=body) + assert response.status_code == 200 + assert response.json()["results"] == [] + + body = {"filters": [], "page": 1, "limit": 10, "search": "parkeer"} + response = self.client.post(endpoint, json=body) + assert response.status_code == 200 + assert response.json()["results"] == [] + + body = { + "filters": [{"attribute": "organization", "value": "Sandbox"}], + "page": 1, + "limit": 10, + "search": "", + } + response = self.client.post(endpoint, json=body) + assert response.status_code == 200 + assert response.json()["results"] == [] + + def test_get_one_algorithm(self): + response = self.client.get("api/algoritme/NLD/00000001") + assert response.status_code == 404 + + # Verify concept version + response = self.client.get("api/algoritme/NLD/C00000001") + assert response.status_code == 404 + + def test_get_file_download(self): + response = self.client.get("api/downloads/NLD?filetype=excel") + assert response.status_code == 404 + + def test_get_json_download(self): + response = self.client.get("api/json/algoritme") + assert response.status_code == 404 + + def test_get_columns(self): + response = self.client.get("api/columns") + assert response.status_code == 200 + + def test_get_total_count(self): + response = self.client.get("api/algoritme/total-count") + assert response.status_code == 200 + + def test_get_count_per_type(self): + response = self.client.get("api/db-count/name") + assert response.status_code == 200 + + def test_get_count_with_filled_columns(self): + response = self.client.get("api/completeness?columns=*") + assert response.status_code == 200 + + response = self.client.get("api/completeness?columns=name") + assert response.status_code == 200 + + response = self.client.get( + "api/completeness/?columns=name&columns=organization" + ) + assert response.status_code == 200 + + def test_get_search_suggestion(self): + response = self.client.get("api/suggestion/NLD/test") + assert response.status_code == 200 + assert response.json()["algorithms"] == [] diff --git a/backend/tests/test_services.py b/backend/tests/test_services.py new file mode 100644 index 00000000..ac4222f8 --- /dev/null +++ b/backend/tests/test_services.py @@ -0,0 +1,36 @@ +from app.services.algoritme_version.algoritme_version_service import ( + db_list_to_python_list, + field_db_list_to_python_list, +) +from app import models + + +def test_db_list_to_python_list(): + body: dict[str, str] = {"impacttoetsen": "{a,b}", "standard_version": "0.4"} + model = models.AlgoritmeVersion(**body) + response = db_list_to_python_list(model) + assert response.impacttoetsen == ["a", "b"] + + body: dict[str, str] = {"impacttoetsen": '{"a a",b}', "standard_version": "0.4"} + model = models.AlgoritmeVersion(**body) + response = db_list_to_python_list(model) + assert response.impacttoetsen == ["a a", "b"] + + body: dict[str, str] = {"type": '{"a a",b}', "standard_version": "0.4"} + model = models.AlgoritmeVersion(**body) + response = db_list_to_python_list(model) + assert response.type == '{"a a",b}' + + +def test_field_db_list_to_python_list(): + field = "{a,b}" + response = field_db_list_to_python_list(field) + assert response == ["a", "b"] + + field = '{"a a",b}' + response = field_db_list_to_python_list(field) + assert response == ["a a", "b"] + + field = "ineligible string" + response = field_db_list_to_python_list(field) + assert response == field diff --git a/backend/tests/test_smart_search.py b/backend/tests/test_smart_search.py new file mode 100644 index 00000000..2aac9fbe --- /dev/null +++ b/backend/tests/test_smart_search.py @@ -0,0 +1,306 @@ +import json +import os +import re +from contextlib import contextmanager +from pathlib import Path +from typing import Any, List, Optional, cast + +import delayed_assert +import pytest +import yaml +from fastapi.testclient import TestClient +from pydantic import BaseModel +from sqlalchemy.orm import Session + +from app import models, repositories, schemas +from app.main import app +from app.middleware.authorisation.schemas import State +from app.middleware.middleware import get_db +from app.schemas.misc import Language +from app.middleware.authorisation.config._base import Flow + +TESTDATA_DIR = Path("tests/smart_search/data") +QUERIES_YAML = Path("tests/smart_search/queries.yaml") +QUERY_LIMIT = 100 + + +class Query(BaseModel): + woord: str + id: int + expected: List[int] + lang: Language + + +class Queries(BaseModel): + spelfouten: Optional[List[Query]] + synoniemen: Optional[List[Query]] + combinaties: Optional[List[Query]] + suggesties: Optional[List[Query]] + + +class NoDataError(Exception): + pass + + +class IDAlreadyExists(Exception): + pass + + +@contextmanager +def cd(dest: Path): + curr_dir = Path().absolute() + try: + os.chdir(dest) + yield + finally: + os.chdir(curr_dir) + + +class GenTestData: + @classmethod + def queries_yaml_to_dict(cls, filename: Path) -> Queries: + with open(filename, "rb") as filehandler: + return Queries.parse_obj(yaml.safe_load(filehandler)) + + @classmethod + def _dict_to_json(cls, payload: dict, filename: str, directory: Path) -> bool: + with cd(directory): + try: + with open(filename, "w") as filehandler: + json.dump(payload, filehandler) + return True + except Exception: + pass + + return False + + @classmethod + def _check_file_exist(cls, filename: str, directory: Path) -> bool: + with cd(directory): + return True if filename in os.listdir() else False + + @classmethod + def find_file_by_id(cls, id: int, data_dir: Path) -> str | None: + with cd(data_dir): + files = os.listdir() + regex = re.compile(r"\d+") + + matching_files = [ + file + for file in files + if file.endswith(".json") and id == int(regex.findall(file)[0]) + ] + + return next(iter(matching_files), None) + + @classmethod + def calling_smart_search_endpoint( + cls, client: TestClient, query: Query + ) -> schemas.AlgoritmeQueryResponse | None: + endpoint = f"api/algoritme/{query.lang.value}" + body = schemas.AlgoritmeQuery(limit=QUERY_LIMIT, searchtext=query.woord).dict() + + try: + response = client.post(endpoint, json=body) + except Exception as exc: + print(f"Calling post endpoint failed: {query}; msg: {exc}") + return + + if response.status_code != 200: + raise RuntimeError("Request returned HTTP code {response.status_code}") + + return schemas.AlgoritmeQueryResponse(**response.json()) + + @classmethod + def calling_suggestion_endpoint( + cls, client: TestClient, query: Query + ) -> schemas.SearchSuggestionResponse | None: + endpoint = f"api/suggestion/{query.lang.value}/{query.woord}" + + try: + response = client.get(endpoint) + except Exception as exc: + print(f"Calling get endpoint failed: {query}; msg: {exc}") + return + + if response.status_code != 200: + raise RuntimeError("Request returned HTTP code {response.status_code}") + + return schemas.SearchSuggestionResponse(**response.json()) + + +class ConfigMockDB: + @classmethod + def _clear_db_tables(cls, table_model: Any, session: Session) -> None: + session.query(table_model).delete() + session.commit() + + @classmethod + def json_to_schema( + cls, filename: Path + ) -> list[schemas.AlgoritmeVersionContent] | None: + try: + with open(filename, "rb") as filehandler: + json_obj = json.load(filehandler) + if json_obj: + return [ + schemas.AlgoritmeVersionContent(**item) for item in json_obj + ] + except Exception as exc: + print(f"Failed to load json to schema: {exc}") + + @classmethod + def algoritme_version_json_to_db(cls, filepath: Path, session: Session) -> None: + cls._clear_db_tables(models.Organisation, session) + + algoritme_version_repo = repositories.AlgoritmeVersionRepository(session) + algoritme_repo = repositories.AlgoritmeRepository(session) + organisation_repo = repositories.OrganisationRepository(session) + + if (algo_data_set := cls.json_to_schema(filepath)) is None: + print(f"Json file: {filepath} is empty") + raise NoDataError( + f"Failed to load JSON. Check if file exists {filepath} or file is empty" + ) + + # Creates new entry in organization table. + org = organisation_repo.add( + schemas.OrganisationIn( + code="x", + type=schemas.OrgType.overig, + show_page=False, + flow=Flow.ICTU_LAST, + ) + ) + for unique_id, algo_data in enumerate(algo_data_set): + algoritme = schemas.AlgoritmeIn(lars=str(unique_id), organisation_id=org.id) + algoritme_db = algoritme_repo.add(algoritme) + + # lars-code is used for assert later, and must match the algoritme_id. + # assert unique_id == algoritme_db.id, "lars-code must equal algoritme.id" + + # Creates new entry in algoritme_version table. + algoritme_version = schemas.AlgoritmeVersionIn( + **algo_data.dict(), + algoritme_id=algoritme_db.id, + language=Language.NLD, + state=State.PUBLISHED, + ) + algoritme_version_repo.add(algoritme_version) + + +class TestSmartSearch: + @classmethod + def setup_class(cls) -> None: + cls.client = TestClient(app) + cls.session = next(get_db()) + cls.queries = GenTestData.queries_yaml_to_dict(QUERIES_YAML) + + @classmethod + def teardown_class(cls) -> None: + cls.session.query(models.Organisation).delete() + cls.session.commit() + cls.session.close() + + @classmethod + def run_test_smart_search_endpoint( + cls, query: Query + ) -> schemas.AlgoritmeQueryResponse | None: + json_file = GenTestData.find_file_by_id(id=query.id, data_dir=TESTDATA_DIR) + if not json_file: + raise RuntimeError(f"Failed to find json_file with id: {query.id}") + + ConfigMockDB.algoritme_version_json_to_db( + filepath=TESTDATA_DIR / json_file, session=cls.session + ) + + return GenTestData.calling_smart_search_endpoint(cls.client, query) + + @classmethod + def run_test_suggestion_endpoint( + cls, query: Query + ) -> schemas.SearchSuggestionResponse | None: + json_file = GenTestData.find_file_by_id(id=query.id, data_dir=TESTDATA_DIR) + if not json_file: + raise RuntimeError(f"Failed to find json_file with id: {query.id}") + + ConfigMockDB.algoritme_version_json_to_db( + filepath=TESTDATA_DIR / json_file, session=cls.session + ) + + return GenTestData.calling_suggestion_endpoint(cls.client, query) + + @classmethod + def assert_response_smart_search( + cls, query: Query, response: schemas.AlgoritmeQueryResponse + ) -> None: + delayed_assert.expect( + response.total_count == len(query.expected), + f"Assertion fails for query: {query.woord}, { response.total_count } != {len(query.expected)},\ + because amount expected does not match results amount", + ) + delayed_assert.expect( + (cast(int, item.lars) in query.expected for item in response.results), + f"Assertion fails for query: {query.woord}", + ) + + @classmethod + def assert_response_suggestion( + cls, query: Query, response: schemas.SearchSuggestionResponse + ) -> None: + delayed_assert.expect( + (cast(int, item.lars) in query.expected for item in response.algorithms), + f"Assertion fails for query: {query.woord}", + ) + + def test_synonyms(self): + if not self.queries.synoniemen: + pytest.skip("No synoniemen given") + + for query in self.queries.synoniemen: + response = self.run_test_smart_search_endpoint(query) + if not response: + raise NoDataError( + f"No data retrieved for query {query.woord}; Check database" + ) + self.assert_response_smart_search(query, response) + delayed_assert.assert_expectations() + + def test_combinations(self) -> None: + if not self.queries.combinaties: + pytest.skip("No combinaties given") + + for query in self.queries.combinaties: + response = self.run_test_smart_search_endpoint(query) + if not response: + raise NoDataError( + f"No data retrieved for query {query.woord}; Check database" + ) + self.assert_response_smart_search(query, response) + delayed_assert.assert_expectations() + + def test_spelling_mistakes(self): + if not self.queries.spelfouten: + pytest.skip("No spelfouten given") + + for query in self.queries.spelfouten: + response = self.run_test_smart_search_endpoint(query) + if not response: + raise NoDataError( + f"No data retrieved for query {query.woord}; Check database" + ) + self.assert_response_smart_search(query, response) + delayed_assert.assert_expectations() + + def test_search_suggestion(self): + if not self.queries.suggesties: + pytest.skip("No suggesties given") + + for query in self.queries.suggesties: + response = self.run_test_suggestion_endpoint(query) + if not response: + raise NoDataError( + f"No data retrieved for query {query.woord}; Check database" + ) + self.assert_response_suggestion(query, response) + delayed_assert.assert_expectations() diff --git a/backend/tests/test_translator.py b/backend/tests/test_translator.py new file mode 100644 index 00000000..5e0bf5c7 --- /dev/null +++ b/backend/tests/test_translator.py @@ -0,0 +1,214 @@ +import json +from app.util.logger import get_logger +from app import models, schemas +from app.middleware.middleware import get_db +from app.controllers.algoritme_version.endpoints import apply_translation +from app.services.translation import AutoTranslator +from app.services.translation.base_translator import TranslationResult, Translator +from app.repositories import AlgoritmeVersionRepository, ActionHistoryRepository + +"""Test all controllers""" + +logger = get_logger(__name__) + + +def add(self, item: schemas.AlgoritmeVersionIn) -> schemas.AlgoritmeVersionDB: + fields_to_add = { + "id": 0, + "lars": "00000000", + "owner": "", + "code": "" + } + schema = schemas.AlgoritmeVersionDB(**item.dict(), **fields_to_add) + return schema + + +def _cloud_translate(self, original_values: str | list, html=False) -> None | list: + if isinstance(original_values, list): + return [None for _ in original_values] + return None + + +translation_result = TranslationResult( + error=None, fields={}, used_service="MockTranslator" +) + + +class TestTranslator: + def setup_class(self): + self.db = next(get_db()) + + def teardown_class(self): + self.db.close() + + def test_apply_translation_v010(self, mocker): + filename = "tests/translation_files/v0_1.json" + with open(filename, "r") as file: + data = json.load(file) + schema_in = schemas.AlgoritmeVersionIn(**data[0]) + reference = schemas.AlgoritmeVersionContent(**data[1]) + + mocker.patch.object( + AlgoritmeVersionRepository, + "add", + add, + ) + + mocker.patch.object( + Translator, + "_cloud_translate", + _cloud_translate, + ) + + mocker.patch.object( + AutoTranslator, + "translate", + return_value=translation_result, + ) + + mocker.patch.object( + ActionHistoryRepository, + "add", + lambda x, y: None, + ) + + algo = models.AlgoritmeVersion(**schema_in.dict()) + result = apply_translation(algo, self.db, "translator") + compare_result = schemas.AlgoritmeVersionContent(**result.dict()) + for key in dict(schema_in).keys(): + if key not in dict(reference).keys(): + continue + in_value = getattr(schema_in, key) + reference_value = getattr(reference, key) + generated_value = getattr(compare_result, key) + + print( + f"key: {key}, In: {in_value}, Out: {generated_value}, Expected: {reference_value}" + ) + if key == "standard_version": + assert generated_value == "0.1" + continue + if in_value == "NIET VERTAALT": + assert generated_value == "NIET VERTAALT" + elif in_value == "AUTOMATISCH VERTAALT": + assert generated_value != "AUTOMATISCH VERTAALT" + elif not in_value: + assert not generated_value + else: # Expecting default translation + assert generated_value == reference_value + + def test_apply_translation_v040(self, mocker): + filename = "tests/translation_files/v0_4.json" + with open(filename, "r") as file: + data = json.load(file) + schema_in = schemas.AlgoritmeVersionIn(**data[0]) + reference = schemas.AlgoritmeVersionContent(**data[1]) + + mocker.patch.object( + AlgoritmeVersionRepository, + "add", + add, + ) + + mocker.patch.object( + Translator, + "_cloud_translate", + _cloud_translate, + ) + + mocker.patch.object( + AutoTranslator, + "translate", + return_value=translation_result, + ) + + mocker.patch.object( + ActionHistoryRepository, + "add", + lambda x, y: None, + ) + + algo = models.AlgoritmeVersion(**schema_in.dict()) + result = apply_translation(algo, self.db, "translator") + compare_result = schemas.AlgoritmeVersionContent(**result.dict()) + + for key in dict(schema_in).keys(): + in_value = getattr(schema_in, key) + if key not in dict(reference).keys(): + continue + reference_value = getattr(reference, key) + generated_value = getattr(compare_result, key) + + print( + f"key: {key}, In: {in_value}, Out: {generated_value}, Expected: {reference_value}" + ) + if key == "standard_version": + assert generated_value == "0.4" + continue + + if in_value == "NIET VERTAALT": + assert generated_value in ("NIET VERTAALT", "NIET...") + elif in_value == "AUTOMATISCH VERTAALT": + assert generated_value != "AUTOMATISCH VERTAALT" + elif not in_value: + assert not generated_value + else: # Expecting default translation + assert generated_value == reference_value + + def test_apply_translation_v100(self, mocker): + filename = "tests/translation_files/v1_0.json" + with open(filename, "r") as file: + data = json.load(file) + schema_in = schemas.AlgoritmeVersionIn(**data[0]) + reference = schemas.AlgoritmeVersionContent(**data[1]) + + mocker.patch.object( + AlgoritmeVersionRepository, + "add", + add, + ) + + mocker.patch.object( + Translator, + "_cloud_translate", + _cloud_translate, + ) + + mocker.patch.object( + AutoTranslator, + "translate", + return_value=translation_result, + ) + + mocker.patch.object( + ActionHistoryRepository, + "add", + lambda x, y: None, + ) + + algo = models.AlgoritmeVersion(**schema_in.dict()) + result = apply_translation(algo, self.db, "translator") + compare_result = schemas.AlgoritmeVersionContent(**result.dict()) + + for key in dict(schema_in).keys(): + in_value = getattr(schema_in, key) + if key not in dict(reference).keys(): + continue + reference_value = getattr(reference, key) + generated_value = getattr(compare_result, key) + + print( + f"key: {key}, In: {in_value}, Out: {generated_value}, Expected: {reference_value}" + ) + if key == "standard_version": + assert generated_value == "1.0" + continue + + if in_value == "NIET VERTAALT": + assert generated_value in ("NIET VERTAALT", "NIET...") + elif in_value == "AUTOMATISCH VERTAALT": + assert generated_value != "AUTOMATISCH VERTAALT" + elif not in_value: + assert not generated_value + else: # Expecting default translation + assert generated_value == reference_value diff --git a/backend/tests/test_upc.py b/backend/tests/test_upc.py new file mode 100644 index 00000000..67b6fe83 --- /dev/null +++ b/backend/tests/test_upc.py @@ -0,0 +1,24 @@ +from app.util import upc + + +# test find_new_upc +def test_find_new_upc(): + """Tests the find_new_upc function.""" + + new_upc = upc.find_new_upc([]) + assert len(str(new_upc)) == 8 + + +def test_validate_upc(): + """Tests the validate_upc function.""" + + new_upc = upc.find_new_upc(avoid_upc_list=[]) + assert upc.validate_upc(new_upc) + + if new_upc[-1] != 9: + wrong_upc = str(int(new_upc) + 1) + else: + wrong_upc = str(int(new_upc) - 1) + assert not upc.validate_upc(wrong_upc) + assert not upc.validate_upc("test") + assert not upc.validate_upc("000") diff --git a/backend/tests/test_word_download.py b/backend/tests/test_word_download.py new file mode 100644 index 00000000..d4bbf4d1 --- /dev/null +++ b/backend/tests/test_word_download.py @@ -0,0 +1,103 @@ +import pytest +import json +from fastapi.responses import StreamingResponse +from fastapi.exceptions import HTTPException + +from app.controllers import word_download +from app.middleware.middleware import get_db +from app import schemas + +db = next(get_db()) + + +def dummy_org_data() -> list[schemas.AlgoritmeVersionDB]: + filename = "tests/files/db_output_1.json" + with open(filename, "r") as file: + content = json.load(file) + + return [schemas.AlgoritmeVersionDB(**c) for c in content] + + +def mocked_db_org_data() -> list[schemas.AlgoritmeVersionDB]: + mock_db_response = dummy_org_data() + return mock_db_response + + +def test_get_org_data(mocker): + content = dummy_org_data() + mock_db_response = mocked_db_org_data() + mocker.patch( + "app.controllers.word_download.AlgoritmeVersionRepository.get_latest_by_org_by_lang", + return_value=mock_db_response, + ) + org_name = "sandbox" + response = word_download.get_org_data(db, org_name) + for i, algorithm in enumerate(response): + assert algorithm.name == content[i].name + assert algorithm.standard_version == content[i].standard_version + assert algorithm.lars == content[i].lars + + +def test_get_algo_data(mocker): + content = dummy_org_data()[0] + mock_db_response = mocked_db_org_data()[0] + mocker.patch( + "app.controllers.word_download.AlgoritmeVersionRepository.get_latest_by_lars_by_lang", + return_value=mock_db_response, + ) + response = word_download.get_algo_data(db, content.lars) + + if not response: + raise ValueError + assert response.name == content.name + assert response.standard_version == content.standard_version + assert response.lars == content.lars + + +def test_generate_word_download1(mocker): + mock_db_response = mocked_db_org_data() + mocker.patch( + "app.controllers.word_download.AlgoritmeVersionRepository.get_latest_by_org_by_lang", + return_value=mock_db_response, + ) + + org_name = "sandbox" + response = word_download.generate_word_download(db, org_name=org_name) + assert isinstance(response, StreamingResponse) + + +def test_generate_word_download2(mocker): + mock_db_response = mocked_db_org_data()[0] + mocker.patch( + "app.controllers.word_download.AlgoritmeVersionRepository.get_latest_by_lars_by_lang", + return_value=mock_db_response, + ) + + lars = "mock_lars" + response = word_download.generate_word_download(db, lars=lars) + assert isinstance(response, StreamingResponse) + + with pytest.raises(Exception): + word_download.generate_word_download(db) + + mocker.patch( + "app.controllers.word_download.get_one_algorithm_doc", + return_value=(None, "mock_filename"), + ) + with pytest.raises(HTTPException): + word_download.generate_word_download(db, lars=lars) + + +def test_get_one_algorithm_doc(mocker): + # Only empty data is tested + mocker.patch("app.controllers.word_download.get_algo_data", return_value=None) + lars = "mock_lars" + response = word_download.get_one_algorithm_doc(db, lars) + assert response == (None, None) + + +def test_get_all_algorithm_doc(mocker): + mocker.patch("app.controllers.word_download.get_org_data", return_value=[]) + lars = "mock_lars" + response = word_download.get_all_algorithm_doc(db, lars) + assert response == (None, None) diff --git a/backend/tests/translation_files/v0_1.json b/backend/tests/translation_files/v0_1.json new file mode 100644 index 00000000..43c53630 --- /dev/null +++ b/backend/tests/translation_files/v0_1.json @@ -0,0 +1,89 @@ +[ + { + "algoritme_id": "0", + "language": "NLD", + "create_dt": "2023-03-31 08:34:11.986578+00:00", + "name": "AUTOMATISCH VERTAALT", + "organization": "Autoriteit Persoonsgegevens", + "department": "NIET VERTAALT", + "description_short": "AUTOMATISCH VERTAALT", + "type": "AUTOMATISCH VERTAALT", + "category": "AUTOMATISCH VERTAALT", + "website": "NIET VERTAALT", + "status": "AUTOMATISCH VERTAALT", + "goal": "AUTOMATISCH VERTAALT", + "impact": "AUTOMATISCH VERTAALT", + "proportionality": "AUTOMATISCH VERTAALT", + "decision_making_process": "AUTOMATISCH VERTAALT", + "documentation": "NIET VERTAALT", + "competent_authority": "AUTOMATISCH VERTAALT", + "lawful_basis": "AUTOMATISCH VERTAALT", + "iama": "AUTOMATISCH VERTAALT", + "iama_description": "AUTOMATISCH VERTAALT", + "dpia": "AUTOMATISCH VERTAALT", + "dpia_description": "AUTOMATISCH VERTAALT", + "objection_procedure": "AUTOMATISCH VERTAALT", + "standard_version": "0.1", + "uuid": "NIET VERTAALT", + "url": "NIET VERTAALT", + "contact_email": "NIET VERTAALT", + "area": "AUTOMATISCH VERTAALT", + "lang": "AUTOMATISCH VERTAALT", + "revision_date": "NIET VERTAALT", + "description": "AUTOMATISCH VERTAALT", + "application_url": "NIET VERTAALT", + "publiccode": "NIET VERTAALT", + "mprd": "AUTOMATISCH VERTAALT", + "source_data": "AUTOMATISCH VERTAALT", + "methods_and_models": "AUTOMATISCH VERTAALT", + "monitoring": "AUTOMATISCH VERTAALT", + "human_intervention": "AUTOMATISCH VERTAALT", + "risks": "AUTOMATISCH VERTAALT", + "performance_standard": "AUTOMATISCH VERTAALT", + "state": "STATE_1" + }, + { + "algoritme_id": "0", + "language": "NLD", + "create_dt": "2023-03-31 08:34:11.986578+00:00", + "name": null, + "organization": "Dutch Data Protection Authority", + "department": "NIET VERTAALT", + "description_short": null, + "type": null, + "category": null, + "website": "NIET VERTAALT", + "status": null, + "goal": null, + "impact": null, + "proportionality": null, + "decision_making_process": null, + "documentation": "NIET VERTAALT", + "competent_authority": null, + "lawful_basis": null, + "iama": null, + "iama_description": null, + "dpia": null, + "dpia_description": null, + "objection_procedure": null, + "standard_version": "0.1", + "uuid": "NIET VERTAALT", + "url": "NIET VERTAALT", + "contact_email": "NIET VERTAALT", + "area": null, + "lang": null, + "revision_date": "NIET VERTAALT", + "description": null, + "application_url": "NIET VERTAALT", + "publiccode": "NIET VERTAALT", + "mprd": null, + "source_data": null, + "methods_and_models": null, + "monitoring": null, + "human_intervention": null, + "risks": null, + "performance_standard": null, + "released": true, + "state": "STATE_1" + } +] \ No newline at end of file diff --git a/backend/tests/translation_files/v0_4.json b/backend/tests/translation_files/v0_4.json new file mode 100644 index 00000000..802d7b38 --- /dev/null +++ b/backend/tests/translation_files/v0_4.json @@ -0,0 +1,86 @@ +[ + { + "algoritme_id": "0", + "language": "NLD", + "create_dt": "2023-03-31 08:34:11.986578+00:00", + "name": "AUTOMATISCH VERTAALT", + "organization": "Autoriteit Persoonsgegevens", + "description_short": "AUTOMATISCH VERTAALT", + "type": "Ja", + "category": [ + "Bestuur", + "Cultuur en recreatie" + ], + "website": "NIET VERTAALT", + "status": "In ontwikkeling", + "goal": "AUTOMATISCH VERTAALT", + "proportionality": "AUTOMATISCH VERTAALT", + "lawful_basis": "AUTOMATISCH VERTAALT", + "iama": "Ja", + "iama_description": "AUTOMATISCH VERTAALT", + "dpia": "Ja", + "standard_version": "0.4", + "uuid": "NIET VERTAALT", + "url": "NIET VERTAALT", + "contact_email": "NIET VERTAALT", + "lang": "AUTOMATISCH VERTAALT", + "publiccode": "NIET VERTAALT", + "source_data": "AUTOMATISCH VERTAALT", + "methods_and_models": "AUTOMATISCH VERTAALT", + "human_intervention": "AUTOMATISCH VERTAALT", + "risks": "AUTOMATISCH VERTAALT", + "provider": "AUTOMATISCH VERTAALT", + "tags": "AUTOMATISCH VERTAALT", + "source_id": "NIET VERTAALT", + "begin_date": "NIET VERTAALT", + "end_date": "NIET VERTAALT", + "lawful_basis_link": "NIET VERTAALT", + "impacttoetsen": [ + "Data Protection Impact Assessment (DPIA)" + ], + "source_data_link": "NIET VERTAALT", + "state": "STATE_1" + }, + { + "algoritme_id": "0", + "language": "NLD", + "create_dt": "2023-03-31 08:34:11.986578+00:00", + "name": null, + "organization": "Dutch Data Protection Authority", + "description_short": null, + "type": "Yes", + "category": [ + "Board", + "Culture and Recreation" + ], + "website": "NIET VERTAALT", + "status": "In development", + "goal": null, + "proportionality": null, + "lawful_basis": null, + "iama": "Yes", + "iama_description": null, + "dpia": "Yes", + "standard_version": "0.4", + "uuid": "NIET VERTAALT", + "url": "NIET VERTAALT", + "contact_email": "NIET VERTAALT", + "lang": null, + "publiccode": "NIET VERTAALT", + "source_data": null, + "methods_and_models": null, + "human_intervention": null, + "risks": null, + "provider": null, + "tags": null, + "source_id": "NIET VERTAALT", + "begin_date": "NIET...", + "end_date": "NIET...", + "lawful_basis_link": null, + "impacttoetsen": [ + "Data Protection Impact Assessment (DPIA)" + ], + "source_data_link": "NIET VERTAALT", + "state": "STATE_1" + } +] \ No newline at end of file diff --git a/backend/tests/translation_files/v1_0.json b/backend/tests/translation_files/v1_0.json new file mode 100644 index 00000000..2088016b --- /dev/null +++ b/backend/tests/translation_files/v1_0.json @@ -0,0 +1,78 @@ +[ + { + "algoritme_id": "0", + "language": "NLD", + "create_dt": "2023-03-31 08:34:11.986578+00:00", + "name": "AUTOMATISCH VERTAALT", + "organization": "Autoriteit Persoonsgegevens", + "description_short": "AUTOMATISCH VERTAALT", + "category": [ + "Bestuur", + "Cultuur en recreatie" + ], + "website": "NIET VERTAALT", + "status": "In ontwikkeling", + "goal": "AUTOMATISCH VERTAALT", + "proportionality": "AUTOMATISCH VERTAALT", + "lawful_basis": "AUTOMATISCH VERTAALT", + "lawful_basis_grouping": [], + "dpia": "Ja", + "standard_version": "1.0", + "uuid": "NIET VERTAALT", + "url": "NIET VERTAALT", + "contact_email": "NIET VERTAALT", + "lang": "AUTOMATISCH VERTAALT", + "publiccode": "NIET VERTAALT", + "source_data": "AUTOMATISCH VERTAALT", + "source_data_grouping": [], + "methods_and_models": "AUTOMATISCH VERTAALT", + "human_intervention": "AUTOMATISCH VERTAALT", + "risks": "AUTOMATISCH VERTAALT", + "provider": "AUTOMATISCH VERTAALT", + "tags": "AUTOMATISCH VERTAALT", + "source_id": "NIET VERTAALT", + "begin_date": "NIET VERTAALT", + "end_date": "NIET VERTAALT", + "impacttoetsen": "AUTOMATISCH VERTAALT", + "impacttoetsen_grouping": [], + "state": "STATE_1" + }, + { + "algoritme_id": "0", + "language": "NLD", + "create_dt": "2023-03-31 08:34:11.986578+00:00", + "name": null, + "organization": "Dutch Data Protection Authority", + "description_short": null, + "category": [ + "Board", + "Culture and Recreation" + ], + "website": "NIET VERTAALT", + "status": "In development", + "goal": null, + "proportionality": null, + "lawful_basis": null, + "lawful_basis_grouping": [], + "dpia": "Yes", + "standard_version": "0.4", + "uuid": "NIET VERTAALT", + "url": "NIET VERTAALT", + "contact_email": "NIET VERTAALT", + "lang": null, + "publiccode": "NIET VERTAALT", + "source_data": null, + "source_data_grouping": [], + "methods_and_models": null, + "human_intervention": null, + "risks": null, + "provider": null, + "tags": null, + "source_id": "NIET VERTAALT", + "begin_date": "NIET...", + "end_date": "NIET...", + "impacttoetsen": null, + "impacttoetsen_grouping": [], + "state": "STATE_1" + } +] \ No newline at end of file diff --git a/backend/type_check.sh b/backend/type_check.sh new file mode 100644 index 00000000..3e19fbf8 --- /dev/null +++ b/backend/type_check.sh @@ -0,0 +1,7 @@ +set -e + +PYRIGHT_PYTHON_FORCE_VERSION=v1.1.332 +poetry run python -m black app tests common alembic/versions +poetry run python -m flake8 app tests common +poetry run pyright app tests common +# poetry run isort app --check-only \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index c8a8480b..00000000 --- a/docker-compose.yml +++ /dev/null @@ -1,10 +0,0 @@ -version: "3.7" - -services: - nuxt-static: - image: httpd:2.4 - restart: always - volumes: - - ./frontend/.output/public/:/usr/local/apache2/htdocs - ports: - - 8080:80 diff --git a/etl/.flake8 b/etl/.flake8 new file mode 100644 index 00000000..6deafc26 --- /dev/null +++ b/etl/.flake8 @@ -0,0 +1,2 @@ +[flake8] +max-line-length = 120 diff --git a/etl/.python-version b/etl/.python-version new file mode 100644 index 00000000..d2c96c0a --- /dev/null +++ b/etl/.python-version @@ -0,0 +1 @@ +3.11.3 diff --git a/etl/Dockerfile b/etl/Dockerfile new file mode 100644 index 00000000..0a63f4d8 --- /dev/null +++ b/etl/Dockerfile @@ -0,0 +1,51 @@ +FROM <..>./algreg_etl_base AS buildstep + +# Make sure these are set, either here or in the base image. +ENV YOUR_ENV=${YOUR_ENV} +# ENV YOUR_ENV=${YOUR_ENV} \ +# PYTHONFAULTHANDLER=1 \ +# PYTHONUNBUFFERED=1 \ +# PYTHONHASHSEED=random \ +# PIP_NO_CACHE_DIR=off \ +# PIP_DISABLE_PIP_VERSION_CHECK=on \ +# PIP_DEFAULT_TIMEOUT=100 \ +# POETRY_VERSION=1.2.2 + +WORKDIR /etl + +ADD /etl/app /etl/app +ADD /etl/common /etl/common +COPY /etl/poetry.lock /etl/poetry.lock +COPY /etl/pyproject.toml /etl/pyproject.toml +COPY /etl/start.sh /etl/start.sh + + +RUN poetry config virtualenvs.create false +RUN poetry install --without dev --no-interaction --no-ansi + +FROM <..>./python:3.11.1-lunar-devops_base_0.2 +WORKDIR /etl +COPY --from=buildstep /etl /etl + +# Copy python binaries ensuring a clean install without overhead +COPY --from=buildstep /usr/local/lib /usr/local/lib +RUN ln -f -s /usr/bin/python3.11 /usr/bin/python3 +ENV PYTHONPATH="${PYTHONPATH}:/usr/local/lib/python3.11/site-packages" + +# remove unused dist-packages to prevent false positives for trivy +RUN rm -rf /usr/local/lib/python3.11/dist-packages + +# add testing tools +# RUN pip install pytest==7.3.1 coverage==7.2.7 + +# # add non root user for security with home directory for test files +RUN groupadd -r nonroot &&\ + useradd -r -g nonroot nonroot +RUN chown -R nonroot:nonroot /etl + +# make start.sh executable +RUN chmod 777 /etl/start.sh + +USER nonroot +EXPOSE 8000:8000 +CMD ["./start.sh"] diff --git a/etl/app/config/config.py b/etl/app/config/config.py new file mode 100644 index 00000000..7b849a90 --- /dev/null +++ b/etl/app/config/config.py @@ -0,0 +1,62 @@ +# columns will be renamed, but these are needed from the json +df_organisation_columns = ["code", "type", "show_page"] + +df_organisation_details_columns = ["name", "language", "contact_info", "about"] + +df_algoritme_columns = ["lars", "create_dt"] + +df_algoritme_version_columns = [ + "name", + "organization", + "department", + "description_short", + "type", + "category", + "website", + "status", + "goal", + "impact", + "proportionality", + "decision_making_process", + "documentation", + "competent_authority", + "lawful_basis", + "iama", + "iama_description", + "dpia", + "dpia_description", + "objection_procedure", + "standard_version", + "uuid", + "url", + "contact_email", + "area", + "lang", + "revision_date", + "description", + "application_url", + "publiccode", + "mprd", + "source_data", + "methods_and_models", + "monitoring", + "human_intervention", + "risks", + "performance_standard", + "create_dt", + "state", + "provider", + "process_index_url", + "tags", + "source_id", + "begin_date", + "end_date", + "lawful_basis_link", + "impacttoetsen", + "source_data_link", + "language", + "publication_category", + "lawful_basis_grouping", + "impacttoetsen_grouping", + "source_data_grouping", +] diff --git a/etl/app/data.json b/etl/app/data.json new file mode 100644 index 00000000..037d6161 --- /dev/null +++ b/etl/app/data.json @@ -0,0 +1,274 @@ +{ + "algoritme_versions": [ + { + "name": "Druktebeeld (NL)", + "organization": "Gemeente Amsterdam", + "department": "CTO Innovatieteam", + "description_short": "Druktebeeld is een webapp, die een beeld geeft van de actuele drukte in de stad door verschillende informatiebronnen samen te brengen. Het laat bijvoorbeeld zien hoeveel bezoekers er op een locatie zijn of welke parkeerplaatsen in gebruik zijn. Om dit beeld te krijgen, maken we gebruik van de locatiegegevens van de bezoekers via bijvoorbeeld de webapp Weeronline.", + "type": "", + "category": "", + "website": "https://algoritmeregister.amsterdam.nl/druktebeeld-nl/", + "status": "", + "goal": "", + "impact": "", + "proportionality": "", + "decision_making_process": "", + "documentation": "https://algoritmeregister.amsterdam.nl/druktebeeld-nl/", + "competent_authority": "Directie", + "lawful_basis": "", + "iama": "", + "iama_description": "", + "dpia": "", + "dpia_description": "", + "objection_procedure": "", + "standard_version": "0.1", + "uuid": "", + "url": "", + "contact_email": "innovatie@amsterdam.nl", + "area": "Amsterdam", + "lang": "Nederlands", + "revision_date": "", + "description": "Drukte in de openbare ruimte is al jaren een probleem in Amsterdam. Sinds de coronapandemie is het alleen maar belangrijker geworden om een goed beeld te hebben van de drukte in de stad. Druktebeeld is een webapp, die een beeld geeft van de actuele drukte in de stad door verschillende informatiebronnen samen te brengen. Het laat bijvoorbeeld zien hoeveel bezoekers er op een locatie zijn of welke parkeerplaatsen in gebruik zijn. Om dit beeld te krijgen, maken we gebruik van de locatiegegevens van de bezoekers via bijvoorbeeld de webapp Weeronline.\r\n\r\nDruktebeeld is bedoeld om het publiek te informeren over de drukte in de openbare ruimte. Mensen kunnen zien hoe druk het ergens is, en er vervolgens voor kiezen om er op een rustiger moment naartoe te gaan, of om een andere route te nemen. Bovendien helpt Druktebeeld de gemeente bij het managen van drukte als dat nodig is.", + "application_url": "", + "publiccode": "", + "mprd": "", + "source_data": "CMSA\r\n\r\nHet Crowd Monitoring Systeem Amsterdam (CMSA) geeft informatie over het aantal passanten op een aantal drukke plekken in de stad. Het gaat hier om voetgangers. De gegevens zijn anoniem. In CMSA worden vooral 2D- en 3D-sensoren gebruikt. Hiermee meten we hoe druk het ergens is. “Door data te verzamelen over aantallen, dichtheden en stromen voetgangers, is het mogelijk slimmere maatregelen te nemen om drukte goed te laten verlopen.” Zie hiervoor de link https://www.amsterdam.nl/privacy/specifieke/privacyverklaring-parkeren-verkeer-bouw/crowdmanagement/)\r\n\r\nhttps://api.data.amsterdam.nl/v1/crowdmonitor/passanten/?format=api\r\n\r\nResono\r\n\r\nOm de drukte in parken, op pleinen en in winkelgebieden in de stad aan te geven, maken we gebruik van gegevens van het bedrijf Resono. “Resono meet drukte op elke gewenste locatie met een mobiel panel van meer dan een miljoen mensen. Hiermee maken we een nauwkeurige schatting van de drukte binnen een bepaald tijdsbestek. Locaties kunnen variëren in oppervlakte en type. Denk bijvoorbeeld aan een winkel, winkelgebied, parkeerplaats, wijk of stad. Met Resono hebben klanten integraal inzicht in bezoekersgedrag.” (vertaald van reso.no) De gemeente bepaalt voor welke gebieden Resono de gegevens verzamelt. De dataset bevat een schatting van het aantal bewegende personen binnen die gebieden, per kwartier. De gemeente krijgt dus geen informatie over personen, alleen samengevoegde gegevens. Resono voldoet aan de Nederlandse en Europese privacywetgeving. Ze hebben geen persoonlijke informatie over mensen (zoals leeftijd, geslacht), alleen anonieme locatiegegevens. Het privacybeleid van Resono vindt u hier: https://reso.no/privacy-policy/\r\n\r\nParkeergaragebezetting\r\n\r\nDeze bron geeft bijna realtime de beschikbaarheid weer van parkeerlocaties in Amsterdam, waaronder enkele P+R-locaties. Het gaat om openbare parkeergarages en -terreinen, met een focus op grote locaties (200+ plekken) in de binnenstad. Het gaat hierbij dus niet om parkeren op straat. De gegevens komen van meerdere parkeerbeheersystemen, die de in- en uitrijdende auto’s tellen. De gegevens worden verzameld en eenduidig gemaakt door het bedrijf Vialis. Dit zijn open gegevens die dus door iedereen gebruikt kunnen worden. Het zijn gegevens over de capaciteit en het aantal vrije plekken per locatie. Er wordt onderscheid gemaakt tussen plekken die voor korte termijn kunnen worden gebruikt (bezoekers) en plekken die voor langere tijd kunnen worden gebruikt (abonnementen en licentiehouders). Volledige beschrijving: https://open.data.amsterdam.nl/uploads/actuele_beschikbaarheid_parkeergarages/Beschrijving%20Dataset%20-%20Actuele%20beschikbaarheid%20Parkeergarages%20v2.pdf\r\n\r\nNationaal Dataportaal Wegverkeer\r\n\r\nFloating car data van het Nationaal Dataportaal Wegverkeer. Dit zijn open data, gebaseerd op samengevoegde en anonieme gegevens uit navigatiesystemen. Ze worden geleverd door Be-Mobile. De data geven de gemiddelde snelheid weer die over de afgelopen 15 minuten werd gereden. Dit wordt vergeleken met de snelheid die daar gemiddeld wordt gereden. Op deze manier kunnen gebruikers zien of er vertragingen zijn.\r\n\r\nDe gegevens zijn geanonimiseerd.\r\n\r\nGemeentevervoerbedrijf (GVB)\r\n\r\nDe gemeente ontvangt wekelijks een overzicht van hoe vaak er op de haltes van het GVB wordt ingecheckt en uitgecheckt. Op basis van deze gegevens maken we een verwachting van de drukte voor de grote metrostations. De gegevens zijn anoniem en samengevoegd per uur met een minimum aantal in- of uitchecks van 15.", + "methods_and_models": "Modelarchitectuur\r\n\r\nVoor de visualisaties in Druktebeeld hebben we gebruik gemaakt van drie modellen, één voor iedere databron. Het doel van de modellen is om een waarde te vertalen naar een drukte-indicator:\r\nniet druk: makkelijk 1,5m afstand houden / voldoende parkeerplaatsen (kleur groen)\r\ndruk: mogelijk 1,5m afstand houden / weinig beschikbare parkeerplaatsen (kleur oranje)\r\nte druk: moeilijk/niet mogelijk om 1,5m afstand te houden / (bijna) geen beschikbare parkeerplaatsen (kleur rood)\r\nDrukte is enigszins subjectief. Het doel is om via de kleuren in Druktebeeld de gemiddelde drukte van de gebruikers van de app te laten zienw. Toen de 1,5m-maatregel werd afgeschaft, hebben we de definities van de kleuren aangepast. We gebruiken de feedback van gebruikers bij het instellen van druktedrempels (niet direct wanneer de gebruikers feedback geven). De modellen creëren twee drempelwaardes per locatie: drempelwaarde lage drukte en drempelwaarde hoge drukte. Deze waarden worden om de paar weken (Resono) of maanden (CMSA & parkeren) berekend en opgeslagen. Als de telling op een locatie, op een bepaald moment is:\r\nOnder druktedrempel laag, krijgt een locatie de aanduiding ‘niet druk’.\r\nTussen druktedrempel laag en druktedrempel hoog krijgt hij de aanduiding ‘druk’.\r\nBoven publieksdrempel hoog, krijgt het de aanduiding ‘te druk’.\r\nDeze drukte-indicaties worden elk kwartier per locatie (vanuit elke bron) berekend en weergegeven in de Druktebeeld-webapp.\r\nPassantenmodel (CMSA):\r\n\r\nHet doel van dit model is om drempels te creëren voor het aantal mensen dat een sensor passeert. De druktedrempels worden direct berekend op basis van de breedte van de straat waar de sensor zich bevindt. Op de Public Eye-pagina van het algoritmeregister (\r\nhttps://algoritmeregister.amsterdam.nl/public-eye/\r\n) lichten we dit nader toe. Voor sommige locaties kan het crowdmanagementteam van de gemeente de waarden aanpassen op basis van de feedback van de bezoekers.\r\nImpressiemodel (Resono):\r\n\r\nHet doel van dit model is om drempels te berekenen om in te schatten hoeveel mensen er in een bepaald gebied zijn. Het model is een beslisboom met de volgende input:\r\nhistorische Resono-gegevens;\r\ntype locatie (park/plein/winkelstraat);\r\noppervlakte (vierkante meter van het park/plein/winkelstraat);\r\nlengte van paden binnen het gebied (verzameld met OpenStreetMap);\r\nfeedback van de gebruikers van de webapp (input van\r\nhttps://druktebeeld.amsterdam.nl/feedback\r\n); en\r\nfeedback van het crowdmanagementteam van de gemeente.\r\nDe resulterende druktedrempels verschillen uiteraard per locatie.\r\nParkeren model:\r\n\r\nMet druktedata uit het verleden kunnen we een indicatie geven hoe groot de kans is dat een locatie vol raakt op het moment dat de gebruiker Druktebeeld controleert. De druktedata geven ook een indicatie of er voldoende tijd zit tussen het moment dat een gebruiker Druktebeeld raadpleegt en het moment dat hij arriveert op de parkeerlocatie en een plek vindt.\r\n\r\nDe bezettingsgraad wordt bepaald op basis van:\r\n\r\nde beschikbare plaatsen;\r\nde totale capaciteit per garage als het verschil tussen het totaal aantal beschikbare plaatsen; en\r\nde beschikbare plaatsen van de afgelopen 5 kwartier.\r\nOp dit moment gebruiken we alleen informatie over kort parkeren. De drempels worden per locatie bepaald door een analyse van historische gegevens. Voor de meeste locaties is de druktedrempel ‘laag’ vastgesteld op een bezetting van 90 procent. Onder dit percentage zijn er voldoende plekken. Voor deze locaties is de druktedrempel ‘hoog’ vastgesteld op 95 procent. Tussen de 90% en 95% zijn er voldoende plekken beschikbaar, maar de kans is groot dat deze binnen 30 minuten vol zijn. Voor sommige locaties kunnen sneller vol raken. Op die locaties zijn de drempels ‘laag’ en ‘hoog’ respectievelijk 80 procent en 90 procent.\r\nDrukteverwachtingen metrohaltes:\r\n\r\nWe maken een drukteverwachting voor de komende week op de metrohaltes. Daarvoor gebruiken we gegevens over in- en uitchecken uit het verleden, weersdata en de weersverwachting. De drempelwaardes zijn per halte vastgesteld, afhankelijk van hun oppervlakte.\r\n\r\nDe drukteverwachting wordt bepaald op basis van:\r\n\r\nAantal in- en uitchecks afgelopen jaar\r\nOppervlakte van de metrohalte\r\nWeerdata afgelopen week\r\nWeersverwachting komende week", + "monitoring": "", + "human_intervention": "Er worden geen geautomatiseerde besluiten genomen op basis van de modellen van Druktebeeld. Elke beslissing op basis van drukte wordt genomen door mensen, dat kunnen zowel ambtenaren als burgers zijn, met ondersteuning van de Druktebeeld-data en webapp.\r\n\r\nUit de ‘passer-by’- en ‘impression’-modellen komen massa-indicaties. Die worden gemonitord door om de paar weken een rapport uit te brengen. Dit rapport evalueert de invoergegevens, de gebruikersfeedback op de drukte-indicaties en de feedback van het crowdmanagementteam op de drukte-indicaties. Het rapport bevat tabellen en grafieken met gegevens en resultaten die onverwacht/onregelmatig lijken. Naar aanleiding van de resultaten van het rapport worden de modellen zo nodig aangepast.", + "risks": "De geïdentificeerde risico’s zijn:\r\n\r\nBesluit wordt genomen op onjuiste indicatie van menigte.\r\nBewoners/bezoekers hebben het gevoel dat ze bekeken worden door de gemeente.\r\nOnbedoeld gebruik van de informatie.\r\nDe gemeente heeft niet onafhankelijk kunnen vaststellen dat de data die Resono verkrijgt volledig geanonimiseerd zijn. ICT heeft een onafhankelijk onderzoek laten uitvoeren en heeft hiervoor een certificaat uitgegeven, zie risico ‘verkregen data’. Link: https://blog.reso.no/privacy-verified-certificering-toegekend-aan-resono-2/", + "performance_standard": "Key metric: drukte-indicatie (niet druk/druk/te druk) van het model is gelijk aan de crowd-indicatie van de gebruiker (feedback via de Druktebeeld-webapp). Prestaties (gemeten 29/1 – 22/2): 77% ", + "provider": null, + "process_index_url": null, + "tags": null, + "source_id": null, + "begin_date": null, + "end_date": null, + "lawful_basis_link": null, + "impacttoetsen": null, + "source_data_link": null, + "publication_category": null, + "lawful_basis_grouping": null, + "impacttoetsen_grouping": null, + "source_data_grouping": null, + "language": "NLD", + "owner": "gemeente-amsterdam", + "lars": "16268148", + "create_dt": "2023-03-31T08:34:12.029161+00:00", + "state": "PUBLISHED", + "published": true + }, + { + "name": "Print image (NL)", + "organization": "Municipality of Amsterdam", + "department": "CTO Innovatieteam", + "description_short": "Busy Image is a web app, which gives a picture of the current busyness in the city by bringing together different sources of information. It shows, for example, how many visitors are at a location or which parking spaces are in use. To get this picture, we use visitors' location data via, for example, the Weatheronline web app.", + "type": "", + "category": "", + "website": "https://algoritmeregister.amsterdam.nl/druktebeeld-nl/", + "status": "", + "goal": "", + "impact": "", + "proportionality": "", + "decision_making_process": "", + "documentation": "https://algoritmeregister.amsterdam.nl/druktebeeld-nl/", + "competent_authority": "Management", + "lawful_basis": "", + "iama": "", + "iama_description": "", + "dpia": "", + "dpia_description": "", + "objection_procedure": "", + "standard_version": "0.1", + "uuid": "", + "url": "", + "contact_email": "innovatie@amsterdam.nl", + "area": "Amsterdam", + "lang": "Dutch", + "revision_date": "", + "description": "Crowding in public spaces has been a problem in Amsterdam for years. Since the corona pandemic, it has only become more important to have a good picture of how busy the city is. Druktebeeld is a web app, which gives a picture of the current busyness in the city by bringing together different sources of information. It shows, for example, how many visitors are at a location or which parking spaces are in use. To get this picture, we use visitors' location data via, for example, the Weatheronline web app. Busy Image is designed to inform the public about how busy public spaces are. People can see how busy it is somewhere, and then choose to go there at a quieter time, or take a different route. Moreover, Druktebeeld helps the municipality manage crowds when necessary.", + "application_url": "", + "publiccode": "", + "mprd": "", + "source_data": "CMSA The Crowd Monitoring System Amsterdam (CMSA) provides information on the number of passers-by at a number of busy spots in the city. These are pedestrians. The data is anonymous. Mainly 2D and 3D sensors are used in CMSA. With these, we measure how busy somewhere is. \"By collecting data on numbers, densities and flows of pedestrians, it is possible to take smarter measures to manage crowds properly.\" See link https://www.amsterdam.nl/privacy/specifieke/privacyverklaring-parkeren-verkeer-bouw/crowdmanagement/) https://api.data.amsterdam.nl/v1/crowdmonitor/passanten/?format=api Resono To indicate crowds in parks, squares and shopping areas in the city, we use data from the company Resono. \"Resono measures crowds at any location with a mobile panel of more than a million people. With this, we make an accurate estimate of crowds within a given time frame. Locations can vary in area and type. Think, for example, of a shop, shopping area, car park, neighbourhood or city. With Resono, customers have integral insight into visitor behaviour.\" (translated from reso.no) The municipality decides for which areas Resono collects the data. The dataset contains an estimate of the number of moving people within those areas, per quarter of an hour. Thus, the municipality does not receive information on persons, only aggregated data. Resono complies with Dutch and European privacy laws. They have no personal information about people (such as age, gender), only anonymous location data. Resono's privacy policy can be found here: https://reso.no/privacy-policy/ Parking garage occupancy This source provides near real-time availability of parking locations in Amsterdam, including some P+R locations. These are public parking garages and lots, with a focus on large locations (200+ spots) in the city centre. This therefore does not include on-street parking. The data comes from multiple parking management systems, which count cars entering and exiting. The data are collected and unified by the company Vialis. These are open data that can therefore be used by anyone. It is data on capacity and the number of free spots per location. A distinction is made between spots that can be used for short periods of time (visitors) and spots that can be used for longer periods of time (subscriptions and licence holders). Full description: https://open.data.amsterdam.nl/uploads/actuele_beschikbaarheid_parkeergarages/Beschrijving%20Dataset%20-%20Actuele%20beschikbaarheid%20Parkeergarages%20v2.pdf National Data Portal Road Traffic Floating car data from the National Data Portal Road Traffic. These are open data based on aggregated and anonymous data from navigation systems. They are provided by Be-Mobile. The data show the average speed driven over the past 15 minutes. This is compared with the average speed driven there. This way, users can see if there are any delays. The data are anonymised. Gemeentevervoerbedrijf (GVB) The municipality receives a weekly overview of how often people check in and out at GVB stops. Based on this data, we make an expectation of crowding for the major metro stations. The data are anonymous and aggregated hourly with a minimum number of check-ins or check-outs of 15.", + "methods_and_models": "Model architecture For the visualisations in Busy Image, we used three models, one for each data source. The purpose of the models is to translate a value into a busyness indicator: not busy: easy to keep 1.5m distance / enough parking spaces (colour green) busy: possible to keep 1.5m distance / few available parking spaces (colour orange) too busy: difficult/not possible to keep 1.5m distance / (almost) no available parking spaces (colour red) Busyness is somewhat subjective. The aim is to show the average crowding of app users through the colours in Busy Imagew When the 1.5m measure was abolished, we changed the definitions of the colours. We use user feedback when setting pressure thresholds (not directly when users provide feedback). The models create two threshold values per location: low-pressure threshold and high-pressure threshold. These values are calculated and stored every few weeks (Resono) or months (CMSA & parking). If the count at a location, at a given time is: Below pressure threshold low, a location gets the indication \"not busy\". Between pressure threshold low and pressure threshold high, it gets the indication \"busy\". Above crowd threshold high, it gets the indication \"too busy\". These pressure indications are calculated every 15 minutes per location (from each source) and displayed in the Busy Image web app. Passer-by model (CMSA): The purpose of this model is to create thresholds for the number of people passing a sensor. Pressure thresholds are calculated directly based on the width of the street where the sensor is located. We explain this in more detail on the Public Eye page of the algorithm register ( https://algoritmeregister.amsterdam.nl/public-eye/ ). For some locations, the municipality's crowd management team can adjust values based on visitor feedback. Impression model (Resono): The purpose of this model is to calculate thresholds to estimate how many people are in a given area. The model is a decision tree with the following inputs: historical Resono data; type of location (park/square/shopping street); area (square metres of the park/square/shopping street); length of paths within the area (collected with OpenStreetMap); feedback from web app users (input from https://druktebeeld.amsterdam.nl/feedback ); and feedback from the municipality's crowd management team. The resulting pressure thresholds obviously differ per location. Parking model: With pressure data from the past, we can give an indication of how likely a location is to become full at the time the user checks Pressure View. The pressure data also gives an indication of whether there is sufficient time between the moment a user consults Druktebeeld and the moment he arrives at the parking location and finds a space. The occupancy rate is determined on the basis of: the available spaces; the total capacity per garage as the difference between the total number of available spaces; and the available spaces of the past 5 quarters of an hour. At the moment, we only use information on short-term parking. Thresholds are determined for each location by analysing historical data. For most locations, the pressure threshold 'low' is set at 90 per cent occupancy. Below this percentage, there are sufficient spaces. For these locations, the pressure threshold 'high' is set at 95 per cent. Between 90 per cent and 95 per cent, there are sufficient places available, but they are likely to be full within 30 minutes. For some locations, spaces may fill up faster. At those locations, the thresholds 'low' and 'high' are 80 per cent and 90 per cent respectively. Busy metro stops: We make a busy forecast for the coming week at metro stops. For this, we use past check-in and check-out data, weather data and the weather forecast. The threshold values are set for each stop, depending on their surface area. The bus density forecast is determined on the basis of: Number of check-ins and check-outs in the past year Surface area of the underground stop Weather data in the past week Weather forecast for the coming week", + "monitoring": "", + "human_intervention": "No automated decisions are made based on Druktebeeld's models. Every decision based on crowding is made by people, who can be either officials or citizens, with support from the Druktebeeld data and web app. From the 'pass-by' and 'impression' models come mass indications. These are monitored by issuing a report every few weeks. This report evaluates the input data, user feedback on the crowd indications and feedback from the crowd management team on the crowd indications. The report includes tables and graphs with data and results that appear unexpected/irregular. Following the results of the report, models are adjusted as necessary.", + "risks": "The risks identified are: Decision is made on incorrect indication of crowd. Residents/visitors feel they are being watched by the municipality. Unintended use of the information. The municipality has not been able to independently establish that the data obtained by Resono is fully anonymised. ICT has commissioned an independent investigation and issued a certificate for this, see risk 'data obtained'. Link: https://blog.reso.no/privacy-verified-certificering-toegekend-aan-resono-2/", + "performance_standard": "Key metric: crowd indication (not crowded/pressed/too crowded) of the model equals the crowd indication of the user (feedback via the Crowd Image web app). Performance (measured 29/1 - 22/2): 77% ", + "provider": null, + "process_index_url": null, + "tags": null, + "source_id": null, + "begin_date": null, + "end_date": null, + "lawful_basis_link": null, + "impacttoetsen": null, + "source_data_link": null, + "publication_category": null, + "lawful_basis_grouping": null, + "impacttoetsen_grouping": null, + "source_data_grouping": null, + "language": "ENG", + "owner": "gemeente-amsterdam", + "lars": "16268148", + "create_dt": "2023-03-31T08:34:12.029161+00:00", + "state": "PUBLISHED", + "published": true + }, + { + "name": "Wmo forecasting model", + "organization": "Municipality of The Hague", + "department": "Onderwijs, Cultuur en Welzijn", + "description_short": "The Wmo forecasting model provides a prediction of the number of unique users and costs of Wmo with a six-year forecast horizon. Predictions are made at district level for both the Wmo total and sub-products of the Wmo (Help with Household, Support at Home and Assistive Technology and Services). ", + "type": "Self-learning", + "category": null, + "website": null, + "status": "Active", + "goal": "The algorithm was developed because the municipality wants to have more insight into the use and costs of Wmo in the coming years. The population of The Hague is growing and ageing, as a result of which the use of Wmo is also expected to increase. The question is by how many people and in which districts of The Hague and for which Wmo facilities? The forecasting model answers these questions.", + "impact": "The forecasting model makes no statements about (chances of) individual citizens and models have been chosen that are explainable. This means that, as a municipality, we do not use models for which it is difficult to determine how the model arrived at a particular outcome (so-called Black Box models). The Wmo predictive model in no way replaces the knowledge and skills of our consultants and implementation. The tool is not intended for them, but mainly for policy and making and substantiating policy choices for the longer term. It is precisely through the knowledge of the Wmo-prediction model that we can anticipate in time and continue to better support all individuals. ", + "proportionality": "No alternatives were considered to achieve the goal. ", + "decision_making_process": "The insights from the Wmo forecasting model support policy and implementation in answering tactical and strategic questions. These are questions and topics that play a role in the longer term (e.g. 5 to 10 years). The model is not intended to answer operational questions (short-term issues) and does not involve automated decisions. ", + "documentation": null, + "competent_authority": "The Wmo prediction model does not use person characteristics.", + "lawful_basis": "There is no legal basis for the forecasting model, but the municipality is responsible for implementing the Wmo and the model allows the municipality to better anticipate expected developments and better support citizens.", + "iama": null, + "iama_description": null, + "dpia": "The Wmo prediction model does not use person characteristics.", + "dpia_description": null, + "objection_procedure": "Given the nature of the model, this is not regulated.", + "standard_version": "0.1", + "uuid": null, + "url": null, + "contact_email": null, + "area": null, + "lang": "Dutch", + "revision_date": null, + "description": "A regression model is used to estimate the relationship between Wmo use and predictors. This involves searching for the characteristics with the smallest prediction error (determined using the measures: RMSE, MAE and MAPE). The characteristics best able to predict Wmo use are used for forecasting. Forecasts are made within a prediction interval of 80 per cent. ", + "application_url": null, + "publiccode": null, + "mprd": "No", + "source_data": "Only open data was used, namely the file Kerncijfers Wijken en Buurten CBS and the file Wmo-cliënten; type maatwerkarrangement CBS.", + "methods_and_models": "The model is a regression model. The performance of this model is measured by the measures RMSE, MAE and MAPE. These are measures that variously determine how large the prediction error is. ", + "monitoring": "If it is necessary to build/train a new model, the privacy officer will be involved in the choice of features and an entirely new model will also revisit the ethical framework.", + "human_intervention": "There is no automated system. The insights from the prediction model can only be used through human intervention and with the context knowledge and experience of employees involved. ", + "risks": "The risks of the algorithm were identified in advance and during the construction of the prediction model. Because the prediction model does not make statements about individuals but about the use of facilities in neighbourhoods, there was no risk that the results from the model could violate the privacy of specific individuals. Furthermore, we only worked with neighbourhoods that were sufficiently large (more than 100 inhabitants) and where enough people used the Wmo (more than 100 users). One reason for this is that it does not allow for disclosure. That is, by combining characteristics, we cannot identify who the potential users of Wmo facilities are. Furthermore, when building the model, we weighed up together with the privacy officer which variables could and could not be included from a privacy perspective. Here, the AVG always formed the starting point. In addition, explainability of the model and the results is a relevant and decisive criterion. Finally, Utrecht University's The Ethical Data Assistant was used to identify possible ethical problems in advance. This led to the drafting of an ethical framework. The question of what role bias plays in the use of the algorithm is far too general a question, as there are many forms of bias. If it is bias aimed at specific population groups, it does not play a role in this model. We are not looking for specific individual people with specific characteristics, but want to estimate the use of Wmo in the whole neighbourhood and for all of The Hague.", + "performance_standard": "The model is updated annually. Forecasts from the old model are compared with forecasts from the new model and compared with realisations.", + "provider": null, + "process_index_url": null, + "tags": null, + "source_id": null, + "begin_date": null, + "end_date": null, + "lawful_basis_link": null, + "impacttoetsen": null, + "source_data_link": null, + "publication_category": null, + "lawful_basis_grouping": null, + "impacttoetsen_grouping": null, + "source_data_grouping": null, + "language": "ENG", + "owner": "gemeente-den-haag", + "lars": "97246956", + "create_dt": "2023-10-05T08:31:21.855889+00:00", + "state": "PUBLISHED", + "published": true + }, + { + "name": "Wmo-voorspelmodel", + "organization": "Gemeente Den Haag", + "department": "Onderwijs, Cultuur en Welzijn", + "description_short": "Het Wmo-voorspelmodel geeft een voorspelling van het aantal unieke gebruikers en de kosten van de Wmo met een voorspelhorizon van zes jaar. Voorspellingen worden gedaan op wijkniveau voor zowel de Wmo-totaal als voor deelproducten van de Wmo (Hulp bij het Huishouden, Ondersteuning thuis en Hulpmiddelen en Diensten). ", + "type": "Zelflerend", + "category": null, + "website": null, + "status": "Actief", + "goal": "Het algoritme is ontwikkeld omdat de gemeente meer inzicht wil hebben in het gebruik en de kosten van de Wmo de komende jaren. De Haagse bevolking groeit en vergrijst waardoor het gebruik van de Wmo ook naar verwachting gaat toenemen. De vraag is met hoeveel mensen en in welke Haagse wijken en voor welke Wmo-voorzieningen? Het voorspelmodel beantwoordt deze vragen.", + "impact": "Het voorspelmodel doet geen uitspraken over (kansen van) individuele burgers en er is gekozen voor modellen die uitlegbaar zijn. Dit betekent dat we als gemeente geen modellen gebruiken waarvan niet goed is vast te stellen hoe het model tot een bepaalde uitkomst is gekomen (zgn. Black Box modellen). Het Wmo-voorspelmodel vervangt op geen enkele manier de kennis en kunde van onze consulenten en uitvoering. Het instrument is voor hen niet bedoeld, maar vooral voor beleid en het maken en onderbouwen van beleidskeuzes voor de langere termijn. Juist door de kennis van het Wmo-voorspel kunnen we tijdig anticiperen en alle individuen beter blijven ondersteunen. ", + "proportionality": "Er zijn geen alternatieven overwogen om het doel te bereiken. ", + "decision_making_process": "Met de inzichten uit het Wmo-voorspelmodel wordt beleid en uitvoering ondersteund bij beantwoorden van tactische en strategische vragen. Dit zijn vragen en onderwerpen die op de langere termijn spelen (bijvoorbeeld 5 á 10 jaar). Het model is niet bedoeld voor het beantwoorden van operationele vragen (onderwerpen die op korte termijn spelen) en er is geen sprake van geautomatiseerde besluiten. ", + "documentation": null, + "competent_authority": "Het Wmo-voorspelmodel maakt geen gebruik van persoonskenmerken.", + "lawful_basis": "Er is geen wettelijke grondslag voor het voorspelmodel, maar de gemeente is verantwoordelijk voor de uitvoering van de Wmo en door het model kan de gemeente beter anticiperen op verwachte ontwikkelingen en burgers beter ondersteunen.", + "iama": null, + "iama_description": null, + "dpia": "Het Wmo-voorspelmodel maakt geen gebruik van persoonskenmerken.", + "dpia_description": null, + "objection_procedure": "Gezien de aard van het model is dit niet geregeld.", + "standard_version": "0.1", + "uuid": null, + "url": null, + "contact_email": null, + "area": null, + "lang": "Nederlands", + "revision_date": null, + "description": "Met een regressiemodel wordt de relatie tussen Wmo-gebruik en predictoren geschat. Daarbij wordt gezocht naar de kenmerken met de kleinste voorspelfout (vastgesteld aan de hand van de maten: RMSE, MAE en MAPE). De kenmerken die het best in staat zijn het gebruik van de Wmo te voorspellen worden gebruikt voor\nhet maken van een forecast. Voorspellingen worden gedaan binnen een predictie interval van 80 procent. ", + "application_url": null, + "publiccode": null, + "mprd": "Nee", + "source_data": "Er is alleen gebruikgemaakt van open data, namelijk van het bestand Kerncijfers Wijken en Buurten CBS en van het bestand Wmo-cliënten; type maatwerkarrangement CBS.", + "methods_and_models": "Het gaat om een regressie model. De prestaties van dit model worden afgemeten aan de hand van de maten RMSE, MAE en MAPE. Dit zijn maten die op verschillende manieren vaststellen hoe groot de voorspelfout is. ", + "monitoring": "Indien het noodzakelijk is een nieuw model te bouwen/te trainen, wordt de privacy officer betrokken bij de keuze van features en zal bij een geheel nieuw model ook opnieuw naar het ethisch kader worden gekeken.", + "human_intervention": "Er is geen sprake van een geautomatiseerd systeem. De inzichten uit het voorspelmodel kunnen alleen door tussenkomst van mensen en met de contextkennis en ervaring van betrokken medewerkers worden gebruikt. ", + "risks": "De risico's van het algoritme zijn vooraf en tijdens het bouwen van het voorspelmodel in kaart gebracht. Omdat het voorspelmodel geen uitspraken doet over individuele personen maar over het gebruik van voorzieningen in wijken, was er geen risico dat met de uitkomsten uit het model de privacy van specifieke individuele personen zou kunnen worden geschonden. Verder is alleen gewerkt met wijken die voldoende groot zijn (meer dan 100 inwoners) en waar voldoende mensen gebruikmaakten van de Wmo (meer dan 100 gebruikers). Een reden hiervoor is dat hierdoor geen onthulling mogelijk is. Dat wil zeggen dat we niet door het combineren van kenmerken kunnen vaststellen wie de mogelijke gebruikers van Wmo-voorzieningen zijn. Verder is bij het bouwen van het model samen met de privacy officer afgewogen welke variabelen wel en welke variabelen niet vanuit privacy overwegingen meegenomen konden worden. Hierbij vormde de AVG steeds het uitgangspunt. Daarnaast is uitlegbaarheid van het model en de uitkomsten een relevant en doorslaggevend criterium. Tenslotte is gebruikgemaakt van De Ethische Data Assistent van de Universiteit van Utrecht om mogelijke ethische problemen vooraf in kaart te brengen. Dit heeft geleid tot het opstellen van een ethisch kader. De vraag welke rol bias speelt in het gebruik van het algoritme is een veel te algemene vraag, aangezien er vele vormen van bias zijn. Als het gaat om vooringenomenheid gericht op specifieke bevolkingsgroepen, dan speelt dat bij dit model geen rol. We zijn niet op zoek naar specifieke individuele personen met specifieke kenmerken, maar willen een inschatting maken van het gebruik van de Wmo in de hele wijk en voor heel Den Haag.", + "performance_standard": "Het model wordt jaarlijks geactualiseerd. De voorspellingen van het oude model worden vergeleken met voorspellingen van het nieuwe model en vergeleken met de realisaties.", + "provider": null, + "process_index_url": null, + "tags": null, + "source_id": null, + "begin_date": null, + "end_date": null, + "lawful_basis_link": null, + "impacttoetsen": null, + "source_data_link": null, + "publication_category": null, + "lawful_basis_grouping": null, + "impacttoetsen_grouping": null, + "source_data_grouping": null, + "language": "NLD", + "owner": "gemeente-den-haag", + "lars": "97246956", + "create_dt": "2023-10-05T08:31:21.855889+00:00", + "state": "PUBLISHED", + "published": true + } + ], + "organisation_details": [ + { + "about": null, + "contact_info": null, + "name": "Municipality of Amsterdam", + "language": "ENG", + "code": "gemeente-amsterdam", + "type": "gemeente", + "show_page": false + }, + { + "about": null, + "contact_info": null, + "name": "Gemeente Amsterdam", + "language": "NLD", + "code": "gemeente-amsterdam", + "type": "gemeente", + "show_page": false + }, + { + "about": null, + "contact_info": "email@den-haag.nl", + "name": "Gemeente Den Haag", + "language": "NLD", + "code": "gemeente-den-haag", + "type": "gemeente", + "show_page": true + }, + { + "about": null, + "contact_info": "email@den-haag.nl", + "name": "Municipality of The Hague", + "language": "ENG", + "code": "gemeente-den-haag", + "type": "gemeente", + "show_page": true + } + ] +} \ No newline at end of file diff --git a/etl/app/database/__init__.py b/etl/app/database/__init__.py new file mode 100644 index 00000000..870db83c --- /dev/null +++ b/etl/app/database/__init__.py @@ -0,0 +1 @@ +from .config import * # noqa diff --git a/etl/app/database/config.py b/etl/app/database/config.py new file mode 100644 index 00000000..5e882959 --- /dev/null +++ b/etl/app/database/config.py @@ -0,0 +1,9 @@ +from sqlalchemy import create_engine +from common.database_url import get_database_url + +SQLALCHEMY_DATABASE_URL = get_database_url() +engine = create_engine( + SQLALCHEMY_DATABASE_URL, + max_overflow=40, + pool_timeout=10, +) diff --git a/etl/app/main.py b/etl/app/main.py new file mode 100644 index 00000000..cd95faed --- /dev/null +++ b/etl/app/main.py @@ -0,0 +1,37 @@ +from fastapi import FastAPI +from fastapi.responses import FileResponse +from fastapi.staticfiles import StaticFiles +from app.services import Extractor, Transformer, Loader + +app = FastAPI( + docs_url="/api-docs", + title="ETL Algoritmeregister", + swagger_ui_parameters={ + "displayRequestDuration": True, + "defaultModelsExpandDepth": -1, + }, +) + +app.mount("/static", StaticFiles(directory="app/static"), name="static") + + +@app.get("/") +async def read_index(): + return FileResponse("app/static/index.html") + + +@app.get("/load", response_model=dict[str, str]) +async def load() -> dict[str, str]: + json = Extractor().get_json() + + transformer = Transformer(json) + df_organisation = transformer.json_to_df(table_name="organisation") + df_organisation_details = transformer.json_to_df(table_name="organisation_details") + df_algoritme = transformer.json_to_df(table_name="algoritme") + df_algoritme_version = transformer.json_to_df(table_name="algoritme_version") + + Loader().update_database( + df_organisation, df_organisation_details, df_algoritme, df_algoritme_version + ) + + return {"message": "Update gelukt!"} diff --git a/etl/app/report/logger.py b/etl/app/report/logger.py new file mode 100644 index 00000000..38d8947c --- /dev/null +++ b/etl/app/report/logger.py @@ -0,0 +1,30 @@ +import logging + + +def get_logger(name: str): + """ + Inspired by: https://docs.python.org/3/howto/logging.html#configuring-logging + """ + + logger = logging.getLogger(name) + logger.setLevel(logging.INFO) + + # create console handler and set level to debug + ch = logging.StreamHandler() + ch.setLevel(logging.INFO) + + # create formatter + formatter = logging.Formatter( + fmt="%(levelname)s | %(asctime)s | %(name)s | %(message)s", + ) + + # add formatter to ch + ch.setFormatter(formatter) + + # remove existing handlers + logger.handlers = [] + + # add ch to logger + logger.addHandler(ch) + + return logger diff --git a/etl/app/services/__init__.py b/etl/app/services/__init__.py new file mode 100644 index 00000000..35d450b4 --- /dev/null +++ b/etl/app/services/__init__.py @@ -0,0 +1,3 @@ +from .extractor import * # noqa +from .transformer import * # noqa +from .loader import * # noqa diff --git a/etl/app/services/extractor.py b/etl/app/services/extractor.py new file mode 100644 index 00000000..f359f95d --- /dev/null +++ b/etl/app/services/extractor.py @@ -0,0 +1,28 @@ +import requests +import os +import json +from dotenv import load_dotenv + +load_dotenv() + +LOADING_ENV = os.getenv("LOADING_ENV", "remote") + + +class Extractor: + def get_json(self): + if LOADING_ENV == "local": + # load from local DB + with open("app/data.json", "r") as file: + return json.load(file) + + response = requests.get( + "https://algoritmes.overheid.nl/api/downloads/site-data/json" + ) + if response.status_code == 200: + return response.json() + else: + raise RuntimeError("Fetching data failed") + + +if __name__ == "__main__": + data = Extractor().get_json() diff --git a/etl/app/services/loader.py b/etl/app/services/loader.py new file mode 100644 index 00000000..d3373192 --- /dev/null +++ b/etl/app/services/loader.py @@ -0,0 +1,52 @@ +import pandas as pd +from sqlalchemy import text, types +from typing import Literal +from app.report.logger import get_logger +from app.database.config import engine + +logger = get_logger(__name__) + + +class Loader: + def load( + self, + df: pd.DataFrame | None, + table_name: Literal[ + "algoritme", "algoritme_version", "organisation", "organisation_details" + ], + dtypes: dict = {}, + ) -> None: + if df is None: + return + + with engine.connect() as conn: + conn.execute(text(f"DELETE FROM {table_name};")) + conn.commit() + + df.to_sql(table_name, engine, if_exists="append", index=False, dtype=dtypes) + + # auto-increment must be reset. + max_value_sql = f"SELECT MAX(id) FROM {table_name}" + with engine.connect() as conn: + max_value = conn.execute(text(max_value_sql)).scalar() + reset_sequence_sql = f"SELECT setval('{table_name}_id_seq', {max_value})" + conn.execute(text(reset_sequence_sql)) + + def update_database( + self, + df_organisation: pd.DataFrame, + df_organisation_details: pd.DataFrame, + df_algoritme: pd.DataFrame, + df_algoritme_version: pd.DataFrame, + ) -> None: + self.load(df_organisation, "organisation") + self.load(df_organisation_details, "organisation_details") + self.load(df_algoritme, "algoritme") + + json_columns = [ + "lawful_basis_grouping", + "impacttoetsen_grouping", + "source_data_grouping", + ] + dtypes = {column_name: types.JSON for column_name in json_columns} + self.load(df_algoritme_version, "algoritme_version", dtypes) diff --git a/etl/app/services/transformer.py b/etl/app/services/transformer.py new file mode 100644 index 00000000..89673cd6 --- /dev/null +++ b/etl/app/services/transformer.py @@ -0,0 +1,109 @@ +import pandas as pd +from typing import Literal, TypedDict +import app.config.config as configuration + + +class SiteData(TypedDict): + algoritme_versions: list[dict] + organisation_details: list[dict] + + +class Transformer: + def __init__(self, json: SiteData): + self.algoritme_versions = json["algoritme_versions"] + self.organisation_details = json["organisation_details"] + + self.df_organisation_columns = configuration.df_organisation_columns + self.df_organisation_details_columns = ( + configuration.df_organisation_details_columns + ) + self.df_algoritme_columns = configuration.df_algoritme_columns + self.df_algoritme_version_columns = configuration.df_algoritme_version_columns + + def json_to_df( + self, + table_name: Literal[ + "algoritme", "algoritme_version", "organisation", "organisation_details" + ], + ): + match table_name: + case "organisation_details": + return self.get_organisation_details_df() + case "organisation": + return self.get_organisation_df() + case "algoritme": + return self.get_algoritme_df() + case "algoritme_version": + return self.get_algoritme_version_df() + + def get_organisation_df(self) -> pd.DataFrame: + df = pd.DataFrame(self.organisation_details)[ + self.df_organisation_columns + ].copy() + + # only want unique organisations + df.drop_duplicates(subset="code", keep="first", inplace=True) + df = df.reset_index(drop=True).reset_index() + df.rename( + columns={"index": "id"}, + inplace=True, + ) + + self.df_organisation = df + return self.df_organisation + + def get_organisation_details_df(self) -> pd.DataFrame: + df = pd.DataFrame(self.organisation_details)[ + [*self.df_organisation_details_columns, "code"] + ].copy() + + # The column rename allows merging. + merged_df = pd.merge(self.df_organisation, df, on="code", how="inner") + + # Clean-up merge + merged_df.drop(["code", "type", "show_page"], axis=1, inplace=True) + merged_df.rename(columns={"id": "organisation_id"}, inplace=True) + + # Have an explicit id column, because it is a foreign key. So you need to be able to merge with it. + merged_df.reset_index(inplace=True) + merged_df.rename(columns={"index": "id"}, inplace=True) + self.df_organisation_details = merged_df + return self.df_organisation_details + + def get_algoritme_df(self) -> pd.DataFrame: + # Should be based on df_organisation... is not yet + df = pd.DataFrame(self.algoritme_versions)[ + [*self.df_algoritme_columns, "owner"] + ].copy() + + # Duplicates arising from multi-language records. + df.drop_duplicates(subset="lars", keep="first", inplace=True) + + # The column rename allows merging. + df.rename(columns={"owner": "code"}, inplace=True) + merged_df = pd.merge(self.df_organisation, df, on="code", how="inner") + + # Clean-up merge + merged_df.rename(columns={"id": "organisation_id"}, inplace=True) + merged_df.drop(["code", "type", "show_page"], axis=1, inplace=True) + + # Have an explicit id column, because it is a foreign key. So you need to be able to merge with it. + merged_df.reset_index(inplace=True) + merged_df.rename(columns={"index": "id"}, inplace=True) + self.df_algoritme = merged_df + return self.df_algoritme + + def get_algoritme_version_df(self) -> pd.DataFrame: + df = pd.DataFrame(self.algoritme_versions) + + # Column 'lars' is needed to match foreign keys. + df = df[[*self.df_algoritme_version_columns, "lars"]].copy() + + # Add id from the df_algoritme to this df as foreign key. + merged_df = pd.merge(self.df_algoritme, df, on="lars", how="inner") + merged_df.rename( + columns={"id": "algoritme_id", "create_dt_x": "create_dt"}, inplace=True + ) + merged_df.drop(["lars", "create_dt_y", "organisation_id"], axis=1, inplace=True) + merged_df["state"] = "PUBLISHED" + return merged_df diff --git a/etl/app/static/index.html b/etl/app/static/index.html new file mode 100644 index 00000000..83d1de0a --- /dev/null +++ b/etl/app/static/index.html @@ -0,0 +1,100 @@ + + + + Algoritme synchronisatie + + +
+

Algoritmeregister synchronisatie

+
+ Met de knop hieronder kan je de data van de productie-omgeving ophalen + en in de namespace waar deze ETL draait laden. +
+
Omgeving:
+
+ +
+
+ + + + + + diff --git a/etl/base_image/Dockerfile b/etl/base_image/Dockerfile new file mode 100644 index 00000000..79829c6e --- /dev/null +++ b/etl/base_image/Dockerfile @@ -0,0 +1,25 @@ +FROM python:3.11.3-slim + +ENV YOUR_ENV=production \ + PYTHONFAULTHANDLER=1 \ + PYTHONUNBUFFERED=1 \ + PYTHONHASHSEED=random \ + PIP_NO_CACHE_DIR=off \ + PIP_DISABLE_PIP_VERSION_CHECK=on \ + PIP_DEFAULT_TIMEOUT=100 \ + POETRY_VERSION=1.2.2 + +WORKDIR /etl + +COPY ./requirements.txt /backend/requirements.txt + +RUN apt-get update +RUN apt-get -y install sudo +RUN sudo apt-get -y install gcc g++ python3-dev +RUN pip install -r /backend/requirements.txt +RUN pip install "poetry==$POETRY_VERSION" + +# Cleans up cache -> Reduces size for download. +RUN sudo apt-get clean + + diff --git a/etl/base_image/README.md b/etl/base_image/README.md new file mode 100644 index 00000000..2d3b51a2 --- /dev/null +++ b/etl/base_image/README.md @@ -0,0 +1,11 @@ +Does the base image need refreshing? + +Update the packages in requirements.txt and follow these steps: + +`docker build --file=Dockerfile -t algreg_etl_base . ` + +`docker tag algreg_etl_base harbor.cicd.s15m.nl/ictu-devops-pub/algreg_etl_base` + +`docker login harbor.cicd.s15m.nl` + +`docker push harbor.cicd.s15m.nl/ictu-devops-pub/algreg_etl_base` diff --git a/etl/base_image/requirements.txt b/etl/base_image/requirements.txt new file mode 100644 index 00000000..2a4971ea --- /dev/null +++ b/etl/base_image/requirements.txt @@ -0,0 +1,32 @@ +annotated-types==0.5.0 +anyio==3.7.1 +black==23.7.0 +click==8.1.6 +fastapi==0.100.1 +flake8==6.1.0 +greenlet==2.0.2 +h11==0.14.0 +idna==3.4 +mccabe==0.7.0 +mypy-extensions==1.0.0 +numpy==1.25.2 +packaging==23.1 +pandas==2.0.3 +pathspec==0.11.2 +platformdirs==3.10.0 +psycopg2-binary==2.9.6 +pycodestyle==2.11.0 +pydantic==2.1.1 +pydantic-settings==2.0.2 +pydantic_core==2.4.0 +pyflakes==3.1.0 +python-dateutil==2.8.2 +python-dotenv==1.0.0 +pytz==2023.3 +six==1.16.0 +sniffio==1.3.0 +SQLAlchemy==2.0.19 +starlette==0.27.0 +typing_extensions==4.7.1 +tzdata==2023.3 +uvicorn==0.23.2 diff --git a/etl/common/database_url.py b/etl/common/database_url.py new file mode 100644 index 00000000..0c3ad643 --- /dev/null +++ b/etl/common/database_url.py @@ -0,0 +1,15 @@ +from dotenv import load_dotenv +import os +import urllib.parse + +load_dotenv() + + +def get_database_url() -> str: + USERNAME = os.getenv("POSTGRES_USER", "postgres") + PASSWORD = urllib.parse.quote(os.getenv("POSTGRES_PASSWORD", "postgres")) + HOST = os.getenv("POSTGRES_SERVER", "localhost") + SCHEMA = os.getenv("POSTGRES_DB", "algreg_db") + PORT = os.getenv("POSTGRES_PORT", "5432") + connection_string = f"postgresql://{USERNAME}:{PASSWORD}@{HOST}:{PORT}/{SCHEMA}" + return connection_string diff --git a/etl/poetry.lock b/etl/poetry.lock new file mode 100644 index 00000000..3b913fff --- /dev/null +++ b/etl/poetry.lock @@ -0,0 +1,980 @@ +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. + +[[package]] +name = "annotated-types" +version = "0.5.0" +description = "Reusable constraint types to use with typing.Annotated" +optional = false +python-versions = ">=3.7" +files = [ + {file = "annotated_types-0.5.0-py3-none-any.whl", hash = "sha256:58da39888f92c276ad970249761ebea80ba544b77acddaa1a4d6cf78287d45fd"}, + {file = "annotated_types-0.5.0.tar.gz", hash = "sha256:47cdc3490d9ac1506ce92c7aaa76c579dc3509ff11e098fc867e5130ab7be802"}, +] + +[[package]] +name = "anyio" +version = "3.7.1" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +optional = false +python-versions = ">=3.7" +files = [ + {file = "anyio-3.7.1-py3-none-any.whl", hash = "sha256:91dee416e570e92c64041bd18b900d1d6fa78dff7048769ce5ac5ddad004fbb5"}, + {file = "anyio-3.7.1.tar.gz", hash = "sha256:44a3c9aba0f5defa43261a8b3efb97891f2bd7d804e0e1f56419befa1adfc780"}, +] + +[package.dependencies] +idna = ">=2.8" +sniffio = ">=1.1" + +[package.extras] +doc = ["Sphinx", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme (>=1.2.2)", "sphinxcontrib-jquery"] +test = ["anyio[trio]", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] +trio = ["trio (<0.22)"] + +[[package]] +name = "black" +version = "23.7.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-23.7.0-cp310-cp310-macosx_10_16_arm64.whl", hash = "sha256:5c4bc552ab52f6c1c506ccae05681fab58c3f72d59ae6e6639e8885e94fe2587"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_universal2.whl", hash = "sha256:552513d5cd5694590d7ef6f46e1767a4df9af168d449ff767b13b084c020e63f"}, + {file = "black-23.7.0-cp310-cp310-macosx_10_16_x86_64.whl", hash = "sha256:86cee259349b4448adb4ef9b204bb4467aae74a386bce85d56ba4f5dc0da27be"}, + {file = "black-23.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:501387a9edcb75d7ae8a4412bb8749900386eaef258f1aefab18adddea1936bc"}, + {file = "black-23.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:fb074d8b213749fa1d077d630db0d5f8cc3b2ae63587ad4116e8a436e9bbe995"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_arm64.whl", hash = "sha256:b5b0ee6d96b345a8b420100b7d71ebfdd19fab5e8301aff48ec270042cd40ac2"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_universal2.whl", hash = "sha256:893695a76b140881531062d48476ebe4a48f5d1e9388177e175d76234ca247cd"}, + {file = "black-23.7.0-cp311-cp311-macosx_10_16_x86_64.whl", hash = "sha256:c333286dc3ddca6fdff74670b911cccedacb4ef0a60b34e491b8a67c833b343a"}, + {file = "black-23.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:831d8f54c3a8c8cf55f64d0422ee875eecac26f5f649fb6c1df65316b67c8926"}, + {file = "black-23.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:7f3bf2dec7d541b4619b8ce526bda74a6b0bffc480a163fed32eb8b3c9aed8ad"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_arm64.whl", hash = "sha256:f9062af71c59c004cd519e2fb8f5d25d39e46d3af011b41ab43b9c74e27e236f"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_universal2.whl", hash = "sha256:01ede61aac8c154b55f35301fac3e730baf0c9cf8120f65a9cd61a81cfb4a0c3"}, + {file = "black-23.7.0-cp38-cp38-macosx_10_16_x86_64.whl", hash = "sha256:327a8c2550ddc573b51e2c352adb88143464bb9d92c10416feb86b0f5aee5ff6"}, + {file = "black-23.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6d1c6022b86f83b632d06f2b02774134def5d4d4f1dac8bef16d90cda18ba28a"}, + {file = "black-23.7.0-cp38-cp38-win_amd64.whl", hash = "sha256:27eb7a0c71604d5de083757fbdb245b1a4fae60e9596514c6ec497eb63f95320"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_arm64.whl", hash = "sha256:8417dbd2f57b5701492cd46edcecc4f9208dc75529bcf76c514864e48da867d9"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_universal2.whl", hash = "sha256:47e56d83aad53ca140da0af87678fb38e44fd6bc0af71eebab2d1f59b1acf1d3"}, + {file = "black-23.7.0-cp39-cp39-macosx_10_16_x86_64.whl", hash = "sha256:25cc308838fe71f7065df53aedd20327969d05671bac95b38fdf37ebe70ac087"}, + {file = "black-23.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:642496b675095d423f9b8448243336f8ec71c9d4d57ec17bf795b67f08132a91"}, + {file = "black-23.7.0-cp39-cp39-win_amd64.whl", hash = "sha256:ad0014efc7acf0bd745792bd0d8857413652979200ab924fbf239062adc12491"}, + {file = "black-23.7.0-py3-none-any.whl", hash = "sha256:9fd59d418c60c0348505f2ddf9609c1e1de8e7493eab96198fc89d9f865e7a96"}, + {file = "black-23.7.0.tar.gz", hash = "sha256:022a582720b0d9480ed82576c920a8c1dde97cc38ff11d8d8859b3bd6ca9eedb"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "certifi" +version = "2024.2.2" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, + {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, +] + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, + {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "fastapi" +version = "0.100.1" +description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production" +optional = false +python-versions = ">=3.7" +files = [ + {file = "fastapi-0.100.1-py3-none-any.whl", hash = "sha256:ec6dd52bfc4eff3063cfcd0713b43c87640fefb2687bbbe3d8a08d94049cdf32"}, + {file = "fastapi-0.100.1.tar.gz", hash = "sha256:522700d7a469e4a973d92321ab93312448fbe20fca9c8da97effc7e7bc56df23"}, +] + +[package.dependencies] +pydantic = ">=1.7.4,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0 || >2.0.0,<2.0.1 || >2.0.1,<3.0.0" +starlette = ">=0.27.0,<0.28.0" +typing-extensions = ">=4.5.0" + +[package.extras] +all = ["email-validator (>=2.0.0)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)", "jinja2 (>=2.11.2)", "orjson (>=3.2.1)", "pydantic-extra-types (>=2.0.0)", "pydantic-settings (>=2.0.0)", "python-multipart (>=0.0.5)", "pyyaml (>=5.3.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)", "uvicorn[standard] (>=0.12.0)"] + +[[package]] +name = "flake8" +version = "6.1.0" +description = "the modular source code checker: pep8 pyflakes and co" +optional = false +python-versions = ">=3.8.1" +files = [ + {file = "flake8-6.1.0-py2.py3-none-any.whl", hash = "sha256:ffdfce58ea94c6580c77888a86506937f9a1a227dfcd15f245d694ae20a6b6e5"}, + {file = "flake8-6.1.0.tar.gz", hash = "sha256:d5b3857f07c030bdb5bf41c7f53799571d75c4491748a3adcd47de929e34cd23"}, +] + +[package.dependencies] +mccabe = ">=0.7.0,<0.8.0" +pycodestyle = ">=2.11.0,<2.12.0" +pyflakes = ">=3.1.0,<3.2.0" + +[[package]] +name = "greenlet" +version = "2.0.2" +description = "Lightweight in-process concurrent programming" +optional = false +python-versions = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*" +files = [ + {file = "greenlet-2.0.2-cp27-cp27m-macosx_10_14_x86_64.whl", hash = "sha256:bdfea8c661e80d3c1c99ad7c3ff74e6e87184895bbaca6ee8cc61209f8b9b85d"}, + {file = "greenlet-2.0.2-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:9d14b83fab60d5e8abe587d51c75b252bcc21683f24699ada8fb275d7712f5a9"}, + {file = "greenlet-2.0.2-cp27-cp27m-win32.whl", hash = "sha256:6c3acb79b0bfd4fe733dff8bc62695283b57949ebcca05ae5c129eb606ff2d74"}, + {file = "greenlet-2.0.2-cp27-cp27m-win_amd64.whl", hash = "sha256:283737e0da3f08bd637b5ad058507e578dd462db259f7f6e4c5c365ba4ee9343"}, + {file = "greenlet-2.0.2-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:d27ec7509b9c18b6d73f2f5ede2622441de812e7b1a80bbd446cb0633bd3d5ae"}, + {file = "greenlet-2.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d967650d3f56af314b72df7089d96cda1083a7fc2da05b375d2bc48c82ab3f3c"}, + {file = "greenlet-2.0.2-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:30bcf80dda7f15ac77ba5af2b961bdd9dbc77fd4ac6105cee85b0d0a5fcf74df"}, + {file = "greenlet-2.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26fbfce90728d82bc9e6c38ea4d038cba20b7faf8a0ca53a9c07b67318d46088"}, + {file = "greenlet-2.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9190f09060ea4debddd24665d6804b995a9c122ef5917ab26e1566dcc712ceeb"}, + {file = "greenlet-2.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d75209eed723105f9596807495d58d10b3470fa6732dd6756595e89925ce2470"}, + {file = "greenlet-2.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3a51c9751078733d88e013587b108f1b7a1fb106d402fb390740f002b6f6551a"}, + {file = "greenlet-2.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:76ae285c8104046b3a7f06b42f29c7b73f77683df18c49ab5af7983994c2dd91"}, + {file = "greenlet-2.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:2d4686f195e32d36b4d7cf2d166857dbd0ee9f3d20ae349b6bf8afc8485b3645"}, + {file = "greenlet-2.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c4302695ad8027363e96311df24ee28978162cdcdd2006476c43970b384a244c"}, + {file = "greenlet-2.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d4606a527e30548153be1a9f155f4e283d109ffba663a15856089fb55f933e47"}, + {file = "greenlet-2.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c48f54ef8e05f04d6eff74b8233f6063cb1ed960243eacc474ee73a2ea8573ca"}, + {file = "greenlet-2.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1846f1b999e78e13837c93c778dcfc3365902cfb8d1bdb7dd73ead37059f0d0"}, + {file = "greenlet-2.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a06ad5312349fec0ab944664b01d26f8d1f05009566339ac6f63f56589bc1a2"}, + {file = "greenlet-2.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:eff4eb9b7eb3e4d0cae3d28c283dc16d9bed6b193c2e1ace3ed86ce48ea8df19"}, + {file = "greenlet-2.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5454276c07d27a740c5892f4907c86327b632127dd9abec42ee62e12427ff7e3"}, + {file = "greenlet-2.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:7cafd1208fdbe93b67c7086876f061f660cfddc44f404279c1585bbf3cdc64c5"}, + {file = "greenlet-2.0.2-cp35-cp35m-macosx_10_14_x86_64.whl", hash = "sha256:910841381caba4f744a44bf81bfd573c94e10b3045ee00de0cbf436fe50673a6"}, + {file = "greenlet-2.0.2-cp35-cp35m-manylinux2010_x86_64.whl", hash = "sha256:18a7f18b82b52ee85322d7a7874e676f34ab319b9f8cce5de06067384aa8ff43"}, + {file = "greenlet-2.0.2-cp35-cp35m-win32.whl", hash = "sha256:03a8f4f3430c3b3ff8d10a2a86028c660355ab637cee9333d63d66b56f09d52a"}, + {file = "greenlet-2.0.2-cp35-cp35m-win_amd64.whl", hash = "sha256:4b58adb399c4d61d912c4c331984d60eb66565175cdf4a34792cd9600f21b394"}, + {file = "greenlet-2.0.2-cp36-cp36m-macosx_10_14_x86_64.whl", hash = "sha256:703f18f3fda276b9a916f0934d2fb6d989bf0b4fb5a64825260eb9bfd52d78f0"}, + {file = "greenlet-2.0.2-cp36-cp36m-manylinux2010_x86_64.whl", hash = "sha256:32e5b64b148966d9cccc2c8d35a671409e45f195864560829f395a54226408d3"}, + {file = "greenlet-2.0.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2dd11f291565a81d71dab10b7033395b7a3a5456e637cf997a6f33ebdf06f8db"}, + {file = "greenlet-2.0.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e0f72c9ddb8cd28532185f54cc1453f2c16fb417a08b53a855c4e6a418edd099"}, + {file = "greenlet-2.0.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cd021c754b162c0fb55ad5d6b9d960db667faad0fa2ff25bb6e1301b0b6e6a75"}, + {file = "greenlet-2.0.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:3c9b12575734155d0c09d6c3e10dbd81665d5c18e1a7c6597df72fd05990c8cf"}, + {file = "greenlet-2.0.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:b9ec052b06a0524f0e35bd8790686a1da006bd911dd1ef7d50b77bfbad74e292"}, + {file = "greenlet-2.0.2-cp36-cp36m-win32.whl", hash = "sha256:dbfcfc0218093a19c252ca8eb9aee3d29cfdcb586df21049b9d777fd32c14fd9"}, + {file = "greenlet-2.0.2-cp36-cp36m-win_amd64.whl", hash = "sha256:9f35ec95538f50292f6d8f2c9c9f8a3c6540bbfec21c9e5b4b751e0a7c20864f"}, + {file = "greenlet-2.0.2-cp37-cp37m-macosx_10_15_x86_64.whl", hash = "sha256:d5508f0b173e6aa47273bdc0a0b5ba055b59662ba7c7ee5119528f466585526b"}, + {file = "greenlet-2.0.2-cp37-cp37m-manylinux2010_x86_64.whl", hash = "sha256:f82d4d717d8ef19188687aa32b8363e96062911e63ba22a0cff7802a8e58e5f1"}, + {file = "greenlet-2.0.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9c59a2120b55788e800d82dfa99b9e156ff8f2227f07c5e3012a45a399620b7"}, + {file = "greenlet-2.0.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2780572ec463d44c1d3ae850239508dbeb9fed38e294c68d19a24d925d9223ca"}, + {file = "greenlet-2.0.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:937e9020b514ceedb9c830c55d5c9872abc90f4b5862f89c0887033ae33c6f73"}, + {file = "greenlet-2.0.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:36abbf031e1c0f79dd5d596bfaf8e921c41df2bdf54ee1eed921ce1f52999a86"}, + {file = "greenlet-2.0.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:18e98fb3de7dba1c0a852731c3070cf022d14f0d68b4c87a19cc1016f3bb8b33"}, + {file = "greenlet-2.0.2-cp37-cp37m-win32.whl", hash = "sha256:3f6ea9bd35eb450837a3d80e77b517ea5bc56b4647f5502cd28de13675ee12f7"}, + {file = "greenlet-2.0.2-cp37-cp37m-win_amd64.whl", hash = "sha256:7492e2b7bd7c9b9916388d9df23fa49d9b88ac0640db0a5b4ecc2b653bf451e3"}, + {file = "greenlet-2.0.2-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:b864ba53912b6c3ab6bcb2beb19f19edd01a6bfcbdfe1f37ddd1778abfe75a30"}, + {file = "greenlet-2.0.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:1087300cf9700bbf455b1b97e24db18f2f77b55302a68272c56209d5587c12d1"}, + {file = "greenlet-2.0.2-cp38-cp38-manylinux2010_x86_64.whl", hash = "sha256:ba2956617f1c42598a308a84c6cf021a90ff3862eddafd20c3333d50f0edb45b"}, + {file = "greenlet-2.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fc3a569657468b6f3fb60587e48356fe512c1754ca05a564f11366ac9e306526"}, + {file = "greenlet-2.0.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8eab883b3b2a38cc1e050819ef06a7e6344d4a990d24d45bc6f2cf959045a45b"}, + {file = "greenlet-2.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:acd2162a36d3de67ee896c43effcd5ee3de247eb00354db411feb025aa319857"}, + {file = "greenlet-2.0.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0bf60faf0bc2468089bdc5edd10555bab6e85152191df713e2ab1fcc86382b5a"}, + {file = "greenlet-2.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:b0ef99cdbe2b682b9ccbb964743a6aca37905fda5e0452e5ee239b1654d37f2a"}, + {file = "greenlet-2.0.2-cp38-cp38-win32.whl", hash = "sha256:b80f600eddddce72320dbbc8e3784d16bd3fb7b517e82476d8da921f27d4b249"}, + {file = "greenlet-2.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:4d2e11331fc0c02b6e84b0d28ece3a36e0548ee1a1ce9ddde03752d9b79bba40"}, + {file = "greenlet-2.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8512a0c38cfd4e66a858ddd1b17705587900dd760c6003998e9472b77b56d417"}, + {file = "greenlet-2.0.2-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:88d9ab96491d38a5ab7c56dd7a3cc37d83336ecc564e4e8816dbed12e5aaefc8"}, + {file = "greenlet-2.0.2-cp39-cp39-manylinux2010_x86_64.whl", hash = "sha256:561091a7be172ab497a3527602d467e2b3fbe75f9e783d8b8ce403fa414f71a6"}, + {file = "greenlet-2.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:971ce5e14dc5e73715755d0ca2975ac88cfdaefcaab078a284fea6cfabf866df"}, + {file = "greenlet-2.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:be4ed120b52ae4d974aa40215fcdfde9194d63541c7ded40ee12eb4dda57b76b"}, + {file = "greenlet-2.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94c817e84245513926588caf1152e3b559ff794d505555211ca041f032abbb6b"}, + {file = "greenlet-2.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:1a819eef4b0e0b96bb0d98d797bef17dc1b4a10e8d7446be32d1da33e095dbb8"}, + {file = "greenlet-2.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7efde645ca1cc441d6dc4b48c0f7101e8d86b54c8530141b09fd31cef5149ec9"}, + {file = "greenlet-2.0.2-cp39-cp39-win32.whl", hash = "sha256:ea9872c80c132f4663822dd2a08d404073a5a9b5ba6155bea72fb2a79d1093b5"}, + {file = "greenlet-2.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:db1a39669102a1d8d12b57de2bb7e2ec9066a6f2b3da35ae511ff93b01b5d564"}, + {file = "greenlet-2.0.2.tar.gz", hash = "sha256:e7c8dc13af7db097bed64a051d2dd49e9f0af495c26995c00a9ee842690d34c0"}, +] + +[package.extras] +docs = ["Sphinx", "docutils (<0.18)"] +test = ["objgraph", "psutil"] + +[[package]] +name = "h11" +version = "0.14.0" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +optional = false +python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "mccabe" +version = "0.7.0" +description = "McCabe checker, plugin for flake8" +optional = false +python-versions = ">=3.6" +files = [ + {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"}, + {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, +] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "numpy" +version = "1.25.2" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "numpy-1.25.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:db3ccc4e37a6873045580d413fe79b68e47a681af8db2e046f1dacfa11f86eb3"}, + {file = "numpy-1.25.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:90319e4f002795ccfc9050110bbbaa16c944b1c37c0baeea43c5fb881693ae1f"}, + {file = "numpy-1.25.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dfe4a913e29b418d096e696ddd422d8a5d13ffba4ea91f9f60440a3b759b0187"}, + {file = "numpy-1.25.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f08f2e037bba04e707eebf4bc934f1972a315c883a9e0ebfa8a7756eabf9e357"}, + {file = "numpy-1.25.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bec1e7213c7cb00d67093247f8c4db156fd03075f49876957dca4711306d39c9"}, + {file = "numpy-1.25.2-cp310-cp310-win32.whl", hash = "sha256:7dc869c0c75988e1c693d0e2d5b26034644399dd929bc049db55395b1379e044"}, + {file = "numpy-1.25.2-cp310-cp310-win_amd64.whl", hash = "sha256:834b386f2b8210dca38c71a6e0f4fd6922f7d3fcff935dbe3a570945acb1b545"}, + {file = "numpy-1.25.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5462d19336db4560041517dbb7759c21d181a67cb01b36ca109b2ae37d32418"}, + {file = "numpy-1.25.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c5652ea24d33585ea39eb6a6a15dac87a1206a692719ff45d53c5282e66d4a8f"}, + {file = "numpy-1.25.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d60fbae8e0019865fc4784745814cff1c421df5afee233db6d88ab4f14655a2"}, + {file = "numpy-1.25.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e7f0f7f6d0eee8364b9a6304c2845b9c491ac706048c7e8cf47b83123b8dbf"}, + {file = "numpy-1.25.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bb33d5a1cf360304754913a350edda36d5b8c5331a8237268c48f91253c3a364"}, + {file = "numpy-1.25.2-cp311-cp311-win32.whl", hash = "sha256:5883c06bb92f2e6c8181df7b39971a5fb436288db58b5a1c3967702d4278691d"}, + {file = "numpy-1.25.2-cp311-cp311-win_amd64.whl", hash = "sha256:5c97325a0ba6f9d041feb9390924614b60b99209a71a69c876f71052521d42a4"}, + {file = "numpy-1.25.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b79e513d7aac42ae918db3ad1341a015488530d0bb2a6abcbdd10a3a829ccfd3"}, + {file = "numpy-1.25.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:eb942bfb6f84df5ce05dbf4b46673ffed0d3da59f13635ea9b926af3deb76926"}, + {file = "numpy-1.25.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e0746410e73384e70d286f93abf2520035250aad8c5714240b0492a7302fdca"}, + {file = "numpy-1.25.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7806500e4f5bdd04095e849265e55de20d8cc4b661b038957354327f6d9b295"}, + {file = "numpy-1.25.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8b77775f4b7df768967a7c8b3567e309f617dd5e99aeb886fa14dc1a0791141f"}, + {file = "numpy-1.25.2-cp39-cp39-win32.whl", hash = "sha256:2792d23d62ec51e50ce4d4b7d73de8f67a2fd3ea710dcbc8563a51a03fb07b01"}, + {file = "numpy-1.25.2-cp39-cp39-win_amd64.whl", hash = "sha256:76b4115d42a7dfc5d485d358728cdd8719be33cc5ec6ec08632a5d6fca2ed380"}, + {file = "numpy-1.25.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1a1329e26f46230bf77b02cc19e900db9b52f398d6722ca853349a782d4cff55"}, + {file = "numpy-1.25.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c3abc71e8b6edba80a01a52e66d83c5d14433cbcd26a40c329ec7ed09f37901"}, + {file = "numpy-1.25.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:1b9735c27cea5d995496f46a8b1cd7b408b3f34b6d50459d9ac8fe3a20cc17bf"}, + {file = "numpy-1.25.2.tar.gz", hash = "sha256:fd608e19c8d7c55021dffd43bfe5492fab8cc105cc8986f813f8c3c048b38760"}, +] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pandas" +version = "2.0.3" +description = "Powerful data structures for data analysis, time series, and statistics" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pandas-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e4c7c9f27a4185304c7caf96dc7d91bc60bc162221152de697c98eb0b2648dd8"}, + {file = "pandas-2.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f167beed68918d62bffb6ec64f2e1d8a7d297a038f86d4aed056b9493fca407f"}, + {file = "pandas-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce0c6f76a0f1ba361551f3e6dceaff06bde7514a374aa43e33b588ec10420183"}, + {file = "pandas-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba619e410a21d8c387a1ea6e8a0e49bb42216474436245718d7f2e88a2f8d7c0"}, + {file = "pandas-2.0.3-cp310-cp310-win32.whl", hash = "sha256:3ef285093b4fe5058eefd756100a367f27029913760773c8bf1d2d8bebe5d210"}, + {file = "pandas-2.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:9ee1a69328d5c36c98d8e74db06f4ad518a1840e8ccb94a4ba86920986bb617e"}, + {file = "pandas-2.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b084b91d8d66ab19f5bb3256cbd5ea661848338301940e17f4492b2ce0801fe8"}, + {file = "pandas-2.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:37673e3bdf1551b95bf5d4ce372b37770f9529743d2498032439371fc7b7eb26"}, + {file = "pandas-2.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9cb1e14fdb546396b7e1b923ffaeeac24e4cedd14266c3497216dd4448e4f2d"}, + {file = "pandas-2.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9cd88488cceb7635aebb84809d087468eb33551097d600c6dad13602029c2df"}, + {file = "pandas-2.0.3-cp311-cp311-win32.whl", hash = "sha256:694888a81198786f0e164ee3a581df7d505024fbb1f15202fc7db88a71d84ebd"}, + {file = "pandas-2.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:6a21ab5c89dcbd57f78d0ae16630b090eec626360085a4148693def5452d8a6b"}, + {file = "pandas-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9e4da0d45e7f34c069fe4d522359df7d23badf83abc1d1cef398895822d11061"}, + {file = "pandas-2.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:32fca2ee1b0d93dd71d979726b12b61faa06aeb93cf77468776287f41ff8fdc5"}, + {file = "pandas-2.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:258d3624b3ae734490e4d63c430256e716f488c4fcb7c8e9bde2d3aa46c29089"}, + {file = "pandas-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9eae3dc34fa1aa7772dd3fc60270d13ced7346fcbcfee017d3132ec625e23bb0"}, + {file = "pandas-2.0.3-cp38-cp38-win32.whl", hash = "sha256:f3421a7afb1a43f7e38e82e844e2bca9a6d793d66c1a7f9f0ff39a795bbc5e02"}, + {file = "pandas-2.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:69d7f3884c95da3a31ef82b7618af5710dba95bb885ffab339aad925c3e8ce78"}, + {file = "pandas-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5247fb1ba347c1261cbbf0fcfba4a3121fbb4029d95d9ef4dc45406620b25c8b"}, + {file = "pandas-2.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:81af086f4543c9d8bb128328b5d32e9986e0c84d3ee673a2ac6fb57fd14f755e"}, + {file = "pandas-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1994c789bf12a7c5098277fb43836ce090f1073858c10f9220998ac74f37c69b"}, + {file = "pandas-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ec591c48e29226bcbb316e0c1e9423622bc7a4eaf1ef7c3c9fa1a3981f89641"}, + {file = "pandas-2.0.3-cp39-cp39-win32.whl", hash = "sha256:04dbdbaf2e4d46ca8da896e1805bc04eb85caa9a82e259e8eed00254d5e0c682"}, + {file = "pandas-2.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:1168574b036cd8b93abc746171c9b4f1b83467438a5e45909fed645cf8692dbc"}, + {file = "pandas-2.0.3.tar.gz", hash = "sha256:c02f372a88e0d17f36d3093a644c73cfc1788e876a7c4bcb4020a77512e2043c"}, +] + +[package.dependencies] +numpy = {version = ">=1.23.2", markers = "python_version >= \"3.11\""} +python-dateutil = ">=2.8.2" +pytz = ">=2020.1" +tzdata = ">=2022.1" + +[package.extras] +all = ["PyQt5 (>=5.15.1)", "SQLAlchemy (>=1.4.16)", "beautifulsoup4 (>=4.9.3)", "bottleneck (>=1.3.2)", "brotlipy (>=0.7.0)", "fastparquet (>=0.6.3)", "fsspec (>=2021.07.0)", "gcsfs (>=2021.07.0)", "html5lib (>=1.1)", "hypothesis (>=6.34.2)", "jinja2 (>=3.0.0)", "lxml (>=4.6.3)", "matplotlib (>=3.6.1)", "numba (>=0.53.1)", "numexpr (>=2.7.3)", "odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pandas-gbq (>=0.15.0)", "psycopg2 (>=2.8.6)", "pyarrow (>=7.0.0)", "pymysql (>=1.0.2)", "pyreadstat (>=1.1.2)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)", "python-snappy (>=0.6.0)", "pyxlsb (>=1.0.8)", "qtpy (>=2.2.0)", "s3fs (>=2021.08.0)", "scipy (>=1.7.1)", "tables (>=3.6.1)", "tabulate (>=0.8.9)", "xarray (>=0.21.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)", "zstandard (>=0.15.2)"] +aws = ["s3fs (>=2021.08.0)"] +clipboard = ["PyQt5 (>=5.15.1)", "qtpy (>=2.2.0)"] +compression = ["brotlipy (>=0.7.0)", "python-snappy (>=0.6.0)", "zstandard (>=0.15.2)"] +computation = ["scipy (>=1.7.1)", "xarray (>=0.21.0)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pyxlsb (>=1.0.8)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)"] +feather = ["pyarrow (>=7.0.0)"] +fss = ["fsspec (>=2021.07.0)"] +gcp = ["gcsfs (>=2021.07.0)", "pandas-gbq (>=0.15.0)"] +hdf5 = ["tables (>=3.6.1)"] +html = ["beautifulsoup4 (>=4.9.3)", "html5lib (>=1.1)", "lxml (>=4.6.3)"] +mysql = ["SQLAlchemy (>=1.4.16)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.0.0)", "tabulate (>=0.8.9)"] +parquet = ["pyarrow (>=7.0.0)"] +performance = ["bottleneck (>=1.3.2)", "numba (>=0.53.1)", "numexpr (>=2.7.1)"] +plot = ["matplotlib (>=3.6.1)"] +postgresql = ["SQLAlchemy (>=1.4.16)", "psycopg2 (>=2.8.6)"] +spss = ["pyreadstat (>=1.1.2)"] +sql-other = ["SQLAlchemy (>=1.4.16)"] +test = ["hypothesis (>=6.34.2)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.6.3)"] + +[[package]] +name = "pathspec" +version = "0.11.2" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.2-py3-none-any.whl", hash = "sha256:1d6ed233af05e679efb96b1851550ea95bbb64b7c490b0f5aa52996c11e92a20"}, + {file = "pathspec-0.11.2.tar.gz", hash = "sha256:e0d8d0ac2f12da61956eb2306b69f9469b42f4deb0f3cb6ed47b9cce9996ced3"}, +] + +[[package]] +name = "platformdirs" +version = "3.10.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.10.0-py3-none-any.whl", hash = "sha256:d7c24979f292f916dc9cbf8648319032f551ea8c49a4c9bf2fb556a02070ec1d"}, + {file = "platformdirs-3.10.0.tar.gz", hash = "sha256:b45696dab2d7cc691a3226759c0d3b00c47c8b6e293d96f6436f733303f77f6d"}, +] + +[package.extras] +docs = ["furo (>=2023.7.26)", "proselint (>=0.13)", "sphinx (>=7.1.1)", "sphinx-autodoc-typehints (>=1.24)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4)", "pytest-cov (>=4.1)", "pytest-mock (>=3.11.1)"] + +[[package]] +name = "psycopg2-binary" +version = "2.9.6" +description = "psycopg2 - Python-PostgreSQL Database Adapter" +optional = false +python-versions = ">=3.6" +files = [ + {file = "psycopg2-binary-2.9.6.tar.gz", hash = "sha256:1f64dcfb8f6e0c014c7f55e51c9759f024f70ea572fbdef123f85318c297947c"}, + {file = "psycopg2_binary-2.9.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d26e0342183c762de3276cca7a530d574d4e25121ca7d6e4a98e4f05cb8e4df7"}, + {file = "psycopg2_binary-2.9.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c48d8f2db17f27d41fb0e2ecd703ea41984ee19362cbce52c097963b3a1b4365"}, + {file = "psycopg2_binary-2.9.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffe9dc0a884a8848075e576c1de0290d85a533a9f6e9c4e564f19adf8f6e54a7"}, + {file = "psycopg2_binary-2.9.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8a76e027f87753f9bd1ab5f7c9cb8c7628d1077ef927f5e2446477153a602f2c"}, + {file = "psycopg2_binary-2.9.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6460c7a99fc939b849431f1e73e013d54aa54293f30f1109019c56a0b2b2ec2f"}, + {file = "psycopg2_binary-2.9.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae102a98c547ee2288637af07393dd33f440c25e5cd79556b04e3fca13325e5f"}, + {file = "psycopg2_binary-2.9.6-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:9972aad21f965599ed0106f65334230ce826e5ae69fda7cbd688d24fa922415e"}, + {file = "psycopg2_binary-2.9.6-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7a40c00dbe17c0af5bdd55aafd6ff6679f94a9be9513a4c7e071baf3d7d22a70"}, + {file = "psycopg2_binary-2.9.6-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:cacbdc5839bdff804dfebc058fe25684cae322987f7a38b0168bc1b2df703fb1"}, + {file = "psycopg2_binary-2.9.6-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7f0438fa20fb6c7e202863e0d5ab02c246d35efb1d164e052f2f3bfe2b152bd0"}, + {file = "psycopg2_binary-2.9.6-cp310-cp310-win32.whl", hash = "sha256:b6c8288bb8a84b47e07013bb4850f50538aa913d487579e1921724631d02ea1b"}, + {file = "psycopg2_binary-2.9.6-cp310-cp310-win_amd64.whl", hash = "sha256:61b047a0537bbc3afae10f134dc6393823882eb263088c271331602b672e52e9"}, + {file = "psycopg2_binary-2.9.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:964b4dfb7c1c1965ac4c1978b0f755cc4bd698e8aa2b7667c575fb5f04ebe06b"}, + {file = "psycopg2_binary-2.9.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:afe64e9b8ea66866a771996f6ff14447e8082ea26e675a295ad3bdbffdd72afb"}, + {file = "psycopg2_binary-2.9.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15e2ee79e7cf29582ef770de7dab3d286431b01c3bb598f8e05e09601b890081"}, + {file = "psycopg2_binary-2.9.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dfa74c903a3c1f0d9b1c7e7b53ed2d929a4910e272add6700c38f365a6002820"}, + {file = "psycopg2_binary-2.9.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b83456c2d4979e08ff56180a76429263ea254c3f6552cd14ada95cff1dec9bb8"}, + {file = "psycopg2_binary-2.9.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0645376d399bfd64da57148694d78e1f431b1e1ee1054872a5713125681cf1be"}, + {file = "psycopg2_binary-2.9.6-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e99e34c82309dd78959ba3c1590975b5d3c862d6f279f843d47d26ff89d7d7e1"}, + {file = "psycopg2_binary-2.9.6-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:4ea29fc3ad9d91162c52b578f211ff1c931d8a38e1f58e684c45aa470adf19e2"}, + {file = "psycopg2_binary-2.9.6-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:4ac30da8b4f57187dbf449294d23b808f8f53cad6b1fc3623fa8a6c11d176dd0"}, + {file = "psycopg2_binary-2.9.6-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e78e6e2a00c223e164c417628572a90093c031ed724492c763721c2e0bc2a8df"}, + {file = "psycopg2_binary-2.9.6-cp311-cp311-win32.whl", hash = "sha256:1876843d8e31c89c399e31b97d4b9725a3575bb9c2af92038464231ec40f9edb"}, + {file = "psycopg2_binary-2.9.6-cp311-cp311-win_amd64.whl", hash = "sha256:b4b24f75d16a89cc6b4cdff0eb6a910a966ecd476d1e73f7ce5985ff1328e9a6"}, + {file = "psycopg2_binary-2.9.6-cp36-cp36m-win32.whl", hash = "sha256:498807b927ca2510baea1b05cc91d7da4718a0f53cb766c154c417a39f1820a0"}, + {file = "psycopg2_binary-2.9.6-cp36-cp36m-win_amd64.whl", hash = "sha256:0d236c2825fa656a2d98bbb0e52370a2e852e5a0ec45fc4f402977313329174d"}, + {file = "psycopg2_binary-2.9.6-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:34b9ccdf210cbbb1303c7c4db2905fa0319391bd5904d32689e6dd5c963d2ea8"}, + {file = "psycopg2_binary-2.9.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:84d2222e61f313c4848ff05353653bf5f5cf6ce34df540e4274516880d9c3763"}, + {file = "psycopg2_binary-2.9.6-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30637a20623e2a2eacc420059be11527f4458ef54352d870b8181a4c3020ae6b"}, + {file = "psycopg2_binary-2.9.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8122cfc7cae0da9a3077216528b8bb3629c43b25053284cc868744bfe71eb141"}, + {file = "psycopg2_binary-2.9.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38601cbbfe600362c43714482f43b7c110b20cb0f8172422c616b09b85a750c5"}, + {file = "psycopg2_binary-2.9.6-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c7e62ab8b332147a7593a385d4f368874d5fe4ad4e341770d4983442d89603e3"}, + {file = "psycopg2_binary-2.9.6-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2ab652e729ff4ad76d400df2624d223d6e265ef81bb8aa17fbd63607878ecbee"}, + {file = "psycopg2_binary-2.9.6-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:c83a74b68270028dc8ee74d38ecfaf9c90eed23c8959fca95bd703d25b82c88e"}, + {file = "psycopg2_binary-2.9.6-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d4e6036decf4b72d6425d5b29bbd3e8f0ff1059cda7ac7b96d6ac5ed34ffbacd"}, + {file = "psycopg2_binary-2.9.6-cp37-cp37m-win32.whl", hash = "sha256:a8c28fd40a4226b4a84bdf2d2b5b37d2c7bd49486b5adcc200e8c7ec991dfa7e"}, + {file = "psycopg2_binary-2.9.6-cp37-cp37m-win_amd64.whl", hash = "sha256:51537e3d299be0db9137b321dfb6a5022caaab275775680e0c3d281feefaca6b"}, + {file = "psycopg2_binary-2.9.6-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:cf4499e0a83b7b7edcb8dabecbd8501d0d3a5ef66457200f77bde3d210d5debb"}, + {file = "psycopg2_binary-2.9.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:7e13a5a2c01151f1208d5207e42f33ba86d561b7a89fca67c700b9486a06d0e2"}, + {file = "psycopg2_binary-2.9.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e0f754d27fddcfd74006455b6e04e6705d6c31a612ec69ddc040a5468e44b4e"}, + {file = "psycopg2_binary-2.9.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d57c3fd55d9058645d26ae37d76e61156a27722097229d32a9e73ed54819982a"}, + {file = "psycopg2_binary-2.9.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71f14375d6f73b62800530b581aed3ada394039877818b2d5f7fc77e3bb6894d"}, + {file = "psycopg2_binary-2.9.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:441cc2f8869a4f0f4bb408475e5ae0ee1f3b55b33f350406150277f7f35384fc"}, + {file = "psycopg2_binary-2.9.6-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:65bee1e49fa6f9cf327ce0e01c4c10f39165ee76d35c846ade7cb0ec6683e303"}, + {file = "psycopg2_binary-2.9.6-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:af335bac6b666cc6aea16f11d486c3b794029d9df029967f9938a4bed59b6a19"}, + {file = "psycopg2_binary-2.9.6-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:cfec476887aa231b8548ece2e06d28edc87c1397ebd83922299af2e051cf2827"}, + {file = "psycopg2_binary-2.9.6-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:65c07febd1936d63bfde78948b76cd4c2a411572a44ac50719ead41947d0f26b"}, + {file = "psycopg2_binary-2.9.6-cp38-cp38-win32.whl", hash = "sha256:4dfb4be774c4436a4526d0c554af0cc2e02082c38303852a36f6456ece7b3503"}, + {file = "psycopg2_binary-2.9.6-cp38-cp38-win_amd64.whl", hash = "sha256:02c6e3cf3439e213e4ee930308dc122d6fb4d4bea9aef4a12535fbd605d1a2fe"}, + {file = "psycopg2_binary-2.9.6-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:e9182eb20f41417ea1dd8e8f7888c4d7c6e805f8a7c98c1081778a3da2bee3e4"}, + {file = "psycopg2_binary-2.9.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:8a6979cf527e2603d349a91060f428bcb135aea2be3201dff794813256c274f1"}, + {file = "psycopg2_binary-2.9.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8338a271cb71d8da40b023a35d9c1e919eba6cbd8fa20a54b748a332c355d896"}, + {file = "psycopg2_binary-2.9.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e3ed340d2b858d6e6fb5083f87c09996506af483227735de6964a6100b4e6a54"}, + {file = "psycopg2_binary-2.9.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f81e65376e52f03422e1fb475c9514185669943798ed019ac50410fb4c4df232"}, + {file = "psycopg2_binary-2.9.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfb13af3c5dd3a9588000910178de17010ebcccd37b4f9794b00595e3a8ddad3"}, + {file = "psycopg2_binary-2.9.6-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4c727b597c6444a16e9119386b59388f8a424223302d0c06c676ec8b4bc1f963"}, + {file = "psycopg2_binary-2.9.6-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:4d67fbdaf177da06374473ef6f7ed8cc0a9dc640b01abfe9e8a2ccb1b1402c1f"}, + {file = "psycopg2_binary-2.9.6-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:0892ef645c2fabb0c75ec32d79f4252542d0caec1d5d949630e7d242ca4681a3"}, + {file = "psycopg2_binary-2.9.6-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:02c0f3757a4300cf379eb49f543fb7ac527fb00144d39246ee40e1df684ab514"}, + {file = "psycopg2_binary-2.9.6-cp39-cp39-win32.whl", hash = "sha256:c3dba7dab16709a33a847e5cd756767271697041fbe3fe97c215b1fc1f5c9848"}, + {file = "psycopg2_binary-2.9.6-cp39-cp39-win_amd64.whl", hash = "sha256:f6a88f384335bb27812293fdb11ac6aee2ca3f51d3c7820fe03de0a304ab6249"}, +] + +[[package]] +name = "pycodestyle" +version = "2.11.0" +description = "Python style guide checker" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pycodestyle-2.11.0-py2.py3-none-any.whl", hash = "sha256:5d1013ba8dc7895b548be5afb05740ca82454fd899971563d2ef625d090326f8"}, + {file = "pycodestyle-2.11.0.tar.gz", hash = "sha256:259bcc17857d8a8b3b4a2327324b79e5f020a13c16074670f9c8c8f872ea76d0"}, +] + +[[package]] +name = "pydantic" +version = "2.1.1" +description = "Data validation using Python type hints" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pydantic-2.1.1-py3-none-any.whl", hash = "sha256:43bdbf359d6304c57afda15c2b95797295b702948082d4c23851ce752f21da70"}, + {file = "pydantic-2.1.1.tar.gz", hash = "sha256:22d63db5ce4831afd16e7c58b3192d3faf8f79154980d9397d9867254310ba4b"}, +] + +[package.dependencies] +annotated-types = ">=0.4.0" +pydantic-core = "2.4.0" +typing-extensions = ">=4.6.1" + +[package.extras] +email = ["email-validator (>=2.0.0)"] + +[[package]] +name = "pydantic-core" +version = "2.4.0" +description = "" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pydantic_core-2.4.0-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:2ca4687dd996bde7f3c420def450797feeb20dcee2b9687023e3323c73fc14a2"}, + {file = "pydantic_core-2.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:782fced7d61469fd1231b184a80e4f2fa7ad54cd7173834651a453f96f29d673"}, + {file = "pydantic_core-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6213b471b68146af97b8551294e59e7392c2117e28ffad9c557c65087f4baee3"}, + {file = "pydantic_core-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63797499a219d8e81eb4e0c42222d0a4c8ec896f5c76751d4258af95de41fdf1"}, + {file = "pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_armv7l.whl", hash = "sha256:0455876d575a35defc4da7e0a199596d6c773e20d3d42fa1fc29f6aa640369ed"}, + {file = "pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_ppc64le.whl", hash = "sha256:8c938c96294d983dcf419b54dba2d21056959c22911d41788efbf949a29ae30d"}, + {file = "pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_s390x.whl", hash = "sha256:878a5017d93e776c379af4e7b20f173c82594d94fa073059bcc546789ad50bf8"}, + {file = "pydantic_core-2.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:69159afc2f2dc43285725f16143bc5df3c853bc1cb7df6021fce7ef1c69e8171"}, + {file = "pydantic_core-2.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:54df7df399b777c1fd144f541c95d351b3aa110535a6810a6a569905d106b6f3"}, + {file = "pydantic_core-2.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e412607ca89a0ced10758dfb8f9adcc365ce4c1c377e637c01989a75e9a9ec8a"}, + {file = "pydantic_core-2.4.0-cp310-none-win32.whl", hash = "sha256:853f103e2b9a58832fdd08a587a51de8b552ae90e1a5d167f316b7eabf8d7dde"}, + {file = "pydantic_core-2.4.0-cp310-none-win_amd64.whl", hash = "sha256:3ba2c9c94a9176f6321a879c8b864d7c5b12d34f549a4c216c72ce213d7d953c"}, + {file = "pydantic_core-2.4.0-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:a8b7acd04896e8f161e1500dc5f218017db05c1d322f054e89cbd089ce5d0071"}, + {file = "pydantic_core-2.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:16468bd074fa4567592d3255bf25528ed41e6b616d69bf07096bdb5b66f947d1"}, + {file = "pydantic_core-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cba5ad5eef02c86a1f3da00544cbc59a510d596b27566479a7cd4d91c6187a11"}, + {file = "pydantic_core-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b7206e41e04b443016e930e01685bab7a308113c0b251b3f906942c8d4b48fcb"}, + {file = "pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_armv7l.whl", hash = "sha256:c1375025f0bfc9155286ebae8eecc65e33e494c90025cda69e247c3ccd2bab00"}, + {file = "pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_ppc64le.whl", hash = "sha256:3534118289e33130ed3f1cc487002e8d09b9f359be48b02e9cd3de58ce58fba9"}, + {file = "pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_s390x.whl", hash = "sha256:94d2b36a74623caab262bf95f0e365c2c058396082bd9d6a9e825657d0c1e7fa"}, + {file = "pydantic_core-2.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:af24ad4fbaa5e4a2000beae0c3b7fd1c78d7819ab90f9370a1cfd8998e3f8a3c"}, + {file = "pydantic_core-2.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:bf10963d8aed8bbe0165b41797c9463d4c5c8788ae6a77c68427569be6bead41"}, + {file = "pydantic_core-2.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:68199ada7c310ddb8c76efbb606a0de656b40899388a7498954f423e03fc38be"}, + {file = "pydantic_core-2.4.0-cp311-none-win32.whl", hash = "sha256:6f855bcc96ed3dd56da7373cfcc9dcbabbc2073cac7f65c185772d08884790ce"}, + {file = "pydantic_core-2.4.0-cp311-none-win_amd64.whl", hash = "sha256:de39eb3bab93a99ddda1ac1b9aa331b944d8bcc4aa9141148f7fd8ee0299dafc"}, + {file = "pydantic_core-2.4.0-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:f773b39780323a0499b53ebd91a28ad11cde6705605d98d999dfa08624caf064"}, + {file = "pydantic_core-2.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a297c0d6c61963c5c3726840677b798ca5b7dfc71bc9c02b9a4af11d23236008"}, + {file = "pydantic_core-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:546064c55264156b973b5e65e5fafbe5e62390902ce3cf6b4005765505e8ff56"}, + {file = "pydantic_core-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36ba9e728588588f0196deaf6751b9222492331b5552f865a8ff120869d372e0"}, + {file = "pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_armv7l.whl", hash = "sha256:57a53a75010c635b3ad6499e7721eaa3b450e03f6862afe2dbef9c8f66e46ec8"}, + {file = "pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_ppc64le.whl", hash = "sha256:4b262bbc13022f2097c48a21adcc360a81d83dc1d854c11b94953cd46d7d3c07"}, + {file = "pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_s390x.whl", hash = "sha256:01947ad728f426fa07fcb26457ebf90ce29320259938414bc0edd1476e75addb"}, + {file = "pydantic_core-2.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b2799c2eaf182769889761d4fb4d78b82bc47dae833799fedbf69fc7de306faa"}, + {file = "pydantic_core-2.4.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a08fd490ba36d1fbb2cd5dcdcfb9f3892deb93bd53456724389135712b5fc735"}, + {file = "pydantic_core-2.4.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1e8a7c62d15a5c4b307271e4252d76ebb981d6251c6ecea4daf203ef0179ea4f"}, + {file = "pydantic_core-2.4.0-cp312-none-win32.whl", hash = "sha256:9206c14a67c38de7b916e486ae280017cf394fa4b1aa95cfe88621a4e1d79725"}, + {file = "pydantic_core-2.4.0-cp312-none-win_amd64.whl", hash = "sha256:884235507549a6b2d3c4113fb1877ae263109e787d9e0eb25c35982ab28d0399"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-macosx_10_7_x86_64.whl", hash = "sha256:4cbe929efa77a806e8f1a97793f2dc3ea3475ae21a9ed0f37c21320fe93f6f50"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-macosx_11_0_arm64.whl", hash = "sha256:9137289de8fe845c246a8c3482dd0cb40338846ba683756d8f489a4bd8fddcae"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5d8e764b5646623e57575f624f8ebb8f7a9f7fd1fae682ef87869ca5fec8dcf"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8fba0aff4c407d0274e43697e785bcac155ad962be57518d1c711f45e72da70f"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_armv7l.whl", hash = "sha256:30527d173e826f2f7651f91c821e337073df1555e3b5a0b7b1e2c39e26e50678"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_ppc64le.whl", hash = "sha256:bd7d1dde70ff3e09e4bc7a1cbb91a7a538add291bfd5b3e70ef1e7b45192440f"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_s390x.whl", hash = "sha256:72f1216ca8cef7b8adacd4c4c6b89c3b0c4f97503197f5284c80f36d6e4edd30"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b013c7861a7c7bfcec48fd709513fea6f9f31727e7a0a93ca0dd12e056740717"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:478f5f6d7e32bd4a04d102160efb2d389432ecf095fe87c555c0a6fc4adfc1a4"}, + {file = "pydantic_core-2.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:d9610b47b5fe4aacbbba6a9cb5f12cbe864eec99dbfed5710bd32ef5dd8a5d5b"}, + {file = "pydantic_core-2.4.0-cp37-none-win32.whl", hash = "sha256:ff246c0111076c8022f9ba325c294f2cb5983403506989253e04dbae565e019b"}, + {file = "pydantic_core-2.4.0-cp37-none-win_amd64.whl", hash = "sha256:d0c2b713464a8e263a243ae7980d81ce2de5ac59a9f798a282e44350b42dc516"}, + {file = "pydantic_core-2.4.0-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:12ef6838245569fd60a179fade81ca4b90ae2fa0ef355d616f519f7bb27582db"}, + {file = "pydantic_core-2.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:49db206eb8fdc4b4f30e6e3e410584146d813c151928f94ec0db06c4f2595538"}, + {file = "pydantic_core-2.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a507d7fa44688bbac76af6521e488b3da93de155b9cba6f2c9b7833ce243d59"}, + {file = "pydantic_core-2.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffe18407a4d000c568182ce5388bbbedeb099896904e43fc14eee76cfae6dec5"}, + {file = "pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_armv7l.whl", hash = "sha256:fa8e48001b39d54d97d7b380a0669fa99fc0feeb972e35a2d677ba59164a9a22"}, + {file = "pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_ppc64le.whl", hash = "sha256:394f12a2671ff8c4dfa2e85be6c08be0651ad85bc1e6aa9c77c21671baaf28cd"}, + {file = "pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_s390x.whl", hash = "sha256:2f9ea0355f90db2a76af530245fa42f04d98f752a1236ed7c6809ec484560d5b"}, + {file = "pydantic_core-2.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:61d4e713f467abcdd59b47665d488bb898ad3dd47ce7446522a50e0cbd8e8279"}, + {file = "pydantic_core-2.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:453862ab268f6326b01f067ed89cb3a527d34dc46f6f4eeec46a15bbc706d0da"}, + {file = "pydantic_core-2.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:56a85fa0dab1567bd0cac10f0c3837b03e8a0d939e6a8061a3a420acd97e9421"}, + {file = "pydantic_core-2.4.0-cp38-none-win32.whl", hash = "sha256:0d726108c1c0380b88b6dd4db559f0280e0ceda9e077f46ff90bc85cd4d03e77"}, + {file = "pydantic_core-2.4.0-cp38-none-win_amd64.whl", hash = "sha256:047580388644c473b934d27849f8ed8dbe45df0adb72104e78b543e13bf69762"}, + {file = "pydantic_core-2.4.0-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:867d3eea954bea807cabba83cfc939c889a18576d66d197c60025b15269d7cc0"}, + {file = "pydantic_core-2.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:664402ef0c238a7f8a46efb101789d5f2275600fb18114446efec83cfadb5b66"}, + {file = "pydantic_core-2.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:64e8012ad60a5f0da09ed48725e6e923d1be25f2f091a640af6079f874663813"}, + {file = "pydantic_core-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac2b680de398f293b68183317432b3d67ab3faeba216aec18de0c395cb5e3060"}, + {file = "pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_armv7l.whl", hash = "sha256:8efc1be43b036c2b6bcfb1451df24ee0ddcf69c31351003daf2699ed93f5687b"}, + {file = "pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_ppc64le.whl", hash = "sha256:d93aedbc4614cc21b9ab0d0c4ccd7143354c1f7cffbbe96ae5216ad21d1b21b5"}, + {file = "pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_s390x.whl", hash = "sha256:af788b64e13d52fc3600a68b16d31fa8d8573e3ff2fc9a38f8a60b8d94d1f012"}, + {file = "pydantic_core-2.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:97c6349c81cee2e69ef59eba6e6c08c5936e6b01c2d50b9e4ac152217845ae09"}, + {file = "pydantic_core-2.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:cc086ddb6dc654a15deeed1d1f2bcb1cb924ebd70df9dca738af19f64229b06c"}, + {file = "pydantic_core-2.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e953353180bec330c3b830891d260b6f8e576e2d18db3c78d314e56bb2276066"}, + {file = "pydantic_core-2.4.0-cp39-none-win32.whl", hash = "sha256:6feb4b64d11d5420e517910d60a907d08d846cacaf4e029668725cd21d16743c"}, + {file = "pydantic_core-2.4.0-cp39-none-win_amd64.whl", hash = "sha256:153a61ac4030fa019b70b31fb7986461119230d3ba0ab661c757cfea652f4332"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:3fcf529382b282a30b466bd7af05be28e22aa620e016135ac414f14e1ee6b9e1"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2edef05b63d82568b877002dc4cb5cc18f8929b59077120192df1e03e0c633f8"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da055a1b0bfa8041bb2ff586b2cb0353ed03944a3472186a02cc44a557a0e661"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:77dadc764cf7c5405e04866181c5bd94a447372a9763e473abb63d1dfe9b7387"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:a4ea23b07f29487a7bef2a869f68c7ee0e05424d81375ce3d3de829314c6b5ec"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:382f0baa044d674ad59455a5eff83d7965572b745cc72df35c52c2ce8c731d37"}, + {file = "pydantic_core-2.4.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:08f89697625e453421401c7f661b9d1eb4c9e4c0a12fd256eeb55b06994ac6af"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl", hash = "sha256:43a405ce520b45941df9ff55d0cd09762017756a7b413bbad3a6e8178e64a2c2"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:584a7a818c84767af16ce8bda5d4f7fedb37d3d231fc89928a192f567e4ef685"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:04922fea7b13cd480586fa106345fe06e43220b8327358873c22d8dfa7a711c7"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:17156abac20a9feed10feec867fddd91a80819a485b0107fe61f09f2117fe5f3"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:4e562cc63b04636cde361fd47569162f1daa94c759220ff202a8129902229114"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:90f3785146f701e053bb6b9e8f53acce2c919aca91df88bd4975be0cb926eb41"}, + {file = "pydantic_core-2.4.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:e40b1e97edd3dc127aa53d8a5e539a3d0c227d71574d3f9ac1af02d58218a122"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:b27f3e67f6e031f6620655741b7d0d6bebea8b25d415924b3e8bfef2dd7bd841"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be86c2eb12fb0f846262ace9d8f032dc6978b8cb26a058920ecb723dbcb87d05"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4665f7ed345012a8d2eddf4203ef145f5f56a291d010382d235b94e91813f88a"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:79262be5a292d1df060f29b9a7cdd66934801f987a817632d7552534a172709a"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:5fd905a69ac74eaba5041e21a1e8b1a479dab2b41c93bdcc4c1cede3c12a8d86"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:2ad538b7e07343001934417cdc8584623b4d8823c5b8b258e75ec8d327cec969"}, + {file = "pydantic_core-2.4.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:dd2429f7635ad4857b5881503f9c310be7761dc681c467a9d27787b674d1250a"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:efff8b6761a1f6e45cebd1b7a6406eb2723d2d5710ff0d1b624fe11313693989"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:32a1e0352558cd7ccc014ffe818c7d87b15ec6145875e2cc5fa4bb7351a1033d"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a027f41c5008571314861744d83aff75a34cf3a07022e0be32b214a5bc93f7f1"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1927f0e15d190f11f0b8344373731e28fd774c6d676d8a6cfadc95c77214a48b"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:7aa82d483d5fb867d4fb10a138ffd57b0f1644e99f2f4f336e48790ada9ada5e"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:b85778308bf945e9b33ac604e6793df9b07933108d20bdf53811bc7c2798a4af"}, + {file = "pydantic_core-2.4.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:3ded19dcaefe2f6706d81e0db787b59095f4ad0fbadce1edffdf092294c8a23f"}, + {file = "pydantic_core-2.4.0.tar.gz", hash = "sha256:ec3473c9789cc00c7260d840c3db2c16dbfc816ca70ec87a00cddfa3e1a1cdd5"}, +] + +[package.dependencies] +typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0" + +[[package]] +name = "pydantic-settings" +version = "2.0.2" +description = "Settings management using Pydantic" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pydantic_settings-2.0.2-py3-none-any.whl", hash = "sha256:6183a2abeab465d5a3ab69758e9a22d38b0cc2ba193f0b85f6971a252ea630f6"}, + {file = "pydantic_settings-2.0.2.tar.gz", hash = "sha256:342337fff50b23585e807a86dec85037900972364435c55c2fc00d16ff080539"}, +] + +[package.dependencies] +pydantic = ">=2.0.1" +python-dotenv = ">=0.21.0" + +[[package]] +name = "pyflakes" +version = "3.1.0" +description = "passive checker of Python programs" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pyflakes-3.1.0-py2.py3-none-any.whl", hash = "sha256:4132f6d49cb4dae6819e5379898f2b8cce3c5f23994194c24b77d5da2e36f774"}, + {file = "pyflakes-3.1.0.tar.gz", hash = "sha256:a0aae034c444db0071aa077972ba4768d40c830d9539fd45bf4cd3f8f6992efc"}, +] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, + {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pytz" +version = "2023.3" +description = "World timezone definitions, modern and historical" +optional = false +python-versions = "*" +files = [ + {file = "pytz-2023.3-py2.py3-none-any.whl", hash = "sha256:a151b3abb88eda1d4e34a9814df37de2a80e301e68ba0fd856fb9b46bfbbbffb"}, + {file = "pytz-2023.3.tar.gz", hash = "sha256:1d8ce29db189191fb55338ee6d0387d82ab59f3d00eac103412d64e0ebd0c588"}, +] + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "sniffio" +version = "1.3.0" +description = "Sniff out which async library your code is running under" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, + {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, +] + +[[package]] +name = "sqlalchemy" +version = "2.0.19" +description = "Database Abstraction Library" +optional = false +python-versions = ">=3.7" +files = [ + {file = "SQLAlchemy-2.0.19-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9deaae357edc2091a9ed5d25e9ee8bba98bcfae454b3911adeaf159c2e9ca9e3"}, + {file = "SQLAlchemy-2.0.19-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0bf0fd65b50a330261ec7fe3d091dfc1c577483c96a9fa1e4323e932961aa1b5"}, + {file = "SQLAlchemy-2.0.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1d90ccc15ba1baa345796a8fb1965223ca7ded2d235ccbef80a47b85cea2d71a"}, + {file = "SQLAlchemy-2.0.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb4e688f6784427e5f9479d1a13617f573de8f7d4aa713ba82813bcd16e259d1"}, + {file = "SQLAlchemy-2.0.19-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:584f66e5e1979a7a00f4935015840be627e31ca29ad13f49a6e51e97a3fb8cae"}, + {file = "SQLAlchemy-2.0.19-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:2c69ce70047b801d2aba3e5ff3cba32014558966109fecab0c39d16c18510f15"}, + {file = "SQLAlchemy-2.0.19-cp310-cp310-win32.whl", hash = "sha256:96f0463573469579d32ad0c91929548d78314ef95c210a8115346271beeeaaa2"}, + {file = "SQLAlchemy-2.0.19-cp310-cp310-win_amd64.whl", hash = "sha256:22bafb1da60c24514c141a7ff852b52f9f573fb933b1e6b5263f0daa28ce6db9"}, + {file = "SQLAlchemy-2.0.19-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:d6894708eeb81f6d8193e996257223b6bb4041cb05a17cd5cf373ed836ef87a2"}, + {file = "SQLAlchemy-2.0.19-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d8f2afd1aafded7362b397581772c670f20ea84d0a780b93a1a1529da7c3d369"}, + {file = "SQLAlchemy-2.0.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b15afbf5aa76f2241184c1d3b61af1a72ba31ce4161013d7cb5c4c2fca04fd6e"}, + {file = "SQLAlchemy-2.0.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8fc05b59142445a4efb9c1fd75c334b431d35c304b0e33f4fa0ff1ea4890f92e"}, + {file = "SQLAlchemy-2.0.19-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:5831138f0cc06b43edf5f99541c64adf0ab0d41f9a4471fd63b54ae18399e4de"}, + {file = "SQLAlchemy-2.0.19-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3afa8a21a9046917b3a12ffe016ba7ebe7a55a6fc0c7d950beb303c735c3c3ad"}, + {file = "SQLAlchemy-2.0.19-cp311-cp311-win32.whl", hash = "sha256:c896d4e6ab2eba2afa1d56be3d0b936c56d4666e789bfc59d6ae76e9fcf46145"}, + {file = "SQLAlchemy-2.0.19-cp311-cp311-win_amd64.whl", hash = "sha256:024d2f67fb3ec697555e48caeb7147cfe2c08065a4f1a52d93c3d44fc8e6ad1c"}, + {file = "SQLAlchemy-2.0.19-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:89bc2b374ebee1a02fd2eae6fd0570b5ad897ee514e0f84c5c137c942772aa0c"}, + {file = "SQLAlchemy-2.0.19-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd4d410a76c3762511ae075d50f379ae09551d92525aa5bb307f8343bf7c2c12"}, + {file = "SQLAlchemy-2.0.19-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f469f15068cd8351826df4080ffe4cc6377c5bf7d29b5a07b0e717dddb4c7ea2"}, + {file = "SQLAlchemy-2.0.19-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:cda283700c984e699e8ef0fcc5c61f00c9d14b6f65a4f2767c97242513fcdd84"}, + {file = "SQLAlchemy-2.0.19-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:43699eb3f80920cc39a380c159ae21c8a8924fe071bccb68fc509e099420b148"}, + {file = "SQLAlchemy-2.0.19-cp37-cp37m-win32.whl", hash = "sha256:61ada5831db36d897e28eb95f0f81814525e0d7927fb51145526c4e63174920b"}, + {file = "SQLAlchemy-2.0.19-cp37-cp37m-win_amd64.whl", hash = "sha256:57d100a421d9ab4874f51285c059003292433c648df6abe6c9c904e5bd5b0828"}, + {file = "SQLAlchemy-2.0.19-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:16a310f5bc75a5b2ce7cb656d0e76eb13440b8354f927ff15cbaddd2523ee2d1"}, + {file = "SQLAlchemy-2.0.19-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:cf7b5e3856cbf1876da4e9d9715546fa26b6e0ba1a682d5ed2fc3ca4c7c3ec5b"}, + {file = "SQLAlchemy-2.0.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2e7b69d9ced4b53310a87117824b23c509c6fc1f692aa7272d47561347e133b6"}, + {file = "SQLAlchemy-2.0.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f9eb4575bfa5afc4b066528302bf12083da3175f71b64a43a7c0badda2be365"}, + {file = "SQLAlchemy-2.0.19-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6b54d1ad7a162857bb7c8ef689049c7cd9eae2f38864fc096d62ae10bc100c7d"}, + {file = "SQLAlchemy-2.0.19-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5d6afc41ca0ecf373366fd8e10aee2797128d3ae45eb8467b19da4899bcd1ee0"}, + {file = "SQLAlchemy-2.0.19-cp38-cp38-win32.whl", hash = "sha256:430614f18443b58ceb9dedec323ecddc0abb2b34e79d03503b5a7579cd73a531"}, + {file = "SQLAlchemy-2.0.19-cp38-cp38-win_amd64.whl", hash = "sha256:eb60699de43ba1a1f77363f563bb2c652f7748127ba3a774f7cf2c7804aa0d3d"}, + {file = "SQLAlchemy-2.0.19-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a752b7a9aceb0ba173955d4f780c64ee15a1a991f1c52d307d6215c6c73b3a4c"}, + {file = "SQLAlchemy-2.0.19-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7351c05db355da112e056a7b731253cbeffab9dfdb3be1e895368513c7d70106"}, + {file = "SQLAlchemy-2.0.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa51ce4aea583b0c6b426f4b0563d3535c1c75986c4373a0987d84d22376585b"}, + {file = "SQLAlchemy-2.0.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae7473a67cd82a41decfea58c0eac581209a0aa30f8bc9190926fbf628bb17f7"}, + {file = "SQLAlchemy-2.0.19-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:851a37898a8a39783aab603c7348eb5b20d83c76a14766a43f56e6ad422d1ec8"}, + {file = "SQLAlchemy-2.0.19-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:539010665c90e60c4a1650afe4ab49ca100c74e6aef882466f1de6471d414be7"}, + {file = "SQLAlchemy-2.0.19-cp39-cp39-win32.whl", hash = "sha256:f82c310ddf97b04e1392c33cf9a70909e0ae10a7e2ddc1d64495e3abdc5d19fb"}, + {file = "SQLAlchemy-2.0.19-cp39-cp39-win_amd64.whl", hash = "sha256:8e712cfd2e07b801bc6b60fdf64853bc2bd0af33ca8fa46166a23fe11ce0dbb0"}, + {file = "SQLAlchemy-2.0.19-py3-none-any.whl", hash = "sha256:314145c1389b021a9ad5aa3a18bac6f5d939f9087d7fc5443be28cba19d2c972"}, + {file = "SQLAlchemy-2.0.19.tar.gz", hash = "sha256:77a14fa20264af73ddcdb1e2b9c5a829b8cc6b8304d0f093271980e36c200a3f"}, +] + +[package.dependencies] +greenlet = {version = "!=0.4.17", markers = "platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\""} +typing-extensions = ">=4.2.0" + +[package.extras] +aiomysql = ["aiomysql", "greenlet (!=0.4.17)"] +aiosqlite = ["aiosqlite", "greenlet (!=0.4.17)", "typing-extensions (!=3.10.0.1)"] +asyncio = ["greenlet (!=0.4.17)"] +asyncmy = ["asyncmy (>=0.2.3,!=0.2.4,!=0.2.6)", "greenlet (!=0.4.17)"] +mariadb-connector = ["mariadb (>=1.0.1,!=1.1.2,!=1.1.5)"] +mssql = ["pyodbc"] +mssql-pymssql = ["pymssql"] +mssql-pyodbc = ["pyodbc"] +mypy = ["mypy (>=0.910)"] +mysql = ["mysqlclient (>=1.4.0)"] +mysql-connector = ["mysql-connector-python"] +oracle = ["cx-oracle (>=7)"] +oracle-oracledb = ["oracledb (>=1.0.1)"] +postgresql = ["psycopg2 (>=2.7)"] +postgresql-asyncpg = ["asyncpg", "greenlet (!=0.4.17)"] +postgresql-pg8000 = ["pg8000 (>=1.29.1)"] +postgresql-psycopg = ["psycopg (>=3.0.7)"] +postgresql-psycopg2binary = ["psycopg2-binary"] +postgresql-psycopg2cffi = ["psycopg2cffi"] +postgresql-psycopgbinary = ["psycopg[binary] (>=3.0.7)"] +pymysql = ["pymysql"] +sqlcipher = ["sqlcipher3-binary"] + +[[package]] +name = "starlette" +version = "0.27.0" +description = "The little ASGI library that shines." +optional = false +python-versions = ">=3.7" +files = [ + {file = "starlette-0.27.0-py3-none-any.whl", hash = "sha256:918416370e846586541235ccd38a474c08b80443ed31c578a418e2209b3eef91"}, + {file = "starlette-0.27.0.tar.gz", hash = "sha256:6a6b0d042acb8d469a01eba54e9cda6cbd24ac602c4cd016723117d6a7e73b75"}, +] + +[package.dependencies] +anyio = ">=3.4.0,<5" + +[package.extras] +full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "tzdata" +version = "2023.3" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2023.3-py2.py3-none-any.whl", hash = "sha256:7e65763eef3120314099b6939b5546db7adce1e7d6f2e179e3df563c70511eda"}, + {file = "tzdata-2023.3.tar.gz", hash = "sha256:11ef1e08e54acb0d4f95bdb1be05da659673de4acbd21bf9c69e94cc5e907a3a"}, +] + +[[package]] +name = "urllib3" +version = "2.2.1" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.8" +files = [ + {file = "urllib3-2.2.1-py3-none-any.whl", hash = "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d"}, + {file = "urllib3-2.2.1.tar.gz", hash = "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +h2 = ["h2 (>=4,<5)"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "uvicorn" +version = "0.23.2" +description = "The lightning-fast ASGI server." +optional = false +python-versions = ">=3.8" +files = [ + {file = "uvicorn-0.23.2-py3-none-any.whl", hash = "sha256:1f9be6558f01239d4fdf22ef8126c39cb1ad0addf76c40e760549d2c2f43ab53"}, + {file = "uvicorn-0.23.2.tar.gz", hash = "sha256:4d3cc12d7727ba72b64d12d3cc7743124074c0a69f7b201512fc50c3e3f1569a"}, +] + +[package.dependencies] +click = ">=7.0" +h11 = ">=0.8" + +[package.extras] +standard = ["colorama (>=0.4)", "httptools (>=0.5.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.11" +content-hash = "dca89a6f484013c68878d4a725bfafab80c0fb860de6133be8fbc1be74557fc4" diff --git a/etl/pyproject.toml b/etl/pyproject.toml new file mode 100644 index 00000000..1ae33db6 --- /dev/null +++ b/etl/pyproject.toml @@ -0,0 +1,24 @@ +[tool.poetry] +name = "etl" +version = "0.1.0" +description = "" +authors = ["Your Name "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" +fastapi = "^0.100.1" +uvicorn = "^0.23.2" +flake8 = "^6.1.0" +black = "^23.7.0" +sqlalchemy = "^2.0.19" +python-dotenv = "^1.0.0" +pandas = "^2.0.3" +psycopg2-binary = "^2.9.5" +pydantic-settings = "^2.0.2" +requests = "^2.31.0" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/etl/start.sh b/etl/start.sh new file mode 100644 index 00000000..bf84485e --- /dev/null +++ b/etl/start.sh @@ -0,0 +1,4 @@ +#! /usr/bin/env bash + +# Start the backend server +uvicorn app.main:app --host 0.0.0.0 --port 8000 diff --git a/frontend-beheer-2024/.browserslistrc b/frontend-beheer-2024/.browserslistrc new file mode 100644 index 00000000..dc3bc09a --- /dev/null +++ b/frontend-beheer-2024/.browserslistrc @@ -0,0 +1,4 @@ +> 1% +last 2 versions +not dead +not ie 11 diff --git a/frontend-beheer-2024/.editorconfig b/frontend-beheer-2024/.editorconfig new file mode 100644 index 00000000..7053c49a --- /dev/null +++ b/frontend-beheer-2024/.editorconfig @@ -0,0 +1,5 @@ +[*.{js,jsx,ts,tsx,vue}] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/frontend-beheer-2024/.eslintrc.js b/frontend-beheer-2024/.eslintrc.js new file mode 100644 index 00000000..d312ffa3 --- /dev/null +++ b/frontend-beheer-2024/.eslintrc.js @@ -0,0 +1,39 @@ +module.exports = { + root: true, + env: { + node: true, + }, + ignorePatterns: ['**/public/*'], + extends: ['plugin:vue/vue3-recommended', '@vue/eslint-config-typescript'], + rules: { + 'vue/multi-word-component-names': 'off', + quotes: ['warn', 'single'], + 'object-curly-spacing': ['warn', 'always'], + semi: ['warn', 'never'], + 'comma-dangle': [ + 'warn', + { + arrays: 'always-multiline', + objects: 'always-multiline', + imports: 'always-multiline', + exports: 'always-multiline', + }, + ], + 'vue/max-attributes-per-line': [ + 'warn', + { + singleline: 2, + multiline: { + max: 1, + }, + }, + ], + 'vue/valid-v-slot': [ + 'error', + { + allowModifiers: true, + }, + ], + 'vue/no-v-html': 'off', + }, +} diff --git a/frontend-beheer-2024/.gitignore b/frontend-beheer-2024/.gitignore new file mode 100644 index 00000000..b1af0360 --- /dev/null +++ b/frontend-beheer-2024/.gitignore @@ -0,0 +1,25 @@ +.DS_Store +node_modules +/dist +*.css.map + + +# local env files +.env.local +.env.*.local +.env + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/frontend-beheer-2024/Dockerfile b/frontend-beheer-2024/Dockerfile new file mode 100644 index 00000000..24f20a13 --- /dev/null +++ b/frontend-beheer-2024/Dockerfile @@ -0,0 +1,13 @@ +FROM nginxinc/nginx-unprivileged:1.21.6-alpine_devops + +USER root + +RUN apk update +RUN apk upgrade +RUN rm /etc/nginx/conf.d/default.conf +COPY ./frontend-beheer-2024/dist /app/webformulier2024 +COPY ./frontend-beheer-2024/nginx /etc/nginx +CMD nginx -g "daemon off;" + +# Expose ports +EXPOSE 8080:8080 \ No newline at end of file diff --git a/frontend-beheer-2024/README.md b/frontend-beheer-2024/README.md new file mode 100644 index 00000000..50b30e02 --- /dev/null +++ b/frontend-beheer-2024/README.md @@ -0,0 +1,44 @@ +# default + +## Project setup + +``` +# yarn +yarn + +# npm +npm install + +# pnpm +pnpm install +``` + +### Compiles and hot-reloads for development + +``` +# yarn +yarn dev + +# npm +npm run dev + +# pnpm +pnpm dev +``` + +### Compiles and minifies for production + +``` +# yarn +yarn build + +# npm +npm run build + +# pnpm +pnpm build +``` + +### Customize configuration + +See [Configuration Reference](https://vitejs.dev/config/). diff --git a/frontend-beheer-2024/index.html b/frontend-beheer-2024/index.html new file mode 100644 index 00000000..d7882f21 --- /dev/null +++ b/frontend-beheer-2024/index.html @@ -0,0 +1,14 @@ + + + + + + + AR Webformulier + + + +
+ + + diff --git a/frontend-beheer-2024/nginx/nginx.conf b/frontend-beheer-2024/nginx/nginx.conf new file mode 100644 index 00000000..a39ed3c5 --- /dev/null +++ b/frontend-beheer-2024/nginx/nginx.conf @@ -0,0 +1,33 @@ +user nginx; +worker_processes auto; +pid "/tmp/nginx.pid"; +events { worker_connections 1024; } +http { + include mime.types; + default_type application/octet-stream; + log_format main '[$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" '; + sendfile on; + keepalive_timeout 3600; + client_max_body_size 400m; + + server { + server_tokens off; + listen 8080; + server_name localhost; + access_log /var/log/nginx/access.log main; + root /app/webformulier2024; + error_page 404 /index.html; + location = / { + try_files $uri $uri/ /index.html; + } + location /webformulier2024/ { + root /app; + } + add_header X-Frame-Options "SAMEORIGIN" always; + add_header X-Content-Type-Options nosniff always; + add_header Content-Security-Policy "default-src 'self'; connect-src 'self' https://svc.webspellchecker.net:443/api; script-src-elem 'self' https://svc.webspellchecker.net/spellcheck31/wscbundle/wscbundle.js https://svc.webspellchecker.net/spellcheck31/wscbundle/local/nl/local.js; frame-src 'self' https://svc.webspellchecker.net:443/api; img-src 'self' data: https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/svg/spinner.svg; form-action 'self'; base-uri 'self'; frame-ancestors 'self'; script-src 'self' https://svc.webspellchecker.net:443/api; object-src 'self'; font-src 'self' https://cdn.jsdelivr.net https://fonts.gstatic.com https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/icomoon/fonts/wscicomoon.ttf?ffzgl https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/icomoon/fonts/wscicomoon.woff?ffzgl https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_light/OpenSans-Light-webfont.woff https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_light/OpenSans-Light-webfont.ttf https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_regular/OpenSans-Regular-webfont.woff https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_regular/OpenSans-Regular-webfont.ttf https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_bold/OpenSans-Bold-webfont.woff https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_bold/OpenSans-Bold-webfont.ttf https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_semibold/OpenSans-Semibold-webfont.woff https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_semibold/OpenSans-Semibold-webfont.ttf https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_italic/OpenSans-Italic-webfont.woff https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_italic/OpenSans-Italic-webfont.ttf; style-src 'self' https://cdn.jsdelivr.net https://fonts.googleapis.com https://svc.webspellchecker.net/spellcheck31/wscbundle/css/wsc.css https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/all.css 'sha256-NMbnThHs+6DLZJpiAfVUh+LepHuflk4XMKqJMslIjNs=' 'sha256-sbYZV251k33aGfnLMZtfDmTnfrINBs+qiS4fhEjVGeQ=' 'nonce-eQw4j9WgXcB'" always; + add_header Referrer-Policy "no-referrer, strict-origin-when-cross-origin" always; + add_header Permissions-Policy "geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()" always; + } +} diff --git a/frontend-beheer-2024/package-lock.json b/frontend-beheer-2024/package-lock.json new file mode 100644 index 00000000..55af1ad6 --- /dev/null +++ b/frontend-beheer-2024/package-lock.json @@ -0,0 +1,3542 @@ +{ + "name": "frontend-beheer-2024", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "frontend-beheer-2024", + "version": "0.0.0", + "dependencies": { + "@mdi/font": "7.0.96", + "@vueuse/core": "^9.13.0", + "@webspellchecker/wproofreader-sdk-js": "^1.0.2", + "axios": "^1.3.4", + "keycloak-js": "^21.0.1", + "pinia": "^2.0.23", + "primevue": "^3.40.1", + "quill": "^1.3.7", + "roboto-fontface": "*", + "vue": "^3.2.38", + "vue-router": "^4.0.0", + "vuetify": "^3.5.17", + "webfontloader": "^1.0.0" + }, + "devDependencies": { + "@types/node": "^18.11.9", + "@types/quill": "^2.0.14", + "@types/webfontloader": "^1.6.35", + "@typescript-eslint/parser": "^5.62.0", + "@vitejs/plugin-vue": "^3.0.3", + "@vue/eslint-config-typescript": "^11.0.0", + "eslint": "^8.57.0", + "eslint-plugin-vue": "^9.3.0", + "prettier": "^2.8.8", + "prettier-eslint": "^16.3.0", + "sass": "^1.63.3", + "typescript": "^4.9.5", + "vite": "^3.0.9", + "vite-plugin-sass": "^0.1.0", + "vite-plugin-vuetify": "^1.0.0-alpha.12", + "vue-eslint-parser": "^8.3.0", + "vue-tsc": "^1.0.9" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz", + "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "dev": true + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@mdi/font": { + "version": "7.0.96", + "license": "Apache-2.0" + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "18.15.11", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@types/quill": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/@types/quill/-/quill-2.0.14.tgz", + "integrity": "sha512-zvoXCRnc2Dl8g+7/9VSAmRWPN6oH+MVhTPizmCR+GJCITplZ5VRVzMs4+a/nOE3yzNwEZqylJJrMB07bwbM1/g==", + "dev": true, + "dependencies": { + "parchment": "^1.1.2", + "quill-delta": "^5.1.0" + } + }, + "node_modules/@types/quill/node_modules/fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true + }, + "node_modules/@types/quill/node_modules/quill-delta": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-5.1.0.tgz", + "integrity": "sha512-X74oCeRI4/p0ucjb5Ma8adTXd9Scumz367kkMK5V/IatcX6A0vlgLgKbzXWy5nZmCGeNJm2oQX0d2Eqj+ZIlCA==", + "dev": true, + "dependencies": { + "fast-diff": "^1.3.0", + "lodash.clonedeep": "^4.5.0", + "lodash.isequal": "^4.5.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "dev": true + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.16", + "license": "MIT" + }, + "node_modules/@types/webfontloader": { + "version": "1.6.35", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/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, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/@vitejs/plugin-vue": { + "version": "3.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^3.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@volar/language-core": { + "version": "1.3.0-alpha.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/source-map": "1.3.0-alpha.0" + } + }, + "node_modules/@volar/source-map": { + "version": "1.3.0-alpha.0", + "dev": true, + "license": "MIT", + "dependencies": { + "muggle-string": "^0.2.2" + } + }, + "node_modules/@volar/typescript": { + "version": "1.3.0-alpha.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "1.3.0-alpha.0" + } + }, + "node_modules/@volar/vue-language-core": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "1.3.0-alpha.0", + "@volar/source-map": "1.3.0-alpha.0", + "@vue/compiler-dom": "^3.2.47", + "@vue/compiler-sfc": "^3.2.47", + "@vue/reactivity": "^3.2.47", + "@vue/shared": "^3.2.47", + "minimatch": "^6.1.6", + "muggle-string": "^0.2.2", + "vue-template-compiler": "^2.7.14" + } + }, + "node_modules/@volar/vue-language-core/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@volar/vue-language-core/node_modules/minimatch": { + "version": "6.2.0", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@volar/vue-typescript": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/typescript": "1.3.0-alpha.0", + "@volar/vue-language-core": "1.2.0" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.4.26", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.26.tgz", + "integrity": "sha512-N9Vil6Hvw7NaiyFUFBPXrAyETIGlQ8KcFMkyk6hW1Cl6NvoqvP+Y8p1Eqvx+UdqsnrnI9+HMUEJegzia3mhXmQ==", + "dependencies": { + "@babel/parser": "^7.24.4", + "@vue/shared": "3.4.26", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.4.26", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.26.tgz", + "integrity": "sha512-4CWbR5vR9fMg23YqFOhr6t6WB1Fjt62d6xdFPyj8pxrYub7d+OgZaObMsoxaF9yBUHPMiPFK303v61PwAuGvZA==", + "dependencies": { + "@vue/compiler-core": "3.4.26", + "@vue/shared": "3.4.26" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.4.26", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.26.tgz", + "integrity": "sha512-It1dp+FAOCgluYSVYlDn5DtZBxk1NCiJJfu2mlQqa/b+k8GL6NG/3/zRbJnHdhV2VhxFghaDq5L4K+1dakW6cw==", + "dependencies": { + "@babel/parser": "^7.24.4", + "@vue/compiler-core": "3.4.26", + "@vue/compiler-dom": "3.4.26", + "@vue/compiler-ssr": "3.4.26", + "@vue/shared": "3.4.26", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.10", + "postcss": "^8.4.38", + "source-map-js": "^1.2.0" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.4.26", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.26.tgz", + "integrity": "sha512-FNwLfk7LlEPRY/g+nw2VqiDKcnDTVdCfBREekF8X74cPLiWHUX6oldktf/Vx28yh4STNy7t+/yuLoMBBF7YDiQ==", + "dependencies": { + "@vue/compiler-dom": "3.4.26", + "@vue/shared": "3.4.26" + } + }, + "node_modules/@vue/devtools-api": { + "version": "6.5.0", + "license": "MIT" + }, + "node_modules/@vue/eslint-config-typescript": { + "version": "11.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "^5.0.0", + "@typescript-eslint/parser": "^5.0.0", + "vue-eslint-parser": "^9.0.0" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0", + "eslint-plugin-vue": "^9.0.0", + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@vue/eslint-config-typescript/node_modules/vue-eslint-parser": { + "version": "9.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4", + "eslint-scope": "^7.1.1", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.6" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.4.26", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.26.tgz", + "integrity": "sha512-E/ynEAu/pw0yotJeLdvZEsp5Olmxt+9/WqzvKff0gE67tw73gmbx6tRkiagE/eH0UCubzSlGRebCbidB1CpqZQ==", + "dependencies": { + "@vue/shared": "3.4.26" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.4.26", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.26.tgz", + "integrity": "sha512-AFJDLpZvhT4ujUgZSIL9pdNcO23qVFh7zWCsNdGQBw8ecLNxOOnPcK9wTTIYCmBJnuPHpukOwo62a2PPivihqw==", + "dependencies": { + "@vue/reactivity": "3.4.26", + "@vue/shared": "3.4.26" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.4.26", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.26.tgz", + "integrity": "sha512-UftYA2hUXR2UOZD/Fc3IndZuCOOJgFxJsWOxDkhfVcwLbsfh2CdXE2tG4jWxBZuDAs9J9PzRTUFt1PgydEtItw==", + "dependencies": { + "@vue/runtime-core": "3.4.26", + "@vue/shared": "3.4.26", + "csstype": "^3.1.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.4.26", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.26.tgz", + "integrity": "sha512-xoGAqSjYDPGAeRWxeoYwqJFD/gw7mpgzOvSxEmjWaFO2rE6qpbD1PC172YRpvKhrihkyHJkNDADFXTfCyVGhKw==", + "dependencies": { + "@vue/compiler-ssr": "3.4.26", + "@vue/shared": "3.4.26" + }, + "peerDependencies": { + "vue": "3.4.26" + } + }, + "node_modules/@vue/shared": { + "version": "3.4.26", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.26.tgz", + "integrity": "sha512-Fg4zwR0GNnjzodMt3KRy2AWGMKQXByl56+4HjN87soxLNU9P5xcJkstAlIeEF3cU6UYOzmJl1tV0dVPGIljCnQ==" + }, + "node_modules/@vuetify/loader-shared": { + "version": "1.7.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "find-cache-dir": "^3.3.2", + "upath": "^2.0.1" + }, + "peerDependencies": { + "vue": "^3.0.0", + "vuetify": "^3.0.0-beta.4" + } + }, + "node_modules/@vueuse/core": { + "version": "9.13.0", + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.16", + "@vueuse/metadata": "9.13.0", + "@vueuse/shared": "9.13.0", + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/metadata": { + "version": "9.13.0", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared": { + "version": "9.13.0", + "license": "MIT", + "dependencies": { + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@webspellchecker/wproofreader-sdk-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@webspellchecker/wproofreader-sdk-js/-/wproofreader-sdk-js-1.0.2.tgz", + "integrity": "sha512-0woPAttYGm7PVVrRMs+wqVMC9xeUEjslPENAgKNN4b0qrenSu2Y8VidmChFrlLFyAMRgVuNILz+XHR1xGBl6Bg==" + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "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" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "devOptional": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/array-union": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", + "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "devOptional": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "devOptional": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/de-indent": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.3.4", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-equal": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz", + "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==", + "dependencies": { + "is-arguments": "^1.1.1", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.5.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "dev": true + }, + "node_modules/doctrine": { + "version": "3.0.0", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/esbuild": { + "version": "0.15.18", + "devOptional": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.15.18", + "@esbuild/linux-loong64": "0.15.18", + "esbuild-android-64": "0.15.18", + "esbuild-android-arm64": "0.15.18", + "esbuild-darwin-64": "0.15.18", + "esbuild-darwin-arm64": "0.15.18", + "esbuild-freebsd-64": "0.15.18", + "esbuild-freebsd-arm64": "0.15.18", + "esbuild-linux-32": "0.15.18", + "esbuild-linux-64": "0.15.18", + "esbuild-linux-arm": "0.15.18", + "esbuild-linux-arm64": "0.15.18", + "esbuild-linux-mips64le": "0.15.18", + "esbuild-linux-ppc64le": "0.15.18", + "esbuild-linux-riscv64": "0.15.18", + "esbuild-linux-s390x": "0.15.18", + "esbuild-netbsd-64": "0.15.18", + "esbuild-openbsd-64": "0.15.18", + "esbuild-sunos-64": "0.15.18", + "esbuild-windows-32": "0.15.18", + "esbuild-windows-64": "0.15.18", + "esbuild-windows-arm64": "0.15.18" + } + }, + "node_modules/esbuild-linux-64": { + "version": "0.15.18", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-plugin-vue": { + "version": "9.10.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.3.0", + "natural-compare": "^1.4.0", + "nth-check": "^2.0.1", + "postcss-selector-parser": "^6.0.9", + "semver": "^7.3.5", + "vue-eslint-parser": "^9.0.1", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-plugin-vue/node_modules/vue-eslint-parser": { + "version": "9.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4", + "eslint-scope": "^7.1.1", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.6" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "license": "MIT" + }, + "node_modules/esutils": { + "version": "2.0.3", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eventemitter3": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz", + "integrity": "sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/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 + }, + "node_modules/fast-diff": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz", + "integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==" + }, + "node_modules/fast-glob": { + "version": "3.2.12", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "dev": true, + "license": "ISC" + }, + "node_modules/follow-redirects": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "devOptional": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has": { + "version": "1.0.3", + "devOptional": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immutable": { + "version": "4.3.0", + "devOptional": true, + "license": "MIT" + }, + "node_modules/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, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/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, + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "dev": true, + "license": "ISC" + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.11.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "devOptional": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/js-sha256": { + "version": "0.9.0", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/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 + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/keycloak-js": { + "version": "21.0.2", + "license": "Apache-2.0", + "dependencies": { + "base64-js": "^1.5.1", + "js-sha256": "^0.9.0" + } + }, + "node_modules/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, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==", + "dev": true + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "dev": true, + "license": "MIT" + }, + "node_modules/loglevel": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.9.1.tgz", + "integrity": "sha512-hP3I3kCrDIMuRwAwHltphhDM1r8i55H33GgqjXbrisuJhF4kRhW1dNuxsRklp4bXl8DSdLaNLuiL4A/LWRfxvg==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/loglevel-colored-level-prefix": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz", + "integrity": "sha512-u45Wcxxc+SdAlh4yeF/uKlC1SPUPCy0gullSNKXod5I4bmifzk+Q4lSLExNEVn19tGaJipbZ4V4jbFn79/6mVA==", + "dev": true, + "dependencies": { + "chalk": "^1.1.3", + "loglevel": "^1.4.1" + } + }, + "node_modules/loglevel-colored-level-prefix/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loglevel-colored-level-prefix/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loglevel-colored-level-prefix/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "dev": true, + "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" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loglevel-colored-level-prefix/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/loglevel-colored-level-prefix/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loglevel-colored-level-prefix/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/magic-string": { + "version": "0.30.10", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.10.tgz", + "integrity": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.15" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "devOptional": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "devOptional": true, + "license": "MIT" + }, + "node_modules/muggle-string": { + "version": "0.2.2", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "dev": true, + "license": "MIT" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/once": { + "version": "1.4.0", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/parchment": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/parchment/-/parchment-1.1.4.tgz", + "integrity": "sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==" + }, + "node_modules/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==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "devOptional": true, + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pinia": { + "version": "2.0.33", + "license": "MIT", + "dependencies": { + "@vue/devtools-api": "^6.5.0", + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "@vue/composition-api": "^1.4.0", + "typescript": ">=4.4.4", + "vue": "^2.6.14 || ^3.2.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss": { + "version": "8.4.38", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", + "integrity": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.11", + "dev": true, + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/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, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-eslint": { + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/prettier-eslint/-/prettier-eslint-16.3.0.tgz", + "integrity": "sha512-Lh102TIFCr11PJKUMQ2kwNmxGhTsv/KzUg9QYF2Gkw259g/kPgndZDWavk7/ycbRvj2oz4BPZ1gCU8bhfZH/Xg==", + "dev": true, + "dependencies": { + "@typescript-eslint/parser": "^6.7.5", + "common-tags": "^1.4.0", + "dlv": "^1.1.0", + "eslint": "^8.7.0", + "indent-string": "^4.0.0", + "lodash.merge": "^4.6.0", + "loglevel-colored-level-prefix": "^1.0.0", + "prettier": "^3.0.1", + "pretty-format": "^29.7.0", + "require-relative": "^0.8.7", + "typescript": "^5.2.2", + "vue-eslint-parser": "^9.1.0" + }, + "engines": { + "node": ">=16.10.0" + }, + "peerDependencies": { + "prettier-plugin-svelte": "^3.0.0", + "svelte-eslint-parser": "*" + }, + "peerDependenciesMeta": { + "prettier-plugin-svelte": { + "optional": true + }, + "svelte-eslint-parser": { + "optional": true + } + } + }, + "node_modules/prettier-eslint/node_modules/@typescript-eslint/parser": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", + "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/prettier-eslint/node_modules/@typescript-eslint/scope-manager": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", + "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/prettier-eslint/node_modules/@typescript-eslint/types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", + "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", + "dev": true, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/prettier-eslint/node_modules/@typescript-eslint/typescript-estree": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", + "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/prettier-eslint/node_modules/@typescript-eslint/visitor-keys": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", + "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/prettier-eslint/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/prettier-eslint/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/prettier-eslint/node_modules/prettier": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.2.5.tgz", + "integrity": "sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-eslint/node_modules/typescript": { + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/prettier-eslint/node_modules/vue-eslint-parser": { + "version": "9.4.2", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.4.2.tgz", + "integrity": "sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==", + "dev": true, + "dependencies": { + "debug": "^4.3.4", + "eslint-scope": "^7.1.1", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.6" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/primevue": { + "version": "3.40.1", + "resolved": "https://registry.npmjs.org/primevue/-/primevue-3.40.1.tgz", + "integrity": "sha512-TIFjoSUDiTmlxwQddaWckzcPIpj0F8a6ZMnm0tpAD/ieyUIHnNpbAi5de8LQf8eF0b+x5EkOkdjdngSlD+iPCw==", + "peerDependencies": { + "vue": "^3.0.0" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/quill": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/quill/-/quill-1.3.7.tgz", + "integrity": "sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==", + "dependencies": { + "clone": "^2.1.1", + "deep-equal": "^1.0.1", + "eventemitter3": "^2.0.3", + "extend": "^3.0.2", + "parchment": "^1.1.4", + "quill-delta": "^3.6.2" + } + }, + "node_modules/quill-delta": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-3.6.3.tgz", + "integrity": "sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==", + "dependencies": { + "deep-equal": "^1.0.1", + "extend": "^3.0.2", + "fast-diff": "1.1.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/readdirp": { + "version": "3.6.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/require-relative": { + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/require-relative/-/require-relative-0.8.7.tgz", + "integrity": "sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/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==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/roboto-fontface": { + "version": "0.10.0", + "license": "Apache-2.0" + }, + "node_modules/rollup": { + "version": "2.79.1", + "devOptional": true, + "license": "MIT", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/sass": { + "version": "1.63.3", + "devOptional": true, + "license": "MIT", + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/semver": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/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, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "dev": true, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/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, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", + "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "devOptional": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/upath": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/vite": { + "version": "3.2.10", + "resolved": "https://registry.npmjs.org/vite/-/vite-3.2.10.tgz", + "integrity": "sha512-Dx3olBo/ODNiMVk/cA5Yft9Ws+snLOXrhLtrI3F4XLt4syz2Yg8fayZMWScPKoz12v5BUv7VEmQHnsfpY80fYw==", + "devOptional": true, + "dependencies": { + "esbuild": "^0.15.9", + "postcss": "^8.4.18", + "resolve": "^1.22.1", + "rollup": "^2.79.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-plugin-sass": { + "version": "0.1.0", + "dev": true, + "license": "ISC" + }, + "node_modules/vite-plugin-vuetify": { + "version": "1.0.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@vuetify/loader-shared": "^1.7.1", + "debug": "^4.3.3", + "upath": "^2.0.1" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "vite": "^2.7.0 || ^3.0.0 || ^4.0.0", + "vuetify": "^3.0.0-beta.4" + } + }, + "node_modules/vue": { + "version": "3.4.26", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.26.tgz", + "integrity": "sha512-bUIq/p+VB+0xrJubaemrfhk1/FiW9iX+pDV+62I/XJ6EkspAO9/DXEjbDFoe8pIfOZBqfk45i9BMc41ptP/uRg==", + "dependencies": { + "@vue/compiler-dom": "3.4.26", + "@vue/compiler-sfc": "3.4.26", + "@vue/runtime-dom": "3.4.26", + "@vue/server-renderer": "3.4.26", + "@vue/shared": "3.4.26" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/vue-demi": { + "version": "0.13.11", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/vue-eslint-parser": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-8.3.0.tgz", + "integrity": "sha512-dzHGG3+sYwSf6zFBa0Gi9ZDshD7+ad14DGOdTLjruRVgZXe2J+DcZ9iUhyR48z5g1PqRa20yt3Njna/veLJL/g==", + "dev": true, + "dependencies": { + "debug": "^4.3.2", + "eslint-scope": "^7.0.0", + "eslint-visitor-keys": "^3.1.0", + "espree": "^9.0.0", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/vue-router": { + "version": "4.1.6", + "license": "MIT", + "dependencies": { + "@vue/devtools-api": "^6.4.5" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/vue-template-compiler": { + "version": "2.7.14", + "dev": true, + "license": "MIT", + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "node_modules/vue-tsc": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/vue-language-core": "1.2.0", + "@volar/vue-typescript": "1.2.0" + }, + "bin": { + "vue-tsc": "bin/vue-tsc.js" + }, + "peerDependencies": { + "typescript": "*" + } + }, + "node_modules/vuetify": { + "version": "3.5.17", + "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-3.5.17.tgz", + "integrity": "sha512-/Veklxxyu/l63q7QQOqJZeZukIKI2sBxY7FKMDcNup2KSGMjyjT+oYXy1DOdl7wlU3c3fKGQMFHqVWb0HDsyDw==", + "engines": { + "node": "^12.20 || >=14.13" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/johnleider" + }, + "peerDependencies": { + "typescript": ">=4.7", + "vite-plugin-vuetify": ">=1.0.0", + "vue": "^3.3.0", + "vue-i18n": "^9.0.0", + "webpack-plugin-vuetify": ">=2.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + }, + "vite-plugin-vuetify": { + "optional": true + }, + "vue-i18n": { + "optional": true + }, + "webpack-plugin-vuetify": { + "optional": true + } + } + }, + "node_modules/webfontloader": { + "version": "1.6.28", + "license": "Apache-2.0" + }, + "node_modules/which": { + "version": "2.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "dev": true, + "license": "ISC" + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/frontend-beheer-2024/package.json b/frontend-beheer-2024/package.json new file mode 100644 index 00000000..4986bdfc --- /dev/null +++ b/frontend-beheer-2024/package.json @@ -0,0 +1,44 @@ +{ + "name": "frontend-beheer-2024", + "version": "0.0.0", + "scripts": { + "dev": "vite", + "build": "vue-tsc --noEmit && vite build", + "preview": "vite preview", + "lint": "eslint . --fix --ignore-path .gitignore" + }, + "dependencies": { + "@mdi/font": "7.0.96", + "@vueuse/core": "^9.13.0", + "@webspellchecker/wproofreader-sdk-js": "^1.0.2", + "axios": "^1.3.4", + "keycloak-js": "^21.0.1", + "pinia": "^2.0.23", + "primevue": "^3.40.1", + "quill": "^1.3.7", + "roboto-fontface": "*", + "vue": "^3.2.38", + "vue-router": "^4.0.0", + "vuetify": "^3.5.17", + "webfontloader": "^1.0.0" + }, + "devDependencies": { + "@types/node": "^18.11.9", + "@types/quill": "^2.0.14", + "@types/webfontloader": "^1.6.35", + "@typescript-eslint/parser": "^5.62.0", + "@vitejs/plugin-vue": "^3.0.3", + "@vue/eslint-config-typescript": "^11.0.0", + "eslint": "^8.57.0", + "eslint-plugin-vue": "^9.3.0", + "prettier": "^2.8.8", + "prettier-eslint": "^16.3.0", + "sass": "^1.63.3", + "typescript": "^4.9.5", + "vite": "^3.0.9", + "vite-plugin-sass": "^0.1.0", + "vite-plugin-vuetify": "^1.0.0-alpha.12", + "vue-eslint-parser": "^8.3.0", + "vue-tsc": "^1.0.9" + } +} diff --git a/frontend-beheer-2024/public/favicon.ico b/frontend-beheer-2024/public/favicon.ico new file mode 100644 index 00000000..c63289f5 Binary files /dev/null and b/frontend-beheer-2024/public/favicon.ico differ diff --git a/frontend-beheer-2024/public/icon-link-external-v2.svg b/frontend-beheer-2024/public/icon-link-external-v2.svg new file mode 100644 index 00000000..a01ee0f4 --- /dev/null +++ b/frontend-beheer-2024/public/icon-link-external-v2.svg @@ -0,0 +1,16 @@ + + + 3945 externe link 24px + + + + + + + + + + + + + diff --git a/frontend-beheer-2024/src/App.vue b/frontend-beheer-2024/src/App.vue new file mode 100644 index 00000000..62f568c3 --- /dev/null +++ b/frontend-beheer-2024/src/App.vue @@ -0,0 +1,77 @@ + + + + + diff --git a/frontend-beheer-2024/src/assets/fonts/RO-SerifWeb-Regular.woff b/frontend-beheer-2024/src/assets/fonts/RO-SerifWeb-Regular.woff new file mode 100644 index 00000000..cf4032d5 Binary files /dev/null and b/frontend-beheer-2024/src/assets/fonts/RO-SerifWeb-Regular.woff differ diff --git a/frontend-beheer-2024/src/assets/fonts/ROsanswebtextbold.woff b/frontend-beheer-2024/src/assets/fonts/ROsanswebtextbold.woff new file mode 100644 index 00000000..6f0e3c81 Binary files /dev/null and b/frontend-beheer-2024/src/assets/fonts/ROsanswebtextbold.woff differ diff --git a/frontend-beheer-2024/src/assets/fonts/ROsanswebtextitalic.woff b/frontend-beheer-2024/src/assets/fonts/ROsanswebtextitalic.woff new file mode 100644 index 00000000..7e74d669 Binary files /dev/null and b/frontend-beheer-2024/src/assets/fonts/ROsanswebtextitalic.woff differ diff --git a/frontend-beheer-2024/src/assets/fonts/ROsanswebtextregular.woff b/frontend-beheer-2024/src/assets/fonts/ROsanswebtextregular.woff new file mode 100644 index 00000000..624c3f89 Binary files /dev/null and b/frontend-beheer-2024/src/assets/fonts/ROsanswebtextregular.woff differ diff --git a/frontend-beheer-2024/src/assets/fonts/ro-icons-2.1.woff2 b/frontend-beheer-2024/src/assets/fonts/ro-icons-2.1.woff2 new file mode 100644 index 00000000..c2865eb6 Binary files /dev/null and b/frontend-beheer-2024/src/assets/fonts/ro-icons-2.1.woff2 differ diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-24-lock-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-24-lock-blue.svg new file mode 100644 index 00000000..f1b17a53 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-24-lock-blue.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-64-family.svg b/frontend-beheer-2024/src/assets/images/icons/icon-64-family.svg new file mode 100644 index 00000000..93904ffb --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-64-family.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/01. 64px/17. Gezin + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-64-finance.svg b/frontend-beheer-2024/src/assets/images/icons/icon-64-finance.svg new file mode 100644 index 00000000..5798acde --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-64-finance.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/01. 64px/15. Financieen + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-64-kids.svg b/frontend-beheer-2024/src/assets/images/icons/icon-64-kids.svg new file mode 100644 index 00000000..aaf1b3f6 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-64-kids.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/01. 64px/13. Kinderen + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-64-living.svg b/frontend-beheer-2024/src/assets/images/icons/icon-64-living.svg new file mode 100644 index 00000000..b13f8103 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-64-living.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/01. 64px/16. Wonen + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-64-people.svg b/frontend-beheer-2024/src/assets/images/icons/icon-64-people.svg new file mode 100644 index 00000000..d708b4f8 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-64-people.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/01. 64px/14. Mensen + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-alert-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-alert-blue.svg new file mode 100644 index 00000000..e7746c7d --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-alert-blue.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/02. 24px/03. Meldingen/03. Alert + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-alert-red.svg b/frontend-beheer-2024/src/assets/images/icons/icon-alert-red.svg new file mode 100644 index 00000000..970184e5 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-alert-red.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/02. 24px/03. Meldingen/03. Alert + Created with Sketch. + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-area.svg b/frontend-beheer-2024/src/assets/images/icons/icon-area.svg new file mode 100644 index 00000000..65563368 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-area.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-arrow-down.svg b/frontend-beheer-2024/src/assets/images/icons/icon-arrow-down.svg new file mode 100644 index 00000000..2942d201 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-arrow-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-arrow-right.svg b/frontend-beheer-2024/src/assets/images/icons/icon-arrow-right.svg new file mode 100644 index 00000000..b19f3958 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-arrow-right.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-arrow-up-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-arrow-up-blue.svg new file mode 100644 index 00000000..80d77fa1 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-arrow-up-blue.svg @@ -0,0 +1,3 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-arrow-up.svg b/frontend-beheer-2024/src/assets/images/icons/icon-arrow-up.svg new file mode 100644 index 00000000..0c231bd0 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-arrow-up.svg @@ -0,0 +1,3 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-basis.svg b/frontend-beheer-2024/src/assets/images/icons/icon-basis.svg new file mode 100644 index 00000000..dec53132 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-basis.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-bewerken-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-bewerken-blue.svg new file mode 100644 index 00000000..ea79a5e9 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-bewerken-blue.svg @@ -0,0 +1,4 @@ + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-bewerken.svg b/frontend-beheer-2024/src/assets/images/icons/icon-bewerken.svg new file mode 100644 index 00000000..a79ddc07 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-bewerken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-calendar-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-calendar-blue.svg new file mode 100644 index 00000000..62009033 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-calendar-blue.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-calendar-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-calendar-white.svg new file mode 100644 index 00000000..9c8e9b06 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-calendar-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-calendar.svg b/frontend-beheer-2024/src/assets/images/icons/icon-calendar.svg new file mode 100644 index 00000000..6e5df3d8 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-calendar.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-characteristic.svg b/frontend-beheer-2024/src/assets/images/icons/icon-characteristic.svg new file mode 100644 index 00000000..a36e5b00 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-characteristic.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-check-filled-green.svg b/frontend-beheer-2024/src/assets/images/icons/icon-check-filled-green.svg new file mode 100644 index 00000000..6a10ef41 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-check-filled-green.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/02. 24px/03. Meldingen/04. Bevestiging + Created with Sketch. + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-check.svg b/frontend-beheer-2024/src/assets/images/icons/icon-check.svg new file mode 100644 index 00000000..d2cd0367 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-check2-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-check2-blue.svg new file mode 100644 index 00000000..1c526e99 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-check2-blue.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Check + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-check2-green.svg b/frontend-beheer-2024/src/assets/images/icons/icon-check2-green.svg new file mode 100644 index 00000000..b957b291 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-check2-green.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Check + Created with Sketch. + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-check2-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-check2-white.svg new file mode 100644 index 00000000..070a4aeb --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-check2-white.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Check + Created with Sketch. + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-checkbox-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-checkbox-white.svg new file mode 100644 index 00000000..92d8b248 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-checkbox-white.svg @@ -0,0 +1,3 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-chevron-left-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-chevron-left-blue.svg new file mode 100644 index 00000000..720f270d --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-chevron-left-blue.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-chevron-left.svg b/frontend-beheer-2024/src/assets/images/icons/icon-chevron-left.svg new file mode 100644 index 00000000..8bf8e871 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-chevron-left.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-chevron-right.svg b/frontend-beheer-2024/src/assets/images/icons/icon-chevron-right.svg new file mode 100644 index 00000000..7f1c8036 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-chevron-right.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-chevronround-right-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-chevronround-right-white.svg new file mode 100644 index 00000000..b96f5f88 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-chevronround-right-white.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/02. Delta/03. Rechts + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-close-hover.svg b/frontend-beheer-2024/src/assets/images/icons/icon-close-hover.svg new file mode 100644 index 00000000..ec8f1399 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-close-hover.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-close-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-close-white.svg new file mode 100644 index 00000000..d1a7df50 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-close-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-close.svg b/frontend-beheer-2024/src/assets/images/icons/icon-close.svg new file mode 100644 index 00000000..f885ae19 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-close.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-compare.svg b/frontend-beheer-2024/src/assets/images/icons/icon-compare.svg new file mode 100644 index 00000000..79fb0fa9 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-compare.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-copy.svg b/frontend-beheer-2024/src/assets/images/icons/icon-copy.svg new file mode 100644 index 00000000..a1f42e26 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-copy.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-cross-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-cross-blue.svg new file mode 100644 index 00000000..e2f14130 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-cross-blue.svg @@ -0,0 +1,23 @@ + + + + 580B74B8-4557-4B89-BECE-8F8ADF95B675 + Created with sketchtool. + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-cross-filled.svg b/frontend-beheer-2024/src/assets/images/icons/icon-cross-filled.svg new file mode 100644 index 00000000..9eb4f7ba --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-cross-filled.svg @@ -0,0 +1,14 @@ + + + + Symbol / cross + Created with Sketch. + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-cross-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-cross-white.svg new file mode 100644 index 00000000..93570dd8 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-cross-white.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-crosshair.svg b/frontend-beheer-2024/src/assets/images/icons/icon-crosshair.svg new file mode 100644 index 00000000..44dd5220 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-crosshair.svg @@ -0,0 +1,24 @@ + + + + 9D40975A-1AA3-4684-B88C-EE976EAD8D4E + Created with sketchtool. + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-cta-left.svg b/frontend-beheer-2024/src/assets/images/icons/icon-cta-left.svg new file mode 100644 index 00000000..f666aec8 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-cta-left.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-cta-right-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-cta-right-white.svg new file mode 100644 index 00000000..9469073d --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-cta-right-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-cta-right.svg b/frontend-beheer-2024/src/assets/images/icons/icon-cta-right.svg new file mode 100644 index 00000000..7a88dab1 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-cta-right.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-dart-down.svg b/frontend-beheer-2024/src/assets/images/icons/icon-dart-down.svg new file mode 100644 index 00000000..32576830 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-dart-down.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-dart-left.svg b/frontend-beheer-2024/src/assets/images/icons/icon-dart-left.svg new file mode 100644 index 00000000..12302c56 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-dart-left.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-dart-right-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-dart-right-blue.svg new file mode 100644 index 00000000..4aa87b17 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-dart-right-blue.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-dart-right.svg b/frontend-beheer-2024/src/assets/images/icons/icon-dart-right.svg new file mode 100644 index 00000000..e510f060 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-dart-right.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-dart-top-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-dart-top-white.svg new file mode 100644 index 00000000..243d3b3a --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-dart-top-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-dart-top.svg b/frontend-beheer-2024/src/assets/images/icons/icon-dart-top.svg new file mode 100644 index 00000000..573b73fd --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-dart-top.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-document-new.svg b/frontend-beheer-2024/src/assets/images/icons/icon-document-new.svg new file mode 100644 index 00000000..f3136d34 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-document-new.svg @@ -0,0 +1,10 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/05. Files/05. Document-Notificatie + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-document.svg b/frontend-beheer-2024/src/assets/images/icons/icon-document.svg new file mode 100644 index 00000000..8afc0cef --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-document.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Document + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-dots.svg b/frontend-beheer-2024/src/assets/images/icons/icon-dots.svg new file mode 100644 index 00000000..b282af65 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-dots.svg @@ -0,0 +1,21 @@ + + + + A8F5F2C3-F0EB-47CA-A4E1-F13BA14D3390 + Created with sketchtool. + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-double-left.svg b/frontend-beheer-2024/src/assets/images/icons/icon-double-left.svg new file mode 100644 index 00000000..33a73310 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-double-right.svg b/frontend-beheer-2024/src/assets/images/icons/icon-double-right.svg new file mode 100644 index 00000000..8fff12f0 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-download-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-download-white.svg new file mode 100644 index 00000000..57b42ab7 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-download-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-download.svg b/frontend-beheer-2024/src/assets/images/icons/icon-download.svg new file mode 100644 index 00000000..8866a470 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-download.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-draw.svg b/frontend-beheer-2024/src/assets/images/icons/icon-draw.svg new file mode 100644 index 00000000..01e026b7 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-draw.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-explanation.svg b/frontend-beheer-2024/src/assets/images/icons/icon-explanation.svg new file mode 100644 index 00000000..a6b7c5fe --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-explanation.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-facebook.svg b/frontend-beheer-2024/src/assets/images/icons/icon-facebook.svg new file mode 100644 index 00000000..8e4e8634 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-facebook.svg @@ -0,0 +1,7 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/08. Social/01. Facebook + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-feed-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-feed-blue.svg new file mode 100644 index 00000000..ab9f55fc --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-feed-blue.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/04. System/27. RSS + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-filter-rotated-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-filter-rotated-white.svg new file mode 100644 index 00000000..17101eb1 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-filter-rotated-white.svg @@ -0,0 +1,11 @@ + + + + 26. Filteren + Created with Sketch. + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-filter.svg b/frontend-beheer-2024/src/assets/images/icons/icon-filter.svg new file mode 100644 index 00000000..b445d276 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-filter.svg @@ -0,0 +1,17 @@ + + + + Group 6 + Created with Sketch. + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-hamburger-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-hamburger-white.svg new file mode 100644 index 00000000..19d43bab --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-hamburger-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-hamburger.svg b/frontend-beheer-2024/src/assets/images/icons/icon-hamburger.svg new file mode 100644 index 00000000..e1d1f8df --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-hamburger.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-home.svg b/frontend-beheer-2024/src/assets/images/icons/icon-home.svg new file mode 100644 index 00000000..1cdc3430 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-home.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Home + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-info-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-info-blue.svg new file mode 100644 index 00000000..711fa8ff --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-info-blue.svg @@ -0,0 +1,12 @@ + + + + Artboard + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-info.svg b/frontend-beheer-2024/src/assets/images/icons/icon-info.svg new file mode 100644 index 00000000..35f8235c --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-info.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-instagram.svg b/frontend-beheer-2024/src/assets/images/icons/icon-instagram.svg new file mode 100644 index 00000000..dbc05b5a --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-instagram.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/08. Social/03. Instagram + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-link-external-v2.svg b/frontend-beheer-2024/src/assets/images/icons/icon-link-external-v2.svg new file mode 100644 index 00000000..a01ee0f4 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-link-external-v2.svg @@ -0,0 +1,16 @@ + + + 3945 externe link 24px + + + + + + + + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-link-external-white-standard.svg b/frontend-beheer-2024/src/assets/images/icons/icon-link-external-white-standard.svg new file mode 100644 index 00000000..cf51f8e7 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-link-external-white-standard.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-link-external.svg b/frontend-beheer-2024/src/assets/images/icons/icon-link-external.svg new file mode 100644 index 00000000..1db43ef5 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-link-external.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-linkedin.svg b/frontend-beheer-2024/src/assets/images/icons/icon-linkedin.svg new file mode 100644 index 00000000..9fe236c9 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-linkedin.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/08. Social/02. LinkedIn + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-list.svg b/frontend-beheer-2024/src/assets/images/icons/icon-list.svg new file mode 100644 index 00000000..f2a4e569 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-list.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/List + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-loader.svg b/frontend-beheer-2024/src/assets/images/icons/icon-loader.svg new file mode 100644 index 00000000..85a0d879 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-loader.svg @@ -0,0 +1,23 @@ + + + k-loader + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-logout.svg b/frontend-beheer-2024/src/assets/images/icons/icon-logout.svg new file mode 100644 index 00000000..4533a5d9 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-logout.svg @@ -0,0 +1,10 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/04. System/25. Uitloggen + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-mail.svg b/frontend-beheer-2024/src/assets/images/icons/icon-mail.svg new file mode 100644 index 00000000..433541c0 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-mail.svg @@ -0,0 +1,21 @@ + + + + Shape + Created with Sketch. + + + + + + + + + + + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-map-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-map-blue.svg new file mode 100644 index 00000000..0d4056bf --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-map-blue.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Map + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-map.svg b/frontend-beheer-2024/src/assets/images/icons/icon-map.svg new file mode 100644 index 00000000..daed3019 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-map.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-marker-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-marker-blue.svg new file mode 100644 index 00000000..b176c5fb --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-marker-blue.svg @@ -0,0 +1,24 @@ + + + + 65F9126F-B3A9-4838-AF2F-38305A32FA01 + Created with sketchtool. + + + + + + + + + + + + + + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-marker.svg b/frontend-beheer-2024/src/assets/images/icons/icon-marker.svg new file mode 100644 index 00000000..b34c2475 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-marker.svg @@ -0,0 +1,24 @@ + + + + 65F9126F-B3A9-4838-AF2F-38305A32FA01 + Created with sketchtool. + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-min-filled-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-min-filled-blue.svg new file mode 100644 index 00000000..3cfef690 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-min-filled-blue.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/04. System/29. Min + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-minus-shape.svg b/frontend-beheer-2024/src/assets/images/icons/icon-minus-shape.svg new file mode 100644 index 00000000..b4560a7c --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-minus-shape.svg @@ -0,0 +1,27 @@ + + + + 0D1AF017-5B43-4879-BF4F-30A57F0C98BF + Created with sketchtool. + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-minus.svg b/frontend-beheer-2024/src/assets/images/icons/icon-minus.svg new file mode 100644 index 00000000..bcfe4c84 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-news.svg b/frontend-beheer-2024/src/assets/images/icons/icon-news.svg new file mode 100644 index 00000000..a0642696 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-news.svg @@ -0,0 +1,9 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Nieuws + Created with Sketch. + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-next.svg b/frontend-beheer-2024/src/assets/images/icons/icon-next.svg new file mode 100644 index 00000000..72e2361c --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-next.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-ok-green.svg b/frontend-beheer-2024/src/assets/images/icons/icon-ok-green.svg new file mode 100644 index 00000000..cd0d268a --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-ok-green.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-ok.svg b/frontend-beheer-2024/src/assets/images/icons/icon-ok.svg new file mode 100644 index 00000000..25185c25 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-ok.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-permalink.svg b/frontend-beheer-2024/src/assets/images/icons/icon-permalink.svg new file mode 100644 index 00000000..456f6265 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-permalink.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-play.svg b/frontend-beheer-2024/src/assets/images/icons/icon-play.svg new file mode 100644 index 00000000..811f3ed9 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-play.svg @@ -0,0 +1,11 @@ + + + + B526D507-FB1A-414F-AD20-64C8176F90F6 + Created with sketchtool. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-plus-filled-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-plus-filled-blue.svg new file mode 100644 index 00000000..904e0653 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-plus-filled-blue.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/04. System/28. Plus + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-plus-shape.svg b/frontend-beheer-2024/src/assets/images/icons/icon-plus-shape.svg new file mode 100644 index 00000000..3739a4ab --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-plus-shape.svg @@ -0,0 +1,27 @@ + + + + 1095F135-B295-4A94-BF9F-9EBB432250F5 + Created with sketchtool. + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-plus-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-plus-white.svg new file mode 100644 index 00000000..0ed887ce --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-plus-white.svg @@ -0,0 +1,24 @@ + + + + E1B370A8-65E6-4828-9E78-14F6ED502B2E + Created with sketchtool. + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-plus.svg b/frontend-beheer-2024/src/assets/images/icons/icon-plus.svg new file mode 100644 index 00000000..81f9be79 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-print.svg b/frontend-beheer-2024/src/assets/images/icons/icon-print.svg new file mode 100644 index 00000000..b48c669a --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-print.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-profile.svg b/frontend-beheer-2024/src/assets/images/icons/icon-profile.svg new file mode 100644 index 00000000..53076885 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-profile.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/02. 24px/04. System/15. User + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-publicatie.svg b/frontend-beheer-2024/src/assets/images/icons/icon-publicatie.svg new file mode 100644 index 00000000..9a57716e --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-publicatie.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/64/Formulier + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-refresh-document-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-refresh-document-white.svg new file mode 100644 index 00000000..8d7b61bd --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-refresh-document-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-refresh-document.svg b/frontend-beheer-2024/src/assets/images/icons/icon-refresh-document.svg new file mode 100644 index 00000000..cc864ea3 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-refresh-document.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-refresh.svg b/frontend-beheer-2024/src/assets/images/icons/icon-refresh.svg new file mode 100644 index 00000000..0300d58d --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-refresh.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Opnieuw + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-relations.svg b/frontend-beheer-2024/src/assets/images/icons/icon-relations.svg new file mode 100644 index 00000000..793542fc --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-relations.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-remove-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-remove-blue.svg new file mode 100644 index 00000000..980556e6 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-remove-blue.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-remove-white.svg b/frontend-beheer-2024/src/assets/images/icons/icon-remove-white.svg new file mode 100644 index 00000000..3cfb1220 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-remove-white.svg @@ -0,0 +1,31 @@ + + + + 0552FFDC-99E0-4E90-B8E3-3E8800B28520 + Created with sketchtool. + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-remove.svg b/frontend-beheer-2024/src/assets/images/icons/icon-remove.svg new file mode 100644 index 00000000..689d375e --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-remove.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-search-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-search-blue.svg new file mode 100644 index 00000000..288f3ffe --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-search-blue.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-search.svg b/frontend-beheer-2024/src/assets/images/icons/icon-search.svg new file mode 100644 index 00000000..2a2860c2 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-search.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-share-blue.svg b/frontend-beheer-2024/src/assets/images/icons/icon-share-blue.svg new file mode 100644 index 00000000..3433a386 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-share-blue.svg @@ -0,0 +1,12 @@ + + + + Artboard + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-share.svg b/frontend-beheer-2024/src/assets/images/icons/icon-share.svg new file mode 100644 index 00000000..c9cb5f66 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-share.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-tel.svg b/frontend-beheer-2024/src/assets/images/icons/icon-tel.svg new file mode 100644 index 00000000..7626bacb --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-tel.svg @@ -0,0 +1,7 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/04. System/36. Telefoon + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-thumb-down.svg b/frontend-beheer-2024/src/assets/images/icons/icon-thumb-down.svg new file mode 100644 index 00000000..b254fafc --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-thumb-down.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Ontevreden + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-thumb-up.svg b/frontend-beheer-2024/src/assets/images/icons/icon-thumb-up.svg new file mode 100644 index 00000000..bdc97877 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-thumb-up.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Tevreden + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-twitter.svg b/frontend-beheer-2024/src/assets/images/icons/icon-twitter.svg new file mode 100644 index 00000000..e240a52c --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-twitter.svg @@ -0,0 +1,7 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/08. Social/05. Twitter + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-upload.svg b/frontend-beheer-2024/src/assets/images/icons/icon-upload.svg new file mode 100644 index 00000000..b83ca63e --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-upload.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-warning.svg b/frontend-beheer-2024/src/assets/images/icons/icon-warning.svg new file mode 100644 index 00000000..422ecd24 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-warning.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/images/icons/icon-whatsapp.svg b/frontend-beheer-2024/src/assets/images/icons/icon-whatsapp.svg new file mode 100644 index 00000000..1317b2b8 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/icons/icon-whatsapp.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/08. Social/04. Whatsapp + + + + + + \ No newline at end of file diff --git a/frontend-beheer-2024/src/assets/images/logo-ro-zonder-caption-mobile.svg b/frontend-beheer-2024/src/assets/images/logo-ro-zonder-caption-mobile.svg new file mode 100644 index 00000000..c80617dd --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/logo-ro-zonder-caption-mobile.svg @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/logo-ro-zonder-caption.svg b/frontend-beheer-2024/src/assets/images/logo-ro-zonder-caption.svg new file mode 100644 index 00000000..e08787d5 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/logo-ro-zonder-caption.svg @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/frontend-beheer-2024/src/assets/images/logo.svg b/frontend-beheer-2024/src/assets/images/logo.svg new file mode 100644 index 00000000..5c939bf1 --- /dev/null +++ b/frontend-beheer-2024/src/assets/images/logo.svg @@ -0,0 +1,2 @@ + + diff --git a/frontend-beheer-2024/src/assets/styles/_colors.scss b/frontend-beheer-2024/src/assets/styles/_colors.scss new file mode 100644 index 00000000..a04ff47a --- /dev/null +++ b/frontend-beheer-2024/src/assets/styles/_colors.scss @@ -0,0 +1,17 @@ +$primary: #007bc7; +$primary-dark: #27598f; +$primary-darker: #154273; +$secondary: #b2d7ee; +$tertiary: #e5f1f9; +$quaternary: #cae3f0; +$quinary: #d2e5ee; +$accent: #82b1ff; +$error: #ff5252; +$error-dark: hsl(0, 100%, 45%); +$info: #2196f3; +$success: #4caf50; +$warning: #ffc107; +$headerTextColour: #000000; +$headerHoverColour: #fcf29a; +$grey: #f3f3f3; +$link-hover: #6da0d7; diff --git a/frontend-beheer-2024/src/assets/styles/_fonts.scss b/frontend-beheer-2024/src/assets/styles/_fonts.scss new file mode 100644 index 00000000..cdb2168f --- /dev/null +++ b/frontend-beheer-2024/src/assets/styles/_fonts.scss @@ -0,0 +1,18 @@ +@font-face { + font-family: 'Rijksoverheid Sans'; + src: url('@/assets/fonts/ROsanswebtextregular.woff') format('opentype'); + font-style: normal; + font-weight: 400; +} +@font-face { + font-family: 'Rijksoverheid Sans'; + src: url('@/assets/fonts/ROsanswebtextbold.woff') format('opentype'); + font-weight: 700; + font-style: normal; +} +@font-face { + font-family: 'Rijksoverheid Sans'; + src: url('@/assets/fonts/ROsanswebtextitalic.woff') format('opentype'); + font-style: italic; + font-weight: 400; +} diff --git a/frontend-beheer-2024/src/assets/styles/_variables.scss b/frontend-beheer-2024/src/assets/styles/_variables.scss new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/frontend-beheer-2024/src/assets/styles/_variables.scss @@ -0,0 +1 @@ + diff --git a/frontend-beheer-2024/src/assets/styles/main.scss b/frontend-beheer-2024/src/assets/styles/main.scss new file mode 100644 index 00000000..6b3b357f --- /dev/null +++ b/frontend-beheer-2024/src/assets/styles/main.scss @@ -0,0 +1,127 @@ +@import 'colors'; +@import 'variables'; + +body { + color: $primary-dark; + font-size: 127% !important; +} + +.sticky { + height: 100%; + position: sticky !important; + top: 0; +} + +.v-messages__message { + padding-left: 0.5rem !important; + font-size: 1rem; + line-height: 1.2rem !important; +} + +.v-input__details { + padding-inline-start: 0 !important; +} + +.v-label { + font-size: 18px !important; +} + +.logo { + position: relative; +} +.logo > a { + display: inline-block; +} +.logo img { + width: 150px; + max-width: 150px; + margin: 0.5em 0; +} +@media (min-width: 51em) { + .logo img { + width: 180px; + max-width: 180px; + margin: 0; + } +} + +a { + color: $primary; +} + +.no-focus-border { + box-shadow: 0 0 0 0 #000 !important; + outline: 0; +} + +a:focus { + box-shadow: 0 0 0 0 #000 !important; + border: 2px dashed $primary-darker; + outline: 0; +} + +a { + border: 2px solid transparent; +} + +a.focus-border:focus { + border-left: 2px dashed $primary-darker; + border-right: 2px dashed $primary-darker; + border-bottom: 2px dashed $primary-darker; +} + +.row--footer { + background-color: #e5f1f9; + border-top: 0.75em solid #b2d7ee; + padding: 1.5em; + padding-bottom: 1.5em; +} + +.list--linked { + list-style: none; + padding-left: 0; +} +.list--linked li { + background-position: 0 0.5em; + background-repeat: no-repeat; + background-image: url(@/assets/images/icons/icon-dart-right-blue.svg); + background-size: 6px 9px; + padding-left: 1em; + clear: both; +} +.list--linked li a { + background-position: right 50%; +} +.list--linked li a:hover { + text-decoration: underline; +} + +.list { + margin-bottom: 0.5em; +} + +.is-external-link-icon { + text-decoration: underline !important; + padding-right: 1.25em; + margin-right: 0.25em; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 13px 12px; + background-image: url(@/assets/images/icons/icon-link-external.svg); +} + +a { + color: #154273; + text-decoration: underline; + -webkit-transition: color 150ms ease-in-out, outline-offset 150ms ease-in-out; + transition: color 150ms ease-in-out, outline-offset 150ms ease-in-out; + word-break: break-word; +} + +html { + padding-bottom: 0em !important; +} + +.btn-title:first-letter { + text-transform: capitalize; +} \ No newline at end of file diff --git a/frontend-beheer-2024/src/components/AlgregButton.vue b/frontend-beheer-2024/src/components/AlgregButton.vue new file mode 100644 index 00000000..dcedfdad --- /dev/null +++ b/frontend-beheer-2024/src/components/AlgregButton.vue @@ -0,0 +1,113 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/AlgregSnackbar.vue b/frontend-beheer-2024/src/components/AlgregSnackbar.vue new file mode 100644 index 00000000..313b479d --- /dev/null +++ b/frontend-beheer-2024/src/components/AlgregSnackbar.vue @@ -0,0 +1,41 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/AlgregWarningDialog.vue b/frontend-beheer-2024/src/components/AlgregWarningDialog.vue new file mode 100644 index 00000000..a0731417 --- /dev/null +++ b/frontend-beheer-2024/src/components/AlgregWarningDialog.vue @@ -0,0 +1,67 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/DownloadDropdown.vue b/frontend-beheer-2024/src/components/DownloadDropdown.vue new file mode 100644 index 00000000..a0f0df11 --- /dev/null +++ b/frontend-beheer-2024/src/components/DownloadDropdown.vue @@ -0,0 +1,209 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/ExternalLink.vue b/frontend-beheer-2024/src/components/ExternalLink.vue new file mode 100644 index 00000000..6764cfee --- /dev/null +++ b/frontend-beheer-2024/src/components/ExternalLink.vue @@ -0,0 +1,13 @@ + + + diff --git a/frontend-beheer-2024/src/components/FlowChecker.vue b/frontend-beheer-2024/src/components/FlowChecker.vue new file mode 100644 index 00000000..44f45098 --- /dev/null +++ b/frontend-beheer-2024/src/components/FlowChecker.vue @@ -0,0 +1,172 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/FormFieldInput.vue b/frontend-beheer-2024/src/components/FormFieldInput.vue new file mode 100644 index 00000000..70da450d --- /dev/null +++ b/frontend-beheer-2024/src/components/FormFieldInput.vue @@ -0,0 +1,139 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/FormFieldWrapper.vue b/frontend-beheer-2024/src/components/FormFieldWrapper.vue new file mode 100644 index 00000000..d7392764 --- /dev/null +++ b/frontend-beheer-2024/src/components/FormFieldWrapper.vue @@ -0,0 +1,338 @@ + + + + + + + diff --git a/frontend-beheer-2024/src/components/FormSideBlock/FormSideBlock.vue b/frontend-beheer-2024/src/components/FormSideBlock/FormSideBlock.vue new file mode 100644 index 00000000..119545d9 --- /dev/null +++ b/frontend-beheer-2024/src/components/FormSideBlock/FormSideBlock.vue @@ -0,0 +1,264 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/FormSideBlock/StatusChip.vue b/frontend-beheer-2024/src/components/FormSideBlock/StatusChip.vue new file mode 100644 index 00000000..983ae12f --- /dev/null +++ b/frontend-beheer-2024/src/components/FormSideBlock/StatusChip.vue @@ -0,0 +1,101 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/ListWithLinksField.vue b/frontend-beheer-2024/src/components/ListWithLinksField.vue new file mode 100644 index 00000000..cbfa3cbf --- /dev/null +++ b/frontend-beheer-2024/src/components/ListWithLinksField.vue @@ -0,0 +1,143 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/MetadataManual.vue b/frontend-beheer-2024/src/components/MetadataManual.vue new file mode 100644 index 00000000..8eb70db4 --- /dev/null +++ b/frontend-beheer-2024/src/components/MetadataManual.vue @@ -0,0 +1,16 @@ + + + diff --git a/frontend-beheer-2024/src/components/QualityInspector/ScoreDisplay.vue b/frontend-beheer-2024/src/components/QualityInspector/ScoreDisplay.vue new file mode 100644 index 00000000..e9e22b5d --- /dev/null +++ b/frontend-beheer-2024/src/components/QualityInspector/ScoreDisplay.vue @@ -0,0 +1,21 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/QualityInspector/ScoreSummaryBlock.vue b/frontend-beheer-2024/src/components/QualityInspector/ScoreSummaryBlock.vue new file mode 100644 index 00000000..97db8677 --- /dev/null +++ b/frontend-beheer-2024/src/components/QualityInspector/ScoreSummaryBlock.vue @@ -0,0 +1,43 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/QualityInspector/index.vue b/frontend-beheer-2024/src/components/QualityInspector/index.vue new file mode 100644 index 00000000..a4d3bfaf --- /dev/null +++ b/frontend-beheer-2024/src/components/QualityInspector/index.vue @@ -0,0 +1,36 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/RuleListing.vue b/frontend-beheer-2024/src/components/RuleListing.vue new file mode 100644 index 00000000..dede9d1c --- /dev/null +++ b/frontend-beheer-2024/src/components/RuleListing.vue @@ -0,0 +1,25 @@ + + + diff --git a/frontend-beheer-2024/src/components/UserDetails.vue b/frontend-beheer-2024/src/components/UserDetails.vue new file mode 100644 index 00000000..0f9d05ec --- /dev/null +++ b/frontend-beheer-2024/src/components/UserDetails.vue @@ -0,0 +1,39 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/archive/ArchiveTable.vue b/frontend-beheer-2024/src/components/archive/ArchiveTable.vue new file mode 100644 index 00000000..c35d5333 --- /dev/null +++ b/frontend-beheer-2024/src/components/archive/ArchiveTable.vue @@ -0,0 +1,128 @@ + + + diff --git a/frontend-beheer-2024/src/components/archive/VersionDrawer.vue b/frontend-beheer-2024/src/components/archive/VersionDrawer.vue new file mode 100644 index 00000000..3b2a209c --- /dev/null +++ b/frontend-beheer-2024/src/components/archive/VersionDrawer.vue @@ -0,0 +1,133 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/archive/VersionSelectionBox.vue b/frontend-beheer-2024/src/components/archive/VersionSelectionBox.vue new file mode 100644 index 00000000..6c15cd25 --- /dev/null +++ b/frontend-beheer-2024/src/components/archive/VersionSelectionBox.vue @@ -0,0 +1,102 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/dashboard/BrokenLinksTable.vue b/frontend-beheer-2024/src/components/dashboard/BrokenLinksTable.vue new file mode 100644 index 00000000..c6991afe --- /dev/null +++ b/frontend-beheer-2024/src/components/dashboard/BrokenLinksTable.vue @@ -0,0 +1,102 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/dashboard/CountPerType.vue b/frontend-beheer-2024/src/components/dashboard/CountPerType.vue new file mode 100644 index 00000000..998b65b4 --- /dev/null +++ b/frontend-beheer-2024/src/components/dashboard/CountPerType.vue @@ -0,0 +1,206 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/dashboard/DataCompleteness.vue b/frontend-beheer-2024/src/components/dashboard/DataCompleteness.vue new file mode 100644 index 00000000..d5098f4e --- /dev/null +++ b/frontend-beheer-2024/src/components/dashboard/DataCompleteness.vue @@ -0,0 +1,93 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/editor/EditorFeedback.vue b/frontend-beheer-2024/src/components/editor/EditorFeedback.vue new file mode 100644 index 00000000..9b43372f --- /dev/null +++ b/frontend-beheer-2024/src/components/editor/EditorFeedback.vue @@ -0,0 +1,42 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/editor/EditorField.vue b/frontend-beheer-2024/src/components/editor/EditorField.vue new file mode 100644 index 00000000..dbda5c25 --- /dev/null +++ b/frontend-beheer-2024/src/components/editor/EditorField.vue @@ -0,0 +1,152 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/editor/EditorToolbar.vue b/frontend-beheer-2024/src/components/editor/EditorToolbar.vue new file mode 100644 index 00000000..89015d64 --- /dev/null +++ b/frontend-beheer-2024/src/components/editor/EditorToolbar.vue @@ -0,0 +1,17 @@ + + + diff --git a/frontend-beheer-2024/src/components/layout/AppFooter.vue b/frontend-beheer-2024/src/components/layout/AppFooter.vue new file mode 100644 index 00000000..9b4d0acf --- /dev/null +++ b/frontend-beheer-2024/src/components/layout/AppFooter.vue @@ -0,0 +1,35 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/layout/AppHeader.vue b/frontend-beheer-2024/src/components/layout/AppHeader.vue new file mode 100644 index 00000000..24110000 --- /dev/null +++ b/frontend-beheer-2024/src/components/layout/AppHeader.vue @@ -0,0 +1,90 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/layout/Breadcrumb.vue b/frontend-beheer-2024/src/components/layout/Breadcrumb.vue new file mode 100644 index 00000000..6ee1ed77 --- /dev/null +++ b/frontend-beheer-2024/src/components/layout/Breadcrumb.vue @@ -0,0 +1,44 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/layout/NavBar.vue b/frontend-beheer-2024/src/components/layout/NavBar.vue new file mode 100644 index 00000000..b96dde8c --- /dev/null +++ b/frontend-beheer-2024/src/components/layout/NavBar.vue @@ -0,0 +1,110 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/layout/TemplateDrawer.vue b/frontend-beheer-2024/src/components/layout/TemplateDrawer.vue new file mode 100644 index 00000000..ac17f149 --- /dev/null +++ b/frontend-beheer-2024/src/components/layout/TemplateDrawer.vue @@ -0,0 +1,124 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/organisatie/OptInButton.vue b/frontend-beheer-2024/src/components/organisatie/OptInButton.vue new file mode 100644 index 00000000..9338c7de --- /dev/null +++ b/frontend-beheer-2024/src/components/organisatie/OptInButton.vue @@ -0,0 +1,65 @@ + + + + diff --git a/frontend-beheer-2024/src/components/organisatie/OrgDetailForm.vue b/frontend-beheer-2024/src/components/organisatie/OrgDetailForm.vue new file mode 100644 index 00000000..06bf70ad --- /dev/null +++ b/frontend-beheer-2024/src/components/organisatie/OrgDetailForm.vue @@ -0,0 +1,166 @@ + + + + + diff --git a/frontend-beheer-2024/src/components/user-management/UserDrawer.vue b/frontend-beheer-2024/src/components/user-management/UserDrawer.vue new file mode 100644 index 00000000..8278d824 --- /dev/null +++ b/frontend-beheer-2024/src/components/user-management/UserDrawer.vue @@ -0,0 +1,200 @@ + + + diff --git a/frontend-beheer-2024/src/config/footer.ts b/frontend-beheer-2024/src/config/footer.ts new file mode 100644 index 00000000..5fb8fcef --- /dev/null +++ b/frontend-beheer-2024/src/config/footer.ts @@ -0,0 +1,31 @@ +import type { FooterPage } from '@/types/footer' + +const footer: FooterPage[] = [ + { + key: 'manual', + label: 'Handleiding Publicatiestandaard', + path: 'https://algoritmes.pleio.nl/groups/view/fc9e6489-91e6-4177-b564-2cbea8e56132/kennisbank/files/6254c700-85ae-48dc-8f3b-31bcf6814cfc', + }, + { + key: 'pleio', + label: 'Algoritmes.pleio.nl', + path: 'https://algoritmes.pleio.nl/', + }, + { + key: 'digitaleoverheid_nl', + label: 'Digitale Overheid', + path: 'https://digitaleoverheid.nl/overzicht-van-alle-onderwerpen/algoritmes/', + }, + { + key: 'data_overheid_nl', + label: 'Data.overheid.nl', + path: 'https://data.overheid.nl', + }, + { + key: 'overheid_nl', + label: 'Overheid.nl', + path: 'https://overheid.nl/', + }, +] + +export default footer diff --git a/frontend-beheer-2024/src/config/notifications.ts b/frontend-beheer-2024/src/config/notifications.ts new file mode 100644 index 00000000..65072e7a --- /dev/null +++ b/frontend-beheer-2024/src/config/notifications.ts @@ -0,0 +1,243 @@ +import { Notification, SnackbarTheme } from '@/store/snackbar' + +export const notifications: Record = { + removeOrgSuccess: { + message: 'Organisatie verwijderd.', + theme: SnackbarTheme.success, + }, + noAccessRights: { + message: + 'Je mist de rechten om dit in te zien. Neem contact op met het Algoritmeregister als je denkt dat dit niet klopt.', + theme: SnackbarTheme.error, + }, + fetchMeErrorDisabled: { + message: + 'Je account is nog niet geactiveerd. Neem contact op met het Algoritmeregister om je account te activeren.', + theme: SnackbarTheme.error, + duration: 10000, + }, + fetchArchiveError: { + message: 'Er is iets fout gegaan bij het ophalen van het archief.', + theme: SnackbarTheme.error, + }, + addUserErrorNotUniqueUsername: { + message: 'Het aangegeven e-mailadres is al in gebruik.', + theme: SnackbarTheme.error, + }, + addUserErrorInvalidEmail: { + message: + 'Het aangegeven e-mailadres heeft niet het juiste format. Deze hoort er als volgt uit te zien: naam@domein.nl', + theme: SnackbarTheme.error, + }, + addUserSuccess: { + message: 'Gebruiker toegevoegd!', + theme: SnackbarTheme.success, + }, + updateUserSuccess: { + message: 'Gebruiker aangepast', + theme: SnackbarTheme.success, + }, + removeUserSuccess: { + message: 'Gebruiker verwijderd', + theme: SnackbarTheme.success, + }, + addOrgSuccess: { + message: 'Organisatie toegevoegd', + theme: SnackbarTheme.success, + }, + updateOrgSuccess: { + message: 'Organisatie opgeslagen', + theme: SnackbarTheme.success, + }, + fetchOverviewError: { + message: 'Er is een fout opgetreden bij het ophalen van de algoritmes.', + theme: SnackbarTheme.error, + }, + fetchMetadataError: { + message: + 'Er is een fout opgetreden bij het ophalen van het aanlevervoorschrift.', + theme: SnackbarTheme.error, + }, + fetchFormDataError: { + message: 'Er is iets fout gegaan bij het opvragen van het algoritme.', + theme: SnackbarTheme.error, + }, + cannotFindAlgorithmError: { + message: + 'Algoritme niet gevonden. U bent teruggestuurd naar uw homepagina.', + theme: SnackbarTheme.error, + }, + createSuccess: { + message: 'Het algoritme is succesvol opgeslagen.', + theme: SnackbarTheme.success, + }, + createValidationError: { + message: + 'Er is iets fout gegaan bij het aanmaken van het algoritme. De volgende velden geven een foutmelding:', + theme: SnackbarTheme.error, + }, + createGenericError: { + message: 'Er is iets misgegaan bij het valideren van de formuliervelden.', + theme: SnackbarTheme.error, + }, + updateSuccess: { + message: 'Het algoritme is succesvol opgeslagen.', + + theme: SnackbarTheme.success, + }, + updateValidationError: { + message: + 'Er is iets fout gegaan bij het opslaan van het algoritme. De volgende velden geven een foutmelding:', + theme: SnackbarTheme.error, + }, + updateGenericError: { + message: 'Er is iets misgegaan bij het valideren van de formuliervelden.', + theme: SnackbarTheme.error, + }, + updateNoChanges: { + message: + 'Er zijn geen wijzigingen ten opzichte van de huidige versie. Er wordt geen nieuwe versie aangemaakt.', + theme: SnackbarTheme.success, + }, + retractError: { + message: 'Er is iets fout gegaan bij het intrekken van het algoritme.', + theme: SnackbarTheme.error, + }, + retractSuccess: { + message: 'Dit algoritme is ingetrokken.', + theme: SnackbarTheme.success, + }, + publishError: { + message: 'Er is iets fout gegaan bij het publiceren van het algoritme.', + theme: SnackbarTheme.error, + }, + publishSuccess: { + message: 'Het algoritme is succesvol gepubliceerd.', + theme: SnackbarTheme.success, + }, + releaseError: { + message: 'Er is iets fout gegaan bij het vrijgeven van het algoritme.', + theme: SnackbarTheme.error, + }, + releaseSuccess: { + message: 'Het algoritme is succesvol vrijgegeven.', + theme: SnackbarTheme.success, + }, + releaseOnPublishedError: { + message: + 'Dit algoritme kan niet worden vrijgegeven. Deze fout kan voorkomen als een gepubliceerd en ongewijzigd algoritme word vrijgegeven.', + + theme: SnackbarTheme.error, + }, + previewError: { + message: 'Er is iets fout gegaan bij het genereren van de voorbeeldpagina.', + theme: SnackbarTheme.error, + }, + removeError: { + message: 'Er is iets fout gegaan bij het verwijderen van het algoritme.', + theme: SnackbarTheme.error, + }, + removeSuccess: { + message: 'Het algoritme is succesvol verwijderd.', + theme: SnackbarTheme.success, + }, + noOrgSelectedError: { + message: 'Er kan geen algoritme worden aangemaakt zonder een organisatie.', + theme: SnackbarTheme.error, + }, + unknownError: { + message: + 'Een gedeelte van het proces is misgegaan. Probeer het opnieuw of ververs je scherm.', + theme: SnackbarTheme.error, + }, + fetchAlgorithmVersionsError: { + message: 'Er is iets fout gegaan bij het ophalen van opgeslagen versies.', + theme: SnackbarTheme.error, + }, + archiveVersionSuccess: { + message: 'De geselecteerde versie is gearchiveerd.', + theme: SnackbarTheme.success, + }, + archiveVersionError: { + message: 'Er is iets fout gegaan bij het archiveren van de geselecteerde versie.', + theme: SnackbarTheme.error, + }, + unarchiveVersionSuccess: { + message: 'De geselecteerde versie is gedearchiveerd.', + theme: SnackbarTheme.success, + }, + unarchiveVersionError: { + message: 'Er is iets fout gegaan bij het dearchiveren van de geselecteerde versie.', + theme: SnackbarTheme.error, + }, +} + +// Dialogs are based on action_keys as given by the available action. +export interface ActionWarning { + title: string + content: string +} + +export const dialogContent: Record = { + publish: { + title: 'je gaat publiceren', + content: 'Weet u zeker dat u dit algoritme wilt publiceren?', + }, + retract: { + title: 'je gaat een algoritmebeschrijving intrekken', + content: + 'Weet u zeker dat u de vrijgave van dit algoritme wilt intrekken? Het algoritme is dan niet meer zichtbaar voor publiek en word teruggestuurd naar de redacteur.', + }, + release_to_2: { + title: 'je gaat vrijgeven naar de goedkeurder', + content: + 'Weet u zeker dat u deze algoritmebeschrijving wilt vrijgeven? Deze kan dan gepubliceerd worden door de goedkeurder.', + }, + reject_to_1: { + title: 'je gaat afkeuren', + content: + 'Weet u zeker dat u deze algoritmebeschrijving wilt afkeuren? De redacteur kan deze dan weer aanpassen.', + }, + release: { + title: 'je gaat vrijgeven ter goedkeuring', + content: + 'Weet u zeker dat u dit algoritme wilt vrijgeven? Het algoritme kan dan worden gepubliceerd door BZK.', + }, + remove: { + title: 'je gaat een beschrijving verwijderen', + content: + 'Weet u zeker dat u dit algoritme wilt verwijderen? Het algoritme word volledig uit de database gehaald.', + }, + showArchivedVersion: { + title: 'je gaat een gearchiveerde versie inladen', + content: 'U gaat een gearchiveerde versie van dit algoritme in het webformulier laden.', + }, +} + +export const httpNotifications: Record = { + 400: { + message: + '(400) Er is een fout opgetreden bij het verwerken van uw verzoek. Controleer de ingevoerde gegevens en probeer het opnieuw.', + theme: SnackbarTheme.error, + }, + 401: { + message: + '(401) U moet ingelogd zijn om deze actie uit te voeren. Log in of registreer om toegang te krijgen.', + theme: SnackbarTheme.error, + }, + 403: { + message: + '(403) U heeft geen toestemming om deze actie uit te voeren of toegang te krijgen tot deze bron.', + theme: SnackbarTheme.error, + }, + 404: { + message: + '(404) Het algoritme dat u zoekt is niet gevonden. Controleer de zoekopdracht of ga terug naar het overzicht van algoritmes.', + theme: SnackbarTheme.error, + }, + 500: { + message: + '(500) Er is een interne applicatiefout opgetreden. Neem contact op met de beheerder.', + theme: SnackbarTheme.error, + }, +} diff --git a/frontend-beheer-2024/src/config/publication-standard.ts b/frontend-beheer-2024/src/config/publication-standard.ts new file mode 100644 index 00000000..7ed7a0b2 --- /dev/null +++ b/frontend-beheer-2024/src/config/publication-standard.ts @@ -0,0 +1,4 @@ +export default { + preferredVersion: '1.0', + availableVersions: ['1.0'], +} diff --git a/frontend-beheer-2024/src/config/score.ts b/frontend-beheer-2024/src/config/score.ts new file mode 100644 index 00000000..20106fae --- /dev/null +++ b/frontend-beheer-2024/src/config/score.ts @@ -0,0 +1,115 @@ +interface Config { + [key: string]: number +} + +interface ScoreConfig { + '0.1': Config + '0.4': Config + '1.0': Config +} + +const scoreConfig: ScoreConfig = { + '0.1': { + name: 8, + organization: 8, + department: 8, + description_short: 8, + type: 8, + category: 8, + website: 2, + status: 8, + goal: 8, + impact: 8, + proportionality: 8, + decision_making_process: 8, + documentation: 2, + description: 2, + application_url: 2, + publiccode: 2, + mprd: 2, + source_data: 2, + methods_and_models: 2, + monitoring: 2, + human_intervention: 8, + risks: 2, + performance_standard: 2, + competent_authority: 8, + lawful_basis: 8, + iama: 8, + iama_description: 8, + dpia: 2, + dpia_description: 2, + objection_procedure: 8, + standard_version: 0, + uuid: 0, + url: 2, + contact_email: 8, + area: 2, + lang: 2, + revision_date: 2, + }, + '0.4': { + name: 8, + organization: 8, + description_short: 8, + type: 8, + category: 8, + website: 2, + status: 8, + begin_date: 8, + end_date: 0, + goal: 8, + proportionality: 8, + provider: 2, + lawful_basis: 2, + lawful_basis_link: 2, + impacttoetsen: 8, + iama_description: 2, + url: 2, + contact_email: 8, + lang: 2, + standard_version: 0, + uuid: 0, + source_id: 0, + tags: 2, + source_data: 8, + source_data_link: 0, + methods_and_models: 2, + publiccode: 0, + human_intervention: 8, + risks: 8, + }, + '1.0': { + name: 8, + description_short: 8, + organization: 8, + category: 8, + status: 8, + begin_date: 8, + end_date: 0, + contact_email: 8, + website: 2, + publication_category: 8, + url: 2, + goal: 8, + proportionality: 8, + human_intervention: 8, + risks: 8, + lawful_basis: 2, + lawful_basis_grouping: 2, + process_index_url: 2, + impacttoetsen: 8, + impacttoetsen_grouping: 2, + source_data: 8, + source_data_grouping: 2, + methods_and_models: 2, + provider: 8, + publiccode: 0, + lang: 2, + standard_version: 0, + source_id: 0, + tags: 2, + }, +} + +export default scoreConfig diff --git a/frontend-beheer-2024/src/content.json b/frontend-beheer-2024/src/content.json new file mode 100644 index 00000000..066c3723 --- /dev/null +++ b/frontend-beheer-2024/src/content.json @@ -0,0 +1,6 @@ +{ + "metadataManual": { + "title": "Handleiding metadatastandaard", + "url": "https://algoritmes.pleio.nl/groups/view/fc9e6489-91e6-4177-b564-2cbea8e56132/kennisbank/files/6254c700-85ae-48dc-8f3b-31bcf6814cfc" + } +} \ No newline at end of file diff --git a/frontend-beheer-2024/src/editor.d.ts b/frontend-beheer-2024/src/editor.d.ts new file mode 100644 index 00000000..fe85ed95 --- /dev/null +++ b/frontend-beheer-2024/src/editor.d.ts @@ -0,0 +1,13 @@ +declare module 'quill' { + import Quill from 'quill/core' + + export default Quill +} + +declare module 'quill/modules/keyboard' { + import Keyboard from 'quill/modules/keyboard' + export default Keyboard + export const keyBindings: any +} + +declare module '@webspellchecker/wproofreader-sdk-js' diff --git a/frontend-beheer-2024/src/main.ts b/frontend-beheer-2024/src/main.ts new file mode 100644 index 00000000..53475348 --- /dev/null +++ b/frontend-beheer-2024/src/main.ts @@ -0,0 +1,75 @@ +import App from './App.vue' +import { createApp } from 'vue' +import { registerPlugins } from '@/plugins' + +import { useAuthStore } from '@/store/auth' +import Keycloak from 'keycloak-js' +import axios from 'axios' +import Editor from 'primevue/editor' + +// ----------------------------------------------- Setup ----------------------------------------------- +let APIurl = 'http://localhost:8000/aanleverapi' +if (process.env.NODE_ENV === 'production') { + APIurl = `${window.location.origin}/aanleverapi` +} + +let keycloakConfigUrl = 'http://localhost:8000/api/config' +if (process.env.NODE_ENV === 'production') { + keycloakConfigUrl = `${window.location.origin}/api/config` +} + +export function getConfigs(): Promise { + // fetch configurations via backend + return new Promise((resolve) => { + axios + .get(keycloakConfigUrl, { timeout: 2000 }) + .then((response: any) => { + resolve(response.data) + }) + .catch(function (err: any) { + console.log('failed to get config ' + err) + }) + }) +} + +// ----------------------------------------------- Create App ----------------------------------------------- + +getConfigs().then((response: any) => { + const initOptions: any = { + url: `${response.keycloak_uri}`, + realm: `${response.keycloak_realm}`, + clientId: `${response.keycloak_client}`, + onLoad: 'login-required', + } + const keycloak = new Keycloak(initOptions) + + keycloak + .init({ onLoad: initOptions.onLoad }) + .then(() => { + // always add the authentication header to axios requests + axios.interceptors.request.use(function (config: any) { + const token = keycloak.idToken + config.baseURL = APIurl + config.headers!.Authorization = `Bearer ${token}` + return config + }) + + const app = createApp(App) + registerPlugins(app) + // store keycloak object in pinia + const authStore = useAuthStore() + authStore.keycloak = keycloak + authStore.APIurl = APIurl + + app.component('PEditor', Editor) + app.mount('#app') + + //check token every 6 seconds + setInterval(() => { + keycloak.updateToken(70) + }, 6000) + }) + .catch((error) => { + console.log(error) + }) +}) diff --git a/frontend-beheer-2024/src/plugins/index.ts b/frontend-beheer-2024/src/plugins/index.ts new file mode 100644 index 00000000..999fbd5e --- /dev/null +++ b/frontend-beheer-2024/src/plugins/index.ts @@ -0,0 +1,25 @@ +/** + * plugins/index.ts + * + * Automatically included in `./src/main.ts` + */ + +// Plugins +import { loadFonts } from './webfontloader' +import vuetify from './vuetify' +import pinia from '../store' +import router from '../router' + +import PrimeVue from 'primevue/config' + +// Types +import type { App } from 'vue' + +export function registerPlugins (app: App) { + loadFonts() + app + .use(vuetify) + .use(router) + .use(pinia) + .use(PrimeVue) +} diff --git a/frontend-beheer-2024/src/plugins/vuetify.ts b/frontend-beheer-2024/src/plugins/vuetify.ts new file mode 100644 index 00000000..dea3b453 --- /dev/null +++ b/frontend-beheer-2024/src/plugins/vuetify.ts @@ -0,0 +1,34 @@ +/** + * plugins/vuetify.ts + * + * Framework documentation: https://vuetifyjs.com` + */ + +// Styles +import '@mdi/font/css/materialdesignicons.css' +import 'vuetify/styles' + +// Composables +import { createVuetify } from 'vuetify' +import { nl } from 'vuetify/locale' + +// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides +export default createVuetify({ + theme: { + cspNonce: 'eQw4j9WgXcB', + themes: { + light: { + colors: { + primary: '#1867C0', + secondary: '#5CBBF6', + error: '#E53935', + 'grey-background': '#F3F3F3', + }, + }, + }, + }, + locale: { + locale: 'nl', + messages: { nl }, + }, +}) diff --git a/frontend-beheer-2024/src/plugins/webfontloader.ts b/frontend-beheer-2024/src/plugins/webfontloader.ts new file mode 100644 index 00000000..0cf56148 --- /dev/null +++ b/frontend-beheer-2024/src/plugins/webfontloader.ts @@ -0,0 +1,15 @@ +/** + * plugins/webfontloader.ts + * + * webfontloader documentation: https://github.com/typekit/webfontloader + */ + + export async function loadFonts () { + const webFontLoader = await import(/* webpackChunkName: "webfontloader" */'webfontloader') + + webFontLoader.load({ + google: { + families: ['Roboto:100,300,400,500,700,900&display=swap'], + }, + }) +} diff --git a/frontend-beheer-2024/src/router/index.ts b/frontend-beheer-2024/src/router/index.ts new file mode 100644 index 00000000..6af57fcf --- /dev/null +++ b/frontend-beheer-2024/src/router/index.ts @@ -0,0 +1,66 @@ +// Composables +import { createRouter, createWebHistory } from 'vue-router' + +const routes = [ + { + path: '/', + name: 'algorithm.index', + component: () => import('@/views/Overview.vue'), + }, + { + path: '/algoritme/aanmaken', + name: 'algorithm.create', + component: () => import('@/views/FormGenerator.vue'), + }, + { + path: '/algoritme/:lars/bewerken', + name: 'algorithm.edit', + component: () => import('@/views/FormGenerator.vue'), + props: true, + }, + { + path: '/organisatie', + name: 'organisation.index', + component: () => import('@/views/Organisation.vue'), + }, + { + path: '/archief', + name: 'archive.index', + component: () => import('@/views/Archive.vue'), + }, + { + path: '/dashboard', + name: 'dashboard.index', + component: () => import('@/views/Dashboard.vue'), + }, + { + path: '/beheer', + component: () => import('@/views/admin-page/AdminPage.vue'), + redirect: '/beheer/user', + children: [ + { + path: 'user', + name: 'beheer.user', + component: () => import('@/views/admin-page/UserManagement.vue'), + }, + { + path: 'organisation', + name: 'beheer.organisation', + component: () => import('@/views/admin-page/org/OrgsOverview.vue'), + }, + { + path: 'organisation/:orgCode', + name: 'orgView', + component: () => import('@/views/admin-page/org/OrgDetails.vue'), + props: true, + }, + ], + }, +] + +const router = createRouter({ + history: createWebHistory(import.meta.env.BASE_URL), + routes, +}) + +export default router diff --git a/frontend-beheer-2024/src/services/algorithms.ts b/frontend-beheer-2024/src/services/algorithms.ts new file mode 100644 index 00000000..302174e9 --- /dev/null +++ b/frontend-beheer-2024/src/services/algorithms.ts @@ -0,0 +1,258 @@ +import { + AlgorithmForm, + AlgorithmResponse, + AlgorithmOwnerResponse, + AlgorithmPreviewResponse, + UpdateAlgorithmResponse, + CreateAlgorithmResponse, + RemoveAlgorithmResponse, + AlgorithmListResponse, + GetAlgorithmVersionsResponse, + GetAvailableActionsResponse, + StateChangeAction, + AlgorithmTotalCountResponse, + ColumnResponse, + ColumnCountResponse, +} from '@/types/algorithm' +import { Organisation } from '@/types/organisation' +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' +import publicationStandard from '@/config/publication-standard' + +const MDS_VERSION = + 'v' + publicationStandard.preferredVersion.replace(/\./g, '_') + +export async function getAlgorithmList( + organisation: Organisation +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `${MDS_VERSION}/organizations/${organisation.code}/algorithms`, + } + return backendRequest(request) +} + +export async function getAlgorithm( + organisation: Organisation, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `${MDS_VERSION}/organizations/${organisation.code}/algorithms/${lars}`, + } + return backendRequest(request) +} + +export async function createAlgorithm( + organisation: Organisation, + data: AlgorithmForm +): Promise { + delete data.created_by + delete data.create_dt + delete data.lars + + const request: AxiosRequestConfig = { + method: 'POST', + url: `v${data.standard_version.replace(/\./g, '_')}/organizations/${ + organisation.code + }/algorithms`, + data, + } + return backendRequest(request) +} + +export async function updateAlgorithm( + organisation: Organisation, + lars: string, + data: AlgorithmForm +): Promise { + const sendData: AlgorithmForm = { ...data } + delete sendData.create_dt + delete sendData.lars + + const request: AxiosRequestConfig = { + method: 'PUT', + url: `v${sendData.standard_version.replace(/\./g, '_')}/organizations/${ + organisation.code + }/algorithms/${lars}`, + data: sendData, + } + return backendRequest(request) +} + +export async function publishAlgorithm( + organisation: Organisation, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `${MDS_VERSION}/organizations/${organisation.code}/algorithms/${lars}/publish`, + } + return backendRequest(request) +} + +export async function releaseAlgorithm( + organisation: Organisation, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `${MDS_VERSION}/organizations/${organisation.code}/algorithms/${lars}/release`, + } + return backendRequest(request) +} + +export async function retractAlgorithm( + organisation: Organisation, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'DELETE', + url: `${MDS_VERSION}/organizations/${organisation.code}/published-algorithms/${lars}/retract`, + } + return backendRequest(request) +} + +export async function generatePreview( + organisation: Organisation, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `${MDS_VERSION}/organizations/${organisation.code}/algorithms/${lars}/preview`, + } + return backendRequest(request) +} + +export async function removeAlgorithm( + organisation: Organisation, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'DELETE', + url: `${MDS_VERSION}/organizations/${organisation.code}/algorithms/${lars}/remove`, + } + return backendRequest(request) +} + +export async function getAlgorithmOwner( + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `/algoritme/find/${lars}`, + } + return backendRequest(request) +} + +export async function getAlgorithmVersions( + orgCode: string, + algorithmId: string, + includeArchived: boolean = true +): Promise { + let url = `/organisations/${orgCode}/algorithms/${algorithmId}/versions` + if (includeArchived !== null) { + url += `?include_archived=${includeArchived}` + } + const request: AxiosRequestConfig = { + method: 'GET', + url, + } + return backendRequest(request) +} + +export async function getArchive( + orgCode: string +): Promise { + const url = `/organisations/${orgCode}/algorithms/archived-versions` + const request: AxiosRequestConfig = { + method: 'GET', + url, + } + return backendRequest(request) +} + +// archive algorithm version +export async function archiveAlgorithmVersion( + orgCode: string, + lars: string, + versionId: string +) { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `${MDS_VERSION}/organizations/${orgCode}/algorithms/${lars}/archive_version`, + data: { algorithm_version_id: versionId }, + } + return backendRequest(request) +} + +export async function unarchiveAlgorithmVersion( + orgCode: string, + lars: string, + versionId: string +) { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `${MDS_VERSION}/organizations/${orgCode}/algorithms/${lars}/unarchive_version`, + data: { algorithm_version_id: versionId }, + } + return backendRequest(request) +} + +export async function getAvailableActions( + orgCode: string, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `/organisations/${orgCode}/algorithms/${lars}/available-actions`, + } + return backendRequest(request) +} + +export async function updateAlgorithmState( + orgCode: string, + lars: string, + action: StateChangeAction +) { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `/organisations/${orgCode}/algorithms/${lars}/state/${action.key}`, + } + return backendRequest(request) +} + +export async function getTotalCount(): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: '/algoritme/total-count', + } + return backendRequest(request) +} + +export async function getColumns(): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: '/columns/', + } + return backendRequest(request) +} + +export async function getCount(column: string): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `/db-count/${column}`, + } + return backendRequest(request) +} + +export async function getCountWithFilledColumns( + columns: string[] | string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: '/completeness/', + params: { columns }, + } + return backendRequest(request) +} diff --git a/frontend-beheer-2024/src/services/brokenlinks.ts b/frontend-beheer-2024/src/services/brokenlinks.ts new file mode 100644 index 00000000..9c28e76a --- /dev/null +++ b/frontend-beheer-2024/src/services/brokenlinks.ts @@ -0,0 +1,11 @@ +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' +import { BrokenLinkResponse } from '@/types/brokenlink' + +export async function getBrokenLinks(): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: '/broken-links/NLD', + } + return backendRequest(request) +} diff --git a/frontend-beheer-2024/src/services/c3po.ts b/frontend-beheer-2024/src/services/c3po.ts new file mode 100644 index 00000000..fbd9f0f8 --- /dev/null +++ b/frontend-beheer-2024/src/services/c3po.ts @@ -0,0 +1,12 @@ +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' +import { C3poResponse } from '@/types/c3po' + +export async function postC3poRequest(text: string): Promise { + const request: AxiosRequestConfig = { + method: 'POST', + url: '/c3po/processing-request', + data: { text }, + } + return backendRequest(request) as unknown as Promise +} diff --git a/frontend-beheer-2024/src/services/downloads.ts b/frontend-beheer-2024/src/services/downloads.ts new file mode 100644 index 00000000..9f90be5d --- /dev/null +++ b/frontend-beheer-2024/src/services/downloads.ts @@ -0,0 +1,30 @@ +import { Organisation } from '@/types/organisation' +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' + +export async function getFileOne( + organisation: Organisation, + lars: string, + filetype: 'pdf' | 'word' | 'excel' +) { + const request: AxiosRequestConfig = { + method: 'GET', + responseType: 'blob', + url: `downloads/organizations/${organisation.code}/algorithms/${lars}`, + params: { filetype: filetype }, + } + return backendRequest(request) +} + +export async function getFileMany( + organisation: Organisation, + filetype: 'pdf' | 'word' | 'excel' +) { + const request: AxiosRequestConfig = { + method: 'GET', + responseType: 'blob', + url: `downloads/organizations/${organisation.code}`, + params: { filetype: filetype }, + } + return backendRequest(request) +} diff --git a/frontend-beheer-2024/src/services/flow.ts b/frontend-beheer-2024/src/services/flow.ts new file mode 100644 index 00000000..add2c993 --- /dev/null +++ b/frontend-beheer-2024/src/services/flow.ts @@ -0,0 +1,13 @@ +import { FlowResponse } from '@/types/flow' +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' + +export async function getFlowInstructions( + org_code: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `/organisation/${org_code}/flow`, + } + return backendRequest(request) +} diff --git a/frontend-beheer-2024/src/services/index.ts b/frontend-beheer-2024/src/services/index.ts new file mode 100644 index 00000000..2ae12ce8 --- /dev/null +++ b/frontend-beheer-2024/src/services/index.ts @@ -0,0 +1,29 @@ +import axios, { AxiosRequestConfig, AxiosResponse } from 'axios' +import { MetaDataResponse } from '@/types/openapi' + +export function backendRequest( + config: AxiosRequestConfig +): Promise> { + return new Promise((resolve, reject) => { + axios(config) + .then((response) => { + resolve(response) + }) + .catch((error) => { + reject({ + status: error.response?.status ?? 500, + data: error.response?.data.detail ?? 'Er is iets misgegaan.', + }) + }) + }) +} + +export async function getMetaDataStandard( + version: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `v${version.replace(/\./g, '_')}/openapi.json`, + } + return backendRequest(request) +} diff --git a/frontend-beheer-2024/src/services/organisation.ts b/frontend-beheer-2024/src/services/organisation.ts new file mode 100644 index 00000000..4aded855 --- /dev/null +++ b/frontend-beheer-2024/src/services/organisation.ts @@ -0,0 +1,71 @@ +import { + OrganisationsResponse, + CreateOrganisationResponse, + UpdateOrganisationResponse, + UpdateOptInResponse, + OrganisationUpdate, + DeleteOrganisationResponse, +} from '@/types/organisation' +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' + +export interface getOrgQuery { + limit?: number + skip?: number + q?: string +} + +export async function getOrganisations( + query?: getOrgQuery +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: '/organisation', + params: query, + } + return backendRequest(request) +} + +export async function createOrganisation( + organisation: OrganisationUpdate +): Promise { + const request: AxiosRequestConfig = { + method: 'POST', + url: '/organisation', + data: organisation, + } + return backendRequest(request) +} + +export async function updateOrganisation( + org_code: string, + organisation: OrganisationUpdate +): Promise { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `/organisation/${org_code}`, + data: organisation, + } + return backendRequest(request) +} + +export async function updateOrganisationOptIn( + org_code: string, + change_to: boolean +): Promise { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `/organisation/${org_code}/show_page/${change_to}`, + } + return backendRequest(request) +} + +export async function deleteOrganisation( + org_code: string +): Promise { + const request: AxiosRequestConfig = { + method: 'DELETE', + url: `/organisation/${org_code}`, + } + return backendRequest(request) +} diff --git a/frontend-beheer-2024/src/services/organisationDetails.ts b/frontend-beheer-2024/src/services/organisationDetails.ts new file mode 100644 index 00000000..b2cd54e1 --- /dev/null +++ b/frontend-beheer-2024/src/services/organisationDetails.ts @@ -0,0 +1,29 @@ +import { + OrganisationDetails, + OrganisationDetailsResponse, + UpdateOrganisationDetailsResponse, +} from '@/types/organisationDetails' +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' + +export async function getOrganisationDetails( + orgCode: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `/organisation-details/${orgCode}`, + } + return backendRequest(request) +} + +export async function updateOrganisationDetails( + org_code: string, + organisationDetails: OrganisationDetails +): Promise { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `/organisation-details/${org_code}`, + data: organisationDetails, + } + return backendRequest(request) +} diff --git a/frontend-beheer-2024/src/services/templates.ts b/frontend-beheer-2024/src/services/templates.ts new file mode 100644 index 00000000..2fdd16dd --- /dev/null +++ b/frontend-beheer-2024/src/services/templates.ts @@ -0,0 +1,24 @@ +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' +import { TemplateListResponse, TemplateResponse } from '@/types/templates' + +export async function getTemplateList( + standardVersion: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `templates/${standardVersion}`, + } + return backendRequest(request) +} + +export async function getTemplate( + standardVersion: string, + id: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `templates/${standardVersion}/${id}`, + } + return backendRequest(request) +} diff --git a/frontend-beheer-2024/src/services/user.ts b/frontend-beheer-2024/src/services/user.ts new file mode 100644 index 00000000..186c9beb --- /dev/null +++ b/frontend-beheer-2024/src/services/user.ts @@ -0,0 +1,75 @@ +import { + CreateUserResponse, + UpdateUserResponse, + GetUsersResponse, + GetUserResponse, + DeleteUserResponse, + UserNew, + UserUpdate, +} from '@/types/user' +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' + +export interface getUserQuery { + role?: string + org?: string + limit?: number + skip?: number + q?: string +} + +export async function getMe(): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: '/user/me', + } + return backendRequest(request) +} + +export async function getUsers( + query?: getUserQuery +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: '/user', + params: query, + } + return backendRequest(request) +} + +export async function createUser(user: UserNew): Promise { + const request: AxiosRequestConfig = { + method: 'POST', + url: '/user', + data: user, + } + return backendRequest(request) +} + +export async function getUser(user_id: string): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `/user/${user_id}`, + } + return backendRequest(request) +} + +export async function updateUser( + user_id: string, + user: UserUpdate +): Promise { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `/user/${user_id}`, + data: user, + } + return backendRequest(request) +} + +export async function deleteUser(user_id: string): Promise { + const request: AxiosRequestConfig = { + method: 'DELETE', + url: `/user/${user_id}`, + } + return backendRequest(request) +} diff --git a/frontend-beheer-2024/src/store/archive.ts b/frontend-beheer-2024/src/store/archive.ts new file mode 100644 index 00000000..037d52eb --- /dev/null +++ b/frontend-beheer-2024/src/store/archive.ts @@ -0,0 +1,96 @@ +import { defineStore } from 'pinia' +import { ref, computed } from 'vue' +import type { AlgorithmWithUser } from '@/types/algorithm' +import { + getArchive, + archiveAlgorithmVersion, + unarchiveAlgorithmVersion, +} from '@/services/algorithms' +import { Organisation } from '@/types/organisation' +import { notifications } from '@/config/notifications' +import { useSnackbarStore } from './snackbar' +import { useAuthStore } from './auth' + +export const useArchiveStore = defineStore('archive', () => { + const snackbarStore = useSnackbarStore() + const authStore = useAuthStore() + + // State related to all algorithm versions + const loading = ref(false) + const allVersions = ref(null) + const fetchAlgorithmVersionArchive = async ( + selectedOrg: Organisation | null + ) => { + if (!selectedOrg?.code) { + console.log( + 'No organisation selected, skipped fetching algorithm versions.' + ) + return + } + + loading.value = true + try { + const response = await getArchive(selectedOrg.code) + allVersions.value = response.data + } catch (error) { + console.error('Failed to fetch algorithm versions:', error) + snackbarStore.add({ + ...notifications.fetchAlgorithmVersionsError!, + }) + } finally { + loading.value = false + } + } + + // State related to single algorithm version + const selectedVersion = ref(null) + const orgCode = computed(() => authStore.selectedOrg?.code) + const archiveVersion = async (lars: string, versionId: string) => { + if (!orgCode.value) { + console.error('No organisation code found, cannot archive version.') + return + } + + try { + await archiveAlgorithmVersion(orgCode.value, lars, versionId) + snackbarStore.add({ + ...notifications.archiveVersionSuccess!, + }) + } catch (error) { + snackbarStore.add({ + ...notifications.archiveVersionError!, + }) + } + } + + const unarchiveVersion = async (lars: string, versionId: string) => { + if (!orgCode.value) { + console.error('No organisation code found, cannot unarchive version.') + return + } + try { + await unarchiveAlgorithmVersion(orgCode.value, lars, versionId) + snackbarStore.add({ + ...notifications.unarchiveVersionSuccess!, + }) + const version = allVersions.value?.find((v) => v.id === versionId) + if (version) { + version.state = 'STATE_1' + allVersions.value = allVersions.value!.filter((v) => v.id !== versionId) + } + } catch (error) { + snackbarStore.add({ + ...notifications.unarchiveVersionError!, + }) + } + } + + return { + loading, + allVersions, + fetchAlgorithmVersionArchive, + selectedVersion, + archiveVersion, + unarchiveVersion, + } +}) diff --git a/frontend-beheer-2024/src/store/auth.ts b/frontend-beheer-2024/src/store/auth.ts new file mode 100644 index 00000000..9f3efa91 --- /dev/null +++ b/frontend-beheer-2024/src/store/auth.ts @@ -0,0 +1,70 @@ +// Utilities +import { defineStore } from 'pinia' +import Keycloak from 'keycloak-js' +import { Organisation } from '@/types/organisation' +import { useLocalStorage } from '@vueuse/core' +import { getMe } from '@/services/user' +import { User } from '@/types/user' +import { useSnackbarStore } from './snackbar' +import { notifications } from '@/config/notifications' + +export const useAuthStore = defineStore('auth', { + state: () => ({ + snackbar: useSnackbarStore(), + keycloak: {} as Keycloak, + me: {} as User, + APIurl: 'http://localhost:8000/api', + organisations: [] as Organisation[], + selectedOrg: null as Organisation | null, + loading: false as boolean, + }), + getters: { + roles(): string[] { + return (this.keycloak.tokenParsed?.roles as string[] | undefined) || [] + }, + canRemove(): boolean { + return this.roles.includes('admin') + }, + canAccesDashboard(): boolean { + return this.roles.includes('ictu') + }, + canAccesBeheer(): boolean { + return this.roles.includes('admin') + }, + canAccesOrgPage(): boolean { + return this.roles.includes('orgdetail') + }, + canAccessArchive(): boolean { + return this.roles.includes('role_1') + }, + canAddRecord(): boolean { + return this.roles.includes('role_1') + }, + }, + actions: { + async fetchMe() { + this.loading = true + await getMe() + .then((response) => { + this.me = response.data + this.organisations = this.me.organisations + }) + .catch((error) => { + if ((error.message = 'USER_NOT_ACTIVATED')) { + this.snackbar.add(notifications.fetchMeErrorDisabled!) + } + }) + this.loading = false + }, + selectOrganisation(orgId: string) { + const organisation = this.organisations.find((org) => org.code === orgId) + if (!organisation) { + throw new Error( + 'Selected organisation is not found in organisations array.' + ) + } + useLocalStorage('webform-selected-org', {}).value = organisation + this.selectedOrg = organisation + }, + }, +}) diff --git a/frontend-beheer-2024/src/store/form-data.ts b/frontend-beheer-2024/src/store/form-data.ts new file mode 100644 index 00000000..368c0594 --- /dev/null +++ b/frontend-beheer-2024/src/store/form-data.ts @@ -0,0 +1,230 @@ +// Store for managing the algorithms that the user has access to. +import { defineStore } from 'pinia' +import { useAuthStore } from './auth' +import { useSchemaStore } from './schema' +import { + getAlgorithm, + updateAlgorithm, + createAlgorithm, + generatePreview, + removeAlgorithm, + getAlgorithmOwner, + getAvailableActions, + updateAlgorithmState, +} from '@/services/algorithms' +import { + AlgorithmForm, + CreateAlgorithmResponse, + RemoveAlgorithmResponse, + UpdateAlgorithmResponse, + NoOrgResponse, + StateChangeAction, +} from '@/types/algorithm' +import { notifications } from '@/config/notifications' +import { Organisation } from '@/types/organisation' +import { noOrgSelectedResponse, unknownError } from '@/utils' +import router from '@/router' +import { useSnackbarStore } from './snackbar' + +export const useFormDataStore = defineStore('form-data', { + state: () => ({ + authStore: useAuthStore(), + schemaStore: useSchemaStore(), + snackbarStore: useSnackbarStore(), + data: {} as AlgorithmForm, + availableActions: [] as StateChangeAction[], + loaded: true, + saving: false, + previewLoading: false, + unsavedChanges: false, + }), + getters: { + cleanedData(): AlgorithmForm { + return Object.fromEntries( + Object.entries(this.data).filter(([, v]) => { + if (Array.isArray(v) && v.length == 0) return false + if (v === '') return false + return true + }) + ) + }, + orgFromData(): Organisation | undefined { + return this.authStore.organisations.find( + (org) => org.name == this.data.organization + ) + }, + }, + actions: { + async fetchData(lars: string): Promise { + // We do not know which organisation the algorithm belongs to. + this.data = {} + this.loaded = false + // Ask backend where to find the algoritmebeschrijving + await getAlgorithmOwner(lars) + .then(async (response) => { + await getAlgorithm(response.data, lars) + .then((response) => { + this.data = response.data + }) + .catch((error) => { + if (error.status == 403) { + this.snackbarStore.add(notifications.noAccessRights!) + } else { + this.snackbarStore.add(notifications.unknownError!) + } + router.push({ name: 'algorithm.index' }) + }) + }) + .catch((error) => { + if (error.status == 404) { + this.snackbarStore.add(notifications.cannotFindAlgorithmError!) + } else { + this.snackbarStore.add(notifications.unknownError!) + } + router.push({ name: 'algorithm.index' }) + }) + + this.loaded = true + // No duplicate loading if the schema in local cache is already good. + if (this.schemaStore.loadedSchema !== this.data.standard_version) { + this.schemaStore.fetchSchema(this.data.standard_version) + } + }, + async fetchAvailableActions(lars: string) { + if (!this.orgFromData) return noOrgSelectedResponse() + await getAvailableActions(this.orgFromData.code, lars).then( + (response) => { + this.availableActions = response.data + } + ) + }, + async handleUpdate( + lars: string + ): Promise { + if (!this.orgFromData) return noOrgSelectedResponse() + this.saving = true + return await updateAlgorithm(this.orgFromData, lars, this.cleanedData) + .then(async (response) => { + // check c3po changes + if (response.data?.message != 'NO_CHANGES') { + this.unsavedChanges = false + this.data.state = 'STATE_1' + await this.fetchAvailableActions(lars).catch(() => unknownError()) + this.snackbarStore.add(notifications.updateSuccess!) + } else { + this.snackbarStore.add(notifications.updateNoChanges!) + this.unsavedChanges = false + } + return response + }) + .catch((response) => { + if (response.status == 422) { + const errorList = response.data.map( + (error: any) => + this.schemaStore.formProperties[error.loc[1]]!.title + ) + this.snackbarStore.add({ + ...notifications.updateValidationError!, + list: errorList, + }) + } else { + this.snackbarStore.add(notifications.updateGenericError!) + } + return response + }) + .finally(() => { + this.saving = false + }) + }, + async handleCreate(): Promise { + if (!this.orgFromData) return noOrgSelectedResponse() + this.saving = true + return await createAlgorithm(this.orgFromData, this.cleanedData) + .then(async (response) => { + this.data.lars = response.data.lars_code + this.unsavedChanges = false + this.data.state = 'STATE_1' + await this.fetchAvailableActions(response.data.lars_code).catch(() => + unknownError() + ) + // Change organisation based on the saved algorithm. Needed for loading from cookies + this.authStore.selectOrganisation(this.orgFromData!.code) + this.snackbarStore.add(notifications.createSuccess!) + return response + }) + .catch((response) => { + if (response.status === 422) { + const errorList = response.data.map( + (error: any) => + this.schemaStore.formProperties[error.loc[1]]!.title + ) + this.snackbarStore.add({ + ...notifications.createValidationError!, + list: errorList, + }) + } else { + this.snackbarStore.add(notifications.createGenericError!) + } + return response + }) + .finally(() => { + this.saving = false + }) + }, + async handleStateChange(lars: string, action: StateChangeAction) { + if (!this.orgFromData) return noOrgSelectedResponse() + await updateAlgorithmState(this.orgFromData.code, lars, action) + .then(async () => { + await this.fetchAvailableActions(lars).catch(() => unknownError()) + this.data.state = action.target_state + }) + .catch(() => unknownError()) + }, + async handleRemove( + lars: string + ): Promise { + if (!this.orgFromData) return noOrgSelectedResponse() + return await removeAlgorithm(this.orgFromData, lars) + .then((response) => { + this.unsavedChanges = false + this.snackbarStore.add(notifications.removeSuccess!) + return response + }) + .catch((response) => { + this.snackbarStore.add(notifications.removeError!) + return response + }) + }, + async handlePreview(lars: string): Promise { + if (!this.orgFromData) return noOrgSelectedResponse() + this.previewLoading = true + generatePreview(this.orgFromData, lars) + .then((response) => { + // open response.url in new tab + window.open(response.data.url, '_blank') + }) + .catch(() => { + this.snackbarStore.add(notifications.previewError!) + }) + .finally(() => { + this.previewLoading = false + }) + }, + pruneData(): void { + // Removes all data keys that do not appear in the current schema + const formProperties = this.schemaStore.formProperties + Object.keys(this.data).forEach((element) => { + if (!(element in formProperties) && element != 'lars') { + delete this.data[element] + } + }) + }, + handleSchemaSwap(oldVersion: string, newVersion: string): void { + // Certain migrations need additional attention to detail + const dataStore = useFormDataStore() + if (oldVersion == '0.4' && newVersion == '1.0') { + dataStore.data.impacttoetsen = null + } + }, + }, +}) diff --git a/frontend-beheer-2024/src/store/index.ts b/frontend-beheer-2024/src/store/index.ts new file mode 100644 index 00000000..15362525 --- /dev/null +++ b/frontend-beheer-2024/src/store/index.ts @@ -0,0 +1,4 @@ +// Utilities +import { createPinia } from 'pinia' + +export default createPinia() diff --git a/frontend-beheer-2024/src/store/layout.ts b/frontend-beheer-2024/src/store/layout.ts new file mode 100644 index 00000000..fb6b466f --- /dev/null +++ b/frontend-beheer-2024/src/store/layout.ts @@ -0,0 +1,9 @@ +import { defineStore } from 'pinia' +import { ref } from 'vue' + +export const useLayoutStore = defineStore('layout', () => { + const showTemplateDrawer = ref(false) + const showVersionDrawer = ref(false) + + return { showTemplateDrawer, showVersionDrawer } +}) diff --git a/frontend-beheer-2024/src/store/overview.ts b/frontend-beheer-2024/src/store/overview.ts new file mode 100644 index 00000000..7f68c5f5 --- /dev/null +++ b/frontend-beheer-2024/src/store/overview.ts @@ -0,0 +1,64 @@ +// Store for managing the algorithms that the user has access to. +import { defineStore } from 'pinia' +import { Algorithm } from '@/types/algorithm' +import { getAlgorithmList } from '@/services/algorithms' +import { notifications } from '@/config/notifications' +import { Organisation } from '@/types/organisation' +import { useAuthStore } from './auth' +import { useSnackbarStore } from './snackbar' +import { formatDateTime } from '@/utils/datetime' + +export const useAlgorithmStore = defineStore('algorithm', { + state: () => ({ + snackbarStore: useSnackbarStore(), + algorithms: [] as Algorithm[], + loaded: true as boolean, + authStore: useAuthStore(), + }), + getters: { + algorithmsFormatted(): Algorithm[] { + return this.algorithms.map((algorithm) => { + algorithm.last_update_dt_formatted = formatDateTime(algorithm.last_update_dt) + return algorithm + }) + }, + }, + actions: { + async fetchAlgorithms(organisation: Organisation): Promise { + this.algorithms = [] + + // User has no organisations, exit + if (this.authStore.organisations.length == 0) { + return + } + + this.loaded = false + let algorithms = [] + try { + algorithms = (await getAlgorithmList(organisation)).data + } catch (error: any) { + console.error(error.data) + this.snackbarStore.add(notifications.fetchOverviewError!) + this.loaded = true + return + } + + this.algorithms = algorithms.map((a) => { + let overviewStatus + if (a.current_version_published) { + overviewStatus = 'Gepubliceerd' + } else if (a.current_version_released && !a.published) { + overviewStatus = 'Vrijgegeven' + } else if (a.published && a.current_version_released) { + overviewStatus = 'Gepubliceerd, nieuwe versie vrijgegeven' + } else if (a.published) { + overviewStatus = 'Gepubliceerd, nieuwe versie wordt nog bewerkt' + } else { + overviewStatus = 'Wordt nog bewerkt' + } + return { ...a, overviewStatus: overviewStatus } + }) + this.loaded = true + }, + }, +}) diff --git a/frontend-beheer-2024/src/store/schema.ts b/frontend-beheer-2024/src/store/schema.ts new file mode 100644 index 00000000..1fd8fd49 --- /dev/null +++ b/frontend-beheer-2024/src/store/schema.ts @@ -0,0 +1,140 @@ +// Store for managing the algorithms that the user has access to. +import { getMetaDataStandard } from '@/services' +import type { + OpenApiSchema, + EnumSchema, + ArraySchema, + ArrayOptionalSchema, + AlgorithmInSchema, + ObjectSchema, +} from '@/types/openapi' +import { FormFieldProperties, FormProperties } from '@/types/form' +import { defineStore } from 'pinia' +import { notifications } from '@/config/notifications' +import { buildRulesFromProperties } from '@/utils/form' +import { useAuthStore } from './auth' +import { useFormDataStore } from './form-data' +import { useSnackbarStore } from './snackbar' + +export const useSchemaStore = defineStore('schema', { + state: () => ({ + snackbarStore: useSnackbarStore(), + authStore: useAuthStore(), + rawSchemas: {} as { [key: string]: OpenApiSchema }, + loadedSchema: '' as string, + loaded: true as boolean, + }), + getters: { + formProperties(self): FormProperties { + if (!self.rawSchemas.AlgorithmIn) return {} + if (this.authStore.organisations.length == 0) return {} + const dataStore = useFormDataStore() + + const mainSchema = self.rawSchemas.AlgorithmIn as AlgorithmInSchema + const formProperties = Object.fromEntries( + Object.entries(mainSchema.properties).map(([key, v]) => { + // Build properties per field based on values in AlgorithmIn schema. + const required = mainSchema.required.includes(key) + const formFieldProperties: FormFieldProperties = { + ...v, + required, + } + + let allowedItems + if (v.type == 'enum') { + // EnumReferenceSchema, single select enumeration + const schema = v.allOf[0]!.$ref.split('/').slice(-1)[0]! + allowedItems = (self.rawSchemas[schema] as EnumSchema).enum + formFieldProperties['type'] = 'select' + } else if (v.type == 'string') { + // StringSchema + formFieldProperties['maxLength'] = v.max_length_without_html + if (v.allowed_html_tags) { + formFieldProperties['allowedHtmlTags'] = v.allowed_html_tags + formFieldProperties['type'] = 'rich-textarea' + } else { + formFieldProperties['type'] = 'textarea' + } + } else if (v.type == 'array' && '$ref' in v.items) { + // ArraySchema or ObjectSchema + const schema = v.items.$ref.split('/').slice(-1)[0]! + if (v.items.$ref.includes('Enum', 27)) { + // ArraySchema, multi-select enumeration + allowedItems = (self.rawSchemas[schema] as EnumSchema).enum + formFieldProperties['type'] = 'multi-select' + formFieldProperties['maxItems'] = (v as ArraySchema).maxItems + } else if (v.items.$ref.includes('Object', 27)) { + // ObjectSchema. Only works for 1.0 + const schemaData = self.rawSchemas[schema] as ObjectSchema + const titleProperty = schemaData.properties?.title + const recommendedItems = + titleProperty && 'recommended_items' in titleProperty + ? titleProperty.recommended_items + : undefined + formFieldProperties['recommendedItems'] = recommendedItems + formFieldProperties['type'] = 'list-with-links' + } + } else if (v.type == 'array' && 'type' in v.items) { + // ArrayOptionalSchema, multi-select with recommended items + const recommendedItems = (v as ArrayOptionalSchema) + .recommended_items + formFieldProperties['recommendedItems'] = recommendedItems + formFieldProperties['type'] = 'optional-select' + } + if (key == 'lars') { + formFieldProperties['type'] = 'fixed' + } + if (key == 'organization') { + const organisations = this.authStore.organisations + // Matching the organisation with selectedOrg fixes the value. + if ( + dataStore.data.organization === this.authStore.selectedOrg?.name + ) { + formFieldProperties['fixedValue'] = dataStore.data.organization + formFieldProperties['type'] = 'fixed' + } else { + allowedItems = organisations.map((org) => org.name) + formFieldProperties['type'] = 'select' + } + } else if (key == 'name') { + formFieldProperties['type'] = 'name-textarea' + } + + if (allowedItems) { + if (allowedItems.length == 1) { + formFieldProperties['type'] = 'fixed' + formFieldProperties['fixedValue'] = allowedItems[0] + delete formFieldProperties.allowedItems + dataStore.data[key] = formFieldProperties['fixedValue'] + } else { + formFieldProperties['allowedItems'] = allowedItems + } + } + + formFieldProperties['rules'] = + buildRulesFromProperties(formFieldProperties) + + return [key, formFieldProperties] + }) + ) + return formProperties + }, + }, + actions: { + async fetchSchema(version: string): Promise { + this.loaded = false + this.rawSchemas = {} + this.loadedSchema = '' + try { + const data = (await getMetaDataStandard(version)).data + this.rawSchemas = data.components.schemas + this.loadedSchema = version + } catch (error) { + console.error(error) + this.snackbarStore.add(notifications.fetchMetadataError!) + } finally { + this.loaded = true + } + }, + }, +}) diff --git a/frontend-beheer-2024/src/store/score.ts b/frontend-beheer-2024/src/store/score.ts new file mode 100644 index 00000000..2d06b2ba --- /dev/null +++ b/frontend-beheer-2024/src/store/score.ts @@ -0,0 +1,41 @@ +// Store for managing the algorithms that the user has access to. +import { defineStore } from 'pinia' +import { useFormDataStore } from './form-data' +import scoreConfig from '@/config/score' + +const formDataStore = useFormDataStore() + +export const useScoreStore = defineStore('score', { + getters: { + progress(): number { + const data = formDataStore.data + if (!(data.standard_version in scoreConfig)) { + console.error( + 'Cannot find standard_version score configuration specified in data' + ) + return 0 + } + + const config = + scoreConfig[data.standard_version as keyof typeof scoreConfig] + let score: number = 0 + let maxScore: number = 0 + Object.entries(config).forEach(([key, value]) => { + maxScore += value + if (data[key] === null) return + if (data[key] === '') return + if (data[key] === undefined) return + if (data[key].length === 0) return + score += value + }) + // Return score between 0 and 100 for linear progress bar. + const normalizedScore: number = Math.ceil((score / maxScore) * 100) + return normalizedScore + }, + summaryVariant(): 'orange' | 'yellow' | 'green' { + if (this.progress < 60) return 'orange' + if (this.progress < 85) return 'yellow' + else return 'green' + }, + }, +}) diff --git a/frontend-beheer-2024/src/store/snackbar.ts b/frontend-beheer-2024/src/store/snackbar.ts new file mode 100644 index 00000000..68bbca7e --- /dev/null +++ b/frontend-beheer-2024/src/store/snackbar.ts @@ -0,0 +1,50 @@ +import { defineStore } from 'pinia' +import { computed, ref, watch } from 'vue' + +export enum SnackbarTheme { + error = 'error', + success = 'success', +} + +export interface Notification { + list?: string[] + message: string + theme?: SnackbarTheme + duration?: number +} + +export const useSnackbarStore = defineStore('snackbar', () => { + const timeout = ref() + const queue = ref([]) + + const show = computed(() => { + if (queue.value.length > 0) return true + return false + }) + const activeItem = computed(() => { + return queue.value[0] + }) + + function showNext() { + clearTimeout(timeout.value) + queue.value.shift() + } + function add(newItem: Notification) { + queue.value.push(newItem) + } + + watch( + queue, + async () => { + if (queue.value.length === 0) { + return + } + timeout.value = setTimeout(() => { + showNext() + }, activeItem.value?.duration ?? 4000) + }, + { deep: true } + ) + + return { showNext, add, activeItem, show } +}) diff --git a/frontend-beheer-2024/src/types/algorithm.ts b/frontend-beheer-2024/src/types/algorithm.ts new file mode 100644 index 00000000..1738a64d --- /dev/null +++ b/frontend-beheer-2024/src/types/algorithm.ts @@ -0,0 +1,104 @@ +import { FastApiResponse } from '.' +import { Organisation } from './organisation' + +export interface Algorithm { + name?: string + schema_version?: string + last_update_dt: string + lars: string + source_id?: number + published: boolean + current_version_released: boolean + current_version_published: boolean + last_update_by: string + overviewStatus?: string + last_update_dt_formatted?: string +} + +export interface StateChangeAction { + label: string + enabled: boolean + key: string + origin_state: string + target_state: string +} + +export interface AlgorithmForm { + name?: string + organization?: string + published?: boolean + create_dt?: Date + standard_version?: any + state?: string + + [key: string]: any +} + +export interface AlgorithmWithUser extends AlgorithmForm { + user_id: string +} + +export interface AlgorithmListResponse extends FastApiResponse { + data: Algorithm[] +} + +export interface AlgorithmResponse extends FastApiResponse { + data: AlgorithmForm +} + +export interface GetAlgorithmVersionsResponse extends FastApiResponse { + data: AlgorithmWithUser[] +} + +export interface GetAvailableActionsResponse extends FastApiResponse { + data: StateChangeAction[] +} +export interface CreateAlgorithmResponse extends FastApiResponse { + data: { + lars_code: string + } +} + +export interface UpdateAlgorithmResponse extends FastApiResponse { + data: null | { message: string } +} + +export interface RemoveAlgorithmResponse extends FastApiResponse { + data: null +} + +export interface AlgorithmPreviewResponse extends FastApiResponse { + data: { + url: string + } +} + +export interface NoOrgResponse extends FastApiResponse { + data: null +} + +export interface AlgorithmOwnerResponse extends FastApiResponse { + data: Organisation +} + +export interface AlgorithmTotalCountResponse extends FastApiResponse { + data: number +} + +export interface ColumnResponse extends FastApiResponse { + data: { + column_name: string + is_nullable: string + }[] +} + +export interface ColumnCountResponse extends FastApiResponse { + data: { + count: number + descriptor: string + }[] +} + +export interface CompletenessResponse extends FastApiResponse { + data: string +} diff --git a/frontend-beheer-2024/src/types/brokenlink.ts b/frontend-beheer-2024/src/types/brokenlink.ts new file mode 100644 index 00000000..fc3d81bb --- /dev/null +++ b/frontend-beheer-2024/src/types/brokenlink.ts @@ -0,0 +1,17 @@ +import { FastApiResponse } from '.' +import { Language } from './misc' + +export interface BrokenLink { + id: number + name: string + lars: string + broken_links: [string, number][] + language: Language + create_dt: Date + organisation: string + batch: number +} + +export interface BrokenLinkResponse extends FastApiResponse { + data: BrokenLink[] +} diff --git a/frontend-beheer-2024/src/types/c3po.ts b/frontend-beheer-2024/src/types/c3po.ts new file mode 100644 index 00000000..7dda87ec --- /dev/null +++ b/frontend-beheer-2024/src/types/c3po.ts @@ -0,0 +1,22 @@ +import { FastApiResponse } from '@/types/index' + +export interface LanguageRule { + rule_code: string + title: string + description: string + feedback_message: string + passed: boolean | null + result: Result | null + severity_level: string +} + +export interface C3poResponse extends FastApiResponse { + rules: { + data: LanguageRule[] + } +} + +interface Result { + label: string, + suggestion: string | null, +} diff --git a/frontend-beheer-2024/src/types/flow.ts b/frontend-beheer-2024/src/types/flow.ts new file mode 100644 index 00000000..585bdb0a --- /dev/null +++ b/frontend-beheer-2024/src/types/flow.ts @@ -0,0 +1,19 @@ +import { FastApiResponse } from '.' +import { User } from './user' + +export interface FlowRole { + key: string + alias: string + min_required: number + members: User[] +} + +export interface Flow { + key: string + alias: string + roles: FlowRole[] +} + +export interface FlowResponse extends FastApiResponse { + data: Flow +} diff --git a/frontend-beheer-2024/src/types/footer.ts b/frontend-beheer-2024/src/types/footer.ts new file mode 100644 index 00000000..4712890e --- /dev/null +++ b/frontend-beheer-2024/src/types/footer.ts @@ -0,0 +1,5 @@ +export type FooterPage = { + path: string + key: string + label?: string +} diff --git a/frontend-beheer-2024/src/types/form.ts b/frontend-beheer-2024/src/types/form.ts new file mode 100644 index 00000000..ffce4840 --- /dev/null +++ b/frontend-beheer-2024/src/types/form.ts @@ -0,0 +1,26 @@ +export interface FormFieldProperties { + title: string + maxLength?: number + maxItems?: number + type: string + example?: string | string[] + show_always: boolean + help_text: string + instructions: string + rules?: ((v: any) => boolean | string)[] + required: boolean + allowedItems?: string[] + recommendedItems?: string[] + fixedValue?: string + placeholder?: string + allowedHtmlTags?: string[] +} + +export interface FormProperties { + [key: string]: FormFieldProperties +} + +export interface ListWithLinks { + title: string | null + link: string | null +} diff --git a/frontend-beheer-2024/src/types/index.ts b/frontend-beheer-2024/src/types/index.ts new file mode 100644 index 00000000..a619ea4e --- /dev/null +++ b/frontend-beheer-2024/src/types/index.ts @@ -0,0 +1,11 @@ +export interface FastApiResponse { + status: number | null + data: any + + [key: string]: any +} + +export interface Breadcrumb { + title: string + href: string +} diff --git a/frontend-beheer-2024/src/types/misc.ts b/frontend-beheer-2024/src/types/misc.ts new file mode 100644 index 00000000..e4765546 --- /dev/null +++ b/frontend-beheer-2024/src/types/misc.ts @@ -0,0 +1,5 @@ +export enum Language { + NLD = 'NLD', + ENG = 'ENG', + FRY = 'FRY' +} diff --git a/frontend-beheer-2024/src/types/openapi.ts b/frontend-beheer-2024/src/types/openapi.ts new file mode 100644 index 00000000..2c1dc69d --- /dev/null +++ b/frontend-beheer-2024/src/types/openapi.ts @@ -0,0 +1,93 @@ +import { FastApiResponse } from '@/types/index' + +export type OpenApiSchema = + | ObjectSchema + | StringSchema + | EnumReferenceSchema + | ArraySchema + | ArrayOptionalSchema + | BooleanSchema + | EnumSchema + +export interface AlgorithmInSchema { + title: string + required: string[] + type: 'object' + properties: { + [key: string]: + | ObjectSchema + | StringSchema + | EnumReferenceSchema + | ArraySchema + | ArrayOptionalSchema + } +} + +export interface BaseOpenApiSchema { + title: string + example: string | string[] + show_always: boolean + help_text: string + instructions: string +} + +export interface ObjectSchema extends BaseOpenApiSchema { + type: 'object' + required?: string[] + properties: { + [key: string]: OpenApiSchema + } +} + +export interface StringSchema extends BaseOpenApiSchema { + type: 'string' + max_length_without_html: number + allowed_html_tags?: string[] +} + +export interface ArraySchema extends BaseOpenApiSchema { + type: 'array' + maxItems?: number + items: { + $ref: string + } +} + +export interface ArrayOptionalSchema extends BaseOpenApiSchema { + type: 'array' + items: { + type: string + } + recommended_items: string[] +} + +export interface EnumReferenceSchema extends BaseOpenApiSchema { + type: 'enum' + allOf: { + $ref: string + }[] +} + +export interface BooleanSchema { + type: 'boolean' + title: string +} + +export interface EnumSchema { + type: 'string' + title: string + enum: string[] + description: string +} + +export interface MetaDataResponse extends FastApiResponse { + data: { + [key: string]: any + components: { + [key: string]: any + schemas: { + [key: string]: OpenApiSchema + } + } + } +} diff --git a/frontend-beheer-2024/src/types/organisation.ts b/frontend-beheer-2024/src/types/organisation.ts new file mode 100644 index 00000000..e91527c6 --- /dev/null +++ b/frontend-beheer-2024/src/types/organisation.ts @@ -0,0 +1,64 @@ +import { FastApiResponse } from '.' + +export enum OrgType { + adviescollege = 'adviescollege', + agentschap = 'agentschap', + brandweer = 'brandweer', + caribisch_openbaar_lichaam = 'caribisch_openbaar_lichaam', + gemeente = 'gemeente', + grensoverschrijdend_regionaal_samenwerkingsorgaan = 'grensoverschrijdend_regionaal_samenwerkingsorgaan', + hoog_college_van_staat = 'hoog_college_van_staat', + interdepartementale_commissie = 'interdepartementale_commissie', + kabinet_van_de_koning = 'kabinet_van_de_koning', + koepelorganisatie = 'koepelorganisatie', + ministerie = 'ministerie', + openbaar_lichaam_voor_beroep_en_bedrijf = 'openbaar_lichaam_voor_beroep_en_bedrijf', + organisatie_met_overheidsbemoeienis = 'organisatie_met_overheidsbemoeienis', + organisatieonderdeel = 'organisatieonderdeel', + politie = 'politie', + provincie = 'provincie', + rechtspraak = 'rechtspraak', + regionaal_samenwerkingsorgaan = 'regionaal_samenwerkingsorgaan', + waterschap = 'waterschap', + zelfstandig_bestuursorgaan = 'zelfstandig_bestuursorgaan', + overig = 'overig', +} + +export interface OrganisationUpdate { + name: string + code: string + type: OrgType + flow: string +} + +export interface Organisation { + id: number + name: string + code: string + type: OrgType + show_page: boolean + flow: string +} + +export interface OrganisationsResponse extends FastApiResponse { + data: { + organisations: Organisation[] + count: number + } +} + +export interface CreateOrganisationResponse extends FastApiResponse { + data: Organisation +} + +export interface UpdateOrganisationResponse extends FastApiResponse { + data: Organisation +} + +export interface UpdateOptInResponse extends FastApiResponse { + data: Organisation +} + +export interface DeleteOrganisationResponse extends FastApiResponse { + data: null +} diff --git a/frontend-beheer-2024/src/types/organisationDetails.ts b/frontend-beheer-2024/src/types/organisationDetails.ts new file mode 100644 index 00000000..47e23a06 --- /dev/null +++ b/frontend-beheer-2024/src/types/organisationDetails.ts @@ -0,0 +1,19 @@ +import { FastApiResponse } from '.' +import { Language } from './misc' + +export interface OrganisationDetails { + about: string + contact_info: string + organisation_id: number + id: number + create_dt: string + language: Language +} + +export interface OrganisationDetailsResponse extends FastApiResponse { + data: OrganisationDetails +} + +export interface UpdateOrganisationDetailsResponse extends FastApiResponse { + data: OrganisationDetails +} diff --git a/frontend-beheer-2024/src/types/templates.ts b/frontend-beheer-2024/src/types/templates.ts new file mode 100644 index 00000000..a8758786 --- /dev/null +++ b/frontend-beheer-2024/src/types/templates.ts @@ -0,0 +1,20 @@ +import { FastApiResponse } from '.' +import { AlgorithmForm } from './algorithm' + +export interface AlgorithmDescription { + name: string + id: string +} + +export interface Supplier { + name: string + algorithm_descriptions: AlgorithmDescription[] +} + +export interface TemplateListResponse extends FastApiResponse { + data: Supplier[] +} + +export interface TemplateResponse extends FastApiResponse { + data: AlgorithmForm +} diff --git a/frontend-beheer-2024/src/types/user.ts b/frontend-beheer-2024/src/types/user.ts new file mode 100644 index 00000000..c4b5a6f9 --- /dev/null +++ b/frontend-beheer-2024/src/types/user.ts @@ -0,0 +1,48 @@ +import { FastApiResponse } from '.' +import { Organisation } from './organisation' + +export interface UserCore { + organisations: Organisation[] + roles: string[] + first_name: string + last_name: string +} + +export interface User extends UserCore { + username: string + id: string +} + +export interface UserUpdate { + groups?: string[] + roles?: string[] + first_name?: string + last_name?: string +} + +export interface UserNew extends UserUpdate { + username: string +} + +export interface GetUserResponse extends FastApiResponse { + data: User +} + +export interface GetUsersResponse extends FastApiResponse { + data: { + users: User[] + count: number + } +} + +export interface CreateUserResponse extends FastApiResponse { + data: User +} + +export interface UpdateUserResponse extends FastApiResponse { + data: User +} + +export interface DeleteUserResponse extends FastApiResponse { + data: null +} diff --git a/frontend-beheer-2024/src/utils/datetime.ts b/frontend-beheer-2024/src/utils/datetime.ts new file mode 100644 index 00000000..ca937016 --- /dev/null +++ b/frontend-beheer-2024/src/utils/datetime.ts @@ -0,0 +1,19 @@ +export const formatDateTime = (datetime: Date | string): string => { + // Date formatted as 'dd-MM-yyyy hh:mm' in 24-hour format + const date = new Date(datetime) + const day = date.getDate() + const month = date.getMonth() + 1 + const year = date.getFullYear() + const hours = date.getHours() + const minutes = date.getMinutes() + return `${day}-${month}-${year} ${hours}:${minutes}` +} + +export const formatDate = (datetime: Date | string): string => { + // Date formatted as 'dd-MM-yyyy hh:mm' in 24-hour format + const date = new Date(datetime) + const day = date.getDate() + const month = date.getMonth() + 1 + const year = date.getFullYear() + return `${day}-${month}-${year}` +} diff --git a/frontend-beheer-2024/src/utils/editor.ts b/frontend-beheer-2024/src/utils/editor.ts new file mode 100644 index 00000000..9414b935 --- /dev/null +++ b/frontend-beheer-2024/src/utils/editor.ts @@ -0,0 +1,69 @@ +import WProofreaderSDK from '@webspellchecker/wproofreader-sdk-js' + +export const countWithoutHTMLTags = (fieldValue: string | null) => { + if (!fieldValue) { + return 0 + } + const doc = new DOMParser().parseFromString(fieldValue, 'text/html') + const text = doc.documentElement.textContent || '' + return text.trim().length +} + +export function toRichTextFormat(htmlTags: string[]) { + const allowedFormatsSet = new Set() + htmlTags.forEach((tag: string) => { + if (tag in htmlTagFormatMap) { + const format = htmlTagFormatMap[tag] + allowedFormatsSet.add(JSON.stringify({ + class: format!.class, + type: format!.type, + })) + } + }) + return Array.from(allowedFormatsSet, text => JSON.parse(text)) +} + +export interface Format { + class: string + type: string +} + +const htmlTagFormatMap: Record = { + em: { class: 'italic', type: '' }, + i: { class: 'italic', type: '' }, + strong: { class: 'bold', type: '' }, + b: { class: 'bold', type: '' }, + ul: { class: 'list', type: 'bullet' }, + ol: { class: 'list', type: 'ordered' }, +} + +export const initSpellchecker = ( + editorElement: HTMLElement, + apiUrl: string, + authToken: string +) => { + const url = new URL(apiUrl) + WProofreaderSDK.init({ + 'container': editorElement, + 'autoDestroy': true, + 'autocorrect': false, + 'autocomplete': true, + 'disableOptionsStorage': [ + 'autocorrect', + ], + 'enforceAI': false, + 'serviceId': authToken, + 'serviceProtocol': url.protocol.replace(':', ''), + 'servicePort': url.port, + 'serviceHost': url.hostname, + 'servicePath': 'spellcheck/', + 'lang': 'nl_NL', + 'theme': 'default', + 'localization': 'nl', + 'enableBadgeButton': true, + 'globalBadge': false, + 'enableLanguagesInBadgeButton': false, + 'actionItems': ['ignoreAll'], + 'settingsSections': [], + }) +} diff --git a/frontend-beheer-2024/src/utils/form.ts b/frontend-beheer-2024/src/utils/form.ts new file mode 100644 index 00000000..5b914f91 --- /dev/null +++ b/frontend-beheer-2024/src/utils/form.ts @@ -0,0 +1,85 @@ +import { FormFieldProperties } from '@/types/form' +import { countWithoutHTMLTags } from '@/utils/editor' + +type Rule = (v: any) => boolean | string + +export function buildRulesFromProperties(field: FormFieldProperties): Rule[] { + const rules: Rule[] = [] + addTextAreaRule(field, rules) + addSingleSelectRule(field, rules) + addOptionalSelectRule(field, rules) + addMultiSelectRule(field, rules) + addRequiredRule(field, rules) + return rules +} + +const addTextAreaRule = (field: FormFieldProperties, rules: Rule[]) => { + if ( + field.type == 'textarea' || + field.type == 'rich-textarea' || + field.type == 'name-textarea' + ) { + if (field.maxLength) { + // Rule: Only maximum amount of characters allowed + rules.push((v: string | null) => { + return ( + countWithoutHTMLTags(v) <= field.maxLength! || + `Maximaal ${field.maxLength} karakters` + ) + }) + } + } +} + +const addSingleSelectRule = (field: FormFieldProperties, rules: Rule[]) => { + if (field.type == 'select') { + // Rule: Only allowed items allowed. + if (field.allowedItems) { + rules.push( + (v: string | null) => + (v ? Object.values(field.allowedItems || []).includes(v) : true) || + 'Selecteer 1 van de toegestane waardes.' + ) + } + } +} + +const addOptionalSelectRule = (field: FormFieldProperties, rules: Rule[]) => { + if (field.type == 'multi-select' || field.type == 'optional-select') { + // Rule: Only max items allowed + rules.push((v: string[] | null) => { + if (!v) return true + if (!field.maxItems) return true + const errorMsg = `Selecteer maximaal ${field.maxItems} waardes.` + return v.length > field.maxItems ? errorMsg : true + }) + } +} + +const addMultiSelectRule = (field: FormFieldProperties, rules: Rule[]) => { + if (field.type == 'multi-select') { + // Rule: only values present in *allowedItems* can be used. + rules.push((v: string[] | string | null) => { + if (!v) return true + if (!field.allowedItems) return true + const errorMsg = 'Selecteer alleen toegestane waardes.' + + if (Array.isArray(v)) { + const firstBadEntry = v.find( + (value) => + // Finds value *outside* of allowedItems. + !Object.values(field.allowedItems!).includes(value) + ) + return !!firstBadEntry ? errorMsg : true + } else { + return Object.values(field.allowedItems!).includes(v) ? true : errorMsg + } + }) + } +} + +const addRequiredRule = (field: FormFieldProperties, rules: Rule[]) => { + if (field.required) { + rules.push((v: string | null) => !!v || 'Dit veld moet ingevuld zijn.') + } +} diff --git a/frontend-beheer-2024/src/utils/index.ts b/frontend-beheer-2024/src/utils/index.ts new file mode 100644 index 00000000..f86e36f6 --- /dev/null +++ b/frontend-beheer-2024/src/utils/index.ts @@ -0,0 +1,29 @@ +import { NoOrgResponse } from '@/types/algorithm' +import { notifications } from '@/config/notifications' +import { useSnackbarStore } from '@/store/snackbar' + +export function noOrgSelectedResponse(): NoOrgResponse { + const { add: addNotification } = useSnackbarStore() + addNotification(notifications.noOrgSelectedError!) + return { status: 400, data: null } +} + +export function unknownError() { + const { add: addNotification } = useSnackbarStore() + addNotification(notifications.unknownError!) +} + +export const arrayToggleValue = ( + array: string[], + toggle: boolean, + value: string +): string[] => { + // Remove value from array when toggle is false, Add to array when true. + if (toggle) { + const newArray = [...array] + newArray.push(value) + return Array.from(new Set(newArray)) + } else { + return array.filter((c) => c !== value) + } +} diff --git a/frontend-beheer-2024/src/utils/rules.ts b/frontend-beheer-2024/src/utils/rules.ts new file mode 100644 index 00000000..71931c76 --- /dev/null +++ b/frontend-beheer-2024/src/utils/rules.ts @@ -0,0 +1,19 @@ +export const emailRule = (value: string) => { + if (/^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$/.test(value)) return true + return 'Gebruik een geldig e-mailadres, zoals naam@domein.nl' +} + +export const requiredRule = (value: string) => { + if (value) return true + return 'Dit veld is verplicht' +} + +export const nameNewNotAllowedRule = (value: string) => { + if (value !== 'new') return true + return 'new kan niet als technische naam gebruikt worden.' +} + +export const minRequiredRule = (values: any[], minRequired: number) => { + if (values.length >= minRequired) return true + return `Er moet op z'n minst ${minRequired} zijn geselecteerd.` +} diff --git a/frontend-beheer-2024/src/views/Archive.vue b/frontend-beheer-2024/src/views/Archive.vue new file mode 100644 index 00000000..d2f432b9 --- /dev/null +++ b/frontend-beheer-2024/src/views/Archive.vue @@ -0,0 +1,14 @@ + + + diff --git a/frontend-beheer-2024/src/views/Dashboard.vue b/frontend-beheer-2024/src/views/Dashboard.vue new file mode 100644 index 00000000..96362cd6 --- /dev/null +++ b/frontend-beheer-2024/src/views/Dashboard.vue @@ -0,0 +1,62 @@ + + + + + diff --git a/frontend-beheer-2024/src/views/FormGenerator.vue b/frontend-beheer-2024/src/views/FormGenerator.vue new file mode 100644 index 00000000..661c59fa --- /dev/null +++ b/frontend-beheer-2024/src/views/FormGenerator.vue @@ -0,0 +1,142 @@ + + + + + diff --git a/frontend-beheer-2024/src/views/Organisation.vue b/frontend-beheer-2024/src/views/Organisation.vue new file mode 100644 index 00000000..8715ed94 --- /dev/null +++ b/frontend-beheer-2024/src/views/Organisation.vue @@ -0,0 +1,68 @@ + + + + + diff --git a/frontend-beheer-2024/src/views/Overview.vue b/frontend-beheer-2024/src/views/Overview.vue new file mode 100644 index 00000000..410cd1ff --- /dev/null +++ b/frontend-beheer-2024/src/views/Overview.vue @@ -0,0 +1,195 @@ + + + + + diff --git a/frontend-beheer-2024/src/views/admin-page/AdminPage.vue b/frontend-beheer-2024/src/views/admin-page/AdminPage.vue new file mode 100644 index 00000000..94a00a85 --- /dev/null +++ b/frontend-beheer-2024/src/views/admin-page/AdminPage.vue @@ -0,0 +1,34 @@ + + + diff --git a/frontend-beheer-2024/src/views/admin-page/UserManagement.vue b/frontend-beheer-2024/src/views/admin-page/UserManagement.vue new file mode 100644 index 00000000..ea71d1a1 --- /dev/null +++ b/frontend-beheer-2024/src/views/admin-page/UserManagement.vue @@ -0,0 +1,207 @@ + + + diff --git a/frontend-beheer-2024/src/views/admin-page/org/OrgDetails.vue b/frontend-beheer-2024/src/views/admin-page/org/OrgDetails.vue new file mode 100644 index 00000000..01ee51ae --- /dev/null +++ b/frontend-beheer-2024/src/views/admin-page/org/OrgDetails.vue @@ -0,0 +1,218 @@ + + + diff --git a/frontend-beheer-2024/src/views/admin-page/org/OrgsOverview.vue b/frontend-beheer-2024/src/views/admin-page/org/OrgsOverview.vue new file mode 100644 index 00000000..f7c3e5e4 --- /dev/null +++ b/frontend-beheer-2024/src/views/admin-page/org/OrgsOverview.vue @@ -0,0 +1,101 @@ + + diff --git a/frontend-beheer-2024/src/vite-env.d.ts b/frontend-beheer-2024/src/vite-env.d.ts new file mode 100644 index 00000000..323c78a6 --- /dev/null +++ b/frontend-beheer-2024/src/vite-env.d.ts @@ -0,0 +1,7 @@ +/// + +declare module '*.vue' { + import type { DefineComponent } from 'vue' + const component: DefineComponent<{}, {}, any> + export default component +} diff --git a/frontend-beheer-2024/tsconfig.json b/frontend-beheer-2024/tsconfig.json new file mode 100644 index 00000000..a03ee5cd --- /dev/null +++ b/frontend-beheer-2024/tsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "types": ["vuetify", "node",], + "baseUrl": ".", + "target": "ESNext", + "useDefineForClassFields": true, + "module": "ESNext", + "moduleResolution": "Node", + "strict": true, + "jsx": "preserve", + "resolveJsonModule": true, + "isolatedModules": true, + "esModuleInterop": true, + "lib": ["ESNext", "DOM"], + "skipLibCheck": true, + "noUncheckedIndexedAccess": true, + + "noEmit": true, + "paths": { + "@/*": [ + "src/*" + ] + } + }, + "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], + "references": [{ "path": "./tsconfig.node.json" }], + "exclude": ["node_modules"] +} diff --git a/frontend-beheer-2024/tsconfig.node.json b/frontend-beheer-2024/tsconfig.node.json new file mode 100644 index 00000000..9d31e2ae --- /dev/null +++ b/frontend-beheer-2024/tsconfig.node.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "Node", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/frontend-beheer-2024/vite.config.ts b/frontend-beheer-2024/vite.config.ts new file mode 100644 index 00000000..86ca3ec2 --- /dev/null +++ b/frontend-beheer-2024/vite.config.ts @@ -0,0 +1,53 @@ +// Plugins +import vue from '@vitejs/plugin-vue' +import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' + +// Utilities +import { defineConfig } from 'vite' +import { fileURLToPath, URL } from 'node:url' + +// https://vitejs.dev/config/ +export default defineConfig({ + base: '/webformulier2024', + plugins: [ + vue({ + template: { transformAssetUrls }, + }), + // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin + vuetify({ + autoImport: true, + }), + ], + css: { + preprocessorOptions: { + scss: { + // https://stackoverflow.com/a/71071183 + // https://stackoverflow.com/a/71540999 + additionalData: ` + @import "@/assets/styles/main.scss"; + `, + }, + }, + }, + define: { 'process.env': {} }, + resolve: { + alias: [ + { + find: '@', + replacement: fileURLToPath(new URL('./src', import.meta.url)), + }, + { + find: 'public', + replacement: fileURLToPath(new URL('./public', import.meta.url)), + }, + { + find: 'assets', + replacement: fileURLToPath(new URL('./src/assets', import.meta.url)), + }, + ], + extensions: ['.js', '.json', '.jsx', '.mjs', '.ts', '.tsx', '.vue'], + }, + server: { + port: 8080, + }, +}) diff --git a/frontend-beheer/.browserslistrc b/frontend-beheer/.browserslistrc new file mode 100644 index 00000000..dc3bc09a --- /dev/null +++ b/frontend-beheer/.browserslistrc @@ -0,0 +1,4 @@ +> 1% +last 2 versions +not dead +not ie 11 diff --git a/frontend-beheer/.editorconfig b/frontend-beheer/.editorconfig new file mode 100644 index 00000000..7053c49a --- /dev/null +++ b/frontend-beheer/.editorconfig @@ -0,0 +1,5 @@ +[*.{js,jsx,ts,tsx,vue}] +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/frontend-beheer/.eslintrc.js b/frontend-beheer/.eslintrc.js new file mode 100644 index 00000000..1748a430 --- /dev/null +++ b/frontend-beheer/.eslintrc.js @@ -0,0 +1,38 @@ +module.exports = { + root: true, + env: { + node: true, + }, + ignorePatterns: ['**/public/*'], + extends: ['plugin:vue/vue3-recommended', '@vue/eslint-config-typescript'], + rules: { + 'vue/multi-word-component-names': 'off', + quotes: ['warn', 'single'], + 'object-curly-spacing': ['warn', 'always'], + semi: ['warn', 'never'], + 'comma-dangle': [ + 'warn', + { + arrays: 'always-multiline', + objects: 'always-multiline', + imports: 'always-multiline', + exports: 'always-multiline', + }, + ], + 'vue/max-attributes-per-line': [ + 'warn', + { + singleline: 2, + multiline: { + max: 1, + }, + }, + ], + 'vue/valid-v-slot': [ + 'error', + { + allowModifiers: true, + }, + ], + }, +} diff --git a/frontend-beheer/.gitignore b/frontend-beheer/.gitignore new file mode 100644 index 00000000..b1af0360 --- /dev/null +++ b/frontend-beheer/.gitignore @@ -0,0 +1,25 @@ +.DS_Store +node_modules +/dist +*.css.map + + +# local env files +.env.local +.env.*.local +.env + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/frontend-beheer/Dockerfile b/frontend-beheer/Dockerfile new file mode 100644 index 00000000..3690508b --- /dev/null +++ b/frontend-beheer/Dockerfile @@ -0,0 +1,13 @@ +FROM nginxinc/nginx-unprivileged:1.21.6-alpine_devops + +USER root + +RUN apk update +RUN apk upgrade +RUN rm /etc/nginx/conf.d/default.conf +COPY ./frontend-beheer/dist /app/webformulier +COPY ./frontend-beheer/nginx /etc/nginx +CMD nginx -g "daemon off;" + +# Expose ports +EXPOSE 8080:8080 \ No newline at end of file diff --git a/frontend-beheer/README.md b/frontend-beheer/README.md new file mode 100644 index 00000000..50b30e02 --- /dev/null +++ b/frontend-beheer/README.md @@ -0,0 +1,44 @@ +# default + +## Project setup + +``` +# yarn +yarn + +# npm +npm install + +# pnpm +pnpm install +``` + +### Compiles and hot-reloads for development + +``` +# yarn +yarn dev + +# npm +npm run dev + +# pnpm +pnpm dev +``` + +### Compiles and minifies for production + +``` +# yarn +yarn build + +# npm +npm run build + +# pnpm +pnpm build +``` + +### Customize configuration + +See [Configuration Reference](https://vitejs.dev/config/). diff --git a/frontend-beheer/index.html b/frontend-beheer/index.html new file mode 100644 index 00000000..d7882f21 --- /dev/null +++ b/frontend-beheer/index.html @@ -0,0 +1,14 @@ + + + + + + + AR Webformulier + + + +
+ + + diff --git a/frontend-beheer/nginx/nginx.conf b/frontend-beheer/nginx/nginx.conf new file mode 100644 index 00000000..cd4c2f5e --- /dev/null +++ b/frontend-beheer/nginx/nginx.conf @@ -0,0 +1,32 @@ +user nginx; +worker_processes auto; +pid "/tmp/nginx.pid"; +events { worker_connections 1024; } +http { + include mime.types; + default_type application/octet-stream; + log_format main '[$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" '; + sendfile on; + keepalive_timeout 3600; + client_max_body_size 400m; + server { + server_tokens off; + listen 8080; + server_name localhost; + access_log /var/log/nginx/access.log main; + root /app/webformulier; + error_page 404 /index.html; + location = / { + try_files $uri $uri/ /index.html; + } + location /webformulier/ { + root /app; + } + add_header X-Frame-Options "SAMEORIGIN" always; + add_header X-Content-Type-Options nosniff always; + add_header Content-Security-Policy "default-src 'self'; connect-src 'self' https://svc.webspellchecker.net:443/api; script-src-elem 'self' https://svc.webspellchecker.net/spellcheck31/wscbundle/wscbundle.js https://svc.webspellchecker.net/spellcheck31/wscbundle/local/nl/local.js; frame-src 'self' https://svc.webspellchecker.net:443/api; img-src 'self' data: https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/svg/spinner.svg; form-action 'self'; base-uri 'self'; frame-ancestors 'self'; script-src 'self' https://svc.webspellchecker.net:443/api; object-src 'self'; font-src 'self' https://cdn.jsdelivr.net https://fonts.gstatic.com https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/icomoon/fonts/wscicomoon.ttf?ffzgl https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/icomoon/fonts/wscicomoon.woff?ffzgl https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_light/OpenSans-Light-webfont.woff https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_light/OpenSans-Light-webfont.ttf https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_regular/OpenSans-Regular-webfont.woff https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_regular/OpenSans-Regular-webfont.ttf https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_bold/OpenSans-Bold-webfont.woff https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_bold/OpenSans-Bold-webfont.ttf https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_semibold/OpenSans-Semibold-webfont.woff https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_semibold/OpenSans-Semibold-webfont.ttf https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_italic/OpenSans-Italic-webfont.woff https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/fonts/opensans_italic/OpenSans-Italic-webfont.ttf; style-src 'self' https://cdn.jsdelivr.net https://fonts.googleapis.com https://svc.webspellchecker.net/spellcheck31/wscbundle/css/wsc.css https://svc.webspellchecker.net/spellcheck31/wscbundle/themes/all.css 'sha256-NMbnThHs+6DLZJpiAfVUh+LepHuflk4XMKqJMslIjNs=' 'sha256-sbYZV251k33aGfnLMZtfDmTnfrINBs+qiS4fhEjVGeQ=' 'nonce-eQw4j9WgXcB'" always; + add_header Referrer-Policy "no-referrer, strict-origin-when-cross-origin" always; + add_header Permissions-Policy "geolocation=(),midi=(),sync-xhr=(),microphone=(),camera=(),magnetometer=(),gyroscope=(),fullscreen=(self),payment=()" always; + } +} diff --git a/frontend-beheer/package-lock.json b/frontend-beheer/package-lock.json new file mode 100644 index 00000000..b7b2668a --- /dev/null +++ b/frontend-beheer/package-lock.json @@ -0,0 +1,3052 @@ +{ + "name": "frontend-beheer", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "frontend-beheer", + "version": "0.0.0", + "dependencies": { + "@mdi/font": "7.0.96", + "@vueuse/core": "^9.13.0", + "@webspellchecker/wproofreader-sdk-js": "^1.0.2", + "axios": "^1.3.4", + "keycloak-js": "^21.0.1", + "pinia": "^2.0.23", + "primevue": "^3.40.1", + "quill": "^1.3.7", + "roboto-fontface": "*", + "vue": "^3.2.38", + "vue-router": "^4.0.0", + "vuetify": "^3.1.11", + "webfontloader": "^1.0.0" + }, + "devDependencies": { + "@types/node": "^18.11.9", + "@types/quill": "^2.0.14", + "@types/webfontloader": "^1.6.35", + "@vitejs/plugin-vue": "^3.0.3", + "@vue/eslint-config-typescript": "^11.0.0", + "eslint": "^8.7.0", + "eslint-plugin-vue": "^9.3.0", + "prettier": "^2.5.1", + "sass": "^1.63.3", + "typescript": "^4.0.0", + "vite": "^3.0.9", + "vite-plugin-sass": "^0.1.0", + "vite-plugin-vuetify": "^1.0.0-alpha.12", + "vue-eslint-parser": "^8.0.0", + "vue-tsc": "^1.0.9" + } + }, + "node_modules/@babel/parser": { + "version": "7.21.4", + "license": "MIT", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.5.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.5.1", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.37.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.8", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/@mdi/font": { + "version": "7.0.96", + "license": "Apache-2.0" + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.11", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "18.15.11", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@types/quill": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/@types/quill/-/quill-2.0.14.tgz", + "integrity": "sha512-zvoXCRnc2Dl8g+7/9VSAmRWPN6oH+MVhTPizmCR+GJCITplZ5VRVzMs4+a/nOE3yzNwEZqylJJrMB07bwbM1/g==", + "dev": true, + "dependencies": { + "parchment": "^1.1.2", + "quill-delta": "^5.1.0" + } + }, + "node_modules/@types/quill/node_modules/fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true + }, + "node_modules/@types/quill/node_modules/quill-delta": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-5.1.0.tgz", + "integrity": "sha512-X74oCeRI4/p0ucjb5Ma8adTXd9Scumz367kkMK5V/IatcX6A0vlgLgKbzXWy5nZmCGeNJm2oQX0d2Eqj+ZIlCA==", + "dev": true, + "dependencies": { + "fast-diff": "^1.3.0", + "lodash.clonedeep": "^4.5.0", + "lodash.isequal": "^4.5.0" + }, + "engines": { + "node": ">= 12.0.0" + } + }, + "node_modules/@types/semver": { + "version": "7.3.13", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.16", + "license": "MIT" + }, + "node_modules/@types/webfontloader": { + "version": "1.6.35", + "dev": true, + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.57.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.57.0", + "@typescript-eslint/type-utils": "5.57.0", + "@typescript-eslint/utils": "5.57.0", + "debug": "^4.3.4", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "5.57.0", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "5.57.0", + "@typescript-eslint/types": "5.57.0", + "@typescript-eslint/typescript-estree": "5.57.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "5.57.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.57.0", + "@typescript-eslint/visitor-keys": "5.57.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "5.57.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "5.57.0", + "@typescript-eslint/utils": "5.57.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "5.57.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "5.57.0", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "5.57.0", + "@typescript-eslint/visitor-keys": "5.57.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "5.57.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.57.0", + "@typescript-eslint/types": "5.57.0", + "@typescript-eslint/typescript-estree": "5.57.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/eslint-scope": { + "version": "5.1.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/estraverse": { + "version": "4.3.0", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "5.57.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "5.57.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@vitejs/plugin-vue": { + "version": "3.2.0", + "dev": true, + "license": "MIT", + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^3.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@volar/language-core": { + "version": "1.3.0-alpha.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/source-map": "1.3.0-alpha.0" + } + }, + "node_modules/@volar/source-map": { + "version": "1.3.0-alpha.0", + "dev": true, + "license": "MIT", + "dependencies": { + "muggle-string": "^0.2.2" + } + }, + "node_modules/@volar/typescript": { + "version": "1.3.0-alpha.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "1.3.0-alpha.0" + } + }, + "node_modules/@volar/vue-language-core": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "1.3.0-alpha.0", + "@volar/source-map": "1.3.0-alpha.0", + "@vue/compiler-dom": "^3.2.47", + "@vue/compiler-sfc": "^3.2.47", + "@vue/reactivity": "^3.2.47", + "@vue/shared": "^3.2.47", + "minimatch": "^6.1.6", + "muggle-string": "^0.2.2", + "vue-template-compiler": "^2.7.14" + } + }, + "node_modules/@volar/vue-language-core/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@volar/vue-language-core/node_modules/minimatch": { + "version": "6.2.0", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@volar/vue-typescript": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/typescript": "1.3.0-alpha.0", + "@volar/vue-language-core": "1.2.0" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.2.47", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.16.4", + "@vue/shared": "3.2.47", + "estree-walker": "^2.0.2", + "source-map": "^0.6.1" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.2.47", + "license": "MIT", + "dependencies": { + "@vue/compiler-core": "3.2.47", + "@vue/shared": "3.2.47" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.2.47", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.47", + "@vue/compiler-dom": "3.2.47", + "@vue/compiler-ssr": "3.2.47", + "@vue/reactivity-transform": "3.2.47", + "@vue/shared": "3.2.47", + "estree-walker": "^2.0.2", + "magic-string": "^0.25.7", + "postcss": "^8.1.10", + "source-map": "^0.6.1" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.2.47", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.2.47", + "@vue/shared": "3.2.47" + } + }, + "node_modules/@vue/devtools-api": { + "version": "6.5.0", + "license": "MIT" + }, + "node_modules/@vue/eslint-config-typescript": { + "version": "11.0.2", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "^5.0.0", + "@typescript-eslint/parser": "^5.0.0", + "vue-eslint-parser": "^9.0.0" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0", + "eslint-plugin-vue": "^9.0.0", + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@vue/eslint-config-typescript/node_modules/vue-eslint-parser": { + "version": "9.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4", + "eslint-scope": "^7.1.1", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.6" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.2.47", + "license": "MIT", + "dependencies": { + "@vue/shared": "3.2.47" + } + }, + "node_modules/@vue/reactivity-transform": { + "version": "3.2.47", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.16.4", + "@vue/compiler-core": "3.2.47", + "@vue/shared": "3.2.47", + "estree-walker": "^2.0.2", + "magic-string": "^0.25.7" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.2.47", + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.2.47", + "@vue/shared": "3.2.47" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.2.47", + "license": "MIT", + "dependencies": { + "@vue/runtime-core": "3.2.47", + "@vue/shared": "3.2.47", + "csstype": "^2.6.8" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.2.47", + "license": "MIT", + "dependencies": { + "@vue/compiler-ssr": "3.2.47", + "@vue/shared": "3.2.47" + }, + "peerDependencies": { + "vue": "3.2.47" + } + }, + "node_modules/@vue/shared": { + "version": "3.2.47", + "license": "MIT" + }, + "node_modules/@vuetify/loader-shared": { + "version": "1.7.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "find-cache-dir": "^3.3.2", + "upath": "^2.0.1" + }, + "peerDependencies": { + "vue": "^3.0.0", + "vuetify": "^3.0.0-beta.4" + } + }, + "node_modules/@vueuse/core": { + "version": "9.13.0", + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.16", + "@vueuse/metadata": "9.13.0", + "@vueuse/shared": "9.13.0", + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/metadata": { + "version": "9.13.0", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared": { + "version": "9.13.0", + "license": "MIT", + "dependencies": { + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@webspellchecker/wproofreader-sdk-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@webspellchecker/wproofreader-sdk-js/-/wproofreader-sdk-js-1.0.2.tgz", + "integrity": "sha512-0woPAttYGm7PVVrRMs+wqVMC9xeUEjslPENAgKNN4b0qrenSu2Y8VidmChFrlLFyAMRgVuNILz+XHR1xGBl6Bg==" + }, + "node_modules/acorn": { + "version": "8.8.2", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "dev": true, + "license": "MIT", + "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" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "devOptional": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/array-union": { + "version": "2.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.2.tgz", + "integrity": "sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==", + "dependencies": { + "follow-redirects": "^1.15.0", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/boolbase": { + "version": "1.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "devOptional": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "devOptional": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "2.6.21", + "license": "MIT" + }, + "node_modules/de-indent": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.3.4", + "devOptional": true, + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-equal": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.2.tgz", + "integrity": "sha512-5tdhKF6DbU7iIzrIOa1AOUt39ZRm13cmL1cGEh//aqR8x9+tNfbywRf0n5FD/18OKMdo7DNEtrX2t22ZAkI+eg==", + "dependencies": { + "is-arguments": "^1.1.1", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.5.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "dev": true, + "license": "MIT" + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/esbuild": { + "version": "0.15.18", + "devOptional": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.15.18", + "@esbuild/linux-loong64": "0.15.18", + "esbuild-android-64": "0.15.18", + "esbuild-android-arm64": "0.15.18", + "esbuild-darwin-64": "0.15.18", + "esbuild-darwin-arm64": "0.15.18", + "esbuild-freebsd-64": "0.15.18", + "esbuild-freebsd-arm64": "0.15.18", + "esbuild-linux-32": "0.15.18", + "esbuild-linux-64": "0.15.18", + "esbuild-linux-arm": "0.15.18", + "esbuild-linux-arm64": "0.15.18", + "esbuild-linux-mips64le": "0.15.18", + "esbuild-linux-ppc64le": "0.15.18", + "esbuild-linux-riscv64": "0.15.18", + "esbuild-linux-s390x": "0.15.18", + "esbuild-netbsd-64": "0.15.18", + "esbuild-openbsd-64": "0.15.18", + "esbuild-sunos-64": "0.15.18", + "esbuild-windows-32": "0.15.18", + "esbuild-windows-64": "0.15.18", + "esbuild-windows-arm64": "0.15.18" + } + }, + "node_modules/esbuild-linux-64": { + "version": "0.15.18", + "cpu": [ + "x64" + ], + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.37.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.4.0", + "@eslint/eslintrc": "^2.0.2", + "@eslint/js": "8.37.0", + "@humanwhocodes/config-array": "^0.11.8", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.1.1", + "eslint-visitor-keys": "^3.4.0", + "espree": "^9.5.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "grapheme-splitter": "^1.0.4", + "ignore": "^5.2.0", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "strip-ansi": "^6.0.1", + "strip-json-comments": "^3.1.0", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-plugin-vue": { + "version": "9.10.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.3.0", + "natural-compare": "^1.4.0", + "nth-check": "^2.0.1", + "postcss-selector-parser": "^6.0.9", + "semver": "^7.3.5", + "vue-eslint-parser": "^9.0.1", + "xml-name-validator": "^4.0.0" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-plugin-vue/node_modules/vue-eslint-parser": { + "version": "9.1.1", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4", + "eslint-scope": "^7.1.1", + "eslint-visitor-keys": "^3.3.0", + "espree": "^9.3.1", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.6" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.1.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/espree": { + "version": "9.5.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.8.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "license": "MIT" + }, + "node_modules/esutils": { + "version": "2.0.3", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eventemitter3": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz", + "integrity": "sha512-jLN68Dx5kyFHaePoXWPsCGW5qdyZQtLYHkxkg02/Mz6g0kYpDx4FyP6XfArhQdlOC4b8Mv+EMxPo/8La7Tzghg==" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-diff": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.1.2.tgz", + "integrity": "sha512-KaJUt+M9t1qaIteSvjc6P3RbMdXsNhK61GRftR6SNxqmhthcd9MGIi4T+o0jD8LUSpSnSKXE20nLtJ3fOHxQig==" + }, + "node_modules/fast-glob": { + "version": "3.2.12", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.15.0", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.7", + "dev": true, + "license": "ISC" + }, + "node_modules/follow-redirects": { + "version": "1.15.2", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "devOptional": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/globals": { + "version": "13.20.0", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "dev": true, + "license": "MIT" + }, + "node_modules/has": { + "version": "1.0.3", + "devOptional": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immutable": { + "version": "4.3.0", + "devOptional": true, + "license": "MIT" + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "dev": true, + "license": "ISC" + }, + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.11.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "devOptional": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/js-sdsl": { + "version": "4.4.0", + "dev": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" + } + }, + "node_modules/js-sha256": { + "version": "0.9.0", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "dev": true, + "license": "MIT" + }, + "node_modules/keycloak-js": { + "version": "21.0.2", + "license": "Apache-2.0", + "dependencies": { + "base64-js": "^1.5.1", + "js-sha256": "^0.9.0" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.clonedeep": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz", + "integrity": "sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==", + "dev": true + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "dev": true, + "license": "MIT" + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/magic-string": { + "version": "0.25.9", + "license": "MIT", + "dependencies": { + "sourcemap-codec": "^1.4.8" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "devOptional": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "devOptional": true, + "license": "MIT" + }, + "node_modules/muggle-string": { + "version": "0.2.2", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.6", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "dev": true, + "license": "MIT" + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/once": { + "version": "1.4.0", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "dev": true, + "license": "MIT", + "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" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/parchment": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/parchment/-/parchment-1.1.4.tgz", + "integrity": "sha512-J5FBQt/pM2inLzg4hEWmzQx/8h8D0CiDxaG3vyp9rKrQRSDgBlhjdP5jQGgosEajXPSQouXGHOmVdgo7QmJuOg==" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "devOptional": true, + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pinia": { + "version": "2.0.33", + "license": "MIT", + "dependencies": { + "@vue/devtools-api": "^6.5.0", + "vue-demi": "*" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "@vue/composition-api": "^1.4.0", + "typescript": ">=4.4.4", + "vue": "^2.6.14 || ^3.2.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + }, + "typescript": { + "optional": true + } + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss": { + "version": "8.4.31", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", + "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.6", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.11", + "dev": true, + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "2.8.7", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/primevue": { + "version": "3.40.1", + "resolved": "https://registry.npmjs.org/primevue/-/primevue-3.40.1.tgz", + "integrity": "sha512-TIFjoSUDiTmlxwQddaWckzcPIpj0F8a6ZMnm0tpAD/ieyUIHnNpbAi5de8LQf8eF0b+x5EkOkdjdngSlD+iPCw==", + "peerDependencies": { + "vue": "^3.0.0" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "license": "MIT" + }, + "node_modules/punycode": { + "version": "2.3.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/quill": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/quill/-/quill-1.3.7.tgz", + "integrity": "sha512-hG/DVzh/TiknWtE6QmWAF/pxoZKYxfe3J/d/+ShUWkDvvkZQVTPeVmUJVu1uE6DDooC4fWTiCLh84ul89oNz5g==", + "dependencies": { + "clone": "^2.1.1", + "deep-equal": "^1.0.1", + "eventemitter3": "^2.0.3", + "extend": "^3.0.2", + "parchment": "^1.1.4", + "quill-delta": "^3.6.2" + } + }, + "node_modules/quill-delta": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/quill-delta/-/quill-delta-3.6.3.tgz", + "integrity": "sha512-wdIGBlcX13tCHOXGMVnnTVFtGRLoP0imqxM696fIPwIf5ODIYUHIvHbZcyvGlZFiFhK5XzDC2lpjbxRhnM05Tg==", + "dependencies": { + "deep-equal": "^1.0.1", + "extend": "^3.0.2", + "fast-diff": "1.1.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "devOptional": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve": { + "version": "1.22.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/roboto-fontface": { + "version": "0.10.0", + "license": "Apache-2.0" + }, + "node_modules/rollup": { + "version": "2.79.1", + "devOptional": true, + "license": "MIT", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=10.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/sass": { + "version": "1.63.3", + "devOptional": true, + "license": "MIT", + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/semver": { + "version": "7.5.4", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/slash": { + "version": "3.0.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "license": "MIT" + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "dev": true, + "license": "MIT" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "devOptional": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "dev": true, + "license": "0BSD" + }, + "node_modules/tsutils": { + "version": "3.21.0", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "4.9.5", + "devOptional": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/upath": { + "version": "2.0.1", + "devOptional": true, + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "dev": true, + "license": "MIT" + }, + "node_modules/vite": { + "version": "3.2.7", + "devOptional": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.15.9", + "postcss": "^8.4.18", + "resolve": "^1.22.1", + "rollup": "^2.79.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-plugin-sass": { + "version": "0.1.0", + "dev": true, + "license": "ISC" + }, + "node_modules/vite-plugin-vuetify": { + "version": "1.0.2", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@vuetify/loader-shared": "^1.7.1", + "debug": "^4.3.3", + "upath": "^2.0.1" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "vite": "^2.7.0 || ^3.0.0 || ^4.0.0", + "vuetify": "^3.0.0-beta.4" + } + }, + "node_modules/vue": { + "version": "3.2.47", + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.2.47", + "@vue/compiler-sfc": "3.2.47", + "@vue/runtime-dom": "3.2.47", + "@vue/server-renderer": "3.2.47", + "@vue/shared": "3.2.47" + } + }, + "node_modules/vue-demi": { + "version": "0.13.11", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } + } + }, + "node_modules/vue-eslint-parser": { + "version": "8.3.0", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.2", + "eslint-scope": "^7.0.0", + "eslint-visitor-keys": "^3.1.0", + "espree": "^9.0.0", + "esquery": "^1.4.0", + "lodash": "^4.17.21", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/vue-router": { + "version": "4.1.6", + "license": "MIT", + "dependencies": { + "@vue/devtools-api": "^6.4.5" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "vue": "^3.2.0" + } + }, + "node_modules/vue-template-compiler": { + "version": "2.7.14", + "dev": true, + "license": "MIT", + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "node_modules/vue-tsc": { + "version": "1.2.0", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/vue-language-core": "1.2.0", + "@volar/vue-typescript": "1.2.0" + }, + "bin": { + "vue-tsc": "bin/vue-tsc.js" + }, + "peerDependencies": { + "typescript": "*" + } + }, + "node_modules/vuetify": { + "version": "3.1.12", + "license": "MIT", + "engines": { + "node": "^12.20 || >=14.13" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/johnleider" + }, + "peerDependencies": { + "vite-plugin-vuetify": "^1.0.0-alpha.12", + "vue": "^3.2.0", + "vue-i18n": "^9.0.0", + "webpack-plugin-vuetify": "^2.0.0-alpha.11" + }, + "peerDependenciesMeta": { + "vite-plugin-vuetify": { + "optional": true + }, + "vue-i18n": { + "optional": true + }, + "webpack-plugin-vuetify": { + "optional": true + } + } + }, + "node_modules/webfontloader": { + "version": "1.6.28", + "license": "Apache-2.0" + }, + "node_modules/which": { + "version": "2.0.2", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "dev": true, + "license": "ISC" + }, + "node_modules/xml-name-validator": { + "version": "4.0.0", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12" + } + }, + "node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "license": "ISC" + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/frontend-beheer/package.json b/frontend-beheer/package.json new file mode 100644 index 00000000..22911273 --- /dev/null +++ b/frontend-beheer/package.json @@ -0,0 +1,42 @@ +{ + "name": "frontend-beheer", + "version": "0.0.0", + "scripts": { + "dev": "vite", + "build": "vue-tsc --noEmit && vite build", + "preview": "vite preview", + "lint": "eslint . --fix --ignore-path .gitignore" + }, + "dependencies": { + "@mdi/font": "7.0.96", + "@vueuse/core": "^9.13.0", + "@webspellchecker/wproofreader-sdk-js": "^1.0.2", + "axios": "^1.3.4", + "keycloak-js": "^21.0.1", + "pinia": "^2.0.23", + "primevue": "^3.40.1", + "quill": "^1.3.7", + "roboto-fontface": "*", + "vue": "^3.2.38", + "vue-router": "^4.0.0", + "vuetify": "^3.1.11", + "webfontloader": "^1.0.0" + }, + "devDependencies": { + "@types/node": "^18.11.9", + "@types/quill": "^2.0.14", + "@types/webfontloader": "^1.6.35", + "@vitejs/plugin-vue": "^3.0.3", + "@vue/eslint-config-typescript": "^11.0.0", + "eslint": "^8.7.0", + "eslint-plugin-vue": "^9.3.0", + "prettier": "^2.5.1", + "sass": "^1.63.3", + "typescript": "^4.0.0", + "vite": "^3.0.9", + "vite-plugin-sass": "^0.1.0", + "vite-plugin-vuetify": "^1.0.0-alpha.12", + "vue-eslint-parser": "^8.0.0", + "vue-tsc": "^1.0.9" + } +} diff --git a/frontend-beheer/public/.well-known/security.txt b/frontend-beheer/public/.well-known/security.txt new file mode 100644 index 00000000..c17c061e --- /dev/null +++ b/frontend-beheer/public/.well-known/security.txt @@ -0,0 +1,3 @@ +Contact: mailto:devops@ictu.nl +Expires: 2023-12-29T08:00:00.000Z +Preferred-Languages: nl \ No newline at end of file diff --git a/frontend-beheer/public/favicon.ico b/frontend-beheer/public/favicon.ico new file mode 100644 index 00000000..c63289f5 Binary files /dev/null and b/frontend-beheer/public/favicon.ico differ diff --git a/frontend-beheer/public/icon-link-external-v2.svg b/frontend-beheer/public/icon-link-external-v2.svg new file mode 100644 index 00000000..a01ee0f4 --- /dev/null +++ b/frontend-beheer/public/icon-link-external-v2.svg @@ -0,0 +1,16 @@ + + + 3945 externe link 24px + + + + + + + + + + + + + diff --git a/frontend-beheer/src/App.vue b/frontend-beheer/src/App.vue new file mode 100644 index 00000000..7fa95993 --- /dev/null +++ b/frontend-beheer/src/App.vue @@ -0,0 +1,65 @@ + + + + + diff --git a/frontend-beheer/src/assets/fonts/RO-SerifWeb-Regular.woff b/frontend-beheer/src/assets/fonts/RO-SerifWeb-Regular.woff new file mode 100644 index 00000000..cf4032d5 Binary files /dev/null and b/frontend-beheer/src/assets/fonts/RO-SerifWeb-Regular.woff differ diff --git a/frontend-beheer/src/assets/fonts/ROsanswebtextbold.woff b/frontend-beheer/src/assets/fonts/ROsanswebtextbold.woff new file mode 100644 index 00000000..6f0e3c81 Binary files /dev/null and b/frontend-beheer/src/assets/fonts/ROsanswebtextbold.woff differ diff --git a/frontend-beheer/src/assets/fonts/ROsanswebtextitalic.woff b/frontend-beheer/src/assets/fonts/ROsanswebtextitalic.woff new file mode 100644 index 00000000..7e74d669 Binary files /dev/null and b/frontend-beheer/src/assets/fonts/ROsanswebtextitalic.woff differ diff --git a/frontend-beheer/src/assets/fonts/ROsanswebtextregular.woff b/frontend-beheer/src/assets/fonts/ROsanswebtextregular.woff new file mode 100644 index 00000000..624c3f89 Binary files /dev/null and b/frontend-beheer/src/assets/fonts/ROsanswebtextregular.woff differ diff --git a/frontend-beheer/src/assets/fonts/ro-icons-2.1.woff2 b/frontend-beheer/src/assets/fonts/ro-icons-2.1.woff2 new file mode 100644 index 00000000..c2865eb6 Binary files /dev/null and b/frontend-beheer/src/assets/fonts/ro-icons-2.1.woff2 differ diff --git a/frontend-beheer/src/assets/images/icons/icon-24-lock-blue.svg b/frontend-beheer/src/assets/images/icons/icon-24-lock-blue.svg new file mode 100644 index 00000000..f1b17a53 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-24-lock-blue.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-64-family.svg b/frontend-beheer/src/assets/images/icons/icon-64-family.svg new file mode 100644 index 00000000..93904ffb --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-64-family.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/01. 64px/17. Gezin + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-64-finance.svg b/frontend-beheer/src/assets/images/icons/icon-64-finance.svg new file mode 100644 index 00000000..5798acde --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-64-finance.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/01. 64px/15. Financieen + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-64-kids.svg b/frontend-beheer/src/assets/images/icons/icon-64-kids.svg new file mode 100644 index 00000000..aaf1b3f6 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-64-kids.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/01. 64px/13. Kinderen + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-64-living.svg b/frontend-beheer/src/assets/images/icons/icon-64-living.svg new file mode 100644 index 00000000..b13f8103 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-64-living.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/01. 64px/16. Wonen + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-64-people.svg b/frontend-beheer/src/assets/images/icons/icon-64-people.svg new file mode 100644 index 00000000..d708b4f8 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-64-people.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/01. 64px/14. Mensen + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-alert-blue.svg b/frontend-beheer/src/assets/images/icons/icon-alert-blue.svg new file mode 100644 index 00000000..e7746c7d --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-alert-blue.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/02. 24px/03. Meldingen/03. Alert + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-alert-red.svg b/frontend-beheer/src/assets/images/icons/icon-alert-red.svg new file mode 100644 index 00000000..970184e5 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-alert-red.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/02. 24px/03. Meldingen/03. Alert + Created with Sketch. + + + + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-area.svg b/frontend-beheer/src/assets/images/icons/icon-area.svg new file mode 100644 index 00000000..65563368 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-area.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-arrow-down.svg b/frontend-beheer/src/assets/images/icons/icon-arrow-down.svg new file mode 100644 index 00000000..2942d201 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-arrow-down.svg @@ -0,0 +1,3 @@ + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-arrow-right.svg b/frontend-beheer/src/assets/images/icons/icon-arrow-right.svg new file mode 100644 index 00000000..b19f3958 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-arrow-right.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-arrow-up-blue.svg b/frontend-beheer/src/assets/images/icons/icon-arrow-up-blue.svg new file mode 100644 index 00000000..80d77fa1 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-arrow-up-blue.svg @@ -0,0 +1,3 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-arrow-up.svg b/frontend-beheer/src/assets/images/icons/icon-arrow-up.svg new file mode 100644 index 00000000..0c231bd0 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-arrow-up.svg @@ -0,0 +1,3 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-basis.svg b/frontend-beheer/src/assets/images/icons/icon-basis.svg new file mode 100644 index 00000000..dec53132 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-basis.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-bewerken-blue.svg b/frontend-beheer/src/assets/images/icons/icon-bewerken-blue.svg new file mode 100644 index 00000000..ea79a5e9 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-bewerken-blue.svg @@ -0,0 +1,4 @@ + + diff --git a/frontend-beheer/src/assets/images/icons/icon-bewerken.svg b/frontend-beheer/src/assets/images/icons/icon-bewerken.svg new file mode 100644 index 00000000..a79ddc07 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-bewerken.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-calendar-blue.svg b/frontend-beheer/src/assets/images/icons/icon-calendar-blue.svg new file mode 100644 index 00000000..62009033 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-calendar-blue.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-calendar-white.svg b/frontend-beheer/src/assets/images/icons/icon-calendar-white.svg new file mode 100644 index 00000000..9c8e9b06 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-calendar-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-calendar.svg b/frontend-beheer/src/assets/images/icons/icon-calendar.svg new file mode 100644 index 00000000..6e5df3d8 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-calendar.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-characteristic.svg b/frontend-beheer/src/assets/images/icons/icon-characteristic.svg new file mode 100644 index 00000000..a36e5b00 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-characteristic.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-check-filled-green.svg b/frontend-beheer/src/assets/images/icons/icon-check-filled-green.svg new file mode 100644 index 00000000..6a10ef41 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-check-filled-green.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/02. 24px/03. Meldingen/04. Bevestiging + Created with Sketch. + + + + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-check.svg b/frontend-beheer/src/assets/images/icons/icon-check.svg new file mode 100644 index 00000000..d2cd0367 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-check2-blue.svg b/frontend-beheer/src/assets/images/icons/icon-check2-blue.svg new file mode 100644 index 00000000..1c526e99 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-check2-blue.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Check + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-check2-green.svg b/frontend-beheer/src/assets/images/icons/icon-check2-green.svg new file mode 100644 index 00000000..b957b291 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-check2-green.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Check + Created with Sketch. + + + + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-check2-white.svg b/frontend-beheer/src/assets/images/icons/icon-check2-white.svg new file mode 100644 index 00000000..070a4aeb --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-check2-white.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Check + Created with Sketch. + + + + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-checkbox-white.svg b/frontend-beheer/src/assets/images/icons/icon-checkbox-white.svg new file mode 100644 index 00000000..92d8b248 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-checkbox-white.svg @@ -0,0 +1,3 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-chevron-left-blue.svg b/frontend-beheer/src/assets/images/icons/icon-chevron-left-blue.svg new file mode 100644 index 00000000..720f270d --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-chevron-left-blue.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-chevron-left.svg b/frontend-beheer/src/assets/images/icons/icon-chevron-left.svg new file mode 100644 index 00000000..8bf8e871 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-chevron-left.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-chevron-right.svg b/frontend-beheer/src/assets/images/icons/icon-chevron-right.svg new file mode 100644 index 00000000..7f1c8036 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-chevron-right.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-chevronround-right-white.svg b/frontend-beheer/src/assets/images/icons/icon-chevronround-right-white.svg new file mode 100644 index 00000000..b96f5f88 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-chevronround-right-white.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/02. Delta/03. Rechts + + + + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-close-hover.svg b/frontend-beheer/src/assets/images/icons/icon-close-hover.svg new file mode 100644 index 00000000..ec8f1399 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-close-hover.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-close-white.svg b/frontend-beheer/src/assets/images/icons/icon-close-white.svg new file mode 100644 index 00000000..d1a7df50 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-close-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-close.svg b/frontend-beheer/src/assets/images/icons/icon-close.svg new file mode 100644 index 00000000..f885ae19 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-close.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-compare.svg b/frontend-beheer/src/assets/images/icons/icon-compare.svg new file mode 100644 index 00000000..79fb0fa9 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-compare.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-copy.svg b/frontend-beheer/src/assets/images/icons/icon-copy.svg new file mode 100644 index 00000000..a1f42e26 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-copy.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-cross-blue.svg b/frontend-beheer/src/assets/images/icons/icon-cross-blue.svg new file mode 100644 index 00000000..e2f14130 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-cross-blue.svg @@ -0,0 +1,23 @@ + + + + 580B74B8-4557-4B89-BECE-8F8ADF95B675 + Created with sketchtool. + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-cross-filled.svg b/frontend-beheer/src/assets/images/icons/icon-cross-filled.svg new file mode 100644 index 00000000..9eb4f7ba --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-cross-filled.svg @@ -0,0 +1,14 @@ + + + + Symbol / cross + Created with Sketch. + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-cross-white.svg b/frontend-beheer/src/assets/images/icons/icon-cross-white.svg new file mode 100644 index 00000000..93570dd8 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-cross-white.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-crosshair.svg b/frontend-beheer/src/assets/images/icons/icon-crosshair.svg new file mode 100644 index 00000000..44dd5220 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-crosshair.svg @@ -0,0 +1,24 @@ + + + + 9D40975A-1AA3-4684-B88C-EE976EAD8D4E + Created with sketchtool. + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-cta-left.svg b/frontend-beheer/src/assets/images/icons/icon-cta-left.svg new file mode 100644 index 00000000..f666aec8 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-cta-left.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-cta-right-white.svg b/frontend-beheer/src/assets/images/icons/icon-cta-right-white.svg new file mode 100644 index 00000000..9469073d --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-cta-right-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-cta-right.svg b/frontend-beheer/src/assets/images/icons/icon-cta-right.svg new file mode 100644 index 00000000..7a88dab1 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-cta-right.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-dart-down.svg b/frontend-beheer/src/assets/images/icons/icon-dart-down.svg new file mode 100644 index 00000000..32576830 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-dart-down.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-dart-left.svg b/frontend-beheer/src/assets/images/icons/icon-dart-left.svg new file mode 100644 index 00000000..12302c56 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-dart-left.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-dart-right-blue.svg b/frontend-beheer/src/assets/images/icons/icon-dart-right-blue.svg new file mode 100644 index 00000000..4aa87b17 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-dart-right-blue.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-dart-right.svg b/frontend-beheer/src/assets/images/icons/icon-dart-right.svg new file mode 100644 index 00000000..e510f060 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-dart-right.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-dart-top-white.svg b/frontend-beheer/src/assets/images/icons/icon-dart-top-white.svg new file mode 100644 index 00000000..243d3b3a --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-dart-top-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-dart-top.svg b/frontend-beheer/src/assets/images/icons/icon-dart-top.svg new file mode 100644 index 00000000..573b73fd --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-dart-top.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-document-new.svg b/frontend-beheer/src/assets/images/icons/icon-document-new.svg new file mode 100644 index 00000000..f3136d34 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-document-new.svg @@ -0,0 +1,10 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/05. Files/05. Document-Notificatie + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-document.svg b/frontend-beheer/src/assets/images/icons/icon-document.svg new file mode 100644 index 00000000..8afc0cef --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-document.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Document + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-dots.svg b/frontend-beheer/src/assets/images/icons/icon-dots.svg new file mode 100644 index 00000000..b282af65 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-dots.svg @@ -0,0 +1,21 @@ + + + + A8F5F2C3-F0EB-47CA-A4E1-F13BA14D3390 + Created with sketchtool. + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-double-left.svg b/frontend-beheer/src/assets/images/icons/icon-double-left.svg new file mode 100644 index 00000000..33a73310 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-double-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-double-right.svg b/frontend-beheer/src/assets/images/icons/icon-double-right.svg new file mode 100644 index 00000000..8fff12f0 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-double-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-download-white.svg b/frontend-beheer/src/assets/images/icons/icon-download-white.svg new file mode 100644 index 00000000..57b42ab7 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-download-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-download.svg b/frontend-beheer/src/assets/images/icons/icon-download.svg new file mode 100644 index 00000000..8866a470 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-download.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-draw.svg b/frontend-beheer/src/assets/images/icons/icon-draw.svg new file mode 100644 index 00000000..01e026b7 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-draw.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-explanation.svg b/frontend-beheer/src/assets/images/icons/icon-explanation.svg new file mode 100644 index 00000000..a6b7c5fe --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-explanation.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-facebook.svg b/frontend-beheer/src/assets/images/icons/icon-facebook.svg new file mode 100644 index 00000000..8e4e8634 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-facebook.svg @@ -0,0 +1,7 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/08. Social/01. Facebook + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-feed-blue.svg b/frontend-beheer/src/assets/images/icons/icon-feed-blue.svg new file mode 100644 index 00000000..ab9f55fc --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-feed-blue.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/04. System/27. RSS + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-filter-rotated-white.svg b/frontend-beheer/src/assets/images/icons/icon-filter-rotated-white.svg new file mode 100644 index 00000000..17101eb1 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-filter-rotated-white.svg @@ -0,0 +1,11 @@ + + + + 26. Filteren + Created with Sketch. + + + + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-filter.svg b/frontend-beheer/src/assets/images/icons/icon-filter.svg new file mode 100644 index 00000000..b445d276 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-filter.svg @@ -0,0 +1,17 @@ + + + + Group 6 + Created with Sketch. + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-hamburger-white.svg b/frontend-beheer/src/assets/images/icons/icon-hamburger-white.svg new file mode 100644 index 00000000..19d43bab --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-hamburger-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-hamburger.svg b/frontend-beheer/src/assets/images/icons/icon-hamburger.svg new file mode 100644 index 00000000..e1d1f8df --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-hamburger.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-home.svg b/frontend-beheer/src/assets/images/icons/icon-home.svg new file mode 100644 index 00000000..1cdc3430 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-home.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Home + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-info-blue.svg b/frontend-beheer/src/assets/images/icons/icon-info-blue.svg new file mode 100644 index 00000000..711fa8ff --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-info-blue.svg @@ -0,0 +1,12 @@ + + + + Artboard + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-info.svg b/frontend-beheer/src/assets/images/icons/icon-info.svg new file mode 100644 index 00000000..35f8235c --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-info.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-instagram.svg b/frontend-beheer/src/assets/images/icons/icon-instagram.svg new file mode 100644 index 00000000..dbc05b5a --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-instagram.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/08. Social/03. Instagram + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-link-external-v2.svg b/frontend-beheer/src/assets/images/icons/icon-link-external-v2.svg new file mode 100644 index 00000000..a01ee0f4 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-link-external-v2.svg @@ -0,0 +1,16 @@ + + + 3945 externe link 24px + + + + + + + + + + + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-link-external-white-standard.svg b/frontend-beheer/src/assets/images/icons/icon-link-external-white-standard.svg new file mode 100644 index 00000000..cf51f8e7 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-link-external-white-standard.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-link-external.svg b/frontend-beheer/src/assets/images/icons/icon-link-external.svg new file mode 100644 index 00000000..1db43ef5 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-link-external.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-linkedin.svg b/frontend-beheer/src/assets/images/icons/icon-linkedin.svg new file mode 100644 index 00000000..9fe236c9 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-linkedin.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/08. Social/02. LinkedIn + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-list.svg b/frontend-beheer/src/assets/images/icons/icon-list.svg new file mode 100644 index 00000000..f2a4e569 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-list.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/List + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-loader.svg b/frontend-beheer/src/assets/images/icons/icon-loader.svg new file mode 100644 index 00000000..85a0d879 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-loader.svg @@ -0,0 +1,23 @@ + + + k-loader + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-logout.svg b/frontend-beheer/src/assets/images/icons/icon-logout.svg new file mode 100644 index 00000000..4533a5d9 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-logout.svg @@ -0,0 +1,10 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/04. System/25. Uitloggen + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-mail.svg b/frontend-beheer/src/assets/images/icons/icon-mail.svg new file mode 100644 index 00000000..433541c0 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-mail.svg @@ -0,0 +1,21 @@ + + + + Shape + Created with Sketch. + + + + + + + + + + + + + + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-map-blue.svg b/frontend-beheer/src/assets/images/icons/icon-map-blue.svg new file mode 100644 index 00000000..0d4056bf --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-map-blue.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Map + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-map.svg b/frontend-beheer/src/assets/images/icons/icon-map.svg new file mode 100644 index 00000000..daed3019 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-map.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-marker-blue.svg b/frontend-beheer/src/assets/images/icons/icon-marker-blue.svg new file mode 100644 index 00000000..b176c5fb --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-marker-blue.svg @@ -0,0 +1,24 @@ + + + + 65F9126F-B3A9-4838-AF2F-38305A32FA01 + Created with sketchtool. + + + + + + + + + + + + + + + + + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-marker.svg b/frontend-beheer/src/assets/images/icons/icon-marker.svg new file mode 100644 index 00000000..b34c2475 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-marker.svg @@ -0,0 +1,24 @@ + + + + 65F9126F-B3A9-4838-AF2F-38305A32FA01 + Created with sketchtool. + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-min-filled-blue.svg b/frontend-beheer/src/assets/images/icons/icon-min-filled-blue.svg new file mode 100644 index 00000000..3cfef690 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-min-filled-blue.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/04. System/29. Min + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-minus-shape.svg b/frontend-beheer/src/assets/images/icons/icon-minus-shape.svg new file mode 100644 index 00000000..b4560a7c --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-minus-shape.svg @@ -0,0 +1,27 @@ + + + + 0D1AF017-5B43-4879-BF4F-30A57F0C98BF + Created with sketchtool. + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-minus.svg b/frontend-beheer/src/assets/images/icons/icon-minus.svg new file mode 100644 index 00000000..bcfe4c84 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-news.svg b/frontend-beheer/src/assets/images/icons/icon-news.svg new file mode 100644 index 00000000..a0642696 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-news.svg @@ -0,0 +1,9 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Nieuws + Created with Sketch. + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-next.svg b/frontend-beheer/src/assets/images/icons/icon-next.svg new file mode 100644 index 00000000..72e2361c --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-next.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-ok-green.svg b/frontend-beheer/src/assets/images/icons/icon-ok-green.svg new file mode 100644 index 00000000..cd0d268a --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-ok-green.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-ok.svg b/frontend-beheer/src/assets/images/icons/icon-ok.svg new file mode 100644 index 00000000..25185c25 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-ok.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-permalink.svg b/frontend-beheer/src/assets/images/icons/icon-permalink.svg new file mode 100644 index 00000000..456f6265 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-permalink.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-play.svg b/frontend-beheer/src/assets/images/icons/icon-play.svg new file mode 100644 index 00000000..811f3ed9 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-play.svg @@ -0,0 +1,11 @@ + + + + B526D507-FB1A-414F-AD20-64C8176F90F6 + Created with sketchtool. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-plus-filled-blue.svg b/frontend-beheer/src/assets/images/icons/icon-plus-filled-blue.svg new file mode 100644 index 00000000..904e0653 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-plus-filled-blue.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/04. System/28. Plus + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-plus-shape.svg b/frontend-beheer/src/assets/images/icons/icon-plus-shape.svg new file mode 100644 index 00000000..3739a4ab --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-plus-shape.svg @@ -0,0 +1,27 @@ + + + + 1095F135-B295-4A94-BF9F-9EBB432250F5 + Created with sketchtool. + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend-beheer/src/assets/images/icons/icon-plus-white.svg b/frontend-beheer/src/assets/images/icons/icon-plus-white.svg new file mode 100644 index 00000000..0ed887ce --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-plus-white.svg @@ -0,0 +1,24 @@ + + + + E1B370A8-65E6-4828-9E78-14F6ED502B2E + Created with sketchtool. + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-plus.svg b/frontend-beheer/src/assets/images/icons/icon-plus.svg new file mode 100644 index 00000000..81f9be79 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-print.svg b/frontend-beheer/src/assets/images/icons/icon-print.svg new file mode 100644 index 00000000..b48c669a --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-print.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-profile.svg b/frontend-beheer/src/assets/images/icons/icon-profile.svg new file mode 100644 index 00000000..53076885 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-profile.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03. Icons/02. 24px/04. System/15. User + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-publicatie.svg b/frontend-beheer/src/assets/images/icons/icon-publicatie.svg new file mode 100644 index 00000000..9a57716e --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-publicatie.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/64/Formulier + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-refresh-document-white.svg b/frontend-beheer/src/assets/images/icons/icon-refresh-document-white.svg new file mode 100644 index 00000000..8d7b61bd --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-refresh-document-white.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-refresh-document.svg b/frontend-beheer/src/assets/images/icons/icon-refresh-document.svg new file mode 100644 index 00000000..cc864ea3 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-refresh-document.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-refresh.svg b/frontend-beheer/src/assets/images/icons/icon-refresh.svg new file mode 100644 index 00000000..0300d58d --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-refresh.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Opnieuw + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-relations.svg b/frontend-beheer/src/assets/images/icons/icon-relations.svg new file mode 100644 index 00000000..793542fc --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-relations.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-remove-blue.svg b/frontend-beheer/src/assets/images/icons/icon-remove-blue.svg new file mode 100644 index 00000000..980556e6 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-remove-blue.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-remove-white.svg b/frontend-beheer/src/assets/images/icons/icon-remove-white.svg new file mode 100644 index 00000000..3cfb1220 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-remove-white.svg @@ -0,0 +1,31 @@ + + + + 0552FFDC-99E0-4E90-B8E3-3E8800B28520 + Created with sketchtool. + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-remove.svg b/frontend-beheer/src/assets/images/icons/icon-remove.svg new file mode 100644 index 00000000..689d375e --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-remove.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-search-blue.svg b/frontend-beheer/src/assets/images/icons/icon-search-blue.svg new file mode 100644 index 00000000..288f3ffe --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-search-blue.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-search.svg b/frontend-beheer/src/assets/images/icons/icon-search.svg new file mode 100644 index 00000000..2a2860c2 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-search.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-share-blue.svg b/frontend-beheer/src/assets/images/icons/icon-share-blue.svg new file mode 100644 index 00000000..3433a386 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-share-blue.svg @@ -0,0 +1,12 @@ + + + + Artboard + Created with Sketch. + + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-share.svg b/frontend-beheer/src/assets/images/icons/icon-share.svg new file mode 100644 index 00000000..c9cb5f66 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-share.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-tel.svg b/frontend-beheer/src/assets/images/icons/icon-tel.svg new file mode 100644 index 00000000..7626bacb --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-tel.svg @@ -0,0 +1,7 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/04. System/36. Telefoon + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-thumb-down.svg b/frontend-beheer/src/assets/images/icons/icon-thumb-down.svg new file mode 100644 index 00000000..b254fafc --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-thumb-down.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Ontevreden + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-thumb-up.svg b/frontend-beheer/src/assets/images/icons/icon-thumb-up.svg new file mode 100644 index 00000000..bdc97877 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-thumb-up.svg @@ -0,0 +1,11 @@ + + + + 01. Ontwerpprincipes/03 Icons/24/Tevreden + Created with Sketch. + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-twitter.svg b/frontend-beheer/src/assets/images/icons/icon-twitter.svg new file mode 100644 index 00000000..e240a52c --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-twitter.svg @@ -0,0 +1,7 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/08. Social/05. Twitter + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/icons/icon-upload.svg b/frontend-beheer/src/assets/images/icons/icon-upload.svg new file mode 100644 index 00000000..b83ca63e --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-upload.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-warning.svg b/frontend-beheer/src/assets/images/icons/icon-warning.svg new file mode 100644 index 00000000..422ecd24 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-warning.svg @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/images/icons/icon-whatsapp.svg b/frontend-beheer/src/assets/images/icons/icon-whatsapp.svg new file mode 100644 index 00000000..1317b2b8 --- /dev/null +++ b/frontend-beheer/src/assets/images/icons/icon-whatsapp.svg @@ -0,0 +1,9 @@ + + + 01. Ontwerpprincipes/03. Icons/02. 24px/08. Social/04. Whatsapp + + + + + + \ No newline at end of file diff --git a/frontend-beheer/src/assets/images/logo-ro-zonder-caption-mobile.svg b/frontend-beheer/src/assets/images/logo-ro-zonder-caption-mobile.svg new file mode 100644 index 00000000..c80617dd --- /dev/null +++ b/frontend-beheer/src/assets/images/logo-ro-zonder-caption-mobile.svg @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/frontend-beheer/src/assets/images/logo-ro-zonder-caption.svg b/frontend-beheer/src/assets/images/logo-ro-zonder-caption.svg new file mode 100644 index 00000000..e08787d5 --- /dev/null +++ b/frontend-beheer/src/assets/images/logo-ro-zonder-caption.svg @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/frontend-beheer/src/assets/images/logo.svg b/frontend-beheer/src/assets/images/logo.svg new file mode 100644 index 00000000..5c939bf1 --- /dev/null +++ b/frontend-beheer/src/assets/images/logo.svg @@ -0,0 +1,2 @@ + + diff --git a/frontend-beheer/src/assets/styles/_colors.scss b/frontend-beheer/src/assets/styles/_colors.scss new file mode 100644 index 00000000..0432d597 --- /dev/null +++ b/frontend-beheer/src/assets/styles/_colors.scss @@ -0,0 +1,16 @@ +$primary: #007bc7; +$primary-dark: #27598f; +$primary-darker: #154273; +$secondary: #b2d7ee; +$tertiary: #e5f1f9; +$quaternary: #cae3f0; +$quinary: #d2e5ee; +$accent: #82b1ff; +$error: #ff5252; +$info: #2196f3; +$success: #4caf50; +$warning: #ffc107; +$headerTextColour: #000000; +$headerHoverColour: #fcf29a; +$grey: #f3f3f3; +$link-hover: #6da0d7; diff --git a/frontend-beheer/src/assets/styles/_fonts.scss b/frontend-beheer/src/assets/styles/_fonts.scss new file mode 100644 index 00000000..cdb2168f --- /dev/null +++ b/frontend-beheer/src/assets/styles/_fonts.scss @@ -0,0 +1,18 @@ +@font-face { + font-family: 'Rijksoverheid Sans'; + src: url('@/assets/fonts/ROsanswebtextregular.woff') format('opentype'); + font-style: normal; + font-weight: 400; +} +@font-face { + font-family: 'Rijksoverheid Sans'; + src: url('@/assets/fonts/ROsanswebtextbold.woff') format('opentype'); + font-weight: 700; + font-style: normal; +} +@font-face { + font-family: 'Rijksoverheid Sans'; + src: url('@/assets/fonts/ROsanswebtextitalic.woff') format('opentype'); + font-style: italic; + font-weight: 400; +} diff --git a/frontend-beheer/src/assets/styles/_variables.scss b/frontend-beheer/src/assets/styles/_variables.scss new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/frontend-beheer/src/assets/styles/_variables.scss @@ -0,0 +1 @@ + diff --git a/frontend-beheer/src/assets/styles/main.scss b/frontend-beheer/src/assets/styles/main.scss new file mode 100644 index 00000000..6b3b357f --- /dev/null +++ b/frontend-beheer/src/assets/styles/main.scss @@ -0,0 +1,127 @@ +@import 'colors'; +@import 'variables'; + +body { + color: $primary-dark; + font-size: 127% !important; +} + +.sticky { + height: 100%; + position: sticky !important; + top: 0; +} + +.v-messages__message { + padding-left: 0.5rem !important; + font-size: 1rem; + line-height: 1.2rem !important; +} + +.v-input__details { + padding-inline-start: 0 !important; +} + +.v-label { + font-size: 18px !important; +} + +.logo { + position: relative; +} +.logo > a { + display: inline-block; +} +.logo img { + width: 150px; + max-width: 150px; + margin: 0.5em 0; +} +@media (min-width: 51em) { + .logo img { + width: 180px; + max-width: 180px; + margin: 0; + } +} + +a { + color: $primary; +} + +.no-focus-border { + box-shadow: 0 0 0 0 #000 !important; + outline: 0; +} + +a:focus { + box-shadow: 0 0 0 0 #000 !important; + border: 2px dashed $primary-darker; + outline: 0; +} + +a { + border: 2px solid transparent; +} + +a.focus-border:focus { + border-left: 2px dashed $primary-darker; + border-right: 2px dashed $primary-darker; + border-bottom: 2px dashed $primary-darker; +} + +.row--footer { + background-color: #e5f1f9; + border-top: 0.75em solid #b2d7ee; + padding: 1.5em; + padding-bottom: 1.5em; +} + +.list--linked { + list-style: none; + padding-left: 0; +} +.list--linked li { + background-position: 0 0.5em; + background-repeat: no-repeat; + background-image: url(@/assets/images/icons/icon-dart-right-blue.svg); + background-size: 6px 9px; + padding-left: 1em; + clear: both; +} +.list--linked li a { + background-position: right 50%; +} +.list--linked li a:hover { + text-decoration: underline; +} + +.list { + margin-bottom: 0.5em; +} + +.is-external-link-icon { + text-decoration: underline !important; + padding-right: 1.25em; + margin-right: 0.25em; + background-repeat: no-repeat; + background-position: right 3px; + background-size: 13px 12px; + background-image: url(@/assets/images/icons/icon-link-external.svg); +} + +a { + color: #154273; + text-decoration: underline; + -webkit-transition: color 150ms ease-in-out, outline-offset 150ms ease-in-out; + transition: color 150ms ease-in-out, outline-offset 150ms ease-in-out; + word-break: break-word; +} + +html { + padding-bottom: 0em !important; +} + +.btn-title:first-letter { + text-transform: capitalize; +} \ No newline at end of file diff --git a/frontend-beheer/src/components/DownloadDropdown.vue b/frontend-beheer/src/components/DownloadDropdown.vue new file mode 100644 index 00000000..93bb8a25 --- /dev/null +++ b/frontend-beheer/src/components/DownloadDropdown.vue @@ -0,0 +1,221 @@ + + + + + diff --git a/frontend-beheer/src/components/ExternalLink.vue b/frontend-beheer/src/components/ExternalLink.vue new file mode 100644 index 00000000..6764cfee --- /dev/null +++ b/frontend-beheer/src/components/ExternalLink.vue @@ -0,0 +1,13 @@ + + + diff --git a/frontend-beheer/src/components/FormFieldInput.vue b/frontend-beheer/src/components/FormFieldInput.vue new file mode 100644 index 00000000..86f6de1d --- /dev/null +++ b/frontend-beheer/src/components/FormFieldInput.vue @@ -0,0 +1,139 @@ + + + + + diff --git a/frontend-beheer/src/components/FormFieldWrapper.vue b/frontend-beheer/src/components/FormFieldWrapper.vue new file mode 100644 index 00000000..bd195a24 --- /dev/null +++ b/frontend-beheer/src/components/FormFieldWrapper.vue @@ -0,0 +1,270 @@ + + + + + + + diff --git a/frontend-beheer/src/components/FormSideBlock.vue b/frontend-beheer/src/components/FormSideBlock.vue new file mode 100644 index 00000000..e90ad9d6 --- /dev/null +++ b/frontend-beheer/src/components/FormSideBlock.vue @@ -0,0 +1,286 @@ + + + + + diff --git a/frontend-beheer/src/components/ListWithLinksField.vue b/frontend-beheer/src/components/ListWithLinksField.vue new file mode 100644 index 00000000..2cbf4b9a --- /dev/null +++ b/frontend-beheer/src/components/ListWithLinksField.vue @@ -0,0 +1,137 @@ + + + + + diff --git a/frontend-beheer/src/components/MetadataManual.vue b/frontend-beheer/src/components/MetadataManual.vue new file mode 100644 index 00000000..8eb70db4 --- /dev/null +++ b/frontend-beheer/src/components/MetadataManual.vue @@ -0,0 +1,16 @@ + + + diff --git a/frontend-beheer/src/components/OrganisationDialog.vue b/frontend-beheer/src/components/OrganisationDialog.vue new file mode 100644 index 00000000..a64effb1 --- /dev/null +++ b/frontend-beheer/src/components/OrganisationDialog.vue @@ -0,0 +1,103 @@ + + + + + diff --git a/frontend-beheer/src/components/QualityInspector/ScoreDisplay.vue b/frontend-beheer/src/components/QualityInspector/ScoreDisplay.vue new file mode 100644 index 00000000..e9e22b5d --- /dev/null +++ b/frontend-beheer/src/components/QualityInspector/ScoreDisplay.vue @@ -0,0 +1,21 @@ + + + + + diff --git a/frontend-beheer/src/components/QualityInspector/ScoreSummaryBlock.vue b/frontend-beheer/src/components/QualityInspector/ScoreSummaryBlock.vue new file mode 100644 index 00000000..97db8677 --- /dev/null +++ b/frontend-beheer/src/components/QualityInspector/ScoreSummaryBlock.vue @@ -0,0 +1,43 @@ + + + + + diff --git a/frontend-beheer/src/components/QualityInspector/index.vue b/frontend-beheer/src/components/QualityInspector/index.vue new file mode 100644 index 00000000..b9d8fd15 --- /dev/null +++ b/frontend-beheer/src/components/QualityInspector/index.vue @@ -0,0 +1,28 @@ + + + diff --git a/frontend-beheer/src/components/RuleInterface.vue b/frontend-beheer/src/components/RuleInterface.vue new file mode 100644 index 00000000..1a5720e8 --- /dev/null +++ b/frontend-beheer/src/components/RuleInterface.vue @@ -0,0 +1,189 @@ + + + + + diff --git a/frontend-beheer/src/components/RuleListing.vue b/frontend-beheer/src/components/RuleListing.vue new file mode 100644 index 00000000..dede9d1c --- /dev/null +++ b/frontend-beheer/src/components/RuleListing.vue @@ -0,0 +1,25 @@ + + + diff --git a/frontend-beheer/src/components/TemplatesDialog.vue b/frontend-beheer/src/components/TemplatesDialog.vue new file mode 100644 index 00000000..6e4bc4ed --- /dev/null +++ b/frontend-beheer/src/components/TemplatesDialog.vue @@ -0,0 +1,147 @@ + + + + + diff --git a/frontend-beheer/src/components/UserDetails.vue b/frontend-beheer/src/components/UserDetails.vue new file mode 100644 index 00000000..0f9d05ec --- /dev/null +++ b/frontend-beheer/src/components/UserDetails.vue @@ -0,0 +1,39 @@ + + + + + diff --git a/frontend-beheer/src/components/WarningDialog.vue b/frontend-beheer/src/components/WarningDialog.vue new file mode 100644 index 00000000..73687e74 --- /dev/null +++ b/frontend-beheer/src/components/WarningDialog.vue @@ -0,0 +1,76 @@ + + + + + diff --git a/frontend-beheer/src/components/dashboard/BrokenLinksTable.vue b/frontend-beheer/src/components/dashboard/BrokenLinksTable.vue new file mode 100644 index 00000000..dfad673a --- /dev/null +++ b/frontend-beheer/src/components/dashboard/BrokenLinksTable.vue @@ -0,0 +1,121 @@ + + + + diff --git a/frontend-beheer/src/components/dashboard/CountPerType.vue b/frontend-beheer/src/components/dashboard/CountPerType.vue new file mode 100644 index 00000000..854be520 --- /dev/null +++ b/frontend-beheer/src/components/dashboard/CountPerType.vue @@ -0,0 +1,202 @@ + + + + + diff --git a/frontend-beheer/src/components/dashboard/DataCompleteness.vue b/frontend-beheer/src/components/dashboard/DataCompleteness.vue new file mode 100644 index 00000000..aff7ae3a --- /dev/null +++ b/frontend-beheer/src/components/dashboard/DataCompleteness.vue @@ -0,0 +1,92 @@ + + + + + diff --git a/frontend-beheer/src/components/editor/EditorFeedback.vue b/frontend-beheer/src/components/editor/EditorFeedback.vue new file mode 100644 index 00000000..9b43372f --- /dev/null +++ b/frontend-beheer/src/components/editor/EditorFeedback.vue @@ -0,0 +1,42 @@ + + + + + diff --git a/frontend-beheer/src/components/editor/EditorField.vue b/frontend-beheer/src/components/editor/EditorField.vue new file mode 100644 index 00000000..dbda5c25 --- /dev/null +++ b/frontend-beheer/src/components/editor/EditorField.vue @@ -0,0 +1,152 @@ + + + + + diff --git a/frontend-beheer/src/components/editor/EditorToolbar.vue b/frontend-beheer/src/components/editor/EditorToolbar.vue new file mode 100644 index 00000000..89015d64 --- /dev/null +++ b/frontend-beheer/src/components/editor/EditorToolbar.vue @@ -0,0 +1,17 @@ + + + diff --git a/frontend-beheer/src/components/layout/AppFooter.vue b/frontend-beheer/src/components/layout/AppFooter.vue new file mode 100644 index 00000000..9b4d0acf --- /dev/null +++ b/frontend-beheer/src/components/layout/AppFooter.vue @@ -0,0 +1,35 @@ + + + + + diff --git a/frontend-beheer/src/components/layout/AppHeader.vue b/frontend-beheer/src/components/layout/AppHeader.vue new file mode 100644 index 00000000..1a68aa31 --- /dev/null +++ b/frontend-beheer/src/components/layout/AppHeader.vue @@ -0,0 +1,90 @@ + + + + + diff --git a/frontend-beheer/src/components/layout/Breadcrumb.vue b/frontend-beheer/src/components/layout/Breadcrumb.vue new file mode 100644 index 00000000..cb8c1f98 --- /dev/null +++ b/frontend-beheer/src/components/layout/Breadcrumb.vue @@ -0,0 +1,36 @@ + + + + + diff --git a/frontend-beheer/src/components/layout/NavBar.vue b/frontend-beheer/src/components/layout/NavBar.vue new file mode 100644 index 00000000..c833a7aa --- /dev/null +++ b/frontend-beheer/src/components/layout/NavBar.vue @@ -0,0 +1,98 @@ + + + + + diff --git a/frontend-beheer/src/components/organisatie/OptInButton.vue b/frontend-beheer/src/components/organisatie/OptInButton.vue new file mode 100644 index 00000000..9338c7de --- /dev/null +++ b/frontend-beheer/src/components/organisatie/OptInButton.vue @@ -0,0 +1,65 @@ + + + + diff --git a/frontend-beheer/src/components/organisatie/OrgDetailForm.vue b/frontend-beheer/src/components/organisatie/OrgDetailForm.vue new file mode 100644 index 00000000..06bf70ad --- /dev/null +++ b/frontend-beheer/src/components/organisatie/OrgDetailForm.vue @@ -0,0 +1,166 @@ + + + + + diff --git a/frontend-beheer/src/config/footer.ts b/frontend-beheer/src/config/footer.ts new file mode 100644 index 00000000..5fb8fcef --- /dev/null +++ b/frontend-beheer/src/config/footer.ts @@ -0,0 +1,31 @@ +import type { FooterPage } from '@/types/footer' + +const footer: FooterPage[] = [ + { + key: 'manual', + label: 'Handleiding Publicatiestandaard', + path: 'https://algoritmes.pleio.nl/groups/view/fc9e6489-91e6-4177-b564-2cbea8e56132/kennisbank/files/6254c700-85ae-48dc-8f3b-31bcf6814cfc', + }, + { + key: 'pleio', + label: 'Algoritmes.pleio.nl', + path: 'https://algoritmes.pleio.nl/', + }, + { + key: 'digitaleoverheid_nl', + label: 'Digitale Overheid', + path: 'https://digitaleoverheid.nl/overzicht-van-alle-onderwerpen/algoritmes/', + }, + { + key: 'data_overheid_nl', + label: 'Data.overheid.nl', + path: 'https://data.overheid.nl', + }, + { + key: 'overheid_nl', + label: 'Overheid.nl', + path: 'https://overheid.nl/', + }, +] + +export default footer diff --git a/frontend-beheer/src/config/publication-standard.ts b/frontend-beheer/src/config/publication-standard.ts new file mode 100644 index 00000000..7ed7a0b2 --- /dev/null +++ b/frontend-beheer/src/config/publication-standard.ts @@ -0,0 +1,4 @@ +export default { + preferredVersion: '1.0', + availableVersions: ['1.0'], +} diff --git a/frontend-beheer/src/config/score.ts b/frontend-beheer/src/config/score.ts new file mode 100644 index 00000000..20106fae --- /dev/null +++ b/frontend-beheer/src/config/score.ts @@ -0,0 +1,115 @@ +interface Config { + [key: string]: number +} + +interface ScoreConfig { + '0.1': Config + '0.4': Config + '1.0': Config +} + +const scoreConfig: ScoreConfig = { + '0.1': { + name: 8, + organization: 8, + department: 8, + description_short: 8, + type: 8, + category: 8, + website: 2, + status: 8, + goal: 8, + impact: 8, + proportionality: 8, + decision_making_process: 8, + documentation: 2, + description: 2, + application_url: 2, + publiccode: 2, + mprd: 2, + source_data: 2, + methods_and_models: 2, + monitoring: 2, + human_intervention: 8, + risks: 2, + performance_standard: 2, + competent_authority: 8, + lawful_basis: 8, + iama: 8, + iama_description: 8, + dpia: 2, + dpia_description: 2, + objection_procedure: 8, + standard_version: 0, + uuid: 0, + url: 2, + contact_email: 8, + area: 2, + lang: 2, + revision_date: 2, + }, + '0.4': { + name: 8, + organization: 8, + description_short: 8, + type: 8, + category: 8, + website: 2, + status: 8, + begin_date: 8, + end_date: 0, + goal: 8, + proportionality: 8, + provider: 2, + lawful_basis: 2, + lawful_basis_link: 2, + impacttoetsen: 8, + iama_description: 2, + url: 2, + contact_email: 8, + lang: 2, + standard_version: 0, + uuid: 0, + source_id: 0, + tags: 2, + source_data: 8, + source_data_link: 0, + methods_and_models: 2, + publiccode: 0, + human_intervention: 8, + risks: 8, + }, + '1.0': { + name: 8, + description_short: 8, + organization: 8, + category: 8, + status: 8, + begin_date: 8, + end_date: 0, + contact_email: 8, + website: 2, + publication_category: 8, + url: 2, + goal: 8, + proportionality: 8, + human_intervention: 8, + risks: 8, + lawful_basis: 2, + lawful_basis_grouping: 2, + process_index_url: 2, + impacttoetsen: 8, + impacttoetsen_grouping: 2, + source_data: 8, + source_data_grouping: 2, + methods_and_models: 2, + provider: 8, + publiccode: 0, + lang: 2, + standard_version: 0, + source_id: 0, + tags: 2, + }, +} + +export default scoreConfig diff --git a/frontend-beheer/src/content.json b/frontend-beheer/src/content.json new file mode 100644 index 00000000..254c5ce8 --- /dev/null +++ b/frontend-beheer/src/content.json @@ -0,0 +1,77 @@ +{ + "shared": { + "error": { + "400": "Er is een fout opgetreden bij het verwerken van uw verzoek. Controleer de ingevoerde gegevens en probeer het opnieuw.", + "401": "U moet ingelogd zijn om deze actie uit te voeren. Log in of registreer om toegang te krijgen.", + "403": "U heeft geen toestemming om deze actie uit te voeren of toegang te krijgen tot deze bron.", + "404": "Het algoritme dat u zoekt is niet gevonden. Controleer de zoekopdracht of ga terug naar het overzicht van algoritmes.", + "500": "Er is een interne applicatiefout opgetreden. Neem contact op met de beheerder." + } + }, + "metadataManual": { + "title": "Handleiding metadatastandaard", + "url": "https://algoritmes.pleio.nl/groups/view/fc9e6489-91e6-4177-b564-2cbea8e56132/kennisbank/files/6254c700-85ae-48dc-8f3b-31bcf6814cfc" + }, + "overviewTable": { + "fetchAlgoritms": { + "error": "Er is een fout opgetreden bij het ophalen van de algoritmes." + } + }, + "formGenerator": { + "fetchMetadata": { + "error": "Er is een fout opgetreden bij het ophalen van het aanlevervoorschrift." + } + }, + "formDataStore": { + "fetch": { + "error": "Er is iets fout gegaan bij het opvragen van het algoritme." + }, + "create": { + "success": "Het algoritme is succesvol opgeslagen.", + "error": "Er is iets fout gegaan bij het aanmaken van het algoritme. De volgende velden geven een foutmelding:" + }, + "update": { + "success": "Het algoritme is succesvol opgeslagen.", + "error": "Er is iets fout gegaan bij het opslaan van het algoritme. De volgende velden geven een foutmelding:" + }, + "retract": { + "error": "Er is iets fout gegaan bij het intrekken van het algoritme.", + "success": "Dit algoritme is ingetrokken." + }, + "publish": { + "error": "Er is iets fout gegaan bij het publiceren van het algoritme.", + "success": "Het algoritme is succesvol gepubliceerd." + }, + "release": { + "error": "Er is iets fout gegaan bij het vrijgeven van het algoritme.", + "noReleaseOnPublished": "Dit algoritme kan niet worden vrijgegeven. Deze fout kan voorkomen als een gepubliceerd en ongewijzigd algoritme word vrijgegeven.", + "success": "Het algoritme is succesvol vrijgegeven." + }, + "preview": { + "error": "Er is iets fout gegaan bij het genereren van de voorbeeldpagina." + }, + "remove": { + "error": "Er is iets fout gegaan bij het verwijderen van het algoritme.", + "success": "Het algoritme is succesvol verwijderd." + } + }, + "Misc": { + "noOrgSelected": { + "error": "Er kan geen algoritme worden aangemaakt zonder een organisatie." + } + }, + "warningDialog": { + "publish": { + "text": "Weet u zeker dat u dit algoritme wilt publiceren? Het algoritme wordt dan gepubliceerd naar de conceptwebsite." + }, + "retract": { + "text": "Weet u zeker dat u de vrijgave van dit algoritme wilt intrekken? Het algoritme wordt dan verwijderd van de conceptwebsite." + }, + "release": { + "text": "Weet u zeker dat u dit algoritme wilt vrijgeven? Het algoritme kan dan worden gepubliceerd door BZK." + }, + "remove": { + "text": "Weet u zeker dat u dit algoritme wilt verwijderen? Het algoritme word volledig uit de database gehaald." + } + } +} \ No newline at end of file diff --git a/frontend-beheer/src/editor.d.ts b/frontend-beheer/src/editor.d.ts new file mode 100644 index 00000000..fe85ed95 --- /dev/null +++ b/frontend-beheer/src/editor.d.ts @@ -0,0 +1,13 @@ +declare module 'quill' { + import Quill from 'quill/core' + + export default Quill +} + +declare module 'quill/modules/keyboard' { + import Keyboard from 'quill/modules/keyboard' + export default Keyboard + export const keyBindings: any +} + +declare module '@webspellchecker/wproofreader-sdk-js' diff --git a/frontend-beheer/src/main.ts b/frontend-beheer/src/main.ts new file mode 100644 index 00000000..53475348 --- /dev/null +++ b/frontend-beheer/src/main.ts @@ -0,0 +1,75 @@ +import App from './App.vue' +import { createApp } from 'vue' +import { registerPlugins } from '@/plugins' + +import { useAuthStore } from '@/store/auth' +import Keycloak from 'keycloak-js' +import axios from 'axios' +import Editor from 'primevue/editor' + +// ----------------------------------------------- Setup ----------------------------------------------- +let APIurl = 'http://localhost:8000/aanleverapi' +if (process.env.NODE_ENV === 'production') { + APIurl = `${window.location.origin}/aanleverapi` +} + +let keycloakConfigUrl = 'http://localhost:8000/api/config' +if (process.env.NODE_ENV === 'production') { + keycloakConfigUrl = `${window.location.origin}/api/config` +} + +export function getConfigs(): Promise { + // fetch configurations via backend + return new Promise((resolve) => { + axios + .get(keycloakConfigUrl, { timeout: 2000 }) + .then((response: any) => { + resolve(response.data) + }) + .catch(function (err: any) { + console.log('failed to get config ' + err) + }) + }) +} + +// ----------------------------------------------- Create App ----------------------------------------------- + +getConfigs().then((response: any) => { + const initOptions: any = { + url: `${response.keycloak_uri}`, + realm: `${response.keycloak_realm}`, + clientId: `${response.keycloak_client}`, + onLoad: 'login-required', + } + const keycloak = new Keycloak(initOptions) + + keycloak + .init({ onLoad: initOptions.onLoad }) + .then(() => { + // always add the authentication header to axios requests + axios.interceptors.request.use(function (config: any) { + const token = keycloak.idToken + config.baseURL = APIurl + config.headers!.Authorization = `Bearer ${token}` + return config + }) + + const app = createApp(App) + registerPlugins(app) + // store keycloak object in pinia + const authStore = useAuthStore() + authStore.keycloak = keycloak + authStore.APIurl = APIurl + + app.component('PEditor', Editor) + app.mount('#app') + + //check token every 6 seconds + setInterval(() => { + keycloak.updateToken(70) + }, 6000) + }) + .catch((error) => { + console.log(error) + }) +}) diff --git a/frontend-beheer/src/plugins/index.ts b/frontend-beheer/src/plugins/index.ts new file mode 100644 index 00000000..999fbd5e --- /dev/null +++ b/frontend-beheer/src/plugins/index.ts @@ -0,0 +1,25 @@ +/** + * plugins/index.ts + * + * Automatically included in `./src/main.ts` + */ + +// Plugins +import { loadFonts } from './webfontloader' +import vuetify from './vuetify' +import pinia from '../store' +import router from '../router' + +import PrimeVue from 'primevue/config' + +// Types +import type { App } from 'vue' + +export function registerPlugins (app: App) { + loadFonts() + app + .use(vuetify) + .use(router) + .use(pinia) + .use(PrimeVue) +} diff --git a/frontend-beheer/src/plugins/vuetify.ts b/frontend-beheer/src/plugins/vuetify.ts new file mode 100644 index 00000000..b8969f9e --- /dev/null +++ b/frontend-beheer/src/plugins/vuetify.ts @@ -0,0 +1,37 @@ +/** + * plugins/vuetify.ts + * + * Framework documentation: https://vuetifyjs.com` + */ + +// Styles +import '@mdi/font/css/materialdesignicons.css' +import 'vuetify/styles' +import { VDataTable } from 'vuetify/labs/VDataTable' + +// Composables +import { createVuetify } from 'vuetify' +import { nl } from 'vuetify/locale' + +// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides +export default createVuetify({ + components: { + VDataTable, + }, + theme: { + cspNonce: 'eQw4j9WgXcB', + themes: { + light: { + colors: { + primary: '#1867C0', + secondary: '#5CBBF6', + error: '#E53935', + }, + }, + }, + }, + locale: { + locale: 'nl', + messages: { nl }, + }, +}) diff --git a/frontend-beheer/src/plugins/webfontloader.ts b/frontend-beheer/src/plugins/webfontloader.ts new file mode 100644 index 00000000..0cf56148 --- /dev/null +++ b/frontend-beheer/src/plugins/webfontloader.ts @@ -0,0 +1,15 @@ +/** + * plugins/webfontloader.ts + * + * webfontloader documentation: https://github.com/typekit/webfontloader + */ + + export async function loadFonts () { + const webFontLoader = await import(/* webpackChunkName: "webfontloader" */'webfontloader') + + webFontLoader.load({ + google: { + families: ['Roboto:100,300,400,500,700,900&display=swap'], + }, + }) +} diff --git a/frontend-beheer/src/router/index.ts b/frontend-beheer/src/router/index.ts new file mode 100644 index 00000000..7bebbeb0 --- /dev/null +++ b/frontend-beheer/src/router/index.ts @@ -0,0 +1,38 @@ +// Composables +import { createRouter, createWebHistory } from 'vue-router' + +const routes = [ + { + path: '/', + name: 'algorithm.index', + component: () => import('@/views/Overview.vue'), + }, + { + path: '/algoritme/aanmaken', + name: 'algorithm.create', + component: () => import('@/views/FormGenerator.vue'), + }, + { + path: '/algoritme/:lars/bewerken', + name: 'algorithm.edit', + component: () => import('@/views/FormGenerator.vue'), + props: true, + }, + { + path: '/organisatie', + name: 'organisation.index', + component: () => import('@/views/Organisation.vue'), + }, + { + path: '/dashboard', + name: 'dashboard.index', + component: () => import('@/views/Dashboard.vue'), + }, +] + +const router = createRouter({ + history: createWebHistory(import.meta.env.BASE_URL), + routes, +}) + +export default router diff --git a/frontend-beheer/src/services/algorithms.ts b/frontend-beheer/src/services/algorithms.ts new file mode 100644 index 00000000..2202c77e --- /dev/null +++ b/frontend-beheer/src/services/algorithms.ts @@ -0,0 +1,182 @@ +import { + AlgorithmForm, + AlgorithmResponse, + AlgorithmOwnerResponse, + AlgorithmPreviewResponse, + UpdateAlgorithmResponse, + CreateAlgorithmResponse, + RemoveAlgorithmResponse, + AlgorithmListResponse, + AlgorithmTotalCountResponse, + ColumnResponse, + ColumnCountResponse, +} from '@/types/algorithm' +import { Organisation } from '@/types/organisation' +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' +import publicationStandard from '@/config/publication-standard' + +const MDS_VERSION = + 'v' + publicationStandard.preferredVersion.replace(/\./g, '_') + +export async function getAlgorithmList( + organisation: Organisation +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `${MDS_VERSION}/organizations/${organisation.code}/algorithms`, + } + return backendRequest(request) +} + +export async function getAlgorithm( + organisation: Organisation, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `${MDS_VERSION}/organizations/${organisation.code}/algorithms/${lars}`, + } + return backendRequest(request) +} + +export async function createAlgorithm( + organisation: Organisation, + data: AlgorithmForm +): Promise { + delete data.created_by + delete data.create_dt + delete data.lars + delete data.released + delete data.published + + const request: AxiosRequestConfig = { + method: 'POST', + url: `v${data.standard_version.replace(/\./g, '_')}/organizations/${ + organisation.code + }/algorithms`, + data, + } + return backendRequest(request) +} + +export async function updateAlgorithm( + organisation: Organisation, + lars: string, + data: AlgorithmForm +): Promise { + const sendData: AlgorithmForm = { ...data } + delete sendData.create_dt + delete sendData.lars + delete sendData.released + delete sendData.published + + const request: AxiosRequestConfig = { + method: 'PUT', + url: `v${sendData.standard_version.replace(/\./g, '_')}/organizations/${ + organisation.code + }/algorithms/${lars}`, + data: sendData, + } + return backendRequest(request) +} + +export async function publishAlgorithm( + organisation: Organisation, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `${MDS_VERSION}/organizations/${organisation.code}/algorithms/${lars}/publish`, + } + return backendRequest(request) +} + +export async function releaseAlgorithm( + organisation: Organisation, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `${MDS_VERSION}/organizations/${organisation.code}/algorithms/${lars}/release`, + } + return backendRequest(request) +} + +export async function retractAlgorithm( + organisation: Organisation, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'DELETE', + url: `${MDS_VERSION}/organizations/${organisation.code}/published-algorithms/${lars}/retract`, + } + return backendRequest(request) +} + +export async function generatePreview( + organisation: Organisation, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `${MDS_VERSION}/organizations/${organisation.code}/algorithms/${lars}/preview`, + } + return backendRequest(request) +} + +export async function removeAlgorithm( + organisation: Organisation, + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'DELETE', + url: `${MDS_VERSION}/organizations/${organisation.code}/algorithms/${lars}/remove`, + } + return backendRequest(request) +} + +export async function getAlgorithmOwner( + lars: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `/algoritme/find/${lars}`, + } + return backendRequest(request) +} + +export async function getTotalCount(): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: '/algoritme/total-count', + } + return backendRequest(request) +} + +export async function getColumns(): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: '/columns/', + } + return backendRequest(request) +} + +export async function getCount(column: string): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `/db-count/${column}`, + } + return backendRequest(request) +} + +export async function getCountWithFilledColumns( + columns: string[] | string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: '/completeness/', + params: { columns }, + } + return backendRequest(request) +} diff --git a/frontend-beheer/src/services/brokenlinks.ts b/frontend-beheer/src/services/brokenlinks.ts new file mode 100644 index 00000000..3e2f0d58 --- /dev/null +++ b/frontend-beheer/src/services/brokenlinks.ts @@ -0,0 +1,11 @@ +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' +import { BrokenLinkResponse } from '@/types/brokenlink' + +export async function getBrokenLinks(): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: '/broken-links/NLD', + } + return backendRequest(request) +} \ No newline at end of file diff --git a/frontend-beheer/src/services/c3po.ts b/frontend-beheer/src/services/c3po.ts new file mode 100644 index 00000000..fbd9f0f8 --- /dev/null +++ b/frontend-beheer/src/services/c3po.ts @@ -0,0 +1,12 @@ +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' +import { C3poResponse } from '@/types/c3po' + +export async function postC3poRequest(text: string): Promise { + const request: AxiosRequestConfig = { + method: 'POST', + url: '/c3po/processing-request', + data: { text }, + } + return backendRequest(request) as unknown as Promise +} diff --git a/frontend-beheer/src/services/downloads.ts b/frontend-beheer/src/services/downloads.ts new file mode 100644 index 00000000..9f90be5d --- /dev/null +++ b/frontend-beheer/src/services/downloads.ts @@ -0,0 +1,30 @@ +import { Organisation } from '@/types/organisation' +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' + +export async function getFileOne( + organisation: Organisation, + lars: string, + filetype: 'pdf' | 'word' | 'excel' +) { + const request: AxiosRequestConfig = { + method: 'GET', + responseType: 'blob', + url: `downloads/organizations/${organisation.code}/algorithms/${lars}`, + params: { filetype: filetype }, + } + return backendRequest(request) +} + +export async function getFileMany( + organisation: Organisation, + filetype: 'pdf' | 'word' | 'excel' +) { + const request: AxiosRequestConfig = { + method: 'GET', + responseType: 'blob', + url: `downloads/organizations/${organisation.code}`, + params: { filetype: filetype }, + } + return backendRequest(request) +} diff --git a/frontend-beheer/src/services/index.ts b/frontend-beheer/src/services/index.ts new file mode 100644 index 00000000..2ae12ce8 --- /dev/null +++ b/frontend-beheer/src/services/index.ts @@ -0,0 +1,29 @@ +import axios, { AxiosRequestConfig, AxiosResponse } from 'axios' +import { MetaDataResponse } from '@/types/openapi' + +export function backendRequest( + config: AxiosRequestConfig +): Promise> { + return new Promise((resolve, reject) => { + axios(config) + .then((response) => { + resolve(response) + }) + .catch((error) => { + reject({ + status: error.response?.status ?? 500, + data: error.response?.data.detail ?? 'Er is iets misgegaan.', + }) + }) + }) +} + +export async function getMetaDataStandard( + version: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `v${version.replace(/\./g, '_')}/openapi.json`, + } + return backendRequest(request) +} diff --git a/frontend-beheer/src/services/organisation.ts b/frontend-beheer/src/services/organisation.ts new file mode 100644 index 00000000..52749537 --- /dev/null +++ b/frontend-beheer/src/services/organisation.ts @@ -0,0 +1,51 @@ +import { + Organisation, + OrganisationListResponse, + CreateOrganisationResponse, + UpdateOrganisationResponse, + UpdateOptInResponse, +} from '@/types/organisation' +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' + +export async function getOrganisationList(): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: '/organisation', + } + return backendRequest(request) +} + +export async function createOrganisation( + organisation: Organisation +): Promise { + const request: AxiosRequestConfig = { + method: 'POST', + url: '/organisation', + data: organisation, + } + return backendRequest(request) +} + +export async function updateOrganisation( + org_code: string, + organisation: Organisation +): Promise { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `/organisation/${org_code}`, + data: organisation, + } + return backendRequest(request) +} + +export async function updateOrganisationOptIn( + org_code: string, + change_to: boolean +): Promise { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `/organisation/${org_code}/show_page/${change_to}`, + } + return backendRequest(request) +} diff --git a/frontend-beheer/src/services/organisationDetails.ts b/frontend-beheer/src/services/organisationDetails.ts new file mode 100644 index 00000000..79757e72 --- /dev/null +++ b/frontend-beheer/src/services/organisationDetails.ts @@ -0,0 +1,29 @@ +import { + OrganisationDetails, + OrganisationDetailsResponse, + UpdateOrganisationDetailsResponse, +} from '@/types/organisationDetails' +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' + +export async function getOrganisationDetails( + org_code: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `/organisation-details/${org_code}`, + } + return backendRequest(request) +} + +export async function updateOrganisationDetails( + org_code: string, + organisationDetails: OrganisationDetails +): Promise { + const request: AxiosRequestConfig = { + method: 'PUT', + url: `/organisation-details/${org_code}`, + data: organisationDetails, + } + return backendRequest(request) +} diff --git a/frontend-beheer/src/services/templates.ts b/frontend-beheer/src/services/templates.ts new file mode 100644 index 00000000..2fdd16dd --- /dev/null +++ b/frontend-beheer/src/services/templates.ts @@ -0,0 +1,24 @@ +import { AxiosRequestConfig } from 'axios' +import { backendRequest } from '.' +import { TemplateListResponse, TemplateResponse } from '@/types/templates' + +export async function getTemplateList( + standardVersion: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `templates/${standardVersion}`, + } + return backendRequest(request) +} + +export async function getTemplate( + standardVersion: string, + id: string +): Promise { + const request: AxiosRequestConfig = { + method: 'GET', + url: `templates/${standardVersion}/${id}`, + } + return backendRequest(request) +} diff --git a/frontend-beheer/src/store/auth.ts b/frontend-beheer/src/store/auth.ts new file mode 100644 index 00000000..e7dd940f --- /dev/null +++ b/frontend-beheer/src/store/auth.ts @@ -0,0 +1,56 @@ +// Utilities +import { defineStore } from 'pinia' +import Keycloak from 'keycloak-js' +import { Organisation } from '@/types/organisation' +import { useLocalStorage } from '@vueuse/core' +import { getOrganisationList } from '@/services/organisation' + +export const useAuthStore = defineStore('auth', { + state: () => ({ + keycloak: {} as Keycloak, + APIurl: 'http://localhost:8000/api', + organisations: [] as Organisation[], + selectedOrg: null as Organisation | null, + loading: false as boolean, + }), + getters: { + roles(): string[] { + return (this.keycloak.tokenParsed?.roles as string[] | undefined) || [] + }, + canPublish(): boolean { + // Temp: Only published role in ICTU_LAST is relevant here. + return this.roles.includes('ictu') + }, + canRemove(): boolean { + return this.roles.includes('admin') + }, + canAccesOrgPage(): boolean { + return this.roles.includes('orgdetail') + }, + canAccesDashboard(): boolean { + return this.roles.includes('ictu') + }, + }, + actions: { + async fetchOrganisations() { + this.loading = true + try { + this.organisations = (await getOrganisationList()).data.organisations + } catch (error) { + console.error('Unable to fetch organisation list', error) + } finally { + this.loading = false + } + }, + selectOrganisation(orgId: string) { + const organisation = this.organisations.find((org) => org.code === orgId) + if (!organisation) { + throw new Error( + 'Selected organisation is not found in organisations array.' + ) + } + useLocalStorage('webform-selected-org', {}).value = organisation + this.selectedOrg = organisation + }, + }, +}) diff --git a/frontend-beheer/src/store/form-data.ts b/frontend-beheer/src/store/form-data.ts new file mode 100644 index 00000000..1cadcc39 --- /dev/null +++ b/frontend-beheer/src/store/form-data.ts @@ -0,0 +1,217 @@ +// Store for managing the algorithms that the user has access to. +import { defineStore } from 'pinia' +import { useAuthStore } from './auth' +import { useSchemaStore } from './schema' +import { + getAlgorithm, + updateAlgorithm, + createAlgorithm, + retractAlgorithm, + publishAlgorithm, + releaseAlgorithm, + generatePreview, + removeAlgorithm, + getAlgorithmOwner, +} from '@/services/algorithms' +import { + AlgorithmForm, + CreateAlgorithmResponse, + RemoveAlgorithmResponse, + UpdateAlgorithmResponse, + NoOrgResponse, +} from '@/types/algorithm' +import content from '@/content.json' +import { Organisation } from '@/types/organisation' +import { noOrgSelectedResponse } from '@/utils' +import router from '@/router' +import { useAlgorithmStore } from './overview' + +const authStore = useAuthStore() + +export const useFormDataStore = defineStore('form-data', { + state: () => ({ + schemaStore: useSchemaStore(), + data: {} as AlgorithmForm, + loaded: true, + feedback: { success: '', error: '', errorList: [] }, + previewLoading: false, + unsavedChanges: false, + }), + getters: { + cleanedData(): AlgorithmForm { + return Object.fromEntries( + Object.entries(this.data).filter(([, v]) => { + if (Array.isArray(v) && v.length == 0) return false + if (v === '') return false + return true + }) + ) + }, + orgFromData(): Organisation | undefined { + return authStore.organisations.find( + (org) => org.name == this.data.organization + ) + }, + }, + actions: { + async fetchData(lars: string): Promise { + // We do not know which organisation the algorithm belongs to. + this.data = {} + this.loaded = false + // Ask backend where to find the algoritmebeschrijving + const algorithmStore = useAlgorithmStore() + try { + const owner = (await getAlgorithmOwner(lars)).data + this.data = (await getAlgorithm(owner, lars)).data + algorithmStore.error = '' + } catch (error) { + console.log(error) + router.push({ name: 'algorithm.index' }) + + // algorithmStore displays its errors on the algorithm.index page + algorithmStore.error = + 'Algoritme niet gevonden. U bent teruggestuurd naar uw homepagina.' + return + } finally { + this.loaded = true + } + // No duplicate loading if the schema in local cache is already good. + if (this.schemaStore.loadedSchema !== this.data.standard_version) { + this.schemaStore.fetchSchema(this.data.standard_version) + } + }, + resetFeedback(): void { + this.feedback = { success: '', error: '', errorList: [] } + }, + async handleUpdate( + lars: string + ): Promise { + if (!this.orgFromData) return noOrgSelectedResponse() + return await updateAlgorithm(this.orgFromData, lars, this.cleanedData) + .then((response) => { + if (response.data?.message != 'NO_CHANGES') { + this.data.state = 'STATE_1' + this.unsavedChanges = false + } + this.feedback.success = content.formDataStore.update.success + return response + }) + .catch((response) => { + if (response.status == 422) { + this.feedback.errorList = response.data.map( + (error: any) => + this.schemaStore.formProperties[error.loc[1]]!.title + ) + } + this.feedback.error = content.formDataStore.update.error + return response + }) + }, + async handleCreate(): Promise { + if (!this.orgFromData) return noOrgSelectedResponse() + return await createAlgorithm(this.orgFromData, this.cleanedData) + .then((response) => { + this.data.lars = response.data.lars_code + this.unsavedChanges = false + // Change organisation based on the saved algorithm. Needed for loading from cookies + authStore.selectOrganisation(this.orgFromData!.code) + this.feedback.success = content.formDataStore.create.success + return response + }) + .catch((response) => { + if (response.status == 422) { + this.feedback.errorList = response.data.map( + (error: any) => + this.schemaStore.formProperties[error.loc[1]]!.title + ) + } + this.feedback.error = content.formDataStore.create.error + return response + }) + }, + async handleRetract(lars: string): Promise { + if (!this.orgFromData) return noOrgSelectedResponse() + await retractAlgorithm(this.orgFromData, lars) + .then(() => { + this.data.state = 'STATE_1' + this.feedback.success = content.formDataStore.retract.success + }) + .catch(() => { + this.feedback.error = content.formDataStore.retract.error + }) + }, + async handlePublish(lars: string): Promise { + if (!this.orgFromData) return noOrgSelectedResponse() + await publishAlgorithm(this.orgFromData, lars) + .then(() => { + this.data.state = 'PUBLISHED' + this.feedback.success = content.formDataStore.publish.success + }) + .catch(() => { + this.feedback.error = content.formDataStore.publish.error + }) + }, + async handleRelease(lars: string): Promise { + if (!this.orgFromData) return noOrgSelectedResponse() + await releaseAlgorithm(this.orgFromData, lars) + .then(() => { + this.data.state = 'STATE_2' + this.feedback.success = content.formDataStore.release.success + }) + .catch((response) => { + if (response.status == 409) { + this.feedback.error = + content.formDataStore.release.noReleaseOnPublished + } else { + this.feedback.error = content.formDataStore.release.error + } + }) + }, + async handleRemove( + lars: string + ): Promise { + if (!this.orgFromData) return noOrgSelectedResponse() + return await removeAlgorithm(this.orgFromData, lars) + .then((response) => { + this.unsavedChanges = false + this.feedback.success = content.formDataStore.remove.success + return response + }) + .catch((response) => { + this.feedback.error = content.formDataStore.remove.error + return response + }) + }, + async handlePreview(lars: string): Promise { + if (!this.orgFromData) return noOrgSelectedResponse() + this.previewLoading = true + generatePreview(this.orgFromData, lars) + .then((response) => { + // open response.url in new tab + window.open(response.data.url, '_blank') + }) + .catch(() => { + this.feedback.error = content.formDataStore.preview.error + }) + .finally(() => { + this.previewLoading = false + }) + }, + pruneData(): void { + // Removes all data keys that do not appear in the current schema + const formProperties = this.schemaStore.formProperties + Object.keys(this.data).forEach((element) => { + if (!(element in formProperties) && element != 'lars') { + delete this.data[element] + } + }) + }, + handleSchemaSwap(oldVersion: string, newVersion: string): void { + // Certain migrations need additional attention to detail + const dataStore = useFormDataStore() + if (oldVersion == '0.4' && newVersion == '1.0') { + dataStore.data.impacttoetsen = null + } + }, + }, +}) diff --git a/frontend-beheer/src/store/index.ts b/frontend-beheer/src/store/index.ts new file mode 100644 index 00000000..15362525 --- /dev/null +++ b/frontend-beheer/src/store/index.ts @@ -0,0 +1,4 @@ +// Utilities +import { createPinia } from 'pinia' + +export default createPinia() diff --git a/frontend-beheer/src/store/overview.ts b/frontend-beheer/src/store/overview.ts new file mode 100644 index 00000000..77e1a9f3 --- /dev/null +++ b/frontend-beheer/src/store/overview.ts @@ -0,0 +1,71 @@ +// Store for managing the algorithms that the user has access to. +import { defineStore } from 'pinia' +import { Algorithm } from '@/types/algorithm' +import { getAlgorithmList } from '@/services/algorithms' +import content from '@/content.json' +import { Organisation } from '@/types/organisation' +import { useAuthStore } from './auth' + +export const useAlgorithmStore = defineStore('algorithm', { + state: () => ({ + algorithms: [] as Algorithm[], + loaded: true as boolean, + error: '', + success: '', + }), + getters: { + algorithmsFormatted(): Algorithm[] { + const algorithmsSorted = this.algorithms.sort( + (a, b) => + new Date(b.last_update_dt).getTime() - + new Date(a.last_update_dt).getTime() + ) + return algorithmsSorted.map((algorithm) => { + const date = new Date(algorithm.last_update_dt) + .toLocaleDateString() + .replaceAll('/', '-') + const time = new Date(algorithm.last_update_dt).toLocaleTimeString() + algorithm.last_update_dt = `${date} ${time}` + return algorithm + }) + }, + }, + actions: { + async fetchAlgorithms(organisation: Organisation): Promise { + this.algorithms = [] + + const authStore = useAuthStore() + // User has no organisations, exit + if (authStore.organisations.length == 0) { + return + } + + this.loaded = false + try { + this.algorithms = (await getAlgorithmList(organisation)).data + } catch (error: any) { + console.error(error.data) + this.error = content.overviewTable.fetchAlgoritms.error + this.loaded = true + return + } + + this.algorithms = this.algorithms.map((a) => { + let overviewStatus + if (a.current_version_published) { + overviewStatus = 'Gepubliceerd' + } else if (a.current_version_released && !a.published) { + overviewStatus = 'Vrijgegeven' + } else if (a.published && a.current_version_released) { + overviewStatus = 'Gepubliceerd, nieuwe versie vrijgegeven' + } else if (a.published) { + overviewStatus = 'Gepubliceerd, nieuwe versie wordt nog bewerkt' + } else { + overviewStatus = 'Wordt nog bewerkt' + } + return { ...a, overviewStatus: overviewStatus } + }) + this.loaded = true + }, + }, +}) diff --git a/frontend-beheer/src/store/schema.ts b/frontend-beheer/src/store/schema.ts new file mode 100644 index 00000000..48cb65fc --- /dev/null +++ b/frontend-beheer/src/store/schema.ts @@ -0,0 +1,138 @@ +// Store for managing the algorithms that the user has access to. +import { getMetaDataStandard } from '@/services' +import type { + OpenApiSchema, + EnumSchema, + ArraySchema, + ArrayOptionalSchema, + AlgorithmInSchema, + ObjectSchema, +} from '@/types/openapi' +import { FormFieldProperties, FormProperties } from '@/types/form' +import { defineStore } from 'pinia' +import content from '@/content.json' +import { buildRulesFromProperties } from '@/utils/form' +import { useAuthStore } from './auth' +import { useFormDataStore } from './form-data' + +const authStore = useAuthStore() + +export const useSchemaStore = defineStore('schema', { + state: () => ({ + rawSchemas: {} as { [key: string]: OpenApiSchema }, + loadedSchema: '' as string, + loaded: true as boolean, + feedback: { success: '', error: '' }, + }), + getters: { + formProperties(self): FormProperties { + if (!self.rawSchemas.AlgorithmIn) return {} + if (authStore.organisations.length == 0) return {} + const dataStore = useFormDataStore() + + const mainSchema = self.rawSchemas.AlgorithmIn as AlgorithmInSchema + const formProperties = Object.fromEntries( + Object.entries(mainSchema.properties).map(([key, v]) => { + // Build properties per field based on values in AlgorithmIn schema. + const required = mainSchema.required.includes(key) + const formFieldProperties: FormFieldProperties = { + ...v, + required, + } + + let allowedItems + if (v.type == 'enum') { + // EnumReferenceSchema, single select enumeration + const schema = v.allOf[0]!.$ref.split('/').slice(-1)[0]! + allowedItems = (self.rawSchemas[schema] as EnumSchema).enum + formFieldProperties['type'] = 'select' + } else if (v.type == 'string') { + // StringSchema + formFieldProperties['maxLength'] = v.max_length_without_html + if (v.allowed_html_tags) { + formFieldProperties['allowedHtmlTags'] = v.allowed_html_tags + formFieldProperties['type'] = 'rich-textarea' + } else { + formFieldProperties['type'] = 'textarea' + } + } else if (v.type == 'array' && '$ref' in v.items) { + // ArraySchema or ObjectSchema + const schema = v.items.$ref.split('/').slice(-1)[0]! + if (v.items.$ref.includes('Enum', 27)) { + // ArraySchema, multi-select enumeration + allowedItems = (self.rawSchemas[schema] as EnumSchema).enum + formFieldProperties['type'] = 'multi-select' + formFieldProperties['maxItems'] = (v as ArraySchema).maxItems + } else if (v.items.$ref.includes('Object', 27)) { + // ObjectSchema. Only works for 1.0 + const schemaData = self.rawSchemas[schema] as ObjectSchema + const titleProperty = schemaData.properties?.title + const recommendedItems = + titleProperty && 'recommended_items' in titleProperty + ? titleProperty.recommended_items + : undefined + formFieldProperties['recommendedItems'] = recommendedItems + formFieldProperties['type'] = 'list-with-links' + } + } else if (v.type == 'array' && 'type' in v.items) { + // ArrayOptionalSchema, multi-select with recommended items + const recommendedItems = (v as ArrayOptionalSchema) + .recommended_items + formFieldProperties['recommendedItems'] = recommendedItems + formFieldProperties['type'] = 'optional-select' + } + if (key == 'lars') { + formFieldProperties['type'] = 'fixed' + } + if (key == 'organization') { + const organisations = authStore.organisations + // Matching the organisation with selectedOrg fixes the value. + if (dataStore.data.organization === authStore.selectedOrg?.name) { + formFieldProperties['fixedValue'] = dataStore.data.organization + formFieldProperties['type'] = 'fixed' + } else { + allowedItems = organisations.map((org) => org.name) + formFieldProperties['type'] = 'select' + } + } else if (key == 'name') { + formFieldProperties['type'] = 'name-textarea' + } + + if (allowedItems) { + if (allowedItems.length == 1) { + formFieldProperties['type'] = 'fixed' + formFieldProperties['fixedValue'] = allowedItems[0] + delete formFieldProperties.allowedItems + dataStore.data[key] = formFieldProperties['fixedValue'] + } else { + formFieldProperties['allowedItems'] = allowedItems + } + } + + formFieldProperties['rules'] = + buildRulesFromProperties(formFieldProperties) + + return [key, formFieldProperties] + }) + ) + return formProperties + }, + }, + actions: { + async fetchSchema(version: string): Promise { + this.loaded = false + this.rawSchemas = {} + this.loadedSchema = '' + try { + const data = (await getMetaDataStandard(version)).data + this.rawSchemas = data.components.schemas + this.loadedSchema = version + } catch (error) { + console.error(error) + this.feedback.error = content.formGenerator.fetchMetadata.error + } finally { + this.loaded = true + } + }, + }, +}) diff --git a/frontend-beheer/src/store/score.ts b/frontend-beheer/src/store/score.ts new file mode 100644 index 00000000..2d06b2ba --- /dev/null +++ b/frontend-beheer/src/store/score.ts @@ -0,0 +1,41 @@ +// Store for managing the algorithms that the user has access to. +import { defineStore } from 'pinia' +import { useFormDataStore } from './form-data' +import scoreConfig from '@/config/score' + +const formDataStore = useFormDataStore() + +export const useScoreStore = defineStore('score', { + getters: { + progress(): number { + const data = formDataStore.data + if (!(data.standard_version in scoreConfig)) { + console.error( + 'Cannot find standard_version score configuration specified in data' + ) + return 0 + } + + const config = + scoreConfig[data.standard_version as keyof typeof scoreConfig] + let score: number = 0 + let maxScore: number = 0 + Object.entries(config).forEach(([key, value]) => { + maxScore += value + if (data[key] === null) return + if (data[key] === '') return + if (data[key] === undefined) return + if (data[key].length === 0) return + score += value + }) + // Return score between 0 and 100 for linear progress bar. + const normalizedScore: number = Math.ceil((score / maxScore) * 100) + return normalizedScore + }, + summaryVariant(): 'orange' | 'yellow' | 'green' { + if (this.progress < 60) return 'orange' + if (this.progress < 85) return 'yellow' + else return 'green' + }, + }, +}) diff --git a/frontend-beheer/src/types/algorithm.ts b/frontend-beheer/src/types/algorithm.ts new file mode 100644 index 00000000..b9f5a5cf --- /dev/null +++ b/frontend-beheer/src/types/algorithm.ts @@ -0,0 +1,83 @@ +import { FastApiResponse } from '.' +import { Organisation } from './organisation' + +export interface Algorithm { + name?: string + schema_version?: string + last_update_dt: string + lars: string + source_id?: number + published: boolean + current_version_released: boolean + current_version_published: boolean + last_update_by: string + overviewStatus?: string +} + +export interface AlgorithmForm { + name?: string + organization?: string + published?: boolean + standard_version?: any + state?: string + + [key: string]: any +} + +export interface AlgorithmListResponse extends FastApiResponse { + data: Algorithm[] +} + +export interface AlgorithmResponse extends FastApiResponse { + data: AlgorithmForm +} + +export interface CreateAlgorithmResponse extends FastApiResponse { + data: { + lars_code: string + } +} + +export interface UpdateAlgorithmResponse extends FastApiResponse { + data: null | { message: string } +} + +export interface RemoveAlgorithmResponse extends FastApiResponse { + data: null +} + +export interface AlgorithmPreviewResponse extends FastApiResponse { + data: { + url: string + } +} + +export interface NoOrgResponse extends FastApiResponse { + data: null +} + +export interface AlgorithmOwnerResponse extends FastApiResponse { + data: Organisation +} + +export interface AlgorithmTotalCountResponse extends FastApiResponse { + data: number +} + +export interface ColumnResponse extends FastApiResponse { + data: { + column_name: string + is_nullable: string + }[] +} + +export interface ColumnCountResponse extends FastApiResponse { + data: { + count: number + descriptor: string + }[] +} + +export interface CompletenessResponse extends FastApiResponse { + data: string +} diff --git a/frontend-beheer/src/types/brokenlink.ts b/frontend-beheer/src/types/brokenlink.ts new file mode 100644 index 00000000..5afacf91 --- /dev/null +++ b/frontend-beheer/src/types/brokenlink.ts @@ -0,0 +1,17 @@ +import { FastApiResponse } from '.' +import { Language } from './misc' + +export interface BrokenLink { + id: number + name: string + lars: string + broken_links: [string, number][] + language: Language + create_dt: Date + organisation: string + batch: number +} + +export interface BrokenLinkResponse extends FastApiResponse { + data: BrokenLink[] +} \ No newline at end of file diff --git a/frontend-beheer/src/types/c3po.ts b/frontend-beheer/src/types/c3po.ts new file mode 100644 index 00000000..7dda87ec --- /dev/null +++ b/frontend-beheer/src/types/c3po.ts @@ -0,0 +1,22 @@ +import { FastApiResponse } from '@/types/index' + +export interface LanguageRule { + rule_code: string + title: string + description: string + feedback_message: string + passed: boolean | null + result: Result | null + severity_level: string +} + +export interface C3poResponse extends FastApiResponse { + rules: { + data: LanguageRule[] + } +} + +interface Result { + label: string, + suggestion: string | null, +} diff --git a/frontend-beheer/src/types/footer.ts b/frontend-beheer/src/types/footer.ts new file mode 100644 index 00000000..4712890e --- /dev/null +++ b/frontend-beheer/src/types/footer.ts @@ -0,0 +1,5 @@ +export type FooterPage = { + path: string + key: string + label?: string +} diff --git a/frontend-beheer/src/types/form.ts b/frontend-beheer/src/types/form.ts new file mode 100644 index 00000000..ffce4840 --- /dev/null +++ b/frontend-beheer/src/types/form.ts @@ -0,0 +1,26 @@ +export interface FormFieldProperties { + title: string + maxLength?: number + maxItems?: number + type: string + example?: string | string[] + show_always: boolean + help_text: string + instructions: string + rules?: ((v: any) => boolean | string)[] + required: boolean + allowedItems?: string[] + recommendedItems?: string[] + fixedValue?: string + placeholder?: string + allowedHtmlTags?: string[] +} + +export interface FormProperties { + [key: string]: FormFieldProperties +} + +export interface ListWithLinks { + title: string | null + link: string | null +} diff --git a/frontend-beheer/src/types/index.ts b/frontend-beheer/src/types/index.ts new file mode 100644 index 00000000..3853eab1 --- /dev/null +++ b/frontend-beheer/src/types/index.ts @@ -0,0 +1,11 @@ +export interface FastApiResponse { + status: number | null + data: any + + [key: string]: any +} + +export interface Breadcrumb { + title: string + to: string +} diff --git a/frontend-beheer/src/types/misc.ts b/frontend-beheer/src/types/misc.ts new file mode 100644 index 00000000..e4765546 --- /dev/null +++ b/frontend-beheer/src/types/misc.ts @@ -0,0 +1,5 @@ +export enum Language { + NLD = 'NLD', + ENG = 'ENG', + FRY = 'FRY' +} diff --git a/frontend-beheer/src/types/openapi.ts b/frontend-beheer/src/types/openapi.ts new file mode 100644 index 00000000..2c1dc69d --- /dev/null +++ b/frontend-beheer/src/types/openapi.ts @@ -0,0 +1,93 @@ +import { FastApiResponse } from '@/types/index' + +export type OpenApiSchema = + | ObjectSchema + | StringSchema + | EnumReferenceSchema + | ArraySchema + | ArrayOptionalSchema + | BooleanSchema + | EnumSchema + +export interface AlgorithmInSchema { + title: string + required: string[] + type: 'object' + properties: { + [key: string]: + | ObjectSchema + | StringSchema + | EnumReferenceSchema + | ArraySchema + | ArrayOptionalSchema + } +} + +export interface BaseOpenApiSchema { + title: string + example: string | string[] + show_always: boolean + help_text: string + instructions: string +} + +export interface ObjectSchema extends BaseOpenApiSchema { + type: 'object' + required?: string[] + properties: { + [key: string]: OpenApiSchema + } +} + +export interface StringSchema extends BaseOpenApiSchema { + type: 'string' + max_length_without_html: number + allowed_html_tags?: string[] +} + +export interface ArraySchema extends BaseOpenApiSchema { + type: 'array' + maxItems?: number + items: { + $ref: string + } +} + +export interface ArrayOptionalSchema extends BaseOpenApiSchema { + type: 'array' + items: { + type: string + } + recommended_items: string[] +} + +export interface EnumReferenceSchema extends BaseOpenApiSchema { + type: 'enum' + allOf: { + $ref: string + }[] +} + +export interface BooleanSchema { + type: 'boolean' + title: string +} + +export interface EnumSchema { + type: 'string' + title: string + enum: string[] + description: string +} + +export interface MetaDataResponse extends FastApiResponse { + data: { + [key: string]: any + components: { + [key: string]: any + schemas: { + [key: string]: OpenApiSchema + } + } + } +} diff --git a/frontend-beheer/src/types/organisation.ts b/frontend-beheer/src/types/organisation.ts new file mode 100644 index 00000000..5192a97f --- /dev/null +++ b/frontend-beheer/src/types/organisation.ts @@ -0,0 +1,53 @@ +import { FastApiResponse } from '.' + +export enum OrgType { + adviescollege = 'adviescollege', + agentschap = 'agentschap', + brandweer = 'brandweer', + caribisch_openbaar_lichaam = 'caribisch_openbaar_lichaam', + gemeente = 'gemeente', + grensoverschrijdend_regionaal_samenwerkingsorgaan = 'grensoverschrijdend_regionaal_samenwerkingsorgaan', + hoog_college_van_staat = 'hoog_college_van_staat', + interdepartementale_commissie = 'interdepartementale_commissie', + kabinet_van_de_koning = 'kabinet_van_de_koning', + koepelorganisatie = 'koepelorganisatie', + ministerie = 'ministerie', + openbaar_lichaam_voor_beroep_en_bedrijf = 'openbaar_lichaam_voor_beroep_en_bedrijf', + organisatie_met_overheidsbemoeienis = 'organisatie_met_overheidsbemoeienis', + organisatieonderdeel = 'organisatieonderdeel', + politie = 'politie', + provincie = 'provincie', + rechtspraak = 'rechtspraak', + regionaal_samenwerkingsorgaan = 'regionaal_samenwerkingsorgaan', + waterschap = 'waterschap', + zelfstandig_bestuursorgaan = 'zelfstandig_bestuursorgaan', + overig = 'overig', +} + +export interface Organisation { + id: number + name: string + code: string + type: OrgType + show_page: boolean + flow: string +} + +export interface OrganisationListResponse extends FastApiResponse { + data: { + organisations: Organisation[] + count: number + } +} + +export interface CreateOrganisationResponse extends FastApiResponse { + data: Organisation +} + +export interface UpdateOrganisationResponse extends FastApiResponse { + data: Organisation +} + +export interface UpdateOptInResponse extends FastApiResponse { + data: Organisation +} diff --git a/frontend-beheer/src/types/organisationDetails.ts b/frontend-beheer/src/types/organisationDetails.ts new file mode 100644 index 00000000..47e23a06 --- /dev/null +++ b/frontend-beheer/src/types/organisationDetails.ts @@ -0,0 +1,19 @@ +import { FastApiResponse } from '.' +import { Language } from './misc' + +export interface OrganisationDetails { + about: string + contact_info: string + organisation_id: number + id: number + create_dt: string + language: Language +} + +export interface OrganisationDetailsResponse extends FastApiResponse { + data: OrganisationDetails +} + +export interface UpdateOrganisationDetailsResponse extends FastApiResponse { + data: OrganisationDetails +} diff --git a/frontend-beheer/src/types/templates.ts b/frontend-beheer/src/types/templates.ts new file mode 100644 index 00000000..6fad0473 --- /dev/null +++ b/frontend-beheer/src/types/templates.ts @@ -0,0 +1,19 @@ +import { FastApiResponse } from '.' + +export interface AlgorithmDescription { + name: string + id: string +} + +export interface Supplier { + name: string + algorithm_descriptions: AlgorithmDescription[] +} + +export interface TemplateListResponse extends FastApiResponse { + data: Supplier[] +} + +export interface TemplateResponse extends FastApiResponse { + data: Algorithm +} diff --git a/frontend-beheer/src/utils/datetime.ts b/frontend-beheer/src/utils/datetime.ts new file mode 100644 index 00000000..ef4085c4 --- /dev/null +++ b/frontend-beheer/src/utils/datetime.ts @@ -0,0 +1,8 @@ +export const formatDate = (datetime: Date | string): string => { + // Date formatted as 'dd-MM-yyyy hh:mm' in 24-hour format + const date = new Date(datetime) + const day = date.getDate() + const month = date.getMonth() + 1 + const year = date.getFullYear() + return `${day}-${month}-${year}` +} diff --git a/frontend-beheer/src/utils/editor.ts b/frontend-beheer/src/utils/editor.ts new file mode 100644 index 00000000..9414b935 --- /dev/null +++ b/frontend-beheer/src/utils/editor.ts @@ -0,0 +1,69 @@ +import WProofreaderSDK from '@webspellchecker/wproofreader-sdk-js' + +export const countWithoutHTMLTags = (fieldValue: string | null) => { + if (!fieldValue) { + return 0 + } + const doc = new DOMParser().parseFromString(fieldValue, 'text/html') + const text = doc.documentElement.textContent || '' + return text.trim().length +} + +export function toRichTextFormat(htmlTags: string[]) { + const allowedFormatsSet = new Set() + htmlTags.forEach((tag: string) => { + if (tag in htmlTagFormatMap) { + const format = htmlTagFormatMap[tag] + allowedFormatsSet.add(JSON.stringify({ + class: format!.class, + type: format!.type, + })) + } + }) + return Array.from(allowedFormatsSet, text => JSON.parse(text)) +} + +export interface Format { + class: string + type: string +} + +const htmlTagFormatMap: Record = { + em: { class: 'italic', type: '' }, + i: { class: 'italic', type: '' }, + strong: { class: 'bold', type: '' }, + b: { class: 'bold', type: '' }, + ul: { class: 'list', type: 'bullet' }, + ol: { class: 'list', type: 'ordered' }, +} + +export const initSpellchecker = ( + editorElement: HTMLElement, + apiUrl: string, + authToken: string +) => { + const url = new URL(apiUrl) + WProofreaderSDK.init({ + 'container': editorElement, + 'autoDestroy': true, + 'autocorrect': false, + 'autocomplete': true, + 'disableOptionsStorage': [ + 'autocorrect', + ], + 'enforceAI': false, + 'serviceId': authToken, + 'serviceProtocol': url.protocol.replace(':', ''), + 'servicePort': url.port, + 'serviceHost': url.hostname, + 'servicePath': 'spellcheck/', + 'lang': 'nl_NL', + 'theme': 'default', + 'localization': 'nl', + 'enableBadgeButton': true, + 'globalBadge': false, + 'enableLanguagesInBadgeButton': false, + 'actionItems': ['ignoreAll'], + 'settingsSections': [], + }) +} diff --git a/frontend-beheer/src/utils/form.ts b/frontend-beheer/src/utils/form.ts new file mode 100644 index 00000000..5b914f91 --- /dev/null +++ b/frontend-beheer/src/utils/form.ts @@ -0,0 +1,85 @@ +import { FormFieldProperties } from '@/types/form' +import { countWithoutHTMLTags } from '@/utils/editor' + +type Rule = (v: any) => boolean | string + +export function buildRulesFromProperties(field: FormFieldProperties): Rule[] { + const rules: Rule[] = [] + addTextAreaRule(field, rules) + addSingleSelectRule(field, rules) + addOptionalSelectRule(field, rules) + addMultiSelectRule(field, rules) + addRequiredRule(field, rules) + return rules +} + +const addTextAreaRule = (field: FormFieldProperties, rules: Rule[]) => { + if ( + field.type == 'textarea' || + field.type == 'rich-textarea' || + field.type == 'name-textarea' + ) { + if (field.maxLength) { + // Rule: Only maximum amount of characters allowed + rules.push((v: string | null) => { + return ( + countWithoutHTMLTags(v) <= field.maxLength! || + `Maximaal ${field.maxLength} karakters` + ) + }) + } + } +} + +const addSingleSelectRule = (field: FormFieldProperties, rules: Rule[]) => { + if (field.type == 'select') { + // Rule: Only allowed items allowed. + if (field.allowedItems) { + rules.push( + (v: string | null) => + (v ? Object.values(field.allowedItems || []).includes(v) : true) || + 'Selecteer 1 van de toegestane waardes.' + ) + } + } +} + +const addOptionalSelectRule = (field: FormFieldProperties, rules: Rule[]) => { + if (field.type == 'multi-select' || field.type == 'optional-select') { + // Rule: Only max items allowed + rules.push((v: string[] | null) => { + if (!v) return true + if (!field.maxItems) return true + const errorMsg = `Selecteer maximaal ${field.maxItems} waardes.` + return v.length > field.maxItems ? errorMsg : true + }) + } +} + +const addMultiSelectRule = (field: FormFieldProperties, rules: Rule[]) => { + if (field.type == 'multi-select') { + // Rule: only values present in *allowedItems* can be used. + rules.push((v: string[] | string | null) => { + if (!v) return true + if (!field.allowedItems) return true + const errorMsg = 'Selecteer alleen toegestane waardes.' + + if (Array.isArray(v)) { + const firstBadEntry = v.find( + (value) => + // Finds value *outside* of allowedItems. + !Object.values(field.allowedItems!).includes(value) + ) + return !!firstBadEntry ? errorMsg : true + } else { + return Object.values(field.allowedItems!).includes(v) ? true : errorMsg + } + }) + } +} + +const addRequiredRule = (field: FormFieldProperties, rules: Rule[]) => { + if (field.required) { + rules.push((v: string | null) => !!v || 'Dit veld moet ingevuld zijn.') + } +} diff --git a/frontend-beheer/src/utils/index.ts b/frontend-beheer/src/utils/index.ts new file mode 100644 index 00000000..5cbb57de --- /dev/null +++ b/frontend-beheer/src/utils/index.ts @@ -0,0 +1,9 @@ +import { NoOrgResponse } from '@/types/algorithm' +import { useFormDataStore } from '@/store/form-data' +import content from '@/content.json' + +export function noOrgSelectedResponse(): NoOrgResponse { + const dataStore = useFormDataStore() + dataStore.feedback.error = content.Misc.noOrgSelected.error + return { status: 400, data: null } +} diff --git a/frontend-beheer/src/views/Dashboard.vue b/frontend-beheer/src/views/Dashboard.vue new file mode 100644 index 00000000..96362cd6 --- /dev/null +++ b/frontend-beheer/src/views/Dashboard.vue @@ -0,0 +1,62 @@ + + + + + diff --git a/frontend-beheer/src/views/FormGenerator.vue b/frontend-beheer/src/views/FormGenerator.vue new file mode 100644 index 00000000..046b1442 --- /dev/null +++ b/frontend-beheer/src/views/FormGenerator.vue @@ -0,0 +1,152 @@ + + + + + diff --git a/frontend-beheer/src/views/Organisation.vue b/frontend-beheer/src/views/Organisation.vue new file mode 100644 index 00000000..8715ed94 --- /dev/null +++ b/frontend-beheer/src/views/Organisation.vue @@ -0,0 +1,68 @@ + + + + + diff --git a/frontend-beheer/src/views/Overview.vue b/frontend-beheer/src/views/Overview.vue new file mode 100644 index 00000000..29d0f957 --- /dev/null +++ b/frontend-beheer/src/views/Overview.vue @@ -0,0 +1,213 @@ + + + + + diff --git a/frontend-beheer/src/vite-env.d.ts b/frontend-beheer/src/vite-env.d.ts new file mode 100644 index 00000000..323c78a6 --- /dev/null +++ b/frontend-beheer/src/vite-env.d.ts @@ -0,0 +1,7 @@ +/// + +declare module '*.vue' { + import type { DefineComponent } from 'vue' + const component: DefineComponent<{}, {}, any> + export default component +} diff --git a/frontend-beheer/tsconfig.json b/frontend-beheer/tsconfig.json new file mode 100644 index 00000000..a03ee5cd --- /dev/null +++ b/frontend-beheer/tsconfig.json @@ -0,0 +1,28 @@ +{ + "compilerOptions": { + "types": ["vuetify", "node",], + "baseUrl": ".", + "target": "ESNext", + "useDefineForClassFields": true, + "module": "ESNext", + "moduleResolution": "Node", + "strict": true, + "jsx": "preserve", + "resolveJsonModule": true, + "isolatedModules": true, + "esModuleInterop": true, + "lib": ["ESNext", "DOM"], + "skipLibCheck": true, + "noUncheckedIndexedAccess": true, + + "noEmit": true, + "paths": { + "@/*": [ + "src/*" + ] + } + }, + "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"], + "references": [{ "path": "./tsconfig.node.json" }], + "exclude": ["node_modules"] +} diff --git a/frontend-beheer/tsconfig.node.json b/frontend-beheer/tsconfig.node.json new file mode 100644 index 00000000..9d31e2ae --- /dev/null +++ b/frontend-beheer/tsconfig.node.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "composite": true, + "module": "ESNext", + "moduleResolution": "Node", + "allowSyntheticDefaultImports": true + }, + "include": ["vite.config.ts"] +} diff --git a/frontend-beheer/vite.config.ts b/frontend-beheer/vite.config.ts new file mode 100644 index 00000000..e6c148b3 --- /dev/null +++ b/frontend-beheer/vite.config.ts @@ -0,0 +1,53 @@ +// Plugins +import vue from '@vitejs/plugin-vue' +import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify' + +// Utilities +import { defineConfig } from 'vite' +import { fileURLToPath, URL } from 'node:url' + +// https://vitejs.dev/config/ +export default defineConfig({ + base: '/webformulier', + plugins: [ + vue({ + template: { transformAssetUrls }, + }), + // https://github.com/vuetifyjs/vuetify-loader/tree/next/packages/vite-plugin + vuetify({ + autoImport: true, + }), + ], + css: { + preprocessorOptions: { + scss: { + // https://stackoverflow.com/a/71071183 + // https://stackoverflow.com/a/71540999 + additionalData: ` + @import "@/assets/styles/main.scss"; + `, + }, + }, + }, + define: { 'process.env': {} }, + resolve: { + alias: [ + { + find: '@', + replacement: fileURLToPath(new URL('./src', import.meta.url)), + }, + { + find: 'public', + replacement: fileURLToPath(new URL('./public', import.meta.url)), + }, + { + find: 'assets', + replacement: fileURLToPath(new URL('./src/assets', import.meta.url)), + }, + ], + extensions: ['.js', '.json', '.jsx', '.mjs', '.ts', '.tsx', '.vue'], + }, + server: { + port: 8080, + }, +}) diff --git a/frontend/.env.dummy b/frontend/.env.dummy index 7b8853fe..72c127c4 100644 --- a/frontend/.env.dummy +++ b/frontend/.env.dummy @@ -1 +1,2 @@ -NUXT_PUBLIC_API_BASE_URL=http://localhost:8000/api \ No newline at end of file +NUXT_PUBLIC_API_BASE_URL=http://localhost:8001/api +NUXT_AANLEVER_BASE_URL=http://localhost:8000/aanleverapi \ No newline at end of file diff --git a/frontend/.eslintignore b/frontend/.eslintignore index 096cac79..4131c5eb 100644 --- a/frontend/.eslintignore +++ b/frontend/.eslintignore @@ -5,5 +5,7 @@ *.woff *.woff2 Dockerfile -Dockerfile.simple -*.md \ No newline at end of file +*.md +*.jpeg +makefile +/public/google80a218e540d5773c.html diff --git a/frontend/.eslintrc b/frontend/.eslintrc index ac02e0a8..ac8b9bc5 100644 --- a/frontend/.eslintrc +++ b/frontend/.eslintrc @@ -10,6 +10,8 @@ "plugin:prettier/recommended" ], "rules": { - "dot-notation": "off" + "dot-notation": "off", + "vue/no-v-html": "off", + "camelcase": "off" } } diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 2a1fa66c..18a303ea 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,20 +1,13 @@ -FROM harbor.cicd.s15m.nl/ictu-devops-pub/nginxinc/nginx-unprivileged:1.21.6-alpine_rid +FROM <..>./node:21.4.0-alpine3.18 -USER root -RUN apk update -RUN apk upgrade +RUN addgroup -S nonroot && \ + adduser -S nonroot -G nonroot +USER nonroot -RUN apk add --update npm +ENV APP_ROOT /app COPY ./frontend/.output /app - -RUN rm /etc/nginx/conf.d/default.conf - -COPY ./frontend/nginx /etc/nginx - -RUN node /app/server/index.mjs - -CMD nginx -g "daemon off;" +CMD node /app/server/index.mjs # Expose ports -EXPOSE 8080:8080 \ No newline at end of file +EXPOSE 3000:3000 \ No newline at end of file diff --git a/frontend/Dockerfile.simple b/frontend/Dockerfile.simple deleted file mode 100644 index 33fa8635..00000000 --- a/frontend/Dockerfile.simple +++ /dev/null @@ -1,9 +0,0 @@ -FROM harbor.cicd.s15m.nl/ictu-devops-docker-hub/library/node:19-alpine - -ENV APP_ROOT /app - -COPY ./frontend/.output /app -CMD node /app/server/index.mjs - -# Expose ports -EXPOSE 3000:3000 \ No newline at end of file diff --git a/frontend/app.vue b/frontend/app.vue index f8eacfa7..41f1124a 100644 --- a/frontend/app.vue +++ b/frontend/app.vue @@ -1,5 +1,27 @@ - - diff --git a/frontend/components/dashboard/ToolTipMapSvg.vue b/frontend/components/dashboard/ToolTipMapSvg.vue new file mode 100644 index 00000000..3e1a543a --- /dev/null +++ b/frontend/components/dashboard/ToolTipMapSvg.vue @@ -0,0 +1,73 @@ + + + + + diff --git a/frontend/components/faq/FaqAccordionRow.vue b/frontend/components/faq/FaqAccordionRow.vue new file mode 100644 index 00000000..bf5c12e5 --- /dev/null +++ b/frontend/components/faq/FaqAccordionRow.vue @@ -0,0 +1,76 @@ + + + + + diff --git a/frontend/components/faq/FaqAccordionRows.vue b/frontend/components/faq/FaqAccordionRows.vue new file mode 100644 index 00000000..b9f76cea --- /dev/null +++ b/frontend/components/faq/FaqAccordionRows.vue @@ -0,0 +1,15 @@ + + + diff --git a/frontend/components/faq/FaqAccordions.vue b/frontend/components/faq/FaqAccordions.vue new file mode 100644 index 00000000..28446ab3 --- /dev/null +++ b/frontend/components/faq/FaqAccordions.vue @@ -0,0 +1,39 @@ + + + + + diff --git a/frontend/components/filter/FilterBlock.vue b/frontend/components/filter/FilterBlock.vue new file mode 100644 index 00000000..4770725c --- /dev/null +++ b/frontend/components/filter/FilterBlock.vue @@ -0,0 +1,208 @@ + + + + + diff --git a/frontend/components/filter/FilterGroup.vue b/frontend/components/filter/FilterGroup.vue new file mode 100644 index 00000000..30a1fcc1 --- /dev/null +++ b/frontend/components/filter/FilterGroup.vue @@ -0,0 +1,142 @@ + + + + + diff --git a/frontend/components/filter/MobileFilter.vue b/frontend/components/filter/MobileFilter.vue new file mode 100644 index 00000000..d49b2224 --- /dev/null +++ b/frontend/components/filter/MobileFilter.vue @@ -0,0 +1,41 @@ + + + + + diff --git a/frontend/components/filter/MobileSelectedFilters.vue b/frontend/components/filter/MobileSelectedFilters.vue new file mode 100644 index 00000000..fd4dd0cb --- /dev/null +++ b/frontend/components/filter/MobileSelectedFilters.vue @@ -0,0 +1,50 @@ + + + + + diff --git a/frontend/components/filter/OrgTypeButton.vue b/frontend/components/filter/OrgTypeButton.vue new file mode 100644 index 00000000..64bd61da --- /dev/null +++ b/frontend/components/filter/OrgTypeButton.vue @@ -0,0 +1,61 @@ + + + + + diff --git a/frontend/components/filter/OrgTypeSelector.vue b/frontend/components/filter/OrgTypeSelector.vue new file mode 100644 index 00000000..3f02f79f --- /dev/null +++ b/frontend/components/filter/OrgTypeSelector.vue @@ -0,0 +1,48 @@ + + + + + diff --git a/frontend/components/filter/SelectedFilters.vue b/frontend/components/filter/SelectedFilters.vue new file mode 100644 index 00000000..9a8ba5da --- /dev/null +++ b/frontend/components/filter/SelectedFilters.vue @@ -0,0 +1,54 @@ + + + + + diff --git a/frontend/components/filter/SingleSelect.vue b/frontend/components/filter/SingleSelect.vue new file mode 100644 index 00000000..767cb890 --- /dev/null +++ b/frontend/components/filter/SingleSelect.vue @@ -0,0 +1,139 @@ + + + + + diff --git a/frontend/components/form/OverheidButton.vue b/frontend/components/form/OverheidButton.vue index 399cb5a5..70a10d76 100644 --- a/frontend/components/form/OverheidButton.vue +++ b/frontend/components/form/OverheidButton.vue @@ -1,35 +1,103 @@ + + diff --git a/frontend/components/frontpage/HighlightedAlgorithms.vue b/frontend/components/frontpage/HighlightedAlgorithms.vue new file mode 100644 index 00000000..e937a002 --- /dev/null +++ b/frontend/components/frontpage/HighlightedAlgorithms.vue @@ -0,0 +1,71 @@ + + + + + diff --git a/frontend/components/frontpage/InfoBlock.vue b/frontend/components/frontpage/InfoBlock.vue new file mode 100644 index 00000000..abefc933 --- /dev/null +++ b/frontend/components/frontpage/InfoBlock.vue @@ -0,0 +1,29 @@ + + + + + diff --git a/frontend/components/organisation/OrganisationFilters.vue b/frontend/components/organisation/OrganisationFilters.vue new file mode 100644 index 00000000..d2e26996 --- /dev/null +++ b/frontend/components/organisation/OrganisationFilters.vue @@ -0,0 +1,98 @@ + + + + + diff --git a/frontend/components/skeleton/SkeletonAlgoritmes.vue b/frontend/components/skeleton/SkeletonAlgoritmes.vue new file mode 100644 index 00000000..b7d7f9e9 --- /dev/null +++ b/frontend/components/skeleton/SkeletonAlgoritmes.vue @@ -0,0 +1,22 @@ + + + diff --git a/frontend/components/views/AppBreadcrumb.vue b/frontend/components/views/AppBreadcrumb.vue index ca5da515..453c3edd 100644 --- a/frontend/components/views/AppBreadcrumb.vue +++ b/frontend/components/views/AppBreadcrumb.vue @@ -3,81 +3,78 @@
diff --git a/frontend/components/views/AppHeader.vue b/frontend/components/views/AppHeader.vue index 826f1ab6..02918816 100644 --- a/frontend/components/views/AppHeader.vue +++ b/frontend/components/views/AppHeader.vue @@ -7,13 +7,14 @@ class="hidden-desktop button button--icon-hamburger" data-handler="toggle-nav" aria-controls="nav" + tabindex="3" :aria-expanded="menuExpanded ? 'true' : 'false'" @click="menuExpanded = !menuExpanded" > Menu -
- -
@@ -34,53 +32,75 @@ class="header__nav" :class="!menuExpanded && 'header__nav--closed'" > -
+
  • - {{ item.label }} + {{ item.label }}
- +
diff --git a/frontend/i18n.config.ts b/frontend/i18n.config.ts new file mode 100644 index 00000000..341df1ed --- /dev/null +++ b/frontend/i18n.config.ts @@ -0,0 +1,13 @@ +import en from '@/locales/en.json' +import nl from '@/locales/nl.json' +import fy from '@/locales/fy.json' + +export default defineI18nConfig(() => ({ + fallbackLocale: 'nl', + globalInjection: true, + messages: { + nl, + en, + fy, + }, +})) diff --git a/frontend/layout-config/v0_1.json b/frontend/layout-config/v0_1.json new file mode 100644 index 00000000..a4e37564 --- /dev/null +++ b/frontend/layout-config/v0_1.json @@ -0,0 +1,58 @@ +{ + "cardGrouping": { + "mainElement": "description_short", + "subElements": ["type", "status"] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "rows": ["website", "organization"] + }, + { + "key": "inzet", + "rows": [ + "goal", + "impact", + "proportionality", + "decision_making_process", + "documentation" + ] + }, + { + "key": "juridisch", + "rows": [ + "competent_authority", + "lawful_basis", + "iama", + "iama_description", + "dpia", + "dpia_description", + "objection_procedure" + ] + }, + { + "key": "metadata_algorithm", + "rows": ["url", "contact_email", "area", "lang", "revision_date"] + }, + { + "key": "toepassing", + "rows": [ + "description", + "application_url", + "publiccode", + "mprd", + "source_data", + "methods_and_models" + ] + }, + { + "key": "toezicht", + "rows": [ + "monitoring", + "human_intervention", + "risks", + "performance_standard" + ] + } + ] +} diff --git a/frontend/layout-config/v0_4.json b/frontend/layout-config/v0_4.json new file mode 100644 index 00000000..c842184c --- /dev/null +++ b/frontend/layout-config/v0_4.json @@ -0,0 +1,43 @@ +{ + "cardGrouping": { + "mainElement": "description_short", + "subElements": ["type", "status"] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "rows": [ + "organization", + "category", + "begin_date", + "end_date", + "contact_email", + "website", + "url" + ] + }, + { + "key": "verantwoordGebruik", + "rows": [ + "goal", + "proportionality", + "human_intervention", + "risks", + "lawful_basis", + "lawful_basis_link", + "impacttoetsen", + "iama_description" + ] + }, + { + "key": "technischeWerking", + "rows": [ + "source_data", + "source_data_link", + "methods_and_models", + "provider", + "publiccode" + ] + } + ] +} diff --git a/frontend/layout-config/v1_0.json b/frontend/layout-config/v1_0.json new file mode 100644 index 00000000..bac647df --- /dev/null +++ b/frontend/layout-config/v1_0.json @@ -0,0 +1,46 @@ +{ + "cardGrouping": { + "mainElement": "description_short", + "subElements": ["publication_category", "impacttoetsen_grouping", "status"] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "label": "Algemene informatie", + "rows": [ + "category", + "begin_date", + "end_date", + "contact_email", + "website", + "url" + ] + }, + { + "key": "verantwoordGebruik", + "label": "Verantwoord gebruik", + "rows": [ + "goal", + "proportionality", + "human_intervention", + "risks", + "lawful_basis", + "lawful_basis_grouping", + "process_index_url", + "impacttoetsen", + "impacttoetsen_grouping" + ] + }, + { + "key": "werking", + "label": "Werking", + "rows": [ + "source_data", + "source_data_grouping", + "methods_and_models", + "provider", + "publiccode" + ] + } + ] +} diff --git a/frontend/layouts/default.vue b/frontend/layouts/default.vue index fe05c82d..6e77fcb0 100644 --- a/frontend/layouts/default.vue +++ b/frontend/layouts/default.vue @@ -1,30 +1,54 @@ diff --git a/frontend/locales/en.json b/frontend/locales/en.json index 6627308f..12e208b9 100644 --- a/frontend/locales/en.json +++ b/frontend/locales/en.json @@ -1,33 +1,103 @@ { + "algoritmeIndex": { + "pageTitle": "Search for algorithms", + "noResults": { + "p1": "Please try again. You can search in the following categories:", + "l1": "Words contained in the name (title) of the algorithm", + "l2": "Words contained in the description of the algorithm", + "l3": "The name of the responsible organisation of the algorithm." + } + }, + "organisations": "Organisations", + "organisation": "Organisation", + "language-picker": { + "language": "Language" + }, + "filter": { + "choose": "Choose a {what}", + "moreOptions": "Show more", + "lessOptions": "Show less", + "organisation": "organisation", + "impact_assessment": "impact assessment", + "publicationcategory": "publicationcategory", + "organisationtype": "organisation type", + "selectedFilters": "Filters", + "aria/remove": "Remove {what} as filter", + "removeAll": "Remove selection", + "selectedFilter": { + "organisation": "Organisation", + "impact_assessment": "Impact assessment", + "publicationcategory": "Publicationcategory", + "organisationtype": "Organisation type", + "searchtext": "Search term" + }, + "sorting": "Sort {filter} on {what}", + "alfabetical": "alfabetical order", + "numerical": "numerical order" + }, + "searchSuggestion": { + "title": "Go straight to an algorithm description" + }, + "orgSuggestionSearch": { + "title": "Choose out of the following options:", + "OrgSpecificSearch": "Algorithm descriptions of {organisation}", + "OrgGenericSearch": "Algorithm descriptions that contain the term '{searchQuery}'", + "RedirectToOrgPage": "Organisation page of {organisation}" + }, "english?": "true", "home-highlight-algorithm-text": "Or go directly to one of these algorithms", "you-are-here": "You are here", "ontbreekt": "Field not filled in.", - "locale-en": "English", - "locale-nl": "Dutch", - "selectLanguage": "Choose language", - "foundResults": "No results found | 1 result found | {n} results found", + "locales": { + "en": "English", + "nl": "Dutch", + "fy": "Frisian" + }, + "currentLanguage": "English", + "selectLanguage": "This website in other languages", + "foundResults": "No algorithms were found | 1 result found | {n} results found", + "foundResultsOrganisations": "No organisations were found | 1 result found | {n} results found", + "forSearch": " for {searchQuery}", "noResults": "No algorithm was found for this search request.", + "externalLink": "Link to external page", + "mailLink": "Link to mailing address", "footer": { "text": "Note: this website is under development. Information will change often. Do you want to help?", "textAskApply": "Please apply", "paths": { "algoritme": "Overview", - "over": "About this website", "contact": "Contact us", "privacyverklaring": "Privacy", - "kwetsbaarheid": "Report vulnerability", + "kwetsbaarheid-melden": "Report vulnerability", "toegankelijkheid": "Accessibility", + "archief": "Archive", "cookies": "Cookies", "vragen": "FAQ", + "over": "About the Algorithm register", + "meedoen": "Join", + "over_algoritmes": "About algorithms", + "release-notes": "Release notes", "ext_overheid_nl": "Overheid.nl", "ext_rijksoverheid_nl": "Rijksoverheid.nl", "ext_digitaleoverheid_nl": "Digitale Overheid", - "ext_data_overheid_nl": "Data.overheid.nl" + "ext_data_overheid_nl": "Data.overheid.nl", + "ext_pleio": "Algoritmes.pleio.nl", + "zelf-aan-de-slag": "Get started yourself", + "registreer-je-algoritme": "Register your algorithm" } }, "algoritmeRegister": "Algorithm register", "goBack": "Back to all algorithms", + "orgPage": { + "head": "Organisation overview", + "title": "Organisation overview", + "contactInfo": "More information: ", + "noAbout": "This organisation has not yet supplied us with a description", + "aboutHeader": "About this organisation", + "goBackToOrg": "Back to all organisations", + "algorithmDescriptions": "Algorithm descriptions", + "alternativeAlgorithmDescriptions": "This organisation has published the following algorithm descriptions" + }, "short-description": "Short description", "short-description-missing": "A short description is missing", "yes": "Yes", @@ -35,39 +105,56 @@ "hello": "Hello, {name}!", "language": "Language", "homepageTitle": "The Algorithm Register of the Dutch government", - "searchExplanation": "Find algorithms by organisation, title or description", + "searchExplanation": "Find one of the {n} algorithms", + "searchExplanationOrganisations": "Find one of the {n} organisations", + "algorithms": "algorithms", "logoCaption": "The Algorithm Register", "searchHint": "What are you looking for?", "search": "Search", - "selectedAlgorithms": "Selected algorithms", - "switchToLanguage": { - "nl": "Toon in het Nederlands" - }, + "downloadAllAlgorithms": "Download all algorithms", + "downloadThisAlgorithm": "Download this algorithm", + "switchToLanguage": "Switch to {language}", "showFilters": "Show filters", "hideFilters": "Hide filters", - "searchResultCard": { - "readMore": "read more" + "removeSelection": "Remove selection", + "reportVulnerability": "Report vulnerability", + "genericResultCard": { + "readMore": "Read more", + "lastChange": "Last change on", + "publicationStandard": "Publication Standard" }, "navigation": { "home": "Home", "algorithmRegister": "Algorithms", "footer": "Home", - "over": "About this website", + "over": "About the Algorithm register", + "over-algoritmes": "About Algorithms", + "meedoen": "Join", "contact": "Contact", "vragen": "FAQ", "privacyverklaring": "Privacy", "toegankelijkheid": "Accessibility", - "db": "Dashboard" + "archief": "Archive", + "kwetsbaarheid-melden": "Report vulnerability", + "db": "Dashboard", + "release-notes": "Release notes", + "organisatie": "Organisations", + "zelf-aan-de-slag": "Get started yourself", + "dashboard": "Dashboard", + "registreer-je-algoritme": "Register your algorithm" }, "pagination": { - "goTo": "Go to page {n}" + "page": "Page", + "goTo": "Go to page {n}", + "goToNextPage": "Go to next page", + "goToPreviousPage": "Go to previous page" }, "homePageText": { "paragraph1": "On this website governmental organisations publish the algorithms that are in use.", "paragraph2": "Effort is made to publish impactful algorithms. This to ensure the purpose of algorithms and to make sure people involved can examine the algorithms. ", "paragraph3Header": "Progress", - "paragraph3part1": "At this moment you will find ", - "paragraph3part2": " algorithms on this website." + "paragraph3part1": "At this moment there are ", + "paragraph3part2": " algorithms published on this website." }, "dashboard": { "informationType": "Information type", @@ -83,191 +170,58 @@ "partiallyComplete": "Partially filled", "value": "Value", "numberOfMatches": "Matches", - "loadingText": "Loading" - }, - "algorithmProperties": { - "toegevoegd_op": { - "label": "Toegevoegd op" - }, - "slug": { - "label": "" - }, - "algemeneInformatie": { - "label": "General information", - "description": "No description" - }, - "name": { - "label": "Name", - "description": "The name used to refer to the algorithm." - }, - "organization": { - "label": "Organisation", - "description": "The full name of the organisation responsible for the algorithm use." - }, - "department": { - "label": "Department", - "description": "The full name of the sub-organisation or division responsible for the algorithm use." - }, - "description_short": { - "label": "Short description", - "description": "A brief, high-level description of the algorithm (max. 150 characters)." - }, - "type": { - "label": "Algorithm type", - "description": "Is the algorithm rule-based or based on machine learning? Rule-based algorithms are manually constructed by humans, usually based off of laws or regulations. Machine learning algorithms will find their own correlations based on the data given." - }, - "category": { - "label": "Domain", - "description": "Keywords related to the domain in which the algorithm is deployed." - }, - "website": { - "label": "Link to publication website", - "description": "The URL of the publication website of the organisation. On this page, you may find more information regarding the deployment of the algorithm at the organisation." - }, - "status": { - "label": "Status", - "description": "The current implementation state of the algorithm: in development, in use, or out of service." - }, - "inzet": { - "label": "Application", - "description": "No description" - }, - "goal": { - "label": "Purpose", - "description": "The purpose for which the algorithm was developed and/or how the algorithm's deployment directly adds to this purpose." - }, - "impact": { - "label": "Impact", - "description": "The impact of the algorithm on civilians and companies. For example: how does this algorithm work and what are its expected consequences for civilians and companies?" - }, - "proportionality": { - "label": "Proportionality", - "description": "A consideration of pros and cons regarding the deployment of the algorithm and why this is reasonably justified." - }, - "decision_making_process": { - "label": "Decision making process", - "description": "The name of the organisational process(es) within the organisation in which the algorithm is deployed." - }, - "documentation": { - "label": "Link to project website", - "description": "The URL of the project website of the organisation. On this page, you may find more information regarding the project where the algorithm is deployed." - }, - "toepassing": { - "label": "Use-case", - "description": "No description" - }, - "description": { - "label": "Long description", - "description": "An extensive description of the algorithm (500-10000 characters)." - }, - "application_url": { - "label": "Link to developer", - "description": "The URL of the application website of the developer. On this page, you may find more general information regarding the algorithm and its developer." - }, - "publiccode": { - "label": "Link to code base", - "description": "The URL of the code base of the developer. On this page, you may find more specific information regarding the algorithm's code itself." - }, - "mprd": { - "label": "Usage of base registries", - "description": "Does the algorithm directly use any data of the national base registries? More information is available at https://www.nldigitalgovernment.nl/" - }, - "source_data": { - "label": "Data sources", - "description": "An overview of data sources that are currently being used by the algorithm and/or were initially being used to create the algorithm." - }, - "methods_and_models": { - "label": "Methods and models", - "description": "Standard methodology or models that are being used by the algorithm." - }, - "toezicht": { - "label": "Supervision", - "description": "No description" - }, - "monitoring": { - "label": "Monitoring", - "description": "An overview of how the deployment of the algorithm is being monitored." - }, - "human_intervention": { - "label": "Human intervention", - "description": "A description of how the output of the alghorithm is reviewed and may be edited by humans." - }, - "risks": { - "label": "Risks", - "description": "An overview of the expected risks related to the deployment of this algorithm. " - }, - "performance_standard": { - "label": "Evaluation metrics", - "description": "A description of the expected scoring of the algorithm, including its metrics." - }, - "juridisch": { - "label": "Legal", - "description": "No description" - }, - "competent_authority": { - "label": "Authorized body", - "description": "The full name of the authorized body responsible for the deployment of the algorithm." - }, - "lawful_basis": { - "label": "Formal grounds", - "description": "A description of or link to the formal grounds that form the base of the deployment of this algorithm. For example: a law, a regulation or a formal decision." - }, - "iama": { - "label": "Human Rights Impact Assessment (IAMA)", - "description": "Has the algorithm been verified through a human rights impact assessment (IAMA)?" - }, - "iama_description": { - "label": "IAMA Description", - "description": "An executive summary of the IAMA results, if any." - }, - "dpia": { - "label": "Data Protection Impact Assessment (DPIA)", - "description": "Has the algorithm been verified through a data protection impact assessment (DPIA)?" - }, - "dpia_description": { - "label": "DPIA Description", - "description": "An executive summary of the DPIA results, if any." - }, - "objection_procedure": { - "label": "Objection procedure", - "description": "A description of how civilians and companies may object against an outcome of the algorithm." - }, - "metadata_algorithm": { - "label": "Metadata", - "description": "No description" - }, - "schema_metadata": { - "label": "Scheme", - "description": "The registration scheme; in machine readable format." - }, - "schema": { - "label": "Scheme", - "description": "The registration scheme; in machine readable format." - }, - "uuid": { - "label": "UUID", - "description": "The unique user identification (UUID) of this registration." - }, - "url": { - "label": "Link to source registration", - "description": "The URL of the secondary register in which this algorithm was previously documented; in machine readable format" - }, - "contact_email": { - "label": "Contact email", - "description": "The contact email for this registration." - }, - "area": { - "label": "Geographic area", - "description": "The geopgrahical location in which the algorithm is deployed." - }, - "lang": { - "label": "Language", - "description": "The language in which this registration is documented." - }, - "revision_date": { - "label": "Revision date", - "description": "The revision date of this registration." - } + "loadingText": "Loading", + "totalPublishedAlgorithmDescriptions": "Total number of published algorithm descriptions", + "totalJoinedOrganisations": "Total number of affiliated organisations", + "publishedAlgorithmDescriptions": "{n} algorithm descriptions published.", + "singlePublishedAlgorithmDescription": "{n} algorithm description published.", + "joinedOrganisations": "Number of affiliated organisations", + "brokenLinks": "Number of broken links", + "statusErrorCode": "Code", + "publicationCategories": "Publication categories", + "top20Organisations": "Top-20 Organisations", + "moreInfo": "Click on a line for more information.", + "onTheMap": "On the map", + "title": "Dashboard", + "expandOverview": "Expand everything", + "collapseOverview": "Collapse everything", + "municipalities": "Municipalities", + "provinces": "Provinces", + "waterAuthorities": "Water authorities", + "environmentalServices": "Environmental services", + "clickOnMunicipality": "Click on a municipality.", + "clickOnProvince": "Click on a province.", + "clickOnWaterAuthority": "Click on a water authority.", + "clickOnEnvironmentalService": "Click on an environmental service.", + "legendGreen": "Is affiliated and has published on the registry.", + "legendYellow": "Is affiliated but has not published anything yet.", + "legendWhite": "Is not yet affiliated with the registry.", + "municipalityMapDescription": "Here it is shown which municipalities in the Netherlands are affiliated and have published them on the Algorithm Register.", + "provinceMapDescription": "Here it is shown which provinces in the Netherlands are affiliated and have published them on the Algorithm Register.", + "waterAuthoritiesMapDescription": "Here it is shown which water authorities in the Netherlands are affiliated and have published them on the Algorithm Register.", + "environmentalServicesMapDescription": "Here it is shown which environmental services in the Netherlands are affiliated and have published them on the Algorithm Register.", + "publishedAlgorithmDescription": "This shows how many algorithm descriptions have been published in the Algorithm Register in the last 12 months.", + "joinedOrganisationsDescription": "This shows how many organizations are affiliated with Algorithm Register per month.", + "brokenLinksDescription": "Here it is shown per day how many references appear in published algorithm descriptions that no longer work or whose response time is too slow (more than 5 seconds). This check is under development. It is possible that working references be wrongly reported.", + "publicationCategoriesDescription": "This shows how many algorithm descriptions in the publication categories 'High-risk AI system', 'Impactful algorithms' and 'Other algorithms' have been published in the Algorithm Register.", + "top20OrganisationsDescription": "Here are shown the twenty organizations that have published the most algorithm descriptions in the Algorithm Register.", + "algorithm": "Algorithm", + "organisation": "Organisation", + "brokenLink": "Broken link", + "date": "Date", + "month": "Month", + "andFurther": "And further", + "showDatatable": "Show datatable", + "hideDatatable": "Hide datatable", + "showGraph": "Show graph", + "showMap": "Show map", + "brokenLinksTableTitle": "Non-working and slow links", + "name": "Name", + "indication": "Indication", + "seeOrgPage": "View the organizationpage", + "moreInfoOrgPage": "More information", + "algorithmDescriptions": "algorithm descriptions", + "noPublications": "No publications." }, "error": { "pageNotFound": "Page not found", @@ -295,5 +249,437 @@ "10": "October", "11": "November", "12": "December" + }, + "getAlgorithmPropertyExplanation": "Explanation of algorithm property '{field}'", + "algorithmProperties": { + "default": { + "headers": { + "algemeneInformatie": "General information", + "inzet": "Application", + "toepassing": "Use-case", + "toezicht": "Supervision", + "juridisch": "Legal", + "metadata_algorithm": "Metadata" + }, + "name": { + "label": "Name", + "description": "The name used to refer to the algorithm." + }, + "organization": { + "label": "Organisation", + "description": "The full name of the organisation responsible for the algorithm use." + }, + "department": { + "label": "Department", + "description": "The full name of the sub-organisation or division responsible for the algorithm use." + }, + "description_short": { + "label": "Short description", + "description": "A brief, high-level description of the algorithm (max. 150 characters)." + }, + "type": { + "label": "Algorithm type", + "description": "Is the algorithm rule-based or based on machine learning? Rule-based algorithms are manually constructed by humans, usually based off of laws or regulations. Machine learning algorithms will find their own correlations based on the data given." + }, + "category": { + "label": "Domain", + "description": "Keywords related to the domain in which the algorithm is deployed." + }, + "website": { + "label": "Link to publication website", + "description": "The URL of the publication website of the organisation. On this page, you may find more information regarding the deployment of the algorithm at the organisation." + }, + "status": { + "label": "Status", + "description": "The current implementation state of the algorithm: in development, in use, or out of service." + }, + "goal": { + "label": "Purpose", + "description": "The purpose for which the algorithm was developed and/or how the algorithm's deployment directly adds to this purpose." + }, + "impact": { + "label": "Impact", + "description": "The impact of the algorithm on civilians and companies. For example: how does this algorithm work and what are its expected consequences for civilians and companies?" + }, + "proportionality": { + "label": "Proportionality", + "description": "A consideration of pros and cons regarding the deployment of the algorithm and why this is reasonably justified." + }, + "decision_making_process": { + "label": "Decision making process", + "description": "The name of the organisational process(es) within the organisation in which the algorithm is deployed." + }, + "documentation": { + "label": "Link to project website", + "description": "The URL of the project website of the organisation. On this page, you may find more information regarding the project where the algorithm is deployed." + }, + "description": { + "label": "Long description", + "description": "An extensive description of the algorithm (500-10000 characters)." + }, + "application_url": { + "label": "Link to developer", + "description": "The URL of the application website of the developer. On this page, you may find more general information regarding the algorithm and its developer." + }, + "publiccode": { + "label": "Link to code base", + "description": "The URL of the code base of the developer. On this page, you may find more specific information regarding the algorithm's code itself." + }, + "mprd": { + "label": "Usage of base registries", + "description": "Does the algorithm directly use any data of the national base registries? More information is available at https://www.nldigitalgovernment.nl/" + }, + "source_data": { + "label": "Data sources", + "description": "An overview of data sources that are currently being used by the algorithm and/or were initially being used to create the algorithm." + }, + "methods_and_models": { + "label": "Methods and models", + "description": "Standard methodology or models that are being used by the algorithm." + }, + "monitoring": { + "label": "Monitoring", + "description": "An overview of how the deployment of the algorithm is being monitored." + }, + "human_intervention": { + "label": "Human intervention", + "description": "A description of how the output of the alghorithm is reviewed and may be edited by humans." + }, + "risks": { + "label": "Risks", + "description": "An overview of the expected risks related to the deployment of this algorithm. " + }, + "performance_standard": { + "label": "Evaluation metrics", + "description": "A description of the expected scoring of the algorithm, including its metrics." + }, + "competent_authority": { + "label": "Authorized body", + "description": "The full name of the authorized body responsible for the deployment of the algorithm." + }, + "lawful_basis": { + "label": "Formal grounds", + "description": "A description of or link to the formal grounds that form the base of the deployment of this algorithm. For example: a law, a regulation or a formal decision." + }, + "iama": { + "label": "Human Rights Impact Assessment (IAMA)", + "description": "Has the algorithm been verified through a human rights impact assessment (IAMA)?" + }, + "iama_description": { + "label": "IAMA Description", + "description": "An executive summary of the IAMA results, if any." + }, + "dpia": { + "label": "Data Protection Impact Assessment (DPIA)", + "description": "Has the algorithm been verified through a data protection impact assessment (DPIA)?" + }, + "dpia_description": { + "label": "DPIA Description", + "description": "An executive summary of the DPIA results, if any." + }, + "objection_procedure": { + "label": "Objection procedure", + "description": "A description of how civilians and companies may object against an outcome of the algorithm." + }, + "standard_version": { + "label": "Scheme", + "description": "The registration scheme; in machine readable format." + }, + "uuid": { + "label": "UUID", + "description": "The unique user identification (UUID) of this registration." + }, + "url": { + "label": "Link to source registration", + "description": "The URL of the secondary register in which this algorithm was previously documented; in machine readable format" + }, + "contact_email": { + "label": "Contact email", + "description": "The contact email for this registration." + }, + "area": { + "label": "Geographic area", + "description": "The geopgrahical location in which the algorithm is deployed." + }, + "lang": { + "label": "Language", + "description": "The language in which this registration is documented." + }, + "revision_date": { + "label": "Revision date", + "description": "The revision date of this registration." + }, + "source_id": { + "label": "Source-ID", + "description": "The unique code the owner uses for this algorithm." + }, + "provider": { + "label": "External provider", + "description": "If applicable, the external provider of the algorithm." + }, + "process_index_url": { + "label": "Link to Processing Index", + "description": "The link to the GDPR-processing in a public register of the algorithm." + }, + "tags": { + "label": "Tags", + "description": "Keywords describing the algorithm to improve search engine results in this register." + } + }, + "0_4": { + "headers": { + "algemeneInformatie": "General information", + "verantwoordGebruik": "Responsible use", + "technischeWerking": "Technical references" + }, + "name": { + "label": "Name", + "description": "The name used to refer to the algorithm." + }, + "organization": { + "label": "Organisation", + "description": "The full name of the organisation using the algorithm." + }, + "description_short": { + "label": "Short description", + "description": "A brief description of the algorithm" + }, + "type": { + "label": "Self-learning", + "description": "Is it algorithm or self-learning? In a non-self-learning algorithm, the human specifies the rules for the computer to follow. If it's a self-learning algorithm, the machine learns about the patterns in the data." + }, + "category": { + "label": "Theme", + "description": "Keywords related to the domain in which the algorithm is deployed." + }, + "website": { + "label": "Link to publication website", + "description": "The URL of the publication website of the organisation. On this page, you may find more information regarding the deployment of the algorithm at the organisation." + }, + "status": { + "label": "Status", + "description": "The current implementation state of the algorithm: in development, in use, or out of service." + }, + "begin_date": { + "label": "Begin date", + "description": "Month and year in which the algorithm was launched." + }, + "end_date": { + "label": "End date", + "description": "Month in which the algorithm was retired." + }, + "goal": { + "label": "Goal and impact", + "description": "The purpose for which the algorithm was developed and the impact it has on civilians and companies." + }, + "proportionality": { + "label": "Considerations", + "description": "A consideration of pros and cons regarding the deployment of the algorithm and why this is reasonably justified." + }, + "provider": { + "label": "External provider", + "description": "If applicable, the external provider of the algorithm." + }, + "lawful_basis": { + "label": "Legal basis", + "description": "A description of the legal basis for the process in which the algorithm is used." + }, + "lawful_basis_link": { + "label": "Link to legal basis", + "description": "A link to the legal basis for the process in which the algorithm is used." + }, + "impacttoetsen": { + "label": "Impact assessments", + "description": "The impact assessments that were used, such as the Data Protection Impact Assesment (DPIA) or Impact Assessment Mensenrechten en Algoritmes (IAMA)?" + }, + "iama_description": { + "label": "Link to impact assessment", + "description": "Link to the results of a conducted impact assessment such as a DPIA or IAMA." + }, + "url": { + "label": "Link to source registration", + "description": "The URL of the secondary register in which this algorithm was previously documented; in machine readable format" + }, + "contact_email": { + "label": "Contact information", + "description": "Contact information for this registration." + }, + "lang": { + "label": "Language", + "description": "The language in which this registration is documented." + }, + "standard_version": { + "label": "Publication Standard", + "description": "The registration scheme; in machine readable format." + }, + "uuid": { + "label": "National-ID", + "description": "The unique user identification (UUID) of this registration." + }, + "source_id": { + "label": "Source-ID", + "description": "The unique code the owner uses for this algorithm." + }, + "tags": { + "label": "Tags", + "description": "Keywords describing the algorithm to improve search engine results in this register." + }, + "source_data": { + "label": "Data", + "description": "An overview of data that are used by the algorithm and/or were initially being used to create the algorithm." + }, + "source_data_link": { + "label": "Link to data sources", + "description": "Links to additional information about the used data sources." + }, + "methods_and_models": { + "label": "Technical design", + "description": "Explanation of how the algorithm works." + }, + "publiccode": { + "label": "Link to code base", + "description": "The URL of the code base of the developer. On this page, you may find more specific information regarding the algorithm's code itself." + }, + "human_intervention": { + "label": "Human intervention", + "description": "A description of how the output of the algorithm is used by humans and how they can be reviewed and edited." + }, + "risks": { + "label": "Risk management", + "description": "An overview of how risks are dealt with." + } + }, + "1_0": { + "headers": { + "algemeneInformatie": "General information", + "verantwoordGebruik": "Responsible use", + "werking": "Operations", + "metadata": "Metadata" + }, + "name": { + "label": "Name", + "description": "The name used to refer to the algorithm." + }, + "organization": { + "label": "Organisation", + "description": "The full name of the organisation using the algorithm." + }, + "description_short": { + "label": "Short description", + "description": "A brief description of the algorithm" + }, + "type": { + "label": "Self-learning", + "description": "Is it algorithm or self-learning? In a non-self-learning algorithm, the human specifies the rules for the computer to follow. If it's a self-learning algorithm, the machine learns about the patterns in the data." + }, + "category": { + "label": "Theme", + "description": "Keywords related to the domain in which the algorithm is deployed." + }, + "publication_category": { + "label": "Publication category", + "description": "To determine which algorithms should be published, a distinction is made between impactful and other algorithms. The AI ​​act also defines 'High-risk AI systems'. " + }, + "lawful_basis_grouping": { + "label": "Links to legal bases", + "description": "Links to the legal bases for the process in which the algorithm is used." + }, + "source_data_grouping": { + "label": "Links to data sources", + "description": "Links to additional information about the used data sources." + }, + "impacttoetsen_grouping": { + "label": "Impact assessment", + "description": "Name of the conducted impact assessment, such as a DPIA or IAMA, and the possibility to include a link of the impact assesment." + }, + "impacttoetsen": { + "label": "Elaboration on impact assessments", + "description": "Elaboration on why certain impact assessment were not performed." + }, + "process_index_url": { + "label": "Link to Processing Index", + "description": "Link to a public share of the processing index relevant to the algorithm. There you will find more information on the processing." + }, + "website": { + "label": "Link to publication website", + "description": "The URL of the publication website of the organisation. On this page, you may find more information regarding the deployment of the algorithm at the organisation." + }, + "status": { + "label": "Status", + "description": "The current implementation state of the algorithm: in development, in use, or out of service." + }, + "begin_date": { + "label": "Begin date", + "description": "Month and year in which the algorithm was launched." + }, + "end_date": { + "label": "End date", + "description": "Month in which the algorithm was retired." + }, + "goal": { + "label": "Goal and impact", + "description": "The purpose for which the algorithm was developed and the impact it has on civilians and companies." + }, + "proportionality": { + "label": "Considerations", + "description": "A consideration of pros and cons regarding the deployment of the algorithm and why this is reasonably justified." + }, + "provider": { + "label": "External provider", + "description": "If applicable, the external provider of the algorithm." + }, + "lawful_basis": { + "label": "Legal basis", + "description": "A description of the legal basis for the process in which the algorithm is used." + }, + "url": { + "label": "Link to source registration", + "description": "The URL of the secondary register in which this algorithm was previously documented; in machine readable format" + }, + "contact_email": { + "label": "Contact information", + "description": "Contact information for this registration." + }, + "lang": { + "label": "Language", + "description": "The language in which this registration is documented." + }, + "standard_version": { + "label": "Publication Standard", + "description": "The registration scheme; in machine readable format." + }, + "uuid": { + "label": "National-ID", + "description": "The unique user identification (UUID) of this registration." + }, + "source_id": { + "label": "Source-ID", + "description": "The unique code the owner uses for this algorithm." + }, + "tags": { + "label": "Tags", + "description": "Keywords describing the algorithm to improve search engine results in this register." + }, + "source_data": { + "label": "Data", + "description": "An overview of data that are used by the algorithm and/or were initially being used to create the algorithm." + }, + "methods_and_models": { + "label": "Technical design", + "description": "Explanation of how the algorithm works." + }, + "publiccode": { + "label": "Link to code base", + "description": "The URL of the code base of the developer. On this page, you may find more specific information regarding the algorithm's code itself." + }, + "human_intervention": { + "label": "Human intervention", + "description": "A description of how the output of the algorithm is used by humans and how they can be reviewed and edited." + }, + "risks": { + "label": "Risk management", + "description": "An overview of how risks are dealt with." + } + } } } diff --git a/frontend/locales/fy.json b/frontend/locales/fy.json new file mode 100644 index 00000000..c8f28e15 --- /dev/null +++ b/frontend/locales/fy.json @@ -0,0 +1,686 @@ +{ + "algoritmeIndex": { + "pageTitle": "Sykje nei algoritmen", + "noResults": { + "p1": "Probearje it opnij. Jo kinne sykje op de folgjende wurden:", + "l1": "Wurden yn de namme (titel) fan it algoritme", + "l2": "Wurden yn de omskriuwing fan it algoritme", + "l3": "De namme fan de organisaasje dy't ferantwurdlik is foar it algoritme." + } + }, + "language-picker": { + "language": "Taal" + }, + "organisations": "Organisaasjes", + "organisation": "Organisaasje", + "filter": { + "choose": "Kies in {what}", + "organisation": "organisaasje", + "publicationcategory": "publikaasjekategory", + "organisationtype": "organisaasjetype", + "impact_assessment": "impacttoets", + "moreOptions": "Toan mear", + "lessOptions": "Toan minder", + "selectedFilters": "Filters", + "aria/remove": "{what} fuortsmite as filter", + "removeAll": "Ferwider seleksje", + "selectedFilter": { + "organisation": "Organisaasje", + "publicationcategory": "Publikaasjekategory", + "organisationtype": "Organisaasjetype", + "impact_assessment": "Impacttoets", + "searchtext": "Sykterm" + }, + "sorting": "Sortearje {filter} op {what}", + "alfabetical": "alfabetyske folchoarder", + "numerical": "nûmer" + }, + "searchSuggestion": { + "title": "Gean direkt nei in algoritmebeskriuwing" + }, + "orgSuggestionSearch": { + "title": "Kies út de folgjende opsjes:", + "OrgSpecificSearch": "Algoritmebeskriuwingen fan {organisation}", + "OrgGenericSearch": "Algoritmebeskriuwingen wêryn de term '{searchQuery}' foarkomt", + "RedirectToOrgPage": "Organisaasjeside fan {organisation}" + }, + "english?": "falsk", + "home-highlight-algorithm-text": "Of besjoch fuortendaliks ien fan de folgjende algoritmen", + "you-are-here": "Jo binne hjir", + "ontbreekt": "Fjild net ynfierd.", + "locales": { + "en": "Ingelsk", + "nl": "Nederlânsk", + "fy": "Frysk (bèta)" + }, + "currentLanguage": "Nederlânsk", + "selectLanguage": "Dizze webside yn oare talen", + "foundResults": "Gjin algoritmen fûn | 1 resultaat fûn | {n} resultaten fûn", + "foundResultsOrganisations": "Gjin organisaasjes | 1 resultaat fûn | {n} resultaten fûn", + "forSearch": " foar {searchQuery}", + "noResults": "Gjin algoritmen fûn foar de hjoeddeiske sykopdracht.", + "externalLink": "Link nei eksterne side", + "mailLink": "Link nei in e-mailadres", + "footer": { + "text": "Tink derom: dizze webside is yn ûntwikkeling. De ynformaasje feroaret faak. Wolle jo meihelpe?", + "textAskApply": "Meld jo dan oan", + "paths": { + "algoritme": "Algoritme-oersjoch", + "contact": "Kontakt", + "privacyverklaring": "Privacy", + "kwetsbaarheid-melden": "Kwetsberens melde", + "toegankelijkheid": "Tagonklikheid", + "archief": "Argyf", + "cookies": "Koekjes", + "vragen": "Faakstelde fragen", + "over": "Oer it Algoritmeregister", + "meedoen": "Meidwaan", + "over_algoritmes": "Oer algoritmen", + "release-notes": "Release-notysjes", + "ext_overheid_nl": "Oerheid.nl", + "ext_rijksoverheid_nl": "Ryksoerheid.nl", + "ext_digitaleoverheid_nl": "Digitale Oerheid", + "ext_data_overheid_nl": "Data.overheid.nl", + "ext_pleio": "Algoritmen.pleio.nl", + "zelf-aan-de-slag": "Begjin sels", + "registreer-je-algoritme": "Registrearje jo algoritme" + } + }, + "algoritmeRegister": "Algoritme-register", + "goBack": "Werom nei alle algoritmen", + "orgPage": { + "head": "Organisaasje-oersjoch", + "title": "Organisaasje-oersjoch", + "contactInfo": "Mear ynformaasje: ", + "noAbout": "Dizze organisaasje hat noch gjin algemiene beskriuwing oanlevere.", + "aboutHeader": "Oer dizze organisaasje", + "goBackToOrg": "Werom nei alle organisaasjes", + "algorithmDescriptions": "Algoritmebeskriuwingen", + "alternativeAlgorithmDescriptions": "Dizze organisaasje hat de folgjende algoritmebeskriuwing(en) publisearre" + }, + "short-description": "Koarte beskriuwing", + "short-description-missing": "In koarte beskriuwing ûntbrekt", + "yes": "Ja", + "no": "Nee", + "hello": "Hallo, {name}!", + "language": "Taal", + "homepageTitle": "it Algoritmeregister fan de Nederlânske oerheid", + "searchExplanation": "Fyn ien fan de {n} algoritmen", + "searchExplanationOrganisations": "Fyn ien fan de {n} organisaasjes", + "algorithms": "algoritmen", + "logoCaption": "it Algoritmeregister", + "searchHint": "Wêr binne jo nei op syk?", + "search": "Sykje", + "downloadAllAlgorithms": "Download alle algoritmen", + "downloadThisAlgorithm": "Download dit algoritme", + "switchToLanguage": "Tone yn it {language}", + "showFilters": "Toan filters", + "hideFilters": "Ferbergje filters", + "removeSelection": "Ferwider seleksje", + "reportVulnerability": "Kwetsberens melde", + "genericResultCard": { + "readMore": "Lês mear", + "lastChange": "Lêst feroare op", + "publicationStandard": "Publikaasjestandaard" + }, + "navigation": { + "home": "Home", + "algorithmRegister": "Algoritmen", + "footer": "Home", + "contact": "Kontakt", + "vragen": "Faakstelde fragen", + "over": "Oer it Algoritmeregister", + "over-algoritmes": "Oer algoritmen", + "meedoen": "Meidwaan", + "privacyverklaring": "Privacy", + "toegankelijkheid": "Tagonklikheid", + "archief": "Argyf", + "kwetsbaarheid-melden": "Kwetsberens melde", + "db": "Dashboard", + "release-notes": "Release-notysjes", + "organisatie": "Organisaasjes", + "zelf-aan-de-slag": "Begjin sels", + "dashboard": "Dashboard", + "registreer-je-algoritme": "Registrearje jo algoritme" + }, + "pagination": { + "page": "Side", + "goTo": "Gean nei side {n}", + "goToNextPage": "Gean nei folgjende side", + "goToPreviousPage": "Gean nei foarige side" + }, + "homePageText": { + "paragraph1": "Op dizze webside publisearje oerheidsorganisaasjes de algoritmen dy't sy brûke yn har wurk.", + "paragraph2": "Der wurdt oan wurke om ynfloedrike algoritmen iepenbier te meitsjen. Sadat helder is hoe dizze algoritmen wurkje en hoe't dizze ynset wurde.", + "paragraph3Header": "Foarútgong", + "paragraph3part1": "Op dit stuit kinne jo hjir ", + "paragraph3part2": " algoritmen fine." + }, + "dashboard": { + "informationType": "Type ynformaasje", + "select": "Selektearje", + "searchFor": "Sykje op", + "dashboardHeading": "Ynsjoch yn de registergegevens", + "countPerTypeTitle": "Algoritmen yn it register per ynformaasjetype", + "dateToday": "Datum", + "completenessTitle": "Mate fan folsleinens", + "totalCountText": "Oantal algoritmen", + "tableHeader": "Oantal registrearre algoritmen mei", + "fullyComplete": "Alle fjilden ynfierd", + "partiallyComplete": "Diels ynfierd", + "value": "Wearde", + "numberOfMatches": "Oantal", + "loadingText": "Oan it laden", + "totalPublishedAlgorithmDescriptions": "Totaal oantal algoritme beskriuwingen publisearre", + "totalJoinedOrganisations": "Totaal oantal oansletten organisaasjes", + "publishedAlgorithmDescriptions": "{n} algoritme beskriuwingen publisearre.", + "singlePublishedAlgorithmDescription": "{n} algoritme beskriuwing publisearre", + "joinedOrganisations": "Oantal oansletten organisaasjes", + "brokenLinks": "Oantal brutsen keppelings", + "statusErrorCode": "Code", + "publicationCategories": "Publikaasje kategoryen", + "top20Organisations": "Top-20 organisaasjes", + "moreInfo": "Klik op in rigel foar mear ynformaasje.", + "title": "Dashboard", + "expandOverview": "Alles útwreidzje", + "collapseOverview": "Alles ynstoarte", + "onTheMap": "Op de kaart", + "municipalities": "Gemeenten", + "provinces": "Provinsjes", + "waterAuthorities": "Wetterskippen", + "environmentalServices": "Miljeu tsjinsten", + "clickOnMunicipality": "Klik op in gemeente.", + "clickOnProvince": "Klik op in provinsje.", + "clickOnWaterAuthority": "Klik op in wetterskip.", + "clickOnEnvironmentalService": "Klik op in miljeutsjinst.", + "legendGreen": "Is oansletten en hat publisearre yn it register.", + "legendYellow": "Is oansletten mar is noch net publisearre.", + "legendWhite": "Is noch net ferbûn mei it register.", + "municipalityMapDescription": "Hjir is te sjen hokker gemeenten yn Nederlân oansletten binne en publisearre hawwe yn it Algoritmeregister.", + "provinceMapDescription": "Hjir is te sjen hokker provinsjes yn Nederlân oansletten binne en publisearre hawwe yn it Algoritmeregister.", + "waterAuthoritiesMapDescription": "Hjir is te sjen hokker wetterskippen yn Nederlân oansletten binne en publisearre hawwe yn it Algoritmeregister.", + "environmentalServicesMapDescription": "Hjir is te sjen hokker miljeu tsjinsten yn Nederlân oansletten binne en publisearre hawwe yn it Algoritmeregister.", + "publishedAlgorithmDescription": "Dit lit sjen hoefolle algoritmebeskriuwings yn de lêste 12 moannen yn it Algoritmeregister publisearre binne.", + "joinedOrganisationsDescription": "Dit lit sjen hoefolle organisaasjes per moanne ferbûn binne mei it Algoritmeregister.", + "brokenLinksDescription": "Hjir wurdt per dei sjen litten hoefolle referinsjes yn publisearre algoritme-beskriuwings ferskine dy't net mear wurkje of wêrfan de reaksjetiid te stadich is (mear as 5 sekonden). Dizze kontrôle is yn ûntwikkeling. It is mooglik dat wurkferwizings wurde ferkeard rapportearre.", + "publicationCategoriesDescription": "Dit lit sjen hoefolle algoritmebeskriuwings yn 'e publikaasjekategoryen 'High-risk AI-systeem', 'Impactful algoritmen' en 'Oare algoritmen' binne publisearre yn it Algoritmeregister.", + "top20OrganisationsDescription": "Hjir binne de tweintich organisaasjes te sjen dy't de measte algoritmebeskriuwings publisearre hawwe yn it Algoritmeregister.", + "algorithm": "Algoritme", + "organisation": "Organisaasje", + "brokenLink": "Brutsen keppeling", + "date": "Datum", + "month": "Moanne", + "andFurther": "En fierder", + "showDatatable": "Gegevenstabel sjen litte", + "hideDatatable": "Ferbergje datatabel", + "showGraph": "Grafyk sjen litte", + "showMap": "Kaart sjen litte", + "brokenLinksTableTitle": "Net-wurkjende en te trage ferwizings", + "disclaimer": "Dit oersjoch lit sjen hokker algoritmebeskriuwingen ien of mear ferwizings befetsje dy't net mear wurkje of wêrfan de reaksjetiid te traach is (mear as 5 sekonden). Dizze kontrôle is yn ûntwikkeling. It is mooglik dat wol-wurkjende ferwizings ûnrjochtlik rapportearre wurde.", + "name": "Namme", + "indication": "Oanwizing", + "seeOrgPage": "Besjoch de organisaasjeside", + "moreInfoOrgPage": "Mear ynformaasje", + "algorithmDescriptions": "algoritmebeskriuwingen", + "noPublications": "Gjin publikaasjes." + }, + "getAlgorithmPropertyExplanation": "Utlis oer it algoritme-eigenskip '{field}'", + "algorithmProperties": { + "default": { + "headers": { + "algemeneInformatie": "Algemene ynformaasje", + "inzet": "Ynset", + "toepassing": "Tapassing", + "toezicht": "Tafersjoch", + "juridisch": "Juridysk", + "metadata_algorithm": "Metadata" + }, + "name": { + "label": "Namme", + "description": "De namme dy't brûkt wurdt om it algoritme oan te tsjutten." + }, + "organization": { + "label": "Organisaasje", + "description": "De folsleine namme fan de organisaasje ferantwurdlik foar de ynset fan it algoritme." + }, + "department": { + "label": "Ôfdieling", + "description": "De folsleine namme fan de ôfdieling of divyzje ferantwurdlik foar de ynset fan it algoritme." + }, + "description_short": { + "label": "Koarte omskriuwing", + "description": "In koarte, abstrakte beskriuwing fan it algoritme (max. 150 tekens)." + }, + "type": { + "label": "Type algoritme", + "description": "Is it algoritme op regels basearre of selslearjend? Regelbasearre algoritmen binne mei de hân troch minsken boud, meast op basis fan wetten of feroarderingen. Selslearjende algoritmen kinne sels ferbannen ûntdekke yn gegevens." + }, + "category": { + "label": "Beliedsterrein", + "description": "Trefwurden oer it beliedsterrein wêryn't it algoritme wurdt ynset." + }, + "website": { + "label": "Link nei publykspagina", + "description": "In URL nei in publykspagina fan de organisaasje sels. Op dizze side kinne jo mear fine oer de ynset fan it algoritme binnen de organisaasje." + }, + "status": { + "label": "Status", + "description": "De status fan it algoritme: yn ûntwikkeling, yn gebrûk, of bûten gebrûk." + }, + "goal": { + "label": "Doel", + "description": "It doel wêrfoar't it algoritme ûntwikkele is en/of hoe't de ynset dêrfan bydraacht oan it berikken fan dy doelen." + }, + "impact": { + "label": "Impact", + "description": "De impact fan it algoritme op boargers en bedriuwen. Bygelyks: hoe wurket it algoritme en wat binne de ferwachte konsekwinsjes dêrfan foar it yndividu of bedriuw?" + }, + "proportionality": { + "label": "Proportionaliteit", + "description": "In ôfwaging fan de foar- en neidielen fan de ynset fan it algoritme en wêrom dit ridlik rjochtfeardige is." + }, + "decision_making_process": { + "label": "Proses", + "description": "De namme fan it bedriuws- of beslútfoarmingsproses yn de organisaasje wêrbinnen it algoritme wurdt ynset." + }, + "documentation": { + "label": "Link nei projekt-side", + "description": "URL fan de projekt-side fan de organisaasje sels oer dit spesifike gebrûk fan it algoritme." + }, + "description": { + "label": "Omskriuwing", + "description": "In útwreide beskriuwing fan it algoritme (500-10000 tekens)." + }, + "application_url": { + "label": "Link nei ûntwikkelder", + "description": "In URL nei in applikaasjeside fan de ûntwikkelder. Op dizze side kinne jo mear algemiene technyske ynformaasje fine oer it algoritme en de ûntwikkelder sels." + }, + "publiccode": { + "label": "Link nei boarnekoade", + "description": "In URL nei de koadeside fan de ûntwikkelder. Op dizze side kinne jo mear fine oer de koade fan it algoritme sels." + }, + "mprd": { + "label": "Keppelings mei basisregistraasjes", + "description": "Makket it algoritme direkt gebrûk fan gegevens út it Stelsel fan Basisregistraasjes? Mear ynformaasje is te finen op https://www.digitaleoverheid.nl/" + }, + "source_data": { + "label": "Databoarnen", + "description": "In oersjoch fan de databoarnen dy't op dit stuit brûkt wurde troch it algoritme en/of yn it begjin brûkt binne by it meitsjen fan it algoritme." + }, + "methods_and_models": { + "label": "Metoaden en modellen", + "description": "Standert metoaden of modellen dy't it algoritme brûkt." + }, + "monitoring": { + "label": "Monitoring", + "description": "In oersjoch fan hoe't de ynset fan it algoritme wurdt monitorearre." + }, + "human_intervention": { + "label": "Minskele tuskenkomst", + "description": "In omskriuwing fan hoe't útkomsten fan it algoritme troch in minske kontrolearre en bysteld (kinne) wurde." + }, + "risks": { + "label": "Risiko's", + "description": "In oersjoch fan de foarsjoene risiko's by de ynset fan it algoritme." + }, + "performance_standard": { + "label": "Prestaasjenoarmen", + "description": "In omskriuwing fan de ferwachte prestaasjes fan it algoritme en hoe't dy wurde metten." + }, + "competent_authority": { + "label": "Befoege autoriteit", + "description": "Folsleine namme fan de befoege autoriteit ferantwurdlik foar de ynset fan it algoritme." + }, + "lawful_basis": { + "label": "Wettlike grûnslach", + "description": "In omskriuwing of in link nei de wettlike grûnslach foar de ynset fan it algoritme. Bygelyks: in wet, in feroardering of in formeel beslút." + }, + "iama": { + "label": "Impact Assessment Minskerjochten en Algoritmen (IAMA)", + "description": "Is it algoritme toetst op it neikommen fan minskerjochten mei in Impact Assessment Minskerjochten en Algoritmen (IAMA)?" + }, + "iama_description": { + "label": "Omskriuwing fan de IAMA", + "description": "In oersjoch fan de wichtichste saken dy't út de impact assessment minskejochten en algoritmen (IAMA) nei foaren kamen." + }, + "dpia": { + "label": "Data Protection Impact Assessment (DPIA)", + "description": "Is it algoritme toetst op feilich gebrûk fan gegevens mei in Data Protection Impact Assessment (DPIA)?" + }, + "dpia_description": { + "label": "Omskriuwing fan de DPIA", + "description": "In oersjoch fan de wichtichste saken dy't út de data protection impact assessment (DPIA) nei foaren kamen." + }, + "objection_procedure": { + "label": "Beswierproseduere", + "description": "In omskriuwing fan hoe't boargers en bedriuwen beswier meitsje kinne tsjin de útkomsten fan it algoritme." + }, + "standard_version": { + "label": "Skema", + "description": "It skema brûkt foar dizze registraasje yn masjine lêsber formaat." + }, + "uuid": { + "label": "UUID", + "description": "De unike identifikaasje (UUID) foar dizze registraasje." + }, + "url": { + "label": "Link nei de boarneregistraasje", + "description": "De URL fan de lokaasje wêr't dit algoritme earder al is fêstlein; yn masjine lêsber formaat." + }, + "contact_email": { + "label": "E-mailadres fan de kontaktperoan", + "description": "It e-mailadres foar kontakt oer dizze registraasje." + }, + "area": { + "label": "Geografysk gebiet", + "description": "It geografyske gebiet wêryn't it algoritme wurdt ynset." + }, + "lang": { + "label": "Taal", + "description": "De taal wêryn dizze registraasje is ynfierd." + }, + "revision_date": { + "label": "Herzieningsdatum", + "description": "De datum wêrop dizze registraasje moat wurde herzien." + }, + "source_id": { + "label": "Boarne-ID", + "description": "De unike koade fan dit algoritme yn it register fan de eigner" + }, + "provider": { + "label": "Leveransier", + "description": "Yn gefal fan tapassing, de eksterne leveransier fan it algoritme." + }, + "process_index_url": { + "label": "Link nei ferwurkingsregister", + "description": "De link nei de AVG-ferwurking yn in iepenbier register fan it algoritme." + }, + "tags": { + "label": "Tags", + "description": "Trefwurden oer it algoritme, om de fynberens fan in algoritmeregistraasje te fergrutsjen." + } + }, + "0_4": { + "headers": { + "algemeneInformatie": "Algemene ynformaasje", + "verantwoordGebruik": "Ferantwurde gebrûk", + "technischeWerking": "Technyske wurking" + }, + "name": { + "label": "Namme", + "description": "De namme dy't brûkt wurdt om it algoritme oan te tsjutten." + }, + "organization": { + "label": "Organisaasje", + "description": "De folsleine namme fan de organisaasje wêr't it algoritme ynset wurdt." + }, + "description_short": { + "label": "Koarte omskriuwing", + "description": "In koarte beskriuwing fan it algoritme." + }, + "type": { + "label": "(Sels)learend", + "description": "Is it algoritme selslearend? Yn in net-selslearend algoritme spesifisearret de minske de regels dy't de kompjûter folgje moat. As it in selslearend algoritme is, leart de masine oer de patroanen yn de gegevens." + }, + "category": { + "label": "Beliedsterrein", + "description": "It beliedsterrein wêryn't it algoritme wurdt ynset." + }, + "website": { + "label": "Link nei publykspagina", + "description": "In URL nei in publykspagina fan de organisaasje sels. Op dizze side kinne jo mear fine oer de ynset fan it algoritme binnen de organisaasje." + }, + "status": { + "label": "Status", + "description": "De status fan it algoritme: yn ûntwikkeling, yn gebrûk, of bûten gebrûk." + }, + "begin_date": { + "label": "Begjindatum", + "description": "Moanne wêryn't it algoritme yn gebrûk nommen is." + }, + "end_date": { + "label": "Einddatum", + "description": "Moanne wêryn't it algoritme bûten gebrûk nommen is." + }, + "goal": { + "label": "Doel en impact", + "description": "It doel wêrfoar't it algoritme ûntwikkele is en wat foar impact de ynset hat op boargers en bedriuwen." + }, + "proportionality": { + "label": "Afwagings", + "description": "In ôfwaging fan de foar- en neidielen fan de ynset fan it algoritme en wêrom dit ridlik rjochtfeardige is." + }, + "provider": { + "label": "Leveransier", + "description": "Yn gefal fan tapassing, de eksterne leveransier fan it algoritme." + }, + "lawful_basis": { + "label": "Wettlike basis", + "description": "In omskriuwing fan de wettlike basis foar it proses wêryn't it algoritme ynset wurdt." + }, + "lawful_basis_link": { + "label": "Link nei wettlike basis", + "description": "In link nei de wettlike grûnslach(en) foar it proses wêryn't it algoritme ynset wurdt." + }, + "impacttoetsen": { + "label": "Impacttoetsen", + "description": "Hokker impacttoetsen binne brûkt, lykas Data Protection Impact Assesment (DPIA) of Impact Assessment Minskerjochten en Algoritmen (IAMA)?" + }, + "iama_description": { + "label": "Link nei Minskerjochtentoets", + "description": "Link nei de resultaten fan in útfierde impacttoets, lykas in DPIA IAMA." + }, + "url": { + "label": "Link nei boarneregistraasje", + "description": "De URL fan de lokaasje wêr't dit algoritme earder al is fêstlein; yn masjine lêsber formaat." + }, + "contact_email": { + "label": "Kontaktgegevens", + "description": "De kontaktgegevens foar dizze registraasje." + }, + "lang": { + "label": "Taal", + "description": "De taal wêryn dizze registraasje is ynfierd." + }, + "standard_version": { + "label": "Publikaasjestandaard", + "description": "De ferzje fan de publikaasjestandaard wêryn dit algoritme yn registrearre is." + }, + "uuid": { + "label": "Lânslik-ID", + "description": "De unike koade fan dit algoritme yn it lânslike register." + }, + "source_id": { + "label": "Boarne-ID", + "description": "De unike koade fan dit algoritme yn it register fan de eigner." + }, + "tags": { + "label": "Tags", + "description": "Trefwurden oer it algoritme, om de fynberens fan in algoritmeregistraasje te fergrutsjen." + }, + "source_data": { + "label": "Gegevens", + "description": "In oersjoch fan de gegevens dy't brûkt wurde troch it algoritme en/of yn it begjin brûkt binne by it meitsjen fan it algoritme." + }, + "source_data_link": { + "label": "Link nei gegevensboarnen", + "description": "Links nei oanfoljende ynformaasje oer de brûkte gegevensboarnen." + }, + "methods_and_models": { + "label": "Technyske wurking", + "description": "Utlis fan hoe't it algoritme wurket." + }, + "publiccode": { + "label": "Link nei boarnekoade", + "description": "In URL nei de koadeside fan de ûntwikkelder. Op dizze side kinne jo mear fine oer de koade fan it algoritme sels." + }, + "human_intervention": { + "label": "Minskele tuskenkomst", + "description": "In omskriuwing fan hoe't útkomsten fan it algoritme troch in minske brûkt wurde, en op hokker wize dizze brûkt, kontrolearre en bysteld (kinne) wurde." + }, + "risks": { + "label": "Risikobehear", + "description": "In oersjoch fan de foarsjoene risiko's by de ynset fan it algoritme." + } + }, + "1_0": { + "headers": { + "algemeneInformatie": "Algemene ynformaasje", + "verantwoordGebruik": "Ferantwurde gebrûk", + "werking": "Wurking", + "metadata": "Metadata" + }, + "name": { + "label": "Namme", + "description": "De namme dy't brûkt wurdt om it algoritme oan te tsjutten." + }, + "organization": { + "label": "Organisaasje", + "description": "De folsleine namme fan de organisaasje wêr't it algoritme ynset wurdt." + }, + "description_short": { + "label": "Koarte omskriuwing", + "description": "In koarte beskriuwing fan it algoritme." + }, + "type": { + "label": "(Sels)learend", + "description": "Is it algoritme selslearend? In net-selslearend algoritme lit de minske de regels spesifisearje dy't de kompjûter folgje moat. As it in selslearend algoritme is, leart de masine oer de patroanen yn de gegevens." + }, + "category": { + "label": "Tema", + "description": "It beliedsterrein wêryn't it algoritme wurdt ynset." + }, + "publication_category": { + "label": "Publicatiecategorie", + "description": "Om te bepalen hokker algoritmen publisearre wurde moatte, is ûnderskied makke tusken ynfloedrike en oare algoritmen. Ek definiearret de AI-feroardening ‘Heech-risiko AI-systemen'." + }, + "lawful_basis_grouping": { + "label": "Links nei wettlike basis", + "description": "Links nei de wettlike grûnslach(en) foar it proses wêryn't it algoritme ynset wurdt." + }, + "source_data_grouping": { + "label": "Links nei gegevensboarnen", + "description": "Link nei oanfoljende ynformaasje oer de brûkte gegevensboarne." + }, + "impacttoetsen_grouping": { + "label": "Impacttoetsen", + "description": "Namme fan impacttoets útfierd lykas in DPIA of IAMA en mooglikheid om in link op te nimmen nei de resultaten fan in útfierde ynfloedtest" + }, + "impacttoetsen": { + "label": "Taljochting op impacttoetsen", + "description": "Taljochting wêrom't bepaalde impacttoetsen net dien binne." + }, + "process_index_url": { + "label": "Link nei ferwurkingsregister", + "description": "Link nei in iepenbier diel fan in ferwurkingsregister dat betrekking hat op in algoritme. Dêr kin mear lêzen wurde oer ferwurkingen." + }, + "website": { + "label": "Link nei publykspagina", + "description": "In URL nei in publykspagina fan de organisaasje sels. Op dizze side kinne jo mear fine oer de ynset fan it algoritme binnen de organisaasje." + }, + "status": { + "label": "Status", + "description": "De status fan it algoritme: yn ûntwikkeling, yn gebrûk, of bûten gebrûk." + }, + "begin_date": { + "label": "Begjindatum", + "description": "Moanne wêryn't it algoritme yn gebrûk nommen is." + }, + "end_date": { + "label": "Einddatum", + "description": "Moanne wêryn't it algoritme bûten gebrûk nommen is." + }, + "goal": { + "label": "Doel en impact", + "description": "It doel wêrfoar't it algoritme ûntwikkele is en wat foar impact de ynset hat op boargers en bedriuwen." + }, + "proportionality": { + "label": "Afwagings", + "description": "In ôfwaging fan de foar- en neidielen fan de ynset fan it algoritme en wêrom dit ridlik rjochtfeardige is." + }, + "provider": { + "label": "Leveransier", + "description": "Yn gefal fan tapassing, de eksterne leveransier fan it algoritme." + }, + "lawful_basis": { + "label": "Wettlike basis", + "description": "In omskriuwing fan de wettlike basis foar it proses wêryn't it algoritme ynset wurdt." + }, + "url": { + "label": "Link nei boarneregistraasje", + "description": "De URL fan de lokaasje wêr't dit algoritme earder al is fêstlein; yn masjine lêsber formaat." + }, + "contact_email": { + "label": "Kontaktgegevens", + "description": "De kontaktgegevens foar dizze registraasje." + }, + "lang": { + "label": "Taal", + "description": "De taal wêryn dizze registraasje is ynfierd." + }, + "standard_version": { + "label": "Publicatiestandaard", + "description": "De ferzje fan de publikaasjestandaard wêryn dit algoritme yn registrearre is." + }, + "uuid": { + "label": "Lânslik-ID", + "description": "De unike koade fan dit algoritme yn it lânslike register." + }, + "source_id": { + "label": "Boarne-ID", + "description": "De unike koade fan dit algoritme yn it register fan de eigner." + }, + "tags": { + "label": "Tags", + "description": "Trefwurden oer it algoritme, om de fynberens fan in algoritmeregistraasje te fergrutsjen." + }, + "source_data": { + "label": "Gegevens", + "description": "In oersjoch fan de gegevens dy't brûkt wurde troch it algoritme en/of yn it begjin brûkt binne by it meitsjen fan it algoritme." + }, + "methods_and_models": { + "label": "Technyske wurking", + "description": "Utlis fan hoe't it algoritme wurket." + }, + "publiccode": { + "label": "Link nei boarnekoade", + "description": "In URL nei de koadeside fan de ûntwikkelder. Op dizze side kinne jo mear fine oer de koade fan it algoritme sels." + }, + "human_intervention": { + "label": "Minskele tuskenkomst", + "description": "In omskriuwing fan hoe't útkomsten fan it algoritme troch in minske brûkt wurde, en op hokker wize dizze brûkt, kontrolearre en bysteld (kinne) wurde." + }, + "risks": { + "label": "Risikobehear", + "description": "In oersjoch fan de foarsjoene risiko's by de ynset fan it algoritme." + } + } + }, + "error": { + "pageNotFound": "Side net fûn", + "goToHome": "Gean nei de thússide" + }, + "weekDays": { + "1": "snein", + "2": "moandei", + "3": "tiisdei", + "4": "woansdei", + "5": "tongersdei", + "6": "freed", + "7": "sneon" + }, + "months": { + "1": "jannewaris", + "2": "febrewaris", + "3": "maart", + "4": "april", + "5": "maaie", + "6": "juny", + "7": "july", + "8": "augustus", + "9": "septimber", + "10": "oktober", + "11": "novimber", + "12": "desimber" + } +} diff --git a/frontend/locales/nl.json b/frontend/locales/nl.json index e84fdab2..dcce2895 100644 --- a/frontend/locales/nl.json +++ b/frontend/locales/nl.json @@ -1,33 +1,103 @@ { + "algoritmeIndex": { + "pageTitle": "Zoek naar algoritmes", + "noResults": { + "p1": "Probeer het opnieuw. Je kan zoeken op de volgende woorden:", + "l1": "Woorden in de naam (titel) van het algoritme", + "l2": "Woorden in de omschrijving van het algoritme", + "l3": "De naam van de organisatie die verantwoordelijk is voor het algoritme." + } + }, + "organisations": "Organisaties", + "organisation": "Organisatie", + "language-picker": { + "language": "Taal" + }, + "filter": { + "choose": "Kies een {what}", + "moreOptions": "Toon meer", + "lessOptions": "Toon minder", + "selectedFilters": "Filters", + "aria/remove": "{what} verwijderen als filter", + "organisation": "organisatie", + "publicationcategory": "publicatiecategorie", + "organisationtype": "organisatie-type", + "impact_assessment": "impacttoets", + "removeAll": "Verwijder selectie", + "selectedFilter": { + "organisation": "Organisatie", + "publicationcategory": "Publicatiecategorie", + "organisationtype": "Organisatie-type", + "impact_assessment": "Impacttoets", + "searchtext": "Zoekterm" + }, + "sorting": "Sorteer {filter} op {what}", + "alfabetical": "alfabetische volgorde", + "numerical": "aantal" + }, + "searchSuggestion": { + "title": "Ga direct naar een algoritmebeschrijving" + }, + "orgSuggestionSearch": { + "title": "Kies uit de volgende opties:", + "OrgSpecificSearch": "Algoritmebeschrijvingen van {organisation}", + "OrgGenericSearch": "Algoritmebeschrijvingen waar de term '{searchQuery}' in voorkomt", + "RedirectToOrgPage": "Organisatiepagina van {organisation}" + }, "english?": "false", "home-highlight-algorithm-text": "Of bekijk direct een van de volgende algoritmes", "you-are-here": "U bent hier", "ontbreekt": "Veld niet ingevuld.", - "locale-en": "Engels", - "locale-nl": "Nederlands", - "selectLanguage": "Kies taal", - "foundResults": "Geen resultaten gevonden | 1 resultaat gevonden | {n} resultaten gevonden", + "locales": { + "en": "Engels", + "nl": "Nederlands", + "fy": "Fries (bèta)" + }, + "currentLanguage": "Nederlands", + "selectLanguage": "Deze website in andere talen", + "foundResults": "Er zijn geen algoritmes gevonden | 1 resultaat gevonden | {n} resultaten gevonden", + "foundResultsOrganisations": "Er zijn geen organisaties gevonden | 1 resultaat gevonden | {n} resultaten gevonden", + "forSearch": " voor {searchQuery}", "noResults": "Geen algoritmes gevonden voor de huidige zoekopdracht.", + "externalLink": "Link naar externe pagina", + "mailLink": "Link naar een e-mailadres", "footer": { "text": "Let op: deze website is in ontwikkeling. De informatie verandert vaak. Wil je meehelpen?", "textAskApply": "Meld je dan aan", "paths": { "algoritme": "Algoritmeoverzicht", - "over": "Over deze website", "contact": "Contact", "privacyverklaring": "Privacy", - "kwetsbaarheid": "Kwetsbaarheid melden", + "kwetsbaarheid-melden": "Kwetsbaarheid melden", "toegankelijkheid": "Toegankelijkheid", + "archief": "Archief", "cookies": "Cookies", "vragen": "Veelgestelde vragen", + "over": "Over het Algoritmeregister", + "meedoen": "Meedoen", + "over_algoritmes": "Over algoritmes", + "release-notes": "Releasenotes", "ext_overheid_nl": "Overheid.nl", "ext_rijksoverheid_nl": "Rijksoverheid.nl", "ext_digitaleoverheid_nl": "Digitale Overheid", - "ext_data_overheid_nl": "Data.overheid.nl" + "ext_data_overheid_nl": "Data.overheid.nl", + "ext_pleio": "Algoritmes.pleio.nl", + "zelf-aan-de-slag": "Zelf aan de slag", + "registreer-je-algoritme": "Registreer je algoritme" } }, "algoritmeRegister": "Algoritmeregister", "goBack": "Terug naar alle algoritmes", + "orgPage": { + "head": "Organisatie-overzicht", + "title": "Organisatie-overzicht", + "contactInfo": "Meer informatie: ", + "noAbout": "Deze organisatie heeft nog geen algemene beschrijving aangeleverd.", + "aboutHeader": "Over deze organisatie", + "goBackToOrg": "Terug naar alle organisaties", + "algorithmDescriptions": "Algoritmebeschrijvingen", + "alternativeAlgorithmDescriptions": "Deze organisatie heeft de volgende algoritmebeschrijving(en) gepubliceerd" + }, "short-description": "Korte beschrijving", "short-description-missing": "Een korte beschrijving ontbreekt", "yes": "Ja", @@ -35,32 +105,49 @@ "hello": "Hallo, {name}!", "language": "Taal", "homepageTitle": "Het Algoritmeregister van de Nederlandse overheid", - "searchExplanation": "Zoek algoritmes op organisatie, titel of omschrijving", + "searchExplanation": "Vind een van de {n} algoritmes", + "searchExplanationOrganisations": "Vind een van de {n} organisaties", + "algorithms": "algoritmes", "logoCaption": "Het Algoritmeregister", "searchHint": "Waar ben je naar op zoek?", "search": "Zoeken", - "selectedAlgorithms": "Geselecteerde algoritmes", - "switchToLanguage": { - "en": "Switch to English" - }, + "downloadAllAlgorithms": "Download alle algoritmes", + "downloadThisAlgorithm": "Download dit algoritme", + "switchToLanguage": "Toon in het {language}", "showFilters": "Toon filters", "hideFilters": "Verberg filters", - "searchResultCard": { - "readMore": "lees meer" + "removeSelection": "Verwijder selectie", + "reportVulnerability": "Kwetsbaarheid melden", + "genericResultCard": { + "readMore": "Lees meer", + "lastChange": "Laatst gewijzigd op", + "publicationStandard": "Publicatiestandaard" }, "navigation": { "home": "Home", "algorithmRegister": "Algoritmes", "footer": "Home", - "over": "Over deze website", "contact": "Contact", "vragen": "Veelgestelde vragen", + "over": "Over het algoritmeregister", + "over-algoritmes": "Over algoritmes", + "meedoen": "Meedoen", "privacyverklaring": "Privacy", "toegankelijkheid": "Toegankelijkheid", - "db": "Dashboard" + "archief": "Archief", + "kwetsbaarheid-melden": "Kwetsbaarheid melden", + "db": "Dashboard", + "release-notes": "Releasenotes", + "organisatie": "Organisaties", + "zelf-aan-de-slag": "Zelf aan de slag", + "dashboard": "Dashboard", + "registreer-je-algoritme": "Registreer je algoritme" }, "pagination": { - "goTo": "Ga naar pagina {n}" + "page": "Pagina", + "goTo": "Ga naar pagina {n}", + "goToNextPage": "Ga naar volgende pagina", + "goToPreviousPage": "Ga naar vorige pagina" }, "homePageText": { "paragraph1": "Op deze website publiceren overheidsorganisaties de algoritmes die zij gebruiken in hun werk.", @@ -83,190 +170,489 @@ "partiallyComplete": "Gedeeltelijk ingevuld", "value": "Waarde", "numberOfMatches": "Aantal", - "loadingText": "Aan het laden" + "loadingText": "Aan het laden", + "totalPublishedAlgorithmDescriptions": "Totaal aantal gepubliceerde algoritmebeschrijvingen", + "totalJoinedOrganisations": "Totaal aantal aangesloten organisaties", + "publishedAlgorithmDescriptions": "{n} algoritmebeschrijvingen gepubliceerd.", + "singlePublishedAlgorithmDescription": "{n} algoritmebeschrijving gepubliceerd.", + "joinedOrganisations": "Aantal aangesloten organisaties", + "brokenLinks": "Aantal gebroken links", + "statusErrorCode": "Code", + "publicationCategories": "Publicatiecategorieën", + "top20Organisations": "Top-20 organisaties", + "moreInfo": "Klik op een regel voor meer informatie.", + "onTheMap": "Op de landkaart", + "municipalities": "Gemeenten", + "provinces": "Provincies", + "waterAuthorities": "Waterschappen", + "environmentalServices": "Omgevingsdiensten", + "clickOnMunicipality": "Klik op een gemeente.", + "clickOnProvince": "Klik op een provincie.", + "clickOnWaterAuthority": "Klik op een waterschap.", + "clickOnEnvironmentalService": "Klik op een omgevingsdienst.", + "title": "Dashboard", + "expandOverview": "Alles uitklappen", + "collapseOverview": "Alles inklappen", + "legendGreen": "Is aangesloten en heeft op het register gepubliceerd.", + "legendYellow": "Is aangesloten maar heeft nog niet gepubliceerd.", + "legendWhite": "Is nog niet aangesloten op het register.", + "municipalityMapDescription": "Hier wordt getoond welke gemeenten in Nederland zijn aangesloten en op het Algoritmeregister gepubliceerd hebben.", + "provinceMapDescription": "Hier wordt getoond welke provincies in Nederland zijn aangesloten en op het Algoritmeregister gepubliceerd hebben.", + "waterAuthoritiesMapDescription": "Hier wordt getoond welke waterschappen in Nederland zijn aangesloten en op het Algoritmeregister gepubliceerd hebben.", + "environmentalServicesMapDescription": "Hier wordt getoond welke omgevingsdiensten in Nederland zijn aangesloten en op het Algoritmeregister gepubliceerd hebben.", + "publishedAlgorithmDescription": "Hier wordt weergegeven hoeveel algoritmebeschrijvingen zijn gepubliceerd het Algoritmeregister in de afgelopen 12 maanden.", + "joinedOrganisationsDescription": "Hier wordt per maand weergegeven hoeveel organisaties zijn aangesloten op het Algoritmeregister.", + "brokenLinksDescription": "Hier wordt per dag getoond hoeveel verwijzingen in gepubliceerde algoritmebeschrijvingen voorkomen welke niet (meer) werken of waarvan de reactietijd te langzaam is (meer dan 5 seconden). Deze controle is in ontwikkeling. Het is mogelijk dat wel-werkende verwijzingen onterecht gerapporteerd worden.", + "publicationCategoriesDescription": "Hier wordt getoond hoeveel algoritmebeschrijvingen in de publicatiecategorieën ‘Hoog-risico AI-systeem’, ‘Impactvolle algoritmes’ en ‘Overige algoritmes’ zijn gepubliceerd in het Algoritmeregister.", + "top20OrganisationsDescription": "Hier worden de twintig organisaties getoond die het meeste algoritmebeschrijvingen in het Algoritmeregister hebben gepubliceerd.", + "algorithm": "Algoritme", + "organisation": "Organisatie", + "brokenLink": "Gebroken link", + "date": "Datum", + "month": "Maand", + "andFurther": "En verder", + "showDatatable": "Toon datatabel", + "hideDatatable": "Verberg datatabel", + "showGraph": "Toon grafiek", + "showMap": "Toon kaart", + "brokenLinksTableTitle": "Niet-werkende en te trage verwijzingen", + "name": "Naam", + "indication": "Indicatie", + "seeOrgPage": "Bekijk de organisatiepagina", + "moreInfoOrgPage": "Meer informatie", + "algorithmDescriptions": "algoritmebeschrijvingen", + "noPublications": "Geen publicaties." }, + "getAlgorithmPropertyExplanation": "Uitleg over het algoritme-eigenschap '{field}'", "algorithmProperties": { - "toegevoegd_op": { - "label": "Toegevoegd op" - }, - "slug": { - "label": "" - }, - "algemeneInformatie": { - "label": "Algemene informatie", - "description": "Geen beschrijving" - }, - "name": { - "label": "Naam", - "description": "De naam die gebruikt wordt om het algoritme aan te duiden." - }, - "organization": { - "label": "Organisatie", - "description": "De volledige naam van de organisatie verantwoordelijk voor de inzet van het algoritme." - }, - "department": { - "label": "Afdeling", - "description": "De volledige naam van de afdeling of divisie verantwoordelijk voor de inzet van het algoritme." - }, - "description_short": { - "label": "Korte omschrijving", - "description": "Een korte, abstracte beschrijving van het algoritme (max. 150 tekens)." - }, - "type": { - "label": "Type algoritme", - "description": "Is het algoritme op regels gebaseerd of zelflerend? Regelgebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes kunnen zelf verbanden ontdekken in gegevens." - }, - "category": { - "label": "Beleidsterrein", - "description": "Trefwoorden over het beleidsterrein waarin het algoritme wordt ingezet." - }, - "website": { - "label": "Link naar publiekspagina", - "description": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie." - }, - "status": { - "label": "Status", - "description": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik." - }, - "inzet": { - "label": "Inzet", - "description": "Geen beschrijving" - }, - "goal": { - "label": "Doel", - "description": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen." - }, - "impact": { - "label": "Impact", - "description": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf?" - }, - "proportionality": { - "label": "Proportionaliteit", - "description": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is." - }, - "decision_making_process": { - "label": "Proces", - "description": "De naam van het bedrijfs- of besluitvormingsproces in de organisatie waarbinnen het algoritme wordt ingezet." - }, - "documentation": { - "label": "Link naar projectpagina", - "description": "URL van de projectpagina van de organisatie zelf over dit specifieke gebruik van het algoritme." - }, - "toepassing": { - "label": "Toepassing", - "description": "Geen beschrijving" - }, - "description": { - "label": "Omschrijving", - "description": "Een uitgebreide beschrijving van het algoritme (500-10000 tekens)." - }, - "application_url": { - "label": "Link naar ontwikkelaar", - "description": "Een URL naar een applicatiepagina van de ontwikkelaar. Op deze pagina kunt u meer algemene technische informatie vinden over het algoritme en de ontwikkelaar zelf." - }, - "publiccode": { - "label": "Link naar broncode", - "description": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf." - }, - "mprd": { - "label": "Koppelingen met basisregistraties", - "description": "Maakt het algoritme direct gebruik van data uit het Stelsel van Basisregistraties? Meer informatie is te vinden op https://www.digitaleoverheid.nl/" - }, - "source_data": { - "label": "Databronnen", - "description": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme." - }, - "methods_and_models": { - "label": "Methoden en modellen", - "description": "Standaard methoden of modellen die het algoritme gebruikt." - }, - "toezicht": { - "label": "Toezicht", - "description": "Geen beschrijving" - }, - "monitoring": { - "label": "Monitoring", - "description": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord." - }, - "human_intervention": { - "label": "Menselijke tussenkomst", - "description": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden." - }, - "risks": { - "label": "Risico's", - "description": "Een overzicht van de voorziene risico's bij de inzet van het algoritme." - }, - "performance_standard": { - "label": "Prestatienormen", - "description": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten." - }, - "juridisch": { - "label": "Juridisch", - "description": "Geen beschrijving" - }, - "competent_authority": { - "label": "Bevoegde autoriteit", - "description": "Volledige naam van de bevoegde autoriteit verantwoordelijk voor de inzet van het algoritme." - }, - "lawful_basis": { - "label": "Wettelijke grondslag", - "description": "Een omschrijving of een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit." - }, - "iama": { - "label": "Impact Assessment Mensenrechten en Algoritmes (IAMA)", - "description": "Is het algoritme getoetst op het nakomen van mensenrechten met een Impact Assessmment Mensenrechten en Algoritmes (IAMA)?" - }, - "iama_description": { - "label": "Omschrijving van de IAMA", - "description": "Een overzicht van de belangrijkste zaken die uit de impact assessment mensenrechten en algoritmes (IAMA) naar voren kwamen." - }, - "dpia": { - "label": "Data Protection Impact Assessment (DPIA)", - "description": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA)?" - }, - "dpia_description": { - "label": "Omschrijving van de DPIA", - "description": "Een overzicht van de belangrijkste zaken die uit de data protection impact assessment (DPIA) naar voren kwamen." - }, - "objection_procedure": { - "label": "Bezwaarprocedure", - "description": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme." - }, - "metadata_algorithm": { - "label": "Metadata", - "description": "Geen beschrijving" - }, - "schema_metadata": { - "label": "Schema", - "description": "Het schema gebruikt voor deze registratie in machine leesbaar format." - }, - "schema": { - "label": "Schema", - "description": "Het schema gebruikt voor deze registratie in machine leesbaar format." - }, - "uuid": { - "label": "UUID", - "description": "De unieke identificatie (UUID) voor deze registratie." - }, - "url": { - "label": "Link naar de bronregistratie", - "description": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat." - }, - "contact_email": { - "label": "E-mailadres van de contactpersoon", - "description": "De e-mail voor contact over deze registratie." - }, - "area": { - "label": "Geografisch gebied", - "description": "Het geografische gebied waarin het algoritme wordt ingezet." - }, - "lang": { - "label": "Taal", - "description": "De taal waarin deze registratie is ingevoerd." - }, - "revision_date": { - "label": "Herzieningsdatum", - "description": "De datum waarvoor deze registratie moet worden herzien." + "default": { + "headers": { + "algemeneInformatie": "Algemene informatie", + "inzet": "Inzet", + "toepassing": "Toepassing", + "toezicht": "Toezicht", + "juridisch": "Juridisch", + "metadata_algorithm": "Metadata" + }, + "name": { + "label": "Naam", + "description": "De naam die gebruikt wordt om het algoritme aan te duiden." + }, + "organization": { + "label": "Organisatie", + "description": "De volledige naam van de organisatie verantwoordelijk voor de inzet van het algoritme." + }, + "department": { + "label": "Afdeling", + "description": "De volledige naam van de afdeling of divisie verantwoordelijk voor de inzet van het algoritme." + }, + "description_short": { + "label": "Korte omschrijving", + "description": "Een korte, abstracte beschrijving van het algoritme (max. 150 tekens)." + }, + "type": { + "label": "Type algoritme", + "description": "Is het algoritme op regels gebaseerd of zelflerend? Regelgebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes kunnen zelf verbanden ontdekken in gegevens." + }, + "category": { + "label": "Beleidsterrein", + "description": "Trefwoorden over het beleidsterrein waarin het algoritme wordt ingezet." + }, + "website": { + "label": "Link naar publiekspagina", + "description": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie." + }, + "status": { + "label": "Status", + "description": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik." + }, + "goal": { + "label": "Doel", + "description": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen." + }, + "impact": { + "label": "Impact", + "description": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf?" + }, + "proportionality": { + "label": "Proportionaliteit", + "description": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is." + }, + "decision_making_process": { + "label": "Proces", + "description": "De naam van het bedrijfs- of besluitvormingsproces in de organisatie waarbinnen het algoritme wordt ingezet." + }, + "documentation": { + "label": "Link naar projectpagina", + "description": "URL van de projectpagina van de organisatie zelf over dit specifieke gebruik van het algoritme." + }, + "description": { + "label": "Omschrijving", + "description": "Een uitgebreide beschrijving van het algoritme (500-10000 tekens)." + }, + "application_url": { + "label": "Link naar ontwikkelaar", + "description": "Een URL naar een applicatiepagina van de ontwikkelaar. Op deze pagina kunt u meer algemene technische informatie vinden over het algoritme en de ontwikkelaar zelf." + }, + "publiccode": { + "label": "Link naar broncode", + "description": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf." + }, + "mprd": { + "label": "Koppelingen met basisregistraties", + "description": "Maakt het algoritme direct gebruik van data uit het Stelsel van Basisregistraties? Meer informatie is te vinden op https://www.digitaleoverheid.nl/" + }, + "source_data": { + "label": "Databronnen", + "description": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme." + }, + "methods_and_models": { + "label": "Methoden en modellen", + "description": "Standaard methoden of modellen die het algoritme gebruikt." + }, + "monitoring": { + "label": "Monitoring", + "description": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord." + }, + "human_intervention": { + "label": "Menselijke tussenkomst", + "description": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden." + }, + "risks": { + "label": "Risico's", + "description": "Een overzicht van de voorziene risico's bij de inzet van het algoritme." + }, + "performance_standard": { + "label": "Prestatienormen", + "description": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten." + }, + "competent_authority": { + "label": "Bevoegde autoriteit", + "description": "Volledige naam van de bevoegde autoriteit verantwoordelijk voor de inzet van het algoritme." + }, + "lawful_basis": { + "label": "Wettelijke grondslag", + "description": "Een omschrijving of een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit." + }, + "iama": { + "label": "Impact Assessment Mensenrechten en Algoritmes (IAMA)", + "description": "Is het algoritme getoetst op het nakomen van mensenrechten met een Impact Assessmment Mensenrechten en Algoritmes (IAMA)?" + }, + "iama_description": { + "label": "Omschrijving van de IAMA", + "description": "Een overzicht van de belangrijkste zaken die uit de impact assessment mensenrechten en algoritmes (IAMA) naar voren kwamen." + }, + "dpia": { + "label": "Data Protection Impact Assessment (DPIA)", + "description": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA)?" + }, + "dpia_description": { + "label": "Omschrijving van de DPIA", + "description": "Een overzicht van de belangrijkste zaken die uit de data protection impact assessment (DPIA) naar voren kwamen." + }, + "objection_procedure": { + "label": "Bezwaarprocedure", + "description": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme." + }, + "standard_version": { + "label": "Schema", + "description": "Het schema gebruikt voor deze registratie in machine leesbaar format." + }, + "uuid": { + "label": "UUID", + "description": "De unieke identificatie (UUID) voor deze registratie." + }, + "url": { + "label": "Link naar de bronregistratie", + "description": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat." + }, + "contact_email": { + "label": "E-mailadres van de contactpersoon", + "description": "De e-mail voor contact over deze registratie." + }, + "area": { + "label": "Geografisch gebied", + "description": "Het geografische gebied waarin het algoritme wordt ingezet." + }, + "lang": { + "label": "Taal", + "description": "De taal waarin deze registratie is ingevoerd." + }, + "revision_date": { + "label": "Herzieningsdatum", + "description": "De datum waarvoor deze registratie moet worden herzien." + }, + "source_id": { + "label": "Bron-ID", + "description": "De unieke code van dit algoritme in het register van de eigenaar" + }, + "provider": { + "label": "Leverancier", + "description": "Indien van toepassing, de externe leverancier van het algoritme." + }, + "process_index_url": { + "label": "Link naar verwerkingsregister", + "description": "De link naar de AVG-verwerking in een publiek register van het algoritme." + }, + "tags": { + "label": "Tags", + "description": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten." + } + }, + "0_4": { + "headers": { + "algemeneInformatie": "Algemene informatie", + "verantwoordGebruik": "Verantwoord gebruik", + "technischeWerking": "Technische werking" + }, + "name": { + "label": "Naam", + "description": "De naam die gebruikt wordt om het algoritme aan te duiden." + }, + "organization": { + "label": "Organisatie", + "description": "De volledige naam van de organisatie waar het algoritme ingezet wordt." + }, + "description_short": { + "label": "Korte omschrijving", + "description": "Een korte beschrijving van het algoritme." + }, + "type": { + "label": "(Zelf)lerend", + "description": "Is het algoritme zelflerend? In een niet-zelflerend algoritme specificeert de mens de regels die de computer moet volgen. Als het een zelflerend algoritme is, leert de machine over de patronen in de data." + }, + "category": { + "label": "Beleidsterrein", + "description": "Het beleidsterrein waarin het algoritme wordt ingezet." + }, + "website": { + "label": "Link naar publiekspagina", + "description": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie." + }, + "status": { + "label": "Status", + "description": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik." + }, + "begin_date": { + "label": "Begindatum", + "description": "Maand waarin het algoritme in gebruik is genomen." + }, + "end_date": { + "label": "Einddatum", + "description": "Maand waarin het algoritme buiten gebruik is genomen." + }, + "goal": { + "label": "Doel en impact", + "description": "Het doel waarvoor het algoritme ontwikkeld is en wat voor impact de inzet heeft op burgers en bedrijven." + }, + "proportionality": { + "label": "Afwegingen", + "description": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is." + }, + "provider": { + "label": "Leverancier", + "description": "Indien van toepassing, de externe leverancier van het algoritme." + }, + "lawful_basis": { + "label": "Wettelijke basis", + "description": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt." + }, + "lawful_basis_link": { + "label": "Link naar wettelijke basis", + "description": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt." + }, + "impacttoetsen": { + "label": "Impacttoetsen", + "description": "Welke impacttoetsen zijn gebruikt, zoals Data Protection Impact Assesment (DPIA) of Impact Assessment Mensenrechten en Algoritmes (IAMA)?" + }, + "iama_description": { + "label": "Link naar Mensenrechtentoets", + "description": "Link naar de resultaten van een uitgevoerde impacttoets, zoals een DPIA IAMA." + }, + "url": { + "label": "Link naar bronregistratie", + "description": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat." + }, + "contact_email": { + "label": "Contactgegevens", + "description": "De contactgegevens voor deze registratie." + }, + "lang": { + "label": "Taal", + "description": "De taal waarin deze registratie is ingevoerd." + }, + "standard_version": { + "label": "Publicatiestandaard", + "description": "De versie van de publicatiestandaard waar dit algoritme in is geregistreed." + }, + "uuid": { + "label": "Landelijk-ID", + "description": "De unieke code van dit algoritme in het landelijke register." + }, + "source_id": { + "label": "Bron-ID", + "description": "De unieke code van dit algoritme in het register van de eigenaar." + }, + "tags": { + "label": "Tags", + "description": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten." + }, + "source_data": { + "label": "Gegevens", + "description": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme." + }, + "source_data_link": { + "label": "Link naar gegevensbronnen", + "description": "Links naar aanvullende informatie over de gebruikte gegevensbronnen." + }, + "methods_and_models": { + "label": "Technische werking", + "description": "Uitleg van hoe het algoritme werkt." + }, + "publiccode": { + "label": "Link naar broncode", + "description": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf." + }, + "human_intervention": { + "label": "Menselijke tussenkomst", + "description": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden." + }, + "risks": { + "label": "Risicobeheer", + "description": "Een overzicht van de voorziene risico's bij de inzet van het algoritme." + } + }, + "1_0": { + "headers": { + "algemeneInformatie": "Algemene informatie", + "verantwoordGebruik": "Verantwoord gebruik", + "werking": "Werking", + "metadata": "Metadata" + }, + "name": { + "label": "Naam", + "description": "De naam die gebruikt wordt om het algoritme aan te duiden." + }, + "organization": { + "label": "Organisatie", + "description": "De volledige naam van de organisatie waar het algoritme ingezet wordt." + }, + "description_short": { + "label": "Korte omschrijving", + "description": "Een korte beschrijving van het algoritme." + }, + "type": { + "label": "(Zelf)lerend", + "description": "Is het algoritme zelflerend? In een niet-zelflerend algoritme specificeert de mens de regels die de computer moet volgen. Als het een zelflerend algoritme is, leert de machine over de patronen in de data." + }, + "category": { + "label": "Thema", + "description": "Het beleidsterrein waarin het algoritme wordt ingezet." + }, + "publication_category": { + "label": "Publicatiecategorie", + "description": "Om te bepalen welke algoritmes gepubliceerd moeten worden, is onderscheid gemaakt tussen impactvolle en overige algoritmes. Ook definieert de AI-verordening ‘Hoog-risico AI-systemen'. " + }, + "lawful_basis_grouping": { + "label": "Links naar wettelijke basis", + "description": "Links naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt. " + }, + "source_data_grouping": { + "label": "Links naar gegevensbronnen", + "description": "Link naar aanvullende informatie over de gebruikte gegevensbron. " + }, + "impacttoetsen_grouping": { + "label": "Impacttoetsen", + "description": "Naam uitgevoerde impacttoets zoals een DPIA of IAMA en mogelijkheid om een link naar de resultaten van een uitgevoerde impacttoets op te nemen." + }, + "impacttoetsen": { + "label": "Toelichting op impacttoetsen", + "description": "Toelichting waarom bepaald impacttoetsen niet gedaan zijn." + }, + "process_index_url": { + "label": "Link naar verwerkingsregister", + "description": "Link naar een openbaar deel van een verwerkingsregister die betrekking heeft op een algoritme. Daar kan meer gelezen worden over verwerkingen. " + }, + "website": { + "label": "Link naar publiekspagina", + "description": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie." + }, + "status": { + "label": "Status", + "description": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik." + }, + "begin_date": { + "label": "Begindatum", + "description": "Maand waarin het algoritme in gebruik is genomen." + }, + "end_date": { + "label": "Einddatum", + "description": "Maand waarin het algoritme buiten gebruik is genomen." + }, + "goal": { + "label": "Doel en impact", + "description": "Het doel waarvoor het algoritme ontwikkeld is en wat voor impact de inzet heeft op burgers en bedrijven." + }, + "proportionality": { + "label": "Afwegingen", + "description": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is." + }, + "provider": { + "label": "Leverancier", + "description": "Indien van toepassing, de externe leverancier van het algoritme." + }, + "lawful_basis": { + "label": "Wettelijke basis", + "description": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt." + }, + "url": { + "label": "Link naar bronregistratie", + "description": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat." + }, + "contact_email": { + "label": "Contactgegevens", + "description": "De contactgegevens voor deze registratie." + }, + "lang": { + "label": "Taal", + "description": "De taal waarin deze registratie is ingevoerd." + }, + "standard_version": { + "label": "Publicatiestandaard", + "description": "De versie van de publicatiestandaard waar dit algoritme in is geregistreed." + }, + "uuid": { + "label": "Landelijk-ID", + "description": "De unieke code van dit algoritme in het landelijke register." + }, + "source_id": { + "label": "Bron-ID", + "description": "De unieke code van dit algoritme in het register van de eigenaar." + }, + "tags": { + "label": "Tags", + "description": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten." + }, + "source_data": { + "label": "Gegevens", + "description": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme." + }, + "methods_and_models": { + "label": "Technische werking", + "description": "Uitleg van hoe het algoritme werkt." + }, + "publiccode": { + "label": "Link naar broncode", + "description": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf." + }, + "human_intervention": { + "label": "Menselijke tussenkomst", + "description": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden." + }, + "risks": { + "label": "Risicobeheer", + "description": "Een overzicht van de voorziene risico's bij de inzet van het algoritme." + } } }, "error": { diff --git a/frontend/middleware/redirect.global.ts b/frontend/middleware/redirect.global.ts new file mode 100644 index 00000000..7d3c8c3d --- /dev/null +++ b/frontend/middleware/redirect.global.ts @@ -0,0 +1,44 @@ +import type { Algoritme } from '@/types/algoritme' +import algoritmeService from '@/services/algoritme' +import type { LanguageCode } from '@/types/textLoader' + +const slugFromAlgo = (algoritme?: Algoritme): string => { + const name = algoritme?.name + const org = algoritme?.organization + let slug = name?.toLowerCase() + ' ' + org?.toLowerCase() + slug = slug.replaceAll(/[^a-zA-Z0-9 ]/g, '') + // Some names have two spaces, the following line ensures this does not become '--'. + slug = slug.replaceAll(' ', '-') + slug = slug.replaceAll(' ', '-') + return slug +} + +export default defineNuxtRouteMiddleware(async (to, from) => { + // Handles algorithm detail page and constructing the slug + if (to.params.slug) { + const locale = to.path.split('/')[1] as LanguageCode + const lars = (to.params.lars || to.params.slug) as string + if (lars.includes('C')) return + + // Retrieve algoritme here to build slug. Store it globally so don't have to get it again + const algoritme = useState('algoritme', () => null) + if ( + !algoritme.value || + algoritme.value.lars !== lars || + locale !== from.path.split('/')[1] + ) { + const { data } = await algoritmeService.getOne( + lars, + mapLocaleName(locale) + ) + algoritme.value = data.value as Algoritme + } + + const slug = slugFromAlgo(algoritme.value) + if (slug === to.params.slug) return + + return navigateTo({ + path: `/${locale}/algoritme/${slug}/${lars}`, + }) + } +}) diff --git a/frontend/nuxt.config.ts b/frontend/nuxt.config.ts index 24d96b3b..b9b6551b 100644 --- a/frontend/nuxt.config.ts +++ b/frontend/nuxt.config.ts @@ -1,10 +1,13 @@ -import { resolve, dirname } from 'node:path' -import { fileURLToPath } from 'url' -import VueI18nVitePlugin from '@intlify/unplugin-vue-i18n/vite' // https://next.vuetifyjs.com/en/features/treeshaking/#automatic-treeshaking // import vuetify from 'vite-plugin-vuetify' +import { dirname, resolve } from 'node:path' +import { fileURLToPath } from 'url' +import VueI18nVitePlugin from '@intlify/unplugin-vue-i18n/vite' +// import algoritmeService from './services/algoritme' + +const envIsDev = process.env.ENV === 'DEV' -export default defineNuxtConfig({ +const nuxtConfig = defineNuxtConfig({ app: { head: { link: [{ rel: 'icon', type: 'image/png', href: '/favicon.ico' }], @@ -12,15 +15,29 @@ export default defineNuxtConfig({ }, modules: [ 'nuxt-icon', - // '@vueuse/nuxt', - // async (options, nuxt) => { - // nuxt.hooks.hook('vite:extendConfig', (config) => - // // @ts-ignore - // config.plugins.push(vuetify()) - // ) - // }, + '@nuxtjs/i18n', + 'nuxt-security', + 'nuxt-simple-sitemap', + '@piwikpro/nuxt-piwik-pro', ], + i18n: { + locales: ['nl', 'en', 'fy'], + defaultLocale: 'nl', + strategy: 'prefix', + rootRedirect: 'nl', + vueI18n: './i18n.config.ts', + }, + sitemap: { + exclude: ['/en/**', '/fy/**'], // No english versions + }, vite: { + plugins: [ + VueI18nVitePlugin({ + include: [ + resolve(dirname(fileURLToPath(import.meta.url)), './locales/*.json'), + ], + }), + ], css: { preprocessorOptions: { scss: { @@ -30,24 +47,104 @@ export default defineNuxtConfig({ }, }, }, - plugins: [ - VueI18nVitePlugin({ - include: [ - resolve(dirname(fileURLToPath(import.meta.url)), './locales/*.json'), - ], - }), - ], }, css: ['@/assets/styles/main.scss'], - // build: { - // transpile: ['vuetify'], - // }, runtimeConfig: { public: { apiBaseUrl: process.env.NUXT_PUBLIC_API_BASE_URL || '', + NUXT_APP_BASE_URL: process.env.NUXT_APP_BASE_URL || '/', + aanleverBaseUrl: process.env.NUXT_AANLEVER_BASE_URL || '', }, }, typescript: { typeCheck: true, + tsConfig: { + compilerOptions: { + // baseUrl: "./", + module: 'ESNext', + paths: { + '@/*': ['./*.ts'], + '~/*': ['./*.ts'], + '~~/*': ['./*.ts'], + }, + }, + }, + }, + security: { + headers: { + crossOriginEmbedderPolicy: false, + contentSecurityPolicy: { + 'default-src': ["'self'"], + 'base-uri': ["'self'"], + 'font-src': ["'self'"], + 'connect-src': [ + "'self'", + 'https://api.iconify.design', + ], + 'form-action': ["'self'"], + 'frame-ancestors': ["'self'"], + 'img-src': ["'self'", 'data:'], + 'object-src': ["'none'"], + 'script-src-attr': ["'none'"], + 'script-src-elem': [ + "'self'", + "'nonce-{{nonce}}'", + "'sha256-FGCWaiGgvZVfrUaCByTcd17axhgA37SpuPSjBb0MUK0='", + ], + 'script-src': [ + "'nonce-{{nonce}}'", + ], + 'style-src': ["'self'", "'nonce-{{nonce}}'", 'https://www.w3.org'], + 'style-src-attr': ["'self'", "'nonce-{{nonce}}'"], + 'upgrade-insecure-requests': true, + }, + referrerPolicy: 'strict-origin-when-cross-origin', + xContentTypeOptions: 'nosniff', + xDNSPrefetchControl: 'off', + xFrameOptions: 'SAMEORIGIN', + permissionsPolicy: { + camera: ['()'], + 'display-capture': ['()'], + fullscreen: ['()'], + geolocation: ['()'], + microphone: ['()'], + }, + }, + csrf: true, + nonce: true, }, }) + +// Overwrite security headers for local development +if (envIsDev) { + nuxtConfig.security = { + headers: { + crossOriginEmbedderPolicy: false, + contentSecurityPolicy: { + 'base-uri': ["'self'"], + 'font-src': ["'self'", 'https:', 'data:'], + 'form-action': ["'self' localhost:8000"], // Change to "'self' localhost:8000" to make forms works + 'frame-ancestors': ["'self'"], + 'img-src': ["'self'", 'data:'], + 'object-src': ["'none'"], + 'script-src-attr': ["'none'"], + 'style-src': ["'self'", 'https:', "'unsafe-inline'"], + 'upgrade-insecure-requests': true, + }, + referrerPolicy: 'strict-origin-when-cross-origin', + xContentTypeOptions: 'nosniff', + xDNSPrefetchControl: 'off', + xFrameOptions: 'SAMEORIGIN', + permissionsPolicy: { + camera: ['()'], + 'display-capture': ['()'], + fullscreen: ['()'], + geolocation: ['()'], + microphone: ['()'], + }, + }, + csrf: false, + } +} + +export default nuxtConfig diff --git a/frontend/package-lock.json b/frontend/package-lock.json index d6934b2d..5ed8a10e 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,88 +1,121 @@ { "name": "frontend", - "lockfileVersion": 2, + "lockfileVersion": 3, "requires": true, "packages": { "": { "hasInstallScript": true, "dependencies": { - "@vueuse/core": "^9.6.0", - "@vueuse/nuxt": "^9.6.0", - "axios": "^1.1.3", - "qs": "^6.11.0", - "sass": "^1.56.1", - "vite-plugin-vuetify": "^1.0.0", - "vue-i18n": "^9.2.2", + "@intlify/core-base": "^9.3.0-beta.22", + "@intlify/shared": "^9.3.0-beta.24", + "@piwikpro/nuxt-piwik-pro": "^1.0.0", + "@vitest/coverage-c8": "^0.33.0", + "@vueuse/core": "^10.2.1", + "@vueuse/nuxt": "^10.2.1", + "axios": "^1.4.0", + "d3": "^7.9.0", + "esbuild": "^0.23.1", + "nuxt-security": "^0.14.2", + "qs": "^6.11.2", + "sass": "^1.64.1", + "vite-plugin-vuetify": "^1.0.2", + "vitest": "^0.33.0", + "vue-i18n": "9.8.0", "vue-matomo": "^4.2.0", - "vuetify": "^3.0.1" + "vuetify": "^3.3.9" }, "devDependencies": { - "@babel/eslint-parser": "^7.19.1", - "@intlify/unplugin-vue-i18n": "^0.8.0", - "@mdi/font": "^7.0.96", + "@babel/eslint-parser": "^7.22.9", + "@intlify/unplugin-vue-i18n": "^0.12.2", + "@mdi/font": "^7.2.96", "@nuxtjs/eslint-config-typescript": "^12.0.0", + "@nuxtjs/i18n": "^8.5.1", + "@types/d3": "^7.4.3", "@types/qs": "^6.9.7", - "eslint": "^8.28.0", - "eslint-config-prettier": "^8.5.0", + "eslint": "^8.45.0", + "eslint-config-prettier": "^8.8.0", "eslint-plugin-nuxt": "^4.0.0", - "eslint-plugin-prettier": "^4.2.1", - "nuxt": "3.0.0", - "nuxt-icon": "^0.1.8", - "typescript": "^4.9.4", - "vue-tsc": "^1.0.13" + "eslint-plugin-prettier": "^5.0.0", + "nuxt": "3.11.2", + "nuxt-icon": "0.1.8", + "nuxt-simple-sitemap": "^3.1.4", + "typescript": "5.4", + "vue-tsc": "1.8.24" } }, "node_modules/@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "dependencies": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, + "node_modules/@antfu/install-pkg": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/@antfu/install-pkg/-/install-pkg-0.4.0.tgz", + "integrity": "sha512-vI73C0pFA9L+5v+djh0WSLXb8qYQGH5fX8nczaFe1OTI/8Fh03JS1Mov1V7urb6P3A2cBlBqZNjJIKv54+zVRw==", + "dev": true, + "dependencies": { + "package-manager-detector": "^0.1.1", + "tinyexec": "^0.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@antfu/utils": { + "version": "0.7.10", + "resolved": "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.10.tgz", + "integrity": "sha512-+562v9k4aI80m1+VuMHehNJWLOFjBnXn3tdOitzD0il5b7smkSBal4+a3oKiQTbrwMmN/TBUMDvbdoWDehgOww==", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, "node_modules/@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", + "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", "dependencies": { - "@babel/highlight": "^7.18.6" + "@babel/highlight": "^7.24.7", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz", - "integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.4.tgz", + "integrity": "sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", - "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", - "dependencies": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.2", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-module-transforms": "^7.20.2", - "@babel/helpers": "^7.20.1", - "@babel/parser": "^7.20.2", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2", - "convert-source-map": "^1.7.0", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.2.tgz", + "integrity": "sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.0", + "@babel/helper-compilation-targets": "^7.25.2", + "@babel/helper-module-transforms": "^7.25.2", + "@babel/helpers": "^7.25.0", + "@babel/parser": "^7.25.0", + "@babel/template": "^7.25.0", + "@babel/traverse": "^7.25.2", + "@babel/types": "^7.25.2", + "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -93,89 +126,75 @@ } }, "node_modules/@babel/eslint-parser": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz", - "integrity": "sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==", + "version": "7.25.1", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.1.tgz", + "integrity": "sha512-Y956ghgTT4j7rKesabkh5WeqgSFZVFwaPR0IWFm7KFHFmmJ4afbG49SmfW4S+GyRPx0Dy5jxEWA5t0rpxfElWg==", "dev": true, "dependencies": { "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || >=14.0.0" }, "peerDependencies": { - "@babel/core": ">=7.11.0", - "eslint": "^7.5.0 || ^8.0.0" + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" } }, "node_modules/@babel/generator": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz", - "integrity": "sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==", + "version": "7.25.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.5.tgz", + "integrity": "sha512-abd43wyLfbWoxC6ahM8xTkqLpGB2iWBVyuKC9/srhFunCd1SDNrV1s72bBpK4hLj8KLzHBBcOblvLQZBNw9r3w==", "dependencies": { - "@babel/types": "^7.20.2", - "@jridgewell/gen-mapping": "^0.3.2", + "@babel/types": "^7.25.4", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.24.7.tgz", + "integrity": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", - "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz", + "integrity": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==", "dependencies": { - "@babel/compat-data": "^7.20.0", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.21.3", - "semver": "^6.3.0" + "@babel/compat-data": "^7.25.2", + "@babel/helper-validator-option": "^7.24.8", + "browserslist": "^4.23.1", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz", - "integrity": "sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.4.tgz", + "integrity": "sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==", "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-member-expression-to-functions": "^7.18.9", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.19.1", - "@babel/helper-split-export-declaration": "^7.18.6" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/helper-replace-supers": "^7.25.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/traverse": "^7.25.4", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -184,187 +203,163 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", - "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", - "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", - "dependencies": { - "@babel/template": "^7.18.10", - "@babel/types": "^7.19.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", - "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.24.8.tgz", + "integrity": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==", "dependencies": { - "@babel/types": "^7.18.9" + "@babel/traverse": "^7.24.8", + "@babel/types": "^7.24.8" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", - "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2" + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz", + "integrity": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7", + "@babel/traverse": "^7.25.2" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", - "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.24.7.tgz", + "integrity": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz", + "integrity": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz", - "integrity": "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.0.tgz", + "integrity": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==", "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.18.9", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.19.1", - "@babel/types": "^7.19.0" + "@babel/helper-member-expression-to-functions": "^7.24.8", + "@babel/helper-optimise-call-expression": "^7.24.7", + "@babel/traverse": "^7.25.0" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", - "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", "dependencies": { - "@babel/types": "^7.20.2" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.24.7.tgz", + "integrity": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==", "dependencies": { - "@babel/types": "^7.18.6" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz", + "integrity": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", + "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz", + "integrity": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz", - "integrity": "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.0.tgz", + "integrity": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==", "dependencies": { - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.0" + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", + "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" + "@babel/helper-validator-identifier": "^7.24.7", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.20.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.3.tgz", - "integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.4.tgz", + "integrity": "sha512-nq+eWrOgdtu3jG5Os4TQP3x3cLA8hR8TvJNjD8vnPa20WGycimcparWnLK4jJhElTK6SDyuJo1weMKO/5LpmLA==", + "dependencies": { + "@babel/types": "^7.25.4" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -372,12 +367,67 @@ "node": ">=6.0.0" } }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.24.7.tgz", + "integrity": "sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.7", + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/plugin-syntax-decorators": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.24.7.tgz", + "integrity": "sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.7.tgz", + "integrity": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", - "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz", + "integrity": "sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==", "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -387,11 +437,28 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz", - "integrity": "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.4.tgz", + "integrity": "sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.24.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.8.tgz", + "integrity": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==", + "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-module-transforms": "^7.24.8", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-simple-access": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -401,13 +468,34 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.2.tgz", - "integrity": "sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==", + "version": "7.25.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.25.2.tgz", + "integrity": "sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==", "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.20.2", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-typescript": "^7.20.0" + "@babel/helper-annotate-as-pure": "^7.24.7", + "@babel/helper-create-class-features-plugin": "^7.25.0", + "@babel/helper-plugin-utils": "^7.24.8", + "@babel/helper-skip-transparent-expression-wrappers": "^7.24.7", + "@babel/plugin-syntax-typescript": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-typescript": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.7.tgz", + "integrity": "sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/plugin-transform-modules-commonjs": "^7.24.7", + "@babel/plugin-transform-typescript": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -417,40 +505,37 @@ } }, "node_modules/@babel/standalone": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.20.4.tgz", - "integrity": "sha512-27bv4h47jbaFZ7+e7gT1VEo9PNL1ynxqUX6/BERLz1qxm/5gzpbcHX+47VnSeYHyEyGZkRznpSOd8zPBhiz6tw==", + "version": "7.25.5", + "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.25.5.tgz", + "integrity": "sha512-46bI7GJHwgWfWszOWMvJIsJjXd+LBMIlaiw4R54+b7GvDfxTVE6ytsqR8uEiI/zYECoB33ChwfN0wq/MLHLFXg==", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", - "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", + "version": "7.25.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.0.tgz", + "integrity": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==", "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.10", - "@babel/types": "^7.18.10" + "@babel/code-frame": "^7.24.7", + "@babel/parser": "^7.25.0", + "@babel/types": "^7.25.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz", - "integrity": "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==", - "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.1", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.20.1", - "@babel/types": "^7.20.0", - "debug": "^4.1.0", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.4.tgz", + "integrity": "sha512-VJ4XsrD+nOvlXyLzmLzUs/0qjFS4sK30te5yEFlvbbUNEgKaVb2BHZUpAL+ttLPQAHNrsI3zZisbfha5Cvr8vg==", + "dependencies": { + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.25.4", + "@babel/parser": "^7.25.4", + "@babel/template": "^7.25.0", + "@babel/types": "^7.25.4", + "debug": "^4.3.1", "globals": "^11.1.0" }, "engines": { @@ -458,30 +543,64 @@ } }, "node_modules/@babel/types": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.2.tgz", - "integrity": "sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==", + "version": "7.25.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.4.tgz", + "integrity": "sha512-zQ1ijeeCXVEh+aNL0RlmkPkG8HUiDcU2pzQQFjtbntgAczRASFzj4H+6+bV+dy1ntKR14I/DypeuRG1uma98iQ==", "dependencies": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", + "@babel/helper-string-parser": "^7.24.8", + "@babel/helper-validator-identifier": "^7.24.7", "to-fast-properties": "^2.0.0" }, "engines": { "node": ">=6.9.0" } }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, "node_modules/@cloudflare/kv-asset-handler": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.2.0.tgz", - "integrity": "sha512-MVbXLbTcAotOPUj0pAMhVtJ+3/kFkwJqc5qNOleOZTv6QkZZABDMS21dSrSlVswEHwrpWC03e4fWytjqKvuE2A==", + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.4.tgz", + "integrity": "sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==", "dependencies": { "mime": "^3.0.0" + }, + "engines": { + "node": ">=16.13" + } + }, + "node_modules/@cloudflare/kv-asset-handler/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.23.1.tgz", + "integrity": "sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" } }, "node_modules/@esbuild/android-arm": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.15.tgz", - "integrity": "sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==", + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.23.1.tgz", + "integrity": "sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==", "cpu": [ "arm" ], @@ -490,1164 +609,997 @@ "android" ], "engines": { - "node": ">=12" + "node": ">=18" } }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.15.tgz", - "integrity": "sha512-lhz6UNPMDXUhtXSulw8XlFAtSYO26WmHQnCi2Lg2p+/TMiJKNLtZCYUxV4wG6rZMzXmr8InGpNwk+DLT2Hm0PA==", + "node_modules/@esbuild/android-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.23.1.tgz", + "integrity": "sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==", "cpu": [ - "loong64" + "arm64" ], "optional": true, "os": [ - "linux" + "android" ], "engines": { - "node": ">=12" + "node": ">=18" } }, - "node_modules/@eslint/eslintrc": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz", - "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==", - "devOptional": true, - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.15.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, + "node_modules/@esbuild/android-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.23.1.tgz", + "integrity": "sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "android" + ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=18" } }, - "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz", - "integrity": "sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==", - "devOptional": true, - "dependencies": { - "type-fest": "^0.20.2" - }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.23.1.tgz", + "integrity": "sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=18" } }, - "node_modules/@eslint/eslintrc/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "devOptional": true, + "node_modules/@esbuild/darwin-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.23.1.tgz", + "integrity": "sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=18" } }, - "node_modules/@humanwhocodes/config-array": { - "version": "0.11.7", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz", - "integrity": "sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==", - "devOptional": true, - "dependencies": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" - }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.23.1.tgz", + "integrity": "sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=10.10.0" + "node": ">=18" } }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "devOptional": true, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.23.1.tgz", + "integrity": "sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" + "node": ">=18" } }, - "node_modules/@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "devOptional": true - }, - "node_modules/@iconify/types": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz", - "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", - "dev": true - }, - "node_modules/@iconify/vue": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@iconify/vue/-/vue-4.0.1.tgz", - "integrity": "sha512-k4VwcSQpGqJpoyqENRRviFuXlVcquLvQ6BKLNJ6o2amZo7u+3HyALSO79Xyz7Sg68szQGstOk6weaKUF0DJbog==", - "dev": true, - "dependencies": { - "@iconify/types": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/cyberalien" - }, - "peerDependencies": { - "vue": ">=3" + "node_modules/@esbuild/linux-arm": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.23.1.tgz", + "integrity": "sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@intlify/bundle-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@intlify/bundle-utils/-/bundle-utils-3.4.0.tgz", - "integrity": "sha512-2UQkqiSAOSPEHMGWlybqWm4G2K0X+FyYho5AwXz6QklSX1EY5EDmOSxZmwscn2qmKBnp6OYsme5kUrnN9xrWzQ==", - "dev": true, - "dependencies": { - "@intlify/message-compiler": "next", - "@intlify/shared": "next", - "jsonc-eslint-parser": "^1.0.1", - "source-map": "0.6.1", - "yaml-eslint-parser": "^0.3.2" - }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.23.1.tgz", + "integrity": "sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 12" - }, - "peerDependenciesMeta": { - "petite-vue-i18n": { - "optional": true - }, - "vue-i18n": { - "optional": true - } + "node": ">=18" } }, - "node_modules/@intlify/core-base": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.2.2.tgz", - "integrity": "sha512-JjUpQtNfn+joMbrXvpR4hTF8iJQ2sEFzzK3KIESOx+f+uwIjgw20igOyaIdhfsVVBCds8ZM64MoeNSx+PHQMkA==", - "dependencies": { - "@intlify/devtools-if": "9.2.2", - "@intlify/message-compiler": "9.2.2", - "@intlify/shared": "9.2.2", - "@intlify/vue-devtools": "9.2.2" - }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.23.1.tgz", + "integrity": "sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 14" + "node": ">=18" } }, - "node_modules/@intlify/core-base/node_modules/@intlify/message-compiler": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.2.2.tgz", - "integrity": "sha512-IUrQW7byAKN2fMBe8z6sK6riG1pue95e5jfokn8hA5Q3Bqy4MBJ5lJAofUsawQJYHeoPJ7svMDyBaVJ4d0GTtA==", - "dependencies": { - "@intlify/shared": "9.2.2", - "source-map": "0.6.1" - }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.23.1.tgz", + "integrity": "sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==", + "cpu": [ + "loong64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 14" + "node": ">=18" } }, - "node_modules/@intlify/core-base/node_modules/@intlify/shared": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.2.2.tgz", - "integrity": "sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==", + "node_modules/@esbuild/linux-mips64el": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.23.1.tgz", + "integrity": "sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==", + "cpu": [ + "mips64el" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 14" + "node": ">=18" } }, - "node_modules/@intlify/devtools-if": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/devtools-if/-/devtools-if-9.2.2.tgz", - "integrity": "sha512-4ttr/FNO29w+kBbU7HZ/U0Lzuh2cRDhP8UlWOtV9ERcjHzuyXVZmjyleESK6eVP60tGC9QtQW9yZE+JeRhDHkg==", - "dependencies": { - "@intlify/shared": "9.2.2" - }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.23.1.tgz", + "integrity": "sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 14" + "node": ">=18" } }, - "node_modules/@intlify/devtools-if/node_modules/@intlify/shared": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.2.2.tgz", - "integrity": "sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==", + "node_modules/@esbuild/linux-riscv64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.23.1.tgz", + "integrity": "sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==", + "cpu": [ + "riscv64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 14" + "node": ">=18" } }, - "node_modules/@intlify/message-compiler": { - "version": "9.3.0-beta.10", - "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.3.0-beta.10.tgz", - "integrity": "sha512-RoOC6yceOykLRhN0NlbkNOBUx1el6iphx3W8NfOx3jHVNtfT1FYokx14/5sU3F1F0uxeG4sp6q+ppKvaF8o+ww==", - "dev": true, - "dependencies": { - "@intlify/shared": "9.3.0-beta.10", - "source-map": "0.6.1" - }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.23.1.tgz", + "integrity": "sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 14" - }, - "funding": { - "url": "https://github.com/sponsors/kazupon" + "node": ">=18" } }, - "node_modules/@intlify/shared": { - "version": "9.3.0-beta.10", - "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.3.0-beta.10.tgz", - "integrity": "sha512-h93uAanbAt/XgjDHclrVB7xix6r7Uz11wx0iGNOCdHP7aA2LCJjUT3uNbekJjjbo+Fl5jzTSJZdm2SexzoqhRA==", - "dev": true, + "node_modules/@esbuild/linux-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.23.1.tgz", + "integrity": "sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 14" - }, - "funding": { - "url": "https://github.com/sponsors/kazupon" + "node": ">=18" } }, - "node_modules/@intlify/unplugin-vue-i18n": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@intlify/unplugin-vue-i18n/-/unplugin-vue-i18n-0.8.0.tgz", - "integrity": "sha512-bqMDYrbmV0oMLGHTdYMUXfcEsy2rPwQnGrQAg4gvw5FimvJfTQt3RliLVayT5ldOfeT2g0IUc/0t7LPeGrFUag==", - "dev": true, - "dependencies": { - "@intlify/bundle-utils": "^3.4.0", - "@intlify/shared": "next", - "@rollup/pluginutils": "^4.2.0", - "@vue/compiler-sfc": "^3.2.45", - "debug": "^4.3.1", - "fast-glob": "^3.2.5", - "js-yaml": "^4.1.0", - "json5": "^2.2.0", - "pathe": "^1.0.0", - "picocolors": "^1.0.0", - "source-map": "0.6.1", - "unplugin": "^1.0.0" - }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.23.1.tgz", + "integrity": "sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": ">= 14.16" - }, - "peerDependencies": { - "petite-vue-i18n": "*", - "vue-i18n": "*", - "vue-i18n-bridge": "*" - }, - "peerDependenciesMeta": { - "petite-vue-i18n": { - "optional": true - }, - "vue-i18n": { - "optional": true - }, - "vue-i18n-bridge": { - "optional": true - } + "node": ">=18" } }, - "node_modules/@intlify/vue-devtools": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/vue-devtools/-/vue-devtools-9.2.2.tgz", - "integrity": "sha512-+dUyqyCHWHb/UcvY1MlIpO87munedm3Gn6E9WWYdWrMuYLcoIoOEVDWSS8xSwtlPU+kA+MEQTP6Q1iI/ocusJg==", - "dependencies": { - "@intlify/core-base": "9.2.2", - "@intlify/shared": "9.2.2" - }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.23.1.tgz", + "integrity": "sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "openbsd" + ], "engines": { - "node": ">= 14" + "node": ">=18" } }, - "node_modules/@intlify/vue-devtools/node_modules/@intlify/shared": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.2.2.tgz", - "integrity": "sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==", + "node_modules/@esbuild/openbsd-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.23.1.tgz", + "integrity": "sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "openbsd" + ], "engines": { - "node": ">= 14" + "node": ">=18" } }, - "node_modules/@ioredis/commands": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz", - "integrity": "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==" - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", - "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", - "dependencies": { - "@jridgewell/set-array": "^1.0.0", - "@jridgewell/sourcemap-codec": "^1.4.10" - }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.23.1.tgz", + "integrity": "sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "sunos" + ], "engines": { - "node": ">=6.0.0" + "node": ">=18" } }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "node_modules/@esbuild/win32-arm64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.23.1.tgz", + "integrity": "sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=6.0.0" + "node": ">=18" } }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "node_modules/@esbuild/win32-ia32": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.23.1.tgz", + "integrity": "sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=6.0.0" + "node": ">=18" } }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" + "node_modules/@esbuild/win32-x64": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.23.1.tgz", + "integrity": "sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" } }, - "node_modules/@jridgewell/source-map/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "devOptional": true, "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "eslint-visitor-keys": "^3.3.0" }, "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", - "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, - "node_modules/@mapbox/node-pre-gyp": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", - "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", - "dependencies": { - "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", - "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "devOptional": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "bin": { - "node-pre-gyp": "bin/node-pre-gyp" + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "node_modules/@eslint-community/regexpp": { + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", + "devOptional": true, "engines": { - "node": ">=10" + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "devOptional": true, "dependencies": { - "minipass": "^3.0.0" + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" }, "engines": { - "node": ">= 8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/minipass": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", - "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "devOptional": true, "dependencies": { - "yallist": "^4.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "devOptional": true, + "dependencies": { + "type-fest": "^0.20.2" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "devOptional": true, "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">= 8" + "node": "*" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "bin": { - "mkdirp": "bin/cmd.js" - }, + "node_modules/@eslint/eslintrc/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "devOptional": true, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "dependencies": { - "whatwg-url": "^5.0.0" - }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "devOptional": true, "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, + "node_modules/@fastify/busboy": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.1.tgz", + "integrity": "sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==", "engines": { - "node": ">=10" + "node": ">=14" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/tar": { - "version": "6.1.12", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.12.tgz", - "integrity": "sha512-jU4TdemS31uABHd+Lt5WEYJuzn+TJTCBLljvIAHZOz6M9Os5pJ4dD+vRFLxPa/n3T0iEFzpi+0x1UfuDZYbRMw==", + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "deprecated": "Use @eslint/config-array instead", + "devOptional": true, "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" + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" }, "engines": { - "node": ">=10" + "node": ">=10.10.0" } }, - "node_modules/@mapbox/node-pre-gyp/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/@mdi/font": { - "version": "7.0.96", - "resolved": "https://registry.npmjs.org/@mdi/font/-/font-7.0.96.tgz", - "integrity": "sha512-rzlxTfR64hqY8yiBzDjmANfcd8rv+T5C0Yedv/TWk2QyAQYdc66e0kaN1ipmnYU3RukHRTRcBARHzzm+tIhL7w==", - "dev": true + "node_modules/@humanwhocodes/config-array/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "devOptional": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } }, - "node_modules/@netlify/functions": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-1.3.0.tgz", - "integrity": "sha512-hN/Fgpz8XIOBfsBPLYUMxVKBlCopgeqGB0popayicnmkFLnvKByTTMYgF01wcF9DBtBQdV0H2h1kPFpMl34I8w==", + "node_modules/@humanwhocodes/config-array/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "devOptional": true, "dependencies": { - "is-promise": "^4.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=8.3.0" + "node": "*" } }, - "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { - "version": "5.1.1-v1", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", - "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "devOptional": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", + "devOptional": true + }, + "node_modules/@iconify-json/carbon": { + "version": "1.1.37", + "resolved": "https://registry.npmjs.org/@iconify-json/carbon/-/carbon-1.1.37.tgz", + "integrity": "sha512-Hj9oZtRmN63yt29YovqgqOJQhaoVMNMTkFLT3HKAJm4HjvI405Juez5UfdysYmLjF708U7gJNx4U6K1k5+fTBw==", "dev": true, "dependencies": { - "eslint-scope": "5.1.1" + "@iconify/types": "*" } }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "node_modules/@iconify-json/logos": { + "version": "1.1.44", + "resolved": "https://registry.npmjs.org/@iconify-json/logos/-/logos-1.1.44.tgz", + "integrity": "sha512-sIc355/sSq4GihU4eFTDVbXoeg2rZD3yH6tNOJTNouDu9Fx259BSWH+XEEQwm/YImDIllcGqmJuNBjAu4UVs2g==", + "dev": true, "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" + "@iconify/types": "*" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "engines": { - "node": ">= 8" + "node_modules/@iconify-json/ri": { + "version": "1.1.22", + "resolved": "https://registry.npmjs.org/@iconify-json/ri/-/ri-1.1.22.tgz", + "integrity": "sha512-Pi0I54CFXYSfWlm4xIAGqyDvtibNEpSSyQvHrSrfxFgZgDtFum9tbtYmaTKK0wJWWzYzF3XIpIJTC9/KVYX3SQ==", + "dev": true, + "dependencies": { + "@iconify/types": "*" } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "node_modules/@iconify-json/tabler": { + "version": "1.1.120", + "resolved": "https://registry.npmjs.org/@iconify-json/tabler/-/tabler-1.1.120.tgz", + "integrity": "sha512-G9of3jPsYUfFkdaeqfILQF3xkCuZeitqJDjMkqmzjfJcWzl7JW/PoPJRby28dIUHTyO6eLqOlKhFP4/EQCg44Q==", + "dev": true, "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" + "@iconify/types": "*" } }, - "node_modules/@nuxt/devalue": { + "node_modules/@iconify/types": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.0.tgz", - "integrity": "sha512-YBI/6o2EBz02tdEJRBK8xkt3zvOFOWlLBf7WKYGBsSYSRtjjgrqPe2skp6VLLmKx5WbHHDNcW+6oACaurxGzeA==" + "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz", + "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", + "dev": true }, - "node_modules/@nuxt/kit": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.0.0.tgz", - "integrity": "sha512-7ZsOLt5s9a0ZleAIzmoD70JwkZf5ti6bDdxl6f8ew7Huxz+ni/oRfTPTX9TrORXsgW5CvDt6Q9M7IJNPkAN/Iw==", + "node_modules/@iconify/utils": { + "version": "2.1.32", + "resolved": "https://registry.npmjs.org/@iconify/utils/-/utils-2.1.32.tgz", + "integrity": "sha512-LeifFZPPKu28O3AEDpYJNdEbvS4/ojAPyIW+pF/vUpJTYnbTiXUHkCh0bwgFRzKvdpb8H4Fbfd/742++MF4fPQ==", + "dev": true, "dependencies": { - "@nuxt/schema": "3.0.0", - "c12": "^1.0.1", - "consola": "^2.15.3", - "defu": "^6.1.1", - "globby": "^13.1.2", - "hash-sum": "^2.0.0", - "ignore": "^5.2.0", - "jiti": "^1.16.0", - "knitwork": "^1.0.0", - "lodash.template": "^4.5.0", - "mlly": "^1.0.0", - "pathe": "^1.0.0", - "pkg-types": "^1.0.1", - "scule": "^1.0.0", - "semver": "^7.3.8", - "unctx": "^2.1.0", - "unimport": "^1.0.1", - "untyped": "^1.0.0" + "@antfu/install-pkg": "^0.4.0", + "@antfu/utils": "^0.7.10", + "@iconify/types": "^2.0.0", + "debug": "^4.3.6", + "kolorist": "^1.8.0", + "local-pkg": "^0.5.0", + "mlly": "^1.7.1" + } + }, + "node_modules/@iconify/utils/node_modules/local-pkg": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", + "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", + "dev": true, + "dependencies": { + "mlly": "^1.4.2", + "pkg-types": "^1.0.3" }, "engines": { - "node": "^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/@nuxt/kit/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "node_modules/@iconify/vue": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@iconify/vue/-/vue-4.1.2.tgz", + "integrity": "sha512-CQnYqLiQD5LOAaXhBrmj1mdL2/NCJvwcC4jtW2Z8ukhThiFkLDkutarTOV2trfc9EXqUqRs0KqXOL9pZ/IyysA==", + "dev": true, "dependencies": { - "lru-cache": "^6.0.0" + "@iconify/types": "^2.0.0" }, - "bin": { - "semver": "bin/semver.js" + "funding": { + "url": "https://github.com/sponsors/cyberalien" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "vue": ">=3" } }, - "node_modules/@nuxt/schema": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.0.0.tgz", - "integrity": "sha512-5fwsidhs5NjFzR8sIzHMXO0WFGkI3tCH3ViANn2W4N5qCwoYZ0n1sZBkQ9Esn1VoEed6RsIlTpWrPZPVtqNkGQ==", + "node_modules/@intlify/bundle-utils": { + "version": "7.5.1", + "resolved": "https://registry.npmjs.org/@intlify/bundle-utils/-/bundle-utils-7.5.1.tgz", + "integrity": "sha512-UovJl10oBIlmYEcWw+VIHdKY5Uv5sdPG0b/b6bOYxGLln3UwB75+2dlc0F3Fsa0RhoznQ5Rp589/BZpABpE4Xw==", + "dev": true, "dependencies": { - "c12": "^1.0.1", - "create-require": "^1.1.1", - "defu": "^6.1.1", - "jiti": "^1.16.0", - "pathe": "^1.0.0", - "pkg-types": "^1.0.1", - "postcss-import-resolver": "^2.0.0", - "scule": "^1.0.0", - "std-env": "^3.3.1", - "ufo": "^1.0.0", - "unimport": "^1.0.1", - "untyped": "^1.0.0" + "@intlify/message-compiler": "^9.4.0", + "@intlify/shared": "^9.4.0", + "acorn": "^8.8.2", + "escodegen": "^2.1.0", + "estree-walker": "^2.0.2", + "jsonc-eslint-parser": "^2.3.0", + "magic-string": "^0.30.0", + "mlly": "^1.2.0", + "source-map-js": "^1.0.1", + "yaml-eslint-parser": "^1.2.2" }, "engines": { - "node": "^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" - } - }, - "node_modules/@nuxt/telemetry": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-2.1.8.tgz", - "integrity": "sha512-WCHRrcPKRosuHQi8CD5WfjiXGAyjOWVJpK77xS6wlg8zwziBPCqmVIQdr4QpFTGFO1Nrh4z26l1VnivKy22KFQ==", - "dependencies": { - "@nuxt/kit": "^3.0.0-rc.14", - "chalk": "^5.1.2", - "ci-info": "^3.6.1", - "consola": "^2.15.3", - "create-require": "^1.1.1", - "defu": "^6.1.1", - "destr": "^1.2.1", - "dotenv": "^16.0.3", - "fs-extra": "^10.1.0", - "git-url-parse": "^13.1.0", - "inquirer": "^9.1.4", - "is-docker": "^3.0.0", - "jiti": "^1.16.0", - "mri": "^1.2.0", - "nanoid": "^4.0.0", - "node-fetch": "^3.3.0", - "ohmyfetch": "^0.4.21", - "parse-git-config": "^3.0.0", - "rc9": "^2.0.0", - "std-env": "^3.3.1" + "node": ">= 14.16" }, - "bin": { - "nuxt-telemetry": "bin/nuxt-telemetry.mjs" + "peerDependenciesMeta": { + "petite-vue-i18n": { + "optional": true + }, + "vue-i18n": { + "optional": true + } } }, - "node_modules/@nuxt/telemetry/node_modules/chalk": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz", - "integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==", + "node_modules/@intlify/core": { + "version": "9.14.0", + "resolved": "https://registry.npmjs.org/@intlify/core/-/core-9.14.0.tgz", + "integrity": "sha512-lPZ78GkDFcppC9Ol8oruyPGJbBWvTYDTEAJBebDtGmDIeggDJAiR+XMbCPZAOeW4/XszcIeiGYKEx0BvQDjVTw==", + "dev": true, + "dependencies": { + "@intlify/core-base": "9.14.0", + "@intlify/shared": "9.14.0" + }, "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "node": ">= 16" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/kazupon" } }, - "node_modules/@nuxt/ui-templates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@nuxt/ui-templates/-/ui-templates-1.0.0.tgz", - "integrity": "sha512-jfpVHxi1AHfNO3D6iD1RJE6fx/7cAzekvG90poIzVawp/L+I4DNdy8pCgqBScJW4bfWOpHeLYbtQQlL/hPmkjw==" - }, - "node_modules/@nuxt/vite-builder": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@nuxt/vite-builder/-/vite-builder-3.0.0.tgz", - "integrity": "sha512-eMnpPpjHU8rGZcsJUksCuSX+6dpId03q8LOSStsm6rXzrNJtZIcwt0nBRTUaigckXIozX8ZNl5u2OPGUfUbMrw==", - "dependencies": { - "@nuxt/kit": "3.0.0", - "@rollup/plugin-replace": "^5.0.1", - "@vitejs/plugin-vue": "^3.2.0", - "@vitejs/plugin-vue-jsx": "^2.1.1", - "autoprefixer": "^10.4.13", - "chokidar": "^3.5.3", - "cssnano": "^5.1.14", - "defu": "^6.1.1", - "esbuild": "^0.15.14", - "escape-string-regexp": "^5.0.0", - "estree-walker": "^3.0.1", - "externality": "^1.0.0", - "fs-extra": "^10.1.0", - "get-port-please": "^2.6.1", - "h3": "^1.0.1", - "knitwork": "^1.0.0", - "magic-string": "^0.26.7", - "mlly": "^1.0.0", - "ohash": "^1.0.0", - "pathe": "^1.0.0", - "perfect-debounce": "^0.1.3", - "pkg-types": "^1.0.1", - "postcss": "^8.4.19", - "postcss-import": "^15.0.0", - "postcss-url": "^10.1.3", - "rollup": "^2.79.1", - "rollup-plugin-visualizer": "^5.8.3", - "ufo": "^1.0.0", - "unplugin": "^1.0.0", - "vite": "~3.2.4", - "vite-node": "^0.25.2", - "vite-plugin-checker": "^0.5.1", - "vue-bundle-renderer": "^1.0.0" - }, - "engines": { - "node": "^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + "node_modules/@intlify/core-base": { + "version": "9.14.0", + "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.14.0.tgz", + "integrity": "sha512-zJn0imh9HIsZZUtt9v8T16PeVstPv6bP2YzlrYJwoF8F30gs4brZBwW2KK6EI5WYKFi3NeqX6+UU4gniz5TkGg==", + "dependencies": { + "@intlify/message-compiler": "9.14.0", + "@intlify/shared": "9.14.0" }, - "peerDependencies": { - "vue": "^3.2.45" - } - }, - "node_modules/@nuxt/vite-builder/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "engines": { - "node": ">=12" + "node": ">= 16" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/kazupon" } }, - "node_modules/@nuxtjs/eslint-config": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/@nuxtjs/eslint-config/-/eslint-config-12.0.0.tgz", - "integrity": "sha512-ewenelo75x0eYEUK+9EBXjc/OopQCvdkmYmlZuoHq5kub/vtiRpyZ/autppwokpHUq8tiVyl2ejMakoiHiDTrg==", + "node_modules/@intlify/h3": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@intlify/h3/-/h3-0.5.0.tgz", + "integrity": "sha512-cgfrtD3qu3BPJ47gfZ35J2LJpI64Riic0K8NGgid5ilyPXRQTNY7mXlT/B+HZYQg1hmBxKa5G5HJXyAZ4R2H5A==", "dev": true, "dependencies": { - "eslint-config-standard": "^17.0.0", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-n": "^15.5.1", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^6.1.1", - "eslint-plugin-unicorn": "^44.0.2", - "eslint-plugin-vue": "^9.7.0", - "local-pkg": "^0.4.2" + "@intlify/core": "^9.8.0", + "@intlify/utils": "^0.12.0" }, - "peerDependencies": { - "eslint": "^8.23.0" + "engines": { + "node": ">= 18" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" } }, - "node_modules/@nuxtjs/eslint-config-typescript": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/@nuxtjs/eslint-config-typescript/-/eslint-config-typescript-12.0.0.tgz", - "integrity": "sha512-HJR0ho5MYuOCFjkL+eMX/VXbUwy36J12DUMVy+dj3Qz1GYHwX92Saxap3urFzr8oPkzzFiuOknDivfCeRBWakg==", - "dev": true, + "node_modules/@intlify/message-compiler": { + "version": "9.14.0", + "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.14.0.tgz", + "integrity": "sha512-sXNsoMI0YsipSXW8SR75drmVK56tnJHoYbPXUv2Cf9lz6FzvwsosFm6JtC1oQZI/kU+n7qx0qRrEWkeYFTgETA==", "dependencies": { - "@nuxtjs/eslint-config": "^12.0.0", - "@typescript-eslint/eslint-plugin": "^5.42.1", - "@typescript-eslint/parser": "^5.42.1", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-vue": "^9.7.0" + "@intlify/shared": "9.14.0", + "source-map-js": "^1.0.2" }, - "peerDependencies": { - "eslint": "^8.23.0" + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" } }, - "node_modules/@pkgr/utils": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", - "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "is-glob": "^4.0.3", - "open": "^8.4.0", - "picocolors": "^1.0.0", - "tiny-glob": "^0.2.9", - "tslib": "^2.4.0" - }, + "node_modules/@intlify/shared": { + "version": "9.14.0", + "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.14.0.tgz", + "integrity": "sha512-r+N8KRQL7LgN1TMTs1A2svfuAU0J94Wu9wWdJVJqYsoMMLIeJxrPjazihfHpmJqfgZq0ah3Y9Q4pgWV2O90Fyg==", "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + "node": ">= 16" }, "funding": { - "url": "https://opencollective.com/unts" + "url": "https://github.com/sponsors/kazupon" } }, - "node_modules/@rollup/plugin-alias": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-4.0.2.tgz", - "integrity": "sha512-1hv7dBOZZwo3SEupxn4UA2N0EDThqSSS+wI1St1TNTBtOZvUchyIClyHcnDcjjrReTPZ47Faedrhblv4n+T5UQ==", + "node_modules/@intlify/unplugin-vue-i18n": { + "version": "0.12.3", + "resolved": "https://registry.npmjs.org/@intlify/unplugin-vue-i18n/-/unplugin-vue-i18n-0.12.3.tgz", + "integrity": "sha512-0riPtSfTM58JmGNMmJho/aHD2z3K24BESYAmkLvKlo61/LbaPvnjYU1DbSbJEm6bSjE2oEjUj+di3QaYxXei/w==", + "dev": true, "dependencies": { - "slash": "^4.0.0" + "@intlify/bundle-utils": "^7.0.2", + "@intlify/shared": "9.3.0-beta.24", + "@rollup/pluginutils": "^5.0.2", + "@vue/compiler-sfc": "^3.2.47", + "debug": "^4.3.3", + "fast-glob": "^3.2.12", + "js-yaml": "^4.1.0", + "json5": "^2.2.3", + "pathe": "^1.0.0", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2", + "unplugin": "^1.1.0" }, "engines": { - "node": ">=14.0.0" + "node": ">= 14.16" }, "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" + "petite-vue-i18n": "*", + "vue-i18n": "*", + "vue-i18n-bridge": "*" }, "peerDependenciesMeta": { - "rollup": { + "petite-vue-i18n": { + "optional": true + }, + "vue-i18n": { + "optional": true + }, + "vue-i18n-bridge": { "optional": true } } }, - "node_modules/@rollup/plugin-commonjs": { - "version": "23.0.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-23.0.2.tgz", - "integrity": "sha512-e9ThuiRf93YlVxc4qNIurvv+Hp9dnD+4PjOqQs5vAYfcZ3+AXSrcdzXnVjWxcGQOa6KGJFcRZyUI3ktWLavFjg==", - "dependencies": { - "@rollup/pluginutils": "^5.0.1", - "commondir": "^1.0.1", - "estree-walker": "^2.0.2", - "glob": "^8.0.3", - "is-reference": "1.2.1", - "magic-string": "^0.26.4" - }, + "node_modules/@intlify/unplugin-vue-i18n/node_modules/@intlify/shared": { + "version": "9.3.0-beta.24", + "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.3.0-beta.24.tgz", + "integrity": "sha512-AKxJ8s7eKIQWkNaf4wyyoLRwf4puCuQgjSChlDJm5JBEt6T8HGgnYTJLRXu6LD/JACn3Qwu6hM/XRX1c9yvjmQ==", + "dev": true, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^2.68.0||^3.0.0" + "node": ">= 16" }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/kazupon" } }, - "node_modules/@rollup/plugin-commonjs/node_modules/@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - }, + "node_modules/@intlify/utils": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@intlify/utils/-/utils-0.12.0.tgz", + "integrity": "sha512-yCBNcuZQ49iInqmWC2xfW0rgEQyNtCM8C8KcWKTXxyscgUE1+48gjLgZZqP75MjhlApxwph7ZMWLqyABkSgxQA==", + "dev": true, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" + "node": ">= 18" }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/kazupon" } }, - "node_modules/@rollup/plugin-commonjs/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + "node_modules/@ioredis/commands": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz", + "integrity": "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==" }, - "node_modules/@rollup/plugin-inject": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-5.0.2.tgz", - "integrity": "sha512-zRthPC/sZ2OaQwPh2LvFn0A+3SyMAZR1Vqsp89mWkIuGXKswT8ty1JWj1pf7xdZvft4gHZaCuhdopuiCwjclWg==", + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "dependencies": { - "@rollup/pluginutils": "^5.0.1", - "estree-walker": "^2.0.2", - "magic-string": "^0.26.4" + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" }, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "node": ">=12" } }, - "node_modules/@rollup/plugin-inject/node_modules/@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" + "node": ">=12" }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/@rollup/plugin-inject/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/@rollup/plugin-json": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-5.0.1.tgz", - "integrity": "sha512-QCwhZZLvM8nRcTHyR1vOgyTMiAnjiNj1ebD/BMRvbO1oc/z14lZH6PfxXeegee2B6mky/u9fia4fxRM4TqrUaw==", - "dependencies": { - "@rollup/pluginutils": "^5.0.1" - }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" + "node": ">=12" }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@rollup/plugin-json/node_modules/@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" + "node": ">=12" }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@rollup/plugin-json/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/@rollup/plugin-node-resolve": { - "version": "15.0.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.0.1.tgz", - "integrity": "sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==", + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dependencies": { - "@rollup/pluginutils": "^5.0.1", - "@types/resolve": "1.20.2", - "deepmerge": "^4.2.2", - "is-builtin-module": "^3.2.0", - "is-module": "^1.0.0", - "resolve": "^1.22.1" + "ansi-regex": "^6.0.1" }, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^2.78.0||^3.0.0" + "node": ">=12" }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/@rollup/plugin-node-resolve/node_modules/@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" + "node": ">=12" }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/@rollup/plugin-node-resolve/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "engines": { + "node": ">=8" + } }, - "node_modules/@rollup/plugin-replace": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-5.0.1.tgz", - "integrity": "sha512-Z3MfsJ4CK17BfGrZgvrcp/l6WXoKb0kokULO+zt/7bmcyayokDaQ2K3eDJcRLCTAlp5FPI4/gz9MHAsosz4Rag==", + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dependencies": { - "@rollup/pluginutils": "^5.0.1", - "magic-string": "^0.26.4" + "@sinclair/typebox": "^0.27.8" }, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/@rollup/plugin-replace/node_modules/@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "node": ">=6.0.0" } }, - "node_modules/@rollup/plugin-replace/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "engines": { + "node": ">=6.0.0" + } }, - "node_modules/@rollup/plugin-wasm": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-wasm/-/plugin-wasm-6.0.1.tgz", - "integrity": "sha512-a5yRknFQG/QGhb1xGkazWXgjpsv0hhWlx34irsf5adMEo55NdpzhZLg+jx49u+bzH6ekktuFg2WKA1RAF+WEDQ==", + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "node": ">=6.0.0" } }, - "node_modules/@rollup/pluginutils": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", - "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", - "dev": true, + "node_modules/@jridgewell/source-map": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", + "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", "dependencies": { - "estree-walker": "^2.0.1", - "picomatch": "^2.2.2" - }, - "engines": { - "node": ">= 8.0.0" + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25" } }, - "node_modules/@rollup/pluginutils/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==" }, - "node_modules/@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "engines": { - "node": ">=10.13.0" + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "node_modules/@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", - "dev": true - }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "node_modules/@types/node": { - "version": "18.11.9", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz", - "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" - }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", - "dev": true - }, - "node_modules/@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", - "dev": true - }, - "node_modules/@types/resolve": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", - "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==" + "node_modules/@kwsites/file-exists": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz", + "integrity": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==", + "dependencies": { + "debug": "^4.1.1" + } }, - "node_modules/@types/semver": { - "version": "7.3.13", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", - "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", - "dev": true + "node_modules/@kwsites/promise-deferred": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz", + "integrity": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==" }, - "node_modules/@types/web-bluetooth": { - "version": "0.0.16", - "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz", - "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==" + "node_modules/@mapbox/node-pre-gyp": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", + "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", + "dependencies": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" + } }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.46.1.tgz", - "integrity": "sha512-YpzNv3aayRBwjs4J3oz65eVLXc9xx0PDbIRisHj+dYhvBn02MjYOD96P8YGiWEIFBrojaUjxvkaUpakD82phsA==", - "dev": true, + "node_modules/@mapbox/node-pre-gyp/node_modules/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==", "dependencies": { - "@typescript-eslint/scope-manager": "5.46.1", - "@typescript-eslint/type-utils": "5.46.1", - "@typescript-eslint/utils": "5.46.1", - "debug": "^4.3.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "regexpp": "^3.2.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "semver": "^6.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^5.0.0", - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, + "node_modules/@mapbox/node-pre-gyp/node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@mapbox/node-pre-gyp/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "bin": { "semver": "bin/semver.js" }, @@ -1655,4096 +1607,4785 @@ "node": ">=10" } }, - "node_modules/@typescript-eslint/parser": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.46.1.tgz", - "integrity": "sha512-RelQ5cGypPh4ySAtfIMBzBGyrNerQcmfA1oJvPj5f+H4jI59rl9xxpn4bonC0tQvUKOEN7eGBFWxFLK3Xepneg==", + "node_modules/@mdi/font": { + "version": "7.4.47", + "resolved": "https://registry.npmjs.org/@mdi/font/-/font-7.4.47.tgz", + "integrity": "sha512-43MtGpd585SNzHZPcYowu/84Vz2a2g31TvPMTm9uTiCSWzaheQySUcSyUH/46fPnuPQWof2yd0pGBtzee/IQWw==", + "dev": true + }, + "node_modules/@miyaneee/rollup-plugin-json5": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@miyaneee/rollup-plugin-json5/-/rollup-plugin-json5-1.2.0.tgz", + "integrity": "sha512-JjTIaXZp9WzhUHpElrqPnl1AzBi/rvRs065F71+aTmlqvTMVkdbjZ8vfFl4nRlgJy+TPBw69ZK4pwFdmOAt4aA==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "5.46.1", - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/typescript-estree": "5.46.1", - "debug": "^4.3.4" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "@rollup/pluginutils": "^5.1.0", + "json5": "^2.2.3" }, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "rollup": "^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0" } }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.46.1.tgz", - "integrity": "sha512-iOChVivo4jpwUdrJZyXSMrEIM/PvsbbDOX1y3UCKjSgWn+W89skxWaYXACQfxmIGhPVpRWK/VWPYc+bad6smIA==", - "dev": true, + "node_modules/@netlify/functions": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-2.8.1.tgz", + "integrity": "sha512-+6wtYdoz0yE06dSa9XkP47tw5zm6g13QMeCwM3MmHx1vn8hzwFa51JtmfraprdkL7amvb7gaNM+OOhQU1h6T8A==", "dependencies": { - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/visitor-keys": "5.46.1" + "@netlify/serverless-functions-api": "1.19.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=14.0.0" } }, - "node_modules/@typescript-eslint/type-utils": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.46.1.tgz", - "integrity": "sha512-V/zMyfI+jDmL1ADxfDxjZ0EMbtiVqj8LUGPAGyBkXXStWmCUErMpW873zEHsyguWCuq2iN4BrlWUkmuVj84yng==", - "dev": true, + "node_modules/@netlify/node-cookies": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@netlify/node-cookies/-/node-cookies-0.1.0.tgz", + "integrity": "sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==", + "engines": { + "node": "^14.16.0 || >=16.0.0" + } + }, + "node_modules/@netlify/serverless-functions-api": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.19.1.tgz", + "integrity": "sha512-2KYkyluThg1AKfd0JWI7FzpS4A/fzVVGYIf6AM4ydWyNj8eI/86GQVLeRgDoH7CNOxt243R5tutWlmHpVq0/Ew==", "dependencies": { - "@typescript-eslint/typescript-estree": "5.46.1", - "@typescript-eslint/utils": "5.46.1", - "debug": "^4.3.4", - "tsutils": "^3.21.0" + "@netlify/node-cookies": "^0.1.0", + "urlpattern-polyfill": "8.0.2" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "*" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=18.0.0" } }, - "node_modules/@typescript-eslint/types": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.46.1.tgz", - "integrity": "sha512-Z5pvlCaZgU+93ryiYUwGwLl9AQVB/PQ1TsJ9NZ/gHzZjN7g9IAn6RSDkpCV8hqTwAiaj6fmCcKSQeBPlIpW28w==", + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "dependencies": { + "eslint-scope": "5.1.1" } }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.46.1.tgz", - "integrity": "sha512-j9W4t67QiNp90kh5Nbr1w92wzt+toiIsaVPnEblB2Ih2U9fqBTyqV9T3pYWZBRt6QoMh/zVWP59EpuCjc4VRBg==", - "dev": true, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dependencies": { - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/visitor-keys": "5.46.1", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">= 8" } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 8" } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" }, "engines": { - "node": ">=10" + "node": ">= 8" } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "node_modules/@nolyfill/is-core-module": { + "version": "1.0.39", + "resolved": "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz", + "integrity": "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==", "dev": true, "engines": { - "node": ">=8" + "node": ">=12.4.0" } }, - "node_modules/@typescript-eslint/utils": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.46.1.tgz", - "integrity": "sha512-RBdBAGv3oEpFojaCYT4Ghn4775pdjvwfDOfQ2P6qzNVgQOVrnSPe5/Pb88kv7xzYQjoio0eKHKB9GJ16ieSxvA==", - "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.46.1", - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/typescript-estree": "5.46.1", - "eslint-scope": "^5.1.1", - "eslint-utils": "^3.0.0", - "semver": "^7.3.7" + "node_modules/@nuxt/devalue": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.2.tgz", + "integrity": "sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==" + }, + "node_modules/@nuxt/devtools": { + "version": "1.3.14", + "resolved": "https://registry.npmjs.org/@nuxt/devtools/-/devtools-1.3.14.tgz", + "integrity": "sha512-ebeVWBisXbhJ7begAZTgSDF8cPbExHv4RPDb9fWTMI1YoVVxX+elqUPw0K6T5Yi4atdGhyxRtGMqjikl7QKp9w==", + "dependencies": { + "@antfu/utils": "^0.7.10", + "@nuxt/devtools-kit": "1.3.14", + "@nuxt/devtools-wizard": "1.3.14", + "@nuxt/kit": "^3.12.4", + "@vue/devtools-core": "7.3.3", + "@vue/devtools-kit": "7.3.3", + "birpc": "^0.2.17", + "consola": "^3.2.3", + "cronstrue": "^2.50.0", + "destr": "^2.0.3", + "error-stack-parser-es": "^0.1.5", + "execa": "^7.2.0", + "fast-glob": "^3.3.2", + "fast-npm-meta": "^0.2.2", + "flatted": "^3.3.1", + "get-port-please": "^3.1.2", + "hookable": "^5.5.3", + "image-meta": "^0.2.1", + "is-installed-globally": "^1.0.0", + "launch-editor": "^2.8.1", + "local-pkg": "^0.5.0", + "magicast": "^0.3.4", + "nypm": "^0.3.9", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.1.3", + "rc9": "^2.1.2", + "scule": "^1.3.0", + "semver": "^7.6.3", + "simple-git": "^3.25.0", + "sirv": "^2.0.4", + "unimport": "^3.10.1", + "vite-plugin-inspect": "^0.8.6", + "vite-plugin-vue-inspector": "^5.1.3", + "which": "^3.0.1", + "ws": "^8.18.0" }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "bin": { + "devtools": "cli.mjs" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependencies": { + "vite": "*" + } + }, + "node_modules/@nuxt/devtools-kit": { + "version": "1.3.14", + "resolved": "https://registry.npmjs.org/@nuxt/devtools-kit/-/devtools-kit-1.3.14.tgz", + "integrity": "sha512-mLPuCf5nFYLm/1JD0twt8qfFGwoVhTRA4Zx9CPiyWCQNf7XJXb3TfhCm89vHpcPP+9T6ulZxRJp+JZETjXY8+A==", + "dependencies": { + "@nuxt/kit": "^3.12.4", + "@nuxt/schema": "^3.12.4", + "execa": "^7.2.0" }, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "vite": "*" } }, - "node_modules/@typescript-eslint/utils/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "node_modules/@nuxt/devtools-ui-kit": { + "version": "1.3.14", + "resolved": "https://registry.npmjs.org/@nuxt/devtools-ui-kit/-/devtools-ui-kit-1.3.14.tgz", + "integrity": "sha512-4z8eo77MCDjeNQ8NUSVg3dmfh7QUFqFJZ9m6fdwLjPjjNrSvQn33g4blyQYWhvuRE22/uRGm5X0/HCHa4C5nTQ==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" + "@iconify-json/carbon": "^1.1.37", + "@iconify-json/logos": "^1.1.44", + "@iconify-json/ri": "^1.1.22", + "@iconify-json/tabler": "^1.1.120", + "@nuxt/devtools-kit": "1.3.14", + "@nuxt/kit": "^3.12.4", + "@unocss/core": "^0.62.2", + "@unocss/nuxt": "^0.62.2", + "@unocss/preset-attributify": "^0.62.2", + "@unocss/preset-icons": "^0.62.2", + "@unocss/preset-mini": "^0.62.2", + "@unocss/reset": "^0.62.2", + "@vueuse/core": "^11.0.1", + "@vueuse/integrations": "^11.0.1", + "@vueuse/nuxt": "^11.0.1", + "defu": "^6.1.4", + "focus-trap": "^7.5.4", + "splitpanes": "^3.1.5", + "unocss": "^0.62.2", + "v-lazy-show": "^0.2.4" }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "peerDependencies": { + "@nuxt/devtools": "1.3.14" } }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.46.1.tgz", - "integrity": "sha512-jczZ9noovXwy59KjRTk1OftT78pwygdcmCuBf8yMoWt/8O8l+6x2LSEze0E4TeepXK4MezW3zGSyoDRZK7Y9cg==", + "node_modules/@nuxt/devtools-ui-kit/node_modules/@vueuse/core": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-11.0.3.tgz", + "integrity": "sha512-RENlh64+SYA9XMExmmH1a3TPqeIuJBNNB/63GT35MZI+zpru3oMRUA6cEFr9HmGqEgUisurwGwnIieF6qu3aXw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.46.1", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "@types/web-bluetooth": "^0.0.20", + "@vueuse/metadata": "11.0.3", + "@vueuse/shared": "11.0.3", + "vue-demi": ">=0.14.10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "node_modules/@nuxt/devtools-ui-kit/node_modules/@vueuse/metadata": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-11.0.3.tgz", + "integrity": "sha512-+FtbO4SD5WpsOcQTcC0hAhNlOid6QNLzqedtquTtQ+CRNBoAt9GuV07c6KNHK1wCmlq8DFPwgiLF2rXwgSHX5Q==", "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/@unhead/dom": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@unhead/dom/-/dom-1.0.4.tgz", - "integrity": "sha512-Mzkevk50k5xQo6mIcNcKGKJ4R7tYyCg8ZN5NfmiUXIfvjaM4zWEZK8DhZNbQ8/548oO6Eq2Y73+53W8rLsSaoQ==", + "node_modules/@nuxt/devtools-ui-kit/node_modules/@vueuse/nuxt": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/nuxt/-/nuxt-11.0.3.tgz", + "integrity": "sha512-1tZGM9lvFl6HqmSQNM6hsHbAzLkBitoh8RsVC8kIG/93d3Pb5dEqUdt1k+OfHyR8V2rfSOwCfJx+wlUTlY0A2g==", + "dev": true, "dependencies": { - "@unhead/schema": "1.0.4" + "@nuxt/kit": "^3.13.0", + "@vueuse/core": "11.0.3", + "@vueuse/metadata": "11.0.3", + "local-pkg": "^0.5.0", + "vue-demi": ">=0.14.10" }, "funding": { - "url": "https://github.com/sponsors/harlan-zw" + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "nuxt": "^3.0.0" } }, - "node_modules/@unhead/schema": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@unhead/schema/-/schema-1.0.4.tgz", - "integrity": "sha512-bCkwV+GkAQN5yByelaeASmLVgdXypMC1O3xChW8oAC7ySz/ZqV9nXPt1Gx6jrNX4wL7Vbv3eCQ8jtB3QFH92ag==", + "node_modules/@nuxt/devtools-ui-kit/node_modules/@vueuse/shared": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-11.0.3.tgz", + "integrity": "sha512-0rY2m6HS5t27n/Vp5cTDsKTlNnimCqsbh/fmT2LgE+aaU42EMfXo8+bNX91W9I7DDmxfuACXMmrd7d79JxkqWA==", + "dev": true, "dependencies": { - "@zhead/schema": "^1.0.4", - "hookable": "^5.4.2" + "vue-demi": ">=0.14.10" }, "funding": { - "url": "https://github.com/sponsors/harlan-zw" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/@unhead/ssr": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@unhead/ssr/-/ssr-1.0.4.tgz", - "integrity": "sha512-/uyJLBGM3OfemBHt9hWvQOMpbWaMjJCns2WmYcuiOE6EFNy68SjSzHbm0rYkarhZWYZqxy0Sq6zuzVsM0Gi15Q==", + "node_modules/@nuxt/devtools-ui-kit/node_modules/local-pkg": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", + "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", + "dev": true, "dependencies": { - "@unhead/schema": "1.0.4" + "mlly": "^1.4.2", + "pkg-types": "^1.0.3" + }, + "engines": { + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/harlan-zw" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/@unhead/vue": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@unhead/vue/-/vue-1.0.4.tgz", - "integrity": "sha512-dW4FY4SRNaoGcFXuk6dU2Fp7fFHluBZqdOxpekMKO3q4zn+sOcnqHdzDmSnXPgoqr4huumnG8zNjVsuyRQ0+Mg==", - "dependencies": { - "@unhead/schema": "1.0.4", - "hookable": "^5.4.2" + "node_modules/@nuxt/devtools-ui-kit/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/harlan-zw" + "url": "https://github.com/sponsors/antfu" }, "peerDependencies": { - "vue": ">=2.7 || >=3" + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } } }, - "node_modules/@vercel/nft": { - "version": "0.22.1", - "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.1.tgz", - "integrity": "sha512-lYYZIoxRurqDOSoVIdBicGnpUIpfyaS5qVjdPq+EfI285WqtZK3NK/dyCkiyBul+X2U2OEhRyeMdXPCHGJbohw==", + "node_modules/@nuxt/devtools-wizard": { + "version": "1.3.14", + "resolved": "https://registry.npmjs.org/@nuxt/devtools-wizard/-/devtools-wizard-1.3.14.tgz", + "integrity": "sha512-5kLB53/7YUME6Y8byrOxRhl0hXWm05jPStJd1CJHKDcGrp+hjxYZaSgEwYtEIQ0A1GF04rfL4bJ+qIL+7e0+9Q==", "dependencies": { - "@mapbox/node-pre-gyp": "^1.0.5", - "acorn": "^8.6.0", - "async-sema": "^3.1.1", - "bindings": "^1.4.0", - "estree-walker": "2.0.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.2", - "node-gyp-build": "^4.2.2", - "resolve-from": "^5.0.0", - "rollup-pluginutils": "^2.8.2" + "consola": "^3.2.3", + "diff": "^5.2.0", + "execa": "^7.2.0", + "global-directory": "^4.0.1", + "magicast": "^0.3.4", + "pathe": "^1.1.2", + "pkg-types": "^1.1.3", + "prompts": "^2.4.2", + "rc9": "^2.1.2", + "semver": "^7.6.3" }, "bin": { - "nft": "out/cli.js" + "devtools-wizard": "cli.mjs" } }, - "node_modules/@vercel/nft/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + "node_modules/@nuxt/devtools-wizard/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } }, - "node_modules/@vercel/nft/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/@nuxt/devtools/node_modules/local-pkg": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", + "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "mlly": "^1.4.2", + "pkg-types": "^1.0.3" }, "engines": { - "node": "*" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/@vercel/nft/node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "node_modules/@nuxt/devtools/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/@vitejs/plugin-vue": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-3.2.0.tgz", - "integrity": "sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==", - "engines": { - "node": "^14.18.0 || >=16.0.0" + "node_modules/@nuxt/devtools/node_modules/which": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", + "dependencies": { + "isexe": "^2.0.0" }, - "peerDependencies": { - "vite": "^3.0.0", - "vue": "^3.2.25" + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/@vitejs/plugin-vue-jsx": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-2.1.1.tgz", - "integrity": "sha512-JgDhxstQlwnHBvZ1BSnU5mbmyQ14/t5JhREc6YH5kWyu2QdAAOsLF6xgHoIWarj8tddaiwFrNzLbWJPudpXKYA==", - "dependencies": { - "@babel/core": "^7.19.6", - "@babel/plugin-transform-typescript": "^7.20.0", - "@vue/babel-plugin-jsx": "^1.1.1" + "node_modules/@nuxt/kit": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.13.0.tgz", + "integrity": "sha512-gbhSbDvYfkGQ0R2ztqTLQLHRMv+7g50kAKKuN6mbF4tL9jg7NPnQ8bAarn2I4Qx8xtmwO+qY1ABkmYMn5S1CpA==", + "dependencies": { + "@nuxt/schema": "3.13.0", + "c12": "^1.11.1", + "consola": "^3.2.3", + "defu": "^6.1.4", + "destr": "^2.0.3", + "globby": "^14.0.2", + "hash-sum": "^2.0.0", + "ignore": "^5.3.2", + "jiti": "^1.21.6", + "klona": "^2.0.6", + "knitwork": "^1.1.0", + "mlly": "^1.7.1", + "pathe": "^1.1.2", + "pkg-types": "^1.1.3", + "scule": "^1.3.0", + "semver": "^7.6.3", + "ufo": "^1.5.4", + "unctx": "^2.3.1", + "unimport": "^3.11.0", + "untyped": "^1.4.2" }, "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^3.0.0", - "vue": "^3.0.0" + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/@volar/language-core": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.0.13.tgz", - "integrity": "sha512-aJhRiNjKFgLLB3nRJOfAeyle4StnEQgOKa0UpJU+k5EZd3QdiMfQmekXjxYeQj7NOZNQU7zCBEIvQ3gy15I7tA==", - "dev": true, - "dependencies": { - "@volar/source-map": "1.0.13", - "@vue/reactivity": "^3.2.45", - "muggle-string": "^0.1.0" + "node_modules/@nuxt/kit/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@volar/source-map": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.0.13.tgz", - "integrity": "sha512-dU0plR9BS+bLs7u4chWay+VEIFTrLF15rG2634lGcu7o+z01bRO1U2cegZuIPy46SNkN3ONErLHwS09NBM+Ucg==", - "dev": true, + "node_modules/@nuxt/schema": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.13.0.tgz", + "integrity": "sha512-JBGSjF9Hd8guvTV2312eM1RulCMJc50yR3CeMZPLDsI02A8TXQnABS8EbgvGRvxD43q/ITjj21B2ffG1wEVrnQ==", "dependencies": { - "muggle-string": "^0.1.0" + "compatx": "^0.1.8", + "consola": "^3.2.3", + "defu": "^6.1.4", + "hookable": "^5.5.3", + "pathe": "^1.1.2", + "pkg-types": "^1.1.3", + "scule": "^1.3.0", + "std-env": "^3.7.0", + "ufo": "^1.5.4", + "uncrypto": "^0.1.3", + "unimport": "^3.11.0", + "untyped": "^1.4.2" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/@volar/typescript": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.0.13.tgz", - "integrity": "sha512-CfJ4higRZrLDAHVGY84gZ444ZUcA3ktPqVMW0fM3mgHDbzYViB3/tsvXOtZk76D3HK2ap6n4cDwBSv3cY4xqlg==", - "dev": true, + "node_modules/@nuxt/telemetry": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-2.5.4.tgz", + "integrity": "sha512-KH6wxzsNys69daSO0xUv0LEBAfhwwjK1M+0Cdi1/vxmifCslMIY7lN11B4eywSfscbyVPAYJvANyc7XiVPImBQ==", "dependencies": { - "@volar/language-core": "1.0.13" + "@nuxt/kit": "^3.11.2", + "ci-info": "^4.0.0", + "consola": "^3.2.3", + "create-require": "^1.1.1", + "defu": "^6.1.4", + "destr": "^2.0.3", + "dotenv": "^16.4.5", + "git-url-parse": "^14.0.0", + "is-docker": "^3.0.0", + "jiti": "^1.21.0", + "mri": "^1.2.0", + "nanoid": "^5.0.7", + "ofetch": "^1.3.4", + "parse-git-config": "^3.0.0", + "pathe": "^1.1.2", + "rc9": "^2.1.2", + "std-env": "^3.7.0" + }, + "bin": { + "nuxt-telemetry": "bin/nuxt-telemetry.mjs" } }, - "node_modules/@volar/vue-language-core": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@volar/vue-language-core/-/vue-language-core-1.0.13.tgz", - "integrity": "sha512-DRUg7yk4w2+5XFk8LS1dbXEM0na2uAddOj3KWHROPQmn78pfgXEH3r0NGDCnxElWJX5Y16iameisOjtOhevxog==", - "dev": true, - "dependencies": { - "@volar/language-core": "1.0.13", - "@volar/source-map": "1.0.13", - "@vue/compiler-dom": "^3.2.45", - "@vue/compiler-sfc": "^3.2.45", - "@vue/reactivity": "^3.2.45", - "@vue/shared": "^3.2.45", - "minimatch": "^5.1.0", - "vue-template-compiler": "^2.7.14" + "node_modules/@nuxt/telemetry/node_modules/ci-info": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz", + "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" } }, - "node_modules/@volar/vue-language-core/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } + "node_modules/@nuxt/ui-templates": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/@nuxt/ui-templates/-/ui-templates-1.3.4.tgz", + "integrity": "sha512-zjuslnkj5zboZGis5QpmR5gvRTx5N8Ha/Rll+RRT8YZhXVNBincifhZ9apUQ9f6T0xJE8IHPyVyPx6WokomdYw==" }, - "node_modules/@volar/vue-language-core/node_modules/minimatch": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz", - "integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" + "node_modules/@nuxt/vite-builder": { + "version": "3.11.2", + "resolved": "https://registry.npmjs.org/@nuxt/vite-builder/-/vite-builder-3.11.2.tgz", + "integrity": "sha512-eXTZsAAN4dPz4eA2UD5YU2kD/DqgfyQp1UYsIdCe6+PAVe1ifkUboBjbc0piR5+3qI/S/eqk3nzxRGbiYF7Ccg==", + "dependencies": { + "@nuxt/kit": "3.11.2", + "@rollup/plugin-replace": "^5.0.5", + "@vitejs/plugin-vue": "^5.0.4", + "@vitejs/plugin-vue-jsx": "^3.1.0", + "autoprefixer": "^10.4.19", + "clear": "^0.1.0", + "consola": "^3.2.3", + "cssnano": "^6.1.2", + "defu": "^6.1.4", + "esbuild": "^0.20.2", + "escape-string-regexp": "^5.0.0", + "estree-walker": "^3.0.3", + "externality": "^1.0.2", + "fs-extra": "^11.2.0", + "get-port-please": "^3.1.2", + "h3": "^1.11.1", + "knitwork": "^1.1.0", + "magic-string": "^0.30.9", + "mlly": "^1.6.1", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.0.3", + "postcss": "^8.4.38", + "rollup-plugin-visualizer": "^5.12.0", + "std-env": "^3.7.0", + "strip-literal": "^2.1.0", + "ufo": "^1.5.3", + "unenv": "^1.9.0", + "unplugin": "^1.10.1", + "vite": "^5.2.8", + "vite-node": "^1.4.0", + "vite-plugin-checker": "^0.6.4", + "vue-bundle-renderer": "^2.0.0" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "vue": "^3.3.4" } }, - "node_modules/@volar/vue-typescript": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@volar/vue-typescript/-/vue-typescript-1.0.13.tgz", - "integrity": "sha512-iEdkF5l6G10fv/G5hs7WcvtT48AT6y/Pm7pvafnB6SxPhm2uHQ+130x3zeWLMaUel5t6h5LBw2pFsF5Bh85QAQ==", - "dev": true, - "dependencies": { - "@volar/typescript": "1.0.13", - "@volar/vue-language-core": "1.0.13" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/aix-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", + "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vue/babel-helper-vue-transform-on": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz", - "integrity": "sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==" - }, - "node_modules/@vue/babel-plugin-jsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.1.tgz", - "integrity": "sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==", - "dependencies": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.0.0", - "@babel/template": "^7.0.0", - "@babel/traverse": "^7.0.0", - "@babel/types": "^7.0.0", - "@vue/babel-helper-vue-transform-on": "^1.0.2", - "camelcase": "^6.0.0", - "html-tags": "^3.1.0", - "svg-tags": "^1.0.0" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/android-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", + "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vue/compiler-core": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.45.tgz", - "integrity": "sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==", - "dependencies": { - "@babel/parser": "^7.16.4", - "@vue/shared": "3.2.45", - "estree-walker": "^2.0.2", - "source-map": "^0.6.1" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/android-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", + "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vue/compiler-core/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/@vue/compiler-dom": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.45.tgz", - "integrity": "sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==", - "dependencies": { - "@vue/compiler-core": "3.2.45", - "@vue/shared": "3.2.45" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/android-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", + "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vue/compiler-sfc": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.45.tgz", - "integrity": "sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==", - "dependencies": { - "@babel/parser": "^7.16.4", - "@vue/compiler-core": "3.2.45", - "@vue/compiler-dom": "3.2.45", - "@vue/compiler-ssr": "3.2.45", - "@vue/reactivity-transform": "3.2.45", - "@vue/shared": "3.2.45", - "estree-walker": "^2.0.2", - "magic-string": "^0.25.7", - "postcss": "^8.1.10", - "source-map": "^0.6.1" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/darwin-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vue/compiler-sfc/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/@vue/compiler-sfc/node_modules/magic-string": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", - "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", - "dependencies": { - "sourcemap-codec": "^1.4.8" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/darwin-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", + "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vue/compiler-ssr": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.45.tgz", - "integrity": "sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==", - "dependencies": { - "@vue/compiler-dom": "3.2.45", - "@vue/shared": "3.2.45" - } + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/freebsd-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", + "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/@vue/devtools-api": { - "version": "6.4.5", - "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.4.5.tgz", - "integrity": "sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ==" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/freebsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", + "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/@vue/reactivity": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.45.tgz", - "integrity": "sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==", - "dependencies": { - "@vue/shared": "3.2.45" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/linux-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", + "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vue/reactivity-transform": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.45.tgz", - "integrity": "sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==", - "dependencies": { - "@babel/parser": "^7.16.4", - "@vue/compiler-core": "3.2.45", - "@vue/shared": "3.2.45", - "estree-walker": "^2.0.2", - "magic-string": "^0.25.7" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/linux-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", + "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vue/reactivity-transform/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/linux-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", + "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/@vue/reactivity-transform/node_modules/magic-string": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", - "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", - "dependencies": { - "sourcemap-codec": "^1.4.8" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/linux-loong64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", + "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", + "cpu": [ + "loong64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vue/runtime-core": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.2.45.tgz", - "integrity": "sha512-gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A==", - "dependencies": { - "@vue/reactivity": "3.2.45", - "@vue/shared": "3.2.45" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/linux-mips64el": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", + "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", + "cpu": [ + "mips64el" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vue/runtime-dom": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.2.45.tgz", - "integrity": "sha512-cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA==", - "dependencies": { - "@vue/runtime-core": "3.2.45", - "@vue/shared": "3.2.45", - "csstype": "^2.6.8" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/linux-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", + "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vue/server-renderer": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.2.45.tgz", - "integrity": "sha512-ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g==", - "dependencies": { - "@vue/compiler-ssr": "3.2.45", - "@vue/shared": "3.2.45" - }, - "peerDependencies": { - "vue": "3.2.45" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/linux-riscv64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", + "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", + "cpu": [ + "riscv64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vue/shared": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.45.tgz", - "integrity": "sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/linux-s390x": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", + "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/@vuetify/loader-shared": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/@vuetify/loader-shared/-/loader-shared-1.7.0.tgz", - "integrity": "sha512-Db4K67wMhduDsbvdRBYkrYuomti+j0E/1vlz1lnDng5F9LYYBcXa60qypIazVGI6GX/CuY1vshN6XGtGQI4FKg==", - "dependencies": { - "find-cache-dir": "^3.3.2", - "upath": "^2.0.1" - }, - "peerDependencies": { - "vue": "^3.0.0", - "vuetify": "^3.0.0-beta.4" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/linux-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", + "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vueuse/core": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-9.6.0.tgz", - "integrity": "sha512-qGUcjKQXHgN+jqXEgpeZGoxdCbIDCdVPz3QiF1uyecVGbMuM63o96I1GjYx5zskKgRI0FKSNsVWM7rwrRMTf6A==", - "dependencies": { - "@types/web-bluetooth": "^0.0.16", - "@vueuse/metadata": "9.6.0", - "@vueuse/shared": "9.6.0", - "vue-demi": "*" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/netbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", + "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vueuse/core/node_modules/vue-demi": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz", - "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==", - "hasInstallScript": true, - "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" - }, + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/openbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", + "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "openbsd" + ], "engines": { "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" - }, - "peerDependencies": { - "@vue/composition-api": "^1.0.0-rc.1", - "vue": "^3.0.0-0 || ^2.6.0" - }, - "peerDependenciesMeta": { - "@vue/composition-api": { - "optional": true - } } }, - "node_modules/@vueuse/head": { - "version": "1.0.18", - "resolved": "https://registry.npmjs.org/@vueuse/head/-/head-1.0.18.tgz", - "integrity": "sha512-V3EuLoZFrMgvCQYSE0pJupYglZ0ID3rr/8ATIgnZNn+fjRrIEn8oAwAe8FRFAUKgBb0rZt+QY94PaDF6/HOLOQ==", - "dependencies": { - "@unhead/dom": "^1.0.4", - "@unhead/schema": "^1.0.4", - "@unhead/ssr": "^1.0.4", - "@unhead/vue": "^1.0.4" - }, - "peerDependencies": { - "vue": ">=2.7 || >=3" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/sunos-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", + "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vueuse/metadata": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-9.6.0.tgz", - "integrity": "sha512-sIC8R+kWkIdpi5X2z2Gk8TRYzmczDwHRhEFfCu2P+XW2JdPoXrziqsGpDDsN7ykBx4ilwieS7JUIweVGhvZ93w==", - "funding": { - "url": "https://github.com/sponsors/antfu" + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/win32-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", + "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "node_modules/@vueuse/nuxt": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/@vueuse/nuxt/-/nuxt-9.6.0.tgz", - "integrity": "sha512-r+ngzHijvrfn89KnwlFCSe/xzFCiuskwmxbDdzFtpcZ57RHqLPdUS34YYrDxt7XasM0vlD3dmLIKEH//btf7sw==", + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/win32-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", + "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@nuxt/vite-builder/node_modules/@esbuild/win32-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", + "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@nuxt/vite-builder/node_modules/@nuxt/kit": { + "version": "3.11.2", + "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.11.2.tgz", + "integrity": "sha512-yiYKP0ZWMW7T3TCmsv4H8+jEsB/nFriRAR8bKoSqSV9bkVYWPE36sf7JDux30dQ91jSlQG6LQkB3vCHYTS2cIg==", "dependencies": { - "@nuxt/kit": "^3.0.0-rc.13", - "@vueuse/core": "9.6.0", - "@vueuse/metadata": "9.6.0", - "local-pkg": "^0.4.2", - "vue-demi": "*" + "@nuxt/schema": "3.11.2", + "c12": "^1.10.0", + "consola": "^3.2.3", + "defu": "^6.1.4", + "globby": "^14.0.1", + "hash-sum": "^2.0.0", + "ignore": "^5.3.1", + "jiti": "^1.21.0", + "knitwork": "^1.1.0", + "mlly": "^1.6.1", + "pathe": "^1.1.2", + "pkg-types": "^1.0.3", + "scule": "^1.3.0", + "semver": "^7.6.0", + "ufo": "^1.5.3", + "unctx": "^2.3.1", + "unimport": "^3.7.1", + "untyped": "^1.4.2" }, - "funding": { - "url": "https://github.com/sponsors/antfu" + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/vite-builder/node_modules/@nuxt/schema": { + "version": "3.11.2", + "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.11.2.tgz", + "integrity": "sha512-Z0bx7N08itD5edtpkstImLctWMNvxTArsKXzS35ZuqyAyKBPcRjO1CU01slH0ahO30Gg9kbck3/RKNZPwfOjJg==", + "dependencies": { + "@nuxt/ui-templates": "^1.3.2", + "consola": "^3.2.3", + "defu": "^6.1.4", + "hookable": "^5.5.3", + "pathe": "^1.1.2", + "pkg-types": "^1.0.3", + "scule": "^1.3.0", + "std-env": "^3.7.0", + "ufo": "^1.5.3", + "unimport": "^3.7.1", + "untyped": "^1.4.2" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/vite-builder/node_modules/@vitejs/plugin-vue": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.1.2.tgz", + "integrity": "sha512-nY9IwH12qeiJqumTCLJLE7IiNx7HZ39cbHaysEUd+Myvbz9KAqd2yq+U01Kab1R/H1BmiyM2ShTYlNH32Fzo3A==", + "engines": { + "node": "^18.0.0 || >=20.0.0" }, "peerDependencies": { - "nuxt": "^3.0.0-rc.9" + "vite": "^5.0.0", + "vue": "^3.2.25" } }, - "node_modules/@vueuse/nuxt/node_modules/vue-demi": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz", - "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==", + "node_modules/@nuxt/vite-builder/node_modules/esbuild": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", "hasInstallScript": true, "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" + "esbuild": "bin/esbuild" }, "engines": { "node": ">=12" }, - "funding": { - "url": "https://github.com/sponsors/antfu" - }, - "peerDependencies": { - "@vue/composition-api": "^1.0.0-rc.1", - "vue": "^3.0.0-0 || ^2.6.0" + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" + } + }, + "node_modules/@nuxt/vite-builder/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "engines": { + "node": ">=12" }, - "peerDependenciesMeta": { - "@vue/composition-api": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@vueuse/shared": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-9.6.0.tgz", - "integrity": "sha512-/eDchxYYhkHnFyrb00t90UfjCx94kRHxc7J1GtBCqCG4HyPMX+krV9XJgVtWIsAMaxKVU4fC8NSUviG1JkwhUQ==", + "node_modules/@nuxt/vite-builder/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", "dependencies": { - "vue-demi": "*" + "@types/estree": "^1.0.0" + } + }, + "node_modules/@nuxt/vite-builder/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" }, - "funding": { - "url": "https://github.com/sponsors/antfu" + "engines": { + "node": ">=10" } }, - "node_modules/@vueuse/shared/node_modules/vue-demi": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz", - "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==", - "hasInstallScript": true, + "node_modules/@nuxt/vite-builder/node_modules/vite": { + "version": "5.4.2", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.2.tgz", + "integrity": "sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.41", + "rollup": "^4.20.0" + }, "bin": { - "vue-demi-fix": "bin/vue-demi-fix.js", - "vue-demi-switch": "bin/vue-demi-switch.js" + "vite": "bin/vite.js" }, "engines": { - "node": ">=12" + "node": "^18.0.0 || >=20.0.0" }, "funding": { - "url": "https://github.com/sponsors/antfu" + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" }, "peerDependencies": { - "@vue/composition-api": "^1.0.0-rc.1", - "vue": "^3.0.0-0 || ^2.6.0" + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" }, "peerDependenciesMeta": { - "@vue/composition-api": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { "optional": true } } }, - "node_modules/@zhead/schema": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@zhead/schema/-/schema-1.0.4.tgz", - "integrity": "sha512-v/CM22nH0TW9VU5IcRXlshwrMtsZPnFQWhcLBvpZjOJvfEmjl8cUb6OIJQJRR2WESNjjPW2Cji8mgL9XSVLjxA==", - "funding": { - "url": "https://github.com/sponsors/harlan-zw" + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" } }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" - }, - "node_modules/acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==", - "bin": { - "acorn": "bin/acorn" - }, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=0.4.0" + "node": ">=12" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "devOptional": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" } }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "dependencies": { - "debug": "4" - }, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">= 6.0.0" + "node": ">=12" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "devOptional": true, - "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" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" } }, - "node_modules/ansi-escapes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.0.0.tgz", - "integrity": "sha512-IG23inYII3dWlU2EyiAiGj6Bwal5GzsgPMwjYGvc1HPE2dgbj4ZB5ToWBKSquKw74nB3TIuOwaI6/jSULzfgrw==", - "dependencies": { - "type-fest": "^3.0.0" - }, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/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==", - "dependencies": { - "color-convert": "^1.9.0" - }, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 8" + "node": ">=12" } }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" - }, - "node_modules/arch": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/archiver": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.1.tgz", - "integrity": "sha512-8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w==", - "dependencies": { - "archiver-utils": "^2.1.0", - "async": "^3.2.3", - "buffer-crc32": "^0.2.1", - "readable-stream": "^3.6.0", - "readdir-glob": "^1.0.0", - "tar-stream": "^2.2.0", - "zip-stream": "^4.1.0" - }, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 10" + "node": ">=12" } }, - "node_modules/archiver-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz", - "integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==", - "dependencies": { - "glob": "^7.1.4", - "graceful-fs": "^4.2.0", - "lazystream": "^1.0.0", - "lodash.defaults": "^4.2.0", - "lodash.difference": "^4.5.0", - "lodash.flatten": "^4.4.0", - "lodash.isplainobject": "^4.0.6", - "lodash.union": "^4.6.0", - "normalize-path": "^3.0.0", - "readable-stream": "^2.0.0" - }, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 6" + "node": ">=12" } }, - "node_modules/archiver-utils/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=12" } }, - "node_modules/archiver-utils/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "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" + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/archiver-utils/node_modules/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==" - }, - "node_modules/archiver-utils/node_modules/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==", - "dependencies": { - "safe-buffer": "~5.1.0" + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" - }, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=10" + "node": ">=12" } }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "devOptional": true - }, - "node_modules/array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" - }, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/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, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - }, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "openbsd" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/async-sema": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", - "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==" + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - } + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" ], - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@nuxt/vite-builder/node_modules/vite/node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "hasInstallScript": true, "bin": { - "autoprefixer": "bin/autoprefixer" + "esbuild": "bin/esbuild" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">=12" }, - "peerDependencies": { - "postcss": "^8.1.0" + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" } }, - "node_modules/axios": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.1.3.tgz", - "integrity": "sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==", + "node_modules/@nuxtjs/eslint-config": { + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/@nuxtjs/eslint-config/-/eslint-config-12.0.0.tgz", + "integrity": "sha512-ewenelo75x0eYEUK+9EBXjc/OopQCvdkmYmlZuoHq5kub/vtiRpyZ/autppwokpHUq8tiVyl2ejMakoiHiDTrg==", + "dev": true, "dependencies": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" + "eslint-config-standard": "^17.0.0", + "eslint-plugin-import": "^2.26.0", + "eslint-plugin-n": "^15.5.1", + "eslint-plugin-node": "^11.1.0", + "eslint-plugin-promise": "^6.1.1", + "eslint-plugin-unicorn": "^44.0.2", + "eslint-plugin-vue": "^9.7.0", + "local-pkg": "^0.4.2" + }, + "peerDependencies": { + "eslint": "^8.23.0" } }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + "node_modules/@nuxtjs/eslint-config-typescript": { + "version": "12.1.0", + "resolved": "https://registry.npmjs.org/@nuxtjs/eslint-config-typescript/-/eslint-config-typescript-12.1.0.tgz", + "integrity": "sha512-l2fLouDYwdAvCZEEw7wGxOBj+i8TQcHFu3zMPTLqKuv1qu6WcZIr0uztkbaa8ND1uKZ9YPqKx6UlSOjM4Le69Q==", + "dev": true, + "dependencies": { + "@nuxtjs/eslint-config": "^12.0.0", + "@typescript-eslint/eslint-plugin": "^6.5.0", + "@typescript-eslint/parser": "^6.5.0", + "eslint-import-resolver-typescript": "^3.6.0", + "eslint-plugin-import": "^2.28.1", + "eslint-plugin-vue": "^9.17.0" + }, + "peerDependencies": { + "eslint": "^8.48.0" + } }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" + "node_modules/@nuxtjs/i18n": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/@nuxtjs/i18n/-/i18n-8.5.1.tgz", + "integrity": "sha512-rU+cGwX1lr5Jyd8lS1ulyTf0adGk6Q+G308Ig0SCrOTV07rHClkoUMpqAAo1Lc85C3Bgea2bFmseLYSfnVMm1A==", + "dev": true, + "dependencies": { + "@intlify/h3": "^0.5.0", + "@intlify/shared": "^9.9.0", + "@intlify/unplugin-vue-i18n": "^3.0.1", + "@intlify/utils": "^0.12.0", + "@miyaneee/rollup-plugin-json5": "^1.2.0", + "@nuxt/kit": "^3.12.4", + "@rollup/plugin-yaml": "^4.1.2", + "@vue/compiler-sfc": "^3.4.37", + "debug": "^4.3.5", + "defu": "^6.1.2", + "estree-walker": "^3.0.3", + "is-https": "^4.0.0", + "knitwork": "^1.1.0", + "magic-string": "^0.30.10", + "mlly": "^1.7.1", + "pathe": "^1.1.1", + "scule": "^1.1.1", + "sucrase": "^3.35.0", + "ufo": "^1.3.1", + "unplugin": "^1.10.1", + "vue-i18n": "^9.9.0", + "vue-router": "^4.4.0" + }, + "engines": { + "node": "^14.16.0 || >=16.11.0" + } + }, + "node_modules/@nuxtjs/i18n/node_modules/@intlify/unplugin-vue-i18n": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@intlify/unplugin-vue-i18n/-/unplugin-vue-i18n-3.0.1.tgz", + "integrity": "sha512-q1zJhA/WpoLBzAAuKA5/AEp0e+bMOM10ll/HxT4g1VAw/9JhC4TTobP9KobKH90JMZ4U2daLFlYQfKNd29lpqw==", + "dev": true, + "dependencies": { + "@intlify/bundle-utils": "^7.4.0", + "@intlify/shared": "^9.4.0", + "@rollup/pluginutils": "^5.1.0", + "@vue/compiler-sfc": "^3.2.47", + "debug": "^4.3.3", + "fast-glob": "^3.2.12", + "js-yaml": "^4.1.0", + "json5": "^2.2.3", + "pathe": "^1.0.0", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2", + "unplugin": "^1.1.0" + }, + "engines": { + "node": ">= 14.16" + }, + "peerDependencies": { + "petite-vue-i18n": "*", + "vue-i18n": "*", + "vue-i18n-bridge": "*" + }, + "peerDependenciesMeta": { + "petite-vue-i18n": { + "optional": true }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" + "vue-i18n": { + "optional": true }, - { - "type": "consulting", - "url": "https://feross.org/support" + "vue-i18n-bridge": { + "optional": true } - ] - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "engines": { - "node": ">=8" - } - }, - "node_modules/bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "dependencies": { - "file-uri-to-path": "1.0.0" - } - }, - "node_modules/bl": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", - "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", - "dependencies": { - "buffer": "^6.0.3", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" } }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/@nuxtjs/i18n/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "@types/estree": "^1.0.0" } }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/@nuxtjs/i18n/node_modules/vue-i18n": { + "version": "9.14.0", + "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.14.0.tgz", + "integrity": "sha512-LxmpRuCt2rI8gqU+kxeflRZMQn4D5+4M3oP3PWZdowW/ePJraHqhF7p4CuaME52mUxdw3Mmy2yAUKgfZYgCRjA==", + "dev": true, "dependencies": { - "fill-range": "^7.0.1" + "@intlify/core-base": "9.14.0", + "@intlify/shared": "9.14.0", + "@vue/devtools-api": "^6.5.0" }, "engines": { - "node": ">=8" + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" + }, + "peerDependencies": { + "vue": "^3.0.0" } }, - "node_modules/browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], + "node_modules/@parcel/watcher": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.4.1.tgz", + "integrity": "sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==", "dependencies": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" }, - "bin": { - "browserslist": "cli.js" + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.4.1", + "@parcel/watcher-darwin-arm64": "2.4.1", + "@parcel/watcher-darwin-x64": "2.4.1", + "@parcel/watcher-freebsd-x64": "2.4.1", + "@parcel/watcher-linux-arm-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-glibc": "2.4.1", + "@parcel/watcher-linux-arm64-musl": "2.4.1", + "@parcel/watcher-linux-x64-glibc": "2.4.1", + "@parcel/watcher-linux-x64-musl": "2.4.1", + "@parcel/watcher-win32-arm64": "2.4.1", + "@parcel/watcher-win32-ia32": "2.4.1", + "@parcel/watcher-win32-x64": "2.4.1" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.4.1.tgz", + "integrity": "sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.4.1.tgz", + "integrity": "sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "engines": { - "node": "*" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - }, - "node_modules/builtin-modules": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", - "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.4.1.tgz", + "integrity": "sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=6" + "node": ">= 10.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", - "dev": true, - "dependencies": { - "semver": "^7.0.0" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/builtins/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.4.1.tgz", + "integrity": "sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=10" - } - }, - "node_modules/busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "dependencies": { - "streamsearch": "^1.1.0" + "node": ">= 10.0.0" }, - "engines": { - "node": ">=10.16.0" - } - }, - "node_modules/c12": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/c12/-/c12-1.0.1.tgz", - "integrity": "sha512-EN9Rqix2q9X3PseFkUvRFZ/0fvncF35ZR5nykLDwv4Ml/Q1WYPLkcdqlrczFll2G9t4qmxgM4my3EF3IrRGl5Q==", - "dependencies": { - "defu": "^6.1.1", - "dotenv": "^16.0.3", - "gittar": "^0.1.1", - "jiti": "^1.16.0", - "mlly": "^1.0.0", - "pathe": "^1.0.0", - "pkg-types": "^1.0.1", - "rc9": "^2.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "dependencies": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.4.1.tgz", + "integrity": "sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "devOptional": true, + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.4.1.tgz", + "integrity": "sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.4.1.tgz", + "integrity": "sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=10" + "node": ">= 10.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/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==", - "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001434", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001434.tgz", - "integrity": "sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - } - ] - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "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" - }, + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.4.1.tgz", + "integrity": "sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=4" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.4.1.tgz", + "integrity": "sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" ], - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, "engines": { - "node": ">= 8.10.0" + "node": ">= 10.0.0" }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/@parcel/watcher-wasm": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-wasm/-/watcher-wasm-2.4.1.tgz", + "integrity": "sha512-/ZR0RxqxU/xxDGzbzosMjh4W6NdYFMqq2nvo2b8SLi7rsl/4jkL8S5stIikorNkdR50oVDvqb/3JT05WM+CRRA==", + "bundleDependencies": [ + "napi-wasm" + ], "dependencies": { - "is-glob": "^4.0.1" + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "napi-wasm": "^1.1.0" }, "engines": { - "node": ">= 6" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + "node_modules/@parcel/watcher-wasm/node_modules/napi-wasm": { + "version": "1.1.0", + "inBundle": true, + "license": "MIT" }, - "node_modules/ci-info": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.6.1.tgz", - "integrity": "sha512-up5ggbaDqOqJ4UqLKZ2naVkyqSJQgJi5lwD6b6mM748ysrghDBX0bx/qJTUHzw7zu6Mq4gycviSF5hJnwceD8w==", + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.4.1.tgz", + "integrity": "sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=8" - } - }, - "node_modules/clean-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", - "integrity": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==", - "dev": true, - "dependencies": { - "escape-string-regexp": "^1.0.5" + "node": ">= 10.0.0" }, - "engines": { - "node": ">=4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/cli-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", - "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", - "dependencies": { - "restore-cursor": "^4.0.0" - }, + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.4.1.tgz", + "integrity": "sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">= 10.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/cli-spinners": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz", - "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==", + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.4.1.tgz", + "integrity": "sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=6" + "node": ">= 10.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/cli-width": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.0.0.tgz", - "integrity": "sha512-ZksGS2xpa/bYkNzN3BAw1wEjsLV/ZKOf/CCrJ/QOBsxx6fOARIkwTutxp1XIOIohi6HKmOFjMoK/XaqDVUpEEw==", + "node_modules/@parcel/watcher/node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "bin": { + "detect-libc": "bin/detect-libc.js" + }, "engines": { - "node": ">= 12" + "node": ">=0.10" } }, - "node_modules/clipboardy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-3.0.0.tgz", - "integrity": "sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==", + "node_modules/@piwikpro/nuxt-piwik-pro": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@piwikpro/nuxt-piwik-pro/-/nuxt-piwik-pro-1.0.0.tgz", + "integrity": "sha512-tE+66M1xP8AS9h6cbWpu0rMbe/nK8htlWBIjeLN85VU/OibUrOE8UkDUDulyLQuPgpzwUw/kNq7QrcV5e4h4og==", "dependencies": { - "arch": "^2.2.0", - "execa": "^5.1.1", - "is-wsl": "^2.2.0" + "@piwikpro/vue-piwik-pro": "^1.2.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=18.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "nuxt": ">=3.0.0", + "vue": ">=3.0.0" } }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, + "node_modules/@piwikpro/tracking-base-library": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@piwikpro/tracking-base-library/-/tracking-base-library-1.2.0.tgz", + "integrity": "sha512-D3F29v0D77vPHGeVognfLYWrP/K6SfnukWERelxsiduFuRWPbKagMLqMxsxnw81QURhSy/CngAmjPBAM1jXAjg==", "engines": { - "node": ">=12" + "node": ">=18.0.0" } }, - "node_modules/cliui/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@piwikpro/vue-piwik-pro": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@piwikpro/vue-piwik-pro/-/vue-piwik-pro-1.2.0.tgz", + "integrity": "sha512-mhkhdUIgvub3pkzSKT8ReYXE9ONFmTlC6VGi1p76k3kCX4TPUUzNjSNZk3UEVV5+H7pQosPOHuhT5dKBfNh/Vg==", "dependencies": { - "color-convert": "^2.0.1" + "@piwikpro/tracking-base-library": "^1.2.0" }, "engines": { - "node": ">=8" + "node": ">=18.0.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "vue": "^3.0.0" } }, - "node_modules/cliui/node_modules/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==", - "dependencies": { - "color-name": "~1.1.4" - }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "optional": true, "engines": { - "node": ">=7.0.0" + "node": ">=14" } }, - "node_modules/cliui/node_modules/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==" + "node_modules/@pkgr/core": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } }, - "node_modules/cliui/node_modules/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==" + "node_modules/@polka/url": { + "version": "1.0.0-next.25", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.25.tgz", + "integrity": "sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==" }, - "node_modules/cliui/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/@rollup/plugin-alias": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-5.1.0.tgz", + "integrity": "sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "slash": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/cliui/node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, + "node_modules/@rollup/plugin-alias/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "node_modules/@rollup/plugin-commonjs": { + "version": "25.0.8", + "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.8.tgz", + "integrity": "sha512-ZEZWTK5n6Qde0to4vS9Mr5x/0UZoqCxPVR9KRUjU4kA2sO7GEUn1fop0DAwpO6z0Nw/kJON9bDmSxdWxO/TT1A==", + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "commondir": "^1.0.1", + "estree-walker": "^2.0.2", + "glob": "^8.0.3", + "is-reference": "1.2.1", + "magic-string": "^0.30.3" + }, "engines": { - "node": ">=0.8" + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.68.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/cluster-key-slot": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz", - "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/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==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - }, - "node_modules/colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==" - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "node_modules/@rollup/plugin-inject": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-5.0.5.tgz", + "integrity": "sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==", "dependencies": { - "delayed-stream": "~1.0.0" + "@rollup/pluginutils": "^5.0.1", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.3" }, "engines": { - "node": ">= 0.8" - } - }, - "node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "engines": { - "node": ">= 10" - } - }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" - }, - "node_modules/compress-commons": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.1.tgz", - "integrity": "sha512-QLdDLCKNV2dtoTorqgxngQCMA+gWXkM/Nwu7FpeBhk/RdkzimqC3jueb/FDmaZeXh+uby1jkBqE3xArsLBE5wQ==", - "dependencies": { - "buffer-crc32": "^0.2.13", - "crc32-stream": "^4.0.2", - "normalize-path": "^3.0.0", - "readable-stream": "^3.6.0" + "node": ">=14.0.0" }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "node_modules/consola": { - "version": "2.15.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", - "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "node_modules/cookie-es": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-0.5.0.tgz", - "integrity": "sha512-RyZrFi6PNpBFbIaQjXDlFIhFVqV42QeKSZX1yQIl6ihImq6vcHNGMtqQ/QzY3RMPuYSkvsRwtnt5M9NeYxKt0g==" - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, - "node_modules/crc-32": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", - "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", - "bin": { - "crc32": "bin/crc32.njs" + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, - "engines": { - "node": ">=0.8" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/crc32-stream": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.2.tgz", - "integrity": "sha512-DxFZ/Hk473b/muq1VJ///PMNLj0ZMnzye9thBpmjpJKCc5eMgB95aK8zCGrGfQ90cWo561Te6HK9D+j4KPdM6w==", + "node_modules/@rollup/plugin-json": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.1.0.tgz", + "integrity": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==", "dependencies": { - "crc-32": "^1.2.0", - "readable-stream": "^3.4.0" + "@rollup/pluginutils": "^5.1.0" }, "engines": { - "node": ">= 10" + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/@rollup/plugin-node-resolve": { + "version": "15.2.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz", + "integrity": "sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==", "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "@rollup/pluginutils": "^5.0.1", + "@types/resolve": "1.20.2", + "deepmerge": "^4.2.2", + "is-builtin-module": "^3.2.1", + "is-module": "^1.0.0", + "resolve": "^1.22.1" }, "engines": { - "node": ">= 8" - } - }, - "node_modules/css-declaration-sorter": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", - "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", - "engines": { - "node": "^10 || ^12 || >=14" + "node": ">=14.0.0" }, "peerDependencies": { - "postcss": "^8.0.9" - } - }, - "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" + "rollup": "^2.78.0||^3.0.0||^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "node_modules/@rollup/plugin-replace": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-5.0.7.tgz", + "integrity": "sha512-PqxSfuorkHz/SPpyngLyg5GCEkOcee9M1bkxiVDr41Pd61mqP1PLOoDPbpl44SB2mQGKwV/In74gqQmGITOhEQ==", "dependencies": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" + "@rollup/pluginutils": "^5.0.1", + "magic-string": "^0.30.3" }, "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "engines": { - "node": ">= 6" + "node": ">=14.0.0" }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "bin": { - "cssesc": "bin/cssesc" + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, - "engines": { - "node": ">=4" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/cssnano": { - "version": "5.1.14", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.14.tgz", - "integrity": "sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==", + "node_modules/@rollup/plugin-terser": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz", + "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==", "dependencies": { - "cssnano-preset-default": "^5.2.13", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" + "serialize-javascript": "^6.0.1", + "smob": "^1.0.0", + "terser": "^5.17.4" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" + "node": ">=14.0.0" }, "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/cssnano-preset-default": { - "version": "5.2.13", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz", - "integrity": "sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==", - "dependencies": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^3.1.0", - "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.0", - "postcss-convert-values": "^5.1.3", - "postcss-discard-comments": "^5.1.2", - "postcss-discard-duplicates": "^5.1.0", - "postcss-discard-empty": "^5.1.1", - "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.7", - "postcss-merge-rules": "^5.1.3", - "postcss-minify-font-values": "^5.1.0", - "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.4", - "postcss-minify-selectors": "^5.2.1", - "postcss-normalize-charset": "^5.1.0", - "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.1", - "postcss-normalize-repeat-style": "^5.1.1", - "postcss-normalize-string": "^5.1.0", - "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.1", - "postcss-normalize-url": "^5.1.0", - "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.3", - "postcss-reduce-initial": "^5.1.1", - "postcss-reduce-transforms": "^5.1.0", - "postcss-svgo": "^5.1.0", - "postcss-unique-selectors": "^5.1.1" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" + "rollup": "^2.0.0||^3.0.0||^4.0.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/cssnano-utils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", - "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "node_modules/@rollup/plugin-yaml": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-yaml/-/plugin-yaml-4.1.2.tgz", + "integrity": "sha512-RpupciIeZMUqhgFE97ba0s98mOFS7CWzN3EJNhJkqSv9XLlWYtwVdtE6cDw6ASOF/sZVFS7kRJXftaqM2Vakdw==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "js-yaml": "^4.1.0", + "tosource": "^2.0.0-alpha.3" + }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=14.0.0" }, "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", - "dependencies": { - "css-tree": "^1.1.2" + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/csstype": { - "version": "2.6.21", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", - "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" - }, - "node_modules/cuint": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", - "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==" - }, - "node_modules/data-uri-to-buffer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz", - "integrity": "sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==", - "engines": { - "node": ">= 12" + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/de-indent": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", - "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "node_modules/@rollup/pluginutils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.0.tgz", + "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", "dependencies": { - "ms": "2.1.2" + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^2.3.1" }, "engines": { - "node": ">=6.0" + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" }, "peerDependenciesMeta": { - "supports-color": { + "rollup": { "optional": true } } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "devOptional": true - }, - "node_modules/deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", - "engines": { - "node": ">=0.10.0" - } + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.21.0.tgz", + "integrity": "sha512-WTWD8PfoSAJ+qL87lE7votj3syLavxunWhzCnx3XFxFiI/BA/r3X7MUM8dVrH8rb2r4AiO8jJsr3ZjdaftmnfA==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "android" + ] }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.21.0.tgz", + "integrity": "sha512-a1sR2zSK1B4eYkiZu17ZUZhmUQcKjk2/j9Me2IDjk1GHW7LB5Z35LEzj9iJch6gtUfsnvZs1ZNyDW2oZSThrkA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ] }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", - "engines": { - "node": ">=8" - } + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.21.0.tgz", + "integrity": "sha512-zOnKWLgDld/svhKO5PD9ozmL6roy5OQ5T4ThvdYZLpiOhEGY+dp2NwUmxK0Ld91LrbjrvtNAE0ERBwjqhZTRAA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ] }, - "node_modules/define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", - "dev": true, - "dependencies": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.21.0.tgz", + "integrity": "sha512-7doS8br0xAkg48SKE2QNtMSFPFUlRdw9+votl27MvT46vo44ATBmdZdGysOevNELmZlfd+NEa0UYOA8f01WSrg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ] }, - "node_modules/defu": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.1.tgz", - "integrity": "sha512-aA964RUCsBt0FGoNIlA3uFgo2hO+WWC0fiC6DBps/0SFzkKcYoM/3CzVLIa5xSsrFjdioMdYgAIbwo80qp2MoA==" + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.21.0.tgz", + "integrity": "sha512-pWJsfQjNWNGsoCq53KjMtwdJDmh/6NubwQcz52aEwLEuvx08bzcy6tOUuawAOncPnxz/3siRtd8hiQ32G1y8VA==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", - "engines": { - "node": ">=0.4.0" - } + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.21.0.tgz", + "integrity": "sha512-efRIANsz3UHZrnZXuEvxS9LoCOWMGD1rweciD6uJQIx2myN3a8Im1FafZBzh7zk1RJ6oKcR16dU3UPldaKd83w==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.21.0.tgz", + "integrity": "sha512-ZrPhydkTVhyeGTW94WJ8pnl1uroqVHM3j3hjdquwAcWnmivjAwOYjTEAuEDeJvGX7xv3Z9GAvrBkEzCgHq9U1w==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/denque": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", - "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", - "engines": { - "node": ">=0.10" - } + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.21.0.tgz", + "integrity": "sha512-cfaupqd+UEFeURmqNP2eEvXqgbSox/LHOyN9/d2pSdV8xTrjdg3NgOFJCtc1vQ/jEke1qD0IejbBfxleBPHnPw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "engines": { - "node": ">= 0.8" - } + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.21.0.tgz", + "integrity": "sha512-ZKPan1/RvAhrUylwBXC9t7B2hXdpb/ufeu22pG2psV7RN8roOfGurEghw1ySmX/CmDDHNTDDjY3lo9hRlgtaHg==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/destr": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/destr/-/destr-1.2.1.tgz", - "integrity": "sha512-ud8w0qMLlci6iFG7CNgeRr8OcbUWMsbfjtWft1eJ5Luqrz/M8Ebqk/KCzne8rKUlIQWWfLv0wD6QHrqOf4GshA==" + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.21.0.tgz", + "integrity": "sha512-H1eRaCwd5E8eS8leiS+o/NqMdljkcb1d6r2h4fKSsCXQilLKArq6WS7XBLDu80Yz+nMqHVFDquwcVrQmGr28rg==", + "cpu": [ + "riscv64" + ], + "optional": true, + "os": [ + "linux" + ] }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.21.0.tgz", + "integrity": "sha512-zJ4hA+3b5tu8u7L58CCSI0A9N1vkfwPhWd/puGXwtZlsB5bTkwDNW/+JCU84+3QYmKpLi+XvHdmrlwUwDA6kqw==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.21.0.tgz", + "integrity": "sha512-e2hrvElFIh6kW/UNBQK/kzqMNY5mO+67YtEh9OA65RM5IJXYTWiXjX6fjIiPaqOkBthYF1EqgiZ6OXKcQsM0hg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.21.0.tgz", + "integrity": "sha512-1vvmgDdUSebVGXWX2lIcgRebqfQSff0hMEkLJyakQ9JQUbLDkEaMsPTLOmyccyC6IJ/l3FZuJbmrBw/u0A0uCQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.21.0.tgz", + "integrity": "sha512-s5oFkZ/hFcrlAyBTONFY1TWndfyre1wOMwU+6KCpm/iatybvrRgmZVM+vCFwxmC5ZhdlgfE0N4XorsDpi7/4XQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.21.0.tgz", + "integrity": "sha512-G9+TEqRnAA6nbpqyUqgTiopmnfgnMkR3kMukFBDsiyy23LZvUCpiUwjTRx6ezYCjJODXrh52rBR9oXvm+Fp5wg==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.21.0.tgz", + "integrity": "sha512-2jsCDZwtQvRhejHLfZ1JY6w6kEuEtfF9nzYsZxzSlNVKDX+DpsDJ+Rbjkm74nvg2rdx0gwBS+IMdvwJuq3S9pQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/detect-libc": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", - "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", "engines": { - "node": ">=8" + "node": ">=10.13.0" } }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "node_modules/@types/chai": { + "version": "4.3.18", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.18.tgz", + "integrity": "sha512-2UfJzigyNa8kYTKn7o4hNMPphkxtu4WTJyobK3m4FBpyj7EK5xgtPcOtxLm7Dznk/Qxr0QXn+gQbkg7mCZKdfg==" + }, + "node_modules/@types/chai-subset": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/chai-subset/-/chai-subset-1.3.5.tgz", + "integrity": "sha512-c2mPnw+xHtXDoHmdtcCXGwyLMiauiAyxWMzhGpqHC4nqI/Y5G2XhTampslK2rb59kpcuHon03UH8W6iYUzw88A==", "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" + "@types/chai": "*" } }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "devOptional": true, + "node_modules/@types/d3": { + "version": "7.4.3", + "resolved": "https://registry.npmjs.org/@types/d3/-/d3-7.4.3.tgz", + "integrity": "sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==", + "dev": true, "dependencies": { - "esutils": "^2.0.2" - }, - "engines": { - "node": ">=6.0.0" + "@types/d3-array": "*", + "@types/d3-axis": "*", + "@types/d3-brush": "*", + "@types/d3-chord": "*", + "@types/d3-color": "*", + "@types/d3-contour": "*", + "@types/d3-delaunay": "*", + "@types/d3-dispatch": "*", + "@types/d3-drag": "*", + "@types/d3-dsv": "*", + "@types/d3-ease": "*", + "@types/d3-fetch": "*", + "@types/d3-force": "*", + "@types/d3-format": "*", + "@types/d3-geo": "*", + "@types/d3-hierarchy": "*", + "@types/d3-interpolate": "*", + "@types/d3-path": "*", + "@types/d3-polygon": "*", + "@types/d3-quadtree": "*", + "@types/d3-random": "*", + "@types/d3-scale": "*", + "@types/d3-scale-chromatic": "*", + "@types/d3-selection": "*", + "@types/d3-shape": "*", + "@types/d3-time": "*", + "@types/d3-time-format": "*", + "@types/d3-timer": "*", + "@types/d3-transition": "*", + "@types/d3-zoom": "*" + } + }, + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==", + "dev": true + }, + "node_modules/@types/d3-axis": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-axis/-/d3-axis-3.0.6.tgz", + "integrity": "sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==", + "dev": true, + "dependencies": { + "@types/d3-selection": "*" } }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "node_modules/@types/d3-brush": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-brush/-/d3-brush-3.0.6.tgz", + "integrity": "sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==", + "dev": true, "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "@types/d3-selection": "*" } }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] + "node_modules/@types/d3-chord": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-chord/-/d3-chord-3.0.6.tgz", + "integrity": "sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==", + "dev": true }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", + "dev": true + }, + "node_modules/@types/d3-contour": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-contour/-/d3-contour-3.0.6.tgz", + "integrity": "sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==", + "dev": true, "dependencies": { - "domelementtype": "^2.2.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "@types/d3-array": "*", + "@types/geojson": "*" } }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } + "node_modules/@types/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==", + "dev": true }, - "node_modules/dot-prop": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-7.2.0.tgz", - "integrity": "sha512-Ol/IPXUARn9CSbkrdV4VJo7uCy1I3VuSiWCaFSg+8BdUOzF9n3jefIpcgAydvUZbTdEBZs2vEiTiS9m61ssiDA==", + "node_modules/@types/d3-dispatch": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-dispatch/-/d3-dispatch-3.0.6.tgz", + "integrity": "sha512-4fvZhzMeeuBJYZXRXrRIQnvUYfyXwYmLsdiN7XXmVNQKKw1cM8a5WdID0g1hVFZDqT9ZqZEY5pD44p24VS7iZQ==", + "dev": true + }, + "node_modules/@types/d3-drag": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz", + "integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==", + "dev": true, "dependencies": { - "type-fest": "^2.11.2" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@types/d3-selection": "*" } }, - "node_modules/dot-prop/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node_modules/@types/d3-dsv": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-dsv/-/d3-dsv-3.0.7.tgz", + "integrity": "sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==", + "dev": true + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", + "dev": true + }, + "node_modules/@types/d3-fetch": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@types/d3-fetch/-/d3-fetch-3.0.7.tgz", + "integrity": "sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==", + "dev": true, + "dependencies": { + "@types/d3-dsv": "*" } }, - "node_modules/dotenv": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", - "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==", - "engines": { - "node": ">=12" + "node_modules/@types/d3-force": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@types/d3-force/-/d3-force-3.0.10.tgz", + "integrity": "sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==", + "dev": true + }, + "node_modules/@types/d3-format": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-format/-/d3-format-3.0.4.tgz", + "integrity": "sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==", + "dev": true + }, + "node_modules/@types/d3-geo": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-geo/-/d3-geo-3.1.0.tgz", + "integrity": "sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==", + "dev": true, + "dependencies": { + "@types/geojson": "*" } }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + "node_modules/@types/d3-hierarchy": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@types/d3-hierarchy/-/d3-hierarchy-3.1.7.tgz", + "integrity": "sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==", + "dev": true }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "dev": true, + "dependencies": { + "@types/d3-color": "*" + } }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + "node_modules/@types/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==", + "dev": true }, - "node_modules/electron-to-chromium": { - "version": "1.4.284", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", - "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==" + "node_modules/@types/d3-polygon": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-polygon/-/d3-polygon-3.0.2.tgz", + "integrity": "sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==", + "dev": true }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" + "node_modules/@types/d3-quadtree": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/@types/d3-quadtree/-/d3-quadtree-3.0.6.tgz", + "integrity": "sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==", + "dev": true }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "engines": { - "node": ">= 0.8" + "node_modules/@types/d3-random": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-random/-/d3-random-3.0.3.tgz", + "integrity": "sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==", + "dev": true + }, + "node_modules/@types/d3-scale": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", + "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", + "dev": true, + "dependencies": { + "@types/d3-time": "*" } }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "node_modules/@types/d3-scale-chromatic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-scale-chromatic/-/d3-scale-chromatic-3.0.3.tgz", + "integrity": "sha512-laXM4+1o5ImZv3RpFAsTRn3TEkzqkytiOY0Dz0sq5cnd1dtNlk6sHLon4OvqaiJb28T0S/TdsBI3Sjsy+keJrw==", + "dev": true + }, + "node_modules/@types/d3-selection": { + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.10.tgz", + "integrity": "sha512-cuHoUgS/V3hLdjJOLTT691+G2QoqAjCVLmr4kJXR4ha56w1Zdu8UUQ5TxLRqudgNjwXeQxKMq4j+lyf9sWuslg==", + "dev": true + }, + "node_modules/@types/d3-shape": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz", + "integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==", + "dev": true, "dependencies": { - "once": "^1.4.0" + "@types/d3-path": "*" } }, - "node_modules/enhanced-resolve": { - "version": "5.11.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.11.0.tgz", - "integrity": "sha512-0Gcraf7gAJSQoPg+bTSXNhuzAYtXqLc4C011vb8S3B8XUSEkGYNBk20c68X9291VF4vvsCD8SPkr6Mza+DwU+g==", + "node_modules/@types/d3-time": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", + "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==", + "dev": true + }, + "node_modules/@types/d3-time-format": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time-format/-/d3-time-format-4.0.3.tgz", + "integrity": "sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==", + "dev": true + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==", + "dev": true + }, + "node_modules/@types/d3-transition": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.8.tgz", + "integrity": "sha512-ew63aJfQ/ms7QQ4X7pk5NxQ9fZH/z+i24ZfJ6tJSfqxJMrYLiK01EAs2/Rtw/JreGUsS3pLPNV644qXFGnoZNQ==", + "dev": true, "dependencies": { - "graceful-fs": "^4.2.9", - "tapable": "^2.2.0" - }, - "engines": { - "node": ">=10.13.0" + "@types/d3-selection": "*" } }, - "node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "node_modules/@types/d3-zoom": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz", + "integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==", + "dev": true, + "dependencies": { + "@types/d3-interpolate": "*", + "@types/d3-selection": "*" } }, - "node_modules/errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" + }, + "node_modules/@types/geojson": { + "version": "7946.0.14", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.14.tgz", + "integrity": "sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==", + "dev": true + }, + "node_modules/@types/http-proxy": { + "version": "1.17.15", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", + "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", "dependencies": { - "prr": "~1.0.1" - }, - "bin": { - "errno": "cli.js" + "@types/node": "*" } }, - "node_modules/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==", - "dev": true, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/node": { + "version": "22.5.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.5.0.tgz", + "integrity": "sha512-DkFrJOe+rfdHTqqMg0bSNlGlQ85hSoh2TPzZyhHsXnMtligRWpxUySiyw8FY14ITt24HVCiQPWxS3KO/QlGmWg==", "dependencies": { - "is-arrayish": "^0.2.1" + "undici-types": "~6.19.2" } }, - "node_modules/es-abstract": { - "version": "1.20.5", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.5.tgz", - "integrity": "sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==", + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true + }, + "node_modules/@types/qs": { + "version": "6.9.15", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.15.tgz", + "integrity": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==", + "dev": true + }, + "node_modules/@types/resolve": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", + "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==" + }, + "node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "dev": true + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.20", + "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.20.tgz", + "integrity": "sha512-g9gZnnXVq7gM7v3tJCWV/qw7w+KeOlSHAhgF9RytFyifW6AF61hdT2ucrYhPq9hLs5JIryeupHV3qGk95dH9ow==" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz", + "integrity": "sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.1.3", - "get-symbol-description": "^1.0.0", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.2", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "unbox-primitive": "^1.0.2" + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/type-utils": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" }, "engines": { - "node": ">= 0.4" + "node": "^16.0.0 || >=18.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, - "dependencies": { - "has": "^1.0.3" + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "node_modules/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==", + "node_modules/@typescript-eslint/parser": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", + "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", "dev": true, "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4" }, "engines": { - "node": ">= 0.4" + "node": "^16.0.0 || >=18.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/esbuild": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.15.15.tgz", - "integrity": "sha512-TEw/lwK4Zzld9x3FedV6jy8onOUHqcEX3ADFk4k+gzPUwrxn8nWV62tH0udo8jOtjFodlEfc4ypsqX3e+WWO6w==", - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" }, - "engines": { - "node": ">=12" + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" }, - "optionalDependencies": { - "@esbuild/android-arm": "0.15.15", - "@esbuild/linux-loong64": "0.15.15", - "esbuild-android-64": "0.15.15", - "esbuild-android-arm64": "0.15.15", - "esbuild-darwin-64": "0.15.15", - "esbuild-darwin-arm64": "0.15.15", - "esbuild-freebsd-64": "0.15.15", - "esbuild-freebsd-arm64": "0.15.15", - "esbuild-linux-32": "0.15.15", - "esbuild-linux-64": "0.15.15", - "esbuild-linux-arm": "0.15.15", - "esbuild-linux-arm64": "0.15.15", - "esbuild-linux-mips64le": "0.15.15", - "esbuild-linux-ppc64le": "0.15.15", - "esbuild-linux-riscv64": "0.15.15", - "esbuild-linux-s390x": "0.15.15", - "esbuild-netbsd-64": "0.15.15", - "esbuild-openbsd-64": "0.15.15", - "esbuild-sunos-64": "0.15.15", - "esbuild-windows-32": "0.15.15", - "esbuild-windows-64": "0.15.15", - "esbuild-windows-arm64": "0.15.15" - } - }, - "node_modules/esbuild-android-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.15.tgz", - "integrity": "sha512-F+WjjQxO+JQOva3tJWNdVjouFMLK6R6i5gjDvgUthLYJnIZJsp1HlF523k73hELY20WPyEO8xcz7aaYBVkeg5Q==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/esbuild-android-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.15.tgz", - "integrity": "sha512-attlyhD6Y22jNyQ0fIIQ7mnPvDWKw7k6FKnsXlBvQE6s3z6s6cuEHcSgoirquQc7TmZgVCK5fD/2uxmRN+ZpcQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "android" - ], + "node_modules/@typescript-eslint/scope-manager": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", + "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0" + }, "engines": { - "node": ">=12" + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/esbuild-darwin-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.15.tgz", - "integrity": "sha512-ohZtF8W1SHJ4JWldsPVdk8st0r9ExbAOSrBOh5L+Mq47i696GVwv1ab/KlmbUoikSTNoXEhDzVpxUR/WIO19FQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "darwin" - ], + "node_modules/@typescript-eslint/type-utils": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz", + "integrity": "sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "6.21.0", + "@typescript-eslint/utils": "6.21.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + }, "engines": { - "node": ">=12" + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/esbuild-darwin-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.15.tgz", - "integrity": "sha512-P8jOZ5zshCNIuGn+9KehKs/cq5uIniC+BeCykvdVhx/rBXSxmtj3CUIKZz4sDCuESMbitK54drf/2QX9QHG5Ag==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "darwin" - ], + "node_modules/@typescript-eslint/types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", + "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", + "dev": true, "engines": { - "node": ">=12" + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/esbuild-freebsd-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.15.tgz", - "integrity": "sha512-KkTg+AmDXz1IvA9S1gt8dE24C8Thx0X5oM0KGF322DuP+P3evwTL9YyusHAWNsh4qLsR80nvBr/EIYs29VSwuA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "freebsd" - ], + "node_modules/@typescript-eslint/typescript-estree": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", + "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/visitor-keys": "6.21.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, "engines": { - "node": ">=12" + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/esbuild-freebsd-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.15.tgz", - "integrity": "sha512-FUcML0DRsuyqCMfAC+HoeAqvWxMeq0qXvclZZ/lt2kLU6XBnDA5uKTLUd379WYEyVD4KKFctqWd9tTuk8C/96g==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "freebsd" - ], + "node_modules/@typescript-eslint/typescript-estree/node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/esbuild-linux-32": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.15.tgz", - "integrity": "sha512-q28Qn5pZgHNqug02aTkzw5sW9OklSo96b5nm17Mq0pDXrdTBcQ+M6Q9A1B+dalFeynunwh/pvfrNucjzwDXj+Q==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/esbuild-linux-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.15.tgz", - "integrity": "sha512-217KPmWMirkf8liO+fj2qrPwbIbhNTGNVtvqI1TnOWJgcMjUWvd677Gq3fTzXEjilkx2yWypVnTswM2KbXgoAg==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/@typescript-eslint/typescript-estree/node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/esbuild-linux-arm": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.15.tgz", - "integrity": "sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==", - "cpu": [ - "arm" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/@typescript-eslint/utils": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.21.0.tgz", + "integrity": "sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.21.0", + "@typescript-eslint/types": "6.21.0", + "@typescript-eslint/typescript-estree": "6.21.0", + "semver": "^7.5.4" + }, "engines": { - "node": ">=12" + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" } }, - "node_modules/esbuild-linux-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.15.tgz", - "integrity": "sha512-/ltmNFs0FivZkYsTzAsXIfLQX38lFnwJTWCJts0IbCqWZQe+jjj0vYBNbI0kmXLb3y5NljiM5USVAO1NVkdh2g==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/esbuild-linux-mips64le": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.15.tgz", - "integrity": "sha512-PksEPb321/28GFFxtvL33yVPfnMZihxkEv5zME2zapXGp7fA1X2jYeiTUK+9tJ/EGgcNWuwvtawPxJG7Mmn86A==", - "cpu": [ - "mips64el" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/@typescript-eslint/visitor-keys": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", + "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.21.0", + "eslint-visitor-keys": "^3.4.1" + }, "engines": { - "node": ">=12" + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/esbuild-linux-ppc64le": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.15.tgz", - "integrity": "sha512-ek8gJBEIhcpGI327eAZigBOHl58QqrJrYYIZBWQCnH3UnXoeWMrMZLeeZL8BI2XMBhP+sQ6ERctD5X+ajL/AIA==", - "cpu": [ - "ppc64" - ], - "optional": true, - "os": [ - "linux" - ], + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, "engines": { - "node": ">=12" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/esbuild-linux-riscv64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.15.tgz", - "integrity": "sha512-H5ilTZb33/GnUBrZMNJtBk7/OXzDHDXjIzoLXHSutwwsLxSNaLxzAaMoDGDd/keZoS+GDBqNVxdCkpuiRW4OSw==", - "cpu": [ - "riscv64" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "devOptional": true }, - "node_modules/esbuild-linux-s390x": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.15.tgz", - "integrity": "sha512-jKaLUg78mua3rrtrkpv4Or2dNTJU7bgHN4bEjT4OX4GR7nLBSA9dfJezQouTxMmIW7opwEC5/iR9mpC18utnxQ==", - "cpu": [ - "s390x" - ], - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "node_modules/@unhead/dom": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@unhead/dom/-/dom-1.10.0.tgz", + "integrity": "sha512-LdgtOlyMHOyuQNsUKM+1d8ViiiY4LxjCPJlgUU/5CwgqeRYf4LWFu8oRMQfSQVTusbPwwvr3MolM9iTUu2I4BQ==", + "dependencies": { + "@unhead/schema": "1.10.0", + "@unhead/shared": "1.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "node_modules/esbuild-netbsd-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.15.tgz", - "integrity": "sha512-aOvmF/UkjFuW6F36HbIlImJTTx45KUCHJndtKo+KdP8Dhq3mgLRKW9+6Ircpm8bX/RcS3zZMMmaBLkvGY06Gvw==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" + "node_modules/@unhead/schema": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@unhead/schema/-/schema-1.10.0.tgz", + "integrity": "sha512-hmgkFdLzm/VPLAXBF89Iry4Wz/6FpHMfMKCnAdihAt1Ublsi04RrA0hQuAiuGG2CZiKL4VCxtmV++UXj/kyakA==", + "dependencies": { + "hookable": "^5.5.3", + "zhead": "^2.2.4" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "node_modules/esbuild-openbsd-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.15.tgz", - "integrity": "sha512-HFFX+WYedx1w2yJ1VyR1Dfo8zyYGQZf1cA69bLdrHzu9svj6KH6ZLK0k3A1/LFPhcEY9idSOhsB2UyU0tHPxgQ==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" + "node_modules/@unhead/shared": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@unhead/shared/-/shared-1.10.0.tgz", + "integrity": "sha512-Lv7pP0AoWJy+YaiWd4kGD+TK78ahPUwnIRx6YCC6FjPmE0KCqooeDS4HbInYaklLlEMQZislXyIwLczK2DTWiw==", + "dependencies": { + "@unhead/schema": "1.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "node_modules/esbuild-sunos-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.15.tgz", - "integrity": "sha512-jOPBudffG4HN8yJXcK9rib/ZTFoTA5pvIKbRrt3IKAGMq1EpBi4xoVoSRrq/0d4OgZLaQbmkHp8RO9eZIn5atA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" + "node_modules/@unhead/ssr": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@unhead/ssr/-/ssr-1.10.0.tgz", + "integrity": "sha512-L2XqGUQ05+a/zBAJk4mseLpsDoHMsuEsZNWp5f7E/Kx8P1oBAAs6J/963nvVFdec41HuClNHtJZ5swz77dmb1Q==", + "dependencies": { + "@unhead/schema": "1.10.0", + "@unhead/shared": "1.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "node_modules/esbuild-windows-32": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.15.tgz", - "integrity": "sha512-MDkJ3QkjnCetKF0fKxCyYNBnOq6dmidcwstBVeMtXSgGYTy8XSwBeIE4+HuKiSsG6I/mXEb++px3IGSmTN0XiA==", - "cpu": [ - "ia32" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" + "node_modules/@unhead/vue": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@unhead/vue/-/vue-1.10.0.tgz", + "integrity": "sha512-Cv9BViaOwCBdXy3bsTvJ10Rs808FSSq/ZfeBXzOjOxt08sbubf6Mr5opBdOlv/i1bzyFVIAqe5ABmrhC9mB80w==", + "dependencies": { + "@unhead/schema": "1.10.0", + "@unhead/shared": "1.10.0", + "hookable": "^5.5.3", + "unhead": "1.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" + }, + "peerDependencies": { + "vue": ">=2.7 || >=3" } }, - "node_modules/esbuild-windows-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.15.tgz", - "integrity": "sha512-xaAUIB2qllE888SsMU3j9nrqyLbkqqkpQyWVkfwSil6BBPgcPk3zOFitTTncEKCLTQy3XV9RuH7PDj3aJDljWA==", - "cpu": [ - "x64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-windows-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.15.tgz", - "integrity": "sha512-ttuoCYCIJAFx4UUKKWYnFdrVpoXa3+3WWkXVI6s09U+YjhnyM5h96ewTq/WgQj9LFSIlABQvadHSOQyAVjW5xQ==", - "cpu": [ - "arm64" - ], - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" + "node_modules/@unocss/astro": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/astro/-/astro-0.62.3.tgz", + "integrity": "sha512-C6ZdyLbLDS0LebwmgwVItLNAOSkL/tvVWNRd1i3Jy5uj1vPxlrw+3lIYiHjEofn0GFpBiwlv5+OCvO1Xpq5MqA==", + "dev": true, + "dependencies": { + "@unocss/core": "0.62.3", + "@unocss/reset": "0.62.3", + "@unocss/vite": "0.62.3" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } } }, - "node_modules/eslint": { - "version": "8.28.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.28.0.tgz", - "integrity": "sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ==", - "devOptional": true, + "node_modules/@unocss/cli": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/cli/-/cli-0.62.3.tgz", + "integrity": "sha512-yEl1iNKkBVpo8+i8gzveM5/0/vOVe6m8+FmuSDuKeSPJnYMhI1mAn+OCKFb/I+qEeLbRPXebbJUUB1xZNzya+w==", + "dev": true, "dependencies": { - "@eslint/eslintrc": "^1.3.3", - "@humanwhocodes/config-array": "^0.11.6", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.15.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" + "@ampproject/remapping": "^2.3.0", + "@rollup/pluginutils": "^5.1.0", + "@unocss/config": "0.62.3", + "@unocss/core": "0.62.3", + "@unocss/preset-uno": "0.62.3", + "cac": "^6.7.14", + "chokidar": "^3.6.0", + "colorette": "^2.0.20", + "consola": "^3.2.3", + "magic-string": "^0.30.11", + "pathe": "^1.1.2", + "perfect-debounce": "^1.0.0", + "tinyglobby": "^0.2.5" }, "bin": { - "eslint": "bin/eslint.js" + "unocss": "bin/unocss.mjs" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=14" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-config-prettier": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", - "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", + "node_modules/@unocss/config": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/config/-/config-0.62.3.tgz", + "integrity": "sha512-zYOvFE0HfGIbnP/AvsbAlJpPRx9CQyXzL11m/8zgsHW5SGlJIYxuTll83l/xu026G5mPiksy7quoEOEgCLslqw==", "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" + "dependencies": { + "@unocss/core": "0.62.3", + "unconfig": "^0.5.5" }, - "peerDependencies": { - "eslint": ">=7.0.0" + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-config-standard": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.0.0.tgz", - "integrity": "sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==", + "node_modules/@unocss/core": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/core/-/core-0.62.3.tgz", + "integrity": "sha512-Pfyrj8S7jq9K1QXD6Z5BCeiQavaHpbMN5q958/kmdbNGp57hOg1e346fMJAvgPjLBR+lE/hgZEsDrijtRiZXnw==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "peerDependencies": { - "eslint": "^8.0.1", - "eslint-plugin-import": "^2.25.2", - "eslint-plugin-n": "^15.0.0", - "eslint-plugin-promise": "^6.0.0" + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "node_modules/@unocss/extractor-arbitrary-variants": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/extractor-arbitrary-variants/-/extractor-arbitrary-variants-0.62.3.tgz", + "integrity": "sha512-9ZscWyXEwDZif+b56xZyJFHwJOjdMXmj+6x96jOsnRNBzwT9eW7YcGCErP1ih/q1S6KmuRrHM/JOXMBQ6H4qlw==", "dev": true, "dependencies": { - "debug": "^3.2.7", - "resolve": "^1.20.0" + "@unocss/core": "0.62.3" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/@unocss/inspector": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/inspector/-/inspector-0.62.3.tgz", + "integrity": "sha512-nTSXOf7YimFPxEYJo5VfP5wlMgYOCjlv3c5Ub/0fynCJXZNb89SFeU05ABXkEgg/FfiobVBTscikLc6guW8eHQ==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "@unocss/core": "0.62.3", + "@unocss/rule-utils": "0.62.3", + "gzip-size": "^6.0.0", + "sirv": "^2.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-import-resolver-typescript": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.2.tgz", - "integrity": "sha512-zX4ebnnyXiykjhcBvKIf5TNvt8K7yX6bllTRZ14MiurKPjDpCAZujlszTdB8pcNXhZcOf+god4s9SjQa5GnytQ==", + "node_modules/@unocss/inspector/node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", "dev": true, "dependencies": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.10.0", - "get-tsconfig": "^4.2.0", - "globby": "^13.1.2", - "is-core-module": "^2.10.0", - "is-glob": "^4.0.3", - "synckit": "^0.8.4" + "duplexer": "^0.1.2" }, "engines": { - "node": "^14.18.0 || >=16.0.0" + "node": ">=10" }, "funding": { - "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@unocss/nuxt": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/nuxt/-/nuxt-0.62.3.tgz", + "integrity": "sha512-GktKR2hFP0RjCn8GB9d0SKZY6fXr6dFJZURV6KOgRlu3hvlXJiUA/6MU/eij86q/Q5CZcHEUcVFkHD5Ex8cqKw==", + "dev": true, + "dependencies": { + "@nuxt/kit": "^3.13.0", + "@unocss/config": "0.62.3", + "@unocss/core": "0.62.3", + "@unocss/preset-attributify": "0.62.3", + "@unocss/preset-icons": "0.62.3", + "@unocss/preset-tagify": "0.62.3", + "@unocss/preset-typography": "0.62.3", + "@unocss/preset-uno": "0.62.3", + "@unocss/preset-web-fonts": "0.62.3", + "@unocss/preset-wind": "0.62.3", + "@unocss/reset": "0.62.3", + "@unocss/vite": "0.62.3", + "@unocss/webpack": "0.62.3", + "unocss": "0.62.3" }, - "peerDependencies": { - "eslint": "*", - "eslint-plugin-import": "*" + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-module-utils": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", - "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", + "node_modules/@unocss/postcss": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/postcss/-/postcss-0.62.3.tgz", + "integrity": "sha512-CwL378ef0QazduXqlaGcWgKJAzemBUxdhapWWiRqI8sXC/eXht5xK6nS1JxqADDuxosgqsGdvcCGmP8ZFrEyiA==", "dev": true, "dependencies": { - "debug": "^3.2.7" + "@unocss/config": "0.62.3", + "@unocss/core": "0.62.3", + "@unocss/rule-utils": "0.62.3", + "css-tree": "^2.3.1", + "magic-string": "^0.30.11", + "postcss": "^8.4.41", + "tinyglobby": "^0.2.5" }, "engines": { - "node": ">=4" + "node": ">=14" }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "postcss": "^8.4.21" } }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/@unocss/preset-attributify": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/preset-attributify/-/preset-attributify-0.62.3.tgz", + "integrity": "sha512-ORNwyLobGTwnn/tK5yHnMabdJU6Mr/C4LyFH7G8VSLit/aVS0fFa795kJXwxfbqQoQ7Gw0Zxs9oE5RXI0/0y7g==", "dev": true, "dependencies": { - "ms": "^2.1.1" + "@unocss/core": "0.62.3" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-plugin-es": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", - "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", + "node_modules/@unocss/preset-icons": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/preset-icons/-/preset-icons-0.62.3.tgz", + "integrity": "sha512-Ie+5RTyac1Q5CNB/s/4aB4VTHAQgQqsI5hshMNLkJ0Jj1lWxodUdEbCRKjXDalRjAXOS9vsLjfJ35ozJ1RSTIQ==", "dev": true, "dependencies": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" - }, - "engines": { - "node": ">=8.10.0" + "@iconify/utils": "^2.1.32", + "@unocss/core": "0.62.3", + "ofetch": "^1.3.4" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=4.19.1" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-plugin-es/node_modules/eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "node_modules/@unocss/preset-mini": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/preset-mini/-/preset-mini-0.62.3.tgz", + "integrity": "sha512-dn/8ubeW2ry/ZF3iKxdQHnS0l3EBibt0rIOE/XVwx24ub6pRzclU4r7xHnXeqvAFOO9PoiKDGgFR92m6R2MxyQ==", "dev": true, "dependencies": { - "eslint-visitor-keys": "^1.1.0" + "@unocss/core": "0.62.3", + "@unocss/extractor-arbitrary-variants": "0.62.3", + "@unocss/rule-utils": "0.62.3" }, - "engines": { - "node": ">=6" + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@unocss/preset-tagify": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/preset-tagify/-/preset-tagify-0.62.3.tgz", + "integrity": "sha512-8BpUCZ5sjOZOzBKtu7ecfhRggwwPF78IqeqeNjI+XYRs8r7TBBcUVeF6zUkwhlX/TbtREkw2OZj0Iusa9CBO+A==", + "dev": true, + "dependencies": { + "@unocss/core": "0.62.3" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-plugin-es/node_modules/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==", + "node_modules/@unocss/preset-typography": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/preset-typography/-/preset-typography-0.62.3.tgz", + "integrity": "sha512-GjtDgQ1Jec/5RNmnyGMWMgyPdStWcFG/S+NUfOuroRsGSI8PDxihVOwFu5CwvOB2J2r6mRNLeUYMluE05jW3sw==", "dev": true, - "engines": { - "node": ">=4" + "dependencies": { + "@unocss/core": "0.62.3", + "@unocss/preset-mini": "0.62.3" } }, - "node_modules/eslint-plugin-import": { - "version": "2.26.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", - "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", + "node_modules/@unocss/preset-uno": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/preset-uno/-/preset-uno-0.62.3.tgz", + "integrity": "sha512-RlsrMlpEzoZqB0lr5VvlkHGpEgr0Vp6z4Q/7DjW5t7mi20Z2i8olaLGWM0TO1wKoRi8bxc6HP0RHUS7pHtZxBA==", "dev": true, "dependencies": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.3", - "has": "^1.0.3", - "is-core-module": "^2.8.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.5", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" - }, - "engines": { - "node": ">=4" + "@unocss/core": "0.62.3", + "@unocss/preset-mini": "0.62.3", + "@unocss/preset-wind": "0.62.3", + "@unocss/rule-utils": "0.62.3" }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/@unocss/preset-web-fonts": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/preset-web-fonts/-/preset-web-fonts-0.62.3.tgz", + "integrity": "sha512-rGEouncGFwcUY1cjkQ/ZoSmEzOeSi3Yk4YAfHGyS0ff5zKuTDWZgivB8hh/mTtvRzZunIL+FW1+1z5G9rUwjgQ==", "dev": true, "dependencies": { - "ms": "2.0.0" + "@unocss/core": "0.62.3", + "ofetch": "^1.3.4" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/@unocss/preset-wind": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/preset-wind/-/preset-wind-0.62.3.tgz", + "integrity": "sha512-6+VNce1he1U5EXKlXRwTIPn8KeK6bZ2jAEgcCxk8mFy8SzOlLeYzXCI9lcdiWRTjIeIiK5iSaUqmsQFtKdTyQg==", "dev": true, "dependencies": { - "esutils": "^2.0.2" + "@unocss/core": "0.62.3", + "@unocss/preset-mini": "0.62.3", + "@unocss/rule-utils": "0.62.3" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-plugin-import/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "node_modules/@unocss/reset": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/reset/-/reset-0.62.3.tgz", + "integrity": "sha512-XVKPkbm8y9SGzRaG3x+HygGZURm50MvKLVHXsbxi67RbIir9Ouyt9hQTV6Xs3RicRZFWOpJx3wMRb8iKUOe5Zw==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } }, - "node_modules/eslint-plugin-n": { - "version": "15.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.6.0.tgz", - "integrity": "sha512-Hd/F7wz4Mj44Jp0H6Jtty13NcE69GNTY0rVlgTIj1XBnGGVI6UTdDrpE6vqu3AHo07bygq/N+7OH/lgz1emUJw==", + "node_modules/@unocss/rule-utils": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/rule-utils/-/rule-utils-0.62.3.tgz", + "integrity": "sha512-qI37jHH//XzyR5Y2aN3Kpo4lQrQO+CaiXpqPSwMLYh2bIypc2RQVpqGVtU736x0eA6IIx41XEkKzUW+VtvJvmg==", "dev": true, "dependencies": { - "builtins": "^5.0.1", - "eslint-plugin-es": "^4.1.0", - "eslint-utils": "^3.0.0", - "ignore": "^5.1.1", - "is-core-module": "^2.11.0", - "minimatch": "^3.1.2", - "resolve": "^1.22.1", - "semver": "^7.3.8" + "@unocss/core": "^0.62.3", + "magic-string": "^0.30.11" }, "engines": { - "node": ">=12.22.0" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=7.0.0" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-plugin-n/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "node_modules/@unocss/scope": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/scope/-/scope-0.62.3.tgz", + "integrity": "sha512-TJGmFfsMrTo8DBJ7CJupIqObpgij+w4jCHMBf1uu0/9jbm63dH6WGcrl3zf5mm6UBTeLmB0RwJ8K4hs7LtrBDQ==", + "dev": true + }, + "node_modules/@unocss/transformer-attributify-jsx": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/transformer-attributify-jsx/-/transformer-attributify-jsx-0.62.3.tgz", + "integrity": "sha512-AutidZj26QW1vLQzuW/aQigC/5ZnIeqGYIBeb/O+FKKt0bU411tHrHnA1iV4CoxIdWJTkw2sGAl6z6YvwAYG6w==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" + "@unocss/core": "0.62.3" }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-plugin-node": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", - "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", + "node_modules/@unocss/transformer-attributify-jsx-babel": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/transformer-attributify-jsx-babel/-/transformer-attributify-jsx-babel-0.62.3.tgz", + "integrity": "sha512-3yFZPSoN8VLiAGUAFIyfDRv9HQYTKFGKawDdMM9ATZmSEYOecJnYjS2HayT1P9kzGwBwuKoFjcX50JH1PuNokg==", "dev": true, "dependencies": { - "eslint-plugin-es": "^3.0.0", - "eslint-utils": "^2.0.0", - "ignore": "^5.1.1", - "minimatch": "^3.0.4", - "resolve": "^1.10.1", - "semver": "^6.1.0" + "@babel/core": "^7.25.2", + "@babel/plugin-syntax-jsx": "^7.24.7", + "@babel/preset-typescript": "^7.24.7", + "@unocss/core": "0.62.3" }, - "engines": { - "node": ">=8.10.0" - }, - "peerDependencies": { - "eslint": ">=5.16.0" + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-plugin-node/node_modules/eslint-plugin-es": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", - "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", + "node_modules/@unocss/transformer-compile-class": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/transformer-compile-class/-/transformer-compile-class-0.62.3.tgz", + "integrity": "sha512-1hf+99wJXzQXQPz9xR0AiTB3vBXT5RiEyugIX95HFx7EvSE/P17RP90yKEKZtDZRUwGiz2vIyySlxcKTFak9Vg==", "dev": true, "dependencies": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" - }, - "engines": { - "node": ">=8.10.0" + "@unocss/core": "0.62.3" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=4.19.1" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-plugin-node/node_modules/eslint-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", - "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "node_modules/@unocss/transformer-directives": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/transformer-directives/-/transformer-directives-0.62.3.tgz", + "integrity": "sha512-HqHwFOA7DfxD/A1ROZIp8Dr8iZcE0z4w3VQtViWPQ89Fqmb7p2wCPGekk+8yW5PAltpynvHE4ahJEto5xjdg6w==", "dev": true, "dependencies": { - "eslint-visitor-keys": "^1.1.0" - }, - "engines": { - "node": ">=6" + "@unocss/core": "0.62.3", + "@unocss/rule-utils": "0.62.3", + "css-tree": "^2.3.1" + } + }, + "node_modules/@unocss/transformer-variant-group": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/transformer-variant-group/-/transformer-variant-group-0.62.3.tgz", + "integrity": "sha512-oNX1SdfWemz0GWGSXACu8NevM0t2l44j2ancnooNkNz3l1+z1nbn4vFwfsJCOqOaoVm4ZqxaiQ8HIx81ZSiU1A==", + "dev": true, + "dependencies": { + "@unocss/core": "0.62.3" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint-plugin-node/node_modules/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==", + "node_modules/@unocss/vite": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/vite/-/vite-0.62.3.tgz", + "integrity": "sha512-RrqF6Go8s0BGpwRfkOiLuO+n3CUE/CXxGqb0ipbUARhmNWJlekE3YPfayqImSEnCcImpaPgtVGv6Y0u3kLGG/w==", "dev": true, - "engines": { - "node": ">=4" + "dependencies": { + "@ampproject/remapping": "^2.3.0", + "@rollup/pluginutils": "^5.1.0", + "@unocss/config": "0.62.3", + "@unocss/core": "0.62.3", + "@unocss/inspector": "0.62.3", + "@unocss/scope": "0.62.3", + "@unocss/transformer-directives": "0.62.3", + "chokidar": "^3.6.0", + "magic-string": "^0.30.11", + "tinyglobby": "^0.2.5" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0" } }, - "node_modules/eslint-plugin-nuxt": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-nuxt/-/eslint-plugin-nuxt-4.0.0.tgz", - "integrity": "sha512-v3Vwdk8YKe52bAz8eSIDqQuTtfL/T1r9dSl1uhC5SyR5pgLxgKkQdxXVf/Bf6Ax7uyd9rHqiAuYVdqqDb7ILdA==", + "node_modules/@unocss/webpack": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/@unocss/webpack/-/webpack-0.62.3.tgz", + "integrity": "sha512-Emacl2uNau0pa7/wEFCQxAxwK3nkIa+Kp2CAcJdlwcaNBcqtowkTga0FOdq71YUENXv+aziK7mV6lrjdS/hgcA==", "dev": true, "dependencies": { - "eslint-plugin-vue": "^9.4.0", - "semver": "^7.3.7", - "vue-eslint-parser": "^9.0.3" + "@ampproject/remapping": "^2.3.0", + "@rollup/pluginutils": "^5.1.0", + "@unocss/config": "0.62.3", + "@unocss/core": "0.62.3", + "chokidar": "^3.6.0", + "magic-string": "^0.30.11", + "tinyglobby": "^0.2.5", + "unplugin": "^1.12.2", + "webpack-sources": "^3.2.3" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "webpack": "^4 || ^5" } }, - "node_modules/eslint-plugin-nuxt/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, + "node_modules/@vercel/nft": { + "version": "0.26.5", + "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.26.5.tgz", + "integrity": "sha512-NHxohEqad6Ra/r4lGknO52uc/GrWILXAMs1BB4401GTqww0fw1bAqzpG1XHuDO+dprg4GvsD9ZLLSsdo78p9hQ==", "dependencies": { - "lru-cache": "^6.0.0" + "@mapbox/node-pre-gyp": "^1.0.5", + "@rollup/pluginutils": "^4.0.0", + "acorn": "^8.6.0", + "acorn-import-attributes": "^1.9.2", + "async-sema": "^3.1.1", + "bindings": "^1.4.0", + "estree-walker": "2.0.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.2", + "node-gyp-build": "^4.2.2", + "resolve-from": "^5.0.0" }, "bin": { - "semver": "bin/semver.js" + "nft": "out/cli.js" }, "engines": { - "node": ">=10" + "node": ">=16" } }, - "node_modules/eslint-plugin-prettier": { + "node_modules/@vercel/nft/node_modules/@rollup/pluginutils": { "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", - "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", - "dev": true, + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", "dependencies": { - "prettier-linter-helpers": "^1.0.0" + "estree-walker": "^2.0.1", + "picomatch": "^2.2.2" }, "engines": { - "node": ">=12.0.0" - }, - "peerDependencies": { - "eslint": ">=7.28.0", - "prettier": ">=2.0.0" - }, - "peerDependenciesMeta": { - "eslint-config-prettier": { - "optional": true - } + "node": ">= 8.0.0" } }, - "node_modules/eslint-plugin-promise": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", - "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "peerDependencies": { - "eslint": "^7.0.0 || ^8.0.0" + "node_modules/@vercel/nft/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/eslint-plugin-unicorn": { - "version": "44.0.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-44.0.2.tgz", - "integrity": "sha512-GLIDX1wmeEqpGaKcnMcqRvMVsoabeF0Ton0EX4Th5u6Kmf7RM9WBl705AXFEsns56ESkEs0uyelLuUTvz9Tr0w==", - "dev": true, + "node_modules/@vercel/nft/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dependencies": { - "@babel/helper-validator-identifier": "^7.19.1", - "ci-info": "^3.4.0", - "clean-regexp": "^1.0.0", - "eslint-utils": "^3.0.0", - "esquery": "^1.4.0", - "indent-string": "^4.0.0", - "is-builtin-module": "^3.2.0", - "lodash": "^4.17.21", - "pluralize": "^8.0.0", - "read-pkg-up": "^7.0.1", - "regexp-tree": "^0.1.24", - "safe-regex": "^2.1.1", - "semver": "^7.3.7", - "strip-indent": "^3.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=14.18" + "node": "*" }, "funding": { - "url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1" - }, - "peerDependencies": { - "eslint": ">=8.23.1" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/eslint-plugin-unicorn/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, + "node_modules/@vercel/nft/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=10" + "node": "*" } }, - "node_modules/eslint-plugin-vue": { - "version": "9.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.7.0.tgz", - "integrity": "sha512-DrOO3WZCZEwcLsnd3ohFwqCoipGRSTKTBTnLwdhqAbYZtzWl0o7D+D8ZhlmiZvABKTEl8AFsqH1GHGdybyoQmw==", - "dev": true, + "node_modules/@vercel/nft/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/@vitejs/plugin-vue-jsx": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-3.1.0.tgz", + "integrity": "sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==", "dependencies": { - "eslint-utils": "^3.0.0", - "natural-compare": "^1.4.0", - "nth-check": "^2.0.1", - "postcss-selector-parser": "^6.0.9", - "semver": "^7.3.5", - "vue-eslint-parser": "^9.0.1", - "xml-name-validator": "^4.0.0" + "@babel/core": "^7.23.3", + "@babel/plugin-transform-typescript": "^7.23.3", + "@vue/babel-plugin-jsx": "^1.1.5" }, "engines": { - "node": "^14.17.0 || >=16.0.0" + "node": "^14.18.0 || >=16.0.0" }, "peerDependencies": { - "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0" + "vite": "^4.0.0 || ^5.0.0", + "vue": "^3.0.0" } }, - "node_modules/eslint-plugin-vue/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, + "node_modules/@vitest/coverage-c8": { + "version": "0.33.0", + "resolved": "https://registry.npmjs.org/@vitest/coverage-c8/-/coverage-c8-0.33.0.tgz", + "integrity": "sha512-DaF1zJz4dcOZS4k/neiQJokmOWqsGXwhthfmUdPGorXIQHjdPvV6JQSYhQDI41MyI8c+IieQUdIDs5XAMHtDDw==", + "deprecated": "v8 coverage is moved to @vitest/coverage-v8 package", "dependencies": { - "lru-cache": "^6.0.0" + "@ampproject/remapping": "^2.2.1", + "c8": "^7.14.0", + "magic-string": "^0.30.1", + "picocolors": "^1.0.0", + "std-env": "^3.3.3" }, - "bin": { - "semver": "bin/semver.js" + "funding": { + "url": "https://opencollective.com/vitest" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "vitest": ">=0.30.0 <1" } }, - "node_modules/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, + "node_modules/@vitest/expect": { + "version": "0.33.0", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-0.33.0.tgz", + "integrity": "sha512-sVNf+Gla3mhTCxNJx+wJLDPp/WcstOe0Ksqz4Vec51MmgMth/ia0MGFEkIZmVGeTL5HtjYR4Wl/ZxBxBXZJTzQ==", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" + "@vitest/spy": "0.33.0", + "@vitest/utils": "0.33.0", + "chai": "^4.3.7" }, - "engines": { - "node": ">=8.0.0" + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "devOptional": true, + "node_modules/@vitest/runner": { + "version": "0.33.0", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-0.33.0.tgz", + "integrity": "sha512-UPfACnmCB6HKRHTlcgCoBh6ppl6fDn+J/xR8dTufWiKt/74Y9bHci5CKB8tESSV82zKYtkBJo9whU3mNvfaisg==", "dependencies": { - "eslint-visitor-keys": "^2.0.0" + "@vitest/utils": "0.33.0", + "p-limit": "^4.0.0", + "pathe": "^1.1.1" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } + }, + "node_modules/@vitest/runner/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dependencies": { + "yocto-queue": "^1.0.0" }, "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=5" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "devOptional": true, + "node_modules/@vitest/runner/node_modules/yocto-queue": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", + "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", "engines": { - "node": ">=10" + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "devOptional": true, + "node_modules/@vitest/snapshot": { + "version": "0.33.0", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-0.33.0.tgz", + "integrity": "sha512-tJjrl//qAHbyHajpFvr8Wsk8DIOODEebTu7pgBrP07iOepR5jYkLFiqLq2Ltxv+r0uptUb4izv1J8XBOwKkVYA==", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "magic-string": "^0.30.1", + "pathe": "^1.1.1", + "pretty-format": "^29.5.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://opencollective.com/vitest" } }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "devOptional": true, + "node_modules/@vitest/spy": { + "version": "0.33.0", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-0.33.0.tgz", + "integrity": "sha512-Kv+yZ4hnH1WdiAkPUQTpRxW8kGtH8VRTnus7ZTGovFYM1ZezJpvGtb9nPIjPnptHbsyIAxYZsEpVPYgtpjGnrg==", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" + "tinyspy": "^2.1.1" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://opencollective.com/vitest" } }, - "node_modules/eslint/node_modules/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==", - "devOptional": true, + "node_modules/@vitest/utils": { + "version": "0.33.0", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-0.33.0.tgz", + "integrity": "sha512-pF1w22ic965sv+EN6uoePkAOTkAPWM03Ri/jXNyMIKBb/XHLDPfhLvf/Fa9g0YECevAIz56oVYXhodLvLQ/awA==", "dependencies": { - "color-name": "~1.1.4" + "diff-sequences": "^29.4.3", + "loupe": "^2.3.6", + "pretty-format": "^29.5.0" }, - "engines": { - "node": ">=7.0.0" + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/eslint/node_modules/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==", - "devOptional": true - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/@volar/language-core": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.11.1.tgz", + "integrity": "sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==", "devOptional": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@volar/source-map": "1.11.1" } }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", + "node_modules/@volar/source-map": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.11.1.tgz", + "integrity": "sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==", "devOptional": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "muggle-string": "^0.3.1" } }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", + "node_modules/@volar/typescript": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.11.1.tgz", + "integrity": "sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==", "devOptional": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "dependencies": { + "@volar/language-core": "1.11.1", + "path-browserify": "^1.0.1" } }, - "node_modules/eslint/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "devOptional": true, + "node_modules/@vue-macros/common": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/@vue-macros/common/-/common-1.12.2.tgz", + "integrity": "sha512-+NGfhrPvPNOb3Wg9PNPEXPe0HTXmVe6XJawL1gi3cIjOSGIhpOdvmMT2cRuWb265IpA/PeL5Sqo0+DQnEDxLvw==", + "dependencies": { + "@babel/types": "^7.25.0", + "@rollup/pluginutils": "^5.1.0", + "@vue/compiler-sfc": "^3.4.34", + "ast-kit": "^1.0.1", + "local-pkg": "^0.5.0", + "magic-string-ast": "^0.6.2" + }, "engines": { - "node": ">=4.0" + "node": ">=16.14.0" + }, + "peerDependencies": { + "vue": "^2.7.0 || ^3.2.25" + }, + "peerDependenciesMeta": { + "vue": { + "optional": true + } } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz", - "integrity": "sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==", - "devOptional": true, + "node_modules/@vue-macros/common/node_modules/local-pkg": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", + "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", "dependencies": { - "type-fest": "^0.20.2" + "mlly": "^1.4.2", + "pkg-types": "^1.0.3" }, "engines": { - "node": ">=8" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "devOptional": true, - "engines": { - "node": ">=8" + "node_modules/@vue/babel-helper-vue-transform-on": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.2.2.tgz", + "integrity": "sha512-nOttamHUR3YzdEqdM/XXDyCSdxMA9VizUKoroLX6yTyRtggzQMHXcmwh8a7ZErcJttIBIc9s68a1B8GZ+Dmvsw==" + }, + "node_modules/@vue/babel-plugin-jsx": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.2.2.tgz", + "integrity": "sha512-nYTkZUVTu4nhP199UoORePsql0l+wj7v/oyQjtThUVhJl1U+6qHuoVhIvR3bf7eVKjbCK+Cs2AWd7mi9Mpz9rA==", + "dependencies": { + "@babel/helper-module-imports": "~7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/template": "^7.23.9", + "@babel/traverse": "^7.23.9", + "@babel/types": "^7.23.9", + "@vue/babel-helper-vue-transform-on": "1.2.2", + "@vue/babel-plugin-resolve-type": "1.2.2", + "camelcase": "^6.3.0", + "html-tags": "^3.3.1", + "svg-tags": "^1.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + } } }, - "node_modules/eslint/node_modules/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==", - "devOptional": true, + "node_modules/@vue/babel-plugin-jsx/node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", "dependencies": { - "has-flag": "^4.0.0" + "@babel/types": "^7.22.15" }, "engines": { - "node": ">=8" + "node": ">=6.9.0" } }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "devOptional": true, - "engines": { - "node": ">=10" + "node_modules/@vue/babel-plugin-resolve-type": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-resolve-type/-/babel-plugin-resolve-type-1.2.2.tgz", + "integrity": "sha512-EntyroPwNg5IPVdUJupqs0CFzuf6lUrVvCspmv2J1FITLeGnUCuoGNNk78dgCusxEiYj6RMkTJflGSxk5aIC4A==", + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/helper-module-imports": "~7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/parser": "^7.23.9", + "@vue/compiler-sfc": "^3.4.15" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/espree": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", - "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", - "devOptional": true, + "node_modules/@vue/babel-plugin-resolve-type/node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", "dependencies": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" + "@babel/types": "^7.22.15" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=6.9.0" } }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "devOptional": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node_modules/@vue/compiler-core": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.4.38.tgz", + "integrity": "sha512-8IQOTCWnLFqfHzOGm9+P8OPSEDukgg3Huc92qSG49if/xI2SAwLHQO2qaPQbjCWPBcQoO1WYfXfTACUrWV3c5A==", + "dependencies": { + "@babel/parser": "^7.24.7", + "@vue/shared": "3.4.38", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.0" } }, - "node_modules/esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", - "devOptional": true, + "node_modules/@vue/compiler-dom": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.4.38.tgz", + "integrity": "sha512-Osc/c7ABsHXTsETLgykcOwIxFktHfGSUDkb05V61rocEfsFDcjDLH/IHJSNJP+/Sv9KeN2Lx1V6McZzlSb9EhQ==", "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" + "@vue/compiler-core": "3.4.38", + "@vue/shared": "3.4.38" } }, - "node_modules/esquery/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "devOptional": true, - "engines": { - "node": ">=4.0" + "node_modules/@vue/compiler-sfc": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.4.38.tgz", + "integrity": "sha512-s5QfZ+9PzPh3T5H4hsQDJtI8x7zdJaew/dCGgqZ2630XdzaZ3AD8xGZfBqpT8oaD/p2eedd+pL8tD5vvt5ZYJQ==", + "dependencies": { + "@babel/parser": "^7.24.7", + "@vue/compiler-core": "3.4.38", + "@vue/compiler-dom": "3.4.38", + "@vue/compiler-ssr": "3.4.38", + "@vue/shared": "3.4.38", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.10", + "postcss": "^8.4.40", + "source-map-js": "^1.2.0" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "devOptional": true, + "node_modules/@vue/compiler-ssr": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.4.38.tgz", + "integrity": "sha512-YXznKFQ8dxYpAz9zLuVvfcXhc31FSPFDcqr0kyujbOwNhlmaNvL2QfIy+RZeJgSn5Fk54CWoEUeW+NVBAogGaw==", "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" + "@vue/compiler-dom": "3.4.38", + "@vue/shared": "3.4.38" } }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "devOptional": true, - "engines": { - "node": ">=4.0" + "node_modules/@vue/devtools-api": { + "version": "6.6.3", + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.6.3.tgz", + "integrity": "sha512-0MiMsFma/HqA6g3KLKn+AGpL1kgKhFWszC9U29NfpWK5LE7bjeXxySWJrOJ77hBz+TBrBQ7o4QJqbPbqbs8rJw==" + }, + "node_modules/@vue/devtools-core": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/@vue/devtools-core/-/devtools-core-7.3.3.tgz", + "integrity": "sha512-i6Bwkx4OwfY0QVHjAdsivhlzZ2HMj7fbNRYJsWspQ+dkA1f3nTzycPqZmVUsm2TGkbQlhTMhCAdDoP97JKoc+g==", + "dependencies": { + "@vue/devtools-kit": "^7.3.3", + "@vue/devtools-shared": "^7.3.3", + "mitt": "^3.0.1", + "nanoid": "^3.3.4", + "pathe": "^1.1.2", + "vite-hot-client": "^0.2.3" } }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, + "node_modules/@vue/devtools-core/node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, "engines": { - "node": ">=4.0" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/estree-walker": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.1.tgz", - "integrity": "sha512-woY0RUD87WzMBUiZLx8NsYr23N5BKsOMZHhu2hoNRVh6NXGfoiT1KOL8G3UHlJAnEDGmfa5ubNA/AacfG+Kb0g==" - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "devOptional": true, - "engines": { - "node": ">=0.10.0" + "node_modules/@vue/devtools-kit": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/@vue/devtools-kit/-/devtools-kit-7.3.3.tgz", + "integrity": "sha512-m+dFI57BrzKYPKq73mt4CJ5GWld5OLBseLHPHGVP7CaILNY9o1gWVJWAJeF8XtQ9LTiMxZSaK6NcBsFuxAhD0g==", + "dependencies": { + "@vue/devtools-shared": "^7.3.3", + "birpc": "^0.2.17", + "hookable": "^5.5.3", + "mitt": "^3.0.1", + "perfect-debounce": "^1.0.0", + "speakingurl": "^14.0.1", + "superjson": "^2.2.1" } }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "engines": { - "node": ">= 0.6" + "node_modules/@vue/devtools-shared": { + "version": "7.3.9", + "resolved": "https://registry.npmjs.org/@vue/devtools-shared/-/devtools-shared-7.3.9.tgz", + "integrity": "sha512-CdfMRZKXyI8vw+hqOcQIiLihB6Hbbi7WNZGp7LsuH1Qe4aYAFmTaKjSciRZ301oTnwmU/knC/s5OGuV6UNiNoA==", + "dependencies": { + "rfdc": "^1.4.1" } }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "node_modules/@vue/language-core": { + "version": "1.8.24", + "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.24.tgz", + "integrity": "sha512-2ClHvij0WlsDWryPzXJCSpPc6rusZFNoVtRZGgGGkKCmKuIREDDKmH8j+1tYyxPYyH0qL6pZ6+IHD8KIm5nWAw==", + "devOptional": true, "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "@volar/language-core": "~1.11.1", + "@volar/source-map": "~1.11.1", + "@vue/compiler-dom": "^3.3.0", + "@vue/shared": "^3.3.0", + "computeds": "^0.0.1", + "minimatch": "^9.0.3", + "muggle-string": "^0.3.1", + "path-browserify": "^1.0.1", + "vue-template-compiler": "^2.7.14" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "typescript": "*" }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "node_modules/@vue/reactivity": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.4.38.tgz", + "integrity": "sha512-4vl4wMMVniLsSYYeldAKzbk72+D3hUnkw9z8lDeJacTxAkXeDAP1uE9xr2+aKIN0ipOL8EG2GPouVTH6yF7Gnw==", "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" + "@vue/shared": "3.4.38" } }, - "node_modules/externality": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/externality/-/externality-1.0.0.tgz", - "integrity": "sha512-MAU9ci3XdpqOX1aoIoyL2DMzW97P8LYeJxIUkfXhOfsrkH4KLHFaYDwKN0B2l6tqedVJWiTIJtWmxmZfa05vOQ==", + "node_modules/@vue/runtime-core": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.4.38.tgz", + "integrity": "sha512-21z3wA99EABtuf+O3IhdxP0iHgkBs1vuoCAsCKLVJPEjpVqvblwBnTj42vzHRlWDCyxu9ptDm7sI2ZMcWrQqlA==", "dependencies": { - "enhanced-resolve": "^5.10.0", - "mlly": "^1.0.0", - "pathe": "^1.0.0", - "ufo": "^1.0.0" + "@vue/reactivity": "3.4.38", + "@vue/shared": "3.4.38" } }, - "node_modules/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==", - "devOptional": true + "node_modules/@vue/runtime-dom": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.4.38.tgz", + "integrity": "sha512-afZzmUreU7vKwKsV17H1NDThEEmdYI+GCAK/KY1U957Ig2NATPVjCROv61R19fjZNzMmiU03n79OMnXyJVN0UA==", + "dependencies": { + "@vue/reactivity": "3.4.38", + "@vue/runtime-core": "3.4.38", + "@vue/shared": "3.4.38", + "csstype": "^3.1.3" + } }, - "node_modules/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 + "node_modules/@vue/server-renderer": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.4.38.tgz", + "integrity": "sha512-NggOTr82FbPEkkUvBm4fTGcwUY8UuTsnWC/L2YZBmvaQ4C4Jl/Ao4HHTB+l7WnFCt5M/dN3l0XLuyjzswGYVCA==", + "dependencies": { + "@vue/compiler-ssr": "3.4.38", + "@vue/shared": "3.4.38" + }, + "peerDependencies": { + "vue": "3.4.38" + } }, - "node_modules/fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", + "node_modules/@vue/shared": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.4.38.tgz", + "integrity": "sha512-q0xCiLkuWWQLzVrecPb0RMsNWyxICOjPrcrwxTUEHb1fsnvni4dcuyG7RT/Ie7VPTvnjzIaWzRMUBsrqNj/hhw==" + }, + "node_modules/@vuetify/loader-shared": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/@vuetify/loader-shared/-/loader-shared-1.7.1.tgz", + "integrity": "sha512-kLUvuAed6RCvkeeTNJzuy14pqnkur8lTuner7v7pNE/kVhPR97TuyXwBSBMR1cJeiLiOfu6SF5XlCYbXByEx1g==", "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" + "find-cache-dir": "^3.3.2", + "upath": "^2.0.1" }, - "engines": { - "node": ">=8.6.0" + "peerDependencies": { + "vue": "^3.0.0", + "vuetify": "^3.0.0-beta.4" } }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/@vueuse/core": { + "version": "10.11.1", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-10.11.1.tgz", + "integrity": "sha512-guoy26JQktXPcz+0n3GukWIy/JDNKti9v6VEMu6kV2sYBsWuGiTU8OWdg+ADfUbHg3/3DlqySDe7JmdHrktiww==", "dependencies": { - "is-glob": "^4.0.1" + "@types/web-bluetooth": "^0.0.20", + "@vueuse/metadata": "10.11.1", + "@vueuse/shared": "10.11.1", + "vue-demi": ">=0.14.8" }, - "engines": { - "node": ">= 6" + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "devOptional": true - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "devOptional": true - }, - "node_modules/fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", - "dependencies": { - "reusify": "^1.0.4" + "node_modules/@vueuse/core/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } } }, - "node_modules/fetch-blob": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", - "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" + "node_modules/@vueuse/integrations": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/integrations/-/integrations-11.0.3.tgz", + "integrity": "sha512-w6CDisaxs19S5Fd+NPPLFaA3GoX5gxuxrbTTBu0EYap7oH13w75L6C/+7e9mcoF9akhcR6GyYajwVMQEjdapJg==", + "dev": true, + "dependencies": { + "@vueuse/core": "11.0.3", + "@vueuse/shared": "11.0.3", + "vue-demi": ">=0.14.10" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "async-validator": "^4", + "axios": "^1", + "change-case": "^5", + "drauu": "^0.4", + "focus-trap": "^7", + "fuse.js": "^7", + "idb-keyval": "^6", + "jwt-decode": "^4", + "nprogress": "^0.2", + "qrcode": "^1.5", + "sortablejs": "^1", + "universal-cookie": "^7" + }, + "peerDependenciesMeta": { + "async-validator": { + "optional": true }, - { - "type": "paypal", - "url": "https://paypal.me/jimmywarting" + "axios": { + "optional": true + }, + "change-case": { + "optional": true + }, + "drauu": { + "optional": true + }, + "focus-trap": { + "optional": true + }, + "fuse.js": { + "optional": true + }, + "idb-keyval": { + "optional": true + }, + "jwt-decode": { + "optional": true + }, + "nprogress": { + "optional": true + }, + "qrcode": { + "optional": true + }, + "sortablejs": { + "optional": true + }, + "universal-cookie": { + "optional": true } - ], + } + }, + "node_modules/@vueuse/integrations/node_modules/@vueuse/core": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-11.0.3.tgz", + "integrity": "sha512-RENlh64+SYA9XMExmmH1a3TPqeIuJBNNB/63GT35MZI+zpru3oMRUA6cEFr9HmGqEgUisurwGwnIieF6qu3aXw==", + "dev": true, "dependencies": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" + "@types/web-bluetooth": "^0.0.20", + "@vueuse/metadata": "11.0.3", + "@vueuse/shared": "11.0.3", + "vue-demi": ">=0.14.10" }, - "engines": { - "node": "^12.20 || >= 14.13" + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/figures": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-5.0.0.tgz", - "integrity": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==", + "node_modules/@vueuse/integrations/node_modules/@vueuse/metadata": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-11.0.3.tgz", + "integrity": "sha512-+FtbO4SD5WpsOcQTcC0hAhNlOid6QNLzqedtquTtQ+CRNBoAt9GuV07c6KNHK1wCmlq8DFPwgiLF2rXwgSHX5Q==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/integrations/node_modules/@vueuse/shared": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-11.0.3.tgz", + "integrity": "sha512-0rY2m6HS5t27n/Vp5cTDsKTlNnimCqsbh/fmT2LgE+aaU42EMfXo8+bNX91W9I7DDmxfuACXMmrd7d79JxkqWA==", + "dev": true, "dependencies": { - "escape-string-regexp": "^5.0.0", - "is-unicode-supported": "^1.2.0" - }, - "engines": { - "node": ">=14" + "vue-demi": ">=0.14.10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/figures/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "node_modules/@vueuse/integrations/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "dev": true, + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, "engines": { "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "devOptional": true, - "dependencies": { - "flat-cache": "^3.0.4" + "url": "https://github.com/sponsors/antfu" }, - "engines": { - "node": "^10.12.0 || >=12.0.0" + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } } }, - "node_modules/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==" + "node_modules/@vueuse/metadata": { + "version": "10.11.1", + "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-10.11.1.tgz", + "integrity": "sha512-IGa5FXd003Ug1qAZmyE8wF3sJ81xGLSqTqtQ6jaVfkeZ4i5kS2mwQF61yhVqojRnenVew5PldLyRgvdl4YYuSw==", + "funding": { + "url": "https://github.com/sponsors/antfu" + } }, - "node_modules/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==", + "node_modules/@vueuse/nuxt": { + "version": "10.11.1", + "resolved": "https://registry.npmjs.org/@vueuse/nuxt/-/nuxt-10.11.1.tgz", + "integrity": "sha512-UiaYSIwOkmUVn8Gl1AqtLWYR12flO+8sEu9X0Y1fNjSR7EWy9jMuiCvOGqwtoeTsqfHrivl0d5HfMzr11GFnMA==", "dependencies": { - "to-regex-range": "^5.0.1" + "@nuxt/kit": "^3.12.1", + "@vueuse/core": "10.11.1", + "@vueuse/metadata": "10.11.1", + "local-pkg": "^0.5.0", + "vue-demi": ">=0.14.8" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "nuxt": "^3.0.0" } }, - "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "node_modules/@vueuse/nuxt/node_modules/local-pkg": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", + "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" + "mlly": "^1.4.2", + "pkg-types": "^1.0.3" }, "engines": { - "node": ">=8" + "node": ">=14" }, "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "devOptional": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "node_modules/@vueuse/nuxt/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "bin": { - "flat": "cli.js" + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" + }, + "peerDependenciesMeta": { + "@vue/composition-api": { + "optional": true + } } }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "devOptional": true, + "node_modules/@vueuse/shared": { + "version": "10.11.1", + "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-10.11.1.tgz", + "integrity": "sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==", "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" + "vue-demi": ">=0.14.8" }, - "engines": { - "node": "^10.12.0 || >=12.0.0" + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "devOptional": true - }, - "node_modules/follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], + "node_modules/@vueuse/shared/node_modules/vue-demi": { + "version": "0.14.10", + "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.14.10.tgz", + "integrity": "sha512-nMZBOwuzabUO0nLgIcc6rycZEebF6eeUfaiQx9+WSk8e29IbLvPU9feI6tqW4kTo3hvoYAJkMh8n8D0fuISphg==", + "hasInstallScript": true, + "bin": { + "vue-demi-fix": "bin/vue-demi-fix.js", + "vue-demi-switch": "bin/vue-demi-switch.js" + }, "engines": { - "node": ">=4.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@vue/composition-api": "^1.0.0-rc.1", + "vue": "^3.0.0-0 || ^2.6.0" }, "peerDependenciesMeta": { - "debug": { + "@vue/composition-api": { "optional": true } } }, - "node_modules/form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "node_modules/@webassemblyjs/ast": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", + "integrity": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==", + "dev": true, + "peer": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - }, - "engines": { - "node": ">= 6" + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" } }, - "node_modules/formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.12.1.tgz", + "integrity": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "peer": true, "dependencies": { - "fetch-blob": "^3.1.2" - }, - "engines": { - "node": ">=12.20.0" + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" } }, - "node_modules/fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://www.patreon.com/infusion" + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.12.1.tgz", + "integrity": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.12.1" } }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "engines": { - "node": ">= 0.6" + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "peer": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" } }, - "node_modules/fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - }, - "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "peer": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" + "@xtuc/long": "4.2.2" } }, - "node_modules/fs-memo": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fs-memo/-/fs-memo-1.2.0.tgz", - "integrity": "sha512-YEexkCpL4j03jn5SxaMHqcO6IuWuqm8JFUYhyCep7Ao89JIYmB8xoKhK7zXXJ9cCaNXpyNH5L3QtAmoxjoHW2w==" + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true, + "peer": true }, - "node_modules/fs-minipass": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", - "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.12.1.tgz", + "integrity": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==", + "dev": true, + "peer": true, "dependencies": { - "minipass": "^2.6.0" + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-opt": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1", + "@webassemblyjs/wast-printer": "1.12.1" } }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.12.1.tgz", + "integrity": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, - "node_modules/function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" - }, - "node_modules/function.prototype.name": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.12.1.tgz", + "integrity": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==", "dev": true, + "peer": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-buffer": "1.12.1", + "@webassemblyjs/wasm-gen": "1.12.1", + "@webassemblyjs/wasm-parser": "1.12.1" } }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.12.1.tgz", + "integrity": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.12.1", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" } }, - "node_modules/gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.12.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.12.1.tgz", + "integrity": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==", + "dev": true, + "peer": true, "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, - "engines": { - "node": ">=10" + "@webassemblyjs/ast": "1.12.1", + "@xtuc/long": "4.2.2" } }, - "node_modules/gauge/node_modules/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==" + "node_modules/@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, + "peer": true }, - "node_modules/gauge/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/@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, + "peer": true + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "event-target-shim": "^5.0.0" }, "engines": { - "node": ">=8" + "node": ">=6.5" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "node_modules/acorn": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "bin": { + "acorn": "bin/acorn" + }, "engines": { - "node": ">=6.9.0" + "node": ">=0.4.0" } }, - "node_modules/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==", - "engines": { - "node": "6.* || 8.* || >= 10.*" + "node_modules/acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", + "peerDependencies": { + "acorn": "^8" } }, - "node_modules/get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "devOptional": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.3", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.3.tgz", + "integrity": "sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw==", "dependencies": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" + "acorn": "^8.11.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.4.0" } }, - "node_modules/get-port-please": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-2.6.1.tgz", - "integrity": "sha512-4PDSrL6+cuMM1xs6w36ZIkaKzzE0xzfVBCfebHIJ3FE8iB9oic/ECwPw3iNiD4h1AoJ5XLLBhEviFAVrZsDC5A==", + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dependencies": { - "fs-memo": "^1.2.0" + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" } }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "engines": { - "node": ">=10" + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "devOptional": true, + "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" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "node_modules/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, + "peer": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "type-fest": "^0.21.3" }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/get-tsconfig": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.2.0.tgz", - "integrity": "sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==", - "dev": true, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/git-config-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/git-config-path/-/git-config-path-2.0.0.tgz", - "integrity": "sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==", + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/git-up": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", - "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", + "node_modules/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==", "dependencies": { - "is-ssh": "^1.4.0", - "parse-url": "^8.1.0" + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/git-url-parse": { - "version": "13.1.0", - "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.0.tgz", - "integrity": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==", - "dependencies": { - "git-up": "^7.0.0" - } + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true }, - "node_modules/gittar": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/gittar/-/gittar-0.1.1.tgz", - "integrity": "sha512-p+XuqWJpW9ahUuNTptqeFjudFq31o6Jd+maMBarkMAR5U3K9c7zJB4sQ4BV8mIqrTOV29TtqikDhnZfCD4XNfQ==", + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dependencies": { - "mkdirp": "^0.5.1", - "tar": "^4.4.1" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" }, "engines": { - "node": ">=4" + "node": ">= 8" } }, - "node_modules/glob": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", - "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + }, + "node_modules/archiver": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/archiver/-/archiver-7.0.1.tgz", + "integrity": "sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" + "archiver-utils": "^5.0.2", + "async": "^3.2.4", + "buffer-crc32": "^1.0.0", + "readable-stream": "^4.0.0", + "readdir-glob": "^1.1.2", + "tar-stream": "^3.0.0", + "zip-stream": "^6.0.1" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">= 14" } }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "devOptional": true, + "node_modules/archiver-utils": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-5.0.2.tgz", + "integrity": "sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==", "dependencies": { - "is-glob": "^4.0.3" + "glob": "^10.0.0", + "graceful-fs": "^4.2.0", + "is-stream": "^2.0.1", + "lazystream": "^1.0.0", + "lodash": "^4.17.15", + "normalize-path": "^3.0.0", + "readable-stream": "^4.0.0" }, "engines": { - "node": ">=10.13.0" + "node": ">= 14" } }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/archiver-utils/node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", "dependencies": { - "balanced-match": "^1.0.0" + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/glob/node_modules/minimatch": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", - "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "node_modules/archiver-utils/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", "dependencies": { - "brace-expansion": "^2.0.1" + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" }, - "engines": { - "node": ">=10" + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "node_modules/archiver-utils/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/globalyzer": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", - "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==", - "dev": true - }, - "node_modules/globby": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz", - "integrity": "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==", + "node_modules/archiver-utils/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dependencies": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/globrex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", - "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", - "dev": true + "node_modules/archiver-utils/node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "engines": { + "node": ">=16 || 14 >=14.17" + } }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" + "node_modules/archiver-utils/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "engines": { + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - }, - "node_modules/grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "devOptional": true - }, - "node_modules/gzip-size": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-7.0.0.tgz", - "integrity": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==", + "node_modules/are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", + "deprecated": "This package is no longer supported.", "dependencies": { - "duplexer": "^0.1.2" + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/h3": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/h3/-/h3-1.0.1.tgz", - "integrity": "sha512-gDCGpRvjchZW2JBlTqbJ9IOs+mdkXXuwSQkSye+jubHAv/UhdamKqoQvd4RFgyBNjHSId8Y+b10UdTcPlP/V+w==", + "node_modules/are-we-there-yet/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dependencies": { - "cookie-es": "^0.5.0", - "destr": "^1.2.1", - "radix3": "^1.0.0", - "ufo": "^1.0.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "dev": true, "dependencies": { - "function-bind": "^1.1.1" + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" }, "engines": { - "node": ">= 0.4.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "node_modules/array-includes": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz", + "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==", "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0", + "get-intrinsic": "^1.2.4", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "node_modules/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, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "node_modules/array.prototype.findlastindex": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz", + "integrity": "sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.1" + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-shim-unscopables": "^1.0.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "engines": { "node": ">= 0.4" }, @@ -5752,13 +6393,16 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -5767,346 +6411,462 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" - }, - "node_modules/hash-sum": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", - "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==" - }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", "dev": true, - "bin": { - "he": "bin/he" - } - }, - "node_modules/hookable": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.4.2.tgz", - "integrity": "sha512-6rOvaUiNKy9lET1X0ECnyZ5O5kSV0PJbtA5yZUgdEF7fGJEVwSLSislltyt7nFwVVALYHQJtfGeAR2Y0A0uJkg==" - }, - "node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/html-tags": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz", - "integrity": "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "dev": true, "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" }, "engines": { - "node": ">= 0.8" - } - }, - "node_modules/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==", - "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" + "node": ">= 0.4" }, - "engines": { - "node": ">=8.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/http-shutdown": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/http-shutdown/-/http-shutdown-1.2.2.tgz", - "integrity": "sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==", + "node_modules/assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" + "node": "*" } }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "node_modules/ast-kit": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-1.1.0.tgz", + "integrity": "sha512-RlNqd4u6c/rJ5R+tN/ZTtyNrH8X0NHCvyt6gD8RHa3JjzxxHWoyaU0Ujk3Zjbh7IZqrYl1Sxm6XzZifmVxXxHQ==", "dependencies": { - "agent-base": "6", - "debug": "4" + "@babel/parser": "^7.25.3", + "pathe": "^1.1.2" }, "engines": { - "node": ">= 6" + "node": ">=16.14.0" } }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "node_modules/ast-walker-scope": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/ast-walker-scope/-/ast-walker-scope-0.5.0.tgz", + "integrity": "sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==", + "dependencies": { + "@babel/parser": "^7.22.7", + "ast-kit": "^0.9.4" + }, "engines": { - "node": ">=10.17.0" + "node": ">=16.14.0" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "node_modules/ast-walker-scope/node_modules/ast-kit": { + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-0.9.5.tgz", + "integrity": "sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" + "@babel/parser": "^7.22.7", + "@rollup/pluginutils": "^5.0.2", + "pathe": "^1.1.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=16.14.0" } }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "node_modules/async": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==" + }, + "node_modules/async-sema": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", + "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + }, + "node_modules/autoprefixer": { + "version": "10.4.20", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" + "type": "opencollective", + "url": "https://opencollective.com/postcss/" }, { - "type": "patreon", - "url": "https://www.patreon.com/feross" + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" }, { - "type": "consulting", - "url": "https://feross.org/support" + "type": "github", + "url": "https://github.com/sponsors/ai" } - ] - }, - "node_modules/ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + ], + "dependencies": { + "browserslist": "^4.23.3", + "caniuse-lite": "^1.0.30001646", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, "engines": { - "node": ">= 4" + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/immutable": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.1.0.tgz", - "integrity": "sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==" - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "devOptional": true, + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "dev": true, "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "possible-typed-array-names": "^1.0.0" }, "engines": { - "node": ">=6" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "devOptional": true, + "node_modules/axios": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.5.tgz", + "integrity": "sha512-fZu86yCo+svH3uqJ/yTdQ0QHpQu5oL+/QE+QPSv6BZSkDAoky9vytxp7u5qk83OJFS3kEBcesWni9WTZAv3tSw==", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/b4a": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz", + "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg==" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/bare-events": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.4.2.tgz", + "integrity": "sha512-qMKFd2qG/36aA4GwvKq8MxnPgCQAmBWmSyLWsJcbn8v03wvIPQ/hG1Ms8bPzndZxMDoHpxez5VOS+gC9Yi24/Q==", + "optional": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/basic-auth": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz", + "integrity": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==", + "dependencies": { + "safe-buffer": "5.1.2" + }, "engines": { - "node": ">=0.8.19" + "node": ">= 0.8" } }, - "node_modules/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, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "file-uri-to-path": "1.0.0" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "node_modules/birpc": { + "version": "0.2.17", + "resolved": "https://registry.npmjs.org/birpc/-/birpc-0.2.17.tgz", + "integrity": "sha512-+hkTxhot+dWsLpp3gia5AkVHIsKlZybNT5gIYiDlNzJrmYPcTM9k5/w2uaj3IPpd7LlEYpmCj4Jj1nC41VhDFg==", + "funding": { + "url": "https://github.com/sponsors/antfu" + } }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" }, - "node_modules/inquirer": { - "version": "9.1.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.1.4.tgz", - "integrity": "sha512-9hiJxE5gkK/cM2d1mTEnuurGTAoHebbkX0BYl3h7iEg7FYfuNIom+nDfBCSWtvSnoSrWCeBxqqBZu26xdlJlXA==", - "dependencies": { - "ansi-escapes": "^6.0.0", - "chalk": "^5.1.2", - "cli-cursor": "^4.0.0", - "cli-width": "^4.0.0", - "external-editor": "^3.0.3", - "figures": "^5.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^6.1.2", - "run-async": "^2.4.0", - "rxjs": "^7.5.7", - "string-width": "^5.1.2", - "strip-ansi": "^7.0.1", - "through": "^2.3.6", - "wrap-ansi": "^8.0.1" + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dependencies": { + "fill-range": "^7.1.1" }, "engines": { - "node": ">=12.0.0" + "node": ">=8" } }, - "node_modules/inquirer/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "engines": { - "node": ">=12" + "node_modules/browserslist": { + "version": "4.23.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.3.tgz", + "integrity": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001646", + "electron-to-chromium": "^1.5.4", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/inquirer/node_modules/chalk": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz", - "integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==", + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-crc32": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-1.0.0.tgz", + "integrity": "sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==", "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=8.0.0" } }, - "node_modules/inquirer/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dependencies": { - "ansi-regex": "^6.0.1" - }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", "engines": { - "node": ">=12" + "node": ">=6" }, "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "node_modules/builtins": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.1.0.tgz", + "integrity": "sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" + "semver": "^7.0.0" + } + }, + "node_modules/builtins/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">= 0.4" + "node": ">=10" } }, - "node_modules/ioredis": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ioredis/-/ioredis-5.2.4.tgz", - "integrity": "sha512-qIpuAEt32lZJQ0XyrloCRdlEdUUNGG9i0UOk6zgzK6igyudNWqEBxfH6OlbnOOoBBvr1WB02mm8fR55CnikRng==", + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", "dependencies": { - "@ioredis/commands": "^1.1.1", - "cluster-key-slot": "^1.1.0", - "debug": "^4.3.4", - "denque": "^2.0.1", - "lodash.defaults": "^4.2.0", - "lodash.isarguments": "^3.1.0", - "redis-errors": "^1.2.0", - "redis-parser": "^3.0.0", - "standard-as-callback": "^2.1.0" + "run-applescript": "^7.0.0" }, "engines": { - "node": ">=12.22.0" + "node": ">=18" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/ioredis" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ip-regex": { + "node_modules/bundle-require": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-5.0.0.tgz", - "integrity": "sha512-fOCG6lhoKKakwv+C6KdsOnGvgXnmgfmp0myi3bcNwj3qfwPAxRKWEuFhvEFF7ceYIz6+1jRZ+yguLFAmUNPEfw==", + "resolved": "https://registry.npmjs.org/bundle-require/-/bundle-require-5.0.0.tgz", + "integrity": "sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==", + "dev": true, + "dependencies": { + "load-tsconfig": "^0.2.3" + }, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "esbuild": ">=0.18" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true + "node_modules/c12": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/c12/-/c12-1.11.1.tgz", + "integrity": "sha512-KDU0TvSvVdaYcQKQ6iPHATGz/7p/KiVjPg4vQrB6Jg/wX9R0yl5RZxWm9IoZqaIHD2+6PZd81+KMGwRr/lRIUg==", + "dependencies": { + "chokidar": "^3.6.0", + "confbox": "^0.1.7", + "defu": "^6.1.4", + "dotenv": "^16.4.5", + "giget": "^1.2.3", + "jiti": "^1.21.6", + "mlly": "^1.7.1", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.1.1", + "rc9": "^2.1.2" + }, + "peerDependencies": { + "magicast": "^0.3.4" + }, + "peerDependenciesMeta": { + "magicast": { + "optional": true + } + } }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dev": true, + "node_modules/c8": { + "version": "7.14.0", + "resolved": "https://registry.npmjs.org/c8/-/c8-7.14.0.tgz", + "integrity": "sha512-i04rtkkcNcCf7zsQcSv/T9EbUn4RXQ6mropeMcjFOsQXQ0iGLAr/xT6TImQg4+U9hmNpN9XdvPkjUL1IzbgxJw==", "dependencies": { - "has-bigints": "^1.0.1" + "@bcoe/v8-coverage": "^0.2.3", + "@istanbuljs/schema": "^0.1.3", + "find-up": "^5.0.0", + "foreground-child": "^2.0.0", + "istanbul-lib-coverage": "^3.2.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-reports": "^3.1.4", + "rimraf": "^3.0.2", + "test-exclude": "^6.0.0", + "v8-to-istanbul": "^9.0.0", + "yargs": "^16.2.0", + "yargs-parser": "^20.2.9" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "c8": "bin/c8.js" + }, + "engines": { + "node": ">=10.12.0" } }, - "node_modules/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==", - "dependencies": { - "binary-extensions": "^2.0.0" - }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", "engines": { "node": ">=8" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", - "dev": true, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -6115,217 +6875,344 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-builtin-module": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.0.tgz", - "integrity": "sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw==", - "dependencies": { - "builtin-modules": "^3.3.0" - }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "devOptional": true, "engines": { "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "node_modules/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==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001653", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001653.tgz", + "integrity": "sha512-XGWQVB8wFQ2+9NZwZ10GxTYC5hk0Fa+q8cSkr0tgvMhYhMHP/QC+WTgrePMDBWiWc/pV+1ik82Al20XOK25Gcw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chai": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.5.0.tgz", + "integrity": "sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==", "dependencies": { - "has": "^1.0.3" + "assertion-error": "^1.1.0", + "check-error": "^1.0.3", + "deep-eql": "^4.1.3", + "get-func-name": "^2.0.2", + "loupe": "^2.3.6", + "pathval": "^1.1.1", + "type-detect": "^4.1.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=4" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dev": true, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dependencies": { - "has-tostringtag": "^1.0.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { - "node": ">= 0.4" + "node": ">=4" + } + }, + "node_modules/check-error": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.3.tgz", + "integrity": "sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==", + "dependencies": { + "get-func-name": "^2.0.2" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "*" } }, - "node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", - "bin": { - "is-docker": "cli.js" + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">= 8.10.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/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==", + "node_modules/chrome-trace-event": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", + "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], "engines": { "node": ">=8" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/citty": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", + "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", "dependencies": { - "is-extglob": "^2.1.1" + "consola": "^3.2.3" + } + }, + "node_modules/clean-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", + "integrity": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/is-interactive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", - "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", + "node_modules/clear": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/clear/-/clear-0.1.0.tgz", + "integrity": "sha512-qMjRnoL+JDPJHeLePZJuao6+8orzHMGP04A8CdwCNsKhRbOnKRjefxONR7bwILT3MHecxKBjHkKL/tkZ8r4Uzw==", "engines": { - "node": ">=12" + "node": "*" + } + }, + "node_modules/clipboardy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-4.0.0.tgz", + "integrity": "sha512-5mOlNS0mhX0707P2I0aZ2V/cmHUEO/fL7VFLqszkhUsxt7RwnmrInf/eEQKlf5GzvYeHIjT+Ov1HRfNmymlG0w==", + "dependencies": { + "execa": "^8.0.1", + "is-wsl": "^3.1.0", + "is64bit": "^2.0.0" + }, + "engines": { + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" + "node_modules/clipboardy/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true, + "node_modules/clipboardy/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", "engines": { - "node": ">= 0.4" + "node": ">=16" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "node_modules/clipboardy/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", "engines": { - "node": ">=0.12.0" + "node": ">=16.17.0" } }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, + "node_modules/clipboardy/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "engines": { - "node": ">= 0.4" + "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "devOptional": true, - "engines": { - "node": ">=8" + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, - "node_modules/is-primitive": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-3.0.1.tgz", - "integrity": "sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==", + "node_modules/cluster-key-slot": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz", + "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==", "engines": { "node": ">=0.10.0" } }, - "node_modules/is-promise": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", - "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==" - }, - "node_modules/is-reference": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", - "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", + "node_modules/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==", "dependencies": { - "@types/estree": "*" + "color-name": "1.1.3" } }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", - "dev": true, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "delayed-stream": "~1.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.8" } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" } }, - "node_modules/is-ssh": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", - "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "node_modules/compatx": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/compatx/-/compatx-0.1.8.tgz", + "integrity": "sha512-jcbsEAR81Bt5s1qOFymBufmCbXCXbk0Ql+K5ouj6gCyx2yHlu6AgmGIi9HxfKixpUDO5bCFJUHQ5uM6ecbTebw==" + }, + "node_modules/compress-commons": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-6.0.2.tgz", + "integrity": "sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==", "dependencies": { - "protocols": "^2.0.1" + "crc-32": "^1.2.0", + "crc32-stream": "^6.0.0", + "is-stream": "^2.0.1", + "normalize-path": "^3.0.0", + "readable-stream": "^4.0.0" + }, + "engines": { + "node": ">= 14" } }, - "node_modules/is-stream": { + "node_modules/compress-commons/node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", @@ -6336,1218 +7223,1260 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "dependencies": { - "has-tostringtag": "^1.0.0" - }, + "node_modules/computeds": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/computeds/-/computeds-0.0.1.tgz", + "integrity": "sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==", + "devOptional": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/confbox": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/confbox/-/confbox-0.1.7.tgz", + "integrity": "sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA==" + }, + "node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/cookie-es": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.2.tgz", + "integrity": "sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==" + }, + "node_modules/copy-anything": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-3.0.5.tgz", + "integrity": "sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==", "dependencies": { - "has-symbols": "^1.0.2" + "is-what": "^4.1.8" }, "engines": { - "node": ">= 0.4" + "node": ">=12.13" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/mesqueeb" } }, - "node_modules/is-unicode-supported": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", - "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", - "engines": { - "node": ">=12" + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/crc-32": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", + "bin": { + "crc32": "bin/crc32.njs" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=0.8" } }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, + "node_modules/crc32-stream": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-6.0.0.tgz", + "integrity": "sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==", "dependencies": { - "call-bind": "^1.0.2" + "crc-32": "^1.2.0", + "readable-stream": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">= 14" } }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "dependencies": { - "is-docker": "^2.0.0" - }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + }, + "node_modules/croner": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/croner/-/croner-8.1.1.tgz", + "integrity": "sha512-1VdUuRnQP4drdFkS8NKvDR1NBgevm8TOuflcaZEKsxw42CxonjW/2vkj1AKlinJb4ZLwBcuWF9GiPr7FQc6AQA==", "engines": { - "node": ">=8" + "node": ">=18.0" } }, - "node_modules/is-wsl/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "node_modules/cronstrue": { + "version": "2.50.0", + "resolved": "https://registry.npmjs.org/cronstrue/-/cronstrue-2.50.0.tgz", + "integrity": "sha512-ULYhWIonJzlScCCQrPUG5uMXzXxSixty4djud9SS37DoNxDdkeRocxzHuAo4ImRBUK+mAuU5X9TSwEDccnnuPg==", "bin": { - "is-docker": "cli.js" + "cronstrue": "bin/cli.js" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, "engines": { - "node": ">=8" + "node": ">= 8" + } + }, + "node_modules/crossws": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/crossws/-/crossws-0.2.4.tgz", + "integrity": "sha512-DAxroI2uSOgUKLz00NX6A8U/8EE3SZHmIND+10jkVSaypvyt57J5JEOxAQOL6lQxyzi/wZbTIwssU1uy69h5Vg==", + "peerDependencies": { + "uWebSockets.js": "*" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependenciesMeta": { + "uWebSockets.js": { + "optional": true + } } }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "node_modules/css-declaration-sorter": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.2.0.tgz", + "integrity": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } }, - "node_modules/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==", + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" }, "engines": { - "node": ">= 10.13.0" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "engines": { - "node": ">=8" + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/jest-worker/node_modules/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==", - "dependencies": { - "has-flag": "^4.0.0" + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/jiti": { - "version": "1.16.0", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.16.0.tgz", - "integrity": "sha512-L3BJStEf5NAqNuzrpfbN71dp43mYIcBUlCRea/vdyv5dW/AYa1d4bpelko4SHdY3I6eN9Wzyasxirj1/vv5kmg==", - "bin": { - "jiti": "bin/jiti.js" - } + "node_modules/cssfilter": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz", + "integrity": "sha512-FAaLDaplstoRsDR8XGYH51znUN0UY7nMc6Z9/fvE8EXGwvJE9hu7W2vHwx1+bd6gCYnln9nLbzxFTrcO9YQDZw==" }, - "node_modules/js-sdsl": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz", - "integrity": "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==", - "devOptional": true, + "node_modules/cssnano": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.1.2.tgz", + "integrity": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==", + "dependencies": { + "cssnano-preset-default": "^6.1.2", + "lilconfig": "^3.1.1" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/js-sdsl" + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "node_modules/cssnano-preset-default": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.1.2.tgz", + "integrity": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==", + "dependencies": { + "browserslist": "^4.23.0", + "css-declaration-sorter": "^7.2.0", + "cssnano-utils": "^4.0.2", + "postcss-calc": "^9.0.1", + "postcss-colormin": "^6.1.0", + "postcss-convert-values": "^6.1.0", + "postcss-discard-comments": "^6.0.2", + "postcss-discard-duplicates": "^6.0.3", + "postcss-discard-empty": "^6.0.3", + "postcss-discard-overridden": "^6.0.2", + "postcss-merge-longhand": "^6.0.5", + "postcss-merge-rules": "^6.1.1", + "postcss-minify-font-values": "^6.1.0", + "postcss-minify-gradients": "^6.0.3", + "postcss-minify-params": "^6.1.0", + "postcss-minify-selectors": "^6.0.4", + "postcss-normalize-charset": "^6.0.2", + "postcss-normalize-display-values": "^6.0.2", + "postcss-normalize-positions": "^6.0.2", + "postcss-normalize-repeat-style": "^6.0.2", + "postcss-normalize-string": "^6.0.2", + "postcss-normalize-timing-functions": "^6.0.2", + "postcss-normalize-unicode": "^6.1.0", + "postcss-normalize-url": "^6.0.2", + "postcss-normalize-whitespace": "^6.0.2", + "postcss-ordered-values": "^6.0.2", + "postcss-reduce-initial": "^6.1.0", + "postcss-reduce-transforms": "^6.0.2", + "postcss-svgo": "^6.0.3", + "postcss-unique-selectors": "^6.0.4" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "devOptional": true, - "dependencies": { - "argparse": "^2.0.1" + "node_modules/cssnano-utils": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.2.tgz", + "integrity": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==", + "engines": { + "node": "^14 || ^16 || >=18.0" }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "dependencies": { + "css-tree": "~2.2.0" }, "engines": { - "node": ">=4" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/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 - }, - "node_modules/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==", - "devOptional": true + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } }, - "node_modules/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": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "devOptional": true + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" }, - "node_modules/json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", - "bin": { - "json5": "lib/cli.js" + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/d3": { + "version": "7.9.0", + "resolved": "https://registry.npmjs.org/d3/-/d3-7.9.0.tgz", + "integrity": "sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==", + "dependencies": { + "d3-array": "3", + "d3-axis": "3", + "d3-brush": "3", + "d3-chord": "3", + "d3-color": "3", + "d3-contour": "4", + "d3-delaunay": "6", + "d3-dispatch": "3", + "d3-drag": "3", + "d3-dsv": "3", + "d3-ease": "3", + "d3-fetch": "3", + "d3-force": "3", + "d3-format": "3", + "d3-geo": "3", + "d3-hierarchy": "3", + "d3-interpolate": "3", + "d3-path": "3", + "d3-polygon": "3", + "d3-quadtree": "3", + "d3-random": "3", + "d3-scale": "4", + "d3-scale-chromatic": "3", + "d3-selection": "3", + "d3-shape": "3", + "d3-time": "3", + "d3-time-format": "4", + "d3-timer": "3", + "d3-transition": "3", + "d3-zoom": "3" }, "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/jsonc-eslint-parser": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsonc-eslint-parser/-/jsonc-eslint-parser-1.4.1.tgz", - "integrity": "sha512-hXBrvsR1rdjmB2kQmUjf1rEIa+TqHBGMge8pwi++C+Si1ad7EjZrJcpgwym+QGK/pqTx+K7keFAtLlVNdLRJOg==", - "dev": true, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", "dependencies": { - "acorn": "^7.4.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^1.3.0", - "espree": "^6.0.0", - "semver": "^6.3.0" + "internmap": "1 - 2" }, "engines": { - "node": ">=8.10.0" + "node": ">=12" } }, - "node_modules/jsonc-eslint-parser/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, + "node_modules/d3-axis": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-axis/-/d3-axis-3.0.0.tgz", + "integrity": "sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==", "engines": { - "node": ">=0.4.0" + "node": ">=12" } }, - "node_modules/jsonc-eslint-parser/node_modules/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, + "node_modules/d3-brush": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-brush/-/d3-brush-3.0.0.tgz", + "integrity": "sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==", "dependencies": { - "eslint-visitor-keys": "^1.1.0" + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "3", + "d3-transition": "3" }, "engines": { - "node": ">=6" + "node": ">=12" + } + }, + "node_modules/d3-chord": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-chord/-/d3-chord-3.0.1.tgz", + "integrity": "sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==", + "dependencies": { + "d3-path": "1 - 3" }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" + "engines": { + "node": ">=12" } }, - "node_modules/jsonc-eslint-parser/node_modules/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, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/jsonc-eslint-parser/node_modules/espree": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", - "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", - "dev": true, + "node_modules/d3-contour": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-4.0.2.tgz", + "integrity": "sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==", "dependencies": { - "acorn": "^7.1.1", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.1.0" + "d3-array": "^3.2.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=12" } }, - "node_modules/jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "node_modules/d3-delaunay": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/d3-delaunay/-/d3-delaunay-6.0.4.tgz", + "integrity": "sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==", "dependencies": { - "universalify": "^2.0.0" + "delaunator": "5" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "engines": { + "node": ">=12" } }, - "node_modules/klona": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", - "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "node_modules/d3-dispatch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-3.0.1.tgz", + "integrity": "sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==", "engines": { - "node": ">= 8" + "node": ">=12" } }, - "node_modules/knitwork": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/knitwork/-/knitwork-1.0.0.tgz", - "integrity": "sha512-dWl0Dbjm6Xm+kDxhPQJsCBTxrJzuGl0aP9rhr+TG8D3l+GL90N8O8lYUi7dTSAN2uuDqCtNgb6aEuQH5wsiV8Q==" - }, - "node_modules/lazystream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", - "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "node_modules/d3-drag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-drag/-/d3-drag-3.0.0.tgz", + "integrity": "sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==", "dependencies": { - "readable-stream": "^2.0.5" + "d3-dispatch": "1 - 3", + "d3-selection": "3" }, "engines": { - "node": ">= 0.6.3" + "node": ">=12" } }, - "node_modules/lazystream/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "node_modules/d3-dsv": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-3.0.1.tgz", + "integrity": "sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==", "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" + "commander": "7", + "iconv-lite": "0.6", + "rw": "1" + }, + "bin": { + "csv2json": "bin/dsv2json.js", + "csv2tsv": "bin/dsv2dsv.js", + "dsv2dsv": "bin/dsv2dsv.js", + "dsv2json": "bin/dsv2json.js", + "json2csv": "bin/json2dsv.js", + "json2dsv": "bin/json2dsv.js", + "json2tsv": "bin/json2dsv.js", + "tsv2csv": "bin/dsv2dsv.js", + "tsv2json": "bin/dsv2json.js" + }, + "engines": { + "node": ">=12" } }, - "node_modules/lazystream/node_modules/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==" + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "engines": { + "node": ">=12" + } }, - "node_modules/lazystream/node_modules/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==", + "node_modules/d3-fetch": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-fetch/-/d3-fetch-3.0.1.tgz", + "integrity": "sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==", "dependencies": { - "safe-buffer": "~5.1.0" + "d3-dsv": "1 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "devOptional": true, + "node_modules/d3-force": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-3.0.0.tgz", + "integrity": "sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==", "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" + "d3-dispatch": "1 - 3", + "d3-quadtree": "1 - 3", + "d3-timer": "1 - 3" }, "engines": { - "node": ">= 0.8.0" + "node": ">=12" } }, - "node_modules/lilconfig": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", - "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==", + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", "engines": { - "node": ">=10" + "node": ">=12" } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/listhen": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.0.0.tgz", - "integrity": "sha512-frdf7TVqT/JSHzRjEuo/vWIgbBYzEuY3oeTq8Yv1XkQVTKDPs2M4yotXICqYZYj2QxbkqKssSo8Wa6QCtBnFhg==", + "node_modules/d3-geo": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-3.1.1.tgz", + "integrity": "sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==", "dependencies": { - "clipboardy": "^3.0.0", - "colorette": "^2.0.19", - "defu": "^6.1.1", - "get-port-please": "^2.6.1", - "http-shutdown": "^1.2.2", - "ip-regex": "^5.0.0", - "node-forge": "^1.3.1", - "ufo": "^1.0.0" + "d3-array": "2.5.0 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/local-pkg": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.2.tgz", - "integrity": "sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==", + "node_modules/d3-hierarchy": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-3.1.2.tgz", + "integrity": "sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==", "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" + "node": ">=12" } }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "devOptional": true, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", "dependencies": { - "p-locate": "^5.0.0" + "d3-color": "1 - 3" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "engines": { + "node": ">=12" + } }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + "node_modules/d3-polygon": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-polygon/-/d3-polygon-3.0.1.tgz", + "integrity": "sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==", + "engines": { + "node": ">=12" + } }, - "node_modules/lodash.defaults": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==" + "node_modules/d3-quadtree": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-3.0.1.tgz", + "integrity": "sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==", + "engines": { + "node": ">=12" + } }, - "node_modules/lodash.difference": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz", - "integrity": "sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==" + "node_modules/d3-random": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-random/-/d3-random-3.0.1.tgz", + "integrity": "sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==", + "engines": { + "node": ">=12" + } }, - "node_modules/lodash.flatten": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==" + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } }, - "node_modules/lodash.isarguments": { + "node_modules/d3-scale-chromatic": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", - "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==" - }, - "node_modules/lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" + "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-3.1.0.tgz", + "integrity": "sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==", + "dependencies": { + "d3-color": "1 - 3", + "d3-interpolate": "1 - 3" + }, + "engines": { + "node": ">=12" + } }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "devOptional": true - }, - "node_modules/lodash.pick": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", - "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==" + "node_modules/d3-selection": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-selection/-/d3-selection-3.0.0.tgz", + "integrity": "sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==", + "engines": { + "node": ">=12" + } }, - "node_modules/lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", "dependencies": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" } }, - "node_modules/lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", "dependencies": { - "lodash._reinterpolate": "^3.0.0" + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" } }, - "node_modules/lodash.union": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz", - "integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==" - }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - }, - "node_modules/log-symbols": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz", - "integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==", + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", "dependencies": { - "chalk": "^5.0.0", - "is-unicode-supported": "^1.1.0" + "d3-time": "1 - 3" }, "engines": { "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz", - "integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==", + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=12" } }, - "node_modules/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==", + "node_modules/d3-transition": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-transition/-/d3-transition-3.0.1.tgz", + "integrity": "sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==", "dependencies": { - "yallist": "^4.0.0" + "d3-color": "1 - 3", + "d3-dispatch": "1 - 3", + "d3-ease": "1 - 3", + "d3-interpolate": "1 - 3", + "d3-timer": "1 - 3" }, "engines": { - "node": ">=10" + "node": ">=12" + }, + "peerDependencies": { + "d3-selection": "2 - 3" } }, - "node_modules/lru-cache/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/magic-string": { - "version": "0.26.7", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz", - "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==", + "node_modules/d3-zoom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/d3-zoom/-/d3-zoom-3.0.0.tgz", + "integrity": "sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==", "dependencies": { - "sourcemap-codec": "^1.4.8" + "d3-dispatch": "1 - 3", + "d3-drag": "2 - 3", + "d3-interpolate": "1 - 3", + "d3-selection": "2 - 3", + "d3-transition": "2 - 3" }, "engines": { "node": ">=12" } }, - "node_modules/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==", + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "dev": true, "dependencies": { - "semver": "^6.0.0" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" - }, - "node_modules/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==", + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "dev": true, "dependencies": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": ">=4.3.0 <5.0.0 || >=5.10" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/memory-fs/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "dev": true, "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" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/memory-fs/node_modules/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==" - }, - "node_modules/memory-fs/node_modules/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==", - "dependencies": { - "safe-buffer": "~5.1.0" + "node_modules/db0": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/db0/-/db0-0.1.4.tgz", + "integrity": "sha512-Ft6eCwONYxlwLjBXSJxw0t0RYtA5gW9mq8JfBXn9TtC0nDPlqePAhpv9v4g9aONBi6JI1OXHTKKkUYGd+BOrCA==", + "peerDependencies": { + "@libsql/client": "^0.5.2", + "better-sqlite3": "^9.4.3", + "drizzle-orm": "^0.29.4" + }, + "peerDependenciesMeta": { + "@libsql/client": { + "optional": true + }, + "better-sqlite3": { + "optional": true + }, + "drizzle-orm": { + "optional": true + } } }, - "node_modules/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==" + "node_modules/de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", + "devOptional": true }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "node_modules/debug": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", + "dependencies": { + "ms": "2.1.2" + }, "engines": { - "node": ">= 8" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "node_modules/deep-eql": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.4.tgz", + "integrity": "sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==", "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "type-detect": "^4.0.0" }, "engines": { - "node": ">=8.6" + "node": ">=6" } }, - "node_modules/mime": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", - "bin": { - "mime": "cli.js" + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "devOptional": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-browser": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", + "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", + "dependencies": { + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" }, "engines": { - "node": ">=10.0.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "node_modules/default-browser-id": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", + "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", "engines": { - "node": ">= 0.6" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dependencies": { - "mime-db": "1.52.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, "engines": { - "node": ">= 0.6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/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==", + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dependencies": { - "brace-expansion": "^1.1.7" + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" }, "engines": { - "node": "*" - } - }, - "node_modules/minimist": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", - "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minipass": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", - "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", - "dependencies": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } + "node_modules/defu": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==" }, - "node_modules/minizlib": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", - "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", + "node_modules/delaunator": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/delaunator/-/delaunator-5.0.1.tgz", + "integrity": "sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==", "dependencies": { - "minipass": "^2.9.0" + "robust-predicates": "^3.0.2" } }, - "node_modules/mkdir": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/mkdir/-/mkdir-0.0.2.tgz", - "integrity": "sha512-98OnjcWaNEIRUJJe9rFoWlbkQ5n9z8F86wIPCrI961YEViiVybTuJln919WuuSHSnlrqXy0ELKCntoPy8C7lqg==", + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "engines": { "node": ">=0.4.0" } }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dependencies": { - "minimist": "^1.2.6" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, - "node_modules/mlly": { + "node_modules/delegates": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.0.0.tgz", - "integrity": "sha512-QL108Hwt+u9bXdWgOI0dhzZfACovn5Aen4Xvc8Jasd9ouRH4NjnrXEiyP3nVvJo91zPlYjVRckta0Nt2zfoR6g==", - "dependencies": { - "acorn": "^8.8.1", - "pathe": "^1.0.0", - "pkg-types": "^1.0.0", - "ufo": "^1.0.0" - } + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" }, - "node_modules/mri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "node_modules/denque": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", "engines": { - "node": ">=4" + "node": ">=0.10" } }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } }, - "node_modules/muggle-string": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.1.0.tgz", - "integrity": "sha512-Tr1knR3d2mKvvWthlk7202rywKbiOm4rVFLsfAaSIhJ6dt9o47W4S+JMtWhd/PW9Wrdew2/S2fSvhz3E2gkfEg==", - "dev": true + "node_modules/destr": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.3.tgz", + "integrity": "sha512-2N3BOUU4gYMpTP24s5rF5iP7BDr7uNTCs4ozw3kf/eKfvWSIu93GEBi5m427YoyJoeOzQ5smuu4nNAPGb8idSQ==" }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } }, - "node_modules/nanoid": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-4.0.0.tgz", - "integrity": "sha512-IgBP8piMxe/gf73RTQx7hmnhwz0aaEXYakvqZyE302IXW3HyVNhdNGC+O2MwMAVhLEnvXlvKtGbtJf6wvHihCg==", - "bin": { - "nanoid": "bin/nanoid.js" - }, + "node_modules/detect-libc": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", + "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", "engines": { - "node": "^14 || ^16 || >=18" + "node": ">=8" } }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "devOptional": true + "node_modules/devalue": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/devalue/-/devalue-4.3.3.tgz", + "integrity": "sha512-UH8EL6H2ifcY8TbD2QsxwCC/pr5xSwPvv85LrLXVihmHVC3T3YqTCIwnR5ak0yO1KYqlxrPVOA/JVZJYPy2ATg==" }, - "node_modules/natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true + "node_modules/diff": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.2.0.tgz", + "integrity": "sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==", + "engines": { + "node": ">=0.3.1" + } }, - "node_modules/nitropack": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/nitropack/-/nitropack-1.0.0.tgz", - "integrity": "sha512-788lHgNgC+NKqecwFgMkAQTuTXwuh2hEgOk2sLwV3qPVUogxrl6P3m5eKdt6Mtzx+mlXIw0G/P90B5TNWEqDSQ==", - "dependencies": { - "@cloudflare/kv-asset-handler": "^0.2.0", - "@netlify/functions": "^1.3.0", - "@rollup/plugin-alias": "^4.0.2", - "@rollup/plugin-commonjs": "^23.0.2", - "@rollup/plugin-inject": "^5.0.2", - "@rollup/plugin-json": "^5.0.1", - "@rollup/plugin-node-resolve": "^15.0.1", - "@rollup/plugin-replace": "^5.0.1", - "@rollup/plugin-wasm": "^6.0.1", - "@rollup/pluginutils": "^5.0.2", - "@vercel/nft": "^0.22.1", - "archiver": "^5.3.1", - "c12": "^1.0.1", - "chalk": "^5.1.2", - "chokidar": "^3.5.3", - "consola": "^2.15.3", - "cookie-es": "^0.5.0", - "defu": "^6.1.1", - "destr": "^1.2.1", - "dot-prop": "^7.2.0", - "esbuild": "^0.15.14", - "escape-string-regexp": "^5.0.0", - "etag": "^1.8.1", - "fs-extra": "^10.1.0", - "globby": "^13.1.2", - "gzip-size": "^7.0.0", - "h3": "^1.0.1", - "hookable": "^5.4.2", - "http-proxy": "^1.18.1", - "is-primitive": "^3.0.1", - "jiti": "^1.16.0", - "klona": "^2.0.5", - "knitwork": "^1.0.0", - "listhen": "^1.0.0", - "mime": "^3.0.0", - "mlly": "^1.0.0", - "mri": "^1.2.0", - "node-fetch-native": "^1.0.1", - "ofetch": "^1.0.0", - "ohash": "^1.0.0", - "pathe": "^1.0.0", - "perfect-debounce": "^0.1.3", - "pkg-types": "^1.0.1", - "pretty-bytes": "^6.0.0", - "radix3": "^1.0.0", - "rollup": "^2.79.1", - "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-visualizer": "^5.8.3", - "scule": "^1.0.0", - "semver": "^7.3.8", - "serve-placeholder": "^2.0.1", - "serve-static": "^1.15.0", - "source-map-support": "^0.5.21", - "std-env": "^3.3.1", - "ufo": "^1.0.0", - "unenv": "^1.0.0", - "unimport": "^1.0.0", - "unstorage": "^1.0.1" - }, - "bin": { - "nitro": "dist/cli.mjs", - "nitropack": "dist/cli.mjs" - }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", "engines": { - "node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/nitropack/node_modules/@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", + "node_modules/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, "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" + "path-type": "^4.0.0" }, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "node": ">=8" } }, - "node_modules/nitropack/node_modules/chalk": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz", - "integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==", + "node_modules/dir-glob/node_modules/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, "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=8" } }, - "node_modules/nitropack/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "engines": { - "node": ">=12" + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "devOptional": true, + "dependencies": { + "esutils": "^2.0.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=6.0.0" } }, - "node_modules/nitropack/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "node_modules/nitropack/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "funding": [ { "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "github", - "url": "https://paypal.me/jimmywarting" + "url": "https://github.com/sponsors/fb55" } - ], - "engines": { - "node": ">=10.5.0" - } + ] }, - "node_modules/node-fetch": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.0.tgz", - "integrity": "sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==", + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", "dependencies": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" + "domelementtype": "^2.3.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">= 4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/node-fetch" - } - }, - "node_modules/node-fetch-native": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.0.1.tgz", - "integrity": "sha512-VzW+TAk2wE4X9maiKMlT+GsPU4OMmR1U9CrHSmd3DFLn2IcZ9VJ6M6BBugGfYUnPCLSYxXdZy17M0BEJyhUTwg==" - }, - "node_modules/node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "engines": { - "node": ">= 6.13.0" + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/node-gyp-build": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", - "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==", - "bin": { - "node-gyp-build": "bin.js", - "node-gyp-build-optional": "optional.js", - "node-gyp-build-test": "build-test.js" + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" - }, - "node_modules/nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "node_modules/dot-prop": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-8.0.2.tgz", + "integrity": "sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==", "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" + "type-fest": "^3.8.0" }, "engines": { - "node": ">=6" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/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, - "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" } }, - "node_modules/normalize-package-data/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" - } + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.13", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.13.tgz", + "integrity": "sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==" + }, + "node_modules/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==" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "node_modules/enhanced-resolve": { + "version": "5.17.1", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", + "integrity": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==", + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=10.13.0" } }, - "node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", "engines": { - "node": ">=10" + "node": ">=0.12" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/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==", + "node_modules/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==", + "dev": true, "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" + "is-arrayish": "^0.2.1" } }, - "node_modules/npmlog": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - "dependencies": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" + "node_modules/error-stack-parser-es": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-0.1.5.tgz", + "integrity": "sha512-xHku1X40RO+fO8yJ8Wh2f2rZWVjqyhb1zgq1yZ8aZRQkv6OOKhKWRUaht3eSCUbAOBaKIgM+ykwFLE+QUxgGeg==", + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "node_modules/es-abstract": { + "version": "1.23.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.3.tgz", + "integrity": "sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==", + "dev": true, "dependencies": { - "boolbase": "^1.0.0" + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.9", + "string.prototype.trimend": "^1.0.8", + "string.prototype.trimstart": "^1.0.8", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.6", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, + "engines": { + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/nuxi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/nuxi/-/nuxi-3.0.0.tgz", - "integrity": "sha512-VWh1kKFffxD2yadZWcQSd6eTf9okXRr7d3HsjLiI4B3Q1/8iKdIUiodGo7X71OZ+gPVnX6Oh/XFzcb7mr+8TbQ==", - "bin": { - "nuxi": "bin/nuxi.mjs" + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dependencies": { + "get-intrinsic": "^1.2.4" }, "engines": { - "node": "^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "node": ">= 0.4" } }, - "node_modules/nuxt": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/nuxt/-/nuxt-3.0.0.tgz", - "integrity": "sha512-RNlD78uv04ZiXWmlx9f1tnJfrqsYAWHU+4gbgOTQpIBmQzHWPWiox+fm/1m93iKfEd5sJi9TJUoXX5yBObVZYw==", - "dependencies": { - "@nuxt/devalue": "^2.0.0", - "@nuxt/kit": "3.0.0", - "@nuxt/schema": "3.0.0", - "@nuxt/telemetry": "^2.1.8", - "@nuxt/ui-templates": "^1.0.0", - "@nuxt/vite-builder": "3.0.0", - "@unhead/ssr": "^1.0.0", - "@vue/reactivity": "^3.2.45", - "@vue/shared": "^3.2.45", - "@vueuse/head": "^1.0.15", - "chokidar": "^3.5.3", - "cookie-es": "^0.5.0", - "defu": "^6.1.1", - "destr": "^1.2.1", - "escape-string-regexp": "^5.0.0", - "estree-walker": "^3.0.1", - "fs-extra": "^10.1.0", - "globby": "^13.1.2", - "h3": "^1.0.1", - "hash-sum": "^2.0.0", - "hookable": "^5.4.2", - "knitwork": "^1.0.0", - "magic-string": "^0.26.7", - "mlly": "^1.0.0", - "nitropack": "^1.0.0", - "nuxi": "3.0.0", - "ofetch": "^1.0.0", - "ohash": "^1.0.0", - "pathe": "^1.0.0", - "perfect-debounce": "^0.1.3", - "scule": "^1.0.0", - "strip-literal": "^1.0.0", - "ufo": "^1.0.0", - "ultrahtml": "^1.0.0", - "unctx": "^2.1.0", - "unenv": "^1.0.0", - "unhead": "^1.0.0", - "unimport": "^1.0.1", - "unplugin": "^1.0.0", - "untyped": "^1.0.0", - "vue": "^3.2.45", - "vue-bundle-renderer": "^1.0.0", - "vue-devtools-stub": "^0.1.0", - "vue-router": "^4.1.6" - }, - "bin": { - "nuxi": "bin/nuxt.mjs", - "nuxt": "bin/nuxt.mjs" - }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "engines": { - "node": "^14.16.0 || ^16.10.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + "node": ">= 0.4" } }, - "node_modules/nuxt-icon": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/nuxt-icon/-/nuxt-icon-0.1.8.tgz", - "integrity": "sha512-oPFlLOZCy80MN+hf49+mBkOIHWVF3sOqZREQZw3qD0N6wGlR15QeRQtKQC8qGeQcc+xvpLQm0GvrdJ8FxFOPYg==", + "node_modules/es-module-lexer": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", "dev": true, - "dependencies": { - "@iconify/vue": "^4.0.1", - "@nuxt/kit": "^3.0.0" - } + "peer": true }, - "node_modules/nuxt/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "engines": { - "node": ">=12" + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-inspect": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", - "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.4" } }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, "engines": { "node": ">= 0.4" } }, - "node_modules/object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "node_modules/es-shim-unscopables": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", + "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "hasown": "^2.0.0" } }, - "node_modules/object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "node_modules/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, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" }, "engines": { "node": ">= 0.4" @@ -7556,1293 +8485,1443 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ofetch": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.0.0.tgz", - "integrity": "sha512-d40aof8czZFSQKJa4+F7Ch3UC5D631cK1TTUoK+iNEut9NoiCL+u0vykl/puYVUS2df4tIQl5upQcolIcEzQjQ==", - "dependencies": { - "destr": "^1.2.1", - "node-fetch-native": "^1.0.1", - "ufo": "^1.0.0" - } - }, - "node_modules/ohash": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.0.0.tgz", - "integrity": "sha512-kxSyzq6tt+6EE/xCnD1XaFhCCjUNUaz3X30rJp6mnjGLXAAvuPFqohMdv0aScWzajR45C29HyBaXZ8jXBwnh9A==" - }, - "node_modules/ohmyfetch": { - "version": "0.4.21", - "resolved": "https://registry.npmjs.org/ohmyfetch/-/ohmyfetch-0.4.21.tgz", - "integrity": "sha512-VG7f/JRvqvBOYvL0tHyEIEG7XHWm7OqIfAs6/HqwWwDfjiJ1g0huIpe5sFEmyb+7hpFa1EGNH2aERWR72tlClw==", - "dependencies": { - "destr": "^1.2.0", - "node-fetch-native": "^0.1.8", - "ufo": "^0.8.6", - "undici": "^5.12.0" - } - }, - "node_modules/ohmyfetch/node_modules/node-fetch-native": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-0.1.8.tgz", - "integrity": "sha512-ZNaury9r0NxaT2oL65GvdGDy+5PlSaHTovT6JV5tOW07k1TQmgC0olZETa4C9KZg0+6zBr99ctTYa3Utqj9P/Q==" - }, - "node_modules/ohmyfetch/node_modules/ufo": { - "version": "0.8.6", - "resolved": "https://registry.npmjs.org/ufo/-/ufo-0.8.6.tgz", - "integrity": "sha512-fk6CmUgwKCfX79EzcDQQpSCMxrHstvbLswFChHS0Vump+kFkw7nJBfTZoC1j0bOGoY9I7R3n2DGek5ajbcYnOw==" - }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dependencies": { - "ee-first": "1.1.1" + "node_modules/esbuild": { + "version": "0.23.1", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.23.1.tgz", + "integrity": "sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==", + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": ">= 0.8" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dependencies": { - "wrappy": "1" + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.23.1", + "@esbuild/android-arm": "0.23.1", + "@esbuild/android-arm64": "0.23.1", + "@esbuild/android-x64": "0.23.1", + "@esbuild/darwin-arm64": "0.23.1", + "@esbuild/darwin-x64": "0.23.1", + "@esbuild/freebsd-arm64": "0.23.1", + "@esbuild/freebsd-x64": "0.23.1", + "@esbuild/linux-arm": "0.23.1", + "@esbuild/linux-arm64": "0.23.1", + "@esbuild/linux-ia32": "0.23.1", + "@esbuild/linux-loong64": "0.23.1", + "@esbuild/linux-mips64el": "0.23.1", + "@esbuild/linux-ppc64": "0.23.1", + "@esbuild/linux-riscv64": "0.23.1", + "@esbuild/linux-s390x": "0.23.1", + "@esbuild/linux-x64": "0.23.1", + "@esbuild/netbsd-x64": "0.23.1", + "@esbuild/openbsd-arm64": "0.23.1", + "@esbuild/openbsd-x64": "0.23.1", + "@esbuild/sunos-x64": "0.23.1", + "@esbuild/win32-arm64": "0.23.1", + "@esbuild/win32-ia32": "0.23.1", + "@esbuild/win32-x64": "0.23.1" } }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dependencies": { - "mimic-fn": "^2.1.0" - }, + "node_modules/escalade": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", + "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", "engines": { "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/open": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", - "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.8.0" } }, - "node_modules/open/node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "dev": true, + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, "bin": { - "is-docker": "cli.js" + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" }, "engines": { - "node": ">=8" + "node": ">=6.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "optionalDependencies": { + "source-map": "~0.6.1" } }, - "node_modules/optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "node_modules/eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", "devOptional": true, "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.3" + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/ora": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/ora/-/ora-6.1.2.tgz", - "integrity": "sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw==", - "dependencies": { - "bl": "^5.0.0", - "chalk": "^5.0.0", - "cli-cursor": "^4.0.0", - "cli-spinners": "^2.6.1", - "is-interactive": "^2.0.0", - "is-unicode-supported": "^1.1.0", - "log-symbols": "^5.1.0", - "strip-ansi": "^7.0.1", - "wcwidth": "^1.0.1" + "bin": { + "eslint": "bin/eslint.js" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://opencollective.com/eslint" } }, - "node_modules/ora/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "engines": { - "node": ">=12" + "node_modules/eslint-config-prettier": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", + "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "peerDependencies": { + "eslint": ">=7.0.0" } }, - "node_modules/ora/node_modules/chalk": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz", - "integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==", + "node_modules/eslint-config-standard": { + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", + "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "node": ">=12.0.0" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "peerDependencies": { + "eslint": "^8.0.1", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-n": "^15.0.0 || ^16.0.0 ", + "eslint-plugin-promise": "^6.0.0" } }, - "node_modules/ora/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, "dependencies": { - "ansi-regex": "^6.0.1" + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-import-resolver-typescript": { + "version": "3.6.3", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.3.tgz", + "integrity": "sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==", + "dev": true, + "dependencies": { + "@nolyfill/is-core-module": "1.0.39", + "debug": "^4.3.5", + "enhanced-resolve": "^5.15.0", + "eslint-module-utils": "^2.8.1", + "fast-glob": "^3.3.2", + "get-tsconfig": "^4.7.5", + "is-bun-module": "^1.0.2", + "is-glob": "^4.0.3" }, "engines": { - "node": ">=12" + "node": "^14.18.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" + }, + "peerDependencies": { + "eslint": "*", + "eslint-plugin-import": "*", + "eslint-plugin-import-x": "*" + }, + "peerDependenciesMeta": { + "eslint-plugin-import": { + "optional": true + }, + "eslint-plugin-import-x": { + "optional": true + } } }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "node_modules/eslint-module-utils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.2.tgz", + "integrity": "sha512-3XnC5fDyc8M4J2E8pt8pmSVRX2M+5yWMCfI/kDZwauQeFgzQOuhcRBFKjTeJagqgk4sFKxe1mvNVnaWwImx/Tg==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, "engines": { - "node": ">=0.10.0" + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } } }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "devOptional": true, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-es": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", + "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", + "dev": true, + "dependencies": { + "eslint-utils": "^2.0.0", + "regexpp": "^3.0.0" }, "engines": { - "node": ">=10" + "node": ">=8.10.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=4.19.1" } }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "devOptional": true, + "node_modules/eslint-plugin-es/node_modules/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, "dependencies": { - "p-limit": "^3.0.2" + "eslint-visitor-keys": "^1.1.0" }, "engines": { - "node": ">=10" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/mysticatea" } }, - "node_modules/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==", + "node_modules/eslint-plugin-es/node_modules/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, "engines": { - "node": ">=6" + "node": ">=4" } }, - "node_modules/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==", - "devOptional": true, + "node_modules/eslint-plugin-import": { + "version": "2.29.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", + "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", + "dev": true, "dependencies": { - "callsites": "^3.0.0" + "array-includes": "^3.1.7", + "array.prototype.findlastindex": "^1.2.3", + "array.prototype.flat": "^1.3.2", + "array.prototype.flatmap": "^1.3.2", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.9", + "eslint-module-utils": "^2.8.0", + "hasown": "^2.0.0", + "is-core-module": "^2.13.1", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.7", + "object.groupby": "^1.0.1", + "object.values": "^1.1.7", + "semver": "^6.3.1", + "tsconfig-paths": "^3.15.0" }, "engines": { - "node": ">=6" + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/parse-git-config": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/parse-git-config/-/parse-git-config-3.0.0.tgz", - "integrity": "sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==", + "node_modules/eslint-plugin-import/node_modules/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, "dependencies": { - "git-config-path": "^2.0.0", - "ini": "^1.3.5" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" }, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "node_modules/eslint-plugin-import/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "@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" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "*" } }, - "node_modules/parse-path": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", - "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", + "node_modules/eslint-plugin-n": { + "version": "15.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz", + "integrity": "sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==", + "dev": true, "dependencies": { - "protocols": "^2.0.0" + "builtins": "^5.0.1", + "eslint-plugin-es": "^4.1.0", + "eslint-utils": "^3.0.0", + "ignore": "^5.1.1", + "is-core-module": "^2.11.0", + "minimatch": "^3.1.2", + "resolve": "^1.22.1", + "semver": "^7.3.8" + }, + "engines": { + "node": ">=12.22.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=7.0.0" } }, - "node_modules/parse-url": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", - "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", + "node_modules/eslint-plugin-n/node_modules/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, "dependencies": { - "parse-path": "^7.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "node_modules/eslint-plugin-n/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">= 0.8" + "node": "*" } }, - "node_modules/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==", + "node_modules/eslint-plugin-n/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "node_modules/eslint-plugin-node": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", + "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", + "dev": true, + "dependencies": { + "eslint-plugin-es": "^3.0.0", + "eslint-utils": "^2.0.0", + "ignore": "^5.1.1", + "minimatch": "^3.0.4", + "resolve": "^1.10.1", + "semver": "^6.1.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8.10.0" + }, + "peerDependencies": { + "eslint": ">=5.16.0" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "engines": { - "node": ">=8" + "node_modules/eslint-plugin-node/node_modules/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, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "node_modules/eslint-plugin-node/node_modules/eslint-plugin-es": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", + "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", + "dev": true, + "dependencies": { + "eslint-utils": "^2.0.0", + "regexpp": "^3.0.0" + }, "engines": { - "node": ">=8" + "node": ">=8.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=4.19.1" } }, - "node_modules/pathe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.0.0.tgz", - "integrity": "sha512-nPdMG0Pd09HuSsr7QOKUXO2Jr9eqaDiZvDwdyIhNG5SHYujkQHYKDfGQkulBxvbDHz8oHLsTgKN86LSwYzSHAg==" - }, - "node_modules/perfect-debounce": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-0.1.3.tgz", - "integrity": "sha512-NOT9AcKiDGpnV/HBhI22Str++XWcErO/bALvHCuhv33owZW/CjH8KAFLZDCmu3727sihe0wTxpDhyGc6M8qacQ==" - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/eslint-plugin-node/node_modules/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, + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, "engines": { - "node": ">=8.6" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "url": "https://github.com/sponsors/mysticatea" } }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "node_modules/eslint-plugin-node/node_modules/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, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/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==", + "node_modules/eslint-plugin-node/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, "dependencies": { - "find-up": "^4.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=8" + "node": "*" } }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/eslint-plugin-nuxt": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-nuxt/-/eslint-plugin-nuxt-4.0.0.tgz", + "integrity": "sha512-v3Vwdk8YKe52bAz8eSIDqQuTtfL/T1r9dSl1uhC5SyR5pgLxgKkQdxXVf/Bf6Ax7uyd9rHqiAuYVdqqDb7ILdA==", + "dev": true, "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" + "eslint-plugin-vue": "^9.4.0", + "semver": "^7.3.7", + "vue-eslint-parser": "^9.0.3" } }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dependencies": { - "p-locate": "^4.1.0" + "node_modules/eslint-plugin-nuxt/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/pkg-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/eslint-plugin-prettier": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.1.tgz", + "integrity": "sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==", + "dev": true, "dependencies": { - "p-try": "^2.0.0" + "prettier-linter-helpers": "^1.0.0", + "synckit": "^0.9.1" }, "engines": { - "node": ">=6" + "node": "^14.18.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pkg-dir/node_modules/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==", - "dependencies": { - "p-limit": "^2.2.0" + "url": "https://opencollective.com/eslint-plugin-prettier" }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-types": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.1.tgz", - "integrity": "sha512-jHv9HB+Ho7dj6ItwppRDDl0iZRYBD0jsakHXtFgoLr+cHSF6xC+QL54sJmWxyGxOLYSHm0afhXhXcQDQqH9z8g==", - "dependencies": { - "jsonc-parser": "^3.2.0", - "mlly": "^1.0.0", - "pathe": "^1.0.0" + "peerDependencies": { + "@types/eslint": ">=8.0.0", + "eslint": ">=8.0.0", + "eslint-config-prettier": "*", + "prettier": ">=3.0.0" + }, + "peerDependenciesMeta": { + "@types/eslint": { + "optional": true + }, + "eslint-config-prettier": { + "optional": true + } } }, - "node_modules/pluralize": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", - "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", + "node_modules/eslint-plugin-promise": { + "version": "6.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.6.0.tgz", + "integrity": "sha512-57Zzfw8G6+Gq7axm2Pdo3gW/Rx3h9Yywgn61uE/3elTCOePEHVrn2i5CdfBwA1BLK0Q0WqctICIUSqXZW/VprQ==", "dev": true, "engines": { - "node": ">=4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0" } }, - "node_modules/postcss": { - "version": "8.4.19", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.19.tgz", - "integrity": "sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], + "node_modules/eslint-plugin-unicorn": { + "version": "44.0.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-44.0.2.tgz", + "integrity": "sha512-GLIDX1wmeEqpGaKcnMcqRvMVsoabeF0Ton0EX4Th5u6Kmf7RM9WBl705AXFEsns56ESkEs0uyelLuUTvz9Tr0w==", + "dev": true, "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "@babel/helper-validator-identifier": "^7.19.1", + "ci-info": "^3.4.0", + "clean-regexp": "^1.0.0", + "eslint-utils": "^3.0.0", + "esquery": "^1.4.0", + "indent-string": "^4.0.0", + "is-builtin-module": "^3.2.0", + "lodash": "^4.17.21", + "pluralize": "^8.0.0", + "read-pkg-up": "^7.0.1", + "regexp-tree": "^0.1.24", + "safe-regex": "^2.1.1", + "semver": "^7.3.7", + "strip-indent": "^3.0.0" }, "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-calc": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", - "dependencies": { - "postcss-selector-parser": "^6.0.9", - "postcss-value-parser": "^4.2.0" + "node": ">=14.18" + }, + "funding": { + "url": "https://github.com/sindresorhus/eslint-plugin-unicorn?sponsor=1" }, "peerDependencies": { - "postcss": "^8.2.2" + "eslint": ">=8.23.1" } }, - "node_modules/postcss-colormin": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", - "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", - "dependencies": { - "browserslist": "^4.16.6", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" + "node_modules/eslint-plugin-unicorn/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=10" } }, - "node_modules/postcss-convert-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", - "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "node_modules/eslint-plugin-vue": { + "version": "9.27.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.27.0.tgz", + "integrity": "sha512-5Dw3yxEyuBSXTzT5/Ge1X5kIkRTQ3nvBn/VwPwInNiZBSJOO/timWMUaflONnFBzU6NhB68lxnCda7ULV5N7LA==", + "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" + "@eslint-community/eslint-utils": "^4.4.0", + "globals": "^13.24.0", + "natural-compare": "^1.4.0", + "nth-check": "^2.1.1", + "postcss-selector-parser": "^6.0.15", + "semver": "^7.6.0", + "vue-eslint-parser": "^9.4.3", + "xml-name-validator": "^4.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14.17.0 || >=16.0.0" }, "peerDependencies": { - "postcss": "^8.2.15" + "eslint": "^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0" } }, - "node_modules/postcss-discard-comments": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "node_modules/eslint-plugin-vue/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=8" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "engines": { - "node": "^10 || ^12 || >=14.0" + "node_modules/eslint-plugin-vue/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/postcss-discard-empty": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=10" } }, - "node_modules/postcss-discard-overridden": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "node_modules/eslint-plugin-vue/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-import": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.0.0.tgz", - "integrity": "sha512-Y20shPQ07RitgBGv2zvkEAu9bqvrD77C9axhj/aA1BQj4czape2MdClCExvB27EwYEJdGgKZBpKanb0t1rK2Kg==", + "node_modules/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, "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" }, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" + "node": ">=8.0.0" } }, - "node_modules/postcss-import-resolver": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-import-resolver/-/postcss-import-resolver-2.0.0.tgz", - "integrity": "sha512-y001XYgGvVwgxyxw9J1a5kqM/vtmIQGzx34g0A0Oy44MFcy/ZboZw1hu/iN3VYFjSTRzbvd7zZJJz0Kh0AGkTw==", - "dependencies": { - "enhanced-resolve": "^4.1.1" + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" } }, - "node_modules/postcss-import-resolver/node_modules/enhanced-resolve": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", - "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" + "eslint-visitor-keys": "^2.0.0" }, "engines": { - "node": ">=6.9.0" + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" } }, - "node_modules/postcss-import-resolver/node_modules/tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/postcss-merge-longhand": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", - "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "devOptional": true, "dependencies": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.1" + "color-convert": "^2.0.1" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=8" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/postcss-merge-rules": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz", - "integrity": "sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==", + "node_modules/eslint/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "devOptional": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/postcss-minify-font-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", - "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "devOptional": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/postcss-minify-gradients": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", - "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "node_modules/eslint/node_modules/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==", + "devOptional": true, "dependencies": { - "colord": "^2.9.1", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "color-name": "~1.1.4" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=7.0.0" } }, - "node_modules/postcss-minify-params": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", - "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", - "dependencies": { - "browserslist": "^4.21.4", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, + "node_modules/eslint/node_modules/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==", + "devOptional": true + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "devOptional": true, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-minify-selectors": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "devOptional": true, "dependencies": { - "postcss-selector-parser": "^6.0.5" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/postcss-normalize-charset": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "devOptional": true, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/postcss-normalize-display-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", - "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "devOptional": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "is-glob": "^4.0.3" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=10.13.0" } }, - "node_modules/postcss-normalize-positions": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "devOptional": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "type-fest": "^0.20.2" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=8" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-normalize-repeat-style": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", - "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "devOptional": true, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/postcss-normalize-string": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", - "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "devOptional": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": "*" } }, - "node_modules/postcss-normalize-timing-functions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", - "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "node_modules/eslint/node_modules/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==", + "devOptional": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "has-flag": "^4.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/postcss-normalize-unicode": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", - "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", - "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - }, + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "devOptional": true, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=10" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-normalize-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "devOptional": true, "dependencies": { - "normalize-url": "^6.0.1", - "postcss-value-parser": "^4.2.0" + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/postcss-normalize-whitespace": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "devOptional": true, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/postcss-ordered-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", - "dependencies": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "node_modules/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, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4" } }, - "node_modules/postcss-reduce-initial": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz", - "integrity": "sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==", + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "devOptional": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" + "estraverse": "^5.1.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=0.10" } }, - "node_modules/postcss-reduce-transforms": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "devOptional": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "estraverse": "^5.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=4.0" } }, - "node_modules/postcss-selector-parser": { - "version": "6.0.11", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", - "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "devOptional": true, "engines": { - "node": ">=4" + "node": ">=4.0" } }, - "node_modules/postcss-svgo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", - "dependencies": { - "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" - }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "devOptional": true, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=0.10.0" } }, - "node_modules/postcss-unique-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", - "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">= 0.6" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" } }, - "node_modules/postcss-url": { - "version": "10.1.3", - "resolved": "https://registry.npmjs.org/postcss-url/-/postcss-url-10.1.3.tgz", - "integrity": "sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==", + "node_modules/execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", "dependencies": { - "make-dir": "~3.1.0", - "mime": "~2.5.2", - "minimatch": "~3.0.4", - "xxhashjs": "~0.2.2" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" }, "engines": { - "node": ">=10" + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" }, - "peerDependencies": { - "postcss": "^8.0.0" + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/postcss-url/node_modules/mime": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", - "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", - "bin": { - "mime": "cli.js" - }, - "engines": { - "node": ">=4.0.0" + "node_modules/externality": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/externality/-/externality-1.0.2.tgz", + "integrity": "sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==", + "dependencies": { + "enhanced-resolve": "^5.14.1", + "mlly": "^1.3.0", + "pathe": "^1.1.1", + "ufo": "^1.1.2" } }, - "node_modules/postcss-url/node_modules/minimatch": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", - "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "node_modules/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==", + "devOptional": true + }, + "node_modules/fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true + }, + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dependencies": { - "brace-expansion": "^1.1.7" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "engines": { - "node": "*" + "node": ">=8.6.0" } }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "devOptional": true }, - "node_modules/postcss/node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "bin": { - "nanoid": "bin/nanoid.cjs" + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "devOptional": true + }, + "node_modules/fast-npm-meta": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/fast-npm-meta/-/fast-npm-meta-0.2.2.tgz", + "integrity": "sha512-E+fdxeaOQGo/CMWc9f4uHFfgUPJRAu7N3uB8GBvB3SDPAIWJK4GKyYhkAGFq+GYrcbKNfQIz5VVQyJnDuPPCrg==", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "devOptional": true, + "dependencies": { + "flat-cache": "^3.0.4" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "devOptional": true, + "node_modules/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==" + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/prettier": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", - "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", - "dev": true, - "peer": true, - "bin": { - "prettier": "bin-prettier.js" + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" }, "engines": { - "node": ">=10.13.0" + "node": ">=8" }, "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, - "node_modules/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, + "node_modules/find-cache-dir/node_modules/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==", "dependencies": { - "fast-diff": "^1.1.2" + "semver": "^6.0.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pretty-bytes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.0.0.tgz", - "integrity": "sha512-6UqkYefdogmzqAZWzJ7laYeJnaXDy2/J+ZqiiMtS7t7OfpXWTlaeGMwX8U6EFvPV/YWWEKRkS8hKS4k60WHTOg==", + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, "engines": { - "node": "^14.13.1 || >=16.0.0" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "node_modules/protocols": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", - "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" - }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "node_modules/prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" - }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "devOptional": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, "engines": { - "node": ">=6" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==" + }, + "node_modules/focus-trap": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/focus-trap/-/focus-trap-7.5.4.tgz", + "integrity": "sha512-N7kHdlgsO/v+iD/dMoJKtsSqs5Dz/dXZVebRgJw23LDk+jMi/974zyiOYDziY2JPp8xivq9BmUGwIJMiuSBi7w==", + "dev": true, "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "tabbable": "^6.2.0" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "node_modules/follow-redirects": { + "version": "1.15.6", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.6.tgz", + "integrity": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==", "funding": [ { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" } - ] - }, - "node_modules/radix3": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.0.0.tgz", - "integrity": "sha512-6n3AEXth91ASapMVKiEh2wrbFJmI+NBilrWE0AbiGgfm0xet0QXC8+a3K19r1UVYjUjctUgB053c3V/J6V0kCQ==" - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, - "node_modules/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==", + ], "engines": { - "node": ">= 0.6" + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "node_modules/rc9": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.0.0.tgz", - "integrity": "sha512-yVeYJHOpJLOhs3V6RKwz7RPPwPurrx3JjwK264sPgvo/lFdhuUrLien7iSvAO6STVkN0gSMk/MehQNHQhflqZw==", + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, "dependencies": { - "defu": "^6.1.1", - "destr": "^1.2.1", - "flat": "^5.0.2" + "is-callable": "^1.1.3" } }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "node_modules/foreground-child": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz", + "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==", "dependencies": { - "pify": "^2.3.0" + "cross-spawn": "^7.0.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8.0.0" } }, - "node_modules/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, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/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, - "dependencies": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" - }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "engines": { - "node": ">=8" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "patreon", + "url": "https://github.com/sponsors/rawify" } }, - "node_modules/read-pkg-up/node_modules/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, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/read-pkg-up/node_modules/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, + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dependencies": { - "p-locate": "^4.1.0" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.14" } }, - "node_modules/read-pkg-up/node_modules/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, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dependencies": { - "p-try": "^2.0.0" + "minipass": "^3.0.0" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 8" } }, - "node_modules/read-pkg-up/node_modules/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, + "node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", "dependencies": { - "p-limit": "^2.2.0" + "yallist": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/read-pkg-up/node_modules/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, + "node_modules/fs-minipass/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=8" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/read-pkg/node_modules/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, - "engines": { - "node": ">=8" + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/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==", + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" }, "engines": { - "node": ">= 6" - } - }, - "node_modules/readdir-glob": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.2.tgz", - "integrity": "sha512-6RLVvwJtVwEDfPdn6X6Ille4/lxGl0ATOY4FN/B9nxQcgOazvvI0nodiD19ScKq0PvA/29VpaOQML36o5IzZWA==", - "dependencies": { - "minimatch": "^5.1.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/readdir-glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/readdir-glob/node_modules/minimatch": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", - "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "deprecated": "This package is no longer supported.", "dependencies": { - "brace-expansion": "^2.0.1" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" }, "engines": { "node": ">=10" } }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dependencies": { - "picomatch": "^2.2.1" - }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "engines": { - "node": ">=8.10.0" + "node": ">=6.9.0" } }, - "node_modules/redis-errors": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz", - "integrity": "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==", + "node_modules/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==", "engines": { - "node": ">=4" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/redis-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz", - "integrity": "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==", - "dependencies": { - "redis-errors": "^1.0.0" - }, + "node_modules/get-func-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.2.tgz", + "integrity": "sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==", "engines": { - "node": ">=4" - } - }, - "node_modules/regexp-tree": { - "version": "0.1.24", - "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.24.tgz", - "integrity": "sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw==", - "dev": true, - "bin": { - "regexp-tree": "bin/regexp-tree" + "node": "*" } }, - "node_modules/regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "dev": true, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" }, "engines": { "node": ">= 0.4" @@ -8851,704 +9930,754 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "devOptional": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - } + "node_modules/get-port-please": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-3.1.2.tgz", + "integrity": "sha512-Gxc29eLs1fbn6LQ4jSU4vXjlwyZhF5HsGuMAa7gqBP4Rw4yxxltyDUuF5MBclFzDTXO+ACchGQoeela4DSfzdQ==" }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, - "node_modules/resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "dev": true, "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" }, - "bin": { - "resolve": "bin/resolve" + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/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==", - "devOptional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/restore-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", - "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", + "node_modules/get-tsconfig": { + "version": "4.7.6", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.6.tgz", + "integrity": "sha512-ZAqrLlu18NbDdRaHq+AKXzAmqIUPswPWKUchfytdAjiRFnCe5ojG2bstg6mRiZabkKfCoL/e98pbBELIV/YCeA==", + "dev": true, "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "resolve-pkg-maps": "^1.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" } }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "node_modules/giget": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/giget/-/giget-1.2.3.tgz", + "integrity": "sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==", + "dependencies": { + "citty": "^0.1.6", + "consola": "^3.2.3", + "defu": "^6.1.4", + "node-fetch-native": "^1.6.3", + "nypm": "^0.3.8", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "tar": "^6.2.0" + }, + "bin": { + "giget": "dist/cli.mjs" + } + }, + "node_modules/git-config-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/git-config-path/-/git-config-path-2.0.0.tgz", + "integrity": "sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==", "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "node_modules/git-up": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", + "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "is-ssh": "^1.4.0", + "parse-url": "^8.1.0" } }, - "node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "node_modules/git-url-parse": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-14.1.0.tgz", + "integrity": "sha512-8xg65dTxGHST3+zGpycMMFZcoTzAdZ2dOtu4vmgIfkTFnVHBxHMzBC2L1k8To7EmrSiHesT8JgPLT91VKw1B5g==", + "dependencies": { + "git-up": "^7.0.0" + } + }, + "node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "minimatch": "^5.0.1", + "once": "^1.3.0" }, "engines": { - "node": "*" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/rollup": { - "version": "2.79.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", - "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", - "bin": { - "rollup": "dist/bin/rollup" + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" }, "engines": { - "node": ">=10.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "node": ">= 6" } }, - "node_modules/rollup-plugin-terser": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", - "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", + "node_modules/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, + "peer": true + }, + "node_modules/glob/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dependencies": { - "@babel/code-frame": "^7.10.4", - "jest-worker": "^26.2.1", - "serialize-javascript": "^4.0.0", - "terser": "^5.0.0" + "brace-expansion": "^2.0.1" }, - "peerDependencies": { - "rollup": "^2.0.0" + "engines": { + "node": ">=10" } }, - "node_modules/rollup-plugin-visualizer": { - "version": "5.8.3", - "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.8.3.tgz", - "integrity": "sha512-QGJk4Bqe4AOat5AjipOh8esZH1nck5X2KFpf4VytUdSUuuuSwvIQZjMGgjcxe/zXexltqaXp5Vx1V3LmnQH15Q==", + "node_modules/global-directory": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz", + "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==", "dependencies": { - "open": "^8.4.0", - "source-map": "^0.7.4", - "yargs": "^17.5.1" - }, - "bin": { - "rollup-plugin-visualizer": "dist/bin/cli.js" + "ini": "4.1.1" }, "engines": { - "node": ">=14" - }, - "peerDependencies": { - "rollup": "2.x || 3.x" + "node": ">=18" }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/rollup-plugin-visualizer/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "engines": { - "node": ">= 8" + "node": ">=4" } }, - "node_modules/rollup-pluginutils": { - "version": "2.8.2", - "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", - "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "node_modules/globalthis": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz", + "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==", + "dev": true, "dependencies": { - "estree-walker": "^0.6.1" - } - }, - "node_modules/rollup-pluginutils/node_modules/estree-walker": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", - "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" - }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "define-properties": "^1.2.1", + "gopd": "^1.0.1" + }, "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/rxjs": { - "version": "7.5.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", - "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", - "dependencies": { - "tslib": "^2.1.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/safe-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz", - "integrity": "sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==", - "dev": true, + "node_modules/globby": { + "version": "14.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", + "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", "dependencies": { - "regexp-tree": "~0.1.1" + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" + "get-intrinsic": "^1.1.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, - "node_modules/sass": { - "version": "1.56.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.56.1.tgz", - "integrity": "sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==", + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "devOptional": true + }, + "node_modules/gzip-size": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-7.0.0.tgz", + "integrity": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==", "dependencies": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" - }, - "bin": { - "sass": "sass.js" + "duplexer": "^0.1.2" }, "engines": { - "node": ">=12.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/scule": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/scule/-/scule-1.0.0.tgz", - "integrity": "sha512-4AsO/FrViE/iDNEPaAQlb77tf0csuq27EsVpy6ett584EcRTp6pTDLoGWVxCD77y5iU5FauOvhsI4o1APwPoSQ==" + "node_modules/h3": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/h3/-/h3-1.12.0.tgz", + "integrity": "sha512-Zi/CcNeWBXDrFNlV0hUBJQR9F7a96RjMeAZweW/ZWkR9fuXrMcvKnSA63f/zZ9l0GgQOZDVHGvXivNN9PWOwhA==", + "dependencies": { + "cookie-es": "^1.1.0", + "crossws": "^0.2.4", + "defu": "^6.1.4", + "destr": "^2.0.3", + "iron-webcrypto": "^1.1.1", + "ohash": "^1.1.3", + "radix3": "^1.1.2", + "ufo": "^1.5.3", + "uncrypto": "^0.1.3", + "unenv": "^1.9.0" + } }, - "node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "bin": { - "semver": "bin/semver.js" + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "engines": { - "node": ">= 0.8.0" + "node": ">=4" } }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/send/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" + "es-define-property": "^1.0.0" }, - "engines": { - "node": ">=4" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "dependencies": { - "randombytes": "^2.1.0" + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/serve-placeholder": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/serve-placeholder/-/serve-placeholder-2.0.1.tgz", - "integrity": "sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==", - "dependencies": { - "defu": "^6.0.0" + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "dev": true, "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" + "has-symbols": "^1.0.3" }, "engines": { - "node": ">= 0.8.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" }, - "node_modules/shebang-command": { + "node_modules/hash-sum": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", + "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==" + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dependencies": { - "shebang-regex": "^3.0.0" + "function-bind": "^1.1.2" }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "engines": { - "node": ">=8" + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "devOptional": true, + "bin": { + "he": "bin/he" } }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } + "node_modules/hookable": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==" }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true }, - "node_modules/slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "node_modules/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "node_modules/http-shutdown": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/http-shutdown/-/http-shutdown-1.2.2.tgz", + "integrity": "sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==", "engines": { - "node": ">=0.10.0" + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" } }, - "node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/sourcemap-codec": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + "node_modules/httpxy": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/httpxy/-/httpxy-0.1.5.tgz", + "integrity": "sha512-hqLDO+rfststuyEUTWObQK6zHEEmZ/kaIP2/zclGGZn6X8h/ESTWg+WKecQ/e5k4nPswjzZD+q2VqZIbr15CoQ==" }, - "node_modules/spdx-correct": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", - "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", - "dev": true, - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "engines": { + "node": ">=14.18.0" } }, - "node_modules/spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz", - "integrity": "sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==", - "dev": true - }, - "node_modules/stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", - "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" - }, - "node_modules/standard-as-callback": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz", - "integrity": "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==" - }, - "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, "engines": { - "node": ">= 0.8" + "node": ">=0.10.0" } }, - "node_modules/std-env": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.3.1.tgz", - "integrity": "sha512-3H20QlwQsSm2OvAxWIYhs+j01MzzqwMwGiiO1NQaJYZgJZFPuAbf95/DiKRBSTYIJ2FeGUc+B/6mPGcWP9dO3Q==" - }, - "node_modules/streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "engines": { - "node": ">=10.0.0" + "node": ">= 4" } }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dependencies": { - "safe-buffer": "~5.2.0" - } + "node_modules/image-meta": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/image-meta/-/image-meta-0.2.1.tgz", + "integrity": "sha512-K6acvFaelNxx8wc2VjbIzXKDVB0Khs0QT35U6NkGfTdCmjLNcO2945m7RFNR9/RPVFm48hq7QPzK8uGH18HCGw==" }, - "node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "node_modules/immutable": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz", + "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==" + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "devOptional": true, "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">=12" + "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/string-width/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "engines": { - "node": ">=12" + "node_modules/importx": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/importx/-/importx-0.4.3.tgz", + "integrity": "sha512-x6E6OxmWq/SUaj7wDeDeSjyHP+rMUbEaqJ5fw0uEtC/FTX9ocxNMFJ+ONnpJIsRpFz3ya6qJAK4orwSKqw0BSQ==", + "dev": true, + "dependencies": { + "bundle-require": "^5.0.0", + "debug": "^4.3.6", + "esbuild": "^0.20.2 || ^0.21.0 || ^0.22.0 || ^0.23.0", + "jiti": "2.0.0-beta.2", + "jiti-v1": "npm:jiti@^1", + "pathe": "^1.1.2", + "pkg-types": "^1.1.3", + "tsx": "^4.16.2" }, "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/string-width/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "node_modules/importx/node_modules/jiti": { + "version": "2.0.0-beta.2", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.0.0-beta.2.tgz", + "integrity": "sha512-c+PHQZakiQuMKbnhvrjZUvrK6E/AfmTOf4P+E3Y4FNVHcNMX9e/XrnbEvO+m4wS6ZjsvhHh/POQTlfy8uXFc0A==", + "dev": true, + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "devOptional": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/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, + "engines": { + "node": ">=8" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dependencies": { - "ansi-regex": "^6.0.1" + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", + "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "dev": true, + "dependencies": { + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", "engines": { "node": ">=12" + } + }, + "node_modules/ioredis": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ioredis/-/ioredis-5.4.1.tgz", + "integrity": "sha512-2YZsvl7jopIa1gaePkeMtd9rAcSjOOjPtpcLlOeusyO+XH2SK5ZcT+UCrElPP+WVIInh2TzeI4XW9ENaSLVVHA==", + "dependencies": { + "@ioredis/commands": "^1.1.1", + "cluster-key-slot": "^1.1.0", + "debug": "^4.3.4", + "denque": "^2.1.0", + "lodash.defaults": "^4.2.0", + "lodash.isarguments": "^3.1.0", + "redis-errors": "^1.2.0", + "redis-parser": "^3.0.0", + "standard-as-callback": "^2.1.0" + }, + "engines": { + "node": ">=12.22.0" }, "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/ioredis" } }, - "node_modules/string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", + "node_modules/iron-webcrypto": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.2.1.tgz", + "integrity": "sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==", + "funding": { + "url": "https://github.com/sponsors/brc-dd" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "has-bigints": "^1.0.1" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/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==", "dependencies": { - "ansi-regex": "^5.0.1" + "binary-extensions": "^2.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/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==", + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dependencies": { + "builtin-modules": "^3.3.0" + }, "engines": { "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/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==", + "node_modules/is-bun-module": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-1.1.0.tgz", + "integrity": "sha512-4mTAVPlrXpaN3jtF0lsnPCMGnq4+qZjVIKq0HCpfcqf8OC1SM5oATCIAPM5V5FN05qp2NNnFndphmdZS9CV3hA==", "dev": true, "dependencies": { - "min-indent": "^1.0.0" + "semver": "^7.6.3" + } + }, + "node_modules/is-bun-module/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/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==", - "devOptional": true, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/strip-literal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-1.0.0.tgz", - "integrity": "sha512-5o4LsH1lzBzO9UFH63AJ2ad2/S2AVx6NtjOcaz+VTT2h1RiRvbipW72z8M/lxEhcPHDBQwpDrnTF7sXy/7OwCQ==", + "node_modules/is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", "dependencies": { - "acorn": "^8.8.1" + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/antfu" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/stylehacks": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", - "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" + "is-typed-array": "^1.1.13" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">= 0.4" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, "dependencies": { - "has-flag": "^3.0.0" + "has-tostringtag": "^1.0.0" }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "engines": { "node": ">= 0.4" }, @@ -9556,922 +10685,842 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/svg-tags": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==" - }, - "node_modules/svgo": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", - "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", - "dependencies": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^4.1.3", - "css-tree": "^1.1.3", - "csso": "^4.2.0", - "picocolors": "^1.0.0", - "stable": "^0.1.8" - }, + "node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", "bin": { - "svgo": "bin/svgo" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/synckit": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.4.tgz", - "integrity": "sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==", - "dev": true, - "dependencies": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.4.0" + "is-docker": "cli.js" }, "engines": { - "node": "^14.18.0 || >=16.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://opencollective.com/unts" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/tar": { - "version": "4.4.19", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz", - "integrity": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==", - "dependencies": { - "chownr": "^1.1.4", - "fs-minipass": "^1.2.7", - "minipass": "^2.9.0", - "minizlib": "^1.3.3", - "mkdirp": "^0.5.5", - "safe-buffer": "^5.2.1", - "yallist": "^3.1.1" - }, + "node_modules/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==", "engines": { - "node": ">=4.5" + "node": ">=8" } }, - "node_modules/tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dependencies": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">=6" - } - }, - "node_modules/tar-stream/node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "node": ">=0.10.0" } }, - "node_modules/tar-stream/node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } + "node_modules/is-https": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-https/-/is-https-4.0.0.tgz", + "integrity": "sha512-FeMLiqf8E5g6SdiVJsPcNZX8k4h2fBs1wp5Bb6uaNxn58ufK1axBqQZdmAQsqh0t9BuwFObybrdVJh6MKyPlyg==", + "dev": true }, - "node_modules/terser": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", - "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", "dependencies": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" + "is-docker": "^3.0.0" }, "bin": { - "terser": "bin/terser" + "is-inside-container": "cli.js" }, "engines": { - "node": ">=10" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/terser/node_modules/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==" - }, - "node_modules/text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "devOptional": true - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - }, - "node_modules/tiny-glob": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", - "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", - "dev": true, + "node_modules/is-installed-globally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-1.0.0.tgz", + "integrity": "sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==", "dependencies": { - "globalyzer": "0.1.0", - "globrex": "^0.1.2" + "global-directory": "^4.0.1", + "is-path-inside": "^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/tiny-invariant": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", - "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" - }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dependencies": { - "os-tmpdir": "~1.0.2" + "node_modules/is-installed-globally/node_modules/is-path-inside": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz", + "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==", + "engines": { + "node": ">=12" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" + }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "dev": true, "engines": { - "node": ">=0.6.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "engines": { - "node": ">=4" + "node": ">=0.12.0" } }, - "node_modules/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==", + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, "dependencies": { - "is-number": "^7.0.0" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=8.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "devOptional": true, "engines": { - "node": ">=0.6" + "node": ">=8" } }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - }, - "node_modules/tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", - "dev": true, + "node_modules/is-reference": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", + "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" + "@types/estree": "*" } }, - "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, "dependencies": { - "minimist": "^1.2.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, - "bin": { - "json5": "lib/cli.js" + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/tslib": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" - }, - "node_modules/tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, "dependencies": { - "tslib": "^1.8.1" + "call-bind": "^1.0.7" }, "engines": { - "node": ">= 6" + "node": ">= 0.4" }, - "peerDependencies": { - "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/tsutils/node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "devOptional": true, + "node_modules/is-ssh": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", + "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" + "protocols": "^2.0.1" } }, - "node_modules/type-fest": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.2.0.tgz", - "integrity": "sha512-Il3wdLRzWvbAEtocgxGQA9YOoRVeVUGOMBtel5LdEpNeEAol6GJTLw8GbX6Z8EIMfvfhoOXs2bwOijtAZdK5og==", + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "engines": { - "node": ">=14.16" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/typescript": { - "version": "4.9.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz", - "integrity": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==", - "devOptional": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=4.2.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ufo": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.0.0.tgz", - "integrity": "sha512-DRty0ZBNlJ2R59y4mEupJRKLbkLQsc4qtxjpQv78AwEDuBkaUogMc2LkeqW3HddFlw6NwnXYfdThEZOiNgkmmQ==" - }, - "node_modules/ultrahtml": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.0.1.tgz", - "integrity": "sha512-VDt8gmBR5DPrsfdLS4GQqncojcsLTKMW6iHKVN9l6TohU5bdn/OPv8AmV/0/PBR7Z3qBmMpJHqxRdQFaFA8B9g==" - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/unctx": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unctx/-/unctx-2.1.0.tgz", - "integrity": "sha512-Q3UdS5IAlVRIWsWDd8Rr9g2zqBAZaecBgQ+XXFiKbZzovDMMTEU+Ki0SAVf/ZgWsoeG0/c1kzO2/k6BVhbkUHw==", - "dependencies": { - "acorn": "^8.8.1", - "estree-walker": "^3.0.1", - "magic-string": "^0.26.7", - "unplugin": "^1.0.0" - } - }, - "node_modules/undici": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.12.0.tgz", - "integrity": "sha512-zMLamCG62PGjd9HHMpo05bSLvvwWOZgGeiWlN/vlqu3+lRo3elxktVGEyLMX+IO7c2eflLjcW74AlkhEZm15mg==", + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "dev": true, "dependencies": { - "busboy": "^1.6.0" + "which-typed-array": "^1.1.14" }, "engines": { - "node": ">=12.18" - } - }, - "node_modules/unenv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unenv/-/unenv-1.0.0.tgz", - "integrity": "sha512-vlyi2Rzj4CNlA1JsEXufX+ItkGr3Z5DfLzKniYEneMlBVtuxS+57f1LwTPj2eiBPSPaGHMUVzEnjSCGE7l8JQg==", - "dependencies": { - "defu": "^6.1.1", - "mime": "^3.0.0", - "node-fetch-native": "^1.0.1", - "pathe": "^1.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/unhead": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unhead/-/unhead-1.0.4.tgz", - "integrity": "sha512-d6qQR9fOjbi287DwEZyqECdHny7/z/1hpaARyhSj/zT2vScIsafWSlSJEpLiJQ/LrjhK7LQeSpgZi/cUYllzBA==", + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, "dependencies": { - "@unhead/dom": "1.0.4", - "@unhead/schema": "1.0.4", - "hookable": "^5.4.2" + "call-bind": "^1.0.2" }, "funding": { - "url": "https://github.com/sponsors/harlan-zw" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/unimport": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unimport/-/unimport-1.0.1.tgz", - "integrity": "sha512-SEPKl3uyqUvi6c0MnyCmUF9H07CuC9j9p2p33F03LmegU0sxjpnjL0fLKAhh7BTfcKaJKj+1iOiAFtg7P3m5mQ==", - "dependencies": { - "@rollup/pluginutils": "^5.0.2", - "escape-string-regexp": "^5.0.0", - "fast-glob": "^3.2.12", - "local-pkg": "^0.4.2", - "magic-string": "^0.26.7", - "mlly": "^1.0.0", - "pathe": "^1.0.0", - "pkg-types": "^1.0.1", - "scule": "^1.0.0", - "strip-literal": "^1.0.0", - "unplugin": "^1.0.0" + "node_modules/is-what": { + "version": "4.1.16", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-4.1.16.tgz", + "integrity": "sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==", + "engines": { + "node": ">=12.13" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" } }, - "node_modules/unimport/node_modules/@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", + "node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" + "is-inside-container": "^1.0.0" }, "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0" + "node": ">=16" }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/unimport/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "node_modules/is64bit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is64bit/-/is64bit-2.0.0.tgz", + "integrity": "sha512-jv+8jaWCl0g2lSBkNSVXdzfBA0npK1HGC2KtWM9FumFRoGS94g3NbCCLVnCYHLjp4GrW2KZeeSTMo5ddtznmGw==", + "dependencies": { + "system-architecture": "^0.1.0" + }, "engines": { - "node": ">=12" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/unimport/node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true }, - "node_modules/universalify": { + "node_modules/isexe": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "engines": { - "node": ">= 10.0.0" + "node": ">=8" } }, - "node_modules/unplugin": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.0.0.tgz", - "integrity": "sha512-H5UnBUxfhTXBXGo2AwKsl0UaLSHzSNDZNehPQSgdhVfO/t+XAS1Yoj3vmLrrlBrS9ZwtH5tejbX/TCp5DcyCKg==", + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dependencies": { - "acorn": "^8.8.1", - "chokidar": "^3.5.3", - "webpack-sources": "^3.2.3", - "webpack-virtual-modules": "^0.4.6" + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/unstorage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.0.1.tgz", - "integrity": "sha512-J1c4b8K2KeihHrQtdgl/ybIapArUbPaPb+TyJy/nGSauDwDYqciZsEKdkee568P3c8SSH4TIgnGRHDWMPGw+Lg==", - "dependencies": { - "anymatch": "^3.1.2", - "chokidar": "^3.5.3", - "destr": "^1.2.1", - "h3": "^1.0.1", - "ioredis": "^5.2.4", - "listhen": "^1.0.0", - "mkdir": "^0.0.2", - "mri": "^1.2.0", - "ofetch": "^1.0.0", - "ufo": "^1.0.0", - "ws": "^8.11.0" + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "node_modules/untyped": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/untyped/-/untyped-1.0.0.tgz", - "integrity": "sha512-aBeR3Z51038d7zVzsNShYEdO7u/VCp5R17fxpPXlD2QvG9g6uVJ+JM+zMJ7KFPIt1BNf3I6bU6PhAlsAFkIfdA==", + "node_modules/istanbul-lib-report/node_modules/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==", "dependencies": { - "@babel/core": "^7.20.2", - "@babel/standalone": "^7.20.4", - "@babel/types": "^7.20.2", - "scule": "^1.0.0" + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/upath": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", - "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", + "node_modules/istanbul-reports": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.7.tgz", + "integrity": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, "engines": { - "node": ">=4", - "yarn": "*" + "node": ">=8" } }, - "node_modules/update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "@isaacs/cliui": "^8.0.2" }, - "bin": { - "browserslist-lint": "cli.js" + "funding": { + "url": "https://github.com/sponsors/isaacs" }, - "peerDependencies": { - "browserslist": ">= 4.21.0" + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "devOptional": true, + "node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "peer": true, "dependencies": { - "punycode": "^2.1.0" + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" } }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - }, - "node_modules/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==", + "node_modules/jest-worker/node_modules/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, - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" + "peer": true, + "engines": { + "node": ">=8" } }, - "node_modules/vite": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/vite/-/vite-3.2.4.tgz", - "integrity": "sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==", + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "peer": true, "dependencies": { - "esbuild": "^0.15.9", - "postcss": "^8.4.18", - "resolve": "^1.22.1", - "rollup": "^2.79.1" - }, - "bin": { - "vite": "bin/vite.js" + "has-flag": "^4.0.0" }, "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - }, - "peerDependencies": { - "@types/node": ">= 14", - "less": "*", - "sass": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" + "node": ">=10" }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "sass": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/vite-node": { - "version": "0.25.3", - "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.25.3.tgz", - "integrity": "sha512-0TyDFASTLJUOPRE5e5isyXXgM/fbTD6D37NKduk718l+Ih9FSwqaaHT5f0pIkJMXzyYT6zo4b4FA6pnGdoky3A==", - "dependencies": { - "debug": "^4.3.4", - "mlly": "^1.0.0", - "pathe": "^0.2.0", - "source-map": "^0.6.1", - "source-map-support": "^0.5.21", - "vite": "^3.0.0" - }, + "node_modules/jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", "bin": { - "vite-node": "vite-node.mjs" - }, - "engines": { - "node": ">=v14.16.0" - }, - "funding": { - "url": "https://github.com/sponsors/antfu" + "jiti": "bin/jiti.js" } }, - "node_modules/vite-node/node_modules/pathe": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-0.2.0.tgz", - "integrity": "sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==" + "node_modules/jiti-v1": { + "name": "jiti", + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "dev": true, + "bin": { + "jiti": "bin/jiti.js" + } }, - "node_modules/vite-plugin-checker": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/vite-plugin-checker/-/vite-plugin-checker-0.5.1.tgz", - "integrity": "sha512-NFiO1PyK9yGuaeSnJ7Whw9fnxLc1AlELnZoyFURnauBYhbIkx9n+PmIXxSFUuC9iFyACtbJQUAEuQi6yHs2Adg==", + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dependencies": { - "@babel/code-frame": "^7.12.13", - "ansi-escapes": "^4.3.0", - "chalk": "^4.1.1", - "chokidar": "^3.5.1", - "commander": "^8.0.0", - "fast-glob": "^3.2.7", - "lodash.debounce": "^4.0.8", - "lodash.pick": "^4.4.0", - "npm-run-path": "^4.0.1", - "strip-ansi": "^6.0.0", - "tiny-invariant": "^1.1.0", - "vscode-languageclient": "^7.0.0", - "vscode-languageserver": "^7.0.0", - "vscode-languageserver-textdocument": "^1.0.1", - "vscode-uri": "^3.0.2" + "argparse": "^2.0.1" }, - "engines": { - "node": ">=14.16" + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" }, - "peerDependencies": { - "eslint": ">=7", - "typescript": "*", - "vite": "^2.0.0 || ^3.0.0-0", - "vls": "*", - "vti": "*" + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "devOptional": true + }, + "node_modules/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 + }, + "node_modules/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==", + "devOptional": true + }, + "node_modules/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": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "devOptional": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - }, - "typescript": { - "optional": true - }, - "vls": { - "optional": true - }, - "vti": { - "optional": true - } + "engines": { + "node": ">=6" } }, - "node_modules/vite-plugin-checker/node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "node_modules/jsonc-eslint-parser": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/jsonc-eslint-parser/-/jsonc-eslint-parser-2.4.0.tgz", + "integrity": "sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==", + "dev": true, "dependencies": { - "type-fest": "^0.21.3" + "acorn": "^8.5.0", + "eslint-visitor-keys": "^3.0.0", + "espree": "^9.0.0", + "semver": "^7.3.5" }, "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ota-meshi" } }, - "node_modules/vite-plugin-checker/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, + "node_modules/jsonc-eslint-parser/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://opencollective.com/eslint" } }, - "node_modules/vite-plugin-checker/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "node_modules/jsonc-eslint-parser/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/vite-plugin-checker/node_modules/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==", + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dependencies": { - "color-name": "~1.1.4" + "universalify": "^2.0.0" }, - "engines": { - "node": ">=7.0.0" + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/vite-plugin-checker/node_modules/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==" + "node_modules/just-performance": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/just-performance/-/just-performance-4.3.0.tgz", + "integrity": "sha512-L7RjvtJsL0QO8xFs5wEoDDzzJwoiowRw6Rn/GnvldlchS2JQr9wFYPiwZcDfrbbujEKqKN0tvENdbjXdYhDp5Q==" }, - "node_modules/vite-plugin-checker/node_modules/commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "devOptional": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "engines": { - "node": ">= 12" + "node": ">=6" } }, - "node_modules/vite-plugin-checker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", "engines": { - "node": ">=8" + "node": ">= 8" } }, - "node_modules/vite-plugin-checker/node_modules/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==", + "node_modules/knitwork": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/knitwork/-/knitwork-1.1.0.tgz", + "integrity": "sha512-oHnmiBUVHz1V+URE77PNot2lv3QiYU2zQf1JjOVkMt3YDKGbu8NAFr+c4mcNOhdsGrB/VpVbRwPwhiXrPhxQbw==" + }, + "node_modules/kolorist": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz", + "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==" + }, + "node_modules/launch-editor": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.8.1.tgz", + "integrity": "sha512-elBx2l/tp9z99X5H/qev8uyDywVh0VXAwEbjk8kJhnc5grOFkGh7aW6q55me9xnYbss261XtnUrysZ+XvGbhQA==", "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" } }, - "node_modules/vite-plugin-checker/node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "engines": { - "node": ">=10" + "node_modules/lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dependencies": { + "readable-stream": "^2.0.5" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">= 0.6.3" } }, - "node_modules/vite-plugin-vuetify": { + "node_modules/lazystream/node_modules/isarray": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/vite-plugin-vuetify/-/vite-plugin-vuetify-1.0.0.tgz", - "integrity": "sha512-30+W6H//wjOegKCha4wQ3IS+JyXDE6IayL5cK5S4IrM7WIceV/WitnxljbPZHER+Jyl3BGIuYV6nofjMOfRO1g==", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/lazystream/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dependencies": { - "@vuetify/loader-shared": "^1.7.0", - "debug": "^4.3.3", - "upath": "^2.0.1" - }, - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "vite": "^2.7.0 || ^3.0.0", - "vuetify": "^3.0.0-beta.4" + "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" } }, - "node_modules/vscode-jsonrpc": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0.tgz", - "integrity": "sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==", - "engines": { - "node": ">=8.0.0 || >=10.0.0" + "node_modules/lazystream/node_modules/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==", + "dependencies": { + "safe-buffer": "~5.1.0" } }, - "node_modules/vscode-languageclient": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-7.0.0.tgz", - "integrity": "sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==", + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "devOptional": true, "dependencies": { - "minimatch": "^3.0.4", - "semver": "^7.3.4", - "vscode-languageserver-protocol": "3.16.0" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" }, "engines": { - "vscode": "^1.52.0" + "node": ">= 0.8.0" } }, - "node_modules/vscode-languageclient/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, + "node_modules/lilconfig": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", + "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", "engines": { - "node": ">=10" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" } }, - "node_modules/vscode-languageserver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.0.0.tgz", - "integrity": "sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==", + "node_modules/limiter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/limiter/-/limiter-2.1.0.tgz", + "integrity": "sha512-361TYz6iay6n+9KvUUImqdLuFigK+K79qrUtBsXhJTLdH4rIt/r1y8r1iozwh8KbZNpujbFTSh74mJ7bwbAMOw==", "dependencies": { - "vscode-languageserver-protocol": "3.16.0" + "just-performance": "4.3.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/listhen": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.7.2.tgz", + "integrity": "sha512-7/HamOm5YD9Wb7CFgAZkKgVPA96WwhcTQoqtm2VTZGVbVVn3IWKRBTgrU7cchA3Q8k9iCsG8Osoi9GX4JsGM9g==", + "dependencies": { + "@parcel/watcher": "^2.4.1", + "@parcel/watcher-wasm": "^2.4.1", + "citty": "^0.1.6", + "clipboardy": "^4.0.0", + "consola": "^3.2.3", + "crossws": "^0.2.0", + "defu": "^6.1.4", + "get-port-please": "^3.1.2", + "h3": "^1.10.2", + "http-shutdown": "^1.2.2", + "jiti": "^1.21.0", + "mlly": "^1.6.1", + "node-forge": "^1.3.1", + "pathe": "^1.1.2", + "std-env": "^3.7.0", + "ufo": "^1.4.0", + "untun": "^0.1.3", + "uqr": "^0.1.2" }, "bin": { - "installServerIntoExtension": "bin/installServerIntoExtension" + "listen": "bin/listhen.mjs", + "listhen": "bin/listhen.mjs" } }, - "node_modules/vscode-languageserver-protocol": { - "version": "3.16.0", - "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0.tgz", - "integrity": "sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==", - "dependencies": { - "vscode-jsonrpc": "6.0.0", - "vscode-languageserver-types": "3.16.0" + "node_modules/load-tsconfig": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/load-tsconfig/-/load-tsconfig-0.2.5.tgz", + "integrity": "sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, - "node_modules/vscode-languageserver-textdocument": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.7.tgz", - "integrity": "sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==" - }, - "node_modules/vscode-languageserver-types": { - "version": "3.16.0", - "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", - "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==" + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.11.5" + } }, - "node_modules/vscode-uri": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.6.tgz", - "integrity": "sha512-fmL7V1eiDBFRRnu+gfRWTzyPpNIHJTc4mWnFkwBUmO9U3KPgJAmTx7oxi2bl/Rh6HLdU7+4C9wlj0k2E4AdKFQ==" + "node_modules/local-pkg": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.3.tgz", + "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } }, - "node_modules/vue": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.45.tgz", - "integrity": "sha512-9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA==", + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dependencies": { - "@vue/compiler-dom": "3.2.45", - "@vue/compiler-sfc": "3.2.45", - "@vue/runtime-dom": "3.2.45", - "@vue/server-renderer": "3.2.45", - "@vue/shared": "3.2.45" + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/vue-bundle-renderer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/vue-bundle-renderer/-/vue-bundle-renderer-1.0.0.tgz", - "integrity": "sha512-43vCqTgaMXfHhtR8/VcxxWD1DgtzyvNc4wNyG5NKCIH19O1z5G9ZCRXTGEA2wifVec5PU82CkRLD2sTK9NkTdA==", + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash.defaults": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==" + }, + "node_modules/lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "devOptional": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "node_modules/loupe": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.7.tgz", + "integrity": "sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==", "dependencies": { - "ufo": "^1.0.0" + "get-func-name": "^2.0.1" } }, - "node_modules/vue-devtools-stub": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/vue-devtools-stub/-/vue-devtools-stub-0.1.0.tgz", - "integrity": "sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==" + "node_modules/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==", + "dependencies": { + "yallist": "^3.0.2" + } }, - "node_modules/vue-eslint-parser": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.1.0.tgz", - "integrity": "sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==", - "dev": true, + "node_modules/magic-string": { + "version": "0.30.11", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.11.tgz", + "integrity": "sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==", "dependencies": { - "debug": "^4.3.4", - "eslint-scope": "^7.1.1", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.1", - "esquery": "^1.4.0", - "lodash": "^4.17.21", - "semver": "^7.3.6" - }, - "engines": { - "node": "^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=6.0.0" + "@jridgewell/sourcemap-codec": "^1.5.0" } }, - "node_modules/vue-eslint-parser/node_modules/eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", - "dev": true, + "node_modules/magic-string-ast": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/magic-string-ast/-/magic-string-ast-0.6.2.tgz", + "integrity": "sha512-oN3Bcd7ZVt+0VGEs7402qR/tjgjbM7kPlH/z7ufJnzTLVBzXJITRHOJiwMmmYMgZfdoWQsfQcY+iKlxiBppnMA==", "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "magic-string": "^0.30.10" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=16.14.0" } }, - "node_modules/vue-eslint-parser/node_modules/eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node_modules/magicast": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.4.tgz", + "integrity": "sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==", + "dependencies": { + "@babel/parser": "^7.24.4", + "@babel/types": "^7.24.0", + "source-map-js": "^1.2.0" } }, - "node_modules/vue-eslint-parser/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dependencies": { + "semver": "^7.5.3" + }, "engines": { - "node": ">=4.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/vue-eslint-parser/node_modules/semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "bin": { "semver": "bin/semver.js" }, @@ -10479,7758 +11528,6562 @@ "node": ">=10" } }, - "node_modules/vue-i18n": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.2.2.tgz", - "integrity": "sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ==", + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" + }, + "node_modules/memory-cache": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/memory-cache/-/memory-cache-0.2.0.tgz", + "integrity": "sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==" + }, + "node_modules/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==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dependencies": { - "@intlify/core-base": "9.2.2", - "@intlify/shared": "9.2.2", - "@intlify/vue-devtools": "9.2.2", - "@vue/devtools-api": "^6.2.1" + "braces": "^3.0.3", + "picomatch": "^2.3.1" }, "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "vue": "^3.0.0" + "node": ">=8.6" } }, - "node_modules/vue-i18n/node_modules/@intlify/shared": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.2.2.tgz", - "integrity": "sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==", + "node_modules/mime": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.4.tgz", + "integrity": "sha512-v8yqInVjhXyqP6+Kw4fV3ZzeMRqEW6FotRsKXjRS5VMTNIuXsdRoAvklpoRgSqXm6o9VNH4/C0mgedko9DdLsQ==", + "funding": [ + "https://github.com/sponsors/broofa" + ], + "bin": { + "mime": "bin/cli.js" + }, "engines": { - "node": ">= 14" + "node": ">=16" } }, - "node_modules/vue-matomo": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/vue-matomo/-/vue-matomo-4.2.0.tgz", - "integrity": "sha512-m5hCw7LH3wPDcERaF4sp/ojR9sEx7Rl8TpOyH/4jjQxMF2DuY/q5pO+i9o5Dx+BXLSa9+IQ0qhAbWYRyESQXmA==", + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" + "node": ">= 0.6" } }, - "node_modules/vue-router": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.1.6.tgz", - "integrity": "sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==", + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dependencies": { - "@vue/devtools-api": "^6.4.5" + "mime-db": "1.52.0" }, - "funding": { - "url": "https://github.com/sponsors/posva" + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "engines": { + "node": ">=12" }, - "peerDependencies": { - "vue": "^3.2.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/vue-template-compiler": { - "version": "2.7.14", - "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz", - "integrity": "sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==", + "node_modules/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, - "dependencies": { - "de-indent": "^1.0.2", - "he": "^1.2.0" + "engines": { + "node": ">=4" } }, - "node_modules/vue-tsc": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.0.13.tgz", - "integrity": "sha512-DORISA3Fu9595xbg5HQqUj4XZVvkyRkcZFJCkCt1CeN7tIMgVRQ8ow07AKcbuHoEkqg7OI4qLu1wyC/VH3o5Ug==", - "dev": true, + "node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "devOptional": true, "dependencies": { - "@volar/vue-language-core": "1.0.13", - "@volar/vue-typescript": "1.0.13" + "brace-expansion": "^2.0.1" }, - "bin": { - "vue-tsc": "bin/vue-tsc.js" + "engines": { + "node": ">=16 || 14 >=14.17" }, - "peerDependencies": { - "typescript": "*" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/vuetify": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-3.0.1.tgz", - "integrity": "sha512-Vl4wYB4mCm6GFK6Q9KZDK+HM3YKI7md7BoUPwbgqZj4bkofjQ/8NVSRQQpTcwk0YoQrgw6qj0QaOtP5zitkS1Q==", - "engines": { - "node": "^12.20 || >=14.13" - }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, "funding": { - "type": "github", - "url": "https://github.com/sponsors/johnleider" - }, - "peerDependencies": { - "vite-plugin-vuetify": "^1.0.0-alpha.12", - "vue": "^3.2.0", - "vue-i18n": "^9.0.0", - "webpack-plugin-vuetify": "^2.0.0-alpha.11" - }, - "peerDependenciesMeta": { - "vite-plugin-vuetify": { - "optional": true - }, - "vue-i18n": { - "optional": true - }, - "webpack-plugin-vuetify": { - "optional": true - } + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dependencies": { - "defaults": "^1.0.3" + "node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "engines": { + "node": ">=8" } }, - "node_modules/web-streams-polyfill": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", - "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==", + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, "engines": { "node": ">= 8" } }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { - "node": ">=10.13.0" + "node": ">=8" } }, - "node_modules/webpack-virtual-modules": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz", - "integrity": "sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==" + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, - "node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" - } + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==" }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dependencies": { - "isexe": "^2.0.0" - }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", "bin": { - "node-which": "bin/node-which" + "mkdirp": "bin/cmd.js" }, "engines": { - "node": ">= 8" - } - }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", - "dev": true, - "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=10" } }, - "node_modules/wide-align": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", - "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "node_modules/mlly": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.7.1.tgz", + "integrity": "sha512-rrVRZRELyQzrIUAVMHxP97kv+G786pHmOKzuFII8zDYahFBS7qnHh2AlYSl1GAHhaMPCz6/oHjVMcfFYgFYHgA==", "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" + "acorn": "^8.11.3", + "pathe": "^1.1.2", + "pkg-types": "^1.1.1", + "ufo": "^1.5.3" } }, - "node_modules/wide-align/node_modules/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==" - }, - "node_modules/wide-align/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/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==", - "devOptional": true, + "node_modules/mrmime": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", + "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/wrap-ansi": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.0.1.tgz", - "integrity": "sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g==", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } + "node_modules/muggle-string": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.3.1.tgz", + "integrity": "sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==", + "devOptional": true }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" } }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "dependencies": { - "ansi-regex": "^6.0.1" + "node_modules/nanoid": { + "version": "5.0.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-5.0.7.tgz", + "integrity": "sha512-oLxFY2gd2IqnjcYyOXD8XGCftpGtZP2AbHbOkthDkvRywH5ayNtPVy9YlOPcHckXzbLTCHpkb7FB+yuxKV13pQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.js" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "node": "^18 || >=20" } }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "devOptional": true }, - "node_modules/ws": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", - "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", + "node_modules/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, + "peer": true + }, + "node_modules/nitropack": { + "version": "2.9.7", + "resolved": "https://registry.npmjs.org/nitropack/-/nitropack-2.9.7.tgz", + "integrity": "sha512-aKXvtNrWkOCMsQbsk4A0qQdBjrJ1ZcvwlTQevI/LAgLWLYc5L7Q/YiYxGLal4ITyNSlzir1Cm1D2ZxnYhmpMEw==", + "dependencies": { + "@cloudflare/kv-asset-handler": "^0.3.4", + "@netlify/functions": "^2.8.0", + "@rollup/plugin-alias": "^5.1.0", + "@rollup/plugin-commonjs": "^25.0.8", + "@rollup/plugin-inject": "^5.0.5", + "@rollup/plugin-json": "^6.1.0", + "@rollup/plugin-node-resolve": "^15.2.3", + "@rollup/plugin-replace": "^5.0.7", + "@rollup/plugin-terser": "^0.4.4", + "@rollup/pluginutils": "^5.1.0", + "@types/http-proxy": "^1.17.14", + "@vercel/nft": "^0.26.5", + "archiver": "^7.0.1", + "c12": "^1.11.1", + "chalk": "^5.3.0", + "chokidar": "^3.6.0", + "citty": "^0.1.6", + "consola": "^3.2.3", + "cookie-es": "^1.1.0", + "croner": "^8.0.2", + "crossws": "^0.2.4", + "db0": "^0.1.4", + "defu": "^6.1.4", + "destr": "^2.0.3", + "dot-prop": "^8.0.2", + "esbuild": "^0.20.2", + "escape-string-regexp": "^5.0.0", + "etag": "^1.8.1", + "fs-extra": "^11.2.0", + "globby": "^14.0.1", + "gzip-size": "^7.0.0", + "h3": "^1.12.0", + "hookable": "^5.5.3", + "httpxy": "^0.1.5", + "ioredis": "^5.4.1", + "jiti": "^1.21.6", + "klona": "^2.0.6", + "knitwork": "^1.1.0", + "listhen": "^1.7.2", + "magic-string": "^0.30.10", + "mime": "^4.0.3", + "mlly": "^1.7.1", + "mri": "^1.2.0", + "node-fetch-native": "^1.6.4", + "ofetch": "^1.3.4", + "ohash": "^1.1.3", + "openapi-typescript": "^6.7.6", + "pathe": "^1.1.2", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.1.1", + "pretty-bytes": "^6.1.1", + "radix3": "^1.1.2", + "rollup": "^4.18.0", + "rollup-plugin-visualizer": "^5.12.0", + "scule": "^1.3.0", + "semver": "^7.6.2", + "serve-placeholder": "^2.0.2", + "serve-static": "^1.15.0", + "std-env": "^3.7.0", + "ufo": "^1.5.3", + "uncrypto": "^0.1.3", + "unctx": "^2.3.1", + "unenv": "^1.9.0", + "unimport": "^3.7.2", + "unstorage": "^1.10.2", + "unwasm": "^0.3.9" + }, + "bin": { + "nitro": "dist/cli/index.mjs", + "nitropack": "dist/cli/index.mjs" + }, "engines": { - "node": ">=10.0.0" + "node": "^16.11.0 || >=17.0.0" }, "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" + "xml2js": "^0.6.2" }, "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { + "xml2js": { "optional": true } } }, - "node_modules/xml-name-validator": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", - "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", - "dev": true, + "node_modules/nitropack/node_modules/@esbuild/aix-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", + "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "aix" + ], "engines": { "node": ">=12" } }, - "node_modules/xxhashjs": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/xxhashjs/-/xxhashjs-0.2.2.tgz", - "integrity": "sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==", - "dependencies": { - "cuint": "^0.2.2" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "node_modules/nitropack/node_modules/@esbuild/android-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", + "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=10" + "node": ">=12" } }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - }, - "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "node_modules/nitropack/node_modules/@esbuild/android-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", + "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">= 6" - } - }, - "node_modules/yaml-eslint-parser": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/yaml-eslint-parser/-/yaml-eslint-parser-0.3.2.tgz", - "integrity": "sha512-32kYO6kJUuZzqte82t4M/gB6/+11WAuHiEnK7FreMo20xsCKPeFH5tDBU7iWxR7zeJpNnMXfJyXwne48D0hGrg==", - "dev": true, - "dependencies": { - "eslint-visitor-keys": "^1.3.0", - "lodash": "^4.17.20", - "yaml": "^1.10.0" + "node": ">=12" } }, - "node_modules/yaml-eslint-parser/node_modules/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, + "node_modules/nitropack/node_modules/@esbuild/android-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", + "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/yargs": { - "version": "17.6.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", - "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, + "node_modules/nitropack/node_modules/@esbuild/darwin-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], "engines": { "node": ">=12" } }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "engines": { + "node_modules/nitropack/node_modules/@esbuild/darwin-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", + "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { "node": ">=12" } }, - "node_modules/yargs/node_modules/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==" - }, - "node_modules/yargs/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, + "node_modules/nitropack/node_modules/@esbuild/freebsd-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", + "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "devOptional": true, + "node_modules/nitropack/node_modules/@esbuild/freebsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", + "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/zip-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-4.1.0.tgz", - "integrity": "sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A==", - "dependencies": { - "archiver-utils": "^2.1.0", - "compress-commons": "^4.1.0", - "readable-stream": "^3.6.0" - }, + "node_modules/nitropack/node_modules/@esbuild/linux-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", + "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 10" - } - } - }, - "dependencies": { - "@ampproject/remapping": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", - "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", - "requires": { - "@jridgewell/gen-mapping": "^0.1.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", - "requires": { - "@babel/highlight": "^7.18.6" - } - }, - "@babel/compat-data": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.1.tgz", - "integrity": "sha512-EWZ4mE2diW3QALKvDMiXnbZpRvlj+nayZ112nK93SnhqOtpdsbVD4W+2tEoT3YNBAG9RBR0ISY758ZkOgsn6pQ==" - }, - "@babel/core": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.2.tgz", - "integrity": "sha512-w7DbG8DtMrJcFOi4VrLm+8QM4az8Mo+PuLBKLp2zrYRCow8W/f9xiXm5sN53C8HksCyDQwCKha9JiDoIyPjT2g==", - "requires": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.2", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-module-transforms": "^7.20.2", - "@babel/helpers": "^7.20.1", - "@babel/parser": "^7.20.2", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2", - "convert-source-map": "^1.7.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.1", - "semver": "^6.3.0" + "node": ">=12" } }, - "@babel/eslint-parser": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz", - "integrity": "sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==", - "dev": true, - "requires": { - "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", - "eslint-visitor-keys": "^2.1.0", - "semver": "^6.3.0" + "node_modules/nitropack/node_modules/@esbuild/linux-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", + "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@babel/generator": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.4.tgz", - "integrity": "sha512-luCf7yk/cm7yab6CAW1aiFnmEfBJplb/JojV56MYEK7ziWfGmFlTfmL9Ehwfy4gFhbjBfWO1wj7/TuSbVNEEtA==", - "requires": { - "@babel/types": "^7.20.2", - "@jridgewell/gen-mapping": "^0.3.2", - "jsesc": "^2.5.1" - }, - "dependencies": { - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - } + "node_modules/nitropack/node_modules/@esbuild/linux-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", + "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-compilation-targets": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", - "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", - "requires": { - "@babel/compat-data": "^7.20.0", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.21.3", - "semver": "^6.3.0" - } - }, - "@babel/helper-create-class-features-plugin": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.2.tgz", - "integrity": "sha512-k22GoYRAHPYr9I+Gvy2ZQlAe5mGy8BqWst2wRt8cwIufWTxrsVshhIBvYNqC80N0GSFWTsqRVexOtfzlgOEDvA==", - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-member-expression-to-functions": "^7.18.9", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.19.1", - "@babel/helper-split-export-declaration": "^7.18.6" - } - }, - "@babel/helper-environment-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", - "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==" - }, - "@babel/helper-function-name": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", - "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", - "requires": { - "@babel/template": "^7.18.10", - "@babel/types": "^7.19.0" - } - }, - "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-member-expression-to-functions": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.18.9.tgz", - "integrity": "sha512-RxifAh2ZoVU67PyKIO4AMi1wTenGfMR/O/ae0CCRqwgBAt5v7xjdtRw7UoSbsreKrQn5t7r89eruK/9JjYHuDg==", - "requires": { - "@babel/types": "^7.18.9" - } - }, - "@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-module-transforms": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", - "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.2" - } - }, - "@babel/helper-optimise-call-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", - "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==" - }, - "@babel/helper-replace-supers": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz", - "integrity": "sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw==", - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.18.9", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/traverse": "^7.19.1", - "@babel/types": "^7.19.0" - } - }, - "@babel/helper-simple-access": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", - "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", - "requires": { - "@babel/types": "^7.20.2" - } - }, - "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", - "requires": { - "@babel/types": "^7.18.6" - } - }, - "@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==" - }, - "@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==" - }, - "@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==" - }, - "@babel/helpers": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.1.tgz", - "integrity": "sha512-J77mUVaDTUJFZ5BpP6mMn6OIl3rEWymk2ZxDBQJUG3P+PbmyMcF3bYWvz0ma69Af1oobDqT/iAsvzhB58xhQUg==", - "requires": { - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.1", - "@babel/types": "^7.20.0" - } - }, - "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", - "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" - } - }, - "@babel/parser": { - "version": "7.20.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.3.tgz", - "integrity": "sha512-OP/s5a94frIPXwjzEcv5S/tpQfc6XhxYUnmWpgdqMWGgYCuErA3SzozaRAMQgSZWKeTJxht9aWAkUY+0UzvOFg==" - }, - "@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", - "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-syntax-typescript": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz", - "integrity": "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==", - "requires": { - "@babel/helper-plugin-utils": "^7.19.0" - } - }, - "@babel/plugin-transform-typescript": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.2.tgz", - "integrity": "sha512-jvS+ngBfrnTUBfOQq8NfGnSbF9BrqlR6hjJ2yVxMkmO5nL/cdifNbI30EfjRlN4g5wYWNnMPyj5Sa6R1pbLeag==", - "requires": { - "@babel/helper-create-class-features-plugin": "^7.20.2", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-typescript": "^7.20.0" - } - }, - "@babel/standalone": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.20.4.tgz", - "integrity": "sha512-27bv4h47jbaFZ7+e7gT1VEo9PNL1ynxqUX6/BERLz1qxm/5gzpbcHX+47VnSeYHyEyGZkRznpSOd8zPBhiz6tw==" - }, - "@babel/template": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", - "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.18.10", - "@babel/types": "^7.18.10" - } - }, - "@babel/traverse": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.1.tgz", - "integrity": "sha512-d3tN8fkVJwFLkHkBN479SOsw4DMZnz8cdbL/gvuDuzy3TS6Nfw80HuQqhw1pITbIruHyh7d1fMA47kWzmcUEGA==", - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.1", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.20.1", - "@babel/types": "^7.20.0", - "debug": "^4.1.0", - "globals": "^11.1.0" + "node_modules/nitropack/node_modules/@esbuild/linux-loong64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", + "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", + "cpu": [ + "loong64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@babel/types": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.2.tgz", - "integrity": "sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==", - "requires": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", - "to-fast-properties": "^2.0.0" + "node_modules/nitropack/node_modules/@esbuild/linux-mips64el": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", + "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", + "cpu": [ + "mips64el" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@cloudflare/kv-asset-handler": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.2.0.tgz", - "integrity": "sha512-MVbXLbTcAotOPUj0pAMhVtJ+3/kFkwJqc5qNOleOZTv6QkZZABDMS21dSrSlVswEHwrpWC03e4fWytjqKvuE2A==", - "requires": { - "mime": "^3.0.0" + "node_modules/nitropack/node_modules/@esbuild/linux-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", + "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@esbuild/android-arm": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.15.15.tgz", - "integrity": "sha512-JJjZjJi2eBL01QJuWjfCdZxcIgot+VoK6Fq7eKF9w4YHm9hwl7nhBR1o2Wnt/WcANk5l9SkpvrldW1PLuXxcbw==", - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.15.15.tgz", - "integrity": "sha512-lhz6UNPMDXUhtXSulw8XlFAtSYO26WmHQnCi2Lg2p+/TMiJKNLtZCYUxV4wG6rZMzXmr8InGpNwk+DLT2Hm0PA==", - "optional": true - }, - "@eslint/eslintrc": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz", - "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==", - "devOptional": true, - "requires": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^9.4.0", - "globals": "^13.15.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "dependencies": { - "globals": { - "version": "13.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz", - "integrity": "sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==", - "devOptional": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "devOptional": true - } + "node_modules/nitropack/node_modules/@esbuild/linux-riscv64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", + "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", + "cpu": [ + "riscv64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@humanwhocodes/config-array": { - "version": "0.11.7", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz", - "integrity": "sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==", - "devOptional": true, - "requires": { - "@humanwhocodes/object-schema": "^1.2.1", - "debug": "^4.1.1", - "minimatch": "^3.0.5" + "node_modules/nitropack/node_modules/@esbuild/linux-s390x": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", + "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "devOptional": true - }, - "@humanwhocodes/object-schema": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", - "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", - "devOptional": true - }, - "@iconify/types": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@iconify/types/-/types-2.0.0.tgz", - "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", - "dev": true - }, - "@iconify/vue": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/@iconify/vue/-/vue-4.0.1.tgz", - "integrity": "sha512-k4VwcSQpGqJpoyqENRRviFuXlVcquLvQ6BKLNJ6o2amZo7u+3HyALSO79Xyz7Sg68szQGstOk6weaKUF0DJbog==", - "dev": true, - "requires": { - "@iconify/types": "^2.0.0" + "node_modules/nitropack/node_modules/@esbuild/linux-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", + "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@intlify/bundle-utils": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/@intlify/bundle-utils/-/bundle-utils-3.4.0.tgz", - "integrity": "sha512-2UQkqiSAOSPEHMGWlybqWm4G2K0X+FyYho5AwXz6QklSX1EY5EDmOSxZmwscn2qmKBnp6OYsme5kUrnN9xrWzQ==", - "dev": true, - "requires": { - "@intlify/message-compiler": "next", - "@intlify/shared": "next", - "jsonc-eslint-parser": "^1.0.1", - "source-map": "0.6.1", - "yaml-eslint-parser": "^0.3.2" + "node_modules/nitropack/node_modules/@esbuild/netbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", + "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" } }, - "@intlify/core-base": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.2.2.tgz", - "integrity": "sha512-JjUpQtNfn+joMbrXvpR4hTF8iJQ2sEFzzK3KIESOx+f+uwIjgw20igOyaIdhfsVVBCds8ZM64MoeNSx+PHQMkA==", - "requires": { - "@intlify/devtools-if": "9.2.2", - "@intlify/message-compiler": "9.2.2", - "@intlify/shared": "9.2.2", - "@intlify/vue-devtools": "9.2.2" - }, - "dependencies": { - "@intlify/message-compiler": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.2.2.tgz", - "integrity": "sha512-IUrQW7byAKN2fMBe8z6sK6riG1pue95e5jfokn8hA5Q3Bqy4MBJ5lJAofUsawQJYHeoPJ7svMDyBaVJ4d0GTtA==", - "requires": { - "@intlify/shared": "9.2.2", - "source-map": "0.6.1" - } - }, - "@intlify/shared": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.2.2.tgz", - "integrity": "sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==" - } + "node_modules/nitropack/node_modules/@esbuild/openbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", + "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" } }, - "@intlify/devtools-if": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/devtools-if/-/devtools-if-9.2.2.tgz", - "integrity": "sha512-4ttr/FNO29w+kBbU7HZ/U0Lzuh2cRDhP8UlWOtV9ERcjHzuyXVZmjyleESK6eVP60tGC9QtQW9yZE+JeRhDHkg==", - "requires": { - "@intlify/shared": "9.2.2" - }, - "dependencies": { - "@intlify/shared": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.2.2.tgz", - "integrity": "sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==" - } + "node_modules/nitropack/node_modules/@esbuild/sunos-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", + "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" } }, - "@intlify/message-compiler": { - "version": "9.3.0-beta.10", - "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.3.0-beta.10.tgz", - "integrity": "sha512-RoOC6yceOykLRhN0NlbkNOBUx1el6iphx3W8NfOx3jHVNtfT1FYokx14/5sU3F1F0uxeG4sp6q+ppKvaF8o+ww==", - "dev": true, - "requires": { - "@intlify/shared": "9.3.0-beta.10", - "source-map": "0.6.1" + "node_modules/nitropack/node_modules/@esbuild/win32-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", + "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "@intlify/shared": { - "version": "9.3.0-beta.10", - "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.3.0-beta.10.tgz", - "integrity": "sha512-h93uAanbAt/XgjDHclrVB7xix6r7Uz11wx0iGNOCdHP7aA2LCJjUT3uNbekJjjbo+Fl5jzTSJZdm2SexzoqhRA==", - "dev": true - }, - "@intlify/unplugin-vue-i18n": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@intlify/unplugin-vue-i18n/-/unplugin-vue-i18n-0.8.0.tgz", - "integrity": "sha512-bqMDYrbmV0oMLGHTdYMUXfcEsy2rPwQnGrQAg4gvw5FimvJfTQt3RliLVayT5ldOfeT2g0IUc/0t7LPeGrFUag==", - "dev": true, - "requires": { - "@intlify/bundle-utils": "^3.4.0", - "@intlify/shared": "next", - "@rollup/pluginutils": "^4.2.0", - "@vue/compiler-sfc": "^3.2.45", - "debug": "^4.3.1", - "fast-glob": "^3.2.5", - "js-yaml": "^4.1.0", - "json5": "^2.2.0", - "pathe": "^1.0.0", - "picocolors": "^1.0.0", - "source-map": "0.6.1", - "unplugin": "^1.0.0" - } - }, - "@intlify/vue-devtools": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/vue-devtools/-/vue-devtools-9.2.2.tgz", - "integrity": "sha512-+dUyqyCHWHb/UcvY1MlIpO87munedm3Gn6E9WWYdWrMuYLcoIoOEVDWSS8xSwtlPU+kA+MEQTP6Q1iI/ocusJg==", - "requires": { - "@intlify/core-base": "9.2.2", - "@intlify/shared": "9.2.2" - }, - "dependencies": { - "@intlify/shared": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.2.2.tgz", - "integrity": "sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==" - } - } - }, - "@ioredis/commands": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz", - "integrity": "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==" - }, - "@jridgewell/gen-mapping": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", - "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", - "requires": { - "@jridgewell/set-array": "^1.0.0", - "@jridgewell/sourcemap-codec": "^1.4.10" - } - }, - "@jridgewell/resolve-uri": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", - "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==" - }, - "@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==" - }, - "@jridgewell/source-map": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.2.tgz", - "integrity": "sha512-m7O9o2uR8k2ObDysZYzdfhb08VuEml5oWGiosa1VdaPZ/A6QyPkAJuwN0Q1lhULOf6B7MtQmHENS743hWtCrgw==", - "requires": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "dependencies": { - "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", - "requires": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - } - } + "node_modules/nitropack/node_modules/@esbuild/win32-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", + "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" - }, - "@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", - "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "node_modules/nitropack/node_modules/@esbuild/win32-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", + "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "@mapbox/node-pre-gyp": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz", - "integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==", - "requires": { - "detect-libc": "^2.0.0", - "https-proxy-agent": "^5.0.0", - "make-dir": "^3.1.0", - "node-fetch": "^2.6.7", - "nopt": "^5.0.0", - "npmlog": "^5.0.1", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.11" + "node_modules/nitropack/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" }, - "dependencies": { - "chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" - }, - "fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "requires": { - "minipass": "^3.0.0" - } - }, - "minipass": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", - "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", - "requires": { - "yallist": "^4.0.0" - } - }, - "minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "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==" - }, - "node-fetch": { - "version": "2.6.7", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.7.tgz", - "integrity": "sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==", - "requires": { - "whatwg-url": "^5.0.0" - } - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "requires": { - "lru-cache": "^6.0.0" - } - }, - "tar": { - "version": "6.1.12", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.12.tgz", - "integrity": "sha512-jU4TdemS31uABHd+Lt5WEYJuzn+TJTCBLljvIAHZOz6M9Os5pJ4dD+vRFLxPa/n3T0iEFzpi+0x1UfuDZYbRMw==", - "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" - } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "@mdi/font": { - "version": "7.0.96", - "resolved": "https://registry.npmjs.org/@mdi/font/-/font-7.0.96.tgz", - "integrity": "sha512-rzlxTfR64hqY8yiBzDjmANfcd8rv+T5C0Yedv/TWk2QyAQYdc66e0kaN1ipmnYU3RukHRTRcBARHzzm+tIhL7w==", - "dev": true - }, - "@netlify/functions": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-1.3.0.tgz", - "integrity": "sha512-hN/Fgpz8XIOBfsBPLYUMxVKBlCopgeqGB0popayicnmkFLnvKByTTMYgF01wcF9DBtBQdV0H2h1kPFpMl34I8w==", - "requires": { - "is-promise": "^4.0.0" + "node_modules/nitropack/node_modules/esbuild": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" } }, - "@nicolo-ribaudo/eslint-scope-5-internals": { - "version": "5.1.1-v1", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", - "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", - "dev": true, - "requires": { - "eslint-scope": "5.1.1" + "node_modules/nitropack/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "requires": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "node_modules/nitropack/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==" }, - "@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "requires": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "@nuxt/devalue": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.0.tgz", - "integrity": "sha512-YBI/6o2EBz02tdEJRBK8xkt3zvOFOWlLBf7WKYGBsSYSRtjjgrqPe2skp6VLLmKx5WbHHDNcW+6oACaurxGzeA==" + "node_modules/node-fetch-native": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", + "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==" }, - "@nuxt/kit": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.0.0.tgz", - "integrity": "sha512-7ZsOLt5s9a0ZleAIzmoD70JwkZf5ti6bDdxl6f8ew7Huxz+ni/oRfTPTX9TrORXsgW5CvDt6Q9M7IJNPkAN/Iw==", - "requires": { - "@nuxt/schema": "3.0.0", - "c12": "^1.0.1", - "consola": "^2.15.3", - "defu": "^6.1.1", - "globby": "^13.1.2", - "hash-sum": "^2.0.0", - "ignore": "^5.2.0", - "jiti": "^1.16.0", - "knitwork": "^1.0.0", - "lodash.template": "^4.5.0", - "mlly": "^1.0.0", - "pathe": "^1.0.0", - "pkg-types": "^1.0.1", - "scule": "^1.0.0", - "semver": "^7.3.8", - "unctx": "^2.1.0", - "unimport": "^1.0.1", - "untyped": "^1.0.0" - }, - "dependencies": { - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "requires": { - "lru-cache": "^6.0.0" - } - } + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "engines": { + "node": ">= 6.13.0" } }, - "@nuxt/schema": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.0.0.tgz", - "integrity": "sha512-5fwsidhs5NjFzR8sIzHMXO0WFGkI3tCH3ViANn2W4N5qCwoYZ0n1sZBkQ9Esn1VoEed6RsIlTpWrPZPVtqNkGQ==", - "requires": { - "c12": "^1.0.1", - "create-require": "^1.1.1", - "defu": "^6.1.1", - "jiti": "^1.16.0", - "pathe": "^1.0.0", - "pkg-types": "^1.0.1", - "postcss-import-resolver": "^2.0.0", - "scule": "^1.0.0", - "std-env": "^3.3.1", - "ufo": "^1.0.0", - "unimport": "^1.0.1", - "untyped": "^1.0.0" - } - }, - "@nuxt/telemetry": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-2.1.8.tgz", - "integrity": "sha512-WCHRrcPKRosuHQi8CD5WfjiXGAyjOWVJpK77xS6wlg8zwziBPCqmVIQdr4QpFTGFO1Nrh4z26l1VnivKy22KFQ==", - "requires": { - "@nuxt/kit": "^3.0.0-rc.14", - "chalk": "^5.1.2", - "ci-info": "^3.6.1", - "consola": "^2.15.3", - "create-require": "^1.1.1", - "defu": "^6.1.1", - "destr": "^1.2.1", - "dotenv": "^16.0.3", - "fs-extra": "^10.1.0", - "git-url-parse": "^13.1.0", - "inquirer": "^9.1.4", - "is-docker": "^3.0.0", - "jiti": "^1.16.0", - "mri": "^1.2.0", - "nanoid": "^4.0.0", - "node-fetch": "^3.3.0", - "ohmyfetch": "^0.4.21", - "parse-git-config": "^3.0.0", - "rc9": "^2.0.0", - "std-env": "^3.3.1" - }, - "dependencies": { - "chalk": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz", - "integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==" - } + "node_modules/node-gyp-build": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" } }, - "@nuxt/ui-templates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@nuxt/ui-templates/-/ui-templates-1.0.0.tgz", - "integrity": "sha512-jfpVHxi1AHfNO3D6iD1RJE6fx/7cAzekvG90poIzVawp/L+I4DNdy8pCgqBScJW4bfWOpHeLYbtQQlL/hPmkjw==" + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" }, - "@nuxt/vite-builder": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@nuxt/vite-builder/-/vite-builder-3.0.0.tgz", - "integrity": "sha512-eMnpPpjHU8rGZcsJUksCuSX+6dpId03q8LOSStsm6rXzrNJtZIcwt0nBRTUaigckXIozX8ZNl5u2OPGUfUbMrw==", - "requires": { - "@nuxt/kit": "3.0.0", - "@rollup/plugin-replace": "^5.0.1", - "@vitejs/plugin-vue": "^3.2.0", - "@vitejs/plugin-vue-jsx": "^2.1.1", - "autoprefixer": "^10.4.13", - "chokidar": "^3.5.3", - "cssnano": "^5.1.14", - "defu": "^6.1.1", - "esbuild": "^0.15.14", - "escape-string-regexp": "^5.0.0", - "estree-walker": "^3.0.1", - "externality": "^1.0.0", - "fs-extra": "^10.1.0", - "get-port-please": "^2.6.1", - "h3": "^1.0.1", - "knitwork": "^1.0.0", - "magic-string": "^0.26.7", - "mlly": "^1.0.0", - "ohash": "^1.0.0", - "pathe": "^1.0.0", - "perfect-debounce": "^0.1.3", - "pkg-types": "^1.0.1", - "postcss": "^8.4.19", - "postcss-import": "^15.0.0", - "postcss-url": "^10.1.3", - "rollup": "^2.79.1", - "rollup-plugin-visualizer": "^5.8.3", - "ufo": "^1.0.0", - "unplugin": "^1.0.0", - "vite": "~3.2.4", - "vite-node": "^0.25.2", - "vite-plugin-checker": "^0.5.1", - "vue-bundle-renderer": "^1.0.0" - }, - "dependencies": { - "escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" - } + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" } }, - "@nuxtjs/eslint-config": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/@nuxtjs/eslint-config/-/eslint-config-12.0.0.tgz", - "integrity": "sha512-ewenelo75x0eYEUK+9EBXjc/OopQCvdkmYmlZuoHq5kub/vtiRpyZ/autppwokpHUq8tiVyl2ejMakoiHiDTrg==", + "node_modules/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": { - "eslint-config-standard": "^17.0.0", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-n": "^15.5.1", - "eslint-plugin-node": "^11.1.0", - "eslint-plugin-promise": "^6.1.1", - "eslint-plugin-unicorn": "^44.0.2", - "eslint-plugin-vue": "^9.7.0", - "local-pkg": "^0.4.2" + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" } }, - "@nuxtjs/eslint-config-typescript": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/@nuxtjs/eslint-config-typescript/-/eslint-config-typescript-12.0.0.tgz", - "integrity": "sha512-HJR0ho5MYuOCFjkL+eMX/VXbUwy36J12DUMVy+dj3Qz1GYHwX92Saxap3urFzr8oPkzzFiuOknDivfCeRBWakg==", + "node_modules/normalize-package-data/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, - "requires": { - "@nuxtjs/eslint-config": "^12.0.0", - "@typescript-eslint/eslint-plugin": "^5.42.1", - "@typescript-eslint/parser": "^5.42.1", - "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-vue": "^9.7.0" + "bin": { + "semver": "bin/semver" } }, - "@pkgr/utils": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.3.1.tgz", - "integrity": "sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw==", - "dev": true, - "requires": { - "cross-spawn": "^7.0.3", - "is-glob": "^4.0.3", - "open": "^8.4.0", - "picocolors": "^1.0.0", - "tiny-glob": "^0.2.9", - "tslib": "^2.4.0" + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" } }, - "@rollup/plugin-alias": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-4.0.2.tgz", - "integrity": "sha512-1hv7dBOZZwo3SEupxn4UA2N0EDThqSSS+wI1St1TNTBtOZvUchyIClyHcnDcjjrReTPZ47Faedrhblv4n+T5UQ==", - "requires": { - "slash": "^4.0.0" + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" } }, - "@rollup/plugin-commonjs": { - "version": "23.0.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-23.0.2.tgz", - "integrity": "sha512-e9ThuiRf93YlVxc4qNIurvv+Hp9dnD+4PjOqQs5vAYfcZ3+AXSrcdzXnVjWxcGQOa6KGJFcRZyUI3ktWLavFjg==", - "requires": { - "@rollup/pluginutils": "^5.0.1", - "commondir": "^1.0.1", - "estree-walker": "^2.0.2", - "glob": "^8.0.3", - "is-reference": "1.2.1", - "magic-string": "^0.26.4" - }, - "dependencies": { - "@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - } - }, - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - } + "node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@rollup/plugin-inject": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-5.0.2.tgz", - "integrity": "sha512-zRthPC/sZ2OaQwPh2LvFn0A+3SyMAZR1Vqsp89mWkIuGXKswT8ty1JWj1pf7xdZvft4gHZaCuhdopuiCwjclWg==", - "requires": { - "@rollup/pluginutils": "^5.0.1", - "estree-walker": "^2.0.2", - "magic-string": "^0.26.4" - }, - "dependencies": { - "@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - } - }, - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - } + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@rollup/plugin-json": { + "node_modules/npmlog": { "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-5.0.1.tgz", - "integrity": "sha512-QCwhZZLvM8nRcTHyR1vOgyTMiAnjiNj1ebD/BMRvbO1oc/z14lZH6PfxXeegee2B6mky/u9fia4fxRM4TqrUaw==", - "requires": { - "@rollup/pluginutils": "^5.0.1" - }, - "dependencies": { - "@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - } - }, - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - } - } + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + "deprecated": "This package is no longer supported.", + "dependencies": { + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" + } }, - "@rollup/plugin-node-resolve": { - "version": "15.0.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.0.1.tgz", - "integrity": "sha512-ReY88T7JhJjeRVbfCyNj+NXAG3IIsVMsX9b5/9jC98dRP8/yxlZdz7mHZbHk5zHr24wZZICS5AcXsFZAXYUQEg==", - "requires": { - "@rollup/pluginutils": "^5.0.1", - "@types/resolve": "1.20.2", - "deepmerge": "^4.2.2", - "is-builtin-module": "^3.2.0", - "is-module": "^1.0.0", - "resolve": "^1.22.1" - }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dependencies": { - "@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - } - }, - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - } + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "@rollup/plugin-replace": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-5.0.1.tgz", - "integrity": "sha512-Z3MfsJ4CK17BfGrZgvrcp/l6WXoKb0kokULO+zt/7bmcyayokDaQ2K3eDJcRLCTAlp5FPI4/gz9MHAsosz4Rag==", - "requires": { - "@rollup/pluginutils": "^5.0.1", - "magic-string": "^0.26.4" - }, - "dependencies": { - "@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - } + "node_modules/nuxi": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/nuxi/-/nuxi-3.13.0.tgz", + "integrity": "sha512-15cnHePX+A0Vwwpgj/X+BQGcGulJQr6ddzfMXpvevpEsuAr/hHe5HioHVqYwqMSqiQLVtZLhPxeVOrg8eJn09Q==", + "bin": { + "nuxi": "bin/nuxi.mjs", + "nuxi-ng": "bin/nuxi.mjs", + "nuxt": "bin/nuxi.mjs", + "nuxt-cli": "bin/nuxi.mjs" + }, + "engines": { + "node": "^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, + "node_modules/nuxt": { + "version": "3.11.2", + "resolved": "https://registry.npmjs.org/nuxt/-/nuxt-3.11.2.tgz", + "integrity": "sha512-Be1d4oyFo60pdF+diBolYDcfNemoMYM3R8PDjhnGrs/w3xJoDH1YMUVWHXXY8WhSmYZI7dyBehx/6kTfGFliVA==", + "dependencies": { + "@nuxt/devalue": "^2.0.2", + "@nuxt/devtools": "^1.1.5", + "@nuxt/kit": "3.11.2", + "@nuxt/schema": "3.11.2", + "@nuxt/telemetry": "^2.5.3", + "@nuxt/ui-templates": "^1.3.2", + "@nuxt/vite-builder": "3.11.2", + "@unhead/dom": "^1.9.4", + "@unhead/ssr": "^1.9.4", + "@unhead/vue": "^1.9.4", + "@vue/shared": "^3.4.21", + "acorn": "8.11.3", + "c12": "^1.10.0", + "chokidar": "^3.6.0", + "cookie-es": "^1.1.0", + "defu": "^6.1.4", + "destr": "^2.0.3", + "devalue": "^4.3.2", + "esbuild": "^0.20.2", + "escape-string-regexp": "^5.0.0", + "estree-walker": "^3.0.3", + "fs-extra": "^11.2.0", + "globby": "^14.0.1", + "h3": "^1.11.1", + "hookable": "^5.5.3", + "jiti": "^1.21.0", + "klona": "^2.0.6", + "knitwork": "^1.1.0", + "magic-string": "^0.30.9", + "mlly": "^1.6.1", + "nitropack": "^2.9.6", + "nuxi": "^3.11.1", + "nypm": "^0.3.8", + "ofetch": "^1.3.4", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.0.3", + "radix3": "^1.1.2", + "scule": "^1.3.0", + "std-env": "^3.7.0", + "strip-literal": "^2.1.0", + "ufo": "^1.5.3", + "ultrahtml": "^1.5.3", + "uncrypto": "^0.1.3", + "unctx": "^2.3.1", + "unenv": "^1.9.0", + "unimport": "^3.7.1", + "unplugin": "^1.10.1", + "unplugin-vue-router": "^0.7.0", + "unstorage": "^1.10.2", + "untyped": "^1.4.2", + "vue": "^3.4.21", + "vue-bundle-renderer": "^2.0.0", + "vue-devtools-stub": "^0.1.0", + "vue-router": "^4.3.0" + }, + "bin": { + "nuxi": "bin/nuxt.mjs", + "nuxt": "bin/nuxt.mjs" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + }, + "peerDependencies": { + "@parcel/watcher": "^2.1.0", + "@types/node": "^14.18.0 || >=16.10.0" + }, + "peerDependenciesMeta": { + "@parcel/watcher": { + "optional": true }, - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + "@types/node": { + "optional": true } } }, - "@rollup/plugin-wasm": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/@rollup/plugin-wasm/-/plugin-wasm-6.0.1.tgz", - "integrity": "sha512-a5yRknFQG/QGhb1xGkazWXgjpsv0hhWlx34irsf5adMEo55NdpzhZLg+jx49u+bzH6ekktuFg2WKA1RAF+WEDQ==", - "requires": {} + "node_modules/nuxt-csurf": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/nuxt-csurf/-/nuxt-csurf-1.6.2.tgz", + "integrity": "sha512-GksV+0DrnEYzQGAPb/BzLgulITqQNi3p5LUOW+zIf2GqdshW7MKoS/EBeVLDBfeT0P0a0OvewzaEGt1/OGVtAQ==", + "dependencies": { + "@nuxt/kit": "^3.12.4", + "defu": "^6.1.4", + "uncsrf": "^1.1.1" + } }, - "@rollup/pluginutils": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", - "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", + "node_modules/nuxt-icon": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/nuxt-icon/-/nuxt-icon-0.1.8.tgz", + "integrity": "sha512-oPFlLOZCy80MN+hf49+mBkOIHWVF3sOqZREQZw3qD0N6wGlR15QeRQtKQC8qGeQcc+xvpLQm0GvrdJ8FxFOPYg==", "dev": true, - "requires": { - "estree-walker": "^2.0.1", - "picomatch": "^2.2.2" - }, "dependencies": { - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true - } + "@iconify/vue": "^4.0.1", + "@nuxt/kit": "^3.0.0" } }, - "@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" - }, - "@types/estree": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.0.tgz", - "integrity": "sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==" - }, - "@types/json-schema": { - "version": "7.0.11", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz", - "integrity": "sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==", - "dev": true - }, - "@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true - }, - "@types/node": { - "version": "18.11.9", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.11.9.tgz", - "integrity": "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg==" - }, - "@types/normalize-package-data": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", - "dev": true - }, - "@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", - "dev": true - }, - "@types/resolve": { - "version": "1.20.2", - "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", - "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==" - }, - "@types/semver": { - "version": "7.3.13", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.3.13.tgz", - "integrity": "sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==", - "dev": true - }, - "@types/web-bluetooth": { - "version": "0.0.16", - "resolved": "https://registry.npmjs.org/@types/web-bluetooth/-/web-bluetooth-0.0.16.tgz", - "integrity": "sha512-oh8q2Zc32S6gd/j50GowEjKLoOVOwHP/bWVjKJInBwQqdOYMdPrf1oVlelTlyfFK3CKxL1uahMDAr+vy8T7yMQ==" - }, - "@typescript-eslint/eslint-plugin": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.46.1.tgz", - "integrity": "sha512-YpzNv3aayRBwjs4J3oz65eVLXc9xx0PDbIRisHj+dYhvBn02MjYOD96P8YGiWEIFBrojaUjxvkaUpakD82phsA==", - "dev": true, - "requires": { - "@typescript-eslint/scope-manager": "5.46.1", - "@typescript-eslint/type-utils": "5.46.1", - "@typescript-eslint/utils": "5.46.1", - "debug": "^4.3.4", - "ignore": "^5.2.0", - "natural-compare-lite": "^1.4.0", - "regexpp": "^3.2.0", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, + "node_modules/nuxt-security": { + "version": "0.14.4", + "resolved": "https://registry.npmjs.org/nuxt-security/-/nuxt-security-0.14.4.tgz", + "integrity": "sha512-y1+KrWPGyfiH9OB72m0wAxHDxtFEF14c/U6g5K8YFr07ierjJqKCWm9qIyVdjWqGSLNiY0qMSuUHtbh11ICYJg==", "dependencies": { - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "@nuxt/kit": "^3.2.2", + "basic-auth": "^2.0.1", + "defu": "^6.1.1", + "limiter": "^2.1.0", + "memory-cache": "^0.2.0", + "nuxt-csurf": "^1.1.0", + "pathe": "^1.0.0", + "xss": "^1.0.14" } }, - "@typescript-eslint/parser": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.46.1.tgz", - "integrity": "sha512-RelQ5cGypPh4ySAtfIMBzBGyrNerQcmfA1oJvPj5f+H4jI59rl9xxpn4bonC0tQvUKOEN7eGBFWxFLK3Xepneg==", + "node_modules/nuxt-simple-sitemap": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/nuxt-simple-sitemap/-/nuxt-simple-sitemap-3.4.1.tgz", + "integrity": "sha512-1F7OeXQ1rnwWgHgHDeDejlslgyNMHRq1JWzFjRaE6O2QN3R6Rh5RcLzqfynQQ0HFtvv0eJ54E9+MCbvGYVFBuA==", + "deprecated": "Package has been migrated to @nuxtjs/sitemap.", "dev": true, - "requires": { - "@typescript-eslint/scope-manager": "5.46.1", - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/typescript-estree": "5.46.1", - "debug": "^4.3.4" + "dependencies": { + "@nuxt/devtools-kit": "^1.0.0", + "@nuxt/kit": "^3.8.0", + "chalk": "^5.3.0", + "defu": "^6.1.3", + "escape-string-regexp": "^5.0.0", + "fast-glob": "^3.3.1", + "knitwork": "^1.0.0", + "nuxt-site-config": "^1.5.4", + "nuxt-site-config-kit": "^1.5.4", + "pathe": "^1.1.1", + "radix3": "^1.1.0", + "semver": "^7.5.4", + "site-config-stack": "^1.5.4", + "ufo": "^1.3.1" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "@typescript-eslint/scope-manager": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.46.1.tgz", - "integrity": "sha512-iOChVivo4jpwUdrJZyXSMrEIM/PvsbbDOX1y3UCKjSgWn+W89skxWaYXACQfxmIGhPVpRWK/VWPYc+bad6smIA==", + "node_modules/nuxt-simple-sitemap/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", "dev": true, - "requires": { - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/visitor-keys": "5.46.1" + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "@typescript-eslint/type-utils": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.46.1.tgz", - "integrity": "sha512-V/zMyfI+jDmL1ADxfDxjZ0EMbtiVqj8LUGPAGyBkXXStWmCUErMpW873zEHsyguWCuq2iN4BrlWUkmuVj84yng==", + "node_modules/nuxt-simple-sitemap/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, - "requires": { - "@typescript-eslint/typescript-estree": "5.46.1", - "@typescript-eslint/utils": "5.46.1", - "debug": "^4.3.4", - "tsutils": "^3.21.0" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "@typescript-eslint/types": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.46.1.tgz", - "integrity": "sha512-Z5pvlCaZgU+93ryiYUwGwLl9AQVB/PQ1TsJ9NZ/gHzZjN7g9IAn6RSDkpCV8hqTwAiaj6fmCcKSQeBPlIpW28w==", - "dev": true - }, - "@typescript-eslint/typescript-estree": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.46.1.tgz", - "integrity": "sha512-j9W4t67QiNp90kh5Nbr1w92wzt+toiIsaVPnEblB2Ih2U9fqBTyqV9T3pYWZBRt6QoMh/zVWP59EpuCjc4VRBg==", + "node_modules/nuxt-simple-sitemap/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, - "requires": { - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/visitor-keys": "5.46.1", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "dependencies": { - "globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dev": true, - "requires": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - } - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "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 - } + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "@typescript-eslint/utils": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.46.1.tgz", - "integrity": "sha512-RBdBAGv3oEpFojaCYT4Ghn4775pdjvwfDOfQ2P6qzNVgQOVrnSPe5/Pb88kv7xzYQjoio0eKHKB9GJ16ieSxvA==", + "node_modules/nuxt-site-config": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/nuxt-site-config/-/nuxt-site-config-1.6.7.tgz", + "integrity": "sha512-X9HPq0ldfFf9vatXcOLt1Fl9xPydhC+fZw5KVxACcOyNK92KwJgvzrHAooURdoQhohaVgPbK+xnfVP8S6GCkQA==", "dev": true, - "requires": { - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.46.1", - "@typescript-eslint/types": "5.46.1", - "@typescript-eslint/typescript-estree": "5.46.1", - "eslint-scope": "^5.1.1", - "eslint-utils": "^3.0.0", - "semver": "^7.3.7" - }, "dependencies": { - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "@nuxt/devtools-kit": "^1.0.5", + "@nuxt/devtools-ui-kit": "^1.0.5", + "@nuxt/kit": "^3.8.2", + "@nuxt/schema": "^3.8.2", + "nuxt-site-config-kit": "1.6.7", + "pathe": "^1.1.1", + "shiki-es": "^0.14.0", + "sirv": "^2.0.3", + "site-config-stack": "1.6.7", + "ufo": "^1.3.2" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "@typescript-eslint/visitor-keys": { - "version": "5.46.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.46.1.tgz", - "integrity": "sha512-jczZ9noovXwy59KjRTk1OftT78pwygdcmCuBf8yMoWt/8O8l+6x2LSEze0E4TeepXK4MezW3zGSyoDRZK7Y9cg==", + "node_modules/nuxt-site-config-kit": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/nuxt-site-config-kit/-/nuxt-site-config-kit-1.6.7.tgz", + "integrity": "sha512-dq7W5ra1KRRi8gW/v8j3e7rNCN8jEZHXnGZ9Ao4r7JZvyHpJyntQYcftcI2N7VViT+6xWdIE7ge4oma7+gvjVQ==", "dev": true, - "requires": { - "@typescript-eslint/types": "5.46.1", - "eslint-visitor-keys": "^3.3.0" - }, "dependencies": { - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true - } + "@nuxt/kit": "^3.8.2", + "@nuxt/schema": "^3.8.2", + "pkg-types": "^1.0.3", + "site-config-stack": "1.6.7", + "std-env": "^3.6.0", + "ufo": "^1.3.2" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "@unhead/dom": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@unhead/dom/-/dom-1.0.4.tgz", - "integrity": "sha512-Mzkevk50k5xQo6mIcNcKGKJ4R7tYyCg8ZN5NfmiUXIfvjaM4zWEZK8DhZNbQ8/548oO6Eq2Y73+53W8rLsSaoQ==", - "requires": { - "@unhead/schema": "1.0.4" + "node_modules/nuxt/node_modules/@esbuild/aix-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", + "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" } }, - "@unhead/schema": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@unhead/schema/-/schema-1.0.4.tgz", - "integrity": "sha512-bCkwV+GkAQN5yByelaeASmLVgdXypMC1O3xChW8oAC7ySz/ZqV9nXPt1Gx6jrNX4wL7Vbv3eCQ8jtB3QFH92ag==", - "requires": { - "@zhead/schema": "^1.0.4", - "hookable": "^5.4.2" + "node_modules/nuxt/node_modules/@esbuild/android-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", + "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" } }, - "@unhead/ssr": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@unhead/ssr/-/ssr-1.0.4.tgz", - "integrity": "sha512-/uyJLBGM3OfemBHt9hWvQOMpbWaMjJCns2WmYcuiOE6EFNy68SjSzHbm0rYkarhZWYZqxy0Sq6zuzVsM0Gi15Q==", - "requires": { - "@unhead/schema": "1.0.4" + "node_modules/nuxt/node_modules/@esbuild/android-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", + "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" } }, - "@unhead/vue": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@unhead/vue/-/vue-1.0.4.tgz", - "integrity": "sha512-dW4FY4SRNaoGcFXuk6dU2Fp7fFHluBZqdOxpekMKO3q4zn+sOcnqHdzDmSnXPgoqr4huumnG8zNjVsuyRQ0+Mg==", - "requires": { - "@unhead/schema": "1.0.4", - "hookable": "^5.4.2" - } - }, - "@vercel/nft": { - "version": "0.22.1", - "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.22.1.tgz", - "integrity": "sha512-lYYZIoxRurqDOSoVIdBicGnpUIpfyaS5qVjdPq+EfI285WqtZK3NK/dyCkiyBul+X2U2OEhRyeMdXPCHGJbohw==", - "requires": { - "@mapbox/node-pre-gyp": "^1.0.5", - "acorn": "^8.6.0", - "async-sema": "^3.1.1", - "bindings": "^1.4.0", - "estree-walker": "2.0.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.2", - "node-gyp-build": "^4.2.2", - "resolve-from": "^5.0.0", - "rollup-pluginutils": "^2.8.2" - }, - "dependencies": { - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^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==" - } + "node_modules/nuxt/node_modules/@esbuild/android-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", + "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" } }, - "@vitejs/plugin-vue": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-3.2.0.tgz", - "integrity": "sha512-E0tnaL4fr+qkdCNxJ+Xd0yM31UwMkQje76fsDVBBUCoGOUPexu2VDUYHL8P4CwV+zMvWw6nlRw19OnRKmYAJpw==", - "requires": {} - }, - "@vitejs/plugin-vue-jsx": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-2.1.1.tgz", - "integrity": "sha512-JgDhxstQlwnHBvZ1BSnU5mbmyQ14/t5JhREc6YH5kWyu2QdAAOsLF6xgHoIWarj8tddaiwFrNzLbWJPudpXKYA==", - "requires": { - "@babel/core": "^7.19.6", - "@babel/plugin-transform-typescript": "^7.20.0", - "@vue/babel-plugin-jsx": "^1.1.1" + "node_modules/nuxt/node_modules/@esbuild/darwin-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" } }, - "@volar/language-core": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.0.13.tgz", - "integrity": "sha512-aJhRiNjKFgLLB3nRJOfAeyle4StnEQgOKa0UpJU+k5EZd3QdiMfQmekXjxYeQj7NOZNQU7zCBEIvQ3gy15I7tA==", - "dev": true, - "requires": { - "@volar/source-map": "1.0.13", - "@vue/reactivity": "^3.2.45", - "muggle-string": "^0.1.0" + "node_modules/nuxt/node_modules/@esbuild/darwin-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", + "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" } }, - "@volar/source-map": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.0.13.tgz", - "integrity": "sha512-dU0plR9BS+bLs7u4chWay+VEIFTrLF15rG2634lGcu7o+z01bRO1U2cegZuIPy46SNkN3ONErLHwS09NBM+Ucg==", - "dev": true, - "requires": { - "muggle-string": "^0.1.0" + "node_modules/nuxt/node_modules/@esbuild/freebsd-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", + "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" } }, - "@volar/typescript": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.0.13.tgz", - "integrity": "sha512-CfJ4higRZrLDAHVGY84gZ444ZUcA3ktPqVMW0fM3mgHDbzYViB3/tsvXOtZk76D3HK2ap6n4cDwBSv3cY4xqlg==", - "dev": true, - "requires": { - "@volar/language-core": "1.0.13" + "node_modules/nuxt/node_modules/@esbuild/freebsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", + "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" } }, - "@volar/vue-language-core": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@volar/vue-language-core/-/vue-language-core-1.0.13.tgz", - "integrity": "sha512-DRUg7yk4w2+5XFk8LS1dbXEM0na2uAddOj3KWHROPQmn78pfgXEH3r0NGDCnxElWJX5Y16iameisOjtOhevxog==", - "dev": true, - "requires": { - "@volar/language-core": "1.0.13", - "@volar/source-map": "1.0.13", - "@vue/compiler-dom": "^3.2.45", - "@vue/compiler-sfc": "^3.2.45", - "@vue/reactivity": "^3.2.45", - "@vue/shared": "^3.2.45", - "minimatch": "^5.1.0", - "vue-template-compiler": "^2.7.14" - }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.1.tgz", - "integrity": "sha512-362NP+zlprccbEt/SkxKfRMHnNY85V74mVnpUpNyr3F35covl09Kec7/sEFLt3RA4oXmewtoaanoIf67SE5Y5g==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - } + "node_modules/nuxt/node_modules/@esbuild/linux-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", + "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@volar/vue-typescript": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/@volar/vue-typescript/-/vue-typescript-1.0.13.tgz", - "integrity": "sha512-iEdkF5l6G10fv/G5hs7WcvtT48AT6y/Pm7pvafnB6SxPhm2uHQ+130x3zeWLMaUel5t6h5LBw2pFsF5Bh85QAQ==", - "dev": true, - "requires": { - "@volar/typescript": "1.0.13", - "@volar/vue-language-core": "1.0.13" + "node_modules/nuxt/node_modules/@esbuild/linux-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", + "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@vue/babel-helper-vue-transform-on": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.0.2.tgz", - "integrity": "sha512-hz4R8tS5jMn8lDq6iD+yWL6XNB699pGIVLk7WSJnn1dbpjaazsjZQkieJoRX6gW5zpYSCFqQ7jUquPNY65tQYA==" + "node_modules/nuxt/node_modules/@esbuild/linux-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", + "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "@vue/babel-plugin-jsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.1.tgz", - "integrity": "sha512-j2uVfZjnB5+zkcbc/zsOc0fSNGCMMjaEXP52wdwdIfn0qjFfEYpYZBFKFg+HHnQeJCVrjOeO0YxgaL7DMrym9w==", - "requires": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.0.0", - "@babel/template": "^7.0.0", - "@babel/traverse": "^7.0.0", - "@babel/types": "^7.0.0", - "@vue/babel-helper-vue-transform-on": "^1.0.2", - "camelcase": "^6.0.0", - "html-tags": "^3.1.0", - "svg-tags": "^1.0.0" + "node_modules/nuxt/node_modules/@esbuild/linux-loong64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", + "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", + "cpu": [ + "loong64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@vue/compiler-core": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.2.45.tgz", - "integrity": "sha512-rcMj7H+PYe5wBV3iYeUgbCglC+pbpN8hBLTJvRiK2eKQiWqu+fG9F+8sW99JdL4LQi7Re178UOxn09puSXvn4A==", - "requires": { - "@babel/parser": "^7.16.4", - "@vue/shared": "3.2.45", - "estree-walker": "^2.0.2", - "source-map": "^0.6.1" - }, - "dependencies": { - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - } + "node_modules/nuxt/node_modules/@esbuild/linux-mips64el": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", + "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", + "cpu": [ + "mips64el" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@vue/compiler-dom": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.2.45.tgz", - "integrity": "sha512-tyYeUEuKqqZO137WrZkpwfPCdiiIeXYCcJ8L4gWz9vqaxzIQRccTSwSWZ/Axx5YR2z+LvpUbmPNXxuBU45lyRw==", - "requires": { - "@vue/compiler-core": "3.2.45", - "@vue/shared": "3.2.45" - } - }, - "@vue/compiler-sfc": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.2.45.tgz", - "integrity": "sha512-1jXDuWah1ggsnSAOGsec8cFjT/K6TMZ0sPL3o3d84Ft2AYZi2jWJgRMjw4iaK0rBfA89L5gw427H4n1RZQBu6Q==", - "requires": { - "@babel/parser": "^7.16.4", - "@vue/compiler-core": "3.2.45", - "@vue/compiler-dom": "3.2.45", - "@vue/compiler-ssr": "3.2.45", - "@vue/reactivity-transform": "3.2.45", - "@vue/shared": "3.2.45", - "estree-walker": "^2.0.2", - "magic-string": "^0.25.7", - "postcss": "^8.1.10", - "source-map": "^0.6.1" - }, - "dependencies": { - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "magic-string": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", - "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", - "requires": { - "sourcemap-codec": "^1.4.8" - } - } + "node_modules/nuxt/node_modules/@esbuild/linux-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", + "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@vue/compiler-ssr": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.2.45.tgz", - "integrity": "sha512-6BRaggEGqhWht3lt24CrIbQSRD5O07MTmd+LjAn5fJj568+R9eUD2F7wMQJjX859seSlrYog7sUtrZSd7feqrQ==", - "requires": { - "@vue/compiler-dom": "3.2.45", - "@vue/shared": "3.2.45" - } - }, - "@vue/devtools-api": { - "version": "6.4.5", - "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.4.5.tgz", - "integrity": "sha512-JD5fcdIuFxU4fQyXUu3w2KpAJHzTVdN+p4iOX2lMWSHMOoQdMAcpFLZzm9Z/2nmsoZ1a96QEhZ26e50xLBsgOQ==" - }, - "@vue/reactivity": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.2.45.tgz", - "integrity": "sha512-PRvhCcQcyEVohW0P8iQ7HDcIOXRjZfAsOds3N99X/Dzewy8TVhTCT4uXpAHfoKjVTJRA0O0K+6QNkDIZAxNi3A==", - "requires": { - "@vue/shared": "3.2.45" - } - }, - "@vue/reactivity-transform": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.2.45.tgz", - "integrity": "sha512-BHVmzYAvM7vcU5WmuYqXpwaBHjsS8T63jlKGWVtHxAHIoMIlmaMyurUSEs1Zcg46M4AYT5MtB1U274/2aNzjJQ==", - "requires": { - "@babel/parser": "^7.16.4", - "@vue/compiler-core": "3.2.45", - "@vue/shared": "3.2.45", - "estree-walker": "^2.0.2", - "magic-string": "^0.25.7" - }, - "dependencies": { - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "magic-string": { - "version": "0.25.9", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.9.tgz", - "integrity": "sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==", - "requires": { - "sourcemap-codec": "^1.4.8" - } - } + "node_modules/nuxt/node_modules/@esbuild/linux-riscv64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", + "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", + "cpu": [ + "riscv64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@vue/runtime-core": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.2.45.tgz", - "integrity": "sha512-gzJiTA3f74cgARptqzYswmoQx0fIA+gGYBfokYVhF8YSXjWTUA2SngRzZRku2HbGbjzB6LBYSbKGIaK8IW+s0A==", - "requires": { - "@vue/reactivity": "3.2.45", - "@vue/shared": "3.2.45" - } - }, - "@vue/runtime-dom": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.2.45.tgz", - "integrity": "sha512-cy88YpfP5Ue2bDBbj75Cb4bIEZUMM/mAkDMfqDTpUYVgTf/kuQ2VQ8LebuZ8k6EudgH8pYhsGWHlY0lcxlvTwA==", - "requires": { - "@vue/runtime-core": "3.2.45", - "@vue/shared": "3.2.45", - "csstype": "^2.6.8" - } - }, - "@vue/server-renderer": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.2.45.tgz", - "integrity": "sha512-ebiMq7q24WBU1D6uhPK//2OTR1iRIyxjF5iVq/1a5I1SDMDyDu4Ts6fJaMnjrvD3MqnaiFkKQj+LKAgz5WIK3g==", - "requires": { - "@vue/compiler-ssr": "3.2.45", - "@vue/shared": "3.2.45" - } - }, - "@vue/shared": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.2.45.tgz", - "integrity": "sha512-Ewzq5Yhimg7pSztDV+RH1UDKBzmtqieXQlpTVm2AwraoRL/Rks96mvd8Vgi7Lj+h+TH8dv7mXD3FRZR3TUvbSg==" - }, - "@vuetify/loader-shared": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/@vuetify/loader-shared/-/loader-shared-1.7.0.tgz", - "integrity": "sha512-Db4K67wMhduDsbvdRBYkrYuomti+j0E/1vlz1lnDng5F9LYYBcXa60qypIazVGI6GX/CuY1vshN6XGtGQI4FKg==", - "requires": { - "find-cache-dir": "^3.3.2", - "upath": "^2.0.1" + "node_modules/nuxt/node_modules/@esbuild/linux-s390x": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", + "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@vueuse/core": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/@vueuse/core/-/core-9.6.0.tgz", - "integrity": "sha512-qGUcjKQXHgN+jqXEgpeZGoxdCbIDCdVPz3QiF1uyecVGbMuM63o96I1GjYx5zskKgRI0FKSNsVWM7rwrRMTf6A==", - "requires": { - "@types/web-bluetooth": "^0.0.16", - "@vueuse/metadata": "9.6.0", - "@vueuse/shared": "9.6.0", - "vue-demi": "*" - }, - "dependencies": { - "vue-demi": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz", - "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==", - "requires": {} - } + "node_modules/nuxt/node_modules/@esbuild/linux-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", + "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "@vueuse/head": { - "version": "1.0.18", - "resolved": "https://registry.npmjs.org/@vueuse/head/-/head-1.0.18.tgz", - "integrity": "sha512-V3EuLoZFrMgvCQYSE0pJupYglZ0ID3rr/8ATIgnZNn+fjRrIEn8oAwAe8FRFAUKgBb0rZt+QY94PaDF6/HOLOQ==", - "requires": { - "@unhead/dom": "^1.0.4", - "@unhead/schema": "^1.0.4", - "@unhead/ssr": "^1.0.4", - "@unhead/vue": "^1.0.4" - } - }, - "@vueuse/metadata": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/@vueuse/metadata/-/metadata-9.6.0.tgz", - "integrity": "sha512-sIC8R+kWkIdpi5X2z2Gk8TRYzmczDwHRhEFfCu2P+XW2JdPoXrziqsGpDDsN7ykBx4ilwieS7JUIweVGhvZ93w==" - }, - "@vueuse/nuxt": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/@vueuse/nuxt/-/nuxt-9.6.0.tgz", - "integrity": "sha512-r+ngzHijvrfn89KnwlFCSe/xzFCiuskwmxbDdzFtpcZ57RHqLPdUS34YYrDxt7XasM0vlD3dmLIKEH//btf7sw==", - "requires": { - "@nuxt/kit": "^3.0.0-rc.13", - "@vueuse/core": "9.6.0", - "@vueuse/metadata": "9.6.0", - "local-pkg": "^0.4.2", - "vue-demi": "*" - }, - "dependencies": { - "vue-demi": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz", - "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==", - "requires": {} - } + "node_modules/nuxt/node_modules/@esbuild/netbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", + "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" } }, - "@vueuse/shared": { - "version": "9.6.0", - "resolved": "https://registry.npmjs.org/@vueuse/shared/-/shared-9.6.0.tgz", - "integrity": "sha512-/eDchxYYhkHnFyrb00t90UfjCx94kRHxc7J1GtBCqCG4HyPMX+krV9XJgVtWIsAMaxKVU4fC8NSUviG1JkwhUQ==", - "requires": { - "vue-demi": "*" - }, - "dependencies": { - "vue-demi": { - "version": "0.13.11", - "resolved": "https://registry.npmjs.org/vue-demi/-/vue-demi-0.13.11.tgz", - "integrity": "sha512-IR8HoEEGM65YY3ZJYAjMlKygDQn25D5ajNFNoKh9RSDMQtlzCxtfQjdQgv9jjK+m3377SsJXY8ysq8kLCZL25A==", - "requires": {} - } + "node_modules/nuxt/node_modules/@esbuild/openbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", + "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" } }, - "@zhead/schema": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@zhead/schema/-/schema-1.0.4.tgz", - "integrity": "sha512-v/CM22nH0TW9VU5IcRXlshwrMtsZPnFQWhcLBvpZjOJvfEmjl8cUb6OIJQJRR2WESNjjPW2Cji8mgL9XSVLjxA==" + "node_modules/nuxt/node_modules/@esbuild/sunos-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", + "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" + "node_modules/nuxt/node_modules/@esbuild/win32-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", + "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } }, - "acorn": { - "version": "8.8.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz", - "integrity": "sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==" + "node_modules/nuxt/node_modules/@esbuild/win32-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", + "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } }, - "acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "devOptional": true, - "requires": {} + "node_modules/nuxt/node_modules/@esbuild/win32-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", + "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } }, - "agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", - "requires": { - "debug": "4" + "node_modules/nuxt/node_modules/@nuxt/kit": { + "version": "3.11.2", + "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.11.2.tgz", + "integrity": "sha512-yiYKP0ZWMW7T3TCmsv4H8+jEsB/nFriRAR8bKoSqSV9bkVYWPE36sf7JDux30dQ91jSlQG6LQkB3vCHYTS2cIg==", + "dependencies": { + "@nuxt/schema": "3.11.2", + "c12": "^1.10.0", + "consola": "^3.2.3", + "defu": "^6.1.4", + "globby": "^14.0.1", + "hash-sum": "^2.0.0", + "ignore": "^5.3.1", + "jiti": "^1.21.0", + "knitwork": "^1.1.0", + "mlly": "^1.6.1", + "pathe": "^1.1.2", + "pkg-types": "^1.0.3", + "scule": "^1.3.0", + "semver": "^7.6.0", + "ufo": "^1.5.3", + "unctx": "^2.3.1", + "unimport": "^3.7.1", + "untyped": "^1.4.2" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/nuxt/node_modules/@nuxt/schema": { + "version": "3.11.2", + "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.11.2.tgz", + "integrity": "sha512-Z0bx7N08itD5edtpkstImLctWMNvxTArsKXzS35ZuqyAyKBPcRjO1CU01slH0ahO30Gg9kbck3/RKNZPwfOjJg==", + "dependencies": { + "@nuxt/ui-templates": "^1.3.2", + "consola": "^3.2.3", + "defu": "^6.1.4", + "hookable": "^5.5.3", + "pathe": "^1.1.2", + "pkg-types": "^1.0.3", + "scule": "^1.3.0", + "std-env": "^3.7.0", + "ufo": "^1.5.3", + "unimport": "^3.7.1", + "untyped": "^1.4.2" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/nuxt/node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" } }, - "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "devOptional": 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" + "node_modules/nuxt/node_modules/esbuild": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" } }, - "ansi-escapes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-6.0.0.tgz", - "integrity": "sha512-IG23inYII3dWlU2EyiAiGj6Bwal5GzsgPMwjYGvc1HPE2dgbj4ZB5ToWBKSquKw74nB3TIuOwaI6/jSULzfgrw==", - "requires": { - "type-fest": "^3.0.0" + "node_modules/nuxt/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" + "node_modules/nuxt/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dependencies": { + "@types/estree": "^1.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==", - "requires": { - "color-convert": "^1.9.0" + "node_modules/nuxt/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "requires": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" + "node_modules/nypm": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.3.11.tgz", + "integrity": "sha512-E5GqaAYSnbb6n1qZyik2wjPDZON43FqOJO59+3OkWrnmQtjggrMOVnsyzfjxp/tS6nlYJBA4zRA5jSM2YaadMg==", + "dependencies": { + "citty": "^0.1.6", + "consola": "^3.2.3", + "execa": "^8.0.1", + "pathe": "^1.1.2", + "pkg-types": "^1.2.0", + "ufo": "^1.5.4" + }, + "bin": { + "nypm": "dist/cli.mjs" + }, + "engines": { + "node": "^14.16.0 || >=16.10.0" } }, - "aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" + "node_modules/nypm/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } }, - "arch": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" - }, - "archiver": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.1.tgz", - "integrity": "sha512-8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w==", - "requires": { - "archiver-utils": "^2.1.0", - "async": "^3.2.3", - "buffer-crc32": "^0.2.1", - "readable-stream": "^3.6.0", - "readdir-glob": "^1.0.0", - "tar-stream": "^2.2.0", - "zip-stream": "^4.1.0" - } - }, - "archiver-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz", - "integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==", - "requires": { - "glob": "^7.1.4", - "graceful-fs": "^4.2.0", - "lazystream": "^1.0.0", - "lodash.defaults": "^4.2.0", - "lodash.difference": "^4.5.0", - "lodash.flatten": "^4.4.0", - "lodash.isplainobject": "^4.0.6", - "lodash.union": "^4.6.0", - "normalize-path": "^3.0.0", - "readable-stream": "^2.0.0" - }, - "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "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" - } - }, - "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==" - }, - "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" - } - } + "node_modules/nypm/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" + "node_modules/nypm/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "engines": { + "node": ">=16.17.0" } }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "devOptional": true + "node_modules/nypm/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.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 + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "node_modules/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, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "engines": { + "node": ">= 0.4" } }, - "async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" - }, - "async-sema": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", - "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==" - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - }, - "autoprefixer": { - "version": "10.4.13", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", - "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", - "requires": { - "browserslist": "^4.21.4", - "caniuse-lite": "^1.0.30001426", - "fraction.js": "^4.2.0", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "axios": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.1.3.tgz", - "integrity": "sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==", - "requires": { - "follow-redirects": "^1.15.0", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" + "node_modules/object.fromentries": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz", + "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + "node_modules/object.groupby": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz", + "integrity": "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.2" + }, + "engines": { + "node": ">= 0.4" + } }, - "bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "requires": { - "file-uri-to-path": "1.0.0" + "node_modules/object.values": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.0.tgz", + "integrity": "sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "bl": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-5.1.0.tgz", - "integrity": "sha512-tv1ZJHLfTDnXE6tMHv73YgSJaWR2AFuPwMntBe7XL/GBFHnT0CLnsHMogfk5+GzCDC5ZWarSCYaIGATZt9dNsQ==", - "requires": { - "buffer": "^6.0.3", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "node_modules/ofetch": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.3.4.tgz", + "integrity": "sha512-KLIET85ik3vhEfS+3fDlc/BAZiAp+43QEC/yCo5zkNoY2YaKvNkOaFr/6wCFgFH1kuYQM5pMNi0Tg8koiIemtw==", + "dependencies": { + "destr": "^2.0.3", + "node-fetch-native": "^1.6.3", + "ufo": "^1.5.3" } }, - "boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + "node_modules/ohash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", + "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==" }, - "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" + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" } }, - "braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "requires": { - "fill-range": "^7.0.1" + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" } }, - "browserslist": { - "version": "4.21.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", - "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", - "requires": { - "caniuse-lite": "^1.0.30001400", - "electron-to-chromium": "^1.4.251", - "node-releases": "^2.0.6", - "update-browserslist-db": "^1.0.9" + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", + "dependencies": { + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" - }, - "buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - }, - "builtin-modules": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", - "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==" + "node_modules/open/node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "builtins": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", - "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", - "dev": true, - "requires": { - "semver": "^7.0.0" + "node_modules/open/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dependencies": { + "is-docker": "^2.0.0" }, + "engines": { + "node": ">=8" + } + }, + "node_modules/openapi-typescript": { + "version": "6.7.6", + "resolved": "https://registry.npmjs.org/openapi-typescript/-/openapi-typescript-6.7.6.tgz", + "integrity": "sha512-c/hfooPx+RBIOPM09GSxABOZhYPblDoyaGhqBkD/59vtpN21jEuWKDlM0KYTvqJVlSYjKs0tBcIdeXKChlSPtw==", "dependencies": { - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "ansi-colors": "^4.1.3", + "fast-glob": "^3.3.2", + "js-yaml": "^4.1.0", + "supports-color": "^9.4.0", + "undici": "^5.28.4", + "yargs-parser": "^21.1.1" + }, + "bin": { + "openapi-typescript": "bin/cli.js" } }, - "busboy": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", - "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", - "requires": { - "streamsearch": "^1.1.0" + "node_modules/openapi-typescript/node_modules/supports-color": { + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz", + "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "c12": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/c12/-/c12-1.0.1.tgz", - "integrity": "sha512-EN9Rqix2q9X3PseFkUvRFZ/0fvncF35ZR5nykLDwv4Ml/Q1WYPLkcdqlrczFll2G9t4qmxgM4my3EF3IrRGl5Q==", - "requires": { - "defu": "^6.1.1", - "dotenv": "^16.0.3", - "gittar": "^0.1.1", - "jiti": "^1.16.0", - "mlly": "^1.0.0", - "pathe": "^1.0.0", - "pkg-types": "^1.0.1", - "rc9": "^2.0.0" + "node_modules/openapi-typescript/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "engines": { + "node": ">=12" } }, - "call-bind": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", - "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", - "requires": { - "function-bind": "^1.1.1", - "get-intrinsic": "^1.0.2" + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "devOptional": true, + "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.5" + }, + "engines": { + "node": ">= 0.8.0" } }, - "callsites": { + "node_modules/p-limit": { "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "devOptional": true - }, - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" - }, - "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==", - "requires": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "caniuse-lite": { - "version": "1.0.30001434", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001434.tgz", - "integrity": "sha512-aOBHrLmTQw//WFa2rcF1If9fa3ypkC1wzqqiKHgfdrXTWcU8C4gKVZT77eQAPWN1APys3+uQ0Df07rKauXGEYA==" - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" - }, - "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "requires": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "fsevents": "~2.3.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "dependencies": { - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "requires": { - "is-glob": "^4.0.1" - } - } + "node_modules/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==", + "engines": { + "node": ">=6" } }, - "chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + "node_modules/package-json-from-dist": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", + "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==" }, - "ci-info": { - "version": "3.6.1", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.6.1.tgz", - "integrity": "sha512-up5ggbaDqOqJ4UqLKZ2naVkyqSJQgJi5lwD6b6mM748ysrghDBX0bx/qJTUHzw7zu6Mq4gycviSF5hJnwceD8w==" + "node_modules/package-manager-detector": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/package-manager-detector/-/package-manager-detector-0.1.2.tgz", + "integrity": "sha512-iePyefLTOm2gEzbaZKSW+eBMjg+UYsQvUKxmvGXAQ987K16efBg10MxIjZs08iyX+DY2/owKY9DIdu193kX33w==", + "dev": true }, - "clean-regexp": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/clean-regexp/-/clean-regexp-1.0.0.tgz", - "integrity": "sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==", - "dev": true, - "requires": { - "escape-string-regexp": "^1.0.5" + "node_modules/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==", + "devOptional": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" } }, - "cli-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", - "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", - "requires": { - "restore-cursor": "^4.0.0" + "node_modules/parse-git-config": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/parse-git-config/-/parse-git-config-3.0.0.tgz", + "integrity": "sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==", + "dependencies": { + "git-config-path": "^2.0.0", + "ini": "^1.3.5" + }, + "engines": { + "node": ">=8" } }, - "cli-spinners": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.7.0.tgz", - "integrity": "sha512-qu3pN8Y3qHNgE2AFweciB1IfMnmZ/fsNTEE+NOFjmGB2F/7rLhnhzppvpCnN4FovtP26k8lHyy9ptEbNwWFLzw==" - }, - "cli-width": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.0.0.tgz", - "integrity": "sha512-ZksGS2xpa/bYkNzN3BAw1wEjsLV/ZKOf/CCrJ/QOBsxx6fOARIkwTutxp1XIOIohi6HKmOFjMoK/XaqDVUpEEw==" + "node_modules/parse-git-config/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" }, - "clipboardy": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-3.0.0.tgz", - "integrity": "sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==", - "requires": { - "arch": "^2.2.0", - "execa": "^5.1.1", - "is-wsl": "^2.2.0" + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@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" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "requires": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, + "node_modules/parse-path": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", + "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "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==", - "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==" - }, - "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==" - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - }, - "wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "requires": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - } - } + "protocols": "^2.0.0" } }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" - }, - "cluster-key-slot": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz", - "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==" - }, - "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" + "node_modules/parse-url": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", + "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", + "dependencies": { + "parse-path": "^7.0.0" } }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" - }, - "colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - }, - "colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==" - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "requires": { - "delayed-stream": "~1.0.0" + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" } }, - "commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - }, - "commondir": { + "node_modules/path-browserify": { "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "devOptional": true }, - "compress-commons": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.1.tgz", - "integrity": "sha512-QLdDLCKNV2dtoTorqgxngQCMA+gWXkM/Nwu7FpeBhk/RdkzimqC3jueb/FDmaZeXh+uby1jkBqE3xArsLBE5wQ==", - "requires": { - "buffer-crc32": "^0.2.13", - "crc32-stream": "^4.0.2", - "normalize-path": "^3.0.0", - "readable-stream": "^3.6.0" + "node_modules/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==", + "engines": { + "node": ">=8" } }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "consola": { - "version": "2.15.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", - "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" - }, - "convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - }, - "cookie-es": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-0.5.0.tgz", - "integrity": "sha512-RyZrFi6PNpBFbIaQjXDlFIhFVqV42QeKSZX1yQIl6ihImq6vcHNGMtqQ/QzY3RMPuYSkvsRwtnt5M9NeYxKt0g==" + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } }, - "core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } }, - "crc-32": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", - "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==" + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, - "crc32-stream": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.2.tgz", - "integrity": "sha512-DxFZ/Hk473b/muq1VJ///PMNLj0ZMnzye9thBpmjpJKCc5eMgB95aK8zCGrGfQ90cWo561Te6HK9D+j4KPdM6w==", - "requires": { - "crc-32": "^1.2.0", - "readable-stream": "^3.4.0" + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" }, - "cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "requires": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" + "node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "css-declaration-sorter": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.3.1.tgz", - "integrity": "sha512-fBffmak0bPAnyqc/HO8C3n2sHrp9wcqQz6ES9koRF2/mLOVAx9zIQ3Y7R29sYCteTPqMCwns4WYQoCX91Xl3+w==", - "requires": {} + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==" }, - "css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "requires": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" + "node_modules/pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "engines": { + "node": "*" } }, - "css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "requires": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - } + "node_modules/perfect-debounce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==" }, - "css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" - }, - "cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - }, - "cssnano": { - "version": "5.1.14", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.14.tgz", - "integrity": "sha512-Oou7ihiTocbKqi0J1bB+TRJIQX5RMR3JghA8hcWSw9mjBLQ5Y3RWqEDoYG3sRNlAbCIXpqMoZGbq5KDR3vdzgw==", - "requires": { - "cssnano-preset-default": "^5.2.13", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" - } - }, - "cssnano-preset-default": { - "version": "5.2.13", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.13.tgz", - "integrity": "sha512-PX7sQ4Pb+UtOWuz8A1d+Rbi+WimBIxJTRyBdgGp1J75VU0r/HFQeLnMYgHiCAp6AR4rqrc7Y4R+1Rjk3KJz6DQ==", - "requires": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^3.1.0", - "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.0", - "postcss-convert-values": "^5.1.3", - "postcss-discard-comments": "^5.1.2", - "postcss-discard-duplicates": "^5.1.0", - "postcss-discard-empty": "^5.1.1", - "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.7", - "postcss-merge-rules": "^5.1.3", - "postcss-minify-font-values": "^5.1.0", - "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.4", - "postcss-minify-selectors": "^5.2.1", - "postcss-normalize-charset": "^5.1.0", - "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.1", - "postcss-normalize-repeat-style": "^5.1.1", - "postcss-normalize-string": "^5.1.0", - "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.1", - "postcss-normalize-url": "^5.1.0", - "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.3", - "postcss-reduce-initial": "^5.1.1", - "postcss-reduce-transforms": "^5.1.0", - "postcss-svgo": "^5.1.0", - "postcss-unique-selectors": "^5.1.1" - } - }, - "cssnano-utils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", - "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", - "requires": {} + "node_modules/picocolors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz", + "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" }, - "csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", - "requires": { - "css-tree": "^1.1.2" + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "csstype": { - "version": "2.6.21", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.21.tgz", - "integrity": "sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==" - }, - "cuint": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", - "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==" - }, - "data-uri-to-buffer": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.0.tgz", - "integrity": "sha512-Vr3mLBA8qWmcuschSLAOogKgQ/Jwxulv3RNE4FXnYWRGujzrRWQI4m12fQqRkwX06C0KanhLr4hK+GydchZsaA==" + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } }, - "de-indent": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", - "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", - "dev": true + "node_modules/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==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } }, - "debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "requires": { - "ms": "2.1.2" + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "devOptional": true + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } }, - "deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "requires": { - "clone": "^1.0.2" + "node_modules/pkg-dir/node_modules/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==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" } }, - "define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" + "node_modules/pkg-types": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.2.0.tgz", + "integrity": "sha512-+ifYuSSqOQ8CqP4MbZA5hDpb97n3E8SVWdJe+Wms9kj745lmd3b7EZJiqvmLwAlmRfjrI7Hi5z3kdBJ93lFNPA==", + "dependencies": { + "confbox": "^0.1.7", + "mlly": "^1.7.1", + "pathe": "^1.1.2" + } }, - "define-properties": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", - "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", + "node_modules/pluralize": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", + "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", "dev": true, - "requires": { - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" + "engines": { + "node": ">=4" } }, - "defu": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.1.tgz", - "integrity": "sha512-aA964RUCsBt0FGoNIlA3uFgo2hO+WWC0fiC6DBps/0SFzkKcYoM/3CzVLIa5xSsrFjdioMdYgAIbwo80qp2MoA==" - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - }, - "delegates": { + "node_modules/possible-typed-array-names": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" - }, - "denque": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", - "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==" - }, - "depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - }, - "destr": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/destr/-/destr-1.2.1.tgz", - "integrity": "sha512-ud8w0qMLlci6iFG7CNgeRr8OcbUWMsbfjtWft1eJ5Luqrz/M8Ebqk/KCzne8rKUlIQWWfLv0wD6QHrqOf4GshA==" - }, - "destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - }, - "detect-libc": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", - "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==" - }, - "dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "requires": { - "path-type": "^4.0.0" + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", + "dev": true, + "engines": { + "node": ">= 0.4" } }, - "doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", - "devOptional": true, - "requires": { - "esutils": "^2.0.2" + "node_modules/postcss": { + "version": "8.4.41", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz", + "integrity": "sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.1", + "source-map-js": "^1.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14" } }, - "dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "requires": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "node_modules/postcss-calc": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", + "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" } }, - "domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - }, - "domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", - "requires": { - "domelementtype": "^2.2.0" + "node_modules/postcss-colormin": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.1.0.tgz", + "integrity": "sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==", + "dependencies": { + "browserslist": "^4.23.0", + "caniuse-api": "^3.0.0", + "colord": "^2.9.3", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", - "requires": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "node_modules/postcss-convert-values": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.1.0.tgz", + "integrity": "sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==", + "dependencies": { + "browserslist": "^4.23.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "dot-prop": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-7.2.0.tgz", - "integrity": "sha512-Ol/IPXUARn9CSbkrdV4VJo7uCy1I3VuSiWCaFSg+8BdUOzF9n3jefIpcgAydvUZbTdEBZs2vEiTiS9m61ssiDA==", - "requires": { - "type-fest": "^2.11.2" + "node_modules/postcss-discard-comments": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.2.tgz", + "integrity": "sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==", + "engines": { + "node": "^14 || ^16 || >=18.0" }, - "dependencies": { - "type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==" - } + "peerDependencies": { + "postcss": "^8.4.31" } }, - "dotenv": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", - "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==" - }, - "duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - }, - "eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "electron-to-chromium": { - "version": "1.4.284", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", - "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==" - }, - "emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - }, - "end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "requires": { - "once": "^1.4.0" + "node_modules/postcss-discard-duplicates": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.3.tgz", + "integrity": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "enhanced-resolve": { - "version": "5.11.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.11.0.tgz", - "integrity": "sha512-0Gcraf7gAJSQoPg+bTSXNhuzAYtXqLc4C011vb8S3B8XUSEkGYNBk20c68X9291VF4vvsCD8SPkr6Mza+DwU+g==", - "requires": { - "graceful-fs": "^4.2.9", - "tapable": "^2.2.0" + "node_modules/postcss-discard-empty": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.3.tgz", + "integrity": "sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + "node_modules/postcss-discard-overridden": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.2.tgz", + "integrity": "sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } }, - "errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "requires": { - "prr": "~1.0.1" + "node_modules/postcss-merge-longhand": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.5.tgz", + "integrity": "sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^6.1.1" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "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==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" + "node_modules/postcss-merge-rules": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.1.1.tgz", + "integrity": "sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==", + "dependencies": { + "browserslist": "^4.23.0", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^4.0.2", + "postcss-selector-parser": "^6.0.16" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "es-abstract": { - "version": "1.20.5", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.5.tgz", - "integrity": "sha512-7h8MM2EQhsCA7pU/Nv78qOXFpD8Rhqd12gYiSJVkrH9+e8VuA8JlPJK/hQjjlLv6pJvx/z1iRFKzYb0XT/RuAQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "es-to-primitive": "^1.2.1", - "function-bind": "^1.1.1", - "function.prototype.name": "^1.1.5", - "get-intrinsic": "^1.1.3", - "get-symbol-description": "^1.0.0", - "gopd": "^1.0.1", - "has": "^1.0.3", - "has-property-descriptors": "^1.0.0", - "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-weakref": "^1.0.2", - "object-inspect": "^1.12.2", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "safe-regex-test": "^1.0.0", - "string.prototype.trimend": "^1.0.6", - "string.prototype.trimstart": "^1.0.6", - "unbox-primitive": "^1.0.2" + "node_modules/postcss-minify-font-values": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.1.0.tgz", + "integrity": "sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", - "dev": true, - "requires": { - "has": "^1.0.3" + "node_modules/postcss-minify-gradients": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.3.tgz", + "integrity": "sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==", + "dependencies": { + "colord": "^2.9.3", + "cssnano-utils": "^4.0.2", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "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" + "node_modules/postcss-minify-params": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.1.0.tgz", + "integrity": "sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==", + "dependencies": { + "browserslist": "^4.23.0", + "cssnano-utils": "^4.0.2", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "esbuild": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.15.15.tgz", - "integrity": "sha512-TEw/lwK4Zzld9x3FedV6jy8onOUHqcEX3ADFk4k+gzPUwrxn8nWV62tH0udo8jOtjFodlEfc4ypsqX3e+WWO6w==", - "requires": { - "@esbuild/android-arm": "0.15.15", - "@esbuild/linux-loong64": "0.15.15", - "esbuild-android-64": "0.15.15", - "esbuild-android-arm64": "0.15.15", - "esbuild-darwin-64": "0.15.15", - "esbuild-darwin-arm64": "0.15.15", - "esbuild-freebsd-64": "0.15.15", - "esbuild-freebsd-arm64": "0.15.15", - "esbuild-linux-32": "0.15.15", - "esbuild-linux-64": "0.15.15", - "esbuild-linux-arm": "0.15.15", - "esbuild-linux-arm64": "0.15.15", - "esbuild-linux-mips64le": "0.15.15", - "esbuild-linux-ppc64le": "0.15.15", - "esbuild-linux-riscv64": "0.15.15", - "esbuild-linux-s390x": "0.15.15", - "esbuild-netbsd-64": "0.15.15", - "esbuild-openbsd-64": "0.15.15", - "esbuild-sunos-64": "0.15.15", - "esbuild-windows-32": "0.15.15", - "esbuild-windows-64": "0.15.15", - "esbuild-windows-arm64": "0.15.15" - } - }, - "esbuild-android-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.15.15.tgz", - "integrity": "sha512-F+WjjQxO+JQOva3tJWNdVjouFMLK6R6i5gjDvgUthLYJnIZJsp1HlF523k73hELY20WPyEO8xcz7aaYBVkeg5Q==", - "optional": true - }, - "esbuild-android-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.15.15.tgz", - "integrity": "sha512-attlyhD6Y22jNyQ0fIIQ7mnPvDWKw7k6FKnsXlBvQE6s3z6s6cuEHcSgoirquQc7TmZgVCK5fD/2uxmRN+ZpcQ==", - "optional": true - }, - "esbuild-darwin-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.15.15.tgz", - "integrity": "sha512-ohZtF8W1SHJ4JWldsPVdk8st0r9ExbAOSrBOh5L+Mq47i696GVwv1ab/KlmbUoikSTNoXEhDzVpxUR/WIO19FQ==", - "optional": true - }, - "esbuild-darwin-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.15.15.tgz", - "integrity": "sha512-P8jOZ5zshCNIuGn+9KehKs/cq5uIniC+BeCykvdVhx/rBXSxmtj3CUIKZz4sDCuESMbitK54drf/2QX9QHG5Ag==", - "optional": true - }, - "esbuild-freebsd-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.15.15.tgz", - "integrity": "sha512-KkTg+AmDXz1IvA9S1gt8dE24C8Thx0X5oM0KGF322DuP+P3evwTL9YyusHAWNsh4qLsR80nvBr/EIYs29VSwuA==", - "optional": true - }, - "esbuild-freebsd-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.15.15.tgz", - "integrity": "sha512-FUcML0DRsuyqCMfAC+HoeAqvWxMeq0qXvclZZ/lt2kLU6XBnDA5uKTLUd379WYEyVD4KKFctqWd9tTuk8C/96g==", - "optional": true - }, - "esbuild-linux-32": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.15.15.tgz", - "integrity": "sha512-q28Qn5pZgHNqug02aTkzw5sW9OklSo96b5nm17Mq0pDXrdTBcQ+M6Q9A1B+dalFeynunwh/pvfrNucjzwDXj+Q==", - "optional": true - }, - "esbuild-linux-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.15.15.tgz", - "integrity": "sha512-217KPmWMirkf8liO+fj2qrPwbIbhNTGNVtvqI1TnOWJgcMjUWvd677Gq3fTzXEjilkx2yWypVnTswM2KbXgoAg==", - "optional": true - }, - "esbuild-linux-arm": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.15.15.tgz", - "integrity": "sha512-RYVW9o2yN8yM7SB1yaWr378CwrjvGCyGybX3SdzPHpikUHkME2AP55Ma20uNwkNyY2eSYFX9D55kDrfQmQBR4w==", - "optional": true - }, - "esbuild-linux-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.15.15.tgz", - "integrity": "sha512-/ltmNFs0FivZkYsTzAsXIfLQX38lFnwJTWCJts0IbCqWZQe+jjj0vYBNbI0kmXLb3y5NljiM5USVAO1NVkdh2g==", - "optional": true - }, - "esbuild-linux-mips64le": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.15.15.tgz", - "integrity": "sha512-PksEPb321/28GFFxtvL33yVPfnMZihxkEv5zME2zapXGp7fA1X2jYeiTUK+9tJ/EGgcNWuwvtawPxJG7Mmn86A==", - "optional": true - }, - "esbuild-linux-ppc64le": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.15.15.tgz", - "integrity": "sha512-ek8gJBEIhcpGI327eAZigBOHl58QqrJrYYIZBWQCnH3UnXoeWMrMZLeeZL8BI2XMBhP+sQ6ERctD5X+ajL/AIA==", - "optional": true - }, - "esbuild-linux-riscv64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.15.15.tgz", - "integrity": "sha512-H5ilTZb33/GnUBrZMNJtBk7/OXzDHDXjIzoLXHSutwwsLxSNaLxzAaMoDGDd/keZoS+GDBqNVxdCkpuiRW4OSw==", - "optional": true - }, - "esbuild-linux-s390x": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.15.15.tgz", - "integrity": "sha512-jKaLUg78mua3rrtrkpv4Or2dNTJU7bgHN4bEjT4OX4GR7nLBSA9dfJezQouTxMmIW7opwEC5/iR9mpC18utnxQ==", - "optional": true - }, - "esbuild-netbsd-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.15.15.tgz", - "integrity": "sha512-aOvmF/UkjFuW6F36HbIlImJTTx45KUCHJndtKo+KdP8Dhq3mgLRKW9+6Ircpm8bX/RcS3zZMMmaBLkvGY06Gvw==", - "optional": true - }, - "esbuild-openbsd-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.15.15.tgz", - "integrity": "sha512-HFFX+WYedx1w2yJ1VyR1Dfo8zyYGQZf1cA69bLdrHzu9svj6KH6ZLK0k3A1/LFPhcEY9idSOhsB2UyU0tHPxgQ==", - "optional": true - }, - "esbuild-sunos-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.15.15.tgz", - "integrity": "sha512-jOPBudffG4HN8yJXcK9rib/ZTFoTA5pvIKbRrt3IKAGMq1EpBi4xoVoSRrq/0d4OgZLaQbmkHp8RO9eZIn5atA==", - "optional": true - }, - "esbuild-windows-32": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.15.15.tgz", - "integrity": "sha512-MDkJ3QkjnCetKF0fKxCyYNBnOq6dmidcwstBVeMtXSgGYTy8XSwBeIE4+HuKiSsG6I/mXEb++px3IGSmTN0XiA==", - "optional": true - }, - "esbuild-windows-64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.15.15.tgz", - "integrity": "sha512-xaAUIB2qllE888SsMU3j9nrqyLbkqqkpQyWVkfwSil6BBPgcPk3zOFitTTncEKCLTQy3XV9RuH7PDj3aJDljWA==", - "optional": true - }, - "esbuild-windows-arm64": { - "version": "0.15.15", - "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.15.15.tgz", - "integrity": "sha512-ttuoCYCIJAFx4UUKKWYnFdrVpoXa3+3WWkXVI6s09U+YjhnyM5h96ewTq/WgQj9LFSIlABQvadHSOQyAVjW5xQ==", - "optional": true - }, - "escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - }, - "eslint": { - "version": "8.28.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.28.0.tgz", - "integrity": "sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ==", - "devOptional": true, - "requires": { - "@eslint/eslintrc": "^1.3.3", - "@humanwhocodes/config-array": "^0.11.6", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "ajv": "^6.10.0", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.1.1", - "eslint-utils": "^3.0.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.4.0", - "esquery": "^1.4.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.15.0", - "grapheme-splitter": "^1.0.4", - "ignore": "^5.2.0", - "import-fresh": "^3.0.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-sdsl": "^4.1.4", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.1", - "regexpp": "^3.2.0", - "strip-ansi": "^6.0.1", - "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0" - }, + "node_modules/postcss-minify-selectors": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.4.tgz", + "integrity": "sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==", "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "devOptional": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "devOptional": 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==", - "devOptional": 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==", - "devOptional": true - }, - "escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "devOptional": true - }, - "eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", - "devOptional": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "devOptional": true - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "devOptional": true - }, - "globals": { - "version": "13.18.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.18.0.tgz", - "integrity": "sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A==", - "devOptional": true, - "requires": { - "type-fest": "^0.20.2" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "devOptional": 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==", - "devOptional": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "devOptional": true - } + "postcss-selector-parser": "^6.0.16" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-config-prettier": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", - "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", - "dev": true, - "requires": {} - }, - "eslint-config-standard": { - "version": "17.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.0.0.tgz", - "integrity": "sha512-/2ks1GKyqSOkH7JFvXJicu0iMpoojkwB+f5Du/1SC0PtBL+s8v30k9njRZ21pm2drKYm2342jFnGWzttxPmZVg==", - "dev": true, - "requires": {} - }, - "eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", - "dev": true, - "requires": { - "debug": "^3.2.7", - "resolve": "^1.20.0" + "node_modules/postcss-normalize-charset": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.2.tgz", + "integrity": "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==", + "engines": { + "node": "^14 || ^16 || >=18.0" }, - "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-import-resolver-typescript": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.2.tgz", - "integrity": "sha512-zX4ebnnyXiykjhcBvKIf5TNvt8K7yX6bllTRZ14MiurKPjDpCAZujlszTdB8pcNXhZcOf+god4s9SjQa5GnytQ==", - "dev": true, - "requires": { - "debug": "^4.3.4", - "enhanced-resolve": "^5.10.0", - "get-tsconfig": "^4.2.0", - "globby": "^13.1.2", - "is-core-module": "^2.10.0", - "is-glob": "^4.0.3", - "synckit": "^0.8.4" + "node_modules/postcss-normalize-display-values": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.2.tgz", + "integrity": "sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-module-utils": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", - "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", - "dev": true, - "requires": { - "debug": "^3.2.7" - }, + "node_modules/postcss-normalize-positions": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.2.tgz", + "integrity": "sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==", "dependencies": { - "debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - } + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-plugin-es": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz", - "integrity": "sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==", - "dev": true, - "requires": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" - }, + "node_modules/postcss-normalize-repeat-style": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.2.tgz", + "integrity": "sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==", "dependencies": { - "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" - } - }, - "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 - } + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-plugin-import": { - "version": "2.26.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", - "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", - "dev": true, - "requires": { - "array-includes": "^3.1.4", - "array.prototype.flat": "^1.2.5", - "debug": "^2.6.9", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.6", - "eslint-module-utils": "^2.7.3", - "has": "^1.0.3", - "is-core-module": "^2.8.1", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.5", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" - }, + "node_modules/postcss-normalize-string": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.2.tgz", + "integrity": "sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==", "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" - } - }, - "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" - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - } + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-plugin-n": { - "version": "15.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-15.6.0.tgz", - "integrity": "sha512-Hd/F7wz4Mj44Jp0H6Jtty13NcE69GNTY0rVlgTIj1XBnGGVI6UTdDrpE6vqu3AHo07bygq/N+7OH/lgz1emUJw==", - "dev": true, - "requires": { - "builtins": "^5.0.1", - "eslint-plugin-es": "^4.1.0", - "eslint-utils": "^3.0.0", - "ignore": "^5.1.1", - "is-core-module": "^2.11.0", - "minimatch": "^3.1.2", - "resolve": "^1.22.1", - "semver": "^7.3.8" - }, + "node_modules/postcss-normalize-timing-functions": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.2.tgz", + "integrity": "sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==", "dependencies": { - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-plugin-node": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz", - "integrity": "sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==", - "dev": true, - "requires": { - "eslint-plugin-es": "^3.0.0", - "eslint-utils": "^2.0.0", - "ignore": "^5.1.1", - "minimatch": "^3.0.4", - "resolve": "^1.10.1", - "semver": "^6.1.0" + "node_modules/postcss-normalize-unicode": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.1.0.tgz", + "integrity": "sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==", + "dependencies": { + "browserslist": "^4.23.0", + "postcss-value-parser": "^4.2.0" }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-url": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.2.tgz", + "integrity": "sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==", "dependencies": { - "eslint-plugin-es": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz", - "integrity": "sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==", - "dev": true, - "requires": { - "eslint-utils": "^2.0.0", - "regexpp": "^3.0.0" - } - }, - "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" - } - }, - "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 - } + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-plugin-nuxt": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-nuxt/-/eslint-plugin-nuxt-4.0.0.tgz", - "integrity": "sha512-v3Vwdk8YKe52bAz8eSIDqQuTtfL/T1r9dSl1uhC5SyR5pgLxgKkQdxXVf/Bf6Ax7uyd9rHqiAuYVdqqDb7ILdA==", - "dev": true, - "requires": { - "eslint-plugin-vue": "^9.4.0", - "semver": "^7.3.7", - "vue-eslint-parser": "^9.0.3" - }, + "node_modules/postcss-normalize-whitespace": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.2.tgz", + "integrity": "sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==", "dependencies": { - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-plugin-prettier": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", - "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", - "dev": true, - "requires": { - "prettier-linter-helpers": "^1.0.0" + "node_modules/postcss-ordered-values": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.2.tgz", + "integrity": "sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==", + "dependencies": { + "cssnano-utils": "^4.0.2", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-plugin-promise": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", - "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", - "dev": true, - "requires": {} - }, - "eslint-plugin-unicorn": { - "version": "44.0.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-unicorn/-/eslint-plugin-unicorn-44.0.2.tgz", - "integrity": "sha512-GLIDX1wmeEqpGaKcnMcqRvMVsoabeF0Ton0EX4Th5u6Kmf7RM9WBl705AXFEsns56ESkEs0uyelLuUTvz9Tr0w==", - "dev": true, - "requires": { - "@babel/helper-validator-identifier": "^7.19.1", - "ci-info": "^3.4.0", - "clean-regexp": "^1.0.0", - "eslint-utils": "^3.0.0", - "esquery": "^1.4.0", - "indent-string": "^4.0.0", - "is-builtin-module": "^3.2.0", - "lodash": "^4.17.21", - "pluralize": "^8.0.0", - "read-pkg-up": "^7.0.1", - "regexp-tree": "^0.1.24", - "safe-regex": "^2.1.1", - "semver": "^7.3.7", - "strip-indent": "^3.0.0" - }, + "node_modules/postcss-reduce-initial": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.1.0.tgz", + "integrity": "sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==", "dependencies": { - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "browserslist": "^4.23.0", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-plugin-vue": { - "version": "9.7.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.7.0.tgz", - "integrity": "sha512-DrOO3WZCZEwcLsnd3ohFwqCoipGRSTKTBTnLwdhqAbYZtzWl0o7D+D8ZhlmiZvABKTEl8AFsqH1GHGdybyoQmw==", - "dev": true, - "requires": { - "eslint-utils": "^3.0.0", - "natural-compare": "^1.4.0", - "nth-check": "^2.0.1", - "postcss-selector-parser": "^6.0.9", - "semver": "^7.3.5", - "vue-eslint-parser": "^9.0.1", - "xml-name-validator": "^4.0.0" + "node_modules/postcss-reduce-transforms": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.2.tgz", + "integrity": "sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "dependencies": { - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" } }, - "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" + "node_modules/postcss-svgo": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.3.tgz", + "integrity": "sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^3.2.0" + }, + "engines": { + "node": "^14 || ^16 || >= 18" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", - "devOptional": true, - "requires": { - "eslint-visitor-keys": "^2.0.0" + "node_modules/postcss-unique-selectors": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.4.tgz", + "integrity": "sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==", + "dependencies": { + "postcss-selector-parser": "^6.0.16" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", - "devOptional": true + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, - "espree": { - "version": "9.4.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", - "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", - "devOptional": true, - "requires": { - "acorn": "^8.8.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.3.0" - }, - "dependencies": { - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "devOptional": true + "node_modules/postcss/node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "esquery": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", - "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "devOptional": true, - "requires": { - "estraverse": "^5.1.0" - }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "devOptional": true - } + "engines": { + "node": ">= 0.8.0" } }, - "esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "devOptional": true, - "requires": { - "estraverse": "^5.2.0" + "node_modules/prettier": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", + "dev": true, + "peer": true, + "bin": { + "prettier": "bin/prettier.cjs" }, - "dependencies": { - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "devOptional": true - } + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true - }, - "estree-walker": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.1.tgz", - "integrity": "sha512-woY0RUD87WzMBUiZLx8NsYr23N5BKsOMZHhu2hoNRVh6NXGfoiT1KOL8G3UHlJAnEDGmfa5ubNA/AacfG+Kb0g==" - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "devOptional": true - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - }, - "eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + "node_modules/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, + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } }, - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "node_modules/pretty-bytes": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.1.1.tgz", + "integrity": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==", + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "requires": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" + "node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "externality": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/externality/-/externality-1.0.0.tgz", - "integrity": "sha512-MAU9ci3XdpqOX1aoIoyL2DMzW97P8LYeJxIUkfXhOfsrkH4KLHFaYDwKN0B2l6tqedVJWiTIJtWmxmZfa05vOQ==", - "requires": { - "enhanced-resolve": "^5.10.0", - "mlly": "^1.0.0", - "pathe": "^1.0.0", - "ufo": "^1.0.0" + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=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==", - "devOptional": true + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "engines": { + "node": ">= 0.6.0" + } }, - "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 + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, - "fast-glob": { - "version": "3.2.12", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", - "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", - "requires": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dependencies": { - "glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "requires": { - "is-glob": "^4.0.1" - } - } + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" } }, - "fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "devOptional": true + "node_modules/protocols": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", + "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" }, - "fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "devOptional": true + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" }, - "fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", - "requires": { - "reusify": "^1.0.4" + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "devOptional": true, + "engines": { + "node": ">=6" } }, - "fetch-blob": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", - "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", - "requires": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" + "node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "figures": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-5.0.0.tgz", - "integrity": "sha512-ej8ksPF4x6e5wvK9yevct0UCXh8TTFlWGVLlgjZuoBH1HwjIfKE/IdL5mq89sFA7zELi1VhKpmtDnrs7zWyeyg==", - "requires": { - "escape-string-regexp": "^5.0.0", - "is-unicode-supported": "^1.2.0" - }, - "dependencies": { - "escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" } - } - }, - "file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", - "devOptional": true, - "requires": { - "flat-cache": "^3.0.4" - } + ] }, - "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==" + "node_modules/queue-tick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==" }, - "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==", - "requires": { - "to-regex-range": "^5.0.1" - } + "node_modules/radix3": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.2.tgz", + "integrity": "sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==" }, - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" } }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "devOptional": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "node_modules/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==", + "engines": { + "node": ">= 0.6" } }, - "flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" - }, - "flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", - "devOptional": true, - "requires": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" + "node_modules/rc9": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.1.2.tgz", + "integrity": "sha512-btXCnMmRIBINM2LDZoEmOogIZU7Qe7zn4BpomSKZ/ykbLObuBdvG+mFq11DL6fjH1DRwHhrlgtYWG96bJiC7Cg==", + "dependencies": { + "defu": "^6.1.4", + "destr": "^2.0.3" } }, - "flatted": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", - "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==", - "devOptional": true - }, - "follow-redirects": { - "version": "1.15.2", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", - "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==" - }, - "form-data": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", - "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" - } + "node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==" }, - "formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", - "requires": { - "fetch-blob": "^3.1.2" + "node_modules/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, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" } }, - "fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==" - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - }, - "fs-constants": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - }, - "fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "node_modules/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, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "fs-memo": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fs-memo/-/fs-memo-1.2.0.tgz", - "integrity": "sha512-YEexkCpL4j03jn5SxaMHqcO6IuWuqm8JFUYhyCep7Ao89JIYmB8xoKhK7zXXJ9cCaNXpyNH5L3QtAmoxjoHW2w==" - }, - "fs-minipass": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz", - "integrity": "sha512-GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==", - "requires": { - "minipass": "^2.6.0" + "node_modules/read-pkg-up/node_modules/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, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "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.5", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", - "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", + "node_modules/read-pkg-up/node_modules/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": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.0", - "functions-have-names": "^1.2.2" + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" } }, - "functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "dev": true - }, - "gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", - "requires": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" - }, + "node_modules/read-pkg-up/node_modules/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, "dependencies": { - "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==" - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - } + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - }, - "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==" - }, - "get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", - "requires": { - "function-bind": "^1.1.1", - "has": "^1.0.3", - "has-symbols": "^1.0.3" + "node_modules/read-pkg-up/node_modules/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, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" } }, - "get-port-please": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-2.6.1.tgz", - "integrity": "sha512-4PDSrL6+cuMM1xs6w36ZIkaKzzE0xzfVBCfebHIJ3FE8iB9oic/ECwPw3iNiD4h1AoJ5XLLBhEviFAVrZsDC5A==", - "requires": { - "fs-memo": "^1.2.0" + "node_modules/read-pkg-up/node_modules/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, + "engines": { + "node": ">=8" } }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - }, - "get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "node_modules/read-pkg/node_modules/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, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "engines": { + "node": ">=8" } }, - "get-tsconfig": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.2.0.tgz", - "integrity": "sha512-X8u8fREiYOE6S8hLbq99PeykTDoLVnxvF4DjWKJmz9xy2nNRdUcV8ZN9tniJFeKyTU3qnC9lL8n4Chd6LmVKHg==", - "dev": true - }, - "git-config-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/git-config-path/-/git-config-path-2.0.0.tgz", - "integrity": "sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==" - }, - "git-up": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", - "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", - "requires": { - "is-ssh": "^1.4.0", - "parse-url": "^8.1.0" + "node_modules/readable-stream": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz", + "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, - "git-url-parse": { - "version": "13.1.0", - "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.0.tgz", - "integrity": "sha512-5FvPJP/70WkIprlUZ33bm4UAaFdjcLkJLpWft1BeZKqwR0uhhNGoKwlUaPtVb4LxCSQ++erHapRak9kWGj+FCA==", - "requires": { - "git-up": "^7.0.0" + "node_modules/readdir-glob": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz", + "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==", + "dependencies": { + "minimatch": "^5.1.0" } }, - "gittar": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/gittar/-/gittar-0.1.1.tgz", - "integrity": "sha512-p+XuqWJpW9ahUuNTptqeFjudFq31o6Jd+maMBarkMAR5U3K9c7zJB4sQ4BV8mIqrTOV29TtqikDhnZfCD4XNfQ==", - "requires": { - "mkdirp": "^0.5.1", - "tar": "^4.4.1" - } - }, - "glob": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.0.3.tgz", - "integrity": "sha512-ull455NHSHI/Y1FqGaaYFaLGkNMMJbavMrEGFXG/PGrg6y7sutWHUHrz6gy6WEBH6akM1M414dWKCNs+IhKdiQ==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, + "node_modules/readdir-glob/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", - "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", - "requires": { - "brace-expansion": "^2.0.1" - } - } + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" } }, - "glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "devOptional": true, - "requires": { - "is-glob": "^4.0.3" + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" } }, - "globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - }, - "globalyzer": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.0.tgz", - "integrity": "sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==", - "dev": true - }, - "globby": { - "version": "13.1.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.2.tgz", - "integrity": "sha512-LKSDZXToac40u8Q1PQtZihbNdTYSNMuWe+K5l+oa6KgDzSvVrHXlJy40hUP522RjAIoNLJYBJi7ow+rbFpIhHQ==", - "requires": { - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.11", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^4.0.0" + "node_modules/redis-errors": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz", + "integrity": "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==", + "engines": { + "node": ">=4" } }, - "globrex": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", - "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", - "dev": true + "node_modules/redis-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz", + "integrity": "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==", + "dependencies": { + "redis-errors": "^1.0.0" + }, + "engines": { + "node": ">=4" + } }, - "gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "node_modules/regexp-tree": { + "version": "0.1.27", + "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.27.tgz", + "integrity": "sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==", "dev": true, - "requires": { - "get-intrinsic": "^1.1.3" + "bin": { + "regexp-tree": "bin/regexp-tree" } }, - "graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - }, - "grapheme-splitter": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", - "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", - "devOptional": true - }, - "gzip-size": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-7.0.0.tgz", - "integrity": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==", - "requires": { - "duplexer": "^0.1.2" + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "h3": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/h3/-/h3-1.0.1.tgz", - "integrity": "sha512-gDCGpRvjchZW2JBlTqbJ9IOs+mdkXXuwSQkSye+jubHAv/UhdamKqoQvd4RFgyBNjHSId8Y+b10UdTcPlP/V+w==", - "requires": { - "cookie-es": "^0.5.0", - "destr": "^1.2.1", - "radix3": "^1.0.0", - "ufo": "^1.0.0" + "node_modules/regexpp": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", + "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" } }, - "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" + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "engines": { + "node": ">=0.10.0" } }, - "has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "dev": true - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - }, - "has-property-descriptors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", - "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.1" + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" + "node_modules/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==", + "devOptional": true, + "engines": { + "node": ">=4" + } }, - "has-tostringtag": { + "node_modules/resolve-pkg-maps": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", "dev": true, - "requires": { - "has-symbols": "^1.0.2" + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" } }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" - }, - "hash-sum": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", - "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==" - }, - "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 + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } }, - "hookable": { - "version": "5.4.2", - "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.4.2.tgz", - "integrity": "sha512-6rOvaUiNKy9lET1X0ECnyZ5O5kSV0PJbtA5yZUgdEF7fGJEVwSLSislltyt7nFwVVALYHQJtfGeAR2Y0A0uJkg==" + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" }, - "hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "html-tags": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.2.0.tgz", - "integrity": "sha512-vy7ClnArOZwCnqZgvv+ddgHgJiAFXe3Ge9ML5/mBctVJoUoYPCdxVucOywjDARn6CVoh3dRSFdPHy2sX80L0Wg==" + "node_modules/rimraf/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } }, - "http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "requires": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "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==", - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" + "node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "http-shutdown": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/http-shutdown/-/http-shutdown-1.2.2.tgz", - "integrity": "sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==" + "node_modules/robust-predicates": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz", + "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==" }, - "https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", - "requires": { - "agent-base": "6", - "debug": "4" + "node_modules/rollup": { + "version": "4.21.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.21.0.tgz", + "integrity": "sha512-vo+S/lfA2lMS7rZ2Qoubi6I5hwZwzXeUIctILZLbHI+laNtvhhOIon2S1JksA5UEDQ7l3vberd0fxK44lTYjbQ==", + "dependencies": { + "@types/estree": "1.0.5" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.21.0", + "@rollup/rollup-android-arm64": "4.21.0", + "@rollup/rollup-darwin-arm64": "4.21.0", + "@rollup/rollup-darwin-x64": "4.21.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.21.0", + "@rollup/rollup-linux-arm-musleabihf": "4.21.0", + "@rollup/rollup-linux-arm64-gnu": "4.21.0", + "@rollup/rollup-linux-arm64-musl": "4.21.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.21.0", + "@rollup/rollup-linux-riscv64-gnu": "4.21.0", + "@rollup/rollup-linux-s390x-gnu": "4.21.0", + "@rollup/rollup-linux-x64-gnu": "4.21.0", + "@rollup/rollup-linux-x64-musl": "4.21.0", + "@rollup/rollup-win32-arm64-msvc": "4.21.0", + "@rollup/rollup-win32-ia32-msvc": "4.21.0", + "@rollup/rollup-win32-x64-msvc": "4.21.0", + "fsevents": "~2.3.2" } }, - "human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - }, - "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" + "node_modules/rollup-plugin-visualizer": { + "version": "5.12.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.12.0.tgz", + "integrity": "sha512-8/NU9jXcHRs7Nnj07PF2o4gjxmm9lXIrZ8r175bT9dK8qoLlvKTwRMArRCMgpMGlq8CTLugRvEmyMeMXIU2pNQ==", + "dependencies": { + "open": "^8.4.0", + "picomatch": "^2.3.1", + "source-map": "^0.7.4", + "yargs": "^17.5.1" + }, + "bin": { + "rollup-plugin-visualizer": "dist/bin/cli.js" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "rollup": "2.x || 3.x || 4.x" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + "node_modules/rollup-plugin-visualizer/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } }, - "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==" + "node_modules/rollup-plugin-visualizer/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } }, - "immutable": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.1.0.tgz", - "integrity": "sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ==" - }, - "import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", - "devOptional": true, - "requires": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "node_modules/rollup-plugin-visualizer/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" } }, - "imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "devOptional": 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 - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "requires": { - "once": "^1.3.0", - "wrappy": "1" + "node_modules/rollup-plugin-visualizer/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "engines": { + "node": ">=12" } }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - }, - "inquirer": { - "version": "9.1.4", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.1.4.tgz", - "integrity": "sha512-9hiJxE5gkK/cM2d1mTEnuurGTAoHebbkX0BYl3h7iEg7FYfuNIom+nDfBCSWtvSnoSrWCeBxqqBZu26xdlJlXA==", - "requires": { - "ansi-escapes": "^6.0.0", - "chalk": "^5.1.2", - "cli-cursor": "^4.0.0", - "cli-width": "^4.0.0", - "external-editor": "^3.0.3", - "figures": "^5.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^6.1.2", - "run-async": "^2.4.0", - "rxjs": "^7.5.7", - "string-width": "^5.1.2", - "strip-ansi": "^7.0.1", - "through": "^2.3.6", - "wrap-ansi": "^8.0.1" + "node_modules/run-applescript": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", + "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", + "engines": { + "node": ">=18" }, - "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" }, - "chalk": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz", - "integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==" + { + "type": "patreon", + "url": "https://www.patreon.com/feross" }, - "strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "requires": { - "ansi-regex": "^6.0.1" - } + { + "type": "consulting", + "url": "https://feross.org/support" } + ], + "dependencies": { + "queue-microtask": "^1.2.2" } }, - "internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", - "dev": true, - "requires": { - "get-intrinsic": "^1.1.0", - "has": "^1.0.3", - "side-channel": "^1.0.4" - } - }, - "ioredis": { - "version": "5.2.4", - "resolved": "https://registry.npmjs.org/ioredis/-/ioredis-5.2.4.tgz", - "integrity": "sha512-qIpuAEt32lZJQ0XyrloCRdlEdUUNGG9i0UOk6zgzK6igyudNWqEBxfH6OlbnOOoBBvr1WB02mm8fR55CnikRng==", - "requires": { - "@ioredis/commands": "^1.1.1", - "cluster-key-slot": "^1.1.0", - "debug": "^4.3.4", - "denque": "^2.0.1", - "lodash.defaults": "^4.2.0", - "lodash.isarguments": "^3.1.0", - "redis-errors": "^1.2.0", - "redis-parser": "^3.0.0", - "standard-as-callback": "^2.1.0" - } - }, - "ip-regex": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-5.0.0.tgz", - "integrity": "sha512-fOCG6lhoKKakwv+C6KdsOnGvgXnmgfmp0myi3bcNwj3qfwPAxRKWEuFhvEFF7ceYIz6+1jRZ+yguLFAmUNPEfw==" - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true + "node_modules/rw": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", + "integrity": "sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==" }, - "is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "node_modules/safe-array-concat": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.2.tgz", + "integrity": "sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==", "dev": true, - "requires": { - "has-bigints": "^1.0.1" + "dependencies": { + "call-bind": "^1.0.7", + "get-intrinsic": "^1.2.4", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "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==", - "requires": { - "binary-extensions": "^2.0.0" - } + "node_modules/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==" }, - "is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "node_modules/safe-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz", + "integrity": "sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "dependencies": { + "regexp-tree": "~0.1.1" } }, - "is-builtin-module": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.0.tgz", - "integrity": "sha512-phDA4oSGt7vl1n5tJvTWooWWAsXLY+2xCnxNqvKhGEzujg+A43wPlPOyDg3C8XQHN+6k/JTQWJ/j0dQh/qr+Hw==", - "requires": { - "builtin-modules": "^3.3.0" + "node_modules/safe-regex-test": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", + "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-regex": "^1.1.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", - "dev": true + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, - "is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", - "requires": { - "has": "^1.0.3" + "node_modules/sass": { + "version": "1.77.8", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.8.tgz", + "integrity": "sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==", + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" } }, - "is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" + "peer": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==" + "node_modules/scule": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/scule/-/scule-1.3.0.tgz", + "integrity": "sha512-6FtHJEvt+pVMIB9IBY+IcCJ6Z5f1iQnytgyfKMhDKgmzYG+TeH/wx1y3l27rshSbLiSanrR9ffZDrEsmjlQF2g==" }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } }, - "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==" + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } }, - "is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "requires": { - "is-extglob": "^2.1.1" + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" } }, - "is-interactive": { + "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", - "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==" + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" }, - "is-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", - "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } }, - "is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "dev": true + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, - "is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + "node_modules/serialize-javascript": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "dependencies": { + "randombytes": "^2.1.0" + } }, - "is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" + "node_modules/serve-placeholder": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/serve-placeholder/-/serve-placeholder-2.0.2.tgz", + "integrity": "sha512-/TMG8SboeiQbZJWRlfTCqMs2DD3SZgWp0kDQePz9yUuCnDfDh/92gf7/PxGhzXTKBIPASIHxFcZndoNbp6QOLQ==", + "dependencies": { + "defu": "^6.1.4" } }, - "is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", - "devOptional": true - }, - "is-primitive": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-3.0.1.tgz", - "integrity": "sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==" + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } }, - "is-promise": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", - "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==" + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" }, - "is-reference": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", - "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", - "requires": { - "@types/estree": "*" + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" } }, - "is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "node_modules/set-function-name": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz", + "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" } }, - "is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2" - } + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" }, - "is-ssh": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", - "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", - "requires": { - "protocols": "^2.0.1" + "node_modules/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==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - }, - "is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", - "dev": true, - "requires": { - "has-tostringtag": "^1.0.0" + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" } }, - "is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", - "dev": true, - "requires": { - "has-symbols": "^1.0.2" + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-unicode-supported": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", - "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==" + "node_modules/shiki-es": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/shiki-es/-/shiki-es-0.14.0.tgz", + "integrity": "sha512-e+/aueHx0YeIEut6RXC6K8gSf0PykwZiHD7q7AHtpTW8Kd8TpFUIWqTwhAnrGjOyOMyrwv+syr5WPagMpDpVYQ==", + "deprecated": "Please migrate to https://github.com/antfu/shikiji", + "dev": true }, - "is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2" + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", - "requires": { - "is-docker": "^2.0.0" + "node_modules/siginfo": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz", + "integrity": "sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==" + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/simple-git": { + "version": "3.25.0", + "resolved": "https://registry.npmjs.org/simple-git/-/simple-git-3.25.0.tgz", + "integrity": "sha512-KIY5sBnzc4yEcJXW7Tdv4viEz8KyG+nU0hay+DWZasvdFOYKeUZ6Xc25LUHHjw0tinPT7O1eY6pzX7pRT1K8rw==", + "dependencies": { + "@kwsites/file-exists": "^1.1.1", + "@kwsites/promise-deferred": "^1.1.1", + "debug": "^4.3.5" }, + "funding": { + "type": "github", + "url": "https://github.com/steveukx/git-js?sponsor=1" + } + }, + "node_modules/sirv": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz", + "integrity": "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==", "dependencies": { - "is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - } + "@polka/url": "^1.0.0-next.24", + "mrmime": "^2.0.0", + "totalist": "^3.0.0" + }, + "engines": { + "node": ">= 10" } }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + "node_modules/site-config-stack": { + "version": "1.6.7", + "resolved": "https://registry.npmjs.org/site-config-stack/-/site-config-stack-1.6.7.tgz", + "integrity": "sha512-LcZAAaMo4t/LKcePG6eghCt5oG+0JS1fhWG/8dHbfRuD3yWKmijKy2wd0/rcvTxDBEp5Pn2lAqe92jeAHRNjQA==", + "dev": true, + "dependencies": { + "ufo": "^1.3.2" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" + }, + "peerDependencies": { + "vue": "^3" + } }, - "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==", - "requires": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" + "node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "engines": { + "node": ">=14.16" }, - "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==" - }, - "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==", - "requires": { - "has-flag": "^4.0.0" - } - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "jiti": { - "version": "1.16.0", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.16.0.tgz", - "integrity": "sha512-L3BJStEf5NAqNuzrpfbN71dp43mYIcBUlCRea/vdyv5dW/AYa1d4bpelko4SHdY3I6eN9Wzyasxirj1/vv5kmg==" + "node_modules/smob": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/smob/-/smob-1.5.0.tgz", + "integrity": "sha512-g6T+p7QO8npa+/hNx9ohv1E5pVCmWrVCUzUXJyLdMmftX6ER0oiWY/w9knEonLpnOp6b6FenKnMfR8gqwWdwig==" }, - "js-sdsl": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.2.0.tgz", - "integrity": "sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ==", - "devOptional": true + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } }, - "js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "engines": { + "node": ">=0.10.0" + } }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "devOptional": true, - "requires": { - "argparse": "^2.0.1" + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } }, - "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==", + "node_modules/spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", "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==", - "devOptional": true + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } }, - "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": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "devOptional": true + "node_modules/spdx-license-ids": { + "version": "3.0.20", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.20.tgz", + "integrity": "sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==", + "dev": true }, - "json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==" + "node_modules/speakingurl": { + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/speakingurl/-/speakingurl-14.0.1.tgz", + "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", + "engines": { + "node": ">=0.10.0" + } }, - "jsonc-eslint-parser": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsonc-eslint-parser/-/jsonc-eslint-parser-1.4.1.tgz", - "integrity": "sha512-hXBrvsR1rdjmB2kQmUjf1rEIa+TqHBGMge8pwi++C+Si1ad7EjZrJcpgwym+QGK/pqTx+K7keFAtLlVNdLRJOg==", - "dev": true, - "requires": { - "acorn": "^7.4.1", - "eslint-utils": "^2.1.0", - "eslint-visitor-keys": "^1.3.0", - "espree": "^6.0.0", - "semver": "^6.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-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" - } - }, - "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 - }, - "espree": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-6.2.1.tgz", - "integrity": "sha512-ysCxRQY3WaXJz9tdbWOwuWr5Y/XrPTGX9Kiz3yoUXwW0VZ4w30HTkQLaGx/+ttFjF8i+ACbArnB4ce68a9m5hw==", - "dev": true, - "requires": { - "acorn": "^7.1.1", - "acorn-jsx": "^5.2.0", - "eslint-visitor-keys": "^1.1.0" - } - } + "node_modules/splitpanes": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/splitpanes/-/splitpanes-3.1.5.tgz", + "integrity": "sha512-r3Mq2ITFQ5a2VXLOy4/Sb2Ptp7OfEO8YIbhVJqJXoFc9hc5nTXXkCvtVDjIGbvC0vdE7tse+xTM9BMjsszP6bw==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antoniandre" } }, - "jsonc-parser": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", - "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + "node_modules/stackback": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/stackback/-/stackback-0.0.2.tgz", + "integrity": "sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==" }, - "jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^2.0.0" - } + "node_modules/standard-as-callback": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz", + "integrity": "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==" }, - "klona": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", - "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==" + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } }, - "knitwork": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/knitwork/-/knitwork-1.0.0.tgz", - "integrity": "sha512-dWl0Dbjm6Xm+kDxhPQJsCBTxrJzuGl0aP9rhr+TG8D3l+GL90N8O8lYUi7dTSAN2uuDqCtNgb6aEuQH5wsiV8Q==" + "node_modules/std-env": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.7.0.tgz", + "integrity": "sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==" }, - "lazystream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", - "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", - "requires": { - "readable-stream": "^2.0.5" - }, + "node_modules/streamx": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.19.0.tgz", + "integrity": "sha512-5z6CNR4gtkPbwlxyEqoDGDmWIzoNJqCBt4Eac1ICP9YaIT08ct712cFj0u1rx4F8luAuL+3Qc+RFIdI4OX00kg==", "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "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" - } - }, - "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==" - }, - "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" - } - } + "fast-fifo": "^1.3.2", + "queue-tick": "^1.0.1", + "text-decoder": "^1.1.0" + }, + "optionalDependencies": { + "bare-events": "^2.2.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==", - "devOptional": true, - "requires": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - } - }, - "lilconfig": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.6.tgz", - "integrity": "sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==" - }, - "lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "listhen": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.0.0.tgz", - "integrity": "sha512-frdf7TVqT/JSHzRjEuo/vWIgbBYzEuY3oeTq8Yv1XkQVTKDPs2M4yotXICqYZYj2QxbkqKssSo8Wa6QCtBnFhg==", - "requires": { - "clipboardy": "^3.0.0", - "colorette": "^2.0.19", - "defu": "^6.1.1", - "get-port-please": "^2.6.1", - "http-shutdown": "^1.2.2", - "ip-regex": "^5.0.0", - "node-forge": "^1.3.1", - "ufo": "^1.0.0" + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" } }, - "local-pkg": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.2.tgz", - "integrity": "sha512-mlERgSPrbxU3BP4qBqAvvwlgW4MTg78iwJdGGnv7kibKjWcJksrG3t6LB5lXI93wXRDvG4NpUgJFmTG4T6rdrg==" + "node_modules/string_decoder/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "devOptional": true, - "requires": { - "p-locate": "^5.0.0" + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, - "lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" - }, - "lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - }, - "lodash.defaults": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", - "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==" - }, - "lodash.difference": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz", - "integrity": "sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==" - }, - "lodash.flatten": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", - "integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==" - }, - "lodash.isarguments": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", - "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==" - }, - "lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" - }, - "lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - }, - "lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "devOptional": true - }, - "lodash.pick": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", - "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==" - }, - "lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "requires": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" } }, - "lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "requires": { - "lodash._reinterpolate": "^3.0.0" + "node_modules/string.prototype.trim": { + "version": "1.2.9", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz", + "integrity": "sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-abstract": "^1.23.0", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "lodash.union": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz", - "integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==" - }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - }, - "log-symbols": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-5.1.0.tgz", - "integrity": "sha512-l0x2DvrW294C9uDCoQe1VSU4gf529FkSZ6leBl4TiqZH/e+0R7hSfHQBNut2mNygDgHwvYHfFLn6Oxb3VWj2rA==", - "requires": { - "chalk": "^5.0.0", - "is-unicode-supported": "^1.1.0" - }, + "node_modules/string.prototype.trimend": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz", + "integrity": "sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==", + "dev": true, "dependencies": { - "chalk": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz", - "integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==" - } + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "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==", - "requires": { - "yallist": "^4.0.0" - }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz", + "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==", + "dev": true, "dependencies": { - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } + "call-bind": "^1.0.7", + "define-properties": "^1.2.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "magic-string": { - "version": "0.26.7", - "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.26.7.tgz", - "integrity": "sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==", - "requires": { - "sourcemap-codec": "^1.4.8" + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "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==", - "requires": { - "semver": "^6.0.0" + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" } }, - "mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" - }, - "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==", - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - }, - "dependencies": { - "readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", - "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" - } - }, - "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==" - }, - "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" - } - } + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" } }, - "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==" - }, - "merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - }, - "micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "requires": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "mime": { + "node_modules/strip-indent": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", - "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" - }, - "mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } }, - "mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", - "requires": { - "mime-db": "1.52.0" + "node_modules/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==", + "devOptional": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "mimic-fn": { + "node_modules/strip-literal": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - }, - "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 - }, - "minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "requires": { - "brace-expansion": "^1.1.7" + "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-2.1.0.tgz", + "integrity": "sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==", + "dependencies": { + "js-tokens": "^9.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "minimist": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", - "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==" - }, - "minipass": { - "version": "2.9.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-2.9.0.tgz", - "integrity": "sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==", - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } + "node_modules/strip-literal/node_modules/js-tokens": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-9.0.0.tgz", + "integrity": "sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==" }, - "minizlib": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-1.3.3.tgz", - "integrity": "sha512-6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==", - "requires": { - "minipass": "^2.9.0" + "node_modules/stylehacks": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.1.1.tgz", + "integrity": "sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==", + "dependencies": { + "browserslist": "^4.23.0", + "postcss-selector-parser": "^6.0.16" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "mkdir": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/mkdir/-/mkdir-0.0.2.tgz", - "integrity": "sha512-98OnjcWaNEIRUJJe9rFoWlbkQ5n9z8F86wIPCrI961YEViiVybTuJln919WuuSHSnlrqXy0ELKCntoPy8C7lqg==" - }, - "mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "requires": { - "minimist": "^1.2.6" + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" } }, - "mlly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.0.0.tgz", - "integrity": "sha512-QL108Hwt+u9bXdWgOI0dhzZfACovn5Aen4Xvc8Jasd9ouRH4NjnrXEiyP3nVvJo91zPlYjVRckta0Nt2zfoR6g==", - "requires": { - "acorn": "^8.8.1", - "pathe": "^1.0.0", - "pkg-types": "^1.0.0", - "ufo": "^1.0.0" + "node_modules/sucrase/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "dev": true, + "engines": { + "node": ">= 6" } }, - "mri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==" - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "muggle-string": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.1.0.tgz", - "integrity": "sha512-Tr1knR3d2mKvvWthlk7202rywKbiOm4rVFLsfAaSIhJ6dt9o47W4S+JMtWhd/PW9Wrdew2/S2fSvhz3E2gkfEg==", - "dev": true - }, - "mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" - }, - "nanoid": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-4.0.0.tgz", - "integrity": "sha512-IgBP8piMxe/gf73RTQx7hmnhwz0aaEXYakvqZyE302IXW3HyVNhdNGC+O2MwMAVhLEnvXlvKtGbtJf6wvHihCg==" - }, - "natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "devOptional": true - }, - "natural-compare-lite": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", - "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", - "dev": true - }, - "nitropack": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/nitropack/-/nitropack-1.0.0.tgz", - "integrity": "sha512-788lHgNgC+NKqecwFgMkAQTuTXwuh2hEgOk2sLwV3qPVUogxrl6P3m5eKdt6Mtzx+mlXIw0G/P90B5TNWEqDSQ==", - "requires": { - "@cloudflare/kv-asset-handler": "^0.2.0", - "@netlify/functions": "^1.3.0", - "@rollup/plugin-alias": "^4.0.2", - "@rollup/plugin-commonjs": "^23.0.2", - "@rollup/plugin-inject": "^5.0.2", - "@rollup/plugin-json": "^5.0.1", - "@rollup/plugin-node-resolve": "^15.0.1", - "@rollup/plugin-replace": "^5.0.1", - "@rollup/plugin-wasm": "^6.0.1", - "@rollup/pluginutils": "^5.0.2", - "@vercel/nft": "^0.22.1", - "archiver": "^5.3.1", - "c12": "^1.0.1", - "chalk": "^5.1.2", - "chokidar": "^3.5.3", - "consola": "^2.15.3", - "cookie-es": "^0.5.0", - "defu": "^6.1.1", - "destr": "^1.2.1", - "dot-prop": "^7.2.0", - "esbuild": "^0.15.14", - "escape-string-regexp": "^5.0.0", - "etag": "^1.8.1", - "fs-extra": "^10.1.0", - "globby": "^13.1.2", - "gzip-size": "^7.0.0", - "h3": "^1.0.1", - "hookable": "^5.4.2", - "http-proxy": "^1.18.1", - "is-primitive": "^3.0.1", - "jiti": "^1.16.0", - "klona": "^2.0.5", - "knitwork": "^1.0.0", - "listhen": "^1.0.0", - "mime": "^3.0.0", - "mlly": "^1.0.0", - "mri": "^1.2.0", - "node-fetch-native": "^1.0.1", - "ofetch": "^1.0.0", - "ohash": "^1.0.0", - "pathe": "^1.0.0", - "perfect-debounce": "^0.1.3", - "pkg-types": "^1.0.1", - "pretty-bytes": "^6.0.0", - "radix3": "^1.0.0", - "rollup": "^2.79.1", - "rollup-plugin-terser": "^7.0.2", - "rollup-plugin-visualizer": "^5.8.3", - "scule": "^1.0.0", - "semver": "^7.3.8", - "serve-placeholder": "^2.0.1", - "serve-static": "^1.15.0", - "source-map-support": "^0.5.21", - "std-env": "^3.3.1", - "ufo": "^1.0.0", - "unenv": "^1.0.0", - "unimport": "^1.0.0", - "unstorage": "^1.0.1" - }, - "dependencies": { - "@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - } - }, - "chalk": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz", - "integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==" - }, - "escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" - }, - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "requires": { - "lru-cache": "^6.0.0" - } - } - } - }, - "node-domexception": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==" - }, - "node-fetch": { + "node_modules/sucrase/node_modules/foreground-child": { "version": "3.3.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.0.tgz", - "integrity": "sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==", - "requires": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" - } - }, - "node-fetch-native": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.0.1.tgz", - "integrity": "sha512-VzW+TAk2wE4X9maiKMlT+GsPU4OMmR1U9CrHSmd3DFLn2IcZ9VJ6M6BBugGfYUnPCLSYxXdZy17M0BEJyhUTwg==" - }, - "node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" - }, - "node-gyp-build": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.5.0.tgz", - "integrity": "sha512-2iGbaQBV+ITgCz76ZEjmhUKAKVf7xfY1sRl4UiKQspfZMH2h06SyhNsnSVy50cwkFQDGLyif6m/6uFXHkOZ6rg==" - }, - "node-releases": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", - "integrity": "sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==" - }, - "nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - "requires": { - "abbrev": "1" + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "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==", + "node_modules/sucrase/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", "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" - }, "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" - }, - "normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - }, - "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==", - "requires": { - "path-key": "^3.0.0" + "node_modules/sucrase/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "npmlog": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - "requires": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" + "node_modules/sucrase/node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" } }, - "nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "requires": { - "boolbase": "^1.0.0" + "node_modules/sucrase/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "nuxi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/nuxi/-/nuxi-3.0.0.tgz", - "integrity": "sha512-VWh1kKFffxD2yadZWcQSd6eTf9okXRr7d3HsjLiI4B3Q1/8iKdIUiodGo7X71OZ+gPVnX6Oh/XFzcb7mr+8TbQ==", - "requires": { - "fsevents": "~2.3.2" + "node_modules/superjson": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/superjson/-/superjson-2.2.1.tgz", + "integrity": "sha512-8iGv75BYOa0xRJHK5vRLEjE2H/i4lulTjzpUXic3Eg8akftYjkmQDa8JARQ42rlczXyFR3IeRoeFCc7RxHsYZA==", + "dependencies": { + "copy-anything": "^3.0.2" + }, + "engines": { + "node": ">=16" } }, - "nuxt": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/nuxt/-/nuxt-3.0.0.tgz", - "integrity": "sha512-RNlD78uv04ZiXWmlx9f1tnJfrqsYAWHU+4gbgOTQpIBmQzHWPWiox+fm/1m93iKfEd5sJi9TJUoXX5yBObVZYw==", - "requires": { - "@nuxt/devalue": "^2.0.0", - "@nuxt/kit": "3.0.0", - "@nuxt/schema": "3.0.0", - "@nuxt/telemetry": "^2.1.8", - "@nuxt/ui-templates": "^1.0.0", - "@nuxt/vite-builder": "3.0.0", - "@unhead/ssr": "^1.0.0", - "@vue/reactivity": "^3.2.45", - "@vue/shared": "^3.2.45", - "@vueuse/head": "^1.0.15", - "chokidar": "^3.5.3", - "cookie-es": "^0.5.0", - "defu": "^6.1.1", - "destr": "^1.2.1", - "escape-string-regexp": "^5.0.0", - "estree-walker": "^3.0.1", - "fs-extra": "^10.1.0", - "globby": "^13.1.2", - "h3": "^1.0.1", - "hash-sum": "^2.0.0", - "hookable": "^5.4.2", - "knitwork": "^1.0.0", - "magic-string": "^0.26.7", - "mlly": "^1.0.0", - "nitropack": "^1.0.0", - "nuxi": "3.0.0", - "ofetch": "^1.0.0", - "ohash": "^1.0.0", - "pathe": "^1.0.0", - "perfect-debounce": "^0.1.3", - "scule": "^1.0.0", - "strip-literal": "^1.0.0", - "ufo": "^1.0.0", - "ultrahtml": "^1.0.0", - "unctx": "^2.1.0", - "unenv": "^1.0.0", - "unhead": "^1.0.0", - "unimport": "^1.0.1", - "unplugin": "^1.0.0", - "untyped": "^1.0.0", - "vue": "^3.2.45", - "vue-bundle-renderer": "^1.0.0", - "vue-devtools-stub": "^0.1.0", - "vue-router": "^4.1.6" - }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dependencies": { - "escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" - } + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" } }, - "nuxt-icon": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/nuxt-icon/-/nuxt-icon-0.1.8.tgz", - "integrity": "sha512-oPFlLOZCy80MN+hf49+mBkOIHWVF3sOqZREQZw3qD0N6wGlR15QeRQtKQC8qGeQcc+xvpLQm0GvrdJ8FxFOPYg==", - "dev": true, - "requires": { - "@iconify/vue": "^4.0.1", - "@nuxt/kit": "^3.0.0" + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - }, - "object-inspect": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", - "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==" - }, - "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 + "node_modules/svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==" }, - "object.assign": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", - "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "node_modules/svgo": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", + "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^5.1.0", + "css-tree": "^2.3.1", + "css-what": "^6.1.0", + "csso": "^5.0.5", + "picocolors": "^1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" } }, - "object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "node_modules/synckit": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.1.tgz", + "integrity": "sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==", "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "ofetch": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.0.0.tgz", - "integrity": "sha512-d40aof8czZFSQKJa4+F7Ch3UC5D631cK1TTUoK+iNEut9NoiCL+u0vykl/puYVUS2df4tIQl5upQcolIcEzQjQ==", - "requires": { - "destr": "^1.2.1", - "node-fetch-native": "^1.0.1", - "ufo": "^1.0.0" + "dependencies": { + "@pkgr/core": "^0.1.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" } }, - "ohash": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.0.0.tgz", - "integrity": "sha512-kxSyzq6tt+6EE/xCnD1XaFhCCjUNUaz3X30rJp6mnjGLXAAvuPFqohMdv0aScWzajR45C29HyBaXZ8jXBwnh9A==" - }, - "ohmyfetch": { - "version": "0.4.21", - "resolved": "https://registry.npmjs.org/ohmyfetch/-/ohmyfetch-0.4.21.tgz", - "integrity": "sha512-VG7f/JRvqvBOYvL0tHyEIEG7XHWm7OqIfAs6/HqwWwDfjiJ1g0huIpe5sFEmyb+7hpFa1EGNH2aERWR72tlClw==", - "requires": { - "destr": "^1.2.0", - "node-fetch-native": "^0.1.8", - "ufo": "^0.8.6", - "undici": "^5.12.0" - }, - "dependencies": { - "node-fetch-native": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-0.1.8.tgz", - "integrity": "sha512-ZNaury9r0NxaT2oL65GvdGDy+5PlSaHTovT6JV5tOW07k1TQmgC0olZETa4C9KZg0+6zBr99ctTYa3Utqj9P/Q==" - }, - "ufo": { - "version": "0.8.6", - "resolved": "https://registry.npmjs.org/ufo/-/ufo-0.8.6.tgz", - "integrity": "sha512-fk6CmUgwKCfX79EzcDQQpSCMxrHstvbLswFChHS0Vump+kFkw7nJBfTZoC1j0bOGoY9I7R3n2DGek5ajbcYnOw==" - } + "node_modules/system-architecture": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/system-architecture/-/system-architecture-0.1.0.tgz", + "integrity": "sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "requires": { - "ee-first": "1.1.1" - } + "node_modules/tabbable": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", + "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==", + "dev": true }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "requires": { - "wrappy": "1" + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "engines": { + "node": ">=6" } }, - "onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "requires": { - "mimic-fn": "^2.1.0" + "node_modules/tar": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, - "open": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", - "requires": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, + "node_modules/tar-stream": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", "dependencies": { - "is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - } + "b4a": "^1.6.4", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" } }, - "optionator": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", - "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", - "devOptional": 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" - } + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" }, - "ora": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/ora/-/ora-6.1.2.tgz", - "integrity": "sha512-EJQ3NiP5Xo94wJXIzAyOtSb0QEIAUu7m8t6UZ9krbz0vAJqr92JpcK/lEXg91q6B9pEGqrykkd2EQplnifDSBw==", - "requires": { - "bl": "^5.0.0", - "chalk": "^5.0.0", - "cli-cursor": "^4.0.0", - "cli-spinners": "^2.6.1", - "is-interactive": "^2.0.0", - "is-unicode-supported": "^1.1.0", - "log-symbols": "^5.1.0", - "strip-ansi": "^7.0.1", - "wcwidth": "^1.0.1" + "node_modules/terser": { + "version": "5.31.6", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.6.tgz", + "integrity": "sha512-PQ4DAriWzKj+qgehQ7LK5bQqCFNMmlhjR2PFFLuqGCpuCAauxemVBWwWOxo3UIwWQx8+Pr61Df++r76wDmkQBg==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.10", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.10.tgz", + "integrity": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==", + "dev": true, + "peer": true, "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + "@jridgewell/trace-mapping": "^0.3.20", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.26.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true }, - "chalk": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.1.2.tgz", - "integrity": "sha512-E5CkT4jWURs1Vy5qGJye+XwCkNj7Od3Af7CP6SujMetSMkLs8Do2RWJK5yx1wamHV/op8Rz+9rltjaTQWDnEFQ==" + "esbuild": { + "optional": true }, - "strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "requires": { - "ansi-regex": "^6.0.1" - } + "uglify-js": { + "optional": true } } }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" + "node_modules/terser/node_modules/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==" }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "devOptional": true, - "requires": { - "yocto-queue": "^0.1.0" + "node_modules/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==", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" } }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "devOptional": true, - "requires": { - "p-limit": "^3.0.2" + "node_modules/test-exclude/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "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==" - }, - "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==", - "devOptional": true, - "requires": { - "callsites": "^3.0.0" + "node_modules/test-exclude/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "parse-git-config": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/parse-git-config/-/parse-git-config-3.0.0.tgz", - "integrity": "sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==", - "requires": { - "git-config-path": "^2.0.0", - "ini": "^1.3.5" + "node_modules/test-exclude/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" } }, - "parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "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" + "node_modules/text-decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.1.1.tgz", + "integrity": "sha512-8zll7REEv4GDD3x4/0pW+ppIxSNs7H1J10IKFZsuOMscumCdM2a+toDGLPA3T+1+fLBql4zbt5z83GEQGGV5VA==", + "dependencies": { + "b4a": "^1.6.4" } }, - "parse-path": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", - "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", - "requires": { - "protocols": "^2.0.0" + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "devOptional": true + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "dependencies": { + "any-promise": "^1.0.0" } }, - "parse-url": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", - "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", - "requires": { - "parse-path": "^7.0.0" + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" } }, - "parseurl": { + "node_modules/tiny-invariant": { "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - }, - "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==" - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" - }, - "path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - }, - "path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - }, - "path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - }, - "pathe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.0.0.tgz", - "integrity": "sha512-nPdMG0Pd09HuSsr7QOKUXO2Jr9eqaDiZvDwdyIhNG5SHYujkQHYKDfGQkulBxvbDHz8oHLsTgKN86LSwYzSHAg==" - }, - "perfect-debounce": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-0.1.3.tgz", - "integrity": "sha512-NOT9AcKiDGpnV/HBhI22Str++XWcErO/bALvHCuhv33owZW/CjH8KAFLZDCmu3727sihe0wTxpDhyGc6M8qacQ==" - }, - "picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==" }, - "picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" + "node_modules/tinybench": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz", + "integrity": "sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==" }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" + "node_modules/tinyexec": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.2.0.tgz", + "integrity": "sha512-au8dwv4xKSDR+Fw52csDo3wcDztPdne2oM1o/7LFro4h6bdFmvyUAeAfX40pwDtzHgRFqz1XWaUqgKS2G83/ig==", + "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==", - "requires": { - "find-up": "^4.0.0" - }, + "node_modules/tinyglobby": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.5.tgz", + "integrity": "sha512-Dlqgt6h0QkoHttG53/WGADNh9QhcjCAIZMTERAVhdpmIBEejSuLI9ZmGKWzB7tweBjlk30+s/ofi4SLmBeTYhw==", + "dev": true, "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==", - "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==", - "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==", - "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==", - "requires": { - "p-limit": "^2.2.0" - } - } - } - }, - "pkg-types": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.1.tgz", - "integrity": "sha512-jHv9HB+Ho7dj6ItwppRDDl0iZRYBD0jsakHXtFgoLr+cHSF6xC+QL54sJmWxyGxOLYSHm0afhXhXcQDQqH9z8g==", - "requires": { - "jsonc-parser": "^3.2.0", - "mlly": "^1.0.0", - "pathe": "^1.0.0" + "fdir": "^6.2.0", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" } }, - "pluralize": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", - "integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==", - "dev": true - }, - "postcss": { - "version": "8.4.19", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.19.tgz", - "integrity": "sha512-h+pbPsyhlYj6N2ozBmHhHrs9DzGmbaarbLvWipMRO7RLS+v4onj26MPFXA5OBYFxyqYhUJK456SwDcY9H2/zsA==", - "requires": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.3.0.tgz", + "integrity": "sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ==", + "dev": true, + "peerDependencies": { + "picomatch": "^3 || ^4" }, - "dependencies": { - "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==" + "peerDependenciesMeta": { + "picomatch": { + "optional": true } } }, - "postcss-calc": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", - "requires": { - "postcss-selector-parser": "^6.0.9", - "postcss-value-parser": "^4.2.0" - } - }, - "postcss-colormin": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.0.tgz", - "integrity": "sha512-WdDO4gOFG2Z8n4P8TWBpshnL3JpmNmJwdnfP2gbk2qBA8PWwOYcmjmI/t3CmMeL72a7Hkd+x/Mg9O2/0rD54Pg==", - "requires": { - "browserslist": "^4.16.6", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "postcss-convert-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", - "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", - "requires": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" + "node_modules/tinypool": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-0.6.0.tgz", + "integrity": "sha512-FdswUUo5SxRizcBc6b1GSuLpLjisa8N8qMyYoP3rl+bym+QauhtJP5bvZY1ytt8krKGmMLYIRl36HBZfeAoqhQ==", + "engines": { + "node": ">=14.0.0" } }, - "postcss-discard-comments": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", - "requires": {} - }, - "postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "requires": {} - }, - "postcss-discard-empty": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", - "requires": {} - }, - "postcss-discard-overridden": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", - "requires": {} - }, - "postcss-import": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.0.0.tgz", - "integrity": "sha512-Y20shPQ07RitgBGv2zvkEAu9bqvrD77C9axhj/aA1BQj4czape2MdClCExvB27EwYEJdGgKZBpKanb0t1rK2Kg==", - "requires": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" + "node_modules/tinyspy": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-2.2.1.tgz", + "integrity": "sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==", + "engines": { + "node": ">=14.0.0" } }, - "postcss-import-resolver": { + "node_modules/to-fast-properties": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-import-resolver/-/postcss-import-resolver-2.0.0.tgz", - "integrity": "sha512-y001XYgGvVwgxyxw9J1a5kqM/vtmIQGzx34g0A0Oy44MFcy/ZboZw1hu/iN3VYFjSTRzbvd7zZJJz0Kh0AGkTw==", - "requires": { - "enhanced-resolve": "^4.1.1" - }, - "dependencies": { - "enhanced-resolve": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", - "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" - } - }, - "tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" - } - } - }, - "postcss-merge-longhand": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", - "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", - "requires": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.1" + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" } }, - "postcss-merge-rules": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.3.tgz", - "integrity": "sha512-LbLd7uFC00vpOuMvyZop8+vvhnfRGpp2S+IMQKeuOZZapPRY4SMq5ErjQeHbHsjCUgJkRNrlU+LmxsKIqPKQlA==", - "requires": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" + "node_modules/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==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" } }, - "postcss-minify-font-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", - "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", - "requires": { - "postcss-value-parser": "^4.2.0" + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" } }, - "postcss-minify-gradients": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", - "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", - "requires": { - "colord": "^2.9.1", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "node_modules/tosource": { + "version": "2.0.0-alpha.3", + "resolved": "https://registry.npmjs.org/tosource/-/tosource-2.0.0-alpha.3.tgz", + "integrity": "sha512-KAB2lrSS48y91MzFPFuDg4hLbvDiyTjOVgaK7Erw+5AmZXNq4sFRVn8r6yxSLuNs15PaokrDRpS61ERY9uZOug==", + "dev": true, + "engines": { + "node": ">=10" } }, - "postcss-minify-params": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", - "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", - "requires": { - "browserslist": "^4.21.4", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "node_modules/totalist": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "engines": { + "node": ">=6" } }, - "postcss-minify-selectors": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", - "requires": { - "postcss-selector-parser": "^6.0.5" - } - }, - "postcss-normalize-charset": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", - "requires": {} + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, - "postcss-normalize-display-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", - "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", - "requires": { - "postcss-value-parser": "^4.2.0" + "node_modules/ts-api-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "dev": true, + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" } }, - "postcss-normalize-positions": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", - "requires": { - "postcss-value-parser": "^4.2.0" - } + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "dev": true }, - "postcss-normalize-repeat-style": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", - "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", - "requires": { - "postcss-value-parser": "^4.2.0" + "node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" } }, - "postcss-normalize-string": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", - "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", - "requires": { - "postcss-value-parser": "^4.2.0" + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" } }, - "postcss-normalize-timing-functions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", - "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", - "requires": { - "postcss-value-parser": "^4.2.0" - } + "node_modules/tslib": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.7.0.tgz", + "integrity": "sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==", + "dev": true }, - "postcss-normalize-unicode": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", - "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", - "requires": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" + "node_modules/tsx": { + "version": "4.18.0", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.18.0.tgz", + "integrity": "sha512-a1jaKBSVQkd6yEc1/NI7G6yHFfefIcuf3QJST7ZEyn4oQnxLYrZR5uZAM8UrwUa3Ge8suiZHcNS1gNrEvmobqg==", + "dev": true, + "dependencies": { + "esbuild": "~0.23.0", + "get-tsconfig": "^4.7.5" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" } }, - "postcss-normalize-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", - "requires": { - "normalize-url": "^6.0.1", - "postcss-value-parser": "^4.2.0" + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "devOptional": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" } }, - "postcss-normalize-whitespace": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", - "requires": { - "postcss-value-parser": "^4.2.0" + "node_modules/type-detect": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.1.0.tgz", + "integrity": "sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==", + "engines": { + "node": ">=4" } }, - "postcss-ordered-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", - "requires": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "node_modules/type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "postcss-reduce-initial": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.1.tgz", - "integrity": "sha512-//jeDqWcHPuXGZLoolFrUXBDyuEGbr9S2rMo19bkTIjBQ4PqkaO+oI8wua5BOUxpfi97i3PCoInsiFIEBfkm9w==", - "requires": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" + "node_modules/typed-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz", + "integrity": "sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" } }, - "postcss-reduce-transforms": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", - "requires": { - "postcss-value-parser": "^4.2.0" + "node_modules/typed-array-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz", + "integrity": "sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "postcss-selector-parser": { - "version": "6.0.11", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz", - "integrity": "sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==", - "requires": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "node_modules/typed-array-byte-offset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz", + "integrity": "sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "postcss-svgo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", - "requires": { - "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" + "node_modules/typed-array-length": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.6.tgz", + "integrity": "sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-proto": "^1.0.3", + "is-typed-array": "^1.1.13", + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "postcss-unique-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", - "requires": { - "postcss-selector-parser": "^6.0.5" - } - }, - "postcss-url": { - "version": "10.1.3", - "resolved": "https://registry.npmjs.org/postcss-url/-/postcss-url-10.1.3.tgz", - "integrity": "sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==", - "requires": { - "make-dir": "~3.1.0", - "mime": "~2.5.2", - "minimatch": "~3.0.4", - "xxhashjs": "~0.2.2" - }, - "dependencies": { - "mime": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", - "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" - }, - "minimatch": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", - "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", - "requires": { - "brace-expansion": "^1.1.7" - } - } + "node_modules/typescript": { + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", + "devOptional": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" } }, - "postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + "node_modules/ufo": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.4.tgz", + "integrity": "sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==" }, - "prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "devOptional": true + "node_modules/ultrahtml": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.5.3.tgz", + "integrity": "sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==" }, - "prettier": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz", - "integrity": "sha512-ujppO+MkdPqoVINuDFDRLClm7D78qbDt0/NR+wp5FqEZOoTNAjPHWj17QRhu7geIHJfcNhRk1XVQmF8Bp3ye+g==", + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", "dev": true, - "peer": true + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "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==", + "node_modules/unconfig": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/unconfig/-/unconfig-0.5.5.tgz", + "integrity": "sha512-VQZ5PT9HDX+qag0XdgQi8tJepPhXiR/yVOkn707gJDKo31lGjRilPREiQJ9Z6zd/Ugpv6ZvO5VxVIcatldYcNQ==", "dev": true, - "requires": { - "fast-diff": "^1.1.2" + "dependencies": { + "@antfu/utils": "^0.7.10", + "defu": "^6.1.4", + "importx": "^0.4.3" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "pretty-bytes": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.0.0.tgz", - "integrity": "sha512-6UqkYefdogmzqAZWzJ7laYeJnaXDy2/J+ZqiiMtS7t7OfpXWTlaeGMwX8U6EFvPV/YWWEKRkS8hKS4k60WHTOg==" - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "protocols": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", - "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" - }, - "proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - }, - "prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" + "node_modules/uncrypto": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", + "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==" }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "devOptional": true + "node_modules/uncsrf": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/uncsrf/-/uncsrf-1.1.1.tgz", + "integrity": "sha512-wH9+N3oNdr2XB3egUKxCR26XTVfYywv2STZYtZLIp8votOf0/9b0axA9gpIHdYfgq/Myfh/HS5e0lQ/+27dj9A==" }, - "qs": { - "version": "6.11.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", - "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", - "requires": { - "side-channel": "^1.0.4" + "node_modules/unctx": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unctx/-/unctx-2.3.1.tgz", + "integrity": "sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==", + "dependencies": { + "acorn": "^8.8.2", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.0", + "unplugin": "^1.3.1" } }, - "queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - }, - "radix3": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.0.0.tgz", - "integrity": "sha512-6n3AEXth91ASapMVKiEh2wrbFJmI+NBilrWE0AbiGgfm0xet0QXC8+a3K19r1UVYjUjctUgB053c3V/J6V0kCQ==" + "node_modules/unctx/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dependencies": { + "@types/estree": "^1.0.0" + } }, - "randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "requires": { - "safe-buffer": "^5.1.0" + "node_modules/undici": { + "version": "5.28.4", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.28.4.tgz", + "integrity": "sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==", + "dependencies": { + "@fastify/busboy": "^2.0.0" + }, + "engines": { + "node": ">=14.0" } }, - "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==" + "node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==" }, - "rc9": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.0.0.tgz", - "integrity": "sha512-yVeYJHOpJLOhs3V6RKwz7RPPwPurrx3JjwK264sPgvo/lFdhuUrLien7iSvAO6STVkN0gSMk/MehQNHQhflqZw==", - "requires": { - "defu": "^6.1.1", - "destr": "^1.2.1", - "flat": "^5.0.2" + "node_modules/unenv": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/unenv/-/unenv-1.10.0.tgz", + "integrity": "sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==", + "dependencies": { + "consola": "^3.2.3", + "defu": "^6.1.4", + "mime": "^3.0.0", + "node-fetch-native": "^1.6.4", + "pathe": "^1.1.2" } }, - "read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "requires": { - "pify": "^2.3.0" + "node_modules/unenv/node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" } }, - "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" - }, + "node_modules/unhead": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/unhead/-/unhead-1.10.0.tgz", + "integrity": "sha512-nv75Hvhu0asuD/rbP6b3tSRJUltxmThq/iZU5rLCGEkCqTkFk7ruQGNk+TRtx/RCYqL0R/IzIY9aqvhNOGe3mg==", "dependencies": { - "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 - } + "@unhead/dom": "1.10.0", + "@unhead/schema": "1.10.0", + "@unhead/shared": "1.10.0", + "hookable": "^5.5.3" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "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" + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "engines": { + "node": ">=18" }, - "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" - } - }, - "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 - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "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==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "node_modules/unimport": { + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/unimport/-/unimport-3.11.1.tgz", + "integrity": "sha512-DuB1Uoq01LrrXTScxnwOoMSlTXxyKcULguFxbLrMDFcE/CO0ZWHpEiyhovN0mycPt7K6luAHe8laqvwvuoeUPg==", + "dependencies": { + "@rollup/pluginutils": "^5.1.0", + "acorn": "^8.12.1", + "escape-string-regexp": "^5.0.0", + "estree-walker": "^3.0.3", + "fast-glob": "^3.3.2", + "local-pkg": "^0.5.0", + "magic-string": "^0.30.11", + "mlly": "^1.7.1", + "pathe": "^1.1.2", + "pkg-types": "^1.2.0", + "scule": "^1.3.0", + "strip-literal": "^2.1.0", + "unplugin": "^1.12.2" } }, - "readdir-glob": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.2.tgz", - "integrity": "sha512-6RLVvwJtVwEDfPdn6X6Ille4/lxGl0ATOY4FN/B9nxQcgOazvvI0nodiD19ScKq0PvA/29VpaOQML36o5IzZWA==", - "requires": { - "minimatch": "^5.1.0" + "node_modules/unimport/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "engines": { + "node": ">=12" }, - "dependencies": { - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "requires": { - "balanced-match": "^1.0.0" - } - }, - "minimatch": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", - "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", - "requires": { - "brace-expansion": "^2.0.1" - } - } - } - }, - "readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "requires": { - "picomatch": "^2.2.1" - } - }, - "redis-errors": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz", - "integrity": "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==" - }, - "redis-parser": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz", - "integrity": "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==", - "requires": { - "redis-errors": "^1.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "regexp-tree": { - "version": "0.1.24", - "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.24.tgz", - "integrity": "sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw==", - "dev": true - }, - "regexp.prototype.flags": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", - "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "functions-have-names": "^1.2.2" + "node_modules/unimport/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dependencies": { + "@types/estree": "^1.0.0" } }, - "regexpp": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", - "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", - "devOptional": true - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" - }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - }, - "resolve": { - "version": "1.22.1", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", - "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", - "requires": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" + "node_modules/unimport/node_modules/local-pkg": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", + "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", + "dependencies": { + "mlly": "^1.4.2", + "pkg-types": "^1.0.3" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "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==", - "devOptional": true - }, - "restore-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", - "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", - "requires": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "engines": { + "node": ">= 10.0.0" } }, - "reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - }, - "rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "requires": { - "glob": "^7.1.3" - }, + "node_modules/unocss": { + "version": "0.62.3", + "resolved": "https://registry.npmjs.org/unocss/-/unocss-0.62.3.tgz", + "integrity": "sha512-CLS6+JIlBobe/iPTz07pehyGDP8VqGJsiE+ZZ3Xkgib3hw76nCqAQF/4mJ8jVoV4C8KvGyVxmHaSSCFOkWmmZg==", + "dev": true, "dependencies": { - "glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } + "@unocss/astro": "0.62.3", + "@unocss/cli": "0.62.3", + "@unocss/core": "0.62.3", + "@unocss/extractor-arbitrary-variants": "0.62.3", + "@unocss/postcss": "0.62.3", + "@unocss/preset-attributify": "0.62.3", + "@unocss/preset-icons": "0.62.3", + "@unocss/preset-mini": "0.62.3", + "@unocss/preset-tagify": "0.62.3", + "@unocss/preset-typography": "0.62.3", + "@unocss/preset-uno": "0.62.3", + "@unocss/preset-web-fonts": "0.62.3", + "@unocss/preset-wind": "0.62.3", + "@unocss/reset": "0.62.3", + "@unocss/transformer-attributify-jsx": "0.62.3", + "@unocss/transformer-attributify-jsx-babel": "0.62.3", + "@unocss/transformer-compile-class": "0.62.3", + "@unocss/transformer-directives": "0.62.3", + "@unocss/transformer-variant-group": "0.62.3", + "@unocss/vite": "0.62.3" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "@unocss/webpack": "0.62.3", + "vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0" + }, + "peerDependenciesMeta": { + "@unocss/webpack": { + "optional": true + }, + "vite": { + "optional": true } } }, - "rollup": { - "version": "2.79.1", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-2.79.1.tgz", - "integrity": "sha512-uKxbd0IhMZOhjAiD5oAFp7BqvkA4Dv47qpOCtaNvng4HBwdbWtdOh8f5nZNuk2rp51PMGk3bzfWu5oayNEuYnw==", - "requires": { - "fsevents": "~2.3.2" - } - }, - "rollup-plugin-terser": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz", - "integrity": "sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ==", - "requires": { - "@babel/code-frame": "^7.10.4", - "jest-worker": "^26.2.1", - "serialize-javascript": "^4.0.0", - "terser": "^5.0.0" + "node_modules/unplugin": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.12.2.tgz", + "integrity": "sha512-bEqQxeC7rxtxPZ3M5V4Djcc4lQqKPgGe3mAWZvxcSmX5jhGxll19NliaRzQSQPrk4xJZSGniK3puLWpRuZN7VQ==", + "dependencies": { + "acorn": "^8.12.1", + "chokidar": "^3.6.0", + "webpack-sources": "^3.2.3", + "webpack-virtual-modules": "^0.6.2" + }, + "engines": { + "node": ">=14.0.0" } }, - "rollup-plugin-visualizer": { - "version": "5.8.3", - "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.8.3.tgz", - "integrity": "sha512-QGJk4Bqe4AOat5AjipOh8esZH1nck5X2KFpf4VytUdSUuuuSwvIQZjMGgjcxe/zXexltqaXp5Vx1V3LmnQH15Q==", - "requires": { - "open": "^8.4.0", - "source-map": "^0.7.4", - "yargs": "^17.5.1" - }, + "node_modules/unplugin-vue-router": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/unplugin-vue-router/-/unplugin-vue-router-0.7.0.tgz", + "integrity": "sha512-ddRreGq0t5vlSB7OMy4e4cfU1w2AwBQCwmvW3oP/0IHQiokzbx4hd3TpwBu3eIAFVuhX2cwNQwp1U32UybTVCw==", "dependencies": { - "source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" + "@babel/types": "^7.22.19", + "@rollup/pluginutils": "^5.0.4", + "@vue-macros/common": "^1.8.0", + "ast-walker-scope": "^0.5.0", + "chokidar": "^3.5.3", + "fast-glob": "^3.3.1", + "json5": "^2.2.3", + "local-pkg": "^0.4.3", + "mlly": "^1.4.2", + "pathe": "^1.1.1", + "scule": "^1.0.0", + "unplugin": "^1.5.0", + "yaml": "^2.3.2" + }, + "peerDependencies": { + "vue-router": "^4.1.0" + }, + "peerDependenciesMeta": { + "vue-router": { + "optional": true } } }, - "rollup-pluginutils": { - "version": "2.8.2", - "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", - "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", - "requires": { - "estree-walker": "^0.6.1" + "node_modules/unstorage": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.10.2.tgz", + "integrity": "sha512-cULBcwDqrS8UhlIysUJs2Dk0Mmt8h7B0E6mtR+relW9nZvsf/u4SkAYyNliPiPW7XtFNb5u3IUMkxGxFTTRTgQ==", + "dependencies": { + "anymatch": "^3.1.3", + "chokidar": "^3.6.0", + "destr": "^2.0.3", + "h3": "^1.11.1", + "listhen": "^1.7.2", + "lru-cache": "^10.2.0", + "mri": "^1.2.0", + "node-fetch-native": "^1.6.2", + "ofetch": "^1.3.3", + "ufo": "^1.4.0" }, - "dependencies": { - "estree-walker": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", - "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" + "peerDependencies": { + "@azure/app-configuration": "^1.5.0", + "@azure/cosmos": "^4.0.0", + "@azure/data-tables": "^13.2.2", + "@azure/identity": "^4.0.1", + "@azure/keyvault-secrets": "^4.8.0", + "@azure/storage-blob": "^12.17.0", + "@capacitor/preferences": "^5.0.7", + "@netlify/blobs": "^6.5.0 || ^7.0.0", + "@planetscale/database": "^1.16.0", + "@upstash/redis": "^1.28.4", + "@vercel/kv": "^1.0.1", + "idb-keyval": "^6.2.1", + "ioredis": "^5.3.2" + }, + "peerDependenciesMeta": { + "@azure/app-configuration": { + "optional": true + }, + "@azure/cosmos": { + "optional": true + }, + "@azure/data-tables": { + "optional": true + }, + "@azure/identity": { + "optional": true + }, + "@azure/keyvault-secrets": { + "optional": true + }, + "@azure/storage-blob": { + "optional": true + }, + "@capacitor/preferences": { + "optional": true + }, + "@netlify/blobs": { + "optional": true + }, + "@planetscale/database": { + "optional": true + }, + "@upstash/redis": { + "optional": true + }, + "@vercel/kv": { + "optional": true + }, + "idb-keyval": { + "optional": true + }, + "ioredis": { + "optional": 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==" + "node_modules/unstorage/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" }, - "run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "requires": { - "queue-microtask": "^1.2.2" + "node_modules/untun": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/untun/-/untun-0.1.3.tgz", + "integrity": "sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==", + "dependencies": { + "citty": "^0.1.5", + "consola": "^3.2.3", + "pathe": "^1.1.1" + }, + "bin": { + "untun": "bin/untun.mjs" } }, - "rxjs": { - "version": "7.5.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.7.tgz", - "integrity": "sha512-z9MzKh/UcOqB3i20H6rtrlaE/CgjLOvheWK/9ILrbhROGTweAi1BaFsTT9FbwZi5Trr1qNRs+MXkhmR06awzQA==", - "requires": { - "tslib": "^2.1.0" + "node_modules/untyped": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/untyped/-/untyped-1.4.2.tgz", + "integrity": "sha512-nC5q0DnPEPVURPhfPQLahhSTnemVtPzdx7ofiRxXpOB2SYnb3MfdU3DVGyJdS8Lx+tBWeAePO8BfU/3EgksM7Q==", + "dependencies": { + "@babel/core": "^7.23.7", + "@babel/standalone": "^7.23.8", + "@babel/types": "^7.23.6", + "defu": "^6.1.4", + "jiti": "^1.21.0", + "mri": "^1.2.0", + "scule": "^1.2.0" + }, + "bin": { + "untyped": "dist/cli.mjs" } }, - "safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + "node_modules/unwasm": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/unwasm/-/unwasm-0.3.9.tgz", + "integrity": "sha512-LDxTx/2DkFURUd+BU1vUsF/moj0JsoTvl+2tcg2AUOiEzVturhGGx17/IMgGvKUYdZwr33EJHtChCJuhu9Ouvg==", + "dependencies": { + "knitwork": "^1.0.0", + "magic-string": "^0.30.8", + "mlly": "^1.6.1", + "pathe": "^1.1.2", + "pkg-types": "^1.0.3", + "unplugin": "^1.10.0" + } }, - "safe-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-2.1.1.tgz", - "integrity": "sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A==", - "dev": true, - "requires": { - "regexp-tree": "~0.1.1" + "node_modules/upath": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", + "engines": { + "node": ">=4", + "yarn": "*" } }, - "safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" + "node_modules/update-browserslist-db": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz", + "integrity": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.2", + "picocolors": "^1.0.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" } }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "node_modules/uqr": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/uqr/-/uqr-0.1.2.tgz", + "integrity": "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==" }, - "sass": { - "version": "1.56.1", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.56.1.tgz", - "integrity": "sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==", - "requires": { - "chokidar": ">=3.0.0 <4.0.0", - "immutable": "^4.0.0", - "source-map-js": ">=0.6.2 <2.0.0" + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "devOptional": true, + "dependencies": { + "punycode": "^2.1.0" } }, - "scule": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/scule/-/scule-1.0.0.tgz", - "integrity": "sha512-4AsO/FrViE/iDNEPaAQlb77tf0csuq27EsVpy6ett584EcRTp6pTDLoGWVxCD77y5iU5FauOvhsI4o1APwPoSQ==" + "node_modules/urlpattern-polyfill": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz", + "integrity": "sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==" }, - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" }, - "send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "requires": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" + "node_modules/v-lazy-show": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/v-lazy-show/-/v-lazy-show-0.2.4.tgz", + "integrity": "sha512-Lx9Str2i+HTh+zGzs9O3YyhGAZOAAfU+6MUUPcQPPiPxQO1sHBEv9sH3MO9bPc4T09gsjsS2+sbaCWQ1MdhpJQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" }, - "dependencies": { - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "requires": { - "ms": "2.0.0" - }, - "dependencies": { - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - }, - "ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } + "peerDependencies": { + "@vue/compiler-core": "^3.3" } }, - "serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", - "requires": { - "randombytes": "^2.1.0" + "node_modules/v8-to-istanbul": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", + "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" } }, - "serve-placeholder": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/serve-placeholder/-/serve-placeholder-2.0.1.tgz", - "integrity": "sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==", - "requires": { - "defu": "^6.0.0" + "node_modules/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, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" } }, - "serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" + "node_modules/vite": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.3.tgz", + "integrity": "sha512-kQL23kMeX92v3ph7IauVkXkikdDRsYMGTVl5KY2E9OY4ONLvkHf04MDTbnfo6NKxZiDLWzVpP5oTa8hQD8U3dg==", + "dependencies": { + "esbuild": "^0.18.10", + "postcss": "^8.4.27", + "rollup": "^3.27.1" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } } }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" + "node_modules/vite-hot-client": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/vite-hot-client/-/vite-hot-client-0.2.3.tgz", + "integrity": "sha512-rOGAV7rUlUHX89fP2p2v0A2WWvV3QMX2UYq0fRqsWSvFvev4atHWqjwGoKaZT1VTKyLGk533ecu3eyd0o59CAg==", + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vite": "^2.6.0 || ^3.0.0 || ^4.0.0 || ^5.0.0-0" + } }, - "setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + "node_modules/vite-node": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-1.6.0.tgz", + "integrity": "sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.4", + "pathe": "^1.1.1", + "picocolors": "^1.0.0", + "vite": "^5.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + } }, - "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==", - "requires": { - "shebang-regex": "^3.0.0" + "node_modules/vite-node/node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" } }, - "shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + "node_modules/vite-node/node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } }, - "side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", - "requires": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "node_modules/vite-node/node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" } }, - "signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + "node_modules/vite-node/node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } }, - "slash": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", - "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" + "node_modules/vite-node/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "node_modules/vite-node/node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } }, - "source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==" + "node_modules/vite-node/node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } }, - "source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "node_modules/vite-node/node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" } }, - "sourcemap-codec": { - "version": "1.4.8", - "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", - "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + "node_modules/vite-node/node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "spdx-correct": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", - "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", - "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "node_modules/vite-node/node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "spdx-exceptions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", - "dev": true + "node_modules/vite-node/node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "node_modules/vite-node/node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "spdx-license-ids": { - "version": "3.0.12", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.12.tgz", - "integrity": "sha512-rr+VVSXtRhO4OHbXUiAF7xW3Bo9DuuF6C5jH+q/x15j2jniycgKbxU09Hr0WqlSLUs4i4ltHGXqTe7VHclYWyA==", - "dev": true + "node_modules/vite-node/node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + "node_modules/vite-node/node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "standard-as-callback": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz", - "integrity": "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==" + "node_modules/vite-node/node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" + "node_modules/vite-node/node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "std-env": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.3.1.tgz", - "integrity": "sha512-3H20QlwQsSm2OvAxWIYhs+j01MzzqwMwGiiO1NQaJYZgJZFPuAbf95/DiKRBSTYIJ2FeGUc+B/6mPGcWP9dO3Q==" + "node_modules/vite-node/node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "streamsearch": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", - "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==" + "node_modules/vite-node/node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } }, - "string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "requires": { - "safe-buffer": "~5.2.0" + "node_modules/vite-node/node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" } }, - "string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "requires": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" + "node_modules/vite-node/node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/vite-node/node_modules/vite": { + "version": "5.4.2", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.2.tgz", + "integrity": "sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.41", + "rollup": "^4.20.0" }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-plugin-checker": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/vite-plugin-checker/-/vite-plugin-checker-0.6.4.tgz", + "integrity": "sha512-2zKHH5oxr+ye43nReRbC2fny1nyARwhxdm0uNYp/ERy4YvU9iZpNOsueoi/luXw5gnpqRSvjcEPxXbS153O2wA==", "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" + "@babel/code-frame": "^7.12.13", + "ansi-escapes": "^4.3.0", + "chalk": "^4.1.1", + "chokidar": "^3.5.1", + "commander": "^8.0.0", + "fast-glob": "^3.2.7", + "fs-extra": "^11.1.0", + "npm-run-path": "^4.0.1", + "semver": "^7.5.0", + "strip-ansi": "^6.0.0", + "tiny-invariant": "^1.1.0", + "vscode-languageclient": "^7.0.0", + "vscode-languageserver": "^7.0.0", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-uri": "^3.0.2" + }, + "engines": { + "node": ">=14.16" + }, + "peerDependencies": { + "eslint": ">=7", + "meow": "^9.0.0", + "optionator": "^0.9.1", + "stylelint": ">=13", + "typescript": "*", + "vite": ">=2.0.0", + "vls": "*", + "vti": "*", + "vue-tsc": ">=1.3.9" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "meow": { + "optional": true + }, + "optionator": { + "optional": true + }, + "stylelint": { + "optional": true + }, + "typescript": { + "optional": true + }, + "vls": { + "optional": true + }, + "vti": { + "optional": true }, - "strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "requires": { - "ansi-regex": "^6.0.1" - } + "vue-tsc": { + "optional": true } } }, - "string.prototype.trimend": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", - "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - } - }, - "string.prototype.trimstart": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", - "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "node_modules/vite-plugin-checker/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "requires": { - "ansi-regex": "^5.0.1" + "node_modules/vite-plugin-checker/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "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==" - }, - "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" + "node_modules/vite-plugin-checker/node_modules/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==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.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==", - "devOptional": true + "node_modules/vite-plugin-checker/node_modules/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==" }, - "strip-literal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-1.0.0.tgz", - "integrity": "sha512-5o4LsH1lzBzO9UFH63AJ2ad2/S2AVx6NtjOcaz+VTT2h1RiRvbipW72z8M/lxEhcPHDBQwpDrnTF7sXy/7OwCQ==", - "requires": { - "acorn": "^8.8.1" + "node_modules/vite-plugin-checker/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "engines": { + "node": ">= 12" } }, - "stylehacks": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", - "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", - "requires": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" + "node_modules/vite-plugin-checker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" } }, - "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" + "node_modules/vite-plugin-checker/node_modules/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==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" } }, - "supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - }, - "svg-tags": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==" - }, - "svgo": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", - "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", - "requires": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^4.1.3", - "css-tree": "^1.1.3", - "csso": "^4.2.0", - "picocolors": "^1.0.0", - "stable": "^0.1.8" + "node_modules/vite-plugin-checker/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "synckit": { - "version": "0.8.4", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.4.tgz", - "integrity": "sha512-Dn2ZkzMdSX827QbowGbU/4yjWuvNaCoScLLoMo/yKbu+P4GBR6cRGKZH27k6a9bRzdqcyd1DE96pQtQ6uNkmyw==", - "dev": true, - "requires": { - "@pkgr/utils": "^2.3.1", - "tslib": "^2.4.0" + "node_modules/vite-plugin-checker/node_modules/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==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "tapable": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", - "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" - }, - "tar": { - "version": "4.4.19", - "resolved": "https://registry.npmjs.org/tar/-/tar-4.4.19.tgz", - "integrity": "sha512-a20gEsvHnWe0ygBY8JbxoM4w3SJdhc7ZAuxkLqh+nvNQN2IOt0B5lLgM490X5Hl8FF0dl0tOf2ewFYAlIFgzVA==", - "requires": { - "chownr": "^1.1.4", - "fs-minipass": "^1.2.7", - "minipass": "^2.9.0", - "minizlib": "^1.3.3", - "mkdirp": "^0.5.5", - "safe-buffer": "^5.2.1", - "yallist": "^3.1.1" - } - }, - "tar-stream": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", - "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", - "requires": { - "bl": "^4.0.3", - "end-of-stream": "^1.4.1", - "fs-constants": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.1.1" - }, - "dependencies": { - "bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "requires": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "requires": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } + "node_modules/vite-plugin-inspect": { + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/vite-plugin-inspect/-/vite-plugin-inspect-0.8.7.tgz", + "integrity": "sha512-/XXou3MVc13A5O9/2Nd6xczjrUwt7ZyI9h8pTnUMkr5SshLcb0PJUOVq2V+XVkdeU4njsqAtmK87THZuO2coGA==", + "dependencies": { + "@antfu/utils": "^0.7.10", + "@rollup/pluginutils": "^5.1.0", + "debug": "^4.3.6", + "error-stack-parser-es": "^0.1.5", + "fs-extra": "^11.2.0", + "open": "^10.1.0", + "perfect-debounce": "^1.0.0", + "picocolors": "^1.0.1", + "sirv": "^2.0.4" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vite": "^3.1.0 || ^4.0.0 || ^5.0.0-0" + }, + "peerDependenciesMeta": { + "@nuxt/kit": { + "optional": true } } }, - "terser": { - "version": "5.15.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.15.1.tgz", - "integrity": "sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw==", - "requires": { - "@jridgewell/source-map": "^0.3.2", - "acorn": "^8.5.0", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" + "node_modules/vite-plugin-inspect/node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "engines": { + "node": ">=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==" - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "text-table": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", - "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", - "devOptional": true - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - }, - "tiny-glob": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/tiny-glob/-/tiny-glob-0.2.9.tgz", - "integrity": "sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==", - "dev": true, - "requires": { - "globalyzer": "0.1.0", - "globrex": "^0.1.2" + "node_modules/vite-plugin-inspect/node_modules/open": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz", + "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", + "dependencies": { + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^3.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "tiny-invariant": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", - "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==" - }, - "tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "requires": { - "os-tmpdir": "~1.0.2" + "node_modules/vite-plugin-vue-inspector": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-5.1.3.tgz", + "integrity": "sha512-pMrseXIDP1Gb38mOevY+BvtNGNqiqmqa2pKB99lnLsADQww9w9xMbAfT4GB6RUoaOkSPrtlXqpq2Fq+Dj2AgFg==", + "dependencies": { + "@babel/core": "^7.23.0", + "@babel/plugin-proposal-decorators": "^7.23.0", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.22.15", + "@vue/babel-plugin-jsx": "^1.1.5", + "@vue/compiler-dom": "^3.3.4", + "kolorist": "^1.8.0", + "magic-string": "^0.30.4" + }, + "peerDependencies": { + "vite": "^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0" } }, - "to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" + "node_modules/vite-plugin-vuetify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/vite-plugin-vuetify/-/vite-plugin-vuetify-1.0.2.tgz", + "integrity": "sha512-MubIcKD33O8wtgQXlbEXE7ccTEpHZ8nPpe77y9Wy3my2MWw/PgehP9VqTp92BLqr0R1dSL970Lynvisx3UxBFw==", + "dependencies": { + "@vuetify/loader-shared": "^1.7.1", + "debug": "^4.3.3", + "upath": "^2.0.1" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "vite": "^2.7.0 || ^3.0.0 || ^4.0.0", + "vuetify": "^3.0.0-beta.4" + } }, - "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==", - "requires": { - "is-number": "^7.0.0" + "node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" } }, - "toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" + "node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } }, - "tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + "node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } }, - "tsconfig-paths": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", - "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", - "dev": true, - "requires": { - "@types/json5": "^0.0.29", - "json5": "^1.0.1", - "minimist": "^1.2.6", - "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" - } - } + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" } }, - "tslib": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz", - "integrity": "sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==" + "node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } }, - "tsutils": { - "version": "3.21.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", - "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", - "dev": true, - "requires": { - "tslib": "^1.8.1" - }, - "dependencies": { - "tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", - "dev": true - } + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" } }, - "type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "devOptional": true, - "requires": { - "prelude-ls": "^1.2.1" + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" } }, - "type-fest": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.2.0.tgz", - "integrity": "sha512-Il3wdLRzWvbAEtocgxGQA9YOoRVeVUGOMBtel5LdEpNeEAol6GJTLw8GbX6Z8EIMfvfhoOXs2bwOijtAZdK5og==" - }, - "typescript": { - "version": "4.9.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.4.tgz", - "integrity": "sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==", - "devOptional": true - }, - "ufo": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.0.0.tgz", - "integrity": "sha512-DRty0ZBNlJ2R59y4mEupJRKLbkLQsc4qtxjpQv78AwEDuBkaUogMc2LkeqW3HddFlw6NwnXYfdThEZOiNgkmmQ==" - }, - "ultrahtml": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.0.1.tgz", - "integrity": "sha512-VDt8gmBR5DPrsfdLS4GQqncojcsLTKMW6iHKVN9l6TohU5bdn/OPv8AmV/0/PBR7Z3qBmMpJHqxRdQFaFA8B9g==" - }, - "unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dev": true, - "requires": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" + "node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "cpu": [ + "arm" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "unctx": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unctx/-/unctx-2.1.0.tgz", - "integrity": "sha512-Q3UdS5IAlVRIWsWDd8Rr9g2zqBAZaecBgQ+XXFiKbZzovDMMTEU+Ki0SAVf/ZgWsoeG0/c1kzO2/k6BVhbkUHw==", - "requires": { - "acorn": "^8.8.1", - "estree-walker": "^3.0.1", - "magic-string": "^0.26.7", - "unplugin": "^1.0.0" + "node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "undici": { - "version": "5.12.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-5.12.0.tgz", - "integrity": "sha512-zMLamCG62PGjd9HHMpo05bSLvvwWOZgGeiWlN/vlqu3+lRo3elxktVGEyLMX+IO7c2eflLjcW74AlkhEZm15mg==", - "requires": { - "busboy": "^1.6.0" + "node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "unenv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unenv/-/unenv-1.0.0.tgz", - "integrity": "sha512-vlyi2Rzj4CNlA1JsEXufX+ItkGr3Z5DfLzKniYEneMlBVtuxS+57f1LwTPj2eiBPSPaGHMUVzEnjSCGE7l8JQg==", - "requires": { - "defu": "^6.1.1", - "mime": "^3.0.0", - "node-fetch-native": "^1.0.1", - "pathe": "^1.0.0" + "node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "cpu": [ + "loong64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "unhead": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/unhead/-/unhead-1.0.4.tgz", - "integrity": "sha512-d6qQR9fOjbi287DwEZyqECdHny7/z/1hpaARyhSj/zT2vScIsafWSlSJEpLiJQ/LrjhK7LQeSpgZi/cUYllzBA==", - "requires": { - "@unhead/dom": "1.0.4", - "@unhead/schema": "1.0.4", - "hookable": "^5.4.2" + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "cpu": [ + "mips64el" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "unimport": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unimport/-/unimport-1.0.1.tgz", - "integrity": "sha512-SEPKl3uyqUvi6c0MnyCmUF9H07CuC9j9p2p33F03LmegU0sxjpnjL0fLKAhh7BTfcKaJKj+1iOiAFtg7P3m5mQ==", - "requires": { - "@rollup/pluginutils": "^5.0.2", - "escape-string-regexp": "^5.0.0", - "fast-glob": "^3.2.12", - "local-pkg": "^0.4.2", - "magic-string": "^0.26.7", - "mlly": "^1.0.0", - "pathe": "^1.0.0", - "pkg-types": "^1.0.1", - "scule": "^1.0.0", - "strip-literal": "^1.0.0", - "unplugin": "^1.0.0" - }, - "dependencies": { - "@rollup/pluginutils": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.0.2.tgz", - "integrity": "sha512-pTd9rIsP92h+B6wWwFbW8RkZv4hiR/xKsqre4SIuAOaOEQRxi0lqLke9k2/7WegC85GgUs9pjmOjCUi3In4vwA==", - "requires": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^2.3.1" - } - }, - "escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" - }, - "estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - } + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "cpu": [ + "ppc64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "universalify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" - }, - "unplugin": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.0.0.tgz", - "integrity": "sha512-H5UnBUxfhTXBXGo2AwKsl0UaLSHzSNDZNehPQSgdhVfO/t+XAS1Yoj3vmLrrlBrS9ZwtH5tejbX/TCp5DcyCKg==", - "requires": { - "acorn": "^8.8.1", - "chokidar": "^3.5.3", - "webpack-sources": "^3.2.3", - "webpack-virtual-modules": "^0.4.6" + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "cpu": [ + "riscv64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "unstorage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.0.1.tgz", - "integrity": "sha512-J1c4b8K2KeihHrQtdgl/ybIapArUbPaPb+TyJy/nGSauDwDYqciZsEKdkee568P3c8SSH4TIgnGRHDWMPGw+Lg==", - "requires": { - "anymatch": "^3.1.2", - "chokidar": "^3.5.3", - "destr": "^1.2.1", - "h3": "^1.0.1", - "ioredis": "^5.2.4", - "listhen": "^1.0.0", - "mkdir": "^0.0.2", - "mri": "^1.2.0", - "ofetch": "^1.0.0", - "ufo": "^1.0.0", - "ws": "^8.11.0" + "node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "cpu": [ + "s390x" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "untyped": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/untyped/-/untyped-1.0.0.tgz", - "integrity": "sha512-aBeR3Z51038d7zVzsNShYEdO7u/VCp5R17fxpPXlD2QvG9g6uVJ+JM+zMJ7KFPIt1BNf3I6bU6PhAlsAFkIfdA==", - "requires": { - "@babel/core": "^7.20.2", - "@babel/standalone": "^7.20.4", - "@babel/types": "^7.20.2", - "scule": "^1.0.0" + "node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "upath": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", - "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } }, - "update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", - "requires": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" } }, - "uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "devOptional": true, - "requires": { - "punycode": "^2.1.0" + "node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" } }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + "node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "cpu": [ + "arm64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } }, - "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" + "node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "cpu": [ + "ia32" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "vite": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/vite/-/vite-3.2.4.tgz", - "integrity": "sha512-Z2X6SRAffOUYTa+sLy3NQ7nlHFU100xwanq1WDwqaiFiCe+25zdxP1TfCS5ojPV2oDDcXudHIoPnI1Z/66B7Yw==", - "requires": { - "esbuild": "^0.15.9", - "fsevents": "~2.3.2", - "postcss": "^8.4.18", - "resolve": "^1.22.1", - "rollup": "^2.79.1" + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "cpu": [ + "x64" + ], + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "vite-node": { - "version": "0.25.3", - "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.25.3.tgz", - "integrity": "sha512-0TyDFASTLJUOPRE5e5isyXXgM/fbTD6D37NKduk718l+Ih9FSwqaaHT5f0pIkJMXzyYT6zo4b4FA6pnGdoky3A==", - "requires": { - "debug": "^4.3.4", - "mlly": "^1.0.0", - "pathe": "^0.2.0", - "source-map": "^0.6.1", - "source-map-support": "^0.5.21", - "vite": "^3.0.0" + "node_modules/vite/node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" }, - "dependencies": { - "pathe": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-0.2.0.tgz", - "integrity": "sha512-sTitTPYnn23esFR3RlqYBWn4c45WGeLcsKzQiUpXJAyfcWkolvlYpV8FLo7JishK946oQwMFUCHXQ9AjGPKExw==" - } + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" + } + }, + "node_modules/vite/node_modules/rollup": { + "version": "3.29.4", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", + "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "vite-plugin-checker": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/vite-plugin-checker/-/vite-plugin-checker-0.5.1.tgz", - "integrity": "sha512-NFiO1PyK9yGuaeSnJ7Whw9fnxLc1AlELnZoyFURnauBYhbIkx9n+PmIXxSFUuC9iFyACtbJQUAEuQi6yHs2Adg==", - "requires": { - "@babel/code-frame": "^7.12.13", - "ansi-escapes": "^4.3.0", - "chalk": "^4.1.1", - "chokidar": "^3.5.1", - "commander": "^8.0.0", - "fast-glob": "^3.2.7", - "lodash.debounce": "^4.0.8", - "lodash.pick": "^4.4.0", - "npm-run-path": "^4.0.1", - "strip-ansi": "^6.0.0", - "tiny-invariant": "^1.1.0", - "vscode-languageclient": "^7.0.0", - "vscode-languageserver": "^7.0.0", - "vscode-languageserver-textdocument": "^1.0.1", - "vscode-uri": "^3.0.2" - }, + "node_modules/vitest": { + "version": "0.33.0", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-0.33.0.tgz", + "integrity": "sha512-1CxaugJ50xskkQ0e969R/hW47za4YXDUfWJDxip1hwbnhUjYolpfUn2AMOulqG/Dtd9WYAtkHmM/m3yKVrEejQ==", "dependencies": { - "ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "requires": { - "type-fest": "^0.21.3" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "requires": { - "color-convert": "^2.0.1" - } + "@types/chai": "^4.3.5", + "@types/chai-subset": "^1.3.3", + "@types/node": "*", + "@vitest/expect": "0.33.0", + "@vitest/runner": "0.33.0", + "@vitest/snapshot": "0.33.0", + "@vitest/spy": "0.33.0", + "@vitest/utils": "0.33.0", + "acorn": "^8.9.0", + "acorn-walk": "^8.2.0", + "cac": "^6.7.14", + "chai": "^4.3.7", + "debug": "^4.3.4", + "local-pkg": "^0.4.3", + "magic-string": "^0.30.1", + "pathe": "^1.1.1", + "picocolors": "^1.0.0", + "std-env": "^3.3.3", + "strip-literal": "^1.0.1", + "tinybench": "^2.5.0", + "tinypool": "^0.6.0", + "vite": "^3.0.0 || ^4.0.0", + "vite-node": "0.33.0", + "why-is-node-running": "^2.2.2" + }, + "bin": { + "vitest": "vitest.mjs" + }, + "engines": { + "node": ">=v14.18.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" + }, + "peerDependencies": { + "@edge-runtime/vm": "*", + "@vitest/browser": "*", + "@vitest/ui": "*", + "happy-dom": "*", + "jsdom": "*", + "playwright": "*", + "safaridriver": "*", + "webdriverio": "*" + }, + "peerDependenciesMeta": { + "@edge-runtime/vm": { + "optional": true }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } + "@vitest/browser": { + "optional": 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==", - "requires": { - "color-name": "~1.1.4" - } + "@vitest/ui": { + "optional": 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==" + "happy-dom": { + "optional": true }, - "commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" + "jsdom": { + "optional": 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==" + "playwright": { + "optional": 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==", - "requires": { - "has-flag": "^4.0.0" - } + "safaridriver": { + "optional": true }, - "type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" + "webdriverio": { + "optional": true } } }, - "vite-plugin-vuetify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/vite-plugin-vuetify/-/vite-plugin-vuetify-1.0.0.tgz", - "integrity": "sha512-30+W6H//wjOegKCha4wQ3IS+JyXDE6IayL5cK5S4IrM7WIceV/WitnxljbPZHER+Jyl3BGIuYV6nofjMOfRO1g==", - "requires": { - "@vuetify/loader-shared": "^1.7.0", - "debug": "^4.3.3", - "upath": "^2.0.1" + "node_modules/vitest/node_modules/strip-literal": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-1.3.0.tgz", + "integrity": "sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==", + "dependencies": { + "acorn": "^8.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/vitest/node_modules/vite-node": { + "version": "0.33.0", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.33.0.tgz", + "integrity": "sha512-19FpHYbwWWxDr73ruNahC+vtEdza52kA90Qb3La98yZ0xULqV8A5JLNPUff0f5zID4984tW7l3DH2przTJUZSw==", + "dependencies": { + "cac": "^6.7.14", + "debug": "^4.3.4", + "mlly": "^1.4.0", + "pathe": "^1.1.1", + "picocolors": "^1.0.0", + "vite": "^3.0.0 || ^4.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" + }, + "engines": { + "node": ">=v14.18.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" } }, - "vscode-jsonrpc": { + "node_modules/vscode-jsonrpc": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0.tgz", - "integrity": "sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==" + "integrity": "sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==", + "engines": { + "node": ">=8.0.0 || >=10.0.0" + } }, - "vscode-languageclient": { + "node_modules/vscode-languageclient": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-7.0.0.tgz", "integrity": "sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==", - "requires": { + "dependencies": { "minimatch": "^3.0.4", "semver": "^7.3.4", "vscode-languageserver-protocol": "3.16.0" }, + "engines": { + "vscode": "^1.52.0" + } + }, + "node_modules/vscode-languageclient/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dependencies": { - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "requires": { - "lru-cache": "^6.0.0" - } - } + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/vscode-languageclient/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/vscode-languageclient/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, - "vscode-languageserver": { + "node_modules/vscode-languageserver": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.0.0.tgz", "integrity": "sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==", - "requires": { + "dependencies": { "vscode-languageserver-protocol": "3.16.0" + }, + "bin": { + "installServerIntoExtension": "bin/installServerIntoExtension" } }, - "vscode-languageserver-protocol": { + "node_modules/vscode-languageserver-protocol": { "version": "3.16.0", "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0.tgz", "integrity": "sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==", - "requires": { + "dependencies": { "vscode-jsonrpc": "6.0.0", "vscode-languageserver-types": "3.16.0" } }, - "vscode-languageserver-textdocument": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.7.tgz", - "integrity": "sha512-bFJH7UQxlXT8kKeyiyu41r22jCZXG8kuuVVA33OEJn1diWOZK5n8zBSPZFHVBOu8kXZ6h0LIRhf5UnCo61J4Hg==" + "node_modules/vscode-languageserver-textdocument": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.12.tgz", + "integrity": "sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==" }, - "vscode-languageserver-types": { + "node_modules/vscode-languageserver-types": { "version": "3.16.0", "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==" }, - "vscode-uri": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.6.tgz", - "integrity": "sha512-fmL7V1eiDBFRRnu+gfRWTzyPpNIHJTc4mWnFkwBUmO9U3KPgJAmTx7oxi2bl/Rh6HLdU7+4C9wlj0k2E4AdKFQ==" - }, - "vue": { - "version": "3.2.45", - "resolved": "https://registry.npmjs.org/vue/-/vue-3.2.45.tgz", - "integrity": "sha512-9Nx/Mg2b2xWlXykmCwiTUCWHbWIj53bnkizBxKai1g61f2Xit700A1ljowpTIM11e3uipOeiPcSqnmBg6gyiaA==", - "requires": { - "@vue/compiler-dom": "3.2.45", - "@vue/compiler-sfc": "3.2.45", - "@vue/runtime-dom": "3.2.45", - "@vue/server-renderer": "3.2.45", - "@vue/shared": "3.2.45" - } - }, - "vue-bundle-renderer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/vue-bundle-renderer/-/vue-bundle-renderer-1.0.0.tgz", - "integrity": "sha512-43vCqTgaMXfHhtR8/VcxxWD1DgtzyvNc4wNyG5NKCIH19O1z5G9ZCRXTGEA2wifVec5PU82CkRLD2sTK9NkTdA==", - "requires": { - "ufo": "^1.0.0" + "node_modules/vscode-uri": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==" + }, + "node_modules/vue": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.4.38.tgz", + "integrity": "sha512-f0ZgN+mZ5KFgVv9wz0f4OgVKukoXtS3nwET4c2vLBGQR50aI8G0cqbFtLlX9Yiyg3LFGBitruPHt2PxwTduJEw==", + "dependencies": { + "@vue/compiler-dom": "3.4.38", + "@vue/compiler-sfc": "3.4.38", + "@vue/runtime-dom": "3.4.38", + "@vue/server-renderer": "3.4.38", + "@vue/shared": "3.4.38" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/vue-bundle-renderer": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/vue-bundle-renderer/-/vue-bundle-renderer-2.1.0.tgz", + "integrity": "sha512-uZ+5ZJdZ/b43gMblWtcpikY6spJd0nERaM/1RtgioXNfWFbjKlUwrS8HlrddN6T2xtptmOouWclxLUkpgcVX3Q==", + "dependencies": { + "ufo": "^1.5.3" } }, - "vue-devtools-stub": { + "node_modules/vue-devtools-stub": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/vue-devtools-stub/-/vue-devtools-stub-0.1.0.tgz", "integrity": "sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==" }, - "vue-eslint-parser": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.1.0.tgz", - "integrity": "sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ==", + "node_modules/vue-eslint-parser": { + "version": "9.4.3", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-9.4.3.tgz", + "integrity": "sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==", "dev": true, - "requires": { + "dependencies": { "debug": "^4.3.4", "eslint-scope": "^7.1.1", "eslint-visitor-keys": "^3.3.0", @@ -18239,325 +18092,635 @@ "lodash": "^4.17.21", "semver": "^7.3.6" }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=6.0.0" + } + }, + "node_modules/vue-eslint-parser/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, "dependencies": { - "eslint-scope": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", - "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", - "dev": true, - "requires": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - } - }, - "eslint-visitor-keys": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", - "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", - "dev": true - }, - "estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true - }, - "semver": { - "version": "7.3.8", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", - "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", - "dev": true, - "requires": { - "lru-cache": "^6.0.0" - } - } + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "vue-i18n": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.2.2.tgz", - "integrity": "sha512-yswpwtj89rTBhegUAv9Mu37LNznyu3NpyLQmozF3i1hYOhwpG8RjcjIFIIfnu+2MDZJGSZPXaKWvnQA71Yv9TQ==", - "requires": { - "@intlify/core-base": "9.2.2", - "@intlify/shared": "9.2.2", - "@intlify/vue-devtools": "9.2.2", - "@vue/devtools-api": "^6.2.1" - }, - "dependencies": { - "@intlify/shared": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.2.2.tgz", - "integrity": "sha512-wRwTpsslgZS5HNyM7uDQYZtxnbI12aGiBZURX3BTR9RFIKKRWpllTsgzHWvj3HKm3Y2Sh5LPC1r0PDCKEhVn9Q==" - } + "node_modules/vue-eslint-parser/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/vue-eslint-parser/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/vue-i18n": { + "version": "9.8.0", + "resolved": "https://registry.npmjs.org/vue-i18n/-/vue-i18n-9.8.0.tgz", + "integrity": "sha512-Izho+6PYjejsTq2mzjcRdBZ5VLRQoSuuexvR8029h5CpN03FYqiqBrShMyf2I1DKkN6kw/xmujcbvC+4QybpsQ==", + "dependencies": { + "@intlify/core-base": "9.8.0", + "@intlify/shared": "9.8.0", + "@vue/devtools-api": "^6.5.0" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" + }, + "peerDependencies": { + "vue": "^3.0.0" + } + }, + "node_modules/vue-i18n/node_modules/@intlify/core-base": { + "version": "9.8.0", + "resolved": "https://registry.npmjs.org/@intlify/core-base/-/core-base-9.8.0.tgz", + "integrity": "sha512-UxaSZVZ1DwqC/CltUZrWZNaWNhfmKtfyV4BJSt/Zt4Or/fZs1iFj0B+OekYk1+MRHfIOe3+x00uXGQI4PbO/9g==", + "dependencies": { + "@intlify/message-compiler": "9.8.0", + "@intlify/shared": "9.8.0" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" + } + }, + "node_modules/vue-i18n/node_modules/@intlify/message-compiler": { + "version": "9.8.0", + "resolved": "https://registry.npmjs.org/@intlify/message-compiler/-/message-compiler-9.8.0.tgz", + "integrity": "sha512-McnYWhcoYmDJvssVu6QGR0shqlkJuL1HHdi5lK7fNqvQqRYaQ4lSLjYmZxwc8tRNMdIe9/KUKfyPxU9M6yCtNQ==", + "dependencies": { + "@intlify/shared": "9.8.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" + } + }, + "node_modules/vue-i18n/node_modules/@intlify/shared": { + "version": "9.8.0", + "resolved": "https://registry.npmjs.org/@intlify/shared/-/shared-9.8.0.tgz", + "integrity": "sha512-TmgR0RCLjzrSo+W3wT0ALf9851iFMlVI9EYNGeWvZFUQTAJx0bvfsMlPdgVtV1tDNRiAfhkFsMKu6jtUY1ZLKQ==", + "engines": { + "node": ">= 16" + }, + "funding": { + "url": "https://github.com/sponsors/kazupon" } }, - "vue-matomo": { + "node_modules/vue-matomo": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/vue-matomo/-/vue-matomo-4.2.0.tgz", - "integrity": "sha512-m5hCw7LH3wPDcERaF4sp/ojR9sEx7Rl8TpOyH/4jjQxMF2DuY/q5pO+i9o5Dx+BXLSa9+IQ0qhAbWYRyESQXmA==" + "integrity": "sha512-m5hCw7LH3wPDcERaF4sp/ojR9sEx7Rl8TpOyH/4jjQxMF2DuY/q5pO+i9o5Dx+BXLSa9+IQ0qhAbWYRyESQXmA==", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } }, - "vue-router": { - "version": "4.1.6", - "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.1.6.tgz", - "integrity": "sha512-DYWYwsG6xNPmLq/FmZn8Ip+qrhFEzA14EI12MsMgVxvHFDYvlr4NXpVF5hrRH1wVcDP8fGi5F4rxuJSl8/r+EQ==", - "requires": { - "@vue/devtools-api": "^6.4.5" + "node_modules/vue-router": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.4.3.tgz", + "integrity": "sha512-sv6wmNKx2j3aqJQDMxLFzs/u/mjA9Z5LCgy6BE0f7yFWMjrPLnS/sPNn8ARY/FXw6byV18EFutn5lTO6+UsV5A==", + "dependencies": { + "@vue/devtools-api": "^6.6.3" + }, + "funding": { + "url": "https://github.com/sponsors/posva" + }, + "peerDependencies": { + "vue": "^3.2.0" } }, - "vue-template-compiler": { - "version": "2.7.14", - "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz", - "integrity": "sha512-zyA5Y3ArvVG0NacJDkkzJuPQDF8RFeRlzV2vLeSnhSpieO6LK2OVbdLPi5MPPs09Ii+gMO8nY4S3iKQxBxDmWQ==", - "dev": true, - "requires": { + "node_modules/vue-template-compiler": { + "version": "2.7.16", + "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.16.tgz", + "integrity": "sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==", + "devOptional": true, + "dependencies": { "de-indent": "^1.0.2", "he": "^1.2.0" } }, - "vue-tsc": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.0.13.tgz", - "integrity": "sha512-DORISA3Fu9595xbg5HQqUj4XZVvkyRkcZFJCkCt1CeN7tIMgVRQ8ow07AKcbuHoEkqg7OI4qLu1wyC/VH3o5Ug==", + "node_modules/vue-tsc": { + "version": "1.8.24", + "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.8.24.tgz", + "integrity": "sha512-eH1CSj231OzVEY5Hi7wS6ubzyOEwgr5jCptR0Ddf2SitGcaXIsPVDvrprm3eolCdyhDt3WS1Eb2F4fGX9BsUUw==", + "devOptional": true, + "dependencies": { + "@volar/typescript": "~1.11.1", + "@vue/language-core": "1.8.24", + "semver": "^7.5.4" + }, + "bin": { + "vue-tsc": "bin/vue-tsc.js" + }, + "peerDependencies": { + "typescript": "*" + } + }, + "node_modules/vue-tsc/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "devOptional": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/vuetify": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-3.7.0.tgz", + "integrity": "sha512-x+UaU4SPYNcJSE/voCTBFrNn0q9Spzx2EMfDdUj0NYgHGKb59OqnZte+AjaJaoOXy1AHYIGEpm5Ryk2BEfgWuw==", + "engines": { + "node": "^12.20 || >=14.13" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/johnleider" + }, + "peerDependencies": { + "typescript": ">=4.7", + "vite-plugin-vuetify": ">=1.0.0", + "vue": "^3.3.0", + "vue-i18n": "^9.0.0", + "webpack-plugin-vuetify": ">=2.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + }, + "vite-plugin-vuetify": { + "optional": true + }, + "vue-i18n": { + "optional": true + }, + "webpack-plugin-vuetify": { + "optional": true + } + } + }, + "node_modules/watchpack": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", + "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", "dev": true, - "requires": { - "@volar/vue-language-core": "1.0.13", - "@volar/vue-typescript": "1.0.13" + "peer": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" } }, - "vuetify": { + "node_modules/webidl-conversions": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-3.0.1.tgz", - "integrity": "sha512-Vl4wYB4mCm6GFK6Q9KZDK+HM3YKI7md7BoUPwbgqZj4bkofjQ/8NVSRQQpTcwk0YoQrgw6qj0QaOtP5zitkS1Q==", - "requires": {} + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, - "wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "requires": { - "defaults": "^1.0.3" + "node_modules/webpack": { + "version": "5.94.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.94.0.tgz", + "integrity": "sha512-KcsGn50VT+06JH/iunZJedYGUJS5FGjow8wb9c0v5n1Om8O1g4L6LjtfxwlXIATopoQu+vOXXa7gYisWxCoPyg==", + "dev": true, + "peer": true, + "dependencies": { + "@types/estree": "^1.0.5", + "@webassemblyjs/ast": "^1.12.1", + "@webassemblyjs/wasm-edit": "^1.12.1", + "@webassemblyjs/wasm-parser": "^1.12.1", + "acorn": "^8.7.1", + "acorn-import-attributes": "^1.9.5", + "browserslist": "^4.21.10", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.17.1", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.11", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.10", + "watchpack": "^2.4.1", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } } }, - "web-streams-polyfill": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.2.1.tgz", - "integrity": "sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==" - }, - "webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "webpack-sources": { + "node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "engines": { + "node": ">=10.13.0" + } }, - "webpack-virtual-modules": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz", - "integrity": "sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==" + "node_modules/webpack-virtual-modules": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.2.tgz", + "integrity": "sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==" }, - "whatwg-url": { + "node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "requires": { + "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, - "which": { + "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "requires": { + "dependencies": { "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" } }, - "which-boxed-primitive": { + "node_modules/which-boxed-primitive": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", "dev": true, - "requires": { + "dependencies": { "is-bigint": "^1.0.1", "is-boolean-object": "^1.1.0", "is-number-object": "^1.0.4", "is-string": "^1.0.5", "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.15", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.15.tgz", + "integrity": "sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/why-is-node-running": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz", + "integrity": "sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==", + "dependencies": { + "siginfo": "^2.0.0", + "stackback": "0.0.2" + }, + "bin": { + "why-is-node-running": "cli.js" + }, + "engines": { + "node": ">=8" } }, - "wide-align": { + "node_modules/wide-align": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", - "requires": { + "dependencies": { "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "devOptional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dependencies": { - "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==" - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - } + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "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==", - "devOptional": true + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } }, - "wrap-ansi": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.0.1.tgz", - "integrity": "sha512-QFF+ufAqhoYHvoHdajT/Po7KoXVBPXS2bgjIam5isfWJPfIOnQZ50JtUiVvCv/sjgacf3yRrt2ZKUZ/V4itN4g==", - "requires": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" + "node_modules/wrap-ansi-cjs/node_modules/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==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/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==" + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/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==", "dependencies": { - "ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" - }, - "ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" - }, - "strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", - "requires": { - "ansi-regex": "^6.0.1" - } - } + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "wrappy": { + "node_modules/wrap-ansi/node_modules/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==" + }, + "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, - "ws": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.11.0.tgz", - "integrity": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==", - "requires": {} + "node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } }, - "xml-name-validator": { + "node_modules/xml-name-validator": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-4.0.0.tgz", "integrity": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==", - "dev": true + "dev": true, + "engines": { + "node": ">=12" + } }, - "xxhashjs": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/xxhashjs/-/xxhashjs-0.2.2.tgz", - "integrity": "sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==", - "requires": { - "cuint": "^0.2.2" + "node_modules/xss": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/xss/-/xss-1.0.15.tgz", + "integrity": "sha512-FVdlVVC67WOIPvfOwhoMETV72f6GbW7aOabBC3WxN/oUdoEMDyLz4OgRv5/gck2ZeNqEQu+Tb0kloovXOfpYVg==", + "dependencies": { + "commander": "^2.20.3", + "cssfilter": "0.0.10" + }, + "bin": { + "xss": "bin/xss" + }, + "engines": { + "node": ">= 0.10.0" } }, - "y18n": { + "node_modules/xss/node_modules/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==" + }, + "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "engines": { + "node": ">=10" + } }, - "yallist": { + "node_modules/yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" }, - "yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" + "node_modules/yaml": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.5.0.tgz", + "integrity": "sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } }, - "yaml-eslint-parser": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/yaml-eslint-parser/-/yaml-eslint-parser-0.3.2.tgz", - "integrity": "sha512-32kYO6kJUuZzqte82t4M/gB6/+11WAuHiEnK7FreMo20xsCKPeFH5tDBU7iWxR7zeJpNnMXfJyXwne48D0hGrg==", + "node_modules/yaml-eslint-parser": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/yaml-eslint-parser/-/yaml-eslint-parser-1.2.3.tgz", + "integrity": "sha512-4wZWvE398hCP7O8n3nXKu/vdq1HcH01ixYlCREaJL5NUMwQ0g3MaGFUBNSlmBtKmhbtVG/Cm6lyYmSVTEVil8A==", "dev": true, - "requires": { - "eslint-visitor-keys": "^1.3.0", - "lodash": "^4.17.20", - "yaml": "^1.10.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": "^3.0.0", + "lodash": "^4.17.21", + "yaml": "^2.0.0" + }, + "engines": { + "node": "^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ota-meshi" } }, - "yargs": { - "version": "17.6.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.6.2.tgz", - "integrity": "sha512-1/9UrdHjDZc0eOU0HxOHoS78C69UD3JRMvzlJ7S79S2nTaWRA/whGCTV8o9e/N/1Va9YIV7Q4sOxD8VV4pCWOw==", - "requires": { - "cliui": "^8.0.1", + "node_modules/yaml-eslint-parser/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dependencies": { + "cliui": "^7.0.2", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "string-width": "^4.2.3", + "string-width": "^4.2.0", "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" + "yargs-parser": "^20.2.2" }, - "dependencies": { - "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==" - }, - "string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "requires": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - } - } + "engines": { + "node": ">=10" } }, - "yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" + "node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "engines": { + "node": ">=10" + } }, - "yocto-queue": { + "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "devOptional": true + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "zip-stream": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-4.1.0.tgz", - "integrity": "sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A==", - "requires": { - "archiver-utils": "^2.1.0", - "compress-commons": "^4.1.0", - "readable-stream": "^3.6.0" + "node_modules/zhead": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/zhead/-/zhead-2.2.4.tgz", + "integrity": "sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==", + "funding": { + "url": "https://github.com/sponsors/harlan-zw" + } + }, + "node_modules/zip-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-6.0.1.tgz", + "integrity": "sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==", + "dependencies": { + "archiver-utils": "^5.0.0", + "compress-commons": "^6.0.2", + "readable-stream": "^4.0.0" + }, + "engines": { + "node": ">= 14" } } } diff --git a/frontend/package.json b/frontend/package.json index 8828cf21..ab23d912 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,39 +1,52 @@ { "private": true, "scripts": { + "coverage": "vitest run --coverage", "build": "nuxt build", "dev": "nuxt dev", "generate": "nuxt generate", "preview": "nuxt preview", "postinstall": "nuxt prepare", - "lint": "eslint '**/*'", + "lint": "eslint '**/*' --max-warnings 0", "lint:fix": "eslint . --fix", - "typecheck": "nuxt typecheck" + "typecheck": "nuxt typecheck", + "format": "prettier --write components/ pages/" }, "dependencies": { - "@vueuse/core": "^9.6.0", - "@vueuse/nuxt": "^9.6.0", - "axios": "^1.1.3", - "qs": "^6.11.0", - "sass": "^1.56.1", - "vite-plugin-vuetify": "^1.0.0", - "vue-i18n": "^9.2.2", + "@intlify/core-base": "^9.3.0-beta.22", + "@intlify/shared": "^9.3.0-beta.24", + "@piwikpro/nuxt-piwik-pro": "^1.0.0", + "@vitest/coverage-c8": "^0.33.0", + "@vueuse/core": "^10.2.1", + "@vueuse/nuxt": "^10.2.1", + "axios": "^1.4.0", + "d3": "^7.9.0", + "esbuild": "^0.23.1", + "nuxt-security": "^0.14.2", + "qs": "^6.11.2", + "sass": "^1.64.1", + "vite-plugin-vuetify": "^1.0.2", + "vitest": "^0.33.0", + "vue-i18n": "9.8.0", "vue-matomo": "^4.2.0", - "vuetify": "^3.0.1" + "vuetify": "^3.3.9" }, "devDependencies": { - "@babel/eslint-parser": "^7.19.1", - "@intlify/unplugin-vue-i18n": "^0.8.0", - "@mdi/font": "^7.0.96", + "@babel/eslint-parser": "^7.22.9", + "@intlify/unplugin-vue-i18n": "^0.12.2", + "@mdi/font": "^7.2.96", "@nuxtjs/eslint-config-typescript": "^12.0.0", + "@nuxtjs/i18n": "^8.5.1", + "@types/d3": "^7.4.3", "@types/qs": "^6.9.7", - "eslint": "^8.28.0", - "eslint-config-prettier": "^8.5.0", + "eslint": "^8.45.0", + "eslint-config-prettier": "^8.8.0", "eslint-plugin-nuxt": "^4.0.0", - "eslint-plugin-prettier": "^4.2.1", - "nuxt": "3.0.0", - "nuxt-icon": "^0.1.8", - "typescript": "^4.9.4", - "vue-tsc": "^1.0.13" + "eslint-plugin-prettier": "^5.0.0", + "nuxt": "3.11.2", + "nuxt-icon": "0.1.8", + "nuxt-simple-sitemap": "^3.1.4", + "typescript": "5.4", + "vue-tsc": "1.8.24" } } diff --git a/frontend/pages/algoritme/[lars].vue b/frontend/pages/algoritme/[lars].vue new file mode 100644 index 00000000..d46f54ac --- /dev/null +++ b/frontend/pages/algoritme/[lars].vue @@ -0,0 +1,189 @@ + + + + + diff --git a/frontend/pages/algoritme/[slug].vue b/frontend/pages/algoritme/[slug].vue deleted file mode 100644 index 05af872d..00000000 --- a/frontend/pages/algoritme/[slug].vue +++ /dev/null @@ -1,120 +0,0 @@ - - - diff --git a/frontend/pages/algoritme/[slug]/[lars].vue b/frontend/pages/algoritme/[slug]/[lars].vue new file mode 100644 index 00000000..c1118110 --- /dev/null +++ b/frontend/pages/algoritme/[slug]/[lars].vue @@ -0,0 +1,205 @@ + + + + + diff --git a/frontend/pages/algoritme/[slug]/index.vue b/frontend/pages/algoritme/[slug]/index.vue new file mode 100644 index 00000000..4693c6d5 --- /dev/null +++ b/frontend/pages/algoritme/[slug]/index.vue @@ -0,0 +1,3 @@ + diff --git a/frontend/pages/algoritme/index.vue b/frontend/pages/algoritme/index.vue index ddf50361..68d26051 100644 --- a/frontend/pages/algoritme/index.vue +++ b/frontend/pages/algoritme/index.vue @@ -1,148 +1,234 @@ diff --git a/frontend/pages/dashboard.vue b/frontend/pages/dashboard.vue index 956b17ea..1faa38da 100644 --- a/frontend/pages/dashboard.vue +++ b/frontend/pages/dashboard.vue @@ -1,84 +1,368 @@ - diff --git a/frontend/pages/footer/archief.vue b/frontend/pages/footer/archief.vue new file mode 100644 index 00000000..e5c3c043 --- /dev/null +++ b/frontend/pages/footer/archief.vue @@ -0,0 +1,12 @@ + + + diff --git a/frontend/pages/footer/contact.vue b/frontend/pages/footer/contact.vue index c9ec5cbb..e0b933ec 100644 --- a/frontend/pages/footer/contact.vue +++ b/frontend/pages/footer/contact.vue @@ -1,65 +1,12 @@ diff --git a/frontend/pages/footer/cookies.vue b/frontend/pages/footer/cookies.vue deleted file mode 100644 index 2cd6f771..00000000 --- a/frontend/pages/footer/cookies.vue +++ /dev/null @@ -1,68 +0,0 @@ - - - diff --git a/frontend/pages/footer/kwetsbaarheid-melden.vue b/frontend/pages/footer/kwetsbaarheid-melden.vue new file mode 100644 index 00000000..4e0ad99b --- /dev/null +++ b/frontend/pages/footer/kwetsbaarheid-melden.vue @@ -0,0 +1,24 @@ + + + diff --git a/frontend/pages/footer/kwetsbaarheid.vue b/frontend/pages/footer/kwetsbaarheid.vue deleted file mode 100644 index dcb11de0..00000000 --- a/frontend/pages/footer/kwetsbaarheid.vue +++ /dev/null @@ -1,59 +0,0 @@ - - - diff --git a/frontend/pages/footer/meedoen.vue b/frontend/pages/footer/meedoen.vue new file mode 100644 index 00000000..59c1faa8 --- /dev/null +++ b/frontend/pages/footer/meedoen.vue @@ -0,0 +1,12 @@ + + + diff --git a/frontend/pages/footer/over-algoritmes.vue b/frontend/pages/footer/over-algoritmes.vue new file mode 100644 index 00000000..1f887a67 --- /dev/null +++ b/frontend/pages/footer/over-algoritmes.vue @@ -0,0 +1,19 @@ + + + diff --git a/frontend/pages/footer/over.vue b/frontend/pages/footer/over.vue index 340132c1..c3ce3e89 100644 --- a/frontend/pages/footer/over.vue +++ b/frontend/pages/footer/over.vue @@ -1,206 +1,12 @@ diff --git a/frontend/pages/footer/privacyverklaring.vue b/frontend/pages/footer/privacyverklaring.vue index 4b7dc49f..05304e75 100644 --- a/frontend/pages/footer/privacyverklaring.vue +++ b/frontend/pages/footer/privacyverklaring.vue @@ -1,82 +1,15 @@ diff --git a/frontend/pages/footer/registreer-je-algoritme.vue b/frontend/pages/footer/registreer-je-algoritme.vue new file mode 100644 index 00000000..d1e9a9b0 --- /dev/null +++ b/frontend/pages/footer/registreer-je-algoritme.vue @@ -0,0 +1,15 @@ + + + diff --git a/frontend/pages/footer/release-notes.vue b/frontend/pages/footer/release-notes.vue new file mode 100644 index 00000000..7228f984 --- /dev/null +++ b/frontend/pages/footer/release-notes.vue @@ -0,0 +1,12 @@ + + + diff --git a/frontend/pages/footer/toegankelijkheid.vue b/frontend/pages/footer/toegankelijkheid.vue index 4bddb42a..ce0ca23b 100644 --- a/frontend/pages/footer/toegankelijkheid.vue +++ b/frontend/pages/footer/toegankelijkheid.vue @@ -1,62 +1,12 @@ diff --git a/frontend/pages/footer/versie-informatie.vue b/frontend/pages/footer/versie-informatie.vue new file mode 100644 index 00000000..fc76178f --- /dev/null +++ b/frontend/pages/footer/versie-informatie.vue @@ -0,0 +1,22 @@ + + + diff --git a/frontend/pages/footer/vragen.vue b/frontend/pages/footer/vragen.vue index c5bd6c68..ab4907d2 100644 --- a/frontend/pages/footer/vragen.vue +++ b/frontend/pages/footer/vragen.vue @@ -1,210 +1,70 @@ diff --git a/frontend/pages/footer/webarchief.vue b/frontend/pages/footer/webarchief.vue new file mode 100644 index 00000000..0c2eef0e --- /dev/null +++ b/frontend/pages/footer/webarchief.vue @@ -0,0 +1,19 @@ + + + diff --git a/frontend/pages/footer/zelf-aan-de-slag.vue b/frontend/pages/footer/zelf-aan-de-slag.vue new file mode 100644 index 00000000..f2222351 --- /dev/null +++ b/frontend/pages/footer/zelf-aan-de-slag.vue @@ -0,0 +1,12 @@ + + + diff --git a/frontend/pages/index.vue b/frontend/pages/index.vue index 6ca98fa4..b5f77b6a 100644 --- a/frontend/pages/index.vue +++ b/frontend/pages/index.vue @@ -1,45 +1,92 @@ - diff --git a/frontend/pages/map/organisatie-niet-aangesloten.vue b/frontend/pages/map/organisatie-niet-aangesloten.vue new file mode 100644 index 00000000..3411db79 --- /dev/null +++ b/frontend/pages/map/organisatie-niet-aangesloten.vue @@ -0,0 +1,15 @@ + + + diff --git a/frontend/pages/map/organisatie-niet-gepubliceerd.vue b/frontend/pages/map/organisatie-niet-gepubliceerd.vue new file mode 100644 index 00000000..f71aae64 --- /dev/null +++ b/frontend/pages/map/organisatie-niet-gepubliceerd.vue @@ -0,0 +1,15 @@ + + + diff --git a/frontend/pages/organisatie/[orgCode].vue b/frontend/pages/organisatie/[orgCode].vue new file mode 100644 index 00000000..67cc7f29 --- /dev/null +++ b/frontend/pages/organisatie/[orgCode].vue @@ -0,0 +1,149 @@ + + + + + diff --git a/frontend/pages/organisatie/index.vue b/frontend/pages/organisatie/index.vue new file mode 100644 index 00000000..4009dac7 --- /dev/null +++ b/frontend/pages/organisatie/index.vue @@ -0,0 +1,190 @@ + + + + + diff --git a/frontend/plugins/i18n.ts b/frontend/plugins/i18n.ts deleted file mode 100644 index b15fc7ea..00000000 --- a/frontend/plugins/i18n.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { createI18n } from 'vue-i18n' -import en from '@/locales/en.json' -import nl from '@/locales/nl.json' - -export default defineNuxtPlugin(({ vueApp }) => { - const i18n = createI18n({ - legacy: false, - globalInjection: true, - locale: 'nl', - fallbackLocale: 'nl', - messages: { - en, - nl, - }, - }) - - vueApp.use(i18n) -}) diff --git a/frontend/public/icon-link-external-v2.svg b/frontend/public/icon-link-external-v2.svg new file mode 100644 index 00000000..a01ee0f4 --- /dev/null +++ b/frontend/public/icon-link-external-v2.svg @@ -0,0 +1,16 @@ + + + 3945 externe link 24px + + + + + + + + + + + + + diff --git a/frontend/public/layouts/v0_1_0.json b/frontend/public/layouts/v0_1_0.json new file mode 100644 index 00000000..80cbb250 --- /dev/null +++ b/frontend/public/layouts/v0_1_0.json @@ -0,0 +1,71 @@ +{ + "headerCardGrouping": { + "mainElement": "description_short", + "subElements": ["organization", "department", "category", "type", "status"] + }, + "searchResultCardGrouping": { + "mainElement": "description_short", + "subElements": ["type", "status"] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "rows": [ + "name", + "organization", + "department", + "description_short", + "type", + "category", + "website", + "status" + ] + }, + { + "key": "inzet", + "rows": [ + "goal", + "impact", + "proportionality", + "decision_making_process", + "documentation" + ] + }, + { + "key": "juridisch", + "rows": [ + "competent_authority", + "lawful_basis", + "iama", + "iama_description", + "dpia", + "dpia_description", + "objection_procedure" + ] + }, + { + "key": "metadata_algorithm", + "rows": ["url", "contact_email", "area", "lang", "revision_date"] + }, + { + "key": "toepassing", + "rows": [ + "description", + "application_url", + "publiccode", + "mprd", + "source_data", + "methods_and_models" + ] + }, + { + "key": "toezicht", + "rows": [ + "monitoring", + "human_intervention", + "risks", + "performance_standard" + ] + } + ] +} diff --git a/frontend/public/layouts/v0_2_3.json b/frontend/public/layouts/v0_2_3.json new file mode 100644 index 00000000..80cbb250 --- /dev/null +++ b/frontend/public/layouts/v0_2_3.json @@ -0,0 +1,71 @@ +{ + "headerCardGrouping": { + "mainElement": "description_short", + "subElements": ["organization", "department", "category", "type", "status"] + }, + "searchResultCardGrouping": { + "mainElement": "description_short", + "subElements": ["type", "status"] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "rows": [ + "name", + "organization", + "department", + "description_short", + "type", + "category", + "website", + "status" + ] + }, + { + "key": "inzet", + "rows": [ + "goal", + "impact", + "proportionality", + "decision_making_process", + "documentation" + ] + }, + { + "key": "juridisch", + "rows": [ + "competent_authority", + "lawful_basis", + "iama", + "iama_description", + "dpia", + "dpia_description", + "objection_procedure" + ] + }, + { + "key": "metadata_algorithm", + "rows": ["url", "contact_email", "area", "lang", "revision_date"] + }, + { + "key": "toepassing", + "rows": [ + "description", + "application_url", + "publiccode", + "mprd", + "source_data", + "methods_and_models" + ] + }, + { + "key": "toezicht", + "rows": [ + "monitoring", + "human_intervention", + "risks", + "performance_standard" + ] + } + ] +} diff --git a/frontend/public/layouts/v0_3_1.json b/frontend/public/layouts/v0_3_1.json new file mode 100644 index 00000000..058fce1e --- /dev/null +++ b/frontend/public/layouts/v0_3_1.json @@ -0,0 +1,72 @@ +{ + "headerCardGrouping": { + "mainElement": "description_short", + "subElements": ["organization", "department", "category", "type", "status"] + }, + "searchResultCardGrouping": { + "mainElement": "description_short", + "subElements": ["type", "status"] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "rows": [ + "name", + "organization", + "department", + "description_short", + "type", + "category", + "website", + "status" + ] + }, + { + "key": "inzet", + "rows": [ + "goal", + "impact", + "proportionality", + "provider", + "application_url", + "process_index_url" + ] + }, + { + "key": "juridisch", + "rows": [ + "lawful_basis", + "iama", + "iama_description", + "dpia", + "objection_procedure" + ] + }, + { + "key": "metadata_algorithm", + "rows": [ + "url", + "contact_email", + "area", + "lang", + "standard_version", + "source_id", + "revision_date", + "tags" + ] + }, + { + "key": "toepassing", + "rows": ["description", "source_data", "methods_and_models", "publiccode"] + }, + { + "key": "toezicht", + "rows": [ + "monitoring", + "human_intervention", + "risks", + "performance_standard" + ] + } + ] +} diff --git a/frontend/public/layouts/v0_4_0.json b/frontend/public/layouts/v0_4_0.json new file mode 100644 index 00000000..d88d6b00 --- /dev/null +++ b/frontend/public/layouts/v0_4_0.json @@ -0,0 +1,51 @@ +{ + "headerCardGrouping": { + "mainElement": "description_short", + "subElements": ["organization", "category", "type", "status"] + }, + "searchResultCardGrouping": { + "mainElement": "description_short", + "subElements": ["type", "status"] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "rows": [ + "name", + "organization", + "description_short", + "type", + "category", + "status", + "begin_date", + "end_date", + "contact_email", + "website", + "url" + ] + }, + { + "key": "verantwoordGebruik", + "rows": [ + "goal", + "proportionality", + "human_intervention", + "risks", + "lawful_basis", + "lawful_basis_link", + "impacttoetsen", + "iama_description" + ] + }, + { + "key": "technischeWerking", + "rows": [ + "source_data", + "source_data_link", + "methods_and_models", + "provider", + "publiccode" + ] + } + ] +} diff --git a/frontend/public/layouts/v1_0_0.json b/frontend/public/layouts/v1_0_0.json new file mode 100644 index 00000000..41ccd048 --- /dev/null +++ b/frontend/public/layouts/v1_0_0.json @@ -0,0 +1,60 @@ +{ + "headerCardGrouping": { + "mainElement": "description_short", + "subElements": ["organization", "category", "status"] + }, + "searchResultCardGrouping": { + "mainElement": "description_short", + "subElements": ["publication_category", "status"] + }, + "tabsGrouping": [ + { + "key": "algemeneInformatie", + "label": "Algemene informatie", + "rows": [ + "name", + "description_short", + "organization", + "category", + "status", + "begin_date", + "end_date", + "contact_email", + "website", + "publication_category", + "url" + ] + }, + { + "key": "verantwoordGebruik", + "label": "Verantwoord gebruik", + "rows": [ + "goal", + "proportionality", + "human_intervention", + "risks", + "lawful_basis", + "lawful_basis_grouping", + "process_index_url", + "impacttoetsen", + "impacttoetsen_grouping" + ] + }, + { + "key": "werking", + "label": "Werking", + "rows": [ + "source_data", + "source_data_grouping", + "methods_and_models", + "provider", + "publiccode" + ] + }, + { + "key": "metadata", + "label": "Metadata", + "rows": ["lang", "standard_version", "source_id", "tags"] + } + ] +} diff --git a/frontend/public/standards/v0_1_0.json b/frontend/public/standards/v0_1_0.json new file mode 100644 index 00000000..d760e5d5 --- /dev/null +++ b/frontend/public/standards/v0_1_0.json @@ -0,0 +1,345 @@ +{ + "AlgorithmIn": { + "title": "AlgorithmIn", + "type": "object", + "properties": { + "name": { + "title": "Naam", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden" + }, + "organization": { + "title": "Organisatie", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De volledige naam van de organisatie verantwoordelijk voor de inzet van het algoritme." + }, + "department": { + "title": "Afdeling", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De volledige naam van de afdeling of divisie verantwoordelijk voor de inzet van het algoritme." + }, + "description_short": { + "title": "Korte omschrijving", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Een korte, abstracte beschrijving van het algoritme." + }, + "type": { + "title": "Type algoritme", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Is het algoritme op regels gebaseerd of zelflerend? Regelgebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes kunnen zelf verbanden ontdekken in gegevens." + }, + "category": { + "title": "Beleidsterrein", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Trefwoorden over het beleidsterrein waarin het algoritme wordt ingezet." + }, + "website": { + "title": "Link naar publiekspagina", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie." + }, + "status": { + "title": "Status", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik." + }, + "goal": { + "title": "Doel", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen." + }, + "impact": { + "title": "Impact", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf?" + }, + "proportionality": { + "title": "Proportionaliteit", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is." + }, + "decision_making_process": { + "title": "Proces", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De naam van het bedrijfs- of besluitvormingsproces in de organisatie waarbinnen het algoritme wordt ingezet." + }, + "documentation": { + "title": "Link naar projectpagina", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "URL van de projectpagina van de organisatie zelf over dit specifieke gebruik van het algoritme." + }, + "description": { + "title": "Omschrijving", + "maxLength": 10000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een uitgebreide beschrijving van het algoritme (500-5000 tekens)." + }, + "application_url": { + "title": "Link naar ontwikkelaar", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een URL naar een applicatiepagina van de ontwikkelaar. Op deze pagina kunt u meer algemene technische informatie vinden over het algoritme en de ontwikkelaar zelf." + }, + "publiccode": { + "title": "Link naar broncode", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf." + }, + "mprd": { + "title": "Koppeling met basisregistraties", + "maxLength": 500, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Maakt het algoritme direct gebruik van data uit het Stelsel van Basisregistraties? Meer informatie is te vinden op https://digitaleoverheid.nl/" + }, + "source_data": { + "title": "Databronnen", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme" + }, + "methods_and_models": { + "title": "Methoden en modellen", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Standaardmethoden of modellen die het algoritme gebruikt." + }, + "monitoring": { + "title": "Monitoring", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord." + }, + "human_intervention": { + "title": "Menselijke tussenkomst", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden." + }, + "risks": { + "title": "Risico's", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een overzicht van de voorziene risico's bij de inzet van het algoritme" + }, + "performance_standard": { + "title": "Prestatienormen", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten." + }, + "competent_authority": { + "title": "Bevoegde authoriteit", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Volledige naam van de bevoegde autoriteit verantwoordelijk voor de inzet van het algoritme." + }, + "lawful_basis": { + "title": "Wettelijke grondslag", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Een omschrijving of een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit." + }, + "iama": { + "title": "Impact Assessment Mensenrechten en Algoritmes (IAMA)", + "maxLength": 128, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Is het algoritme getoetst op het nakomen van mensenrechten met een Impact Assessment Mensenrechten en Algoritmes (IAMA)?" + }, + "iama_description": { + "title": "Omschrijving van de IAMA", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Een overzicht van de belangrijkste zaken die uit de impact assessment mensenrechten en algoritmes (IAMA) naar voren kwamen." + }, + "dpia": { + "title": "Data Protection Impact Assessment (DPIA)", + "maxLength": 128, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA)." + }, + "dpia_description": { + "title": "Omschrijving van de DPIA", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een overzicht van de belangrijkste zaken die uit de data protection impact assessment (DPIA) naar voren kwamen." + }, + "objection_procedure": { + "title": "Bezwaarprocedure", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme." + }, + "standard_version": { + "title": "Schema", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_1_0__EnumStandardVersion" + } + ], + "example": "0.1.0", + "instructions": "", + "show_always": false, + "help_text": "" + }, + "uuid": { + "title": "UUID", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "" + }, + "url": { + "title": "Link naar bronregistratie", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat." + }, + "contact_email": { + "title": "E-mailadres van de contactpersoon", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De e-mail voor contact over deze registratie." + }, + "area": { + "title": "Geografisch gebied", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Het geografische gebied waarin het algoritme wordt ingezet." + }, + "lang": { + "title": "Taal", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd." + }, + "revision_date": { + "title": "Herzieningsdatum", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "De datum waarvoor deze registratie moet worden herzien." + } + } + } +} \ No newline at end of file diff --git a/frontend/public/standards/v0_2_3.json b/frontend/public/standards/v0_2_3.json new file mode 100644 index 00000000..5a1fd6c9 --- /dev/null +++ b/frontend/public/standards/v0_2_3.json @@ -0,0 +1,365 @@ +{ + "AlgorithmIn": { + "title": "AlgorithmIn", + "type": "object", + "properties": { + "name": { + "title": "Naam", + "maxLength": 100, + "type": "string", + "example": "Automatische Verkeersregeling Ringweg", + "instructions": "De algemeen gehanteerde naam van het algoritme.", + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden" + }, + "organization": { + "title": "Organisatie", + "maxLength": 100, + "type": "string", + "example": "Gemeente Noorderhaaks", + "instructions": "De naam van de organisatie verantwoordelijk voor het gebruik van het algoritme. In het geval van een uitvoeringsorganisatie vallend onder een ministerie: gebruik de naam van de uitvoeringsorganisatie zelf, gevolgd door de afkorting tussen haakjes.", + "show_always": true, + "help_text": "De volledige naam van de organisatie verantwoordelijk voor de inzet van het algoritme." + }, + "department": { + "title": "Afdeling", + "maxLength": 500, + "type": "string", + "example": "Afdeling Verkeer & Bereikbaarheid", + "instructions": "De volledige naam van de afdeling van de organisatie verantwoordelijk voor het gebruik van het algoritme.", + "show_always": true, + "help_text": "De volledige naam van de afdeling of divisie verantwoordelijk voor de inzet van het algoritme." + }, + "description_short": { + "title": "Korte omschrijving", + "maxLength": 150, + "type": "string", + "example": "Dit algoritme optimaliseert de doorstroom van verkeer bij kruispunten op basis van sensoren in het wegdek.", + "instructions": "Een korte, abstracte beschrijving van het algoritme. Bij voorkeur in één of twee zinnen. Vul dit veld in op B1-taalniveau.", + "show_always": true, + "help_text": "Een korte, abstracte beschrijving van het algoritme." + }, + "type": { + "title": "Type algoritme", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_2_3__EnumType" + } + ], + "example": "Regelgebaseerd", + "instructions": "Is het algoritme op regels gebaseerd of zelflerend? Op regels gebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes hebben zichzelf getraind op basis van data. In het geval dat een algoritme beiden doet, kies voor 'Zelflerend'.", + "show_always": true, + "help_text": "Is het algoritme op regels gebaseerd of zelflerend? Regelgebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes kunnen zelf verbanden ontdekken in gegevens." + }, + "category": { + "title": "Beleidsterrein", + "maxLength": 500, + "type": "string", + "example": "Verkeer, Mobiliteit, VRI, Infrastructuur", + "instructions": "Trefwoorden die te maken hebben met het domein waarin het algoritme wordt ingezet.", + "show_always": true, + "help_text": "Trefwoorden over het beleidsterrein waarin het algoritme wordt ingezet." + }, + "website": { + "title": "Link naar publiekspagina", + "maxLength": 500, + "type": "string", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over de inzet van het algoritme binnen de organisatie. Dit is niet te verwarren met de projectpagina, waar de maatschappelijke context wordt vermeld. Denk aan bijvoorbeeld parkeercontrole in het algemeen (projectpagina) versus de inzet van slimme camera's voor nummerbordherkenning (publiekspagina).", + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie." + }, + "status": { + "title": "Status", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_2_3__EnumStatus" + } + ], + "example": "In gebruik", + "instructions": "De huidige status van het algoritme: - In ontwikkeling - In gebruik - Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor ‘In gebruik’.", + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik." + }, + "goal": { + "title": "Doel", + "maxLength": 5000, + "type": "string", + "example": "Het doel van dit algoritme is om de doorstroom van het verkeer binnen de gemeente te verbeteren. Door kortere wachttijden bij het stoplicht kunnen weggebruikers sneller van A naar B komen.", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen. Vul dit veld in op B1-taalniveau.", + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen." + }, + "impact": { + "title": "Impact", + "maxLength": 5000, + "type": "string", + "example": "De impact op een individu is dat het algoritme bepaalt wanneer diegene aan de beurt is om over het kruispunt te steken. De consequenties van deze impact zijn in alle waarschijnlijkheid erg klein. Het betreft een oponthoud van maximaal enkele minuten.", + "instructions": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf? Vul dit veld in op B1-taalniveau.", + "show_always": true, + "help_text": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf?" + }, + "proportionality": { + "title": "Proportionaliteit", + "maxLength": 5000, + "type": "string", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn.Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau.", + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is." + }, + "decision_making_process": { + "title": "Proces", + "maxLength": 5000, + "type": "string", + "example": "Het besluitvormingsproces van het algoritme is om te bepalen wie er op dat moment als eerste mag doorrijden over het kruispunt, ter verbetering van de algehele verkeersdoorstroming en bereikbaarheid.", + "instructions": "De naam van het bedrijfs- of besluitvormingsproces in de organisatie waarbinnen het algoritme wordt ingezet.", + "show_always": true, + "help_text": "De naam van het bedrijfs- of besluitvormingsproces in de organisatie waarbinnen het algoritme wordt ingezet." + }, + "documentation": { + "title": "Link naar projectpagina", + "maxLength": 500, + "type": "string", + "example": "https://gemeentenoorderhaaks.nl/wat-doen-we-met-verkeer", + "instructions": "Een URL naar een maatschappelijke pagina van de organisatie zelf. Op deze pagina kunt u meer vinden over het maatschappelijke vraagstuk waar het algoritme voor wordt ingezet.Dit is niet te verwarren met de publiekspagina, waar dit specifieke algoritme onder de loep wordt genomen. Denk aan bijvoorbeeld parkeercontrole in het algemeen (projectpagina) versus de inzet van slimme camera's voor nummerbordherkenning (publiekspagina).Indien u geen aparte projectpagina hanteert, dient dit veld leeg te blijven.", + "show_always": false, + "help_text": "URL van de projectpagina van de organisatie zelf over dit specifieke gebruik van het algoritme." + }, + "description": { + "title": "Omschrijving", + "maxLength": 5000, + "type": "string", + "example": "Er is veel verkeer op de kruispunten van de ringweg om de gemeente Noorderhaaks. De verkeersregeling van de stoplichten loopt niet altijd hetzelfde. Met behulp van sensoren in het wegdek kan een computersysteem een idee krijgen van waar er iemand voor een stoplicht staat. Het systeem gebruikt een algoritme om te kijken of het stoplicht sneller op groen kan dan het normaal zou gaan. Het checkt of er op dat moment nog weggebruikers op andere plekken rijden. Zo niet, dan kunnen andere stoplichten sneller op rood, en het stoplicht in kwestie op groen. Zo verbetert de doorstroom van verkeer, vooral als het rustig is op de weg.", + "instructions": "Een uitgebreide beschrijving van het algoritme.Vul dit veld in op B1-taalniveau.", + "show_always": false, + "help_text": "Een uitgebreide beschrijving van het algoritme (500-5000 tekens)." + }, + "application_url": { + "title": "Link naar ontwikkelaar", + "maxLength": 100, + "type": "string", + "example": "http://haakssoftwarebedrijf.nl/vrisoftware", + "instructions": "Een URL naar de derde partij die het algoritme heeft ontwikkeld.Indien u zelf het algoritme hebt ontwikkeld, dient dit veld leeg te blijven.", + "show_always": false, + "help_text": "Een URL naar een applicatiepagina van de ontwikkelaar. Op deze pagina kunt u meer algemene technische informatie vinden over het algoritme en de ontwikkelaar zelf." + }, + "publiccode": { + "title": "Link naar broncode", + "maxLength": 100, + "type": "string", + "example": "http://github.com/haakssoftwarebedrijf/vrisoftware", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven.", + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf." + }, + "mprd": { + "title": "Koppeling met basisregistraties", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_2_3__EnumMprd" + } + ], + "example": "Ja", + "instructions": "Maakt het algoritme direct gebruik van data uit het Stelsel van Basisregistraties? Meer informatie is te vinden op https://www.digitaleoverheid.nl/overzicht-van-alle-onderwerpen/stelselvan-basisregistraties/10-basisregistraties/", + "show_always": false, + "help_text": "Maakt het algoritme direct gebruik van data uit het Stelsel van Basisregistraties? Meer informatie is te vinden op https://digitaleoverheid.nl/" + }, + "source_data": { + "title": "Databronnen", + "maxLength": 5000, + "type": "string", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks.", + "instructions": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.Idealiter bevat het overzicht URLs naar relevante publiekspagina's over de bron, of, indien mogelijk, een URL naar de bron zelf.", + "show_always": false, + "help_text": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme" + }, + "methods_and_models": { + "title": "Methoden en modellen", + "maxLength": 5000, + "type": "string", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI", + "instructions": "Een technische uitleg van hoe het algoritme werkt en uitkomsten genereert. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas.Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL’s naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten.", + "show_always": false, + "help_text": "Standaardmethoden of modellen die het algoritme gebruikt." + }, + "monitoring": { + "title": "Monitoring", + "maxLength": 5000, + "type": "string", + "example": "Monitoring van het verkeer wordt met plaatselijke camera's uitgevoerd. Dagelijks wordt er met steekproeven gecontroleerd op de camerabeelden of de automatische verkeersregeling zorgt voor een goede doorstroom.", + "instructions": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord, zowel in real time als evaluatie achteraf.", + "show_always": false, + "help_text": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord." + }, + "human_intervention": { + "title": "Menselijke tussenkomst", + "maxLength": 5000, + "type": "string", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden.Vul dit veld in op B1-taalniveau.", + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden." + }, + "risks": { + "title": "Risico's", + "maxLength": 5000, + "type": "string", + "example": "De uitkomsten van het algoritme zijn alleen gebaseerd op sensoren in het wegdek die meten of er een vehikel is gepasseerd. Er is bij binnenkomst van data in het algoritme één voorzien risico: bij een defecte sensor kan het gebeuren dat weggebruikers lang blijven staan omdat ze niet worden als aanwezig worden herkend door het algoritme. Wij gaan dit tegen door de constante monitoring. Zo is de kans bijzonder klein dat dit langdurige nadelen heeft op een individu, en hoeft niemand uren stil te blijven staan. Voor de rest zijn er geen voorziene risico's, omdat bij gebrekkig functioneren van dit algoritme het traditionele systeem ook prima functioneert als plan B.", + "instructions": "Een overzicht van de voorziene risico's bij de inzet van het algoritme. Denk aan risico's die kunnen ontstaan in de hele keten, van observatiedata tot uitkomst voor een gebruiker.", + "show_always": false, + "help_text": "Een overzicht van de voorziene risico's bij de inzet van het algoritme" + }, + "performance_standard": { + "title": "Prestatienormen", + "maxLength": 5000, + "type": "string", + "example": "Het algoritme moet in ieder geval even goed presteren als een standaardinstelling van een verkeersinstallatie zonder sensoren. In eerdere pilots zagen we een verbetering van gemiddeld 36% minder wachttijd voor weggebruikers buiten de spits. Wij hanteren een minimum van 15% buiten spitstijden. Tijdens de spits is dit de baseline (0%).", + "instructions": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten.", + "show_always": false, + "help_text": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten." + }, + "competent_authority": { + "title": "Bevoegde authoriteit", + "maxLength": 100, + "type": "string", + "example": "Afdeling Verkeer en bereikbaarheid", + "instructions": "De autoriteit die binnen de organisatie bevoegd is om te handelen op basis van de uitkomsten van het algoritme.Vaak is dit veld gelijk aan de afdeling van uw organisatie.", + "show_always": true, + "help_text": "Volledige naam van de bevoegde autoriteit verantwoordelijk voor de inzet van het algoritme." + }, + "lawful_basis": { + "title": "Wettelijke grondslag", + "maxLength": 5000, + "type": "string", + "example": "http://wetten.overheid.nl/BWBR0006622/2023-01-01", + "instructions": "Een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit.Indien er geen publiek beschikbare grondslag beschikbaar is, volstaat een beschrijving ook.", + "show_always": true, + "help_text": "Een omschrijving of een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit." + }, + "iama": { + "title": "Impact Assessment Mensenrechten en Algoritmes (IAMA)", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_2_3__EnumIama" + } + ], + "example": "Ja", + "instructions": "Is het algoritme getoetst op het nakomen van mensenrechten met een Impact Assessment Mensenrechten en Algoritmes (IAMA)?", + "show_always": true, + "help_text": "Is het algoritme getoetst op het nakomen van mensenrechten met een Impact Assessment Mensenrechten en Algoritmes (IAMA)?" + }, + "iama_description": { + "title": "Omschrijving van de IAMA", + "maxLength": 5000, + "type": "string", + "example": "Er is geen reden om aan te nemen dat er enige mensenrechtenschending plaats kan vinden op basis van het gebruikte algoritme.", + "instructions": "Een overzicht van de belangrijkste zaken die uit de impact assessment mensenrechten en algoritmes (IAMA) naar voren kwamen.", + "show_always": true, + "help_text": "Een overzicht van de belangrijkste zaken die uit de impact assessment mensenrechten en algoritmes (IAMA) naar voren kwamen." + }, + "dpia": { + "title": "Data Protection Impact Assessment (DPIA)", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_2_3__EnumDpia" + } + ], + "example": "Ja", + "instructions": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA)?", + "show_always": false, + "help_text": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA)." + }, + "dpia_description": { + "title": "Omschrijving van de DPIA", + "maxLength": 5000, + "type": "string", + "example": "Er komen geen gegevens bij dit algoritme kijken waarvan de inhoud privacyrisico's met zich meebrengt of zou kunnen brengen. Er worden geen mensen op schaal of systematisch gevolgd in de openbare ruimte door dit algoritme.", + "instructions": "Een overzicht van de belangrijkste zaken die uit de Data Protection Impact Assessment (DPIA) naar voren kwamen.", + "show_always": false, + "help_text": "Een overzicht van de belangrijkste zaken die uit de data protection impact assessment (DPIA) naar voren kwamen." + }, + "objection_procedure": { + "title": "Bezwaarprocedure", + "maxLength": 5000, + "type": "string", + "example": "Indien de uitkomst van het algoritme een nadelig effect heeft gehad op bijvoorbeeld een weggebruiker of omwonende, neem dan contact op met het gemeenteloket op https://gemeentenoorderhaaks.nl/contact. Wij behandelen uw aanvraag binnen tien werkdagen.", + "instructions": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme.", + "show_always": true, + "help_text": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme." + }, + "standard_version": { + "title": "Schema", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_2_3__EnumStandardVersion" + } + ], + "example": "0.2.3", + "instructions": "De versie van de metadatastandaard die gehanteerd is voor deze registratie.Op dit moment is dat ‘0.2.3’.", + "show_always": false, + "help_text": "" + }, + "uuid": { + "title": "UUID", + "maxLength": 100, + "type": "string", + "example": "n.v.t.", + "instructions": "De unieke identificatie (UUID) voor deze registratie. Bij het aanleveren van deze registraties wordt er automatisch een UUID gegenereerd door de website van het landelijk algoritmeregister. Hier dient bij de eerste aanlevering dus niks handmatig ingevuld te worden. Bij het wijzigen van registraties kan naar deze UUID verwezen worden om de juiste registratie te vinden. In het geval van een update van een al bestaand en gepubliceerde registratie, moet de UUID in de toekomst wel worden ingevuld.", + "show_always": true, + "help_text": "" + }, + "url": { + "title": "Link naar bronregistratie", + "maxLength": 100, + "type": "string", + "example": "https://algoritmes.gemeentenoorderhaaks.nl/", + "instructions": "Als de organisatie zelf ook een algoritmeregister gepubliceerd heeft waarvandaan uiteindelijk de informatie opgehaald wordt, dan kan vanaf hiernaar verwezen worden.", + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat." + }, + "contact_email": { + "title": "E-mailadres van de contactpersoon", + "maxLength": 100, + "type": "string", + "example": "Algoritmes@gemeentenoorderhaaks.nl", + "instructions": "Het e-mailadres voor contact over deze registratie. Dit moet een geldig mailadres zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme.", + "show_always": true, + "help_text": "De e-mail voor contact over deze registratie." + }, + "area": { + "title": "Geografisch gebied", + "maxLength": 100, + "type": "string", + "example": "Gemeente Noorderhaaks", + "instructions": "Het geografische gebied waarin het algoritme ingezet wordt, zoals een gemeente, (veiligheids)regio, natuurgebied, of provincie.", + "show_always": false, + "help_text": "Het geografische gebied waarin het algoritme wordt ingezet." + }, + "lang": { + "title": "Taal", + "maxLength": 100, + "type": "string", + "example": "Nederlands", + "instructions": "Naam van de taal. Op dit moment wordt alleen Nederlands aangeboden.", + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd." + }, + "revision_date": { + "title": "Herzieningsdatum", + "maxLength": 10, + "type": "string", + "example": "01-12-2023", + "instructions": "De datum waarvoor deze registratie moet worden herzien. Het is handig periodiek te controleren of de registratie nog actueel is. Het kan daarbij slim zijn om een datum te kiezen waarop een wijziging verwacht wordt. De wettelijke grondslag van sommige regelingen wijzigt bijvoorbeeld jaarlijks per 1 januari, waardoor dat een logisch moment van herziening is. ", + "show_always": false, + "help_text": "De datum waarvoor deze registratie moet worden herzien." + } + } + } +} \ No newline at end of file diff --git a/frontend/public/standards/v0_3_1.json b/frontend/public/standards/v0_3_1.json new file mode 100644 index 00000000..4da12a60 --- /dev/null +++ b/frontend/public/standards/v0_3_1.json @@ -0,0 +1,352 @@ +{ + "AlgorithmIn": { + "title": "AlgorithmIn", + "type": "object", + "properties": { + "name": { + "title": "Naam", + "maxLength": 100, + "type": "string", + "example": "Automatische Verkeersregeling Ringweg", + "instructions": "De algemeen gehanteerde naam van het algoritme.", + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden" + }, + "organization": { + "title": "Organisatie", + "maxLength": 100, + "type": "string", + "example": "Gemeente Noorderhaaks", + "instructions": "De naam van de organisatie verantwoordelijk voor de inzetvan het algoritme. In het geval van een uitvoeringsorganisatie vallend onder een ministerie: gebruik de naam van de uitvoeringsorganisatie zelf. Bij het veld 'tags' kunnen afkortingen worden toegevoegd of ministeries voor betere vindbaarheid.", + "show_always": true, + "help_text": "De volledige naam van de organisatie verantwoordelijk voor de inzet van het algoritme." + }, + "department": { + "title": "Afdeling", + "maxLength": 500, + "type": "string", + "example": "Afdeling Verkeer & Bereikbaarheid", + "instructions": "De volledige naam van de afdeling van de organisatie verantwoordelijk voor het gebruik van het algoritme.", + "show_always": true, + "help_text": "De volledige naam van de afdeling of divisie verantwoordelijk voor de inzet van het algoritme." + }, + "description_short": { + "title": "Korte omschrijving", + "maxLength": 150, + "type": "string", + "example": "Dit algoritme optimaliseert de doorstroom van verkeer bij kruispunten op basis van sensoren in het wegdek.", + "instructions": "Een korte, abstracte beschrijving van het algoritme (<150 tekens). Bij voorkeur in één of twee zinnen. Vul dit veld in op B1-taalniveau.", + "show_always": true, + "help_text": "Een korte, abstracte beschrijving van het algoritme." + }, + "type": { + "title": "Type algoritme", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_3_1__EnumType" + } + ], + "example": "Regelgebaseerd", + "instructions": "Is het algoritme op regels gebaseerd of zelflerend? Op regels gebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes hebben zichzelf getraind op basis van data. In het geval dat een algoritme deels beiden doet, kies voor 'Zelflerend'. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan 'regelgebaseerd' of 'zelflerend'.", + "show_always": true, + "help_text": "Is het algoritme op regels gebaseerd of zelflerend? Regelgebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes kunnen zelf verbanden ontdekken in gegevens." + }, + "category": { + "title": "Beleidsterrein", + "maxLength": 500, + "type": "string", + "example": "Mobiliteit", + "instructions": "Het beleidsterrein waarin het algoritme wordt ingezet.", + "show_always": true, + "help_text": "Het beleidsterrein waarin het algoritme wordt ingezet." + }, + "website": { + "title": "Link naar publiekspagina", + "maxLength": 500, + "type": "string", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over de inzet van het algoritme binnen de organisatie. Begin een URL met https://", + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie." + }, + "status": { + "title": "Status", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_3_1__EnumStatus" + } + ], + "example": "In gebruik", + "instructions": "De huidige status van het algoritme: - In ontwikkeling - In gebruik - Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor 'In gebruik'.", + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik." + }, + "goal": { + "title": "Doel", + "maxLength": 2500, + "type": "string", + "example": "Het doel van dit algoritme is om de doorstroom van het verkeer binnen de gemeente te verbeteren. Door kortere wachttijden bij het stoplicht kunnen weggebruikers sneller van A naar B komen.", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen. Vul dit veld in op B1-taalniveau.", + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen." + }, + "impact": { + "title": "Impact", + "maxLength": 2500, + "type": "string", + "example": "De impact op een individu is dat het algoritme bepaalt wanneer diegene aan de beurt is om over het kruispunt te steken. De consequenties van deze impact zijn in alle waarschijnlijkheid erg klein. Het betreft een oponthoud van maximaal enkele minuten.", + "instructions": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf? Vul dit veld in op B1-taalniveau.", + "show_always": true, + "help_text": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf?" + }, + "proportionality": { + "title": "Proportionaliteit", + "maxLength": 2500, + "type": "string", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn.Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau.", + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is." + }, + "provider": { + "title": "Leverancier", + "maxLength": 100, + "type": "string", + "example": "Haaks softwarebedrijf", + "instructions": "Naam van de externe leverancier van het algoritme. Indien uw organisatie zelf het algoritme heeft ontwikkeld, dient dit veld leeg te blijven.", + "show_always": false, + "help_text": "Indien van toepassing, de externe leverancier van het algoritme." + }, + "application_url": { + "title": "Link naar leverancier", + "maxLength": 500, + "type": "string", + "example": "https://haakssoftwarebedrijf.nl/vrisoftware", + "instructions": "Een URL naar de derde partij die het algoritme heeft ontwikkeld. Indien uw organisatie zelf het algoritme heeft ontwikkeld, dient dit veld leeg te blijven. Begin een URL met https://", + "show_always": false, + "help_text": "Indien van toepassing, de link naar de externe leverancier." + }, + "process_index_url": { + "title": "Link naar verwerkingsregister", + "maxLength": 500, + "type": "string", + "example": "https://gemeentenoorderhaaks.nl/verwerkingen/Automatische-Verkeersregeling-Ringweg", + "instructions": "Indien van toepassing en beschikbaar, de link naar de AVG-verwerking in een publiek register van het algoritme. Begin een URL met https://", + "show_always": false, + "help_text": "De link naar de AVG-verwerking in een publiek register van het algoritme." + }, + "lawful_basis": { + "title": "Wettelijke grondslag", + "maxLength": 2500, + "type": "string", + "example": "https://wetten.overheid.nl/BWBR0006622/2023-01-01", + "instructions": "Een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit.Indien er geen publiek beschikbare grondslag beschikbaar is, volstaat een beschrijving ook.", + "show_always": true, + "help_text": "Een omschrijving of een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit." + }, + "iama": { + "title": "Mensenrechtentoets", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_3_1__EnumIama" + } + ], + "example": "Ja", + "instructions": "Is het algoritme getoetst op het nakomen van mensenrechten, bijvoorbeeld met een Impact Assessment Mensenrechten en Algoritmes (IAMA)? De resultaten van de mensenrechtentoets kunnen verwerkt worden in diverse andere velden. Ook kan er in het veld 'Link naar mensenrechtentoets' gelinkt worden naar een eventueel gepubliceerde mensenrechtentoets. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan 'Ja' of 'Nee' (let op hoofdletters).'", + "show_always": true, + "help_text": "Is het algoritme getoetst op het nakomen van mensenrechten zoals middels een Impact Assessment Mensenrechten en Algoritmes (IAMA)?" + }, + "iama_description": { + "title": "Link naar Mensenrechtentoets", + "maxLength": 500, + "type": "string", + "example": "https://gemeentenoorderhaaks.nl/Archief/toetsen/AVR-IAMA", + "instructions": "Link naar de resultaten van een mensenrechtentoets, indien deze is uitgevoerd en publiek beschikbaar is. Een voorbeeld hiervan is het impact assessment mensenrechten en algoritmes (IAMA). Begin een URL met https://", + "show_always": true, + "help_text": "Link naar de resultaten van een uitgevoerde mensenrechtentoets, zoals een IAMA." + }, + "dpia": { + "title": "Data Protection Impact Assessment (DPIA)", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_3_1__EnumDpia" + } + ], + "example": "Ja", + "instructions": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA)? Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan 'Ja' of 'Nee' (let op hoofdletters).", + "show_always": false, + "help_text": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA)." + }, + "objection_procedure": { + "title": "Bezwaarprocedure", + "maxLength": 2500, + "type": "string", + "example": "Indien de uitkomst van het algoritme een nadelig effect heeft gehad op bijvoorbeeld een weggebruiker of omwonende, neem dan contact op met het gemeenteloket op https://gemeentenoorderhaaks.nl/contact. Wij behandelen uw aanvraag binnen tien werkdagen.", + "instructions": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme.", + "show_always": true, + "help_text": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme." + }, + "url": { + "title": "Link naar bronregistratie", + "maxLength": 500, + "type": "string", + "example": "https://algoritmes.gemeentenoorderhaaks.nl/", + "instructions": "Als de organisatie zelf ook een algoritmeregister gepubliceerd heeft waarvandaan uiteindelijk de informatie opgehaald wordt, dan kan vanaf hiernaar verwezen worden.", + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat." + }, + "contact_email": { + "title": "E-mailadres van de contactpersoon", + "maxLength": 500, + "type": "string", + "example": "algoritmes@gemeentenoorderhaaks.nl", + "instructions": "Het e-mailadres voor contact over deze registratie. Dit moet een geldig mailadres zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme.", + "show_always": true, + "help_text": "De e-mail voor contact over deze registratie." + }, + "area": { + "title": "Geografisch gebied", + "maxLength": 100, + "type": "string", + "example": "Gemeente Noorderhaaks", + "instructions": "Het geografische gebied waarin het algoritme ingezet wordt, zoals een gemeente, (veiligheids)regio, natuurgebied, of provincie.", + "show_always": false, + "help_text": "Het geografische gebied waarin het algoritme wordt ingezet." + }, + "lang": { + "title": "Taal", + "maxLength": 3, + "type": "string", + "example": "nld", + "instructions": "De ISO 639-3 code van de taal van de registratie. Op dit moment wordt alleen Nederlands (nld) aangeboden.", + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd." + }, + "standard_version": { + "title": "Schema", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_3_1__EnumStandardVersion" + } + ], + "example": "0.3.1", + "instructions": "De versie van de publicatiestandaard die gehanteerd is voor deze registratie.Op dit moment is dat '0.3.1'.", + "show_always": false, + "help_text": "De versie van de publicatiestandaard waar dit algoritme in is geregistreed." + }, + "uuid": { + "title": "UUID", + "maxLength": 100, + "type": "string", + "example": "n.v.t.", + "instructions": "De unieke identificatie voor deze registratie in landelijke register. Bij het aanleveren van deze registraties wordt er automatisch een identificatie gegenereerd door de website van het landelijk algoritmeregister. Hier dient bij de eerste aanlevering dus niks handmatig ingevuld te worden. Bij het wijzigen van registraties kan naar deze identificatie verwezen worden om de juiste registratie te vinden. In het geval van een update van een al bestaand en gepubliceerde registratie, moet de identificatie in de toekomst wel worden ingevuld.", + "show_always": true, + "help_text": "De unieke code van dit algoritme in het landelijke register." + }, + "source_id": { + "title": "Bron-ID", + "maxLength": 100, + "type": "string", + "example": "n.v.t.", + "instructions": "Indien van toepassing, de unieke identificatie voor deze registratie zoals door de eigenaar wordt gehanteerd. Dit is dus de verwijzing naar het algoritme in de interne database of het interne register van uw organisatie.", + "show_always": false, + "help_text": "De unieke code van dit algoritme in het register van de eigenaar" + }, + "revision_date": { + "title": "Herzieningsdatum", + "maxLength": 10, + "type": "string", + "example": "01-12-2023", + "instructions": "De datum waarvoor deze registratie moet worden herzien, in DD-MM-YYYY formaat. Het is handig periodiek te controleren of de registratie nog actueel is. Het kan daarbij slim zijn om een datum te kiezen waarop een wijziging verwacht wordt. De wettelijke grondslag van sommige regelingen wijzigt bijvoorbeeld jaarlijks per 1 januari, waardoor dat een logisch moment van herziening is. ", + "show_always": false, + "help_text": "De datum waarvoor deze registratie moet worden herzien." + }, + "tags": { + "title": "Tags", + "maxLength": 2500, + "type": "string", + "example": "Verkeer, Mobiliteit, VRI, Infrastructuur, Waddengebied", + "instructions": "Termen gerelateerd aan dit algoritme. Gescheiden door komma's. Dit veld wordt niet weergegeven op de website en kan worden gebruikt om de vindbaarheid van de registratie te verbeteren. Zo kan bijvoorbeeld de naam van het relevante ministerie worden toegevoegd om als uitvoerorganisatie beter vindbaar te zijn met de zoekfunctie.", + "show_always": false, + "help_text": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten." + }, + "description": { + "title": "Omschrijving", + "maxLength": 2500, + "type": "string", + "example": "Er is veel verkeer op de kruispunten van de ringweg om de gemeente Noorderhaaks. De verkeersregeling van de stoplichten loopt niet altijd hetzelfde. Met behulp van sensoren in het wegdek kan een computersysteem een idee krijgen van waar er iemand voor een stoplicht staat. Het systeem gebruikt een algoritme om te kijken of het stoplicht sneller op groen kan dan het normaal zou gaan. Het checkt of er op dat moment nog weggebruikers op andere plekken rijden. Zo niet, dan kunnen andere stoplichten sneller op rood, en het stoplicht in kwestie op groen. Zo verbetert de doorstroom van verkeer, vooral als het rustig is op de weg.", + "instructions": "Een uitgebreide beschrijving van het algoritme. Vul dit veld in op B1-taalniveau.", + "show_always": false, + "help_text": "Een uitgebreide beschrijving van het algoritme (500-5000 tekens)." + }, + "source_data": { + "title": "Databronnen", + "maxLength": 5000, + "type": "string", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks.", + "instructions": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme. Idealiter bevat het overzicht URL's naar relevante publiekspagina's over de bron, of, indien mogelijk, een URL naar de bron zelf.", + "show_always": false, + "help_text": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme" + }, + "methods_and_models": { + "title": "Methoden en modellen", + "maxLength": 5000, + "type": "string", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI", + "instructions": "Een technische uitleg van hoe het algoritme werkt en uitkomsten genereert. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas. Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL's naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten.", + "show_always": false, + "help_text": "Standaardmethoden of modellen die het algoritme gebruikt." + }, + "publiccode": { + "title": "Link naar broncode", + "maxLength": 500, + "type": "string", + "example": "https://github.com/haakssoftwarebedrijf.nl/vrisoftware", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven. Begin een URL met https://", + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf." + }, + "monitoring": { + "title": "Monitoring", + "maxLength": 2500, + "type": "string", + "example": "Bij monitoring van het algoritme wordt de gemaakte verkeersstroom vergeleken met het live-verkeer op plaatselijke camera's. Dagelijks wordt er met steekproeven gecontroleerd op de camerabeelden of de automatische verkeersregeling zorgt voor een goede doorstroom.", + "instructions": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord, zowel in real time als evaluatie achteraf.", + "show_always": false, + "help_text": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord." + }, + "human_intervention": { + "title": "Menselijke tussenkomst", + "maxLength": 2500, + "type": "string", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden. Vul dit veld in op B1-taalniveau.", + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden." + }, + "risks": { + "title": "Risico's", + "maxLength": 2500, + "type": "string", + "example": "De uitkomsten van het algoritme zijn alleen gebaseerd op sensoren in het wegdek die meten of er een vehikel is gepasseerd. Er is bij binnenkomst van data in het algoritme één voorzien risico: bij een defecte sensor kan het gebeuren dat weggebruikers lang blijven staan omdat ze niet worden als aanwezig worden herkend door het algoritme. Wij gaan dit tegen door de constante monitoring. Zo is de kans bijzonder klein dat dit langdurige nadelen heeft op een individu, en hoeft niemand uren stil te blijven staan. Voor de rest zijn er geen voorziene risico's, omdat bij gebrekkig functioneren van dit algoritme het traditionele systeem ook prima functioneert als plan B.", + "instructions": "Een overzicht van de voorziene risico's bij de inzet van het algoritme. Denk aan risico's die kunnen ontstaan in de hele keten, van observatiedata tot uitkomst voor een gebruiker.", + "show_always": false, + "help_text": "Een overzicht van de voorziene risico's bij de inzet van het algoritme" + }, + "performance_standard": { + "title": "Prestatienormen", + "maxLength": 2500, + "type": "string", + "example": "Het algoritme moet in ieder geval even goed presteren als een standaardinstelling van een verkeersinstallatie zonder sensoren. In eerdere pilots zagen we een verbetering van gemiddeld 36% minder wachttijd voor weggebruikers buiten de spits. Wij hanteren een minimum van 15% buiten spitstijden. Tijdens de spits is dit de baseline (0%).", + "instructions": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten.", + "show_always": false, + "help_text": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten." + } + } + } +} \ No newline at end of file diff --git a/frontend/public/standards/v0_4_0.json b/frontend/public/standards/v0_4_0.json new file mode 100644 index 00000000..65fd2f12 --- /dev/null +++ b/frontend/public/standards/v0_4_0.json @@ -0,0 +1,294 @@ +{ + "AlgorithmIn": { + "title": "AlgorithmIn", + "type": "object", + "properties": { + "name": { + "title": "Naam", + "maxLength": 100, + "type": "string", + "example": "Automatische Verkeersregeling Ringweg", + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "De algemeen gehanteerde naam van het algoritme.", + "show_always": true + }, + "organization": { + "title": "Organisatie", + "maxLength": 250, + "type": "string", + "example": "Gemeente Noorderhaaks", + "help_text": "De volledige naam van de organisatie waar het algoritme ingezet wordt.", + "instructions": "De volledige naam van de organisatie waar het algoritme ingezet wordt. In het geval van een uitvoeringsorganisatie vallend onder een ministerie: gebruik de naam van de uitvoeringsorganisatie zelf, gevolgd door de afkorting tussen haakjes.", + "show_always": true + }, + "description_short": { + "title": "Korte omschrijving", + "maxLength": 250, + "type": "string", + "example": "Dit algoritme zorgt met sensoren in het wegdek ervoor dat het verkeer zo makkelijk mogelijk doorstroomt.", + "help_text": "Een korte beschrijving van het algoritme.", + "instructions": "Een korte, duidelijke beschrijving van het algoritme en het proces waarin deze gebruikt wordt. Bij voorkeur in één of twee zinnen. Doel van dit veld is om bij het zoeken naar algoritmes een korte omschrijving van het algoritme te geven. Vul dit veld in op B1-taalniveau. ", + "show_always": true + }, + "type": { + "title": "(Zelf)lerend", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_4_0__EnumType" + } + ], + "example": "Nee", + "help_text": "Is het algoritme zelflerend? In een niet-zelflerend algoritme specificeert de mens de regels die de computer moet volgen. Als het een zelflerend algoritme is, leert de machine over de patronen in de data. ", + "instructions": "Is het algoritme zelflerend? In een niet-zelflerend algoritme specificeert de mens de regels die de computer moet volgen. Als het een zelflerend algoritme is, leert de machine over de patronen in de data. In het geval dat een algoritme deels beiden doet, kies voor dan voor zelflerend. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven.", + "show_always": true + }, + "category": { + "title": "Beleidsterrein", + "type": "array", + "items": { + "$ref": "#/components/schemas/v0_4_0__EnumCategory" + }, + "example": [ + "Verkeer", + "Landbouw" + ], + "help_text": "Het beleidsterrein waarin het algoritme wordt ingezet", + "instructions": "Beleidsterrein(en) waarin het algoritme wordt ingezet.", + "show_always": true + }, + "website": { + "title": "Link naar publiekspagina", + "maxLength": 500, + "type": "string", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI", + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over het proces waarin het algoritme ingezet wordt. Dit is een andere pagina dan de link naar het decentrale register. Begin een URL met https:// ", + "show_always": false + }, + "status": { + "title": "Status", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_4_0__EnumStatus" + } + ], + "example": "In gebruik", + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "De huidige status van het algoritme: In ontwikkeling, In gebruik, Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor ‘In gebruik’. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven. Het is niet verplicht algoritmes in ontwikkeling te vermelden in het Algoritmeregister. De mogelijkheid wordt wel geboden voor organisaties die burgers willen betrekken al tijdens de ontwikkelingen van algoritmes. ", + "show_always": true + }, + "begin_date": { + "title": "Begindatum", + "maxLength": 7, + "type": "string", + "example": "2023-01", + "help_text": "Maand waarin het algoritme in gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme in gebruik is genomen. Schrijf de datum op zoals in dit voorbeeld: 01-1970", + "show_always": true + }, + "end_date": { + "title": "Einddatum", + "maxLength": 7, + "type": "string", + "example": "2023-05", + "help_text": "Maand waarin het algoritme buiten gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme buiten gebruik is genomen. Als het algoritme nog in gebruik is, moet dit veld leegblijven. Schrijf de datum op zoals in dit voorbeeld: 01-1970", + "show_always": false + }, + "goal": { + "title": "Doel en impact", + "maxLength": 2500, + "type": "string", + "example": "", + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en wat voor impact de inzet heeft op burgers en bedrijven. ", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is en wat voor impact de inzet heeft op burgers en bedrijven. Vul dit veld in op B1-taalniveau. ", + "show_always": true + }, + "proportionality": { + "title": "Afwegingen", + "maxLength": 2500, + "type": "string", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers.", + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn. Neem ook de ethische afwegingen mee in het invullen. Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau.", + "show_always": true + }, + "provider": { + "title": "Leverancier", + "maxLength": 200, + "type": "string", + "example": "Haaks softwarebedrijf", + "help_text": "Indien van toepassing, de externe leverancier van het algoritme.", + "instructions": "Naam van de externe leverancier van het algoritme. Als het intern ontwikkeld is, noteer dan ‘Intern ontwikkeld’. Het gaat hierbij bijvoorbeeld niet om het gebruik van open source packages die gebruikt worden in een groter algoritme. Indien u zelf het algoritme hebt ontwikkeld, dient dit veld leeg te blijven. ", + "show_always": false + }, + "lawful_basis": { + "title": "Wettelijke basis", + "maxLength": 2500, + "type": "string", + "example": "", + "help_text": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt ", + "instructions": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt ", + "show_always": false + }, + "lawful_basis_link": { + "title": "Wettelijke basis", + "maxLength": 200, + "type": "string", + "example": "https://wetten.overheid.nl/BWBR0006622/2023-01-01 ", + "help_text": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt.", + "instructions": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "show_always": false + }, + "impacttoetsen": { + "title": "Impacttoetsen", + "type": "array", + "items": { + "type": "string" + }, + "example": [ + "Impact Assessment Mensenrechten en Algoritmes (IAMA)" + ], + "help_text": "Welke impacttoetsen zijn gebruikt, zoals Data Protection Impact Asssesment (DPIA) of Impact Assessment Mensenrechten en Algoritmes (IAMA)? ", + "instructions": "Naam/namen van uitgevoerde impacttoetsen. Dit veld is vrij in te vullen, en de waardes zijn alleen suggesties.", + "recommended_items": [ + "Data Protection Impact Asssesment (DPIA)", + "Impact Assessment Mensenrechten en Algoritmes (IAMA)" + ], + "show_always": true + }, + "iama_description": { + "title": "Link naar impacttoetsen", + "maxLength": 500, + "type": "string", + "example": "DPIA: https://link.com, IAMA: https://link.nl", + "help_text": "Link naar de resultaten van een uitgevoerde impacttoets, zoals een DPIA IAMA. ", + "instructions": "Link naar de resultaten van een impacttoets, indien deze is uitgevoerd en publiek beschikbaar is. Een voorbeeld hiervan is het impact assessment mensenrechten en algoritmes (IAMA) of het data protection impact assessment (DPIA). Formatteer het dusdanig dat de naam van de toets gevolgd wordt door een dubbele punt en de URL. Als er meerdere zijn, kunnen deze gescheiden worden door komma's. Begin een URL met https://", + "show_always": false + }, + "url": { + "title": "Link naar bronregistratie", + "maxLength": 500, + "type": "string", + "example": "https://algoritmes.gemeentenoorderhaaks.nl/", + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "Als de organisatie zelf ook een algoritmeregister gepubliceerd heeft waarvandaan uiteindelijk de informatie opgehaald wordt, dan kan vanaf hiernaar verwezen worden.", + "show_always": false + }, + "contact_email": { + "title": "Contactgegevens", + "maxLength": 500, + "type": "string", + "example": "algoritmes@gemeentenoorderhaaks.nl", + "help_text": "De contactgegevens voor deze registratie ", + "instructions": "Het e-mailadres voor contact over deze registratie. Dit kan een geldig mailadres zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme. Het alternatief is een extern webformulier die op dezelfde manier gebruikt kan worden. Begin een URL met https://.", + "show_always": true + }, + "lang": { + "title": "Taal", + "maxLength": 3, + "type": "string", + "example": "nld", + "help_text": "De taal waarin deze registratie is ingevoerd.", + "instructions": "De code van de taal van de registratie. Dit veld is aanwezig, omdat het Algoritmeregister meertalig aangeboden kan worden. Op dit moment wordt alleen Nederlands (nld) aangeboden. ", + "show_always": false + }, + "standard_version": { + "title": "Schema", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_4_0__EnumStandardVersion" + } + ], + "example": "0.4.0", + "help_text": "De versie van de publicatiestandaard waar dit algoritme in is geregistreed.", + "instructions": "De versie van de publicatiestandaard die gehanteerd is voor deze registratie.Op dit moment is dat '0.4.0'.", + "show_always": false + }, + "uuid": { + "title": "Landelijk-ID", + "maxLength": 100, + "type": "string", + "example": "n.v.t.", + "help_text": "De unieke code van dit algoritme in het landelijke register.", + "instructions": "De unieke identificatie van deze registratie in het landelijke Algoritmeregister. Bij het aanleveren van deze registratie wordt er automatisch een UUID gegenereerd door de database van het landelijk Algoritmeregister. Hier dient bij de eerste aanlevering dus niks handmatig ingevuld te worden. Bij het wijzigen van registraties kan naar deze ID verwezen worden om de juiste registratie te vinden. In het geval van een update van een al bestaand en gepubliceerde registratie, moet de ID in de toekomst wel worden ingevuld. ", + "show_always": true + }, + "source_id": { + "title": "Bron-ID", + "maxLength": 100, + "type": "string", + "example": "n.v.t.", + "help_text": "De unieke code van dit algoritme in het register van de eigenaar", + "instructions": "Indien van toepassing, de unieke identificatie voor deze registratie zoals door de eigenaar wordt gehanteerd. Dit is dus de verwijzing naar het algoritme in de interne database of het interne register van uw organisatie.", + "show_always": false + }, + "tags": { + "title": "Tags", + "maxLength": 2500, + "type": "string", + "example": "Verkeer, Mobiliteit, VRI, Infrastructuur, Waddengebied", + "help_text": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten.", + "instructions": "Termen gerelateerd aan dit algoritme. Gescheiden door komma's. Dit veld wordt niet weergegeven op de website en kan worden gebruikt om de vindbaarheid van de registratie te verbeteren. Zo kan bijvoorbeeld de naam van het relevante ministerie worden toegevoegd om als uitvoerorganisatie beter vindbaar te zijn met de zoekfunctie.", + "show_always": false + }, + "source_data": { + "title": "Gegevens", + "maxLength": 5000, + "type": "string", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks.", + "help_text": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "show_always": true + }, + "source_data_link": { + "title": "Link naar gegevensbronnen", + "maxLength": 500, + "type": "string", + "example": "Lijst van links naar aanvullende informatie over de gebruikte gegevensbronnen. Hierbij kan bijvoorbeeld gelinkt worden naar metadata in publieke datacatalogi of naar sensorenregistraties.", + "help_text": "Links naar aanvullende informatie over de gebruikte gegevensbronnen", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "show_always": false + }, + "methods_and_models": { + "title": "Technische werking", + "maxLength": 5000, + "type": "string", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI", + "help_text": "Uitleg van hoe het algoritme werkt.", + "instructions": "Een technische uitleg van hoe het algoritme werkt en uitkomsten genereert. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas. Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL’s naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten.", + "show_always": false + }, + "publiccode": { + "title": "Link naar broncode", + "maxLength": 500, + "type": "string", + "example": "https://github.com/haakssoftwarebedrijf.nl/vrisoftware", + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf.", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven. Begin een URL met https://", + "show_always": false + }, + "human_intervention": { + "title": "Menselijke tussenkomst", + "maxLength": 2500, + "type": "string", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht.", + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden. Vul dit veld in op B1-taalniveau. ", + "show_always": true + }, + "risks": { + "title": "Risicobeheer", + "maxLength": 2500, + "type": "string", + "example": "", + "help_text": "Een overzicht van de voorziene risico's bij de inzet van het algoritme en hoe deze, mits van toepassing, gemitigeerd zijn", + "instructions": "Een overzicht van de voorziene risico's bij de inzet van het algoritme en hoe deze, mits van toepassing, gemitigeerd zijn", + "show_always": true + } + } + } +} \ No newline at end of file diff --git a/frontend/public/standards/v1_0_0.json b/frontend/public/standards/v1_0_0.json new file mode 100644 index 00000000..2361f6ab --- /dev/null +++ b/frontend/public/standards/v1_0_0.json @@ -0,0 +1,459 @@ +{ + "AlgorithmIn": { + "title": "AlgorithmIn", + "type": "object", + "properties": { + "name": { + "type": "string", + "title": "Naam", + "max_length": 100, + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "Gebruik een naam, bij voorkeur met een werkwoord, die aangeeft wat het algoritme doet. Dit kan de algemeen gehanteerde naam zijn van het algoritme binnen de organisatie, mits begrijpelijk voor externen die niet bekend zijn met het algoritme.", + "example": "Automatische Verkeersregeling Ringweg", + "required": true + }, + "description_short": { + "type": "string", + "title": "Korte omschrijving", + "max_length": 350, + "show_always": true, + "help_text": "Een korte beschrijving van het algoritme.", + "instructions": "Een korte, duidelijke beschrijving van het algoritme en het proces waarin deze gebruikt wordt. Bij voorkeur in twee of drie zinnen. Doel van dit veld is om snel begrip te krijgen van wat het algoritme doet. Het veld wordt weergegeven in het zoekoverzicht. Vul dit veld in op B1-taalniveau.", + "example": "Dit algoritme zorgt met sensoren in het wegdek ervoor dat het verkeer zo makkelijk mogelijk doorstroomt.", + "required": true + }, + "organization": { + "type": "string", + "title": "Organisatie", + "max_length": 100, + "show_always": true, + "help_text": "De volledige naam van de organisatie waar het algoritme ingezet wordt.", + "instructions": "De volledige naam van de organisatie waar het algoritme ingezet wordt. Deze wordt gebaseerd op de TOOI-waardelijst: standaarden.overheid.nl. Eén registratie kan maar over één organisatie gaan. Er kunnen dus niet meerdere waarden ingevuld worden. Indien een algoritme bij meerdere organisaties wordt ingezet, zijn aparte registraties vereist.", + "example": "Gemeente Noorderhaaks", + "required": true + }, + "category": { + "type": "array", + "title": "Thema", + "max_items": 3, + "show_always": true, + "help_text": "Het beleidsterrein waarin het algoritme wordt ingezet", + "instructions": "Beleidsterrein(en) waarin het algoritme wordt ingezet.", + "example": [ + "Verkeer" + ], + "required": false, + "permitted_values": [ + "Organisatie en bedrijfsvoering", + "Cultuur en recreatie", + "Economie", + "Overheidsfinanciën", + "Wonen", + "Internationaal", + "Migratie en integratie", + "Natuur en milieu", + "Onderwijs en wetenschap", + "Openbare orde en veiligheid", + "Recht", + "Ruimte en infrastructuur", + "Sociale zekerheid", + "Verkeer", + "Werk", + "Zorg en gezondheid" + ] + }, + "status": { + "type": "enum", + "title": "Status", + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "De huidige status van het algoritme: In ontwikkeling, In gebruik, Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor ‘In gebruik’. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven. Het is niet verplicht algoritmes in ontwikkeling of buiten gebruik te vermelden in het Algoritmeregister. De mogelijkheid wordt wel geboden voor organisaties die burgers willen betrekken al tijdens de ontwikkelingen van algoritmes. ", + "example": "In gebruik", + "required": true, + "permitted_values": [ + "In ontwikkeling", + "In gebruik", + "Buiten gebruik" + ] + }, + "begin_date": { + "type": "string", + "title": "Begindatum", + "max_length": 7, + "show_always": true, + "help_text": "Maand waarin het algoritme in gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme in gebruik is genomen. Schrijf de datum op zoals in dit voorbeeld: 2023-01.", + "example": "2023-01", + "required": false + }, + "end_date": { + "type": "string", + "title": "Einddatum", + "max_length": 7, + "show_always": false, + "help_text": "Maand waarin het algoritme buiten gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme buiten gebruik is genomen. Als het algoritme nog in gebruik is, moet dit veld leegblijven. Schrijf de datum zoals in dit voorbeeld: 2023-01.", + "example": "2023-05", + "required": false + }, + "contact_email": { + "type": "string", + "title": "Contactgegevens", + "max_length": 500, + "show_always": true, + "help_text": "De contactgegevens voor deze registratie ", + "instructions": "Het e-mailadres of de website voor contact over deze registratie. Dit moet een geldig mailadres of website zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme. Begin een website-URL met https://", + "example": "algoritmes@gemeentenoorderhaaks.nl", + "required": true + }, + "website": { + "type": "string", + "title": "Link naar publiekspagina", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over het proces waarin het algoritme ingezet wordt. Dit kan bijvoorbeeld een pagina zijn waar de voorwaarden voor het toekennen van subsidies wordt toegelicht. Dit is een andere pagina dan de link naar het decentrale register. Begin een URL met https://", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI", + "required": false + }, + "publication_category": { + "type": "enum", + "title": "Publicatiecategorie", + "show_always": true, + "help_text": "Om te bepalen welke algoritmes gepubliceerd moeten worden, is onderscheid gemaakt tussen impactvolle en overige algoritmes. Ook definieert de AI-verordening ‘Hoog-risico AI-systemen'. ", + "instructions": "Tot welke categorie een algoritme behoort volgens de handreiking: Hoog-risico AI-systeem (Categorie A), Impactvolle algoritmes (Categorie B), Overige algoritmes (Categorie C)", + "example": "Impactvolle algoritmes", + "required": true, + "permitted_values": [ + "Hoog-risico AI-systeem", + "Impactvolle algoritmes", + "Overige algoritmes" + ] + }, + "url": { + "type": "string", + "title": "Link naar bronregistratie", + "max_length": 500, + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "Als de organisatie zelf ook een Algoritmeregister gepubliceerd heeft , dan kan vanaf hiernaar verwezen worden. Decentrale registers kunnen gewenst zijn, bijvoorbeeld om de eigen doelgroep aan te spreken. Begin een URL met https:// ", + "example": "https://algoritmes.gemeentenoorderhaaks.nl/", + "required": false + }, + "goal": { + "type": "string", + "title": "Doel en impact", + "max_length": 2500, + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en hoe burgers en bedrijven ermee in aanraking komen.", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is, geeft aan wat je ermee wilt bereiken. Zo is het doel van een parkeerscanauto om sneller foutparkeerders op te sporen. De impact beschrijft hoe burgers en bedrijven ermee in aanraking komen. Het gaat hierbij om wat de impact is als het naar behoren werkt. Risico's worden behandeld in een apart veld. In het geval van de parkeerscanauto kunnen geparkeerde auto's gescand worden. Er wordt dan gekeken of zij betaald hebben met een direct resultaat. Vul dit veld in op B1-taalniveau.", + "example": "Het doel van dit algoritme is om de doorstroom van het verkeer binnen de gemeente te verbeteren. De impact is dat weggebruikers sneller van A naar B kunnen komen door kortere wachttijden.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "proportionality": { + "type": "string", + "title": "Afwegingen", + "max_length": 2500, + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn. Neem de eventuele ethische afwegingen mee in het invullen. Zo kan hier worden vermeld dat de inzet van een parkeerscanauto sneller en effectiever is vergeleken met menselijke controle. In dezelfde tijd kunnen meer auto's worden gecontroleerd. De besparing in mensen kan voor andere taken worden ingezet. De verhoogde kans op een foute boete wordt hierdoor gerechtvaardigd. Bovendien kunnen burgers altijd bezwaar aantekenen wat goed te controleren is. Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau. ", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "human_intervention": { + "type": "string", + "title": "Menselijke tussenkomst", + "max_length": 2500, + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden. Geef het ook aan indien er geen menselijke tussenkomst (nodig) is. Bijvoorbeeld bij slimme zoekopdrachten in grote databases. Hier is veelal geen menselijke controle of de gevonden waarden de juiste zijn. Vul dit veld in op B1-taalniveau.", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "risks": { + "type": "string", + "title": "Risicobeheer", + "max_length": 2500, + "show_always": true, + "help_text": "Een overzicht van hoe omgegaan wordt met geïdentificeerde risico's.", + "instructions": "Een overzicht van hoe omgegaan wordt met risico's. Risico’s kunnen onder andere zijn technische, juridische, financiële en ethische risico’s. De risico's kunnen divers zijn en verschillen sterk per algoritme. Maar denk bijvoorbeeld aan discriminatie en uitlegbaarheid. Beschrijf ook hoe met die risico's wordt omgegaan, bijvoorbeeld door periodieke monitoring.", + "example": "Er is sprake van constante monitoring. Daardoor kan snel opgemerkt worden als een sensor defect is, waardoor weggebruikers lang stil moeten blijven staan. Dit kan dan snel verholpen worden om de nadelige gevolgen te beperken. Met enige regelmaat wordt ook in de praktijk gekeken naar of de sensoren voldoende reageren op de auto's en of de wachttijden eerlijk verdeeld zijn.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "lawful_basis": { + "type": "string", + "title": "Wettelijke basis", + "max_length": 2500, + "show_always": false, + "help_text": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt ", + "instructions": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt. Geef waar mogelijk in het kort aan wat het doel is van deze wet, zodat dit ook voor niet-juristen begrijpelijk is.", + "example": "Het algoritme wordt ingezet voor taken uit de Wegenverkeerswet. Een van de taken is het waarborgen van verkeersveiligheid.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "lawful_basis_grouping": { + "type": "array", + "title": "Verwijzingen wettelijke basis", + "required": false, + "show_always": false, + "help_text": "De wettelijke basis, gekoppeld aan hun referentie op het internet.", + "instructions": "De wettelijke basis, gekoppeld aan hun referentie op het internet.", + "items": { + "title": { + "type": "string", + "title": "Titel van wettelijke basis", + "max_length": 100, + "help_text": "De titel van de wettelijke grondslag waar middels een URL naar verwezen wordt.", + "instructions": "De titel van de wettelijke grondslag waar middels een URL naar verwezen wordt.", + "example": "Wegenverkeerswet 1994", + "required": false + }, + "link": { + "type": "string", + "title": "Link naar wettelijke basis", + "max_length": 500, + "help_text": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt.", + "instructions": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "example": "https://wetten.overheid.nl/BWBR0006622", + "required": false + } + } + }, + "process_index_url": { + "type": "string", + "title": "Link naar verwerkingsregister", + "max_length": 500, + "show_always": false, + "help_text": "Link naar een openbaar deel van een verwerkingsregister die betrekking heeft op een algoritme. Daar kan meer gelezen worden over verwerkingen.", + "instructions": "Link naar een openbaar deel van een verwerkingsregister die betrekking heeft op een algoritme. Daar kan meer gelezen worden over verwerkingen. Bijvoorbeeld een verwerking op https://www.avgregisterrijksoverheid.nl/", + "example": "", + "required": false + }, + "impacttoetsen_grouping": { + "type": "array", + "title": "Verwijzingen impacttoetsen", + "required": false, + "show_always": false, + "help_text": "De impacttoetsen, gekoppeld aan hun referentie op het internet.", + "instructions": "De impacttoetsen, gekoppeld aan hun referentie op het internet.", + "items": { + "title": { + "type": "string", + "title": "Titel van impacttoets", + "help_text": "Welke impacttoets is gebruikt, zoals Data Protection Impact Asssesment (DPIA) of Impact Assessment Mensenrechten en Algoritmes (IAMA)?", + "instructions": "Naam van uitgevoerde impacttoets. Indien er andere toetsen zijn uitgevoerd dan de DPIA of IAMA, geef hiervan de naam aan.", + "example": "Impact Assessment Mensenrechten en Algoritmes (IAMA)", + "required": false, + "recommended_items": [ + "Data Protection Impact Asssesment (DPIA)", + "Impact Assessment Mensenrechten en Algoritmes (IAMA)" + ] + }, + "link": { + "type": "string", + "title": "Link naar impacttoets", + "max_length": 500, + "help_text": "Link naar de resultaten van een uitgevoerde impacttoets, zoals een DPIA of IAMA.", + "instructions": "Link naar de resultaten van een impacttoets, indien deze is uitgevoerd en publiek beschikbaar is. Een voorbeeld hiervan is het impact assessment mensenrechten en algoritmes (IAMA) of het data protection impact assessment (DPIA). Begin een URL met https://", + "example": "https://gemeentenoorderhaaks.nl/Archief/toetsen/AVR-IAMA", + "required": false + } + } + }, + "impacttoetsen": { + "type": "string", + "title": "Toelichting op impacttoetsen", + "max_length": 2500, + "show_always": false, + "help_text": "Toelichting waarom bepaalde impacttoetsen niet gedaan zijn.", + "instructions": "Het is mogelijk dat er geen impacttoets nodig was voor het algoritme. In het geval van de DPIA bijvoorbeeld als er geen sprake is van persoonsgegevens. Met dit veld kan toegelicht worden waarom bepaalde impacttoetsen niet gedaan zijn.", + "example": "", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "source_data": { + "type": "string", + "title": "Gegevens", + "max_length": 2500, + "show_always": true, + "help_text": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme. Waar mogelijk, wees specifiek. Met name voor wat betreft persoonsgegevens is het belangrijk te weten om welk type gegevens het gaat (bijvoorbeeld adres, geboorteplaats, leeftijd). Benoem waar mogelijk ook de bron zoals BRP of BKR of organisatie eigen klantgegevens.", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "source_data_grouping": { + "type": "array", + "title": "Verwijzingen gegevensbronnen", + "required": "false", + "show_always": false, + "help_text": "De gegevensbronnen, gekoppeld aan hun referentie op het internet.", + "instructions": "De gegevensbronnen, gekoppeld aan hun referentie op het internet.", + "items": { + "title": { + "type": "string", + "title": "Titel van gegevensbron", + "max_length": 500, + "help_text": "Titel van gelinkte gegevensbron", + "instructions": "De titel van een gelinkte gegevensbron.", + "example": "", + "required": false + }, + "link": { + "type": "string", + "title": "Link naar gegevensbron", + "max_length": 500, + "help_text": "Links naar aanvullende informatie over de gebruikte gegevensbron", + "instructions": "Een link naar een beschrijving van gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme. Hierbij kan bijvoorbeeld gelinkt worden naar metadata in publieke datacatalogi of naar sensorenregistraties.", + "example": "", + "required": false + } + } + }, + "methods_and_models": { + "type": "string", + "title": "Technische werking", + "max_length": 5000, + "show_always": false, + "help_text": "Uitleg van hoe het algoritme werkt.", + "instructions": "Uitleg van hoe het algoritme werkt. Beschrijf de input, werking en output van het algoritme. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas. Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL’s naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten. Geef tenminste aan of het zelflerend is of niet.", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "provider": { + "type": "string", + "title": "Leverancier", + "max_length": 200, + "show_always": false, + "help_text": "Indien van toepassing, de externe leverancier van het algoritme.", + "instructions": "Naam van de externe leverancier van het algoritme. Als het intern ontwikkeld is, noteer dan ‘Intern ontwikkeld’. Het gaat hierbij bijvoorbeeld niet om het gebruik van open source packages die gebruikt worden in een groter algoritme.", + "example": "Haaks softwarebedrijf", + "required": false + }, + "publiccode": { + "type": "string", + "title": "Link naar broncode", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf.", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven. Begin een URL met https://", + "example": "https://github.com/haakssoftwarebedrijf.nl/vrisoftware", + "required": false + }, + "lang": { + "type": "enum", + "title": "Taal", + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd.", + "instructions": "De code van de taal van de registratie. Dit veld is aanwezig, omdat het Algoritmeregister meertalig aangeboden kan worden. Op dit moment wordt alleen Nederlands (nld) aangeboden. De talen zijn in ISO 639-3 code.", + "example": "nld", + "permitted_values": [ + "nld" + ], + "required": true + }, + "standard_version": { + "type": "enum", + "title": "Versie publicatiestandaard", + "show_always": false, + "help_text": "De versie van de publicatiestandaard waar dit algoritme in is geregistreed.", + "instructions": "De versie van de publicatiestandaard die gehanteerd is voor deze registratie.Op dit moment is dat '0.4.0'.", + "example": "1.0.0", + "required": false, + "permitted_values": [ + "1.0.0" + ] + }, + "source_id": { + "type": "string", + "title": "Bron-ID", + "max_length": 100, + "show_always": false, + "help_text": "De unieke code van dit algoritme in het register van de eigenaar", + "instructions": "Indien van toepassing, de unieke identificatie voor deze registratie zoals door de eigenaar wordt gehanteerd. Dit is dus de verwijzing naar het algoritme in de interne database of het interne register van uw organisatie.", + "example": "n.v.t.", + "required": false + }, + "tags": { + "type": "string", + "title": "Zoektermen", + "max_length": 2500, + "show_always": false, + "help_text": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten.", + "instructions": "Termen gerelateerd aan dit algoritme. Gescheiden door komma's. Dit veld wordt niet weergegeven op de website en kan worden gebruikt om de vindbaarheid van de registratie te verbeteren. Zo kan bijvoorbeeld de naam van het relevante ministerie worden toegevoegd om als uitvoerorganisatie beter vindbaar te zijn met de zoekfunctie.", + "example": "Verkeer, Mobiliteit, VRI, Infrastructuur, Waddengebied", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + } + } + } +} \ No newline at end of file diff --git a/frontend/server/api/_sitemap-urls.ts b/frontend/server/api/_sitemap-urls.ts new file mode 100644 index 00000000..938554ac --- /dev/null +++ b/frontend/server/api/_sitemap-urls.ts @@ -0,0 +1,17 @@ +import axios from 'axios' + +export default cachedEventHandler( + async () => { + const response = await axios.get( + process.env.NUXT_PUBLIC_API_BASE_URL + '/sitemap-urls' + ) + if (response.status !== 200) { + return [] + } + return response.data + }, + { + name: 'sitemap-dynamic-url', + maxAge: 0, // cache URLs for 10 minutes + } +) diff --git a/frontend/services/aggregates.ts b/frontend/services/aggregates.ts new file mode 100644 index 00000000..326c9c21 --- /dev/null +++ b/frontend/services/aggregates.ts @@ -0,0 +1,93 @@ +export interface DocumentCount { + name: string + identifier: string + number_of_algorithmdescriptions: number + show_page: boolean + joined: boolean + code: string +} + +export interface DataObject { + key: string + count: number + showPage: boolean + joined: boolean + code: string +} + +export interface GeoJson { + type: string + name?: string + features: Array<{ + type: string + id?: string + properties: { + id: number + jrstatcode?: string + rubriek?: string + statcode?: string + statnaam?: string + geometry_g?: string + gag_id?: string | null + hierarchie?: string | null + hierarch_1?: string | null + inspire_id?: string | null + sde_id?: string | null + land_code?: string | null + inspire__1?: string | null + inspire__2?: string | null + wbh_code_o?: string | null + einde_leve?: string | null + laatste_wi?: string | null + admin_code?: string | null + waterschap?: string + publiceren?: string + Aangemeld?: number + Actief?: number + KVK?: number + tnostatus?: number | null + CPT?: number + GMW?: number + BHR?: number + ASV?: number | null + od_code?: string + od_naam?: string + naam_alt?: string + } + bbox?: number[] + geometry: { + type: string + coordinates: number[][][][] + } + }> + crs: { + type: string + properties: { + name: string + } + } + bbox?: number[] + numberMatched?: number + numberReturned?: number + timeStamp?: string + totalFeatures?: number +} + +export interface ToolTipData { + orgName: string + algoCount: number + orgPage: string + orgPageUrl: string + classificationColour: string | undefined + orgCode: string + joined: boolean + algoKey: string + algoPublished: string +} + +export const OrganisationTypes = { + Province: 'province', + Municipality: 'municipality', + WaterAuthority: 'waterAuthority', + EnvironmentalService: 'environmentalService', +} as const diff --git a/frontend/services/algoritme.ts b/frontend/services/algoritme.ts index a2dc193b..92ce66ce 100644 --- a/frontend/services/algoritme.ts +++ b/frontend/services/algoritme.ts @@ -1,37 +1,50 @@ import type { Algoritme, - AlgNameIdOrg, - AlgoritmeFilter, - AggregatedAlgoritme, + Language, + HighlightedAlgoritme, + Suggestion, } from '@/types/algoritme' +import type { + AlgoritmeFilterData, + AlgoritmeSelectedFilter, + AlgoritmeQuery, +} from '@/types/filter/algoritme' -type AlgoritmeQuery = { - filters: AlgoritmeFilter[] - page: number - limit: number - search?: string -} - -type AlgoritmeQueryResult = { +export type AlgoritmeQueryResult = { results: Algoritme[] total_count: number - aggregations: AggregatedAlgoritme[] + filter_data: AlgoritmeFilterData + selected_filters: AlgoritmeSelectedFilter[] +} + +export type SearchSuggestionResult = { + algorithms: Suggestion[] } -const getAll = (query: AlgoritmeQuery) => - useFetch('/algoritme/', { +const getAll = (query: AlgoritmeQuery, language: Language) => { + if (!query.searchtext) { + delete query.searchtext + } + return useFetch(`/algoritme/${language}`, { baseURL: useRuntimeConfig().public.apiBaseUrl, method: 'POST', body: query, }) +} -const getOne = (slug: string) => - useFetch(`/algoritme/${slug}/`, { - baseURL: useRuntimeConfig().public.apiBaseUrl, - }) +// 'Get' version of the getAll service, but does not seem to load properly. +// const getAll = (query: AlgoritmeQuery) => { +// if (!query.searchtext) { +// delete query.searchtext +// } +// return useFetch('/algoritme/', { +// baseURL: useRuntimeConfig().public.apiBaseUrl, +// query, +// }) +// } -const getNameIdOrg = () => - useFetch('/algoritme-simple-list/', { +const getOne = (id: string, language: Language) => + useFetch(`/algoritme/${language}/${id}`, { baseURL: useRuntimeConfig().public.apiBaseUrl, }) @@ -41,13 +54,18 @@ const getCount = (column: string) => }) const getTotalCount = () => - useFetch(`/db-count/`, { + useFetch(`/algoritme/total-count`, { + baseURL: useRuntimeConfig().public.apiBaseUrl, + }) + +const getHighlighted = (language: Language) => + useFetch(`/precomputed/${language}`, { baseURL: useRuntimeConfig().public.apiBaseUrl, }) const getColumns = () => // useFetch<[{ table_name: string; column_name: string; is_nullable: string }]>( - useFetch(`/columns/`, { + useFetch<{ column_name: string; is_nullable: string }[]>(`/columns/`, { baseURL: useRuntimeConfig().public.apiBaseUrl, }) @@ -57,16 +75,36 @@ const getCountWithFilledColumns = (columns: string[] | string) => query: { columns }, }) -const downloadUrl = () => - `${useRuntimeConfig().public.apiBaseUrl}/file/algoritme` +const getApiStandard = (version: string) => + useFetch('/v' + version.replace(/\./g, '_') + '/openapi.json', { + baseURL: useRuntimeConfig().public.aanleverBaseUrl, + }) + +const downloadAllUrl = (language: Language) => { + return `${useRuntimeConfig().public.apiBaseUrl}/downloads/${language}` +} + +const downloadOneUrl = (lars: string, language: Language) => { + return `${ + useRuntimeConfig().public.apiBaseUrl + }/downloads/algorithms/${lars}/${language}` +} + +const getSearchSuggestion = (search: string, language: Language) => + useFetch(`/suggestion/${language}/${search}`, { + baseURL: useRuntimeConfig().public.apiBaseUrl, + }) export default { getAll, getOne, - getNameIdOrg, getCount, + getHighlighted, getTotalCount, getColumns, getCountWithFilledColumns, - downloadUrl, + getApiStandard, + downloadAllUrl, + downloadOneUrl, + getSearchSuggestion, } diff --git a/frontend/services/brokenlink.ts b/frontend/services/brokenlink.ts new file mode 100644 index 00000000..52351d2d --- /dev/null +++ b/frontend/services/brokenlink.ts @@ -0,0 +1,11 @@ +import type { Language } from '@/types/algoritme' +import type { BrokenLink } from '@/types/brokenlink' + +const getBrokenLinks = (language: Language) => + useFetch(`/broken-links/${language}`, { + baseURL: useRuntimeConfig().public.apiBaseUrl, + }) + +export default { + getBrokenLinks, +} diff --git a/frontend/services/dashboard.ts b/frontend/services/dashboard.ts new file mode 100644 index 00000000..36440313 --- /dev/null +++ b/frontend/services/dashboard.ts @@ -0,0 +1,84 @@ +import type { DocumentCount } from './aggregates' +import type { Language } from '@/types/algoritme' +import type { + OrganisationTop20, + PublicationCategoriesCount, + MonthlyCount, + HtmlFiguresRecent, +} from '@/types/dashboard' + +const getJoinedOrg = () => { + return useFetch('/organisation/joined-permonth', { + baseURL: useRuntimeConfig().public.apiBaseUrl, + method: 'GET', + }) +} + +const getPublishedAlg = () => { + return useFetch('/algorithm/published-permonth', { + baseURL: useRuntimeConfig().public.apiBaseUrl, + method: 'GET', + }) +} + +const getOrgTop20 = (language: Language) => { + return useFetch(`/organisation/top-20/${language}`, { + baseURL: useRuntimeConfig().public.apiBaseUrl, + method: 'GET', + }) +} + +const getPubCategories = (language: Language) => { + return useFetch( + `/algorithm/publication-categories/${language}`, + { + baseURL: useRuntimeConfig().public.apiBaseUrl, + method: 'GET', + } + ) +} + +const getMunicipalityData = () => { + return useFetch('/organisation/municipalities', { + baseURL: useRuntimeConfig().public.apiBaseUrl, + method: 'GET', + }) +} + +const getProvinceData = () => { + return useFetch('/organisation/provinces', { + baseURL: useRuntimeConfig().public.apiBaseUrl, + method: 'GET', + }) +} + +const getWaterAuthorityData = () => { + return useFetch('/organisation/water-authorities', { + baseURL: useRuntimeConfig().public.apiBaseUrl, + method: 'GET', + }) +} + +const getEnvironmentalServiceData = () => { + return useFetch('/organisation/environmental-services', { + baseURL: useRuntimeConfig().public.apiBaseUrl, + method: 'GET', + }) +} + +const getHtmlFiguresRecent = () => + useFetch(`/dashboard/figures`, { + baseURL: useRuntimeConfig().public.apiBaseUrl, + }) + +export default { + getHtmlFiguresRecent, + getJoinedOrg, + getPublishedAlg, + getOrgTop20, + getPubCategories, + getMunicipalityData, + getProvinceData, + getWaterAuthorityData, + getEnvironmentalServiceData, +} diff --git a/frontend/services/organisation.ts b/frontend/services/organisation.ts new file mode 100644 index 00000000..fb358185 --- /dev/null +++ b/frontend/services/organisation.ts @@ -0,0 +1,43 @@ +import type { Language } from '@/types/algoritme' +import type { OrganisationQuery } from '@/types/filter/organisation' +import type { + OrganisationPage, + OrganisationQueryResult, + OrganisationSearchSuggestionResponse, +} from '@/types/organisation' + +const getOne = (orgCode: string, language: Language) => + useFetch(`/organisation-details/${orgCode}/${language}`, { + baseURL: useRuntimeConfig().public.apiBaseUrl, + }) + +const getMany = (query: OrganisationQuery, language: Language) => { + if (!query.searchtext) { + delete query.searchtext + } + return useFetch(`/organisation/${language}`, { + baseURL: useRuntimeConfig().public.apiBaseUrl, + method: 'POST', + body: query, + }) +} + +const getFullNameOrganisation = (search: string, language: Language) => + useFetch( + `/organisation/${language}/${search}`, + { + baseURL: useRuntimeConfig().public.apiBaseUrl, + } + ) + +const getCountOrganisation = (language: Language) => + useFetch(`/organisation-count/${language}`, { + baseURL: useRuntimeConfig().public.apiBaseUrl, + }) + +export default { + getOne, + getMany, + getFullNameOrganisation, + getCountOrganisation, +} diff --git a/frontend/services/textLoader.ts b/frontend/services/textLoader.ts new file mode 100644 index 00000000..be7cd0db --- /dev/null +++ b/frontend/services/textLoader.ts @@ -0,0 +1,10 @@ +import type { SupportingText } from '@/types/textLoader' + +const getAllContent = async () => + await useFetch(`/supporting-text`, { + baseURL: useRuntimeConfig().public.apiBaseUrl, + method: 'GET', + }) + +export { getAllContent } + diff --git a/frontend/standard-config/v0_1.json b/frontend/standard-config/v0_1.json new file mode 100644 index 00000000..2bd471f1 --- /dev/null +++ b/frontend/standard-config/v0_1.json @@ -0,0 +1,345 @@ +{ + "AlgorithmIn": { + "title": "AlgorithmIn", + "type": "object", + "properties": { + "name": { + "title": "Naam", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden" + }, + "organization": { + "title": "Organisatie", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De volledige naam van de organisatie verantwoordelijk voor de inzet van het algoritme." + }, + "department": { + "title": "Afdeling", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De volledige naam van de afdeling of divisie verantwoordelijk voor de inzet van het algoritme." + }, + "description_short": { + "title": "Korte omschrijving", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Een korte, abstracte beschrijving van het algoritme." + }, + "type": { + "title": "Type algoritme", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Is het algoritme op regels gebaseerd of zelflerend? Regelgebaseerde algoritmes zijn handmatig door mensen gebouwd, meestal op basis van wetten of verordeningen. Zelflerende algoritmes kunnen zelf verbanden ontdekken in gegevens." + }, + "category": { + "title": "Beleidsterrein", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Trefwoorden over het beleidsterrein waarin het algoritme wordt ingezet." + }, + "website": { + "title": "Link naar publiekspagina", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie." + }, + "status": { + "title": "Status", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik." + }, + "goal": { + "title": "Doel", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen." + }, + "impact": { + "title": "Impact", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De impact van het algoritme op burgers en bedrijven. Bijvoorbeeld: hoe werkt het algoritme en wat zijn de verwachte consequenties daarvan voor het individu of bedrijf?" + }, + "proportionality": { + "title": "Proportionaliteit", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is." + }, + "decision_making_process": { + "title": "Proces", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De naam van het bedrijfs- of besluitvormingsproces in de organisatie waarbinnen het algoritme wordt ingezet." + }, + "documentation": { + "title": "Link naar projectpagina", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "URL van de projectpagina van de organisatie zelf over dit specifieke gebruik van het algoritme." + }, + "description": { + "title": "Omschrijving", + "maxLength": 10000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een uitgebreide beschrijving van het algoritme (500-5000 tekens)." + }, + "application_url": { + "title": "Link naar ontwikkelaar", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een URL naar een applicatiepagina van de ontwikkelaar. Op deze pagina kunt u meer algemene technische informatie vinden over het algoritme en de ontwikkelaar zelf." + }, + "publiccode": { + "title": "Link naar broncode", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf." + }, + "mprd": { + "title": "Koppeling met basisregistraties", + "maxLength": 500, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Maakt het algoritme direct gebruik van data uit het Stelsel van Basisregistraties? Meer informatie is te vinden op https://digitaleoverheid.nl/" + }, + "source_data": { + "title": "Databronnen", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een overzicht van de databronnen die op dit moment gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme" + }, + "methods_and_models": { + "title": "Methoden en modellen", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Standaardmethoden of modellen die het algoritme gebruikt." + }, + "monitoring": { + "title": "Monitoring", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord." + }, + "human_intervention": { + "title": "Menselijke tussenkomst", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden." + }, + "risks": { + "title": "Risico's", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een overzicht van de voorziene risico's bij de inzet van het algoritme" + }, + "performance_standard": { + "title": "Prestatienormen", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten." + }, + "competent_authority": { + "title": "Bevoegde authoriteit", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Volledige naam van de bevoegde autoriteit verantwoordelijk voor de inzet van het algoritme." + }, + "lawful_basis": { + "title": "Wettelijke grondslag", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Een omschrijving of een link naar de wettelijke grondslag voor de inzet van het algoritme. Bijvoorbeeld: een wet, een verordening of een formeel besluit." + }, + "iama": { + "title": "Impact Assessment Mensenrechten en Algoritmes (IAMA)", + "maxLength": 128, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Is het algoritme getoetst op het nakomen van mensenrechten met een Impact Assessment Mensenrechten en Algoritmes (IAMA)?" + }, + "iama_description": { + "title": "Omschrijving van de IAMA", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Een overzicht van de belangrijkste zaken die uit de impact assessment mensenrechten en algoritmes (IAMA) naar voren kwamen." + }, + "dpia": { + "title": "Data Protection Impact Assessment (DPIA)", + "maxLength": 128, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Is het algoritme getoetst op veilig gebruik van gegevens met een Data Protection Impact Assessment (DPIA)." + }, + "dpia_description": { + "title": "Omschrijving van de DPIA", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Een overzicht van de belangrijkste zaken die uit de data protection impact assessment (DPIA) naar voren kwamen." + }, + "objection_procedure": { + "title": "Bezwaarprocedure", + "maxLength": 5000, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme." + }, + "standard_version": { + "title": "Schema", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_1__EnumStandardVersion" + } + ], + "example": "0.1", + "instructions": "", + "show_always": false, + "help_text": "" + }, + "uuid": { + "title": "UUID", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "" + }, + "url": { + "title": "Link naar bronregistratie", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat." + }, + "contact_email": { + "title": "E-mailadres van de contactpersoon", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": true, + "help_text": "De e-mail voor contact over deze registratie." + }, + "area": { + "title": "Geografisch gebied", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "Het geografische gebied waarin het algoritme wordt ingezet." + }, + "lang": { + "title": "Taal", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd." + }, + "revision_date": { + "title": "Herzieningsdatum", + "maxLength": 1024, + "type": "string", + "example": "", + "instructions": "", + "show_always": false, + "help_text": "De datum waarvoor deze registratie moet worden herzien." + } + } + } +} \ No newline at end of file diff --git a/frontend/standard-config/v0_4.json b/frontend/standard-config/v0_4.json new file mode 100644 index 00000000..927cde13 --- /dev/null +++ b/frontend/standard-config/v0_4.json @@ -0,0 +1,294 @@ +{ + "AlgorithmIn": { + "title": "AlgorithmIn", + "type": "object", + "properties": { + "name": { + "title": "Naam", + "maxLength": 100, + "type": "string", + "example": "Automatische Verkeersregeling Ringweg", + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "De algemeen gehanteerde naam van het algoritme.", + "show_always": true + }, + "organization": { + "title": "Organisatie", + "maxLength": 250, + "type": "string", + "example": "Gemeente Noorderhaaks", + "help_text": "De volledige naam van de organisatie waar het algoritme ingezet wordt.", + "instructions": "De volledige naam van de organisatie waar het algoritme ingezet wordt. In het geval van een uitvoeringsorganisatie vallend onder een ministerie: gebruik de naam van de uitvoeringsorganisatie zelf, gevolgd door de afkorting tussen haakjes.", + "show_always": true + }, + "description_short": { + "title": "Korte omschrijving", + "maxLength": 250, + "type": "string", + "example": "Dit algoritme zorgt met sensoren in het wegdek ervoor dat het verkeer zo makkelijk mogelijk doorstroomt.", + "help_text": "Een korte beschrijving van het algoritme.", + "instructions": "Een korte, duidelijke beschrijving van het algoritme en het proces waarin deze gebruikt wordt. Bij voorkeur in één of twee zinnen. Doel van dit veld is om bij het zoeken naar algoritmes een korte omschrijving van het algoritme te geven. Vul dit veld in op B1-taalniveau. ", + "show_always": true + }, + "type": { + "title": "(Zelf)lerend", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_4__EnumType" + } + ], + "example": "Nee", + "help_text": "Is het algoritme zelflerend? In een niet-zelflerend algoritme specificeert de mens de regels die de computer moet volgen. Als het een zelflerend algoritme is, leert de machine over de patronen in de data. ", + "instructions": "Is het algoritme zelflerend? In een niet-zelflerend algoritme specificeert de mens de regels die de computer moet volgen. Als het een zelflerend algoritme is, leert de machine over de patronen in de data. In het geval dat een algoritme deels beiden doet, kies voor dan voor zelflerend. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven.", + "show_always": true + }, + "category": { + "title": "Beleidsterrein", + "type": "array", + "items": { + "$ref": "#/components/schemas/v0_4__EnumCategory" + }, + "example": [ + "Verkeer", + "Landbouw" + ], + "help_text": "Het beleidsterrein waarin het algoritme wordt ingezet", + "instructions": "Beleidsterrein(en) waarin het algoritme wordt ingezet.", + "show_always": true + }, + "website": { + "title": "Link naar publiekspagina", + "maxLength": 500, + "type": "string", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI", + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over het proces waarin het algoritme ingezet wordt. Dit is een andere pagina dan de link naar het decentrale register. Begin een URL met https:// ", + "show_always": false + }, + "status": { + "title": "Status", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_4__EnumStatus" + } + ], + "example": "In gebruik", + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "De huidige status van het algoritme: In ontwikkeling, In gebruik, Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor ‘In gebruik’. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven. Het is niet verplicht algoritmes in ontwikkeling te vermelden in het Algoritmeregister. De mogelijkheid wordt wel geboden voor organisaties die burgers willen betrekken al tijdens de ontwikkelingen van algoritmes. ", + "show_always": true + }, + "begin_date": { + "title": "Begindatum", + "maxLength": 7, + "type": "string", + "example": "2023-01", + "help_text": "Maand waarin het algoritme in gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme in gebruik is genomen. Schrijf de datum op zoals in dit voorbeeld: 01-1970", + "show_always": true + }, + "end_date": { + "title": "Einddatum", + "maxLength": 7, + "type": "string", + "example": "2023-05", + "help_text": "Maand waarin het algoritme buiten gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme buiten gebruik is genomen. Als het algoritme nog in gebruik is, moet dit veld leegblijven. Schrijf de datum op zoals in dit voorbeeld: 01-1970", + "show_always": false + }, + "goal": { + "title": "Doel en impact", + "maxLength": 2500, + "type": "string", + "example": "", + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en wat voor impact de inzet heeft op burgers en bedrijven. ", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is en wat voor impact de inzet heeft op burgers en bedrijven. Vul dit veld in op B1-taalniveau. ", + "show_always": true + }, + "proportionality": { + "title": "Afwegingen", + "maxLength": 2500, + "type": "string", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers.", + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn. Neem ook de ethische afwegingen mee in het invullen. Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau.", + "show_always": true + }, + "provider": { + "title": "Leverancier", + "maxLength": 200, + "type": "string", + "example": "Haaks softwarebedrijf", + "help_text": "Indien van toepassing, de externe leverancier van het algoritme.", + "instructions": "Naam van de externe leverancier van het algoritme. Als het intern ontwikkeld is, noteer dan ‘Intern ontwikkeld’. Het gaat hierbij bijvoorbeeld niet om het gebruik van open source packages die gebruikt worden in een groter algoritme. Indien u zelf het algoritme hebt ontwikkeld, dient dit veld leeg te blijven. ", + "show_always": false + }, + "lawful_basis": { + "title": "Wettelijke basis", + "maxLength": 2500, + "type": "string", + "example": "", + "help_text": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt ", + "instructions": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt ", + "show_always": false + }, + "lawful_basis_link": { + "title": "Wettelijke basis", + "maxLength": 200, + "type": "string", + "example": "https://wetten.overheid.nl/BWBR0006622/2023-01-01 ", + "help_text": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt.", + "instructions": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "show_always": false + }, + "impacttoetsen": { + "title": "Impacttoetsen", + "type": "array", + "items": { + "type": "string" + }, + "example": [ + "Impact Assessment Mensenrechten en Algoritmes (IAMA)" + ], + "help_text": "Welke impacttoetsen zijn gebruikt, zoals Data Protection Impact Assessment (DPIA) of Impact Assessment Mensenrechten en Algoritmes (IAMA)? ", + "instructions": "Naam/namen van uitgevoerde impacttoetsen. Dit veld is vrij in te vullen, en de waardes zijn alleen suggesties.", + "recommended_items": [ + "Data Protection Impact Assessment (DPIA)", + "Impact Assessment Mensenrechten en Algoritmes (IAMA)" + ], + "show_always": true + }, + "iama_description": { + "title": "Link naar impacttoetsen", + "maxLength": 500, + "type": "string", + "example": "DPIA: https://link.com, IAMA: https://link.nl", + "help_text": "Link naar de resultaten van een uitgevoerde impacttoets, zoals een DPIA IAMA. ", + "instructions": "Link naar de resultaten van een impacttoets, indien deze is uitgevoerd en publiek beschikbaar is. Een voorbeeld hiervan is het impact assessment mensenrechten en algoritmes (IAMA) of het data protection impact assessment (DPIA). Formatteer het dusdanig dat de naam van de toets gevolgd wordt door een dubbele punt en de URL. Als er meerdere zijn, kunnen deze gescheiden worden door komma's. Begin een URL met https://", + "show_always": false + }, + "url": { + "title": "Link naar bronregistratie", + "maxLength": 500, + "type": "string", + "example": "https://algoritmes.gemeentenoorderhaaks.nl/", + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "Als de organisatie zelf ook een algoritmeregister gepubliceerd heeft waarvandaan uiteindelijk de informatie opgehaald wordt, dan kan vanaf hiernaar verwezen worden.", + "show_always": false + }, + "contact_email": { + "title": "Contactgegevens", + "maxLength": 500, + "type": "string", + "example": "algoritmes@gemeentenoorderhaaks.nl", + "help_text": "De contactgegevens voor deze registratie ", + "instructions": "Het e-mailadres voor contact over deze registratie. Dit kan een geldig mailadres zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme. Het alternatief is een extern webformulier die op dezelfde manier gebruikt kan worden. Begin een URL met https://.", + "show_always": true + }, + "lang": { + "title": "Taal", + "maxLength": 3, + "type": "string", + "example": "nld", + "help_text": "De taal waarin deze registratie is ingevoerd.", + "instructions": "De code van de taal van de registratie. Dit veld is aanwezig, omdat het Algoritmeregister meertalig aangeboden kan worden. Op dit moment wordt alleen Nederlands (nld) aangeboden. ", + "show_always": false + }, + "standard_version": { + "title": "Schema", + "type": "enum", + "allOf": [ + { + "$ref": "#/components/schemas/v0_4__EnumStandardVersion" + } + ], + "example": "0.4", + "help_text": "De versie van de publicatiestandaard waar dit algoritme in is geregistreed.", + "instructions": "De versie van de publicatiestandaard die gehanteerd is voor deze registratie.Op dit moment is dat '0.4'.", + "show_always": false + }, + "uuid": { + "title": "Landelijk-ID", + "maxLength": 100, + "type": "string", + "example": "n.v.t.", + "help_text": "De unieke code van dit algoritme in het landelijke register.", + "instructions": "De unieke identificatie van deze registratie in het landelijke Algoritmeregister. Bij het aanleveren van deze registratie wordt er automatisch een UUID gegenereerd door de database van het landelijk Algoritmeregister. Hier dient bij de eerste aanlevering dus niks handmatig ingevuld te worden. Bij het wijzigen van registraties kan naar deze ID verwezen worden om de juiste registratie te vinden. In het geval van een update van een al bestaand en gepubliceerde registratie, moet de ID in de toekomst wel worden ingevuld. ", + "show_always": true + }, + "source_id": { + "title": "Bron-ID", + "maxLength": 100, + "type": "string", + "example": "n.v.t.", + "help_text": "De unieke code van dit algoritme in het register van de eigenaar", + "instructions": "Indien van toepassing, de unieke identificatie voor deze registratie zoals door de eigenaar wordt gehanteerd. Dit is dus de verwijzing naar het algoritme in de interne database of het interne register van uw organisatie.", + "show_always": false + }, + "tags": { + "title": "Tags", + "maxLength": 2500, + "type": "string", + "example": "Verkeer, Mobiliteit, VRI, Infrastructuur, Waddengebied", + "help_text": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten.", + "instructions": "Termen gerelateerd aan dit algoritme. Gescheiden door komma's. Dit veld wordt niet weergegeven op de website en kan worden gebruikt om de vindbaarheid van de registratie te verbeteren. Zo kan bijvoorbeeld de naam van het relevante ministerie worden toegevoegd om als uitvoerorganisatie beter vindbaar te zijn met de zoekfunctie.", + "show_always": false + }, + "source_data": { + "title": "Gegevens", + "maxLength": 5000, + "type": "string", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks.", + "help_text": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "show_always": true + }, + "source_data_link": { + "title": "Link naar gegevensbronnen", + "maxLength": 500, + "type": "string", + "example": "Lijst van links naar aanvullende informatie over de gebruikte gegevensbronnen. Hierbij kan bijvoorbeeld gelinkt worden naar metadata in publieke datacatalogi of naar sensorenregistraties.", + "help_text": "Links naar aanvullende informatie over de gebruikte gegevensbronnen", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "show_always": false + }, + "methods_and_models": { + "title": "Technische werking", + "maxLength": 5000, + "type": "string", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI", + "help_text": "Uitleg van hoe het algoritme werkt.", + "instructions": "Een technische uitleg van hoe het algoritme werkt en uitkomsten genereert. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas. Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL’s naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten.", + "show_always": false + }, + "publiccode": { + "title": "Link naar broncode", + "maxLength": 500, + "type": "string", + "example": "https://github.com/haakssoftwarebedrijf.nl/vrisoftware", + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf.", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven. Begin een URL met https://", + "show_always": false + }, + "human_intervention": { + "title": "Menselijke tussenkomst", + "maxLength": 2500, + "type": "string", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht.", + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden. Vul dit veld in op B1-taalniveau. ", + "show_always": true + }, + "risks": { + "title": "Risicobeheer", + "maxLength": 2500, + "type": "string", + "example": "", + "help_text": "Een overzicht van de voorziene risico's bij de inzet van het algoritme en hoe deze, mits van toepassing, gemitigeerd zijn", + "instructions": "Een overzicht van de voorziene risico's bij de inzet van het algoritme en hoe deze, mits van toepassing, gemitigeerd zijn", + "show_always": true + } + } + } +} \ No newline at end of file diff --git a/frontend/standard-config/v1_0.json b/frontend/standard-config/v1_0.json new file mode 100644 index 00000000..760e68c2 --- /dev/null +++ b/frontend/standard-config/v1_0.json @@ -0,0 +1,459 @@ +{ + "AlgorithmIn": { + "title": "AlgorithmIn", + "type": "object", + "properties": { + "name": { + "type": "string", + "title": "Naam", + "max_length": 100, + "show_always": true, + "help_text": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "Gebruik een naam, bij voorkeur met een werkwoord, die aangeeft wat het algoritme doet. Dit kan de algemeen gehanteerde naam zijn van het algoritme binnen de organisatie, mits begrijpelijk voor externen die niet bekend zijn met het algoritme.", + "example": "Automatische Verkeersregeling Ringweg", + "required": true + }, + "description_short": { + "type": "string", + "title": "Korte omschrijving", + "max_length": 350, + "show_always": true, + "help_text": "Een korte beschrijving van het algoritme.", + "instructions": "Een korte, duidelijke beschrijving van het algoritme en het proces waarin deze gebruikt wordt. Bij voorkeur in twee of drie zinnen. Doel van dit veld is om snel begrip te krijgen van wat het algoritme doet. Het veld wordt weergegeven in het zoekoverzicht. Vul dit veld in op B1-taalniveau.", + "example": "Dit algoritme zorgt met sensoren in het wegdek ervoor dat het verkeer zo makkelijk mogelijk doorstroomt.", + "required": true + }, + "organization": { + "type": "string", + "title": "Organisatie", + "max_length": 100, + "show_always": true, + "help_text": "De volledige naam van de organisatie waar het algoritme ingezet wordt.", + "instructions": "De volledige naam van de organisatie waar het algoritme ingezet wordt. Deze wordt gebaseerd op de TOOI-waardelijst: standaarden.overheid.nl. Eén registratie kan maar over één organisatie gaan. Er kunnen dus niet meerdere waarden ingevuld worden. Indien een algoritme bij meerdere organisaties wordt ingezet, zijn aparte registraties vereist.", + "example": "Gemeente Noorderhaaks", + "required": true + }, + "category": { + "type": "array", + "title": "Thema", + "max_items": 3, + "show_always": true, + "help_text": "Het beleidsterrein waarin het algoritme wordt ingezet", + "instructions": "Beleidsterrein(en) waarin het algoritme wordt ingezet.", + "example": [ + "Verkeer" + ], + "required": false, + "permitted_values": [ + "Organisatie en bedrijfsvoering", + "Cultuur en recreatie", + "Economie", + "Overheidsfinanciën", + "Wonen", + "Internationaal", + "Migratie en integratie", + "Natuur en milieu", + "Onderwijs en wetenschap", + "Openbare orde en veiligheid", + "Recht", + "Ruimte en infrastructuur", + "Sociale zekerheid", + "Verkeer", + "Werk", + "Zorg en gezondheid" + ] + }, + "status": { + "type": "enum", + "title": "Status", + "show_always": true, + "help_text": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "De huidige status van het algoritme: In ontwikkeling, In gebruik, Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor ‘In gebruik’. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven. Het is niet verplicht algoritmes in ontwikkeling of buiten gebruik te vermelden in het Algoritmeregister. De mogelijkheid wordt wel geboden voor organisaties die burgers willen betrekken al tijdens de ontwikkelingen van algoritmes. ", + "example": "In gebruik", + "required": true, + "permitted_values": [ + "In ontwikkeling", + "In gebruik", + "Buiten gebruik" + ] + }, + "begin_date": { + "type": "string", + "title": "Begindatum", + "max_length": 7, + "show_always": true, + "help_text": "Maand waarin het algoritme in gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme in gebruik is genomen. Schrijf de datum op zoals in dit voorbeeld: 2023-01.", + "example": "2023-01", + "required": false + }, + "end_date": { + "type": "string", + "title": "Einddatum", + "max_length": 7, + "show_always": false, + "help_text": "Maand waarin het algoritme buiten gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme buiten gebruik is genomen. Als het algoritme nog in gebruik is, moet dit veld leegblijven. Schrijf de datum zoals in dit voorbeeld: 2023-01.", + "example": "2023-05", + "required": false + }, + "contact_email": { + "type": "string", + "title": "Contactgegevens", + "max_length": 500, + "show_always": true, + "help_text": "De contactgegevens voor deze registratie ", + "instructions": "Het e-mailadres of de website voor contact over deze registratie. Dit moet een geldig mailadres of website zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme. Begin een website-URL met https://", + "example": "algoritmes@gemeentenoorderhaaks.nl", + "required": true + }, + "website": { + "type": "string", + "title": "Link naar publiekspagina", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over het proces waarin het algoritme ingezet wordt. Dit kan bijvoorbeeld een pagina zijn waar de voorwaarden voor het toekennen van subsidies wordt toegelicht. Dit is een andere pagina dan de link naar het decentrale register. Begin een URL met https://", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI", + "required": false + }, + "publication_category": { + "type": "enum", + "title": "Publicatiecategorie", + "show_always": true, + "help_text": "Om te bepalen welke algoritmes gepubliceerd moeten worden, is onderscheid gemaakt tussen impactvolle en overige algoritmes. Ook definieert de AI-verordening ‘Hoog-risico AI-systemen'. ", + "instructions": "Tot welke categorie een algoritme behoort volgens de handreiking: Hoog-risico AI-systeem (Categorie A), Impactvolle algoritmes (Categorie B), Overige algoritmes (Categorie C)", + "example": "Impactvolle algoritmes", + "required": true, + "permitted_values": [ + "Hoog-risico AI-systeem", + "Impactvolle algoritmes", + "Overige algoritmes" + ] + }, + "url": { + "type": "string", + "title": "Link naar bronregistratie", + "max_length": 500, + "show_always": false, + "help_text": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "Als de organisatie zelf ook een Algoritmeregister gepubliceerd heeft , dan kan vanaf hiernaar verwezen worden. Decentrale registers kunnen gewenst zijn, bijvoorbeeld om de eigen doelgroep aan te spreken. Begin een URL met https:// ", + "example": "https://algoritmes.gemeentenoorderhaaks.nl/", + "required": false + }, + "goal": { + "type": "string", + "title": "Doel en impact", + "max_length": 2500, + "show_always": true, + "help_text": "Het doel waarvoor het algoritme ontwikkeld is en hoe burgers en bedrijven ermee in aanraking komen.", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is, geeft aan wat je ermee wilt bereiken. Zo is het doel van een parkeerscanauto om sneller foutparkeerders op te sporen. De impact beschrijft hoe burgers en bedrijven ermee in aanraking komen. Het gaat hierbij om wat de impact is als het naar behoren werkt. Risico's worden behandeld in een apart veld. In het geval van de parkeerscanauto kunnen geparkeerde auto's gescand worden. Er wordt dan gekeken of zij betaald hebben met een direct resultaat. Vul dit veld in op B1-taalniveau.", + "example": "Het doel van dit algoritme is om de doorstroom van het verkeer binnen de gemeente te verbeteren. De impact is dat weggebruikers sneller van A naar B kunnen komen door kortere wachttijden.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "proportionality": { + "type": "string", + "title": "Afwegingen", + "max_length": 2500, + "show_always": true, + "help_text": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn. Neem de eventuele ethische afwegingen mee in het invullen. Zo kan hier worden vermeld dat de inzet van een parkeerscanauto sneller en effectiever is vergeleken met menselijke controle. In dezelfde tijd kunnen meer auto's worden gecontroleerd. De besparing in mensen kan voor andere taken worden ingezet. De verhoogde kans op een foute boete wordt hierdoor gerechtvaardigd. Bovendien kunnen burgers altijd bezwaar aantekenen wat goed te controleren is. Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau. ", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "human_intervention": { + "type": "string", + "title": "Menselijke tussenkomst", + "max_length": 2500, + "show_always": true, + "help_text": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden. Geef het ook aan indien er geen menselijke tussenkomst (nodig) is. Bijvoorbeeld bij slimme zoekopdrachten in grote databases. Hier is veelal geen menselijke controle of de gevonden waarden de juiste zijn. Vul dit veld in op B1-taalniveau.", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "risks": { + "type": "string", + "title": "Risicobeheer", + "max_length": 2500, + "show_always": true, + "help_text": "Een overzicht van hoe omgegaan wordt met geïdentificeerde risico's.", + "instructions": "Een overzicht van hoe omgegaan wordt met risico's. Risico’s kunnen onder andere zijn technische, juridische, financiële en ethische risico’s. De risico's kunnen divers zijn en verschillen sterk per algoritme. Maar denk bijvoorbeeld aan discriminatie en uitlegbaarheid. Beschrijf ook hoe met die risico's wordt omgegaan, bijvoorbeeld door periodieke monitoring.", + "example": "Er is sprake van constante monitoring. Daardoor kan snel opgemerkt worden als een sensor defect is, waardoor weggebruikers lang stil moeten blijven staan. Dit kan dan snel verholpen worden om de nadelige gevolgen te beperken. Met enige regelmaat wordt ook in de praktijk gekeken naar of de sensoren voldoende reageren op de auto's en of de wachttijden eerlijk verdeeld zijn.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "lawful_basis": { + "type": "string", + "title": "Wettelijke basis", + "max_length": 2500, + "show_always": false, + "help_text": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt ", + "instructions": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt. Geef waar mogelijk in het kort aan wat het doel is van deze wet, zodat dit ook voor niet-juristen begrijpelijk is.", + "example": "Het algoritme wordt ingezet voor taken uit de Wegenverkeerswet. Een van de taken is het waarborgen van verkeersveiligheid.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "lawful_basis_grouping": { + "type": "array", + "title": "Verwijzingen wettelijke basis", + "required": false, + "show_always": false, + "help_text": "De wettelijke basis, gekoppeld aan hun referentie op het internet.", + "instructions": "De wettelijke basis, gekoppeld aan hun referentie op het internet.", + "items": { + "title": { + "type": "string", + "title": "Titel van wettelijke basis", + "max_length": 100, + "help_text": "De titel van de wettelijke grondslag waar middels een URL naar verwezen wordt.", + "instructions": "De titel van de wettelijke grondslag waar middels een URL naar verwezen wordt.", + "example": "Wegenverkeerswet 1994", + "required": false + }, + "link": { + "type": "string", + "title": "Link naar wettelijke basis", + "max_length": 500, + "help_text": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt.", + "instructions": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "example": "https://wetten.overheid.nl/BWBR0006622", + "required": false + } + } + }, + "process_index_url": { + "type": "string", + "title": "Link naar verwerkingsregister", + "max_length": 500, + "show_always": false, + "help_text": "Link naar een openbaar deel van een verwerkingsregister die betrekking heeft op een algoritme. Daar kan meer gelezen worden over verwerkingen.", + "instructions": "Link naar een openbaar deel van een verwerkingsregister die betrekking heeft op een algoritme. Daar kan meer gelezen worden over verwerkingen. Bijvoorbeeld een verwerking op https://www.avgregisterrijksoverheid.nl/", + "example": "", + "required": false + }, + "impacttoetsen_grouping": { + "type": "array", + "title": "Impacttoetsen", + "required": false, + "show_always": false, + "help_text": "De impacttoetsen, gekoppeld aan hun referentie op het internet.", + "instructions": "De impacttoetsen, gekoppeld aan hun referentie op het internet.", + "items": { + "title": { + "type": "string", + "title": "Titel van impacttoets", + "help_text": "Welke impacttoets is gebruikt, zoals Data Protection Impact Assessment (DPIA) of Impact Assessment Mensenrechten en Algoritmes (IAMA)?", + "instructions": "Naam van uitgevoerde impacttoets. Indien er andere toetsen zijn uitgevoerd dan de DPIA of IAMA, geef hiervan de naam aan.", + "example": "Impact Assessment Mensenrechten en Algoritmes (IAMA)", + "required": false, + "recommended_items": [ + "Data Protection Impact Assessment (DPIA)", + "Impact Assessment Mensenrechten en Algoritmes (IAMA)" + ] + }, + "link": { + "type": "string", + "title": "Link naar impacttoets", + "max_length": 500, + "help_text": "Naam uitgevoerde impacttoets zoals een DPIA of IAMA en mogelijkheid om een link naar de resultaten van een uitgevoerde impacttoets op te nemen.", + "instructions": "Link naar de resultaten van een impacttoets, indien deze is uitgevoerd en publiek beschikbaar is. Een voorbeeld hiervan is het impact assessment mensenrechten en algoritmes (IAMA) of het data protection impact assessment (DPIA). Begin een URL met https://", + "example": "https://gemeentenoorderhaaks.nl/Archief/toetsen/AVR-IAMA", + "required": false + } + } + }, + "impacttoetsen": { + "type": "string", + "title": "Toelichting op impacttoetsen", + "max_length": 2500, + "show_always": false, + "help_text": "Toelichting waarom bepaalde impacttoetsen niet gedaan zijn.", + "instructions": "Het is mogelijk dat er geen impacttoets nodig was voor het algoritme. In het geval van de DPIA bijvoorbeeld als er geen sprake is van persoonsgegevens. Met dit veld kan toegelicht worden waarom bepaalde impacttoetsen niet gedaan zijn.", + "example": "", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "source_data": { + "type": "string", + "title": "Gegevens", + "max_length": 2500, + "show_always": true, + "help_text": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme. Waar mogelijk, wees specifiek. Met name voor wat betreft persoonsgegevens is het belangrijk te weten om welk type gegevens het gaat (bijvoorbeeld adres, geboorteplaats, leeftijd). Benoem waar mogelijk ook de bron zoals BRP of BKR of organisatie eigen klantgegevens.", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks.", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "source_data_grouping": { + "type": "array", + "title": "Verwijzingen gegevensbronnen", + "required": "false", + "show_always": false, + "help_text": "De gegevensbronnen, gekoppeld aan hun referentie op het internet.", + "instructions": "De gegevensbronnen, gekoppeld aan hun referentie op het internet.", + "items": { + "title": { + "type": "string", + "title": "Titel van gegevensbron", + "max_length": 500, + "help_text": "Titel van gelinkte gegevensbron", + "instructions": "De titel van een gelinkte gegevensbron.", + "example": "", + "required": false + }, + "link": { + "type": "string", + "title": "Link naar gegevensbron", + "max_length": 500, + "help_text": "Links naar aanvullende informatie over de gebruikte gegevensbron", + "instructions": "Een link naar een beschrijving van gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme. Hierbij kan bijvoorbeeld gelinkt worden naar metadata in publieke datacatalogi of naar sensorenregistraties.", + "example": "", + "required": false + } + } + }, + "methods_and_models": { + "type": "string", + "title": "Technische werking", + "max_length": 5000, + "show_always": false, + "help_text": "Uitleg van hoe het algoritme werkt.", + "instructions": "Uitleg van hoe het algoritme werkt. Beschrijf de input, werking en output van het algoritme. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas. Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL’s naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten. Geef tenminste aan of het zelflerend is of niet.", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + }, + "provider": { + "type": "string", + "title": "Leverancier", + "max_length": 200, + "show_always": false, + "help_text": "Indien van toepassing, de externe leverancier van het algoritme.", + "instructions": "Naam van de externe leverancier van het algoritme. Als het intern ontwikkeld is, noteer dan ‘Intern ontwikkeld’. Het gaat hierbij bijvoorbeeld niet om het gebruik van open source packages die gebruikt worden in een groter algoritme.", + "example": "Haaks softwarebedrijf", + "required": false + }, + "publiccode": { + "type": "string", + "title": "Link naar broncode", + "max_length": 500, + "show_always": false, + "help_text": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina kunt u meer vinden over de code van het algoritme zelf.", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven. Begin een URL met https://", + "example": "https://github.com/haakssoftwarebedrijf.nl/vrisoftware", + "required": false + }, + "lang": { + "type": "enum", + "title": "Taal", + "show_always": false, + "help_text": "De taal waarin deze registratie is ingevoerd.", + "instructions": "De code van de taal van de registratie. Dit veld is aanwezig, omdat het Algoritmeregister meertalig aangeboden kan worden. Op dit moment wordt alleen Nederlands (nld) aangeboden. De talen zijn in ISO 639-3 code.", + "example": "nld", + "permitted_values": [ + "nld" + ], + "required": true + }, + "standard_version": { + "type": "enum", + "title": "Versie publicatiestandaard", + "show_always": false, + "help_text": "De versie van de publicatiestandaard waar dit algoritme in is geregistreed.", + "instructions": "De versie van de publicatiestandaard die gehanteerd is voor deze registratie.Op dit moment is dat '0.4'.", + "example": "1.0", + "required": false, + "permitted_values": [ + "1.0" + ] + }, + "source_id": { + "type": "string", + "title": "Bron-ID", + "max_length": 100, + "show_always": false, + "help_text": "De unieke code van dit algoritme in het register van de eigenaar", + "instructions": "Indien van toepassing, de unieke identificatie voor deze registratie zoals door de eigenaar wordt gehanteerd. Dit is dus de verwijzing naar het algoritme in de interne database of het interne register van uw organisatie.", + "example": "n.v.t.", + "required": false + }, + "tags": { + "type": "string", + "title": "Zoektermen", + "max_length": 2500, + "show_always": false, + "help_text": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten.", + "instructions": "Termen gerelateerd aan dit algoritme. Gescheiden door komma's. Dit veld wordt niet weergegeven op de website en kan worden gebruikt om de vindbaarheid van de registratie te verbeteren. Zo kan bijvoorbeeld de naam van het relevante ministerie worden toegevoegd om als uitvoerorganisatie beter vindbaar te zijn met de zoekfunctie.", + "example": "Verkeer, Mobiliteit, VRI, Infrastructuur, Waddengebied", + "required": false, + "allowed_html_tags": [ + "div", + "br", + "p", + "ul", + "ol", + "li" + ] + } + } + } +} \ No newline at end of file diff --git a/frontend/static/geojson/gemeentegrenzen.json b/frontend/static/geojson/gemeentegrenzen.json new file mode 100644 index 00000000..65a5e151 --- /dev/null +++ b/frontend/static/geojson/gemeentegrenzen.json @@ -0,0 +1,50471 @@ +{ + "type": "FeatureCollection", + "name": "gemeente_gegeneraliseerd", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:EPSG:4326" + } + }, + "features": [ + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.9d998617-2299-4709-bd54-e280fab82777", + "properties": { + "statcode": "GM0014", + "jrstatcode": "2024GM0014", + "statnaam": "Groningen", + "rubriek": "gemeente", + "id": 1 + }, + "bbox": [ + 226868.864, 569546.0927999988, 247393.6000000015, 592658.8927000016 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.740466968049125, 53.31217948280682], + [6.742681541158425, 53.31101974903041], + [6.742895566327703, 53.31135673804279], + [6.743677349256005, 53.3110992753343], + [6.744218467762232, 53.31191857494787], + [6.747050874735152, 53.31149024909631], + [6.747310379380718, 53.311928015860865], + [6.7479483383402155, 53.31178104470881], + [6.749350823039973, 53.30984305510726], + [6.744792157265181, 53.30775363229405], + [6.7480482610455494, 53.302968920154655], + [6.753081465752409, 53.29884706599732], + [6.755538595159845, 53.29963372882928], + [6.760683718487713, 53.2952361807194], + [6.764620575656464, 53.298134357207694], + [6.772225662890932, 53.29191769521191], + [6.76979441110223, 53.29068040215521], + [6.772309461406027, 53.287792643547895], + [6.769136878620857, 53.28662553055445], + [6.772526792028621, 53.28308659506243], + [6.75113649421049, 53.275399610036324], + [6.732291767293924, 53.2692086207222], + [6.717657611834981, 53.263167715159916], + [6.707515830802641, 53.25943048778712], + [6.698330355105381, 53.25614494891944], + [6.703733119392309, 53.25378171211206], + [6.703537438869636, 53.2519420720751], + [6.709810721223133, 53.24843132473459], + [6.714507592146103, 53.24561091412471], + [6.712720709527273, 53.24461985276402], + [6.717685704221496, 53.24187250043655], + [6.712008782141433, 53.23845739644913], + [6.708829754388304, 53.23543645716106], + [6.708870568191134, 53.23517723524639], + [6.708453045108267, 53.23490867500862], + [6.707088787231399, 53.23429595036099], + [6.70901266529072, 53.23311786148988], + [6.708804527096106, 53.23185574083504], + [6.707303728238703, 53.23106984581736], + [6.705672235009795, 53.228256312443804], + [6.707631661283189, 53.22710443691199], + [6.707203565053348, 53.22686289085417], + [6.708203001703138, 53.2262012528477], + [6.707049421285216, 53.22559920880433], + [6.705759992691656, 53.22501157018128], + [6.706367292254623, 53.22453039490185], + [6.705123587134566, 53.2237064118821], + [6.702759241194228, 53.22113602911539], + [6.701166991678252, 53.21940482575788], + [6.698548347066726, 53.21780623132407], + [6.698789806565651, 53.21730699284991], + [6.697515540320558, 53.216965585446964], + [6.69824526298273, 53.214667451022514], + [6.693308663890964, 53.214252030559116], + [6.693361273957634, 53.21299549080778], + [6.690770837506244, 53.21316097956104], + [6.690489450438414, 53.21246766519642], + [6.688232299638157, 53.21263397171327], + [6.688190104107129, 53.21217995925262], + [6.682847701583617, 53.21129906043854], + [6.682658103441656, 53.212059297220456], + [6.680473000312529, 53.21169168552504], + [6.6800812458596255, 53.21002997461952], + [6.679638449242982, 53.209401415855616], + [6.679762093364769, 53.208322276995766], + [6.682484292654336, 53.208487287484466], + [6.684013104479448, 53.202146958132914], + [6.683022981908868, 53.200986315428786], + [6.673596943425537, 53.20065063696345], + [6.6668726965742495, 53.20202034168583], + [6.662155877487048, 53.19981522209732], + [6.650179182448187, 53.19341039714304], + [6.642611434273527, 53.19188234734791], + [6.640197770224024, 53.190517579616504], + [6.6398131035421075, 53.19029657380589], + [6.646821286045124, 53.18793735107025], + [6.644813332651505, 53.18738214160194], + [6.643992998958356, 53.18736571541987], + [6.639468069394171, 53.185980746387045], + [6.647251202628617, 53.18378196602029], + [6.657240923214944, 53.18076933468675], + [6.657241171212741, 53.18076906875162], + [6.657635750407563, 53.18035332249214], + [6.660273504756214, 53.17659100733502], + [6.6611646553767, 53.1733244082771], + [6.661625555082095, 53.17197929158935], + [6.663259195717639, 53.170583187327296], + [6.665367972614278, 53.16944068454163], + [6.669676477598498, 53.169029163950114], + [6.671683976644332, 53.16690687940743], + [6.6781785364094315, 53.16480619511421], + [6.68871424653212, 53.15461112692571], + [6.6902695908963405, 53.151155000344936], + [6.690215550138153, 53.150393212788266], + [6.6869865172111185, 53.1489653722244], + [6.686274685881276, 53.147847586326165], + [6.689052760045486, 53.14466442728652], + [6.69536692827611, 53.12117601511284], + [6.6946173518129335, 53.12105783039303], + [6.678771877835265, 53.11810818734133], + [6.674926989096316, 53.117524735807095], + [6.653648242149388, 53.11162476149017], + [6.651909362116504, 53.11115954411186], + [6.6435021201215, 53.108662340866275], + [6.634836257816771, 53.106202076530856], + [6.637102774274598, 53.10864869605786], + [6.635781527295582, 53.113396275238216], + [6.633862114800889, 53.11420311553002], + [6.6298302942108345, 53.11468334098668], + [6.628067782634538, 53.115874611911885], + [6.627937744421937, 53.11717911317026], + [6.630575689852066, 53.119385297180756], + [6.628648448049582, 53.119493050467845], + [6.627335591206533, 53.122833222584376], + [6.622834219460987, 53.12537297561637], + [6.621763333467514, 53.12635071043676], + [6.62132024826518, 53.12830909942443], + [6.618978350384085, 53.129880078795466], + [6.618976872977991, 53.13158085523647], + [6.616568293266702, 53.132972615742105], + [6.613641275230729, 53.132694287265565], + [6.614400443105885, 53.13555695740314], + [6.610623452092698, 53.13794370654251], + [6.60918154793157, 53.13840361813459], + [6.608180322006928, 53.138894582982644], + [6.606521015806628, 53.139313859050446], + [6.6004563394163895, 53.14430881497252], + [6.587794254699335, 53.14589180244528], + [6.587386438006845, 53.14868323617963], + [6.584642549825113, 53.15430518672305], + [6.587089330693162, 53.156225957933366], + [6.583455289430044, 53.158527459601615], + [6.581098885720939, 53.16261321934829], + [6.581496957638259, 53.16353068975769], + [6.564742338727855, 53.157989663525115], + [6.563687461755379, 53.15763837451387], + [6.563177891919293, 53.15868694550263], + [6.562753262872441, 53.16041617802085], + [6.560587356322461, 53.16612699277085], + [6.559319433348278, 53.16934097786557], + [6.555809423478782, 53.17329704181305], + [6.548572154281021, 53.18066992109097], + [6.548377594229454, 53.18088572739804], + [6.54818830399557, 53.18109763702782], + [6.546253711341903, 53.18027859966269], + [6.5427088665346185, 53.178672355228876], + [6.54174391833293, 53.1786103064968], + [6.540897912000229, 53.17988156930768], + [6.539536204096203, 53.18130938371482], + [6.537453615813243, 53.18264493096336], + [6.534615869233839, 53.18378994328839], + [6.53421774809441, 53.18406356816348], + [6.530398830369987, 53.19285651245797], + [6.529528927343624, 53.1951949202612], + [6.5304919809405995, 53.19555927328935], + [6.526709041618231, 53.195851915913984], + [6.515715198228856, 53.19830814966963], + [6.513385989039717, 53.196937017804], + [6.513336054888932, 53.19697354357589], + [6.509774158244688, 53.19877938062746], + [6.509815440374903, 53.19900970309612], + [6.508991497446728, 53.19912069725892], + [6.506844706842157, 53.200145038537755], + [6.49642774892768, 53.19813743330674], + [6.494387818515014, 53.19820193093402], + [6.493504905877004, 53.19849701868053], + [6.492939385779665, 53.19931673752814], + [6.492725633380469, 53.200736374999515], + [6.48571682935421, 53.203821257815676], + [6.481511831532542, 53.20355343716861], + [6.463461420829451, 53.2000582309544], + [6.46274561567743, 53.20197878676165], + [6.466382811449497, 53.204193287359914], + [6.467003612670969, 53.20617038243897], + [6.464679102901922, 53.207459426331994], + [6.4644736106609555, 53.207614318031176], + [6.4697679149274485, 53.220468633415756], + [6.476654900094159, 53.23650235020278], + [6.480474604972311, 53.24550550488332], + [6.480920741035802, 53.250185288178244], + [6.488601659710273, 53.24901635243696], + [6.488725509121214, 53.24723139372869], + [6.490427497496022, 53.24732092109065], + [6.4924357566449515, 53.24667469038123], + [6.491985479788564, 53.24555469691966], + [6.495846650921114, 53.2458230313288], + [6.49704015751118, 53.24676648233367], + [6.50215140191113, 53.24770632705575], + [6.5114424223694165, 53.25411424016816], + [6.5080024669438385, 53.25621462376696], + [6.508246236549454, 53.25727386825922], + [6.5082403580072885, 53.257574051199896], + [6.510825282044057, 53.256787850142466], + [6.518091230689317, 53.258331156027296], + [6.523169150134816, 53.25724171943439], + [6.529683486393694, 53.25824076017993], + [6.536582566675922, 53.260026662576486], + [6.539308048422215, 53.26035974873249], + [6.537926182788132, 53.26409670059846], + [6.54096659424166, 53.26362363376682], + [6.550263148129653, 53.2649468995246], + [6.550334058651471, 53.26490942127685], + [6.549551882511332, 53.26440901425157], + [6.5513871681624485, 53.26237503847895], + [6.552397010474662, 53.262178626236626], + [6.55394456888905, 53.262125973724956], + [6.566601188847382, 53.26360735321895], + [6.5672301110711935, 53.26149407596951], + [6.585752332550227, 53.2615398528014], + [6.585778753825688, 53.26249148874872], + [6.588533956172453, 53.262548066234054], + [6.5873621825896675, 53.26026026395539], + [6.58634381828678, 53.25587481572715], + [6.587126621885846, 53.255713648896034], + [6.590736590998386, 53.255322434529894], + [6.60635129129401, 53.25374084576126], + [6.606407233979557, 53.25141658769203], + [6.618345800872429, 53.25148592872656], + [6.6192969625226645, 53.24944789235037], + [6.635043438083068, 53.25128474275778], + [6.636045492450774, 53.25143441588816], + [6.635678101890155, 53.25409439892707], + [6.633451870348741, 53.259760343740936], + [6.625872961383987, 53.266139544964716], + [6.6327773061786095, 53.27621194520554], + [6.642768388871197, 53.290933502662725], + [6.649288352427749, 53.302280941267156], + [6.654053436540214, 53.308644569362066], + [6.654781385257599, 53.30842293567114], + [6.655766747884778, 53.30811724397236], + [6.655936766336743, 53.308329834152765], + [6.656752943431635, 53.308063039058446], + [6.656649041110422, 53.3079319578516], + [6.657045389765085, 53.30774570140066], + [6.66076603914592, 53.306692763863886], + [6.677172460935499, 53.30374073434725], + [6.689735522555936, 53.29753953074159], + [6.705316137749625, 53.30752507898333], + [6.706617899502044, 53.30703759105903], + [6.709003975037591, 53.310118548004255], + [6.712716745204696, 53.30932443115425], + [6.724350948145419, 53.305538931620646], + [6.729448702596229, 53.30535388767735], + [6.732900784685019, 53.3114087884029], + [6.7376073154533795, 53.31279473596089], + [6.740466968049125, 53.31217948280682] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.fe85de07-522d-4d94-9540-367bb3216fcd", + "properties": { + "statcode": "GM0034", + "jrstatcode": "2024GM0034", + "statnaam": "Almere", + "rubriek": "gemeente", + "id": 2 + }, + "bbox": [ + 136985.7179000005, 479461.31749999896, 154451.2061999999, + 494189.6405000016 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.267984044295544, 52.427365348037945], + [5.275812367200888, 52.42331691905683], + [5.318862570269009, 52.410709703722645], + [5.334836650608485, 52.40573433978459], + [5.343710279279663, 52.401242187980436], + [5.34951417600784, 52.40146794932239], + [5.350772403621867, 52.400208678682574], + [5.348168362396805, 52.397028321133206], + [5.346371308480501, 52.39611359697564], + [5.339353278149382, 52.39581277278666], + [5.332369857429784, 52.39324633291576], + [5.332933997846977, 52.39277276062532], + [5.313516994501001, 52.385741413191624], + [5.313039483138419, 52.386252776432585], + [5.301244499218823, 52.38198643651223], + [5.337490240707668, 52.35037384420278], + [5.350545192002868, 52.33903837090366], + [5.379156126093411, 52.31410864657123], + [5.354006256122254, 52.309407294464975], + [5.350497021675355, 52.3092317214249], + [5.344923444652446, 52.309939004330474], + [5.333504844682798, 52.314273709047995], + [5.332929871835805, 52.313887666057944], + [5.317162081619427, 52.303558737422264], + [5.315988482751921, 52.304147103675504], + [5.313903230914413, 52.30310086516028], + [5.313412756438995, 52.30337330477473], + [5.315454310289102, 52.304408748301476], + [5.298845609086761, 52.31187111151575], + [5.285177699406842, 52.31709014120494], + [5.263336097089056, 52.323866805400215], + [5.239828097771985, 52.32925781480598], + [5.232636424526109, 52.33058722304958], + [5.223670873325673, 52.33216251778882], + [5.223461119476457, 52.332084652804475], + [5.223481828609156, 52.33205244273364], + [5.223416574516216, 52.331924236212224], + [5.223019965674962, 52.33199567624726], + [5.221160196968087, 52.33130750119096], + [5.2207782815482835, 52.33132436690883], + [5.221208343758131, 52.331767945043474], + [5.220811851876105, 52.33186986665688], + [5.22023559997168, 52.33254155474794], + [5.221271366285201, 52.33237063027981], + [5.221602758513023, 52.33307096886744], + [5.220923326890307, 52.33380455845137], + [5.220127368587469, 52.33394889146741], + [5.21939224716231, 52.33370058104351], + [5.219074074483791, 52.33307467823232], + [5.220194462566895, 52.33189081499667], + [5.2191755923184076, 52.33134392185393], + [5.21829920715337, 52.332233587748455], + [5.215804351671411, 52.33129545380214], + [5.21682948068045, 52.33019875688427], + [5.2179201308829475, 52.33058577392262], + [5.218716504771747, 52.330317819421346], + [5.219711453692315, 52.33049140394791], + [5.216373015146449, 52.3293908179374], + [5.212559025377216, 52.32998253557222], + [5.212839542019906, 52.331454390998765], + [5.213522516066585, 52.3320574444981], + [5.212811171323467, 52.3329121385316], + [5.210295655763771, 52.33379603632289], + [5.209450106893271, 52.33304373930093], + [5.208484509265397, 52.332461231260915], + [5.2061626182131775, 52.33339403480002], + [5.206012938685164, 52.33434690589028], + [5.204769362155992, 52.335510249703496], + [5.195176418570049, 52.33649481982578], + [5.184233008804209, 52.33531795793668], + [5.166863386557658, 52.331838000113024], + [5.1574823695716665, 52.3292365186429], + [5.152723337806975, 52.3290976504779], + [5.151267171083152, 52.328220291247256], + [5.1486573888405305, 52.3284153760057], + [5.1455367658042785, 52.32631127751884], + [5.144764005093388, 52.324016458450984], + [5.140932877032176, 52.32607067677503], + [5.1392123631496265, 52.325218684794656], + [5.13882254662224, 52.325518513506054], + [5.138440976372506, 52.32581198778488], + [5.138324338341371, 52.32590170210216], + [5.140055158669021, 52.32677544442937], + [5.136961713810592, 52.32934402724475], + [5.137242359623014, 52.32943558542799], + [5.1393264867906305, 52.32802494825464], + [5.141412174808974, 52.32820258289325], + [5.143610099679816, 52.329638980358936], + [5.144874783091421, 52.331405557252474], + [5.140495566832206, 52.334073003457235], + [5.135991412382906, 52.33759415283165], + [5.134170794829292, 52.33788966966667], + [5.134447910761399, 52.33806751007296], + [5.134763855088409, 52.338243492189925], + [5.135155209602525, 52.338661135211545], + [5.135932876378178, 52.33872594020749], + [5.136075054710702, 52.33894322471687], + [5.13552744940708, 52.339223792610085], + [5.134685391741533, 52.33861284269866], + [5.132650985701629, 52.33793331797565], + [5.132873789125119, 52.33773927864889], + [5.132795788195584, 52.33768921332854], + [5.132423620928348, 52.337735575687304], + [5.132119687060942, 52.337473277656194], + [5.1321594781989965, 52.33710395507365], + [5.13093917179353, 52.337698409787535], + [5.130992086243898, 52.338229467900135], + [5.132155535579439, 52.338109471219575], + [5.134618739125349, 52.34106176413377], + [5.134569388207297, 52.341381892660436], + [5.131750025115453, 52.342459264214355], + [5.129713018152468, 52.33988883507131], + [5.131168933725364, 52.34201242337227], + [5.130976363402987, 52.343459940572956], + [5.132353005596987, 52.34373933898323], + [5.133919105608746, 52.34399079862694], + [5.133630173404735, 52.34420473068301], + [5.134197911119418, 52.34473528475162], + [5.133460996543964, 52.34527303323727], + [5.133468031232357, 52.34599381559711], + [5.133943217393137, 52.34650253092484], + [5.133140523011532, 52.34713002470581], + [5.134198806842328, 52.347957714543405], + [5.132816389068863, 52.357083221083094], + [5.131245188420881, 52.36545732946825], + [5.1226658793059405, 52.37480125808515], + [5.122746256098696, 52.37886301078785], + [5.124299394586904, 52.380537971315526], + [5.1287515064147104, 52.38291393038894], + [5.156757002046374, 52.393107661241984], + [5.1583849633514, 52.39489306984009], + [5.161924457180242, 52.39944867987755], + [5.161557764704775, 52.39979439630499], + [5.169643972103879, 52.40277057295262], + [5.205981338352306, 52.416045644448], + [5.227127452843134, 52.42363445763222], + [5.227146064639029, 52.4233551481717], + [5.208256258003074, 52.416368034885835], + [5.216968010626081, 52.416433241722885], + [5.220508690541117, 52.41771812887555], + [5.22010641085235, 52.41835615742848], + [5.222115058274632, 52.41789990063967], + [5.222685938717379, 52.41836938654695], + [5.223967927672502, 52.41780127030367], + [5.224587504833889, 52.41805718313027], + [5.224500509883376, 52.419108895296986], + [5.228455522375706, 52.42065844349227], + [5.231767231509024, 52.42429186904929], + [5.233252660239121, 52.42561597545555], + [5.229867384630149, 52.42469270839083], + [5.258424194477879, 52.43542548169388], + [5.267984044295544, 52.427365348037945] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.07611fe8-cd79-462f-a24d-98758dd35c99", + "properties": { + "statcode": "GM0037", + "jrstatcode": "2024GM0037", + "statnaam": "Stadskanaal", + "rubriek": "gemeente", + "id": 3 + }, + "bbox": [ + 253864.35599999875, 549247.4589999989, 269937.93400000036, + 566430.3920000009 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [7.010133386196178, 53.073701699220145], + [7.013333022160933, 53.06944051108821], + [7.015445869600892, 53.07177413555377], + [7.0191007429762875, 53.07146698155296], + [7.029532834567391, 53.06664899744052], + [7.032378943585067, 53.06677559200377], + [7.0336480405998545, 53.06474787596833], + [7.037198614704391, 53.06483134565775], + [7.060163479685063, 53.06580826269817], + [7.06465336770604, 53.06695011545061], + [7.0659467206705004, 53.0672789952731], + [7.070465977296445, 53.06619287915822], + [7.076880436564273, 53.06369064289551], + [7.0800954166267465, 53.06144222995062], + [7.080162910362145, 53.059173038851846], + [7.076640146269358, 53.05118405876867], + [7.074541103101301, 53.049946890985915], + [7.071996169742706, 53.05073470613407], + [7.068328492607538, 53.05078423796081], + [7.067055491412683, 53.04769077656475], + [7.0680480172008, 53.043508378234634], + [7.070108345693568, 53.042770987809504], + [7.07172520925533, 53.04360317522601], + [7.081655111663605, 53.04446450438257], + [7.08611936616285, 53.042346912340136], + [7.086676418080552, 53.040488877347414], + [7.084263429910781, 53.0395039172744], + [7.082637851263058, 53.03351535399182], + [7.0803778278409375, 53.02974951957935], + [7.082749308200862, 53.02549768197257], + [7.088447638302955, 53.0263416539864], + [7.091959473256963, 53.02284614167971], + [7.095786265707073, 53.0211989049212], + [7.09795871734915, 53.02122247493383], + [7.100013472358187, 53.01644444417272], + [7.095672854975217, 53.01450031605399], + [7.092200596501459, 53.012941549894165], + [7.072058182908146, 53.00378668357066], + [7.071118315675561, 52.98309281950439], + [7.0699360940621805, 52.95318908226969], + [7.067341982448114, 52.95211145932457], + [7.064675475022268, 52.95118460422994], + [7.064653759115385, 52.95077390696913], + [7.063425971845336, 52.930970487620776], + [7.036299778269342, 52.92926598064795], + [7.031887267889694, 52.925305751264474], + [7.02783157629528, 52.92164628598913], + [7.026854375416079, 52.9190370114188], + [7.02467071043704, 52.91986999620711], + [7.015697681079108, 52.9248156556931], + [7.009558647096978, 52.930093146101626], + [7.002899220414839, 52.9358148371443], + [6.995023711801554, 52.942587822183704], + [6.987880570255676, 52.948723216422046], + [6.986022412739283, 52.95031893425049], + [6.979860926479461, 52.95560423101138], + [6.978563518636568, 52.95671684965253], + [6.970362365005208, 52.96376067335316], + [6.970352656024164, 52.96376901054102], + [6.969586281565959, 52.96442721488398], + [6.9632923008156276, 52.969820942595504], + [6.9567208747597435, 52.97547329507212], + [6.956650442159329, 52.97553387161497], + [6.948411448291894, 52.982617897931355], + [6.942927258234717, 52.98733178557014], + [6.938411828849792, 52.99121198224346], + [6.936610606468505, 52.99275957555698], + [6.935684803872583, 52.99335254551784], + [6.934679925593372, 52.99399610385792], + [6.922171262907539, 53.00200466502825], + [6.9071844553306425, 53.011594247198154], + [6.907130511865872, 53.01162876557211], + [6.904620002668368, 53.013234534060274], + [6.8970879987378, 53.0180511930397], + [6.861287446519793, 53.04087401750008], + [6.865103607316152, 53.042807882571786], + [6.865494704721439, 53.04289675286903], + [6.868641296321095, 53.041284161277765], + [6.881443424401906, 53.04661881354255], + [6.898931075763251, 53.032406478426466], + [6.903334084356955, 53.03436506613829], + [6.9018914506873745, 53.03554358774898], + [6.907702759065396, 53.038880971886435], + [6.911911025503392, 53.03471126276664], + [6.93585396752884, 53.01962292189207], + [6.941662907325547, 53.01741926068197], + [6.953999988110559, 53.01432857203779], + [6.954654138592898, 53.014145189889696], + [6.955790045078969, 53.013860657076556], + [6.980387868631474, 53.04090878834677], + [6.987828459708604, 53.049076391166], + [6.990362820561852, 53.05438183879062], + [6.992910121499327, 53.05509610527333], + [6.994928875841666, 53.05684252001404], + [7.000809752306094, 53.063306629738186], + [7.010133386196178, 53.073701699220145] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f26c884d-9e3d-41d5-801b-b220448cc493", + "properties": { + "statcode": "GM0047", + "jrstatcode": "2024GM0047", + "statnaam": "Veendam", + "rubriek": "gemeente", + "id": 4 + }, + "bbox": [ + 249695.5850000009, 561673.5859999992, 260432.4530000016, + 572362.3949999996 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.899627304807828, 53.12807347112161], + [6.934801531653252, 53.124142476971265], + [6.949835724583468, 53.12116882045756], + [6.959339123922372, 53.12017590041462], + [6.961735259108778, 53.11002129733445], + [6.960784800625543, 53.09743023052103], + [6.96059812582888, 53.09580134586039], + [6.959382095847822, 53.094936721141444], + [6.958397271850527, 53.09526669049353], + [6.957951533262238, 53.094354861899276], + [6.956890874316832, 53.094710661223694], + [6.95540953615499, 53.093270878341876], + [6.94383642170342, 53.08191417477372], + [6.936893090986302, 53.07742188034095], + [6.930594509146235, 53.07285161760483], + [6.9296060222314315, 53.07336403260512], + [6.929094287071273, 53.07182908117712], + [6.9244404957052605, 53.05777745645617], + [6.9330219078561415, 53.0535877851335], + [6.933343544227774, 53.04961279448131], + [6.919904950627579, 53.04931216909215], + [6.920629164499534, 53.04525508954145], + [6.905525011847069, 53.04362951036806], + [6.907702759065396, 53.038880971886435], + [6.9018914506873745, 53.03554358774898], + [6.903334084356955, 53.03436506613829], + [6.898931075763251, 53.032406478426466], + [6.881443424401906, 53.04661881354255], + [6.868641296321095, 53.041284161277765], + [6.865494704721439, 53.04289675286903], + [6.865103607316152, 53.042807882571786], + [6.861287446519793, 53.04087401750008], + [6.843273029457793, 53.052344216842215], + [6.837170404695812, 53.05622843650471], + [6.814535534153284, 53.07059805818446], + [6.813944746074357, 53.07097158312735], + [6.808450537352778, 53.09227957956606], + [6.806959691502976, 53.09825521052987], + [6.801673952818212, 53.119171677341605], + [6.805988098285102, 53.120325947397845], + [6.803239535972117, 53.12408968370961], + [6.8158059380421925, 53.12742235898351], + [6.821169035195594, 53.1288316877374], + [6.823101125237104, 53.12621902331299], + [6.851542183418133, 53.12502114722703], + [6.865159016204048, 53.124421169355564], + [6.865928939202782, 53.124387295044734], + [6.865958020922257, 53.12392810612373], + [6.8741238741348525, 53.12354730313366], + [6.8742928565415236, 53.125368440527126], + [6.878619235722635, 53.12514871880841], + [6.878939537765251, 53.125821779230705], + [6.880017350296227, 53.12564761884934], + [6.882814998656238, 53.12519543118828], + [6.883026935129991, 53.12581725010374], + [6.884268755802019, 53.12561636863543], + [6.885047479341893, 53.12742564859279], + [6.88625355447804, 53.1285995038923], + [6.894717730186476, 53.12785377137521], + [6.897099756959059, 53.127578097293075], + [6.8970398228083125, 53.12849418954446], + [6.89894336148612, 53.12816329736422], + [6.899627304807828, 53.12807347112161] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.1ab9fa21-c367-4e8e-b96e-7ee148f64552", + "properties": { + "statcode": "GM0050", + "jrstatcode": "2024GM0050", + "statnaam": "Zeewolde", + "rubriek": "gemeente", + "id": 5 + }, + "bbox": [ + 149147.3299999982, 473841.56599999964, 171043.52100000158, + 494984.8663999997 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.616203343129057, 52.368737262701394], + [5.615674678634081, 52.36844011782115], + [5.616292923999231, 52.36931388288752], + [5.614734115185288, 52.370565071594164], + [5.615189396293035, 52.37084046466189], + [5.616377676865674, 52.36946130048776], + [5.616203343129057, 52.368737262701394] + ] + ], + [ + [ + [5.5089916047396095, 52.39766241461214], + [5.532702516696497, 52.38454678902171], + [5.53729791938523, 52.38500009145712], + [5.54522462189671, 52.39016056235244], + [5.554641668370047, 52.396389231397954], + [5.578014190792063, 52.409967890446765], + [5.5832169177819555, 52.411357844540234], + [5.589069976966171, 52.41118658957995], + [5.61840096031864, 52.40856824614966], + [5.622983155728386, 52.40880160898522], + [5.6171876516427535, 52.38478262280536], + [5.611851630846139, 52.37468742036066], + [5.613556562487408, 52.371042109759735], + [5.614669285700739, 52.37052585757283], + [5.6154354692457895, 52.369824678204836], + [5.6127655520051665, 52.368662455569584], + [5.610101728874751, 52.36647008208914], + [5.611449677764023, 52.36590482904112], + [5.614784378089214, 52.36790888204603], + [5.615073814830848, 52.367652480067676], + [5.612559353029756, 52.36597387199095], + [5.613096681068972, 52.36555435073909], + [5.611090323109142, 52.364404141888954], + [5.611871877990785, 52.363979691227755], + [5.613851104265032, 52.36455610443934], + [5.615318687956771, 52.36261406929985], + [5.614926215247963, 52.36250428613443], + [5.614033940522963, 52.36225042645235], + [5.61282743861596, 52.36086580364349], + [5.612329318949162, 52.36132605597195], + [5.612501063087457, 52.36229591475286], + [5.611275191765345, 52.36298536460616], + [5.611563388575291, 52.36382771489886], + [5.610843031853784, 52.3642751954102], + [5.610449339455562, 52.364175807387085], + [5.6081645307771995, 52.36529602557541], + [5.607047639210232, 52.3645126621849], + [5.601104739701489, 52.36555768934316], + [5.588592661109602, 52.36320742922623], + [5.582382650417873, 52.36307278217707], + [5.563816243112898, 52.36757250188558], + [5.542580030901564, 52.353346437048806], + [5.538348636035502, 52.350125666400736], + [5.537219378826511, 52.34722957380259], + [5.541544071105132, 52.33781113164143], + [5.545156297237413, 52.33508318488296], + [5.548017291963342, 52.33557842818377], + [5.552835977080958, 52.33415242296231], + [5.552129849726282, 52.331697970050165], + [5.551140051302053, 52.331353745992544], + [5.549737377557886, 52.32895348115289], + [5.548433535161469, 52.3272965581924], + [5.552517528009215, 52.32092632641275], + [5.5525030421047195, 52.3197860986279], + [5.550627319449308, 52.318967594092825], + [5.5486518994745175, 52.31449948835061], + [5.549018901243457, 52.31354923709775], + [5.549094836995805, 52.312071376070804], + [5.546726718649576, 52.31196779696275], + [5.547060368148641, 52.31088141133132], + [5.5488152141236435, 52.31116371043128], + [5.5491247682085065, 52.311631742792365], + [5.54928407962215, 52.311535319218294], + [5.549011184364243, 52.31105487089781], + [5.546844042124059, 52.310382923109266], + [5.542480798157106, 52.30032606160653], + [5.538221495535877, 52.29276466876298], + [5.535557258097099, 52.290512371034715], + [5.538137471138308, 52.28911217000819], + [5.535166835269154, 52.288745737122184], + [5.528698350135155, 52.27492580838875], + [5.526064551092996, 52.27339704276516], + [5.51802935551438, 52.27255756288472], + [5.492768762872903, 52.26785207036407], + [5.488865699618376, 52.267013881232124], + [5.488876623401677, 52.266736090891776], + [5.487946932576464, 52.266300353190296], + [5.487886630117904, 52.26634967554279], + [5.488704363491224, 52.266736239219384], + [5.488055054853443, 52.26720874302563], + [5.487304421088982, 52.26658964071873], + [5.487223979334286, 52.26661622282169], + [5.487259134690203, 52.266862097969664], + [5.486733799126792, 52.2669119255576], + [5.485713496213043, 52.26665863162647], + [5.485858714805812, 52.26634524119136], + [5.487087053293388, 52.26660315379427], + [5.487294480361069, 52.2664967876718], + [5.487360786782831, 52.26593039496607], + [5.487227033792823, 52.26591059157746], + [5.487163368302181, 52.26635719137736], + [5.471447185412245, 52.26354072297142], + [5.469813419671076, 52.263247289689026], + [5.452546362053673, 52.25988362913192], + [5.452729151619176, 52.25946093652666], + [5.433533247625314, 52.25640162941539], + [5.433048000341122, 52.255816026356065], + [5.417353113085947, 52.25345982907066], + [5.409645407801143, 52.25261251562151], + [5.401560198747801, 52.25329631114241], + [5.399376053615403, 52.25536538928347], + [5.395872521846096, 52.25633489000522], + [5.396414367021231, 52.256859438948055], + [5.394842829377746, 52.257856966723544], + [5.3935489738435, 52.25704213533156], + [5.395722393170239, 52.25592695182314], + [5.395541909070372, 52.2558053371006], + [5.392097449807025, 52.257733282758316], + [5.392145008114077, 52.25782665099074], + [5.392965951991765, 52.25738115752353], + [5.394112267718902, 52.25804920794291], + [5.392621045318512, 52.25888367300209], + [5.391595062366864, 52.258114565907654], + [5.391173512657205, 52.258628118783705], + [5.392024218547292, 52.25890968600665], + [5.38509614883751, 52.26404216202732], + [5.317162081619427, 52.303558737422264], + [5.332929871835805, 52.313887666057944], + [5.333504844682798, 52.314273709047995], + [5.344923444652446, 52.309939004330474], + [5.350497021675355, 52.3092317214249], + [5.354006256122254, 52.309407294464975], + [5.379156126093411, 52.31410864657123], + [5.350545192002868, 52.33903837090366], + [5.337490240707668, 52.35037384420278], + [5.301244499218823, 52.38198643651223], + [5.313039483138419, 52.386252776432585], + [5.313516994501001, 52.385741413191624], + [5.332933997846977, 52.39277276062532], + [5.332369857429784, 52.39324633291576], + [5.339353278149382, 52.39581277278666], + [5.346371308480501, 52.39611359697564], + [5.348168362396805, 52.397028321133206], + [5.350772403621867, 52.400208678682574], + [5.378988063626148, 52.41149396466797], + [5.397532878344171, 52.419840538794375], + [5.42100808109608, 52.43208300010111], + [5.423775167243446, 52.432563901897694], + [5.427176845789918, 52.434553689304536], + [5.42688947527696, 52.43550538620348], + [5.438608263406936, 52.442631108544774], + [5.448893995628983, 52.43530139012858], + [5.474978808748484, 52.42003314757299], + [5.5089916047396095, 52.39766241461214] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.25a1dc7f-3360-41e5-9268-2a2ad98420c2", + "properties": { + "statcode": "GM0059", + "jrstatcode": "2024GM0059", + "statnaam": "Achtkarspelen", + "rubriek": "gemeente", + "id": 6 + }, + "bbox": [ + 197232.7030000016, 573421.7983999997, 211590.5799999982, + 587337.6440000013 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.218947333145745, 53.259872591057935], + [6.220271567351445, 53.259454815517316], + [6.223971311264119, 53.257240127511324], + [6.232173048892785, 53.25674741236948], + [6.231749084922092, 53.255946627939615], + [6.2326252661287445, 53.25456391670758], + [6.2351006793694905, 53.25335484367728], + [6.233665183512857, 53.25039899832441], + [6.230318479261675, 53.25042641878553], + [6.229601568468722, 53.24891319721085], + [6.232075255667237, 53.247124663756146], + [6.2310948656749465, 53.24510536235962], + [6.229707212970533, 53.24475189970332], + [6.227743333038975, 53.24523967288594], + [6.225111529999022, 53.2445904205255], + [6.21945349010247, 53.24286675052613], + [6.217978238112253, 53.24193213049143], + [6.21844951535541, 53.241691303291695], + [6.222823443907456, 53.239497672818864], + [6.22461591919349, 53.23970094121697], + [6.224972056678058, 53.238592839103106], + [6.220239054202337, 53.237347760674616], + [6.21554252297969, 53.23698515481565], + [6.214805951171299, 53.235648528077135], + [6.214583935996605, 53.233710697402486], + [6.221680492060702, 53.231667697143166], + [6.224632096752965, 53.230073794901486], + [6.225339457465566, 53.22545538154753], + [6.2301733203784115, 53.222440431547085], + [6.2299884186874275, 53.217818449798294], + [6.228934101001986, 53.2168054779209], + [6.224750136963305, 53.21457857334096], + [6.22483962026343, 53.21200382399431], + [6.219242358907386, 53.20612981135383], + [6.209578174623756, 53.19996097745447], + [6.2041145624893534, 53.19975847489949], + [6.199621421570672, 53.198355319732336], + [6.199830600385461, 53.1953226983288], + [6.197037147762689, 53.192015868896654], + [6.1952767965628475, 53.19149850199764], + [6.193097426731803, 53.189277732384205], + [6.18803420529086, 53.18248671651864], + [6.18579109766844, 53.17883236142514], + [6.183016801074696, 53.1739843611694], + [6.181223876468422, 53.17034826482981], + [6.177337001500711, 53.16698276466403], + [6.17675035960531, 53.15950451336303], + [6.1667632472317235, 53.155995676459455], + [6.151986451479998, 53.150832776713095], + [6.14858324560142, 53.15699298551138], + [6.148118250577181, 53.15782743194782], + [6.143063396031724, 53.155352028827956], + [6.122208558751857, 53.14527268300139], + [6.11954317178898, 53.14568979430695], + [6.119338486406641, 53.149419959392944], + [6.109584726332792, 53.15104025408151], + [6.107970468257502, 53.15175883304219], + [6.105012977255062, 53.151799397900135], + [6.1134171298957645, 53.172950963617986], + [6.114593421029394, 53.17597764529902], + [6.10935426020209, 53.17705721479231], + [6.108946748675412, 53.176331732277305], + [6.102320433708268, 53.18222223160993], + [6.098852303447431, 53.18645534439965], + [6.088802737310546, 53.19273156172346], + [6.085304243014926, 53.19422309572631], + [6.08225359652924, 53.19842899702762], + [6.08140246269695, 53.202424360318865], + [6.081289342898307, 53.202665505810764], + [6.079210940892371, 53.206835409686526], + [6.0840157344099195, 53.20851129004383], + [6.0829228084561855, 53.20997804240146], + [6.079264114319683, 53.209647093365284], + [6.079270268523908, 53.21076844766982], + [6.081774586884407, 53.211431598202815], + [6.080302512519013, 53.21327587592853], + [6.0816996737830955, 53.21408576899575], + [6.086288982520159, 53.215025983786695], + [6.0445032753792, 53.22586216912321], + [6.027395235121716, 53.2301643142732], + [6.019790680598649, 53.24091399317083], + [6.02071949390012, 53.241312894525365], + [6.0213596523480675, 53.242532388838], + [6.0230941649150695, 53.24279141799993], + [6.027705534467139, 53.24139286671284], + [6.028694334369566, 53.24272026001656], + [6.031769529141655, 53.242238012742746], + [6.038848876874368, 53.24261661424983], + [6.043965635037673, 53.243502476458445], + [6.0501053132923035, 53.24445930799821], + [6.053917109467852, 53.24521618948234], + [6.074774473161037, 53.24858279212022], + [6.096548402006279, 53.254602056312976], + [6.1059626282992205, 53.25760988184563], + [6.113211615260331, 53.25977945069591], + [6.127331366626219, 53.26168966679408], + [6.141058343309659, 53.264382928293145], + [6.144978088351856, 53.260164800285594], + [6.1483587746057005, 53.26000074983609], + [6.154852673682102, 53.261773724964605], + [6.158659663536975, 53.26363593065265], + [6.160523206823489, 53.26198467196496], + [6.164134067218688, 53.2639557102333], + [6.167380189149562, 53.2636513777587], + [6.177864208297883, 53.26007466891646], + [6.181090215267229, 53.2597934052975], + [6.182412177195886, 53.26100045411366], + [6.1903844026114205, 53.263377664777295], + [6.185669588689362, 53.267273006822435], + [6.185599871457544, 53.267815501690606], + [6.189219938582964, 53.26989023290793], + [6.195151915418893, 53.26960829428772], + [6.198771548241595, 53.26884297222654], + [6.217094222553688, 53.26526720557976], + [6.218947333145745, 53.259872591057935] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.37c22aa5-aea3-496f-8fcb-b1456bfe7045", + "properties": { + "statcode": "GM0060", + "jrstatcode": "2024GM0060", + "statnaam": "Ameland", + "rubriek": "gemeente", + "id": 7 + }, + "bbox": [ + 170037.94900000095, 604303.761, 193013.2041000016, 609510.0628999993 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.731096421796479, 53.46163379456015], + [5.750284617922481, 53.46045754021194], + [5.7714548127702585, 53.460494815535206], + [5.784580882919565, 53.46119458591141], + [5.883610181130541, 53.46678952031515], + [5.930623853548702, 53.46828124413617], + [5.958457386115503, 53.46498323532492], + [5.9595302320928125, 53.46280294063171], + [5.944518214107968, 53.45831947391368], + [5.936561597620447, 53.45729661199995], + [5.930863771297283, 53.45775029010342], + [5.91021810620772, 53.45770177240311], + [5.901859881775132, 53.45575474900492], + [5.894799112352736, 53.453312030943124], + [5.890922339900462, 53.45119748478649], + [5.86512909618552, 53.448086446737086], + [5.86539538126749, 53.447470935144224], + [5.864057313829596, 53.447096338221556], + [5.833671247135726, 53.44284097097146], + [5.804972605068805, 53.43754344494001], + [5.788421643002731, 53.43816456138229], + [5.7800161439711, 53.43767565912799], + [5.776906422995532, 53.438294395162245], + [5.776289380462956, 53.43795932933933], + [5.776253169987346, 53.43652739820457], + [5.77591552440785, 53.436535802457406], + [5.775971992282993, 53.43788980830566], + [5.7750244195558835, 53.43793918501618], + [5.775064911140251, 53.436270740052365], + [5.77586050044379, 53.435810799183294], + [5.7752862306463, 53.433514969778344], + [5.774627031161322, 53.43356730789479], + [5.774263276188553, 53.43275207908025], + [5.773189362965511, 53.43267627036956], + [5.772985988534789, 53.433057358055784], + [5.773987178582072, 53.433414511113355], + [5.774432236508507, 53.434835902614765], + [5.774486983964904, 53.43810804558783], + [5.772484938573294, 53.439547368881065], + [5.752218353550113, 53.44035334857557], + [5.741067502757063, 53.44241074876946], + [5.730006810260639, 53.44302474830713], + [5.721954043561229, 53.44171473054013], + [5.715669378283075, 53.43570670806936], + [5.703654955714063, 53.430438662477314], + [5.7032811945678015, 53.429779794865794], + [5.689310791593355, 53.427517569628776], + [5.680362894576441, 53.42465444852152], + [5.671768008177234, 53.42498742956871], + [5.663926327495486, 53.42569845143891], + [5.653085773265881, 53.42603424939463], + [5.643128685358862, 53.427111724140794], + [5.638161528912331, 53.42873975551065], + [5.626984906419377, 53.43242825868538], + [5.616429511409734, 53.439516408574846], + [5.613529747010745, 53.446381182173376], + [5.614167638387215, 53.4506338677795], + [5.615663900948181, 53.453435718436516], + [5.651621651390339, 53.46963460286124], + [5.6601518862937805, 53.4714799025021], + [5.667609452271385, 53.47075377983234], + [5.694881463326784, 53.46174442419284], + [5.731096421796479, 53.46163379456015] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d69dceee-b1d9-4a24-b0f6-1db7c5cdf372", + "properties": { + "statcode": "GM0072", + "jrstatcode": "2024GM0072", + "statnaam": "Harlingen", + "rubriek": "gemeente", + "id": 8 + }, + "bbox": [ + 156042.7987000011, 572958.0940000005, 162298.72899999842, 580357.5055 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.456213063994504, 53.20303101529628], + [5.458007526107217, 53.20007097671596], + [5.461699387596919, 53.201114057199774], + [5.462458398346217, 53.19994169941688], + [5.4668427916784275, 53.19935180738099], + [5.479343414830559, 53.19966934132965], + [5.485112619837876, 53.199882629948206], + [5.489556181242098, 53.20073880563708], + [5.490168668121965, 53.19406840604895], + [5.487604752547737, 53.193644115472324], + [5.482157769021867, 53.18520455401695], + [5.481699659682429, 53.18378038930973], + [5.483639146296311, 53.18379299543363], + [5.480932310494542, 53.18005558703206], + [5.481607309414898, 53.180037292088485], + [5.479409342415154, 53.17668463118232], + [5.48013542040002, 53.176319470123985], + [5.480237267477299, 53.175960752413545], + [5.481860458339045, 53.17615711982024], + [5.49637255363541, 53.1783827381293], + [5.496367208096854, 53.17780531533373], + [5.493996203732125, 53.17429730159803], + [5.493434761899187, 53.17302635401605], + [5.49166381834067, 53.17222809686661], + [5.489405107998102, 53.172116556991696], + [5.488265964859508, 53.16988717875623], + [5.486010590138217, 53.16967948818836], + [5.485401910888776, 53.16787475521831], + [5.486045444508869, 53.16774892016652], + [5.484743797019301, 53.16583468709441], + [5.486684231453948, 53.16501602080307], + [5.482795337046699, 53.15913471914953], + [5.480251150441996, 53.157338142673964], + [5.4767856767684515, 53.15076261159611], + [5.476722647067544, 53.15034436448333], + [5.476441605618245, 53.15042075999958], + [5.47480976134353, 53.15080647911453], + [5.472834508888064, 53.1488554870557], + [5.4721918422553255, 53.146614486494], + [5.469643786175294, 53.14512711454274], + [5.468337596508712, 53.14333277904007], + [5.466697024132206, 53.14372772721519], + [5.461436497084215, 53.14454716618272], + [5.46302806020644, 53.14726806888379], + [5.455110007394166, 53.1475826128908], + [5.452849832068128, 53.148092537377586], + [5.451118576698019, 53.14992338570416], + [5.444628874272003, 53.15109893122769], + [5.4439078295578796, 53.14993659293784], + [5.442740381552891, 53.15027056585666], + [5.442649956971001, 53.151089603807186], + [5.435176088519104, 53.15278288326535], + [5.435509809055445, 53.153525500178056], + [5.426418805836906, 53.15313151796518], + [5.421435887977767, 53.15381403446787], + [5.4170898056428545, 53.15082214560769], + [5.414195846573911, 53.15163632351433], + [5.414894553101379, 53.152195147599095], + [5.413478667661663, 53.15271763975793], + [5.413031871555441, 53.15288512181877], + [5.4126914869173515, 53.15196734773889], + [5.411598326353963, 53.15193900472411], + [5.41237485135966, 53.15631232764434], + [5.415803093446801, 53.1645845688423], + [5.414986029726325, 53.16891072151658], + [5.411208000259556, 53.169793049428975], + [5.40768384301259, 53.17264161081794], + [5.404438105759172, 53.17334176696876], + [5.403739281507021, 53.17394318724277], + [5.402803260418748, 53.175708184787624], + [5.402962551572894, 53.17603297026542], + [5.404575715607856, 53.17358542119676], + [5.407441283927977, 53.1731547359192], + [5.411190892026043, 53.17008595906633], + [5.415134440664554, 53.169423619205965], + [5.413970942774738, 53.17073163761017], + [5.413424744098213, 53.17015663699554], + [5.410687369186404, 53.17262034152381], + [5.4093963031470755, 53.174629363225], + [5.409790211867299, 53.174817998008656], + [5.411180261034161, 53.17355092603089], + [5.411031875070693, 53.1752965041647], + [5.413881091566813, 53.175583583555486], + [5.413891652803608, 53.17613010893956], + [5.411786706099748, 53.17548831960735], + [5.410860405938853, 53.17598259100371], + [5.419227558156744, 53.17908867922852], + [5.415020373580782, 53.178688163844534], + [5.414620907992859, 53.1795477142924], + [5.4182691797728655, 53.18029816762696], + [5.419688916247456, 53.18229480460914], + [5.426009449166712, 53.18385866033449], + [5.434957629179161, 53.18906596928877], + [5.437998835339105, 53.19309011869277], + [5.438981345430326, 53.19383316866695], + [5.43554026589637, 53.195260848993435], + [5.434662702613049, 53.194525848974834], + [5.432334349591111, 53.192515210071896], + [5.4348083683503035, 53.19149414043611], + [5.434345735874438, 53.19072762584466], + [5.432952281731608, 53.18972528206036], + [5.431392112518618, 53.189912026867084], + [5.427537516687451, 53.185475218407944], + [5.4138286422173625, 53.182279426481514], + [5.4118699103946675, 53.17797526433478], + [5.408854634689479, 53.17557833295105], + [5.4058800672247305, 53.17519991078067], + [5.406002754386215, 53.175507451837504], + [5.408443611333659, 53.17588081947844], + [5.411102509447848, 53.178068511245584], + [5.411924537969531, 53.18147239558129], + [5.413245502415737, 53.18277524828759], + [5.422000988235661, 53.185036111997405], + [5.425612005746649, 53.1912103135167], + [5.428728286286946, 53.19670519903239], + [5.437989280898602, 53.209838123916605], + [5.456213063994504, 53.20303101529628] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.8555527e-2898-4306-ad66-31a9e8782fe9", + "properties": { + "statcode": "GM0074", + "jrstatcode": "2024GM0074", + "statnaam": "Heerenveen", + "rubriek": "gemeente", + "id": 9 + }, + "bbox": [ + 182377.70199999958, 547324.0370000005, 209882.1490000002, + 566588.0870000012 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.871765291079727, 53.081802183841255], + [5.870312588937398, 53.081432123311046], + [5.871502055245343, 53.07421000856774], + [5.873018994360051, 53.07434887844209], + [5.894974027166249, 53.07622850068011], + [5.895417786013296, 53.07883734875238], + [5.897039246467892, 53.07900548454257], + [5.903769844016949, 53.07924758530951], + [5.907335243715417, 53.07826907792672], + [5.926536178239569, 53.078487683409364], + [5.927580508963267, 53.07839481686199], + [5.933390212116022, 53.07811135521982], + [5.933649618366899, 53.076853201201345], + [5.932916639947488, 53.07604431618849], + [5.934317604442245, 53.075775391830966], + [5.9359517550093255, 53.07381539417816], + [5.932295638521892, 53.07321358506413], + [5.93227744148845, 53.07141013215611], + [5.930411749777072, 53.07100487457552], + [5.9354563168469605, 53.0665703202629], + [5.93999266418923, 53.06402128576637], + [5.941090385597063, 53.06390011780794], + [5.9442683258646385, 53.06525457106886], + [5.947328235357434, 53.062480222001525], + [5.9426350337567495, 53.05348621389767], + [5.95761886681833, 53.05354622839672], + [5.956396307055543, 53.052209813931796], + [5.9537599529810326, 53.052076031126624], + [5.952903897665121, 53.05008434327417], + [5.948820938234089, 53.049955773471844], + [5.948595363991591, 53.04918582419889], + [5.944531327109407, 53.049078523546235], + [5.944170343997004, 53.0475853123533], + [5.94335520951277, 53.04743045276961], + [5.943949418919525, 53.04439420247815], + [5.937996092154774, 53.04426996483753], + [5.940636361977895, 53.0428208109151], + [5.940137596932227, 53.042214004024075], + [5.942862199001292, 53.0412835216823], + [5.953087582528853, 53.03834918518138], + [5.952178629894753, 53.037207771285985], + [5.965926196310144, 53.03316732699749], + [5.966088215470058, 53.032757209463625], + [5.977036662184458, 53.03012838747879], + [5.979117865943876, 53.02923868097873], + [5.978721174369258, 53.028179066247155], + [5.983914067624325, 53.02655888625698], + [5.984483745674298, 53.02528520895966], + [5.978902161089059, 53.015007508569525], + [5.976771734308534, 53.01120032965603], + [5.977122736868936, 53.01016537641213], + [5.971963577185515, 53.00965836998562], + [5.97391167453149, 53.00621900864897], + [5.973008983624659, 53.00557852988125], + [5.973963312528186, 53.00342477326798], + [5.9796100314420535, 52.997811144373046], + [5.9775927603335735, 52.996381094799986], + [5.9764920963908645, 52.99559086134828], + [5.974648791929723, 52.994285238045855], + [5.976750059880284, 52.992658737148716], + [5.974155012332416, 52.990548955416116], + [5.972823644154117, 52.98935329216082], + [5.962653391808009, 52.981007275787675], + [5.9648920683200055, 52.979337018010945], + [5.962826303523368, 52.977316490103924], + [5.958105070390079, 52.97293542385518], + [5.962872617179997, 52.9724246684896], + [6.016341099327443, 52.96637541718294], + [6.018803813414464, 52.96608925841462], + [6.0268054415913355, 52.96499753174315], + [6.02694067787864, 52.96437241701161], + [6.0443469374967105, 52.966236638623116], + [6.058883475269988, 52.97029110152457], + [6.065497043319121, 52.972997960480214], + [6.066835028930579, 52.97371558712502], + [6.067493486166402, 52.973165514791255], + [6.069843706002067, 52.97423378179044], + [6.079725294578319, 52.980454115112096], + [6.084297147031263, 52.98317343168915], + [6.084967580552591, 52.982947103691956], + [6.086205854540573, 52.98375309181206], + [6.087862984579256, 52.983284978427896], + [6.092485186764335, 52.984248715032756], + [6.097507854655531, 52.98695409250411], + [6.096452538864393, 52.988063316508786], + [6.09846805156089, 52.989755259366234], + [6.098982881986907, 52.98923802376249], + [6.099722056621849, 52.98949996140063], + [6.096477897292269, 52.992853309380514], + [6.099285717727378, 52.99407855917899], + [6.100771910621916, 52.99560615162916], + [6.105555560526874, 52.997768754753196], + [6.107407561223997, 52.999406449786214], + [6.113904390421632, 53.001733443443655], + [6.120488381276578, 53.00536222039201], + [6.1298044806426635, 53.00875697213033], + [6.128778962928939, 53.010384638540536], + [6.129640664371448, 53.0108291534369], + [6.131553544439221, 53.01200554949962], + [6.1387738205330935, 53.01348353711165], + [6.1513375981095875, 53.01661737373946], + [6.15852985651043, 53.01702275171608], + [6.171300534115384, 53.01990206543999], + [6.176470292621334, 53.02093157115711], + [6.1856994850522256, 53.02502020887561], + [6.1948194732145065, 53.03099651912358], + [6.196624536162651, 53.033270888337526], + [6.198782657718653, 53.033765860941664], + [6.200398627119401, 53.03679211244836], + [6.205423640165271, 53.037930931192456], + [6.20220586664094, 52.99031040207304], + [6.200942821856977, 52.989694358689405], + [6.200869832512402, 52.98849385231985], + [6.195703419584451, 52.986209184500396], + [6.175456916884498, 52.98055599850496], + [6.15862777153768, 52.975844774585624], + [6.152515652948173, 52.97285899178108], + [6.1456930672545385, 52.96932195233351], + [6.143866352940915, 52.96826835392727], + [6.127871027033314, 52.9533979386678], + [6.125039356210254, 52.95237751765988], + [6.115858964606241, 52.95130275339328], + [6.0925306304446, 52.94209309180078], + [6.086355269432032, 52.936930611172734], + [6.086348798851726, 52.93688886128787], + [6.085730424671797, 52.936399420104344], + [6.084847696787553, 52.93627448076835], + [6.07867495052185, 52.931652832740596], + [6.062101869738183, 52.92526051276228], + [6.049981320191788, 52.920646863161366], + [6.0426314104177665, 52.917939006439234], + [6.03820270175769, 52.91797037307488], + [6.008803602839507, 52.931370503457245], + [6.002241650429886, 52.9340043102672], + [5.9980238547995, 52.933240930355694], + [5.988169377082403, 52.92903305652912], + [5.978803831764808, 52.927032445771694], + [5.970221580504507, 52.9282954644777], + [5.966380970946694, 52.92831278939615], + [5.9591595865130165, 52.927460258814314], + [5.954639099147886, 52.926001170542804], + [5.9524139292965454, 52.924709932395785], + [5.947904932251783, 52.919915428342044], + [5.937846927466566, 52.91174044024063], + [5.9333596942362234, 52.9150242998797], + [5.923569612395209, 52.92730314604975], + [5.9190882810073875, 52.93294935365797], + [5.9129835614868655, 52.94060264965451], + [5.914181108920472, 52.9429222083976], + [5.904885672927439, 52.95416388094355], + [5.905711092585141, 52.95551514084918], + [5.905447637256471, 52.955629991263585], + [5.902305075326951, 52.95736896731519], + [5.898113265116887, 52.96239333992844], + [5.89741557514923, 52.96307695049216], + [5.8956334510842225, 52.96214747229549], + [5.894767869692895, 52.96317917108912], + [5.891630219660288, 52.96227807542498], + [5.89168300030295, 52.96191498140147], + [5.891026848106279, 52.961696945350155], + [5.888519931338893, 52.96505633557132], + [5.886154071373211, 52.96571090740759], + [5.885988817909101, 52.966111420099615], + [5.888076695660611, 52.96645710870464], + [5.887570840914913, 52.967010184100694], + [5.870970615752215, 52.96444160615367], + [5.869238787938936, 52.968740547600504], + [5.867215203407935, 52.97862167907319], + [5.887267383243287, 52.98151510175026], + [5.886076768168917, 52.98402472649425], + [5.882841123578355, 52.98672298469039], + [5.877480860674058, 52.99085471395373], + [5.866126946228406, 52.99979646142756], + [5.85760313362069, 53.017008281184744], + [5.849335484374835, 53.02390484846281], + [5.8360090444707655, 53.030973703275244], + [5.8231859074985906, 53.038431452598665], + [5.809041328666149, 53.043684568412765], + [5.800272593874554, 53.047908386937145], + [5.797946979295318, 53.04980869243661], + [5.7958178445773205, 53.05301596634021], + [5.796458205742147, 53.053737231299145], + [5.795525023695661, 53.05487635366581], + [5.798748585825923, 53.05619529721312], + [5.796386035549136, 53.05883930184373], + [5.806701291685532, 53.06556961519151], + [5.808242737945755, 53.06658876667942], + [5.814178806354124, 53.072393216676566], + [5.81927433472096, 53.07586213324313], + [5.830162405906485, 53.07959512938229], + [5.831024171740761, 53.07837500021208], + [5.843361898588273, 53.08038273116657], + [5.844769186499843, 53.079574733665865], + [5.854441825544724, 53.08241379739987], + [5.85949185985751, 53.081848830221155], + [5.872870705713848, 53.08513499524844], + [5.87464327203948, 53.085070163052826], + [5.872996175961776, 53.08493342293822], + [5.873081112535382, 53.08422290941048], + [5.871881846066324, 53.08394571643392], + [5.871765291079727, 53.081802183841255] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7aa17e38-e444-4a27-a2c5-ff072803542c", + "properties": { + "statcode": "GM0080", + "jrstatcode": "2024GM0080", + "statnaam": "Leeuwarden", + "rubriek": "gemeente", + "id": 10 + }, + "bbox": [ + 171383.39400000125, 562174.6510000005, 192668.6550000012, + 589859.2089999989 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.736851195762869, 53.29458647537619], + [5.7493627819662905, 53.293939364382105], + [5.759656983934275, 53.294096264801304], + [5.7632838391542265, 53.2944910579963], + [5.766411151074319, 53.293433047789286], + [5.767202369182083, 53.29344033957522], + [5.768345466130922, 53.29321406229874], + [5.769033932464718, 53.29254562434303], + [5.771988929115552, 53.291545682745316], + [5.794585933100887, 53.28405384938656], + [5.797745298585803, 53.28379455381544], + [5.798573283458902, 53.282950593073224], + [5.811045746828677, 53.28080791579223], + [5.810522673881161, 53.27985120969578], + [5.81322916287673, 53.27923789667483], + [5.810538120474813, 53.27742407303498], + [5.811266386441677, 53.27698645939664], + [5.812036118186756, 53.276743470853674], + [5.813891704591817, 53.27765305074637], + [5.815309495761606, 53.27747808955301], + [5.816908410000632, 53.27638909010353], + [5.831508575690037, 53.275425910161836], + [5.838649165826244, 53.27494928424115], + [5.832530149947759, 53.26854722181858], + [5.832062546427092, 53.26033901974502], + [5.829700787291793, 53.257582143683805], + [5.82990306217772, 53.255351006321575], + [5.83316649188213, 53.24774478106546], + [5.832044734897014, 53.246402492346476], + [5.8310196738436755, 53.244722802323444], + [5.8321603394600485, 53.242856586559846], + [5.859196781112558, 53.24329202557031], + [5.859241280791769, 53.24329273744594], + [5.852553757335356, 53.230476728328455], + [5.8525538247296565, 53.23047672896566], + [5.8590345423470245, 53.230570112193064], + [5.879892286656958, 53.23324876283402], + [5.880656454978924, 53.22497572071035], + [5.889991975378141, 53.22499869691698], + [5.889170198111143, 53.22281573406521], + [5.89692656323587, 53.222962172623795], + [5.8971165060556885, 53.22097013752973], + [5.888952681740638, 53.22095244748224], + [5.889011951097707, 53.217976427142226], + [5.894188243856954, 53.217648942087315], + [5.893821340962917, 53.21551826894018], + [5.8978997603520265, 53.215388224444276], + [5.897863799754016, 53.21465807316012], + [5.905932091768573, 53.215013869699455], + [5.904972311250791, 53.21391784996807], + [5.905003633743251, 53.21247624403168], + [5.90565060290354, 53.21184240062861], + [5.9068742541423225, 53.211360344359335], + [5.9070519050586645, 53.211028958414374], + [5.897891698909739, 53.20869718019727], + [5.8577275686510335, 53.20406334829642], + [5.85766395900239, 53.20386634428172], + [5.856992142144692, 53.20293196400746], + [5.857465077589531, 53.20159964899109], + [5.862069670595314, 53.19359588263804], + [5.850972961182072, 53.191720834710004], + [5.853420547923529, 53.18937154402968], + [5.854979339845627, 53.18582265623255], + [5.857065449593103, 53.18141687884754], + [5.86193687398289, 53.17151871382134], + [5.88028369990177, 53.170319827957776], + [5.915566274796483, 53.16875855275444], + [5.925945218648029, 53.16842742936596], + [5.932778773350992, 53.170298900605665], + [5.933745678381385, 53.168868478529056], + [5.931917979930263, 53.161084075364585], + [5.923299329578063, 53.15295950071058], + [5.9189621987611485, 53.14917262640839], + [5.908628809044055, 53.1447804931201], + [5.923355993001468, 53.130909854192176], + [5.927667058539488, 53.12916203157258], + [5.932401687857651, 53.128133550993844], + [5.938580420912089, 53.12540383693781], + [5.9434596664364925, 53.121613979259266], + [5.949656606510746, 53.1048917024984], + [5.945943703538223, 53.10367598087654], + [5.933733944237271, 53.10912430438205], + [5.930444130914271, 53.109926952049435], + [5.926512338534359, 53.10895184671646], + [5.915404270112443, 53.10907385346228], + [5.910490533813819, 53.109154678653375], + [5.882005815198223, 53.10693947524498], + [5.884358702920803, 53.09970893615452], + [5.885984947718073, 53.09443913607348], + [5.882566450585743, 53.09348829914967], + [5.87824754122637, 53.09095929187797], + [5.880847639113564, 53.0901673425975], + [5.883118865288052, 53.09097559720062], + [5.883114374713903, 53.088963278145265], + [5.87724592042373, 53.085381993112506], + [5.87464327203948, 53.085070163052826], + [5.872870705713848, 53.08513499524844], + [5.85949185985751, 53.081848830221155], + [5.854441825544724, 53.08241379739987], + [5.844769186499843, 53.079574733665865], + [5.843361898588273, 53.08038273116657], + [5.831024171740761, 53.07837500021208], + [5.830162405906485, 53.07959512938229], + [5.81927433472096, 53.07586213324313], + [5.814178806354124, 53.072393216676566], + [5.808242737945755, 53.06658876667942], + [5.806701291685532, 53.06556961519151], + [5.796386035549136, 53.05883930184373], + [5.773912370877477, 53.04592169040287], + [5.769846724078389, 53.045849234794645], + [5.7710118104221335, 53.04696774246413], + [5.77141237270783, 53.047146957105475], + [5.769543239995383, 53.04953309170181], + [5.766813015331392, 53.05054539074034], + [5.76312477102319, 53.056621573380745], + [5.761843142353906, 53.06079840426776], + [5.766683578978467, 53.062240340967584], + [5.775053888202148, 53.066644191230935], + [5.773563615538129, 53.07410912516869], + [5.76428273129071, 53.08027617010652], + [5.771009435969229, 53.08107711481482], + [5.772629515855217, 53.081821576648764], + [5.774271812863474, 53.08619167551902], + [5.7729481708177355, 53.0874817560304], + [5.771482635062038, 53.08764740907383], + [5.771188075650989, 53.08794395787623], + [5.7720416028221795, 53.0883798326763], + [5.771383905855842, 53.08910592937191], + [5.7781336047366505, 53.092731698350605], + [5.788153102967272, 53.09655509841941], + [5.787380272205862, 53.09849667965025], + [5.7846154937917715, 53.099029897104856], + [5.780572306840597, 53.101894201762406], + [5.776964045934298, 53.10345723990519], + [5.774208527070394, 53.10380937865859], + [5.771109359882078, 53.102922907221576], + [5.769532928517052, 53.103263235506866], + [5.767779304064293, 53.10506383875989], + [5.769717655681753, 53.10598539892894], + [5.7693980789107195, 53.10653557779463], + [5.762627698783834, 53.1088174284492], + [5.760812648987646, 53.11119495203036], + [5.7626464090214995, 53.11163881896213], + [5.76140401823205, 53.11367904493731], + [5.757448944160718, 53.11271550264933], + [5.756589793788496, 53.11578057698213], + [5.7562437058895375, 53.12083663105525], + [5.754563098212664, 53.12466293454648], + [5.7514836783720655, 53.12594241334754], + [5.745520691365656, 53.12548217148069], + [5.736178760986742, 53.1219022085322], + [5.737153612372473, 53.12083578473452], + [5.733252738502525, 53.12019217358886], + [5.730559816001658, 53.12053911489406], + [5.725123872423315, 53.12359452847293], + [5.7211385532701575, 53.120501083360615], + [5.71839276654896, 53.11972894853048], + [5.709866346517489, 53.119602986873204], + [5.707938873659691, 53.119698796184274], + [5.700612691182512, 53.11577500543795], + [5.696108101343468, 53.11994190471071], + [5.695451625257268, 53.1225775957948], + [5.693890698257754, 53.12290128461139], + [5.695616535217611, 53.126825895907146], + [5.694373744521757, 53.126969442558845], + [5.694373307215609, 53.12696950029128], + [5.691573474024536, 53.12736344810283], + [5.692232543782055, 53.12884844537834], + [5.685974053899785, 53.12986741889256], + [5.684880697736329, 53.12826748778613], + [5.680037038900248, 53.128575450096385], + [5.659483768056496, 53.11598471393499], + [5.656565315035639, 53.112381717840655], + [5.656510111993281, 53.11236547691883], + [5.646412696481234, 53.1163501187953], + [5.643025651813682, 53.12288204766305], + [5.637347904647186, 53.12414909636101], + [5.637483569914377, 53.127143534311216], + [5.638317429406209, 53.12716977062096], + [5.638371421498577, 53.12796901969663], + [5.637299568651736, 53.12807850887034], + [5.635204638296307, 53.12959966543589], + [5.636183257623275, 53.1306459130162], + [5.631993134900195, 53.13301956610586], + [5.638213517634532, 53.136564464056015], + [5.639438162268516, 53.136210033793986], + [5.6448271529702465, 53.13780954074408], + [5.646528235588555, 53.13791366646071], + [5.648106905732887, 53.138370596677085], + [5.649698282074933, 53.1392890334853], + [5.649763663293745, 53.13932374974033], + [5.654124328657031, 53.14163897412192], + [5.652450413394953, 53.1442801324436], + [5.6491827618516535, 53.146862650898136], + [5.649680317158229, 53.14761043816963], + [5.652030062071762, 53.148690191770555], + [5.6554476665532105, 53.14772744428246], + [5.65847189704989, 53.14941841807304], + [5.6633201473550665, 53.14982125560372], + [5.661973613028908, 53.15091994188672], + [5.6628138465514155, 53.15232407964131], + [5.661577210175274, 53.15310426834469], + [5.661904018337, 53.15496757284065], + [5.657953241937955, 53.15432096380548], + [5.6569341935436075, 53.154441874375685], + [5.6566587056876205, 53.15543363331992], + [5.657659414858295, 53.15723802928105], + [5.6594352397962036, 53.15762358548012], + [5.658085774411841, 53.15873593563552], + [5.657502491900358, 53.15861505551241], + [5.660985236142572, 53.16311268517206], + [5.6602966373392976, 53.16427765851774], + [5.656084187500338, 53.16573352044104], + [5.655140130946402, 53.16514204525625], + [5.653537154671154, 53.16592571515831], + [5.652840171879897, 53.166259186148736], + [5.656292696836557, 53.16796100099035], + [5.658700239256805, 53.168316294173295], + [5.66252040523884, 53.17076905716293], + [5.662062173220096, 53.17219955741306], + [5.665830093983039, 53.17527455718162], + [5.668038293661277, 53.17507170901363], + [5.668102806914254, 53.173667908345976], + [5.6690061163694265, 53.1733328311605], + [5.672524703089114, 53.175170253825236], + [5.674259923085817, 53.17744465342333], + [5.675171699269559, 53.177718552302345], + [5.677291192202909, 53.1763926771237], + [5.679398216849551, 53.17913285511834], + [5.684642047868549, 53.181825849850505], + [5.68591270960258, 53.1816858022222], + [5.68709595320065, 53.1800389227062], + [5.692686246255165, 53.17993222731857], + [5.6972986882108, 53.17771722270785], + [5.697901339222355, 53.17447904165291], + [5.699291213019734, 53.173709838063374], + [5.7060986802078295, 53.17338306285289], + [5.707694785632263, 53.17438948490089], + [5.713244058720396, 53.17522963732823], + [5.7187872416256225, 53.16948279808071], + [5.7201272057320445, 53.17052726115096], + [5.723757859420227, 53.16997907320621], + [5.723529471054009, 53.168422735295394], + [5.724924743867104, 53.166079001783345], + [5.7283339336468435, 53.16792455574621], + [5.7282169904229985, 53.16978523603918], + [5.731345663624256, 53.17074327755158], + [5.732382985969419, 53.16938870294393], + [5.733325915826684, 53.16947362182467], + [5.734812688184149, 53.17147421120416], + [5.7377861452759, 53.17254669954566], + [5.741422985386052, 53.18089514074611], + [5.745409002917455, 53.18523128031985], + [5.74034248700695, 53.18537189463207], + [5.740700366001501, 53.18744702372818], + [5.742116845119234, 53.194277907219636], + [5.744574245277761, 53.19780481196746], + [5.742411233934749, 53.200095126604545], + [5.738382296264282, 53.20420322261027], + [5.737400332123459, 53.20621728934338], + [5.736090218938963, 53.206084741354736], + [5.7347405777232074, 53.21121967586657], + [5.743905031849614, 53.21137913438545], + [5.7440225191247825, 53.21261232380305], + [5.747107201747199, 53.21514436996297], + [5.745369451101634, 53.215521081840414], + [5.745611657990612, 53.21587634186966], + [5.734162336469596, 53.215804629845636], + [5.7335965120754535, 53.22231666117065], + [5.732551824975513, 53.2303229382915], + [5.733625103564147, 53.230894714368006], + [5.738147649450041, 53.23128337059089], + [5.729768819630922, 53.2352543956101], + [5.734953786668666, 53.238054081088315], + [5.736011874960574, 53.23743492462718], + [5.743915888773677, 53.24109812016327], + [5.7336195995158565, 53.248513986505706], + [5.736132979551689, 53.24890248206658], + [5.735956894953565, 53.25147004007408], + [5.729835786283442, 53.261235763413524], + [5.735386796782844, 53.26471366877922], + [5.7273399452324005, 53.2683455239168], + [5.722306466405744, 53.27153241457075], + [5.720129390555778, 53.2749166552686], + [5.721357706043133, 53.27957217991537], + [5.723813285993688, 53.284610597049515], + [5.726350098094681, 53.287607278408885], + [5.724849123114074, 53.28773298126736], + [5.725499030905349, 53.28914628936609], + [5.727627457306305, 53.2889680638489], + [5.727642108127701, 53.289072411948915], + [5.727026049840931, 53.28914706324592], + [5.727083518777574, 53.28938237277086], + [5.727981825652159, 53.291702730518246], + [5.729875518692044, 53.29388567917191], + [5.73057151599257, 53.29446844212008], + [5.735156066923408, 53.294369995394106], + [5.735383647243453, 53.29472099679266], + [5.736851195762869, 53.29458647537619] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.98259971-48e1-4850-b881-8b415e49ace5", + "properties": { + "statcode": "GM0085", + "jrstatcode": "2024GM0085", + "statnaam": "Ooststellingwerf", + "rubriek": "gemeente", + "id": 11 + }, + "bbox": [ + 201904.08700000122, 547000.7459999993, 224891.16000000015, + 565796.6590000018 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.36321882835212, 53.03926245401917], + [6.362521372211423, 53.03396902909502], + [6.374071937903996, 53.02295634085177], + [6.40268646302724, 52.9956533412612], + [6.413279837634505, 52.98552292733334], + [6.422622955087762, 52.976593131988935], + [6.427614708971872, 52.97181540007347], + [6.402671156057106, 52.94338181005714], + [6.393435770296861, 52.93284344736677], + [6.369026187023093, 52.921975626178636], + [6.333280544507836, 52.906356065205784], + [6.302985255135563, 52.924972366748136], + [6.283155242574852, 52.92614773714615], + [6.256593063409256, 52.927641232936004], + [6.247552946602442, 52.92369168616264], + [6.247258689549847, 52.92334744566653], + [6.213630099166318, 52.92579449586244], + [6.210980385625122, 52.931516526866815], + [6.209184440596034, 52.93369574039408], + [6.207876568711074, 52.933866020291596], + [6.200835865179732, 52.93903335758409], + [6.201135036270649, 52.94047851267427], + [6.202524718197326, 52.94149922594476], + [6.200561235633846, 52.94301365405471], + [6.188346423754574, 52.938873943766744], + [6.179890996018244, 52.93702484968976], + [6.172697733996295, 52.93566295892633], + [6.165460525754747, 52.9334484980504], + [6.157367845368962, 52.930551845521144], + [6.144668150180165, 52.92809186635194], + [6.139355752482975, 52.9240653049442], + [6.1300559446974185, 52.92038701170301], + [6.126300916255056, 52.91951320201471], + [6.123883181158631, 52.91789135178989], + [6.116812036242644, 52.91660495039267], + [6.11054474526477, 52.91324414912039], + [6.086525347400442, 52.93634120762763], + [6.084847696787553, 52.93627448076835], + [6.085730424671797, 52.936399420104344], + [6.086348798851726, 52.93688886128787], + [6.086355269432032, 52.936930611172734], + [6.0925306304446, 52.94209309180078], + [6.115858964606241, 52.95130275339328], + [6.125039356210254, 52.95237751765988], + [6.127871027033314, 52.9533979386678], + [6.143866352940915, 52.96826835392727], + [6.1456930672545385, 52.96932195233351], + [6.152515652948173, 52.97285899178108], + [6.15862777153768, 52.975844774585624], + [6.175456916884498, 52.98055599850496], + [6.195703419584451, 52.986209184500396], + [6.200869832512402, 52.98849385231985], + [6.200942821856977, 52.989694358689405], + [6.20220586664094, 52.99031040207304], + [6.205423640165271, 53.037930931192456], + [6.212851696805713, 53.03623565837826], + [6.212901091257166, 53.03714534133387], + [6.215146182956195, 53.03826860733273], + [6.222837277607152, 53.03918681989175], + [6.251771009517763, 53.048340850449236], + [6.2544127273028485, 53.04918054621], + [6.2730625117494405, 53.05590967120545], + [6.2805307910998, 53.05821066850227], + [6.280583747960565, 53.05856044043204], + [6.28142976075868, 53.06418658349328], + [6.30540786128775, 53.069409144972255], + [6.327788161237934, 53.07435643587848], + [6.332055348601995, 53.0752793786572], + [6.332381542652382, 53.07520718688919], + [6.351724581935016, 53.07093151193833], + [6.367810520184601, 53.06735999538987], + [6.364923966736113, 53.0519778868947], + [6.36321882835212, 53.03926245401917] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.068b6c63-c564-4374-bf99-ec6a316339fd", + "properties": { + "statcode": "GM0086", + "jrstatcode": "2024GM0086", + "statnaam": "Opsterland", + "rubriek": "gemeente", + "id": 12 + }, + "bbox": [ + 191212.29100000113, 553230.2089999989, 218321.22399999946, + 571679.9090000018 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.225961810546482, 53.1143001400744], + [6.2393639590598555, 53.113388825749134], + [6.251264702986161, 53.11393695951403], + [6.2543814453970095, 53.11413149412085], + [6.255594842824107, 53.11419971583625], + [6.261684591161832, 53.11429269474497], + [6.274138824602123, 53.11116116546389], + [6.283050305351933, 53.10686313799068], + [6.290565601165267, 53.099829050814776], + [6.293172622208457, 53.09921001551229], + [6.296426933594896, 53.0984433384825], + [6.31515744850534, 53.09405278464002], + [6.305273761233356, 53.0811895485358], + [6.332055348601995, 53.0752793786572], + [6.327788161237934, 53.07435643587848], + [6.30540786128775, 53.069409144972255], + [6.28142976075868, 53.06418658349328], + [6.280583747960565, 53.05856044043204], + [6.2805307910998, 53.05821066850227], + [6.2730625117494405, 53.05590967120545], + [6.2544127273028485, 53.04918054621], + [6.251771009517763, 53.048340850449236], + [6.222837277607152, 53.03918681989175], + [6.215146182956195, 53.03826860733273], + [6.212901091257166, 53.03714534133387], + [6.212851696805713, 53.03623565837826], + [6.205423640165271, 53.037930931192456], + [6.200398627119401, 53.03679211244836], + [6.198782657718653, 53.033765860941664], + [6.196624536162651, 53.033270888337526], + [6.1948194732145065, 53.03099651912358], + [6.1856994850522256, 53.02502020887561], + [6.176470292621334, 53.02093157115711], + [6.171300534115384, 53.01990206543999], + [6.15852985651043, 53.01702275171608], + [6.1513375981095875, 53.01661737373946], + [6.1387738205330935, 53.01348353711165], + [6.131553544439221, 53.01200554949962], + [6.129640664371448, 53.0108291534369], + [6.128778962928939, 53.010384638540536], + [6.1298044806426635, 53.00875697213033], + [6.120488381276578, 53.00536222039201], + [6.113904390421632, 53.001733443443655], + [6.107407561223997, 52.999406449786214], + [6.105555560526874, 52.997768754753196], + [6.100771910621916, 52.99560615162916], + [6.099285717727378, 52.99407855917899], + [6.096477897292269, 52.992853309380514], + [6.099722056621849, 52.98949996140063], + [6.098982881986907, 52.98923802376249], + [6.09846805156089, 52.989755259366234], + [6.096452538864393, 52.988063316508786], + [6.097507854655531, 52.98695409250411], + [6.092485186764335, 52.984248715032756], + [6.087862984579256, 52.983284978427896], + [6.086205854540573, 52.98375309181206], + [6.084967580552591, 52.982947103691956], + [6.084297147031263, 52.98317343168915], + [6.079725294578319, 52.980454115112096], + [6.069843706002067, 52.97423378179044], + [6.067493486166402, 52.973165514791255], + [6.066835028930579, 52.97371558712502], + [6.065497043319121, 52.972997960480214], + [6.058883475269988, 52.97029110152457], + [6.0443469374967105, 52.966236638623116], + [6.02694067787864, 52.96437241701161], + [6.0268054415913355, 52.96499753174315], + [6.018803813414464, 52.96608925841462], + [6.016341099327443, 52.96637541718294], + [5.962872617179997, 52.9724246684896], + [5.958105070390079, 52.97293542385518], + [5.962826303523368, 52.977316490103924], + [5.9648920683200055, 52.979337018010945], + [5.962653391808009, 52.981007275787675], + [5.972823644154117, 52.98935329216082], + [5.974155012332416, 52.990548955416116], + [5.976750059880284, 52.992658737148716], + [5.974648791929723, 52.994285238045855], + [5.9764920963908645, 52.99559086134828], + [5.9775927603335735, 52.996381094799986], + [5.9796100314420535, 52.997811144373046], + [5.973963312528186, 53.00342477326798], + [5.973008983624659, 53.00557852988125], + [5.97391167453149, 53.00621900864897], + [5.971963577185515, 53.00965836998562], + [5.977122736868936, 53.01016537641213], + [5.976771734308534, 53.01120032965603], + [5.978902161089059, 53.015007508569525], + [5.984483745674298, 53.02528520895966], + [5.983914067624325, 53.02655888625698], + [5.978721174369258, 53.028179066247155], + [5.979117865943876, 53.02923868097873], + [5.977036662184458, 53.03012838747879], + [5.966088215470058, 53.032757209463625], + [5.965926196310144, 53.03316732699749], + [5.952178629894753, 53.037207771285985], + [5.953087582528853, 53.03834918518138], + [5.942862199001292, 53.0412835216823], + [5.940137596932227, 53.042214004024075], + [5.940636361977895, 53.0428208109151], + [5.937996092154774, 53.04426996483753], + [5.943949418919525, 53.04439420247815], + [5.94335520951277, 53.04743045276961], + [5.944170343997004, 53.0475853123533], + [5.944531327109407, 53.049078523546235], + [5.948595363991591, 53.04918582419889], + [5.948820938234089, 53.049955773471844], + [5.952903897665121, 53.05008434327417], + [5.9537599529810326, 53.052076031126624], + [5.956396307055543, 53.052209813931796], + [5.95761886681833, 53.05354622839672], + [5.9426350337567495, 53.05348621389767], + [5.947328235357434, 53.062480222001525], + [5.9442683258646385, 53.06525457106886], + [5.941090385597063, 53.06390011780794], + [5.93999266418923, 53.06402128576637], + [5.9354563168469605, 53.0665703202629], + [5.930411749777072, 53.07100487457552], + [5.93227744148845, 53.07141013215611], + [5.932295638521892, 53.07321358506413], + [5.9359517550093255, 53.07381539417816], + [5.934317604442245, 53.075775391830966], + [5.932916639947488, 53.07604431618849], + [5.933649618366899, 53.076853201201345], + [5.933390212116022, 53.07811135521982], + [5.927580508963267, 53.07839481686199], + [5.930313347953397, 53.08101797726542], + [5.932799492365601, 53.08118035517537], + [5.980943703255375, 53.077565475008015], + [5.9835549575401785, 53.07826652520431], + [5.984954273577531, 53.07975934404309], + [5.98749013191915, 53.08075976405435], + [6.002470268607312, 53.08065278355647], + [6.017466753842001, 53.07610498491128], + [6.019815856338493, 53.07682535367024], + [6.02439900182273, 53.07336087647389], + [6.0317362603731395, 53.073861868917994], + [6.051048902482181, 53.07275105797893], + [6.069880418939976, 53.07210687765786], + [6.0761288305991235, 53.071158766202345], + [6.083426519084629, 53.07098664458895], + [6.088459866500119, 53.070889204845194], + [6.089320472939711, 53.07101350328064], + [6.103593699719182, 53.077005183326975], + [6.109609466012136, 53.082210137700976], + [6.11427692075775, 53.086962634615105], + [6.122978656799857, 53.09861508127183], + [6.125659541847549, 53.10146960526978], + [6.129117219197677, 53.102723462002956], + [6.130684976387114, 53.10290961055885], + [6.132270025292895, 53.10354227171739], + [6.134774419372907, 53.1047711159875], + [6.13892291421734, 53.10625467568523], + [6.139930228706058, 53.10643410715519], + [6.148186111635223, 53.11030603556701], + [6.163946459146619, 53.120763284240006], + [6.185716695339529, 53.129213440409536], + [6.192941185449468, 53.12335659409693], + [6.202381526670751, 53.117220591237256], + [6.205609813682211, 53.11546645468492], + [6.206205389699969, 53.11544776331626], + [6.206271316716216, 53.115444484553024], + [6.212860536767342, 53.115232538573835], + [6.222606765128028, 53.114914146199], + [6.225961810546482, 53.1143001400744] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.fcaef468-55d2-41c1-b269-290c2e7ea5ab", + "properties": { + "statcode": "GM0088", + "jrstatcode": "2024GM0088", + "statnaam": "Schiermonnikoog", + "rubriek": "gemeente", + "id": 13 + }, + "bbox": [ + 203365.30629999936, 608206.2773000002, 221693.80139999837, 615024.54 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.378536747113222, 53.507294303253246], + [6.361291001232343, 53.50475958215192], + [6.356101801790609, 53.50603860492266], + [6.347430683404045, 53.505964163019435], + [6.344420427728987, 53.50664037195113], + [6.337759203901509, 53.50631126316369], + [6.3292451156971925, 53.50726984020755], + [6.333555233917948, 53.50454333512013], + [6.334779309835876, 53.50259865032039], + [6.330410254496104, 53.5009136199056], + [6.318955689532091, 53.499745554935046], + [6.307971304489831, 53.4955800029827], + [6.28893437517751, 53.49147022493755], + [6.282522555991988, 53.490837733525225], + [6.275939754588569, 53.48942581861229], + [6.27380898338942, 53.48858006588373], + [6.273988397372956, 53.487073630340724], + [6.271171030282957, 53.48486611794997], + [6.260010365807574, 53.48291861177343], + [6.262418611040024, 53.48079579367445], + [6.252231765373265, 53.47797590471808], + [6.2410705615485815, 53.47657557189597], + [6.2371685024302295, 53.47714038879295], + [6.227468165560947, 53.477038603858354], + [6.197467894105638, 53.47287199499098], + [6.19682035876403, 53.472403531020696], + [6.198714289563745, 53.47055565524232], + [6.202953670899854, 53.468532414028694], + [6.201995053315491, 53.46823845420044], + [6.195133030463887, 53.472404433125014], + [6.169391204416024, 53.4724934434204], + [6.167464993306496, 53.470067437018535], + [6.167866933652923, 53.46814876140385], + [6.166566821385785, 53.467924706364585], + [6.165841420369104, 53.47196440114926], + [6.160576178298045, 53.47192371150856], + [6.15706827679129, 53.470385649214975], + [6.1558959696547175, 53.46667176255915], + [6.1502944395234636, 53.4656809526169], + [6.152165853001754, 53.46208659395946], + [6.150098809493749, 53.46015257905933], + [6.142411606866692, 53.457707582453466], + [6.13626796037994, 53.46035623654212], + [6.1370053641927464, 53.462890626041], + [6.143727049036506, 53.46213987892048], + [6.144408162440842, 53.465212136913195], + [6.136152702286137, 53.46744611088459], + [6.120551026805316, 53.46045530958655], + [6.115395276472484, 53.462907871365964], + [6.118892457160014, 53.48293277510496], + [6.124662242824229, 53.486805477114416], + [6.139047226038651, 53.492848518774714], + [6.150307801955441, 53.497115435207135], + [6.2100901735373455, 53.50282944163102], + [6.22909651549521, 53.50531901623858], + [6.289260247844706, 53.50854006944979], + [6.320059484145966, 53.511836050361886], + [6.345151598507491, 53.51550754638068], + [6.366921091209784, 53.51735501772197], + [6.388080036179505, 53.5171384007234], + [6.392576540930965, 53.51483388412586], + [6.390691176111475, 53.5105243977763], + [6.378536747113222, 53.507294303253246] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c8441d33-d2ac-48a8-a635-9dc317ccc7a2", + "properties": { + "statcode": "GM0090", + "jrstatcode": "2024GM0090", + "statnaam": "Smallingerland", + "rubriek": "gemeente", + "id": 14 + }, + "bbox": [ + 187372.34800000116, 565121.7296999991, 208447.811999999, + 575044.1640000008 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.176303876147254, 53.15278529385354], + [6.175677576274714, 53.13507637668683], + [6.179069281845303, 53.133992024650205], + [6.185716695339529, 53.129213440409536], + [6.163946459146619, 53.120763284240006], + [6.148186111635223, 53.11030603556701], + [6.139930228706058, 53.10643410715519], + [6.13892291421734, 53.10625467568523], + [6.134774419372907, 53.1047711159875], + [6.132270025292895, 53.10354227171739], + [6.130684976387114, 53.10290961055885], + [6.129117219197677, 53.102723462002956], + [6.125659541847549, 53.10146960526978], + [6.122978656799857, 53.09861508127183], + [6.11427692075775, 53.086962634615105], + [6.109609466012136, 53.082210137700976], + [6.103593699719182, 53.077005183326975], + [6.089320472939711, 53.07101350328064], + [6.088459866500119, 53.070889204845194], + [6.083426519084629, 53.07098664458895], + [6.0761288305991235, 53.071158766202345], + [6.069880418939976, 53.07210687765786], + [6.051048902482181, 53.07275105797893], + [6.0317362603731395, 53.073861868917994], + [6.02439900182273, 53.07336087647389], + [6.019815856338493, 53.07682535367024], + [6.017466753842001, 53.07610498491128], + [6.002470268607312, 53.08065278355647], + [5.98749013191915, 53.08075976405435], + [5.984954273577531, 53.07975934404309], + [5.9835549575401785, 53.07826652520431], + [5.980943703255375, 53.077565475008015], + [5.932799492365601, 53.08118035517537], + [5.930313347953397, 53.08101797726542], + [5.927580508963267, 53.07839481686199], + [5.926536178239569, 53.078487683409364], + [5.907335243715417, 53.07826907792672], + [5.903769844016949, 53.07924758530951], + [5.897039246467892, 53.07900548454257], + [5.895417786013296, 53.07883734875238], + [5.894974027166249, 53.07622850068011], + [5.873018994360051, 53.07434887844209], + [5.871502055245343, 53.07421000856774], + [5.870312588937398, 53.081432123311046], + [5.871765291079727, 53.081802183841255], + [5.871881846066324, 53.08394571643392], + [5.873081112535382, 53.08422290941048], + [5.872996175961776, 53.08493342293822], + [5.87464327203948, 53.085070163052826], + [5.87724592042373, 53.085381993112506], + [5.883114374713903, 53.088963278145265], + [5.883118865288052, 53.09097559720062], + [5.880847639113564, 53.0901673425975], + [5.87824754122637, 53.09095929187797], + [5.882566450585743, 53.09348829914967], + [5.885984947718073, 53.09443913607348], + [5.884358702920803, 53.09970893615452], + [5.882005815198223, 53.10693947524498], + [5.910490533813819, 53.109154678653375], + [5.915404270112443, 53.10907385346228], + [5.926512338534359, 53.10895184671646], + [5.930444130914271, 53.109926952049435], + [5.933733944237271, 53.10912430438205], + [5.945943703538223, 53.10367598087654], + [5.949656606510746, 53.1048917024984], + [5.9434596664364925, 53.121613979259266], + [5.9432775114430445, 53.12444186650063], + [5.948344503715362, 53.12625754667618], + [5.950157790422628, 53.12624582223171], + [5.950953906195765, 53.126577595824315], + [5.95096841383376, 53.12744717617164], + [5.961871285490183, 53.131126260069145], + [5.974879643429387, 53.134892817515826], + [5.986844275204779, 53.14183455404403], + [6.000866499234451, 53.14946160793223], + [6.0012475192377135, 53.14962078911173], + [6.01309829672073, 53.154536803091936], + [6.040602828731586, 53.15648788334265], + [6.0490348832126495, 53.15641758118807], + [6.061658912065243, 53.15660229743833], + [6.0789316473611725, 53.15645515507559], + [6.084325719784272, 53.158652282413705], + [6.0867503553055995, 53.158042806200044], + [6.0857600849296665, 53.15711798089828], + [6.088799537657712, 53.15392826133269], + [6.093943078529775, 53.15613437734847], + [6.104529769952198, 53.150421431746295], + [6.105012977255062, 53.151799397900135], + [6.107970468257502, 53.15175883304219], + [6.109584726332792, 53.15104025408151], + [6.119338486406641, 53.149419959392944], + [6.11954317178898, 53.14568979430695], + [6.122208558751857, 53.14527268300139], + [6.143063396031724, 53.155352028827956], + [6.148118250577181, 53.15782743194782], + [6.14858324560142, 53.15699298551138], + [6.151986451479998, 53.150832776713095], + [6.1667632472317235, 53.155995676459455], + [6.17675035960531, 53.15950451336303], + [6.176303876147254, 53.15278529385354] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.67c11433-a9d6-4e1d-8bef-95cd7b3dcbc6", + "properties": { + "statcode": "GM0093", + "jrstatcode": "2024GM0093", + "statnaam": "Terschelling", + "rubriek": "gemeente", + "id": 15 + }, + "bbox": [ + 139300.83999999985, 584756.4193000011, 165735.39939999953, + 606450.9704000019 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.2603391581185965, 53.250253568560915], + [5.25131636347902, 53.24929869112895], + [5.249379100778136, 53.25010460800572], + [5.246255519185054, 53.25387412373198], + [5.247800645584833, 53.25539032864307], + [5.2497432952076055, 53.25541850000205], + [5.252896584207532, 53.255473394775954], + [5.255022706450039, 53.25442731824659], + [5.267376689765334, 53.25264891925914], + [5.2603391581185965, 53.250253568560915] + ] + ], + [ + [ + [5.159757729588555, 53.29616172963499], + [5.159775789245193, 53.296026605495726], + [5.15972497314745, 53.29604023897515], + [5.159757729588555, 53.29616172963499] + ] + ], + [ + [ + [5.5428507929725646, 53.439316510934724], + [5.548735773716491, 53.43563889393027], + [5.547590943629022, 53.43070255546186], + [5.546225122755455, 53.43143939619755], + [5.544482991122263, 53.43626657653985], + [5.540956534550007, 53.433274298080256], + [5.528834072725272, 53.43027483012031], + [5.5108195629499575, 53.42765766140395], + [5.476334955888374, 53.417473922970764], + [5.474345855996334, 53.413831030893064], + [5.474944549620463, 53.410753244872176], + [5.482369344662872, 53.41206329052147], + [5.48109838208298, 53.41006413327907], + [5.476157402277363, 53.40835997465316], + [5.469784549497787, 53.406515005640514], + [5.458697564338233, 53.404579880589374], + [5.427968971631271, 53.40413733966428], + [5.404471907418968, 53.40461183046251], + [5.392142386787139, 53.40331109901481], + [5.383916533554573, 53.401970250914694], + [5.377709293206481, 53.40002638044627], + [5.371535577551668, 53.39653428843621], + [5.367874888974682, 53.39517823093336], + [5.35679272698329, 53.38776943790695], + [5.349588899547397, 53.385053238508924], + [5.344667352257738, 53.38319814428397], + [5.3370643725199995, 53.381537380653796], + [5.332816390316771, 53.381443489916634], + [5.329448971308336, 53.380224149925546], + [5.32488750460491, 53.378217071755884], + [5.322157873784347, 53.37825360180968], + [5.313214469031584, 53.38031807191051], + [5.310774101193965, 53.37791965421607], + [5.308065734724182, 53.37670007148291], + [5.30539831174987, 53.37588138982381], + [5.300191955975589, 53.37585921052018], + [5.29653969354811, 53.37613455638745], + [5.298498088735659, 53.37477474987853], + [5.29561358463779, 53.37268628590585], + [5.295506980221903, 53.37117675430565], + [5.293497871290691, 53.370439304607885], + [5.282974391592819, 53.372039674400554], + [5.278181534129225, 53.373366230544235], + [5.274546245347773, 53.37337724502514], + [5.267969178689411, 53.37143280033898], + [5.259727950376254, 53.37297181729686], + [5.256812361452607, 53.3727279484252], + [5.252866129863788, 53.369814309901265], + [5.243339115536811, 53.36599599070125], + [5.243556593140265, 53.36546482663948], + [5.237864424403688, 53.367200188501734], + [5.235746147019309, 53.3664074840079], + [5.233838551131935, 53.366586833249], + [5.233163257345513, 53.366110390251784], + [5.226582051016741, 53.365686345507896], + [5.226038240790987, 53.364402787059056], + [5.222645068199879, 53.36399270505078], + [5.2259111649966385, 53.3645391375246], + [5.226044745380164, 53.365716432244625], + [5.221254984478543, 53.36514558763703], + [5.221465647718917, 53.36441136605804], + [5.218922103659157, 53.36202020459438], + [5.218072680807555, 53.36194754699665], + [5.217755096515144, 53.3607190866563], + [5.216595964543679, 53.358535771531386], + [5.217626997163414, 53.35714471370279], + [5.216200986731937, 53.35623065042263], + [5.21519793485477, 53.35705261205367], + [5.212681574885927, 53.35590818471843], + [5.211343278550221, 53.356433694539746], + [5.209368481281343, 53.35681947923259], + [5.210347922157939, 53.354935426179416], + [5.209066702699227, 53.35344513081842], + [5.19129668823202, 53.34760959944493], + [5.18107184336343, 53.3470096494118], + [5.1745520079351985, 53.3477874581906], + [5.172567776383556, 53.34939298492096], + [5.159442611406976, 53.35019498768464], + [5.157279187641105, 53.34797401297699], + [5.151463437247393, 53.350177682280204], + [5.156520693097331, 53.358220736168434], + [5.165247626519333, 53.36980106853362], + [5.185542875558189, 53.387850318871486], + [5.19354133837628, 53.39254943531968], + [5.20143873850926, 53.39463662916136], + [5.251225886804575, 53.40408955678767], + [5.297268659301005, 53.411344298621785], + [5.3144122999284455, 53.41400906645708], + [5.364015063140019, 53.42174314224953], + [5.37604946382347, 53.42312316657047], + [5.472747071666364, 53.441160122922675], + [5.494726599794918, 53.44420755262317], + [5.511291500159668, 53.444239958289764], + [5.526185190836241, 53.44348076061689], + [5.5366400506266364, 53.44140066175517], + [5.5428507929725646, 53.439316510934724] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ef388933-628e-4a8d-a331-86e2950bfb09", + "properties": { + "statcode": "GM0096", + "jrstatcode": "2024GM0096", + "statnaam": "Vlieland", + "rubriek": "gemeente", + "id": 16 + }, + "bbox": [ + 118774.18430000171, 579882.7208000012, 139834.2072999999, + 591311.8610000014 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.1329494407917355, 53.28377643795446], + [5.121476469801439, 53.28156251538066], + [5.111054874545638, 53.28715686651034], + [5.111150389767953, 53.28878238637477], + [5.121779456821983, 53.29293653790538], + [5.1271458012930475, 53.29952301947693], + [5.141111747522601, 53.300264675127664], + [5.151032415397246, 53.29896547838545], + [5.157807060178287, 53.2988502127807], + [5.159757729588555, 53.29616172963499], + [5.1569381146798365, 53.29231554316504], + [5.154155819200779, 53.29183342961513], + [5.145617401347941, 53.290207487528896], + [5.1329494407917355, 53.28377643795446] + ] + ], + [ + [ + [5.100412484551075, 53.30085643538919], + [5.093410958947193, 53.29573391437398], + [5.09259029568772, 53.2955340200409], + [5.091371664117997, 53.29502320689636], + [5.09128139284525, 53.29534078522237], + [5.09190995989409, 53.29565786938031], + [5.088595943497488, 53.297896347011665], + [5.087598160003765, 53.29789668459123], + [5.086825899136592, 53.29769619506323], + [5.086275630766397, 53.297008339909276], + [5.088959987681847, 53.29658865509609], + [5.091406038241622, 53.29458658230202], + [5.087424773009077, 53.296456477019674], + [5.078345863067427, 53.2963984646793], + [5.0629627044206815, 53.29399573792949], + [5.061851235438219, 53.29302429066318], + [5.05979693888758, 53.29118945303886], + [5.046491228582856, 53.28529524107531], + [5.033328916546676, 53.28103756197187], + [4.987624563721362, 53.27092119250145], + [4.972038772291593, 53.264835037839624], + [4.971610290749455, 53.261997865044485], + [4.97874725519362, 53.253873730730845], + [4.9793792385262785, 53.24888000002195], + [4.9714687694442565, 53.24228851359525], + [4.956445297592305, 53.23771967116182], + [4.937708974220686, 53.22745174594973], + [4.927511770969163, 53.2195675260082], + [4.919407840790633, 53.21621966591035], + [4.9080621248973095, 53.2160322723102], + [4.879630794193714, 53.21489564432718], + [4.87151228677791, 53.20742447672939], + [4.873275541989638, 53.205866941063675], + [4.869359567477619, 53.20446598966193], + [4.848044424316159, 53.20655597971452], + [4.845011938649826, 53.208081318813576], + [4.8519173561156075, 53.22028617926577], + [4.853567737690641, 53.22201037533826], + [4.9330933827985355, 53.25547962224895], + [4.960510122912631, 53.271128613153756], + [5.001059848383932, 53.28935976251874], + [5.036252795632446, 53.30199447982867], + [5.044600551506535, 53.3043975707385], + [5.063990452459898, 53.307844240270505], + [5.073603263987959, 53.30767545625907], + [5.094678913902212, 53.30559487716313], + [5.098616552437291, 53.30472807803825], + [5.10074358921848, 53.303051092909136], + [5.100412484551075, 53.30085643538919] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.bccb4058-5915-4084-a52b-740543318a2e", + "properties": { + "statcode": "GM0098", + "jrstatcode": "2024GM0098", + "statnaam": "Weststellingwerf", + "rubriek": "gemeente", + "id": 17 + }, + "bbox": [ + 184048.21299999952, 534955.3079999983, 212840.1799999997, + 550970.9780000001 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.232291053300591, 52.913438179885944], + [6.228785292603344, 52.910302296164346], + [6.206900007036154, 52.89074386118996], + [6.200811950567222, 52.88837858263976], + [6.190679751566051, 52.88447885552956], + [6.160459547956042, 52.87252077612225], + [6.141219093222964, 52.863799652605834], + [6.140512521204493, 52.863478116252836], + [6.120994744399524, 52.85464975513314], + [6.119819889813939, 52.85421494321397], + [6.0931930980633995, 52.844579417944786], + [6.087480419982726, 52.84311386268869], + [6.083297784399598, 52.8394869762423], + [6.081000267767655, 52.83873232330259], + [6.061512949381646, 52.839296291183956], + [6.056489886538082, 52.83796577108586], + [6.054546995456656, 52.83763131340679], + [6.052607348006824, 52.837339119689084], + [6.054979225445256, 52.83134728677219], + [6.0593000711509415, 52.82680556123848], + [6.059951033724858, 52.82611853669096], + [6.057816399737717, 52.82545265777393], + [6.052935858526172, 52.824123365356975], + [6.048536443650753, 52.821543647955025], + [6.0469574429355575, 52.820526384718164], + [6.0445190220400455, 52.819751545924476], + [6.043508168742741, 52.81960681066592], + [6.038209014769423, 52.81771410923792], + [6.031168379643614, 52.81499070869167], + [6.026616498966662, 52.82107760196669], + [6.024558962546593, 52.82254466263565], + [6.01789959442993, 52.82190033689855], + [6.007483397850737, 52.82004646890508], + [5.9990783853822975, 52.816910007598544], + [5.99650785655816, 52.816561509679616], + [5.994209508160877, 52.81911624336624], + [5.990574655407381, 52.821596560818115], + [5.988904137828438, 52.822063953540564], + [5.986473074449422, 52.821703121587596], + [5.986394300541116, 52.8218539840194], + [5.981556478763814, 52.829473220850645], + [5.976174984669167, 52.83474817201192], + [5.972870727900841, 52.840713570091594], + [5.972438087974245, 52.841916695024146], + [5.973127795318994, 52.84246971440311], + [5.969976268217108, 52.84237532308866], + [5.958731318940835, 52.83976596131217], + [5.955792338084168, 52.83744184616364], + [5.9568533602283225, 52.834442704249895], + [5.95578367377808, 52.833234569102586], + [5.946247287987606, 52.83742471544358], + [5.944368138987449, 52.83707104902219], + [5.94180257789286, 52.83596856306785], + [5.938019494307728, 52.83538176970294], + [5.930157747360847, 52.835012906904595], + [5.926732157708866, 52.833291768494306], + [5.930653798564274, 52.83224756023206], + [5.930115122195552, 52.83135654178437], + [5.926983265579941, 52.83157678511724], + [5.923097636703166, 52.83103450332396], + [5.9227472582208245, 52.82987258089562], + [5.926409573961534, 52.82818344496317], + [5.9229461692573855, 52.82752583509279], + [5.924202018826967, 52.82358984331085], + [5.916321230362877, 52.82028033712466], + [5.91385994440868, 52.81862211419885], + [5.9119657203490075, 52.816115948827765], + [5.908583603373417, 52.81371207914554], + [5.900657173528275, 52.811824865473355], + [5.897881478136421, 52.80780331216547], + [5.893428707937263, 52.80628288173565], + [5.8825779469025195, 52.80391960068343], + [5.879580817917839, 52.801202677854214], + [5.876292243042149, 52.80085487188024], + [5.868679640983712, 52.80272622934943], + [5.865636138636162, 52.804650455320264], + [5.8596399577636875, 52.80453624439988], + [5.857026771679714, 52.807228860857784], + [5.854802503426849, 52.80551819679689], + [5.849951822689008, 52.80616168726525], + [5.843593643370088, 52.80503254260125], + [5.842201968061011, 52.807584265380676], + [5.838444419259773, 52.80594702879682], + [5.836101862643067, 52.80595460983804], + [5.837365345852888, 52.808261814500206], + [5.833411154900569, 52.81176061882593], + [5.8287205756596006, 52.81342693344571], + [5.824154493653732, 52.813297054465565], + [5.822354325060527, 52.815109428109764], + [5.820306033018416, 52.8159501938249], + [5.819896856797564, 52.816903304274874], + [5.81974419827096, 52.81727838858882], + [5.818238050565895, 52.81978034054525], + [5.818127787743096, 52.82166848122346], + [5.819014262140772, 52.82307233237881], + [5.821567358851583, 52.82468998354217], + [5.824728699747551, 52.82558981759547], + [5.827750429519739, 52.827709401137994], + [5.825746336600741, 52.83016976677583], + [5.8287076882916455, 52.83176805723442], + [5.829236699032121, 52.833465948934524], + [5.833007740184387, 52.83656006263188], + [5.83587947924684, 52.84104078195206], + [5.840016982952861, 52.84299620657043], + [5.839909030508761, 52.846920764992426], + [5.840837219467964, 52.848373761570805], + [5.843927548338351, 52.85487379709875], + [5.8512796336312585, 52.86268936113582], + [5.856056067805876, 52.867641602789824], + [5.856958773077065, 52.87097531489648], + [5.861754574948932, 52.87467893098427], + [5.864545541963847, 52.8760874380464], + [5.868098603073396, 52.87903307264888], + [5.868424228195543, 52.88029813135563], + [5.87110316428116, 52.88167304063699], + [5.876971391732104, 52.88682803433874], + [5.88051255354661, 52.88880857744705], + [5.883237666494005, 52.8890456693121], + [5.884969468673144, 52.889815087606515], + [5.886016957854831, 52.89423942801578], + [5.890665864897897, 52.895380100305765], + [5.896172445813403, 52.895904293125405], + [5.899025652254022, 52.89562701289017], + [5.901460023507713, 52.89702815076825], + [5.904174700452753, 52.89670094778539], + [5.911163403869098, 52.89782747345089], + [5.925057803616567, 52.9038583355617], + [5.929846024081115, 52.90651500313403], + [5.933073616888629, 52.907340539844945], + [5.937846927466566, 52.91174044024063], + [5.947904932251783, 52.919915428342044], + [5.9524139292965454, 52.924709932395785], + [5.954639099147886, 52.926001170542804], + [5.9591595865130165, 52.927460258814314], + [5.966380970946694, 52.92831278939615], + [5.970221580504507, 52.9282954644777], + [5.978803831764808, 52.927032445771694], + [5.988169377082403, 52.92903305652912], + [5.9980238547995, 52.933240930355694], + [6.002241650429886, 52.9340043102672], + [6.008803602839507, 52.931370503457245], + [6.03820270175769, 52.91797037307488], + [6.0426314104177665, 52.917939006439234], + [6.049981320191788, 52.920646863161366], + [6.062101869738183, 52.92526051276228], + [6.07867495052185, 52.931652832740596], + [6.084847696787553, 52.93627448076835], + [6.086525347400442, 52.93634120762763], + [6.11054474526477, 52.91324414912039], + [6.116812036242644, 52.91660495039267], + [6.123883181158631, 52.91789135178989], + [6.126300916255056, 52.91951320201471], + [6.1300559446974185, 52.92038701170301], + [6.139355752482975, 52.9240653049442], + [6.144668150180165, 52.92809186635194], + [6.157367845368962, 52.930551845521144], + [6.165460525754747, 52.9334484980504], + [6.172697733996295, 52.93566295892633], + [6.179890996018244, 52.93702484968976], + [6.188346423754574, 52.938873943766744], + [6.200561235633846, 52.94301365405471], + [6.202524718197326, 52.94149922594476], + [6.201135036270649, 52.94047851267427], + [6.200835865179732, 52.93903335758409], + [6.207876568711074, 52.933866020291596], + [6.209184440596034, 52.93369574039408], + [6.210980385625122, 52.931516526866815], + [6.213630099166318, 52.92579449586244], + [6.247258689549847, 52.92334744566653], + [6.244829592805605, 52.91958699934942], + [6.24234301581247, 52.91834521753664], + [6.232291053300591, 52.913438179885944] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.5322115d-f7cf-4d91-8baa-4c1d56a33714", + "properties": { + "statcode": "GM0106", + "jrstatcode": "2024GM0106", + "statnaam": "Assen", + "rubriek": "gemeente", + "id": 18 + }, + "bbox": [ + 228711.8299999982, 550107.8599999994, 238567.11300000176, + 564562.1546999998 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.603717727166883, 53.05887926923198], + [6.605170002053204, 53.05644736713698], + [6.608087385763294, 53.048418235221064], + [6.6064893309762445, 53.03820273342775], + [6.603549136729377, 53.03295643797397], + [6.631221429428706, 53.02610524110129], + [6.6297636834121505, 53.023715133018875], + [6.632646181860323, 53.02203607447802], + [6.629760545612086, 53.01562456260244], + [6.621738524427908, 53.01217339313051], + [6.621846075361758, 53.0100560473267], + [6.620726897627961, 53.009265943750755], + [6.6159836053447965, 53.00813418055041], + [6.61172005319992, 53.00160646868516], + [6.6115723254990035, 52.999574460278744], + [6.607862970995843, 52.995352763441325], + [6.60794453784303, 52.98944080400504], + [6.607926180874753, 52.98941225256089], + [6.605701905019967, 52.98449399630125], + [6.6041346796931455, 52.98289880751416], + [6.599383102252871, 52.98151806384233], + [6.596484893819628, 52.979299193279374], + [6.595377792249751, 52.9762701346563], + [6.596043479000811, 52.97265798945351], + [6.582845678357264, 52.968009949134284], + [6.581265317042905, 52.96744906199222], + [6.569997288732658, 52.95767513815233], + [6.567226993926604, 52.95246365314024], + [6.561504801657726, 52.946652120768555], + [6.555331081220997, 52.94954680051857], + [6.5429974888576625, 52.95533823608684], + [6.539278923724108, 52.9458902920995], + [6.535914704980517, 52.93259055759651], + [6.5346028897302855, 52.93251481629143], + [6.530772383979753, 52.934625921499055], + [6.517622169071832, 52.9397629709468], + [6.519577252735541, 52.94295573492474], + [6.508826789631689, 52.94698466259656], + [6.496971747894984, 52.9515660928986], + [6.493128114867875, 52.94799589024655], + [6.490587342165784, 52.94901251641116], + [6.489537944902449, 52.94805852594407], + [6.48649198599966, 52.9491814943428], + [6.48394766824284, 52.950173062160886], + [6.489193855723993, 52.95445702061656], + [6.493831404943351, 52.95874731854858], + [6.487558124219688, 52.96120495068264], + [6.495743242395678, 52.96899053485099], + [6.486882929937511, 52.97244216538142], + [6.485502069104544, 52.97298464683746], + [6.490489031125965, 52.977596547160765], + [6.496595237320329, 52.98323938084206], + [6.493913340798115, 52.98426558728276], + [6.494233439046637, 52.98585584561628], + [6.499004411632009, 52.99021579226399], + [6.494572563188306, 52.99195867806525], + [6.493702068515542, 52.99233690839848], + [6.498060827327407, 52.993780960552066], + [6.492585957535133, 52.99305883647305], + [6.4916925251502935, 52.995586924157685], + [6.488212019821584, 53.00540528001636], + [6.505120511457723, 53.00991709788471], + [6.513036285107879, 53.01055666342224], + [6.509978604924274, 53.01703943481212], + [6.5038730475152144, 53.01604157897982], + [6.495527756099198, 53.03089769487853], + [6.502893480095611, 53.0322127950376], + [6.499950962372465, 53.03843029448062], + [6.500380731991912, 53.03907185522498], + [6.505130060469678, 53.046354757557154], + [6.510923659928796, 53.04445354334984], + [6.52428353803774, 53.045949023985905], + [6.529107491812489, 53.04338519601901], + [6.530852246486164, 53.04118547478785], + [6.530193800729275, 53.040109500072845], + [6.53389257698503, 53.03893170496025], + [6.533683240402635, 53.038156258784], + [6.541743057500756, 53.03717768593106], + [6.541270337106363, 53.03565958067281], + [6.547306761155324, 53.035066961840066], + [6.549276972532048, 53.03834539387158], + [6.5507698845851845, 53.038155431697476], + [6.551488951839859, 53.04025241577629], + [6.552315923198063, 53.042575586718414], + [6.552516171326307, 53.04349544531924], + [6.550024431401471, 53.04647226741868], + [6.5514904411440185, 53.050365419175556], + [6.553955759183898, 53.05272769273501], + [6.552730226853886, 53.05514669762835], + [6.55607614082358, 53.055726496308154], + [6.555213266672854, 53.058608083669405], + [6.56972048677291, 53.05986178259434], + [6.569936662058317, 53.05712175418687], + [6.570399284389453, 53.05488721019823], + [6.575057478699391, 53.05463943082779], + [6.5752015496556275, 53.05506773906382], + [6.57580412896452, 53.05918760885822], + [6.586811487738036, 53.05953792919279], + [6.588077250901665, 53.05799928984953], + [6.600455914644707, 53.061020182546144], + [6.601235393790263, 53.061757620424345], + [6.603717727166883, 53.05887926923198] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.0e8a2083-dd43-47e2-9eeb-cb19790c3c4f", + "properties": { + "statcode": "GM0109", + "jrstatcode": "2024GM0109", + "statnaam": "Coevorden", + "rubriek": "gemeente", + "id": 19 + }, + "bbox": [ + 235341.0738000013, 516287.7509999983, 254792.7589999996, + 544353.7840000018 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.737492190954101, 52.87490638564882], + [6.740446462252905, 52.870984133455075], + [6.745106179814873, 52.871850518626225], + [6.747294355076603, 52.87030487937273], + [6.750997910793903, 52.86513395971933], + [6.752322833706209, 52.86319061782602], + [6.75247740359292, 52.862958713977], + [6.753400845305787, 52.86158369725058], + [6.753008153605934, 52.859040367384914], + [6.754086497191513, 52.85853227352989], + [6.7691398790776365, 52.85147213890904], + [6.765601037739759, 52.849925624402005], + [6.766676366971102, 52.84941500264188], + [6.767422024119617, 52.84905992531837], + [6.809867581370754, 52.8288187260598], + [6.826940729476199, 52.819752258847565], + [6.833451046226474, 52.81570526302411], + [6.835878723323475, 52.81420575770716], + [6.8391170277995235, 52.81219865346217], + [6.840713789178109, 52.81017635929614], + [6.8498057961030945, 52.804633945748336], + [6.845863797017722, 52.798535421195425], + [6.832382473320777, 52.780075587130035], + [6.83104708303987, 52.77816242419752], + [6.831053620477595, 52.77582701634618], + [6.834220776619159, 52.77142906434885], + [6.831074898352067, 52.76830195881633], + [6.831220107224311, 52.76676464498804], + [6.83969411176377, 52.76099625260216], + [6.837916123818767, 52.75834805846992], + [6.834970282215274, 52.7561179026201], + [6.838081475814307, 52.755815232701444], + [6.838370028599459, 52.75139457257784], + [6.833577790094954, 52.7473048920428], + [6.8327745921906375, 52.74405412078898], + [6.830970133437987, 52.74194616480715], + [6.8348507984177225, 52.73810686210494], + [6.837353341084684, 52.734405198955365], + [6.826362755988548, 52.73088339071368], + [6.828319522033605, 52.72631227716642], + [6.829912889443493, 52.72598115788354], + [6.832743114263269, 52.719513677245594], + [6.840870679250388, 52.69957100140279], + [6.848806077909884, 52.699373964953544], + [6.850162948484936, 52.6965774539721], + [6.851605551411342, 52.690088842731996], + [6.852151475676825, 52.68764132506878], + [6.852530052074391, 52.68595701014087], + [6.8546684573100904, 52.67630645136315], + [6.85602704974274, 52.671679013811996], + [6.8588536357632846, 52.661062192794844], + [6.8618752145728275, 52.64969085586784], + [6.853493236754091, 52.64952461171971], + [6.850838565339161, 52.64861517549502], + [6.837460139207172, 52.65194333620182], + [6.831704772774616, 52.651497982067525], + [6.827944131369106, 52.64918174108257], + [6.821640041639341, 52.647693404676765], + [6.818269911349397, 52.64772766756084], + [6.816152107266165, 52.648615711986324], + [6.8084728821099905, 52.64902221596075], + [6.807290379382425, 52.64941998463325], + [6.805408792593989, 52.651373154381844], + [6.80321049636087, 52.65187015490306], + [6.7942899512242905, 52.65065696571254], + [6.7898974599357835, 52.65279161415831], + [6.786997679967712, 52.65237728654399], + [6.783817092442659, 52.65253249551441], + [6.777430906111105, 52.65166082807758], + [6.7741753230152755, 52.65019927288072], + [6.772089227267948, 52.65005113055123], + [6.767879219689401, 52.646851074059484], + [6.75884835539793, 52.64882544460267], + [6.75550494479868, 52.64725999556171], + [6.75345155811435, 52.645806266427556], + [6.751908011993181, 52.64703048558239], + [6.7533297367171, 52.64757955256746], + [6.753535263940829, 52.64800989714157], + [6.752598241588136, 52.648110770471035], + [6.7504901684653085, 52.64688666825508], + [6.741984042736103, 52.64533288738787], + [6.735726237645578, 52.64037529646535], + [6.730692406547002, 52.637524918938574], + [6.727031346116359, 52.63393432341098], + [6.726398097357318, 52.63322035036112], + [6.720786344524453, 52.631432175497594], + [6.7182008398426385, 52.631306872802845], + [6.715015666272593, 52.630265514504366], + [6.710053111744895, 52.62782028103839], + [6.70802152011234, 52.62800712036539], + [6.707156194270163, 52.62676512398931], + [6.704965671300803, 52.62730436560823], + [6.702004531148243, 52.627267051404864], + [6.700860413614461, 52.62832023941184], + [6.7009108614304695, 52.62940079650992], + [6.702865115035186, 52.63067514160043], + [6.7045227812409465, 52.633139431879634], + [6.703266452042978, 52.634351391874425], + [6.703502453069875, 52.635144753873305], + [6.703499190762292, 52.635224771369685], + [6.7034976937743105, 52.6352325572501], + [6.703474020391182, 52.63611904441173], + [6.706525507477098, 52.63954214110804], + [6.70569791038866, 52.64089028800576], + [6.7021703247899955, 52.64108364967006], + [6.70116870336049, 52.64166837270971], + [6.702065961567727, 52.642466315179924], + [6.705383141851236, 52.64332082857318], + [6.705528562262308, 52.6456520504961], + [6.708024982936118, 52.647720721084774], + [6.708334040325407, 52.64875886545701], + [6.701414907027465, 52.650221834393285], + [6.686078996700155, 52.65343094784268], + [6.655650817346135, 52.66203366962817], + [6.646739218663822, 52.66463949893938], + [6.629453215700452, 52.66968823518001], + [6.63176771181464, 52.673872712523824], + [6.632124804695883, 52.67865922913935], + [6.632095135251001, 52.68096156214179], + [6.632412525957688, 52.686729849769804], + [6.630389586608672, 52.69061611352663], + [6.6288421703555, 52.696415069104425], + [6.629937343855441, 52.71272220044673], + [6.60719554791369, 52.71276095767709], + [6.59579483088324, 52.713217836569406], + [6.596779341607597, 52.723546737903355], + [6.576428543042825, 52.7242657774425], + [6.576821303254937, 52.72555576906013], + [6.587467392784547, 52.735689860115286], + [6.608160431255748, 52.75533139574603], + [6.616261913884377, 52.76301004660726], + [6.638956184834504, 52.782560052666774], + [6.643253107225272, 52.786247268286594], + [6.66087938287129, 52.8012326254174], + [6.66774774440849, 52.799702223628856], + [6.675113864835937, 52.79713582362003], + [6.678028824583204, 52.7991071735504], + [6.675772312014556, 52.80027015449773], + [6.679036548957289, 52.802775571289665], + [6.681183140729085, 52.80773221093955], + [6.690155101538337, 52.810122907235424], + [6.691604094759669, 52.809779143744585], + [6.692398132088835, 52.810752461148], + [6.693487266478979, 52.81545881862984], + [6.690210597215291, 52.82267195721269], + [6.691058806592685, 52.82601917708846], + [6.693987305324461, 52.82780416737776], + [6.69602521853929, 52.82661556660188], + [6.70759812979811, 52.836392229192214], + [6.706346835293358, 52.8424286129654], + [6.704053154465229, 52.84697785809696], + [6.719672520259183, 52.84882974337958], + [6.728379815433137, 52.85382371104067], + [6.725984613535045, 52.85729312699352], + [6.719858122442886, 52.86148889471611], + [6.72186079270657, 52.86631731917581], + [6.714563920384996, 52.868158816629915], + [6.736337070820103, 52.87869128858816], + [6.737492190954101, 52.87490638564882] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.2ce58559-25e2-4397-84c7-b684bf00e3bb", + "properties": { + "statcode": "GM0114", + "jrstatcode": "2024GM0114", + "statnaam": "Emmen", + "rubriek": "gemeente", + "id": 20 + }, + "bbox": [ + 252209.9362999983, 517415.04, 269918.6499999985, 544125.8383000009 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [7.040286193964239, 52.872818215182264], + [7.043486223700511, 52.865218578090904], + [7.046433017999846, 52.865855601788475], + [7.0478849221364674, 52.864506271004515], + [7.051461353512399, 52.86118207053493], + [7.052300941266023, 52.86149563532505], + [7.062726515981982, 52.85146844391666], + [7.063749671672166, 52.85178953230462], + [7.0642701454103, 52.851043245578566], + [7.0659173046852555, 52.85164196687829], + [7.0691381552924835, 52.84786367073496], + [7.0700680984014825, 52.84779338520556], + [7.076236882578873, 52.85003012391166], + [7.076317061943696, 52.848746765189226], + [7.072192957146666, 52.84521093466172], + [7.07164094331952, 52.839278179277315], + [7.072378654932537, 52.83851389972459], + [7.092739665529198, 52.838196135693074], + [7.07951259910084, 52.82161689012024], + [7.0715511855057, 52.81042115390274], + [7.069074765659257, 52.78032347723501], + [7.06415088780462, 52.723202628508496], + [7.05858738613639, 52.676695952867824], + [7.056048023462361, 52.65539490106802], + [7.055063322544586, 52.64708362745539], + [7.054755244770931, 52.644422721381325], + [7.0556405548795365, 52.64435960048698], + [7.055721112898832, 52.643499535466525], + [7.041732810282874, 52.632710083742964], + [7.038605806860729, 52.63287088389494], + [7.03546701052583, 52.63485448983403], + [7.0287622851403935, 52.63464078362787], + [7.0124916324193265, 52.636776581964114], + [7.006597479085365, 52.63852191841655], + [7.004490662586285, 52.64087694973537], + [7.0018773236802705, 52.64191893730269], + [6.999232760384002, 52.642152765710684], + [6.992459051167802, 52.64133237790876], + [6.984270793167003, 52.64363680138043], + [6.981924583325055, 52.64501272326821], + [6.975984696361596, 52.64625467052563], + [6.974929570014992, 52.646107875062675], + [6.968319155173478, 52.641830356645656], + [6.9592328150757, 52.641730671373594], + [6.953558168903783, 52.638990394404544], + [6.945427157220316, 52.63934230889173], + [6.938603103939056, 52.63788529726823], + [6.934645074356292, 52.638323495138636], + [6.928521878620965, 52.64018485005341], + [6.919257325873424, 52.639845331148216], + [6.916339744394052, 52.64133310071355], + [6.914463774802337, 52.6464816149102], + [6.902938061153965, 52.64859383797547], + [6.897179737726323, 52.65137133701256], + [6.891497847559216, 52.65152296967406], + [6.87995027830029, 52.65054831681], + [6.872810702545418, 52.653270552739], + [6.864744662892531, 52.64985893371976], + [6.8618752145728275, 52.64969085586784], + [6.8588536357632846, 52.661062192794844], + [6.85602704974274, 52.671679013811996], + [6.8546684573100904, 52.67630645136315], + [6.852530052074391, 52.68595701014087], + [6.852151475676825, 52.68764132506878], + [6.851605551411342, 52.690088842731996], + [6.850162948484936, 52.6965774539721], + [6.848806077909884, 52.699373964953544], + [6.840870679250388, 52.69957100140279], + [6.832743114263269, 52.719513677245594], + [6.829912889443493, 52.72598115788354], + [6.828319522033605, 52.72631227716642], + [6.826362755988548, 52.73088339071368], + [6.837353341084684, 52.734405198955365], + [6.8348507984177225, 52.73810686210494], + [6.830970133437987, 52.74194616480715], + [6.8327745921906375, 52.74405412078898], + [6.833577790094954, 52.7473048920428], + [6.838370028599459, 52.75139457257784], + [6.838081475814307, 52.755815232701444], + [6.834970282215274, 52.7561179026201], + [6.837916123818767, 52.75834805846992], + [6.83969411176377, 52.76099625260216], + [6.831220107224311, 52.76676464498804], + [6.831074898352067, 52.76830195881633], + [6.834220776619159, 52.77142906434885], + [6.831053620477595, 52.77582701634618], + [6.83104708303987, 52.77816242419752], + [6.832382473320777, 52.780075587130035], + [6.845863797017722, 52.798535421195425], + [6.8498057961030945, 52.804633945748336], + [6.855622115802305, 52.811577439053906], + [6.858805411629693, 52.81379300755872], + [6.865063944722631, 52.81581593439449], + [6.86900190505216, 52.81929376003629], + [6.871417189982958, 52.82005088301917], + [6.884943909903723, 52.82450059041793], + [6.910925435703256, 52.835401512805824], + [6.919245356741014, 52.83835357857342], + [6.949912809355614, 52.84880328402723], + [6.9518881625081175, 52.85218790587421], + [6.9520754351421505, 52.8553160469615], + [6.957615265270796, 52.86190462566814], + [6.961449770906025, 52.86428240558378], + [6.9644948156767645, 52.86494852891784], + [6.966638107873116, 52.863868372546825], + [7.007588968260933, 52.87301129991196], + [7.013154293887576, 52.87299261774419], + [7.014799274866757, 52.87298657872813], + [7.018576914506942, 52.87297499472047], + [7.040286193964239, 52.872818215182264] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.5df7fcf3-aab5-4e7d-b1bf-a31424dbe726", + "properties": { + "statcode": "GM0118", + "jrstatcode": "2024GM0118", + "statnaam": "Hoogeveen", + "rubriek": "gemeente", + "id": 21 + }, + "bbox": [ + 223694.28500000015, 519169.4759999998, 239194.921, 535343.2230000012 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.503364781931472, 52.76934619598808], + [6.505539152030297, 52.76807444613617], + [6.5079043925976885, 52.768847283003076], + [6.512792676983419, 52.762100660456824], + [6.535367397830118, 52.76810435182335], + [6.537520915999813, 52.765234278250375], + [6.566277311653985, 52.76557690774617], + [6.562429719314227, 52.75669450773964], + [6.5575774834195, 52.74535011930924], + [6.55966100204751, 52.74506538640878], + [6.570779448966534, 52.740793139754146], + [6.57321942130444, 52.73985780463653], + [6.574036183409962, 52.74052336115269], + [6.57586521093385, 52.73981226651906], + [6.587467392784547, 52.735689860115286], + [6.576821303254937, 52.72555576906013], + [6.576428543042825, 52.7242657774425], + [6.596779341607597, 52.723546737903355], + [6.59579483088324, 52.713217836569406], + [6.60719554791369, 52.71276095767709], + [6.629937343855441, 52.71272220044673], + [6.6288421703555, 52.696415069104425], + [6.630389586608672, 52.69061611352663], + [6.632412525957688, 52.686729849769804], + [6.632095135251001, 52.68096156214179], + [6.632124804695883, 52.67865922913935], + [6.63176771181464, 52.673872712523824], + [6.629453215700452, 52.66968823518001], + [6.614526801508529, 52.67404927129502], + [6.612980139712229, 52.67383828522426], + [6.603800826961591, 52.672585345039835], + [6.581049585936306, 52.669472936925644], + [6.552821389712455, 52.665594962035094], + [6.547745896806874, 52.66397136141501], + [6.52938067357998, 52.65450731166292], + [6.530069144772385, 52.66461544141527], + [6.530555815409529, 52.67247238161916], + [6.502417931732619, 52.67346002191437], + [6.499551791831072, 52.6735540433655], + [6.49977395272947, 52.675642890266616], + [6.492573833598246, 52.67597084758156], + [6.492925948738856, 52.68358693223582], + [6.484851974050982, 52.68424572065909], + [6.485980361954423, 52.693632741953316], + [6.474699121484786, 52.6942075691267], + [6.4633194632857816, 52.69330766406287], + [6.46281456168103, 52.69520294339805], + [6.448676610115438, 52.693787622932234], + [6.45131163366839, 52.69940576813921], + [6.449875745577699, 52.70527485050281], + [6.451141649943326, 52.706981635824356], + [6.435646706495533, 52.70609603959004], + [6.4265186685217115, 52.70477853086036], + [6.419665888455159, 52.70165544143451], + [6.416222095684018, 52.703463819866116], + [6.407167605283564, 52.706795573220205], + [6.404749643664279, 52.7046753312857], + [6.403598844961741, 52.705998849278714], + [6.404726219497979, 52.709121223033264], + [6.4055888014799445, 52.71258292706353], + [6.407176173315153, 52.713824559313494], + [6.409933637135117, 52.71429541117861], + [6.413202879372251, 52.71620889059579], + [6.414365058676333, 52.71726127631449], + [6.414195687476045, 52.71940443722804], + [6.414636889194582, 52.72022046928635], + [6.41324668390117, 52.72056066296979], + [6.40680249661282, 52.72841017368421], + [6.421325458438316, 52.731415402548244], + [6.415406773657657, 52.74083352608262], + [6.423192572975428, 52.743000249138305], + [6.42246159600392, 52.745139283728676], + [6.42052292115733, 52.748227202814505], + [6.426285695234019, 52.75142284201991], + [6.419403169082017, 52.75599439747539], + [6.416144544420277, 52.755317322299696], + [6.410140092926471, 52.76488723848795], + [6.413890812052816, 52.76605963336163], + [6.4315236620353895, 52.768623731895715], + [6.436458806109868, 52.77039860613263], + [6.440598271995176, 52.7729134984279], + [6.442976719943697, 52.774485569334985], + [6.446152327384421, 52.776095508863335], + [6.44621432155656, 52.7777279413256], + [6.446490696165397, 52.781541948991695], + [6.446920324103504, 52.78588928878102], + [6.449734089445061, 52.79276345332111], + [6.455450742855869, 52.800556495325466], + [6.478490847591506, 52.79584779606438], + [6.491805073821667, 52.79312329448272], + [6.496164254139658, 52.7862246728247], + [6.490847968303387, 52.77088343676672], + [6.503364781931472, 52.76934619598808] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.05ded2f3-1bac-4a21-8ad3-c658d5f2d9a5", + "properties": { + "statcode": "GM0119", + "jrstatcode": "2024GM0119", + "statnaam": "Meppel", + "rubriek": "gemeente", + "id": 22 + }, + "bbox": [ + 204502.90720000118, 520419.88899999857, 215803.43499999866, + 532038.4560000002 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.175671113102685, 52.76989311235591], + [6.17692568602413, 52.76821361898727], + [6.177592358072935, 52.76830249172639], + [6.185962057778084, 52.75485926881192], + [6.187257685824124, 52.75275256797872], + [6.194073840229982, 52.74159405867315], + [6.195339220728256, 52.73956259787715], + [6.201842960875291, 52.729307084981826], + [6.218555848951603, 52.74830038707024], + [6.220658967038629, 52.74791142002022], + [6.231438771263551, 52.741708583385496], + [6.234576271420325, 52.740600769031836], + [6.217623491702051, 52.721299679847206], + [6.2163198068994046, 52.71860403463615], + [6.216522747998598, 52.71270708474471], + [6.216633925991896, 52.709594395229495], + [6.216903585120546, 52.70315773387874], + [6.224961119213569, 52.703230209406996], + [6.233328108328243, 52.70665906493178], + [6.2379279272082435, 52.705770563722155], + [6.24255593789905, 52.70681332977144], + [6.24897551694279, 52.70822096264946], + [6.2531197704384995, 52.70528154907599], + [6.268628000189447, 52.70554371745503], + [6.274255173936705, 52.70618308846203], + [6.273802844956174, 52.70328156155905], + [6.277213828411028, 52.703359789828184], + [6.27669938353887, 52.700586118185235], + [6.277951438967324, 52.701051121683776], + [6.279634872556641, 52.69961184066815], + [6.276325684023179, 52.69800419706907], + [6.275807626733328, 52.69546342650345], + [6.286700161910086, 52.69906929389237], + [6.285011970390224, 52.689705157134895], + [6.2758941607088286, 52.69030956508074], + [6.2754232945992, 52.687742974669256], + [6.281740653937842, 52.68447351041674], + [6.283842343638397, 52.6841979457732], + [6.2835241995002304, 52.68249190237697], + [6.275161162376129, 52.683447003151876], + [6.269814719809341, 52.68222796961512], + [6.2726684487901325, 52.673742390191634], + [6.2724890031733, 52.67319817145729], + [6.269045591928148, 52.673575713300515], + [6.268575952309942, 52.67171477186724], + [6.266456671668147, 52.67099580198753], + [6.266325296380528, 52.668257854440206], + [6.2655011962008285, 52.667987742818426], + [6.2654885935790094, 52.66913909875021], + [6.260535137853612, 52.67047782498569], + [6.258176249145111, 52.66981836486876], + [6.257419645720104, 52.67040757430456], + [6.255911664609813, 52.66960163547072], + [6.255079121221753, 52.670072004836946], + [6.2547355861439495, 52.669578783803956], + [6.254256084485587, 52.6701978742308], + [6.252001453259641, 52.669881372345905], + [6.2502698661577005, 52.67109574972916], + [6.250612398168625, 52.67186717778902], + [6.249200655354276, 52.67139681840893], + [6.2473377246918185, 52.67277560279669], + [6.24896575680243, 52.67390111747602], + [6.248365116115928, 52.67561679518583], + [6.2434989787382, 52.67878550377682], + [6.240503845977083, 52.67772866282829], + [6.237074549476974, 52.67754764204566], + [6.236807713437353, 52.678028818668444], + [6.23284313212624, 52.6791093537172], + [6.232925214914879, 52.67987050372584], + [6.234060829111597, 52.68023773530277], + [6.232650879322269, 52.68148643297869], + [6.2306630805625485, 52.681185548995906], + [6.228691677935881, 52.68164882826938], + [6.228231321524478, 52.68128635287253], + [6.2276984721792354, 52.68172556647907], + [6.227182079201267, 52.6812526239594], + [6.224905432004001, 52.682431151605826], + [6.222720663661625, 52.68268268076684], + [6.220993952363883, 52.68282761372562], + [6.221170383083431, 52.68347591959011], + [6.2187146943423, 52.68437727985371], + [6.219806801429319, 52.68570446725508], + [6.218402153883292, 52.686004547150304], + [6.217425732233944, 52.6855164248998], + [6.216584426166579, 52.68639284429754], + [6.214095681496453, 52.686315589871114], + [6.213743566252629, 52.68565283950407], + [6.212113741420614, 52.68530839976667], + [6.2124995756807095, 52.68463293091413], + [6.210181145336232, 52.685224203424134], + [6.206463368140239, 52.68485852581204], + [6.204984856643936, 52.68416104734922], + [6.2039366252166515, 52.684666966263585], + [6.201681519824245, 52.684620280616315], + [6.196477516221693, 52.68086575604889], + [6.1944748306286765, 52.678825046860986], + [6.194229772859433, 52.67662958473965], + [6.192054771478228, 52.67642647195286], + [6.191444463570348, 52.67931984915516], + [6.18786218502019, 52.67961374826101], + [6.18587068916535, 52.68250351349267], + [6.180548202771474, 52.681587873604734], + [6.184208083337609, 52.67720783251942], + [6.181932923846942, 52.67686820315921], + [6.183146848169665, 52.67506327446662], + [6.170132267268467, 52.67793605958009], + [6.162996113548568, 52.680061819242596], + [6.168972509145628, 52.68553331199313], + [6.1696508990887065, 52.68612077048655], + [6.168195568880411, 52.68813587662755], + [6.166352122354099, 52.68894517494627], + [6.164924734811394, 52.68888951156147], + [6.162579865414327, 52.691061151131976], + [6.1589760417018855, 52.69215417824358], + [6.158802689982939, 52.69248021067643], + [6.156606681442305, 52.691957347156226], + [6.153820607020068, 52.697336960385464], + [6.151435882741209, 52.70137652006162], + [6.151985051448839, 52.70159698906323], + [6.151422778458543, 52.702882722176454], + [6.14391846973262, 52.71426495820852], + [6.1426470852629524, 52.716326359268045], + [6.139934973710029, 52.72036251253844], + [6.132976388754846, 52.73139632006845], + [6.129147870073887, 52.73802828485912], + [6.127093624404966, 52.74026386353789], + [6.120376223473515, 52.750242462786325], + [6.121597328516485, 52.754210156892015], + [6.126330462254879, 52.75683437298087], + [6.132468094210344, 52.75866799431914], + [6.137708752644956, 52.75900426973604], + [6.156496419307965, 52.76265013832276], + [6.1601537035740375, 52.764658577178494], + [6.163939986186745, 52.76644934610869], + [6.1685253888103775, 52.767093492618336], + [6.1729059740068895, 52.77305425554323], + [6.174445638611216, 52.772060073345216], + [6.175671113102685, 52.76989311235591] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.26ec22e1-71ac-4c56-9e2b-09b1a6bbf75b", + "properties": { + "statcode": "GM0141", + "jrstatcode": "2024GM0141", + "statnaam": "Almelo", + "rubriek": "gemeente", + "id": 23 + }, + "bbox": [ + 237488.23699999973, 478720.7289999984, 245895.813000001, + 490875.5929999985 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.645425526624587, 52.39646523301227], + [6.647626005030807, 52.39545362363003], + [6.65176171599402, 52.39871608252049], + [6.664168721999466, 52.389514292985574], + [6.667157168177959, 52.38992823242735], + [6.671895918987155, 52.38885139802418], + [6.676000915759323, 52.395748906517284], + [6.684422792196694, 52.39092742361202], + [6.685247551041021, 52.393108096352314], + [6.691112575954877, 52.39280255955852], + [6.69863530341627, 52.39374107104791], + [6.697881643088238, 52.39127403229996], + [6.701040741985142, 52.38564733245563], + [6.702805712077084, 52.3825599375467], + [6.705302736512246, 52.37813180463351], + [6.706728484845194, 52.37736673446147], + [6.707083304866495, 52.37718449078966], + [6.708233617930368, 52.37689525766367], + [6.713465297475713, 52.37648907192284], + [6.712663774862517, 52.37426413454984], + [6.712709950091077, 52.3739566517252], + [6.715349867227729, 52.367325781942], + [6.716020752305507, 52.365869445987755], + [6.718049386822266, 52.36216537353093], + [6.719693372965668, 52.36128896723627], + [6.720563189813223, 52.35232912666586], + [6.714287526401795, 52.34695350017563], + [6.714716687048913, 52.3463151096287], + [6.712006807775438, 52.345398957387786], + [6.709740892061071, 52.343434583548124], + [6.71364140191331, 52.34226635281036], + [6.720845661946218, 52.34120753596724], + [6.721010485001358, 52.3401276643134], + [6.715422337043524, 52.33647826913793], + [6.709446966549703, 52.33059981409276], + [6.706841171845745, 52.33225875765653], + [6.69695385314595, 52.32980727038213], + [6.694945198425743, 52.326822899793505], + [6.706890695181779, 52.32103439812874], + [6.704353851827289, 52.319736339658036], + [6.705837346925467, 52.318024486439526], + [6.691593195390171, 52.31423464448397], + [6.692319539568637, 52.313967601695644], + [6.689481310602522, 52.30958863576181], + [6.690940198124301, 52.30839106427342], + [6.683636560962459, 52.30620484316015], + [6.666095179323433, 52.29825206739597], + [6.657519785393809, 52.29485430462855], + [6.647464578276064, 52.293710988881635], + [6.626066252019887, 52.28997394757922], + [6.631782330979013, 52.301779909666976], + [6.618747460339712, 52.30617548917087], + [6.611103886704708, 52.30752640480498], + [6.616782015242801, 52.30910180471195], + [6.616053644845205, 52.30992721201476], + [6.614008443642664, 52.30984185849328], + [6.614914160604051, 52.31121843433547], + [6.612796224297351, 52.31256720583966], + [6.610136420272688, 52.31333907734063], + [6.609221588601654, 52.31247216078378], + [6.604762769470458, 52.31222533496391], + [6.608293220441851, 52.31590085717733], + [6.612505696835095, 52.31978351949405], + [6.619020265464729, 52.326145136403134], + [6.617276366347051, 52.32827992318197], + [6.605510938604294, 52.33449612448476], + [6.598957852992693, 52.34015798724815], + [6.597704798772815, 52.34289998533877], + [6.604673379653169, 52.344897743570336], + [6.608244258692157, 52.349111994720296], + [6.610202393791241, 52.354308501487594], + [6.612403324312162, 52.35573666835097], + [6.61405270142147, 52.35626876300805], + [6.614932777222186, 52.358892851215515], + [6.615376591286816, 52.36284465744244], + [6.615376570812541, 52.36284471338351], + [6.613410046731013, 52.3651045739336], + [6.610926299013886, 52.36597044127847], + [6.609367507201983, 52.36654556089908], + [6.598851199321966, 52.38365830018238], + [6.60946381402642, 52.389544449203754], + [6.6148024470915345, 52.38644736655198], + [6.6183485857316855, 52.38842972594044], + [6.635856334249389, 52.39528296253198], + [6.640178971976273, 52.39907981156782], + [6.645425526624587, 52.39646523301227] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c7418dcd-8848-4810-bbbb-7dc0ed2564bf", + "properties": { + "statcode": "GM0147", + "jrstatcode": "2024GM0147", + "statnaam": "Borne", + "rubriek": "gemeente", + "id": 24 + }, + "bbox": [ + 243808.40300000086, 478100.1640000008, 251478.95100000128, + 484535.2470000014 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.747608842315452, 52.33248013088451], + [6.750679165360332, 52.329665347239086], + [6.753772201608638, 52.33004426030067], + [6.759035352559289, 52.33206059951326], + [6.762136077362358, 52.330761578625584], + [6.763051669552959, 52.3280305225701], + [6.773841845500584, 52.31891057319835], + [6.779077684770222, 52.31785404475199], + [6.781839840193474, 52.31833554888668], + [6.785823998257553, 52.318140386957296], + [6.785148993393773, 52.31736996400958], + [6.80212890482971, 52.31454419470588], + [6.80203883101836, 52.31358607982833], + [6.801888912285912, 52.31198468330296], + [6.801347558158138, 52.308651169907556], + [6.801347420580645, 52.30865104031572], + [6.7981570909087905, 52.30763846996326], + [6.797451426143067, 52.30670081181085], + [6.794101863000527, 52.306016670498664], + [6.787892195331126, 52.304975550701954], + [6.788383013266096, 52.30365140090285], + [6.792550567458147, 52.30038678818953], + [6.785048611783835, 52.29981272556007], + [6.7806083607002785, 52.29697029170639], + [6.77998838499037, 52.297173178531914], + [6.777674994134419, 52.29509340619915], + [6.77551632648562, 52.2931525107048], + [6.773445552315167, 52.29240004541038], + [6.770647551297929, 52.29221994780613], + [6.77013085865182, 52.291615454245424], + [6.767480575854017, 52.292299636880394], + [6.76709012918646, 52.29174669997071], + [6.766682780253861, 52.290519057683], + [6.76322083919311, 52.2884055366287], + [6.759340640506213, 52.28802784299214], + [6.75411988749953, 52.28713011780704], + [6.752961396727674, 52.28756129480392], + [6.750319644026101, 52.2851209648761], + [6.7474960286837415, 52.284435691451954], + [6.742886460209116, 52.28311347961948], + [6.732891836775162, 52.28981314543598], + [6.727837909555716, 52.292055568230985], + [6.723697348409699, 52.2960655314627], + [6.71199208999597, 52.303668185858136], + [6.701088063218086, 52.308069026704636], + [6.697460238688405, 52.30861046545461], + [6.690940198124301, 52.30839106427342], + [6.689481310602522, 52.30958863576181], + [6.692319539568637, 52.313967601695644], + [6.691593195390171, 52.31423464448397], + [6.705837346925467, 52.318024486439526], + [6.704353851827289, 52.319736339658036], + [6.706890695181779, 52.32103439812874], + [6.694945198425743, 52.326822899793505], + [6.69695385314595, 52.32980727038213], + [6.706841171845745, 52.33225875765653], + [6.709446966549703, 52.33059981409276], + [6.715422337043524, 52.33647826913793], + [6.721010485001358, 52.3401276643134], + [6.720845661946218, 52.34120753596724], + [6.734497262467108, 52.33935478228875], + [6.743684933390753, 52.33610946548995], + [6.747608842315452, 52.33248013088451] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c4862076-453f-48c1-9f5e-d1d012dfd05e", + "properties": { + "statcode": "GM0148", + "jrstatcode": "2024GM0148", + "statnaam": "Dalfsen", + "rubriek": "gemeente", + "id": 25 + }, + "bbox": [ + 207675.75400000066, 493386.66699999943, 222788.64600000158, + 512808.91600000113 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.319680689745157, 52.59917107428178], + [6.322043634240235, 52.59487736523309], + [6.3234125127222445, 52.592527165781156], + [6.325806039793398, 52.58825718649798], + [6.333813074385412, 52.57385994058208], + [6.335753732262762, 52.57040017861457], + [6.35137353942467, 52.54273444270606], + [6.358368030122708, 52.529105842931216], + [6.360722587110958, 52.526880166938696], + [6.3615488437229395, 52.52453078430223], + [6.353266784130467, 52.52289860472352], + [6.351351260841336, 52.523698161462136], + [6.3482738453036065, 52.52235893355526], + [6.346230471143353, 52.520550259155435], + [6.343639936314694, 52.51994649267105], + [6.338365642152392, 52.52176168697747], + [6.331515688694032, 52.522074777750454], + [6.332006906105612, 52.51777995770802], + [6.333672523177247, 52.51557335218122], + [6.332200026964552, 52.512458227192404], + [6.33561055658554, 52.510437277573075], + [6.334899126894924, 52.50968500189307], + [6.336801910433844, 52.5076350060318], + [6.334582260226344, 52.50707774249169], + [6.3436301119553455, 52.482871270901526], + [6.344009173139668, 52.480717148245915], + [6.343315560369294, 52.46885768118734], + [6.342616263127596, 52.45690540369195], + [6.378494285137324, 52.45641682419377], + [6.371061189708937, 52.449711190082894], + [6.37212462865525, 52.44826114681716], + [6.373154450131979, 52.446856852229295], + [6.375678106578445, 52.447762137848336], + [6.376406580902298, 52.447453063323906], + [6.381157790203092, 52.44019895600271], + [6.3841500476556, 52.439434682142156], + [6.3805727436202835, 52.42981614378932], + [6.3803986427748285, 52.42779917523415], + [6.368319125796104, 52.427751672450064], + [6.356254401573208, 52.42910436439898], + [6.355537208971998, 52.425954534684045], + [6.350057509883405, 52.42640736282205], + [6.349400256955223, 52.42485164670398], + [6.343344992407309, 52.4253101785042], + [6.343136408380367, 52.42597058464346], + [6.337109557477237, 52.42772257076909], + [6.334331142404185, 52.42449119893082], + [6.328522725865862, 52.42805945988987], + [6.31894400434299, 52.43206727547581], + [6.314438207141717, 52.43302817687808], + [6.303719400224482, 52.43163305032315], + [6.3022628649539785, 52.43144361915565], + [6.30183410377254, 52.435228485572594], + [6.291825244884093, 52.434721413556474], + [6.291580526738809, 52.435884056219514], + [6.2917134951936875, 52.435894991364286], + [6.289315782482352, 52.44380793115249], + [6.289947947271952, 52.44644474550345], + [6.278637125993321, 52.44744013328303], + [6.278238412857547, 52.457043169998144], + [6.267766062955676, 52.45951102812545], + [6.254283943710661, 52.46283865261595], + [6.245413304595136, 52.46387499230282], + [6.236257226229982, 52.46561680620827], + [6.218723831764552, 52.46483330605921], + [6.214243792437929, 52.464618175496156], + [6.211418557245791, 52.464854559599715], + [6.206097379327211, 52.46759268171101], + [6.202419775264512, 52.4687443384385], + [6.199746783388389, 52.46839664844544], + [6.196860577993221, 52.468540737147585], + [6.193853873880122, 52.46804634725496], + [6.1909496831367825, 52.468440957566614], + [6.186673227727947, 52.46841763521842], + [6.178021895758404, 52.470635640577875], + [6.177058880186671, 52.4705812149919], + [6.174485113516799, 52.468401237782345], + [6.170091991136962, 52.468922246568496], + [6.162495458066081, 52.47438835374955], + [6.1713227813287, 52.4772576633729], + [6.173583986279521, 52.47680285294672], + [6.174727284609129, 52.47821285351269], + [6.177660965265117, 52.47785638574561], + [6.177009958567701, 52.47940995929391], + [6.177529290253977, 52.47982237850151], + [6.182199784302469, 52.47909521841821], + [6.182832283341695, 52.48080663555173], + [6.189527999001585, 52.48068350244615], + [6.192136572383939, 52.48172792748348], + [6.193667448588141, 52.48296145385069], + [6.192387964276609, 52.48561548576724], + [6.193683040071976, 52.48625077119431], + [6.196520019672795, 52.48967949401871], + [6.200966180005344, 52.491056513194295], + [6.200167477860746, 52.490881878174314], + [6.198742894502538, 52.49281697160061], + [6.199945691608049, 52.49317658275233], + [6.1997125577653796, 52.49527428954124], + [6.197911998892591, 52.49575710347131], + [6.196824735380738, 52.49553438372563], + [6.189088413062289, 52.49900727411306], + [6.187717511365041, 52.50055643188002], + [6.1840709835981205, 52.50774106082849], + [6.173321981130597, 52.518830210365216], + [6.1829534448714885, 52.51933538328339], + [6.182964845597427, 52.519448891971194], + [6.182577226537656, 52.5195113774065], + [6.183109316363379, 52.52088731536005], + [6.186110252659775, 52.522672328900555], + [6.186139752638146, 52.52268972805605], + [6.187851469919561, 52.52351559710841], + [6.18744182177646, 52.52477921262353], + [6.192970288138636, 52.531966241057845], + [6.189631143387438, 52.536160048622364], + [6.1969668762642, 52.54723793012955], + [6.210810675187714, 52.56779776206458], + [6.209478422434221, 52.56852487224398], + [6.2056575331123485, 52.575080732946766], + [6.202137714617073, 52.58494850304464], + [6.224054532355998, 52.5875489833071], + [6.235739493377487, 52.58900039240113], + [6.258310868070171, 52.59202049720103], + [6.259130429434553, 52.59359371865821], + [6.270684793600693, 52.59498285810659], + [6.274776250788258, 52.59478754578486], + [6.274898164336966, 52.59370478811834], + [6.281273313752764, 52.5945052166423], + [6.2838260321101185, 52.594795189690856], + [6.283348597770805, 52.595723806759416], + [6.286326521801099, 52.596211786715166], + [6.287078450814586, 52.595207078458664], + [6.289302252555657, 52.59549059648621], + [6.303063686453506, 52.5971411487721], + [6.319680689745157, 52.59917107428178] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.9ad61f12-c6e9-47fa-b531-0926ea60d1d8", + "properties": { + "statcode": "GM0150", + "jrstatcode": "2024GM0150", + "statnaam": "Deventer", + "rubriek": "gemeente", + "id": 26 + }, + "bbox": [ + 203709.39799999818, 470212.5, 222927.65799999982, 481749.38899999857 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.2351334013060224, 52.314455162306004], + [6.255641227683595, 52.3058035541979], + [6.2672385643398, 52.300804677018704], + [6.2886075313827545, 52.30052407773767], + [6.30611597869624, 52.30059757948242], + [6.326529854159441, 52.30163153874815], + [6.327817554839064, 52.29018276504421], + [6.3278236673691435, 52.29014267918912], + [6.328842017542068, 52.28110297384008], + [6.350537705824776, 52.27144878012514], + [6.348856789769507, 52.26989183196982], + [6.350831523319944, 52.269253913695664], + [6.352126664844828, 52.27082693760117], + [6.353489010073726, 52.270018490864864], + [6.354883856505827, 52.26920124270394], + [6.352842966155375, 52.268350480092586], + [6.355376253978833, 52.26726567560774], + [6.356718040344522, 52.26812823677362], + [6.363488306227443, 52.26420858576366], + [6.3630620843550245, 52.264010292526116], + [6.364543306648871, 52.26315669552134], + [6.36483397263859, 52.26343331502958], + [6.370775291365182, 52.2600064513091], + [6.3729447815521505, 52.260911200388165], + [6.377162479294068, 52.2586813358644], + [6.377222494131542, 52.25664860309235], + [6.374809754495722, 52.25629790518694], + [6.374880243525781, 52.255135949130334], + [6.37728670191326, 52.25439647356203], + [6.376342977284229, 52.2521929392237], + [6.376542143111078, 52.25134943051631], + [6.377205602646789, 52.25001763872122], + [6.381224610911762, 52.24739685048604], + [6.381133405316424, 52.24660356287913], + [6.381851467515696, 52.24611280613758], + [6.377348460142297, 52.24474994707689], + [6.366851309466937, 52.24153213908304], + [6.351761368385608, 52.24169823938444], + [6.349651546646991, 52.2412412279511], + [6.34922301635646, 52.24010481781617], + [6.338056879224601, 52.23622294892035], + [6.338708310456893, 52.22715286371285], + [6.325434033916564, 52.226996635966586], + [6.3204291908568555, 52.22566908593469], + [6.297942287326825, 52.22552982973461], + [6.296951805920907, 52.2290012192892], + [6.293035060811958, 52.2295124583503], + [6.292829212313474, 52.23082722785323], + [6.29170568811349, 52.230875206018084], + [6.286333194131257, 52.230362024531956], + [6.277235028428908, 52.22793616925665], + [6.271007101961603, 52.227909964655275], + [6.271290920265654, 52.226413631623835], + [6.269400446443918, 52.22645738903257], + [6.264718443763694, 52.22724780812237], + [6.260835363413882, 52.22907097050746], + [6.2572947488317086, 52.22727621718714], + [6.238451853130138, 52.22758558464876], + [6.233920018898336, 52.22903541944309], + [6.227766138415904, 52.229755090054695], + [6.222479205737121, 52.22887322693534], + [6.216480266498975, 52.23147471617706], + [6.214515295754353, 52.231325237732776], + [6.216948515734998, 52.22647364619109], + [6.2031101105593045, 52.22926922278618], + [6.190140238663599, 52.22921293860673], + [6.189447034222159, 52.22934336863829], + [6.189135621400806, 52.22916651125447], + [6.186856540302275, 52.23097499617134], + [6.186044284118067, 52.23145196087072], + [6.185990125713303, 52.23139747236439], + [6.184836636343464, 52.23181992231473], + [6.184974158517171, 52.23199117091324], + [6.1825309399763055, 52.23382502778346], + [6.178384390510494, 52.23369849652849], + [6.174214227539691, 52.2327813288772], + [6.167341719118207, 52.23125249224775], + [6.166268837707009, 52.2310137722371], + [6.163028009938141, 52.22852210033576], + [6.16843565822971, 52.2272790068665], + [6.167865150178179, 52.22633859936209], + [6.162499591052327, 52.227916910453786], + [6.165722771071903, 52.22350332222991], + [6.165276309001753, 52.222842290571066], + [6.168671378148044, 52.22069914813953], + [6.165962920301136, 52.21775567165207], + [6.164068756580406, 52.217440649635826], + [6.162615985578787, 52.218363904610165], + [6.163985719039315, 52.22164597750957], + [6.162172987886008, 52.224166159394386], + [6.160153083160004, 52.2252231530482], + [6.156509083670829, 52.225694583952624], + [6.147509867584284, 52.227778200107146], + [6.143079310210207, 52.231618325459806], + [6.141707138254351, 52.234172112904716], + [6.142236671996249, 52.23845586377311], + [6.15116650162359, 52.24253255412846], + [6.15384513692076, 52.24430619595007], + [6.154199295358594, 52.24586859597461], + [6.153337028011953, 52.2470547301233], + [6.150020312675961, 52.24831593175564], + [6.14941797634487, 52.24797174284261], + [6.144509833673174, 52.24712230477035], + [6.143502009670436, 52.24641169138354], + [6.138896722598976, 52.24768817942287], + [6.1367221861405215, 52.24904083247809], + [6.123865474099703, 52.25148110655408], + [6.123637680650211, 52.25368789129439], + [6.125144955739525, 52.2568253590202], + [6.130069095276461, 52.260691389975754], + [6.1274466401989915, 52.26170498100704], + [6.123907198761561, 52.264506876785774], + [6.12298195728131, 52.269255442741084], + [6.121109317734338, 52.272025581163156], + [6.11236468658062, 52.27830504010547], + [6.1112670926501735, 52.280720619808136], + [6.111321614889548, 52.28821082162073], + [6.105864460742283, 52.292407967313885], + [6.101320378574241, 52.301224771010816], + [6.101462234291074, 52.30121352288656], + [6.108116108165938, 52.29901449871329], + [6.108364975184414, 52.297659315004], + [6.118586723710723, 52.29889270348512], + [6.129975866360489, 52.30159906822877], + [6.130298004746254, 52.3016656814342], + [6.140394723038591, 52.30376413500287], + [6.163115118953894, 52.3074091384062], + [6.1718567999683005, 52.30878543303233], + [6.182176122542215, 52.30891083855058], + [6.181550914803041, 52.314857201960706], + [6.183442025297207, 52.31502924112899], + [6.190066403048083, 52.31475538037147], + [6.1995132963161055, 52.31598314616579], + [6.202473019256446, 52.318105653767724], + [6.203691026051455, 52.320280852617465], + [6.205620291028534, 52.320855108896886], + [6.235354999821735, 52.319820192074225], + [6.2351334013060224, 52.314455162306004] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.1a1a755d-9065-44d7-a463-ece4d8f0a8d2", + "properties": { + "statcode": "GM0153", + "jrstatcode": "2024GM0153", + "statnaam": "Enschede", + "rubriek": "gemeente", + "id": 27 + }, + "bbox": [ + 248530.62669999897, 464736.15100000054, 263910.579, 478595.7749999985 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.912127141079004, 52.285505747476215], + [6.913586940837483, 52.282168138346144], + [6.918746269937889, 52.28360609711433], + [6.939170505560474, 52.28386937610877], + [6.940986465982239, 52.283903483228485], + [6.949282093434414, 52.279488888312024], + [6.967815566766737, 52.26816234897516], + [6.969125051677312, 52.26685909023047], + [6.97092250977437, 52.25831893120105], + [6.973028008746386, 52.24850339370366], + [6.9716455964616495, 52.244067633156945], + [6.9649539035689925, 52.23626213940365], + [6.965889525292736, 52.23041871185308], + [6.970290834676768, 52.227742951796905], + [6.97520702069005, 52.22461107122124], + [6.97643643775293, 52.22380246728443], + [6.9766677567439075, 52.22364912523398], + [6.981100052502818, 52.22073698627476], + [6.979698927919227, 52.2181341549504], + [6.979675921292827, 52.21513580072771], + [6.978493460508897, 52.21219150082701], + [6.9759764845271555, 52.209485831999295], + [6.974084860300094, 52.205402788328946], + [6.9709031351130175, 52.20297965947037], + [6.967396605692966, 52.19789365527877], + [6.962391624341565, 52.194298580615296], + [6.962281646792217, 52.19341329094214], + [6.9624787233224765, 52.19137884600203], + [6.95124528129989, 52.181057861192464], + [6.949505446226892, 52.180504607225195], + [6.937883520727069, 52.179467125044816], + [6.933741491885864, 52.178448262358266], + [6.915628954400481, 52.1776139635725], + [6.909551845358657, 52.176449685486986], + [6.906746209018938, 52.17506798046912], + [6.905880768660861, 52.173870158050065], + [6.905720061742722, 52.169915237473724], + [6.889750259896988, 52.16120591785047], + [6.869865293655258, 52.16269338707573], + [6.827990679946748, 52.1710065414235], + [6.814277339816256, 52.170861105353666], + [6.805594126560666, 52.166606472185826], + [6.788172622064611, 52.176292760214125], + [6.776600085418105, 52.18430569339162], + [6.766800541643374, 52.191064897984056], + [6.766323753519089, 52.2031387028154], + [6.759623605238091, 52.21003479781082], + [6.755892967735111, 52.21739583586965], + [6.769055337315379, 52.22701277186262], + [6.765190286040357, 52.233137572551996], + [6.768096869643372, 52.234780666445985], + [6.768321332541454, 52.23491183169632], + [6.774433879623245, 52.238456313407475], + [6.788581471135239, 52.235227558654344], + [6.8023627952471735, 52.232081122203255], + [6.813753932931245, 52.22948268736964], + [6.818451578173646, 52.24100579111005], + [6.819538505709814, 52.24365705613373], + [6.82429804658057, 52.24651824767855], + [6.827057992760388, 52.248181551144334], + [6.842562125033373, 52.253909186038165], + [6.840287715783983, 52.26108594489266], + [6.840701107580676, 52.26207661765132], + [6.843351706476378, 52.263696569739906], + [6.843514532112417, 52.266592604154226], + [6.840277383191053, 52.269076962958366], + [6.831846848103343, 52.27345163467879], + [6.83784604788159, 52.27663226747099], + [6.840491564894965, 52.2763115348226], + [6.868327340819642, 52.272961767688024], + [6.876494922945127, 52.274724793537224], + [6.8812422633532115, 52.27935561349555], + [6.880020296862853, 52.28140405014708], + [6.883261674211747, 52.282212881940666], + [6.883207433394793, 52.283170561912364], + [6.887811485815948, 52.28345212437663], + [6.889567053019456, 52.28097800324584], + [6.890215727710298, 52.282204502221965], + [6.895373526218296, 52.28382670053938], + [6.895828301587164, 52.283239301901624], + [6.907017186953304, 52.28543500604364], + [6.9103583739969014, 52.28514271065635], + [6.912127141079004, 52.285505747476215] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.b541792a-437a-4540-a613-ffcd78607ff0", + "properties": { + "statcode": "GM0158", + "jrstatcode": "2024GM0158", + "statnaam": "Haaksbergen", + "rubriek": "gemeente", + "id": 28 + }, + "bbox": [ + 239605.47789999843, 459728.0329999998, 257806.52699999884, + 469519.73999999836 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.71238776634234, 52.20633143274622], + [6.763677833945866, 52.191897851552845], + [6.766800541643374, 52.191064897984056], + [6.776600085418105, 52.18430569339162], + [6.788172622064611, 52.176292760214125], + [6.805594126560666, 52.166606472185826], + [6.814277339816256, 52.170861105353666], + [6.827990679946748, 52.1710065414235], + [6.869865293655258, 52.16269338707573], + [6.889750259896988, 52.16120591785047], + [6.880458175808478, 52.15600954172527], + [6.88196032512932, 52.155976488341494], + [6.873301049079414, 52.132973876493665], + [6.873458517318546, 52.130283683634055], + [6.867088297628722, 52.128071311419845], + [6.855473945823034, 52.12046209305974], + [6.843198563335625, 52.119197074062605], + [6.822710322138186, 52.11840425940398], + [6.7636259442992355, 52.11876310862378], + [6.760572330352168, 52.118779933641186], + [6.739505820765104, 52.11855641574525], + [6.7394930371196295, 52.118104771700516], + [6.7162723611826, 52.118270405476494], + [6.711289866346881, 52.119708238593766], + [6.697810020440575, 52.12355366983163], + [6.677690595253182, 52.125958951666334], + [6.672556203694622, 52.12737029568558], + [6.663003451994667, 52.130001055591954], + [6.668409059049566, 52.13661468898022], + [6.672613019218743, 52.13930996138776], + [6.674394814787772, 52.142774462735694], + [6.673748235859685, 52.148286599767744], + [6.671309218977704, 52.150458112122244], + [6.672678818539619, 52.15050735292187], + [6.673819391025086, 52.15210362494999], + [6.672428703150343, 52.15303169500724], + [6.673094993042832, 52.15475329646826], + [6.670610185793815, 52.156420318562525], + [6.673914084347463, 52.15881439764384], + [6.673640332377302, 52.15986232645376], + [6.673146905768826, 52.16011888449001], + [6.674066686628217, 52.16124345886582], + [6.672784386176579, 52.16137906286265], + [6.673397353201004, 52.16323969849632], + [6.671973457404456, 52.16492723049695], + [6.671338904567617, 52.165683196966796], + [6.649211789900651, 52.17287848292906], + [6.645040700493845, 52.17419425513303], + [6.647294071297758, 52.17689528220975], + [6.642754975962408, 52.181447118064675], + [6.641391369159703, 52.180906211228326], + [6.640123556878885, 52.18128051132369], + [6.634453812614044, 52.1859552081601], + [6.630806441618517, 52.18629855403865], + [6.624484459047273, 52.1888793011618], + [6.653081957845854, 52.193700698596814], + [6.6720504483809195, 52.198186717591064], + [6.675646351499076, 52.19791305174729], + [6.683776102275303, 52.19729394121113], + [6.697494103180753, 52.1962479674761], + [6.7042791596479105, 52.199235536759865], + [6.71238776634234, 52.20633143274622] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c579ca0b-220f-44ca-895f-485a5ddae808", + "properties": { + "statcode": "GM0160", + "jrstatcode": "2024GM0160", + "statnaam": "Hardenberg", + "rubriek": "gemeente", + "id": 29 + }, + "bbox": [ + 217053.1950000003, 498245.01000000164, 248539.04, 521438.14499999955 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.700860413614461, 52.62832023941184], + [6.702004531148243, 52.627267051404864], + [6.704965671300803, 52.62730436560823], + [6.707156194270163, 52.62676512398931], + [6.70802152011234, 52.62800712036539], + [6.710053111744895, 52.62782028103839], + [6.710145316298439, 52.627314922639876], + [6.712004672561547, 52.626831867248185], + [6.714241987781945, 52.626767273130135], + [6.718250601634788, 52.623381818902295], + [6.718657023257101, 52.62194653397973], + [6.722909600830033, 52.62037218438869], + [6.727288774745401, 52.61492788204038], + [6.724353457156621, 52.608329648289995], + [6.723754662504273, 52.60312877111474], + [6.720973400515876, 52.59835160739291], + [6.720705922769436, 52.59645276345181], + [6.7215738651877635, 52.59487425111771], + [6.7199490928379175, 52.59326194646425], + [6.718772635504042, 52.58864024377669], + [6.766659903901161, 52.56353272965965], + [6.766692023326305, 52.56163689547501], + [6.764045566477053, 52.56158429175557], + [6.752533512986072, 52.55904084267756], + [6.740103234711993, 52.56205347361814], + [6.734371319932806, 52.561762451078096], + [6.725917532381692, 52.56316100890807], + [6.720981634485891, 52.55301357971154], + [6.719996096164958, 52.55166975747581], + [6.7162409843715, 52.55020225996726], + [6.716264184179021, 52.548524813402274], + [6.697557678687741, 52.55105726414713], + [6.683975654543354, 52.552899273131764], + [6.680879905650527, 52.55331743849481], + [6.694922485734548, 52.5347718957766], + [6.705332478360745, 52.52100755762001], + [6.697584620905226, 52.4862982385871], + [6.693485356756647, 52.486327108808766], + [6.673086988009048, 52.49362732616891], + [6.669301277978281, 52.494980733280094], + [6.663283126772645, 52.49248650356436], + [6.653659030798507, 52.4878321633534], + [6.654578210321505, 52.48271524346772], + [6.6474596170322915, 52.47861403920714], + [6.651100231411975, 52.4751567754306], + [6.649555602188943, 52.47308988452473], + [6.641541226493295, 52.471243853269876], + [6.6405844495248525, 52.473105145973086], + [6.635620649250807, 52.47164722503361], + [6.6312168048523255, 52.47197258753183], + [6.6268208256120955, 52.473831259871304], + [6.62260703990185, 52.47147526613855], + [6.616059813910055, 52.46882955263542], + [6.6130013837763055, 52.46560324783502], + [6.611421202507752, 52.466864917936974], + [6.6010350224878955, 52.47947023166092], + [6.595188119720464, 52.48030329628956], + [6.600170347943407, 52.485154175857765], + [6.6096435405224305, 52.49250482628256], + [6.588530873812758, 52.50132215768977], + [6.587866425234278, 52.501625632848636], + [6.58464909738043, 52.50304835674051], + [6.578831573132308, 52.50553355186005], + [6.572856323760026, 52.50809328151469], + [6.572465851818375, 52.50827329920684], + [6.566498792405501, 52.511600123968776], + [6.561351063264986, 52.512895692351975], + [6.560019176795256, 52.514644385912305], + [6.560939556665534, 52.5154820522883], + [6.564004295123026, 52.51446964291549], + [6.565715646297556, 52.51476768503304], + [6.567078055552014, 52.51690347081488], + [6.5652585204665055, 52.518507794595244], + [6.561049589073358, 52.51979175252854], + [6.559160534726467, 52.519249843037095], + [6.556781133989297, 52.516448635257454], + [6.555186732314719, 52.51587104094172], + [6.556677961914843, 52.51326049030748], + [6.554531806300847, 52.51247090417266], + [6.553498260524231, 52.51250632848323], + [6.55017209316238, 52.514944026559945], + [6.545671398492046, 52.516036171937266], + [6.545463298081643, 52.51647718275769], + [6.54594545015716, 52.5171536812213], + [6.5466496304817285, 52.51851919195386], + [6.544575753440874, 52.51906795379813], + [6.541245305245161, 52.51903612868026], + [6.542792912141556, 52.52120022263327], + [6.5420589481286004, 52.52257922172926], + [6.541047220218323, 52.524095467210344], + [6.541771676182913, 52.526347902836456], + [6.536995168873683, 52.52794330439909], + [6.536288898884187, 52.528825332428035], + [6.534892651299102, 52.52891847299924], + [6.534070510309091, 52.52844395372703], + [6.531049811818186, 52.535147098105824], + [6.529995676603704, 52.54462272519602], + [6.52769800817426, 52.54983518214687], + [6.5266840103306665, 52.551690024566874], + [6.521826686249971, 52.56058567433581], + [6.5049386657197195, 52.5758853763576], + [6.496738910489103, 52.5716118235587], + [6.488355601230752, 52.56900098256373], + [6.474868326160165, 52.568889818404855], + [6.45052799228307, 52.56918751089157], + [6.4449103165974915, 52.56929658448136], + [6.439656940790952, 52.56935863038699], + [6.432267302568837, 52.570902249078344], + [6.4273927574495415, 52.571184583713155], + [6.415015166201354, 52.57001250124418], + [6.409877107508196, 52.57892766462992], + [6.402644540620173, 52.59140281570367], + [6.399478455640782, 52.59138972028172], + [6.392516179132279, 52.59126280198402], + [6.374035765967061, 52.59158789801229], + [6.361523824124623, 52.59185425317107], + [6.3234125127222445, 52.592527165781156], + [6.322043634240235, 52.59487736523309], + [6.319680689745157, 52.59917107428178], + [6.303063686453506, 52.5971411487721], + [6.314748317920645, 52.62779140726244], + [6.32417526292608, 52.65201567810981], + [6.326241575437493, 52.65735319853709], + [6.327797712082432, 52.65869274594001], + [6.331200772252643, 52.65716113568182], + [6.334002897046376, 52.65469886288426], + [6.3417196164592164, 52.65368559352074], + [6.343596313948654, 52.65115780061446], + [6.351726150441187, 52.64830455671665], + [6.353476645108288, 52.646280646135246], + [6.359440778852816, 52.64551866770863], + [6.3641023334117754, 52.64314167714593], + [6.363907090116774, 52.63837603324268], + [6.3664079412946935, 52.63745336823754], + [6.369777887808873, 52.63500196247094], + [6.368602558199529, 52.633525822733], + [6.369204207769536, 52.63219152901083], + [6.370981664561336, 52.63166020083883], + [6.372276194031979, 52.62949897002479], + [6.374137225875314, 52.62900978963367], + [6.3752058947120185, 52.627408128161534], + [6.375550335038574, 52.62615574557861], + [6.3736183251182235, 52.62332641122792], + [6.377239350738519, 52.620013453821045], + [6.376057763719629, 52.61780972231825], + [6.376551951970085, 52.61689334195464], + [6.380252686628686, 52.61502141370954], + [6.38204825941548, 52.615645496110346], + [6.384084204030553, 52.61225014869453], + [6.386778182706293, 52.613619992426514], + [6.3915222146181065, 52.61451941138814], + [6.39384557965928, 52.61723347061954], + [6.396035213390098, 52.617787962008485], + [6.40112350045989, 52.61625960092314], + [6.4037202548036465, 52.616254218100906], + [6.406858313615219, 52.617780995466426], + [6.405893772310601, 52.61870881918642], + [6.4062888732639385, 52.62056414076659], + [6.409502226821514, 52.621733256921], + [6.411164158202961, 52.620823961530725], + [6.412049107736523, 52.619868522530346], + [6.416150181103323, 52.618667685391415], + [6.4188084957645675, 52.619023196069925], + [6.421609580579085, 52.62304466138477], + [6.426886440704144, 52.62463841364328], + [6.426036660433751, 52.62651255391242], + [6.428176485008926, 52.628188499183295], + [6.4313261515715485, 52.62836956005493], + [6.432992225603014, 52.62776504533031], + [6.4338030643784965, 52.626409209750264], + [6.435639303764576, 52.621570118858756], + [6.435601399497361, 52.62085314249439], + [6.434471419511146, 52.62045263820121], + [6.434934370169245, 52.61928554399555], + [6.438410263827006, 52.61707450501806], + [6.442345351937081, 52.61580356832004], + [6.443032863584334, 52.61619549638951], + [6.453476975385101, 52.61395567145393], + [6.4607075271453915, 52.61699142760377], + [6.464035318725264, 52.623875782786946], + [6.469965169490716, 52.62498568091199], + [6.472368731049734, 52.624579261021765], + [6.474200364375848, 52.62074498738537], + [6.478016185958721, 52.6186313023339], + [6.480581221693939, 52.61815476673233], + [6.48389550660296, 52.61907656697034], + [6.49153488469897, 52.61917028239179], + [6.500009912891226, 52.617969705578545], + [6.50465358825712, 52.6170152937687], + [6.5120268421640475, 52.613649665850154], + [6.5186041906933685, 52.614087840754515], + [6.5182469839733255, 52.61646819743371], + [6.518021880965973, 52.61798858461203], + [6.5178657598990934, 52.61891792348843], + [6.514013777540985, 52.645272014794784], + [6.513861463898781, 52.64629376771876], + [6.529283780702445, 52.654452758278374], + [6.52938067357998, 52.65450731166292], + [6.547745896806874, 52.66397136141501], + [6.552821389712455, 52.665594962035094], + [6.581049585936306, 52.669472936925644], + [6.603800826961591, 52.672585345039835], + [6.612980139712229, 52.67383828522426], + [6.614526801508529, 52.67404927129502], + [6.629453215700452, 52.66968823518001], + [6.646739218663822, 52.66463949893938], + [6.655650817346135, 52.66203366962817], + [6.686078996700155, 52.65343094784268], + [6.701414907027465, 52.650221834393285], + [6.708334040325407, 52.64875886545701], + [6.708024982936118, 52.647720721084774], + [6.705528562262308, 52.6456520504961], + [6.705383141851236, 52.64332082857318], + [6.702065961567727, 52.642466315179924], + [6.70116870336049, 52.64166837270971], + [6.7021703247899955, 52.64108364967006], + [6.70569791038866, 52.64089028800576], + [6.706525507477098, 52.63954214110804], + [6.703474020391182, 52.63611904441173], + [6.7034976937743105, 52.6352325572501], + [6.703499190762292, 52.635224771369685], + [6.703502453069875, 52.635144753873305], + [6.703266452042978, 52.634351391874425], + [6.7045227812409465, 52.633139431879634], + [6.702865115035186, 52.63067514160043], + [6.7009108614304695, 52.62940079650992], + [6.700860413614461, 52.62832023941184] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.92307690-0bb0-431d-8de1-d22e63841b46", + "properties": { + "statcode": "GM0163", + "jrstatcode": "2024GM0163", + "statnaam": "Hellendoorn", + "rubriek": "gemeente", + "id": 30 + }, + "bbox": [ + 219472.8830000013, 481582.5370000005, 237339.58399999887, + 497632.87000000104 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.475051901809722, 52.44108350158269], + [6.475309362648272, 52.441002675162125], + [6.479725905371312, 52.441157952235606], + [6.4803431430251655, 52.4403327456906], + [6.500229203126864, 52.43829464788783], + [6.510901302467581, 52.43717339990571], + [6.51775636613656, 52.43779436363374], + [6.518504823362632, 52.43940208484759], + [6.5211625551938575, 52.440270723230825], + [6.524503175100238, 52.43976040156732], + [6.528403746974823, 52.44066449733013], + [6.530526239402877, 52.44329870288083], + [6.5301708910757945, 52.44497038898379], + [6.531036650784739, 52.446218109405876], + [6.537914001906601, 52.44975188837131], + [6.542994874493671, 52.45122640590746], + [6.546514661338818, 52.45057686626048], + [6.555347078001645, 52.44884437253957], + [6.558641308376489, 52.448868846927574], + [6.563355478828084, 52.44582782599053], + [6.5663269264869, 52.446818310096376], + [6.56683912710931, 52.44627744833605], + [6.570522367214758, 52.44752203228496], + [6.570047842426777, 52.44807063234155], + [6.571045104901356, 52.44839559650659], + [6.571632862720555, 52.44650372009978], + [6.572784929315111, 52.44688801383884], + [6.574844352193537, 52.44757828318382], + [6.583592236372634, 52.45051493987185], + [6.596386700057452, 52.45480781561881], + [6.597003344954889, 52.44940233302935], + [6.5981475935943745, 52.43902936303938], + [6.5881898768567275, 52.434152044356125], + [6.584942385050508, 52.4317725986422], + [6.573350953661508, 52.423314362587405], + [6.57246948211746, 52.42331503850489], + [6.575951935564895, 52.417513498188924], + [6.516013219529922, 52.4061281384506], + [6.510224576681392, 52.395316899813956], + [6.508538770855602, 52.3921522401081], + [6.513789831184923, 52.3817020944095], + [6.512606534671771, 52.38183956637461], + [6.495516282512911, 52.37618035203414], + [6.49607786133983, 52.36794289550288], + [6.499058628549145, 52.363561928864925], + [6.512439144875102, 52.36256945369136], + [6.512349393607213, 52.361919455175546], + [6.520792789918546, 52.36141489211804], + [6.518872558042191, 52.35516113595422], + [6.508410401616216, 52.35520693570807], + [6.506663206535952, 52.355276386459586], + [6.505839390302696, 52.352450144119814], + [6.501172166528022, 52.352852666124356], + [6.495977862936453, 52.34995450144455], + [6.49079511151025, 52.349355355047784], + [6.489133616062953, 52.345954745785], + [6.486608697554524, 52.34520866736147], + [6.488144773073731, 52.343595466530296], + [6.48799274758472, 52.34349990349775], + [6.486467629025591, 52.342561577062675], + [6.468189488334605, 52.32646224556003], + [6.460919867964384, 52.32005861362146], + [6.447541585630587, 52.322128861719705], + [6.4297329418783935, 52.325061583116124], + [6.421896013020871, 52.32568999960831], + [6.41583601482676, 52.32499609350142], + [6.39764958939425, 52.322726137929514], + [6.371107265650506, 52.31994610099852], + [6.3560156718717336, 52.31821878454417], + [6.354836626726702, 52.319399369876884], + [6.350177263797337, 52.32406265552171], + [6.345390934447161, 52.32919590896275], + [6.342387949062181, 52.333169266962905], + [6.336206238850824, 52.34651610018144], + [6.3335018654965465, 52.35139833687704], + [6.335939378395434, 52.35620872361461], + [6.343082139489049, 52.37003199050397], + [6.357262196417719, 52.37703058304909], + [6.3824746583646785, 52.38064931882253], + [6.388649109389382, 52.38031259916226], + [6.394470405217801, 52.392206881497465], + [6.401364350000167, 52.40632752685965], + [6.405169501316328, 52.4155416016764], + [6.390315132103749, 52.42814451802502], + [6.429899835904802, 52.439304798919224], + [6.438408355518782, 52.44402502464287], + [6.4375633786979645, 52.44482827052471], + [6.438686691940599, 52.44588768256692], + [6.438209503540834, 52.447887011261784], + [6.4425157607960655, 52.45007067978922], + [6.444381940010968, 52.45461547889052], + [6.441781763160535, 52.4552499811526], + [6.442183155688453, 52.456311423255066], + [6.442959848393643, 52.45692977933751], + [6.446017643712596, 52.45750911142449], + [6.444597415769334, 52.45903833233001], + [6.445628045635755, 52.46091895467326], + [6.447423634286914, 52.461698150816986], + [6.450098300749774, 52.461256417645565], + [6.448760028603475, 52.46113084147805], + [6.4485496355916405, 52.460307440974454], + [6.453489575391813, 52.46002213454781], + [6.457355430845409, 52.45498582829389], + [6.469232795936696, 52.44499674201931], + [6.47368557643821, 52.442896144555704], + [6.475051901809722, 52.44108350158269] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.cf68214d-5023-4b56-a8bf-5fb4324647f2", + "properties": { + "statcode": "GM0164", + "jrstatcode": "2024GM0164", + "statnaam": "Hengelo (O.)", + "rubriek": "gemeente", + "id": 31 + }, + "bbox": [ + 244851.9219999984, 467890.7430000007, 254979.23999999836, + 481567.3350000009 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.807815878329283, 52.3130912252623], + [6.8093347939833, 52.310362861092614], + [6.812251402065186, 52.31088728900464], + [6.82333619514793, 52.30875951971963], + [6.825691456784349, 52.30640012064127], + [6.823895591765618, 52.30442385881434], + [6.821170079729486, 52.30248126107627], + [6.8199847067511845, 52.30241940011068], + [6.819237101276201, 52.30144831726639], + [6.820503652083116, 52.29853536062988], + [6.8230682575030315, 52.29709709770801], + [6.827890337753978, 52.29552221889195], + [6.828407593934602, 52.29535080383375], + [6.827901941478741, 52.294862307120546], + [6.831186226765806, 52.29397924368413], + [6.83493148627265, 52.29414152060681], + [6.836634907354438, 52.293238097698456], + [6.839589969558453, 52.293303620353605], + [6.8432023963559825, 52.29244830440627], + [6.842698151806039, 52.29174675069395], + [6.846374992308218, 52.29140197964184], + [6.847799376004296, 52.28991593535494], + [6.852488621576957, 52.28487027089634], + [6.850304375736236, 52.284131498914725], + [6.8506452862030836, 52.28297194823336], + [6.852014135273848, 52.28205950324145], + [6.84576073191071, 52.27975896995483], + [6.846663038978657, 52.27946028315498], + [6.8475700048271015, 52.27858384630218], + [6.840491564894965, 52.2763115348226], + [6.83784604788159, 52.27663226747099], + [6.831846848103343, 52.27345163467879], + [6.840277383191053, 52.269076962958366], + [6.843514532112417, 52.266592604154226], + [6.843351706476378, 52.263696569739906], + [6.840701107580676, 52.26207661765132], + [6.840287715783983, 52.26108594489266], + [6.842562125033373, 52.253909186038165], + [6.827057992760388, 52.248181551144334], + [6.82429804658057, 52.24651824767855], + [6.819538505709814, 52.24365705613373], + [6.818451578173646, 52.24100579111005], + [6.813753932931245, 52.22948268736964], + [6.8023627952471735, 52.232081122203255], + [6.788581471135239, 52.235227558654344], + [6.774433879623245, 52.238456313407475], + [6.768321332541454, 52.23491183169632], + [6.768096869643372, 52.234780666445985], + [6.765190286040357, 52.233137572551996], + [6.769055337315379, 52.22701277186262], + [6.755892967735111, 52.21739583586965], + [6.759623605238091, 52.21003479781082], + [6.766323753519089, 52.2031387028154], + [6.766800541643374, 52.191064897984056], + [6.763677833945866, 52.191897851552845], + [6.71238776634234, 52.20633143274622], + [6.702039137171115, 52.21682155121435], + [6.7032394798417405, 52.219442109638045], + [6.712139720091169, 52.22602899571662], + [6.717087846349189, 52.24098049736162], + [6.7187998263949735, 52.23917610939186], + [6.718774306466024, 52.23786408738697], + [6.720827896816015, 52.23802179527636], + [6.721508731042798, 52.239151095854055], + [6.720055388410058, 52.24374224973599], + [6.717926716045526, 52.2435142438513], + [6.719616352253046, 52.248616693932], + [6.723590376117602, 52.25201142119345], + [6.724281422875928, 52.252705842612706], + [6.729370317905433, 52.252549401277136], + [6.748844517782666, 52.25173220010846], + [6.7529595104496485, 52.25236956094698], + [6.750752254764721, 52.26115750048993], + [6.748981055516957, 52.26528645343594], + [6.747914497921569, 52.26685416568927], + [6.748820695854634, 52.26708577665472], + [6.749397629747774, 52.269384955836], + [6.748564192869948, 52.2701666957029], + [6.749367913326387, 52.271016334570106], + [6.748134814368111, 52.27604877397341], + [6.745766223335185, 52.280130813276], + [6.744232215093121, 52.28171484550496], + [6.743606310673003, 52.28154731237164], + [6.742897620715447, 52.28309285347755], + [6.742886460209116, 52.28311347961948], + [6.7474960286837415, 52.284435691451954], + [6.750319644026101, 52.2851209648761], + [6.752961396727674, 52.28756129480392], + [6.75411988749953, 52.28713011780704], + [6.759340640506213, 52.28802784299214], + [6.76322083919311, 52.2884055366287], + [6.766682780253861, 52.290519057683], + [6.76709012918646, 52.29174669997071], + [6.767480575854017, 52.292299636880394], + [6.77013085865182, 52.291615454245424], + [6.770647551297929, 52.29221994780613], + [6.773445552315167, 52.29240004541038], + [6.77551632648562, 52.2931525107048], + [6.777674994134419, 52.29509340619915], + [6.77998838499037, 52.297173178531914], + [6.7806083607002785, 52.29697029170639], + [6.785048611783835, 52.29981272556007], + [6.792550567458147, 52.30038678818953], + [6.788383013266096, 52.30365140090285], + [6.787892195331126, 52.304975550701954], + [6.794101863000527, 52.306016670498664], + [6.797451426143067, 52.30670081181085], + [6.7981570909087905, 52.30763846996326], + [6.801347420580645, 52.30865104031572], + [6.801347558158138, 52.308651169907556], + [6.801888912285912, 52.31198468330296], + [6.80203883101836, 52.31358607982833], + [6.8032299501167035, 52.31343683184829], + [6.807815878329283, 52.3130912252623] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.fd32ca3b-46ba-4de4-9e87-42ffcd51ca59", + "properties": { + "statcode": "GM0166", + "jrstatcode": "2024GM0166", + "statnaam": "Kampen", + "rubriek": "gemeente", + "id": 32 + }, + "bbox": [ + 181991.08779999986, 498616.42500000075, 198795.71599999815, + 515406.1473999992 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.796299949641434, 52.59228537035508], + [5.797743197608563, 52.590770953675225], + [5.79236905912492, 52.59116667877396], + [5.789106498207036, 52.59183873261561], + [5.788078103641989, 52.592123375394976], + [5.787710807564531, 52.5915454644692], + [5.788149403243618, 52.59076012712043], + [5.788991630568401, 52.59031629015636], + [5.7908605038173295, 52.58923114450675], + [5.791197165852159, 52.587786592752906], + [5.790331046891735, 52.58738991917628], + [5.788996929029462, 52.588208499994714], + [5.788597789854778, 52.58933662902479], + [5.785750449470277, 52.59103933493401], + [5.785525595680463, 52.59253477664103], + [5.787351003358322, 52.59312696892766], + [5.7906134035910934, 52.59213507296158], + [5.792559427415988, 52.59274246184621], + [5.793692034487129, 52.593473178916064], + [5.796299949641434, 52.59228537035508] + ] + ], + [ + [ + [5.806660935652827, 52.590742581834036], + [5.808610524065536, 52.59025549571445], + [5.811050080810847, 52.59145331534271], + [5.810950687143566, 52.59271406914906], + [5.811820380219712, 52.593571632205965], + [5.817047573273706, 52.59170156139108], + [5.81210542733235, 52.5912329024826], + [5.810770547599446, 52.590023164798], + [5.807829628001696, 52.58913043410095], + [5.802096027351906, 52.59173254827935], + [5.800525109076373, 52.59377179523553], + [5.800034199889576, 52.59544276365655], + [5.80035264782379, 52.59699502500606], + [5.8020645098927295, 52.5973003984145], + [5.805863721118693, 52.59629165757705], + [5.80824313278852, 52.594305478988815], + [5.807304231403956, 52.5933891004609], + [5.8072200287034255, 52.59283795422716], + [5.806660935652827, 52.590742581834036] + ] + ], + [ + [ + [5.833956660115772, 52.607286442748936], + [5.83393953350013, 52.60606406919378], + [5.834100268660707, 52.60551444952773], + [5.828528500448525, 52.601907591775785], + [5.827901554582701, 52.60151031276833], + [5.826642568622105, 52.600521680863864], + [5.825762907380926, 52.59920146512708], + [5.826096319244796, 52.59680052337156], + [5.8283424011186815, 52.59439418047754], + [5.829686976285083, 52.59300904167935], + [5.824985134298051, 52.593186263601886], + [5.822126729286995, 52.59427156244854], + [5.820469006125268, 52.59567298369289], + [5.818220477562384, 52.59614232569643], + [5.81627744610745, 52.59732639307525], + [5.813053964962521, 52.598097570071076], + [5.80987680038145, 52.597905265194086], + [5.808324734963583, 52.599246526982306], + [5.801739865717483, 52.6027210431546], + [5.801257382766111, 52.60488558250754], + [5.8027098600407285, 52.60621559865413], + [5.808474469907954, 52.60731970381661], + [5.810751720394312, 52.60685024817698], + [5.812911301094942, 52.60560256723153], + [5.814632420299388, 52.60447326076058], + [5.816148778371655, 52.60439929857856], + [5.81659449192566, 52.60567787337939], + [5.8175901096699345, 52.606708757004455], + [5.819240742606769, 52.606892712366594], + [5.821118092656206, 52.60699909921269], + [5.822250202381849, 52.607233916029585], + [5.824725863349812, 52.60705051413937], + [5.828564866571638, 52.60691403358361], + [5.831467469180187, 52.60702676801004], + [5.833956660115772, 52.607286442748936] + ] + ], + [ + [ + [5.962258680323994, 52.624399047407685], + [5.974556146774724, 52.62314245176515], + [5.977826620279322, 52.62313756640956], + [5.981882605410512, 52.62315527329062], + [5.9846069136128355, 52.62316708875087], + [5.986496907268211, 52.623175249384666], + [5.987949957832485, 52.62407114725408], + [5.991745406986074, 52.621747504971246], + [5.991308602849516, 52.6144299078127], + [5.980242993261023, 52.60508846687377], + [5.97697501441602, 52.600075561613515], + [5.972720141204854, 52.59553769232614], + [5.9713412286417435, 52.594157309143135], + [5.971563022415308, 52.59336806486262], + [5.972413053094812, 52.59255483913352], + [5.972623584483285, 52.5914581426277], + [5.973009303100279, 52.59090270846107], + [5.982940698069983, 52.57751377043308], + [6.012687737756626, 52.58563638305207], + [6.012609498940838, 52.58603615833957], + [6.012792881148784, 52.58605864309572], + [6.033037539277, 52.55940346816955], + [6.003619006054878, 52.550391499831974], + [6.0069849323822355, 52.54553718615887], + [6.019652603760377, 52.54189427806975], + [6.030454273570708, 52.5380608755455], + [6.0300870436203144, 52.530824203991145], + [6.03017053109356, 52.52675435692329], + [6.0250121198829305, 52.526296644234236], + [6.023643032622064, 52.52736569183377], + [6.018973429985706, 52.526006425241995], + [6.01550998014302, 52.522771394253695], + [6.014764752431457, 52.52045702280727], + [6.015065653767018, 52.51790915506756], + [6.018807127547648, 52.513879379335826], + [6.027857495881694, 52.50960619807542], + [6.025346483902348, 52.506573325633745], + [6.022851398769132, 52.50533187491465], + [6.019337544367755, 52.50482748352468], + [6.01508037331039, 52.50596278557387], + [6.014542596810986, 52.50577442166454], + [6.012367444056241, 52.50593976624246], + [6.007609954942156, 52.5042600303003], + [6.0007883995287825, 52.50014882409336], + [5.991722415288448, 52.49389879717978], + [5.983161653783394, 52.48897570912612], + [5.971808618484512, 52.48125211905445], + [5.965309017770499, 52.47644438898796], + [5.958300972587902, 52.48406300832555], + [5.951451501675327, 52.48413275641896], + [5.946122016072928, 52.48203960214539], + [5.936879886261966, 52.47649905057046], + [5.936353082650847, 52.47658470906432], + [5.935773631846097, 52.47722580195957], + [5.935409705107127, 52.47739203147938], + [5.925559444609619, 52.47405758598178], + [5.920851872256148, 52.48255479728486], + [5.910228755374047, 52.49719464911794], + [5.9015811226896195, 52.50567914334651], + [5.887276661879802, 52.516906191691895], + [5.878909752975344, 52.52167328845421], + [5.876205398831458, 52.52202501997811], + [5.8658013029738525, 52.518658060938485], + [5.865854222052324, 52.51998895777522], + [5.864401121804767, 52.52053976051188], + [5.863511720159767, 52.52035449198187], + [5.862857616579269, 52.520906212025814], + [5.8627365809049525, 52.52213605133999], + [5.86366598585468, 52.522870048652024], + [5.863606211599517, 52.523811267795374], + [5.862817825473125, 52.52611661669273], + [5.862160041091085, 52.52764753654909], + [5.861476277393568, 52.528521166543406], + [5.862411340161528, 52.530338821702216], + [5.861778925388635, 52.53319845312887], + [5.860654437986469, 52.53431352384904], + [5.86041825086547, 52.5361722859311], + [5.8619549535404145, 52.53727816497416], + [5.861780748641909, 52.537370801049335], + [5.860821007558255, 52.53709820338169], + [5.86030895478193, 52.537440114065596], + [5.862524041059208, 52.53812110441627], + [5.862255900024018, 52.53842936067969], + [5.8607012393022275, 52.53851059405539], + [5.860562135864606, 52.537931927056576], + [5.860356958782251, 52.53792872725177], + [5.859753113082983, 52.53891413630716], + [5.8593494087700755, 52.542266460400256], + [5.858436315609884, 52.5428198036311], + [5.858029463956613, 52.54276916265918], + [5.85785935116829, 52.54294595580606], + [5.858126558135517, 52.54346009449153], + [5.856950304552938, 52.54402718283332], + [5.8578694906732025, 52.5446045363572], + [5.857721220994054, 52.54518140304541], + [5.857600673013995, 52.545650356179486], + [5.857691804312582, 52.54583933427392], + [5.857271164884162, 52.546424693562145], + [5.857859357223755, 52.54683064683385], + [5.858576523648459, 52.546953068506305], + [5.858533987490102, 52.54729694010045], + [5.8582221084557204, 52.547537402200106], + [5.857350359924109, 52.547390420074954], + [5.856773341290211, 52.54988469139487], + [5.856620045906608, 52.551085576449175], + [5.8561697007023, 52.55135968090881], + [5.857208328824577, 52.55284346561209], + [5.856969826534425, 52.55294957002237], + [5.855534028849294, 52.551337024111916], + [5.853334836544806, 52.55252570178629], + [5.85273779978183, 52.55561675522714], + [5.842092766185685, 52.56295174193676], + [5.839917833859657, 52.56971198393223], + [5.832130156137669, 52.5768839883614], + [5.826959238901799, 52.57873286785259], + [5.824645153183255, 52.579595234291475], + [5.8197061497374785, 52.58012437449761], + [5.814313540761248, 52.58243130916345], + [5.814268865490313, 52.582781693513425], + [5.82968546051441, 52.582458519587846], + [5.839531563058938, 52.58156304297172], + [5.839720787451994, 52.58225868560206], + [5.838860727360558, 52.58306050408986], + [5.829841719285929, 52.5837585231729], + [5.805555436148717, 52.584224229674376], + [5.815114235799142, 52.58835904237438], + [5.819929892252362, 52.58900292591421], + [5.819838928468994, 52.58792081496816], + [5.814143928601796, 52.5868644247179], + [5.81393592550277, 52.58587044188549], + [5.814375118772363, 52.58493804722001], + [5.81728622456084, 52.58465597676365], + [5.820043376770735, 52.58640609509869], + [5.82195321764132, 52.58675355932353], + [5.82854062678577, 52.5871092434133], + [5.833601599535915, 52.58572317486419], + [5.839122653154777, 52.58332989843737], + [5.83992350072399, 52.5827908356488], + [5.841625567197761, 52.5838118534583], + [5.833909969761171, 52.588671829028115], + [5.831708132641619, 52.59151041033394], + [5.835617046349417, 52.59628272721244], + [5.835082752750166, 52.59717148139152], + [5.832147875696999, 52.59784777381524], + [5.8319564780525255, 52.599983231365684], + [5.832858399306145, 52.60185407968881], + [5.835292762454718, 52.60322210105679], + [5.83604310084439, 52.604735915137375], + [5.836239396252619, 52.60602883270758], + [5.838244619534916, 52.60672779735997], + [5.8404854167325775, 52.60774391501978], + [5.839762601215947, 52.6090459985215], + [5.840646320865954, 52.61042973931035], + [5.84067362454986, 52.6104334483486], + [5.8413337132581225, 52.61052310649339], + [5.842608726254623, 52.61069628672964], + [5.843007307892451, 52.610750419289914], + [5.843008727211804, 52.61075061246084], + [5.888084402481143, 52.61686292407395], + [5.896583849259776, 52.61801331886195], + [5.896810124703034, 52.61787082468279], + [5.897245088518908, 52.61775649537302], + [5.899228924124721, 52.61834231403135], + [5.905750168054433, 52.618263893635756], + [5.904823103396172, 52.616459417709144], + [5.906753254074475, 52.61552187188248], + [5.907750151363767, 52.61606085840547], + [5.912461575189965, 52.61520649878347], + [5.914446486054365, 52.61346097342242], + [5.91727227183235, 52.6127446596142], + [5.920171700225107, 52.61286245064939], + [5.921509475092497, 52.61336400615153], + [5.931423243269215, 52.613861576493505], + [5.937583294680794, 52.61558258545839], + [5.9434332312670435, 52.6182074583677], + [5.9551005287317285, 52.621462795711956], + [5.955745339779936, 52.62289497099714], + [5.956934294995399, 52.6241991648466], + [5.95838771128408, 52.6248001241304], + [5.962258680323994, 52.624399047407685] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e780f1c1-1ef9-4212-b472-0fa886e0f554", + "properties": { + "statcode": "GM0168", + "jrstatcode": "2024GM0168", + "statnaam": "Losser", + "rubriek": "gemeente", + "id": 33 + }, + "bbox": [ + 260495.20100000128, 471491.9239999987, 269795.1860000007, + 489176.82279999927 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.986120010691449, 52.37196449788417], + [7.0078297753945815, 52.36382506358541], + [7.031803667176907, 52.3676827632958], + [7.072204707644945, 52.372802526017495], + [7.072763277819077, 52.36680481288366], + [7.072113946753101, 52.35189079108993], + [7.057226687596489, 52.33883836741293], + [7.056230750089127, 52.33795388274632], + [7.05614759285131, 52.33495580461962], + [7.054917984195634, 52.33317728690053], + [7.055492720652514, 52.332168734109764], + [7.047179747040124, 52.32374444061888], + [7.047260369809319, 52.32126316024572], + [7.048110018577947, 52.31994867736496], + [7.0458104914401645, 52.316451396581414], + [7.046360021112891, 52.31662167431176], + [7.04742072684893, 52.31520642873282], + [7.043417048496374, 52.31391559020817], + [7.043570225953767, 52.31347138589566], + [7.038683274216038, 52.312380134511734], + [7.041237501872581, 52.31105257184608], + [7.039492917622814, 52.30762678154295], + [7.033836858105594, 52.30250450967533], + [7.026453498748319, 52.2919677633678], + [7.026239182730545, 52.287324374082694], + [7.029547508942422, 52.28152611475011], + [7.029614338299143, 52.280179715777585], + [7.027519781321748, 52.2779861531714], + [7.028584212332812, 52.27362713598144], + [7.032062686788471, 52.271664044534965], + [7.0392436615794916, 52.260899396778214], + [7.042394720868616, 52.25614402957546], + [7.065789503425256, 52.24123502817172], + [7.06128354225165, 52.23471106156101], + [7.048460754798714, 52.230655869246036], + [7.046694836597229, 52.23007362511021], + [7.0427475790944944, 52.22877254857287], + [7.040310722914893, 52.2279738674905], + [7.037945679209942, 52.227406357889116], + [7.02639777053355, 52.22571444813386], + [7.0204498177022465, 52.225938916684896], + [7.019297234724753, 52.22510273240325], + [7.012938923897653, 52.227261359332715], + [7.012652583425413, 52.22680613198232], + [7.011220879457942, 52.22759146126575], + [7.007379162586332, 52.22809461323356], + [7.005851119469632, 52.228294604329065], + [7.003476096164245, 52.22858967681802], + [6.996999098545539, 52.22705929274618], + [6.98911420619824, 52.22684306106623], + [6.987087388831463, 52.225437598449666], + [6.985004527828582, 52.22502104082956], + [6.985390685595941, 52.22356381020809], + [6.982874671512463, 52.22240575017365], + [6.981100052502818, 52.22073698627476], + [6.9766677567439075, 52.22364912523398], + [6.97643643775293, 52.22380246728443], + [6.97520702069005, 52.22461107122124], + [6.970290834676768, 52.227742951796905], + [6.965889525292736, 52.23041871185308], + [6.9649539035689925, 52.23626213940365], + [6.9716455964616495, 52.244067633156945], + [6.973028008746386, 52.24850339370366], + [6.97092250977437, 52.25831893120105], + [6.969125051677312, 52.26685909023047], + [6.967815566766737, 52.26816234897516], + [6.949282093434414, 52.279488888312024], + [6.940986465982239, 52.283903483228485], + [6.939170505560474, 52.28386937610877], + [6.937075428941695, 52.288619566027336], + [6.93591382634598, 52.290601799932666], + [6.940631929278115, 52.29038403196439], + [6.946345482826014, 52.29270677589969], + [6.945057271220895, 52.295260116161955], + [6.941873607111068, 52.29864634881763], + [6.9431768281794835, 52.30009721654538], + [6.944666078917047, 52.30068614949842], + [6.949457582280572, 52.306908450918414], + [6.950175609665114, 52.308490306913626], + [6.94865955970527, 52.3134382556221], + [6.9477535755226185, 52.314098837408324], + [6.9484208844051265, 52.3159856177306], + [6.949664124537608, 52.31602505159148], + [6.950193879197771, 52.31738906529606], + [6.950139106173783, 52.3193573436543], + [6.944945776056305, 52.31976389734076], + [6.945861517473703, 52.320996219405984], + [6.942793247287825, 52.32217159894131], + [6.934655958782306, 52.32271086647811], + [6.937531013193346, 52.33283627936478], + [6.945202252234555, 52.332723670959815], + [6.953583418811326, 52.3339734759366], + [6.951140815611415, 52.33795956581928], + [6.952843358185178, 52.340350233447225], + [6.9611043412669344, 52.346811999970576], + [6.965973662134779, 52.34838639757828], + [6.970259186145256, 52.34876651423639], + [6.962668705670871, 52.36338662842975], + [6.970923549244237, 52.37984686898747], + [6.986120010691449, 52.37196449788417] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.bd0f038b-69e7-47fe-93b7-016b59418cf5", + "properties": { + "statcode": "GM0171", + "jrstatcode": "2024GM0171", + "statnaam": "Noordoostpolder", + "rubriek": "gemeente", + "id": 34 + }, + "bbox": [ + 168940.23200000077, 513751.08399999887, 197412.9576999992, + 539695.8229999989 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.888084402481143, 52.61686292407395], + [5.843008727211804, 52.61075061246084], + [5.8649636086709265, 52.61561547450675], + [5.867833294929332, 52.61606999339527], + [5.869963740912706, 52.615624368875736], + [5.870431429704049, 52.61642144819039], + [5.886481082673794, 52.61983980820422], + [5.8879074580501705, 52.62037137836297], + [5.892888302919101, 52.61968981924655], + [5.893977708972699, 52.618504884509235], + [5.896298374350842, 52.617974690510934], + [5.888084402481143, 52.61686292407395] + ] + ], + [ + [ + [6.010562595594502, 52.64244005224702], + [6.008763658044477, 52.642274375278305], + [6.003912085922215, 52.6435387653795], + [5.999268261025501, 52.6457011435273], + [5.999151033298964, 52.64777270343511], + [6.002668402146733, 52.64871149787779], + [6.007986638658545, 52.64797003027319], + [6.012315512140625, 52.64655576983047], + [6.013873224916676, 52.64568544528693], + [6.010562595594502, 52.64244005224702] + ] + ], + [ + [ + [5.748807356744224, 52.83967958266816], + [5.784382141997081, 52.8174757446888], + [5.78737549197019, 52.80896901140739], + [5.789806672874144, 52.803691485512275], + [5.795177033982417, 52.80652183738242], + [5.803474410190059, 52.79685870198061], + [5.812725480421597, 52.79118641355397], + [5.818656493205891, 52.787635733404656], + [5.8187917635000765, 52.78469664770391], + [5.828146520578368, 52.78554533929744], + [5.836054309703256, 52.78563509564427], + [5.837310574979447, 52.78502388788616], + [5.841618422995423, 52.785138379833896], + [5.843389942568436, 52.784463617986816], + [5.850296490711259, 52.78453079942579], + [5.862083295200251, 52.78102255340257], + [5.879938535151886, 52.77309156558359], + [5.8851365507832245, 52.76930084938943], + [5.892550334345012, 52.76595969398951], + [5.894382821713619, 52.76513370030133], + [5.896085417085646, 52.76282201505527], + [5.897761868482398, 52.76213486877229], + [5.900054127240127, 52.761195253141096], + [5.906009446363249, 52.761325557395594], + [5.921829484094165, 52.75116970138943], + [5.930150529520861, 52.739586126801356], + [5.935559418644981, 52.730251722705596], + [5.941169754132894, 52.717550648616346], + [5.941885217567108, 52.71594903321968], + [5.942555031301335, 52.715001999593056], + [5.951161371143035, 52.711919221711526], + [5.952091738539221, 52.71087622217952], + [5.955315511003246, 52.707261773050256], + [5.954839010279306, 52.70376762565697], + [5.959011668664417, 52.703863423520495], + [5.964825026891277, 52.69810442327125], + [5.965155429263163, 52.69356972280216], + [5.962104800177959, 52.69035067422252], + [5.959400149806233, 52.6899503093098], + [5.952740279675786, 52.685240021558386], + [5.951508805288473, 52.68495190244759], + [5.949519112966519, 52.685713458564685], + [5.946847878797455, 52.68400277252804], + [5.944707565303116, 52.68271257508819], + [5.945376969690003, 52.682301419808326], + [5.9401605389741645, 52.67922320911427], + [5.933870298665179, 52.675510458509194], + [5.932750590019315, 52.67318892259256], + [5.93308401620595, 52.67126351616801], + [5.934593466912041, 52.66978161611564], + [5.935147852609884, 52.669233803554256], + [5.939725865726151, 52.66883524716443], + [5.940101132670559, 52.67042656422994], + [5.9415935194817715, 52.670516676289765], + [5.9540173264465395, 52.66767405812306], + [5.9581725091995645, 52.6678094745995], + [5.961794957408784, 52.66729648647636], + [5.963054292289044, 52.6663983121686], + [5.964968381780952, 52.66615437100961], + [5.966851667729429, 52.66658018333189], + [5.970814000439276, 52.66518881739399], + [5.974667269105189, 52.662713911874626], + [5.979546420979964, 52.660495570114854], + [5.982651821687711, 52.65794374514009], + [5.981864462305242, 52.6583140684422], + [5.98123806302637, 52.65809143543731], + [5.983828011805401, 52.65632586520227], + [5.983736717806552, 52.65560794896439], + [5.968255639350468, 52.6412212290887], + [5.963731302996459, 52.638740185445826], + [5.884884291281219, 52.62280415375639], + [5.83178604578738, 52.61253881228726], + [5.771562403793447, 52.612761672132], + [5.7501194416685735, 52.61280790409491], + [5.748594136447204, 52.612264046715644], + [5.745704673555444, 52.612344175072316], + [5.745764315031461, 52.61122828427135], + [5.749888885288757, 52.61113061621606], + [5.750200330133128, 52.61074430391646], + [5.745435074613128, 52.61083271904548], + [5.743302127915601, 52.61241012572677], + [5.741597780758917, 52.61211859589813], + [5.7399070480463, 52.612846524627436], + [5.663326357747358, 52.6130459025202], + [5.658302834498701, 52.613720223465535], + [5.653561128243293, 52.61545990535744], + [5.651209333505309, 52.614766330729445], + [5.650037097925583, 52.6155937411533], + [5.6516446380595236, 52.61697332357005], + [5.629891057029755, 52.63771668963607], + [5.630442487622728, 52.63840273811259], + [5.641100662456051, 52.64254774005844], + [5.636278529612661, 52.647219657019036], + [5.63613078433132, 52.64961181495836], + [5.648865315393383, 52.6495509053528], + [5.650015175488625, 52.65431081708586], + [5.642831142091217, 52.66055112414126], + [5.65537914606336, 52.665950422340636], + [5.641588498304278, 52.67801481510851], + [5.6437167765347835, 52.68261444545843], + [5.625802827878396, 52.682606804970455], + [5.612623271173816, 52.68134598028776], + [5.609528629378928, 52.6804201386654], + [5.606929160685917, 52.682416483416915], + [5.604310169745631, 52.68231010889479], + [5.604309784155179, 52.683236907880044], + [5.59455059604765, 52.683299949318524], + [5.594311782780533, 52.67627449147266], + [5.5933195507158935, 52.676280550744934], + [5.593846504118028, 52.70218258475342], + [5.594877843302811, 52.74800055411403], + [5.595171961180277, 52.76262582780155], + [5.596582871780349, 52.766058106185646], + [5.633593002778292, 52.80222205197622], + [5.65972139379166, 52.827668141922594], + [5.663405185011767, 52.83008661986638], + [5.669587230982486, 52.831733822780556], + [5.709814962059818, 52.83466442982534], + [5.7120285418552035, 52.83569374175465], + [5.713081365774213, 52.83802724127795], + [5.722699070103703, 52.83607463316579], + [5.728663438238734, 52.833398009178566], + [5.729573993792976, 52.83372655529361], + [5.727247290430969, 52.8369161951629], + [5.72482388031273, 52.84362330654309], + [5.724681986394606, 52.84398224129241], + [5.745718919839033, 52.84023622777546], + [5.748807356744224, 52.83967958266816] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.391d3a2d-f456-4094-94c0-99e147b25678", + "properties": { + "statcode": "GM0173", + "jrstatcode": "2024GM0173", + "statnaam": "Oldenzaal", + "rubriek": "gemeente", + "id": 35 + }, + "bbox": [ + 255445.5859999992, 478226.5769999996, 261587.2410000004, + 483914.12000000104 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.9062263589606285, 52.332611312039305], + [6.9127937832623, 52.330570938701676], + [6.918189131460963, 52.330799738775994], + [6.924599380405568, 52.329990315314966], + [6.930969360825703, 52.32945961118381], + [6.930441869810151, 52.330012203527545], + [6.932261286334105, 52.331209898472196], + [6.931905343220491, 52.332755606676535], + [6.937531013193346, 52.33283627936478], + [6.934655958782306, 52.32271086647811], + [6.942793247287825, 52.32217159894131], + [6.945861517473703, 52.320996219405984], + [6.944945776056305, 52.31976389734076], + [6.950139106173783, 52.3193573436543], + [6.950193879197771, 52.31738906529606], + [6.949664124537608, 52.31602505159148], + [6.9484208844051265, 52.3159856177306], + [6.9477535755226185, 52.314098837408324], + [6.94865955970527, 52.3134382556221], + [6.950175609665114, 52.308490306913626], + [6.949457582280572, 52.306908450918414], + [6.944666078917047, 52.30068614949842], + [6.9431768281794835, 52.30009721654538], + [6.941873607111068, 52.29864634881763], + [6.945057271220895, 52.295260116161955], + [6.946345482826014, 52.29270677589969], + [6.940631929278115, 52.29038403196439], + [6.93591382634598, 52.290601799932666], + [6.937075428941695, 52.288619566027336], + [6.939170505560474, 52.28386937610877], + [6.918746269937889, 52.28360609711433], + [6.913586940837483, 52.282168138346144], + [6.912127141079004, 52.285505747476215], + [6.8944975078862125, 52.29353812687357], + [6.88948027979644, 52.29246696857609], + [6.887931853794025, 52.29276223524466], + [6.883889797415082, 52.293953097150165], + [6.879902353568604, 52.29371917514213], + [6.8796739616927205, 52.294839946530175], + [6.872719593344939, 52.297363015743784], + [6.865298280962115, 52.29722132678835], + [6.859781375919999, 52.29867441422005], + [6.86073323692852, 52.303344566151175], + [6.861484477239287, 52.30399913354818], + [6.861349346209864, 52.306366862961625], + [6.863572371753938, 52.307348187451616], + [6.865041161925073, 52.3067998889121], + [6.867110496940573, 52.30829689748125], + [6.867049822262588, 52.31031126181927], + [6.86836811504422, 52.310611775867386], + [6.869340391129067, 52.31211925937444], + [6.870933275414147, 52.31190207845622], + [6.871770810530556, 52.31260986526311], + [6.876990600855047, 52.31226220954053], + [6.879868624750655, 52.31901438029565], + [6.884331516937036, 52.31845235513373], + [6.885604721099732, 52.32125240678387], + [6.886334263657451, 52.32228212222397], + [6.887778729725033, 52.32205757396292], + [6.8947402981029935, 52.324953911878715], + [6.897158284545568, 52.32821336129312], + [6.898140547482521, 52.328145855961644], + [6.900646007227116, 52.333460191657174], + [6.9062263589606285, 52.332611312039305] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.498a218d-f909-4083-b172-fc416e49608e", + "properties": { + "statcode": "GM0175", + "jrstatcode": "2024GM0175", + "statnaam": "Ommen", + "rubriek": "gemeente", + "id": 36 + }, + "bbox": [ + 218438.50400000066, 493844.4120000005, 238020.739, 512072.95600000024 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.374035765967061, 52.59158789801229], + [6.392516179132279, 52.59126280198402], + [6.399478455640782, 52.59138972028172], + [6.402644540620173, 52.59140281570367], + [6.409877107508196, 52.57892766462992], + [6.415015166201354, 52.57001250124418], + [6.4273927574495415, 52.571184583713155], + [6.432267302568837, 52.570902249078344], + [6.439656940790952, 52.56935863038699], + [6.4449103165974915, 52.56929658448136], + [6.45052799228307, 52.56918751089157], + [6.474868326160165, 52.568889818404855], + [6.488355601230752, 52.56900098256373], + [6.496738910489103, 52.5716118235587], + [6.5049386657197195, 52.5758853763576], + [6.521826686249971, 52.56058567433581], + [6.5266840103306665, 52.551690024566874], + [6.52769800817426, 52.54983518214687], + [6.529995676603704, 52.54462272519602], + [6.531049811818186, 52.535147098105824], + [6.534070510309091, 52.52844395372703], + [6.534892651299102, 52.52891847299924], + [6.536288898884187, 52.528825332428035], + [6.536995168873683, 52.52794330439909], + [6.541771676182913, 52.526347902836456], + [6.541047220218323, 52.524095467210344], + [6.5420589481286004, 52.52257922172926], + [6.542792912141556, 52.52120022263327], + [6.541245305245161, 52.51903612868026], + [6.544575753440874, 52.51906795379813], + [6.5466496304817285, 52.51851919195386], + [6.54594545015716, 52.5171536812213], + [6.545463298081643, 52.51647718275769], + [6.545671398492046, 52.516036171937266], + [6.55017209316238, 52.514944026559945], + [6.553498260524231, 52.51250632848323], + [6.554531806300847, 52.51247090417266], + [6.556677961914843, 52.51326049030748], + [6.555186732314719, 52.51587104094172], + [6.556781133989297, 52.516448635257454], + [6.559160534726467, 52.519249843037095], + [6.561049589073358, 52.51979175252854], + [6.5652585204665055, 52.518507794595244], + [6.567078055552014, 52.51690347081488], + [6.565715646297556, 52.51476768503304], + [6.564004295123026, 52.51446964291549], + [6.560939556665534, 52.5154820522883], + [6.560019176795256, 52.514644385912305], + [6.561351063264986, 52.512895692351975], + [6.566498792405501, 52.511600123968776], + [6.572465851818375, 52.50827329920684], + [6.572856323760026, 52.50809328151469], + [6.578831573132308, 52.50553355186005], + [6.58464909738043, 52.50304835674051], + [6.587866425234278, 52.501625632848636], + [6.588530873812758, 52.50132215768977], + [6.6096435405224305, 52.49250482628256], + [6.600170347943407, 52.485154175857765], + [6.595188119720464, 52.48030329628956], + [6.572990616939872, 52.48427154040309], + [6.565289076124336, 52.485654092924534], + [6.5544634601208065, 52.48759328849144], + [6.534402524701936, 52.48897537207359], + [6.534360843011175, 52.488978239924016], + [6.509787499017485, 52.490666459772946], + [6.505468751316482, 52.49096261412965], + [6.503773163427531, 52.48172168176892], + [6.497427579879408, 52.481292464313235], + [6.494808907665208, 52.48100208633918], + [6.49578967353491, 52.479256193548146], + [6.492504007544747, 52.479258634176446], + [6.488575953585879, 52.47686220772826], + [6.47840512492063, 52.47760450051829], + [6.472442446026532, 52.47568832526307], + [6.465451517169998, 52.47511546259194], + [6.461504407409619, 52.47334066492372], + [6.461621429409667, 52.47225893296693], + [6.460713572846958, 52.4719542571995], + [6.461449387950007, 52.4713627010724], + [6.458682428709185, 52.46997465132769], + [6.454260130238473, 52.46931905933268], + [6.452912438930019, 52.47004781192476], + [6.453645101972204, 52.4713162072393], + [6.4524791184604595, 52.471002221585124], + [6.452644249950014, 52.46949014094004], + [6.450679284702248, 52.46880029834437], + [6.450733935267566, 52.46793621161317], + [6.453273315275438, 52.46648928343044], + [6.4523553683907195, 52.464516656121575], + [6.451545327202552, 52.464741813391456], + [6.450405708888006, 52.46689127408685], + [6.448375183023087, 52.46646866138752], + [6.447528779982874, 52.46494536109484], + [6.449942916524285, 52.461935067934], + [6.451377015095997, 52.46152504648171], + [6.450098300749774, 52.461256417645565], + [6.447423634286914, 52.461698150816986], + [6.445628045635755, 52.46091895467326], + [6.444597415769334, 52.45903833233001], + [6.446017643712596, 52.45750911142449], + [6.442959848393643, 52.45692977933751], + [6.442183155688453, 52.456311423255066], + [6.441781763160535, 52.4552499811526], + [6.444381940010968, 52.45461547889052], + [6.4425157607960655, 52.45007067978922], + [6.438209503540834, 52.447887011261784], + [6.438686691940599, 52.44588768256692], + [6.4375633786979645, 52.44482827052471], + [6.438408355518782, 52.44402502464287], + [6.429899835904802, 52.439304798919224], + [6.390315132103749, 52.42814451802502], + [6.3805727436202835, 52.42981614378932], + [6.3841500476556, 52.439434682142156], + [6.381157790203092, 52.44019895600271], + [6.376406580902298, 52.447453063323906], + [6.375678106578445, 52.447762137848336], + [6.373154450131979, 52.446856852229295], + [6.37212462865525, 52.44826114681716], + [6.371061189708937, 52.449711190082894], + [6.378494285137324, 52.45641682419377], + [6.342616263127596, 52.45690540369195], + [6.343315560369294, 52.46885768118734], + [6.344009173139668, 52.480717148245915], + [6.3436301119553455, 52.482871270901526], + [6.334582260226344, 52.50707774249169], + [6.336801910433844, 52.5076350060318], + [6.334899126894924, 52.50968500189307], + [6.33561055658554, 52.510437277573075], + [6.332200026964552, 52.512458227192404], + [6.333672523177247, 52.51557335218122], + [6.332006906105612, 52.51777995770802], + [6.331515688694032, 52.522074777750454], + [6.338365642152392, 52.52176168697747], + [6.343639936314694, 52.51994649267105], + [6.346230471143353, 52.520550259155435], + [6.3482738453036065, 52.52235893355526], + [6.351351260841336, 52.523698161462136], + [6.353266784130467, 52.52289860472352], + [6.3615488437229395, 52.52453078430223], + [6.360722587110958, 52.526880166938696], + [6.358368030122708, 52.529105842931216], + [6.35137353942467, 52.54273444270606], + [6.335753732262762, 52.57040017861457], + [6.333813074385412, 52.57385994058208], + [6.325806039793398, 52.58825718649798], + [6.3234125127222445, 52.592527165781156], + [6.361523824124623, 52.59185425317107], + [6.374035765967061, 52.59158789801229] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.99a9c152-2e4f-4e4b-8f9b-069390680fea", + "properties": { + "statcode": "GM0177", + "jrstatcode": "2024GM0177", + "statnaam": "Raalte", + "rubriek": "gemeente", + "id": 37 + }, + "bbox": [ + 206436.87099999934, 479554.55640000105, 224255.20100000128, + 498799.31500000134 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.162495458066081, 52.47438835374955], + [6.170091991136962, 52.468922246568496], + [6.174485113516799, 52.468401237782345], + [6.177058880186671, 52.4705812149919], + [6.178021895758404, 52.470635640577875], + [6.186673227727947, 52.46841763521842], + [6.1909496831367825, 52.468440957566614], + [6.193853873880122, 52.46804634725496], + [6.196860577993221, 52.468540737147585], + [6.199746783388389, 52.46839664844544], + [6.202419775264512, 52.4687443384385], + [6.206097379327211, 52.46759268171101], + [6.211418557245791, 52.464854559599715], + [6.214243792437929, 52.464618175496156], + [6.218723831764552, 52.46483330605921], + [6.236257226229982, 52.46561680620827], + [6.245413304595136, 52.46387499230282], + [6.254283943710661, 52.46283865261595], + [6.267766062955676, 52.45951102812545], + [6.278238412857547, 52.457043169998144], + [6.278637125993321, 52.44744013328303], + [6.289947947271952, 52.44644474550345], + [6.289315782482352, 52.44380793115249], + [6.2917134951936875, 52.435894991364286], + [6.291580526738809, 52.435884056219514], + [6.291825244884093, 52.434721413556474], + [6.30183410377254, 52.435228485572594], + [6.3022628649539785, 52.43144361915565], + [6.303719400224482, 52.43163305032315], + [6.314438207141717, 52.43302817687808], + [6.31894400434299, 52.43206727547581], + [6.328522725865862, 52.42805945988987], + [6.334331142404185, 52.42449119893082], + [6.337109557477237, 52.42772257076909], + [6.343136408380367, 52.42597058464346], + [6.343344992407309, 52.4253101785042], + [6.349400256955223, 52.42485164670398], + [6.350057509883405, 52.42640736282205], + [6.355537208971998, 52.425954534684045], + [6.356254401573208, 52.42910436439898], + [6.368319125796104, 52.427751672450064], + [6.3803986427748285, 52.42779917523415], + [6.3805727436202835, 52.42981614378932], + [6.390315132103749, 52.42814451802502], + [6.405169501316328, 52.4155416016764], + [6.401364350000167, 52.40632752685965], + [6.394470405217801, 52.392206881497465], + [6.388649109389382, 52.38031259916226], + [6.3824746583646785, 52.38064931882253], + [6.357262196417719, 52.37703058304909], + [6.343082139489049, 52.37003199050397], + [6.335939378395434, 52.35620872361461], + [6.3335018654965465, 52.35139833687704], + [6.336206238850824, 52.34651610018144], + [6.342387949062181, 52.333169266962905], + [6.345390934447161, 52.32919590896275], + [6.350177263797337, 52.32406265552171], + [6.354836626726702, 52.319399369876884], + [6.3560156718717336, 52.31821878454417], + [6.3411937859580885, 52.30907848634992], + [6.326529854159441, 52.30163153874815], + [6.30611597869624, 52.30059757948242], + [6.2886075313827545, 52.30052407773767], + [6.2672385643398, 52.300804677018704], + [6.255641227683595, 52.3058035541979], + [6.2351334013060224, 52.314455162306004], + [6.235354999821735, 52.319820192074225], + [6.235842524540114, 52.32838918395713], + [6.232482696353335, 52.329607051611234], + [6.231878431211419, 52.33561284195693], + [6.235665251931249, 52.339902349182225], + [6.224235303981408, 52.34649642092305], + [6.222961220056546, 52.3472367045292], + [6.196858913012545, 52.3521116409756], + [6.1969395198070325, 52.35367529637249], + [6.195295018484011, 52.35546694420315], + [6.19621303304867, 52.358613367065594], + [6.194658392575934, 52.358645944964344], + [6.190710527080616, 52.36175847409655], + [6.190876725935169, 52.36299507845786], + [6.188962414384572, 52.36426568854867], + [6.188498680365478, 52.370926973494534], + [6.189455837645557, 52.37574588359955], + [6.1954672518867895, 52.37417504203545], + [6.196690453407129, 52.372214425725794], + [6.2001638674870945, 52.37112212625931], + [6.201337160066388, 52.37139477206684], + [6.201479920523599, 52.37412012571424], + [6.200336824327622, 52.375003717977165], + [6.201959228487404, 52.375580344745764], + [6.201974669850291, 52.37586593856745], + [6.2019712360574575, 52.37594039146186], + [6.202492220912183, 52.37621833322629], + [6.203295661667066, 52.37619315509003], + [6.20371533084796, 52.37735199130796], + [6.2027097725781655, 52.37713035198889], + [6.203503094553333, 52.37826174195034], + [6.201793993183575, 52.37958618987038], + [6.198675756485494, 52.3803172360316], + [6.201020372233218, 52.38030421121028], + [6.201606778579357, 52.38350773191392], + [6.2072993111666, 52.38264235291967], + [6.207571875038123, 52.3838617103044], + [6.206520529778066, 52.384705662346356], + [6.202354568984085, 52.38518002137705], + [6.2039876633336, 52.38689911208021], + [6.216403379959099, 52.38638792606079], + [6.218446413591999, 52.38527043273342], + [6.221799309337976, 52.38735532296431], + [6.2264895137768255, 52.388142634572326], + [6.229769607687927, 52.389728113532236], + [6.2308644202248855, 52.39191387131481], + [6.232120025204467, 52.39331292399072], + [6.231988781865309, 52.3947937978726], + [6.230048596674207, 52.39769719792246], + [6.2312329457457825, 52.397879503178075], + [6.225988950624358, 52.403168333159826], + [6.2215785424011845, 52.40908891112892], + [6.22385544306374, 52.41156207438384], + [6.230958350772745, 52.42349958398039], + [6.209895684732729, 52.42531641709234], + [6.207679675715228, 52.42551699305081], + [6.208341758727355, 52.42781553664802], + [6.2064830756224545, 52.42820954710689], + [6.196585732187393, 52.427110529606054], + [6.19349344538833, 52.42832420946453], + [6.192585672334338, 52.4309635637398], + [6.190762259757538, 52.43075503559073], + [6.191058063601994, 52.43268985422698], + [6.1774281033335425, 52.43114925162773], + [6.161281400695902, 52.44948804691577], + [6.1576807606987725, 52.45354103120509], + [6.154914837571916, 52.453183025745], + [6.152583212672961, 52.45828591787749], + [6.152396796224155, 52.461071284288536], + [6.147491915055964, 52.46573201554542], + [6.144145747001668, 52.467664729047115], + [6.151314629764652, 52.47108710111164], + [6.1522274667606816, 52.4708365217786], + [6.162495458066081, 52.47438835374955] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.14f77a8c-7eee-4d43-8133-641c6d0e438b", + "properties": { + "statcode": "GM0180", + "jrstatcode": "2024GM0180", + "statnaam": "Staphorst", + "rubriek": "gemeente", + "id": 38 + }, + "bbox": [ + 202981.63100000098, 510666.614, 218731.12099999934, 523026.6009999998 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.162579865414327, 52.691061151131976], + [6.164924734811394, 52.68888951156147], + [6.166352122354099, 52.68894517494627], + [6.168195568880411, 52.68813587662755], + [6.1696508990887065, 52.68612077048655], + [6.168972509145628, 52.68553331199313], + [6.162996113548568, 52.680061819242596], + [6.170132267268467, 52.67793605958009], + [6.183146848169665, 52.67506327446662], + [6.181932923846942, 52.67686820315921], + [6.184208083337609, 52.67720783251942], + [6.180548202771474, 52.681587873604734], + [6.18587068916535, 52.68250351349267], + [6.18786218502019, 52.67961374826101], + [6.191444463570348, 52.67931984915516], + [6.192054771478228, 52.67642647195286], + [6.194229772859433, 52.67662958473965], + [6.1944748306286765, 52.678825046860986], + [6.196477516221693, 52.68086575604889], + [6.201681519824245, 52.684620280616315], + [6.2039366252166515, 52.684666966263585], + [6.204984856643936, 52.68416104734922], + [6.206463368140239, 52.68485852581204], + [6.210181145336232, 52.685224203424134], + [6.2124995756807095, 52.68463293091413], + [6.212113741420614, 52.68530839976667], + [6.213743566252629, 52.68565283950407], + [6.214095681496453, 52.686315589871114], + [6.216584426166579, 52.68639284429754], + [6.217425732233944, 52.6855164248998], + [6.218402153883292, 52.686004547150304], + [6.219806801429319, 52.68570446725508], + [6.2187146943423, 52.68437727985371], + [6.221170383083431, 52.68347591959011], + [6.220993952363883, 52.68282761372562], + [6.222720663661625, 52.68268268076684], + [6.224905432004001, 52.682431151605826], + [6.227182079201267, 52.6812526239594], + [6.2276984721792354, 52.68172556647907], + [6.228231321524478, 52.68128635287253], + [6.228691677935881, 52.68164882826938], + [6.2306630805625485, 52.681185548995906], + [6.232650879322269, 52.68148643297869], + [6.234060829111597, 52.68023773530277], + [6.232925214914879, 52.67987050372584], + [6.23284313212624, 52.6791093537172], + [6.236807713437353, 52.678028818668444], + [6.237074549476974, 52.67754764204566], + [6.240503845977083, 52.67772866282829], + [6.2434989787382, 52.67878550377682], + [6.248365116115928, 52.67561679518583], + [6.24896575680243, 52.67390111747602], + [6.2473377246918185, 52.67277560279669], + [6.249200655354276, 52.67139681840893], + [6.250612398168625, 52.67186717778902], + [6.2502698661577005, 52.67109574972916], + [6.252001453259641, 52.669881372345905], + [6.254256084485587, 52.6701978742308], + [6.2547355861439495, 52.669578783803956], + [6.255079121221753, 52.670072004836946], + [6.255911664609813, 52.66960163547072], + [6.257419645720104, 52.67040757430456], + [6.258176249145111, 52.66981836486876], + [6.260535137853612, 52.67047782498569], + [6.2654885935790094, 52.66913909875021], + [6.2655011962008285, 52.667987742818426], + [6.265895500735187, 52.666780288866], + [6.270067118640723, 52.66479411548926], + [6.2733389092962035, 52.66491016015245], + [6.274513303199958, 52.66689796281049], + [6.276253934660228, 52.66731311349204], + [6.277350399376807, 52.6689305049876], + [6.277905351934542, 52.668539358943484], + [6.2790563942533755, 52.66905125691686], + [6.282704902858257, 52.6682192970857], + [6.284530862503196, 52.66715302335817], + [6.285490726718195, 52.66699179000144], + [6.285052513019399, 52.66539435294091], + [6.287226183041432, 52.664180645275486], + [6.287486929725603, 52.66345260092495], + [6.288269668275239, 52.663887389773514], + [6.28905617588351, 52.66324916190038], + [6.291946865009482, 52.662437314664515], + [6.295547777955921, 52.66232221252587], + [6.295195624925863, 52.66357751374167], + [6.2975629936264665, 52.666369434185995], + [6.299688873554443, 52.66583072375248], + [6.299676185312037, 52.66649693663593], + [6.30228807662636, 52.66642672274258], + [6.301889387898437, 52.66699686407892], + [6.302621769081127, 52.667346233027814], + [6.3058258401891845, 52.66623925016586], + [6.3096703738215405, 52.66675293159784], + [6.311659698958236, 52.66733871442144], + [6.312080466000435, 52.66805545919335], + [6.314103204466315, 52.66805816884363], + [6.31387525525934, 52.668688422294565], + [6.314821762135714, 52.66875079397737], + [6.314957066778227, 52.66942457250513], + [6.316816293861136, 52.66949348253278], + [6.316740213285884, 52.66989528755993], + [6.318960577669068, 52.66972123985545], + [6.319587166594433, 52.67039797519046], + [6.32252931668311, 52.67043781742093], + [6.3269381667911535, 52.66920694656369], + [6.3287114652180545, 52.666738531138684], + [6.328004446000201, 52.666131656029435], + [6.329290121716742, 52.665398458295165], + [6.328516813302949, 52.665378105782885], + [6.3276203506465425, 52.663717666444185], + [6.325857254160353, 52.662809812832926], + [6.325871335468251, 52.661154530180696], + [6.327224595200471, 52.660446807063785], + [6.32588363516166, 52.65970876890838], + [6.326340171654624, 52.658958165972216], + [6.327797712082432, 52.65869274594001], + [6.326241575437493, 52.65735319853709], + [6.32417526292608, 52.65201567810981], + [6.314748317920645, 52.62779140726244], + [6.303063686453506, 52.5971411487721], + [6.289302252555657, 52.59549059648621], + [6.287078450814586, 52.595207078458664], + [6.286326521801099, 52.596211786715166], + [6.283348597770805, 52.595723806759416], + [6.2838260321101185, 52.594795189690856], + [6.281273313752764, 52.5945052166423], + [6.274898164336966, 52.59370478811834], + [6.274776250788258, 52.59478754578486], + [6.270684793600693, 52.59498285810659], + [6.259130429434553, 52.59359371865821], + [6.258310868070171, 52.59202049720103], + [6.235739493377487, 52.58900039240113], + [6.224054532355998, 52.5875489833071], + [6.202137714617073, 52.58494850304464], + [6.1950936575025155, 52.58411097811348], + [6.193607343979044, 52.58432261877087], + [6.193562362312495, 52.58433293366352], + [6.182687251065596, 52.587809072944175], + [6.1770485973332265, 52.58772162883258], + [6.147601999296123, 52.58512115975731], + [6.147418545938212, 52.58440824205241], + [6.131377875758493, 52.58124629317216], + [6.127465878977827, 52.58675663156619], + [6.124031523287239, 52.59128260747238], + [6.125507639758204, 52.59249182444333], + [6.12405685728828, 52.5940565724531], + [6.1205285965860305, 52.597069433739165], + [6.11424486948282, 52.59999284473376], + [6.105847946643697, 52.603696310603155], + [6.105282770058597, 52.603433161980426], + [6.1030635874521835, 52.60565213149922], + [6.106229777507731, 52.60703472929941], + [6.1037009659050305, 52.612685506228615], + [6.106950859008251, 52.61483221844191], + [6.106413572832627, 52.61789437561478], + [6.107614345855544, 52.61797077302009], + [6.107476762532171, 52.618872772494036], + [6.1061585671177045, 52.61889746434633], + [6.10587205303513, 52.62082840235618], + [6.106727303620188, 52.62084526305677], + [6.106665937914647, 52.6214744897583], + [6.105093962338364, 52.62149404718915], + [6.1039305790630785, 52.625569411914086], + [6.0983478944639575, 52.62555485540957], + [6.095916658717092, 52.63094119603649], + [6.097238405747686, 52.63604363253505], + [6.097382649127409, 52.63618197823825], + [6.1019320316696, 52.64062020845352], + [6.10299942710835, 52.64674461640841], + [6.104124478225338, 52.64692895936637], + [6.104470934764707, 52.64792571198723], + [6.103832594665219, 52.65614053651506], + [6.104291289217833, 52.657119780543596], + [6.106389547096149, 52.65679524596739], + [6.108082779736409, 52.658451065468846], + [6.120271324186645, 52.66508959000123], + [6.119566086395519, 52.667936868418444], + [6.122266725758583, 52.6684318949196], + [6.123011939275702, 52.66952197354394], + [6.1253998057012495, 52.67027353720253], + [6.127569571175947, 52.67193716428029], + [6.131083982964882, 52.6718043553369], + [6.132834292114023, 52.67342435244011], + [6.135987617799343, 52.67463436788254], + [6.135427634660672, 52.67683727934943], + [6.1361294812794185, 52.67725713307125], + [6.141274282287652, 52.67863773826635], + [6.144840004786589, 52.680072650461675], + [6.150160877734947, 52.68303037598489], + [6.153691559392889, 52.68624885679535], + [6.154790092137812, 52.68820618467642], + [6.154498489224375, 52.69041057729054], + [6.155776700383235, 52.69105696681803], + [6.1589760417018855, 52.69215417824358], + [6.162579865414327, 52.691061151131976] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.aabb7064-bf76-40aa-9249-ee768dd0692f", + "properties": { + "statcode": "GM0183", + "jrstatcode": "2024GM0183", + "statnaam": "Tubbergen", + "rubriek": "gemeente", + "id": 39 + }, + "bbox": [ + 242245.38800000027, 483289.0170000009, 261223.943, 499764.46400000155 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.757140122069483, 52.463202199799525], + [6.774586592321228, 52.459600689779734], + [6.822447393009989, 52.459823286078276], + [6.831788023722416, 52.459961220454545], + [6.844733448760588, 52.45918841848684], + [6.854297587608971, 52.45970625643426], + [6.852541581298988, 52.44991376272379], + [6.853957517304807, 52.450134103792415], + [6.861816040462378, 52.451357971957535], + [6.889062124671079, 52.44654509074247], + [6.906079586162075, 52.44224300075534], + [6.941657490692286, 52.43542573669729], + [6.9473003727563105, 52.43662141454267], + [6.9492238153089625, 52.43286512438869], + [6.947238762117441, 52.432836297249004], + [6.938775843217487, 52.432722506560836], + [6.928525347532091, 52.434148359525345], + [6.924377907707428, 52.43412972296307], + [6.896910263202973, 52.43278871343515], + [6.891191397620152, 52.43202821324314], + [6.85347777939911, 52.42707072481646], + [6.851507051456183, 52.414571976417626], + [6.8565920059102305, 52.410451077555145], + [6.86234693927242, 52.40765573975596], + [6.862597986738931, 52.40294195918969], + [6.863567341360575, 52.38863775619793], + [6.8635845378168785, 52.36373119988509], + [6.855673690060824, 52.360287737258446], + [6.851789003897879, 52.36216867888156], + [6.835792821079129, 52.362624708644404], + [6.8173872243512585, 52.36501892005989], + [6.806833424834809, 52.36221746822673], + [6.797601719964498, 52.36129685789074], + [6.783394440346114, 52.360106090565594], + [6.778322385786173, 52.35021210926944], + [6.773978606036313, 52.346563274964], + [6.76263436159351, 52.34343709948581], + [6.760577181470427, 52.34194281279809], + [6.759035352559289, 52.33206059951326], + [6.753772201608638, 52.33004426030067], + [6.750679165360332, 52.329665347239086], + [6.747608842315452, 52.33248013088451], + [6.743684933390753, 52.33610946548995], + [6.734497262467108, 52.33935478228875], + [6.720845661946218, 52.34120753596724], + [6.71364140191331, 52.34226635281036], + [6.709740892061071, 52.343434583548124], + [6.712006807775438, 52.345398957387786], + [6.714716687048913, 52.3463151096287], + [6.714287526401795, 52.34695350017563], + [6.720563189813223, 52.35232912666586], + [6.719693372965668, 52.36128896723627], + [6.718049386822266, 52.36216537353093], + [6.716020752305507, 52.365869445987755], + [6.715349867227729, 52.367325781942], + [6.712709950091077, 52.3739566517252], + [6.712663774862517, 52.37426413454984], + [6.713465297475713, 52.37648907192284], + [6.708233617930368, 52.37689525766367], + [6.707083304866495, 52.37718449078966], + [6.706728484845194, 52.37736673446147], + [6.705302736512246, 52.37813180463351], + [6.702805712077084, 52.3825599375467], + [6.701040741985142, 52.38564733245563], + [6.697881643088238, 52.39127403229996], + [6.69863530341627, 52.39374107104791], + [6.675576772461218, 52.41301849949177], + [6.675442245886154, 52.413942082574486], + [6.669673052662341, 52.417367497217164], + [6.672551305171656, 52.422084620846356], + [6.6750745628476365, 52.4228522776301], + [6.676548611569541, 52.42365478946915], + [6.674235447369019, 52.42435472178648], + [6.674207981713049, 52.424896537242795], + [6.675330471225697, 52.42701749550147], + [6.6778873429666445, 52.42799329405014], + [6.677268163320242, 52.429870357798485], + [6.673518592467754, 52.434494695400026], + [6.672586882633802, 52.439034773780335], + [6.673333944839595, 52.44145099792103], + [6.676441066623186, 52.4441410255345], + [6.677777589932028, 52.44414906193962], + [6.682962223462229, 52.44627230149097], + [6.6893224499598976, 52.447045649490924], + [6.692249637990119, 52.447427209948444], + [6.694832353411791, 52.45081117943309], + [6.6961160316565635, 52.451278292964645], + [6.696577631844474, 52.45173455086975], + [6.6975761664620395, 52.451644944261126], + [6.6994208769098025, 52.453811535185885], + [6.698916990088534, 52.45679518259775], + [6.701594666912634, 52.46116270102449], + [6.706727820310108, 52.466750707112254], + [6.710082527349976, 52.47059921890725], + [6.710678501293691, 52.47118453104439], + [6.717706685885537, 52.47813155024854], + [6.720459295039258, 52.4771793621138], + [6.723771405198993, 52.47701748288111], + [6.752734435075178, 52.46411084134566], + [6.757140122069483, 52.463202199799525] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7ab26319-ba6a-4e0e-acb4-b70d6be5e90e", + "properties": { + "statcode": "GM0184", + "jrstatcode": "2024GM0184", + "statnaam": "Urk", + "rubriek": "gemeente", + "id": 40 + }, + "bbox": [ + 168820.08199999854, 516718.1812000014, 173141.79800000042, + 521782.86100000143 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.604309784155179, 52.683236907880044], + [5.604310169745631, 52.68231010889479], + [5.606929160685917, 52.682416483416915], + [5.609528629378928, 52.6804201386654], + [5.612623271173816, 52.68134598028776], + [5.625802827878396, 52.682606804970455], + [5.6437167765347835, 52.68261444545843], + [5.641588498304278, 52.67801481510851], + [5.65537914606336, 52.665950422340636], + [5.642831142091217, 52.66055112414126], + [5.650015175488625, 52.65431081708586], + [5.648865315393383, 52.6495509053528], + [5.63613078433132, 52.64961181495836], + [5.636278529612661, 52.647219657019036], + [5.641100662456051, 52.64254774005844], + [5.630442487622728, 52.63840273811259], + [5.629891057029755, 52.63771668963607], + [5.615913876697082, 52.65062894705796], + [5.601269563024369, 52.65703114871151], + [5.60257806281172, 52.65745982573123], + [5.59874822608014, 52.657548512041195], + [5.598759406400386, 52.657642082911295], + [5.602723832538812, 52.657724141875114], + [5.602834587060631, 52.658046569403574], + [5.6021359246392315, 52.658307487157686], + [5.602063255264286, 52.660224162764216], + [5.6001255382389115, 52.660153043236186], + [5.6001778024824445, 52.65890089444564], + [5.597353082900861, 52.65880039829146], + [5.596642328875401, 52.65932262935715], + [5.598399917395801, 52.659397993908414], + [5.5982957275744685, 52.660244448044594], + [5.596490753187478, 52.6601958684972], + [5.59649146358679, 52.660344988680556], + [5.599100378076233, 52.660414921181385], + [5.599233295798659, 52.66087742784683], + [5.599105325533831, 52.6609871241685], + [5.59637763521263, 52.66067901422483], + [5.5932216852191035, 52.66083495691573], + [5.593210035211025, 52.66062312819971], + [5.595640180079856, 52.66029481959582], + [5.597963282262283, 52.65647828434093], + [5.597840052343067, 52.65644678588031], + [5.595763409330225, 52.65891326848606], + [5.591471922281917, 52.66098727172299], + [5.591899020985444, 52.66293460371034], + [5.59272747995421, 52.663074707298385], + [5.5931147137071715, 52.66988539922733], + [5.5933195507158935, 52.676280550744934], + [5.594311782780533, 52.67627449147266], + [5.59455059604765, 52.683299949318524], + [5.604309784155179, 52.683236907880044] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.da89aff2-0c03-4719-931b-35d887d08b46", + "properties": { + "statcode": "GM0189", + "jrstatcode": "2024GM0189", + "statnaam": "Wierden", + "rubriek": "gemeente", + "id": 41 + }, + "bbox": [ + 228690.3299999982, 476363.29300000146, 239888.8359999992, 492852.75 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.598851199321966, 52.38365830018238], + [6.609367507201983, 52.36654556089908], + [6.610926299013886, 52.36597044127847], + [6.613410046731013, 52.3651045739336], + [6.615376570812541, 52.36284471338351], + [6.615376591286816, 52.36284465744244], + [6.614932777222186, 52.358892851215515], + [6.61405270142147, 52.35626876300805], + [6.612403324312162, 52.35573666835097], + [6.610202393791241, 52.354308501487594], + [6.608244258692157, 52.349111994720296], + [6.604673379653169, 52.344897743570336], + [6.597704798772815, 52.34289998533877], + [6.598957852992693, 52.34015798724815], + [6.605510938604294, 52.33449612448476], + [6.617276366347051, 52.32827992318197], + [6.619020265464729, 52.326145136403134], + [6.612505696835095, 52.31978351949405], + [6.608293220441851, 52.31590085717733], + [6.604762769470458, 52.31222533496391], + [6.609221588601654, 52.31247216078378], + [6.610136420272688, 52.31333907734063], + [6.612796224297351, 52.31256720583966], + [6.614914160604051, 52.31121843433547], + [6.614008443642664, 52.30984185849328], + [6.616053644845205, 52.30992721201476], + [6.616782015242801, 52.30910180471195], + [6.611103886704708, 52.30752640480498], + [6.618747460339712, 52.30617548917087], + [6.631782330979013, 52.301779909666976], + [6.626066252019887, 52.28997394757922], + [6.612131467267341, 52.27691949660604], + [6.605397665474524, 52.27072052174518], + [6.595148415918605, 52.27119855107201], + [6.586964248678136, 52.27037030618117], + [6.574099347164196, 52.269317287881556], + [6.568118126498174, 52.270188441383866], + [6.562252558619825, 52.274358897147906], + [6.554008645759348, 52.283312959934406], + [6.553438515771832, 52.28392909086967], + [6.550262844131771, 52.28736562655461], + [6.549962791706602, 52.287801969683336], + [6.552291041713838, 52.2949473441962], + [6.553377622455152, 52.29492464031731], + [6.553539100385819, 52.2972256071575], + [6.552291160195492, 52.30338628289319], + [6.550690973452037, 52.30957819905245], + [6.549920923685692, 52.31128079615497], + [6.549031901133782, 52.312418774980245], + [6.549041046560348, 52.31251536247821], + [6.545089133828128, 52.31837510713642], + [6.539651756831884, 52.31580314795428], + [6.538188739717644, 52.31552350191615], + [6.536189176915876, 52.31564543516184], + [6.533099102327034, 52.31666711793215], + [6.532513123328569, 52.31721945140743], + [6.531292858457287, 52.318741496547254], + [6.524671365143334, 52.32563022334538], + [6.524120337251613, 52.32401154552449], + [6.5231376302449755, 52.32383358119582], + [6.5180600805882225, 52.324407549818055], + [6.5179084929610305, 52.32517443474947], + [6.499759314713893, 52.32355514346978], + [6.4993272773715205, 52.323521662170876], + [6.495125178743357, 52.32389278424809], + [6.468189488334605, 52.32646224556003], + [6.486467629025591, 52.342561577062675], + [6.48799274758472, 52.34349990349775], + [6.488144773073731, 52.343595466530296], + [6.486608697554524, 52.34520866736147], + [6.489133616062953, 52.345954745785], + [6.49079511151025, 52.349355355047784], + [6.495977862936453, 52.34995450144455], + [6.501172166528022, 52.352852666124356], + [6.505839390302696, 52.352450144119814], + [6.506663206535952, 52.355276386459586], + [6.508410401616216, 52.35520693570807], + [6.518872558042191, 52.35516113595422], + [6.520792789918546, 52.36141489211804], + [6.512349393607213, 52.361919455175546], + [6.512439144875102, 52.36256945369136], + [6.499058628549145, 52.363561928864925], + [6.49607786133983, 52.36794289550288], + [6.495516282512911, 52.37618035203414], + [6.512606534671771, 52.38183956637461], + [6.513789831184923, 52.3817020944095], + [6.508538770855602, 52.3921522401081], + [6.510224576681392, 52.395316899813956], + [6.516013219529922, 52.4061281384506], + [6.575951935564895, 52.417513498188924], + [6.58130905027823, 52.40968042458597], + [6.596854734093911, 52.38664060489173], + [6.598851199321966, 52.38365830018238] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.8acd6111-c056-49ba-81a9-f72dc698c1d0", + "properties": { + "statcode": "GM0193", + "jrstatcode": "2024GM0193", + "statnaam": "Zwolle", + "rubriek": "gemeente", + "id": 42 + }, + "bbox": [ + 196809.34200000018, 494995.01999999955, 210840.05099999905, + 511433.8379999995 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.193607343979044, 52.58432261877087], + [6.1950936575025155, 52.58411097811348], + [6.202137714617073, 52.58494850304464], + [6.2056575331123485, 52.575080732946766], + [6.209478422434221, 52.56852487224398], + [6.210810675187714, 52.56779776206458], + [6.1969668762642, 52.54723793012955], + [6.189631143387438, 52.536160048622364], + [6.192970288138636, 52.531966241057845], + [6.18744182177646, 52.52477921262353], + [6.187851469919561, 52.52351559710841], + [6.186139752638146, 52.52268972805605], + [6.186110252659775, 52.522672328900555], + [6.183109316363379, 52.52088731536005], + [6.182577226537656, 52.5195113774065], + [6.182964845597427, 52.519448891971194], + [6.1829534448714885, 52.51933538328339], + [6.173321981130597, 52.518830210365216], + [6.1840709835981205, 52.50774106082849], + [6.187717511365041, 52.50055643188002], + [6.189088413062289, 52.49900727411306], + [6.196824735380738, 52.49553438372563], + [6.197911998892591, 52.49575710347131], + [6.1997125577653796, 52.49527428954124], + [6.199945691608049, 52.49317658275233], + [6.198742894502538, 52.49281697160061], + [6.200167477860746, 52.490881878174314], + [6.200966180005344, 52.491056513194295], + [6.196520019672795, 52.48967949401871], + [6.193683040071976, 52.48625077119431], + [6.192387964276609, 52.48561548576724], + [6.193667448588141, 52.48296145385069], + [6.192136572383939, 52.48172792748348], + [6.189527999001585, 52.48068350244615], + [6.182832283341695, 52.48080663555173], + [6.182199784302469, 52.47909521841821], + [6.177529290253977, 52.47982237850151], + [6.177009958567701, 52.47940995929391], + [6.177660965265117, 52.47785638574561], + [6.174727284609129, 52.47821285351269], + [6.173583986279521, 52.47680285294672], + [6.1713227813287, 52.4772576633729], + [6.162495458066081, 52.47438835374955], + [6.1522274667606816, 52.4708365217786], + [6.151314629764652, 52.47108710111164], + [6.144145747001668, 52.467664729047115], + [6.147491915055964, 52.46573201554542], + [6.152396796224155, 52.461071284288536], + [6.152583212672961, 52.45828591787749], + [6.154914837571916, 52.453183025745], + [6.153133681472903, 52.45022993770134], + [6.1476759233260045, 52.44444107616649], + [6.140435156802589, 52.44341234577729], + [6.139660018262937, 52.441617146549326], + [6.137075090458907, 52.44076154828361], + [6.135907263591901, 52.44156582997247], + [6.130271761843357, 52.44161198892191], + [6.120409810751315, 52.44230948090474], + [6.109580016796527, 52.440530727870694], + [6.105023646038435, 52.44258657106778], + [6.102294635813016, 52.44577189902508], + [6.101985938318848, 52.4477999468775], + [6.103545928864001, 52.453963716689124], + [6.101701232463003, 52.46634727491938], + [6.099146867953485, 52.47031050010771], + [6.094246417841711, 52.474110997749996], + [6.089267535301642, 52.47681125931668], + [6.07642127709086, 52.48022335003366], + [6.071425339381989, 52.482107475450064], + [6.0663711842107215, 52.485170772318675], + [6.063430334918033, 52.488053192485964], + [6.0617741985307365, 52.49039817764613], + [6.0583975506247265, 52.496003131338924], + [6.054220198457415, 52.49978708317915], + [6.046187366442828, 52.50386063899374], + [6.04050911410419, 52.50625770803496], + [6.027857495881694, 52.50960619807542], + [6.018807127547648, 52.513879379335826], + [6.015065653767018, 52.51790915506756], + [6.014764752431457, 52.52045702280727], + [6.01550998014302, 52.522771394253695], + [6.018973429985706, 52.526006425241995], + [6.023643032622064, 52.52736569183377], + [6.0250121198829305, 52.526296644234236], + [6.03017053109356, 52.52675435692329], + [6.0300870436203144, 52.530824203991145], + [6.030454273570708, 52.5380608755455], + [6.019652603760377, 52.54189427806975], + [6.0069849323822355, 52.54553718615887], + [6.003619006054878, 52.550391499831974], + [6.033037539277, 52.55940346816955], + [6.033545396691586, 52.55902989043918], + [6.063153713861562, 52.56727990860881], + [6.070155946563593, 52.55822620310511], + [6.073544343441076, 52.559176056556836], + [6.076162810864478, 52.55696278948193], + [6.074185753999815, 52.55640235761067], + [6.081128240014147, 52.55384723215074], + [6.089399557323757, 52.551840635120534], + [6.092411044387918, 52.553516304389646], + [6.093350399964183, 52.55578797399172], + [6.09768412741948, 52.55862943978217], + [6.100786796544726, 52.5637616988343], + [6.10367525240335, 52.56735249207014], + [6.110059635204115, 52.56741236092266], + [6.109790502374963, 52.56111455065307], + [6.1139621132150035, 52.560810432067285], + [6.118080954426575, 52.557397494018275], + [6.125719305357086, 52.556266117855884], + [6.127817870526294, 52.55672578561433], + [6.140527239379674, 52.55210243897252], + [6.166814244979877, 52.56525215381562], + [6.158812328748678, 52.57540570752756], + [6.157425463899858, 52.58077670157829], + [6.155069509345821, 52.582706345054284], + [6.147531514122069, 52.58380048532725], + [6.147418545938212, 52.58440824205241], + [6.147601999296123, 52.58512115975731], + [6.1770485973332265, 52.58772162883258], + [6.182687251065596, 52.587809072944175], + [6.193562362312495, 52.58433293366352], + [6.193607343979044, 52.58432261877087] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.1a5432cf-67d2-4ed0-ac30-3d3c4e67b9fc", + "properties": { + "statcode": "GM0197", + "jrstatcode": "2024GM0197", + "statnaam": "Aalten", + "rubriek": "gemeente", + "id": 43 + }, + "bbox": [ + 229208.9759999998, 430030.82400000095, 243171.15100000054, + 443533.46400000155 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.559352360678049, 51.97436406328068], + [6.569683620795245, 51.972157949900186], + [6.57510420080702, 51.973224562721086], + [6.589441580272451, 51.97170941322686], + [6.591743208814085, 51.97212538496613], + [6.59254114773827, 51.97084142299616], + [6.59843313684548, 51.97114320259144], + [6.604276018872948, 51.97027616351424], + [6.628720851311504, 51.96728146745501], + [6.633928395709412, 51.96566957027836], + [6.638915777610612, 51.962547012630054], + [6.639225785727158, 51.95939749914941], + [6.629071271713175, 51.9500920252273], + [6.633068375245197, 51.94768514764022], + [6.633739843554291, 51.945864084007965], + [6.634323941153465, 51.9450131842477], + [6.633705976635607, 51.93971521386038], + [6.632007921472797, 51.93781689562885], + [6.634223381345426, 51.93737151316231], + [6.634152704488429, 51.93529988632952], + [6.639180304074016, 51.932466279521044], + [6.6459737885061365, 51.929605606812814], + [6.646943836987335, 51.92939238020347], + [6.6494836139535005, 51.92890658837446], + [6.651292619582077, 51.92854228170433], + [6.653257887822367, 51.92911160650314], + [6.653653150850655, 51.930266952569966], + [6.656648849702669, 51.930179885931956], + [6.657601232783928, 51.9284490354018], + [6.6578736340866795, 51.929105960042435], + [6.659004006510954, 51.92901938225924], + [6.659071894538409, 51.92584292556997], + [6.657985315651972, 51.926028038079615], + [6.65803059506445, 51.92433178986908], + [6.660678598425524, 51.922228224086574], + [6.662178571876387, 51.92053774433869], + [6.66172097481835, 51.92035100496299], + [6.663126570683491, 51.91979368222509], + [6.662843438469835, 51.9185096718727], + [6.660766758893804, 51.91836883924646], + [6.661613400955566, 51.91690583354386], + [6.660587680797789, 51.91670619383621], + [6.661009808617279, 51.91560337866725], + [6.6629426865064705, 51.91573658065351], + [6.664285561840615, 51.91648084344733], + [6.666992717701558, 51.91430582918446], + [6.6687333886648466, 51.91386339037778], + [6.654631990553095, 51.90894020871241], + [6.637717053276859, 51.904454672018026], + [6.634173722132442, 51.90100537838871], + [6.627695447028115, 51.900857522139816], + [6.62530991865522, 51.90194187696122], + [6.619635210218049, 51.90066365347522], + [6.60432131612168, 51.897258545284096], + [6.585779943263816, 51.89408197655859], + [6.569130128212923, 51.88810936646486], + [6.563869996315865, 51.88548906866596], + [6.562778432214578, 51.88441134788805], + [6.560864767382655, 51.88401564207919], + [6.560976872392058, 51.882482750640534], + [6.560337094899848, 51.88219545173357], + [6.558812461684932, 51.88252656841631], + [6.55727966789363, 51.88177775955421], + [6.555862873217487, 51.881804686757604], + [6.555328876344578, 51.88343766545065], + [6.552717227451847, 51.88405128659267], + [6.552425542958566, 51.886191419205296], + [6.548363006476167, 51.88534665567921], + [6.549897654760957, 51.88338999847264], + [6.549250507587731, 51.88314293875841], + [6.547505243951258, 51.8833206335843], + [6.54529184656864, 51.8846318772047], + [6.544150632829223, 51.88460979446393], + [6.539898610125058, 51.88091618743233], + [6.529205480093862, 51.876815958905425], + [6.5298859373453, 51.87598794433086], + [6.524476721812429, 51.874050973911274], + [6.524572489435438, 51.87369224536588], + [6.518288603962018, 51.873117152400354], + [6.515609088322875, 51.87352138320209], + [6.514577679847056, 51.8731257768303], + [6.511547528598235, 51.8708597836683], + [6.504470649517979, 51.86855559042241], + [6.5031931126838485, 51.86763360834815], + [6.501060686387857, 51.86800009924325], + [6.5022078990664935, 51.86470524071598], + [6.500290982397377, 51.86227238771411], + [6.4879226087271, 51.859061449374806], + [6.483977826213171, 51.857560080649854], + [6.4825123476972735, 51.85683604784303], + [6.4808799741140035, 51.85693460927776], + [6.478233017602964, 51.8568799314951], + [6.477053564275517, 51.85665960057121], + [6.473895146104566, 51.855474465993375], + [6.472507803638053, 51.85382302023723], + [6.464735008145797, 51.855162375534725], + [6.464383725104011, 51.85528728849419], + [6.468127068120608, 51.86034683320025], + [6.468402112935504, 51.86417626951205], + [6.471285485357654, 51.864525985520515], + [6.471867093914537, 51.866075648967126], + [6.4718347990766585, 51.86896255112124], + [6.4743250902580405, 51.86945631439381], + [6.475314218470408, 51.870660622516375], + [6.477872648946406, 51.87175825363167], + [6.477979079904538, 51.871851957824866], + [6.478467876503226, 51.87230910566429], + [6.48097482048067, 51.87407435886255], + [6.483499591105689, 51.877416316394026], + [6.484207484987974, 51.87896844436585], + [6.481900968404168, 51.88341539163504], + [6.480608924824375, 51.88426264193764], + [6.479170182671139, 51.88924249350133], + [6.479994004599408, 51.89433633406081], + [6.476064399466023, 51.90197250804913], + [6.47235182293651, 51.90735331308674], + [6.482710100967107, 51.910259874729], + [6.488668619028142, 51.91273170786119], + [6.487112555598273, 51.91408589505701], + [6.491174765681643, 51.91564133342972], + [6.490659276237444, 51.917171047693124], + [6.492576569086823, 51.917409714590775], + [6.493233612612748, 51.92021742211264], + [6.492359022286169, 51.92593000629384], + [6.494518949447916, 51.927120834376986], + [6.49708941155619, 51.929599583592264], + [6.495579932889181, 51.93028759819829], + [6.503127506320403, 51.939313132155746], + [6.500979114335893, 51.93950428280805], + [6.502966024105521, 51.941284578319475], + [6.503453559384543, 51.94402280985546], + [6.504780558880395, 51.94598432311395], + [6.517186023291516, 51.94800762330214], + [6.518641761752138, 51.95117125789601], + [6.51861382011923, 51.95346769852886], + [6.5198322401889195, 51.95556266249584], + [6.532828982006827, 51.96235348008142], + [6.527269414311489, 51.966023555636454], + [6.54738532968745, 51.97276676510939], + [6.554528264486108, 51.97375766433591], + [6.559352360678049, 51.97436406328068] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.200acf45-5e29-4b5d-980c-22fa78063710", + "properties": { + "statcode": "GM0200", + "jrstatcode": "2024GM0200", + "statnaam": "Apeldoorn", + "rubriek": "gemeente", + "id": 44 + }, + "bbox": [ + 178166.35500000045, 454048.0329999998, 202324, 477688.0210000016 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.989364401734886, 52.27403484212979], + [5.993370263840441, 52.273931258541886], + [6.009163006032163, 52.27633819631726], + [6.0288634281547955, 52.27681295248157], + [6.030398586714059, 52.27620475947512], + [6.031255789760934, 52.275235533084306], + [6.029761523965568, 52.27261406827065], + [6.028927090111891, 52.27232384705775], + [6.028530879587821, 52.270985709994115], + [6.031044814705188, 52.27092474183553], + [6.030312504956471, 52.26923251694326], + [6.0343520141875375, 52.26910675486594], + [6.0363946561088575, 52.26853038275708], + [6.034848713987116, 52.265517300438994], + [6.037684360100976, 52.26360613224407], + [6.03749347739665, 52.26092048765269], + [6.036505692044429, 52.25948955630474], + [6.035801681883514, 52.25951330554958], + [6.035149233682923, 52.258314712671286], + [6.031769389568031, 52.25855051658419], + [6.031159420317731, 52.25316410522408], + [6.028465758197934, 52.248657754179646], + [6.0248015589124915, 52.24893648404343], + [6.027338256895811, 52.24581313875793], + [6.028399305726555, 52.245387893316725], + [6.027888696803561, 52.24486061348688], + [6.02892726730643, 52.24439042806924], + [6.026505714215332, 52.24290439444955], + [6.02833142811803, 52.241679943420856], + [6.028471822217859, 52.23904313341269], + [6.032545253515944, 52.23559061990534], + [6.0344085076831355, 52.234305072066526], + [6.0360417444601095, 52.2319173180146], + [6.03497286803569, 52.23139039299067], + [6.0336396810776565, 52.23151481417512], + [6.0342394675138005, 52.23134514547518], + [6.034461536854131, 52.22778550138436], + [6.033424531333754, 52.2240795659341], + [6.035463963559445, 52.22448109888938], + [6.040898977255109, 52.22413367974404], + [6.042407766056562, 52.222470961348954], + [6.046909209596206, 52.22136771770033], + [6.046866423731084, 52.2204430874695], + [6.048240655348667, 52.21642437120053], + [6.047908006173972, 52.21300403456508], + [6.050243832158674, 52.21001947026289], + [6.053745724663353, 52.20087484212126], + [6.05728532825802, 52.19665953119342], + [6.058250901317552, 52.196171169512155], + [6.05823823178356, 52.19593494355743], + [6.056092737464672, 52.19605513490605], + [6.053873810103225, 52.19499939860066], + [6.053169416303023, 52.19261344709259], + [6.051069609041412, 52.18875164854775], + [6.0509730178963075, 52.187141426618055], + [6.049389201932998, 52.18520981354625], + [6.05012508264422, 52.183287566117635], + [6.0516362727636475, 52.182142384392336], + [6.053806835955865, 52.18135206643489], + [6.055344606428409, 52.17949276940495], + [6.0597942092327015, 52.17622074521055], + [6.061354709155344, 52.17394547117726], + [6.062453253482905, 52.171712992079], + [6.062863031919311, 52.17088837322129], + [6.0656940895881295, 52.16522140025123], + [6.065806828116059, 52.16464845043387], + [6.066422521644568, 52.16152410428195], + [6.066245211002747, 52.16101995648831], + [6.064457977051704, 52.158326211355565], + [6.064256944460848, 52.157384657531324], + [6.067383680694574, 52.15391053969521], + [6.072669196697006, 52.15006726659903], + [6.0745437076009585, 52.14838734096871], + [6.074369546183499, 52.1473009117583], + [6.076067282802089, 52.14393807421182], + [6.078484116739825, 52.13887816893655], + [6.0726674803865475, 52.13534278581385], + [6.071392163177722, 52.13457239702054], + [6.069622179059301, 52.131304933137415], + [6.0517261391884745, 52.124477215732426], + [6.051546065364816, 52.124397395099706], + [6.047646129098647, 52.11919467380289], + [6.043172035245227, 52.11690818138163], + [6.040579654128238, 52.1145671053156], + [6.041129965709853, 52.1123714247214], + [6.0358177648153095, 52.10946613826532], + [6.035437015657865, 52.107639915955886], + [6.0352269340241245, 52.10717206640528], + [6.034211169487513, 52.10612916694877], + [6.033908259645589, 52.104191308977406], + [6.0348252806046805, 52.102899783634975], + [6.032470630854266, 52.10150519517405], + [6.034258649850791, 52.098345607119995], + [6.034053260403591, 52.09572386986403], + [6.031593798352504, 52.09560566040909], + [6.017389565157608, 52.08301880646773], + [6.00884860071436, 52.07401418894942], + [5.990479828993614, 52.079164178616075], + [5.977042777760792, 52.078309690743765], + [5.9646459495735495, 52.07632221518741], + [5.955930934684606, 52.07333855085838], + [5.946102762638743, 52.077890530037294], + [5.948215164721406, 52.09083383283967], + [5.951462985033463, 52.09989296845668], + [5.946184516961569, 52.09929973091724], + [5.927262683026022, 52.10026555491563], + [5.911470044900228, 52.100309532891906], + [5.900104016053991, 52.103784692036875], + [5.893785549400683, 52.10477533312274], + [5.883449226341566, 52.10634215489418], + [5.876268642394949, 52.11446092594845], + [5.874177874075754, 52.11667641075431], + [5.864761898673804, 52.12554426735608], + [5.864352665496038, 52.12699316276626], + [5.864209435389571, 52.12755649676305], + [5.862318549091528, 52.134788021395835], + [5.861138340595496, 52.14526117524806], + [5.859545359497646, 52.14874944048515], + [5.8457612817056415, 52.15160949653408], + [5.809843139787749, 52.151414717165295], + [5.80964644818657, 52.166691788848574], + [5.801959077793385, 52.177363792589524], + [5.811932329665303, 52.18487821825886], + [5.79965717137997, 52.19465179722558], + [5.796260206690072, 52.19634014847286], + [5.79202534890851, 52.19698651819513], + [5.750584685576007, 52.19373065320599], + [5.741074691225757, 52.20187935266126], + [5.730764536118621, 52.208599244773986], + [5.72859381665297, 52.21554741831133], + [5.727435343736686, 52.21929828616951], + [5.741673356110947, 52.21988158194159], + [5.743028772941623, 52.22349001745303], + [5.738213748850901, 52.23157869397622], + [5.733358797251491, 52.231772572165646], + [5.730915018028602, 52.23156865961302], + [5.729553169271979, 52.23892189998934], + [5.726388866191383, 52.242503060872195], + [5.751679291194089, 52.24608172038766], + [5.76144867515114, 52.248303827505374], + [5.749227317243409, 52.26827292484425], + [5.751263267222115, 52.26956121944364], + [5.7729952970678635, 52.27035419051841], + [5.780038167143696, 52.27060182802962], + [5.792457585185078, 52.269976540441924], + [5.797241624026286, 52.26969573896557], + [5.802232394297611, 52.27049866624772], + [5.809989428884197, 52.270304208881974], + [5.82142665182071, 52.27267188817278], + [5.829737860461667, 52.27127861325733], + [5.84271841738469, 52.26714586059123], + [5.8508111524871405, 52.26869537043049], + [5.854520744567981, 52.26010225981249], + [5.860891915219734, 52.25580705486002], + [5.867387958308065, 52.25987161980493], + [5.879592532947868, 52.26499126677916], + [5.922903996438947, 52.271987928671415], + [5.936211286369146, 52.27441929471492], + [5.957921465392868, 52.272367005346815], + [5.959604099373196, 52.272461314861026], + [5.973889794601042, 52.273209063044796], + [5.981137860731394, 52.280704734706305], + [5.982169756588, 52.28382551075193], + [5.985357342660927, 52.28459382204594], + [5.98574379777118, 52.28566941033259], + [5.991404670962686, 52.28554178842942], + [5.99242241157695, 52.28490036027162], + [5.989364401734886, 52.27403484212979] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.8d26d0a4-02e2-4e4f-a578-b97b25d94ac9", + "properties": { + "statcode": "GM0202", + "jrstatcode": "2024GM0202", + "statnaam": "Arnhem", + "rubriek": "gemeente", + "id": 45 + }, + "bbox": [ + 183548.21799999848, 438458.54, 196441.9530000016, 454549.23600000143 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.943248827026067, 52.06230453129021], + [5.937098857389782, 52.04853303737376], + [5.941402107164478, 52.01148599891264], + [5.942396247044195, 52.01083094436144], + [5.94604821830943, 52.01050393429664], + [5.943310342291164, 52.01013425720894], + [5.947689119172061, 52.0068825359953], + [5.949817180012629, 52.00411236370243], + [5.9509659180278245, 52.001353833087556], + [5.951526321611302, 51.999637806396436], + [5.953613361781523, 51.995001583829364], + [5.955368468629187, 51.99361196713551], + [5.955193178450378, 51.99336412678507], + [5.960938892477614, 51.98849196317286], + [5.96382932253282, 51.98705470865341], + [5.971238798745936, 51.98469964792402], + [5.980927692257593, 51.98131700553807], + [5.985008489123151, 51.97889763513085], + [5.990340039057319, 51.97440609167325], + [5.968412590289445, 51.972082821643845], + [5.963628859420869, 51.971143264581364], + [5.959493975013663, 51.96946565857842], + [5.952428804151042, 51.96456988451156], + [5.9493922664381165, 51.95900370789616], + [5.9501094855294046, 51.95422889561034], + [5.955225440385972, 51.948753539148626], + [5.940327671376169, 51.95603975938518], + [5.935597111222731, 51.96041566076742], + [5.9318306311372515, 51.95948313461081], + [5.931617412341644, 51.95673403705032], + [5.930717310937102, 51.952869162965726], + [5.929522093014202, 51.95074603599733], + [5.928378848079009, 51.95080437252108], + [5.928301363069057, 51.9508203150991], + [5.922007068786399, 51.950839055481644], + [5.915172770021522, 51.9499675267412], + [5.914173708065559, 51.948611727739575], + [5.912193288317846, 51.94791499420687], + [5.911330162245361, 51.947336195274815], + [5.911715709766304, 51.94701909471848], + [5.9109648754944155, 51.9459068780614], + [5.912417079028998, 51.94491520809447], + [5.9018636631384025, 51.93346419703547], + [5.897918378930612, 51.93435795751755], + [5.8949832561694535, 51.93511596701819], + [5.892673519512802, 51.93573212829156], + [5.887768701463473, 51.936135399104046], + [5.8836509728169775, 51.93765031043201], + [5.878373066205316, 51.93877249591652], + [5.87607585428169, 51.940267483322714], + [5.872097347000506, 51.94147420517267], + [5.862243183192942, 51.942889551588515], + [5.861506452868989, 51.942575673262674], + [5.852822012440497, 51.94407858954375], + [5.850394183971174, 51.94451029476062], + [5.849679709353735, 51.942944192376785], + [5.837402759495149, 51.944156554394795], + [5.837172088864755, 51.945177758148155], + [5.829927197041962, 51.94523733528024], + [5.828634063641284, 51.94848379564446], + [5.83050699122603, 51.953266464727164], + [5.829912265713497, 51.95343156567208], + [5.830080781622446, 51.95385340907609], + [5.831282299330102, 51.95554752525998], + [5.831338165890455, 51.95861672693247], + [5.830197455084211, 51.95862382662664], + [5.829339465864981, 51.96084806987727], + [5.833799472914503, 51.9626420374598], + [5.834191336498927, 51.962799644029026], + [5.835953426841234, 51.96616405386343], + [5.835368169413819, 51.97069999826298], + [5.836195436561484, 51.97092309564045], + [5.8353426404977, 51.97355872678843], + [5.8440317979743215, 51.97250386580455], + [5.854301963262003, 51.969836000625136], + [5.854358156717896, 51.969825741909496], + [5.859467599478283, 51.96955499591743], + [5.864182232959193, 51.97050385344775], + [5.8671361416234715, 51.97195395446295], + [5.870860246450447, 51.975112992215244], + [5.869186881735378, 51.97599143355252], + [5.866866891414606, 51.975302519051546], + [5.864716669722726, 51.97627144758372], + [5.863736864515459, 51.97796466804613], + [5.867369739352606, 51.98028996090508], + [5.866218502135688, 51.984006539677544], + [5.86526616148745, 51.984557981552605], + [5.863161746972704, 51.985325520224094], + [5.863762916536827, 51.987537590938224], + [5.863763949093508, 51.987541050844904], + [5.864702393379007, 51.99108146419838], + [5.86256003088212, 51.991220967074014], + [5.863713793996555, 51.995768788146144], + [5.856194884354819, 51.99610593048201], + [5.847397297259415, 51.998318431775076], + [5.833807441761146, 51.99871739401072], + [5.820339126733876, 52.00080536463822], + [5.802960558981933, 52.0040540911308], + [5.807225888388005, 52.01170050779759], + [5.808338235607228, 52.01875993467145], + [5.813373613729756, 52.024070582819604], + [5.8186505586566035, 52.02959420497383], + [5.8242018755846185, 52.03484373808774], + [5.83791804721875, 52.04663184022152], + [5.850027421284896, 52.05159442881737], + [5.859667889174674, 52.05201742821004], + [5.882063161864834, 52.04941078474268], + [5.899401351004604, 52.04995817997621], + [5.898124389990183, 52.06336199316389], + [5.909743360560631, 52.06209609332926], + [5.946102762638743, 52.077890530037294], + [5.955930934684606, 52.07333855085838], + [5.943248827026067, 52.06230453129021] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4f1bf1de-e586-4b8f-9385-943dca1c5586", + "properties": { + "statcode": "GM0203", + "jrstatcode": "2024GM0203", + "statnaam": "Barneveld", + "rubriek": "gemeente", + "id": 46 + }, + "bbox": [ + 160831.625, 456924.7890000008, 184046.49700000137, 472770.76000000164 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.726388866191383, 52.242503060872195], + [5.729553169271979, 52.23892189998934], + [5.730915018028602, 52.23156865961302], + [5.733358797251491, 52.231772572165646], + [5.738213748850901, 52.23157869397622], + [5.743028772941623, 52.22349001745303], + [5.741673353177081, 52.219881581051595], + [5.727435343736686, 52.21929828616951], + [5.72859381665297, 52.21554741831133], + [5.730764536118621, 52.208599244773986], + [5.741074691225757, 52.20187935266126], + [5.750584685576007, 52.19373065320599], + [5.7920253489166775, 52.196986519093954], + [5.796260206690072, 52.19634014847286], + [5.79965717137997, 52.19465179722558], + [5.811932329665303, 52.18487821825886], + [5.801959077793385, 52.177363792589524], + [5.80964644818657, 52.166691788848574], + [5.809843139787749, 52.151414717165295], + [5.785330620632086, 52.15127434697584], + [5.774690562490596, 52.15222847045017], + [5.762105088914296, 52.147597988399305], + [5.7432952099259245, 52.14870041462232], + [5.73607505371981, 52.147908056673025], + [5.735792987925539, 52.14787677509048], + [5.720349279944964, 52.14625989956157], + [5.720612302304969, 52.144991798255035], + [5.721846907650234, 52.144819715425555], + [5.720929218674704, 52.14106281113428], + [5.721938866486569, 52.13859495752942], + [5.7215195207468454, 52.13799433682974], + [5.7173012888766666, 52.13748039960488], + [5.717279376514651, 52.13644921150311], + [5.701825386965676, 52.135376926930135], + [5.700252848487342, 52.13611528228892], + [5.695117366139179, 52.13651463906453], + [5.692518356399699, 52.1373892377098], + [5.688820902318034, 52.13702718444364], + [5.685849265397655, 52.13526574063403], + [5.683932065145585, 52.13214455241012], + [5.679257248448021, 52.13160332345512], + [5.67938656317652, 52.13206105905875], + [5.675693532116858, 52.133353456508935], + [5.66901770219618, 52.13468609169865], + [5.66570442042637, 52.132758382898345], + [5.661649393453176, 52.13204011919092], + [5.656954406487398, 52.13258006646646], + [5.656331464575764, 52.131735044429604], + [5.648364234847636, 52.13091232251646], + [5.646773452232924, 52.1302654652911], + [5.645285186097249, 52.130804275447254], + [5.642920342152169, 52.130430047387556], + [5.638242858540202, 52.13076534495017], + [5.6349663454563155, 52.12970728237238], + [5.622728250605683, 52.12754975150081], + [5.616504517268404, 52.127791128519256], + [5.610430266282137, 52.125510461379655], + [5.607382913665356, 52.12499479189713], + [5.601582667884123, 52.12544467055046], + [5.597670588787564, 52.124210787060186], + [5.592491910525729, 52.12402649606902], + [5.591385664863947, 52.12443494399474], + [5.590367558761153, 52.1236190083627], + [5.589076440144688, 52.12398520053546], + [5.5844492202672, 52.121819534012815], + [5.576730196093793, 52.12045939703061], + [5.5712503165413825, 52.122102102173265], + [5.569468171333535, 52.122179168916354], + [5.5677493336102835, 52.119746178086444], + [5.568619572024082, 52.11820939367796], + [5.567658133609265, 52.11832279819822], + [5.56521793622635, 52.12200436031487], + [5.5618945136081965, 52.12168221354211], + [5.56123508625195, 52.12025128492508], + [5.553586166514013, 52.11326366015461], + [5.55096954402011, 52.111822263083305], + [5.54674477783598, 52.111370015746566], + [5.550342587549018, 52.105419542474216], + [5.545291792114641, 52.10439004173602], + [5.546302197375958, 52.10244363730847], + [5.544012636740613, 52.1019488983395], + [5.541539925291246, 52.10373709656603], + [5.531543293471545, 52.10226696037966], + [5.52516376250719, 52.1007514547265], + [5.523186564083212, 52.10432230373308], + [5.519368177897822, 52.10049420714623], + [5.517382945622542, 52.100629253346916], + [5.515489114312273, 52.101731214319635], + [5.51251745207161, 52.10610067563083], + [5.510400680798155, 52.10784242230065], + [5.507197685291648, 52.107953191567724], + [5.502072250040585, 52.109735413305586], + [5.500958926332697, 52.11086980973876], + [5.4938617412627515, 52.11109726320615], + [5.4939219165585556, 52.112764078045615], + [5.491873257606836, 52.1144851237467], + [5.486447088276168, 52.11535973632496], + [5.488082222938113, 52.11610112286145], + [5.495625918978629, 52.115585794085064], + [5.4989165189540845, 52.11601763718008], + [5.502610294876358, 52.115092417861355], + [5.50386780290434, 52.1137453336603], + [5.50630154119999, 52.1143104616527], + [5.507702067276892, 52.113896963690216], + [5.507551426419967, 52.115616009269594], + [5.503755992024413, 52.11658563308801], + [5.505353945037485, 52.11975044666812], + [5.50337164276195, 52.119659192367344], + [5.500042298409031, 52.119200011168964], + [5.4969176813102525, 52.119557487006105], + [5.495060038840908, 52.12199346497847], + [5.494704700674303, 52.124717634021586], + [5.496759075113313, 52.12481428434797], + [5.497913059059924, 52.130282891862336], + [5.499097924386456, 52.13054156912349], + [5.501488339510826, 52.12993889455552], + [5.504988367064082, 52.131087604672025], + [5.507676859282936, 52.13112480932217], + [5.509203092156157, 52.13194526891476], + [5.511667584301197, 52.132050509605264], + [5.512039448990189, 52.13363677681923], + [5.511998728992399, 52.13399805634359], + [5.51188089319955, 52.134115009469056], + [5.5123666776521265, 52.13422384179821], + [5.512443866953157, 52.1343297350744], + [5.514079390291934, 52.135923062822464], + [5.511690226245354, 52.13749358090788], + [5.507450244309839, 52.138531638032504], + [5.507591871817094, 52.138865800553646], + [5.502603094681563, 52.13953561618767], + [5.500002497957512, 52.141042980688646], + [5.497306242821561, 52.14144350120465], + [5.498984666916545, 52.14736142964089], + [5.489475634529395, 52.148219216733], + [5.483794674888673, 52.14946514085164], + [5.48134176553574, 52.15050097437239], + [5.483767058155547, 52.15398109917831], + [5.484073550634441, 52.15534609662558], + [5.484317295704738, 52.15806385511675], + [5.481495536102809, 52.15829730881431], + [5.482013260815053, 52.159547389717844], + [5.482116095322874, 52.15979568192471], + [5.479196697128446, 52.16136073807351], + [5.475519830714223, 52.1621616805682], + [5.472865765703495, 52.16184839893435], + [5.472433304005097, 52.162850865932846], + [5.47326568312158, 52.163264198235034], + [5.475507958073319, 52.16437757119338], + [5.478948270008007, 52.164741153923394], + [5.479922362585093, 52.16581455499114], + [5.480846389636952, 52.16795494291668], + [5.485099082281438, 52.17178046253943], + [5.4851822958685394, 52.174695270820465], + [5.485609593197766, 52.181974290980065], + [5.49536574579305, 52.18611426991286], + [5.495933866637572, 52.18685606556455], + [5.496309210310735, 52.18661787222546], + [5.500823501748752, 52.188576856883415], + [5.504176785526496, 52.18913479777958], + [5.5049345390645765, 52.18857476324396], + [5.5120844829250855, 52.188573821752904], + [5.521209091773446, 52.191834573235255], + [5.5292064533472605, 52.19100246037719], + [5.530807868275514, 52.191539263288064], + [5.5343961194700215, 52.185834269720424], + [5.537698363232133, 52.18207247653855], + [5.54219331104011, 52.17784566328281], + [5.544536089725935, 52.17713246549508], + [5.546607675611123, 52.17678100090749], + [5.54892265143892, 52.17532051909147], + [5.5546414567420275, 52.17568412381873], + [5.565276485651907, 52.17811145346896], + [5.56889137718112, 52.177908698250896], + [5.568180882667201, 52.17991636000339], + [5.566989005328654, 52.1808122197179], + [5.565229001635416, 52.18072457094742], + [5.564527963444498, 52.1853405920962], + [5.566493490778203, 52.186521487774655], + [5.574837099883563, 52.18616965302549], + [5.575272594468976, 52.18700766510726], + [5.577930269255628, 52.18618322347434], + [5.576926593576966, 52.19166701911686], + [5.575173827427549, 52.19266596296522], + [5.577666731656278, 52.19479700016273], + [5.580270281252113, 52.194500552424884], + [5.583197705679586, 52.19541061880448], + [5.588160321426573, 52.19484144992915], + [5.587951907543645, 52.19542580196336], + [5.589553632239485, 52.19543076734625], + [5.589922080705882, 52.195959853826], + [5.5955574604740095, 52.19634132084795], + [5.6002489994416536, 52.19765144514372], + [5.601948570887691, 52.19649174745538], + [5.607749262021233, 52.19516170178912], + [5.6077622286175615, 52.1941975100929], + [5.617444271633187, 52.19435875636594], + [5.616918091077969, 52.192135331960905], + [5.617796743157459, 52.191181564821754], + [5.618579341375276, 52.19118286243909], + [5.619633804550517, 52.19311923696328], + [5.624283207302526, 52.19332625002375], + [5.625742951946151, 52.192825457980014], + [5.634862021861964, 52.2038057548334], + [5.6332673914370766, 52.20816659764845], + [5.646360724984387, 52.21407557590968], + [5.657662473875667, 52.21917281923364], + [5.66551866058263, 52.22270448254177], + [5.670863151311839, 52.22396837658572], + [5.68127007051124, 52.225339467169114], + [5.683642095377853, 52.24061686251765], + [5.689847869761929, 52.24044277670606], + [5.693725571054489, 52.23971725944587], + [5.706716112967313, 52.239399985946], + [5.710997629527789, 52.2396209146821], + [5.711615310142021, 52.23970637690127], + [5.715387653399923, 52.24017770064122], + [5.7187981505011996, 52.241491739725355], + [5.726388866191383, 52.242503060872195] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.71e7f0ea-65c7-4fce-8453-e701562082e9", + "properties": { + "statcode": "GM0209", + "jrstatcode": "2024GM0209", + "statnaam": "Beuningen", + "rubriek": "gemeente", + "id": 47 + }, + "bbox": [ + 174330.3900000006, 427144.65100000054, 185201.84809999913, + 434167.91899999976 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.825390988926086, 51.860127507555234], + [5.822151776644232, 51.85542062792051], + [5.8215100274031455, 51.855604705777736], + [5.8203273677818546, 51.85387005646854], + [5.817374644454022, 51.84949407938506], + [5.812324266680631, 51.8496400236094], + [5.812358089401025, 51.85033518374592], + [5.8073257577293, 51.85184009450569], + [5.806101603480873, 51.85046307321346], + [5.79792951828819, 51.84619258848954], + [5.786501725619073, 51.840921429766624], + [5.783589760367603, 51.84199795022016], + [5.7812055087422065, 51.84297751514067], + [5.779652139822526, 51.84456834285936], + [5.777149703425996, 51.84446870342864], + [5.775082957978254, 51.844246963605954], + [5.764731540795399, 51.83229129560255], + [5.746929215774875, 51.83527103032595], + [5.732044208713187, 51.837980619494154], + [5.717625743704623, 51.839516986065355], + [5.715641435554566, 51.83970876631497], + [5.678110863405134, 51.84314679305765], + [5.677404326526872, 51.84625815544361], + [5.681733927020818, 51.84625984215248], + [5.6813570397744835, 51.84867752185452], + [5.6848204461036405, 51.84878081892077], + [5.6843731263155135, 51.84919901019703], + [5.680497975600934, 51.85386980630588], + [5.680167533997523, 51.85511625010749], + [5.681636047306219, 51.85688177450592], + [5.6782581072107625, 51.85857415535549], + [5.679571098597351, 51.860525484637336], + [5.672184469930905, 51.86204440713332], + [5.670767292891787, 51.864563467511374], + [5.667852643289933, 51.86592662887235], + [5.671358835371496, 51.870733317469714], + [5.675829369263937, 51.87560880280619], + [5.680299966848632, 51.8844328781016], + [5.682228848597085, 51.88900493397181], + [5.6824616286407705, 51.88977440486553], + [5.685013781320144, 51.89564847987748], + [5.697151919983615, 51.89504340320201], + [5.706659392611512, 51.89329156653444], + [5.726164177184991, 51.88715011969378], + [5.736418158986936, 51.88541447271046], + [5.740732839977134, 51.88501253433032], + [5.7513045817061075, 51.883503912232044], + [5.761035201419147, 51.88111912319319], + [5.77335732684862, 51.878641365553925], + [5.798351270317705, 51.875686057702595], + [5.8103136143423075, 51.872772664419436], + [5.817074831109551, 51.87026538317438], + [5.825694879868312, 51.866213470666], + [5.823689568791796, 51.864313467387944], + [5.825488522094924, 51.862688846566655], + [5.825390988926086, 51.860127507555234] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.00114192-bd3b-43e8-92cb-5d10ccf005fe", + "properties": { + "statcode": "GM0213", + "jrstatcode": "2024GM0213", + "statnaam": "Brummen", + "rubriek": "gemeente", + "id": 48 + }, + "bbox": [ + 197436.57499999925, 452586.0489999987, 211920.0709999986, + 464053.2870000005 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.184678541215125, 52.16122257273054], + [6.181605081729634, 52.15270559516305], + [6.1792953345813135, 52.15226225387596], + [6.1716686552400075, 52.15279990637545], + [6.159157873849276, 52.157705030840695], + [6.147422189413762, 52.15799562527711], + [6.144334380445239, 52.15693711296103], + [6.1420814258257685, 52.15519578761163], + [6.140639529326205, 52.152209272718515], + [6.140389580649761, 52.14835232969384], + [6.142856517773036, 52.1456587401349], + [6.150589498814278, 52.143977671009104], + [6.163433712015199, 52.146102675983], + [6.1685046723039045, 52.14622618682781], + [6.1733958185376805, 52.14496978315372], + [6.1721433272230986, 52.14338957850379], + [6.172840838796556, 52.14237230054432], + [6.175048026353777, 52.14147118100259], + [6.174131256990071, 52.139431957483836], + [6.178892471547938, 52.138559152998184], + [6.179101392651112, 52.137901305458016], + [6.177586431849659, 52.136894046768944], + [6.179869542154837, 52.13585201758318], + [6.179411195264609, 52.13557967796718], + [6.183546231903362, 52.134252546472275], + [6.182423301892705, 52.13254645498228], + [6.1836397624897765, 52.13124970151806], + [6.184014080729484, 52.12912093448447], + [6.182515352062905, 52.126238983346106], + [6.18484371299772, 52.12467905851111], + [6.185884924021653, 52.12379462435764], + [6.18588597551527, 52.11835776317926], + [6.189094645649345, 52.1150408314988], + [6.192190513884095, 52.11421417950021], + [6.2062066680388925, 52.113555117490876], + [6.210087876157822, 52.112686561394774], + [6.213250927779063, 52.11108552231567], + [6.215352530219505, 52.1089662638716], + [6.21767767065017, 52.104526362860305], + [6.217898865017434, 52.097881301781484], + [6.215321183088727, 52.094885979274785], + [6.210534264085144, 52.092451828599835], + [6.206829532209604, 52.09242062887758], + [6.203042957758731, 52.093588754386246], + [6.199630446258788, 52.093790773431564], + [6.1895745915604, 52.09130826507972], + [6.178296722177967, 52.091297095374465], + [6.175736303341073, 52.09029728675386], + [6.17400715342236, 52.088539106794386], + [6.17071917493876, 52.07890323643711], + [6.167781577961954, 52.075942850541246], + [6.162801661657201, 52.07409271478813], + [6.151228199460558, 52.0679451240498], + [6.147885253372708, 52.06468701309052], + [6.139301035038159, 52.061211874470736], + [6.137469230956889, 52.05918110840307], + [6.135353494653411, 52.059734296514215], + [6.136425058286306, 52.06039228343916], + [6.135751054011035, 52.06205856971737], + [6.13259225201423, 52.06185907446411], + [6.1320828960815, 52.06275511467247], + [6.128819596351642, 52.06279874875762], + [6.128720428438562, 52.06427745985953], + [6.122769324646426, 52.063229623982], + [6.119953019086708, 52.06676184498908], + [6.120983930010226, 52.068594852261405], + [6.115698771401894, 52.06823113298644], + [6.115255439555737, 52.0691683234447], + [6.113970742274383, 52.07158334295487], + [6.109225604013286, 52.07489335166087], + [6.102953753307037, 52.07757086364044], + [6.103423300342944, 52.07814359613351], + [6.098084088651237, 52.07916603401755], + [6.085260896245756, 52.081566724534156], + [6.0845747501339975, 52.08169621636944], + [6.081354771694019, 52.08229618166689], + [6.080749207882352, 52.08383336196731], + [6.080110337662402, 52.08375330564058], + [6.077691346267385, 52.083526290545784], + [6.077430163980368, 52.08361992453129], + [6.077279374415067, 52.08384453618023], + [6.077095215935984, 52.08388379724983], + [6.076101965121785, 52.087498157125495], + [6.068062824813166, 52.08824408710565], + [6.067665753756184, 52.08821049735782], + [6.061769225370062, 52.08649469079259], + [6.0586071167671935, 52.085323869034355], + [6.042699872331602, 52.07795815788761], + [6.028025955444813, 52.06902003793932], + [6.023737819719279, 52.06728245042345], + [6.009643484799992, 52.06600177190217], + [6.006084877052059, 52.066348932723784], + [6.008987361662876, 52.071663147404166], + [6.00884860071436, 52.07401418894942], + [6.017389565157608, 52.08301880646773], + [6.031593798352504, 52.09560566040909], + [6.034053260403591, 52.09572386986403], + [6.034258649850791, 52.098345607119995], + [6.032470630854266, 52.10150519517405], + [6.0348252806046805, 52.102899783634975], + [6.033908259645589, 52.104191308977406], + [6.034211169487513, 52.10612916694877], + [6.0352269340241245, 52.10717206640528], + [6.035437015657865, 52.107639915955886], + [6.0358177648153095, 52.10946613826532], + [6.041129965709853, 52.1123714247214], + [6.040579654128238, 52.1145671053156], + [6.043172035245227, 52.11690818138163], + [6.047646129098647, 52.11919467380289], + [6.051546065364816, 52.124397395099706], + [6.051726137714902, 52.12447721484187], + [6.069622179059301, 52.131304933137415], + [6.071392163177722, 52.13457239702054], + [6.0726674803865475, 52.13534278581385], + [6.078484116739825, 52.13887816893655], + [6.076067282802089, 52.14393807421182], + [6.106133117540843, 52.15219109596769], + [6.140337227490065, 52.158633442303575], + [6.140815650834431, 52.158689190045656], + [6.144135461036428, 52.15937049733183], + [6.153578148740228, 52.159622289351425], + [6.155018901811999, 52.16025850998254], + [6.159816733725394, 52.161539591224354], + [6.166993149295191, 52.161115249410294], + [6.1672154693124455, 52.16205943625353], + [6.172503265408341, 52.16183401117606], + [6.172576938052125, 52.161329107039606], + [6.184678541215125, 52.16122257273054] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c240b4b0-6e25-49d9-942d-ac52be325909", + "properties": { + "statcode": "GM0214", + "jrstatcode": "2024GM0214", + "statnaam": "Buren", + "rubriek": "gemeente", + "id": 49 + }, + "bbox": [ + 145011.2437000014, 431661.14499999955, 168709.15300000086, + 444173.69900000095 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.457011991660738, 51.98368404978995], + [5.472686603522912, 51.98297761379602], + [5.477664499531541, 51.983472671457385], + [5.486214004563034, 51.98382644318589], + [5.500751005113353, 51.97859204672692], + [5.510979363292189, 51.97364322608861], + [5.518222132764759, 51.971693390159594], + [5.518829562764779, 51.971573613026614], + [5.527113035062953, 51.97021906657454], + [5.537520484476508, 51.96828532762084], + [5.540208133629515, 51.967281506987376], + [5.549561074079531, 51.95919689303179], + [5.556933776462782, 51.95571102430803], + [5.561252509155969, 51.95450179322845], + [5.5755743784346885, 51.9528265512993], + [5.5866165869928865, 51.95082894784525], + [5.5841019651893005, 51.94732929568999], + [5.579115180810705, 51.945442638478454], + [5.57629743233801, 51.94292220429759], + [5.573253265009438, 51.94199809000831], + [5.567534301479105, 51.94149139426918], + [5.560695589550402, 51.944056691824], + [5.54944482234256, 51.94230243039771], + [5.540202528016002, 51.94365185246806], + [5.533880921708888, 51.94348161846405], + [5.533636018182437, 51.94302102092803], + [5.539818226016218, 51.93713325481188], + [5.548441141615271, 51.93425273774372], + [5.554116446482942, 51.93401941899551], + [5.55418131430252, 51.93280943460967], + [5.553882123803565, 51.92580658069349], + [5.553876698495535, 51.92295929692627], + [5.554577072265469, 51.92303186058297], + [5.556824505036093, 51.919234901501575], + [5.551786526889146, 51.917807854404415], + [5.551746901540359, 51.91780097459866], + [5.547705748918749, 51.92164706959458], + [5.515654747297538, 51.92154007884703], + [5.512298744355842, 51.92137509193273], + [5.510593175864507, 51.92227354785855], + [5.507137698197887, 51.92278666489647], + [5.505397057995378, 51.92391818233537], + [5.501010405576132, 51.92267429220746], + [5.498812779129036, 51.923226385012896], + [5.493557128599829, 51.91850658915046], + [5.489826794996148, 51.918247076353886], + [5.486421372155019, 51.91893457815473], + [5.486866780652579, 51.9210373177059], + [5.489014824946083, 51.921019105903135], + [5.488629352282698, 51.92315506675646], + [5.491745944782706, 51.92406125054739], + [5.490896128743429, 51.92474450942108], + [5.487211845203509, 51.92381492457066], + [5.487742532838775, 51.92303189993306], + [5.483197014077363, 51.92327192791154], + [5.481255591134515, 51.92254922603707], + [5.480383106447869, 51.92278208876596], + [5.47652722398128, 51.92086977221026], + [5.474262107807829, 51.92189964135], + [5.472398827491453, 51.92197474273439], + [5.467387447954072, 51.923536179405545], + [5.460345836561616, 51.92411678977535], + [5.458426572795175, 51.92289276951888], + [5.453384517009267, 51.92276135857611], + [5.449596284081928, 51.92182621323701], + [5.446979556690072, 51.9205716037294], + [5.443801210068873, 51.92142329052897], + [5.435111731762627, 51.92067042733237], + [5.433771045992029, 51.91982427664047], + [5.433280186103182, 51.91942882593863], + [5.431702180643741, 51.918463799516424], + [5.427346070523487, 51.91850113855863], + [5.42380102605512, 51.917351049532776], + [5.420752458383095, 51.91484816557109], + [5.418016438455162, 51.91329553470687], + [5.413297807836767, 51.91281485927056], + [5.411256781193772, 51.91200880808032], + [5.40953959406628, 51.9077685591228], + [5.408074604948899, 51.90644427474872], + [5.404321660761018, 51.90507022021679], + [5.4042207438406065, 51.903992884050844], + [5.399824415236376, 51.89857588929978], + [5.392605669051925, 51.8968393931875], + [5.382761010646, 51.892035882738014], + [5.369061889383494, 51.88535713794006], + [5.3537826483744295, 51.878066374991604], + [5.351474996709945, 51.87815811122324], + [5.349847301976013, 51.877220204604654], + [5.3448668137044715, 51.87745861739245], + [5.344073092617441, 51.8749423824053], + [5.341664877551554, 51.873485986948054], + [5.339023936308964, 51.874034158369035], + [5.339456063253407, 51.877874047560624], + [5.337163588302292, 51.8809815191489], + [5.334934676723525, 51.88176266913267], + [5.32682997877226, 51.88258782982942], + [5.322676377786616, 51.88196625269567], + [5.3171934325592485, 51.880232585082986], + [5.315178213291676, 51.880575927809616], + [5.314951621893284, 51.88181595760857], + [5.316294045489911, 51.8833230416831], + [5.321939357422554, 51.88562803762209], + [5.323415091062672, 51.886983525696046], + [5.323366423380577, 51.889010349833896], + [5.3187758369788405, 51.89255869106602], + [5.3120450142125515, 51.895907237739195], + [5.3092063380686945, 51.89662046315983], + [5.306751298369135, 51.896417564323684], + [5.3065849396661156, 51.89657807740642], + [5.297323515167907, 51.901579048109426], + [5.294893405549515, 51.900052315020716], + [5.273687370090665, 51.920087057340005], + [5.285183497626288, 51.92263941263409], + [5.286724103347488, 51.928510337576036], + [5.284946865831786, 51.93069164747358], + [5.281282076830914, 51.93267111025788], + [5.280976661527247, 51.93316779941471], + [5.279572655349013, 51.93319543940809], + [5.27622746896751, 51.93262793495146], + [5.267761262327018, 51.932756054726525], + [5.2550618799294, 51.93548253955924], + [5.25480371862017, 51.936726896056115], + [5.247075442719128, 51.941231842043486], + [5.245563714348058, 51.94348616928298], + [5.241923181856792, 51.945516394683004], + [5.252238629347739, 51.94902056530523], + [5.254906654895234, 51.9498555375457], + [5.254311441756231, 51.95018590343127], + [5.2573426355669115, 51.95131289464938], + [5.257729407534037, 51.95099867894922], + [5.2597654001412915, 51.95159521321473], + [5.255318349129162, 51.954221110861525], + [5.27037360372902, 51.96542662131199], + [5.282608034776488, 51.96316251529986], + [5.300894137080279, 51.96156856001281], + [5.310870993352629, 51.95701367397694], + [5.316600706381483, 51.95522093962135], + [5.323439143698773, 51.95509710562207], + [5.333118383129909, 51.95720090435936], + [5.339693523868541, 51.96102800718588], + [5.339825067543235, 51.961137016832176], + [5.34825522327628, 51.967686327858225], + [5.355638266108868, 51.97035385244855], + [5.363016120841857, 51.97095010533981], + [5.376011287919481, 51.969210643114124], + [5.382798343101973, 51.96926394404294], + [5.390976067921979, 51.97073019670432], + [5.399337609624783, 51.97310277910691], + [5.418155579527131, 51.97660570376293], + [5.423363655296438, 51.9787554234284], + [5.430399878984731, 51.98326509845802], + [5.436243938215127, 51.98534843772959], + [5.442408233860953, 51.98594752784307], + [5.457011991660738, 51.98368404978995] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c13e25ff-db07-4867-a874-8c1b6dd1090b", + "properties": { + "statcode": "GM0216", + "jrstatcode": "2024GM0216", + "statnaam": "Culemborg", + "rubriek": "gemeente", + "id": 50 + }, + "bbox": [ + 138163.05299999937, 436810.2120000012, 146970.9200000018, + 443382.9679999985 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.27037360372902, 51.96542662131199], + [5.255318349129162, 51.954221110861525], + [5.2597654001412915, 51.95159521321473], + [5.257729407534037, 51.95099867894922], + [5.2573426355669115, 51.95131289464938], + [5.254311441756231, 51.95018590343127], + [5.254906654895234, 51.9498555375457], + [5.252238629347739, 51.94902056530523], + [5.241923181856792, 51.945516394683004], + [5.245563714348058, 51.94348616928298], + [5.247075442719128, 51.941231842043486], + [5.25480371862017, 51.936726896056115], + [5.2550618799294, 51.93548253955924], + [5.245867327186732, 51.929274110781805], + [5.242603174137746, 51.92719476669057], + [5.233164231464214, 51.923584879287944], + [5.211809913533428, 51.91964536495585], + [5.207685618497302, 51.92621353812611], + [5.202630337952105, 51.92476747643521], + [5.1873815030513954, 51.92392138505591], + [5.175900156905171, 51.9211016711169], + [5.158905218209404, 51.91964490894423], + [5.166797051622455, 51.92602014760825], + [5.161662260725169, 51.927499250012445], + [5.157986329799422, 51.92848139232634], + [5.150011659134316, 51.92815650180436], + [5.1424328751256905, 51.92493658162861], + [5.148459847748613, 51.92948519058408], + [5.1490070363444564, 51.9305402646337], + [5.147963229906769, 51.93215495624836], + [5.149437441712099, 51.93352697535103], + [5.151467134150006, 51.93361525348091], + [5.154663180646226, 51.93793499224874], + [5.163005347185106, 51.946551325641416], + [5.173991368818868, 51.960341560776264], + [5.180226656080335, 51.96744832552888], + [5.189720663422397, 51.9629142171598], + [5.198845475017989, 51.96019776986568], + [5.2059888198777315, 51.95943248301825], + [5.213435454460688, 51.96065326802144], + [5.213470228649492, 51.960666043969724], + [5.219058412358938, 51.96342762199712], + [5.223956865572223, 51.96781407986483], + [5.229912519749953, 51.975648958906234], + [5.233006667953751, 51.97755042297188], + [5.2368670771395625, 51.978757477242226], + [5.242270383430723, 51.97872971840213], + [5.2465237446452395, 51.97749823602176], + [5.256271137668384, 51.97094139916173], + [5.262104259769673, 51.96820597995692], + [5.27037360372902, 51.96542662131199] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.a1678f5e-3df5-4762-b8d0-54e0341c15bf", + "properties": { + "statcode": "GM0221", + "jrstatcode": "2024GM0221", + "statnaam": "Doesburg", + "rubriek": "gemeente", + "id": 51 + }, + "bbox": [ + 204611.1790000014, 445494.20600000024, 209231.87799999863, + 450694.2829999998 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.1591149054837455, 52.03741536986943], + [6.1671905351070055, 52.03696574642421], + [6.175513135790732, 52.039369126142056], + [6.175535588780879, 52.03936455255466], + [6.175913483143924, 52.03577771790985], + [6.175057249102321, 52.031701148750784], + [6.1770149948333035, 52.0314745426575], + [6.1732326286719905, 52.02777469689572], + [6.175307251865582, 52.02724347309807], + [6.174655087243654, 52.02559899133394], + [6.176818078240908, 52.0252890835752], + [6.174534254539829, 52.02272228031846], + [6.17723128449989, 52.021561687909845], + [6.177295557658014, 52.02033798568209], + [6.176558426105147, 52.02035513875866], + [6.176546918296356, 52.01922837364413], + [6.172965525930773, 52.01853418845325], + [6.173575432058489, 52.01757355009641], + [6.169803811996295, 52.016536470023546], + [6.167188155614754, 52.01637174791567], + [6.164524212742181, 52.016919839916795], + [6.164745159370199, 52.01440145115216], + [6.161183571341808, 52.01382798844546], + [6.159500966161698, 52.006672489436134], + [6.1566594867498665, 52.00636493788859], + [6.153956659162444, 52.00327133216006], + [6.157265672531341, 52.00413544786082], + [6.158856383176495, 52.00396369081122], + [6.158463897457724, 52.001812269830126], + [6.159160286778841, 52.00068425937905], + [6.159250532133227, 51.99973978188692], + [6.149830965989668, 52.001868892967224], + [6.141137949072099, 51.998579019963266], + [6.141820859381903, 51.99757358430684], + [6.139965473330286, 51.99706617959593], + [6.136094258828426, 51.997429987536755], + [6.130252355599306, 51.99709226695227], + [6.114450093248313, 51.996823181717986], + [6.11434020610224, 51.99681479614182], + [6.11049500587813, 51.99560540917509], + [6.1095905327527245, 51.99643671019417], + [6.112281869750421, 51.99897497904809], + [6.114767723468606, 52.0045667944339], + [6.12233915735444, 52.00735289102974], + [6.125959764524154, 52.01012655013723], + [6.12739961577384, 52.01271393403089], + [6.1276388384857485, 52.01670366221381], + [6.129739288758523, 52.01929761529865], + [6.131030345196111, 52.02086167383075], + [6.13226752336482, 52.02516816288554], + [6.130731451798727, 52.02910086433261], + [6.1269469278482545, 52.03244875085872], + [6.121502326132174, 52.03461732469684], + [6.128008210993185, 52.034010512087356], + [6.135085228071527, 52.034724597903505], + [6.142004532846849, 52.03669972837736], + [6.146130760019105, 52.04069043592253], + [6.148153836427991, 52.041686219899894], + [6.152050804464467, 52.042083295788515], + [6.155432644626186, 52.04117126795852], + [6.1591149054837455, 52.03741536986943] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.37014fe5-e3a2-482b-92d4-92e5a6311b2d", + "properties": { + "statcode": "GM0222", + "jrstatcode": "2024GM0222", + "statnaam": "Doetinchem", + "rubriek": "gemeente", + "id": 52 + }, + "bbox": [ + 207040.01399999857, 437592.0929999985, 225696.6860000007, + 445507.90900000185 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.329005598921554, 51.98914245579216], + [6.335657878434831, 51.98564646445303], + [6.332216130137854, 51.98286377026904], + [6.331138263107736, 51.98056977426858], + [6.327728241290196, 51.97728683231787], + [6.327518883627069, 51.9757494516881], + [6.337374721370158, 51.974684745621694], + [6.3535058699592275, 51.974675081679884], + [6.369857474067802, 51.97621594123476], + [6.368765332758621, 51.973137551218905], + [6.366290709792506, 51.97177574653796], + [6.365338720274358, 51.96962590072114], + [6.368350757161014, 51.9685324212592], + [6.37345617621931, 51.96985834004281], + [6.3813920980819905, 51.96797881721811], + [6.390378034291631, 51.96832788302859], + [6.3908209252539, 51.970737763317025], + [6.388267286175593, 51.97629988450773], + [6.385839067852374, 51.9761696842584], + [6.3808780824433295, 51.97773814290829], + [6.39030592603909, 51.98025853082451], + [6.3926785148731815, 51.97974778923033], + [6.396399680273603, 51.98001184514865], + [6.402519671969593, 51.9821505980506], + [6.416081865598383, 51.9726219174811], + [6.409973757166044, 51.96588678005611], + [6.4072895731285024, 51.963148420902925], + [6.403585752342948, 51.957321831538906], + [6.401551866610166, 51.956782782959316], + [6.3962913113413515, 51.952525670543494], + [6.388230648755212, 51.94497718615871], + [6.384397256073439, 51.941134607197725], + [6.379963244004573, 51.93628148953729], + [6.38176700586236, 51.93457104730605], + [6.381311824316856, 51.93331587966464], + [6.376847096097594, 51.93005098986328], + [6.37160593625691, 51.92760671754062], + [6.362553958710896, 51.923771180939355], + [6.362547194117361, 51.9237681017925], + [6.360845299334819, 51.922966579754764], + [6.359327987678333, 51.92278202342853], + [6.3583962669896295, 51.9228719126921], + [6.35558339329662, 51.92364074920403], + [6.352325879231016, 51.92381251228579], + [6.349171806510799, 51.92371391704974], + [6.348588919355133, 51.92455915752127], + [6.3446014562592365, 51.925251400674746], + [6.342360571550166, 51.92512130415678], + [6.340051498989771, 51.925689600578025], + [6.338939008266754, 51.924833200834414], + [6.338039118507106, 51.92489148831803], + [6.33684319421765, 51.92610510717431], + [6.335755007596257, 51.92605508269277], + [6.335449460930467, 51.925845820828755], + [6.333794350918584, 51.925717328715436], + [6.3334208957029166, 51.92546839647886], + [6.331155214536872, 51.926164221957784], + [6.326753853271144, 51.92944255155225], + [6.321735252877741, 51.93518796344439], + [6.319982365958167, 51.93596829633524], + [6.314607637816945, 51.93650246133631], + [6.308604155100732, 51.93976399716945], + [6.305762803885496, 51.93882101911977], + [6.302606403680451, 51.94135312284012], + [6.301843338973133, 51.94196520675692], + [6.3020663670818795, 51.94413404847923], + [6.293820245823189, 51.94376686091335], + [6.293820181764655, 51.94376685781195], + [6.279023969198959, 51.943344060583456], + [6.275391792338816, 51.941799495332866], + [6.272847662261367, 51.94188485866147], + [6.2728743708578305, 51.94317851864656], + [6.262877005864939, 51.94295722602381], + [6.254275235730428, 51.9432530410099], + [6.229304619401133, 51.94456464132762], + [6.2207529862070015, 51.944575575686855], + [6.221360030780355, 51.94392790789419], + [6.219041313914536, 51.94314157478488], + [6.216383196393201, 51.944122418414274], + [6.2146028023821795, 51.943220371830314], + [6.212048401556827, 51.94289339594354], + [6.210326178526628, 51.943382171930736], + [6.204422380283155, 51.942382162259236], + [6.2030747334763365, 51.94214330386242], + [6.202994028756417, 51.94148453098489], + [6.2030763732712115, 51.941326784447966], + [6.202743158666634, 51.93908701181815], + [6.205618125246977, 51.937729259574446], + [6.205009805999219, 51.936640203105384], + [6.1932628042311615, 51.940882748195996], + [6.191733420076835, 51.94245176048097], + [6.1884256126229635, 51.94333869949502], + [6.1885905583400795, 51.945536096735914], + [6.186022730137752, 51.94608769606064], + [6.184620559671575, 51.947691658396394], + [6.182773828780293, 51.948125436471265], + [6.182749484163817, 51.948149518075596], + [6.178508951582837, 51.94870281907746], + [6.172658048433354, 51.95296840837076], + [6.169132608240158, 51.953285549462315], + [6.165746173923386, 51.95493577412992], + [6.163142654461127, 51.955323271047625], + [6.162520888008929, 51.95587770068484], + [6.157867374110605, 51.95879361946716], + [6.150944721031972, 51.966266236828076], + [6.148209409038118, 51.9731870005804], + [6.14596644748256, 51.975251724650796], + [6.146466433725556, 51.975591940005174], + [6.144688334128337, 51.98050015335358], + [6.160483486937829, 51.981036748459665], + [6.160582665604562, 51.97951273839033], + [6.168431173036938, 51.97980481043542], + [6.171697998804035, 51.98082700218825], + [6.179407352933152, 51.979345040133914], + [6.182403111992678, 51.9791981878019], + [6.183434957999575, 51.97953428044135], + [6.190986531053032, 51.97905616572953], + [6.2051342629419635, 51.98024757250883], + [6.211678984857113, 51.97839026120715], + [6.217260143820359, 51.97933194445249], + [6.224147680407838, 51.97841993735834], + [6.229799763802818, 51.97620685621106], + [6.229280178149879, 51.97677660526409], + [6.2311191824084835, 51.97864901529741], + [6.230130727939888, 51.9790909905033], + [6.231703687360831, 51.98077576888419], + [6.22241731634613, 51.98414782958075], + [6.2239020997003225, 51.98574045310499], + [6.228086623730505, 51.987795019041755], + [6.228721167152701, 51.98717229998613], + [6.232521450280479, 51.986481556551986], + [6.232112665461803, 51.98836545385086], + [6.2357813884708975, 51.985011080543565], + [6.2342362011789865, 51.983424657717734], + [6.234803099762933, 51.982614170659105], + [6.237459331021347, 51.98111844934359], + [6.2427266281383975, 51.98100463023239], + [6.244707981699266, 51.98004208197667], + [6.243410728785991, 51.97892948525102], + [6.242977934755715, 51.977771261865065], + [6.244390557366667, 51.97784226071199], + [6.247347510161306, 51.977316433731126], + [6.248374335371882, 51.97628654457132], + [6.249788086015252, 51.97596466473195], + [6.252838604490819, 51.97990436234479], + [6.256808183014959, 51.98097524007803], + [6.257298931444752, 51.98252845763247], + [6.257298828418557, 51.9825284745742], + [6.24794874968992, 51.984085997347115], + [6.250720786804431, 51.987329388097], + [6.252260477479741, 51.98683341568048], + [6.253896318852065, 51.9875937573222], + [6.25381184767548, 51.987826411699196], + [6.254367360332717, 51.98807002562076], + [6.259362336745876, 51.98746245199893], + [6.260051892440864, 51.9868346630488], + [6.267343083776885, 51.98377003475753], + [6.268943690307267, 51.9839773417059], + [6.270522898143176, 51.98344197606419], + [6.272299235323441, 51.98369081121818], + [6.273869938530179, 51.98460333494566], + [6.274650931413955, 51.98528849188611], + [6.278944778353499, 51.984912559531715], + [6.291896735286046, 51.993345368649955], + [6.29382604982975, 51.99219169646132], + [6.294340583202528, 51.9903159964547], + [6.295657611744628, 51.98846694271538], + [6.305152290392902, 51.99218771931244], + [6.314270100883523, 51.99409725896269], + [6.316521985356393, 51.9941729698336], + [6.319133279588674, 51.99426071114083], + [6.3225394640444, 51.99341770306033], + [6.326454978843611, 51.99188890005622], + [6.329005598921554, 51.98914245579216] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.5de299c8-aeb3-405f-b487-be27f3c7a141", + "properties": { + "statcode": "GM0225", + "jrstatcode": "2024GM0225", + "statnaam": "Druten", + "rubriek": "gemeente", + "id": 53 + }, + "bbox": [ + 164897.59699999914, 427543.6429999992, 175498.84099999815, + 434820.311999999 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.57164072784898, 51.9017452332612], + [5.599086637855278, 51.89912097042499], + [5.624300721135939, 51.89939573001262], + [5.625837709880975, 51.89939704819046], + [5.646951831419817, 51.89790671287182], + [5.654680938868131, 51.89679653791956], + [5.668474723335407, 51.8955933686471], + [5.685013781320144, 51.89564847987748], + [5.6824616286407705, 51.88977440486553], + [5.682228848597085, 51.88900493397181], + [5.680299966848632, 51.8844328781016], + [5.675829369263937, 51.87560880280619], + [5.671358835371496, 51.870733317469714], + [5.667852643289933, 51.86592662887235], + [5.665748173201522, 51.8663898063065], + [5.658228659523359, 51.866546958056894], + [5.636177353569044, 51.8673616469748], + [5.638614590558794, 51.862666193910094], + [5.640120032551869, 51.85603257905847], + [5.637073204993301, 51.85356154580262], + [5.635349027573845, 51.8511171788962], + [5.637867009153752, 51.84888590784657], + [5.63593258777131, 51.847457317484405], + [5.643200207272018, 51.84498828000278], + [5.6231424255651925, 51.84046867415277], + [5.6098352823815105, 51.83627384514094], + [5.598493641179508, 51.837851198589576], + [5.598269398561568, 51.839544211375284], + [5.5850132877882315, 51.83910658355122], + [5.5845460652674825, 51.84153499420507], + [5.581036892617963, 51.85114699104039], + [5.584696404051807, 51.857228093949686], + [5.57871075142363, 51.859204964374634], + [5.577732844796946, 51.86035137484043], + [5.577273265625711, 51.86458490078318], + [5.553073520114082, 51.86263263015014], + [5.553782341981704, 51.87037375732889], + [5.559618989061663, 51.87085048775371], + [5.5602558553733115, 51.87504787005084], + [5.568435462428692, 51.87654546921055], + [5.569393797900785, 51.879665619412556], + [5.568252925547874, 51.88045475274881], + [5.5669479517534075, 51.88125464268416], + [5.5664374727091195, 51.88394834016258], + [5.569895293571983, 51.8847073291541], + [5.5714598250038385, 51.88391188029334], + [5.5769928645041205, 51.89243661729042], + [5.563894257394759, 51.890530397621255], + [5.55637574633376, 51.88875032861584], + [5.550662177283872, 51.88804791331494], + [5.547330225967518, 51.88825841759314], + [5.54312158471067, 51.88840384427858], + [5.539882923381314, 51.891178659176916], + [5.536505348881547, 51.89168450725576], + [5.530982971435718, 51.89139351371638], + [5.531362560547886, 51.89475336679323], + [5.544447951144083, 51.899005246338106], + [5.5560127536000286, 51.90103565459235], + [5.57164072784898, 51.9017452332612] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e4fd8cc3-ade9-47d4-bf16-ab54de20a3d0", + "properties": { + "statcode": "GM0226", + "jrstatcode": "2024GM0226", + "statnaam": "Duiven", + "rubriek": "gemeente", + "id": 54 + }, + "bbox": [ + 194785.71499999985, 436155.9200000018, 201814.88699999824, + 443932.0520000011 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.060838843714394, 51.974483240355006], + [6.0599884413075875, 51.96324103189863], + [6.058461488028758, 51.9583093839534], + [6.052665231961959, 51.95269778489144], + [6.063262918900181, 51.94908306136517], + [6.060462943013418, 51.94596826292962], + [6.061085850849745, 51.945655893856845], + [6.056456800817294, 51.94222976847175], + [6.054805361992206, 51.93993584056432], + [6.053026971681567, 51.9403284510731], + [6.051582275209863, 51.931044602077954], + [6.049016031466066, 51.93153990432781], + [6.047387037229918, 51.93032594788792], + [6.046401075610439, 51.92999537702861], + [6.045723700309608, 51.93040092466958], + [6.042357660472401, 51.927771783228984], + [6.046275856295263, 51.92690595104731], + [6.046995235233605, 51.92532768598656], + [6.045399282017721, 51.92409085741899], + [6.045995991773257, 51.92330527094037], + [6.043514474658086, 51.920803563946684], + [6.044712989853662, 51.9201157500558], + [6.0434641939344225, 51.91746125315649], + [6.042939762193007, 51.9168089101313], + [6.04184212953954, 51.9169522228878], + [6.041276572820786, 51.915805302271224], + [6.038842914857177, 51.91634019528595], + [6.037896426850421, 51.91471870141327], + [6.037456557637974, 51.91396216530935], + [6.0347242308964955, 51.91384604264394], + [6.026994026756744, 51.916518276724865], + [6.014047006234514, 51.91643233448852], + [6.0003297840324095, 51.91324166199334], + [5.997278958876824, 51.91307239023805], + [5.992755429262878, 51.91233395897865], + [5.988921021286668, 51.91396524068812], + [5.987062570298805, 51.91331383154284], + [5.977099459265454, 51.922857533975716], + [5.968612960245418, 51.92821244351981], + [5.972887444927234, 51.92918657787942], + [5.9723309647764875, 51.93074206735532], + [5.9667308933056775, 51.93591068109538], + [5.965775466700798, 51.93876761439823], + [5.9692599241691005, 51.93955779145981], + [5.970352186047956, 51.93932596105182], + [5.974910166168503, 51.94162015889277], + [5.979982572486582, 51.94293726876886], + [5.984363844268382, 51.94302088649836], + [5.986168105177331, 51.9463638487124], + [5.98456895351034, 51.946910403705765], + [5.987576480583574, 51.95044109513788], + [5.984836204890723, 51.951682338608855], + [5.985524948814088, 51.95512890272024], + [5.986999780215554, 51.959911658490064], + [5.986840632193202, 51.96226809944563], + [5.987697905628396, 51.96291149172783], + [5.9852642856682206, 51.96395954084179], + [5.986636356676764, 51.968500084300416], + [5.984000172814513, 51.972399538395706], + [5.991551841507474, 51.97266323022757], + [5.996191832060004, 51.973955921408056], + [6.000428450626559, 51.976170152402915], + [6.001732846369974, 51.97755170432406], + [6.005664162275258, 51.979088155764245], + [6.0098793176775445, 51.978868886712924], + [6.021818174394958, 51.978202644246174], + [6.026889250584885, 51.97089308923141], + [6.034305610436386, 51.97135311987762], + [6.042969121803022, 51.97867967715898], + [6.042247608166674, 51.9790095738243], + [6.047231500228187, 51.98063676582877], + [6.060772261491824, 51.98185931592475], + [6.062147489941204, 51.98073947122829], + [6.0686302771817715, 51.98047579404772], + [6.067274405561874, 51.975331858359816], + [6.060838843714394, 51.974483240355006] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.2e8eb800-e98a-4ba7-b054-f165bfa0dffe", + "properties": { + "statcode": "GM0228", + "jrstatcode": "2024GM0228", + "statnaam": "Ede", + "rubriek": "gemeente", + "id": 55 + }, + "bbox": [ + 165928.796, 444768.2800000012, 193662.20080000162, 462743.34099999815 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.774690562490596, 52.15222847045017], + [5.785330620632086, 52.15127434697584], + [5.809843139787749, 52.151414717165295], + [5.8457612817056415, 52.15160949653408], + [5.859545358036615, 52.148749440490995], + [5.8611383318110075, 52.14526117348577], + [5.862318549091528, 52.134788021395835], + [5.86420943391963, 52.12755649587021], + [5.8643526611055306, 52.1269931618852], + [5.864761898673804, 52.12554426735608], + [5.874177872615772, 52.116676410760306], + [5.876268642394949, 52.11446092594845], + [5.883449226341566, 52.10634215489418], + [5.893785549400683, 52.10477533312274], + [5.900104016053991, 52.103784692036875], + [5.911470044900228, 52.100309532891906], + [5.927262683026022, 52.10026555491563], + [5.946184516961569, 52.09929973091724], + [5.951462982103334, 52.09989296757193], + [5.948215164721406, 52.09083383283967], + [5.946102762638743, 52.077890530037294], + [5.909743360560631, 52.06209609332926], + [5.898124389990183, 52.06336199316389], + [5.899401351004604, 52.04995817997621], + [5.882063161864834, 52.04941078474268], + [5.859667889174674, 52.05201742821004], + [5.850027421284896, 52.05159442881737], + [5.83791804721875, 52.04663184022152], + [5.8242018755846185, 52.03484373808774], + [5.8186505586566035, 52.02959420497383], + [5.813373613729756, 52.024070582819604], + [5.802432776756168, 52.02235785018209], + [5.804220762296437, 52.02113731696123], + [5.803630853688216, 52.0206819325821], + [5.798138070525909, 52.02201542094488], + [5.777657968356109, 52.021878300729774], + [5.770886845231649, 52.02158231210851], + [5.7704705968277334, 52.02115626598705], + [5.7698807109046735, 52.02154083645997], + [5.756567759942014, 52.021061815085986], + [5.74735535603633, 52.02001971894226], + [5.7451373829360355, 52.019768646619426], + [5.741159974408125, 52.01643659875361], + [5.738181808390056, 52.01228747983195], + [5.73928458775088, 52.01016873799844], + [5.738813729234416, 52.00814196575316], + [5.737566498651053, 52.00715760415245], + [5.734137016023189, 52.006418565649135], + [5.735883491977797, 52.002320123520946], + [5.732776307748189, 52.00074003293327], + [5.724362611898578, 52.00070833017496], + [5.688883699555023, 51.994922762177914], + [5.687618529968167, 51.99456080104686], + [5.684715851498127, 51.99392619583624], + [5.683093220413809, 51.99391146763519], + [5.682692947337468, 51.99255316024011], + [5.678295762063941, 51.99140063066755], + [5.675368017040144, 51.99095145653128], + [5.672539394338235, 51.99352093724135], + [5.66960139568954, 51.994668443885296], + [5.664526385084121, 51.99413014739333], + [5.662842493813868, 51.994947624143165], + [5.655417117350887, 51.993306692558924], + [5.653944954238911, 51.99516072935543], + [5.637220860874443, 51.99191729005764], + [5.633298078043942, 51.99520240945918], + [5.627251113267802, 51.993142278069215], + [5.624945547645688, 51.99514155868959], + [5.6193072903870815, 51.99273841654118], + [5.614491941029706, 51.99964959900363], + [5.606832087985665, 51.99742241402644], + [5.6060170136499785, 51.994164351289946], + [5.602515013823605, 51.99499782843917], + [5.596556305538543, 51.999201539061616], + [5.591997672005076, 52.00139229151772], + [5.590808130664798, 52.00302480249255], + [5.591112700389702, 52.00730147351125], + [5.58948874276898, 52.00945552297959], + [5.587422092089005, 52.01092168232338], + [5.5860146218170135, 52.011776280584535], + [5.586750695154486, 52.012285916173624], + [5.586922245868601, 52.015713176485825], + [5.5896216098571925, 52.01559481633118], + [5.590242100595251, 52.02026673945759], + [5.587199848846056, 52.02044865625325], + [5.587445958913838, 52.0266411538445], + [5.587347617029915, 52.02726383864646], + [5.586711623441599, 52.031290422569505], + [5.589588678144562, 52.031176589689295], + [5.589756380599586, 52.032697622970765], + [5.589907112418986, 52.03269272546233], + [5.590022802850485, 52.0343032399606], + [5.589960903929206, 52.0344114423708], + [5.577288644739638, 52.03832679760748], + [5.568314562313293, 52.04026915117957], + [5.5674009005359615, 52.040624906133395], + [5.568657150195652, 52.04239650855507], + [5.5697543591863425, 52.04341487177825], + [5.570044984714821, 52.04340083313241], + [5.570152222838201, 52.04443978802194], + [5.570010907048403, 52.04449508771729], + [5.569975358936193, 52.04563656251174], + [5.570852936752805, 52.047996988687], + [5.557903285826308, 52.04886511938737], + [5.5607293480829885, 52.06750149646015], + [5.55921055927358, 52.07103370132989], + [5.560313863073514, 52.07215269357759], + [5.561443513198635, 52.07328629588704], + [5.562746193632108, 52.07827798419506], + [5.560710779551274, 52.08141286358387], + [5.5607538816422055, 52.084210689140285], + [5.5566872594415475, 52.085482762665656], + [5.557418320731711, 52.086178137718754], + [5.557053037986815, 52.08686729350797], + [5.555909594867083, 52.08711769990503], + [5.5549273525481695, 52.08651028024321], + [5.554718115012507, 52.09149839348847], + [5.555869540371862, 52.09181954590386], + [5.5544349252440295, 52.093468632359404], + [5.55442927028402, 52.09539191800997], + [5.550542421320212, 52.09667636262158], + [5.554235791800082, 52.10015121957416], + [5.553063469065193, 52.100954006512474], + [5.550342587549018, 52.105419542474216], + [5.54674477783598, 52.111370015746566], + [5.55096954402011, 52.111822263083305], + [5.553586166514013, 52.11326366015461], + [5.56123508625195, 52.12025128492508], + [5.5618945136081965, 52.12168221354211], + [5.56521793622635, 52.12200436031487], + [5.567658133609265, 52.11832279819822], + [5.568619572024082, 52.11820939367796], + [5.5677493336102835, 52.119746178086444], + [5.569468171333535, 52.122179168916354], + [5.5712503165413825, 52.122102102173265], + [5.576730196093793, 52.12045939703061], + [5.5844492202672, 52.121819534012815], + [5.589076440144688, 52.12398520053546], + [5.590367558761153, 52.1236190083627], + [5.591385664863947, 52.12443494399474], + [5.592491910525729, 52.12402649606902], + [5.597670588787564, 52.124210787060186], + [5.601582667884123, 52.12544467055046], + [5.607382913665356, 52.12499479189713], + [5.610430266282137, 52.125510461379655], + [5.616504517268404, 52.127791128519256], + [5.622728250605683, 52.12754975150081], + [5.6349663454563155, 52.12970728237238], + [5.638242858540202, 52.13076534495017], + [5.642920342152169, 52.130430047387556], + [5.645285186097249, 52.130804275447254], + [5.646773452232924, 52.1302654652911], + [5.648364234847636, 52.13091232251646], + [5.656331464575764, 52.131735044429604], + [5.656954406487398, 52.13258006646646], + [5.661649393453176, 52.13204011919092], + [5.66570442042637, 52.132758382898345], + [5.66901770219618, 52.13468609169865], + [5.675693532116858, 52.133353456508935], + [5.67938656317652, 52.13206105905875], + [5.679257248448021, 52.13160332345512], + [5.683932065145585, 52.13214455241012], + [5.685849265397655, 52.13526574063403], + [5.688820902318034, 52.13702718444364], + [5.692518356399699, 52.1373892377098], + [5.695117366139179, 52.13651463906453], + [5.700252848487342, 52.13611528228892], + [5.701825386965676, 52.135376926930135], + [5.717279376514651, 52.13644921150311], + [5.7173012888766666, 52.13748039960488], + [5.7215195207468454, 52.13799433682974], + [5.721938866486569, 52.13859495752942], + [5.720929218674704, 52.14106281113428], + [5.721846907650234, 52.144819715425555], + [5.720612302304969, 52.144991798255035], + [5.720349279944964, 52.14625989956157], + [5.735792987925539, 52.14787677509048], + [5.73607505371981, 52.147908056673025], + [5.7432952099259245, 52.14870041462232], + [5.762105088914296, 52.147597988399305], + [5.774690562490596, 52.15222847045017] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.b48283b2-0112-4a28-993a-15137c12e811", + "properties": { + "statcode": "GM0230", + "jrstatcode": "2024GM0230", + "statnaam": "Elburg", + "rubriek": "gemeente", + "id": 56 + }, + "bbox": [ + 180157.76529999822, 485665.3359999992, 191563.37900000066, + 498187.4028000012 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.850561745074858, 52.466656300169596], + [5.853705638949995, 52.464934962109545], + [5.8590118437303875, 52.46250602565291], + [5.86227139371885, 52.46134008571904], + [5.8634225032980645, 52.462408339013315], + [5.864840036906127, 52.46205522965471], + [5.863026213157716, 52.460961275786744], + [5.867858428502506, 52.45897175880478], + [5.871362869796823, 52.45779334386799], + [5.871464208984115, 52.45660297882893], + [5.872032009275283, 52.45668699119309], + [5.872546716296614, 52.455243119547035], + [5.874066648069272, 52.45565938840952], + [5.874648715794667, 52.454212974398104], + [5.877613383352843, 52.45312358009889], + [5.876435760126485, 52.451913793864186], + [5.874765057144467, 52.45069602464964], + [5.874338463305491, 52.44975901984605], + [5.871383524422375, 52.44785716908404], + [5.873750391466908, 52.446999802769454], + [5.869302914643652, 52.445007294253095], + [5.868766447735458, 52.44479460149759], + [5.8706706771906205, 52.44251745689185], + [5.872242258582297, 52.443028545801496], + [5.87638857499322, 52.43898265390932], + [5.876818064342237, 52.43860471042823], + [5.884389446183773, 52.43177618385513], + [5.886624065219812, 52.42976053332091], + [5.898843715132161, 52.42070573207778], + [5.899954387088412, 52.41981642648504], + [5.908146966035106, 52.416311667886156], + [5.9162916021639935, 52.41294949180126], + [5.905993335171302, 52.40860035907879], + [5.924338612117357, 52.39139294080504], + [5.911693851248698, 52.38679336323126], + [5.876009356648951, 52.3578727677732], + [5.871170540448571, 52.36130928403963], + [5.868452293194057, 52.36130618111699], + [5.864792021363225, 52.35965820464118], + [5.850050106738685, 52.37091671847704], + [5.834680140643234, 52.381991132509604], + [5.821399921727856, 52.39100341361075], + [5.820579213269369, 52.39255651807983], + [5.820578297971018, 52.396933436662046], + [5.817866892974877, 52.39729241223887], + [5.817169851672317, 52.40156682701081], + [5.8120453154592155, 52.40066875408873], + [5.811671501099916, 52.40279894706277], + [5.808010863040415, 52.40177278752091], + [5.801976233367335, 52.40004351077565], + [5.790776348125009, 52.39686154463968], + [5.787687014172278, 52.400061246596785], + [5.786015580822764, 52.39948727890623], + [5.782622367442999, 52.39946914745279], + [5.779818427747557, 52.39864532086812], + [5.77968594767297, 52.398269664790895], + [5.776541272522997, 52.396700487119645], + [5.770747515802325, 52.39551549504097], + [5.768702080187608, 52.39881976567968], + [5.764098524526854, 52.39872288764673], + [5.76296259640903, 52.40066595984232], + [5.759400135975405, 52.40302345306694], + [5.759229818516163, 52.40458601334389], + [5.756912383120765, 52.40686780475259], + [5.766283033371591, 52.41115718267418], + [5.7836048368545745, 52.42037770864585], + [5.787625308920826, 52.42189579391031], + [5.79148520549179, 52.42430958218505], + [5.79760383940622, 52.42820132575211], + [5.804103085692886, 52.431260556128585], + [5.80741443996899, 52.43358130960639], + [5.811099519157296, 52.435705965608214], + [5.812498364194847, 52.437381218730565], + [5.821915474784932, 52.44602365092201], + [5.820745122757188, 52.44654799390259], + [5.819863791835107, 52.447313897472206], + [5.820767156657902, 52.448162344291056], + [5.822410678418972, 52.44970584954254], + [5.822063023185769, 52.449988106974885], + [5.823035730201891, 52.45179891619696], + [5.8232804742213276, 52.452897613497704], + [5.820629744967595, 52.45441114105872], + [5.816228229342282, 52.45593030855067], + [5.81737723482119, 52.45725530699498], + [5.817417671041997, 52.457301930304645], + [5.818513126145246, 52.458157213309036], + [5.819313673756574, 52.45917050195228], + [5.823324210586812, 52.463851525642376], + [5.82799869348943, 52.469333768032875], + [5.8290015891936235, 52.46901734939899], + [5.828927488960049, 52.468024676854775], + [5.82743972167493, 52.46728148792598], + [5.824918713731047, 52.46511894931297], + [5.823017004509195, 52.46232275493323], + [5.823778907561606, 52.461348928936204], + [5.823419538048526, 52.46028772465432], + [5.823149619310583, 52.45944703658453], + [5.824902053862957, 52.45926775683192], + [5.826422574954938, 52.45921502301318], + [5.827231533938921, 52.458833132096274], + [5.827263012087397, 52.45764328799275], + [5.831363978799699, 52.459153733180024], + [5.831685690586097, 52.46023580216041], + [5.8364419271065335, 52.46662714801802], + [5.836906808363405, 52.46676264015972], + [5.837520307257805, 52.46631872001976], + [5.838744984309306, 52.46598980936408], + [5.839654844942173, 52.46594681183336], + [5.84002436038088, 52.46615274225292], + [5.8408572271701775, 52.46719497481382], + [5.842363474215184, 52.470550451520126], + [5.844980153251151, 52.469858681377744], + [5.848405033529627, 52.46721575584976], + [5.850561745074858, 52.466656300169596] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f0b2639d-8168-40c5-ae5d-c83098e5197e", + "properties": { + "statcode": "GM0232", + "jrstatcode": "2024GM0232", + "statnaam": "Epe", + "rubriek": "gemeente", + "id": 57 + }, + "bbox": [ + 185939.58790000156, 474302.48209999874, 203202.6607999988, + 490215.7650000006 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.033863451891185, 52.364746459129165], + [6.037779029972061, 52.36207229830632], + [6.042683924569458, 52.36349518389302], + [6.041726068725454, 52.35790005122431], + [6.041783930948755, 52.35651243885209], + [6.045420801829058, 52.357135089243926], + [6.047709258412566, 52.35796393932396], + [6.052326602432542, 52.36097680064126], + [6.06875771144259, 52.361651595833735], + [6.074858280034631, 52.361922785260205], + [6.07430669011057, 52.36303474173656], + [6.077844927652806, 52.36429706027241], + [6.08088202347077, 52.362036110467706], + [6.088487343946803, 52.36114566129878], + [6.0907128600470015, 52.36044415723847], + [6.093522059905471, 52.35867170848393], + [6.094778511487268, 52.35693105967784], + [6.087240503660913, 52.353889999047155], + [6.0780098838915215, 52.352426431416376], + [6.078098925430134, 52.35175579261977], + [6.076070119108163, 52.350570293943335], + [6.076131209263119, 52.34566932632805], + [6.075329971359418, 52.34455553645621], + [6.076764144533402, 52.33865076005204], + [6.0755795670986465, 52.334741762430895], + [6.074053475342871, 52.33452364564816], + [6.075632414187174, 52.33330016158958], + [6.074355607432586, 52.33255580194331], + [6.07368063105663, 52.330569239498494], + [6.0529480222327825, 52.33090728595721], + [6.052764089203391, 52.32595242514415], + [6.051115077143064, 52.32369809214977], + [6.0465261865748925, 52.315649975374576], + [6.037080405713614, 52.29889321340867], + [6.034762658357159, 52.294795952458635], + [6.034843162508269, 52.29246560009248], + [6.043348444771002, 52.27872655900946], + [6.043452461723375, 52.27560497702506], + [6.04126389396901, 52.271657953166134], + [6.0429332833578835, 52.27004631912218], + [6.0430962225917275, 52.26889179573221], + [6.040673486477591, 52.26822726563168], + [6.0363946561088575, 52.26853038275708], + [6.0343520141875375, 52.26910675486594], + [6.030312504956471, 52.26923251694326], + [6.031044814705188, 52.27092474183553], + [6.028530879587821, 52.270985709994115], + [6.028927090111891, 52.27232384705775], + [6.029761523965568, 52.27261406827065], + [6.031255789760934, 52.275235533084306], + [6.030398586714059, 52.27620475947512], + [6.0288634281547955, 52.27681295248157], + [6.009163006032163, 52.27633819631726], + [5.993370263840441, 52.273931258541886], + [5.98936440026982, 52.27403484213724], + [5.99242241157695, 52.28490036027162], + [5.991404670962686, 52.28554178842942], + [5.98574379777118, 52.28566941033259], + [5.985357342660927, 52.28459382204594], + [5.982169756588, 52.28382551075193], + [5.981137860731394, 52.280704734706305], + [5.973889794601042, 52.273209063044796], + [5.959604097896605, 52.272461313969416], + [5.957921465392868, 52.272367005346815], + [5.936211286369146, 52.27441929471492], + [5.922903994963106, 52.271987927779314], + [5.879592532947868, 52.26499126677916], + [5.867387958308065, 52.25987161980493], + [5.860891915219734, 52.25580705486002], + [5.854520744567981, 52.26010225981249], + [5.8508111524871405, 52.26869537043049], + [5.848169928763115, 52.27511411849661], + [5.848780349662562, 52.27682968373993], + [5.851500571974057, 52.2785437499691], + [5.852154972925185, 52.280090143658796], + [5.845695909458163, 52.28732112953162], + [5.844281922349922, 52.29489844254758], + [5.841184466775376, 52.299530579821855], + [5.840830961413955, 52.30439701525993], + [5.8509926354650545, 52.30878698390718], + [5.870425432816656, 52.32330927890024], + [5.875517353383229, 52.3292687701628], + [5.8748907571445335, 52.32966190226701], + [5.876210147514204, 52.33200628166324], + [5.880951329263021, 52.335185950853244], + [5.87426102913067, 52.34213037434898], + [5.864814276832325, 52.35132889728885], + [5.875000215988378, 52.357044381518435], + [5.876009356648951, 52.3578727677732], + [5.911693851248698, 52.38679336323126], + [5.924338612117357, 52.39139294080504], + [5.942427144803232, 52.396636003870746], + [5.951024347614379, 52.39843712018269], + [5.957117053900628, 52.39289700168125], + [5.991333470272253, 52.37859794104792], + [6.003682921247894, 52.37447824523668], + [6.017478891863032, 52.36988077000345], + [6.0317833955438305, 52.367229883069975], + [6.034665735531867, 52.3661119603201], + [6.033863451891185, 52.364746459129165] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.27a35f7a-ba7b-4786-9514-3cca181a4fd1", + "properties": { + "statcode": "GM0233", + "jrstatcode": "2024GM0233", + "statnaam": "Ermelo", + "rubriek": "gemeente", + "id": 58 + }, + "bbox": [ + 165975.59739999846, 472419.40199999884, 180557.5949999988, + 482319.5540000014 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.748181312837476, 52.30683034385251], + [5.743837229586136, 52.298047278654636], + [5.744294646048454, 52.291959401075786], + [5.744681868178119, 52.288194991531405], + [5.746022325896065, 52.286936879960614], + [5.754648075805967, 52.282602247908805], + [5.75549186388166, 52.277876285540934], + [5.747877556386548, 52.271989617124866], + [5.746503493382074, 52.27167270948116], + [5.749227317243409, 52.26827292484425], + [5.761448675158701, 52.24830382840412], + [5.751679291194089, 52.24608172038766], + [5.726388866191383, 52.242503060872195], + [5.7187981505011996, 52.241491739725355], + [5.715387653399923, 52.24017770064122], + [5.711615310142021, 52.23970637690127], + [5.710997629527789, 52.2396209146821], + [5.706716112967313, 52.239399985946], + [5.693725571054489, 52.23971725944587], + [5.689847869761929, 52.24044277670606], + [5.683642095377853, 52.24061686251765], + [5.6814241057655295, 52.241748749628385], + [5.677158970375205, 52.249691856399664], + [5.675510116815313, 52.25121166391991], + [5.648822886541368, 52.266986047006064], + [5.642055014203807, 52.27068620610289], + [5.639210805666957, 52.27186125999142], + [5.635904323286188, 52.27270175240459], + [5.620899190745051, 52.275627268265254], + [5.619014746817961, 52.2755166262663], + [5.616979655819529, 52.27506018070152], + [5.612223226291243, 52.27532218294041], + [5.611049071117299, 52.27568966801576], + [5.6115229080285784, 52.276397678736814], + [5.610654339834205, 52.27726299522661], + [5.602891352601558, 52.27840709028037], + [5.59787992455808, 52.278658922668306], + [5.593248321828403, 52.27825380674363], + [5.587535892826199, 52.278812386118105], + [5.578194890285811, 52.28185184160304], + [5.577403575183259, 52.28231634075534], + [5.577160542097996, 52.28221926883166], + [5.5769960394382245, 52.282289529867775], + [5.576627335358339, 52.28219330586647], + [5.5765065617820335, 52.282228771924515], + [5.576472688621638, 52.28240668017813], + [5.566289786049503, 52.285228354600186], + [5.5661592866078555, 52.28522302316986], + [5.555273717294919, 52.28670048657886], + [5.5529141426634565, 52.28791756024275], + [5.553799395569671, 52.28836358902218], + [5.552006634092656, 52.29035557366248], + [5.551339779796878, 52.29009685600666], + [5.548078700410442, 52.291811081604585], + [5.559309474806368, 52.31111824897496], + [5.558999190560605, 52.313558690701214], + [5.56038854686325, 52.31493531379145], + [5.55980724156621, 52.315948473231735], + [5.559401421903442, 52.31679095136434], + [5.560711514810633, 52.318214287414534], + [5.561117244869592, 52.31810260050684], + [5.559971086945623, 52.31673265160637], + [5.560399438429438, 52.31605873300255], + [5.56192300043292, 52.31530045490488], + [5.563352955158938, 52.31561915597966], + [5.5643608570974195, 52.31646656619382], + [5.563962320366121, 52.31667697691788], + [5.564090621432363, 52.31690275318956], + [5.563858976958936, 52.31700632327258], + [5.5639925232971175, 52.31711107087784], + [5.562736336061718, 52.31761398178639], + [5.562533625933682, 52.31748462649899], + [5.561902131731383, 52.31774227338949], + [5.561932413005152, 52.317996716538495], + [5.562391608988265, 52.31798824425977], + [5.562677870693327, 52.3179023304668], + [5.564840159234781, 52.317806939756565], + [5.56607863993942, 52.31781892133656], + [5.566996344304692, 52.31863768118047], + [5.566609439680851, 52.318806698365265], + [5.565654039888523, 52.31798618057083], + [5.565351142055409, 52.317975749972284], + [5.565387998338305, 52.31872088082222], + [5.565086994791846, 52.3187305557177], + [5.565027696524043, 52.31802007011103], + [5.564421944158796, 52.31803943191938], + [5.564477445136183, 52.318745321823094], + [5.564127496015823, 52.31875045702153], + [5.564094623152194, 52.318053763432005], + [5.562631772708379, 52.31807979233171], + [5.563890214142243, 52.319159646248245], + [5.564151445787344, 52.31917549156573], + [5.566784101700403, 52.31913529487292], + [5.567828764385442, 52.32041064202575], + [5.575753570100171, 52.32659785890449], + [5.577296402055826, 52.325703578777855], + [5.578288571559306, 52.3251131479275], + [5.581517754084338, 52.322577810322876], + [5.587425707447772, 52.321629985281355], + [5.587669550202258, 52.32101266661564], + [5.593252013585256, 52.3192705724094], + [5.59756133707466, 52.31930608503663], + [5.602050608084794, 52.317985563744884], + [5.60194461723643, 52.31974688457621], + [5.608691313438414, 52.31905381582403], + [5.620376335602599, 52.3263313188888], + [5.623111179274106, 52.32753201875601], + [5.623453488648045, 52.32666732802873], + [5.6287840274542145, 52.326815581529615], + [5.63017685127729, 52.326230423812845], + [5.6302638312382705, 52.32685050281156], + [5.6407036286227346, 52.32074879946856], + [5.650483526919237, 52.315009475534644], + [5.670796097268053, 52.30391690409293], + [5.678123685828776, 52.30149213064586], + [5.6864471091312625, 52.31314286041569], + [5.706171277972456, 52.32838184481975], + [5.74804249007244, 52.31782615159458], + [5.750747823133271, 52.31707376034144], + [5.7491166698819605, 52.310006708638745], + [5.748181312837476, 52.30683034385251] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.89b8aa1b-63bf-482d-809d-3aa5bf1f99b0", + "properties": { + "statcode": "GM0243", + "jrstatcode": "2024GM0243", + "statnaam": "Harderwijk", + "rubriek": "gemeente", + "id": 59 + }, + "bbox": [ + 167853.62159999833, 479319.67500000075, 177191.568, 487926.0300000012 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.605991237698152, 52.36321604677956], + [5.603903004179828, 52.36174344943016], + [5.601445541863489, 52.36090275549017], + [5.601881507125379, 52.36152016690045], + [5.600945585225775, 52.361789603135506], + [5.599309616202659, 52.36159187159823], + [5.595680660813332, 52.36169470984655], + [5.593680896620064, 52.362077679742505], + [5.593330093240843, 52.36282613881436], + [5.594581903797089, 52.363307095145466], + [5.598461038307269, 52.363519139249924], + [5.605991237698152, 52.36321604677956] + ] + ], + [ + [ + [5.6800215225077615, 52.37603268315278], + [5.695655905793134, 52.360760534886516], + [5.697104114947885, 52.36111439466134], + [5.698355340637039, 52.36059279252823], + [5.700661974984433, 52.35748758205071], + [5.698686124933422, 52.356732446846], + [5.698728512227739, 52.3560170979896], + [5.698641431569033, 52.35580807502835], + [5.699054370366086, 52.3528013733668], + [5.704134850528546, 52.34685122908608], + [5.704838752818553, 52.3441284027496], + [5.705075515672251, 52.342870486862964], + [5.705462097190035, 52.33985992515576], + [5.711019756729654, 52.33872470976598], + [5.712802896220754, 52.33623884229346], + [5.712480645176463, 52.33184536628121], + [5.706171277972456, 52.32838184481975], + [5.6864471091312625, 52.31314286041569], + [5.678123685828776, 52.30149213064586], + [5.670796097268053, 52.30391690409293], + [5.650483526919237, 52.315009475534644], + [5.6407036286227346, 52.32074879946856], + [5.6302638312382705, 52.32685050281156], + [5.63017685127729, 52.326230423812845], + [5.6287840274542145, 52.326815581529615], + [5.623453488648045, 52.32666732802873], + [5.623111179274106, 52.32753201875601], + [5.620376335602599, 52.3263313188888], + [5.608691313438414, 52.31905381582403], + [5.60194461723643, 52.31974688457621], + [5.602050608084794, 52.317985563744884], + [5.59756133707466, 52.31930608503663], + [5.593252013585256, 52.3192705724094], + [5.587669550202258, 52.32101266661564], + [5.587425707447772, 52.321629985281355], + [5.581517754084338, 52.322577810322876], + [5.578288571559306, 52.3251131479275], + [5.577296402055826, 52.325703578777855], + [5.575753570100171, 52.32659785890449], + [5.581731586848028, 52.3299563523767], + [5.593994719632233, 52.33428184863409], + [5.598278302636996, 52.337128935423564], + [5.603180048401167, 52.33983390557654], + [5.607491228432528, 52.34271305026208], + [5.6113661716369405, 52.34556746036973], + [5.612272420560997, 52.34742791483127], + [5.6125866710270955, 52.34959892519578], + [5.6146789822174314, 52.35073949362855], + [5.612819048324639, 52.35108630836289], + [5.612014922323654, 52.351698600767655], + [5.615144133969329, 52.351694991608994], + [5.614931336708973, 52.3519910857201], + [5.613396286080454, 52.35204068244044], + [5.613354952052312, 52.352284223829734], + [5.615550065086064, 52.35349426446706], + [5.614282995416841, 52.35680222011064], + [5.619954406057345, 52.354622285185606], + [5.620649097825541, 52.35377003630233], + [5.620656259876049, 52.35355691287788], + [5.621055050618435, 52.353380533561285], + [5.621132307408601, 52.353448657082794], + [5.621228237535307, 52.3534013523117], + [5.621190696957518, 52.35321659687772], + [5.621474426199415, 52.353016266127746], + [5.621341384314059, 52.35284202758114], + [5.622268638216785, 52.35224977149131], + [5.623676784180569, 52.35195865313749], + [5.62384001093579, 52.35183203416619], + [5.623831301536876, 52.35154163866392], + [5.6234404194404375, 52.351182380077645], + [5.624171160814177, 52.350870435544174], + [5.624815265249339, 52.35143757407505], + [5.621165871758661, 52.35353134608149], + [5.621378130020019, 52.3537365997509], + [5.620368986927188, 52.354966729961], + [5.620499989065464, 52.355206975092464], + [5.622664549941209, 52.35543577540491], + [5.623805764703869, 52.35538848212819], + [5.623961798231944, 52.355269323734646], + [5.6248360172448315, 52.35460169207581], + [5.625476197413353, 52.3549546395967], + [5.62415313295304, 52.355549832627254], + [5.622444412201849, 52.35558476911733], + [5.6219738300257225, 52.35567051245259], + [5.620849281224814, 52.35548917102068], + [5.617509552594679, 52.356483826549564], + [5.615675402651012, 52.3566743405062], + [5.615445871461025, 52.35705709384868], + [5.616938797582282, 52.35758626296392], + [5.619139423453842, 52.35844441319933], + [5.619378831301624, 52.360019412876376], + [5.619097731022197, 52.36017056363262], + [5.61898248481119, 52.35862978139511], + [5.618872610024697, 52.358643938289404], + [5.619018866764098, 52.359673754199804], + [5.618386976571667, 52.359540510320656], + [5.618272042739837, 52.35895099704294], + [5.618110629225821, 52.358981749796214], + [5.617829408321867, 52.35931299980804], + [5.615718950913314, 52.35860224582292], + [5.615875097815336, 52.358400212367314], + [5.615356553226782, 52.35822583581371], + [5.615895473353883, 52.35769261624395], + [5.6149803264178, 52.35723433761602], + [5.614417363776181, 52.35782174338045], + [5.614336339876612, 52.35810282867449], + [5.61439997251716, 52.35814154464059], + [5.614523670439949, 52.357935464355705], + [5.614760701613287, 52.3579764351148], + [5.61493876455647, 52.35816140897717], + [5.6149168341826226, 52.35838616237755], + [5.614659045549394, 52.35850659198508], + [5.614417064575941, 52.35831954936046], + [5.614390666493886, 52.358414655839276], + [5.618897603832792, 52.360340943189065], + [5.617495779541814, 52.361019359510614], + [5.616754243293214, 52.360644575096444], + [5.614033940522963, 52.36225042645235], + [5.614926215247963, 52.36250428613443], + [5.615318687956771, 52.36261406929985], + [5.625167672941383, 52.35824732301938], + [5.62708521734052, 52.3569957051358], + [5.6274366274510665, 52.35715265271778], + [5.627156250268106, 52.35791253872694], + [5.625058926129883, 52.35916526337614], + [5.6255430644176485, 52.35967428040787], + [5.626939522301875, 52.35884354868306], + [5.626612948652177, 52.35846668337479], + [5.627607762785067, 52.35787680906594], + [5.628510420555995, 52.35849041347569], + [5.6285815420000835, 52.360549952564334], + [5.627079275423627, 52.36057021145334], + [5.627064188233468, 52.3609958264744], + [5.627382151790679, 52.36098353950387], + [5.627411958860476, 52.36068662690571], + [5.628057947355459, 52.36067527389874], + [5.6281063993616325, 52.36104394620573], + [5.627519297629475, 52.361143609002006], + [5.628100830506395, 52.3614536311635], + [5.6281968915218705, 52.364441215337536], + [5.628959594355169, 52.36472063850985], + [5.629718112978632, 52.36424163666786], + [5.629277693598603, 52.36398001971967], + [5.629219763636832, 52.361815762262104], + [5.6298148611706305, 52.361521105351265], + [5.630956490854781, 52.36219596594748], + [5.630253950114954, 52.36260072841265], + [5.629762894751391, 52.36261298274682], + [5.6297799570091005, 52.36365787217471], + [5.630358137340843, 52.36390585931889], + [5.633172661420119, 52.361796902088955], + [5.638863837516873, 52.362421492480756], + [5.640499475691612, 52.36337797650475], + [5.639961118414844, 52.36371557070583], + [5.63409841609762, 52.362815541429434], + [5.630172525970433, 52.36545667405208], + [5.630659843287997, 52.36585379616747], + [5.641295579620431, 52.36605617012402], + [5.644205574986738, 52.36758569527016], + [5.648777714097656, 52.36750021273429], + [5.653339680930545, 52.36484073231918], + [5.6740449888516595, 52.37510654495471], + [5.677226137629808, 52.377005736515855], + [5.6775912137254085, 52.37868545821015], + [5.678921586770262, 52.37884125882498], + [5.6800215225077615, 52.37603268315278] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.02dd48f8-e0a0-4b8a-b8b7-71ec0a282261", + "properties": { + "statcode": "GM0244", + "jrstatcode": "2024GM0244", + "statnaam": "Hattem", + "rubriek": "gemeente", + "id": 60 + }, + "bbox": [ + 196664.76300000027, 495308.65399999917, 203693.11800000072, + 502628.33900000155 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.04050911410419, 52.50625770803496], + [6.046187366442828, 52.50386063899374], + [6.054220198457415, 52.49978708317915], + [6.0583975506247265, 52.496003131338924], + [6.0617741985307365, 52.49039817764613], + [6.063430334918033, 52.488053192485964], + [6.0663711842107215, 52.485170772318675], + [6.071425339381989, 52.482107475450064], + [6.07642127709086, 52.48022335003366], + [6.089267535301642, 52.47681125931668], + [6.094246417841711, 52.474110997749996], + [6.099146867953485, 52.47031050010771], + [6.101701232463003, 52.46634727491938], + [6.103545928864001, 52.453963716689124], + [6.100060383595274, 52.453973143209446], + [6.094876886579504, 52.45186339953221], + [6.092848172646546, 52.45480644058699], + [6.078991183176144, 52.45208346525778], + [6.068768835093465, 52.45130673161255], + [6.063320504101763, 52.45115134175568], + [6.060676375822726, 52.45045910095073], + [6.035476649607161, 52.443778260769676], + [6.02266741761997, 52.44410310866796], + [6.029390956384332, 52.452652516135956], + [6.030235281055052, 52.453780365029694], + [6.034714255772959, 52.46167677084678], + [6.033922648374563, 52.46439577541917], + [6.036108216295706, 52.46751214715484], + [6.036938393972211, 52.470310860021094], + [6.035908837237363, 52.47415975290016], + [6.033288684330214, 52.4780357954016], + [6.032862527954832, 52.478499105598466], + [6.0285378517036365, 52.48195556896983], + [6.0259330718526085, 52.483286209893585], + [6.021393567379662, 52.48373414954256], + [6.01963053230485, 52.48365973198142], + [6.0166998924581545, 52.482270219330836], + [6.016040394930805, 52.48274623328616], + [6.018527104102996, 52.484466722428536], + [6.018976403772213, 52.48895816674525], + [6.008741492031053, 52.49656933532258], + [6.0007883995287825, 52.50014882409336], + [6.007609954942156, 52.5042600303003], + [6.012367444056241, 52.50593976624246], + [6.014542596810986, 52.50577442166454], + [6.01508037331039, 52.50596278557387], + [6.019337544367755, 52.50482748352468], + [6.022851398769132, 52.50533187491465], + [6.025346483902348, 52.506573325633745], + [6.027857495881694, 52.50960619807542], + [6.04050911410419, 52.50625770803496] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.b23c0ed3-6442-48d7-9709-f4fa6a5bf4e6", + "properties": { + "statcode": "GM0246", + "jrstatcode": "2024GM0246", + "statnaam": "Heerde", + "rubriek": "gemeente", + "id": 61 + }, + "bbox": [ + 193373.78200000152, 485603.11499999836, 205590.5218999982, + 496572.1570000015 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.092848172646546, 52.45480644058699], + [6.094876886579504, 52.45186339953221], + [6.100060383595274, 52.453973143209446], + [6.103545928864001, 52.453963716689124], + [6.101985938318848, 52.4477999468775], + [6.102294635813016, 52.44577189902508], + [6.105023646038435, 52.44258657106778], + [6.109580016796527, 52.440530727870694], + [6.1141066817593686, 52.4380064650968], + [6.119489293919116, 52.432925717223355], + [6.116385032308631, 52.43019943026929], + [6.118169119449726, 52.42843684151158], + [6.118244866540685, 52.42664384189268], + [6.113871943593512, 52.419853255861725], + [6.113572497705246, 52.41690566718485], + [6.114741104917125, 52.414255603627836], + [6.110806828784857, 52.40781256215297], + [6.114857081912373, 52.406985379295534], + [6.116246638484041, 52.404875138480755], + [6.119064762234602, 52.40264187456349], + [6.123683203429971, 52.40191615694336], + [6.1253722823585255, 52.40017733056413], + [6.1275792394590685, 52.39961730441411], + [6.1305527164966716, 52.399977689045215], + [6.12997056433021, 52.39860332111666], + [6.12520844874622, 52.39262716839241], + [6.1261966445681875, 52.38606593177523], + [6.125829977270933, 52.38405853426802], + [6.123650405581344, 52.38131818503421], + [6.120853832327386, 52.37954197156842], + [6.113371072549623, 52.37720882573386], + [6.095133368065179, 52.37384113341648], + [6.0824633044853975, 52.37206929154968], + [6.079701213856353, 52.37066484955077], + [6.078203163966864, 52.3690461671143], + [6.077844927652806, 52.36429706027241], + [6.07430669011057, 52.36303474173656], + [6.074858280034631, 52.361922785260205], + [6.06875771144259, 52.361651595833735], + [6.052326602432542, 52.36097680064126], + [6.047709258412566, 52.35796393932396], + [6.045420801829058, 52.357135089243926], + [6.041783930948755, 52.35651243885209], + [6.041726068725454, 52.35790005122431], + [6.042683924569458, 52.36349518389302], + [6.037779029972061, 52.36207229830632], + [6.033863451891185, 52.364746459129165], + [6.034665735531867, 52.3661119603201], + [6.0317833955438305, 52.367229883069975], + [6.017478891863032, 52.36988077000345], + [6.003682921247894, 52.37447824523668], + [5.991333470272253, 52.37859794104792], + [5.957117053900628, 52.39289700168125], + [5.951024347614379, 52.39843712018269], + [5.951861241063201, 52.40095606074245], + [5.966727261808303, 52.4055717336558], + [5.9737249511301345, 52.40976966252647], + [5.994003192074276, 52.4260627168076], + [6.017755219298865, 52.44420863567247], + [6.02266741761997, 52.44410310866796], + [6.035476649607161, 52.443778260769676], + [6.060676375822726, 52.45045910095073], + [6.063320504101763, 52.45115134175568], + [6.068768835093465, 52.45130673161255], + [6.078991183176144, 52.45208346525778], + [6.092848172646546, 52.45480644058699] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.0038133c-c78d-4e16-b6af-4e9f0889da55", + "properties": { + "statcode": "GM0252", + "jrstatcode": "2024GM0252", + "statnaam": "Heumen", + "rubriek": "gemeente", + "id": 62 + }, + "bbox": [ + 178642.16600000113, 418241, 189934.1860000007, 424695.12999999896 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.879397499759684, 51.80827779438779], + [5.881024784409381, 51.801449424181975], + [5.887442782936183, 51.79537367508367], + [5.887208905028552, 51.78534556352023], + [5.887983591298603, 51.7829808193431], + [5.893087021994762, 51.77814904008921], + [5.893409258369347, 51.77785292497381], + [5.886374560436388, 51.77859045457154], + [5.869015285791381, 51.77573531296609], + [5.867893198232532, 51.77552102073724], + [5.867454943507644, 51.774417324620785], + [5.867408597336814, 51.767603332257245], + [5.869244699343948, 51.76286047609876], + [5.867141569481413, 51.760462156195075], + [5.865039867487945, 51.75824975891624], + [5.864468842426048, 51.75768172202199], + [5.852149570736836, 51.75931737653251], + [5.842415872445692, 51.758812089037306], + [5.821495122602143, 51.75744528361758], + [5.809467519159538, 51.756533932437826], + [5.790534313506559, 51.753509054770596], + [5.779665513837515, 51.75221195843451], + [5.769298547539311, 51.7523471565702], + [5.757958543871319, 51.75418822171423], + [5.751709408315712, 51.75604316939542], + [5.7452385529258345, 51.7591444932625], + [5.740779258930957, 51.763247942042454], + [5.735681624094046, 51.768914117163064], + [5.73202487397093, 51.77189384948585], + [5.729745375124904, 51.77285104821921], + [5.732200274852767, 51.778177953847134], + [5.733694093113373, 51.77793630548672], + [5.734036900471254, 51.77989872674334], + [5.737011819201295, 51.77834874760299], + [5.74053912235784, 51.7779048525949], + [5.741458064284689, 51.7787629578781], + [5.74641186619655, 51.778838416799246], + [5.768541287161043, 51.78256721242976], + [5.769473255256718, 51.78518931268911], + [5.774988313884025, 51.7837733627518], + [5.778594851348658, 51.78407414220838], + [5.78065884003267, 51.784203982040886], + [5.795984801306128, 51.791875581338786], + [5.800948664789277, 51.79515143637125], + [5.810220507138469, 51.790589432899836], + [5.813811577977511, 51.79281080624546], + [5.814077823352474, 51.792819873754574], + [5.824504374262809, 51.79800340096578], + [5.824685287300757, 51.79809338953604], + [5.826860178750462, 51.79953879442585], + [5.825506135985882, 51.800128244465604], + [5.836960266523582, 51.80610932407246], + [5.839168014345883, 51.80460884856663], + [5.8413327053575275, 51.805904498090946], + [5.840944375936404, 51.80719995605895], + [5.846964556542884, 51.808114924279735], + [5.852625729973995, 51.807503663796375], + [5.853026310339476, 51.807852546897266], + [5.864756488013596, 51.80980393423815], + [5.876704416224664, 51.809860003221424], + [5.879110108282534, 51.80952987481598], + [5.879397499759684, 51.80827779438779] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d5dc1568-2e59-4548-88ae-55d8ef89b201", + "properties": { + "statcode": "GM0262", + "jrstatcode": "2024GM0262", + "statnaam": "Lochem", + "rubriek": "gemeente", + "id": 63 + }, + "bbox": [ + 207589.89799999818, 457025.0920000002, 230735.49799999967, + 473584.2109999992 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.3859627215158, 52.243109265649565], + [6.389863307871805, 52.242559183372244], + [6.402618864400438, 52.24327170994379], + [6.416422228279953, 52.242166351854735], + [6.416395241612498, 52.23952515078794], + [6.416807354524148, 52.2371263389919], + [6.421974923832512, 52.23292575026087], + [6.42934228186543, 52.22313580161101], + [6.431573657612693, 52.22124423412671], + [6.439967782771839, 52.217067151919004], + [6.446310979561898, 52.21280091641644], + [6.452745778180853, 52.206477188969565], + [6.453491243327994, 52.20417245873741], + [6.456133276765448, 52.20170922781636], + [6.45728705923815, 52.200964656567955], + [6.4671183123413005, 52.20039534175605], + [6.470269541998202, 52.19937978943556], + [6.469464453868264, 52.19828203296691], + [6.469998978379989, 52.19269046761185], + [6.472699992490094, 52.189040469988385], + [6.478356972029017, 52.18382723681527], + [6.479031684028356, 52.18259959510568], + [6.490646945014629, 52.179862976629565], + [6.4924011400701405, 52.177371863954], + [6.492221880746962, 52.176115612459], + [6.494371805383818, 52.17319641556879], + [6.492845869898656, 52.16943006502904], + [6.487846365421266, 52.161193829041004], + [6.483787986911382, 52.15719940977948], + [6.461404340847371, 52.152143053156436], + [6.462662389870966, 52.15060115701715], + [6.466519419585322, 52.14963963980831], + [6.466581728730691, 52.14733645172575], + [6.469434609892031, 52.14747542418982], + [6.470711100463976, 52.1464065480068], + [6.470959069007593, 52.14401042301396], + [6.481224347115252, 52.14247886912107], + [6.481646688708074, 52.140914589959216], + [6.484866945565959, 52.1372750115252], + [6.488518329801672, 52.134242597164835], + [6.487889558952293, 52.13243911048842], + [6.486522149053334, 52.1318750657376], + [6.488258866292592, 52.12998080959605], + [6.488304685500533, 52.12690266059279], + [6.491409544838788, 52.12614253989177], + [6.492109452798583, 52.12400465299844], + [6.489717072028502, 52.12064197225005], + [6.491187738751647, 52.120035051083384], + [6.489031557315356, 52.11929884551437], + [6.487472846909658, 52.11632841946339], + [6.48459297666152, 52.114495353346484], + [6.481173826537257, 52.110290215808355], + [6.48246887591327, 52.109060953919425], + [6.482002483343294, 52.10592272607668], + [6.480116344237232, 52.10465837181014], + [6.4785436357681405, 52.10068968876875], + [6.4768922817890635, 52.10042146780271], + [6.4725379270817855, 52.1021048819374], + [6.4724228895260785, 52.104063501834496], + [6.47019433022859, 52.104290924519795], + [6.470497860691834, 52.10585270774441], + [6.46670426311179, 52.1066064544674], + [6.461463506725624, 52.104026314382104], + [6.460133099259784, 52.10673835836192], + [6.455204914932255, 52.10798014759412], + [6.452466355095423, 52.10690553004645], + [6.451822447465271, 52.10730397429409], + [6.444885068967358, 52.106196101416145], + [6.44346119748804, 52.104771349609294], + [6.439742272107557, 52.103132179014565], + [6.437558663513509, 52.10374275770018], + [6.423998570852531, 52.096907988194], + [6.418422294650441, 52.10043873004563], + [6.3915296545633975, 52.11305094396759], + [6.396489461539771, 52.11714835102107], + [6.398389379428459, 52.11764775067424], + [6.391822331996108, 52.12372778550715], + [6.395843274913926, 52.13083229941908], + [6.392680634000248, 52.13149368451724], + [6.38267792717388, 52.12854864868069], + [6.383440364774999, 52.127261248107146], + [6.379200863040735, 52.12589499288977], + [6.377940067370342, 52.12715327608646], + [6.3691392676570535, 52.123969253550385], + [6.36198348074678, 52.12666911063275], + [6.357721570175844, 52.13029935547982], + [6.357721049106952, 52.13552675248663], + [6.3283143682943575, 52.13771236167568], + [6.326558908126319, 52.14738652395646], + [6.324000867097928, 52.15275247454836], + [6.315288184162192, 52.151291465772985], + [6.305119832397814, 52.15067343422625], + [6.300918053872613, 52.14911116744044], + [6.298111113860965, 52.149819707703365], + [6.295697171361044, 52.14883076306278], + [6.290280054037637, 52.14940149527915], + [6.286444384079392, 52.148939069258994], + [6.283416349489539, 52.14829814740824], + [6.28015096836345, 52.14947284338165], + [6.276896346054738, 52.14947274365944], + [6.27453769044505, 52.148843862816584], + [6.269791382073079, 52.149958701971784], + [6.266032062984267, 52.14786517003843], + [6.264391188419947, 52.14707534954938], + [6.251103341170808, 52.146761161658596], + [6.249285082429027, 52.14745067395197], + [6.2443460109239926, 52.146693584762], + [6.240150946636946, 52.14605035826649], + [6.2379738174292765, 52.1461258135241], + [6.235260911921745, 52.15542862801523], + [6.231640112295463, 52.15594031346044], + [6.228878056260944, 52.15534547999091], + [6.228448630347939, 52.15477279529789], + [6.223478066083305, 52.15384425178554], + [6.223071565394404, 52.15583112556095], + [6.219153205433696, 52.156076853729786], + [6.218674307871156, 52.15836227710941], + [6.2161183693210775, 52.158587641600576], + [6.2171951831299825, 52.15959850031444], + [6.216860549591489, 52.16177675852349], + [6.215826518814786, 52.16203651612169], + [6.211813887463757, 52.163073832339336], + [6.207221671483315, 52.16664368521853], + [6.200528649963489, 52.16491672322954], + [6.198707960948838, 52.16291027540162], + [6.19526349648371, 52.16562339425669], + [6.192799433875919, 52.169801272758804], + [6.194362942206431, 52.17431990047233], + [6.193621036765016, 52.176448600361326], + [6.191544938170743, 52.17843976190413], + [6.188912785242937, 52.17969787325013], + [6.181141250099378, 52.18136551200009], + [6.169533121150758, 52.189089528902294], + [6.165399109175377, 52.18982723332223], + [6.161437733164451, 52.189359002942254], + [6.159033141102382, 52.190092295837495], + [6.156350216941221, 52.19360089471477], + [6.156512300161212, 52.19773626792584], + [6.158203162022065, 52.19974311585267], + [6.161430547783043, 52.20109355226959], + [6.1721192045779745, 52.20120999168976], + [6.178365465731099, 52.20330094674891], + [6.184037165766714, 52.2042982427264], + [6.189597266580743, 52.207731593984455], + [6.191050967010306, 52.21058492680977], + [6.190717193227785, 52.2143629298588], + [6.189254526576556, 52.21726754125302], + [6.18081737795115, 52.22315575904312], + [6.173975711725616, 52.225959451834235], + [6.169682076186786, 52.229486167733434], + [6.166268837707009, 52.2310137722371], + [6.167341719118207, 52.23125249224775], + [6.174214227539691, 52.2327813288772], + [6.178384390510494, 52.23369849652849], + [6.1825309399763055, 52.23382502778346], + [6.184974158517171, 52.23199117091324], + [6.184836636343464, 52.23181992231473], + [6.185990125713303, 52.23139747236439], + [6.186044284118067, 52.23145196087072], + [6.186856540302275, 52.23097499617134], + [6.189135621400806, 52.22916651125447], + [6.189447034222159, 52.22934336863829], + [6.190140238663599, 52.22921293860673], + [6.2031101105593045, 52.22926922278618], + [6.216948515734998, 52.22647364619109], + [6.214515295754353, 52.231325237732776], + [6.216480266498975, 52.23147471617706], + [6.222479205737121, 52.22887322693534], + [6.227766138415904, 52.229755090054695], + [6.233920018898336, 52.22903541944309], + [6.238451853130138, 52.22758558464876], + [6.2572947488317086, 52.22727621718714], + [6.260835363413882, 52.22907097050746], + [6.264718443763694, 52.22724780812237], + [6.269400446443918, 52.22645738903257], + [6.271290920265654, 52.226413631623835], + [6.271007101961603, 52.227909964655275], + [6.277235028428908, 52.22793616925665], + [6.286333194131257, 52.230362024531956], + [6.29170568811349, 52.230875206018084], + [6.292829212313474, 52.23082722785323], + [6.293035060811958, 52.2295124583503], + [6.296951805920907, 52.2290012192892], + [6.297942287326825, 52.22552982973461], + [6.3204291908568555, 52.22566908593469], + [6.325434033916564, 52.226996635966586], + [6.338708310456893, 52.22715286371285], + [6.338056879224601, 52.23622294892035], + [6.34922301635646, 52.24010481781617], + [6.349651546646991, 52.2412412279511], + [6.351761368385608, 52.24169823938444], + [6.366851309466937, 52.24153213908304], + [6.377348460142297, 52.24474994707689], + [6.381851467515696, 52.24611280613758], + [6.383410827445524, 52.244015806648896], + [6.3859627215158, 52.243109265649565] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.6f4498ba-8c71-41e9-8b3a-eced0cc9f47f", + "properties": { + "statcode": "GM0263", + "jrstatcode": "2024GM0263", + "statnaam": "Maasdriel", + "rubriek": "gemeente", + "id": 64 + }, + "bbox": [140272.5515, 416104, 157000.78500000015, 427674.28500000015], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.40533860898151, 51.834653427414594], + [5.405843280539788, 51.832705633363894], + [5.40697064187125, 51.83280054406771], + [5.40833137135651, 51.829280618959515], + [5.414964973182289, 51.824937797451206], + [5.41622292781237, 51.82263981464071], + [5.414885448888102, 51.8212901864388], + [5.410409641800704, 51.82254524656683], + [5.4060582100964165, 51.8224201954743], + [5.401706346127795, 51.82089279847573], + [5.400054070993443, 51.819417477868065], + [5.398384889637789, 51.81715553370845], + [5.394409465519178, 51.8127230573151], + [5.383490521346241, 51.80463369635861], + [5.375603085137705, 51.79616023551823], + [5.370194004813801, 51.79109690017174], + [5.369038904155726, 51.78981619858384], + [5.362538883477008, 51.77946368778759], + [5.360429645810032, 51.7686803424799], + [5.359927399756343, 51.76058743748614], + [5.357568156552572, 51.757890339808085], + [5.353514362603138, 51.755477250257485], + [5.322041220280863, 51.74652362993229], + [5.304360847765771, 51.73878397215797], + [5.3003386804362504, 51.73728743740514], + [5.29599666187431, 51.736717872139764], + [5.291652399618709, 51.73726271247455], + [5.283284992705538, 51.73977682696585], + [5.27572029817583, 51.740169909857364], + [5.268538278183075, 51.73964741441586], + [5.264141428395134, 51.73882804853722], + [5.255466236327561, 51.73489966193039], + [5.249679660079175, 51.733580706680655], + [5.244678517382105, 51.734421236411706], + [5.231103772468126, 51.741303936727164], + [5.222139375014899, 51.7433875572342], + [5.216347456321717, 51.743451172921304], + [5.211850927613208, 51.74273564424245], + [5.2064941735584505, 51.74147718457158], + [5.195524362743061, 51.740273186983856], + [5.185699795362008, 51.74191755621143], + [5.185020537197266, 51.74580287442915], + [5.184444610872999, 51.74586409851129], + [5.185725164936867, 51.75064573087652], + [5.184950935373573, 51.75363648565011], + [5.183518676780663, 51.75581771721522], + [5.179674914989588, 51.759237072339424], + [5.174565360732372, 51.7610727599326], + [5.175128040703433, 51.76253166380053], + [5.173862856412278, 51.76408997808645], + [5.180651656328559, 51.766555170338265], + [5.181506569729147, 51.76641926935498], + [5.183902502380252, 51.76609505572254], + [5.1900471040703815, 51.76565052950682], + [5.192412062398538, 51.76645584382996], + [5.191994804762965, 51.767452528646174], + [5.195904829018683, 51.76744039503965], + [5.206601466417917, 51.76905432284672], + [5.211125847887119, 51.76925621752436], + [5.214461488559608, 51.768616910502026], + [5.231572363425694, 51.770627186942455], + [5.233437277517073, 51.770815275645475], + [5.2374440779504585, 51.77196463174208], + [5.240197518208007, 51.7710071594231], + [5.248865045324594, 51.77123622029816], + [5.251738256015005, 51.772415697388695], + [5.259637871220192, 51.77389092679609], + [5.262558050534824, 51.773822704081546], + [5.26252178662136, 51.774646427436586], + [5.269919711716715, 51.77432641824792], + [5.268294897676415, 51.783360327199325], + [5.2664525422193496, 51.793121890864086], + [5.276312418947902, 51.79521058475414], + [5.286270910770268, 51.799140531269934], + [5.288436672175655, 51.799574302595275], + [5.288170559738095, 51.80017671431442], + [5.281007510027312, 51.801917052144056], + [5.28371497413889, 51.80326213025502], + [5.283874571990465, 51.80515069497874], + [5.283086351324602, 51.80606729995706], + [5.284480181035614, 51.806540264131385], + [5.280852676748152, 51.81040064860337], + [5.2829589158652075, 51.81224794925378], + [5.283258650279247, 51.81699395173113], + [5.284695389190782, 51.81743350473501], + [5.281717973341229, 51.82120751418325], + [5.29055341618485, 51.82323520582551], + [5.297845703365956, 51.82405728573273], + [5.304600300762132, 51.8239633531776], + [5.311269551559325, 51.823144415759074], + [5.316328372143325, 51.821796947209805], + [5.324842666811741, 51.81780699789357], + [5.326105155488768, 51.81700860053479], + [5.328299181931772, 51.81525065928869], + [5.333551008172002, 51.81034899277383], + [5.339032094019697, 51.80659414504522], + [5.343677405108738, 51.80485914706765], + [5.347068309128082, 51.80423487863437], + [5.347412137836948, 51.80418637801469], + [5.354082559044399, 51.80420646049165], + [5.361095867933307, 51.805719689156994], + [5.365796306095346, 51.807953554409515], + [5.370683523419813, 51.811952038752516], + [5.384391410097796, 51.82729179780822], + [5.393419546977249, 51.8337932435837], + [5.40063321565599, 51.837658770487856], + [5.40533860898151, 51.834653427414594] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.3bfce242-e8d4-4089-80c7-2024458cfcfb", + "properties": { + "statcode": "GM0267", + "jrstatcode": "2024GM0267", + "statnaam": "Nijkerk", + "rubriek": "gemeente", + "id": 65 + }, + "bbox": [ + 155410.51999999955, 464188.12999999896, 171929.80000000075, + 475060.57820000127 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.47069250436847, 52.26329692386025], + [5.47095080509607, 52.262658955863806], + [5.476136735930248, 52.26310925415519], + [5.472907302792122, 52.26222302532649], + [5.472994398262452, 52.26202593051839], + [5.474323051450092, 52.26202714593898], + [5.474291526864435, 52.26171951726283], + [5.472221162133028, 52.26126850044752], + [5.473657186299708, 52.25761503547892], + [5.474810005267478, 52.25705836312145], + [5.478619572754936, 52.257819679198576], + [5.478542890613271, 52.2574315344158], + [5.474192020158945, 52.25646992395297], + [5.481325042940306, 52.24339216787401], + [5.483690292626931, 52.23924354775698], + [5.487881236114133, 52.236594727168104], + [5.490012967884455, 52.23582878063491], + [5.496081783908344, 52.23627908016568], + [5.497391884118923, 52.236372269509545], + [5.4993822098668295, 52.23388405080499], + [5.500994386142935, 52.23411985640073], + [5.501705333840608, 52.2329602619504], + [5.506443027190484, 52.23159341904207], + [5.508152144411423, 52.23250605404528], + [5.510333315638734, 52.23283800004176], + [5.510998771527339, 52.23380865236688], + [5.510246938001279, 52.235330158670756], + [5.512974437169173, 52.23573193111318], + [5.512765143978324, 52.2346903141041], + [5.515015182575516, 52.234345274948375], + [5.515573269994932, 52.23412794400199], + [5.514878603960341, 52.23114174156444], + [5.517681208997223, 52.23141212896984], + [5.517510435794504, 52.230958828436826], + [5.5193971517135, 52.230620980096724], + [5.523485770915264, 52.22750081553319], + [5.523014948323614, 52.227303869115], + [5.526941412094557, 52.22304362684912], + [5.533144806892784, 52.219103828193916], + [5.534592309612901, 52.219296372309444], + [5.53622373140152, 52.217602389157385], + [5.540414714474423, 52.213254055206605], + [5.539610663084491, 52.2131733614538], + [5.539845980070644, 52.212127221780406], + [5.54135448547485, 52.21227886395723], + [5.549551284477805, 52.2036493067853], + [5.549917344083392, 52.2023362400266], + [5.607726033596117, 52.20506335720505], + [5.607968502787256, 52.20509308228632], + [5.6332673914370766, 52.20816659764845], + [5.634862021861964, 52.2038057548334], + [5.625742951946151, 52.192825457980014], + [5.624283207302526, 52.19332625002375], + [5.619633804550517, 52.19311923696328], + [5.618579341375276, 52.19118286243909], + [5.617796743157459, 52.191181564821754], + [5.616918091077969, 52.192135331960905], + [5.617444271633187, 52.19435875636594], + [5.6077622286175615, 52.1941975100929], + [5.607749262021233, 52.19516170178912], + [5.601948570887691, 52.19649174745538], + [5.6002489994416536, 52.19765144514372], + [5.5955574604740095, 52.19634132084795], + [5.589922080705882, 52.195959853826], + [5.589553632239485, 52.19543076734625], + [5.587951907543645, 52.19542580196336], + [5.588160321426573, 52.19484144992915], + [5.583197705679586, 52.19541061880448], + [5.580270281252113, 52.194500552424884], + [5.577666731656278, 52.19479700016273], + [5.575173827427549, 52.19266596296522], + [5.576926593576966, 52.19166701911686], + [5.577930269255628, 52.18618322347434], + [5.575272594468976, 52.18700766510726], + [5.574837099883563, 52.18616965302549], + [5.566493490778203, 52.186521487774655], + [5.564527963444498, 52.1853405920962], + [5.565229001635416, 52.18072457094742], + [5.566989005328654, 52.1808122197179], + [5.568180882667201, 52.17991636000339], + [5.56889137718112, 52.177908698250896], + [5.565276485651907, 52.17811145346896], + [5.5546414567420275, 52.17568412381873], + [5.54892265143892, 52.17532051909147], + [5.546607675611123, 52.17678100090749], + [5.544536089725935, 52.17713246549508], + [5.54219331104011, 52.17784566328281], + [5.537698363232133, 52.18207247653855], + [5.5343961194700215, 52.185834269720424], + [5.530807868275514, 52.191539263288064], + [5.5292064533472605, 52.19100246037719], + [5.521209091773446, 52.191834573235255], + [5.5120844829250855, 52.188573821752904], + [5.5049345390645765, 52.18857476324396], + [5.504176785526496, 52.18913479777958], + [5.500823501748752, 52.188576856883415], + [5.496309210310735, 52.18661787222546], + [5.495933866637572, 52.18685606556455], + [5.49536574579305, 52.18611426991286], + [5.485609593197766, 52.181974290980065], + [5.4851822958685394, 52.174695270820465], + [5.485099082281438, 52.17178046253943], + [5.480846389636952, 52.16795494291668], + [5.479922362585093, 52.16581455499114], + [5.469632764109867, 52.16620943254427], + [5.457615132848987, 52.16707924542221], + [5.446537567487392, 52.168023323062464], + [5.443594417093043, 52.16882984453926], + [5.439875543340817, 52.171197455114424], + [5.4389160699358525, 52.172917042025105], + [5.440093170036275, 52.1733783808148], + [5.439043002868285, 52.18412696488215], + [5.43808620544449, 52.1845848209716], + [5.4400958678647395, 52.190052214242584], + [5.439711479542046, 52.1960820420143], + [5.4397698703754624, 52.197236341758], + [5.439771433695733, 52.197267047196576], + [5.439449050453645, 52.20219507329682], + [5.441118692640305, 52.204322259372205], + [5.440187172733939, 52.20463046962456], + [5.44056791708406, 52.205836637951705], + [5.439820495614624, 52.20598373708438], + [5.439237129943847, 52.20460143134188], + [5.434713926126303, 52.20587578163691], + [5.409669926667253, 52.2185795671252], + [5.407221832548992, 52.21340465543308], + [5.395522356009458, 52.21915384787237], + [5.393211322841333, 52.220645493990176], + [5.394768044772044, 52.224850466753956], + [5.396592984366132, 52.229790402255354], + [5.403641431671612, 52.2470986067667], + [5.411863022592837, 52.24631675336965], + [5.41464201317879, 52.24579760182449], + [5.425032457042339, 52.24952794727354], + [5.430274129745271, 52.25024066725451], + [5.435309592876403, 52.25233368398725], + [5.452585887725117, 52.253749070317845], + [5.454339672282063, 52.253513583412655], + [5.4599589541625155, 52.25528978988947], + [5.46242180233679, 52.25539525435792], + [5.4633904125639825, 52.25645794846943], + [5.464169634121262, 52.25926546334699], + [5.464325356863555, 52.259272956250534], + [5.465191088923357, 52.255649067187925], + [5.464745017338396, 52.255608988346424], + [5.464812678775592, 52.25518106301591], + [5.466057051016429, 52.255458669482294], + [5.465961539980309, 52.255850681010024], + [5.466530505874121, 52.25592470033576], + [5.466095776473091, 52.257990785661995], + [5.4655553399569925, 52.257948651875786], + [5.465131372773684, 52.259333909776316], + [5.46530108997486, 52.25937167102312], + [5.465462256965093, 52.25888279243727], + [5.466115487045549, 52.25880388308208], + [5.466598303639393, 52.25834840592042], + [5.471284838221307, 52.25934138638574], + [5.470861609077859, 52.259667147834534], + [5.468471163281781, 52.25927862019765], + [5.468283754583924, 52.25956956361137], + [5.470760186436034, 52.2600803378221], + [5.469855342132908, 52.26122414160801], + [5.471161059175907, 52.261802921742664], + [5.470857320107875, 52.26194953473492], + [5.467585020486998, 52.261650579590956], + [5.470843386892547, 52.26263203915991], + [5.470533633607789, 52.26324514630276], + [5.469813419671076, 52.263247289689026], + [5.471447185412245, 52.26354072297142], + [5.47069250436847, 52.26329692386025] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.702e994c-f2a4-47bb-b235-e13d3694e4cb", + "properties": { + "statcode": "GM0268", + "jrstatcode": "2024GM0268", + "statnaam": "Nijmegen", + "rubriek": "gemeente", + "id": 66 + }, + "bbox": [ + 180537.09699999914, 422522.43890000135, 190917.2580000013, + 434116.19200000167 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.8571235405180015, 51.89462092317051], + [5.857627692088099, 51.88838881866484], + [5.859492001952439, 51.88867234507653], + [5.861311438283307, 51.8887744876171], + [5.864102301980188, 51.888720613545985], + [5.865490976368128, 51.88898257065271], + [5.865424421662843, 51.88853737010749], + [5.868696726211897, 51.88820314530859], + [5.871481040398796, 51.88865240980861], + [5.875841182485258, 51.88086313945096], + [5.876135839906483, 51.876597765312], + [5.876953328662349, 51.8765038327188], + [5.880267877596999, 51.869215474301754], + [5.881952312430703, 51.867099424141145], + [5.882990506373511, 51.86667513463096], + [5.882526866267893, 51.86628580636304], + [5.882738267494001, 51.8661439571389], + [5.8843506183369785, 51.86701641318368], + [5.886765709096197, 51.86520300756139], + [5.881584195281011, 51.859100367311534], + [5.881584425955962, 51.85910035465493], + [5.887371750585031, 51.85881325894945], + [5.887408207059585, 51.85454321092869], + [5.884622194828022, 51.850168055702156], + [5.887336661144286, 51.849690592199494], + [5.885490982343252, 51.84765958651755], + [5.880389295583765, 51.84505497384061], + [5.884567391356525, 51.843842040459585], + [5.8945303778805425, 51.840556757147546], + [5.892169494405439, 51.840013150792736], + [5.898087840588603, 51.836404734444464], + [5.895794020343071, 51.833578477092836], + [5.895889041327107, 51.83258482388896], + [5.896984880223342, 51.832169218314405], + [5.903939156391165, 51.831342396651145], + [5.906508129450075, 51.83059065667115], + [5.90824944409843, 51.829353028831946], + [5.905303620635754, 51.82745051474816], + [5.901431824201803, 51.82738811819546], + [5.900333417018063, 51.82572439542103], + [5.899095307755475, 51.82461580757385], + [5.893711177152731, 51.82392781811749], + [5.893523133071832, 51.82428034134427], + [5.8923391922526145, 51.823893959751466], + [5.88875037587669, 51.82269197260844], + [5.888313914160187, 51.82310052300435], + [5.888063393464342, 51.82300330984393], + [5.882606101995582, 51.82116375298119], + [5.881931577727027, 51.8210453447519], + [5.880492500996661, 51.820326167520186], + [5.881515819014861, 51.81740168161418], + [5.884087674330938, 51.81385756836255], + [5.885958209128942, 51.8125012669398], + [5.886147152235602, 51.81085318845674], + [5.8855469659485475, 51.81020332005321], + [5.882448451053946, 51.80950397875628], + [5.879110108282534, 51.80952987481598], + [5.876704416224664, 51.809860003221424], + [5.864756488013596, 51.80980393423815], + [5.853026310339476, 51.807852546897266], + [5.852625729973995, 51.807503663796375], + [5.846964556542884, 51.808114924279735], + [5.840944375936404, 51.80719995605895], + [5.8413327053575275, 51.805904498090946], + [5.839168014345883, 51.80460884856663], + [5.836960266523582, 51.80610932407246], + [5.825506135985882, 51.800128244465604], + [5.826860178750462, 51.79953879442585], + [5.824685287300757, 51.79809338953604], + [5.824504374262809, 51.79800340096578], + [5.814077823352474, 51.792819873754574], + [5.813811577977511, 51.79281080624546], + [5.810220507138469, 51.790589432899836], + [5.800948664789277, 51.79515143637125], + [5.796075710131014, 51.79813563945408], + [5.794374074451379, 51.79731511446827], + [5.7922468552441835, 51.79893037819502], + [5.790435038917008, 51.80202341112289], + [5.781302423343912, 51.809827537470994], + [5.774722848093986, 51.8205333518223], + [5.774714525482689, 51.82054580944979], + [5.774057863707166, 51.82158610999673], + [5.77133417504999, 51.823062882429696], + [5.757620556917175, 51.82398994386057], + [5.764731540795399, 51.83229129560255], + [5.775082957978254, 51.844246963605954], + [5.777149703425996, 51.84446870342864], + [5.779652139822526, 51.84456834285936], + [5.7812055087422065, 51.84297751514067], + [5.783589760367603, 51.84199795022016], + [5.786501725619073, 51.840921429766624], + [5.79792951828819, 51.84619258848954], + [5.806101603480873, 51.85046307321346], + [5.8073257577293, 51.85184009450569], + [5.812358089401025, 51.85033518374592], + [5.812324266680631, 51.8496400236094], + [5.817374644454022, 51.84949407938506], + [5.8203273677818546, 51.85387005646854], + [5.8215100274031455, 51.855604705777736], + [5.822151776644232, 51.85542062792051], + [5.825390988926086, 51.860127507555234], + [5.825488522094924, 51.862688846566655], + [5.823689568791796, 51.864313467387944], + [5.825694879868312, 51.866213470666], + [5.817074831109551, 51.87026538317438], + [5.828067610192893, 51.873409714565476], + [5.82899735370312, 51.87239513881869], + [5.831611237201062, 51.87223199312593], + [5.8325831141085445, 51.87343951069948], + [5.834173389961789, 51.87562305161426], + [5.835153812551968, 51.87761900633138], + [5.832813415068879, 51.87843507262689], + [5.837788357042733, 51.88343400305584], + [5.8368208083861175, 51.88365579797119], + [5.835873571415731, 51.886033530374384], + [5.835940133726277, 51.888147538385304], + [5.834389090488845, 51.89034185349824], + [5.830198423906666, 51.89172559254295], + [5.830237801923278, 51.89368104089353], + [5.836722394473941, 51.893746293264485], + [5.83684812358419, 51.89374964996785], + [5.8571235405180015, 51.89462092317051] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ba8ef4f0-4479-4818-a937-2cd63e38cd03", + "properties": { + "statcode": "GM0269", + "jrstatcode": "2024GM0269", + "statnaam": "Oldebroek", + "rubriek": "gemeente", + "id": 67 + }, + "bbox": [ + 185927.91220000014, 489418.19999999925, 199149.2509999983, + 503929.7719999999 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.920851872256148, 52.48255479728486], + [5.925559444609619, 52.47405758598178], + [5.935409705107127, 52.47739203147938], + [5.935773631846097, 52.47722580195957], + [5.936353082650847, 52.47658470906432], + [5.936879886261966, 52.47649905057046], + [5.946122016072928, 52.48203960214539], + [5.951451501675327, 52.48413275641896], + [5.958300972587902, 52.48406300832555], + [5.965309017770499, 52.47644438898796], + [5.971808618484512, 52.48125211905445], + [5.983161653783394, 52.48897570912612], + [5.991722415288448, 52.49389879717978], + [6.0007883995287825, 52.50014882409336], + [6.008741492031053, 52.49656933532258], + [6.018976403772213, 52.48895816674525], + [6.018527104102996, 52.484466722428536], + [6.016040394930805, 52.48274623328616], + [6.0166998924581545, 52.482270219330836], + [6.01963053230485, 52.48365973198142], + [6.021393567379662, 52.48373414954256], + [6.0259330718526085, 52.483286209893585], + [6.0285378517036365, 52.48195556896983], + [6.032862527954832, 52.478499105598466], + [6.033288684330214, 52.4780357954016], + [6.035908837237363, 52.47415975290016], + [6.036938393972211, 52.470310860021094], + [6.036108216295706, 52.46751214715484], + [6.033922648374563, 52.46439577541917], + [6.034714255772959, 52.46167677084678], + [6.030235281055052, 52.453780365029694], + [6.029390956384332, 52.452652516135956], + [6.02266741761997, 52.44410310866796], + [6.017755219298865, 52.44420863567247], + [5.994003192074276, 52.4260627168076], + [5.9737249511301345, 52.40976966252647], + [5.966727261808303, 52.4055717336558], + [5.951861241063201, 52.40095606074245], + [5.951024347614379, 52.39843712018269], + [5.942427144803232, 52.396636003870746], + [5.924338612117357, 52.39139294080504], + [5.905993335171302, 52.40860035907879], + [5.9162916021639935, 52.41294949180126], + [5.908146966035106, 52.416311667886156], + [5.899954387088412, 52.41981642648504], + [5.898843715132161, 52.42070573207778], + [5.886624065219812, 52.42976053332091], + [5.884389446183773, 52.43177618385513], + [5.876818064342237, 52.43860471042823], + [5.87638857499322, 52.43898265390932], + [5.872242258582297, 52.443028545801496], + [5.8706706771906205, 52.44251745689185], + [5.868766447735458, 52.44479460149759], + [5.869302914643652, 52.445007294253095], + [5.873750391466908, 52.446999802769454], + [5.871383524422375, 52.44785716908404], + [5.874338463305491, 52.44975901984605], + [5.874765057144467, 52.45069602464964], + [5.876435760126485, 52.451913793864186], + [5.877613383352843, 52.45312358009889], + [5.874648715794667, 52.454212974398104], + [5.874066648069272, 52.45565938840952], + [5.872546716296614, 52.455243119547035], + [5.872032009275283, 52.45668699119309], + [5.871464208984115, 52.45660297882893], + [5.871362869796823, 52.45779334386799], + [5.867858428502506, 52.45897175880478], + [5.863026213157716, 52.460961275786744], + [5.864840036906127, 52.46205522965471], + [5.8634225032980645, 52.462408339013315], + [5.86227139371885, 52.46134008571904], + [5.8590118437303875, 52.46250602565291], + [5.853705638949995, 52.464934962109545], + [5.850561745074858, 52.466656300169596], + [5.848405033529627, 52.46721575584976], + [5.844980153251151, 52.469858681377744], + [5.842363474215184, 52.470550451520126], + [5.850216686602582, 52.48560687839325], + [5.851101192697625, 52.491401122346865], + [5.852175722727554, 52.49480858527946], + [5.858222915682815, 52.50026966475979], + [5.86454986483984, 52.515814246017584], + [5.866437872016407, 52.51775568966797], + [5.8658013029738525, 52.518658060938485], + [5.876205398831458, 52.52202501997811], + [5.878909752975344, 52.52167328845421], + [5.887276661879802, 52.516906191691895], + [5.9015811226896195, 52.50567914334651], + [5.910228755374047, 52.49719464911794], + [5.920851872256148, 52.48255479728486] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.1dce0aa5-523e-428d-bff1-4f579c605f8c", + "properties": { + "statcode": "GM0273", + "jrstatcode": "2024GM0273", + "statnaam": "Putten", + "rubriek": "gemeente", + "id": 68 + }, + "bbox": [ + 160939.44399999827, 468260, 175247.61899999902, 478214.86740000173 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.548078700410442, 52.291811081604585], + [5.551339779796878, 52.29009685600666], + [5.552006634092656, 52.29035557366248], + [5.553799395569671, 52.28836358902218], + [5.5529141426634565, 52.28791756024275], + [5.555273717294919, 52.28670048657886], + [5.5661592866078555, 52.28522302316986], + [5.566289786049503, 52.285228354600186], + [5.576472688621638, 52.28240668017813], + [5.5765065617820335, 52.282228771924515], + [5.576627335358339, 52.28219330586647], + [5.5769960394382245, 52.282289529867775], + [5.577160542097996, 52.28221926883166], + [5.577403575183259, 52.28231634075534], + [5.578194890285811, 52.28185184160304], + [5.587535892826199, 52.278812386118105], + [5.593248321828403, 52.27825380674363], + [5.59787992455808, 52.278658922668306], + [5.602891352601558, 52.27840709028037], + [5.610654339834205, 52.27726299522661], + [5.6115229080285784, 52.276397678736814], + [5.611049071117299, 52.27568966801576], + [5.612223226291243, 52.27532218294041], + [5.616979655819529, 52.27506018070152], + [5.619014746817961, 52.2755166262663], + [5.620899190745051, 52.275627268265254], + [5.635904323286188, 52.27270175240459], + [5.639210805666957, 52.27186125999142], + [5.642055014203807, 52.27068620610289], + [5.648822886541368, 52.266986047006064], + [5.675510116815313, 52.25121166391991], + [5.677158970375205, 52.249691856399664], + [5.6814241057655295, 52.241748749628385], + [5.683642095377853, 52.24061686251765], + [5.68127007051124, 52.225339467169114], + [5.670863151311839, 52.22396837658572], + [5.66551866058263, 52.22270448254177], + [5.657662473875667, 52.21917281923364], + [5.646360724984387, 52.21407557590968], + [5.6332673914370766, 52.20816659764845], + [5.607968502787256, 52.20509308228632], + [5.607726033596117, 52.20506335720505], + [5.549917344083392, 52.2023362400266], + [5.549551284477805, 52.2036493067853], + [5.54135448547485, 52.21227886395723], + [5.539845980070644, 52.212127221780406], + [5.539610663084491, 52.2131733614538], + [5.540414714474423, 52.213254055206605], + [5.53622373140152, 52.217602389157385], + [5.534592309612901, 52.219296372309444], + [5.533144806892784, 52.219103828193916], + [5.526941412094557, 52.22304362684912], + [5.523014948323614, 52.227303869115], + [5.523485770915264, 52.22750081553319], + [5.5193971517135, 52.230620980096724], + [5.517510435794504, 52.230958828436826], + [5.517681208997223, 52.23141212896984], + [5.514878603960341, 52.23114174156444], + [5.515573269994932, 52.23412794400199], + [5.515015182575516, 52.234345274948375], + [5.512765143978324, 52.2346903141041], + [5.512974437169173, 52.23573193111318], + [5.510246938001279, 52.235330158670756], + [5.510998771527339, 52.23380865236688], + [5.510333315638734, 52.23283800004176], + [5.508152144411423, 52.23250605404528], + [5.506443027190484, 52.23159341904207], + [5.501705333840608, 52.2329602619504], + [5.500994386142935, 52.23411985640073], + [5.4993822098668295, 52.23388405080499], + [5.497391884118923, 52.236372269509545], + [5.496081783908344, 52.23627908016568], + [5.490012967884455, 52.23582878063491], + [5.487881236114133, 52.236594727168104], + [5.483690292626931, 52.23924354775698], + [5.481325042940306, 52.24339216787401], + [5.474192020158945, 52.25646992395297], + [5.478542890613271, 52.2574315344158], + [5.478619572754936, 52.257819679198576], + [5.4884086718274085, 52.26253992928322], + [5.501902655126242, 52.26448229468464], + [5.505544870214905, 52.2647580107091], + [5.527439778065334, 52.26368004704405], + [5.528204599965913, 52.26425975441056], + [5.526080453449049, 52.26480021126665], + [5.528748678985345, 52.26484146533886], + [5.530822714449141, 52.2660551299925], + [5.531590436051248, 52.267692553354586], + [5.530605784546951, 52.269166425698366], + [5.5310374791311405, 52.27156077395176], + [5.5311731012972825, 52.27156061221493], + [5.53160140534404, 52.26911230910668], + [5.533313865406268, 52.26901349805789], + [5.534813766689756, 52.27056927392833], + [5.533115983139298, 52.27124412083634], + [5.531627323930506, 52.27140383493191], + [5.531627577397682, 52.271481800681855], + [5.533515233160834, 52.2717495490772], + [5.534582630696999, 52.27125263924723], + [5.53577091640834, 52.271430677391365], + [5.541007646440172, 52.279168371669975], + [5.548078700410442, 52.291811081604585] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.eb0fc5aa-43bb-49ea-9489-b9fd211fb872", + "properties": { + "statcode": "GM0274", + "jrstatcode": "2024GM0274", + "statnaam": "Renkum", + "rubriek": "gemeente", + "id": 69 + }, + "bbox": [ + 177432.90249999985, 441260.3960000016, 188231.989, 448499.6270000003 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.813373613729756, 52.024070582819604], + [5.808338235607228, 52.01875993467145], + [5.807225888388005, 52.01170050779759], + [5.802960558981933, 52.0040540911308], + [5.820339126733876, 52.00080536463822], + [5.833807441761146, 51.99871739401072], + [5.847397297259415, 51.998318431775076], + [5.856194884354819, 51.99610593048201], + [5.863713793996555, 51.995768788146144], + [5.86256003088212, 51.991220967074014], + [5.864702393379007, 51.99108146419838], + [5.863763949093508, 51.987541050844904], + [5.863762916536827, 51.987537590938224], + [5.863161746972704, 51.985325520224094], + [5.86526616148745, 51.984557981552605], + [5.866218502135688, 51.984006539677544], + [5.867369739352606, 51.98028996090508], + [5.863736864515459, 51.97796466804613], + [5.864716669722726, 51.97627144758372], + [5.866866891414606, 51.975302519051546], + [5.869186881735378, 51.97599143355252], + [5.870860246450447, 51.975112992215244], + [5.8671361416234715, 51.97195395446295], + [5.864182232959193, 51.97050385344775], + [5.859467599478283, 51.96955499591743], + [5.854358156717896, 51.969825741909496], + [5.854301963262003, 51.969836000625136], + [5.8440317979743215, 51.97250386580455], + [5.8353426404977, 51.97355872678843], + [5.825429850072082, 51.97323130948195], + [5.8183913046133515, 51.971899710749724], + [5.8107451486073955, 51.969252442635025], + [5.786773346760853, 51.96015864442596], + [5.782460003746268, 51.95916939648942], + [5.7776105503251385, 51.95912665773574], + [5.772150892421925, 51.960163163089724], + [5.761901271278068, 51.96353088944984], + [5.746295706433668, 51.97002000176239], + [5.741610298836293, 51.97011285283843], + [5.732198799834301, 51.96815692311183], + [5.7284502622413696, 51.96714208899284], + [5.722605558506185, 51.964050769957765], + [5.720886126915998, 51.9669052113833], + [5.7176834970503565, 51.96682275824413], + [5.713640045420447, 51.968138844289875], + [5.713638997083354, 51.96814235891152], + [5.718490702376693, 51.9744840854368], + [5.717783680665677, 51.97537860845525], + [5.721155798694596, 51.980923740787354], + [5.716639251837581, 51.981436704586436], + [5.720464026087891, 51.991007515033274], + [5.724362611898578, 52.00070833017496], + [5.732776307748189, 52.00074003293327], + [5.735883491977797, 52.002320123520946], + [5.734137016023189, 52.006418565649135], + [5.737566498651053, 52.00715760415245], + [5.738813729234416, 52.00814196575316], + [5.73928458775088, 52.01016873799844], + [5.738181808390056, 52.01228747983195], + [5.741159974408125, 52.01643659875361], + [5.7451373829360355, 52.019768646619426], + [5.74735535603633, 52.02001971894226], + [5.756567759942014, 52.021061815085986], + [5.7698807109046735, 52.02154083645997], + [5.7704705968277334, 52.02115626598705], + [5.770886845231649, 52.02158231210851], + [5.777657968356109, 52.021878300729774], + [5.798138070525909, 52.02201542094488], + [5.803630853688216, 52.0206819325821], + [5.804220762296437, 52.02113731696123], + [5.802432776756168, 52.02235785018209], + [5.813373613729756, 52.024070582819604] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.8ab7f23f-950f-4164-97fb-d54f05c07010", + "properties": { + "statcode": "GM0275", + "jrstatcode": "2024GM0275", + "statnaam": "Rheden", + "rubriek": "gemeente", + "id": 70 + }, + "bbox": [ + 193753.26000000164, 443060.3139999993, 206453.6090000011, + 455772.5390999988 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.077430163980368, 52.08361992453129], + [6.077691346267385, 52.083526290545784], + [6.080110337662402, 52.08375330564058], + [6.080749207882352, 52.08383336196731], + [6.081354771694019, 52.08229618166689], + [6.0845747501339975, 52.08169621636944], + [6.085260896245756, 52.081566724534156], + [6.098084088651237, 52.07916603401755], + [6.103423300342944, 52.07814359613351], + [6.102953753307037, 52.07757086364044], + [6.109225604013286, 52.07489335166087], + [6.113970742274383, 52.07158334295487], + [6.115255439555737, 52.0691683234447], + [6.115698771401894, 52.06823113298644], + [6.120983930010226, 52.068594852261405], + [6.119953019086708, 52.06676184498908], + [6.122769324646426, 52.063229623982], + [6.128720428438562, 52.06427745985953], + [6.128819596351642, 52.06279874875762], + [6.1320828960815, 52.06275511467247], + [6.13259225201423, 52.06185907446411], + [6.135751054011035, 52.06205856971737], + [6.136425058286306, 52.06039228343916], + [6.135353494653411, 52.059734296514215], + [6.137469230956889, 52.05918110840307], + [6.1320736392363955, 52.055732592018664], + [6.123063067587723, 52.052543905996124], + [6.1157636433264, 52.04874585023269], + [6.111604611848243, 52.04469915545588], + [6.110882914531361, 52.04161666786904], + [6.111723912344026, 52.039251727239034], + [6.11330128839457, 52.037670087942324], + [6.1168480462949395, 52.03588132159801], + [6.121502326132174, 52.03461732469684], + [6.1269469278482545, 52.03244875085872], + [6.130731451798727, 52.02910086433261], + [6.13226752336482, 52.02516816288554], + [6.131030345196111, 52.02086167383075], + [6.129739288758523, 52.01929761529865], + [6.1276388384857485, 52.01670366221381], + [6.12739961577384, 52.01271393403089], + [6.125959764524154, 52.01012655013723], + [6.12233915735444, 52.00735289102974], + [6.114767723468606, 52.0045667944339], + [6.112281869750421, 51.99897497904809], + [6.1095905327527245, 51.99643671019417], + [6.108999950384738, 51.996137126728655], + [6.10342893075648, 51.99451957675601], + [6.093749103957796, 51.99278731099734], + [6.087919211565054, 51.99343028004821], + [6.084623205935349, 51.99479694487446], + [6.0780259277852755, 52.00131498398263], + [6.077662750987825, 52.003786273217656], + [6.078845073762674, 52.00713049193787], + [6.077621780931143, 52.009623190805534], + [6.074078698544989, 52.011928450590666], + [6.068278911661737, 52.01416802776408], + [6.064381875772969, 52.01497460433519], + [6.064086706620536, 52.014996997557645], + [6.057439668078128, 52.01402206094232], + [6.048066312760306, 52.00979460561228], + [6.045749425864075, 52.00755599814499], + [6.044615824131851, 52.00398876673622], + [6.043088902192764, 52.002235994380925], + [6.033219049133979, 51.997211021137495], + [6.027791260581189, 51.995840518484144], + [6.020322079714123, 51.9969131608688], + [6.015333730734991, 51.99686793764931], + [6.01039017861392, 51.99472558025437], + [6.00654747960307, 51.99128466163157], + [6.004876891635331, 51.98682428344654], + [6.001965203541771, 51.98065000477818], + [5.998283667625856, 51.97706488075113], + [5.990340039057319, 51.97440609167325], + [5.985008489123151, 51.97889763513085], + [5.980927692257593, 51.98131700553807], + [5.971238798745936, 51.98469964792402], + [5.96382932253282, 51.98705470865341], + [5.960938892477614, 51.98849196317286], + [5.955193178450378, 51.99336412678507], + [5.955368468629187, 51.99361196713551], + [5.953613361781523, 51.995001583829364], + [5.951526321611302, 51.999637806396436], + [5.95779922213308, 52.00087649367616], + [5.963274454267645, 52.00038103078762], + [5.974513633187159, 52.00283922763273], + [5.975812397586411, 52.004447113339495], + [5.978883930905754, 52.00907132242772], + [5.979863988459077, 52.013538937425736], + [5.979180750619119, 52.01648218048307], + [5.98046095778763, 52.01840495300255], + [5.994125478783429, 52.02450064799945], + [5.995804834603614, 52.02622030604269], + [5.994795818233785, 52.02777725723367], + [5.987119245846988, 52.04110077575055], + [5.981649810108606, 52.048087964878164], + [5.977959264650917, 52.05439013640246], + [5.988966316761214, 52.05506812535205], + [5.998215977051957, 52.05405794851915], + [6.000161089959749, 52.05438513295812], + [6.003946850034291, 52.05674807129415], + [6.0060445168591405, 52.06213077018803], + [6.006084877052059, 52.066348932723784], + [6.009643484799992, 52.06600177190217], + [6.023737819719279, 52.06728245042345], + [6.028025955444813, 52.06902003793932], + [6.042699872331602, 52.07795815788761], + [6.0586071167671935, 52.085323869034355], + [6.061769225370062, 52.08649469079259], + [6.067665753756184, 52.08821049735782], + [6.068062824813166, 52.08824408710565], + [6.076101965121785, 52.087498157125495], + [6.077095215935984, 52.08388379724983], + [6.077279374415067, 52.08384453618023], + [6.077430163980368, 52.08361992453129] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4acc1c6e-1347-41e5-ba86-eb23ddf5f129", + "properties": { + "statcode": "GM0277", + "jrstatcode": "2024GM0277", + "statnaam": "Rozendaal", + "rubriek": "gemeente", + "id": 71 + }, + "bbox": [ + 192721.3040000014, 445846.03400000185, 197630.52899999917, 454715.296 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.003946850034291, 52.05674807129415], + [6.000161089959749, 52.05438513295812], + [5.998215977051957, 52.05405794851915], + [5.988966316761214, 52.05506812535205], + [5.977959264650917, 52.05439013640246], + [5.981649810108606, 52.048087964878164], + [5.987119245846988, 52.04110077575055], + [5.994795818233785, 52.02777725723367], + [5.995804834603614, 52.02622030604269], + [5.994125478783429, 52.02450064799945], + [5.98046095778763, 52.01840495300255], + [5.979180750619119, 52.01648218048307], + [5.979863988459077, 52.013538937425736], + [5.978883930905754, 52.00907132242772], + [5.975812397586411, 52.004447113339495], + [5.974513633187159, 52.00283922763273], + [5.963274454267645, 52.00038103078762], + [5.95779922213308, 52.00087649367616], + [5.951526321611302, 51.999637806396436], + [5.9509659180278245, 52.001353833087556], + [5.949817180012629, 52.00411236370243], + [5.947689119172061, 52.0068825359953], + [5.943310342291164, 52.01013425720894], + [5.94604821830943, 52.01050393429664], + [5.942396247044195, 52.01083094436144], + [5.941402107164478, 52.01148599891264], + [5.937098857389782, 52.04853303737376], + [5.943248827026067, 52.06230453129021], + [5.955930934684606, 52.07333855085838], + [5.9646459495735495, 52.07632221518741], + [5.977042777760792, 52.078309690743765], + [5.990479828993614, 52.079164178616075], + [6.00884860071436, 52.07401418894942], + [6.008987361662876, 52.071663147404166], + [6.006084877052059, 52.066348932723784], + [6.0060445168591405, 52.06213077018803], + [6.003946850034291, 52.05674807129415] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.9ef85961-5fba-427d-a272-c6a1fd80b411", + "properties": { + "statcode": "GM0279", + "jrstatcode": "2024GM0279", + "statnaam": "Scherpenzeel", + "rubriek": "gemeente", + "id": 72 + }, + "bbox": [ + 159938.28319999948, 453489.9679999985, 165412.40300000086, + 458101.59899999946 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.517382945622542, 52.100629253346916], + [5.519368177897822, 52.10049420714623], + [5.523186564083212, 52.10432230373308], + [5.52516376250719, 52.1007514547265], + [5.531543293471545, 52.10226696037966], + [5.532816949823165, 52.09998388170577], + [5.539160181441284, 52.09781370569635], + [5.538830674046427, 52.09643618501123], + [5.535079190075907, 52.09287462350515], + [5.538293934641315, 52.0926897288917], + [5.537118480633666, 52.08864381094078], + [5.530856074381418, 52.08977438821305], + [5.526634174081151, 52.08490339975986], + [5.531306078118361, 52.08393924218872], + [5.53114218791944, 52.082279530298116], + [5.526896257269579, 52.08067990261221], + [5.52265441322459, 52.07754211754581], + [5.520357237133712, 52.0783076991897], + [5.519413929384975, 52.07920684887627], + [5.514453323177307, 52.078795326346764], + [5.509922651325361, 52.07905017747687], + [5.510360777463597, 52.07805500324142], + [5.509112976397574, 52.07697703554336], + [5.506836656922079, 52.076748334302295], + [5.505003289736722, 52.07674231073931], + [5.504922798757212, 52.07598896963344], + [5.504584378402764, 52.07334962222678], + [5.5020923731502585, 52.07334520646257], + [5.499882446522591, 52.07133520561437], + [5.496128045290448, 52.07167793342414], + [5.4940671522283475, 52.07190829124401], + [5.490696483004868, 52.07141053574878], + [5.488282002186399, 52.07039258985901], + [5.483897459080781, 52.069656397486504], + [5.476359272246957, 52.072647197884066], + [5.473661482211768, 52.07313480101306], + [5.470904425365748, 52.07468628214444], + [5.4673738758257615, 52.07549204945941], + [5.466439739172214, 52.0761004815358], + [5.465653332424219, 52.07828818708076], + [5.45924334798836, 52.08022547313986], + [5.46014778376926, 52.0809521027442], + [5.45967809855976, 52.082003409672474], + [5.461299134114952, 52.082646024498395], + [5.463367709863102, 52.08344216535564], + [5.46405356642964, 52.08305617718556], + [5.467903598478706, 52.08595549040143], + [5.4714916997514536, 52.08820065024606], + [5.471835257730521, 52.08930221830073], + [5.472945196363718, 52.0891100421229], + [5.474720981665574, 52.09022100188528], + [5.4767846350931055, 52.09037989358561], + [5.486082696439794, 52.09365676943772], + [5.484739537947653, 52.09662442344928], + [5.485267150522, 52.09910017592666], + [5.484301742753559, 52.1055421177186], + [5.4938617412627515, 52.11109726320615], + [5.500958926332697, 52.11086980973876], + [5.502072250040585, 52.109735413305586], + [5.507197685291648, 52.107953191567724], + [5.510400680798155, 52.10784242230065], + [5.51251745207161, 52.10610067563083], + [5.515489114312273, 52.101731214319635], + [5.517382945622542, 52.100629253346916] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.5b909fe1-7fae-4f5a-8ae4-504c6a0ad576", + "properties": { + "statcode": "GM0281", + "jrstatcode": "2024GM0281", + "statnaam": "Tiel", + "rubriek": "gemeente", + "id": 73 + }, + "bbox": [ + 150927.5309999995, 429247.97399999946, 160866.18100000173, + 437144.4360000007 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.453384517009267, 51.92276135857611], + [5.453922444962443, 51.92051725376358], + [5.461643748402242, 51.92162076752864], + [5.462629314712543, 51.92090431339836], + [5.463615074717322, 51.92131793479486], + [5.469730128844086, 51.91987773814481], + [5.468721744526006, 51.91852256507768], + [5.469782477607805, 51.91811985024851], + [5.467234527134258, 51.91476998502011], + [5.468009754415401, 51.91478264819193], + [5.470581827116338, 51.91143586596399], + [5.472151327964229, 51.91171659364286], + [5.472451035788509, 51.90806887473254], + [5.4587714529303675, 51.90489287604798], + [5.45657286448456, 51.90481184719078], + [5.45560958469563, 51.90445228024359], + [5.4560403161597115, 51.903703474008445], + [5.45644075026446, 51.90302530847249], + [5.455540954908044, 51.90282172182755], + [5.458854005925686, 51.897495621333896], + [5.460966197751854, 51.89364916444144], + [5.463566028120402, 51.89133888704803], + [5.4639167457524485, 51.88900894746643], + [5.453434548815749, 51.88743749050884], + [5.444983559157148, 51.884203301749444], + [5.436046225460358, 51.87901911448937], + [5.434813589461813, 51.87815058044725], + [5.433340439305558, 51.8770526274418], + [5.422978267758916, 51.86642416344993], + [5.4178249356624795, 51.858091891713705], + [5.415234177553466, 51.851801019555566], + [5.4095704082226135, 51.85370168378996], + [5.40809602747326, 51.854386832078085], + [5.407928371198308, 51.854412816721826], + [5.399781086457307, 51.854572244758906], + [5.395239158724999, 51.85293350254723], + [5.37961954115334, 51.86151423957878], + [5.378407737818571, 51.86339993274416], + [5.373121321968625, 51.86144694689078], + [5.360069656851253, 51.858362426585515], + [5.349293622008207, 51.85842659971379], + [5.342759483434463, 51.85679830258726], + [5.338889025896554, 51.85759408848435], + [5.338534174793813, 51.85826368941294], + [5.328290440942038, 51.85701747864233], + [5.328084725147959, 51.85926259784634], + [5.328358765796124, 51.85940774463573], + [5.328089340828764, 51.86451731594501], + [5.336583099657013, 51.869966339158005], + [5.339023936308964, 51.874034158369035], + [5.341664877551554, 51.873485986948054], + [5.344073092617441, 51.8749423824053], + [5.3448668137044715, 51.87745861739245], + [5.349847301976013, 51.877220204604654], + [5.351474996709945, 51.87815811122324], + [5.3537826483744295, 51.878066374991604], + [5.369061889383494, 51.88535713794006], + [5.382761010646, 51.892035882738014], + [5.392605669051925, 51.8968393931875], + [5.399824415236376, 51.89857588929978], + [5.4042207438406065, 51.903992884050844], + [5.404321660761018, 51.90507022021679], + [5.408074604948899, 51.90644427474872], + [5.40953959406628, 51.9077685591228], + [5.411256781193772, 51.91200880808032], + [5.413297807836767, 51.91281485927056], + [5.418016438455162, 51.91329553470687], + [5.420752458383095, 51.91484816557109], + [5.42380102605512, 51.917351049532776], + [5.427346070523487, 51.91850113855863], + [5.431702180643741, 51.918463799516424], + [5.433280186103182, 51.91942882593863], + [5.433771045992029, 51.91982427664047], + [5.435111731762627, 51.92067042733237], + [5.443801210068873, 51.92142329052897], + [5.446979556690072, 51.9205716037294], + [5.449596284081928, 51.92182621323701], + [5.453384517009267, 51.92276135857611] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4b80fec7-ec97-42ab-9988-9c8c840b6c40", + "properties": { + "statcode": "GM0285", + "jrstatcode": "2024GM0285", + "statnaam": "Voorst", + "rubriek": "gemeente", + "id": 74 + }, + "bbox": [ + 198541.37999999896, 461974.01399999857, 210212.7950000018, 482761.193 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.06652511104341, 52.31780911180213], + [6.071842938412504, 52.317185071967266], + [6.0737758414924805, 52.31774093969593], + [6.079693984190287, 52.31764154118571], + [6.080990104414897, 52.31190247711161], + [6.084398033558566, 52.31145210286011], + [6.082927738390492, 52.30712015260456], + [6.084071402267834, 52.30168592075048], + [6.086234038960454, 52.30189784970257], + [6.088129032360935, 52.30037629610272], + [6.090902179517345, 52.29998946884469], + [6.0991941321768985, 52.30012834430449], + [6.098741584505151, 52.30115990704313], + [6.101320378574241, 52.301224771010816], + [6.105864460742283, 52.292407967313885], + [6.111321614889548, 52.28821082162073], + [6.1112670926501735, 52.280720619808136], + [6.11236468658062, 52.27830504010547], + [6.121109317734338, 52.272025581163156], + [6.12298195728131, 52.269255442741084], + [6.123907198761561, 52.264506876785774], + [6.1274466401989915, 52.26170498100704], + [6.130069095276461, 52.260691389975754], + [6.125144955739525, 52.2568253590202], + [6.123637680650211, 52.25368789129439], + [6.123865474099703, 52.25148110655408], + [6.1367221861405215, 52.24904083247809], + [6.138896722598976, 52.24768817942287], + [6.143502009670436, 52.24641169138354], + [6.144509833673174, 52.24712230477035], + [6.14941797634487, 52.24797174284261], + [6.150020312675961, 52.24831593175564], + [6.153337028011953, 52.2470547301233], + [6.154199295358594, 52.24586859597461], + [6.15384513692076, 52.24430619595007], + [6.15116650162359, 52.24253255412846], + [6.142236671996249, 52.23845586377311], + [6.141707138254351, 52.234172112904716], + [6.143079310210207, 52.231618325459806], + [6.147509867584284, 52.227778200107146], + [6.156509083670829, 52.225694583952624], + [6.160153083160004, 52.2252231530482], + [6.162172987886008, 52.224166159394386], + [6.163985719039315, 52.22164597750957], + [6.162615985578787, 52.218363904610165], + [6.164068756580406, 52.217440649635826], + [6.165962920301136, 52.21775567165207], + [6.168671378148044, 52.22069914813953], + [6.165276309001753, 52.222842290571066], + [6.165722771071903, 52.22350332222991], + [6.162499591052327, 52.227916910453786], + [6.167865150178179, 52.22633859936209], + [6.16843565822971, 52.2272790068665], + [6.163028009938141, 52.22852210033576], + [6.166268837707009, 52.2310137722371], + [6.169682076186786, 52.229486167733434], + [6.173975711725616, 52.225959451834235], + [6.18081737795115, 52.22315575904312], + [6.189254526576556, 52.21726754125302], + [6.190717193227785, 52.2143629298588], + [6.191050967010306, 52.21058492680977], + [6.189597266580743, 52.207731593984455], + [6.184037165766714, 52.2042982427264], + [6.178365465731099, 52.20330094674891], + [6.1721192045779745, 52.20120999168976], + [6.161430547783043, 52.20109355226959], + [6.158203162022065, 52.19974311585267], + [6.156512300161212, 52.19773626792584], + [6.156350216941221, 52.19360089471477], + [6.159033141102382, 52.190092295837495], + [6.161437733164451, 52.189359002942254], + [6.165399109175377, 52.18982723332223], + [6.169533121150758, 52.189089528902294], + [6.181141250099378, 52.18136551200009], + [6.188912785242937, 52.17969787325013], + [6.191544938170743, 52.17843976190413], + [6.193621036765016, 52.176448600361326], + [6.194362942206431, 52.17431990047233], + [6.192799433875919, 52.169801272758804], + [6.1915134517447195, 52.16763591532647], + [6.1867495143085, 52.16448999880895], + [6.184678541215125, 52.16122257273054], + [6.172576938052125, 52.161329107039606], + [6.172503265408341, 52.16183401117606], + [6.1672154693124455, 52.16205943625353], + [6.166993149295191, 52.161115249410294], + [6.159816733725394, 52.161539591224354], + [6.155018901811999, 52.16025850998254], + [6.153578148740228, 52.159622289351425], + [6.144135461036428, 52.15937049733183], + [6.140815650834431, 52.158689190045656], + [6.140337227490065, 52.158633442303575], + [6.106133117540843, 52.15219109596769], + [6.076067282802089, 52.14393807421182], + [6.074369546183499, 52.1473009117583], + [6.0745437076009585, 52.14838734096871], + [6.072669196697006, 52.15006726659903], + [6.067383680694574, 52.15391053969521], + [6.064256944460848, 52.157384657531324], + [6.064457977051704, 52.158326211355565], + [6.066245211002747, 52.16101995648831], + [6.066422521644568, 52.16152410428195], + [6.065806828116059, 52.16464845043387], + [6.0656940895881295, 52.16522140025123], + [6.062863031919311, 52.17088837322129], + [6.062453253482905, 52.171712992079], + [6.061354709155344, 52.17394547117726], + [6.0597942092327015, 52.17622074521055], + [6.055344606428409, 52.17949276940495], + [6.053806835955865, 52.18135206643489], + [6.0516362727636475, 52.182142384392336], + [6.05012508264422, 52.183287566117635], + [6.049389201932998, 52.18520981354625], + [6.0509730178963075, 52.187141426618055], + [6.051069606103472, 52.18875164766545], + [6.053169416303023, 52.19261344709259], + [6.053873810103225, 52.19499939860066], + [6.056092737464672, 52.19605513490605], + [6.05823823178356, 52.19593494355743], + [6.058250901317552, 52.196171169512155], + [6.05728532825802, 52.19665953119342], + [6.053745724663353, 52.20087484212126], + [6.050243832158674, 52.21001947026289], + [6.047908006173972, 52.21300403456508], + [6.048240655348667, 52.21642437120053], + [6.046866423731084, 52.2204430874695], + [6.046909209596206, 52.22136771770033], + [6.042407766056562, 52.222470961348954], + [6.040898977255109, 52.22413367974404], + [6.035463963559445, 52.22448109888938], + [6.033424531333754, 52.2240795659341], + [6.034461536854131, 52.22778550138436], + [6.0342394675138005, 52.23134514547518], + [6.0336396810776565, 52.23151481417512], + [6.03497286803569, 52.23139039299067], + [6.0360417444601095, 52.2319173180146], + [6.0344085076831355, 52.234305072066526], + [6.032545253515944, 52.23559061990534], + [6.028471822217859, 52.23904313341269], + [6.02833142811803, 52.241679943420856], + [6.026505714215332, 52.24290439444955], + [6.02892726730643, 52.24439042806924], + [6.027888696803561, 52.24486061348688], + [6.028399305726555, 52.245387893316725], + [6.027338256895811, 52.24581313875793], + [6.0248015589124915, 52.24893648404343], + [6.028465758197934, 52.248657754179646], + [6.031159420317731, 52.25316410522408], + [6.031769389568031, 52.25855051658419], + [6.035149233682923, 52.258314712671286], + [6.035801681883514, 52.25951330554958], + [6.036505692044429, 52.25948955630474], + [6.03749347739665, 52.26092048765269], + [6.037684360100976, 52.26360613224407], + [6.034848713987116, 52.265517300438994], + [6.0363946561088575, 52.26853038275708], + [6.040673486477591, 52.26822726563168], + [6.0430962225917275, 52.26889179573221], + [6.0429332833578835, 52.27004631912218], + [6.04126389396901, 52.271657953166134], + [6.043452461723375, 52.27560497702506], + [6.043348444771002, 52.27872655900946], + [6.034843162508269, 52.29246560009248], + [6.034762658357159, 52.294795952458635], + [6.037080405713614, 52.29889321340867], + [6.0465261865748925, 52.315649975374576], + [6.051115077143064, 52.32369809214977], + [6.052764089203391, 52.32595242514415], + [6.0529480222327825, 52.33090728595721], + [6.07368063105663, 52.330569239498494], + [6.070705678723691, 52.321881899257015], + [6.0673876057223115, 52.3214128896888], + [6.066086975300347, 52.32025307493519], + [6.06652511104341, 52.31780911180213] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.a8795435-75fb-4332-ac95-37d7b4e0f319", + "properties": { + "statcode": "GM0289", + "jrstatcode": "2024GM0289", + "statnaam": "Wageningen", + "rubriek": "gemeente", + "id": 75 + }, + "bbox": [ + 170028.34299999848, 438688.7969999984, 178153.00699999928, + 445868.29100000113 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.720464026087891, 51.991007515033274], + [5.716639251837581, 51.981436704586436], + [5.721155798694596, 51.980923740787354], + [5.717783680665677, 51.97537860845525], + [5.718490702376693, 51.9744840854368], + [5.713638997083354, 51.96814235891152], + [5.713640045420447, 51.968138844289875], + [5.7176834970503565, 51.96682275824413], + [5.720886126915998, 51.9669052113833], + [5.722605558506185, 51.964050769957765], + [5.721503033858699, 51.96386779071851], + [5.706632403464679, 51.962705722286415], + [5.681918233910433, 51.95915884450351], + [5.676552877742007, 51.957574765859235], + [5.669698236827349, 51.95382103169216], + [5.665988990940865, 51.95279947605697], + [5.662190549954245, 51.95264323970925], + [5.653760552975891, 51.95391047587542], + [5.648922546569286, 51.95400129183282], + [5.644259296017193, 51.95234885804644], + [5.6462200559992475, 51.950584670898024], + [5.6496216464611155, 51.950021182191925], + [5.645304401588492, 51.9466808757808], + [5.645088474539557, 51.944879689591666], + [5.640638870127652, 51.93957811394462], + [5.6396255784625655, 51.93825906997698], + [5.636231926901756, 51.93669236848376], + [5.630288649694217, 51.93640949831903], + [5.627864509623475, 51.93719380697675], + [5.6227674304202475, 51.939765424871005], + [5.617887704615431, 51.941351127044314], + [5.605939647188888, 51.94312478453368], + [5.616427933586841, 51.949353544818386], + [5.620437269038637, 51.94832478111768], + [5.62016249455284, 51.95149811121395], + [5.623446479864046, 51.95194555960161], + [5.62502743733135, 51.95161482976938], + [5.627308561987814, 51.95247330479938], + [5.6264951881476755, 51.957365744453945], + [5.623213553760383, 51.96256473973778], + [5.620258227663947, 51.96658232589908], + [5.6248556890707615, 51.970448364777056], + [5.626064193314598, 51.97407006365344], + [5.619888313179841, 51.97771034570149], + [5.615059958046436, 51.98271694085282], + [5.6138128049889895, 51.99034278058721], + [5.609972265310212, 51.99369153343737], + [5.6060170136499785, 51.994164351289946], + [5.606832087985665, 51.99742241402644], + [5.614491941029706, 51.99964959900363], + [5.6193072903870815, 51.99273841654118], + [5.624945547645688, 51.99514155868959], + [5.627251113267802, 51.993142278069215], + [5.633298078043942, 51.99520240945918], + [5.637220860874443, 51.99191729005764], + [5.653944954238911, 51.99516072935543], + [5.655417117350887, 51.993306692558924], + [5.662842493813868, 51.994947624143165], + [5.664526385084121, 51.99413014739333], + [5.66960139568954, 51.994668443885296], + [5.672539394338235, 51.99352093724135], + [5.675368017040144, 51.99095145653128], + [5.678295762063941, 51.99140063066755], + [5.682692947337468, 51.99255316024011], + [5.683093220413809, 51.99391146763519], + [5.684715851498127, 51.99392619583624], + [5.687618529968167, 51.99456080104686], + [5.688883699555023, 51.994922762177914], + [5.724362611898578, 52.00070833017496], + [5.720464026087891, 51.991007515033274] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e4f0030a-c839-43fd-a53d-6e393bf827e0", + "properties": { + "statcode": "GM0293", + "jrstatcode": "2024GM0293", + "statnaam": "Westervoort", + "rubriek": "gemeente", + "id": 76 + }, + "bbox": [ + 193641.7100000009, 439081.6420000009, 197316.1259999983, + 443761.67500000075 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.974910166168503, 51.94162015889277], + [5.970352186047956, 51.93932596105182], + [5.9692599241691005, 51.93955779145981], + [5.965775466700798, 51.93876761439823], + [5.961794242549942, 51.93879262058416], + [5.960293449976552, 51.9437827322582], + [5.955225440385972, 51.948753539148626], + [5.9501094855294046, 51.95422889561034], + [5.9493922664381165, 51.95900370789616], + [5.952428804151042, 51.96456988451156], + [5.959493975013663, 51.96946565857842], + [5.963628859420869, 51.971143264581364], + [5.968412590289445, 51.972082821643845], + [5.990340039057319, 51.97440609167325], + [5.998283667625856, 51.97706488075113], + [6.001965203541771, 51.98065000477818], + [6.003143152835638, 51.980258993895895], + [6.001732846369974, 51.97755170432406], + [6.000428450626559, 51.976170152402915], + [5.996191832060004, 51.973955921408056], + [5.991551841507474, 51.97266323022757], + [5.984000172814513, 51.972399538395706], + [5.986636356676764, 51.968500084300416], + [5.9852642856682206, 51.96395954084179], + [5.987697905628396, 51.96291149172783], + [5.986840632193202, 51.96226809944563], + [5.986999780215554, 51.959911658490064], + [5.985524948814088, 51.95512890272024], + [5.984836204890723, 51.951682338608855], + [5.987576480583574, 51.95044109513788], + [5.98456895351034, 51.946910403705765], + [5.986168105177331, 51.9463638487124], + [5.984363844268382, 51.94302088649836], + [5.979982572486582, 51.94293726876886], + [5.974910166168503, 51.94162015889277] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d272aec2-e76a-4d43-9cb7-c398ce084357", + "properties": { + "statcode": "GM0294", + "jrstatcode": "2024GM0294", + "statnaam": "Winterswijk", + "rubriek": "gemeente", + "id": 77 + }, + "bbox": [ + 240373.6330000013, 435015.83900000155, 254330.0300000012, + 451025.2809999995 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.752977239695117, 52.02840556684019], + [6.764088271607899, 52.022310900144745], + [6.766307129775132, 52.018782203669936], + [6.771677905387831, 52.01796903798332], + [6.811410510788284, 51.99809646981001], + [6.807798670677964, 51.994967440507196], + [6.826607409481781, 51.993527381969415], + [6.830351759198966, 51.98619227149722], + [6.8296289227175, 51.97938853626373], + [6.830233840814906, 51.976407310034745], + [6.832307761786082, 51.97434529018257], + [6.832801617279239, 51.97180663030829], + [6.832426958217976, 51.97004427440692], + [6.82852888389278, 51.964105434480715], + [6.813837288734737, 51.9636330646432], + [6.812460965789487, 51.96183326853943], + [6.798867704714879, 51.95871561389275], + [6.796244230488834, 51.943975534348866], + [6.7972708251493446, 51.94255251685754], + [6.793990755915279, 51.9352935088599], + [6.7859771813021785, 51.931189316629414], + [6.788944674847771, 51.929656593047966], + [6.7700357454607465, 51.91619888154084], + [6.765993213339368, 51.9160649866948], + [6.760481703481082, 51.914120952851505], + [6.757273120151948, 51.913824210128915], + [6.754026377787819, 51.91262327296563], + [6.754399039800161, 51.9100665859828], + [6.752056823291067, 51.90855079677638], + [6.751264281019086, 51.907239868876026], + [6.745541720418816, 51.90572202900386], + [6.737132444578672, 51.90468123958135], + [6.732497790811255, 51.8987226517606], + [6.721969498354465, 51.89606333668846], + [6.703220996272588, 51.906395467722334], + [6.703802551323972, 51.90940789630033], + [6.702722360689979, 51.90980944021435], + [6.699824077118321, 51.90905879424632], + [6.6976672070263605, 51.90987011929214], + [6.695346143114943, 51.91586823466262], + [6.692650086132543, 51.91471696996747], + [6.684248589442752, 51.916096959385065], + [6.6842244960908035, 51.9175907531414], + [6.6747893493914185, 51.91593777381089], + [6.6687333886648466, 51.91386339037778], + [6.666992717701558, 51.91430582918446], + [6.664285561840615, 51.91648084344733], + [6.6629426865064705, 51.91573658065351], + [6.661009808617279, 51.91560337866725], + [6.660587680797789, 51.91670619383621], + [6.661613400955566, 51.91690583354386], + [6.660766758893804, 51.91836883924646], + [6.662843438469835, 51.9185096718727], + [6.663126570683491, 51.91979368222509], + [6.66172097481835, 51.92035100496299], + [6.662178571876387, 51.92053774433869], + [6.660678598425524, 51.922228224086574], + [6.65803059506445, 51.92433178986908], + [6.657985315651972, 51.926028038079615], + [6.659071894538409, 51.92584292556997], + [6.659004006510954, 51.92901938225924], + [6.6578736340866795, 51.929105960042435], + [6.657601232783928, 51.9284490354018], + [6.656648849702669, 51.930179885931956], + [6.653653150850655, 51.930266952569966], + [6.653257887822367, 51.92911160650314], + [6.651292619582077, 51.92854228170433], + [6.6494836139535005, 51.92890658837446], + [6.646943836987335, 51.92939238020347], + [6.6459737885061365, 51.929605606812814], + [6.639180304074016, 51.932466279521044], + [6.634152704488429, 51.93529988632952], + [6.634223381345426, 51.93737151316231], + [6.632007921472797, 51.93781689562885], + [6.633705976635607, 51.93971521386038], + [6.634323941153465, 51.9450131842477], + [6.633739843554291, 51.945864084007965], + [6.633068375245197, 51.94768514764022], + [6.629071271713175, 51.9500920252273], + [6.639225785727158, 51.95939749914941], + [6.638915777610612, 51.962547012630054], + [6.637879289569108, 51.96498657084559], + [6.642525407642854, 51.965819953003624], + [6.6455999609592675, 51.96886474128141], + [6.655598209723333, 51.975544825533625], + [6.654618535581886, 51.976315023605935], + [6.657056086977597, 51.977552060994654], + [6.655162487222435, 51.9793326810045], + [6.652705119133545, 51.99753204409986], + [6.653361993195637, 51.99993118571986], + [6.654464777547185, 52.002910499151014], + [6.655244214505393, 52.00463877377275], + [6.658170116156098, 52.01117847997115], + [6.65581359321377, 52.013562644401325], + [6.656649159923878, 52.014814352317664], + [6.65852925187716, 52.01423386369259], + [6.6617537833434834, 52.01555043726309], + [6.662375543400693, 52.01741300966963], + [6.672060641577787, 52.022901326301735], + [6.677733490650777, 52.028375131178855], + [6.679606654096044, 52.02868633788731], + [6.680666794367781, 52.02799881916552], + [6.683569364246277, 52.028202066307934], + [6.687852920860575, 52.03985615236798], + [6.7141342332158915, 52.04006470912355], + [6.752977239695117, 52.02840556684019] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.0a1fc621-3e08-4a01-9b58-1fe26b4a9ece", + "properties": { + "statcode": "GM0296", + "jrstatcode": "2024GM0296", + "statnaam": "Wijchen", + "rubriek": "gemeente", + "id": 78 + }, + "bbox": [ + 169529.76399999857, 420519.7479999997, 183542.4299999997, + 431008.20600000024 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.764731540795399, 51.83229129560255], + [5.757620556917175, 51.82398994386057], + [5.77133417504999, 51.823062882429696], + [5.774057863707166, 51.82158610999673], + [5.774714525482689, 51.82054580944979], + [5.774722848093986, 51.8205333518223], + [5.781302423343912, 51.809827537470994], + [5.790435038917008, 51.80202341112289], + [5.7922468552441835, 51.79893037819502], + [5.794374074451379, 51.79731511446827], + [5.796075710131014, 51.79813563945408], + [5.800948664789277, 51.79515143637125], + [5.795984801306128, 51.791875581338786], + [5.78065884003267, 51.784203982040886], + [5.778594851348658, 51.78407414220838], + [5.774988313884025, 51.7837733627518], + [5.769473255256718, 51.78518931268911], + [5.768541287161043, 51.78256721242976], + [5.74641186619655, 51.778838416799246], + [5.741458064284689, 51.7787629578781], + [5.74053912235784, 51.7779048525949], + [5.737011819201295, 51.77834874760299], + [5.734036900471254, 51.77989872674334], + [5.733694093113373, 51.77793630548672], + [5.732200274852767, 51.778177953847134], + [5.729745375124904, 51.77285104821921], + [5.721904736575376, 51.774826467045614], + [5.711229945490515, 51.77503386233291], + [5.705976541168297, 51.77625509687636], + [5.702309324211474, 51.77814360364802], + [5.696500793723177, 51.785466669729125], + [5.69371615596691, 51.787740958197446], + [5.685789719929982, 51.79119314644649], + [5.674103275372108, 51.7924496588593], + [5.668406962210519, 51.79291697274162], + [5.663350802349167, 51.79453442471932], + [5.657493793705361, 51.79803009752411], + [5.653913756206688, 51.80115183290135], + [5.649901248303548, 51.806136939209374], + [5.646574635367745, 51.81303035809906], + [5.644215967266571, 51.816036794282276], + [5.6413045533554635, 51.817891908929155], + [5.635214683589018, 51.81954367863634], + [5.625896685384022, 51.8192297164351], + [5.622159631106509, 51.81921102780668], + [5.617812883383226, 51.82005557791626], + [5.606235317806525, 51.82530003058379], + [5.597976615211845, 51.828049441289046], + [5.599544564132334, 51.82911861193133], + [5.603069782508333, 51.82828142449179], + [5.608961901402746, 51.830988823030275], + [5.60785349965607, 51.83312077329094], + [5.609857529194359, 51.833939925797196], + [5.606631283560918, 51.83568927509394], + [5.6098352823815105, 51.83627384514094], + [5.6231424255651925, 51.84046867415277], + [5.643200207272018, 51.84498828000278], + [5.63593258777131, 51.847457317484405], + [5.637867009153752, 51.84888590784657], + [5.635349027573845, 51.8511171788962], + [5.637073204993301, 51.85356154580262], + [5.640120032551869, 51.85603257905847], + [5.638614590558794, 51.862666193910094], + [5.636177353569044, 51.8673616469748], + [5.658228659523359, 51.866546958056894], + [5.665748173201522, 51.8663898063065], + [5.667852643289933, 51.86592662887235], + [5.670767292891787, 51.864563467511374], + [5.672184469930905, 51.86204440713332], + [5.679571098597351, 51.860525484637336], + [5.6782581072107625, 51.85857415535549], + [5.681636047306219, 51.85688177450592], + [5.680167533997523, 51.85511625010749], + [5.680497975600934, 51.85386980630588], + [5.6843731263155135, 51.84919901019703], + [5.6848204461036405, 51.84878081892077], + [5.6813570397744835, 51.84867752185452], + [5.681733927020818, 51.84625984215248], + [5.677404326526872, 51.84625815544361], + [5.678110863405134, 51.84314679305765], + [5.715641435554566, 51.83970876631497], + [5.717625743704623, 51.839516986065355], + [5.732044208713187, 51.837980619494154], + [5.746929215774875, 51.83527103032595], + [5.764731540795399, 51.83229129560255] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.8a8ea57d-d1f5-43a3-a502-a13b65055abe", + "properties": { + "statcode": "GM0297", + "jrstatcode": "2024GM0297", + "statnaam": "Zaltbommel", + "rubriek": "gemeente", + "id": 79 + }, + "bbox": [ + 128329.07800000161, 416574.8370000012, 148187.27299999818, + 426515.40199999884 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.118358310828507, 51.817904924443894], + [5.121759413137803, 51.81660711183038], + [5.127341683311996, 51.81516301187845], + [5.134906381162292, 51.81421883906934], + [5.1404536978696935, 51.81409306085745], + [5.148703597982212, 51.81501668818882], + [5.159280339727086, 51.81647991122632], + [5.1706429818692285, 51.81703240619318], + [5.176743395342202, 51.81634903049227], + [5.195123006484557, 51.81150971006859], + [5.203272348114647, 51.81024066157874], + [5.212881999614107, 51.81004888317419], + [5.220700683511052, 51.81090452439345], + [5.235457174354424, 51.814482212845576], + [5.237415982004504, 51.815020706146036], + [5.247175454345989, 51.817122349615076], + [5.2795147874460255, 51.82074068252396], + [5.281717973341229, 51.82120751418325], + [5.284695389190782, 51.81743350473501], + [5.283258650279247, 51.81699395173113], + [5.2829589158652075, 51.81224794925378], + [5.280852676748152, 51.81040064860337], + [5.284480181035614, 51.806540264131385], + [5.283086351324602, 51.80606729995706], + [5.283874571990465, 51.80515069497874], + [5.28371497413889, 51.80326213025502], + [5.281007510027312, 51.801917052144056], + [5.288170559738095, 51.80017671431442], + [5.288436672175655, 51.799574302595275], + [5.286270910770268, 51.799140531269934], + [5.276312418947902, 51.79521058475414], + [5.2664525422193496, 51.793121890864086], + [5.268294897676415, 51.783360327199325], + [5.269919711716715, 51.77432641824792], + [5.26252178662136, 51.774646427436586], + [5.262558050534824, 51.773822704081546], + [5.259637871220192, 51.77389092679609], + [5.251738256015005, 51.772415697388695], + [5.248865045324594, 51.77123622029816], + [5.240197518208007, 51.7710071594231], + [5.2374440779504585, 51.77196463174208], + [5.233437277517073, 51.770815275645475], + [5.231572363425694, 51.770627186942455], + [5.214461488559608, 51.768616910502026], + [5.211125847887119, 51.76925621752436], + [5.206601466417917, 51.76905432284672], + [5.195904829018683, 51.76744039503965], + [5.191994804762965, 51.767452528646174], + [5.192412062398538, 51.76645584382996], + [5.1900471040703815, 51.76565052950682], + [5.183902502380252, 51.76609505572254], + [5.181506569729147, 51.76641926935498], + [5.180651656328559, 51.766555170338265], + [5.173862856412278, 51.76408997808645], + [5.175128040703433, 51.76253166380053], + [5.174565360732372, 51.7610727599326], + [5.179674914989588, 51.759237072339424], + [5.183518676780663, 51.75581771721522], + [5.184950935373573, 51.75363648565011], + [5.185725164936867, 51.75064573087652], + [5.184444610872999, 51.74586409851129], + [5.185020537197266, 51.74580287442915], + [5.185699795362008, 51.74191755621143], + [5.17726006915511, 51.742917749808456], + [5.168836828788012, 51.743073866135454], + [5.1634966300133005, 51.74270234088003], + [5.128054699486863, 51.73760714234623], + [5.126608001626233, 51.737928969100714], + [5.12598449022953, 51.739629192430215], + [5.125591438734124, 51.743226604570545], + [5.126335921961405, 51.74502148311283], + [5.138112603266311, 51.75072629246639], + [5.142713817062305, 51.75521022642364], + [5.137652478001221, 51.75762825185201], + [5.1358906587859146, 51.76031974470693], + [5.136350157314343, 51.76391645432439], + [5.138687566992999, 51.767452845479724], + [5.139649074170331, 51.770219389493924], + [5.137580795151413, 51.772905259969555], + [5.118645301248375, 51.777812653890805], + [5.116087977850806, 51.778923630234566], + [5.108970222586282, 51.78357811526899], + [5.1048581279001555, 51.78572508759052], + [5.100277636024242, 51.78715052908784], + [5.095890395173819, 51.78764758538891], + [5.09143788935883, 51.78693304408425], + [5.087201835146672, 51.785095481325705], + [5.081953429155902, 51.78071264721944], + [5.078539165220532, 51.779563744456425], + [5.0742486535279285, 51.779070066887805], + [5.0698548777586145, 51.77954878360445], + [5.0669661710727425, 51.780553179938906], + [5.061043559413441, 51.78528272162515], + [5.057119317734001, 51.79069535913676], + [5.052579438917634, 51.79529064494242], + [5.048146340110459, 51.79811390108256], + [5.044479707553497, 51.799326112183365], + [5.038597533065808, 51.80096573922292], + [5.026178724197704, 51.80396497031137], + [5.024246902379331, 51.80477067254393], + [5.015970383753096, 51.80822186083884], + [5.0124267255100134, 51.8106480839941], + [5.010307524648762, 51.81301044525132], + [5.010102677687023, 51.81660837769425], + [5.009344103960625, 51.817512037203635], + [5.000363907649196, 51.820933382773724], + [5.012996075252313, 51.82072575328823], + [5.026351766763361, 51.81885673991695], + [5.035123693507221, 51.817500387461216], + [5.039864455978506, 51.81731529297098], + [5.050726760464155, 51.8185330312112], + [5.074110309410681, 51.8258207888868], + [5.0824542348251, 51.826847853010236], + [5.089867742700475, 51.826642501167974], + [5.1009815590930705, 51.82445700943102], + [5.118358310828507, 51.817904924443894] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.5426e6b9-4c50-41bc-9936-b91f3cd58ebc", + "properties": { + "statcode": "GM0299", + "jrstatcode": "2024GM0299", + "statnaam": "Zevenaar", + "rubriek": "gemeente", + "id": 80 + }, + "bbox": [ + 196272.88899999857, 428302.9299999997, 208731.73000000045, + 447620.87629999965 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.0780259277852755, 52.00131498398263], + [6.084623205935349, 51.99479694487446], + [6.087919211565054, 51.99343028004821], + [6.093749103957796, 51.99278731099734], + [6.10342893075648, 51.99451957675601], + [6.108999950384738, 51.996137126728655], + [6.1095905327527245, 51.99643671019417], + [6.11049500587813, 51.99560540917509], + [6.11434020610224, 51.99681479614182], + [6.114450093248313, 51.996823181717986], + [6.130252355599306, 51.99709226695227], + [6.136094258828426, 51.997429987536755], + [6.139965473330286, 51.99706617959593], + [6.141820859381903, 51.99757358430684], + [6.141137949072099, 51.998579019963266], + [6.149830965989668, 52.001868892967224], + [6.159250532133227, 51.99973978188692], + [6.1630756132093785, 51.99956743912242], + [6.164317263868543, 51.9989862981609], + [6.159934548127292, 51.99784706680939], + [6.1595657098555545, 51.99602503791899], + [6.161889172440446, 51.99324858781847], + [6.161585007743107, 51.99075370162519], + [6.160483486937829, 51.981036748459665], + [6.144688334128337, 51.98050015335358], + [6.129211869184346, 51.978213978393434], + [6.1210903180128255, 51.97339812688178], + [6.122334650318945, 51.971483991516656], + [6.118293689299909, 51.970535395654245], + [6.112358183587752, 51.96886708943387], + [6.108823220263489, 51.96717275891949], + [6.105200748649926, 51.96669721496331], + [6.090393681075599, 51.96784428647168], + [6.089514437785545, 51.96350917259307], + [6.091370414447587, 51.96291602183814], + [6.09110167163836, 51.94231024621759], + [6.091427930079956, 51.93872098671032], + [6.094148635285782, 51.93882782888917], + [6.09468872283547, 51.936720131664885], + [6.112652804744196, 51.927803590581675], + [6.124489024950748, 51.922292536230955], + [6.138432547454414, 51.915529328273486], + [6.140304555239624, 51.91547459731059], + [6.141433404200995, 51.91592357723161], + [6.142958625932728, 51.9184575472898], + [6.143707307697982, 51.918030265334075], + [6.142583201129548, 51.91542986249316], + [6.14332840481187, 51.913627502685], + [6.152569590497229, 51.908868535927205], + [6.154775886530492, 51.911264521275506], + [6.156623020930556, 51.91122741028626], + [6.157192734248828, 51.90736756238396], + [6.160027418646183, 51.90475362761231], + [6.16285521869793, 51.90294871582296], + [6.1653545155114955, 51.90234467086948], + [6.1667725627036, 51.901047161435216], + [6.167911771469124, 51.9009419426542], + [6.165632880606968, 51.8985964726156], + [6.163023954209808, 51.90114043792847], + [6.162290779484534, 51.90094024759532], + [6.157385528157354, 51.905100357965196], + [6.156225312051501, 51.905244855860474], + [6.154314489473628, 51.90519873500107], + [6.154052275357394, 51.90455389591486], + [6.130547129477097, 51.89985744875319], + [6.125672608498169, 51.898201333322355], + [6.117889417299797, 51.90165913981961], + [6.114821220286342, 51.89772046600271], + [6.112306768684976, 51.898944369656945], + [6.111538360896937, 51.89861508600715], + [6.109306058915591, 51.89583021707626], + [6.110175977782941, 51.894942860203656], + [6.103474459279111, 51.892483467775946], + [6.106330738661735, 51.89165331876418], + [6.113098538858195, 51.89256681104226], + [6.11822419150105, 51.89201260137523], + [6.121149099572357, 51.891065566707425], + [6.122298960366871, 51.89010792003827], + [6.124396218782356, 51.89015284028014], + [6.13011214391458, 51.88827244778941], + [6.133443881653076, 51.8864769706521], + [6.137127114737634, 51.88580273122738], + [6.138052013918699, 51.88359658549766], + [6.14360999867226, 51.876251177376325], + [6.14329542256457, 51.874979962603675], + [6.144548499080749, 51.87161849404985], + [6.144539096356903, 51.869744510781445], + [6.14842527133558, 51.86823094686798], + [6.150782429050009, 51.86618627046102], + [6.156107458225996, 51.865470263587206], + [6.1615138482900464, 51.86298693443854], + [6.166918465421067, 51.86164205038035], + [6.167234973119524, 51.86096480803764], + [6.164368665554604, 51.858873817356226], + [6.163606649317375, 51.85344475308591], + [6.165639710561342, 51.85020920233784], + [6.1665598048708885, 51.840721640758126], + [6.14749348085049, 51.84540460654528], + [6.135771094479126, 51.84716940951565], + [6.107226767142118, 51.84809914899696], + [6.09952025983907, 51.849390928589145], + [6.0895558157025516, 51.85259699986505], + [6.07721127767136, 51.85924184500962], + [6.063485553200236, 51.86545122420112], + [6.054414066419078, 51.86910701854409], + [6.046284693441949, 51.87091320773935], + [6.037154821388433, 51.87541841186706], + [6.03058274696172, 51.88023922031113], + [6.021802975614492, 51.89632336722394], + [6.014525844012948, 51.901259471112255], + [5.998450827041795, 51.90664070532623], + [5.987062570298805, 51.91331383154284], + [5.988921021286668, 51.91396524068812], + [5.992755429262878, 51.91233395897865], + [5.997278958876824, 51.91307239023805], + [6.0003297840324095, 51.91324166199334], + [6.014047006234514, 51.91643233448852], + [6.026994026756744, 51.916518276724865], + [6.0347242308964955, 51.91384604264394], + [6.037456557637974, 51.91396216530935], + [6.037896426850421, 51.91471870141327], + [6.038842914857177, 51.91634019528595], + [6.041276572820786, 51.915805302271224], + [6.04184212953954, 51.9169522228878], + [6.042939762193007, 51.9168089101313], + [6.0434641939344225, 51.91746125315649], + [6.044712989853662, 51.9201157500558], + [6.043514474658086, 51.920803563946684], + [6.045995991773257, 51.92330527094037], + [6.045399282017721, 51.92409085741899], + [6.046995235233605, 51.92532768598656], + [6.046275856295263, 51.92690595104731], + [6.042357660472401, 51.927771783228984], + [6.045723700309608, 51.93040092466958], + [6.046401075610439, 51.92999537702861], + [6.047387037229918, 51.93032594788792], + [6.049016031466066, 51.93153990432781], + [6.051582275209863, 51.931044602077954], + [6.053026971681567, 51.9403284510731], + [6.054805361992206, 51.93993584056432], + [6.056456800817294, 51.94222976847175], + [6.061085850849745, 51.945655893856845], + [6.060462943013418, 51.94596826292962], + [6.063262918900181, 51.94908306136517], + [6.052665231961959, 51.95269778489144], + [6.058461488028758, 51.9583093839534], + [6.0599884413075875, 51.96324103189863], + [6.060838843714394, 51.974483240355006], + [6.067274405561874, 51.975331858359816], + [6.0686302771817715, 51.98047579404772], + [6.062147489941204, 51.98073947122829], + [6.060772261491824, 51.98185931592475], + [6.047231500228187, 51.98063676582877], + [6.042247608166674, 51.9790095738243], + [6.042969121803022, 51.97867967715898], + [6.034305610436386, 51.97135311987762], + [6.026889250584885, 51.97089308923141], + [6.021818174394958, 51.978202644246174], + [6.0098793176775445, 51.978868886712924], + [6.005664162275258, 51.979088155764245], + [6.001732846369974, 51.97755170432406], + [6.003143152835638, 51.980258993895895], + [6.001965203541771, 51.98065000477818], + [6.004876891635331, 51.98682428344654], + [6.00654747960307, 51.99128466163157], + [6.01039017861392, 51.99472558025437], + [6.015333730734991, 51.99686793764931], + [6.020322079714123, 51.9969131608688], + [6.027791260581189, 51.995840518484144], + [6.033219049133979, 51.997211021137495], + [6.043088902192764, 52.002235994380925], + [6.044615824131851, 52.00398876673622], + [6.045749425864075, 52.00755599814499], + [6.048066312760306, 52.00979460561228], + [6.057439668078128, 52.01402206094232], + [6.064086706620536, 52.014996997557645], + [6.064381875772969, 52.01497460433519], + [6.068278911661737, 52.01416802776408], + [6.074078698544989, 52.011928450590666], + [6.077621780931143, 52.009623190805534], + [6.078845073762674, 52.00713049193787], + [6.077662750987825, 52.003786273217656], + [6.0780259277852755, 52.00131498398263] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.8ede58be-1ce9-4c47-a2a1-8f77ed80b056", + "properties": { + "statcode": "GM0301", + "jrstatcode": "2024GM0301", + "statnaam": "Zutphen", + "rubriek": "gemeente", + "id": 81 + }, + "bbox": [ + 206550.9059999995, 455935.1180000007, 219428.09299999848, + 464933.743999999 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.19526349648371, 52.16562339425669], + [6.198707960948838, 52.16291027540162], + [6.200528649963489, 52.16491672322954], + [6.207221671483315, 52.16664368521853], + [6.211813887463757, 52.163073832339336], + [6.215826518814786, 52.16203651612169], + [6.216860549591489, 52.16177675852349], + [6.2171951831299825, 52.15959850031444], + [6.2161183693210775, 52.158587641600576], + [6.218674307871156, 52.15836227710941], + [6.219153205433696, 52.156076853729786], + [6.223071565394404, 52.15583112556095], + [6.223478066083305, 52.15384425178554], + [6.228448630347939, 52.15477279529789], + [6.228878056260944, 52.15534547999091], + [6.231640112295463, 52.15594031346044], + [6.235260911921745, 52.15542862801523], + [6.2379738174292765, 52.1461258135241], + [6.240150946636946, 52.14605035826649], + [6.2443460109239926, 52.146693584762], + [6.249285082429027, 52.14745067395197], + [6.251103341170808, 52.146761161658596], + [6.264391188419947, 52.14707534954938], + [6.266032062984267, 52.14786517003843], + [6.269791382073079, 52.149958701971784], + [6.27453769044505, 52.148843862816584], + [6.276896346054738, 52.14947274365944], + [6.28015096836345, 52.14947284338165], + [6.283416349489539, 52.14829814740824], + [6.286444384079392, 52.148939069258994], + [6.290280054037637, 52.14940149527915], + [6.295697171361044, 52.14883076306278], + [6.298111113860965, 52.149819707703365], + [6.300918053872613, 52.14911116744044], + [6.305119832397814, 52.15067343422625], + [6.315288184162192, 52.151291465772985], + [6.324000867097928, 52.15275247454836], + [6.326558908126319, 52.14738652395646], + [6.3283143682943575, 52.13771236167568], + [6.31017587562142, 52.13155834433113], + [6.296002494628361, 52.128274291571685], + [6.282621703540875, 52.12351844601849], + [6.27750009997163, 52.12168593221147], + [6.2715899484505595, 52.11304167243215], + [6.269700897400834, 52.11160980175937], + [6.266609756689333, 52.11182986349548], + [6.258233318661099, 52.11027225425237], + [6.244724078673751, 52.112613968849416], + [6.242431737920396, 52.1125303719519], + [6.2359214480267, 52.113716535649694], + [6.235043401482647, 52.112800122531304], + [6.233876978265826, 52.1131257992354], + [6.231768464780724, 52.11115086586054], + [6.232415980038951, 52.110747137877034], + [6.22663773226169, 52.109409507299105], + [6.225777824095645, 52.10685171060845], + [6.222156029592317, 52.10672565874178], + [6.224509697311122, 52.10186242905482], + [6.224476415168679, 52.10019906980787], + [6.22016299850333, 52.10032689781068], + [6.219223118263366, 52.09254994540903], + [6.221693892672395, 52.08877469073536], + [6.220180786735795, 52.089578111030114], + [6.219476081346058, 52.0887330083172], + [6.21816185893666, 52.089592187124445], + [6.2184856750195046, 52.092729778250735], + [6.217000113213243, 52.09311512219841], + [6.216831585257303, 52.0944331497401], + [6.219201415414042, 52.09630891613346], + [6.217898865017434, 52.097881301781484], + [6.21767767065017, 52.104526362860305], + [6.215352530219505, 52.1089662638716], + [6.213250927779063, 52.11108552231567], + [6.210087876157822, 52.112686561394774], + [6.2062066680388925, 52.113555117490876], + [6.192190513884095, 52.11421417950021], + [6.189094645649345, 52.1150408314988], + [6.18588597551527, 52.11835776317926], + [6.185884924021653, 52.12379462435764], + [6.18484371299772, 52.12467905851111], + [6.182515352062905, 52.126238983346106], + [6.184014080729484, 52.12912093448447], + [6.1836397624897765, 52.13124970151806], + [6.182423301892705, 52.13254645498228], + [6.183546231903362, 52.134252546472275], + [6.179411195264609, 52.13557967796718], + [6.179869542154837, 52.13585201758318], + [6.177586431849659, 52.136894046768944], + [6.179101392651112, 52.137901305458016], + [6.178892471547938, 52.138559152998184], + [6.174131256990071, 52.139431957483836], + [6.175048026353777, 52.14147118100259], + [6.172840838796556, 52.14237230054432], + [6.1721433272230986, 52.14338957850379], + [6.1733958185376805, 52.14496978315372], + [6.1685046723039045, 52.14622618682781], + [6.163433712015199, 52.146102675983], + [6.150589498814278, 52.143977671009104], + [6.142856517773036, 52.1456587401349], + [6.140389580649761, 52.14835232969384], + [6.140639529326205, 52.152209272718515], + [6.1420814258257685, 52.15519578761163], + [6.144334380445239, 52.15693711296103], + [6.147422189413762, 52.15799562527711], + [6.159157873849276, 52.157705030840695], + [6.1716686552400075, 52.15279990637545], + [6.1792953345813135, 52.15226225387596], + [6.181605081729634, 52.15270559516305], + [6.184678541215125, 52.16122257273054], + [6.1867495143085, 52.16448999880895], + [6.1915134517447195, 52.16763591532647], + [6.192799433875919, 52.169801272758804], + [6.19526349648371, 52.16562339425669] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f1d78277-ff41-421a-9434-d445666e9291", + "properties": { + "statcode": "GM0302", + "jrstatcode": "2024GM0302", + "statnaam": "Nunspeet", + "rubriek": "gemeente", + "id": 82 + }, + "bbox": [ + 174863.261, 475556.0940000005, 188652.62000000104, 491068.6387999989 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.76296259640903, 52.40066595984232], + [5.764098524526854, 52.39872288764673], + [5.768702080187608, 52.39881976567968], + [5.770747515802325, 52.39551549504097], + [5.776541272522997, 52.396700487119645], + [5.77968594767297, 52.398269664790895], + [5.779818427747557, 52.39864532086812], + [5.782622367442999, 52.39946914745279], + [5.786015580822764, 52.39948727890623], + [5.787687014172278, 52.400061246596785], + [5.790776348125009, 52.39686154463968], + [5.801976233367335, 52.40004351077565], + [5.808010863040415, 52.40177278752091], + [5.811671501099916, 52.40279894706277], + [5.8120453154592155, 52.40066875408873], + [5.817169851672317, 52.40156682701081], + [5.817866892974877, 52.39729241223887], + [5.820578297971018, 52.396933436662046], + [5.820579213269369, 52.39255651807983], + [5.821399921727856, 52.39100341361075], + [5.834680140643234, 52.381991132509604], + [5.850050106738685, 52.37091671847704], + [5.864792021363225, 52.35965820464118], + [5.868452293194057, 52.36130618111699], + [5.871170540448571, 52.36130928403963], + [5.876009356648951, 52.3578727677732], + [5.875000215988378, 52.357044381518435], + [5.864814276832325, 52.35132889728885], + [5.87426102913067, 52.34213037434898], + [5.880951329263021, 52.335185950853244], + [5.876210147514204, 52.33200628166324], + [5.8748907571445335, 52.32966190226701], + [5.875517353383229, 52.3292687701628], + [5.870425432816656, 52.32330927890024], + [5.8509926354650545, 52.30878698390718], + [5.840830961413955, 52.30439701525993], + [5.841184466775376, 52.299530579821855], + [5.844281922349922, 52.29489844254758], + [5.845695909458163, 52.28732112953162], + [5.852154972925185, 52.280090143658796], + [5.851500571974057, 52.2785437499691], + [5.848780349662562, 52.27682968373993], + [5.848169928763115, 52.27511411849661], + [5.8508111524871405, 52.26869537043049], + [5.84271841738469, 52.26714586059123], + [5.829737860461667, 52.27127861325733], + [5.82142665182071, 52.27267188817278], + [5.809989428884197, 52.270304208881974], + [5.802232394297611, 52.27049866624772], + [5.797241624026286, 52.26969573896557], + [5.792457583720056, 52.26997654044695], + [5.780038167143696, 52.27060182802962], + [5.7729952970678635, 52.27035419051841], + [5.751263267222115, 52.26956121944364], + [5.749227317243409, 52.26827292484425], + [5.746503493382074, 52.27167270948116], + [5.747877556386548, 52.271989617124866], + [5.75549186388166, 52.277876285540934], + [5.754648075805967, 52.282602247908805], + [5.746022325896065, 52.286936879960614], + [5.744681868178119, 52.288194991531405], + [5.744294646048454, 52.291959401075786], + [5.743837229586136, 52.298047278654636], + [5.748181312837476, 52.30683034385251], + [5.7491166698819605, 52.310006708638745], + [5.750747823133271, 52.31707376034144], + [5.74804249007244, 52.31782615159458], + [5.706171277972456, 52.32838184481975], + [5.712480645176463, 52.33184536628121], + [5.712802896220754, 52.33623884229346], + [5.711019756729654, 52.33872470976598], + [5.705462097190035, 52.33985992515576], + [5.705075515672251, 52.342870486862964], + [5.704838752818553, 52.3441284027496], + [5.704134850528546, 52.34685122908608], + [5.699054370366086, 52.3528013733668], + [5.698641431569033, 52.35580807502835], + [5.698728512227739, 52.3560170979896], + [5.698686124933422, 52.356732446846], + [5.700661974984433, 52.35748758205071], + [5.698355340637039, 52.36059279252823], + [5.697104114947885, 52.36111439466134], + [5.695655905793134, 52.360760534886516], + [5.6800215225077615, 52.37603268315278], + [5.678921586770262, 52.37884125882498], + [5.683464577326233, 52.378234280799], + [5.690132760767075, 52.37897176943048], + [5.694633769855529, 52.38069011754539], + [5.699883317014763, 52.38124922678817], + [5.703346900060938, 52.383678811533095], + [5.703027204036315, 52.3844760485485], + [5.703277738447765, 52.384621276221274], + [5.704095798192529, 52.38412373747862], + [5.704785989237005, 52.3843035103407], + [5.703752860539598, 52.3848966849393], + [5.7042253637225855, 52.38506227568087], + [5.705414368168723, 52.38429930833394], + [5.706633591365419, 52.3845504084076], + [5.7072912150733215, 52.38530290501611], + [5.707091996523878, 52.38581369857705], + [5.706692447968042, 52.38601296356802], + [5.706569734994876, 52.38641410039601], + [5.707579083474593, 52.38594056647207], + [5.707900718107857, 52.386413445092586], + [5.707373018994543, 52.38680156727285], + [5.707656176062247, 52.386877380542046], + [5.708172689996572, 52.38671538487406], + [5.70954699462914, 52.38680242038645], + [5.709866460412669, 52.387470102138785], + [5.711481582293009, 52.387903106423806], + [5.712773244945542, 52.38774583055838], + [5.716019125054567, 52.38772647976213], + [5.722473589695104, 52.39077216738513], + [5.7240208271671955, 52.390838417349244], + [5.7262994248169266, 52.39203370579824], + [5.727824067717868, 52.39395589035577], + [5.730923376889478, 52.395213989031895], + [5.7316356795784795, 52.394713441173856], + [5.735392837393533, 52.396080013672915], + [5.7348151695945715, 52.396793563088494], + [5.737702037741639, 52.39796510917385], + [5.739964965075301, 52.39765499675066], + [5.750326093841239, 52.40378082643675], + [5.755282442649385, 52.405271499908984], + [5.756912383120765, 52.40686780475259], + [5.759229818516163, 52.40458601334389], + [5.759400135975405, 52.40302345306694], + [5.76296259640903, 52.40066595984232] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.2717c342-2dd1-4831-9c06-c6c0deb78c5e", + "properties": { + "statcode": "GM0303", + "jrstatcode": "2024GM0303", + "statnaam": "Dronten", + "rubriek": "gemeente", + "id": 83 + }, + "bbox": [ + 167109.7912000008, 486985.1339999996, 187328.4395999983, + 514261.316300001 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.863511720159767, 52.52035449198187], + [5.8587700989994, 52.519061528146395], + [5.858729799939808, 52.51980981241714], + [5.859583252689173, 52.519857657212945], + [5.862857616579269, 52.520906212025814], + [5.863511720159767, 52.52035449198187] + ] + ], + [ + [ + [5.8603752238112605, 52.521362600784805], + [5.860026545557573, 52.52030256710758], + [5.859210634397225, 52.52040731087353], + [5.858630646890673, 52.52456976923707], + [5.858630748149652, 52.52456986859481], + [5.8586408878649285, 52.52457709820557], + [5.860544700323472, 52.52593948406485], + [5.861540918394858, 52.52562710444367], + [5.86262545587691, 52.52334518929445], + [5.86205147780174, 52.521859647097905], + [5.8603752238112605, 52.521362600784805] + ] + ], + [ + [ + [5.757927016885874, 52.590754009743414], + [5.756613830874988, 52.58834019251058], + [5.7395920700095395, 52.59102904139204], + [5.735415324033963, 52.59395891329821], + [5.734126628494668, 52.596748530282426], + [5.734840943802468, 52.60228552128875], + [5.74185618421518, 52.60475137213389], + [5.7505711184667865, 52.60388338626105], + [5.754922331356159, 52.60201819241809], + [5.757927016885874, 52.590754009743414] + ] + ], + [ + [ + [5.756826940962562, 52.580641449547244], + [5.756931841390573, 52.57957582245873], + [5.759877522000929, 52.57961297027781], + [5.760893604835482, 52.58155359891362], + [5.763959485863911, 52.58120606920021], + [5.7614307576748605, 52.58108217090918], + [5.761030665449713, 52.579333157634224], + [5.767411475952927, 52.57929675852702], + [5.783384066403197, 52.579819039656826], + [5.803995421208046, 52.57968152681751], + [5.809013851461643, 52.578936525398895], + [5.812823107913933, 52.57746327118346], + [5.851727766228613, 52.5512184825296], + [5.853836046853608, 52.54721032646496], + [5.854955665902111, 52.54508145148951], + [5.855422240766455, 52.54561929591113], + [5.855749781233735, 52.54615329993523], + [5.856038313996248, 52.5461524532164], + [5.855812670342933, 52.54524604280259], + [5.856270186853556, 52.54513664732203], + [5.85650821388667, 52.54585009067848], + [5.857013630943577, 52.545870149151106], + [5.857600673013995, 52.545650356179486], + [5.857721220994054, 52.54518140304541], + [5.8578694906732025, 52.5446045363572], + [5.856950304552938, 52.54402718283332], + [5.856756605508528, 52.5443653162633], + [5.856558717957263, 52.54471075376291], + [5.856154859411416, 52.54478844840464], + [5.855541352159889, 52.54458715057174], + [5.855686863469531, 52.54410601559946], + [5.85659940351592, 52.543811462913936], + [5.856082226759161, 52.54351208150477], + [5.85563562029347, 52.54382589938036], + [5.855283504056173, 52.54380062619649], + [5.854979989278768, 52.54304099973025], + [5.856818342445272, 52.5203746714449], + [5.8575248861535885, 52.52020233598122], + [5.857525160472656, 52.51919255409644], + [5.856913345642044, 52.519202688058165], + [5.856994938479366, 52.51819609708742], + [5.855465969062736, 52.516845897529855], + [5.852771057168512, 52.50888653131319], + [5.852980014779677, 52.50597997409338], + [5.8475479586370405, 52.493451672301674], + [5.816111553211265, 52.45885110229069], + [5.816384939843853, 52.457708770174406], + [5.817417671041997, 52.457301930304645], + [5.81737723482119, 52.45725530699498], + [5.816289907265983, 52.45760664773158], + [5.815161780152149, 52.45636073541677], + [5.814450364789612, 52.456732207175946], + [5.812331663357764, 52.45662406647442], + [5.803778206811399, 52.445857148712804], + [5.80271709969173, 52.44620285093205], + [5.79984357848214, 52.44145545953771], + [5.797273140667226, 52.43962041502443], + [5.797058592131297, 52.438832130756374], + [5.781333257857732, 52.43088794175821], + [5.777910535235902, 52.42833550139178], + [5.775780822794758, 52.42790769191201], + [5.757255043392726, 52.418983194987895], + [5.747011187881606, 52.41458253887175], + [5.745211550150999, 52.414660410851944], + [5.744600169118854, 52.41405070385361], + [5.744846863511525, 52.41515602036874], + [5.742338790938133, 52.4153047090245], + [5.742016496524935, 52.414544451481596], + [5.743815111854266, 52.413747165079336], + [5.74178153116807, 52.41359578492121], + [5.739775807653849, 52.41530857650246], + [5.726506803363255, 52.41697212470962], + [5.720112719232026, 52.41613539738039], + [5.661469642655515, 52.397937433965566], + [5.645253188091418, 52.390730539149665], + [5.644483002313321, 52.38992364055764], + [5.645162906744226, 52.38923770096252], + [5.643837092338894, 52.38924691480247], + [5.644758612189985, 52.38853991833129], + [5.639304826237078, 52.387316573835164], + [5.637354257122442, 52.38574292799887], + [5.636709293469111, 52.38618688213664], + [5.635421595559509, 52.38500978525717], + [5.636216749653679, 52.384152551766185], + [5.635699960085602, 52.383950621510465], + [5.634543211247804, 52.384782142326124], + [5.632643150995719, 52.384048608337025], + [5.634392914567421, 52.38256865390341], + [5.6323039451973, 52.383917649819544], + [5.625200775261278, 52.380315352531014], + [5.623335174596702, 52.37661259098273], + [5.620798464730697, 52.37592102821064], + [5.6161324522729705, 52.37172134197922], + [5.616775888688156, 52.370778276519594], + [5.615189396293035, 52.37084046466189], + [5.614734115185288, 52.370565071594164], + [5.614669285700739, 52.37052585757283], + [5.613556562487408, 52.371042109759735], + [5.611851630846139, 52.37468742036066], + [5.6171876516427535, 52.38478262280536], + [5.622983155728386, 52.40880160898522], + [5.61840096031864, 52.40856824614966], + [5.589069976966171, 52.41118658957995], + [5.587998199104293, 52.41476624268314], + [5.5666368491056355, 52.43586299753251], + [5.573803176918143, 52.438794098392705], + [5.581972236270665, 52.44559245900271], + [5.586388618433462, 52.447710592353474], + [5.572779826323266, 52.462448371017864], + [5.565419837720177, 52.47028069722675], + [5.605870332143016, 52.4845198345348], + [5.591360840716771, 52.4999637429024], + [5.588146838325001, 52.51339275749637], + [5.588055891861756, 52.51377263563934], + [5.58805660514203, 52.513772700038146], + [5.591280792327507, 52.51412248517587], + [5.588312998489489, 52.54918511709776], + [5.587410493548349, 52.56345976924965], + [5.572888477320754, 52.59615741822424], + [5.628315215261228, 52.605358996351114], + [5.641547085039479, 52.61054825934341], + [5.649320347413233, 52.61466200097784], + [5.650037097925583, 52.6155937411533], + [5.651209333505309, 52.614766330729445], + [5.641975530312243, 52.60984581445722], + [5.639967752060777, 52.607866833823856], + [5.650806424320073, 52.59931817575066], + [5.654765407421471, 52.59733659331579], + [5.725553603930822, 52.586435666691955], + [5.730239417893259, 52.585730521309145], + [5.755708706647698, 52.581894140891535], + [5.756763706651423, 52.58128380149302], + [5.756826940962562, 52.580641449547244] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c9a34961-1ee4-4971-9aac-5fa7e22ac837", + "properties": { + "statcode": "GM0307", + "jrstatcode": "2024GM0307", + "statnaam": "Amersfoort", + "rubriek": "gemeente", + "id": 84 + }, + "bbox": [ + 149468.74399999902, 457797.11499999836, 161645.4699999988, + 470118.68299999833 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.395522356009458, 52.21915384787237], + [5.407221832548992, 52.21340465543308], + [5.409669926667253, 52.2185795671252], + [5.434713926126303, 52.20587578163691], + [5.439237129943847, 52.20460143134188], + [5.439820495614624, 52.20598373708438], + [5.44056791708406, 52.205836637951705], + [5.440187172733939, 52.20463046962456], + [5.441118692640305, 52.204322259372205], + [5.439449050453645, 52.20219507329682], + [5.439771433695733, 52.197267047196576], + [5.4397698703754624, 52.197236341758], + [5.439711479542046, 52.1960820420143], + [5.4400958678647395, 52.190052214242584], + [5.43808620544449, 52.1845848209716], + [5.439043002868285, 52.18412696488215], + [5.440093170036275, 52.1733783808148], + [5.4389160699358525, 52.172917042025105], + [5.439875543340817, 52.171197455114424], + [5.443594417093043, 52.16882984453926], + [5.446537567487392, 52.168023323062464], + [5.457615132848987, 52.16707924542221], + [5.469632764109867, 52.16620943254427], + [5.479922362585093, 52.16581455499114], + [5.478948270008007, 52.164741153923394], + [5.475507958073319, 52.16437757119338], + [5.47326568312158, 52.163264198235034], + [5.472433304005097, 52.162850865932846], + [5.472865765703495, 52.16184839893435], + [5.475519830714223, 52.1621616805682], + [5.479196697128446, 52.16136073807351], + [5.482116095322874, 52.15979568192471], + [5.482013260815053, 52.159547389717844], + [5.481495536102809, 52.15829730881431], + [5.484317295704738, 52.15806385511675], + [5.484073550634441, 52.15534609662558], + [5.483767058155547, 52.15398109917831], + [5.48134176553574, 52.15050097437239], + [5.476747480694831, 52.15221756019033], + [5.469863117012157, 52.15284928788881], + [5.45958204670142, 52.15287631763977], + [5.455950385960971, 52.15434746226226], + [5.446984488040925, 52.15953672416791], + [5.444963283449649, 52.15989779909328], + [5.4424641467648796, 52.161448085870106], + [5.438951653883305, 52.161388637865606], + [5.431941178089291, 52.15875594143621], + [5.423547364480159, 52.15762012180224], + [5.417843572002345, 52.1547846832162], + [5.416208467261806, 52.15091651340529], + [5.414010908539887, 52.14831080358353], + [5.413771822970808, 52.14802683556136], + [5.408339527070482, 52.14264618182373], + [5.409390976627782, 52.14038742362218], + [5.40756324847452, 52.14195981107247], + [5.405404858222751, 52.13981147092082], + [5.400096867778112, 52.13572043992173], + [5.400082143743107, 52.13571211600665], + [5.39807469928086, 52.133547807497635], + [5.397127418069201, 52.13394697574808], + [5.384335031794226, 52.131738530918135], + [5.374388786818473, 52.130992808173104], + [5.3722221382132345, 52.13236427180647], + [5.370457653007976, 52.13157010318128], + [5.355635209013094, 52.13682957373156], + [5.334036459225044, 52.120414854465544], + [5.3250009697406995, 52.11680563510158], + [5.310919800924674, 52.1083843872585], + [5.306458635645027, 52.11027146355067], + [5.3115832019219775, 52.11414309073743], + [5.331267843999371, 52.126630201486165], + [5.333851661779255, 52.13134535125021], + [5.332048941757262, 52.133786438975655], + [5.330643504056794, 52.135703336766056], + [5.336316460468603, 52.14595091798665], + [5.3363353503093505, 52.146048958501474], + [5.3387202812241545, 52.16005651032052], + [5.343483725609801, 52.160270543027714], + [5.344673599782486, 52.16362827023758], + [5.347613766938836, 52.17072882056772], + [5.346883723134304, 52.17167925191137], + [5.347314787774682, 52.17278490079349], + [5.348683723852735, 52.172954245370015], + [5.348505802289532, 52.1735306623485], + [5.349925435227293, 52.17385666812522], + [5.3490998178296465, 52.17467801635077], + [5.349897621821216, 52.17560503923649], + [5.3443219038376455, 52.17703760000667], + [5.340662872335029, 52.17817931074657], + [5.336439672244524, 52.18271764622143], + [5.33356362450924, 52.18317423892955], + [5.326708595087623, 52.1818110123377], + [5.323696567741284, 52.1825884592564], + [5.324651681356874, 52.187288701827896], + [5.323844588569349, 52.1884954650206], + [5.320682596863488, 52.19022142425364], + [5.314668063864916, 52.19158375892399], + [5.31164015095586, 52.19103543665189], + [5.310216624260225, 52.19201609344096], + [5.309338350398045, 52.194728786194375], + [5.314282026127564, 52.20302272780214], + [5.330691738981552, 52.20338483374202], + [5.3278820594639384, 52.209350043045994], + [5.330541367631362, 52.21473170936429], + [5.358363961937733, 52.209715098045116], + [5.359118474576895, 52.21036101039189], + [5.364433871818659, 52.209843971715976], + [5.364878759320036, 52.20936427424301], + [5.37329359632411, 52.20780044932122], + [5.37807395557222, 52.20706460590627], + [5.385397246628952, 52.206433197097084], + [5.392735465559559, 52.20552770715958], + [5.395522356009458, 52.21915384787237] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.1e5908d9-0ceb-46b5-bd4e-1b4ad66c3d98", + "properties": { + "statcode": "GM0308", + "jrstatcode": "2024GM0308", + "statnaam": "Baarn", + "rubriek": "gemeente", + "id": 85 + }, + "bbox": [ + 143020.95899999887, 464148.2170000002, 151470.3200000003, + 471642.78400000185 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.335263576541001, 52.22631065926588], + [5.334323491216866, 52.220123110393075], + [5.330541367631362, 52.21473170936429], + [5.3278820594639384, 52.209350043045994], + [5.330691738981552, 52.20338483374202], + [5.314282026127564, 52.20302272780214], + [5.313625864192171, 52.204219171297474], + [5.312183468315601, 52.20424482191645], + [5.310664380800608, 52.20348381163866], + [5.308791813639759, 52.20454858981643], + [5.304017799374637, 52.2000106850205], + [5.297266617083697, 52.19755723390091], + [5.2971192720767135, 52.19750395762166], + [5.282498918515947, 52.192074197017305], + [5.282335087529219, 52.19286099426454], + [5.281582939072572, 52.192608466394724], + [5.270215510627978, 52.18852556962557], + [5.262080767328968, 52.1839386270064], + [5.257230262135839, 52.18086981337097], + [5.249259864320421, 52.175730068331546], + [5.246956780915248, 52.17422579176104], + [5.24317262813964, 52.17007641732889], + [5.239041318413931, 52.16762227030637], + [5.238359804649171, 52.167774711439485], + [5.237900721322651, 52.171250910602446], + [5.235985402110853, 52.171099328636075], + [5.236315788718896, 52.167458250719854], + [5.22499882092829, 52.16569961100129], + [5.223889215036776, 52.16537957660912], + [5.222701643090385, 52.17468714020437], + [5.221218800822609, 52.17457129667952], + [5.221120536707369, 52.17637229217093], + [5.2209949774911095, 52.17826047447364], + [5.214131559601623, 52.17667400650186], + [5.212075564368432, 52.17637393079521], + [5.216002862542751, 52.18806087063452], + [5.215046510647298, 52.18875379649068], + [5.213254079657584, 52.19008183634182], + [5.2141099215542495, 52.19916037073634], + [5.216300882657897, 52.20304146783125], + [5.215500726657339, 52.20427342551224], + [5.216529301202584, 52.205450735358184], + [5.217214078318181, 52.206232785894024], + [5.2164865744688305, 52.20636680675864], + [5.21896032236997, 52.21212871443328], + [5.2205774994773195, 52.21597137070281], + [5.224730241326966, 52.22519709437526], + [5.23263310804912, 52.22498848500573], + [5.254167259398308, 52.22444523874595], + [5.255589311299292, 52.224413248117926], + [5.255725549095026, 52.22441055414366], + [5.27057248704696, 52.2240064437404], + [5.283106987486509, 52.223540294030656], + [5.287574555559977, 52.22288250629913], + [5.288803376964319, 52.222992546487255], + [5.294168253797277, 52.22354512517247], + [5.300969551581312, 52.22352429440114], + [5.302721495763617, 52.22237137780318], + [5.302654194088878, 52.22148149895081], + [5.306444023795209, 52.21945927222133], + [5.313157882423337, 52.221951285073736], + [5.314613031814174, 52.224535295930394], + [5.313128565237514, 52.22564901868506], + [5.312617312374194, 52.225288996063114], + [5.3134037017529625, 52.22470192823735], + [5.311206982548162, 52.224567473348905], + [5.310079476734296, 52.22596407138472], + [5.310649309630883, 52.22622721822591], + [5.3115936983451935, 52.2265078228437], + [5.31064244715519, 52.22759127689898], + [5.307400682424208, 52.22919001804558], + [5.30661149162584, 52.23026790400249], + [5.307682822734308, 52.23159652393207], + [5.309767574008744, 52.232186039820476], + [5.312277974175209, 52.23282882967367], + [5.31975629520298, 52.23100143151856], + [5.335541190876201, 52.22845199545722], + [5.335263576541001, 52.22631065926588] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.933039ef-339c-4700-9c12-060540f92c44", + "properties": { + "statcode": "GM0310", + "jrstatcode": "2024GM0310", + "statnaam": "De Bilt", + "rubriek": "gemeente", + "id": 86 + }, + "bbox": [ + 134995.86100000143, 455196.58900000155, 144296.39499999955, + 468476.8979999982 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.216002862542751, 52.18806087063452], + [5.212075564368432, 52.17637393079521], + [5.214131559601623, 52.17667400650186], + [5.2209949774911095, 52.17826047447364], + [5.221120536707369, 52.17637229217093], + [5.221218800822609, 52.17457129667952], + [5.222701643090385, 52.17468714020437], + [5.223889215036776, 52.16537957660912], + [5.22499882092829, 52.16569961100129], + [5.22670260747049, 52.15416319220512], + [5.2268835732045185, 52.152991306637546], + [5.229285193901078, 52.136730211134555], + [5.2292991988472775, 52.13663217111254], + [5.229460916448895, 52.135570150239104], + [5.229574018591504, 52.13458627020936], + [5.2289986822532155, 52.13165518767063], + [5.230232082005052, 52.122624575073516], + [5.23093038597649, 52.11678888541804], + [5.2182191807501805, 52.11367266355158], + [5.220896421128739, 52.10600979289024], + [5.222328885144397, 52.10389324551795], + [5.215644704094316, 52.10202413819136], + [5.210810444931462, 52.100721241274776], + [5.211981680385602, 52.09887970391903], + [5.211407153619457, 52.09831055397136], + [5.212727197125136, 52.097674327623146], + [5.212318989044265, 52.09700340472887], + [5.208608752947258, 52.09361891065585], + [5.209590903227898, 52.09148281497915], + [5.210587636360077, 52.09031442637852], + [5.2072297822299545, 52.086439294839536], + [5.205517202892849, 52.086829546544266], + [5.206715027933517, 52.086270531468564], + [5.205524616876192, 52.08489559029575], + [5.192752057546273, 52.08607644850869], + [5.189757775662334, 52.08633407728859], + [5.186170035496991, 52.09292767946699], + [5.184619261070219, 52.09314711870651], + [5.18269192041734, 52.09430762901074], + [5.180702652882156, 52.094608462017575], + [5.180564113288312, 52.09313187022137], + [5.17680769967956, 52.09335733607469], + [5.176009364181804, 52.0940836442431], + [5.175864785287534, 52.09340907512627], + [5.172011683050019, 52.09378519695215], + [5.166115169123693, 52.09372552932848], + [5.161320950465363, 52.09438452582875], + [5.157309611702537, 52.09833922664402], + [5.1564031181508785, 52.09814862005595], + [5.156269715499324, 52.09840200870777], + [5.161915010539652, 52.10721536933622], + [5.157264577771262, 52.10813923541702], + [5.1503808112119405, 52.11087538626863], + [5.148651091199678, 52.11524373171745], + [5.149310116796951, 52.11849121851458], + [5.146732010795831, 52.120412752473975], + [5.142624211093448, 52.12084443307406], + [5.1422021852686575, 52.120191962244846], + [5.141596209242875, 52.121174755981365], + [5.140163454974814, 52.12058202396535], + [5.140397128686002, 52.1209930047029], + [5.126548388167994, 52.124598710407014], + [5.107092849351739, 52.13321116002113], + [5.110778760130727, 52.136641211110906], + [5.120528950619055, 52.145541139524795], + [5.095508890383182, 52.15507839814781], + [5.094889714575814, 52.15534902674039], + [5.118845193870585, 52.17240604327531], + [5.115311140794645, 52.179816286945425], + [5.121412578349918, 52.18095275420026], + [5.124110587860274, 52.18082739193829], + [5.1432252114451895, 52.17999907992474], + [5.143344316089706, 52.18029883863369], + [5.166740206642757, 52.17897579151645], + [5.169704815136731, 52.17880269795828], + [5.179431667847649, 52.17821338777841], + [5.184185568068265, 52.17795466607392], + [5.19258596492611, 52.177832945608294], + [5.215500726657339, 52.20427342551224], + [5.216300882657897, 52.20304146783125], + [5.2141099215542495, 52.19916037073634], + [5.213254079657584, 52.19008183634182], + [5.215046510647298, 52.18875379649068], + [5.216002862542751, 52.18806087063452] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.a093ae19-51a3-4183-bcb4-9d731d3005ae", + "properties": { + "statcode": "GM0312", + "jrstatcode": "2024GM0312", + "statnaam": "Bunnik", + "rubriek": "gemeente", + "id": 87 + }, + "bbox": [ + 138939.28599999845, 445494.8960000016, 147633.7340000011, + 454723.1429999992 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.1623973474262765, 52.078609896017994], + [5.166917254647081, 52.07668121947116], + [5.1716062487505, 52.07867498301726], + [5.179101562717647, 52.07791507172406], + [5.181553733662008, 52.076258918436615], + [5.192639261103266, 52.077914251719605], + [5.195154970159923, 52.07734628555676], + [5.198936896279474, 52.07631387649856], + [5.200548153076467, 52.0768121747013], + [5.2250219855379365, 52.0649217378083], + [5.218460262206824, 52.06023876403105], + [5.219131427726346, 52.05975276273111], + [5.247423095670817, 52.05864655111072], + [5.2507385518436465, 52.05564544907876], + [5.251506756059187, 52.053319509000076], + [5.2480059497651945, 52.04741282245221], + [5.249893834500142, 52.04637767509072], + [5.2489533652892995, 52.04211461666707], + [5.249494398122637, 52.04098601149071], + [5.251083397216322, 52.0392250017929], + [5.255887924567865, 52.03812811398319], + [5.257539970753763, 52.03831611322183], + [5.258581981528784, 52.03726072058627], + [5.257470026632358, 52.036105267175635], + [5.257498858487953, 52.03267743957084], + [5.264452930314805, 52.03112578928493], + [5.269298254294833, 52.02917030969348], + [5.2708667928765545, 52.027403338757786], + [5.26323940120852, 52.02438010343919], + [5.269884369056916, 52.01832579580498], + [5.271693121208748, 52.014609190892756], + [5.279909909943421, 52.01072158712196], + [5.275701639930938, 52.005720281672275], + [5.27580701762755, 52.0024831820595], + [5.277586697406513, 52.00095442892092], + [5.277543317942837, 52.00014291995418], + [5.274476674641716, 51.99841867754489], + [5.271575346627364, 51.99777903735155], + [5.267366580876545, 51.999079769108086], + [5.26633254031919, 52.000296815034304], + [5.266168722924666, 52.003016669340575], + [5.2647362347924025, 52.003220128169566], + [5.2595625660807315, 52.000999218963436], + [5.243190591929821, 51.99879303049292], + [5.229408453014505, 52.01119299910831], + [5.219374023287931, 52.0152153765286], + [5.202165023916636, 52.017446716758606], + [5.203527069271781, 52.020076100523646], + [5.200256286671824, 52.022847662164345], + [5.199103163391008, 52.02521889283672], + [5.200910598681648, 52.031663193095504], + [5.199449854588567, 52.03371715646057], + [5.195432501645288, 52.03642691583308], + [5.1925036168264675, 52.03440871944505], + [5.189541357313653, 52.03698845745509], + [5.188984632701142, 52.038404625428015], + [5.191472712185991, 52.04304437746461], + [5.189499316801053, 52.04331408931585], + [5.187367482086823, 52.044123432585806], + [5.178930726072524, 52.04634041117637], + [5.1788365269576895, 52.04572019975035], + [5.160743551095095, 52.045514679758156], + [5.153030625397708, 52.05675729602533], + [5.157755290927057, 52.058341834247145], + [5.156890660104846, 52.0634268536207], + [5.158897241585605, 52.06486497173469], + [5.158327140303901, 52.06524986603206], + [5.159388924104171, 52.06706248261065], + [5.156400429988626, 52.06905791268048], + [5.155658250286846, 52.071416215867146], + [5.160441415638909, 52.07778845162412], + [5.160179895005105, 52.08029615932594], + [5.160719052243786, 52.08056268578137], + [5.1623973474262765, 52.078609896017994] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f16aad3e-0f10-4b85-ab31-a090352295c9", + "properties": { + "statcode": "GM0313", + "jrstatcode": "2024GM0313", + "statnaam": "Bunschoten", + "rubriek": "gemeente", + "id": 88 + }, + "bbox": [ + 149772.6259999983, 468602.6000000015, 156122.57470000163, + 476179.09809999913 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.331240842385961, 52.27361067071975], + [5.339673202122389, 52.270204044490704], + [5.3408805232592895, 52.27069851736063], + [5.350021820181647, 52.26881770899975], + [5.356926506690418, 52.26983494283198], + [5.36110023721954, 52.26829086111737], + [5.363313129137587, 52.26847649526042], + [5.366687408945801, 52.26695327452662], + [5.371425806325168, 52.26318793277178], + [5.3700608947570885, 52.26316651276804], + [5.370290990677606, 52.26226356471099], + [5.372413974211284, 52.26084324075405], + [5.373252100359461, 52.2612914873082], + [5.371289906087189, 52.26268326848041], + [5.371408679427433, 52.2627429809213], + [5.3742250437082815, 52.26166790253628], + [5.374199174873518, 52.261651989600814], + [5.374724354471458, 52.26002466626003], + [5.377459474541302, 52.25901948136837], + [5.3816958071618215, 52.258018915734816], + [5.382113441853329, 52.259275813961885], + [5.382522886613622, 52.25918474295876], + [5.384045913535173, 52.257160859547476], + [5.388770195850542, 52.253956506749304], + [5.388973892463126, 52.252826489162324], + [5.400851768752737, 52.24745573675624], + [5.403641431671612, 52.2470986067667], + [5.396592984366132, 52.229790402255354], + [5.394768044772044, 52.224850466753956], + [5.393211322841333, 52.220645493990176], + [5.395522356009458, 52.21915384787237], + [5.392735465559559, 52.20552770715958], + [5.385397246628952, 52.206433197097084], + [5.37807395557222, 52.20706460590627], + [5.37329359632411, 52.20780044932122], + [5.364878759320036, 52.20936427424301], + [5.364433871818659, 52.209843971715976], + [5.359118474576895, 52.21036101039189], + [5.358363961937733, 52.209715098045116], + [5.330541367631362, 52.21473170936429], + [5.334323491216866, 52.220123110393075], + [5.335263576541001, 52.22631065926588], + [5.335541190876201, 52.22845199545722], + [5.31975629520298, 52.23100143151856], + [5.312277974175209, 52.23282882967367], + [5.3134100852018555, 52.23525239266745], + [5.310893089382911, 52.24211955991586], + [5.310662023903749, 52.24632590284657], + [5.314128992722151, 52.251954165711034], + [5.32423155873815, 52.25298333444707], + [5.328583077027327, 52.25531745393684], + [5.328368274934138, 52.25717017582305], + [5.323177420931448, 52.2605434770459], + [5.322032116499222, 52.26232601502641], + [5.322621472966591, 52.263881408477815], + [5.326728403840277, 52.266144930714276], + [5.32853425022131, 52.26870583176734], + [5.331240842385961, 52.27361067071975] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.67d093fd-455e-4b82-b7b3-53d68654bc65", + "properties": { + "statcode": "GM0317", + "jrstatcode": "2024GM0317", + "statnaam": "Eemnes", + "rubriek": "gemeente", + "id": 89 + }, + "bbox": [143773.761, 470155.691300001, 151180.37909999862, 477078.4331], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.278664049272279, 52.28047245310638], + [5.305825663953018, 52.277329587583274], + [5.30646538613894, 52.27760565676961], + [5.308873577859773, 52.276385764441514], + [5.310669386943262, 52.27430020968939], + [5.315450102204617, 52.27410146258636], + [5.321053367307199, 52.27239662820005], + [5.327448303277161, 52.27369349994959], + [5.331240842385961, 52.27361067071975], + [5.32853425022131, 52.26870583176734], + [5.326728403840277, 52.266144930714276], + [5.322621472966591, 52.263881408477815], + [5.322032116499222, 52.26232601502641], + [5.323177420931448, 52.2605434770459], + [5.328368274934138, 52.25717017582305], + [5.328583077027327, 52.25531745393684], + [5.32423155873815, 52.25298333444707], + [5.314128992722151, 52.251954165711034], + [5.310662023903749, 52.24632590284657], + [5.310893089382911, 52.24211955991586], + [5.3134100852018555, 52.23525239266745], + [5.312277974175209, 52.23282882967367], + [5.309767574008744, 52.232186039820476], + [5.307682822734308, 52.23159652393207], + [5.30661149162584, 52.23026790400249], + [5.307400682424208, 52.22919001804558], + [5.31064244715519, 52.22759127689898], + [5.3115936983451935, 52.2265078228437], + [5.310649309630883, 52.22622721822591], + [5.310079476734296, 52.22596407138472], + [5.311206982548162, 52.224567473348905], + [5.3134037017529625, 52.22470192823735], + [5.312617312374194, 52.225288996063114], + [5.313128565237514, 52.22564901868506], + [5.314613031814174, 52.224535295930394], + [5.313157882423337, 52.221951285073736], + [5.306444023795209, 52.21945927222133], + [5.302654194088878, 52.22148149895081], + [5.302721495763617, 52.22237137780318], + [5.300969551581312, 52.22352429440114], + [5.294168253797277, 52.22354512517247], + [5.288803376964319, 52.222992546487255], + [5.287574555559977, 52.22288250629913], + [5.283106987486509, 52.223540294030656], + [5.27057248704696, 52.2240064437404], + [5.255725549095026, 52.22441055414366], + [5.255589311299292, 52.224413248117926], + [5.254167259398308, 52.22444523874595], + [5.23263310804912, 52.22498848500573], + [5.224730241326966, 52.22519709437526], + [5.222901246812829, 52.22526095050992], + [5.231879643068952, 52.23707766008352], + [5.237368800154148, 52.24427655752313], + [5.238407718386437, 52.245660318417805], + [5.245093123294268, 52.254431068107735], + [5.244081128862236, 52.2546627842358], + [5.261101837629769, 52.27583578626852], + [5.265663260177655, 52.281505363135054], + [5.2657691665365185, 52.281644611820084], + [5.269207586863043, 52.281544389167586], + [5.277129558078126, 52.28063784665639], + [5.278664049272279, 52.28047245310638] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f5f7c737-bda0-4b3e-9830-c59e83a71d7c", + "properties": { + "statcode": "GM0321", + "jrstatcode": "2024GM0321", + "statnaam": "Houten", + "rubriek": "gemeente", + "id": 90 + }, + "bbox": [ + 136620.6409999989, 441237.7659999989, 147044.76190000027, + 452076.2650000006 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.153030625397708, 52.05675729602533], + [5.160743551095095, 52.045514679758156], + [5.1788365269576895, 52.04572019975035], + [5.178930726072524, 52.04634041117637], + [5.187367482086823, 52.044123432585806], + [5.189499316801053, 52.04331408931585], + [5.191472712185991, 52.04304437746461], + [5.188984632701142, 52.038404625428015], + [5.189541357313653, 52.03698845745509], + [5.1925036168264675, 52.03440871944505], + [5.195432501645288, 52.03642691583308], + [5.199449854588567, 52.03371715646057], + [5.200910598681648, 52.031663193095504], + [5.199103163391008, 52.02521889283672], + [5.200256286671824, 52.022847662164345], + [5.203527069271781, 52.020076100523646], + [5.202165023916636, 52.017446716758606], + [5.219374023287931, 52.0152153765286], + [5.229408453014505, 52.01119299910831], + [5.243190591929821, 51.99879303049292], + [5.2423551060811295, 51.99866197442581], + [5.244018432079584, 51.99835073441636], + [5.243541027050613, 51.99761382666048], + [5.245385266622892, 51.99598371887794], + [5.256129858175942, 51.99361064127438], + [5.253325330908421, 51.99233502355846], + [5.254141131170988, 51.9860706877427], + [5.2714075570710905, 51.981144871042325], + [5.271268327343881, 51.98105067188979], + [5.266591147513133, 51.97626289531357], + [5.256271137668384, 51.97094139916173], + [5.2465237446452395, 51.97749823602176], + [5.242270383430723, 51.97872971840213], + [5.2368670771395625, 51.978757477242226], + [5.233006667953751, 51.97755042297188], + [5.229912519749953, 51.975648958906234], + [5.223956865572223, 51.96781407986483], + [5.219058412358938, 51.96342762199712], + [5.213470228649492, 51.960666043969724], + [5.213435454460688, 51.96065326802144], + [5.2059888198777315, 51.95943248301825], + [5.198845475017989, 51.96019776986568], + [5.189720663422397, 51.9629142171598], + [5.180226656080335, 51.96744832552888], + [5.172721949548247, 51.96961731859572], + [5.16095343949704, 51.97047005498546], + [5.1546035785289686, 51.97176615573453], + [5.14971369198154, 51.97427134804363], + [5.146883184179596, 51.97681740212745], + [5.143610581939971, 51.98414935028086], + [5.143595873904202, 51.98421823151059], + [5.141880508068253, 51.99073009106705], + [5.13967676084927, 51.99394323430098], + [5.133868034710612, 51.99668725222335], + [5.12821678686461, 51.997753001039904], + [5.119563210007086, 51.99992413394928], + [5.120821007305514, 52.00332482710949], + [5.121022336581117, 52.0037012851748], + [5.122836604127383, 52.00860679151924], + [5.125569094978633, 52.016686455133936], + [5.1283862731056225, 52.02478110734598], + [5.13099327762607, 52.024723808664625], + [5.121774161212486, 52.03043280391], + [5.12967243766688, 52.04985284889344], + [5.12471797209928, 52.04991543985372], + [5.12683195656897, 52.05491822431144], + [5.145675682031289, 52.05255911748378], + [5.149941578903397, 52.05558927050257], + [5.152808663052376, 52.056688043678584], + [5.153030625397708, 52.05675729602533] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.07df49d2-48c4-4df6-a255-33d1699aecba", + "properties": { + "statcode": "GM0327", + "jrstatcode": "2024GM0327", + "statnaam": "Leusden", + "rubriek": "gemeente", + "id": 91 + }, + "bbox": [ + 149774.12700000033, 455674.8920000009, 163686.39400000125, + 463699.6950000003 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.500002497957512, 52.141042980688646], + [5.502603094681563, 52.13953561618767], + [5.507591871817094, 52.138865800553646], + [5.507450244309839, 52.138531638032504], + [5.511690226245354, 52.13749358090788], + [5.514079390291934, 52.135923062822464], + [5.512443866953157, 52.1343297350744], + [5.5123666776521265, 52.13422384179821], + [5.51188089319955, 52.134115009469056], + [5.511998728992399, 52.13399805634359], + [5.512039448990189, 52.13363677681923], + [5.511667584301197, 52.132050509605264], + [5.509203092156157, 52.13194526891476], + [5.507676859282936, 52.13112480932217], + [5.504988367064082, 52.131087604672025], + [5.501488339510826, 52.12993889455552], + [5.499097924386456, 52.13054156912349], + [5.497913059059924, 52.130282891862336], + [5.496759075113313, 52.12481428434797], + [5.494704700674303, 52.124717634021586], + [5.495060038840908, 52.12199346497847], + [5.4969176813102525, 52.119557487006105], + [5.500042298409031, 52.119200011168964], + [5.50337164276195, 52.119659192367344], + [5.505353945037485, 52.11975044666812], + [5.503755992024413, 52.11658563308801], + [5.507551426419967, 52.115616009269594], + [5.507702067276892, 52.113896963690216], + [5.50630154119999, 52.1143104616527], + [5.50386780290434, 52.1137453336603], + [5.502610294876358, 52.115092417861355], + [5.4989165189540845, 52.11601763718008], + [5.495625918978629, 52.115585794085064], + [5.488082222938113, 52.11610112286145], + [5.486447088276168, 52.11535973632496], + [5.482161108336061, 52.116162197242], + [5.479079031296055, 52.11742618018661], + [5.476801596318505, 52.11415226994906], + [5.475130662857598, 52.106890923407654], + [5.476037133999133, 52.105012153693636], + [5.473562867911314, 52.104562977776396], + [5.471987318668807, 52.10145568358652], + [5.468412268830559, 52.1005984038664], + [5.467516495443868, 52.10040025801582], + [5.457865962222291, 52.1053692534956], + [5.445789187901821, 52.10685033594132], + [5.443806667893759, 52.10707456219275], + [5.442134692446617, 52.10421459992813], + [5.439180800538086, 52.10187598798559], + [5.4379832416194525, 52.099791167515704], + [5.435726445699004, 52.098912437707895], + [5.4340980890732355, 52.097779935347084], + [5.432206722655701, 52.09787350361312], + [5.432406324792985, 52.09689771411741], + [5.429675772469418, 52.095917665599636], + [5.428660975100349, 52.096434731463845], + [5.426036731350855, 52.09639658513013], + [5.4247694204915655, 52.0970436853944], + [5.424460351815087, 52.096635665129746], + [5.421980882309865, 52.09665477090126], + [5.420578456384797, 52.09714716433388], + [5.420258768628611, 52.098109259988924], + [5.415001190915172, 52.100116083772086], + [5.410158513040944, 52.103263259500025], + [5.407384680942956, 52.10301679855489], + [5.404520866493798, 52.1041063975879], + [5.400781407730158, 52.091879033989215], + [5.401332094438805, 52.0893335332428], + [5.40120728819113, 52.089337621688614], + [5.378013802072196, 52.09048954599434], + [5.34056771636882, 52.0950315436825], + [5.334297455837545, 52.09633324547955], + [5.322462381037522, 52.101900920834076], + [5.310919800924674, 52.1083843872585], + [5.3250009697406995, 52.11680563510158], + [5.334036459225044, 52.120414854465544], + [5.355635209013094, 52.13682957373156], + [5.370457653007976, 52.13157010318128], + [5.3722221382132345, 52.13236427180647], + [5.374388786818473, 52.130992808173104], + [5.384335031794226, 52.131738530918135], + [5.397127418069201, 52.13394697574808], + [5.39807469928086, 52.133547807497635], + [5.400082143743107, 52.13571211600665], + [5.400096867778112, 52.13572043992173], + [5.405404858222751, 52.13981147092082], + [5.40756324847452, 52.14195981107247], + [5.409390976627782, 52.14038742362218], + [5.408339527070482, 52.14264618182373], + [5.413771822970808, 52.14802683556136], + [5.414010908539887, 52.14831080358353], + [5.416208467261806, 52.15091651340529], + [5.417843572002345, 52.1547846832162], + [5.423547364480159, 52.15762012180224], + [5.431941178089291, 52.15875594143621], + [5.438951653883305, 52.161388637865606], + [5.4424641467648796, 52.161448085870106], + [5.444963283449649, 52.15989779909328], + [5.446984488040925, 52.15953672416791], + [5.455950385960971, 52.15434746226226], + [5.45958204670142, 52.15287631763977], + [5.469863117012157, 52.15284928788881], + [5.476747480694831, 52.15221756019033], + [5.48134176553574, 52.15050097437239], + [5.483794674888673, 52.14946514085164], + [5.489475634529395, 52.148219216733], + [5.498984666916545, 52.14736142964089], + [5.497306242821561, 52.14144350120465], + [5.500002497957512, 52.141042980688646] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.60309fe6-b41d-4e88-9ebc-a7cba70c5bd4", + "properties": { + "statcode": "GM0331", + "jrstatcode": "2024GM0331", + "statnaam": "Lopik", + "rubriek": "gemeente", + "id": 92 + }, + "bbox": [ + 117006.34099999815, 438963.8779999986, 132707.17799999937, + 448643.59699999914 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.029351741984169, 52.01147187018168], + [5.030142157325725, 52.01016418601834], + [5.034002136380689, 52.00393685769865], + [5.036045570736966, 52.00425886649855], + [5.0424700797401085, 52.005668244925374], + [5.052611817832232, 51.997654228680304], + [5.054240256942943, 51.99631870860695], + [5.053271769161707, 51.995483449494316], + [5.055866117195356, 51.99408059119714], + [5.062638115444032, 51.99123307748735], + [5.04499531809206, 51.98195895122791], + [5.040402204349428, 51.9774436267203], + [5.038830287183673, 51.97413619692336], + [5.036127489757115, 51.97132854729527], + [5.032848896828819, 51.96974622376395], + [5.02967287861039, 51.96920336088244], + [5.022375664213801, 51.969726658062974], + [5.01610326702513, 51.97214018562541], + [5.01007749446494, 51.97554415549572], + [5.002182384422555, 51.97821553619927], + [4.998073523291346, 51.97787150487801], + [4.991862257493433, 51.97585292535102], + [4.98700296681781, 51.97330747747383], + [4.983908080465726, 51.97059370874642], + [4.978888037495471, 51.96595788305564], + [4.976143228731426, 51.96344516723598], + [4.9681017702431305, 51.95933648453702], + [4.9638513478730495, 51.95943421268427], + [4.957333549836152, 51.96098403437495], + [4.948691208629898, 51.96347175033817], + [4.943305367419566, 51.96394279947816], + [4.939820507899614, 51.96343996075323], + [4.9335835351884585, 51.959707272132874], + [4.926301291212212, 51.95092794425962], + [4.919187601286363, 51.94472895078482], + [4.9140113408427615, 51.942435937938974], + [4.877792920155559, 51.938030675583256], + [4.875812031641798, 51.94353356492248], + [4.872755662569698, 51.95094068680953], + [4.871597951255687, 51.95371069670306], + [4.8689566469359775, 51.95670673959237], + [4.865673980645983, 51.96043334769064], + [4.864304497700337, 51.96339736016608], + [4.860382219234603, 51.968013506222825], + [4.849765880113696, 51.973854075318414], + [4.847553164557082, 51.975136900480095], + [4.845546370421592, 51.975200503739856], + [4.844296974682223, 51.9763518091374], + [4.834114363667695, 51.98558024717724], + [4.835217848184357, 51.98614302050802], + [4.8532603081880135, 51.991726792825524], + [4.8778317645874285, 52.00056884988602], + [4.891584332560329, 52.00485272903497], + [4.896411934362127, 52.00651643675978], + [4.9097346737538095, 52.011041416214404], + [4.913888248157042, 52.01107758466475], + [4.916855501557209, 52.01014475576018], + [4.920044825546431, 52.01001400154111], + [4.9521032927090145, 52.016764836715275], + [4.977256478293186, 52.02052662289828], + [4.992162153415687, 52.021032490763936], + [4.995194697445213, 52.02172038086973], + [5.019721638274997, 52.02553289840587], + [5.020353717861236, 52.0255655375986], + [5.023913235776194, 52.019932002031055], + [5.027316409865637, 52.01477956071558], + [5.029351741984169, 52.01147187018168] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4ec8de64-fefa-46bc-9dac-db712008b193", + "properties": { + "statcode": "GM0335", + "jrstatcode": "2024GM0335", + "statnaam": "Montfoort", + "rubriek": "gemeente", + "id": 93 + }, + "bbox": [ + 119411.3909999989, 446952.9079999998, 129682.0698999986, + 454717.38899999857 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.94571417992028, 52.075555387295026], + [4.956333251421545, 52.070299359349555], + [4.957105587951775, 52.06594767792254], + [4.970500846199651, 52.06756012231482], + [4.98259104567623, 52.06495046044022], + [4.995845258422169, 52.067334264227654], + [4.999498257094239, 52.06613144714707], + [5.018010505974445, 52.0622189747305], + [5.01707454088967, 52.0611428719744], + [5.0154918616746755, 52.059833733173846], + [5.010283665672385, 52.053741019214264], + [5.004901203719505, 52.055555923077364], + [5.001125710542715, 52.05402863058625], + [4.997147658386355, 52.05295210222136], + [4.994744721796303, 52.05254265693568], + [4.991074754722962, 52.0528643411268], + [4.990303170384692, 52.05243831884725], + [4.983276644308949, 52.04023666423938], + [4.978392581086871, 52.0396864636608], + [4.978989756826172, 52.03807135978708], + [4.9831389798418275, 52.027784551460236], + [4.9940462581401395, 52.029740062925356], + [4.995194697445213, 52.02172038086973], + [4.992162153415687, 52.021032490763936], + [4.977256478293186, 52.02052662289828], + [4.9521032927090145, 52.016764836715275], + [4.920044825546431, 52.01001400154111], + [4.916638646799448, 52.01341313658517], + [4.917747688597487, 52.01321669425267], + [4.908523198522018, 52.02277682866038], + [4.9049746055306445, 52.026477528396306], + [4.9124258910977066, 52.025291021678704], + [4.920059169034175, 52.025557850894955], + [4.924026053715582, 52.026525285229546], + [4.926435415917836, 52.02847585477127], + [4.92668102100711, 52.02998687491919], + [4.911398027116456, 52.04018162518999], + [4.914811744676263, 52.04237780654272], + [4.917117797588472, 52.043790856737715], + [4.906504664729876, 52.05347564157526], + [4.900546507210755, 52.05213982588496], + [4.895738943331871, 52.05047920269182], + [4.89541133901831, 52.04823392507694], + [4.881344030861595, 52.05752258141224], + [4.875506488776915, 52.06157978717764], + [4.871457910669044, 52.05922460328521], + [4.868225038756269, 52.06344633272144], + [4.873200411814852, 52.06874539314767], + [4.8745163895868, 52.06819074714586], + [4.875334667822606, 52.06888528222076], + [4.888984530277329, 52.068907544738636], + [4.900250011220091, 52.070202261126255], + [4.901613352086569, 52.070396432298466], + [4.905473025165545, 52.070148202491914], + [4.908202580859019, 52.071895651121146], + [4.91489123572979, 52.074092583298665], + [4.917981639633138, 52.07476474779977], + [4.92466104562518, 52.07759057229169], + [4.926608433048674, 52.07781814931836], + [4.930846640921977, 52.0792854959447], + [4.936202370064339, 52.0798657774483], + [4.939366796167825, 52.07792391675501], + [4.94571417992028, 52.075555387295026] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.35300913-5047-4908-80e9-36a484e6159b", + "properties": { + "statcode": "GM0339", + "jrstatcode": "2024GM0339", + "statnaam": "Renswoude", + "rubriek": "gemeente", + "id": 94 + }, + "bbox": [ + 162430.30799999833, 450136.76000000164, 167033.82499999925, + 457477.1000000015 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.550342587549018, 52.105419542474216], + [5.553063469065193, 52.100954006512474], + [5.554235791800082, 52.10015121957416], + [5.550542421320212, 52.09667636262158], + [5.55442927028402, 52.09539191800997], + [5.5544349252440295, 52.093468632359404], + [5.555869540371862, 52.09181954590386], + [5.554718115012507, 52.09149839348847], + [5.5549273525481695, 52.08651028024321], + [5.555909594867083, 52.08711769990503], + [5.557053037986815, 52.08686729350797], + [5.557418320731711, 52.086178137718754], + [5.5566872594415475, 52.085482762665656], + [5.5607538816422055, 52.084210689140285], + [5.560710779551274, 52.08141286358387], + [5.562746193632108, 52.07827798419506], + [5.561443513198635, 52.07328629588704], + [5.560313863073514, 52.07215269357759], + [5.55921055927358, 52.07103370132989], + [5.5607293480829885, 52.06750149646015], + [5.557903285826308, 52.04886511938737], + [5.557817623304898, 52.04865268137309], + [5.554523651256701, 52.049208673016], + [5.544639542066404, 52.04937330660507], + [5.54086246905684, 52.04281485645388], + [5.538818687695969, 52.04126480526105], + [5.535409839745741, 52.04147781784971], + [5.531641563492966, 52.0398563416835], + [5.531420144703133, 52.03946881250775], + [5.529347880607721, 52.04020242794458], + [5.525998900426961, 52.04136897639525], + [5.5164308776020645, 52.04776380198994], + [5.515681242901561, 52.05419115214761], + [5.512995415830341, 52.055113671044914], + [5.497875962760791, 52.05701820975255], + [5.4955747684149046, 52.070963489392305], + [5.496128045290448, 52.07167793342414], + [5.499882446522591, 52.07133520561437], + [5.5020923731502585, 52.07334520646257], + [5.504584378402764, 52.07334962222678], + [5.504922798757212, 52.07598896963344], + [5.505003289736722, 52.07674231073931], + [5.506836656922079, 52.076748334302295], + [5.509112976397574, 52.07697703554336], + [5.510360777463597, 52.07805500324142], + [5.509922651325361, 52.07905017747687], + [5.514453323177307, 52.078795326346764], + [5.519413929384975, 52.07920684887627], + [5.520357237133712, 52.0783076991897], + [5.52265441322459, 52.07754211754581], + [5.526896257269579, 52.08067990261221], + [5.53114218791944, 52.082279530298116], + [5.531306078118361, 52.08393924218872], + [5.526634174081151, 52.08490339975986], + [5.530856074381418, 52.08977438821305], + [5.537118480633666, 52.08864381094078], + [5.538293934641315, 52.0926897288917], + [5.535079190075907, 52.09287462350515], + [5.538830674046427, 52.09643618501123], + [5.539160181441284, 52.09781370569635], + [5.532816949823165, 52.09998388170577], + [5.531543293471545, 52.10226696037966], + [5.541539925291246, 52.10373709656603], + [5.544012636740613, 52.1019488983395], + [5.546302197375958, 52.10244363730847], + [5.545291792114641, 52.10439004173602], + [5.550342587549018, 52.105419542474216] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c8403635-d8cd-4b1f-b283-43ffd5634d6c", + "properties": { + "statcode": "GM0340", + "jrstatcode": "2024GM0340", + "statnaam": "Rhenen", + "rubriek": "gemeente", + "id": 95 + }, + "bbox": [ + 161214.4699999988, 439430.58999999985, 171506.00299999863, + 447803.2019999996 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.548336643966646, 52.00164701003783], + [5.553229240756935, 51.99903084077893], + [5.554429825685103, 52.00018214093049], + [5.558045056974985, 52.0036320196805], + [5.561353189109069, 52.0018528198613], + [5.570478575895894, 51.996958356324946], + [5.573244909125055, 51.998766069777695], + [5.582088158732583, 52.004475393422844], + [5.58948874276898, 52.00945552297959], + [5.591112700389702, 52.00730147351125], + [5.590808130664798, 52.00302480249255], + [5.591997672005076, 52.00139229151772], + [5.596556305538543, 51.999201539061616], + [5.602515013823605, 51.99499782843917], + [5.6060170136499785, 51.994164351289946], + [5.609972265310212, 51.99369153343737], + [5.6138128049889895, 51.99034278058721], + [5.615059958046436, 51.98271694085282], + [5.619888313179841, 51.97771034570149], + [5.626064193314598, 51.97407006365344], + [5.6248556890707615, 51.970448364777056], + [5.620258227663947, 51.96658232589908], + [5.623213553760383, 51.96256473973778], + [5.6264951881476755, 51.957365744453945], + [5.627308561987814, 51.95247330479938], + [5.62502743733135, 51.95161482976938], + [5.623446479864046, 51.95194555960161], + [5.62016249455284, 51.95149811121395], + [5.620437269038637, 51.94832478111768], + [5.616427933586841, 51.949353544818386], + [5.605939647188888, 51.94312478453368], + [5.603911084571992, 51.94388327203182], + [5.592736557938135, 51.94918255946573], + [5.5866165869928865, 51.95082894784525], + [5.5755743784346885, 51.9528265512993], + [5.561252509155969, 51.95450179322845], + [5.556933776462782, 51.95571102430803], + [5.549561074079531, 51.95919689303179], + [5.540208133629515, 51.967281506987376], + [5.537520484476508, 51.96828532762084], + [5.527113035062953, 51.97021906657454], + [5.518829562764779, 51.971573613026614], + [5.518222132764759, 51.971693390159594], + [5.510979363292189, 51.97364322608861], + [5.500751005113353, 51.97859204672692], + [5.486214004563034, 51.98382644318589], + [5.477664499531541, 51.983472671457385], + [5.47784981738722, 51.98769171151577], + [5.48055513228411, 51.98874798512675], + [5.479259179502817, 51.990199541932604], + [5.480300683741016, 51.991094035784876], + [5.48459472380478, 51.98775957450443], + [5.486084186352486, 51.9908526328474], + [5.485293834515211, 51.990965027427634], + [5.490897718514199, 51.99656105323832], + [5.492874725989795, 51.99609462170215], + [5.494201674412025, 51.99490106016984], + [5.50788690004474, 52.012311109311106], + [5.511022638392806, 52.016420278958684], + [5.512592173395474, 52.01851609710709], + [5.524647028637859, 52.014489804222706], + [5.533455343522414, 52.01237358688602], + [5.532366008911255, 52.01090012610953], + [5.536690476880634, 52.008319805172604], + [5.539183803157766, 52.00740798158206], + [5.5402350285413915, 52.00702113395078], + [5.548336643966646, 52.00164701003783] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.6dc5b099-f988-4787-adb0-68b487a67de1", + "properties": { + "statcode": "GM0342", + "jrstatcode": "2024GM0342", + "statnaam": "Soest", + "rubriek": "gemeente", + "id": 96 + }, + "bbox": [ + 145146.65700000152, 458007.3999999985, 152449.9690000005, + 468496.5320000015 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.308791813639759, 52.20454858981643], + [5.310664380800608, 52.20348381163866], + [5.312183468315601, 52.20424482191645], + [5.313625864192171, 52.204219171297474], + [5.314282026127564, 52.20302272780214], + [5.309338350398045, 52.194728786194375], + [5.310216624260225, 52.19201609344096], + [5.31164015095586, 52.19103543665189], + [5.314668063864916, 52.19158375892399], + [5.320682596863488, 52.19022142425364], + [5.323844588569349, 52.1884954650206], + [5.324651681356874, 52.187288701827896], + [5.323696567741284, 52.1825884592564], + [5.326708595087623, 52.1818110123377], + [5.33356362450924, 52.18317423892955], + [5.336439672244524, 52.18271764622143], + [5.340662872335029, 52.17817931074657], + [5.3443219038376455, 52.17703760000667], + [5.349897621821216, 52.17560503923649], + [5.3490998178296465, 52.17467801635077], + [5.349925435227293, 52.17385666812522], + [5.348505802289532, 52.1735306623485], + [5.348683723852735, 52.172954245370015], + [5.347314787774682, 52.17278490079349], + [5.346883723134304, 52.17167925191137], + [5.347613766938836, 52.17072882056772], + [5.344673599782486, 52.16362827023758], + [5.343483725609801, 52.160270543027714], + [5.3387202812241545, 52.16005651032052], + [5.3363353503093505, 52.146048958501474], + [5.336316460468603, 52.14595091798665], + [5.330643504056794, 52.135703336766056], + [5.332048941757262, 52.133786438975655], + [5.333851661779255, 52.13134535125021], + [5.331267843999371, 52.126630201486165], + [5.3115832019219775, 52.11414309073743], + [5.306458635645027, 52.11027146355067], + [5.298965775782336, 52.11179970750224], + [5.294599490590175, 52.11347397213426], + [5.291803232074867, 52.11453858706737], + [5.290533680344793, 52.11421263950564], + [5.282213050475689, 52.11208301872404], + [5.277560122009132, 52.118818940099594], + [5.277147006565583, 52.119453600302705], + [5.274213081880769, 52.12374014922146], + [5.271936110298046, 52.127045533136354], + [5.264101821133171, 52.12508006981091], + [5.256183354849636, 52.136377953062926], + [5.255267330950694, 52.13888523932342], + [5.256421880963235, 52.144055945326066], + [5.256386304955654, 52.1441718451402], + [5.254793958413502, 52.14951592273525], + [5.250994915878754, 52.156339609415184], + [5.249666385217608, 52.15875547196385], + [5.24317262813964, 52.17007641732889], + [5.246956780915248, 52.17422579176104], + [5.249259864320421, 52.175730068331546], + [5.257230262135839, 52.18086981337097], + [5.262080767328968, 52.1839386270064], + [5.270215510627978, 52.18852556962557], + [5.281582939072572, 52.192608466394724], + [5.282335087529219, 52.19286099426454], + [5.282498918515947, 52.192074197017305], + [5.2971192720767135, 52.19750395762166], + [5.297266617083697, 52.19755723390091], + [5.304017799374637, 52.2000106850205], + [5.308791813639759, 52.20454858981643] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f55d412a-15b3-4085-a276-e863a6433837", + "properties": { + "statcode": "GM0344", + "jrstatcode": "2024GM0344", + "statnaam": "Utrecht", + "rubriek": "gemeente", + "id": 97 + }, + "bbox": [ + 126434.77199999988, 448709.99500000104, 141834.432, 461609.59479999915 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.032510821752011, 52.1168365949269], + [5.03354503368749, 52.11675881346186], + [5.040881218674538, 52.12549976191757], + [5.045419445499814, 52.128462417303865], + [5.044978461146636, 52.128779387237664], + [5.047556017859414, 52.12997241235426], + [5.061204541468027, 52.122561779014724], + [5.065727185949981, 52.125255438474895], + [5.066989571266426, 52.12598498009912], + [5.069733455135529, 52.12641462707149], + [5.070198663943747, 52.12718148749431], + [5.072389585520747, 52.125359216233306], + [5.0761584627154726, 52.12704912144519], + [5.085532825800853, 52.13436600866539], + [5.085764487041218, 52.134550360682795], + [5.087164523404801, 52.13567145637883], + [5.100194593078097, 52.1302131877471], + [5.101084362788781, 52.12984462747842], + [5.10227409772102, 52.130324923067775], + [5.103397423082698, 52.12984837173892], + [5.105576320914654, 52.13188547766312], + [5.107092849351739, 52.13321116002113], + [5.126548388167994, 52.124598710407014], + [5.140397128686002, 52.1209930047029], + [5.140163454974814, 52.12058202396535], + [5.141596209242875, 52.121174755981365], + [5.1422021852686575, 52.120191962244846], + [5.142624211093448, 52.12084443307406], + [5.146732010795831, 52.120412752473975], + [5.149310116796951, 52.11849121851458], + [5.148651091199678, 52.11524373171745], + [5.1503808112119405, 52.11087538626863], + [5.157264577771262, 52.10813923541702], + [5.161915010539652, 52.10721536933622], + [5.156269715499324, 52.09840200870777], + [5.1564031181508785, 52.09814862005595], + [5.157309611702537, 52.09833922664402], + [5.161320950465363, 52.09438452582875], + [5.166115169123693, 52.09372552932848], + [5.172011683050019, 52.09378519695215], + [5.175864785287534, 52.09340907512627], + [5.176009364181804, 52.0940836442431], + [5.17680769967956, 52.09335733607469], + [5.180564113288312, 52.09313187022137], + [5.180702652882156, 52.094608462017575], + [5.18269192041734, 52.09430762901074], + [5.184619261070219, 52.09314711870651], + [5.186170035496991, 52.09292767946699], + [5.189757775662334, 52.08633407728859], + [5.192752057546273, 52.08607644850869], + [5.195154970159923, 52.07734628555676], + [5.192639261103266, 52.077914251719605], + [5.181553733662008, 52.076258918436615], + [5.179101562717647, 52.07791507172406], + [5.1716062487505, 52.07867498301726], + [5.166917254647081, 52.07668121947116], + [5.1623973474262765, 52.078609896017994], + [5.160719052243786, 52.08056268578137], + [5.160179895005105, 52.08029615932594], + [5.160441415638909, 52.07778845162412], + [5.155658250286846, 52.071416215867146], + [5.156400429988626, 52.06905791268048], + [5.159388924104171, 52.06706248261065], + [5.158327140303901, 52.06524986603206], + [5.158897241585605, 52.06486497173469], + [5.156890660104846, 52.0634268536207], + [5.157755290927057, 52.058341834247145], + [5.153030625397708, 52.05675729602533], + [5.152808663052376, 52.056688043678584], + [5.149941578903397, 52.05558927050257], + [5.145675682031289, 52.05255911748378], + [5.12683195656897, 52.05491822431144], + [5.124079868385051, 52.055216026881595], + [5.121249207426211, 52.054385678210366], + [5.117751662397365, 52.05663906217783], + [5.111256913821699, 52.05831797591497], + [5.10734436234266, 52.0500256051795], + [5.104449120333794, 52.049946947368916], + [5.104033727200701, 52.05071977014579], + [5.102085806783974, 52.05426384291544], + [5.097352129857038, 52.059480504856275], + [5.096774453659499, 52.059279337896776], + [5.09412415326446, 52.058754721187206], + [5.089986240665838, 52.06072880871653], + [5.073221372002367, 52.06222220473679], + [5.069641446378421, 52.06141581520273], + [5.067230274093848, 52.05750088097656], + [5.065143913164446, 52.05498120552279], + [5.064171505797916, 52.051577270472], + [5.063511007845515, 52.04120999118617], + [5.062801038775351, 52.02682319886891], + [5.061020769283472, 52.026281984546785], + [5.054909754173109, 52.028865478184215], + [5.055339662864512, 52.02973822861631], + [5.051979764786818, 52.03088788297027], + [5.051421287377499, 52.03010542477196], + [5.045583142371464, 52.034773656833586], + [5.038044188806744, 52.044171469980526], + [5.028339942954933, 52.050760920847566], + [5.0276722014912645, 52.051695819451204], + [5.028234750229727, 52.05368471660674], + [5.026961052694281, 52.05463230602852], + [5.027119594304555, 52.05539561500518], + [5.025593140469954, 52.05585635567672], + [5.021610439371743, 52.0558078883041], + [5.017426827339558, 52.060991044673514], + [5.01707454088967, 52.0611428719744], + [5.018010505974445, 52.0622189747305], + [4.999498257094239, 52.06613144714707], + [5.001618037498539, 52.0781440109017], + [5.003230182910371, 52.07795675707373], + [5.0050070789573065, 52.08845210600386], + [4.994217961332027, 52.09038489018415], + [4.993524272655011, 52.092225886964485], + [4.989327149679314, 52.10075530690541], + [4.975659727504222, 52.09978958411625], + [4.973440463739853, 52.10123002617158], + [4.973049621284431, 52.10278376753615], + [4.975820428212223, 52.10571647978256], + [4.976269446041966, 52.107971775623575], + [4.978728719632594, 52.108100410255204], + [4.979624916678799, 52.10872243160254], + [4.97958036549124, 52.11156407913293], + [4.980221541176038, 52.11219949569462], + [4.978466666019174, 52.113157039492215], + [4.978198011889031, 52.11284627958242], + [4.970095981700405, 52.122441670860695], + [4.973938346498304, 52.129673239358816], + [4.985237992231186, 52.13243713318216], + [4.986377675777416, 52.135243208140814], + [4.9945031970406975, 52.138611223212514], + [5.003101807110674, 52.14205047962936], + [5.002700039171996, 52.14130126034632], + [5.012112283164495, 52.12969158653759], + [5.032510821752011, 52.1168365949269] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.cfe8619a-86ed-4eee-a5eb-35244851fc52", + "properties": { + "statcode": "GM0345", + "jrstatcode": "2024GM0345", + "statnaam": "Veenendaal", + "rubriek": "gemeente", + "id": 98 + }, + "bbox": [ + 163607.16600000113, 445413.1950000003, 168936.78500000015, + 451240.6020000018 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.554523651256701, 52.049208673016], + [5.557817623304898, 52.04865268137309], + [5.557903285826308, 52.04886511938737], + [5.570852936752805, 52.047996988687], + [5.569975358936193, 52.04563656251174], + [5.570010907048403, 52.04449508771729], + [5.570152222838201, 52.04443978802194], + [5.570044984714821, 52.04340083313241], + [5.5697543591863425, 52.04341487177825], + [5.568657150195652, 52.04239650855507], + [5.5674009005359615, 52.040624906133395], + [5.568314562313293, 52.04026915117957], + [5.577288644739638, 52.03832679760748], + [5.589960903929206, 52.0344114423708], + [5.590022802850485, 52.0343032399606], + [5.589907112418986, 52.03269272546233], + [5.589756380599586, 52.032697622970765], + [5.589588678144562, 52.031176589689295], + [5.586711623441599, 52.031290422569505], + [5.587347617029915, 52.02726383864646], + [5.587445958913838, 52.0266411538445], + [5.587199848846056, 52.02044865625325], + [5.590242100595251, 52.02026673945759], + [5.5896216098571925, 52.01559481633118], + [5.586922245868601, 52.015713176485825], + [5.586750695154486, 52.012285916173624], + [5.5860146218170135, 52.011776280584535], + [5.587422092089005, 52.01092168232338], + [5.58948874276898, 52.00945552297959], + [5.582088158732583, 52.004475393422844], + [5.573244909125055, 51.998766069777695], + [5.570478575895894, 51.996958356324946], + [5.561353189109069, 52.0018528198613], + [5.558045056974985, 52.0036320196805], + [5.554429825685103, 52.00018214093049], + [5.553229240756935, 51.99903084077893], + [5.548336643966646, 52.00164701003783], + [5.5402350285413915, 52.00702113395078], + [5.539183803157766, 52.00740798158206], + [5.536690476880634, 52.008319805172604], + [5.532366008911255, 52.01090012610953], + [5.533455343522414, 52.01237358688602], + [5.524647028637859, 52.014489804222706], + [5.512592173395474, 52.01851609710709], + [5.51833903057346, 52.02587830777725], + [5.5223198234800295, 52.031051356542704], + [5.525265511596816, 52.034987576046724], + [5.529347880607721, 52.04020242794458], + [5.531420144703133, 52.03946881250775], + [5.531641563492966, 52.0398563416835], + [5.535409839745741, 52.04147781784971], + [5.538818687695969, 52.04126480526105], + [5.54086246905684, 52.04281485645388], + [5.544639542066404, 52.04937330660507], + [5.554523651256701, 52.049208673016] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.815bb193-e036-4e3b-9149-21b094246eaa", + "properties": { + "statcode": "GM0351", + "jrstatcode": "2024GM0351", + "statnaam": "Woudenberg", + "rubriek": "gemeente", + "id": 99 + }, + "bbox": [148908.02109999955, 450547.93620000035, 162590.454, 458804.364], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.484301742753559, 52.1055421177186], + [5.485267150522, 52.09910017592666], + [5.484739537947653, 52.09662442344928], + [5.486082696439794, 52.09365676943772], + [5.4767846350931055, 52.09037989358561], + [5.474720981665574, 52.09022100188528], + [5.472945196363718, 52.0891100421229], + [5.471835257730521, 52.08930221830073], + [5.4714916997514536, 52.08820065024606], + [5.467903598478706, 52.08595549040143], + [5.46405356642964, 52.08305617718556], + [5.463367709863102, 52.08344216535564], + [5.461299134114952, 52.082646024498395], + [5.45967809855976, 52.082003409672474], + [5.46014778376926, 52.0809521027442], + [5.45924334798836, 52.08022547313986], + [5.465653332424219, 52.07828818708076], + [5.466439739172214, 52.0761004815358], + [5.4673738758257615, 52.07549204945941], + [5.470904425365748, 52.07468628214444], + [5.473661482211768, 52.07313480101306], + [5.476359272246957, 52.072647197884066], + [5.483897459080781, 52.069656397486504], + [5.488282002186399, 52.07039258985901], + [5.490696483004868, 52.07141053574878], + [5.4940671522283475, 52.07190829124401], + [5.496128045290448, 52.07167793342414], + [5.4955747684149046, 52.070963489392305], + [5.497875962760791, 52.05701820975255], + [5.491428751080772, 52.05732201938984], + [5.485379639840824, 52.05623467171798], + [5.477194758055668, 52.05285491676497], + [5.465857670898718, 52.05079260926324], + [5.4620997920255085, 52.0489881628163], + [5.4611380823332505, 52.04725905951209], + [5.453891929969611, 52.049767791404754], + [5.448612721742665, 52.04323692502941], + [5.44570271417671, 52.04525887786716], + [5.441601915030243, 52.045693086611976], + [5.435150579009116, 52.04788530001974], + [5.429868576143703, 52.05286660997555], + [5.428335267528853, 52.0563055809794], + [5.428714925671417, 52.05734106194244], + [5.4306229611816335, 52.0590476463512], + [5.435267296949255, 52.05959755083364], + [5.436451192017912, 52.06160928171869], + [5.438313444518977, 52.07027324542754], + [5.437466220276991, 52.07201545083523], + [5.4354690690812175, 52.072850937180206], + [5.4333811646507435, 52.072294679666804], + [5.424071756966373, 52.07249862320753], + [5.42235569176337, 52.07301583719089], + [5.409354200791138, 52.06898446973861], + [5.401896329503161, 52.06429857206787], + [5.400529974046654, 52.06474539816899], + [5.398956348043343, 52.06693826776788], + [5.4004806629603825, 52.067687132386894], + [5.399536891238409, 52.06921058582242], + [5.405365282473154, 52.070999677157445], + [5.407061226712815, 52.072576821968], + [5.405893845317019, 52.07522048028003], + [5.403503687682078, 52.07567853680221], + [5.39450735292128, 52.074964766191655], + [5.3910561396420675, 52.075074336929816], + [5.389822677076463, 52.075668760958784], + [5.3883412972653115, 52.07493217499023], + [5.384527215540383, 52.07826840573308], + [5.332250884709801, 52.08416337884466], + [5.326924924400149, 52.08672979554337], + [5.298300712098124, 52.096445399213046], + [5.322462381037522, 52.101900920834076], + [5.334297455837545, 52.09633324547955], + [5.34056771636882, 52.0950315436825], + [5.378013802072196, 52.09048954599434], + [5.40120728819113, 52.089337621688614], + [5.401332094438805, 52.0893335332428], + [5.400781407730158, 52.091879033989215], + [5.404520866493798, 52.1041063975879], + [5.407384680942956, 52.10301679855489], + [5.410158513040944, 52.103263259500025], + [5.415001190915172, 52.100116083772086], + [5.420258768628611, 52.098109259988924], + [5.420578456384797, 52.09714716433388], + [5.421980882309865, 52.09665477090126], + [5.424460351815087, 52.096635665129746], + [5.4247694204915655, 52.0970436853944], + [5.426036731350855, 52.09639658513013], + [5.428660975100349, 52.096434731463845], + [5.429675772469418, 52.095917665599636], + [5.432406324792985, 52.09689771411741], + [5.432206722655701, 52.09787350361312], + [5.4340980890732355, 52.097779935347084], + [5.435726445699004, 52.098912437707895], + [5.4379832416194525, 52.099791167515704], + [5.439180800538086, 52.10187598798559], + [5.442134692446617, 52.10421459992813], + [5.443806667893759, 52.10707456219275], + [5.445789187901821, 52.10685033594132], + [5.457865962222291, 52.1053692534956], + [5.467516495443868, 52.10040025801582], + [5.468412268830559, 52.1005984038664], + [5.471987318668807, 52.10145568358652], + [5.473562867911314, 52.104562977776396], + [5.476037133999133, 52.105012153693636], + [5.475130662857598, 52.106890923407654], + [5.476801596318505, 52.11415226994906], + [5.479079031296055, 52.11742618018661], + [5.482161108336061, 52.116162197242], + [5.486447088276168, 52.11535973632496], + [5.491873257606836, 52.1144851237467], + [5.4939219165585556, 52.112764078045615], + [5.4938617412627515, 52.11109726320615], + [5.484301742753559, 52.1055421177186] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.20af2f34-d263-4e20-aa1a-d5fc4de9760d", + "properties": { + "statcode": "GM0352", + "jrstatcode": "2024GM0352", + "statnaam": "Wijk bij Duurstede", + "rubriek": "gemeente", + "id": 100 + }, + "bbox": [ + 145052.71700000018, 440741.83300000057, 156928.0212999992, + 448742.20340000093 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.363665277254372, 52.01002048204825], + [5.381647053577556, 52.00213780347216], + [5.398905597051636, 52.002922802617505], + [5.4152766573603675, 51.99670192581627], + [5.3994222887710235, 51.987948124062456], + [5.378429895083015, 51.98608204581023], + [5.38759070717839, 51.97630891200781], + [5.394164744967885, 51.97593426783754], + [5.394950930428558, 51.97444163125012], + [5.392009633350875, 51.973402578658664], + [5.390517006613791, 51.97124810148891], + [5.390976067921979, 51.97073019670432], + [5.382798343101973, 51.96926394404294], + [5.376011287919481, 51.969210643114124], + [5.363016120841857, 51.97095010533981], + [5.355638266108868, 51.97035385244855], + [5.34825522327628, 51.967686327858225], + [5.339825067543235, 51.961137016832176], + [5.339693523868541, 51.96102800718588], + [5.333118383129909, 51.95720090435936], + [5.323439143698773, 51.95509710562207], + [5.316600706381483, 51.95522093962135], + [5.310870993352629, 51.95701367397694], + [5.300894137080279, 51.96156856001281], + [5.282608034776488, 51.96316251529986], + [5.27037360372902, 51.96542662131199], + [5.262104259769673, 51.96820597995692], + [5.256271137668384, 51.97094139916173], + [5.266591147513133, 51.97626289531357], + [5.271268327343881, 51.98105067188979], + [5.2714075570710905, 51.981144871042325], + [5.254141131170988, 51.9860706877427], + [5.253325330908421, 51.99233502355846], + [5.256129858175942, 51.99361064127438], + [5.245385266622892, 51.99598371887794], + [5.243541027050613, 51.99761382666048], + [5.244018432079584, 51.99835073441636], + [5.2423551060811295, 51.99866197442581], + [5.243190591929821, 51.99879303049292], + [5.2595625660807315, 52.000999218963436], + [5.2647362347924025, 52.003220128169566], + [5.266168722924666, 52.003016669340575], + [5.26633254031919, 52.000296815034304], + [5.267366580876545, 51.999079769108086], + [5.271575346627364, 51.99777903735155], + [5.274476674641716, 51.99841867754489], + [5.277543317942837, 52.00014291995418], + [5.277586697406513, 52.00095442892092], + [5.27580701762755, 52.0024831820595], + [5.275701639930938, 52.005720281672275], + [5.279909909943421, 52.01072158712196], + [5.287995862380536, 52.0099216063827], + [5.291219989398952, 52.0083538133853], + [5.314648163506303, 52.02700065731372], + [5.323985485866767, 52.022825444891794], + [5.344291571964541, 52.02019368951905], + [5.350259969909334, 52.0160374573441], + [5.363665277254372, 52.01002048204825] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.78d502f9-f883-484b-a426-740d493e3dc4", + "properties": { + "statcode": "GM0353", + "jrstatcode": "2024GM0353", + "statnaam": "IJsselstein", + "rubriek": "gemeente", + "id": 101 + }, + "bbox": [ + 126951.12180000171, 444810.061999999, 133733.3350000009, + 452602.9780000001 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.017426827339558, 52.060991044673514], + [5.021610439371743, 52.0558078883041], + [5.025593140469954, 52.05585635567672], + [5.027119594304555, 52.05539561500518], + [5.026961052694281, 52.05463230602852], + [5.028234750229727, 52.05368471660674], + [5.0276722014912645, 52.051695819451204], + [5.028339942954933, 52.050760920847566], + [5.038044188806744, 52.044171469980526], + [5.045583142371464, 52.034773656833586], + [5.051421287377499, 52.03010542477196], + [5.051979764786818, 52.03088788297027], + [5.055339662864512, 52.02973822861631], + [5.054909754173109, 52.028865478184215], + [5.061020769283472, 52.026281984546785], + [5.062801038775351, 52.02682319886891], + [5.062873576405658, 52.02574318079768], + [5.0629417688340554, 52.025257241220615], + [5.06592851237007, 52.01881456702226], + [5.067998444980084, 52.01440384111756], + [5.0689329953692175, 52.01416909143343], + [5.071426392511666, 52.00986269616652], + [5.0736015572887325, 52.00590937592207], + [5.074860767090035, 52.00355350200184], + [5.072535262097641, 52.00029962888732], + [5.075704126892084, 52.00091937044175], + [5.077535241679903, 51.99745183199729], + [5.066286185107292, 51.994073406698654], + [5.062638115444032, 51.99123307748735], + [5.055866117195356, 51.99408059119714], + [5.053271769161707, 51.995483449494316], + [5.054240256942943, 51.99631870860695], + [5.052611817832232, 51.997654228680304], + [5.0424700797401085, 52.005668244925374], + [5.036045570736966, 52.00425886649855], + [5.034002136380689, 52.00393685769865], + [5.030142157325725, 52.01016418601834], + [5.029351741984169, 52.01147187018168], + [5.027316409865637, 52.01477956071558], + [5.023913235776194, 52.019932002031055], + [5.020353717861236, 52.0255655375986], + [5.019721638274997, 52.02553289840587], + [4.995194697445213, 52.02172038086973], + [4.9940462581401395, 52.029740062925356], + [4.9831389798418275, 52.027784551460236], + [4.978989756826172, 52.03807135978708], + [4.978392581086871, 52.0396864636608], + [4.983276644308949, 52.04023666423938], + [4.990303170384692, 52.05243831884725], + [4.991074754722962, 52.0528643411268], + [4.994744721796303, 52.05254265693568], + [4.997147658386355, 52.05295210222136], + [5.001125710542715, 52.05402863058625], + [5.004901203719505, 52.055555923077364], + [5.010283665672385, 52.053741019214264], + [5.0154918616746755, 52.059833733173846], + [5.01707454088967, 52.0611428719744], + [5.017426827339558, 52.060991044673514] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.42d2e464-b777-4a13-aaee-5bbdfd1016e4", + "properties": { + "statcode": "GM0355", + "jrstatcode": "2024GM0355", + "statnaam": "Zeist", + "rubriek": "gemeente", + "id": 102 + }, + "bbox": [ + 141672.3040000014, 452269.8029999994, 151257.4646999985, + 464799.40100000054 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.238359804649171, 52.167774711439485], + [5.239041318413931, 52.16762227030637], + [5.24317262813964, 52.17007641732889], + [5.249666385217608, 52.15875547196385], + [5.250994915878754, 52.156339609415184], + [5.254793958413502, 52.14951592273525], + [5.256386304955654, 52.1441718451402], + [5.256421880963235, 52.144055945326066], + [5.255267330950694, 52.13888523932342], + [5.256183354849636, 52.136377953062926], + [5.264101821133171, 52.12508006981091], + [5.271936110298046, 52.127045533136354], + [5.274213081880769, 52.12374014922146], + [5.277147006565583, 52.119453600302705], + [5.277560122009132, 52.118818940099594], + [5.282213050475689, 52.11208301872404], + [5.290533680344793, 52.11421263950564], + [5.291803232074867, 52.11453858706737], + [5.294599490590175, 52.11347397213426], + [5.298965775782336, 52.11179970750224], + [5.306458635645027, 52.11027146355067], + [5.310919800924674, 52.1083843872585], + [5.322462381037522, 52.101900920834076], + [5.298300712098124, 52.096445399213046], + [5.326924924400149, 52.08672979554337], + [5.332250884709801, 52.08416337884466], + [5.3326085185938785, 52.07880983036647], + [5.3204227623303035, 52.070326903790786], + [5.291152962082781, 52.08635309416002], + [5.266158638608081, 52.07071465636382], + [5.265362717526967, 52.07020685370183], + [5.259353291144167, 52.06676610354873], + [5.257523311509426, 52.065490096476374], + [5.256001029496365, 52.06289313066711], + [5.252121616848688, 52.06202598037544], + [5.247423095670817, 52.05864655111072], + [5.219131427726346, 52.05975276273111], + [5.218460262206824, 52.06023876403105], + [5.2250219855379365, 52.0649217378083], + [5.200548153076467, 52.0768121747013], + [5.198936896279474, 52.07631387649856], + [5.195154970159923, 52.07734628555676], + [5.192752057546273, 52.08607644850869], + [5.205524616876192, 52.08489559029575], + [5.206715027933517, 52.086270531468564], + [5.205517202892849, 52.086829546544266], + [5.2072297822299545, 52.086439294839536], + [5.210587636360077, 52.09031442637852], + [5.209590903227898, 52.09148281497915], + [5.208608752947258, 52.09361891065585], + [5.212318989044265, 52.09700340472887], + [5.212727197125136, 52.097674327623146], + [5.211407153619457, 52.09831055397136], + [5.211981680385602, 52.09887970391903], + [5.210810444931462, 52.100721241274776], + [5.215644704094316, 52.10202413819136], + [5.222328885144397, 52.10389324551795], + [5.220896421128739, 52.10600979289024], + [5.2182191807501805, 52.11367266355158], + [5.23093038597649, 52.11678888541804], + [5.230232082005052, 52.122624575073516], + [5.2289986822532155, 52.13165518767063], + [5.229574018591504, 52.13458627020936], + [5.229460916448895, 52.135570150239104], + [5.2292991988472775, 52.13663217111254], + [5.229285193901078, 52.136730211134555], + [5.2268835732045185, 52.152991306637546], + [5.22670260747049, 52.15416319220512], + [5.22499882092829, 52.16569961100129], + [5.236315788718896, 52.167458250719854], + [5.235985402110853, 52.171099328636075], + [5.237900721322651, 52.171250910602446], + [5.238359804649171, 52.167774711439485] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e96203e4-37dc-4ffc-ad43-ce68672b8318", + "properties": { + "statcode": "GM0356", + "jrstatcode": "2024GM0356", + "statnaam": "Nieuwegein", + "rubriek": "gemeente", + "id": 103 + }, + "bbox": [ + 132736.046, 445497.4759999998, 137415.29199999943, 452704.9299999997 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.089986240665838, 52.06072880871653], + [5.09412415326446, 52.058754721187206], + [5.096774453659499, 52.059279337896776], + [5.097352129857038, 52.059480504856275], + [5.102085806783974, 52.05426384291544], + [5.104033727200701, 52.05071977014579], + [5.104449120333794, 52.049946947368916], + [5.10734436234266, 52.0500256051795], + [5.111256913821699, 52.05831797591497], + [5.117751662397365, 52.05663906217783], + [5.121249207426211, 52.054385678210366], + [5.124079868385051, 52.055216026881595], + [5.12683195656897, 52.05491822431144], + [5.12471797209928, 52.04991543985372], + [5.12967243766688, 52.04985284889344], + [5.121774161212486, 52.03043280391], + [5.13099327762607, 52.024723808664625], + [5.1283862731056225, 52.02478110734598], + [5.125569094978633, 52.016686455133936], + [5.122836604127383, 52.00860679151924], + [5.121022336581117, 52.0037012851748], + [5.120821007305514, 52.00332482710949], + [5.119563210007086, 51.99992413394928], + [5.113917527690851, 52.00167166560383], + [5.1069374373231655, 52.00288945271587], + [5.101399144361827, 52.003033127683466], + [5.090222734393337, 52.00158365776339], + [5.077535241679903, 51.99745183199729], + [5.075704126892084, 52.00091937044175], + [5.072535262097641, 52.00029962888732], + [5.074860767090035, 52.00355350200184], + [5.0736015572887325, 52.00590937592207], + [5.071426392511666, 52.00986269616652], + [5.0689329953692175, 52.01416909143343], + [5.067998444980084, 52.01440384111756], + [5.06592851237007, 52.01881456702226], + [5.0629417688340554, 52.025257241220615], + [5.062873576405658, 52.02574318079768], + [5.062801038775351, 52.02682319886891], + [5.063511007845515, 52.04120999118617], + [5.064171505797916, 52.051577270472], + [5.065143913164446, 52.05498120552279], + [5.067230274093848, 52.05750088097656], + [5.069641446378421, 52.06141581520273], + [5.073221372002367, 52.06222220473679], + [5.089986240665838, 52.06072880871653] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4f79338f-25af-4a9c-b87d-3dd16ff6e8e1", + "properties": { + "statcode": "GM0358", + "jrstatcode": "2024GM0358", + "statnaam": "Aalsmeer", + "rubriek": "gemeente", + "id": 104 + }, + "bbox": [ + 106026.23000000045, 470014.682, 116564.05999999866, 479913.1799999997 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.782931076799439, 52.255148324873545], + [4.7808882253601155, 52.25351974943958], + [4.77919718615683, 52.25353577354783], + [4.770866687681352, 52.249908887687944], + [4.768994340417528, 52.248398109999115], + [4.767888337620111, 52.246977470975274], + [4.768065250194255, 52.24539430606067], + [4.773271520443348, 52.241034018689724], + [4.723764399954997, 52.21657365211], + [4.72330196035959, 52.2163538651162], + [4.723649577217825, 52.218234968161056], + [4.7228965984100535, 52.22036390548757], + [4.724154531319085, 52.23237133344954], + [4.7044280493148865, 52.23384206157586], + [4.700243660765442, 52.233079440440065], + [4.696244105624449, 52.232109272883555], + [4.686210563840143, 52.22663345971459], + [4.683632300972573, 52.22635403358111], + [4.679975125695984, 52.22676310891473], + [4.676699023394591, 52.22592552023059], + [4.670348087144909, 52.23075578542271], + [4.677073834666338, 52.23438670348932], + [4.681248682531493, 52.23914288514838], + [4.695512750080445, 52.243222764752204], + [4.701867262258488, 52.244467908606296], + [4.705267158172439, 52.24675519655433], + [4.71322017902867, 52.25540089699575], + [4.720785656494292, 52.25878149919573], + [4.725877212322955, 52.263338848992866], + [4.729795444298755, 52.26516299342139], + [4.734567286948389, 52.266546660866624], + [4.739234919223285, 52.26761352331427], + [4.743765365280029, 52.26983760749886], + [4.745618114240177, 52.27164280788308], + [4.746699287217271, 52.27225335228267], + [4.751322007162531, 52.27368949302285], + [4.75687845101103, 52.27440113544218], + [4.765112977933417, 52.27678214874166], + [4.771019811880829, 52.279366210701845], + [4.779910314793119, 52.28313029522475], + [4.788341397155714, 52.288530943735296], + [4.793248228421163, 52.29409944956279], + [4.794442878318487, 52.296267027411226], + [4.7956633332822705, 52.299323913044134], + [4.79883575465166, 52.3014211114169], + [4.8098836926171495, 52.305776099826815], + [4.822402210571686, 52.29202363911534], + [4.8238421642600375, 52.29053987454393], + [4.823826985646904, 52.29001535029533], + [4.819104294067971, 52.28547288355735], + [4.814953513372351, 52.28142817009696], + [4.810220419733194, 52.27680770971979], + [4.806862074605074, 52.273095568685356], + [4.800625729107075, 52.26605379575432], + [4.795571411873697, 52.261554505053645], + [4.794697298874822, 52.26068175822467], + [4.794603170453587, 52.26005503161247], + [4.782931076799439, 52.255148324873545] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.45d0a108-0e87-46d4-96f9-d1937defc759", + "properties": { + "statcode": "GM0361", + "jrstatcode": "2024GM0361", + "statnaam": "Alkmaar", + "rubriek": "gemeente", + "id": 105 + }, + "bbox": [ + 109036.64400000125, 503674.4549999982, 123820.47700000182, + 521849.3729999997 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.778042041170488, 52.66431776645006], + [4.774033355397815, 52.65522183458235], + [4.774033199907098, 52.65522153899992], + [4.773005328352638, 52.65340812752941], + [4.7756078047781285, 52.65264595932547], + [4.773669372390934, 52.6483544496092], + [4.79194257193432, 52.656290266228645], + [4.792018252473235, 52.65644124714409], + [4.793616793247745, 52.6571443273769], + [4.8005094671710085, 52.660240917305394], + [4.800544826050836, 52.66003220963081], + [4.8005659954889515, 52.65787291630004], + [4.800565992230026, 52.657872828209484], + [4.800416117102006, 52.65724418589891], + [4.798644124782383, 52.65355690975833], + [4.792983036610795, 52.64842107086844], + [4.7866865409078425, 52.64058707132888], + [4.7852789761707815, 52.63811468086748], + [4.788403219579969, 52.63888951826419], + [4.7916431583424295, 52.63823358017479], + [4.7947059442030335, 52.63788274275879], + [4.807816292224505, 52.63398373591543], + [4.814477421024273, 52.6338712907397], + [4.824210347508693, 52.63382290665303], + [4.830224612504624, 52.63267785971417], + [4.834411603574571, 52.637428686982226], + [4.834537990695429, 52.637994387023625], + [4.83451082263274, 52.63915388457335], + [4.835186471455935, 52.64089670703673], + [4.835531063539512, 52.642438791595374], + [4.838549297434983, 52.646137821404686], + [4.84272935857619, 52.645937295689656], + [4.84742150441551, 52.642059573341676], + [4.85160647634181, 52.640564467774624], + [4.8605547200873955, 52.63913548643539], + [4.862972379019579, 52.637451076331665], + [4.86388199110158, 52.635359501720295], + [4.87340182792605, 52.634440594819], + [4.875536621405913, 52.63411258995947], + [4.88137657868372, 52.63343661354821], + [4.885350718271398, 52.63013684372549], + [4.888050124945942, 52.62737892671154], + [4.8894013036578965, 52.62392095803968], + [4.887251235104939, 52.622594338291435], + [4.8839922558622435, 52.61313855230602], + [4.896930985433974, 52.613352112158296], + [4.922044782086666, 52.611484410355246], + [4.925790690243942, 52.6094758256208], + [4.926925470262382, 52.6066969991112], + [4.921439906458744, 52.60831321893752], + [4.915375830391878, 52.60864210389099], + [4.901168606657583, 52.602924969483816], + [4.893495071750681, 52.59783724897324], + [4.8905200112276574, 52.59461783706617], + [4.884749809015174, 52.58423596331423], + [4.876379533819174, 52.57783000113193], + [4.868630992485035, 52.575945310345425], + [4.865671951163444, 52.573750178427524], + [4.86423782639196, 52.571621301921134], + [4.863032770821134, 52.568725082522576], + [4.862939661786734, 52.56504713853816], + [4.861341487759513, 52.56227735104083], + [4.858684553495798, 52.55945552930314], + [4.853841983074025, 52.55676906329873], + [4.851828283247722, 52.55483163416338], + [4.8483070476034955, 52.550072235394005], + [4.8445875209229206, 52.54730921482186], + [4.84227802405846, 52.54349348710368], + [4.83549585882946, 52.54066620734928], + [4.833910385168198, 52.538960348882064], + [4.828031738846205, 52.54166855990592], + [4.824385242721314, 52.5425999438353], + [4.820986505763584, 52.538246358555035], + [4.819027469323631, 52.53872596914024], + [4.816992994576942, 52.53564820833568], + [4.824407186219339, 52.53380445913314], + [4.820186920503515, 52.53123179774098], + [4.811626572320728, 52.530190500630326], + [4.804705940440539, 52.52536017851136], + [4.798284275712428, 52.52436047913179], + [4.792439650543623, 52.519725202105455], + [4.789860919713963, 52.519235886408474], + [4.784971552680312, 52.519419636327164], + [4.784971284355945, 52.51941964934547], + [4.784173755357351, 52.51947122320072], + [4.7824764577043855, 52.51958096011077], + [4.777845625655472, 52.53177033861527], + [4.7777334416152915, 52.533744875698346], + [4.778063466968282, 52.54417779946074], + [4.781622845330618, 52.55710223774034], + [4.771967106311651, 52.55989836525783], + [4.756858647971307, 52.56207143262114], + [4.752541231639932, 52.56278144678319], + [4.745083762283701, 52.566851528580976], + [4.74470158065072, 52.567941749001065], + [4.747280972644329, 52.571354799328816], + [4.748901579761566, 52.573984735497014], + [4.751311821770333, 52.58227699357544], + [4.7564778621726065, 52.59156833936667], + [4.752480426925204, 52.59257722918219], + [4.752138624367172, 52.59189088850737], + [4.737461908905533, 52.59385829369612], + [4.7369661986613165, 52.59576203862743], + [4.737909276398511, 52.59729055577935], + [4.735409968474029, 52.603824385562845], + [4.73618661997393, 52.6054446058349], + [4.733898915000664, 52.60729539022357], + [4.733347834503464, 52.607547187889026], + [4.73787956894167, 52.61216134802879], + [4.737879832141427, 52.61216162178314], + [4.739451075099122, 52.61386817333628], + [4.73318813099141, 52.61765487541035], + [4.731264211458214, 52.61868482645011], + [4.731264151994945, 52.61868485308395], + [4.721529880045351, 52.622509010552754], + [4.716308024975612, 52.624985105618485], + [4.714586523251391, 52.624781898258455], + [4.714896977947273, 52.62534679887245], + [4.715286742547566, 52.62581971577673], + [4.7097963827654175, 52.62872382771939], + [4.711332533904707, 52.62991399085349], + [4.708306365369512, 52.630880581834205], + [4.70981609543116, 52.63250460164176], + [4.708867471660454, 52.635508919721524], + [4.710034738642224, 52.642467452173086], + [4.714200940600577, 52.642821621788265], + [4.712814554412432, 52.646210621649146], + [4.7176091160565985, 52.64664976445594], + [4.716934831129725, 52.64959579782075], + [4.720394316502136, 52.650080678587955], + [4.721936639222758, 52.649179822382024], + [4.722676469771143, 52.649364899543784], + [4.721793070839078, 52.650725018687915], + [4.725250821411877, 52.651944348873], + [4.726823575581854, 52.655489965584366], + [4.729247049405909, 52.65612134893666], + [4.725707161930261, 52.6573094144842], + [4.727554983079085, 52.657390074233334], + [4.7276251910657185, 52.65849940035483], + [4.73064315037906, 52.65875264224953], + [4.7315291837492, 52.6598115628168], + [4.732853377578149, 52.65989001601319], + [4.731154099353844, 52.661589076142064], + [4.733701320339861, 52.661802479839814], + [4.7352083041191255, 52.66138731609684], + [4.734099573978272, 52.662930614951634], + [4.739254492911606, 52.66294075138776], + [4.742605460809832, 52.66118160732608], + [4.7451639599500695, 52.663364044623236], + [4.745932627201661, 52.663079430620336], + [4.74901345070596, 52.665968863789004], + [4.752410997246394, 52.6714455485544], + [4.747707277176344, 52.67685031450144], + [4.743843729987861, 52.67869806668835], + [4.741741607522679, 52.680806867457264], + [4.743576423943633, 52.68130855138266], + [4.7447742261415, 52.681679011840465], + [4.746907816739731, 52.682302144840236], + [4.749983902116972, 52.68237290464204], + [4.772506631873773, 52.67770524622449], + [4.779025773077488, 52.676483959398105], + [4.7790129481107515, 52.67404466747068], + [4.7785775527141, 52.67230459050632], + [4.775970167029796, 52.667848846342274], + [4.774490303582487, 52.66534282211852], + [4.778042041170488, 52.66431776645006] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.b6835de0-076c-412d-a279-f64e4071f8f4", + "properties": { + "statcode": "GM0362", + "jrstatcode": "2024GM0362", + "statnaam": "Amstelveen", + "rubriek": "gemeente", + "id": 106 + }, + "bbox": [ + 114548.50800000131, 472796.84800000116, 122403.53700000048, + 482651.4279999994 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.855942518233712, 52.3302552249482], + [4.856523462126959, 52.32941397382203], + [4.856466458079651, 52.32176486433169], + [4.856754885812502, 52.32141328700743], + [4.857600177270324, 52.321421720714405], + [4.857641495178981, 52.32173637427031], + [4.861485554878119, 52.32180265576079], + [4.869142121455742, 52.32193284876392], + [4.869354899067059, 52.32193667348404], + [4.878117553041232, 52.322092233936864], + [4.88217695630982, 52.322164032403904], + [4.8930083041920645, 52.322369519288955], + [4.896291648544251, 52.32241985871991], + [4.898280592483931, 52.32164397245399], + [4.902532361172976, 52.32132435247182], + [4.907840547490866, 52.31950484745901], + [4.909135282198676, 52.31825319718976], + [4.905412078137567, 52.316005289808245], + [4.906066623593456, 52.31391410096512], + [4.905255206091492, 52.31068428236042], + [4.9078119245529574, 52.30700292708567], + [4.904091717060668, 52.303712784138945], + [4.899605868899817, 52.30098105023209], + [4.898566175794124, 52.299342021514335], + [4.9011756365024866, 52.2969857105498], + [4.901018092328772, 52.29607550269034], + [4.892971639976253, 52.29522393179498], + [4.891779566387472, 52.29470278081289], + [4.891469340447811, 52.29446615375153], + [4.8909133097828645, 52.29149400918586], + [4.88707457113441, 52.28973844317854], + [4.8874810472671, 52.2889673019423], + [4.889770868631505, 52.28791828844009], + [4.888671549192788, 52.28689847078897], + [4.885326052238155, 52.2864965162851], + [4.8845420895425775, 52.284179523000915], + [4.878783476961418, 52.2789025385244], + [4.881629632576073, 52.27446285594118], + [4.881578234593786, 52.272080503766404], + [4.879470151590741, 52.26707560853426], + [4.882344831229453, 52.26403950340739], + [4.879080321073662, 52.26171254846571], + [4.8732735061390855, 52.260599850617666], + [4.87364557506666, 52.25805286280759], + [4.87066978171798, 52.25484960393803], + [4.870121266278465, 52.253282155192345], + [4.868779158330591, 52.25169834489171], + [4.86611332111365, 52.25098827545572], + [4.860620840930349, 52.24821680907315], + [4.8575217163641105, 52.24772305570537], + [4.856534921351903, 52.246275755985714], + [4.85529095483691, 52.24555596316659], + [4.854937885688049, 52.242145619318464], + [4.852053258587674, 52.24201349017286], + [4.843772087803496, 52.245665439611656], + [4.834763453272067, 52.24982397008812], + [4.82483561419774, 52.25274858001376], + [4.80752422539536, 52.25757350165204], + [4.795318876155592, 52.26098401024998], + [4.794697298874822, 52.26068175822467], + [4.795571411873697, 52.261554505053645], + [4.800625729107075, 52.26605379575432], + [4.806862074605074, 52.273095568685356], + [4.810220419733194, 52.27680770971979], + [4.814953513372351, 52.28142817009696], + [4.819104294067971, 52.28547288355735], + [4.823826985646904, 52.29001535029533], + [4.8238421642600375, 52.29053987454393], + [4.822402210571686, 52.29202363911534], + [4.8098836926171495, 52.305776099826815], + [4.817075406207786, 52.31182059935315], + [4.8171526512545375, 52.31196688424335], + [4.816124106477718, 52.313491204470125], + [4.81906174708687, 52.32331833284298], + [4.818752570685462, 52.325560258050245], + [4.825178804565392, 52.32573101706402], + [4.839405274498018, 52.32735935879218], + [4.839476484221424, 52.3291456944673], + [4.843960963173235, 52.33021848284866], + [4.845111999632595, 52.32973467198761], + [4.847623555578303, 52.33007126826445], + [4.847987510837671, 52.33056687065133], + [4.855942518233712, 52.3302552249482] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.2fdb80c1-1cfa-4e5e-8600-58af9f93a701", + "properties": { + "statcode": "GM0363", + "jrstatcode": "2024GM0363", + "statnaam": "Amsterdam", + "rubriek": "gemeente", + "id": 107 + }, + "bbox": [ + 110188.3841000013, 476708.62000000104, 135931.59699999914, 493893.636 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.989603674095138, 52.327547725284134], + [4.991671739182985, 52.32443769078516], + [4.99689574289078, 52.3176423596663], + [4.997425579534737, 52.31673570973019], + [4.997091076844808, 52.31445564230158], + [4.997297863448944, 52.31419558914042], + [4.997456154374946, 52.31424611859923], + [4.997860332560914, 52.313978850281444], + [4.998079191575188, 52.314034851337944], + [5.016133679578445, 52.32451212164975], + [5.016653253607835, 52.32298689590738], + [5.017932845893998, 52.32319233820787], + [5.018424004815159, 52.32433890697253], + [5.017273290575492, 52.33018671111445], + [5.0215873635760975, 52.330862333285296], + [5.0289528477575685, 52.330769655021044], + [5.0397947308257125, 52.32902691492432], + [5.0439522905898775, 52.3279601889701], + [5.044801360776557, 52.3274732317506], + [5.044395028764473, 52.32714885717126], + [5.045594794516783, 52.32676778726176], + [5.049066403512274, 52.3269916025247], + [5.058211049068097, 52.324816881263025], + [5.0615135660278785, 52.32367471757081], + [5.061108700203338, 52.32210550690249], + [5.061519118618724, 52.32180069532524], + [5.060125868949205, 52.32107149867424], + [5.0567417910500785, 52.319599434482456], + [5.0590928628417595, 52.31705231310332], + [5.0580348550563805, 52.316683259425474], + [5.058340030709305, 52.316317291901726], + [5.062536173000015, 52.31764202290392], + [5.0652594559807085, 52.319181519922516], + [5.06572087746508, 52.32048161667148], + [5.064686905836961, 52.322005933848146], + [5.0695084287361185, 52.32179335719238], + [5.075393751289575, 52.31914520572032], + [5.091653149908785, 52.314643949110945], + [5.093076658405978, 52.314150286614286], + [5.092644459967638, 52.313773147326835], + [5.0921068991480185, 52.31302333748346], + [5.094618645234988, 52.31242635530367], + [5.100566918376804, 52.310296400368756], + [5.096482747496969, 52.30729259588533], + [5.095771002367263, 52.30376174861909], + [5.096793692691504, 52.300436661221404], + [5.098943531111088, 52.298696625613644], + [5.101971819684586, 52.29780419410383], + [5.106266326915499, 52.29833605660148], + [5.10767436076005, 52.29729161009609], + [5.106065060379813, 52.29466848868185], + [5.1029186803479725, 52.29446770528974], + [5.099353981602083, 52.29280350460432], + [5.09847354166339, 52.29163615027364], + [5.098714997441803, 52.290573703524686], + [5.104646015309711, 52.285384664830715], + [5.104298008702268, 52.28325521528793], + [5.102816374449492, 52.28238355117031], + [5.1020877305694095, 52.281703723414026], + [5.1020658065774205, 52.27989083673558], + [5.087704173164079, 52.281684925197624], + [5.084615517147124, 52.2794075046108], + [5.077081952593318, 52.277976609132836], + [5.06487595987539, 52.2782653409327], + [5.0638125343283, 52.27857706766097], + [5.06532548811819, 52.279659343819134], + [5.063885585612035, 52.27997565960923], + [5.064412425143185, 52.280737600508765], + [5.065858514844543, 52.28053732744548], + [5.065863353212924, 52.281139881771665], + [5.065471486614254, 52.28519815713902], + [5.064791874263108, 52.28508054372536], + [5.0634258221025705, 52.28705511150957], + [5.059540299286015, 52.28932013313658], + [5.052738048042331, 52.28650823849858], + [5.050404330664364, 52.28787198241012], + [5.047491815113677, 52.285028644562935], + [5.04277865748143, 52.28248813933357], + [5.0407422484464925, 52.28387502873157], + [5.039521331519451, 52.28326330448453], + [5.033212457394684, 52.28625810435435], + [5.030528417835409, 52.28848718128803], + [5.024381632669321, 52.281357446748565], + [5.022826485026242, 52.28215043118948], + [5.021867208979982, 52.28265326889607], + [5.021543196394508, 52.30245685000956], + [5.017702341017639, 52.302715485021594], + [5.014264586891831, 52.30367692048324], + [5.01176932565609, 52.30339284021617], + [5.007951944591508, 52.30154855902575], + [5.005264794834356, 52.298392833050066], + [5.003765109680504, 52.298340489386995], + [5.003245724754582, 52.29639630164781], + [5.003239953520095, 52.29601793126692], + [5.001851253794966, 52.295878770590974], + [5.001757890366825, 52.292772555732945], + [4.997475367290456, 52.289118354964096], + [4.98350589065718, 52.29036813665715], + [4.9718510162791265, 52.28436832408878], + [4.971839480589079, 52.28436069784707], + [4.969722978688367, 52.28311784102749], + [4.967576494829886, 52.279561637085614], + [4.965801830678279, 52.280648879456], + [4.96263236520146, 52.280291329814304], + [4.961053634284887, 52.27817420107842], + [4.956571503126153, 52.278665651061054], + [4.95524052492509, 52.27830490173321], + [4.953874046448225, 52.280030277162695], + [4.943198325300865, 52.29235698220546], + [4.939243435508426, 52.29693958036578], + [4.930256242442575, 52.3064297737054], + [4.929415628133778, 52.30782890843586], + [4.929908731608506, 52.30810369446724], + [4.929328206228049, 52.308532108301655], + [4.929425684113949, 52.308627355427326], + [4.930326194155234, 52.30918819208275], + [4.930065153228696, 52.3093399959421], + [4.9341376475440555, 52.31190349758811], + [4.936112289002342, 52.312580723372385], + [4.935229039114858, 52.313888770482706], + [4.938723883340369, 52.31509106555702], + [4.938041578355857, 52.31650549112779], + [4.9398303600508475, 52.31711958241963], + [4.940331467538098, 52.31830229984395], + [4.939584777545594, 52.31911977369393], + [4.940206760710669, 52.31933306484973], + [4.940222254030746, 52.3193383767412], + [4.941042846190137, 52.31961978872973], + [4.939926935087574, 52.32193600306356], + [4.937619078014081, 52.323299383298426], + [4.937961028873451, 52.324122353165244], + [4.93852894498542, 52.3241972380457], + [4.940496551101742, 52.32567741856472], + [4.941874970407941, 52.3261528894667], + [4.94471619037003, 52.327129715212294], + [4.947658676020453, 52.328138278595645], + [4.948120587681114, 52.327629496956966], + [4.952675653482256, 52.322644039966605], + [4.956711563685658, 52.32403078762399], + [4.956751446073741, 52.324044635463096], + [4.967541189119637, 52.32775758941792], + [4.970274085397808, 52.326179801777194], + [4.970473594049061, 52.326287994480595], + [4.970664515023423, 52.32638303719467], + [4.975002793091424, 52.329976970244324], + [4.975307118224783, 52.330561675800986], + [4.977136256868195, 52.330642779478744], + [4.9777370242062124, 52.331026579806505], + [4.980111082524398, 52.33090644468118], + [4.983946689427157, 52.33066921243717], + [4.986181936936582, 52.32971983752412], + [4.989603674095138, 52.327547725284134] + ] + ], + [ + [ + [5.007527898346776, 52.34441957273377], + [5.005133541913501, 52.34417085044703], + [4.999399478723678, 52.346255365226085], + [4.998338210738123, 52.34846177615934], + [5.004965343724879, 52.34614353798913], + [5.007527898346776, 52.34441957273377] + ] + ], + [ + [ + [5.012750964098681, 52.367293698174755], + [5.001996502575, 52.36627981999875], + [5.001553216365052, 52.366822767859944], + [5.014526311470921, 52.36797137619515], + [5.012750964098681, 52.367293698174755] + ] + ], + [ + [ + [5.0143719758945, 52.37178570506402], + [5.014067327298834, 52.371658461866915], + [5.013219622494178, 52.37166912807002], + [5.012540044926884, 52.37239037499574], + [5.012976629342612, 52.37300016881998], + [5.013235843326756, 52.37308868913953], + [5.014563964467419, 52.372956534169866], + [5.014700552135943, 52.37271917416999], + [5.0143719758945, 52.37178570506402] + ] + ], + [ + [ + [4.753205162022586, 52.42924090819754], + [4.767183636356741, 52.427468139643175], + [4.767537879892973, 52.428498103423316], + [4.783480370257104, 52.42641336757436], + [4.809939556831807, 52.423024178898274], + [4.8108193262673655, 52.42291010832688], + [4.826810945995532, 52.420895446380165], + [4.8277236719098235, 52.42078407659367], + [4.8426379451902495, 52.41879852377425], + [4.856078010842785, 52.416662167305766], + [4.859857713138124, 52.42047369610786], + [4.8579069743532655, 52.42386556951216], + [4.857947578561188, 52.4247171054543], + [4.862453729159521, 52.428775951155345], + [4.862778953518199, 52.429336649175035], + [4.862677453449354, 52.429941314966214], + [4.864187140795089, 52.430264189545035], + [4.864206451369951, 52.43037457981488], + [4.865013751309488, 52.43054926392509], + [4.865257034284414, 52.43054335224022], + [4.865970480499965, 52.4306786640908], + [4.869544122584994, 52.429846453628144], + [4.871461580593695, 52.430101280887776], + [4.873206518454473, 52.429549195653635], + [4.873621522437111, 52.428464794719126], + [4.8765735475269105, 52.426227923438745], + [4.8789934575939125, 52.42569632751583], + [4.881647707187828, 52.425664140004926], + [4.886862192382404, 52.42556236026843], + [4.887684461887339, 52.42558549669812], + [4.888142627920335, 52.425618067617066], + [4.898739713829391, 52.42446133971987], + [4.898741017515518, 52.4244897639142], + [4.905691512026024, 52.422129882719865], + [4.907453129612459, 52.42125664371424], + [4.9080741569813835, 52.421102096057055], + [4.907962199779475, 52.42087368157187], + [4.90966031508941, 52.42024925806675], + [4.914300657840509, 52.418496927393704], + [4.920450314456986, 52.41660703225738], + [4.922745728164024, 52.415529684260804], + [4.930715883222069, 52.41160758143103], + [4.9351423009009645, 52.41203977132432], + [4.942646795288509, 52.413859979128205], + [4.944779878900251, 52.41501817929481], + [4.947788574187965, 52.42156224111937], + [4.9488071642021225, 52.421464346099214], + [4.949682840859511, 52.42198354440548], + [4.951481365915671, 52.421929744670614], + [4.951722006837267, 52.42250701737678], + [4.951340219009839, 52.42322851566267], + [4.952329179296735, 52.42352357120089], + [4.953559214081649, 52.422256632242906], + [4.95577711075209, 52.422431932306374], + [4.956005271251374, 52.42196033854783], + [4.97331980850478, 52.42279733416754], + [4.976238280448379, 52.42402599753763], + [4.982636419509616, 52.42676229238878], + [4.987101491899271, 52.42284169787549], + [4.989100177556863, 52.42330650687214], + [4.990445197689168, 52.42552077996823], + [5.000292804985572, 52.425406731593505], + [5.018205109216432, 52.419059549432724], + [5.021145753302403, 52.421054819968575], + [5.028357307577804, 52.41941642512188], + [5.029727793544366, 52.4177068201727], + [5.0300447917786615, 52.415643495791514], + [5.0329342056150805, 52.41646284753902], + [5.035238072280898, 52.418250990847476], + [5.040109138979139, 52.417307253930375], + [5.049177133423939, 52.41512927254887], + [5.065412546012646, 52.41723944783791], + [5.068263524147653, 52.416558099575596], + [5.067269666151094, 52.41342211520393], + [5.05763407425333, 52.41481644658291], + [5.052210515118377, 52.413180990258425], + [5.047697787415986, 52.40853919661589], + [5.046254684436541, 52.406733339636084], + [5.042912671778921, 52.406050423293266], + [5.037478352081544, 52.40425199581893], + [5.031311742205155, 52.40068254565537], + [5.0293081713761625, 52.39849806576868], + [5.024878191881563, 52.38794774146444], + [5.018937412467449, 52.38650253720661], + [5.017485133779696, 52.38452937078401], + [5.016163051773589, 52.38424097507402], + [5.01419960545884, 52.38457254040873], + [5.012973019424946, 52.3842394167857], + [5.013070252641572, 52.38347958381938], + [5.010852214189084, 52.3830614058889], + [5.01123333797824, 52.38216039678621], + [5.0130000987070815, 52.38231837010392], + [5.013498091293845, 52.381834152123446], + [5.013567321880674, 52.378679325137604], + [5.011681383785601, 52.373632410954315], + [5.008483356787473, 52.37257158045916], + [5.001330663024285, 52.37522516922409], + [4.999925965913167, 52.37830988629399], + [4.998731118343066, 52.37871758269692], + [4.994102615557806, 52.377621840219035], + [4.993574834389679, 52.378301188908814], + [4.997896460273529, 52.379484283783306], + [4.998019383614468, 52.3794938929374], + [4.998103103703959, 52.379410796873195], + [4.998431396552696, 52.37950537254453], + [4.998284253296754, 52.379794902606314], + [4.99188248777913, 52.37799053356341], + [4.9913327748116325, 52.377750620812265], + [4.991713607015444, 52.37744973122664], + [4.991781954970911, 52.37725390920424], + [4.991759629747718, 52.37720067721487], + [4.99142174922359, 52.37721254462657], + [4.98966396508315, 52.37759727188553], + [4.9837650549773596, 52.37403284204198], + [4.981649383922235, 52.373462589655], + [4.980147435450839, 52.37370046887651], + [4.978500648128832, 52.37576560715492], + [4.974616530899998, 52.37895505125935], + [4.973966032728947, 52.3794421249463], + [4.974119028225559, 52.378733582313785], + [4.974358156681293, 52.37411428103686], + [4.974072019506471, 52.371936994841874], + [4.980317744863184, 52.369049643238235], + [4.978728484338469, 52.36873233433155], + [4.9736632931742735, 52.36857282084896], + [4.973287652579589, 52.36756142862243], + [4.976857429640738, 52.36526633312555], + [4.9809184295598055, 52.363297916084], + [4.983553971075379, 52.3643856261795], + [4.983516316320744, 52.364725080020136], + [4.98386364606496, 52.364751279126004], + [4.983926706096501, 52.364539450418334], + [4.984739942135141, 52.36487505268182], + [4.98422442371493, 52.36521793337645], + [4.984691515974735, 52.365672910742006], + [4.990776726730615, 52.36377110677298], + [4.990624827080258, 52.36365069263974], + [4.9902394535480035, 52.36378715976609], + [4.989081703066937, 52.36296466519415], + [4.989393764003009, 52.36279058296901], + [4.986610020035241, 52.36081672149235], + [4.985801870386863, 52.36123891912219], + [4.985398253935337, 52.36091698283379], + [4.986296500165015, 52.360429185497345], + [4.986172278746873, 52.36031868007413], + [4.986628269209108, 52.3600834289282], + [4.987084466354591, 52.3598620015761], + [4.987391589129436, 52.35996513649887], + [4.98769826548827, 52.359785850103634], + [4.99207765164407, 52.36165799261695], + [4.997146489892442, 52.359364454572486], + [5.005736272381923, 52.35479543972253], + [5.0061337624311335, 52.355057044476695], + [5.006587498258345, 52.35481900129782], + [5.0062435782099675, 52.35455375338771], + [5.009517160901514, 52.353255262982934], + [5.013553826124788, 52.35454516898789], + [5.013781440561885, 52.35512540188341], + [5.014034211842203, 52.35517851439382], + [5.014404570149875, 52.35481699517537], + [5.015249381046852, 52.3550869163459], + [5.019822226483343, 52.3563256462692], + [5.020420004842472, 52.356471673708015], + [5.020509453744875, 52.35609718820872], + [5.021126512480832, 52.35546774614878], + [5.021252636991802, 52.35410173443615], + [5.020596911293905, 52.35386854979924], + [5.018259301220165, 52.353781950840784], + [5.017180252155515, 52.35400910624989], + [5.016502365146445, 52.35367515680851], + [5.019103375085628, 52.35038198617487], + [5.018807895245372, 52.349885781773494], + [5.015148173653813, 52.348611826477], + [5.01551252762874, 52.3479503087591], + [5.015148744688691, 52.34782851067796], + [5.0152946757105745, 52.34763363708736], + [5.015119073239992, 52.347433389535574], + [5.0147779850222625, 52.347840923376], + [5.014330156773573, 52.34780803777808], + [5.014160431505788, 52.34756427812948], + [5.014571151449182, 52.34706951052379], + [5.009088547629691, 52.34503690216511], + [5.003627508394251, 52.34780820222635], + [4.9987947353899465, 52.35079742422154], + [4.999192885394976, 52.35107736546444], + [4.9990847631495425, 52.35113558110749], + [4.999013989305575, 52.35117253741435], + [4.997598185855068, 52.35030508828574], + [4.996529664923802, 52.350696940718215], + [4.991877423693478, 52.3528819490451], + [4.989315829026079, 52.35471704172828], + [4.990199891934337, 52.35493023274291], + [4.9867214779266735, 52.35663955209671], + [4.9865244530811434, 52.35800350114752], + [4.9873700044619, 52.35816411528844], + [4.989028693756441, 52.357300280080565], + [4.9894345811718805, 52.357376786955065], + [4.989901587004044, 52.35712947893327], + [4.990029317539798, 52.35721451309614], + [4.988134315482379, 52.35824008126038], + [4.9881966106691555, 52.35864048492348], + [4.986098684461526, 52.35979317176792], + [4.984715578893459, 52.36032793646999], + [4.980461413286146, 52.35856594426492], + [4.979431180686745, 52.359478815371524], + [4.979733983716641, 52.35964026745012], + [4.978420368717314, 52.36082276419126], + [4.977168648401469, 52.36031417798908], + [4.9762019888000335, 52.3610870646598], + [4.975394288374525, 52.3607704852856], + [4.974215607700555, 52.36183091335911], + [4.9776883918492825, 52.36426133556115], + [4.976387044571605, 52.3649956612318], + [4.97435704105657, 52.36581132240892], + [4.9716510401810785, 52.364898126973344], + [4.970359632838271, 52.36327670248461], + [4.968912472798489, 52.36078539230891], + [4.974105866893161, 52.36068576900814], + [4.974155880905519, 52.358049094012074], + [4.975171065572886, 52.357213167736724], + [4.984382818915731, 52.35811109704755], + [4.98574403396608, 52.35762648511273], + [4.985129248536786, 52.35537136135113], + [4.99142904357156, 52.35242362799401], + [4.994397070299205, 52.350030251209525], + [4.995791996322911, 52.34981077443014], + [4.996999553210646, 52.3486948106225], + [4.99839566075266, 52.34634609702712], + [5.002536688459513, 52.34411529096038], + [5.005813919032277, 52.343555356802725], + [5.010640454402249, 52.34410112236254], + [5.012304376768135, 52.343846297513075], + [5.012258234637818, 52.343801135569564], + [5.009068470866603, 52.34189140787717], + [5.004162190662829, 52.34257750860902], + [4.999320652999944, 52.341536324795456], + [4.998343157785453, 52.34201131916379], + [4.98991254973027, 52.346460727418744], + [4.9838037698974125, 52.34970992946642], + [4.9803623216459005, 52.35154413895068], + [4.976709176058774, 52.35349188830672], + [4.972480661202736, 52.355456350638036], + [4.969594780519959, 52.35610167822197], + [4.969261416750592, 52.35535024650507], + [4.966239865522401, 52.35416376755124], + [4.96585712691672, 52.354651157113516], + [4.964538513876931, 52.352773192475105], + [4.960428536081116, 52.347935885396495], + [4.960377262695584, 52.34788573420644], + [4.956360693230726, 52.34368001333168], + [4.956267903304635, 52.34358685927622], + [4.9527309671174455, 52.34015863477235], + [4.952499200719796, 52.340006745738954], + [4.949860180447958, 52.33852824618747], + [4.943005822264225, 52.33657438030874], + [4.942597010368344, 52.336521112566935], + [4.94172113842704, 52.33640698902389], + [4.94170555174188, 52.33553287192093], + [4.939674619658191, 52.335607536745925], + [4.936511666578808, 52.334591987722405], + [4.9356237143520385, 52.33551395462684], + [4.93422065708885, 52.33549600945223], + [4.928493321245682, 52.33655481496218], + [4.926769954724728, 52.335964583378065], + [4.926942028139066, 52.3357765907753], + [4.925773358351701, 52.33537272262062], + [4.925362692447881, 52.335381382847174], + [4.924946086263681, 52.33538279588271], + [4.9237652838149195, 52.33544267366071], + [4.922550463451023, 52.33308419514434], + [4.9174832569467375, 52.331536524457164], + [4.912931719027509, 52.33051041404451], + [4.913265557490445, 52.3284009548197], + [4.913592503871528, 52.32633311475548], + [4.913881305865073, 52.32455153592583], + [4.910334168535709, 52.32356632411569], + [4.911343357278533, 52.32288412491341], + [4.910807066523139, 52.321883027982366], + [4.914281497678227, 52.32040797820726], + [4.912375605882284, 52.31824801066658], + [4.909135282198676, 52.31825319718976], + [4.907840547490866, 52.31950484745901], + [4.902532361172976, 52.32132435247182], + [4.898280592483931, 52.32164397245399], + [4.896291648544251, 52.32241985871991], + [4.8930083041920645, 52.322369519288955], + [4.88217695630982, 52.322164032403904], + [4.878117553041232, 52.322092233936864], + [4.8781072906487895, 52.322092052263805], + [4.869354899108968, 52.321936669889084], + [4.869143670074237, 52.321932873520794], + [4.861485554878119, 52.32180265576079], + [4.857641495178981, 52.32173637427031], + [4.857600177270324, 52.321421720714405], + [4.856754885812502, 52.32141328700743], + [4.856466458079651, 52.32176486433169], + [4.856523462126959, 52.32941397382203], + [4.855942518233712, 52.3302552249482], + [4.847987510837671, 52.33056687065133], + [4.847623555578303, 52.33007126826445], + [4.845111999632595, 52.32973467198761], + [4.843960963173235, 52.33021848284866], + [4.839476484221424, 52.3291456944673], + [4.839405274498018, 52.32735935879218], + [4.825178804565392, 52.32573101706402], + [4.818752570685462, 52.325560258050245], + [4.8171215313865705, 52.32692511488059], + [4.815211800410989, 52.327934857971044], + [4.803048226539473, 52.333032734875715], + [4.798797054302111, 52.33480016551838], + [4.798217677169003, 52.3350410781365], + [4.797492493359899, 52.33553951339467], + [4.791102145436154, 52.34150016586122], + [4.780804640499835, 52.34584615273079], + [4.7732990198529395, 52.34892054290633], + [4.767392727760315, 52.35126855268186], + [4.755683817600715, 52.35615003832458], + [4.754837140326306, 52.357907330440426], + [4.75588085547768, 52.36180751570971], + [4.757837069637199, 52.368718131885096], + [4.7584745050165305, 52.37109316221637], + [4.75838039072545, 52.37401530606333], + [4.756717878049016, 52.37783776474103], + [4.759124707572624, 52.37932924405851], + [4.759078005400284, 52.38094068597511], + [4.758952632324848, 52.384117560936154], + [4.758308253748732, 52.387895150091204], + [4.758298475227497, 52.38794865988789], + [4.757855915932351, 52.39665923401168], + [4.75748199714897, 52.396882777237415], + [4.728758929201308, 52.40071134695966], + [4.7385667719306666, 52.429222712415886], + [4.739208095839959, 52.43106382971274], + [4.750085392130022, 52.42963655346252], + [4.753205162022586, 52.42924090819754] + ], + [ + [4.961164968322538, 52.381802736506756], + [4.96150353967713, 52.38165306655137], + [4.961452856424523, 52.38160534865223], + [4.961319749774096, 52.381662977949134], + [4.961183035319441, 52.381563001881894], + [4.961636569615719, 52.38134627291346], + [4.961623211431587, 52.38131843148623], + [4.96121998717869, 52.381485171387034], + [4.961152704227035, 52.38141382262258], + [4.961079725547145, 52.38133317357025], + [4.9614048122771, 52.38116728298339], + [4.961372635915395, 52.381151340030854], + [4.9608825586415, 52.381354045133186], + [4.960742159486696, 52.38123407572249], + [4.9608484674800675, 52.3811846821538], + [4.9608423516423255, 52.381157345751056], + [4.960297306655178, 52.38138961045888], + [4.960199398480859, 52.38131028205448], + [4.9603754416491395, 52.381233935587694], + [4.959966031905731, 52.38096812516674], + [4.959593176065366, 52.38093244213829], + [4.9589922061358696, 52.38106838491307], + [4.958864787843082, 52.38095888137766], + [4.959139015671801, 52.38084200966453], + [4.958758227631684, 52.38060899197376], + [4.961867534647614, 52.37978343196521], + [4.961742898746355, 52.379609351694675], + [4.95883541456391, 52.38037763317867], + [4.958705662838692, 52.38016284856326], + [4.961633026079103, 52.37938759447741], + [4.961389197679064, 52.379057334684354], + [4.9611491826028775, 52.37912700658474], + [4.961254030570829, 52.3792847217098], + [4.9599652602512805, 52.37964364808306], + [4.959860561281598, 52.379469637729706], + [4.964784345476655, 52.376839229326386], + [4.972246996292301, 52.372917579624314], + [4.973632473521439, 52.372176741580795], + [4.97394061556053, 52.37433569255496], + [4.973456201729175, 52.37837144140403], + [4.9728394201166175, 52.37982550231376], + [4.969387606300083, 52.379267058150134], + [4.968604326319492, 52.379320942188286], + [4.968393232843872, 52.37947822220126], + [4.9682903550092945, 52.37956368594695], + [4.963295604270722, 52.38358579109967], + [4.961164968322538, 52.381802736506756] + ], + [ + [4.96916030035582, 52.368617933949665], + [4.962388842538166, 52.36856138931746], + [4.962301556716298, 52.368566876768746], + [4.962269879195864, 52.36856844917696], + [4.958008863601843, 52.36842626165364], + [4.958176752473335, 52.36686791083395], + [4.9596875349560685, 52.36714247029365], + [4.959556426326011, 52.36646135961184], + [4.95822306615825, 52.36616900849563], + [4.958243967466656, 52.366075495461715], + [4.958260098236768, 52.36601161820856], + [4.958311988107953, 52.36580686629567], + [4.9610782460703255, 52.36599281803832], + [4.962301659405665, 52.36470058140996], + [4.962271156642618, 52.36420173987121], + [4.961325802610488, 52.36368200055841], + [4.968347129291788, 52.360954751912246], + [4.969740858773223, 52.36352669425434], + [4.970214004205427, 52.36488415883468], + [4.968429053648978, 52.366733993758665], + [4.969887632017083, 52.36821437536622], + [4.96916030035582, 52.368617933949665] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.dc93fcf6-3df4-4332-873d-3d13615124b3", + "properties": { + "statcode": "GM0373", + "jrstatcode": "2024GM0373", + "statnaam": "Bergen (NH.)", + "rubriek": "gemeente", + "id": 108 + }, + "bbox": [ + 102310.54039999843, 509855.23690000176, 112062.20899999887, + 530182.8612999991 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.659191372889013, 52.74730915881571], + [4.660463290657767, 52.74670467964978], + [4.662434569529687, 52.74673576085888], + [4.664863201222301, 52.745278939874325], + [4.668397134113389, 52.74249034583211], + [4.669255847116971, 52.74166005945722], + [4.671220492283968, 52.74058149850552], + [4.67733121608702, 52.739561634671844], + [4.6788948974543665, 52.739168592049715], + [4.679438398551137, 52.73831756634492], + [4.679965099660877, 52.73801958318561], + [4.680594093674678, 52.73791878330444], + [4.681021207953258, 52.73767519579084], + [4.682706806302414, 52.73526291025985], + [4.683528608467846, 52.733536509399], + [4.686897176297971, 52.73264591828835], + [4.687852477495703, 52.73266591183708], + [4.689822360316399, 52.7329919683367], + [4.690352065283037, 52.732622364735015], + [4.693374507061118, 52.73036454650334], + [4.699782867951035, 52.72449163929541], + [4.702311304112599, 52.721674387950664], + [4.704335421335805, 52.720421855342394], + [4.706985289910381, 52.71870353749219], + [4.709145487210918, 52.71586339561417], + [4.710468524496577, 52.71452967368751], + [4.714457457980986, 52.7112781187602], + [4.715218072248526, 52.71068533161643], + [4.715807131252194, 52.71004728350089], + [4.716208123154339, 52.70770688330966], + [4.715867637400836, 52.70764892865586], + [4.715882208503704, 52.7075862445897], + [4.716226568898005, 52.707597820400196], + [4.716794097274675, 52.705384132615656], + [4.717863143135296, 52.70263798823788], + [4.719210023299656, 52.69909593721298], + [4.720598771160178, 52.69711669611282], + [4.725222298507247, 52.693849600689425], + [4.7288538206011115, 52.69140378592109], + [4.738380296313135, 52.68436257416958], + [4.741741607522679, 52.680806867457264], + [4.743843729987861, 52.67869806668835], + [4.747707277176344, 52.67685031450144], + [4.752410997246394, 52.6714455485544], + [4.74901345070596, 52.665968863789004], + [4.745932627201661, 52.663079430620336], + [4.7451639599500695, 52.663364044623236], + [4.742605460809832, 52.66118160732608], + [4.739254492911606, 52.66294075138776], + [4.734099573978272, 52.662930614951634], + [4.7352083041191255, 52.66138731609684], + [4.733701320339861, 52.661802479839814], + [4.731154099353844, 52.661589076142064], + [4.732853377578149, 52.65989001601319], + [4.7315291837492, 52.6598115628168], + [4.73064315037906, 52.65875264224953], + [4.7276251910657185, 52.65849940035483], + [4.727554983079085, 52.657390074233334], + [4.725707161930261, 52.6573094144842], + [4.729247049405909, 52.65612134893666], + [4.726823575581854, 52.655489965584366], + [4.725250821411877, 52.651944348873], + [4.721793070839078, 52.650725018687915], + [4.722676469771143, 52.649364899543784], + [4.721936639222758, 52.649179822382024], + [4.720394316502136, 52.650080678587955], + [4.716934831129725, 52.64959579782075], + [4.7176091160565985, 52.64664976445594], + [4.712814554412432, 52.646210621649146], + [4.714200940600577, 52.642821621788265], + [4.710034738642224, 52.642467452173086], + [4.708867471660454, 52.635508919721524], + [4.70981609543116, 52.63250460164176], + [4.708306365369512, 52.630880581834205], + [4.711332533904707, 52.62991399085349], + [4.7097963827654175, 52.62872382771939], + [4.715286742547566, 52.62581971577673], + [4.714896977947273, 52.62534679887245], + [4.714586523251391, 52.624781898258455], + [4.707955069999662, 52.62034832009941], + [4.705700110499243, 52.621354263724115], + [4.6899931818765985, 52.62375103585788], + [4.6855109986033865, 52.61931107400589], + [4.685806114433453, 52.61777012658167], + [4.683692868316469, 52.61267229090891], + [4.680767320057217, 52.61027944484226], + [4.680373915929639, 52.60846045678775], + [4.674442623877866, 52.60377146039893], + [4.673880207753946, 52.600958920937494], + [4.6731750673893755, 52.59621087310142], + [4.673862810229629, 52.59292861862029], + [4.6724008688389365, 52.59229681409288], + [4.672581364749544, 52.59090410094186], + [4.659840611149946, 52.58613969835614], + [4.655713659935413, 52.58551212652414], + [4.654980505653309, 52.58286998797554], + [4.60996515252002, 52.5737443377394], + [4.615281654468226, 52.59622938970522], + [4.616604259750411, 52.6058512376297], + [4.616889297160363, 52.60884557026207], + [4.618393010169627, 52.61659041097707], + [4.619367643919748, 52.62384352667301], + [4.620416267905545, 52.62729516916417], + [4.621673474247766, 52.63052184567209], + [4.622245226475048, 52.635787829852845], + [4.623755889060741, 52.63978691354004], + [4.625389454003224, 52.655697099729615], + [4.62676923140758, 52.66476916916057], + [4.627614562761352, 52.66662405355941], + [4.630238171678095, 52.67566720304158], + [4.632519736826628, 52.68179564655772], + [4.6343177798480015, 52.69398881074211], + [4.637580327846402, 52.70753615720929], + [4.6374202780463225, 52.711996618095924], + [4.636535071908843, 52.712857027500945], + [4.635703264050852, 52.72029167293092], + [4.636606794408256, 52.72866762142148], + [4.642903088139863, 52.75066435352322], + [4.645598594229725, 52.756662656196504], + [4.64576213606816, 52.7566381427492], + [4.651040009847053, 52.75584690802394], + [4.6589860195561, 52.749600567310374], + [4.659191372889013, 52.74730915881571] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.cf938213-8e81-4053-aa46-359ef4eda8bc", + "properties": { + "statcode": "GM0375", + "jrstatcode": "2024GM0375", + "statnaam": "Beverwijk", + "rubriek": "gemeente", + "id": 109 + }, + "bbox": [ + 100265.31069999933, 496655.8429999985, 108862.85000000149, + 501804.76000000164 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.66988703153975, 52.49839897930318], + [4.672855186935343, 52.49696636684502], + [4.6735013888860655, 52.49653336486989], + [4.675069576029852, 52.49558759632015], + [4.674407711410977, 52.49515508088391], + [4.676988916134329, 52.49442996391786], + [4.677993437393097, 52.49336461198206], + [4.678609666398479, 52.49371930671987], + [4.6799237218727825, 52.493168810283514], + [4.680510264474407, 52.4935391003814], + [4.682035113052379, 52.492822828097324], + [4.683721263751885, 52.49274625480539], + [4.683839189814991, 52.49272035701452], + [4.685972480862958, 52.49173711199009], + [4.687086620635363, 52.492391676090314], + [4.690382966286266, 52.490830377896984], + [4.690991773984864, 52.49131718162488], + [4.694741581316783, 52.49133913129386], + [4.694930191691641, 52.49068023043745], + [4.694601391338052, 52.489586662149456], + [4.694550728490503, 52.48829975837534], + [4.69550885927774, 52.487385465601626], + [4.697602049639437, 52.487512237140116], + [4.699666007590977, 52.489799229750254], + [4.703721368299841, 52.48853264640298], + [4.703093958051533, 52.487559390600794], + [4.707968883346465, 52.48633243855488], + [4.705906287865754, 52.48444311149592], + [4.706158622319797, 52.48283945976666], + [4.705472023069447, 52.481856231594755], + [4.7007289607614124, 52.48023676651394], + [4.698734896175994, 52.477136944424124], + [4.699278728298106, 52.47453268378657], + [4.697280153631382, 52.47200989449064], + [4.697818597107621, 52.47103382033127], + [4.693447058672975, 52.46734073577373], + [4.684266301900828, 52.463521031461966], + [4.685069352316609, 52.462556791188184], + [4.684537574868884, 52.46219075292052], + [4.682999697302862, 52.461132116876534], + [4.674848021085254, 52.45552040778107], + [4.661924746766206, 52.46175677252436], + [4.667605905016764, 52.468426217532404], + [4.6643680752075865, 52.4705707619206], + [4.6541581610399465, 52.476660952082824], + [4.6533332273870975, 52.477154735861056], + [4.649289987263393, 52.47653324515765], + [4.649014777090797, 52.47660803288703], + [4.6467362476135925, 52.47708157894151], + [4.647635735253464, 52.47842446162673], + [4.6406963026554555, 52.479390667261804], + [4.6378373786215175, 52.48013395932196], + [4.62095875442576, 52.48232812797355], + [4.618191217034973, 52.483288410182574], + [4.613553365332842, 52.48380308211268], + [4.604049614537206, 52.48146847536194], + [4.602720772689714, 52.48335060205143], + [4.5961188303954605, 52.48597369484888], + [4.5905068028800775, 52.487247484119756], + [4.58133717278414, 52.48932053167703], + [4.586563282836971, 52.49916130319721], + [4.591666019867273, 52.49784025830633], + [4.591695172847429, 52.498278981844074], + [4.595545836287634, 52.49819876786523], + [4.597984014169795, 52.49684533910519], + [4.599930666933664, 52.49726095384381], + [4.598635796575965, 52.49594453498479], + [4.604313825047737, 52.494388841917484], + [4.6062975288928865, 52.49478585418877], + [4.606295822514751, 52.49480883617851], + [4.607470819954044, 52.49457453330305], + [4.611509999006076, 52.496641848369634], + [4.613037425383413, 52.49633105775496], + [4.621401101212109, 52.497862111364064], + [4.630956008323401, 52.498657978603845], + [4.631366209968618, 52.498692130603246], + [4.633893642790645, 52.49890255714859], + [4.6349996872801125, 52.49952910393912], + [4.6350202701562635, 52.499061408726355], + [4.645105761844352, 52.49956911543847], + [4.6463123229459224, 52.49908339668705], + [4.649430700430233, 52.49912153348072], + [4.649452114335432, 52.49904860695893], + [4.650021199059, 52.498423754350775], + [4.651243044571317, 52.498845330716215], + [4.652561236547269, 52.498187463556334], + [4.655379330764089, 52.4979252393651], + [4.657398230912042, 52.49866395206359], + [4.657476176301463, 52.498675334460856], + [4.666054123142156, 52.50174402690576], + [4.6669141703785755, 52.50105323268354], + [4.666301896975954, 52.500744131124414], + [4.668329145675863, 52.49991665645221], + [4.66988703153975, 52.49839897930318] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.1ab6ca51-69ca-4d08-9aea-c82969e34e72", + "properties": { + "statcode": "GM0376", + "jrstatcode": "2024GM0376", + "statnaam": "Blaricum", + "rubriek": "gemeente", + "id": 110 + }, + "bbox": [ + 142481.90700000152, 474079.06599999964, 151006.3321999982, + 479664.8396999985 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.32633196617425, 52.29079086566331], + [5.327100387576876, 52.29032566473644], + [5.3156504560572335, 52.29270354444496], + [5.315468929287546, 52.29491945949796], + [5.324202529593698, 52.29487757210317], + [5.3286660750065, 52.292444351404676], + [5.32633196617425, 52.29079086566331] + ] + ], + [ + [ + [5.313903230914413, 52.30310086516028], + [5.317183610008848, 52.30058869845481], + [5.314437293814445, 52.30102239704013], + [5.3110731052906255, 52.299919661133906], + [5.308255657411718, 52.299805402803315], + [5.304318090601039, 52.29734277325732], + [5.303115413288402, 52.29521944471002], + [5.299720227403052, 52.29452309631874], + [5.297231901544973, 52.29316055181602], + [5.295532522503772, 52.28995590974029], + [5.295883193004606, 52.288584894425036], + [5.296553497442505, 52.28668822532896], + [5.30646538613894, 52.27760565676961], + [5.305825663953018, 52.277329587583274], + [5.278664049272279, 52.28047245310638], + [5.277129558078126, 52.28063784665639], + [5.269207586863043, 52.281544389167586], + [5.2657691665365185, 52.281644611820084], + [5.265663260177655, 52.281505363135054], + [5.261101837629769, 52.27583578626852], + [5.244081128862236, 52.2546627842358], + [5.244064311749587, 52.25466413901625], + [5.232048318703337, 52.264467177965855], + [5.230593010247802, 52.26469495151241], + [5.23013488592708, 52.26561834032225], + [5.229580815312734, 52.26546369862637], + [5.225980648353807, 52.268197685941715], + [5.225507903248677, 52.272908872530216], + [5.2168676727963526, 52.26899349837805], + [5.21164372251881, 52.267343687956156], + [5.2092444434392515, 52.26593451449599], + [5.207692472399895, 52.266268211991985], + [5.203821976439654, 52.267115088553076], + [5.20689703964745, 52.2720926286398], + [5.207025334678828, 52.27341838354844], + [5.207222370066708, 52.27434897912283], + [5.21087650922446, 52.277339293119006], + [5.210957393397854, 52.27735049824123], + [5.227600564383201, 52.27712905396265], + [5.232492278979052, 52.281270227403155], + [5.2363551217747855, 52.28118886722211], + [5.2412300342995675, 52.28131431081051], + [5.2413297241345695, 52.281322399578116], + [5.246382721587102, 52.28233279314695], + [5.246225781437708, 52.28319545561792], + [5.249802910182148, 52.284325358269356], + [5.25010486032893, 52.28441929229267], + [5.257563005554652, 52.28674234038792], + [5.268316014092693, 52.29009247034205], + [5.270989052397399, 52.290921487655254], + [5.271161273133791, 52.29099847100377], + [5.274408178333112, 52.29340756677405], + [5.277743393061248, 52.29607395553646], + [5.2809117899122775, 52.293780734679075], + [5.287809914844219, 52.297603052853795], + [5.291361548286409, 52.29659339444538], + [5.298719135937922, 52.2980550384215], + [5.302321055792666, 52.30210577651648], + [5.307331122093373, 52.30272923470635], + [5.309012482999492, 52.30492693294793], + [5.312273997402874, 52.30347079687295], + [5.313412756438995, 52.30337330477473], + [5.313903230914413, 52.30310086516028] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.bf60c800-331e-45e4-a126-7d028d4ab0b5", + "properties": { + "statcode": "GM0377", + "jrstatcode": "2024GM0377", + "statnaam": "Bloemendaal", + "rubriek": "gemeente", + "id": 111 + }, + "bbox": [ + 97433.3751000017, 480467.23099999875, 103592.17700000107, + 494793.56010000035 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.617248357489726, 52.425125197592806], + [4.620842699471755, 52.42438449014945], + [4.621468408541018, 52.42490424749423], + [4.624992193705724, 52.423492224772076], + [4.623576327725569, 52.42207506738527], + [4.624489925081178, 52.421620266033955], + [4.6259139758123125, 52.42055690533488], + [4.625433320463762, 52.42009556282955], + [4.6270536456777185, 52.41735965124609], + [4.6263990679278155, 52.41652883815597], + [4.628735497933211, 52.41584441342401], + [4.627842077406088, 52.41470811120808], + [4.628842348409634, 52.41430832251841], + [4.627617969415275, 52.41259759869691], + [4.629993580683901, 52.41196542779855], + [4.631610973208181, 52.411671182484646], + [4.6316475960807635, 52.41166554341968], + [4.629285690626975, 52.40712406672338], + [4.6244091391744995, 52.39774044578206], + [4.6243874278404515, 52.397695764784345], + [4.623670783046525, 52.395772602077024], + [4.623703670928341, 52.39168709502663], + [4.621605772513512, 52.387981755959366], + [4.6162541358563605, 52.388822419183995], + [4.61081951209964, 52.3898211330698], + [4.608581952060149, 52.38552159110894], + [4.605332751184164, 52.38549310348989], + [4.602016976363405, 52.384619424902134], + [4.600530923994387, 52.38292102926272], + [4.600256658641118, 52.38076231438617], + [4.599783023458895, 52.37896276325694], + [4.599551689405407, 52.3772194672806], + [4.601066818952532, 52.37680186477485], + [4.6011714061254185, 52.37551534342949], + [4.601452440503806, 52.372770523684224], + [4.601834222374185, 52.3721856740286], + [4.604586479283699, 52.37135525616422], + [4.603773263725777, 52.36885688496038], + [4.604157740018342, 52.367592498017366], + [4.607323888698728, 52.36704471421554], + [4.605723674477389, 52.363404857168845], + [4.602262476291256, 52.35670310045431], + [4.596808522683399, 52.34549585290954], + [4.593582790314478, 52.337809766711864], + [4.5902632622907085, 52.32852288935792], + [4.590187701171412, 52.328352258643946], + [4.5908035216387395, 52.328210447550575], + [4.591307121730687, 52.328232380709096], + [4.591778780321725, 52.328526349497054], + [4.593368681831466, 52.32811753076305], + [4.593873997864974, 52.32864608135739], + [4.596985324293019, 52.32789480688506], + [4.59729756303783, 52.3278290172964], + [4.606235068483591, 52.323763010457654], + [4.6065244020065625, 52.32363135743028], + [4.607258827872346, 52.32329717219862], + [4.607367329375999, 52.32337626750266], + [4.60762016802755, 52.323560574956204], + [4.607814609950954, 52.32349052551603], + [4.611383864514891, 52.322204579917745], + [4.61139071133965, 52.32202354062746], + [4.611426811442817, 52.32106906604308], + [4.611488403865939, 52.31944046843051], + [4.611530211791081, 52.31833491342033], + [4.611676039331051, 52.31355991255957], + [4.602885936848013, 52.3158465094654], + [4.601457200312237, 52.31652121844255], + [4.599457804030372, 52.31710047277292], + [4.599455999652789, 52.31710099194882], + [4.596572880086198, 52.31770607269067], + [4.595087713136808, 52.31767621519015], + [4.59332130135062, 52.317777801864224], + [4.593313157693507, 52.31777784247979], + [4.591033663463803, 52.3177891203921], + [4.587686422863171, 52.317880920999244], + [4.587990814476502, 52.3169393512809], + [4.587469018739465, 52.31676317220151], + [4.586888919300578, 52.31699544722018], + [4.586610487335905, 52.31701141683881], + [4.586090327550492, 52.317315199873256], + [4.585936527643314, 52.31757056546687], + [4.5857925218296485, 52.318197372419775], + [4.583435366359737, 52.318382361153404], + [4.57324055818885, 52.315355519966744], + [4.5690754690177116, 52.31648303151935], + [4.568446809071977, 52.31564171294589], + [4.563707432469421, 52.30929800806595], + [4.5473222602715495, 52.313996598189654], + [4.565001077832296, 52.344339140556045], + [4.5700355006000954, 52.353363181913366], + [4.574505168741032, 52.36145042257188], + [4.576623852787592, 52.36517144850039], + [4.579570333696187, 52.37034182994768], + [4.579718226150814, 52.370602402919516], + [4.5914590097409915, 52.39136265439738], + [4.591658966071501, 52.39171569464139], + [4.543043221868312, 52.401093711719895], + [4.541323121936123, 52.40139602811293], + [4.554777066780589, 52.422609775547606], + [4.559637302888689, 52.4378956511557], + [4.560096761683824, 52.4380374217075], + [4.563185324977221, 52.43764737725417], + [4.584690391788435, 52.43484253766482], + [4.587822871702237, 52.4344364367903], + [4.6150487102473665, 52.42593528520878], + [4.617248357489726, 52.425125197592806] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.888d7b93-7c66-43da-b1dd-d967a058edfa", + "properties": { + "statcode": "GM0383", + "jrstatcode": "2024GM0383", + "statnaam": "Castricum", + "rubriek": "gemeente", + "id": 112 + }, + "bbox": [ + 101468.2853000015, 504564.9389999993, 113931.58399999887, + 511856.46400000155 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.7564778621726065, 52.59156833936667], + [4.751311821770333, 52.58227699357544], + [4.748901579761566, 52.573984735497014], + [4.747280972644329, 52.571354799328816], + [4.74470158065072, 52.567941749001065], + [4.745083762283701, 52.566851528580976], + [4.752541231639932, 52.56278144678319], + [4.756858647971307, 52.56207143262114], + [4.771967106311651, 52.55989836525783], + [4.781622845330618, 52.55710223774034], + [4.778063466968282, 52.54417779946074], + [4.7777334416152915, 52.533744875698346], + [4.774695811635794, 52.53454916975928], + [4.768019000069616, 52.53463451311827], + [4.762427940643578, 52.53751060066101], + [4.75947618454112, 52.53737882065459], + [4.755275555628804, 52.53573555082731], + [4.750436509977441, 52.53789552455052], + [4.735390170234943, 52.543822553778796], + [4.723724237354862, 52.54666921791859], + [4.719804466120803, 52.543854541163356], + [4.7187861599081655, 52.551622869204344], + [4.705897651210277, 52.54822339202657], + [4.706431102557015, 52.546294929860586], + [4.703692818412601, 52.54539639880253], + [4.694534490276288, 52.544188299690354], + [4.695596813997292, 52.53587368586809], + [4.697604352850036, 52.52924108319549], + [4.69746746588055, 52.52916404913502], + [4.695736164873701, 52.52672806307518], + [4.669571546332399, 52.53054225598558], + [4.659969262871762, 52.53175138461765], + [4.6561997951021805, 52.53152920567765], + [4.653028642989734, 52.53072454793873], + [4.652794105719753, 52.53072618419296], + [4.59830267319716, 52.53114066653475], + [4.601183611968675, 52.539351240993746], + [4.60996515252002, 52.5737443377394], + [4.654980505653309, 52.58286998797554], + [4.655713659935413, 52.58551212652414], + [4.659840611149946, 52.58613969835614], + [4.672581364749544, 52.59090410094186], + [4.673979694009885, 52.58994717165741], + [4.670615392841841, 52.58872930522184], + [4.671641318817335, 52.58729802762647], + [4.677738416178998, 52.58548355899844], + [4.677654099459087, 52.58433720070169], + [4.679273805935061, 52.583873237991185], + [4.685522144958145, 52.58313102943199], + [4.686243702953873, 52.58295689929283], + [4.6854254379048506, 52.58095699852079], + [4.691304903787201, 52.5800487503979], + [4.691085643432442, 52.57957822206716], + [4.696587492293703, 52.5789779162775], + [4.698316328100628, 52.58185498176965], + [4.703360083467566, 52.58155099038756], + [4.703755882519198, 52.5803385355234], + [4.71025774119176, 52.58058755086962], + [4.718182420064186, 52.58008085067763], + [4.718467987416679, 52.58006145593537], + [4.7233391197995545, 52.579765640280954], + [4.724883310490663, 52.578737120689915], + [4.726707784478335, 52.57963710583275], + [4.739992728227226, 52.57892813687747], + [4.744455866224832, 52.59028840444716], + [4.750968465203071, 52.5891187898703], + [4.752138624367172, 52.59189088850737], + [4.752480426925204, 52.59257722918219], + [4.7564778621726065, 52.59156833936667] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.067086ce-7373-452a-8380-0fd3706609b1", + "properties": { + "statcode": "GM0384", + "jrstatcode": "2024GM0384", + "statnaam": "Diemen", + "rubriek": "gemeente", + "id": 113 + }, + "bbox": [ + 124699.19999999925, 480740.3740000017, 130995.7650000006, + 485437.80099999905 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.972480661202736, 52.355456350638036], + [4.976709176058774, 52.35349188830672], + [4.9803623216459005, 52.35154413895068], + [4.9838037698974125, 52.34970992946642], + [4.98991254973027, 52.346460727418744], + [4.998343157785453, 52.34201131916379], + [4.999320652999944, 52.341536324795456], + [5.004162190662829, 52.34257750860902], + [5.009068470866603, 52.34189140787717], + [5.012258234637818, 52.343801135569564], + [5.012304376768135, 52.343846297513075], + [5.012540388397207, 52.34394040631578], + [5.013374337006896, 52.34376227530805], + [5.014789736632131, 52.34456945883674], + [5.015470801219487, 52.3436900405523], + [5.0153247367590525, 52.34326158755975], + [5.015784938740587, 52.343161881381526], + [5.016212908345641, 52.34373823307258], + [5.016024365157172, 52.345273513368454], + [5.016547080997493, 52.34572346740062], + [5.015119073239992, 52.347433389535574], + [5.0152946757105745, 52.34763363708736], + [5.0167511255861195, 52.34589910643426], + [5.019049633601964, 52.34787750813076], + [5.023653668652926, 52.348024181899824], + [5.026860565209266, 52.34877232384923], + [5.034943786373409, 52.34452932537124], + [5.0339966446346125, 52.34063883386225], + [5.0261885745877315, 52.33806275106952], + [5.026138626310833, 52.337490723720485], + [5.02741676296822, 52.337832973374404], + [5.027486445218185, 52.337719079101404], + [5.025343573555785, 52.337049010739854], + [5.018462551026608, 52.334074428595684], + [5.014992314308908, 52.3317764600995], + [5.014450117039145, 52.33143131839825], + [5.012793853433807, 52.33020742406345], + [5.016133679578445, 52.32451212164975], + [4.998079155000394, 52.31403484133111], + [4.997860332560914, 52.313978850281444], + [4.997456154374946, 52.31424611859923], + [4.997297863448944, 52.31419558914042], + [4.997091076844808, 52.31445564230158], + [4.997425579534737, 52.31673570973019], + [4.996895742882885, 52.31764236056505], + [4.991671740657753, 52.32443768989134], + [4.989603674095138, 52.327547725284134], + [4.986181936936582, 52.32971983752412], + [4.983946689427157, 52.33066921243717], + [4.980111082524398, 52.33090644468118], + [4.9777370242062124, 52.331026579806505], + [4.977136256868195, 52.330642779478744], + [4.975307118224783, 52.330561675800986], + [4.975002793091424, 52.329976970244324], + [4.970664515023423, 52.32638303719467], + [4.970473594049061, 52.326287994480595], + [4.970274085397808, 52.326179801777194], + [4.967541189119637, 52.32775758941792], + [4.956751444606937, 52.324044635457724], + [4.956711563685658, 52.32403078762399], + [4.952675653482256, 52.322644039966605], + [4.948120587681114, 52.327629496956966], + [4.947658676020453, 52.328138278595645], + [4.94471619037003, 52.327129715212294], + [4.942693554599652, 52.32933426461402], + [4.948908201827201, 52.33152541176352], + [4.948670962547821, 52.33171362162464], + [4.9460059950731035, 52.33376760241791], + [4.948005534115013, 52.33500363570604], + [4.950448399648268, 52.33777267117114], + [4.950616711976389, 52.33793636305319], + [4.9503271793937635, 52.33863741584051], + [4.949860180447958, 52.33852824618747], + [4.952499200719796, 52.340006745738954], + [4.952730962733085, 52.34015863295872], + [4.956267901811013, 52.34358686196712], + [4.956360693230726, 52.34368001333168], + [4.960377262695584, 52.34788573420644], + [4.960428536081116, 52.347935885396495], + [4.964538513876931, 52.352773192475105], + [4.96585712691672, 52.354651157113516], + [4.966239865522401, 52.35416376755124], + [4.969261416750592, 52.35535024650507], + [4.969594780519959, 52.35610167822197], + [4.972480661202736, 52.355456350638036] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.6855d3bb-150a-4783-9a55-e20281800677", + "properties": { + "statcode": "GM0385", + "jrstatcode": "2024GM0385", + "statnaam": "Edam-Volendam", + "rubriek": "gemeente", + "id": 114 + }, + "bbox": [ + 125332.97899999842, 499751.21130000055, 134527.66699999943, + 513942.71719999984 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.0233326129885105, 52.59141604602821], + [5.028566659561505, 52.585231392141075], + [5.027903243345572, 52.58339674564283], + [5.0292897968560775, 52.582116758885135], + [5.029352713901943, 52.580657309070496], + [5.032578920979046, 52.57358352185856], + [5.031001804327404, 52.57037163586782], + [5.031213465245019, 52.56745240377033], + [5.034676075183671, 52.564921503130925], + [5.042670339496312, 52.5609602173633], + [5.042939935204266, 52.55861567233975], + [5.054752153165025, 52.54467169037291], + [5.054037574410028, 52.54190732923787], + [5.054589036996983, 52.53878950767583], + [5.0575754520813145, 52.537242523421504], + [5.063010543902384, 52.529779924187544], + [5.0647735215717935, 52.52897514251765], + [5.065775330008341, 52.52620027555592], + [5.066440289297405, 52.522775968281806], + [5.069774228606866, 52.521058903732225], + [5.071686620580562, 52.5188997976975], + [5.0738204267746525, 52.51936692205752], + [5.0750057611617585, 52.51906164477794], + [5.074564270024698, 52.51715278745754], + [5.074979662704903, 52.515037022044574], + [5.0805434119175334, 52.51313033136349], + [5.08200982531945, 52.51038132989141], + [5.083764434999403, 52.50661854924204], + [5.08569261464751, 52.50375760326957], + [5.080962800828621, 52.49977286227626], + [5.077935131937987, 52.49549870149649], + [5.078501100400696, 52.4945938467011], + [5.077860010152145, 52.49374318351443], + [5.076737734468431, 52.49283676268936], + [5.076967386576986, 52.492578891347655], + [5.076883372845034, 52.492554464121476], + [5.076527550317705, 52.49282529917683], + [5.077726634786523, 52.49384634799228], + [5.076868031285367, 52.49434140028703], + [5.07560541881963, 52.49352426355203], + [5.07551546973521, 52.492974236241835], + [5.073532956964448, 52.49255256417687], + [5.0738604468073465, 52.49203545178942], + [5.076287297909464, 52.492636935864205], + [5.076385232973909, 52.4925336397064], + [5.075582808648695, 52.49225184293313], + [5.073803864560764, 52.49186424797533], + [5.073570936150946, 52.49211072835556], + [5.071813700772363, 52.49190368888224], + [5.071562912520257, 52.49090870142762], + [5.069946230675427, 52.48967634255578], + [5.0686720238857035, 52.489551183536484], + [5.067391296667607, 52.48966957069079], + [5.0658564238893415, 52.4900123894928], + [5.065222076935724, 52.49071334341894], + [5.064152653987569, 52.49061497419065], + [5.063084289638251, 52.48870695581921], + [5.062808786152996, 52.48822346327657], + [5.061560266215617, 52.48827415809175], + [5.060669206821425, 52.487483771415484], + [5.060002591556563, 52.4868707461373], + [5.059481435377508, 52.48561453750717], + [5.058645618402979, 52.48552485197158], + [5.059094935616399, 52.49095566685158], + [5.038780118138384, 52.48834375219086], + [5.03407873479551, 52.48833004375123], + [5.0339134853475, 52.48857231631335], + [5.031052654666073, 52.48847685551673], + [5.030621713921614, 52.4870607254855], + [5.025520450427014, 52.48513613858441], + [5.02461118118036, 52.48492547750787], + [4.997964432297237, 52.49473276621614], + [5.009804674224441, 52.50680986858868], + [5.024700057244597, 52.522402726196276], + [5.019703620502378, 52.523714471616636], + [5.0142595027100345, 52.52623875650998], + [5.008766565020245, 52.52768756840547], + [5.001094895418673, 52.52691491815116], + [4.997399271887593, 52.52271289884472], + [4.9920190325198375, 52.51983192407049], + [4.991641211288389, 52.51998438649828], + [4.986558165953881, 52.52185060909073], + [4.973200258153784, 52.52541249685028], + [4.967254278429298, 52.527367292643], + [4.956998749515054, 52.52911035641966], + [4.959464718583692, 52.533313887056174], + [4.961952000543955, 52.53634813797053], + [4.968806425424282, 52.54083514938247], + [4.973388990342446, 52.5433684812849], + [4.975655656754433, 52.54539584842071], + [4.976505626969129, 52.546850001957544], + [4.97534783535764, 52.54907464163378], + [4.97763820843381, 52.55344659713962], + [4.976505008816852, 52.56115235276331], + [4.9804245854811695, 52.56435807309652], + [4.986083826506895, 52.56730435988405], + [4.995871136932507, 52.57384665475843], + [4.997168096824661, 52.57512149356811], + [4.996509699110308, 52.57764361642185], + [4.9918945128218635, 52.58223436030254], + [4.982223898400609, 52.58549786161265], + [4.980097430166106, 52.5869618091328], + [4.977471997307174, 52.58663221010732], + [4.974349526910955, 52.58559290165362], + [4.968665916614954, 52.58447520677357], + [4.964729613161917, 52.582785278555946], + [4.9627445156973815, 52.581470934659265], + [4.958572743839783, 52.58030653137095], + [4.955210170738908, 52.57996357607636], + [4.953922086328113, 52.58113391678221], + [4.954485330490555, 52.58420445460206], + [4.954026257436799, 52.58665853177946], + [4.949738748024945, 52.592568809785476], + [4.949371939545158, 52.59478882644942], + [4.94984990577973, 52.595285342969014], + [5.004881212638093, 52.59757304746966], + [5.007949379928123, 52.60779907056515], + [5.006690144742907, 52.610519144271095], + [5.018653721949044, 52.61206363381396], + [5.018853049782741, 52.61243750579924], + [5.019659333667352, 52.612453573800536], + [5.019396307389171, 52.610307201028924], + [5.020032759011187, 52.60930281365914], + [5.019678971037497, 52.608355770703874], + [5.01949582388987, 52.60641895170736], + [5.022264153179374, 52.604514816778654], + [5.020821520028422, 52.60315479573222], + [5.021167463498496, 52.60229991911092], + [5.023097071550098, 52.60156561962388], + [5.024365818797098, 52.599648199831854], + [5.020488155178125, 52.59600196827173], + [5.0233326129885105, 52.59141604602821] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7eb25016-78d4-460f-b791-006c33063880", + "properties": { + "statcode": "GM0388", + "jrstatcode": "2024GM0388", + "statnaam": "Enkhuizen", + "rubriek": "gemeente", + "id": 115 + }, + "bbox": [ + 143597.73149999976, 521860.6983000003, 149631.43939999864, + 535367.5833999999 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.254315629657635, 52.74697675230425], + [5.2594322188956095, 52.744861704262355], + [5.269903522790584, 52.745171536485344], + [5.271965728840722, 52.74632700689099], + [5.278082634238874, 52.743060627189486], + [5.282658071770829, 52.74232912283973], + [5.282848865105784, 52.740493161716735], + [5.28680425848505, 52.735933187097245], + [5.2872244690439265, 52.73310357877089], + [5.2843556516946535, 52.732233685832945], + [5.283710675216415, 52.73082893602012], + [5.2875388293754195, 52.72841332928615], + [5.284867114582387, 52.727230617568004], + [5.284949005467457, 52.722216137273264], + [5.283638189341293, 52.721982516074156], + [5.285155659105548, 52.721719403568805], + [5.286095262171649, 52.719794080842334], + [5.28857766682179, 52.71900464198437], + [5.287998478279928, 52.71480393650748], + [5.289180857403774, 52.714109387692766], + [5.289593542168337, 52.71422455956437], + [5.290969717915054, 52.713369677398454], + [5.290727301101976, 52.71320093096438], + [5.295651297620907, 52.71027913942106], + [5.3017274180176654, 52.70830993242697], + [5.304639332597549, 52.708238868736586], + [5.307119630386728, 52.708947885856254], + [5.307382481619724, 52.709960249370084], + [5.307770447218356, 52.70838272750372], + [5.307457880723541, 52.70682488685342], + [5.306932763231465, 52.706207772008106], + [5.306061029359474, 52.70585759316322], + [5.305169991116577, 52.706528583178475], + [5.300062492474465, 52.707938942376494], + [5.297939070366538, 52.706628834899256], + [5.298012924821068, 52.70630198869773], + [5.298556376414169, 52.70603861008644], + [5.299310219614244, 52.70597863343822], + [5.299163748471723, 52.70584242799538], + [5.298540768323084, 52.70588678394217], + [5.298433771693106, 52.70529139507728], + [5.29890670276749, 52.70526181992958], + [5.299005338100489, 52.70567828229749], + [5.29923062134574, 52.70568107290674], + [5.299068830331034, 52.705147814523336], + [5.2982714330458585, 52.70485228716396], + [5.297994528821419, 52.70382399916816], + [5.299341673095581, 52.70274172339214], + [5.293784190467566, 52.69956573850482], + [5.293673222493577, 52.69962408790212], + [5.294239582961843, 52.70002350071123], + [5.294204981764243, 52.70007345795132], + [5.293264637255273, 52.699993390575194], + [5.29151700481919, 52.70020201803444], + [5.289696076928892, 52.700616779534904], + [5.289193297501387, 52.70010982516234], + [5.292295759851346, 52.69939203042055], + [5.293131324920484, 52.69946020505623], + [5.293107145975493, 52.69926894833677], + [5.291785727586118, 52.69922951573369], + [5.289708104454738, 52.69944129132746], + [5.289826474687195, 52.69869560202528], + [5.291466087907546, 52.69880188736266], + [5.291484383692021, 52.69862664758999], + [5.2905789449171, 52.69853865512668], + [5.2908346425396235, 52.69798364948763], + [5.2864965818397405, 52.69558001262317], + [5.2856950088888475, 52.69578286542075], + [5.289753679290041, 52.698009143581515], + [5.289234862700516, 52.69944241309667], + [5.285277090605765, 52.69895298918974], + [5.2836903582064805, 52.69878283324179], + [5.283664453256571, 52.698317455428125], + [5.285793384082441, 52.69798753256666], + [5.288981639326328, 52.69859027342459], + [5.284152733130156, 52.69683007942009], + [5.279644284023064, 52.695960031809534], + [5.279429324626855, 52.69474270164391], + [5.28243118707313, 52.69328812101964], + [5.283695810222146, 52.693530196779214], + [5.284126819272205, 52.69272691547533], + [5.286813598900846, 52.69080213619232], + [5.287424934642896, 52.69116497883662], + [5.286883434490551, 52.68989547488343], + [5.2760405315095324, 52.68412866844637], + [5.275697725424763, 52.68436010590557], + [5.286070095970441, 52.690355279978036], + [5.282946745827515, 52.69194066962549], + [5.281724207806802, 52.6912303856769], + [5.2800213782561265, 52.691518638643274], + [5.279470299745108, 52.69195222065], + [5.27415330200373, 52.68874329057306], + [5.271090693247324, 52.687638492157035], + [5.269578386123268, 52.68740450061085], + [5.266415727487587, 52.68788519324712], + [5.261130142832994, 52.68662576041471], + [5.259248403991115, 52.68690557525029], + [5.258979705964623, 52.69595689391015], + [5.258959038497237, 52.696616235067836], + [5.258956596232855, 52.696755733555406], + [5.258742904392666, 52.700688209344214], + [5.258459628093158, 52.70470102042848], + [5.258158255510359, 52.70904795839274], + [5.257501406682001, 52.71618077377853], + [5.257340070208998, 52.71984905323323], + [5.2550664796609095, 52.74215936896229], + [5.254315629657635, 52.74697675230425] + ] + ], + [ + [ + [5.235213900008099, 52.79342808076405], + [5.234677688812815, 52.79342739644765], + [5.232210664926078, 52.79392367016914], + [5.229670725071482, 52.79467745297622], + [5.220580670980645, 52.798205678508694], + [5.221327248378926, 52.79966147886], + [5.218133621722917, 52.80188867846998], + [5.221638929410506, 52.805449227642185], + [5.222507113190905, 52.805108544134804], + [5.2379406641610595, 52.79537067418889], + [5.236491849009684, 52.79451264369277], + [5.235213900008099, 52.79342808076405] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.6c5d799e-bff0-4719-bbdb-464d6faa8a24", + "properties": { + "statcode": "GM0392", + "jrstatcode": "2024GM0392", + "statnaam": "Haarlem", + "rubriek": "gemeente", + "id": 116 + }, + "bbox": [ + 101366.77600000054, 483705.2969999984, 107326.8350000009, + 493673.6079999991 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.6721251052259145, 52.42239848835501], + [4.674372407939799, 52.41863422565454], + [4.677496017790825, 52.418962098918726], + [4.68122717746454, 52.41933144869109], + [4.680648130501211, 52.41800592200098], + [4.681798400996018, 52.417780540996695], + [4.682476168597433, 52.41384869956002], + [4.681130564561326, 52.41231705094778], + [4.675507043366377, 52.409625235186745], + [4.671962342328278, 52.40944707426994], + [4.674379436007776, 52.406469316558464], + [4.668816209599972, 52.40416279866551], + [4.668664576451366, 52.401399401634826], + [4.678685685276791, 52.39947745360544], + [4.678570277301848, 52.39851473442704], + [4.67563038875064, 52.3972493025822], + [4.673457871573787, 52.39406732068369], + [4.674541523031964, 52.39091124463886], + [4.677716261003498, 52.38973756770569], + [4.681190361427211, 52.39028666276091], + [4.68144005268522, 52.389915871600834], + [4.682595867889471, 52.38821608478028], + [4.686921136152221, 52.387443702790236], + [4.685970719324781, 52.3840178584872], + [4.685995668229779, 52.38351769829373], + [4.680364001752444, 52.3798722059438], + [4.677383486474714, 52.377088112156805], + [4.67271451158954, 52.37422473589772], + [4.671377049027549, 52.37038036350894], + [4.671377765991565, 52.37037424350698], + [4.672091877887725, 52.36815792583693], + [4.67524450311907, 52.35946881862908], + [4.67646708330698, 52.35618080752193], + [4.675633457780727, 52.3528793863561], + [4.671482559070538, 52.35014686183773], + [4.660815479389023, 52.345537778622166], + [4.6592326607552685, 52.344868314168096], + [4.656411942122901, 52.34363902801339], + [4.651657714114083, 52.3415596973185], + [4.647628485663095, 52.340068799969394], + [4.6396480167352445, 52.338906077250776], + [4.639380608988958, 52.34062889775252], + [4.641033667004313, 52.34398555620767], + [4.6403247993766, 52.34556296292863], + [4.6403855960378655, 52.34983365244002], + [4.639802472665188, 52.350907292375375], + [4.636598500412649, 52.353183806094606], + [4.6358501700800545, 52.35403683571199], + [4.6349435911455865, 52.35596183606104], + [4.63758967327478, 52.35946778314871], + [4.637360431808469, 52.36025753883471], + [4.63662633735538, 52.36148417651103], + [4.630340572387389, 52.36064679654049], + [4.625628789435276, 52.362126367119586], + [4.618246545554131, 52.361466658067236], + [4.617718631263883, 52.361530686346455], + [4.610655702807668, 52.36270591092859], + [4.608581017154188, 52.36295794321094], + [4.608422822001112, 52.36298468784801], + [4.605723674477389, 52.363404857168845], + [4.607323888698728, 52.36704471421554], + [4.604157740018342, 52.367592498017366], + [4.603773263725777, 52.36885688496038], + [4.604586479283699, 52.37135525616422], + [4.601834222374185, 52.3721856740286], + [4.601452440503806, 52.372770523684224], + [4.6011714061254185, 52.37551534342949], + [4.601066818952532, 52.37680186477485], + [4.599551689405407, 52.3772194672806], + [4.599783023458895, 52.37896276325694], + [4.600256658641118, 52.38076231438617], + [4.600530923994387, 52.38292102926272], + [4.602016976363405, 52.384619424902134], + [4.605332751184164, 52.38549310348989], + [4.608581952060149, 52.38552159110894], + [4.61081951209964, 52.3898211330698], + [4.6162541358563605, 52.388822419183995], + [4.621605772513512, 52.387981755959366], + [4.623703670928341, 52.39168709502663], + [4.623670783046525, 52.395772602077024], + [4.6243874278404515, 52.397695764784345], + [4.6244091391744995, 52.39774044578206], + [4.629285690626975, 52.40712406672338], + [4.6316475960807635, 52.41166554341968], + [4.636125288628378, 52.41083120097086], + [4.637285886388049, 52.41212296199401], + [4.639375513541343, 52.41450790243292], + [4.642489299196584, 52.41786998005129], + [4.645017415140023, 52.421025742414656], + [4.645718489211973, 52.42197226657678], + [4.650768610169698, 52.42856966190611], + [4.653147127376315, 52.42799955094108], + [4.662832606369726, 52.42585455549753], + [4.664847715992338, 52.4256035710833], + [4.66562521897724, 52.42548870355632], + [4.6721251052259145, 52.42239848835501] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.73ca79e2-5e1e-4c76-872e-a27eb634743b", + "properties": { + "statcode": "GM0394", + "jrstatcode": "2024GM0394", + "statnaam": "Haarlemmermeer", + "rubriek": "gemeente", + "id": 117 + }, + "bbox": [ + 97831.57400000095, 469876.49810000136, 116266.49500000104, + 494157.08199999854 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.757855915932351, 52.39665923401168], + [4.758298475240246, 52.38794865898915], + [4.758308253748732, 52.387895150091204], + [4.758952627855027, 52.38411756540632], + [4.759078008337525, 52.38094068599069], + [4.759124707572624, 52.37932924405851], + [4.756717878049016, 52.37783776474103], + [4.75838039072545, 52.37401530606333], + [4.758474504901876, 52.37109317030477], + [4.757837068168958, 52.368718131877266], + [4.75588085547768, 52.36180751570971], + [4.754837140326306, 52.357907330440426], + [4.755683817600715, 52.35615003832458], + [4.767392729253085, 52.35126855089208], + [4.7732990198529395, 52.34892054290633], + [4.780804646394241, 52.34584615096344], + [4.7911021454240865, 52.341500166759964], + [4.797492493359899, 52.33553951339467], + [4.798217677169003, 52.3350410781365], + [4.798797057248224, 52.33480016463428], + [4.803048226539473, 52.333032734875715], + [4.815211800410989, 52.327934857971044], + [4.817121531398106, 52.32692511398187], + [4.818752570685462, 52.325560258050245], + [4.81906174708687, 52.32331833284298], + [4.816124106477718, 52.313491204470125], + [4.8171526512545375, 52.31196688424335], + [4.817075406207786, 52.31182059935315], + [4.8098836926171495, 52.305776099826815], + [4.79883575465166, 52.3014211114169], + [4.7956633332822705, 52.299323913044134], + [4.794442878318487, 52.296267027411226], + [4.793248228421163, 52.29409944956279], + [4.788341397155714, 52.288530943735296], + [4.779910314793119, 52.28313029522475], + [4.771019811880829, 52.279366210701845], + [4.765112977933417, 52.27678214874166], + [4.75687845101103, 52.27440113544218], + [4.751322007162531, 52.27368949302285], + [4.746699287217271, 52.27225335228267], + [4.745618114240177, 52.27164280788308], + [4.743765365280029, 52.26983760749886], + [4.739234919223285, 52.26761352331427], + [4.734567286948389, 52.266546660866624], + [4.729795444298755, 52.26516299342139], + [4.725877212322955, 52.263338848992866], + [4.720785656494292, 52.25878149919573], + [4.71322017902867, 52.25540089699575], + [4.705267158172439, 52.24675519655433], + [4.701867262258488, 52.244467908606296], + [4.695512750080445, 52.243222764752204], + [4.681248682531493, 52.23914288514838], + [4.677073834666338, 52.23438670348932], + [4.670348087144909, 52.23075578542271], + [4.668345769519378, 52.22958041092776], + [4.665847202929803, 52.227996412878184], + [4.658473734545848, 52.22609828276864], + [4.647177779394168, 52.221205878401065], + [4.644022106930556, 52.220651173888726], + [4.638574556212056, 52.218486622648065], + [4.632634452711475, 52.21618427423957], + [4.625844648556071, 52.21530124737865], + [4.62248379787611, 52.214922744125516], + [4.618437147720568, 52.21447576921382], + [4.6027615851328045, 52.21455826911345], + [4.598180765778404, 52.215545173726106], + [4.583553195091427, 52.21887420588917], + [4.573762755567894, 52.21725835470777], + [4.5722021916675555, 52.21699910306771], + [4.558433146166438, 52.218798537598616], + [4.556615361820582, 52.21927304626106], + [4.553933983188353, 52.22220541854054], + [4.55047036189576, 52.226744715954126], + [4.553624982871213, 52.230932974593635], + [4.555619474206903, 52.23201906963155], + [4.560783683480807, 52.23305996786052], + [4.562272647677873, 52.23384344250561], + [4.564183737818655, 52.23862875755546], + [4.565054955070379, 52.241430680493636], + [4.565347726581195, 52.2423478450031], + [4.5662091676068615, 52.245013543855286], + [4.567832079383025, 52.250747328514464], + [4.568763657160266, 52.2556709461636], + [4.569537572823251, 52.25986023145159], + [4.568448632203926, 52.26470549074317], + [4.568251150326854, 52.26555793212066], + [4.56803834133811, 52.26651739479129], + [4.568335793946374, 52.26855338573722], + [4.572749034624725, 52.27124001875641], + [4.577122320471025, 52.27380256943305], + [4.57719135036764, 52.273843010014104], + [4.584143946654533, 52.277915325240365], + [4.58488269409062, 52.27833736675791], + [4.588207152152533, 52.28023236940637], + [4.588872361380153, 52.28110794047887], + [4.58953896580263, 52.2824855258245], + [4.591336994399368, 52.28595799414297], + [4.593737781778294, 52.28870085805287], + [4.595601596524256, 52.29080485013454], + [4.596358650978737, 52.2918431231519], + [4.596476542232974, 52.294445727127794], + [4.598243926613805, 52.29773579971078], + [4.599828298763809, 52.29986982995553], + [4.602337745097511, 52.30324940124415], + [4.604737836178874, 52.30627891545872], + [4.606799797172799, 52.30799543450615], + [4.6075636765486845, 52.30863129736873], + [4.610271250875718, 52.31088493211231], + [4.611533101159008, 52.31224008986089], + [4.611676039331051, 52.31355991255957], + [4.611530211791081, 52.31833491342033], + [4.611488403865939, 52.31944046843051], + [4.611426811442817, 52.32106906604308], + [4.61139071133965, 52.32202354062746], + [4.611383864514891, 52.322204579917745], + [4.611386097446126, 52.32225594757351], + [4.611661876539924, 52.32541985010331], + [4.613467192096652, 52.328064465213735], + [4.616564207532729, 52.33147340189419], + [4.620111229567507, 52.333722626098336], + [4.630584296438668, 52.3375343100253], + [4.6396480167352445, 52.338906077250776], + [4.647628485663095, 52.340068799969394], + [4.651657714114083, 52.3415596973185], + [4.656411942122901, 52.34363902801339], + [4.6592326607552685, 52.344868314168096], + [4.660815479389023, 52.345537778622166], + [4.671482559070538, 52.35014686183773], + [4.675633457780727, 52.3528793863561], + [4.67646708330698, 52.35618080752193], + [4.67524450311907, 52.35946881862908], + [4.672091877887725, 52.36815792583693], + [4.671377765991565, 52.37037424350698], + [4.671377049027549, 52.37038036350894], + [4.67271451158954, 52.37422473589772], + [4.677383486474714, 52.377088112156805], + [4.680364001752444, 52.3798722059438], + [4.685995668229779, 52.38351769829373], + [4.685970719324781, 52.3840178584872], + [4.686921136152221, 52.387443702790236], + [4.682595867889471, 52.38821608478028], + [4.68144005268522, 52.389915871600834], + [4.681190361427211, 52.39028666276091], + [4.677716261003498, 52.38973756770569], + [4.674541523031964, 52.39091124463886], + [4.673457871573787, 52.39406732068369], + [4.67563038875064, 52.3972493025822], + [4.678570277301848, 52.39851473442704], + [4.678685685276791, 52.39947745360544], + [4.668664576451366, 52.401399401634826], + [4.668816209599972, 52.40416279866551], + [4.674379436007776, 52.406469316558464], + [4.671962342328278, 52.40944707426994], + [4.675507043366377, 52.409625235186745], + [4.681130564561326, 52.41231705094778], + [4.682476168597433, 52.41384869956002], + [4.6914859722961975, 52.41881396813402], + [4.7005372234015175, 52.42551291751489], + [4.710654980250923, 52.42769275373642], + [4.721983094012953, 52.433336168527894], + [4.739208095839959, 52.43106382971274], + [4.7385667719306666, 52.429222712415886], + [4.728758929201308, 52.40071134695966], + [4.75748199714897, 52.396882777237415], + [4.757855915932351, 52.39665923401168] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.a6fc5a41-5220-40a2-a551-0b07a4570edc", + "properties": { + "statcode": "GM0396", + "jrstatcode": "2024GM0396", + "statnaam": "Heemskerk", + "rubriek": "gemeente", + "id": 118 + }, + "bbox": [ + 100632.36710000038, 500062.4759999998, 109713.81700000167, + 505147.64229999855 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.659969262871762, 52.53175138461765], + [4.669571546332399, 52.53054225598558], + [4.695736164873701, 52.52672806307518], + [4.692830346818195, 52.522281715763235], + [4.690585810731406, 52.51908252058647], + [4.691395225214516, 52.51688738063745], + [4.690674450120315, 52.51561836528704], + [4.692599804874006, 52.51100248478757], + [4.695114734796707, 52.50999840152613], + [4.694611803394244, 52.50762400232078], + [4.697085297841641, 52.507547900131115], + [4.701235741008002, 52.50886276543512], + [4.703854961375023, 52.50832887890574], + [4.706526740965935, 52.510397163955524], + [4.709151740178238, 52.509856410774034], + [4.707937562851586, 52.50614115437219], + [4.705858193040408, 52.506251103234625], + [4.7034427265252114, 52.50310441193229], + [4.705423760562727, 52.50010752059111], + [4.711703866146691, 52.49681687492158], + [4.720367092485928, 52.4949539125638], + [4.714645426302392, 52.49319503881634], + [4.708445037267249, 52.48862567756293], + [4.707968883346465, 52.48633243855488], + [4.703093958051533, 52.487559390600794], + [4.703721368299841, 52.48853264640298], + [4.699666007590977, 52.489799229750254], + [4.697602049639437, 52.487512237140116], + [4.69550885927774, 52.487385465601626], + [4.694550728490503, 52.48829975837534], + [4.694601391338052, 52.489586662149456], + [4.694930191691641, 52.49068023043745], + [4.694741581316783, 52.49133913129386], + [4.690991773984864, 52.49131718162488], + [4.690382966286266, 52.490830377896984], + [4.687086620635363, 52.492391676090314], + [4.685972480862958, 52.49173711199009], + [4.683839189814991, 52.49272035701452], + [4.683721263751885, 52.49274625480539], + [4.682035113052379, 52.492822828097324], + [4.680510264474407, 52.4935391003814], + [4.6799237218727825, 52.493168810283514], + [4.678609666398479, 52.49371930671987], + [4.677993437393097, 52.49336461198206], + [4.676988916134329, 52.49442996391786], + [4.674407711410977, 52.49515508088391], + [4.675069576029852, 52.49558759632015], + [4.6735013888860655, 52.49653336486989], + [4.672855186935343, 52.49696636684502], + [4.66988703153975, 52.49839897930318], + [4.668329145675863, 52.49991665645221], + [4.666301896975954, 52.500744131124414], + [4.6669141703785755, 52.50105323268354], + [4.666054123142156, 52.50174402690576], + [4.657476176301463, 52.498675334460856], + [4.657398230912042, 52.49866395206359], + [4.655379330764089, 52.4979252393651], + [4.652561236547269, 52.498187463556334], + [4.651243044571317, 52.498845330716215], + [4.650021199059, 52.498423754350775], + [4.649452114335432, 52.49904860695893], + [4.649430700430233, 52.49912153348072], + [4.6463123229459224, 52.49908339668705], + [4.645105761844352, 52.49956911543847], + [4.6350202701562635, 52.499061408726355], + [4.6349996872801125, 52.49952910393912], + [4.633893642790645, 52.49890255714859], + [4.631366209968618, 52.498692130603246], + [4.630956008323401, 52.498657978603845], + [4.621401101212109, 52.497862111364064], + [4.613037425383413, 52.49633105775496], + [4.611509999006076, 52.496641848369634], + [4.607470819954044, 52.49457453330305], + [4.606295822514751, 52.49480883617851], + [4.6062975288928865, 52.49478585418877], + [4.604313825047737, 52.494388841917484], + [4.598635796575965, 52.49594453498479], + [4.599930666933664, 52.49726095384381], + [4.597984014169795, 52.49684533910519], + [4.595545836287634, 52.49819876786523], + [4.591695172847429, 52.498278981844074], + [4.591666019867273, 52.49784025830633], + [4.586563282836971, 52.49916130319721], + [4.593024356906283, 52.5134877243873], + [4.59830267319716, 52.53114066653475], + [4.652794105719753, 52.53072618419296], + [4.653028642989734, 52.53072454793873], + [4.6561997951021805, 52.53152920567765], + [4.659969262871762, 52.53175138461765] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e559d0d6-f8bf-4844-ab6d-fcf9bbad56fa", + "properties": { + "statcode": "GM0397", + "jrstatcode": "2024GM0397", + "statnaam": "Heemstede", + "rubriek": "gemeente", + "id": 119 + }, + "bbox": [ + 100669.38159999996, 481867.33999999985, 104153.24199999869, + 486455.4149999991 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.617718631263883, 52.361530686346455], + [4.618246545554131, 52.361466658067236], + [4.625628789435276, 52.362126367119586], + [4.630340572387389, 52.36064679654049], + [4.63662633735538, 52.36148417651103], + [4.637360431808469, 52.36025753883471], + [4.63758967327478, 52.35946778314871], + [4.6349435911455865, 52.35596183606104], + [4.6358501700800545, 52.35403683571199], + [4.636598500412649, 52.353183806094606], + [4.639802472665188, 52.350907292375375], + [4.6403855960378655, 52.34983365244002], + [4.6403247993766, 52.34556296292863], + [4.641033667004313, 52.34398555620767], + [4.639380608988958, 52.34062889775252], + [4.6396480167352445, 52.338906077250776], + [4.630584296438668, 52.3375343100253], + [4.620111229567507, 52.333722626098336], + [4.616564207532729, 52.33147340189419], + [4.613467192096652, 52.328064465213735], + [4.611661876539924, 52.32541985010331], + [4.611386097446126, 52.32225594757351], + [4.611383864514891, 52.322204579917745], + [4.607814609950954, 52.32349052551603], + [4.60762016802755, 52.323560574956204], + [4.607367329375999, 52.32337626750266], + [4.607258827872346, 52.32329717219862], + [4.6065244020065625, 52.32363135743028], + [4.606235068483591, 52.323763010457654], + [4.59729756303783, 52.3278290172964], + [4.596985324293019, 52.32789480688506], + [4.593873997864974, 52.32864608135739], + [4.593368681831466, 52.32811753076305], + [4.591778780321725, 52.328526349497054], + [4.591307121730687, 52.328232380709096], + [4.5908035216387395, 52.328210447550575], + [4.590187701171412, 52.328352258643946], + [4.5902632622907085, 52.32852288935792], + [4.593582790314478, 52.337809766711864], + [4.596808522683399, 52.34549585290954], + [4.602262476291256, 52.35670310045431], + [4.605723674477389, 52.363404857168845], + [4.608422822001112, 52.36298468784801], + [4.608581017154188, 52.36295794321094], + [4.610655702807668, 52.36270591092859], + [4.617718631263883, 52.361530686346455] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.377f4786-c20d-481a-9e44-274868c492b0", + "properties": { + "statcode": "GM0399", + "jrstatcode": "2024GM0399", + "statnaam": "Heiloo", + "rubriek": "gemeente", + "id": 120 + }, + "bbox": [ + 106438.46200000122, 510333.2800000012, 111966.07400000095, + 515484.5150000006 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.721529880045351, 52.622509010552754], + [4.731264151994945, 52.61868485308395], + [4.731264211458214, 52.61868482645011], + [4.73318813099141, 52.61765487541035], + [4.739451075099122, 52.61386817333628], + [4.737879832141427, 52.61216162178314], + [4.73787956894167, 52.61216134802879], + [4.733347834503464, 52.607547187889026], + [4.733898915000664, 52.60729539022357], + [4.73618661997393, 52.6054446058349], + [4.735409968474029, 52.603824385562845], + [4.737909276398511, 52.59729055577935], + [4.7369661986613165, 52.59576203862743], + [4.737461908905533, 52.59385829369612], + [4.752138624367172, 52.59189088850737], + [4.750968465203071, 52.5891187898703], + [4.744455866224832, 52.59028840444716], + [4.739992728227226, 52.57892813687747], + [4.726707784478335, 52.57963710583275], + [4.724883310490663, 52.578737120689915], + [4.7233391197995545, 52.579765640280954], + [4.718467987416679, 52.58006145593537], + [4.718182420064186, 52.58008085067763], + [4.71025774119176, 52.58058755086962], + [4.703755882519198, 52.5803385355234], + [4.703360083467566, 52.58155099038756], + [4.698316328100628, 52.58185498176965], + [4.696587492293703, 52.5789779162775], + [4.691085643432442, 52.57957822206716], + [4.691304903787201, 52.5800487503979], + [4.6854254379048506, 52.58095699852079], + [4.686243702953873, 52.58295689929283], + [4.685522144958145, 52.58313102943199], + [4.679273805935061, 52.583873237991185], + [4.677654099459087, 52.58433720070169], + [4.677738416178998, 52.58548355899844], + [4.671641318817335, 52.58729802762647], + [4.670615392841841, 52.58872930522184], + [4.673979694009885, 52.58994717165741], + [4.672581364749544, 52.59090410094186], + [4.6724008688389365, 52.59229681409288], + [4.673862810229629, 52.59292861862029], + [4.6731750673893755, 52.59621087310142], + [4.673880207753946, 52.600958920937494], + [4.674442623877866, 52.60377146039893], + [4.680373915929639, 52.60846045678775], + [4.680767320057217, 52.61027944484226], + [4.683692868316469, 52.61267229090891], + [4.685806114433453, 52.61777012658167], + [4.6855109986033865, 52.61931107400589], + [4.6899931818765985, 52.62375103585788], + [4.705700110499243, 52.621354263724115], + [4.707955069999662, 52.62034832009941], + [4.714586523251391, 52.624781898258455], + [4.716308024975612, 52.624985105618485], + [4.721529880045351, 52.622509010552754] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.54008a76-2efd-432d-b283-5357f1cafb71", + "properties": { + "statcode": "GM0400", + "jrstatcode": "2024GM0400", + "statnaam": "Den Helder", + "rubriek": "gemeente", + "id": 121 + }, + "bbox": [ + 109350.34369999915, 543674.7190000005, 116172.62900000066, + 553400.5764000006 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.784972589624478, 52.965795560179565], + [4.783326963632222, 52.964048612621845], + [4.784724046503102, 52.963011535767876], + [4.783595718190475, 52.9623031238795], + [4.781137505965763, 52.96334181118539], + [4.779195997716193, 52.96167757927239], + [4.777745840851026, 52.96091644428476], + [4.774788982437242, 52.96060755822797], + [4.779195846351283, 52.954536799024645], + [4.78803847068627, 52.949179382027616], + [4.790476763229241, 52.94969297433958], + [4.780446242342236, 52.95556948382213], + [4.778231286562839, 52.95939579480288], + [4.778417161613244, 52.95943189227092], + [4.779321319685555, 52.9583135551146], + [4.781023310404335, 52.95876943455663], + [4.782736867089328, 52.95633719195507], + [4.785088094498158, 52.956906281979364], + [4.785556998740625, 52.95430570182705], + [4.787295326706354, 52.9544094627453], + [4.786673700479327, 52.956997990544465], + [4.787273114297262, 52.957050615019234], + [4.787959532159934, 52.95447370784239], + [4.792070497131624, 52.95501618067835], + [4.79087157514353, 52.9575426681656], + [4.791470370879371, 52.95764686432742], + [4.792789874108986, 52.95516893971957], + [4.79438823378104, 52.955495463231884], + [4.79333558867651, 52.957222906099354], + [4.793720827262153, 52.957252926533876], + [4.794160385098723, 52.956623106144654], + [4.796478078462205, 52.957093676291564], + [4.795514602984778, 52.95880956043194], + [4.793199390374136, 52.95837672854659], + [4.792993097304369, 52.95860178139133], + [4.798150605241543, 52.959621013430024], + [4.7965724903439115, 52.961877052362965], + [4.794301101313221, 52.96144962296539], + [4.794806050682037, 52.960203681158035], + [4.793364849595278, 52.95991200928898], + [4.7916401841633816, 52.962200241405625], + [4.789700353763956, 52.96276340073779], + [4.795876402056921, 52.96447736308385], + [4.801325182768598, 52.96452263112578], + [4.803420611357485, 52.95918210192755], + [4.801697454915851, 52.95309401652948], + [4.792839411429133, 52.94412399182355], + [4.791302689887032, 52.93623041064636], + [4.792012380267186, 52.9351616734151], + [4.7921236128082185, 52.93295257268758], + [4.79418133640561, 52.93281316872714], + [4.79473497851251, 52.929342840567024], + [4.803270180152939, 52.91738930252017], + [4.805017207055015, 52.916083962114655], + [4.807062369855545, 52.91594370029288], + [4.808835680091534, 52.91525682153893], + [4.809988607308968, 52.9143531420036], + [4.808050971542344, 52.91357298627484], + [4.806309679563386, 52.913978436249806], + [4.806725049716558, 52.91271434931157], + [4.804531785425825, 52.91048704583804], + [4.797300166488924, 52.9121140324385], + [4.794909200618785, 52.912578272584625], + [4.787654919720738, 52.90234642089488], + [4.782296004245452, 52.89468578892001], + [4.772085933963836, 52.88024892174772], + [4.770938919537558, 52.87862622477848], + [4.769367140010108, 52.87892266999077], + [4.749807258609709, 52.88045518180462], + [4.7425404730749685, 52.88101956441673], + [4.734173173377645, 52.88165838754466], + [4.72678987941117, 52.882207785750346], + [4.70904227489082, 52.883621763764666], + [4.711435950132765, 52.89340836088601], + [4.71242196537065, 52.90154227010525], + [4.7133995996576665, 52.91582738567131], + [4.713373481051107, 52.932292880685104], + [4.714535928572439, 52.938300200431556], + [4.717238608076029, 52.9474537794271], + [4.719419001520015, 52.95113436531282], + [4.729652690989816, 52.961527257990575], + [4.730839133065414, 52.962573671338134], + [4.739686748393299, 52.963801913582444], + [4.748296848411412, 52.9643768566656], + [4.755503760833288, 52.963826804045446], + [4.759272937439322, 52.96460440881354], + [4.763210167096824, 52.965383326729615], + [4.779558903460881, 52.965228965019385], + [4.777821567609513, 52.96396280604805], + [4.777716327292516, 52.963005836253764], + [4.778285708809745, 52.96274904949735], + [4.781326297120004, 52.964758326133705], + [4.782359695333333, 52.96444693182586], + [4.78424155893745, 52.966096319529946], + [4.784972589624478, 52.965795560179565] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.66372b25-e622-48fe-a148-aa7fb0b952b3", + "properties": { + "statcode": "GM0402", + "jrstatcode": "2024GM0402", + "statnaam": "Hilversum", + "rubriek": "gemeente", + "id": 122 + }, + "bbox": [ + 135541.39400000125, 465539.061999999, 143501.10500000045, + 477533.0179999992 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.127191416351198, 52.27864773062213], + [5.131048342795254, 52.278363047207264], + [5.13306817563684, 52.278667596151685], + [5.134169784400654, 52.278042315448566], + [5.1344053546936195, 52.277816417356526], + [5.135358551074838, 52.278086699899134], + [5.136265687176782, 52.27714664717783], + [5.141440728953376, 52.27526049304911], + [5.14394567642512, 52.27430124833072], + [5.143719119773015, 52.27382660526521], + [5.143895229812301, 52.272909182236766], + [5.143936188856415, 52.27134337148442], + [5.144354548052634, 52.27131410522578], + [5.143957328494695, 52.27053517838112], + [5.140478808819893, 52.2650931056313], + [5.137723696883205, 52.263063571108646], + [5.137208848916542, 52.26147626224094], + [5.137558968550615, 52.26090016713066], + [5.137493896595861, 52.260520412196826], + [5.137638827105695, 52.26049627319092], + [5.137700703465109, 52.26048596715183], + [5.137708897901805, 52.260424669699795], + [5.137636371138586, 52.26042200274775], + [5.137497025933547, 52.26041687939615], + [5.13745517019387, 52.25988580096023], + [5.13760932865831, 52.25960390067427], + [5.161808366268519, 52.25992642840917], + [5.162128837708069, 52.255795799643295], + [5.1659467758128494, 52.25770606344977], + [5.1738841406519365, 52.261677798014624], + [5.176939053178711, 52.26288645307423], + [5.183131359241697, 52.264603157211155], + [5.183139258765219, 52.26396920269584], + [5.193513063308994, 52.26637124810836], + [5.199784283473077, 52.26782572254204], + [5.200936266740973, 52.26737135025272], + [5.201580330261499, 52.267937010307115], + [5.201103338109604, 52.26813669693619], + [5.201117095260228, 52.26813994518962], + [5.203821976439654, 52.267115088553076], + [5.199590360538409, 52.26161851321766], + [5.188852858057533, 52.247650562994366], + [5.199398183262996, 52.240203913063176], + [5.199809550376643, 52.23961649407325], + [5.215799308011359, 52.21667383175434], + [5.21896032236997, 52.21212871443328], + [5.2164865744688305, 52.20636680675864], + [5.217214078318181, 52.206232785894024], + [5.216529301202584, 52.205450735358184], + [5.215500726657339, 52.20427342551224], + [5.19258596492611, 52.177832945608294], + [5.184185568068265, 52.17795466607392], + [5.179431666394043, 52.178213385978275], + [5.169704815136731, 52.17880269795828], + [5.166740206642757, 52.17897579151645], + [5.143344316089706, 52.18029883863369], + [5.1432252114451895, 52.17999907992474], + [5.124110587860274, 52.18082739193829], + [5.121939002961221, 52.18558027412205], + [5.129204238837833, 52.18737708370527], + [5.1358918156891935, 52.19030637434006], + [5.141078807249278, 52.19316222189027], + [5.141546170822544, 52.193644793738464], + [5.145120063580179, 52.19661562738459], + [5.145702971575385, 52.19788545143484], + [5.145611634175332, 52.20050443748605], + [5.142441993185737, 52.204967553456015], + [5.1405808667323045, 52.207287311309955], + [5.142512039326159, 52.20780360931584], + [5.1424360229712205, 52.20870695847675], + [5.141788203575613, 52.208599638425056], + [5.142015554294127, 52.208166328445145], + [5.14144116573192, 52.20804946092097], + [5.141106529303212, 52.20847711769103], + [5.13998275530263, 52.20828812006977], + [5.1399547588339765, 52.20801802958732], + [5.139828257949978, 52.20798031226594], + [5.139739672234561, 52.20809706536181], + [5.139511124573826, 52.20838058815433], + [5.137575826581924, 52.210975566638496], + [5.133943143298605, 52.21429483201144], + [5.133148921493548, 52.21446086751699], + [5.128403344278031, 52.216733577090466], + [5.12841883344888, 52.21683812197528], + [5.126958663187439, 52.21740958118843], + [5.12252675737762, 52.21882509544609], + [5.122655394909256, 52.219650278409844], + [5.122522859736232, 52.21993240105466], + [5.122336932670941, 52.220814563245064], + [5.123309836883476, 52.22138884743965], + [5.130008318037192, 52.221491024865315], + [5.129955070615952, 52.222392400462994], + [5.128062622963745, 52.22238339383047], + [5.1279446949181215, 52.224403821760355], + [5.138520214037505, 52.224590238284506], + [5.138515909733455, 52.22466918752976], + [5.1402325651808285, 52.22453595670496], + [5.140255164905103, 52.22464349867316], + [5.141791303596617, 52.22549347150058], + [5.141361924828357, 52.23684732580714], + [5.141326534647375, 52.23827318084952], + [5.1420201931355995, 52.239312581426496], + [5.142277247732326, 52.243316840483054], + [5.140047962090094, 52.24577423422218], + [5.139604521058461, 52.254014789163705], + [5.136915750362494, 52.253953286143485], + [5.136499531160265, 52.25958304676778], + [5.132743272694002, 52.259736200385824], + [5.127331432433582, 52.25957856600319], + [5.125574058886237, 52.260217641492325], + [5.120534179252908, 52.27136251993024], + [5.119151491502531, 52.273537999591156], + [5.108444307961027, 52.275642442276656], + [5.102928750292479, 52.277649277666995], + [5.1020658065774205, 52.27989083673558], + [5.1020877305694095, 52.281703723414026], + [5.102816374449492, 52.28238355117031], + [5.104298008702268, 52.28325521528793], + [5.104646015309711, 52.285384664830715], + [5.107354559462466, 52.28546162260944], + [5.116026567291901, 52.28277529359394], + [5.121800173008003, 52.28172180366897], + [5.127191416351198, 52.27864773062213] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.2813daee-9da0-4a3e-8a77-21489fe92fad", + "properties": { + "statcode": "GM0405", + "jrstatcode": "2024GM0405", + "statnaam": "Hoorn", + "rubriek": "gemeente", + "id": 123 + }, + "bbox": [ + 129701.14799999818, 515886.3409000002, 136877.97800000012, + 521923.46400000155 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.086730399465687, 52.68436548025188], + [5.089386447996709, 52.68056280564953], + [5.09175230420987, 52.67892372303617], + [5.096105174033973, 52.67488900189762], + [5.096484508005445, 52.67433037595484], + [5.09881827286266, 52.67126186030614], + [5.096669607446745, 52.670346008272915], + [5.096934035173583, 52.67010764309303], + [5.096207787108555, 52.66981365675704], + [5.096266102369312, 52.66972285976413], + [5.098749605185383, 52.66743637215834], + [5.100888770209134, 52.66581995676756], + [5.1014197559381715, 52.66603188889464], + [5.102783690607252, 52.66477261526096], + [5.103099829281758, 52.66489598937966], + [5.1034115234297195, 52.664567555649754], + [5.1040527594591465, 52.66395549430931], + [5.1048619168473355, 52.66429583316606], + [5.10627133926787, 52.663004513840995], + [5.106554063649707, 52.66314988375508], + [5.107634683677816, 52.662157474106124], + [5.107232919745584, 52.66199570666763], + [5.108325142930926, 52.660795807367315], + [5.108039987636065, 52.66069282138212], + [5.1082315256428465, 52.66040162355568], + [5.108003949671449, 52.66026951068597], + [5.108072378912516, 52.65994856466999], + [5.107591186260364, 52.65972005132153], + [5.111339641101209, 52.65722196091648], + [5.110685379518007, 52.65670546079626], + [5.114758987230877, 52.65378291530825], + [5.1161156503978145, 52.65431163920047], + [5.119414041101635, 52.65116322804463], + [5.116441184382389, 52.65062295195585], + [5.117078378116085, 52.649985803244164], + [5.105192219299367, 52.64779064061332], + [5.101964126930951, 52.64702846361099], + [5.103605084639738, 52.64173657788197], + [5.106045227229735, 52.63558981925558], + [5.10075439602889, 52.634737101552766], + [5.093200525638562, 52.639892997932655], + [5.092426231293014, 52.64078773582648], + [5.089493004978289, 52.64016673872548], + [5.088657334050373, 52.64251076117833], + [5.083448336082622, 52.641586203465096], + [5.08428611488651, 52.64086405327358], + [5.088289899305625, 52.639751189174774], + [5.0883555057955245, 52.63942900359683], + [5.0862782652405585, 52.640075717082716], + [5.085929316753718, 52.639813581973016], + [5.088420658490508, 52.638344090250634], + [5.087755933457305, 52.63781574754474], + [5.08569601169148, 52.63966080984223], + [5.084515374590847, 52.640492252738674], + [5.081666524343647, 52.6412903380398], + [5.081412422979882, 52.64154439597289], + [5.079476587193471, 52.64063947757225], + [5.078504817966652, 52.641482824502596], + [5.076887454826436, 52.641327866626604], + [5.0752398618032055, 52.64047451014575], + [5.075385781266601, 52.63954121639827], + [5.068074811340109, 52.63483794639799], + [5.064402038244261, 52.63698373371384], + [5.06702827602456, 52.63728211521216], + [5.066951890140997, 52.63840213095328], + [5.065673207199663, 52.638350780750706], + [5.063765455560587, 52.637393855876276], + [5.063563810834683, 52.637639052266465], + [5.06568424869904, 52.63904222442311], + [5.06847945892477, 52.63925480977919], + [5.068313100014951, 52.64020454806937], + [5.066986749567605, 52.64005492643237], + [5.066464603698108, 52.640768729053875], + [5.066299407896748, 52.64072160273973], + [5.066217815551072, 52.64060170332918], + [5.066423173143051, 52.640609286153314], + [5.066546421289485, 52.640379269546585], + [5.06623696832476, 52.640308119895636], + [5.066139232012112, 52.63926514255272], + [5.0646800473876645, 52.63903548203723], + [5.062979267152957, 52.63788813273479], + [5.062996522538054, 52.63722032624658], + [5.063446103984512, 52.63750626212543], + [5.063572369956108, 52.63731075988866], + [5.063152248534235, 52.63696226737671], + [5.062974527226767, 52.633487396032514], + [5.061805801368806, 52.63358747300359], + [5.0618035604391425, 52.636483728339904], + [5.058239728783793, 52.63684645921783], + [5.057778476313354, 52.63459369700155], + [5.060465803954981, 52.63384019125019], + [5.060438150627462, 52.6330994744446], + [5.0555447554707795, 52.63395068124891], + [5.055544645106845, 52.63583401758593], + [5.0572104083809, 52.63750585887215], + [5.05694071349534, 52.638008918854204], + [5.0522166488442135, 52.64142213661088], + [5.045662105446962, 52.64163685154759], + [5.039962857948099, 52.63803946077826], + [5.0389967168725285, 52.63661399966875], + [5.034867211536972, 52.63645476408842], + [5.029791161499068, 52.635537103552686], + [5.027362317798552, 52.63403219846511], + [5.023108135160844, 52.63278808778643], + [5.018903751364419, 52.62991887167766], + [5.016861543653074, 52.63027803641327], + [5.016493879578058, 52.63085434355113], + [5.013536646979903, 52.63043138033617], + [5.014874663305854, 52.634995690105065], + [5.018292064051316, 52.638263439427824], + [5.026387765705029, 52.64174099193682], + [5.027033011291915, 52.64198900280763], + [5.02992158847406, 52.64350911214656], + [5.034072024221638, 52.645746064901815], + [5.037139357853963, 52.647657786912795], + [5.038143443416942, 52.648961056098635], + [5.037678401364246, 52.650229659210204], + [5.03892951215275, 52.65614051253246], + [5.036583874907632, 52.662062933437596], + [5.034762670632922, 52.666556351921834], + [5.035539990375439, 52.67045296029554], + [5.038306495575041, 52.670806102783104], + [5.045459292599873, 52.671742691334074], + [5.048882831181296, 52.6720302135753], + [5.0515394192377165, 52.6722079824872], + [5.063455468978659, 52.67313338780642], + [5.062494233250373, 52.674881525710624], + [5.062359955638381, 52.675073259357724], + [5.062139435030003, 52.67525107637732], + [5.063346313967282, 52.6757971823152], + [5.062291812558051, 52.67670763091031], + [5.082606663065378, 52.68400320344415], + [5.083002343995762, 52.683200832726975], + [5.086730399465687, 52.68436548025188] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.98e21ab7-1f7e-495a-80fa-1da60516b673", + "properties": { + "statcode": "GM0406", + "jrstatcode": "2024GM0406", + "statnaam": "Huizen", + "rubriek": "gemeente", + "id": 124 + }, + "bbox": [ + 141180.17300000042, 475470.7199999988, 148219.7655000016, + 480893.2241999991 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.252722123591985, 52.31013658814529], + [5.256358016677329, 52.30683302788927], + [5.259881182524398, 52.30611367553537], + [5.26427406671928, 52.30676576240117], + [5.264733320382062, 52.30645362671922], + [5.27406446660331, 52.304144942706614], + [5.278001970456805, 52.30235926152117], + [5.278819748839502, 52.30238706580659], + [5.281126625790984, 52.30059356501869], + [5.287809914844219, 52.297603052853795], + [5.2809117899122775, 52.293780734679075], + [5.277743393061248, 52.29607395553646], + [5.274408178333112, 52.29340756677405], + [5.271161273133791, 52.29099847100377], + [5.270989052397399, 52.290921487655254], + [5.268316014092693, 52.29009247034205], + [5.257563005554652, 52.28674234038792], + [5.25010486032893, 52.28441929229267], + [5.249802910182148, 52.284325358269356], + [5.246225781437708, 52.28319545561792], + [5.246382721587102, 52.28233279314695], + [5.2413297241345695, 52.281322399578116], + [5.2412300342995675, 52.28131431081051], + [5.2363551217747855, 52.28118886722211], + [5.232492278979052, 52.281270227403155], + [5.227600564383201, 52.27712905396265], + [5.210957393397854, 52.27735049824123], + [5.21087650922446, 52.277339293119006], + [5.207222370066708, 52.27434897912283], + [5.207025334678828, 52.27341838354844], + [5.20689703964745, 52.2720926286398], + [5.203821976439654, 52.267115088553076], + [5.201117095260228, 52.26813994518962], + [5.196222841718254, 52.270892936162284], + [5.191179874821426, 52.27374243548942], + [5.187598272303521, 52.27524438029274], + [5.184702824542366, 52.27800968371148], + [5.18998731022849, 52.279098643516114], + [5.194473268985762, 52.280940669590514], + [5.194347404771672, 52.28242847106545], + [5.194662172189152, 52.2834785598334], + [5.192137395953329, 52.28411569997124], + [5.193802863425794, 52.285527890899196], + [5.195683156160979, 52.28476537417372], + [5.1957639921287075, 52.28600913839542], + [5.19530577384957, 52.28824419415777], + [5.195383357003244, 52.28858077757143], + [5.193232180470064, 52.28822297288821], + [5.192379474614199, 52.29032929306788], + [5.187075244978985, 52.29260290074054], + [5.187690736644793, 52.292953293216556], + [5.188223930557436, 52.2925506061997], + [5.190373047147379, 52.29323401468865], + [5.190433901656756, 52.29346422506751], + [5.19591712865506, 52.29507667519681], + [5.194991649370559, 52.297107370900484], + [5.195805400958646, 52.2988989892519], + [5.197798070604373, 52.30033454951847], + [5.2022462876985855, 52.29971821947409], + [5.203496025363798, 52.29965669136611], + [5.20872169950818, 52.30025737387646], + [5.209010012206491, 52.302020324979495], + [5.210489430571736, 52.301860683696965], + [5.211759527025664, 52.300095275371966], + [5.214126561376555, 52.29849803337031], + [5.2194802297349465, 52.2991571155606], + [5.227173649080907, 52.30116685832302], + [5.229560711934036, 52.30172389400907], + [5.229134412163528, 52.3028030631022], + [5.230080520603479, 52.30292443448092], + [5.229812358191386, 52.30448091860229], + [5.230352435220955, 52.305446936727705], + [5.228488450933167, 52.31125397490765], + [5.230944505260226, 52.31183306909707], + [5.240183726864542, 52.31171173068051], + [5.24250370810583, 52.31128450677226], + [5.243742947293636, 52.31210922025884], + [5.244244551257193, 52.311863192413725], + [5.242829048839573, 52.31059984194449], + [5.244023363136682, 52.31009013484091], + [5.244957483260953, 52.310839600768844], + [5.245191199186349, 52.31075272777004], + [5.245365904464133, 52.31009477618275], + [5.2452409070782, 52.30972115293481], + [5.244008376913236, 52.308977974889935], + [5.242793825753074, 52.30835562460624], + [5.241296966069612, 52.305796361162], + [5.242188090692116, 52.305730858261335], + [5.243482386580706, 52.308100582124645], + [5.244226921497962, 52.30863847924086], + [5.245243092010378, 52.30829741589065], + [5.245296627544966, 52.30840459895033], + [5.24545148277585, 52.30851377458196], + [5.245133010503383, 52.30862961532083], + [5.2454033306339145, 52.308907564617776], + [5.244978055420134, 52.309166704280216], + [5.247009212803253, 52.31226952234936], + [5.247420091391636, 52.31203452011291], + [5.246311022631578, 52.31032365358494], + [5.251621193897036, 52.30904114106198], + [5.251307941736442, 52.31010169286948], + [5.248460280745548, 52.31173333600084], + [5.24787039096992, 52.31385311402582], + [5.249118747488711, 52.31583384641103], + [5.249956395881951, 52.31591354697998], + [5.249607929286275, 52.31367898842954], + [5.252121624675636, 52.31206368530353], + [5.252722123591985, 52.31013658814529] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d37da9b1-6486-467a-8c61-ee2f26cb3ba6", + "properties": { + "statcode": "GM0415", + "jrstatcode": "2024GM0415", + "statnaam": "Landsmeer", + "rubriek": "gemeente", + "id": 125 + }, + "bbox": [ + 121411.74300000072, 491629.5571000017, 125329.7340000011, + 500404.6000000015 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.932086379719501, 52.487548283645864], + [4.941446541497896, 52.48540751871873], + [4.943447946502723, 52.48769111583099], + [4.94875278942051, 52.48661738334154], + [4.948316321936885, 52.48400482830396], + [4.947168980385004, 52.47906319302592], + [4.94687722863381, 52.46888310692068], + [4.950676229238107, 52.45821979693883], + [4.9480016071419195, 52.452388692579596], + [4.948786132990363, 52.44797399567669], + [4.950861297141673, 52.43714072432768], + [4.950689657201392, 52.42359613093973], + [4.947788574187965, 52.42156224111937], + [4.944779878900251, 52.41501817929481], + [4.942646808489206, 52.41385998187404], + [4.9351423009009645, 52.41203977132432], + [4.930715883212809, 52.41160758232977], + [4.922745729643274, 52.41552968336785], + [4.9204503100191035, 52.41660703493619], + [4.914300657840509, 52.418496927393704], + [4.90966031508941, 52.42024925806675], + [4.907962199779475, 52.42087368157187], + [4.9080741569813835, 52.421102096057055], + [4.907453129612459, 52.42125664371424], + [4.905691512026024, 52.422129882719865], + [4.898741017515518, 52.4244897639142], + [4.898881368340483, 52.42876460829697], + [4.8992814087070595, 52.43130399516172], + [4.898095201141596, 52.43416890566672], + [4.897005466752039, 52.434737665496954], + [4.89445572472749, 52.43711966110976], + [4.896545313133327, 52.43985352678824], + [4.896489226275907, 52.446184142708034], + [4.895076386529688, 52.449808826951134], + [4.893077433470834, 52.45411459052525], + [4.893318972656528, 52.45727606991007], + [4.903101045409633, 52.4719538725238], + [4.9064696421211025, 52.47982647495597], + [4.908220900217422, 52.48309687403526], + [4.916126955072171, 52.486545207966266], + [4.920650892489534, 52.49043447685898], + [4.922394946703982, 52.49027999612102], + [4.9302815731949545, 52.48865335624622], + [4.930016408632252, 52.48794201007887], + [4.932086379719501, 52.487548283645864] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.5bc1fe7e-bc8f-48aa-a5b1-01af95ecdc4b", + "properties": { + "statcode": "GM0417", + "jrstatcode": "2024GM0417", + "statnaam": "Laren (NH.)", + "rubriek": "gemeente", + "id": 126 + }, + "bbox": [ + 141454.16099999845, 469350.33300000057, 145296.40900000185, + 476111.83100000024 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.225980648353807, 52.268197685941715], + [5.229580815312734, 52.26546369862637], + [5.23013488592708, 52.26561834032225], + [5.230593010247802, 52.26469495151241], + [5.232048318703337, 52.264467177965855], + [5.244064311749587, 52.25466413901625], + [5.244081128862236, 52.2546627842358], + [5.245093123294268, 52.254431068107735], + [5.238407718386437, 52.245660318417805], + [5.237368800154148, 52.24427655752313], + [5.231879643068952, 52.23707766008352], + [5.222901246812829, 52.22526095050992], + [5.224730241326966, 52.22519709437526], + [5.2205774994773195, 52.21597137070281], + [5.21896032236997, 52.21212871443328], + [5.215799303621585, 52.21667383174798], + [5.199809553308466, 52.23961649317913], + [5.199398180315973, 52.240203917552385], + [5.188852858057533, 52.247650562994366], + [5.199590360538409, 52.26161851321766], + [5.203821976439654, 52.267115088553076], + [5.207692472399895, 52.266268211991985], + [5.2092444434392515, 52.26593451449599], + [5.21164372251881, 52.267343687956156], + [5.2168676727963526, 52.26899349837805], + [5.225507903248677, 52.272908872530216], + [5.225980648353807, 52.268197685941715] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.163913e6-094e-474a-b063-5badd04cb91d", + "properties": { + "statcode": "GM0420", + "jrstatcode": "2024GM0420", + "statnaam": "Medemblik", + "rubriek": "gemeente", + "id": 127 + }, + "bbox": [ + 126933.60300000012, 519723.27600000054, 147218.32939999923, + 531962.1336000003 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.146568304099243, 52.74559415384902], + [5.14891167490341, 52.74364569960128], + [5.142562889890357, 52.745852519478774], + [5.141527363380303, 52.74765452955896], + [5.146568304099243, 52.74559415384902] + ] + ], + [ + [ + [5.112649606392511, 52.77389346207268], + [5.108254962566524, 52.77095732821797], + [5.108772634227783, 52.770654498797555], + [5.111737851445295, 52.772339099123954], + [5.112109293390853, 52.77158260743314], + [5.108991706022983, 52.77006059700189], + [5.109391066486376, 52.76947967137392], + [5.112918670328904, 52.77092392667993], + [5.112240234046427, 52.77267015706264], + [5.112911101789507, 52.773519225952036], + [5.11364285842877, 52.774109493973555], + [5.116512998784464, 52.77074952989989], + [5.11539839609092, 52.77067363638827], + [5.117704199155768, 52.76967509480491], + [5.118133283413433, 52.76792299900375], + [5.120401807413856, 52.76802132792931], + [5.118454515668171, 52.76730220694146], + [5.119665827148013, 52.765535985193345], + [5.119573256891161, 52.765530674683056], + [5.118513696491421, 52.76616058311449], + [5.1179088650289115, 52.765825593684895], + [5.118462098139757, 52.764563978672314], + [5.119720528259662, 52.76466514460702], + [5.120188170645863, 52.764688577420436], + [5.123496376881477, 52.765174499577775], + [5.123867173526513, 52.76486789492026], + [5.12048536594888, 52.76412546749999], + [5.120405339668869, 52.760792179809606], + [5.121137313427147, 52.76123280036209], + [5.12164630551983, 52.761212360922954], + [5.120111356118577, 52.760133953847756], + [5.118850977196356, 52.7600666208277], + [5.118926755185736, 52.759939122272165], + [5.1191227385655855, 52.75993824220057], + [5.119229693630791, 52.75978681612406], + [5.120087261552871, 52.759772440949064], + [5.121066073462436, 52.7586247400101], + [5.123504280581913, 52.757576395210904], + [5.1231777937584315, 52.75730352592401], + [5.123541494029669, 52.755687089036456], + [5.130001907035282, 52.75168899965385], + [5.132390637549701, 52.75086422404966], + [5.145556817301026, 52.74189575994202], + [5.14892484200019, 52.743107653991444], + [5.147239567043937, 52.73969857336746], + [5.147668436042445, 52.73926204692927], + [5.149997621893673, 52.740491477469035], + [5.152850103548478, 52.74101915344282], + [5.15172084318866, 52.74004451126965], + [5.154407412109613, 52.73850609548434], + [5.155120684719878, 52.73943661614306], + [5.1617636820672095, 52.740159288045994], + [5.163065371949672, 52.738907129635585], + [5.1652845155599145, 52.73963490749616], + [5.165130469825339, 52.74110298590623], + [5.169916216069436, 52.74076795541836], + [5.168486319118429, 52.739710259635395], + [5.169886075446928, 52.73863766302246], + [5.171404943250404, 52.73866348178581], + [5.172901401997537, 52.73947047869793], + [5.172726287057775, 52.7400928997155], + [5.170742506650386, 52.74045798924943], + [5.17087416601923, 52.740896441352376], + [5.174787717748607, 52.73954204727569], + [5.176037224866102, 52.739583074065884], + [5.1802828623622, 52.74137849590457], + [5.184630637594678, 52.74658244981575], + [5.182684236211549, 52.74696057889235], + [5.183630219465776, 52.747199787261614], + [5.1857530513238945, 52.74660265033579], + [5.186507944107664, 52.74755192625233], + [5.192860618483155, 52.7550302396545], + [5.20379833299643, 52.755010388831856], + [5.213792032086203, 52.754620984743475], + [5.222892325875917, 52.75365984644365], + [5.225713998052675, 52.75245713148269], + [5.2295373905999805, 52.75257290978826], + [5.258268351511215, 52.753463524435524], + [5.261129191376196, 52.75263901669183], + [5.269987484766542, 52.74752985648428], + [5.25907787893145, 52.74648509465982], + [5.2583717703636275, 52.74567914464773], + [5.266558198390811, 52.74541654991567], + [5.271965728840722, 52.74632700689099], + [5.269903522790584, 52.745171536485344], + [5.2594322188956095, 52.744861704262355], + [5.254315629657635, 52.74697675230425], + [5.2550664796609095, 52.74215936896229], + [5.257340070208998, 52.71984905323323], + [5.257501406682001, 52.71618077377853], + [5.230251118997627, 52.717369864015666], + [5.220133561067031, 52.71769637400259], + [5.210385674278112, 52.71677626936679], + [5.185373418328698, 52.71022807934512], + [5.187023105398028, 52.70745180008074], + [5.160121766384473, 52.701007667742424], + [5.153174395357048, 52.69891471128396], + [5.145795436146358, 52.69667678891612], + [5.144497524420224, 52.696324816463985], + [5.125179575485141, 52.69107580737657], + [5.09175230420987, 52.67892372303617], + [5.089386447996709, 52.68056280564953], + [5.086730399465687, 52.68436548025188], + [5.083002343995762, 52.683200832726975], + [5.082606663065378, 52.68400320344415], + [5.062291812558051, 52.67670763091031], + [5.063346313967282, 52.6757971823152], + [5.062139435030003, 52.67525107637732], + [5.062359955638381, 52.675073259357724], + [5.062494233250373, 52.674881525710624], + [5.063455468978659, 52.67313338780642], + [5.0515394192377165, 52.6722079824872], + [5.048882831181296, 52.6720302135753], + [5.045459292599873, 52.671742691334074], + [5.038306495575041, 52.670806102783104], + [5.035539990375439, 52.67045296029554], + [5.034762670632922, 52.666556351921834], + [5.021314389092877, 52.66440920102669], + [5.012653923721126, 52.66827721453079], + [5.006103954749196, 52.670268921678016], + [5.003414421404511, 52.67048913229503], + [5.0035391210829445, 52.67335640182204], + [5.001492617131752, 52.6737206540539], + [5.002353033780351, 52.67492679563492], + [4.983009358209969, 52.67509999247183], + [4.9792047098529935, 52.679679163222815], + [4.9793215284440775, 52.68223309349433], + [4.979597043077442, 52.6841333836367], + [4.980375779196343, 52.68939355730042], + [4.980455665988262, 52.69035013870063], + [4.981514496839817, 52.69034075719768], + [4.98158753159179, 52.690936890053166], + [4.981582148880824, 52.690936772852496], + [4.981574806706271, 52.69101754107692], + [4.981157393409764, 52.69275970581269], + [4.984333317811159, 52.69732619784779], + [4.984469276775967, 52.6975232484686], + [4.983818825499736, 52.69764511154113], + [4.986106823652333, 52.698925661912845], + [4.985770538641885, 52.69978082692053], + [4.984449433119183, 52.70095139557035], + [4.977810574859701, 52.70519154732731], + [4.977651655435306, 52.70687420291722], + [4.976588224314726, 52.70821397269981], + [4.971888143298852, 52.71213815247798], + [4.9838049897581485, 52.71664418629547], + [4.98452344075803, 52.716918068995355], + [4.985565337322195, 52.71634965817703], + [4.9882712914440654, 52.71338226598866], + [5.011163557921942, 52.72290737260713], + [5.01104838398162, 52.72621695088093], + [5.011047248589038, 52.726241486076596], + [5.007579893897729, 52.72485480219955], + [5.007493558609371, 52.725586668191454], + [5.004696561679794, 52.72810927560282], + [5.002844382761637, 52.73154212840776], + [5.00114690444534, 52.733535066376874], + [4.999022368134583, 52.73485812462265], + [4.998602465078484, 52.73550423489689], + [4.996943449600155, 52.7380413309771], + [4.996386534668564, 52.738619636282365], + [4.997420775243861, 52.738985556418406], + [4.996558409014679, 52.73964773475378], + [4.998382600460603, 52.74028859107371], + [4.995215377550746, 52.7436956555313], + [4.99840394133238, 52.744643095106746], + [4.998393109243112, 52.74506163274962], + [4.996821684581634, 52.746455795893404], + [4.996143915223876, 52.74715078401944], + [4.996545540519206, 52.747429715280056], + [4.996860451522888, 52.752065330722296], + [5.025926308273927, 52.751571093536846], + [5.0399267110047425, 52.75238979676641], + [5.044998692624851, 52.753133025730286], + [5.056920522044771, 52.7574980600876], + [5.061724660207071, 52.76066335208595], + [5.064292574939627, 52.762587647611724], + [5.067460789991217, 52.766670852460464], + [5.069722976698589, 52.768103167655134], + [5.0762114404602405, 52.769245384739484], + [5.083582439967433, 52.76961480178978], + [5.0921078463083695, 52.76928520752794], + [5.093665887133967, 52.76969187826489], + [5.098672958082251, 52.77235475864568], + [5.099631764546621, 52.773309534386556], + [5.104148290917491, 52.77445227409698], + [5.112223899570435, 52.774643330616826], + [5.112649606392511, 52.77389346207268] + ], + [ + [5.103232336868752, 52.76998158729684], + [5.108728095346334, 52.76964482823209], + [5.107866921898716, 52.77039656219991], + [5.10320458029528, 52.770977333550796], + [5.103232336868752, 52.76998158729684] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4a0d9726-dc08-4587-9961-9a0a7945f398", + "properties": { + "statcode": "GM0431", + "jrstatcode": "2024GM0431", + "statnaam": "Oostzaan", + "rubriek": "gemeente", + "id": 128 + }, + "bbox": [ + 118002.89200000092, 493073.9070000015, 122341.057, 499230.5920000002 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.9064696421211025, 52.47982647495597], + [4.903101045409633, 52.4719538725238], + [4.893318972656528, 52.45727606991007], + [4.893077433470834, 52.45411459052525], + [4.895076386529688, 52.449808826951134], + [4.896489226275907, 52.446184142708034], + [4.896545313133327, 52.43985352678824], + [4.89445572472749, 52.43711966110976], + [4.897005466752039, 52.434737665496954], + [4.898095201141596, 52.43416890566672], + [4.8992814087070595, 52.43130399516172], + [4.898881368340483, 52.42876460829697], + [4.898741017515518, 52.4244897639142], + [4.898739713829391, 52.42446133971987], + [4.888142627920335, 52.425618067617066], + [4.887684461887339, 52.42558549669812], + [4.886862192382404, 52.42556236026843], + [4.881647707187828, 52.425664140004926], + [4.8789934575939125, 52.42569632751583], + [4.8765735475269105, 52.426227923438745], + [4.873621522437111, 52.428464794719126], + [4.873206518454473, 52.429549195653635], + [4.871461580593695, 52.430101280887776], + [4.869544122584994, 52.429846453628144], + [4.865970480499965, 52.4306786640908], + [4.865257034284414, 52.43054335224022], + [4.865013751309488, 52.43054926392509], + [4.864206451369951, 52.43037457981488], + [4.864187140795089, 52.430264189545035], + [4.862677453449354, 52.429941314966214], + [4.861711945390915, 52.42977571894334], + [4.85993588822188, 52.43239287081271], + [4.85812168808534, 52.43505655340293], + [4.857572125888087, 52.43586435022006], + [4.857090760271519, 52.43646669065799], + [4.853977964670573, 52.44157813534362], + [4.852933250210555, 52.442957063659996], + [4.842950947488374, 52.45226082789627], + [4.844068745454251, 52.45275351476524], + [4.844426976285937, 52.45292140242065], + [4.844924427245896, 52.45648167856417], + [4.848568437807687, 52.45956869727294], + [4.852504937847793, 52.47036706622033], + [4.8625866963135085, 52.46849752303201], + [4.867226324107673, 52.47057703952404], + [4.882437860642703, 52.47480183775707], + [4.890532451246778, 52.478959187005], + [4.8956309644300555, 52.47822750804143], + [4.9064696421211025, 52.47982647495597] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c87f236a-a8a6-41b4-9767-1332de394037", + "properties": { + "statcode": "GM0432", + "jrstatcode": "2024GM0432", + "statnaam": "Opmeer", + "rubriek": "gemeente", + "id": 129 + }, + "bbox": [ + 121981.67399999872, 520567.4789999984, 129593.97800000012, + 529861.4880000018 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.954973254512891, 52.754066253023936], + [4.955821565041147, 52.75327859871035], + [4.958434003332616, 52.75328945790395], + [4.9874405882144535, 52.75241704347871], + [4.996860451522888, 52.752065330722296], + [4.996545540519206, 52.747429715280056], + [4.996143915223876, 52.74715078401944], + [4.996821684581634, 52.746455795893404], + [4.998393109243112, 52.74506163274962], + [4.99840394133238, 52.744643095106746], + [4.995215377550746, 52.7436956555313], + [4.998382600460603, 52.74028859107371], + [4.996558409014679, 52.73964773475378], + [4.997420775243861, 52.738985556418406], + [4.996386534668564, 52.738619636282365], + [4.996943449600155, 52.7380413309771], + [4.998602465078484, 52.73550423489689], + [4.999022368134583, 52.73485812462265], + [5.00114690444534, 52.733535066376874], + [5.002844382761637, 52.73154212840776], + [5.004696561679794, 52.72810927560282], + [5.007493558609371, 52.725586668191454], + [5.007579893897729, 52.72485480219955], + [5.011047248589038, 52.726241486076596], + [5.01104838398162, 52.72621695088093], + [5.011163557921942, 52.72290737260713], + [4.9882712914440654, 52.71338226598866], + [4.985565337322195, 52.71634965817703], + [4.98452344075803, 52.716918068995355], + [4.9838049897581485, 52.71664418629547], + [4.971888143298852, 52.71213815247798], + [4.976588224314726, 52.70821397269981], + [4.977651655435306, 52.70687420291722], + [4.977810574859701, 52.70519154732731], + [4.984449433119183, 52.70095139557035], + [4.985770538641885, 52.69978082692053], + [4.986106823652333, 52.698925661912845], + [4.983818825499736, 52.69764511154113], + [4.984469276775967, 52.6975232484686], + [4.984333317811159, 52.69732619784779], + [4.981157393409764, 52.69275970581269], + [4.981574806706271, 52.69101754107692], + [4.981582148880824, 52.690936772852496], + [4.98158753159179, 52.690936890053166], + [4.981514496839817, 52.69034075719768], + [4.980455665988262, 52.69035013870063], + [4.980375779196343, 52.68939355730042], + [4.979597043077442, 52.6841333836367], + [4.9793215284440775, 52.68223309349433], + [4.9792047098529935, 52.679679163222815], + [4.976759445286271, 52.67742003942878], + [4.9715789782847635, 52.67915865735804], + [4.970622531953246, 52.679631356736834], + [4.9695752992034565, 52.67891608022139], + [4.966418780575065, 52.67854998386095], + [4.966320511965744, 52.6771953238665], + [4.964737922999257, 52.67705029066833], + [4.964742028248922, 52.676284608293926], + [4.963410855273674, 52.67559743375488], + [4.962130799283623, 52.676027338207454], + [4.96167064113362, 52.6746118935971], + [4.96176589621424, 52.673708900721294], + [4.9607879069167975, 52.67352298056499], + [4.960564627999692, 52.6737392177504], + [4.952889550166275, 52.672130266071626], + [4.952742724277662, 52.67176547510289], + [4.950784438178336, 52.672866054739934], + [4.949412044816083, 52.67448290030817], + [4.933853713489834, 52.678650072228066], + [4.92814328535814, 52.680265275230916], + [4.925181940850325, 52.68119020094501], + [4.923954829522676, 52.68158099593691], + [4.922720515913554, 52.68183684535973], + [4.918767922242597, 52.682568842100295], + [4.918100923540137, 52.6828034453211], + [4.90561821221224, 52.68641909511615], + [4.904979375234919, 52.687268490818575], + [4.914128271865405, 52.69149858773737], + [4.91710490631245, 52.692868808866656], + [4.917324723699132, 52.692957030931574], + [4.917518122786067, 52.6939614221106], + [4.918112594208722, 52.696918641160686], + [4.91586194297553, 52.69934112859331], + [4.9108468390768625, 52.69990944646801], + [4.899860112550244, 52.69758659571289], + [4.8998809617486145, 52.699485042278006], + [4.899853896861063, 52.7001444433872], + [4.899386465854575, 52.703276891282286], + [4.899066645715172, 52.70665427059177], + [4.898669408864142, 52.706831941174705], + [4.903920374041241, 52.7116340623044], + [4.905375309042041, 52.71308515614106], + [4.905638413800401, 52.71349880584823], + [4.910940961403497, 52.718940074797615], + [4.9273631610938535, 52.737348444893726], + [4.931424480026252, 52.74199917905692], + [4.932792670521105, 52.74892753809429], + [4.937815727177377, 52.74982925128208], + [4.94032778406042, 52.75042134640063], + [4.9446138734631075, 52.75278346465489], + [4.944386075197281, 52.753659001662065], + [4.946419220218829, 52.75395230597955], + [4.954342167344739, 52.755296332820954], + [4.954745675312514, 52.75508710071322], + [4.954973254512891, 52.754066253023936] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.67f66c97-bcac-4d0a-bece-6cd698c7e3b0", + "properties": { + "statcode": "GM0437", + "jrstatcode": "2024GM0437", + "statnaam": "Ouder-Amstel", + "rubriek": "gemeente", + "id": 130 + }, + "bbox": [ + 119691.90300000086, 473757.29300000146, 125520.65399999917, + 483502.4136000015 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.950448399648268, 52.33777267117114], + [4.948005534115013, 52.33500363570604], + [4.9460059950731035, 52.33376760241791], + [4.948670962547821, 52.33171362162464], + [4.948908201827201, 52.33152541176352], + [4.942693554599652, 52.32933426461402], + [4.94471619037003, 52.327129715212294], + [4.941874970407941, 52.3261528894667], + [4.940496551101742, 52.32567741856472], + [4.93852894498542, 52.3241972380457], + [4.937961028873451, 52.324122353165244], + [4.937619078014081, 52.323299383298426], + [4.939926935087574, 52.32193600306356], + [4.941042846190137, 52.31961978872973], + [4.940222254030746, 52.3193383767412], + [4.9402067607287545, 52.319333063052206], + [4.939584777545594, 52.31911977369393], + [4.940331467538098, 52.31830229984395], + [4.9398303600508475, 52.31711958241963], + [4.938041578355857, 52.31650549112779], + [4.938723883340369, 52.31509106555702], + [4.935229039114858, 52.313888770482706], + [4.936112287535919, 52.31258072336682], + [4.9341376475440555, 52.31190349758811], + [4.930065153228696, 52.3093399959421], + [4.930326194155234, 52.30918819208275], + [4.929425684113949, 52.308627355427326], + [4.929328206228049, 52.308532108301655], + [4.929908731608506, 52.30810369446724], + [4.929415628133778, 52.30782890843586], + [4.930256242442575, 52.3064297737054], + [4.939243431101763, 52.29693958124784], + [4.943198316479521, 52.2923569848687], + [4.953874046448225, 52.280030277162695], + [4.95524052492509, 52.27830490173321], + [4.953764917963497, 52.278029650525426], + [4.946667500608783, 52.27899155122057], + [4.942691519470023, 52.27818395998696], + [4.9337550764663485, 52.28089576741017], + [4.928587193839562, 52.279611280472444], + [4.926402677419892, 52.27970926318866], + [4.925985695997225, 52.27807831272517], + [4.92765493270485, 52.27380831749794], + [4.926651425743649, 52.2724447913009], + [4.92801465590284, 52.27174215600536], + [4.92929998137112, 52.26995832238282], + [4.929390510379887, 52.268353331696346], + [4.9247136298710945, 52.2669372604582], + [4.923136703113481, 52.26302317713372], + [4.918086870984259, 52.26166513574685], + [4.918553556698897, 52.258586171888794], + [4.917303282638893, 52.25681724349646], + [4.9109702471370635, 52.252682238819624], + [4.908547054127416, 52.252682614619964], + [4.902930740889363, 52.25318180583217], + [4.898568544630832, 52.25093224087821], + [4.891759482573247, 52.253267668585956], + [4.887585668922624, 52.25098923044971], + [4.88271883800424, 52.25371151620988], + [4.877728871488566, 52.25281610606547], + [4.8738529382110265, 52.250742634015204], + [4.872289667838331, 52.251182047744194], + [4.870121266278465, 52.253282155192345], + [4.87066978171798, 52.25484960393803], + [4.87364557506666, 52.25805286280759], + [4.8732735061390855, 52.260599850617666], + [4.879080321073662, 52.26171254846571], + [4.882344831229453, 52.26403950340739], + [4.879470151590741, 52.26707560853426], + [4.881578234593786, 52.272080503766404], + [4.881629632576073, 52.27446285594118], + [4.878783476961418, 52.2789025385244], + [4.8845420895425775, 52.284179523000915], + [4.885326052238155, 52.2864965162851], + [4.888671549192788, 52.28689847078897], + [4.889770868631505, 52.28791828844009], + [4.8874810472671, 52.2889673019423], + [4.88707457113441, 52.28973844317854], + [4.8909133097828645, 52.29149400918586], + [4.891469340447811, 52.29446615375153], + [4.891779566387472, 52.29470278081289], + [4.892971639976253, 52.29522393179498], + [4.901018092328772, 52.29607550269034], + [4.9011756365024866, 52.2969857105498], + [4.898566175794124, 52.299342021514335], + [4.899605868899817, 52.30098105023209], + [4.904091717060668, 52.303712784138945], + [4.9078119245529574, 52.30700292708567], + [4.905255206091492, 52.31068428236042], + [4.906066623593456, 52.31391410096512], + [4.905412078137567, 52.316005289808245], + [4.909135282198676, 52.31825319718976], + [4.912375605882284, 52.31824801066658], + [4.914281497678227, 52.32040797820726], + [4.910807066523139, 52.321883027982366], + [4.911343357278533, 52.32288412491341], + [4.910334168535709, 52.32356632411569], + [4.913881305865073, 52.32455153592583], + [4.913592503871528, 52.32633311475548], + [4.913265564633577, 52.32840083531092], + [4.912931719017911, 52.33051041494324], + [4.917483255489199, 52.3315365235526], + [4.922550463451023, 52.33308419514434], + [4.9237652838149195, 52.33544267366071], + [4.924946086263681, 52.33538279588271], + [4.925362692447881, 52.335381382847174], + [4.925773358351701, 52.33537272262062], + [4.926942028139066, 52.3357765907753], + [4.926769954724728, 52.335964583378065], + [4.928493321245682, 52.33655481496218], + [4.93422065708885, 52.33549600945223], + [4.9356237143520385, 52.33551395462684], + [4.936511666578808, 52.334591987722405], + [4.939674619658191, 52.335607536745925], + [4.94170555174188, 52.33553287192093], + [4.941718420262599, 52.336254529531196], + [4.94172113842704, 52.33640698902389], + [4.942597011835556, 52.33652111257248], + [4.943005838376345, 52.336574383065525], + [4.949860180447958, 52.33852824618747], + [4.9503271793937635, 52.33863741584051], + [4.950616711976389, 52.33793636305319], + [4.950448399648268, 52.33777267117114] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.6a6b57f8-50af-40e9-864d-66946f2279bc", + "properties": { + "statcode": "GM0439", + "jrstatcode": "2024GM0439", + "statnaam": "Purmerend", + "rubriek": "gemeente", + "id": 131 + }, + "bbox": [117462.057, 498153.9140000008, 130396.75, 514152.47399999946], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.956634644576948, 52.61066848433946], + [4.959316112956325, 52.60468048268776], + [4.958675776795309, 52.60326346221817], + [4.9569411085454576, 52.60222257753364], + [4.952523240287815, 52.60117101192435], + [4.949257774954328, 52.59953283881265], + [4.94984990577973, 52.595285342969014], + [4.949371939545158, 52.59478882644942], + [4.949738748024945, 52.592568809785476], + [4.954026257436799, 52.58665853177946], + [4.954485330490555, 52.58420445460206], + [4.953922086328113, 52.58113391678221], + [4.955210170738908, 52.57996357607636], + [4.958572743839783, 52.58030653137095], + [4.9627445156973815, 52.581470934659265], + [4.964729613161917, 52.582785278555946], + [4.968665916614954, 52.58447520677357], + [4.974349526910955, 52.58559290165362], + [4.977471997307174, 52.58663221010732], + [4.980097430166106, 52.5869618091328], + [4.982223896925163, 52.585497861607614], + [4.9918945128218635, 52.58223436030254], + [4.996509699110308, 52.57764361642185], + [4.997168096824661, 52.57512149356811], + [4.995871136932507, 52.57384665475843], + [4.986083826506895, 52.56730435988405], + [4.9804245854811695, 52.56435807309652], + [4.976505008816852, 52.56115235276331], + [4.977638209899898, 52.55344659804337], + [4.97534783535764, 52.54907464163378], + [4.976505626969129, 52.546850001957544], + [4.975655656754433, 52.54539584842071], + [4.973388990342446, 52.5433684812849], + [4.968806425415761, 52.54083515028119], + [4.961952000543955, 52.53634813797053], + [4.959464718583692, 52.533313887056174], + [4.956998749515054, 52.52911035641966], + [4.967254278429298, 52.527367292643], + [4.973200258153784, 52.52541249685028], + [4.986558165953881, 52.52185060909073], + [4.991641211288389, 52.51998438649828], + [4.9920190325198375, 52.51983192407049], + [4.997399271887593, 52.52271289884472], + [5.001094895418673, 52.52691491815116], + [5.008766565020245, 52.52768756840547], + [5.0142595027100345, 52.52623875650998], + [5.019703620502378, 52.523714471616636], + [5.024700057244597, 52.522402726196276], + [5.009804674224441, 52.50680986858868], + [4.997964432297237, 52.49473276621614], + [4.995163857690376, 52.49187261309059], + [4.976494220041409, 52.472740829579244], + [4.974010111158024, 52.470404369170225], + [4.958036125137246, 52.47122813509785], + [4.953617339898734, 52.4756940235296], + [4.953896013518927, 52.482958698809746], + [4.948316321936885, 52.48400482830396], + [4.94875278942051, 52.48661738334154], + [4.943447946502723, 52.48769111583099], + [4.941446541497896, 52.48540751871873], + [4.932086379719501, 52.487548283645864], + [4.930016408632252, 52.48794201007887], + [4.9302815731949545, 52.48865335624622], + [4.922394946703982, 52.49027999612102], + [4.920650892489534, 52.49043447685898], + [4.92378824695222, 52.49315989167638], + [4.9239923052045995, 52.49688245793043], + [4.926209459897767, 52.50017902611664], + [4.926481162508297, 52.5042801706719], + [4.925583214677425, 52.5054038277092], + [4.925117600499881, 52.505530019916996], + [4.929246861952406, 52.50740719582529], + [4.934703734288906, 52.510353346637864], + [4.934352056066859, 52.51164060624266], + [4.928531079017899, 52.51080703723356], + [4.922600960864763, 52.51141219000615], + [4.909524288394235, 52.51700944792764], + [4.901948385193271, 52.51784203721787], + [4.893501735814496, 52.51760733852933], + [4.874694449904401, 52.52004338482241], + [4.867719843426443, 52.52214476557611], + [4.859381782599615, 52.52503408152432], + [4.849797276448804, 52.52503951496282], + [4.843298367094346, 52.52678978535404], + [4.837494760225012, 52.5306230122545], + [4.8353435028686045, 52.53735035230356], + [4.834024114648883, 52.538873550761856], + [4.833910385168198, 52.538960348882064], + [4.83549585882946, 52.54066620734928], + [4.84227802405846, 52.54349348710368], + [4.8445875209229206, 52.54730921482186], + [4.8483070476034955, 52.550072235394005], + [4.851828283247722, 52.55483163416338], + [4.853841983074025, 52.55676906329873], + [4.858684553495798, 52.55945552930314], + [4.861341487759513, 52.56227735104083], + [4.862939661786734, 52.56504713853816], + [4.863032770821134, 52.568725082522576], + [4.86423782639196, 52.571621301921134], + [4.865671951163444, 52.573750178427524], + [4.868630992485035, 52.575945310345425], + [4.876379533819174, 52.57783000113193], + [4.884749809015174, 52.58423596331423], + [4.8905200112276574, 52.59461783706617], + [4.893495071750681, 52.59783724897324], + [4.901168606657583, 52.602924969483816], + [4.915375830391878, 52.60864210389099], + [4.921439906458744, 52.60831321893752], + [4.926925470262382, 52.6066969991112], + [4.928947566104004, 52.60516544445281], + [4.937695237575264, 52.60737918621737], + [4.948497817998455, 52.613550999027915], + [4.950933269976725, 52.614106339046195], + [4.95333533486536, 52.613391238745514], + [4.95385656595381, 52.6131426677365], + [4.956634644576948, 52.61066848433946] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.12bcd5e6-71e4-4bcc-92e3-100984a3008d", + "properties": { + "statcode": "GM0441", + "jrstatcode": "2024GM0441", + "statnaam": "Schagen", + "rubriek": "gemeente", + "id": 132 + }, + "bbox": [ + 104945.81399999931, 522867.03500000015, 118689.42000000179, + 544267.9417000003 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.758855260337156, 52.84868928138177], + [4.759698482633986, 52.84840190851207], + [4.782562568771844, 52.85143550627252], + [4.794422890840414, 52.847373648221144], + [4.799457363985646, 52.84377115494672], + [4.8098731290558066, 52.83626119022516], + [4.810696152822282, 52.83518700831464], + [4.812822924251337, 52.83262998799247], + [4.81288216364066, 52.832319659517886], + [4.8345733585328245, 52.807778480950226], + [4.834306477220897, 52.80777935653814], + [4.8322076383394, 52.79939406713938], + [4.831256228937443, 52.7838199437192], + [4.829535482647889, 52.78361031126161], + [4.827409165300735, 52.783565276794775], + [4.828996714872311, 52.77532621942908], + [4.828468519649943, 52.77531281612568], + [4.827128853490232, 52.775038938883], + [4.819849392676134, 52.77412947998463], + [4.82075396624435, 52.76960717879893], + [4.815492754900031, 52.77024129806155], + [4.813336471392449, 52.77133366539534], + [4.806960684078627, 52.77021427530432], + [4.8085277761038645, 52.76674475073748], + [4.812518881599038, 52.76276505735312], + [4.815631098948013, 52.76004541148507], + [4.830379655552979, 52.74720271593084], + [4.835286241813508, 52.74208053366808], + [4.838695613102805, 52.73697200313951], + [4.840065293137188, 52.734433789117205], + [4.8431764265289505, 52.732885550765054], + [4.844189672378013, 52.732334044430765], + [4.844877022499894, 52.731018350656676], + [4.8497260701270575, 52.72569324006082], + [4.847685312869555, 52.72025936718062], + [4.8437468453160575, 52.719654526949455], + [4.843404695615341, 52.71960007163396], + [4.841148769402222, 52.719301663316635], + [4.828867328664215, 52.718095986196886], + [4.826242264598296, 52.71743567240057], + [4.824028499436228, 52.71653179234369], + [4.816627325150485, 52.7152824920139], + [4.813161617654379, 52.714941983542914], + [4.809170890184331, 52.71512172021447], + [4.8050258492886115, 52.71420878415696], + [4.8039239946095975, 52.71477959665099], + [4.80501126376123, 52.71506993425722], + [4.804545716010984, 52.71567454417022], + [4.8031838176765875, 52.71541136250475], + [4.801959916118407, 52.71599577741056], + [4.799470129791773, 52.71829137936882], + [4.797541895645839, 52.7196360693433], + [4.797602468932895, 52.720847537038644], + [4.797396559305373, 52.72090004502135], + [4.7959050652084585, 52.72056233617921], + [4.7955474587776745, 52.720547267846094], + [4.79544355545963, 52.72044034112282], + [4.794038686351202, 52.720709873357755], + [4.793992713461146, 52.71998599819834], + [4.7927314107337295, 52.72048964484342], + [4.790158283258099, 52.7205931459556], + [4.788830630743622, 52.72084674012981], + [4.786565100901682, 52.72103398658896], + [4.78541199053116, 52.72245125637695], + [4.786872982686974, 52.72637229641378], + [4.786566023409685, 52.72794571086719], + [4.781768904457037, 52.72986670901794], + [4.779138197591052, 52.73127722436886], + [4.778832155433562, 52.73141083902014], + [4.777689866864887, 52.72856184871457], + [4.772986934058915, 52.72004346849139], + [4.7704594522215995, 52.70872462530304], + [4.77076227738609, 52.70204316271903], + [4.769647021546736, 52.69879348866674], + [4.766872898596655, 52.69813359783926], + [4.751540840852129, 52.69698823514839], + [4.739575248789898, 52.69418946420664], + [4.732036519751421, 52.692809086413526], + [4.7288538206011115, 52.69140378592109], + [4.725222298507247, 52.693849600689425], + [4.720598771160178, 52.69711669611282], + [4.719210023299656, 52.69909593721298], + [4.717863143135296, 52.70263798823788], + [4.716794097274675, 52.705384132615656], + [4.716226568898005, 52.707597820400196], + [4.715882208503704, 52.7075862445897], + [4.715867637400836, 52.70764892865586], + [4.716208123154339, 52.70770688330966], + [4.715807131252194, 52.71004728350089], + [4.715218072248526, 52.71068533161643], + [4.714457457980986, 52.7112781187602], + [4.710468524496577, 52.71452967368751], + [4.709145487210918, 52.71586339561417], + [4.706985289910381, 52.71870353749219], + [4.704335421335805, 52.720421855342394], + [4.702311304112599, 52.721674387950664], + [4.699782867951035, 52.72449163929541], + [4.693374507061118, 52.73036454650334], + [4.690352065283037, 52.732622364735015], + [4.689822360316399, 52.7329919683367], + [4.687852477495703, 52.73266591183708], + [4.686897176297971, 52.73264591828835], + [4.683528608467846, 52.733536509399], + [4.682706806302414, 52.73526291025985], + [4.681021207953258, 52.73767519579084], + [4.680594093674678, 52.73791878330444], + [4.679965099660877, 52.73801958318561], + [4.679438398551137, 52.73831756634492], + [4.6788948974543665, 52.739168592049715], + [4.67733121608702, 52.739561634671844], + [4.671220492283968, 52.74058149850552], + [4.669255847116971, 52.74166005945722], + [4.668397134113389, 52.74249034583211], + [4.664863201222301, 52.745278939874325], + [4.662434569529687, 52.74673576085888], + [4.660463290657767, 52.74670467964978], + [4.659191372889013, 52.74730915881571], + [4.6589860195561, 52.749600567310374], + [4.651040009847053, 52.75584690802394], + [4.64576213606816, 52.7566381427492], + [4.649489271243312, 52.76357739850468], + [4.654935268885395, 52.77201452845486], + [4.660262969875788, 52.77818815670581], + [4.6674812543373365, 52.78671882299095], + [4.6759872635005175, 52.801047123086505], + [4.680333655187581, 52.81024605865516], + [4.6861636314942565, 52.82852239747555], + [4.691732946312145, 52.84083154134739], + [4.702276006951747, 52.86473230623769], + [4.706352111653555, 52.87486274731939], + [4.70904227489082, 52.883621763764666], + [4.72678987941117, 52.882207785750346], + [4.734173173377645, 52.88165838754466], + [4.7425404730749685, 52.88101956441673], + [4.749807258609709, 52.88045518180462], + [4.769367140010108, 52.87892266999077], + [4.770938919537558, 52.87862622477848], + [4.7702180066692375, 52.87761434595464], + [4.758855260337156, 52.84868928138177] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.cae66881-9690-4a47-b681-1ffa5a82a73f", + "properties": { + "statcode": "GM0448", + "jrstatcode": "2024GM0448", + "statnaam": "Texel", + "rubriek": "gemeente", + "id": 133 + }, + "bbox": [ + 106333.21889999881, 552776.7283999994, 122949.5940000005, + 577761.5267999992 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.681697135889153, 52.96012269198171], + [4.6745448537451635, 52.95988643032553], + [4.6683706595307095, 52.96191731635176], + [4.662810119681329, 52.968574594183664], + [4.6632419771848, 52.975767359785785], + [4.666932633039629, 52.983165242876424], + [4.6713011046185136, 52.98632050965371], + [4.676855444354322, 52.98773625552862], + [4.685063260201229, 52.987700323319025], + [4.689829073860167, 52.98546941639936], + [4.689483375785721, 52.98208633812637], + [4.692838260197498, 52.97965244689464], + [4.7107830597649825, 52.97507194745487], + [4.702429149919201, 52.97343589368484], + [4.690054168050456, 52.96881291306818], + [4.685104921811783, 52.964573199065256], + [4.681697135889153, 52.96012269198171] + ] + ], + [ + [ + [4.878723658618549, 53.15696826304217], + [4.881068103859287, 53.15508387923212], + [4.8865059873852825, 53.156057258470575], + [4.893353366063587, 53.15162264488326], + [4.907755071058012, 53.13537370792856], + [4.9083369273576265, 53.13302772531309], + [4.905921810368855, 53.131264440993455], + [4.904440565088643, 53.13216140323926], + [4.905362154833482, 53.13028746528935], + [4.90465651662979, 53.12897027999968], + [4.902140386822504, 53.1278186473052], + [4.9029641752699, 53.125810913224036], + [4.900243736705829, 53.12501434788356], + [4.898335701008392, 53.10014770929962], + [4.900395200492679, 53.08785650412088], + [4.899711317905496, 53.08340399495139], + [4.897157169440039, 53.07856586536478], + [4.887657871693101, 53.072588141817135], + [4.880576943998192, 53.07088543238507], + [4.878781132722299, 53.066902362899484], + [4.87674894742909, 53.06563709523692], + [4.873197076073553, 53.06486420161538], + [4.873146513435966, 53.055362037751], + [4.861598969275133, 53.048108946278965], + [4.861801464083206, 53.04706120045356], + [4.860015345528062, 53.04431147901613], + [4.856283901513362, 53.040904831927286], + [4.853158533314788, 53.04010225315472], + [4.852625746799593, 53.04024400479779], + [4.854040993560881, 53.040742936108956], + [4.855057405889276, 53.04194110331364], + [4.856578835784152, 53.04166551966181], + [4.858514640215161, 53.04330615156582], + [4.860464471199197, 53.04675346971272], + [4.859840383383073, 53.0468943870132], + [4.856763969598264, 53.044766752518434], + [4.857990387511168, 53.04408920234257], + [4.856864452135053, 53.04361990112352], + [4.856159231228059, 53.04262575399794], + [4.855628812160063, 53.0427709307534], + [4.855974631737021, 53.04331241939267], + [4.853298595267919, 53.04335010024036], + [4.851320713903525, 53.04006164393966], + [4.850856346084316, 53.03985876695042], + [4.850230446782541, 53.04034452350998], + [4.849617834851531, 53.04006194277694], + [4.850156906690792, 53.039524182966645], + [4.849412652307205, 53.03912401870383], + [4.850344252253379, 53.038827719489014], + [4.851417998663039, 53.03933945252847], + [4.853084112656451, 53.0389102359993], + [4.8471678400521885, 53.03400113205332], + [4.838524870438821, 53.03081249117557], + [4.830598149903066, 53.02972419261046], + [4.819488991648908, 53.029015654121814], + [4.792669932554462, 53.008408729927936], + [4.793829287870388, 53.00724990956267], + [4.796945287078375, 53.00738489734388], + [4.796807534349899, 53.00696460554726], + [4.793578230159985, 53.006821298424626], + [4.793023369067091, 53.00602998427016], + [4.797395024737625, 53.005031946557146], + [4.793100537389195, 53.00238534953686], + [4.792228895960602, 53.002061991412674], + [4.78498896516329, 53.00175309434619], + [4.782425622154154, 53.004145337548195], + [4.780604367907685, 53.003178285798214], + [4.782252149734022, 53.0013702678726], + [4.772818687783975, 53.005958750617616], + [4.769373242895735, 53.00589420495362], + [4.75497981000062, 53.01017196276275], + [4.749452846440629, 53.01057212781904], + [4.746512261068726, 53.010171091274074], + [4.75380136963577, 53.004346897704195], + [4.762414027883119, 53.00120612424491], + [4.762841149074029, 53.00162813109737], + [4.76387166448115, 53.00154430243168], + [4.7635501842981505, 53.00227315055244], + [4.7687312860613815, 53.00006087625853], + [4.770068231024925, 53.000117458479124], + [4.7720151120973195, 52.99851648041877], + [4.772954121691198, 52.99853147002129], + [4.773660151436878, 52.99632718299105], + [4.75996515984323, 52.993497319298314], + [4.752126299717944, 52.99077352695921], + [4.7365999023774155, 52.98902005562366], + [4.730493496404321, 52.98374323829052], + [4.720331581203449, 52.99126594304299], + [4.713506054192599, 52.99733834151647], + [4.7097775725968765, 53.01311209060531], + [4.708628083779922, 53.022383030754554], + [4.710162869588958, 53.03328445980057], + [4.716111706267242, 53.05158973050081], + [4.723532094159653, 53.06762808367831], + [4.735249569164765, 53.082322477254564], + [4.747463683969529, 53.09498667288227], + [4.758140787949137, 53.10589078395639], + [4.761116697661789, 53.108371992502526], + [4.775710906930791, 53.12199918080801], + [4.797504111966813, 53.14090547188389], + [4.81024054621264, 53.155011743431935], + [4.820607889570116, 53.16429826253292], + [4.83113766504885, 53.17181339277959], + [4.837957921550613, 53.178818147217015], + [4.84086120191161, 53.183319196558635], + [4.844887234067854, 53.1848257740061], + [4.854427187251703, 53.185340051982365], + [4.859698805803737, 53.18349961384676], + [4.8611227808893105, 53.1830209413324], + [4.873093154660319, 53.17232548617885], + [4.874790863193237, 53.16684232035441], + [4.879687232513321, 53.16400983330693], + [4.87685270643285, 53.16159200055706], + [4.877589575751368, 53.15782916919762], + [4.878723658618549, 53.15696826304217] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.aaf4db92-9cdc-4ef5-81ba-f7b79f8eb56f", + "properties": { + "statcode": "GM0450", + "jrstatcode": "2024GM0450", + "statnaam": "Uitgeest", + "rubriek": "gemeente", + "id": 134 + }, + "bbox": [ + 107717.19000000134, 501013.91099999845, 113954.5940000005, + 507320.18030000106 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.7187861599081655, 52.551622869204344], + [4.719804466120803, 52.543854541163356], + [4.723724237354862, 52.54666921791859], + [4.735390170234943, 52.543822553778796], + [4.750436509977441, 52.53789552455052], + [4.755275555628804, 52.53573555082731], + [4.75947618454112, 52.53737882065459], + [4.762427940643578, 52.53751060066101], + [4.768019000069616, 52.53463451311827], + [4.774695811635794, 52.53454916975928], + [4.7777334416152915, 52.533744875698346], + [4.777845625655472, 52.53177033861527], + [4.7824764577043855, 52.51958096011077], + [4.7755658091570625, 52.51942158415246], + [4.767203204345383, 52.519751924003124], + [4.767026920545843, 52.51886641515162], + [4.763619448375416, 52.51970718149583], + [4.761227657045577, 52.518553804257124], + [4.752428076975379, 52.52123269902497], + [4.749728687241906, 52.5200746577774], + [4.74814252556868, 52.51705499070592], + [4.74845884963008, 52.51498202971286], + [4.752253743828049, 52.511079551267684], + [4.752767807827129, 52.51059187875357], + [4.750674066609652, 52.50829092695323], + [4.748410422725014, 52.50766161381161], + [4.746173900429836, 52.50594861438315], + [4.739739506770514, 52.50162294523969], + [4.731577194832486, 52.4963314437829], + [4.721373862254303, 52.49513887378078], + [4.720367092485928, 52.4949539125638], + [4.711703866146691, 52.49681687492158], + [4.705423760562727, 52.50010752059111], + [4.7034427265252114, 52.50310441193229], + [4.705858193040408, 52.506251103234625], + [4.707937562851586, 52.50614115437219], + [4.709151740178238, 52.509856410774034], + [4.706526740965935, 52.510397163955524], + [4.703854961375023, 52.50832887890574], + [4.701235741008002, 52.50886276543512], + [4.697085297841641, 52.507547900131115], + [4.694611803394244, 52.50762400232078], + [4.695114734796707, 52.50999840152613], + [4.692599804874006, 52.51100248478757], + [4.690674450120315, 52.51561836528704], + [4.691395225214516, 52.51688738063745], + [4.690585810731406, 52.51908252058647], + [4.692830346818195, 52.522281715763235], + [4.695736164873701, 52.52672806307518], + [4.69746746588055, 52.52916404913502], + [4.697604352850036, 52.52924108319549], + [4.695596813997292, 52.53587368586809], + [4.694534490276288, 52.544188299690354], + [4.703692818412601, 52.54539639880253], + [4.706431102557015, 52.546294929860586], + [4.705897651210277, 52.54822339202657], + [4.7187861599081655, 52.551622869204344] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.138ba3c5-41f6-4e26-9861-470af868c57d", + "properties": { + "statcode": "GM0451", + "jrstatcode": "2024GM0451", + "statnaam": "Uithoorn", + "rubriek": "gemeente", + "id": 135 + }, + "bbox": [ + 109660.99199999869, 468917.6743, 118454.03299999982, 474937.6070000008 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.80752422539536, 52.25757350165204], + [4.82483561419774, 52.25274858001376], + [4.834763453272067, 52.24982397008812], + [4.843772087803496, 52.245665439611656], + [4.852053258587674, 52.24201349017286], + [4.851273142949737, 52.24189019873819], + [4.85215655257544, 52.23964121685521], + [4.8507921277460575, 52.2386066182034], + [4.847325731319702, 52.23978137583857], + [4.845995130944479, 52.237657785662954], + [4.842995897736945, 52.23678997151128], + [4.842845250437879, 52.23534723765731], + [4.839632618743961, 52.23539129234758], + [4.828613597850272, 52.230593093869416], + [4.822002626902075, 52.229194393652676], + [4.817192775751912, 52.228324892183934], + [4.8141000109021155, 52.22716933084596], + [4.8081982595994575, 52.22711518609006], + [4.8052750460766696, 52.227974168901156], + [4.801942560183223, 52.22692220455095], + [4.794575697702013, 52.226730665167196], + [4.789410010194405, 52.22787510167742], + [4.786875080484989, 52.22788274775384], + [4.784936398100692, 52.22862617485603], + [4.780985629174887, 52.22874123571205], + [4.776400158120775, 52.22737266284007], + [4.774650279292411, 52.22458274703373], + [4.771228580937319, 52.222752774961826], + [4.7620744872624545, 52.21813027116462], + [4.759847855077979, 52.217586497170124], + [4.753298505748658, 52.21746780239112], + [4.750668836204473, 52.2157205516746], + [4.7479715653795544, 52.21486789898918], + [4.743629882603779, 52.214792826267065], + [4.734389141549658, 52.20655566389649], + [4.732833640012577, 52.2069720628047], + [4.728765997731066, 52.209818813286056], + [4.729562530948015, 52.21027114687225], + [4.724738951775617, 52.21258338117541], + [4.724558784547825, 52.213222835295], + [4.723764399954997, 52.21657365211], + [4.773271520443348, 52.241034018689724], + [4.768065250194255, 52.24539430606067], + [4.767888337620111, 52.246977470975274], + [4.768994340417528, 52.248398109999115], + [4.770866687681352, 52.249908887687944], + [4.77919718615683, 52.25353577354783], + [4.7808882253601155, 52.25351974943958], + [4.782931076799439, 52.255148324873545], + [4.794603170453587, 52.26005503161247], + [4.794697298874822, 52.26068175822467], + [4.795318876155592, 52.26098401024998], + [4.80752422539536, 52.25757350165204] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.67253ddd-ca68-4170-ae8e-1994d5619df1", + "properties": { + "statcode": "GM0453", + "jrstatcode": "2024GM0453", + "statnaam": "Velsen", + "rubriek": "gemeente", + "id": 136 + }, + "bbox": [ + 96886.23099999875, 491710.2217000015, 109760.5850000009, + 500483.1486000009 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.577890609535869, 52.464210622755395], + [4.5736974488275015, 52.46397063251008], + [4.573901425962806, 52.465506310829994], + [4.577962684225262, 52.466087001304516], + [4.57877729711975, 52.464442198906646], + [4.577890609535869, 52.464210622755395] + ] + ], + [ + [ + [4.602720772689714, 52.48335060205143], + [4.604049614537206, 52.48146847536194], + [4.613553365332842, 52.48380308211268], + [4.618191217034973, 52.483288410182574], + [4.62095875442576, 52.48232812797355], + [4.6378373786215175, 52.48013395932196], + [4.6406963026554555, 52.479390667261804], + [4.647635735253464, 52.47842446162673], + [4.6467362476135925, 52.47708157894151], + [4.649014777090797, 52.47660803288703], + [4.649289987263393, 52.47653324515765], + [4.6533332273870975, 52.477154735861056], + [4.6541581610399465, 52.476660952082824], + [4.6643680752075865, 52.4705707619206], + [4.667605905016764, 52.468426217532404], + [4.661924746766206, 52.46175677252436], + [4.674848021085254, 52.45552040778107], + [4.690813726510894, 52.44687692544593], + [4.710965713819875, 52.43619429216926], + [4.721983094012953, 52.433336168527894], + [4.710654980250923, 52.42769275373642], + [4.7005372234015175, 52.42551291751489], + [4.6914859722961975, 52.41881396813402], + [4.682476168597433, 52.41384869956002], + [4.681798400996018, 52.417780540996695], + [4.680648130501211, 52.41800592200098], + [4.68122717746454, 52.41933144869109], + [4.677496017790825, 52.418962098918726], + [4.674372407939799, 52.41863422565454], + [4.6721251052259145, 52.42239848835501], + [4.66562521897724, 52.42548870355632], + [4.664847715992338, 52.4256035710833], + [4.662832606369726, 52.42585455549753], + [4.653147127376315, 52.42799955094108], + [4.650768610169698, 52.42856966190611], + [4.645718489211973, 52.42197226657678], + [4.645017415140023, 52.421025742414656], + [4.642489299196584, 52.41786998005129], + [4.639375513541343, 52.41450790243292], + [4.637285886388049, 52.41212296199401], + [4.636125288628378, 52.41083120097086], + [4.6316475960807635, 52.41166554341968], + [4.631610973208181, 52.411671182484646], + [4.629993580683901, 52.41196542779855], + [4.627617969415275, 52.41259759869691], + [4.628842348409634, 52.41430832251841], + [4.627842077406088, 52.41470811120808], + [4.628735497933211, 52.41584441342401], + [4.6263990679278155, 52.41652883815597], + [4.6270536456777185, 52.41735965124609], + [4.625433320463762, 52.42009556282955], + [4.6259139758123125, 52.42055690533488], + [4.624489925081178, 52.421620266033955], + [4.623576327725569, 52.42207506738527], + [4.624992193705724, 52.423492224772076], + [4.621468408541018, 52.42490424749423], + [4.620842699471755, 52.42438449014945], + [4.617248357489726, 52.425125197592806], + [4.6150487102473665, 52.42593528520878], + [4.587822871702237, 52.4344364367903], + [4.584690391788435, 52.43484253766482], + [4.563185324977221, 52.43764737725417], + [4.560096761683824, 52.4380374217075], + [4.5622584584031385, 52.44645414175851], + [4.5605150541451485, 52.446723930607185], + [4.553686275621378, 52.460773070176465], + [4.540326407343318, 52.45810062300621], + [4.538003109828806, 52.45806414721771], + [4.536469785899146, 52.458565653414205], + [4.5335667784102895, 52.4609327426534], + [4.532077898550851, 52.46383655734508], + [4.532584159520185, 52.46378728923101], + [4.534173728287545, 52.46071221516156], + [4.536785450440244, 52.45870694211342], + [4.54005861994428, 52.458311457979654], + [4.554531070430532, 52.46160774138817], + [4.5547871658449415, 52.46199805499305], + [4.554448483665281, 52.46240857382373], + [4.5551026051099885, 52.462563366414585], + [4.555649646375275, 52.462488956745226], + [4.55619620056104, 52.46225161914513], + [4.555263761444231, 52.46234255333872], + [4.555261698160054, 52.462069065884364], + [4.558562194533431, 52.46102564950647], + [4.559013164368302, 52.461476735980455], + [4.559141678927396, 52.46145090753307], + [4.558698562257748, 52.46099189885352], + [4.558954788284287, 52.46089333042595], + [4.5588084143384435, 52.46078752246392], + [4.558308111260587, 52.461023524575936], + [4.557990731740872, 52.46058782307893], + [4.55992722752007, 52.45699517240467], + [4.564985210990864, 52.45785573904402], + [4.564940744269192, 52.45896689251551], + [4.562513487214125, 52.45974130986962], + [4.564320301775695, 52.46232981144753], + [4.563254918397797, 52.46239143832226], + [4.563250715970083, 52.46261703437571], + [4.568750682738015, 52.46262725761725], + [4.56945431244196, 52.46225668829405], + [4.567630321546585, 52.45964826572093], + [4.569246492229954, 52.45922333951913], + [4.571359713458773, 52.46220078208454], + [4.572543423163803, 52.46262203219186], + [4.578614483973656, 52.462841936332616], + [4.578791161013419, 52.46243408728269], + [4.577041057699258, 52.46159738367723], + [4.579340631569904, 52.459907806414186], + [4.57955712360412, 52.45945365802327], + [4.579297561896301, 52.45894037985322], + [4.577844949303749, 52.4582331635082], + [4.578110366996016, 52.458034241855174], + [4.579546594203607, 52.4586688316495], + [4.580213168059869, 52.458489443915525], + [4.580582397000958, 52.45874856717424], + [4.586445059194951, 52.45654309146763], + [4.587216023540423, 52.45724499316407], + [4.581705452939183, 52.45935714472636], + [4.580271962262812, 52.46118631485179], + [4.581554044164531, 52.462454125752664], + [4.594293410712946, 52.45766517577875], + [4.595816711420182, 52.457979058720646], + [4.596213180784047, 52.45836618474705], + [4.588019945094074, 52.46124901722394], + [4.585814091421933, 52.46226093422065], + [4.584482134784246, 52.4627390520813], + [4.584357474077891, 52.462626878145734], + [4.584248166548017, 52.462662106988766], + [4.584118451756876, 52.462869594803344], + [4.583589761570956, 52.46305936293643], + [4.58310596089697, 52.4628146115567], + [4.582400453319831, 52.463135653146544], + [4.58274002476892, 52.46338114999873], + [4.590360580660807, 52.46366513726968], + [4.590395167300343, 52.46460944162378], + [4.586984001297487, 52.464453292950985], + [4.586936116547386, 52.46477249229412], + [4.5905474793632415, 52.465256353240626], + [4.596572836786479, 52.465341115967746], + [4.59679876552561, 52.46547761403556], + [4.596809323720277, 52.46617154413519], + [4.596484774777871, 52.466329147494136], + [4.5915119976951075, 52.466406793116626], + [4.591269450249276, 52.46689279995719], + [4.591461432059868, 52.467296599313016], + [4.59433249344137, 52.46718237562652], + [4.594435641815134, 52.467264164612374], + [4.594617320502967, 52.467251787923196], + [4.594658621592795, 52.46716358937733], + [4.600139358376209, 52.466800029373324], + [4.60505824886259, 52.46710094308986], + [4.60473273991797, 52.467242565262005], + [4.6048988253142715, 52.468220361853305], + [4.605095345804262, 52.46839591997415], + [4.601504008115285, 52.468918101560384], + [4.592074969922077, 52.469762299571926], + [4.59359806608055, 52.47014961266089], + [4.601360252604769, 52.46979362445824], + [4.601524540295418, 52.470728855739544], + [4.60011087097556, 52.47092442792331], + [4.600117506394987, 52.47097515298555], + [4.601443945929203, 52.47102541169154], + [4.601491823725647, 52.47148502259461], + [4.600103689220849, 52.47179087286248], + [4.597812903646539, 52.4712212784781], + [4.594828324470801, 52.47132460724742], + [4.598388350680768, 52.47236189914685], + [4.603788919947818, 52.47211551967186], + [4.603846129126244, 52.47250519271271], + [4.607814780434744, 52.47226097238543], + [4.60888305156293, 52.472138046197074], + [4.609102526089168, 52.47295099028112], + [4.602367698454154, 52.47380264956862], + [4.602486281337453, 52.473924824588295], + [4.599753751820069, 52.474270073110915], + [4.59886070799463, 52.474018809046555], + [4.598430553570871, 52.474073677711665], + [4.598264473426165, 52.474028458319765], + [4.598271872009761, 52.47392866448565], + [4.598128309164505, 52.47389051796682], + [4.597865361986486, 52.47386221813262], + [4.5979811879846775, 52.473634818086545], + [4.597686714438666, 52.473553424117654], + [4.597594008751385, 52.473673070967315], + [4.596188841044931, 52.47328462057224], + [4.595921575583231, 52.473365893183455], + [4.595580376410368, 52.47379861477689], + [4.5863869709036855, 52.47167316833551], + [4.5856114351868245, 52.47222768135508], + [4.583995998604429, 52.471893108577376], + [4.58243284198907, 52.470587166101936], + [4.579155984552812, 52.46965723331596], + [4.567184407720081, 52.46768048641212], + [4.55741370016999, 52.467797207947314], + [4.548296948247229, 52.46921231604588], + [4.543228739740974, 52.46813493322585], + [4.542897200957998, 52.467479817772784], + [4.542249942371266, 52.46741180505164], + [4.542975569262557, 52.46833079347207], + [4.54802436937426, 52.46962330210519], + [4.557851915134326, 52.468058208439956], + [4.564442279785667, 52.46787546043689], + [4.575180368021673, 52.479201617273425], + [4.58133717278414, 52.48932053167703], + [4.5905068028800775, 52.487247484119756], + [4.5961188303954605, 52.48597369484888], + [4.602720772689714, 52.48335060205143] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.1c9b17dd-6a91-4319-9598-bc8c16b8e335", + "properties": { + "statcode": "GM0473", + "jrstatcode": "2024GM0473", + "statnaam": "Zandvoort", + "rubriek": "gemeente", + "id": 137 + }, + "bbox": [ + 94110.54670000076, 481002.80799999833, 100847.06500000134, + 490731.55860000104 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.565001077832296, 52.344339140556045], + [4.5473222602715495, 52.313996598189654], + [4.543370822266072, 52.314988613049735], + [4.494926529779438, 52.32794852843056], + [4.493971128476394, 52.32819808293768], + [4.526146843136826, 52.37734637797612], + [4.541323121936123, 52.40139602811293], + [4.543043221868312, 52.401093711719895], + [4.591658966071501, 52.39171569464139], + [4.5914590097409915, 52.39136265439738], + [4.579718226150814, 52.370602402919516], + [4.579570333696187, 52.37034182994768], + [4.576623852787592, 52.36517144850039], + [4.574505168741032, 52.36145042257188], + [4.5700355006000954, 52.353363181913366], + [4.565001077832296, 52.344339140556045] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.98da8f98-d74b-40cb-bf5e-e74334cff8bd", + "properties": { + "statcode": "GM0479", + "jrstatcode": "2024GM0479", + "statnaam": "Zaanstad", + "rubriek": "gemeente", + "id": 138 + }, + "bbox": [ + 106579.43800000101, 492226.5610000007, 119332.27109999955, + 503918.2520000003 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.752428076975379, 52.52123269902497], + [4.761227657045577, 52.518553804257124], + [4.763619448375416, 52.51970718149583], + [4.767026920545843, 52.51886641515162], + [4.767203204345383, 52.519751924003124], + [4.7755658091570625, 52.51942158415246], + [4.7824764577043855, 52.51958096011077], + [4.784173755357351, 52.51947122320072], + [4.784971284355945, 52.51941964934547], + [4.784971552680312, 52.519419636327164], + [4.789860919713963, 52.519235886408474], + [4.789094559720951, 52.51839889462684], + [4.788756149596098, 52.51110572278902], + [4.789751427791484, 52.50942618331929], + [4.7933456119618985, 52.50700424133519], + [4.793997685507849, 52.50328743176592], + [4.794611735773294, 52.5006605963484], + [4.795033157795576, 52.49603124750586], + [4.791589052282329, 52.49214457144078], + [4.792358804185313, 52.4911316365171], + [4.79364344175564, 52.49088201887342], + [4.798842866529277, 52.491105258303996], + [4.8115656815387435, 52.48574661463437], + [4.812364815359015, 52.48396753050133], + [4.8168454821548226, 52.48256093715145], + [4.836924709103435, 52.47987601874188], + [4.837546527424453, 52.47709385111425], + [4.841536160259115, 52.47302199720561], + [4.842398872354696, 52.472110712637104], + [4.846479951093574, 52.47072438756742], + [4.852504937847793, 52.47036706622033], + [4.848568437807687, 52.45956869727294], + [4.844924427245896, 52.45648167856417], + [4.844426976285937, 52.45292140242065], + [4.844068745454251, 52.45275351476524], + [4.842950947488374, 52.45226082789627], + [4.852933250210555, 52.442957063659996], + [4.853977964670573, 52.44157813534362], + [4.857090760271519, 52.43646669065799], + [4.857572125888087, 52.43586435022006], + [4.85812168808534, 52.43505655340293], + [4.85993588822188, 52.43239287081271], + [4.861711945390915, 52.42977571894334], + [4.862677453449354, 52.429941314966214], + [4.862778953518199, 52.429336649175035], + [4.862453729159521, 52.428775951155345], + [4.857947578561188, 52.4247171054543], + [4.8579069743532655, 52.42386556951216], + [4.859857713138124, 52.42047369610786], + [4.856078010842785, 52.416662167305766], + [4.8426379451902495, 52.41879852377425], + [4.827723673413809, 52.42078407390451], + [4.826810945995532, 52.420895446380165], + [4.8108193262673655, 52.42291010832688], + [4.80993955831352, 52.42302417800675], + [4.783480370257104, 52.42641336757436], + [4.767537879892973, 52.428498103423316], + [4.767183636356741, 52.427468139643175], + [4.753205157573292, 52.42924091087004], + [4.750085392130022, 52.42963655346252], + [4.739208095839959, 52.43106382971274], + [4.721983094012953, 52.433336168527894], + [4.710965713819875, 52.43619429216926], + [4.690813726510894, 52.44687692544593], + [4.674848021085254, 52.45552040778107], + [4.682999697302862, 52.461132116876534], + [4.684537574868884, 52.46219075292052], + [4.685069352316609, 52.462556791188184], + [4.684266301900828, 52.463521031461966], + [4.693447058672975, 52.46734073577373], + [4.697818597107621, 52.47103382033127], + [4.697280153631382, 52.47200989449064], + [4.699278728298106, 52.47453268378657], + [4.698734896175994, 52.477136944424124], + [4.7007289607614124, 52.48023676651394], + [4.705472023069447, 52.481856231594755], + [4.706158622319797, 52.48283945976666], + [4.705906287865754, 52.48444311149592], + [4.707968883346465, 52.48633243855488], + [4.708445037267249, 52.48862567756293], + [4.714645426302392, 52.49319503881634], + [4.720367092485928, 52.4949539125638], + [4.721373862254303, 52.49513887378078], + [4.731577194832486, 52.4963314437829], + [4.739739506770514, 52.50162294523969], + [4.746173900429836, 52.50594861438315], + [4.748410422725014, 52.50766161381161], + [4.750674066609652, 52.50829092695323], + [4.752767807827129, 52.51059187875357], + [4.752253743828049, 52.511079551267684], + [4.74845884963008, 52.51498202971286], + [4.74814252556868, 52.51705499070592], + [4.749728687241906, 52.5200746577774], + [4.752428076975379, 52.52123269902497] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.05627f80-b037-4ddd-aee4-efae67204c47", + "properties": { + "statcode": "GM0482", + "jrstatcode": "2024GM0482", + "statnaam": "Alblasserdam", + "rubriek": "gemeente", + "id": 139 + }, + "bbox": [ + 102615.19000000134, 428026.41000000015, 107698.84800000116, + 432792.05999999866 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.629396931203021, 51.88083691730098], + [4.63707557549539, 51.87629445006213], + [4.642138301834799, 51.88019967247137], + [4.664438761995058, 51.87494835362037], + [4.668560410934927, 51.87507257934196], + [4.672914034527592, 51.87479193902338], + [4.677884468008798, 51.87530040450528], + [4.687834162079035, 51.878717769305794], + [4.6972680031357985, 51.87985728889461], + [4.700239703871293, 51.87970988049821], + [4.690816570156316, 51.86730544107828], + [4.690438931237449, 51.86684704802038], + [4.687673721399736, 51.866761237308936], + [4.685988181088801, 51.865932207729045], + [4.682397163589804, 51.86060425975287], + [4.680708895611208, 51.85963856389817], + [4.681263140082348, 51.85892143958165], + [4.681264117836388, 51.85891240920401], + [4.681511961274861, 51.85774355043033], + [4.683109459050035, 51.84892002224712], + [4.6831906708754545, 51.84849145425306], + [4.681826751021455, 51.849093263726324], + [4.681348894039438, 51.848678137740954], + [4.681911353023354, 51.848440667336384], + [4.68047469371793, 51.84460769507245], + [4.67590600313251, 51.84110175933928], + [4.672606187846157, 51.8386503287519], + [4.670173005125878, 51.84214926236851], + [4.663367530211641, 51.84753234702282], + [4.658200225724209, 51.85163035604759], + [4.653107857631725, 51.85769615885804], + [4.647831371836671, 51.862672624385525], + [4.64568462938473, 51.864242563705616], + [4.635260958543669, 51.86971115520301], + [4.626391054034048, 51.88065776310212], + [4.628235730619793, 51.880799913885724], + [4.628774663633306, 51.8812121527407], + [4.629396931203021, 51.88083691730098] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.0995ec75-e1fa-44c9-ab08-2dc277480824", + "properties": { + "statcode": "GM0484", + "jrstatcode": "2024GM0484", + "statnaam": "Alphen aan den Rijn", + "rubriek": "gemeente", + "id": 140 + }, + "bbox": [ + 96247.36400000006, 452546.29100000113, 112059.96200000122, + 464606.9600000009 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.699737942327962, 52.15706557620568], + [4.70567269334014, 52.152156602311415], + [4.705454506221504, 52.15059234416568], + [4.704164999401845, 52.14809747995867], + [4.704034054260156, 52.14464456093736], + [4.704997530998944, 52.14476048693892], + [4.72393180759844, 52.1560783381962], + [4.72433892247987, 52.156111206614405], + [4.726074178309841, 52.1564132348647], + [4.726811408382315, 52.15899521036439], + [4.728998055959001, 52.159530021861016], + [4.741838810371837, 52.16267322154544], + [4.759033267485599, 52.1351012240182], + [4.759291891936619, 52.133748736496635], + [4.76007314387296, 52.13098146371572], + [4.758709639731744, 52.128539286906005], + [4.758622582588887, 52.12839032974793], + [4.756641310472256, 52.123790451838985], + [4.753240332072868, 52.11944196466692], + [4.751921254465939, 52.11902279171105], + [4.740740556862982, 52.10809049088679], + [4.738856699861746, 52.106507437341584], + [4.740222862857555, 52.104648091754186], + [4.734518022451264, 52.10261461524148], + [4.734809713555532, 52.101876382815554], + [4.733073144526902, 52.101475494459486], + [4.724517582610613, 52.099599443555135], + [4.724440586795226, 52.09958187185645], + [4.704731800808349, 52.09524086170518], + [4.70506793038399, 52.09463873202756], + [4.7070054212876595, 52.09329654049173], + [4.70875813396667, 52.0936438934485], + [4.713101995695535, 52.08433839889645], + [4.7155058530066745, 52.08118841227142], + [4.713027605898408, 52.07692938421953], + [4.704905029014683, 52.07683641064059], + [4.696834782485646, 52.074005757591614], + [4.69441120306891, 52.06776738890262], + [4.686259893698383, 52.069525798866636], + [4.68614899672989, 52.069214349063614], + [4.685346984539342, 52.06938437971505], + [4.683121213847279, 52.062607479841574], + [4.681973526512063, 52.0591040638142], + [4.679298395936971, 52.05921589649284], + [4.678997537782069, 52.0601970216564], + [4.677246984107649, 52.06552052785768], + [4.665660021833614, 52.06572393931328], + [4.665910582068442, 52.063951609957364], + [4.659967730229911, 52.064104308168574], + [4.659147765353541, 52.06401773816246], + [4.6591506024799525, 52.064005953058775], + [4.646904042329074, 52.06428003922634], + [4.6468606620477955, 52.06428271122608], + [4.638225121412685, 52.06482359519138], + [4.637624697742871, 52.06801016026814], + [4.636881164490192, 52.07353164088043], + [4.625307180049537, 52.074447226476444], + [4.625320375285519, 52.076443249354085], + [4.607023721983084, 52.07704584397485], + [4.607427110877652, 52.06552651866799], + [4.5659254124737325, 52.05922595871239], + [4.565042961073281, 52.058569379497065], + [4.557808993890128, 52.06174116294993], + [4.557180247335913, 52.06123936641557], + [4.5527717130714915, 52.063307759548856], + [4.5532098194512765, 52.06383148330261], + [4.533694956873119, 52.07305113110721], + [4.535168098402097, 52.07446319497139], + [4.53390423616747, 52.07521514919764], + [4.534180620497165, 52.07556370385283], + [4.53601940423295, 52.07690793642596], + [4.530103521141798, 52.08008210451593], + [4.5305551791418, 52.080510732403745], + [4.534571269377725, 52.08349622961895], + [4.537134664742603, 52.08394597908151], + [4.536502250907333, 52.10195752290193], + [4.535322767868167, 52.12043247791573], + [4.541905299975563, 52.118660206561344], + [4.542948830335793, 52.12123481175779], + [4.540640914979625, 52.12156227789896], + [4.545160178946237, 52.129167596326205], + [4.545190276997194, 52.12920413510513], + [4.547620537779519, 52.1323100450737], + [4.546058208279806, 52.13335665625444], + [4.546307160600089, 52.13402119878734], + [4.550303142522373, 52.13675820592304], + [4.549140143373007, 52.13759296725298], + [4.550733048313659, 52.13838028586006], + [4.560220012696423, 52.1319328798356], + [4.561381212700882, 52.13223040439295], + [4.56610496407326, 52.135264024542536], + [4.570489666693179, 52.143420448108664], + [4.571480909629383, 52.15310902803848], + [4.572736679113299, 52.15224831738887], + [4.605923043184745, 52.15693495958504], + [4.61059330488638, 52.15757167377353], + [4.619032162988979, 52.15870800333558], + [4.639845829472896, 52.16160635538836], + [4.641485421843244, 52.16181552655951], + [4.645516629803485, 52.16200753545533], + [4.665335693463441, 52.16243344780629], + [4.679841095322084, 52.16274542313812], + [4.681209371734924, 52.167504227518236], + [4.6982298728588665, 52.15835954016694], + [4.699737942327962, 52.15706557620568] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d1eb9dce-38d1-4db3-8ef8-07e741d64f13", + "properties": { + "statcode": "GM0489", + "jrstatcode": "2024GM0489", + "statnaam": "Barendrecht", + "rubriek": "gemeente", + "id": 141 + }, + "bbox": [ + 92496.93299999833, 427139.8839999996, 98789.0009999983, + 432052.7410000004 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.552769500324132, 51.869429420469466], + [4.553841791750164, 51.86797232537172], + [4.553926309689332, 51.867857473913226], + [4.5548832436219415, 51.866560388756994], + [4.556370990839486, 51.8645718671574], + [4.560299136494071, 51.85933099553485], + [4.562732574553216, 51.856069665287215], + [4.563524213576198, 51.855018126953375], + [4.564112995060293, 51.85348767317724], + [4.565961256292657, 51.85208631020244], + [4.569970695612606, 51.85262053796942], + [4.571385980493139, 51.849427356110894], + [4.571058445970809, 51.84711677498695], + [4.569035651229084, 51.844849304591875], + [4.5638333077598, 51.840943732113686], + [4.5600134242773205, 51.838791264782124], + [4.558635741207109, 51.8368355028898], + [4.558911899635909, 51.836242432384225], + [4.5572493861597625, 51.83389747021037], + [4.55360870054682, 51.82989690571221], + [4.548652810365392, 51.83176308026776], + [4.542843764879531, 51.83186865592189], + [4.536293925024089, 51.831177200748854], + [4.531272625639784, 51.83019902249832], + [4.525477942569267, 51.82985424113594], + [4.511490074919373, 51.83268440482959], + [4.499246856107965, 51.83524321472327], + [4.489094303713286, 51.83539556985162], + [4.489724340943311, 51.84069034485873], + [4.492227114623788, 51.84144421528615], + [4.489603762613476, 51.84406080392599], + [4.489569939459617, 51.84549500429151], + [4.489699964840748, 51.84677584591476], + [4.487268129917205, 51.84860800914709], + [4.489665615817325, 51.850821776586], + [4.489875348772361, 51.85142043406069], + [4.485729854915951, 51.85303875145299], + [4.484165426306932, 51.85363420104209], + [4.48299009461749, 51.85409698129266], + [4.480287510125322, 51.85514858900147], + [4.481272428743295, 51.858561709747335], + [4.4798716981086395, 51.85892915304352], + [4.48058100795992, 51.85950925891882], + [4.480548590226443, 51.86101826763416], + [4.48040261540678, 51.86232756155803], + [4.480087902478355, 51.86527592171817], + [4.48072831548206, 51.86526635775105], + [4.48152564236557, 51.8654325045254], + [4.48170318218863, 51.86543702501774], + [4.4835433778447396, 51.86590549279109], + [4.485694028790092, 51.86657052597075], + [4.487175195830216, 51.86717149794296], + [4.4887527247298955, 51.86734816142988], + [4.4944054397464415, 51.86896893652877], + [4.496455519854449, 51.868970892797435], + [4.515233805286385, 51.869036578437246], + [4.515239464434233, 51.8690366231489], + [4.5226310389282, 51.8690780457394], + [4.526018496643912, 51.86973057217738], + [4.526848944824149, 51.86941480194415], + [4.529503859505104, 51.86894849167605], + [4.532026633344496, 51.86877671297963], + [4.535295404828659, 51.869338896481416], + [4.536396887285781, 51.86976417030939], + [4.539971593007644, 51.87017864956083], + [4.54263357132726, 51.870844973138595], + [4.542970938001779, 51.87112963564706], + [4.543398017577948, 51.871312182567145], + [4.543984758618985, 51.87185587005669], + [4.548184853395662, 51.87383550527191], + [4.549383136969257, 51.874027230743685], + [4.552769500324132, 51.869429420469466] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.25fe75dc-18ef-4f18-9710-1442ce6a2b10", + "properties": { + "statcode": "GM0498", + "jrstatcode": "2024GM0498", + "statnaam": "Drechterland", + "rubriek": "gemeente", + "id": 142 + }, + "bbox": [ + 135018.6700000018, 514737.2760999985, 145484.22960000113, 524468.875 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.195694847347499, 52.692214804417205], + [5.204595134861464, 52.677613672210626], + [5.204700061679143, 52.677940610764665], + [5.206231560825936, 52.68259453561657], + [5.208790422161189, 52.68380924143431], + [5.214435470022632, 52.68434639276325], + [5.215236080917312, 52.68442211276068], + [5.224861488629999, 52.685236689485116], + [5.23316893887215, 52.68589921998103], + [5.235432595278956, 52.68602925185346], + [5.243421207216221, 52.686243673356415], + [5.246017079350591, 52.68639330716009], + [5.246055869606915, 52.68584389902809], + [5.24648003251127, 52.68551202893576], + [5.245709135472632, 52.68498770644074], + [5.245273932741886, 52.68215661004729], + [5.2438300929879755, 52.68165817842639], + [5.243232959970286, 52.67765183810131], + [5.242664975798242, 52.6726314305298], + [5.238181048473203, 52.66535100814141], + [5.2357821808761695, 52.65706906467318], + [5.230643691471153, 52.65276879314978], + [5.207081175384844, 52.6445741069895], + [5.201356553683459, 52.64104502319894], + [5.198525384179043, 52.636312622774376], + [5.19010565718315, 52.636712475606394], + [5.1854333216363395, 52.63588035284296], + [5.177730205343326, 52.63420282499711], + [5.174561035450983, 52.63301976609173], + [5.170873808069774, 52.63069036482815], + [5.164203399985479, 52.626893945322635], + [5.159314023782977, 52.6231820396167], + [5.149656398964841, 52.623639783411846], + [5.147041272898465, 52.62267028302852], + [5.145945132580689, 52.62312776890259], + [5.142219693875403, 52.622382931280846], + [5.127890253655136, 52.61987970198354], + [5.125407936247549, 52.62190305801125], + [5.126285706488135, 52.62338085769705], + [5.128059882569768, 52.62431037353834], + [5.1286900450483754, 52.626093203776364], + [5.127335184360444, 52.62682944599028], + [5.125376749876917, 52.629600762268836], + [5.121027068415452, 52.63261787135325], + [5.117219462316092, 52.63288916050383], + [5.111609405198175, 52.632281386832894], + [5.109009026358749, 52.631384234872144], + [5.106547928226329, 52.631574169048655], + [5.101264274635087, 52.63367669986026], + [5.10075439602889, 52.634737101552766], + [5.106045227229735, 52.63558981925558], + [5.103605084639738, 52.64173657788197], + [5.101964126930951, 52.64702846361099], + [5.105192219299367, 52.64779064061332], + [5.117078378116085, 52.649985803244164], + [5.116441184382389, 52.65062295195585], + [5.119414041101635, 52.65116322804463], + [5.1161156503978145, 52.65431163920047], + [5.114758987230877, 52.65378291530825], + [5.110685379518007, 52.65670546079626], + [5.111339641101209, 52.65722196091648], + [5.107591186260364, 52.65972005132153], + [5.108072378912516, 52.65994856466999], + [5.108003949671449, 52.66026951068597], + [5.1082315256428465, 52.66040162355568], + [5.108039987636065, 52.66069282138212], + [5.108325142930926, 52.660795807367315], + [5.107232919745584, 52.66199570666763], + [5.107634683677816, 52.662157474106124], + [5.106554063649707, 52.66314988375508], + [5.10627133926787, 52.663004513840995], + [5.1048619168473355, 52.66429583316606], + [5.1040527594591465, 52.66395549430931], + [5.1034115234297195, 52.664567555649754], + [5.103099829281758, 52.66489598937966], + [5.102783690607252, 52.66477261526096], + [5.1014197559381715, 52.66603188889464], + [5.100888770209134, 52.66581995676756], + [5.098749605185383, 52.66743637215834], + [5.096266102369312, 52.66972285976413], + [5.096207787108555, 52.66981365675704], + [5.096934035173583, 52.67010764309303], + [5.096669607446745, 52.670346008272915], + [5.09881827286266, 52.67126186030614], + [5.096484508005445, 52.67433037595484], + [5.096105174033973, 52.67488900189762], + [5.09175230420987, 52.67892372303617], + [5.125179575485141, 52.69107580737657], + [5.144497524420224, 52.696324816463985], + [5.145795436146358, 52.69667678891612], + [5.153174395357048, 52.69891471128396], + [5.160121766384473, 52.701007667742424], + [5.187023105398028, 52.70745180008074], + [5.190247229899045, 52.70205690211889], + [5.190337588795798, 52.70190299966525], + [5.192766469686865, 52.697843631077006], + [5.193436616033487, 52.6965944096965], + [5.19573027524997, 52.69274680689466], + [5.195805683241712, 52.69260822111771], + [5.195999602270592, 52.69227752055775], + [5.195694847347499, 52.692214804417205] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f9ef2e61-4009-4b8e-8262-e00993d64877", + "properties": { + "statcode": "GM0502", + "jrstatcode": "2024GM0502", + "statnaam": "Capelle aan den IJssel", + "rubriek": "gemeente", + "id": 143 + }, + "bbox": [ + 96516.63599999994, 435638.2670000009, 102202.02299999818, + 442201.56819999963 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.590188742099619, 51.9601428392689], + [4.595049461126701, 51.95603700612066], + [4.595332502691564, 51.95579789967098], + [4.59939236642667, 51.951984186409064], + [4.602068262792452, 51.94947559834572], + [4.599742538563236, 51.94766615360458], + [4.603699192593064, 51.94480787507961], + [4.605905465549378, 51.94323234342607], + [4.6104970853607865, 51.939908946713146], + [4.614245806600324, 51.93723101454399], + [4.618924069931186, 51.933895042566924], + [4.619488624484371, 51.93349226847018], + [4.61770393282102, 51.93105014175779], + [4.615067855534433, 51.92735363929334], + [4.613235697823603, 51.92607723742979], + [4.610724389426053, 51.92534109438322], + [4.607053916098815, 51.925682388922596], + [4.601683265604128, 51.9266510265644], + [4.5981555168673145, 51.92608293315362], + [4.593959354235916, 51.92447615479815], + [4.588136699023212, 51.92179607398283], + [4.58283977557917, 51.92077692983332], + [4.581280382417931, 51.91986817534345], + [4.579490962626125, 51.916829346675236], + [4.579454583027194, 51.91675379075062], + [4.57715150710274, 51.91455164318965], + [4.5711832653337305, 51.911865576821974], + [4.566060951084158, 51.90924646949537], + [4.5586851149599825, 51.908238887273825], + [4.549901259191995, 51.906728487104964], + [4.551050578597902, 51.909637945557606], + [4.555552360989274, 51.910541250045775], + [4.556828308518736, 51.91038570848769], + [4.556716422637476, 51.9121158675035], + [4.556495887317051, 51.91480313971644], + [4.554024934546659, 51.91477955515233], + [4.554256319371755, 51.91650505037894], + [4.553995872479789, 51.91661780086365], + [4.5503357377493305, 51.91486188502602], + [4.550100964575786, 51.914378077041235], + [4.5486391747065475, 51.9104015540726], + [4.547232855970742, 51.90694646740288], + [4.546133406226502, 51.90657791498585], + [4.5433884453661975, 51.9062200650244], + [4.542135953671713, 51.90620455721937], + [4.5416769787068025, 51.906852321821454], + [4.53921993900315, 51.91169231261003], + [4.538332323151002, 51.911897814985366], + [4.53718531719792, 51.914036274612364], + [4.537438874135233, 51.9146822461738], + [4.53823104536949, 51.914910881252936], + [4.538222091303892, 51.915344160922515], + [4.540522589434743, 51.915241862302764], + [4.537851597839706, 51.919317275973405], + [4.537549564327274, 51.919778378501334], + [4.545161237569881, 51.91929142389512], + [4.552078893185278, 51.91944962780269], + [4.5563273014566485, 51.92031641060446], + [4.556909726559381, 51.91991389724613], + [4.5608856328084, 51.92166282103636], + [4.561523928116701, 51.92187453788089], + [4.561452455594619, 51.9221731960833], + [4.56318542437561, 51.92282398799495], + [4.564551264605367, 51.923632639856436], + [4.5657772394751, 51.92506438512813], + [4.565688381688094, 51.92555103848637], + [4.565995455255263, 51.925737484456924], + [4.566238813971122, 51.925908838568425], + [4.565154975309165, 51.92891434381616], + [4.565152708601225, 51.929178974154375], + [4.564702334256221, 51.929547171632436], + [4.565288192292569, 51.929825782042904], + [4.564387054982576, 51.931954243725755], + [4.564212800465278, 51.93236583520182], + [4.562724245514254, 51.93588140510355], + [4.562646586375015, 51.93606480386592], + [4.560594460591934, 51.94091007963756], + [4.567594150696963, 51.94198191093683], + [4.570499337713193, 51.942426641600065], + [4.572779644721716, 51.943456112692], + [4.567437282679589, 51.94795778548493], + [4.564604214283455, 51.95034949684777], + [4.56406343755954, 51.950808853888184], + [4.56240560886931, 51.95472423696287], + [4.561587489402016, 51.95665392202542], + [4.562899100627809, 51.956864603507064], + [4.56205310841769, 51.95887454578137], + [4.564367130705771, 51.959924536582406], + [4.566795402620952, 51.957881761784265], + [4.567891009916255, 51.95818676981608], + [4.5680128804548055, 51.9580799083274], + [4.570508060349453, 51.95909992731452], + [4.575149340561674, 51.96126716488006], + [4.580385484708337, 51.9637588086343], + [4.581479347152691, 51.96442323246316], + [4.58380571324967, 51.96549178075949], + [4.583992414024661, 51.965368966697184], + [4.588460073493366, 51.961602589377165], + [4.590188742099619, 51.9601428392689] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f72ecee4-39c0-46c1-8d84-5cad48593362", + "properties": { + "statcode": "GM0503", + "jrstatcode": "2024GM0503", + "statnaam": "Delft", + "rubriek": "gemeente", + "id": 144 + }, + "bbox": [81743, 442446.20800000057, 87703.77499999851, 449847.9508000016], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.379735288096948, 52.02673268245576], + [4.379808653944724, 52.026663579390295], + [4.386244899521858, 52.023308192077415], + [4.387848350901026, 52.02137085059597], + [4.390789337330061, 52.01682887353641], + [4.393319911085713, 52.01306956409536], + [4.394515940388208, 52.011255646728245], + [4.3936875259657295, 52.0110216381192], + [4.393686792705543, 52.0109331469797], + [4.3883459128789655, 52.009447114518515], + [4.388497773327513, 52.008666833294185], + [4.389025231618225, 52.007830893082456], + [4.388180440122924, 52.00663811556127], + [4.388622998689171, 52.00545371464375], + [4.38617336479526, 52.00489411485667], + [4.385915732382054, 52.00483525560222], + [4.388142452546732, 51.999775904567876], + [4.388281289634618, 51.999454289375684], + [4.389164345707076, 51.997380756042205], + [4.389577360005181, 51.9965198224503], + [4.391770153022798, 51.9912892495066], + [4.393526962358369, 51.987175866023854], + [4.397030128008511, 51.978974022008856], + [4.401537674254719, 51.97804642435112], + [4.407273407645127, 51.96898676863647], + [4.407910876301374, 51.968198605790896], + [4.402933412547201, 51.966316314442864], + [4.39772304301432, 51.97433365244667], + [4.396745758921338, 51.974180780963586], + [4.396173948718054, 51.97608016255917], + [4.3942172691559245, 51.97632683571531], + [4.393809811261694, 51.9775034764756], + [4.383622482212039, 51.975815867985226], + [4.386302878384676, 51.97221405212884], + [4.375752332825851, 51.9701476078687], + [4.369175464199921, 51.96887046622439], + [4.368173838796324, 51.971581759636116], + [4.359540231946459, 51.97013539782889], + [4.358720932578595, 51.97226094967038], + [4.3598805962259695, 51.97245727738436], + [4.359701042876098, 51.972872942700235], + [4.358536135020588, 51.97270514465525], + [4.358368790247594, 51.97310737941372], + [4.359479001158204, 51.973280389308705], + [4.359307012748724, 51.97369335155617], + [4.358203846870733, 51.97350383715334], + [4.3576564919814, 51.97481940429058], + [4.358831644702143, 51.97502014264995], + [4.358571671764425, 51.97565789973627], + [4.35737637939093, 51.97549262231301], + [4.356625880980555, 51.97729625742527], + [4.345068900451849, 51.975419351236475], + [4.343134369712317, 51.97567480160887], + [4.338227324820158, 51.974177716248576], + [4.332723641511645, 51.98045665064039], + [4.332042139260479, 51.984067906568775], + [4.328487650444218, 51.985702018627165], + [4.32411192735902, 51.98985860501339], + [4.325732344402375, 51.991951225848794], + [4.333109542468982, 51.99317179815658], + [4.332813939905857, 51.99555332316005], + [4.33152500080776, 51.997852172268395], + [4.333244425523361, 51.998116117031486], + [4.333348316048771, 51.99792123433908], + [4.334746299832819, 51.998346643734365], + [4.3377168690031365, 51.998802539804714], + [4.33583429134002, 52.00105531414118], + [4.3411425007289965, 52.00271036189336], + [4.341097252562961, 52.002782742855494], + [4.339037625910961, 52.00504791961826], + [4.338453227937851, 52.00569073446375], + [4.336370855964824, 52.0047531815783], + [4.332655693060222, 52.007882839868245], + [4.33131179499156, 52.00728013967887], + [4.328259554728464, 52.00591995341902], + [4.327740302315775, 52.006404792649654], + [4.326547894868222, 52.00614641104505], + [4.326504513647679, 52.00624332391983], + [4.325759738804335, 52.006017129607265], + [4.326346270810709, 52.00529279640247], + [4.323244422008502, 52.00433561314942], + [4.320217743007207, 52.00806544663136], + [4.321490059568697, 52.00846349292353], + [4.320635737452763, 52.009322032850434], + [4.324366319540991, 52.010437474551935], + [4.324374485766219, 52.0105832927633], + [4.325268156440216, 52.01077504532263], + [4.32547071649411, 52.01086923264827], + [4.325329426491343, 52.011315348711655], + [4.325995389807823, 52.01162105055287], + [4.325321860897431, 52.01219907738066], + [4.325624199297454, 52.01232245045779], + [4.326059327720989, 52.01250006646745], + [4.325956240875383, 52.01279331349752], + [4.3302459938604985, 52.014666057513786], + [4.334287267216494, 52.016418050367434], + [4.334426327761852, 52.016481196318594], + [4.343695447565389, 52.02061677342972], + [4.347670292137395, 52.02235143833252], + [4.348001862983631, 52.02245360792568], + [4.3480119422782675, 52.02245664251616], + [4.351418453743742, 52.0240031321347], + [4.354950331832447, 52.025580383289466], + [4.355034442917907, 52.02553018152065], + [4.355426800822968, 52.02571317996157], + [4.355477310715246, 52.025852139180394], + [4.357693163667414, 52.0268208082583], + [4.357790282030797, 52.02686319714048], + [4.358848662181411, 52.02733392840658], + [4.359774379532064, 52.026542267221835], + [4.360260703291614, 52.02675761531556], + [4.362426017648171, 52.02769033422251], + [4.3633960406770935, 52.02809651592364], + [4.373499160779408, 52.03259879756349], + [4.379735288096948, 52.02673268245576] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.442814a4-f93f-4997-8fd5-cb354195eeb8", + "properties": { + "statcode": "GM0505", + "jrstatcode": "2024GM0505", + "statnaam": "Dordrecht", + "rubriek": "gemeente", + "id": 145 + }, + "bbox": [ + 102165.68800000101, 414556.88489999995, 120347.2100000009, + 426300.9437999986 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.729638671276236, 51.82216873918245], + [4.74169178130527, 51.822218372537606], + [4.741764665766825, 51.82222108612145], + [4.751440572601412, 51.821610718825994], + [4.757757206588527, 51.81919126918708], + [4.7661803380640535, 51.816065473447665], + [4.7720915989414525, 51.81531908858026], + [4.778547676427792, 51.81529342328965], + [4.785354886694126, 51.815198390985984], + [4.789741799803142, 51.81573818802169], + [4.797476593944037, 51.81716511053217], + [4.811415832610211, 51.818658197025], + [4.8201149561196255, 51.819057871728], + [4.839052006017264, 51.81925463100209], + [4.84767760811273, 51.81891589138007], + [4.856110760480172, 51.81839470829906], + [4.87487993976868, 51.81759946955137], + [4.8833229028889, 51.81862739757955], + [4.88464251226574, 51.81647139787968], + [4.859667267153294, 51.80268434607918], + [4.854413462728822, 51.80068312837893], + [4.845984335976476, 51.79875695585519], + [4.8361084409578865, 51.797839096697686], + [4.828872220684182, 51.79802061246265], + [4.806875681322382, 51.80033628648609], + [4.797194138180015, 51.79976996464425], + [4.773539017784451, 51.79332433578956], + [4.765983137902961, 51.789631667840155], + [4.765224479150237, 51.789208362000586], + [4.755239671168641, 51.781611405533646], + [4.750568881008354, 51.77576150556164], + [4.744788205733936, 51.7634874316461], + [4.740769999835573, 51.758818207112746], + [4.736630793974386, 51.755568379492274], + [4.724591579097507, 51.74790551616242], + [4.703745677747655, 51.73692747186531], + [4.693262894328346, 51.732281626147035], + [4.681597589101821, 51.728418728028295], + [4.676304223471845, 51.72492365057537], + [4.675222591695757, 51.724209390396105], + [4.645136584917976, 51.719067325039354], + [4.64450002594492, 51.71895577279887], + [4.641569223630187, 51.72337594138707], + [4.641044938285017, 51.72341421616492], + [4.64403373977476, 51.71886306253671], + [4.643852296104246, 51.718826986619156], + [4.640868444929242, 51.72335891594212], + [4.639805486857646, 51.723205727601375], + [4.635000919722565, 51.72199089639981], + [4.63493222161656, 51.721706767212645], + [4.634357876393386, 51.721539894390965], + [4.636854224004795, 51.7174352989387], + [4.636430503290081, 51.717350504559526], + [4.6339182506776675, 51.72142272903555], + [4.633338912448123, 51.72135418170392], + [4.6328143907332775, 51.721519454954304], + [4.628185083773613, 51.72035047837439], + [4.627667043158724, 51.72361327594845], + [4.628761703452432, 51.72552527285418], + [4.627865192311184, 51.7255107635545], + [4.627070717526224, 51.72409399303907], + [4.626462684306634, 51.72226612605522], + [4.626414432444209, 51.72080531193688], + [4.627442487640556, 51.72054201121329], + [4.627739775775525, 51.71997661983681], + [4.626659974631961, 51.719954181938235], + [4.626218594647277, 51.72016202032581], + [4.6259698707991275, 51.720532803865495], + [4.625665240974434, 51.72056057481282], + [4.623597040914591, 51.721395865171836], + [4.626579244130007, 51.72825628753038], + [4.6311261280078515, 51.74174595933287], + [4.631122124731273, 51.75010697170179], + [4.627110220395756, 51.76028313561284], + [4.62611529822004, 51.76605157999494], + [4.6269291283586105, 51.77266315533824], + [4.626985312449262, 51.772906458598555], + [4.627711954912485, 51.777638097076355], + [4.627495381297573, 51.78217194117503], + [4.627421927609313, 51.78248550604042], + [4.626840384407917, 51.78475131346423], + [4.623212685988301, 51.79241316043234], + [4.621871685768979, 51.79769048839398], + [4.621221575591659, 51.800803681803664], + [4.632178861780685, 51.80213104927525], + [4.64195779605306, 51.80570992017464], + [4.6480710879790115, 51.809277718566975], + [4.650545244931636, 51.81131583629254], + [4.650792095576763, 51.811512917577225], + [4.654747459140773, 51.814444617581394], + [4.656316657783594, 51.815429723659456], + [4.65645853765151, 51.81550861907685], + [4.658584378961727, 51.81669068984112], + [4.663248795641995, 51.81902685456238], + [4.664442432728738, 51.81948229046972], + [4.668392046405299, 51.82054656358189], + [4.671376105730293, 51.82084552201156], + [4.671708689632661, 51.82085397597755], + [4.671729454062405, 51.82079130774509], + [4.676369797632991, 51.82041616532478], + [4.684631781241696, 51.820775464526506], + [4.688343847774802, 51.821412931994345], + [4.692267567754098, 51.82200635977119], + [4.697838369720268, 51.82258749711635], + [4.703733128378772, 51.82314189078889], + [4.707924003003304, 51.8233504218856], + [4.70997638471658, 51.823348277435045], + [4.729638671276236, 51.82216873918245] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.8e789017-6bbb-4c18-b87e-54742c2daac5", + "properties": { + "statcode": "GM0512", + "jrstatcode": "2024GM0512", + "statnaam": "Gorinchem", + "rubriek": "gemeente", + "id": 146 + }, + "bbox": [ + 122928.171, 425644.05000000075, 130480.8759999983, 430658.91800000146 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.938895226020189, 51.86351838144709], + [4.956972586530799, 51.85957311672378], + [4.959309561782317, 51.86288493530633], + [4.964976577128846, 51.86159157724579], + [4.983318608900231, 51.857108251288196], + [4.981260566991807, 51.851870263423386], + [4.99634190804458, 51.84922862450839], + [4.99868458270965, 51.85227720698765], + [5.000001849442091, 51.84757584954259], + [4.998895068161421, 51.84524630568717], + [4.999520386269443, 51.84513740053805], + [4.999296319520619, 51.84459988083369], + [4.999934089803546, 51.844391439043655], + [5.002895104849438, 51.84366182780679], + [5.0034478635502095, 51.84476893031506], + [5.009323008956305, 51.842716141354465], + [5.021270351315135, 51.841925717993114], + [5.0314150015856764, 51.84108480241829], + [5.028287572490509, 51.82616034275561], + [5.027701160194713, 51.82354983594603], + [5.026351766763361, 51.81885673991695], + [5.012996075252313, 51.82072575328823], + [5.000363907649196, 51.820933382773724], + [4.999282631405173, 51.820867776437304], + [4.98775692375039, 51.821059363558135], + [4.976099736255647, 51.82263304317404], + [4.969633134786853, 51.82365436791464], + [4.960515808530892, 51.8250421011327], + [4.942437574715162, 51.827243176460236], + [4.936064116271526, 51.828314499560406], + [4.926986579793933, 51.82830596135512], + [4.925194866587605, 51.837079730578324], + [4.925120275378566, 51.8375307392092], + [4.925072672895741, 51.83787770548687], + [4.9250156293181675, 51.83830334480739], + [4.9248638313931625, 51.83971841318064], + [4.921822814334078, 51.84078889015972], + [4.925441301747042, 51.840239453207595], + [4.93088599239708, 51.84026589969078], + [4.936617773861815, 51.842933787780474], + [4.936939912180218, 51.84437842598818], + [4.942714439805488, 51.84478412284491], + [4.9403462743874975, 51.85842846269661], + [4.93839867744693, 51.86362936025897], + [4.938895226020189, 51.86351838144709] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c86ecf66-80f4-4626-b0b5-fd32bf0f4afe", + "properties": { + "statcode": "GM0513", + "jrstatcode": "2024GM0513", + "statnaam": "Gouda", + "rubriek": "gemeente", + "id": 147 + }, + "bbox": [ + 105030.53400000185, 445549.94000000134, 111746.93609999865, + 450418.4299999997 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.719933920145282, 52.028468876766865], + [4.719852283747362, 52.02648424094458], + [4.721180473820176, 52.02647265820083], + [4.721211078106177, 52.02610764256393], + [4.7263427228622215, 52.02592599449403], + [4.727419844744065, 52.02598812244131], + [4.727607436521775, 52.02531459611624], + [4.7299638161011766, 52.02562819102138], + [4.730154874516395, 52.02488346524063], + [4.734400030784875, 52.025020151543636], + [4.734618601601134, 52.024278923940166], + [4.736296381869601, 52.02421783202507], + [4.736782650476541, 52.022748224521756], + [4.743697436295025, 52.02260807044821], + [4.746016653469895, 52.016976388899415], + [4.749148482423159, 52.01617645107008], + [4.749629411656634, 52.01528287666931], + [4.7500488549533895, 52.01450353236569], + [4.750991277170266, 52.01389879432047], + [4.752763002887728, 52.010536548182344], + [4.757247402489247, 52.00292617521693], + [4.757327226146794, 52.0014384797975], + [4.7522619739899, 52.0023482119821], + [4.745970129438371, 52.00279561923597], + [4.7420563771577, 52.00458641268183], + [4.739321561016128, 52.00625210009558], + [4.737733367684216, 52.006841435392126], + [4.737291799227511, 52.005935125689284], + [4.730774075070289, 52.00735094424682], + [4.728327690531802, 52.00734370670605], + [4.722792599193202, 52.0054820581469], + [4.724200948889383, 52.00338473543737], + [4.727569779626537, 52.00158288224279], + [4.726736470692108, 52.00127603338362], + [4.7267023154114325, 52.00126345569701], + [4.718861287894371, 51.99836956388027], + [4.714411543378495, 52.0004028287156], + [4.712909601667188, 51.999141338067744], + [4.707217068694577, 52.0017622659845], + [4.7010714697721205, 51.997560617262316], + [4.696829694068746, 51.99694392429435], + [4.69064166460612, 51.99667196559464], + [4.688684512651094, 51.996258042150544], + [4.684021274540899, 51.9979576724787], + [4.681761749316162, 51.99710721665401], + [4.681162763966796, 51.99687667637315], + [4.680229460252321, 51.99654157508703], + [4.674967487106949, 51.99972484652373], + [4.6707169438145355, 52.0023261111264], + [4.669524162807684, 52.002464893875526], + [4.662810241899534, 52.003245824768314], + [4.659454559108632, 52.00528769649374], + [4.667032053757787, 52.010005490286886], + [4.670096857869127, 52.010549871723036], + [4.6707289208124285, 52.01112640984754], + [4.66660655264981, 52.01297063583893], + [4.675574859545683, 52.01767490590768], + [4.681823104670654, 52.01930750351139], + [4.679671673602235, 52.0211572636433], + [4.673647892966856, 52.022599324927675], + [4.670380627710718, 52.022835198714716], + [4.667770299542605, 52.02451870508918], + [4.667278995619409, 52.025078336849944], + [4.679081628783794, 52.02819101434761], + [4.680541370280156, 52.02798127582812], + [4.685847712405736, 52.03026386954486], + [4.691896565641546, 52.032984763109376], + [4.694970453521301, 52.03441915698198], + [4.699701711572397, 52.0369142813961], + [4.701737732676482, 52.037856006466676], + [4.706039289398623, 52.04011969881705], + [4.709229598060335, 52.03954954933609], + [4.7123931940838935, 52.0389630714532], + [4.716260763406758, 52.0382226858987], + [4.717581403914859, 52.03530673753341], + [4.71987122724114, 52.03520081863276], + [4.719903398001635, 52.030273069389324], + [4.719933920145282, 52.028468876766865] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.3b7cede8-1b00-4d50-8b45-07f452091e42", + "properties": { + "statcode": "GM0518", + "jrstatcode": "2024GM0518", + "statnaam": "'s-Gravenhage", + "rubriek": "gemeente", + "id": 148 + }, + "bbox": [ + 73325.18090000004, 447950.8060000017, 88833.2611999996, + 460589.4860999994 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.30263667331846, 52.12852020607691], + [4.328835857773563, 52.10928734944658], + [4.32894217942354, 52.10920949946257], + [4.333060413431348, 52.10573078190536], + [4.330434519015273, 52.104261218344654], + [4.332264274864017, 52.10304008471127], + [4.32328959417702, 52.09920995893221], + [4.32738901210725, 52.09565738016889], + [4.337252929812567, 52.09876951100471], + [4.338573373236649, 52.097434809047314], + [4.341362039548272, 52.098342489472415], + [4.342318125733198, 52.09748184206079], + [4.343743457846494, 52.0981085414286], + [4.358486561997701, 52.10575894908734], + [4.358831354076847, 52.105527037918286], + [4.363309010178451, 52.10180345127759], + [4.3644057467972, 52.10080554092549], + [4.370072988198612, 52.09606420789936], + [4.37270929656381, 52.094772594424555], + [4.371466750069151, 52.09383465214673], + [4.373436349719362, 52.092346885909464], + [4.373051240457284, 52.09205892330535], + [4.368029968544982, 52.08969721133029], + [4.367778520643479, 52.089582949035815], + [4.358897303144946, 52.0855592046517], + [4.356777046283107, 52.08460439232175], + [4.353202159482526, 52.083006205685955], + [4.352489588799785, 52.08269092567767], + [4.345103216239177, 52.079480793193724], + [4.345394886100799, 52.079111544701945], + [4.338958434078054, 52.07666120153589], + [4.3388518240871745, 52.07661393605397], + [4.335213198569284, 52.0750004045887], + [4.354932235531278, 52.06825037026808], + [4.3555187020389, 52.06803980246179], + [4.342195736001967, 52.06113455896082], + [4.344127353175053, 52.05972057025414], + [4.344244066589064, 52.059773579152356], + [4.344478914539758, 52.05961752977566], + [4.348003600341269, 52.056498113731195], + [4.352281471369034, 52.059394096984754], + [4.35331627227032, 52.05866834876733], + [4.353977375777407, 52.05898691151904], + [4.357574943464856, 52.0565536129898], + [4.3572499643906735, 52.05633559033223], + [4.357349786936239, 52.05625471181958], + [4.359228884542722, 52.0573483770941], + [4.359474975022876, 52.05718026062867], + [4.359822718293022, 52.0573663310923], + [4.35943733144171, 52.05763086816036], + [4.359968624433668, 52.057927896048845], + [4.359576977657874, 52.058198796912016], + [4.360122985426429, 52.058501174836806], + [4.360451845754613, 52.058265059455984], + [4.360826110630753, 52.05846833767279], + [4.3560219958092565, 52.061572049067536], + [4.363822627360876, 52.06517390066944], + [4.364012408565264, 52.065321365366465], + [4.37142877853194, 52.069582298347264], + [4.3799958419888885, 52.07474501568707], + [4.384360788929854, 52.076161081478865], + [4.38458270772078, 52.07623423923234], + [4.388650953369096, 52.072973786361175], + [4.391921483327074, 52.07472496055775], + [4.394621524836263, 52.075906918730816], + [4.397093570530318, 52.074763553172886], + [4.4039238392560955, 52.077845017312995], + [4.405928610013232, 52.07659312742779], + [4.411881370037994, 52.072134493420734], + [4.417243577656287, 52.066221646908076], + [4.420690706501567, 52.06345523818234], + [4.420832515068699, 52.06258004736731], + [4.4204239717064056, 52.062101143345885], + [4.422431051332642, 52.05732947742137], + [4.415394622686726, 52.05744133217617], + [4.422072403575685, 52.05167308822989], + [4.401358144132421, 52.053335522929764], + [4.400073637429128, 52.052367677722195], + [4.398549537897922, 52.05121787032825], + [4.394444997814233, 52.05405390077354], + [4.393570780483377, 52.05347845463224], + [4.393764105915721, 52.053330406200466], + [4.393124129346798, 52.05284343893801], + [4.3925867658999485, 52.05315311906563], + [4.39113098256923, 52.0519516790199], + [4.391439918528141, 52.05176141250072], + [4.389676176021016, 52.04996134686356], + [4.387904518077771, 52.05116948871893], + [4.386098397507107, 52.04996733819703], + [4.385840562915109, 52.049795722339816], + [4.378103282963097, 52.04464481624016], + [4.372657859999117, 52.04092792884516], + [4.3798581964688985, 52.035952283741395], + [4.3811800853543, 52.03638644045985], + [4.386768136499499, 52.03844420317277], + [4.387850895656423, 52.03844285081381], + [4.393928640969298, 52.03305326898939], + [4.379735288096948, 52.02673268245576], + [4.373499152118347, 52.03259879389342], + [4.3633960392202, 52.028096515910974], + [4.362426017648171, 52.02769033422251], + [4.360260703312214, 52.02675761441689], + [4.359774379532064, 52.026542267221835], + [4.358848662181411, 52.02733392840658], + [4.357790282030797, 52.02686319714048], + [4.357531851908068, 52.02737751477484], + [4.3579021922619, 52.027765461300135], + [4.354833897986723, 52.030438326288156], + [4.353777855161969, 52.03067598254814], + [4.3503641517043246, 52.03931300230812], + [4.346884008673421, 52.042466642136375], + [4.3468368113616505, 52.043573023109], + [4.3460627038643, 52.04401817118718], + [4.346877492628794, 52.04551755502289], + [4.34913218701524, 52.04688594139105], + [4.352312493263918, 52.04818248222875], + [4.3526387077272775, 52.04909517555076], + [4.344691303465085, 52.05393948111772], + [4.347256566782508, 52.05630435748298], + [4.346904985912942, 52.05705459063016], + [4.344154672798984, 52.05938189543352], + [4.341880818444089, 52.06097770091408], + [4.340306937297911, 52.06194681042132], + [4.335150685211975, 52.05963106773664], + [4.33489199857129, 52.059523399263405], + [4.330332666299532, 52.05733536190873], + [4.328650962051242, 52.0565486017491], + [4.327643090312789, 52.05694290921634], + [4.32762825736959, 52.05645274575076], + [4.325487392503381, 52.05544121652495], + [4.324122349232063, 52.05564745987929], + [4.321353459427094, 52.054616413760705], + [4.321907980870466, 52.05305174324009], + [4.316445659373792, 52.05087056521923], + [4.313080582031055, 52.05013258576431], + [4.310041740261614, 52.04866920093631], + [4.309812349545611, 52.04857445807437], + [4.304409632327408, 52.04665981252528], + [4.303226150826527, 52.046956280427], + [4.298366722776905, 52.045557101216794], + [4.298737084005706, 52.04500924243652], + [4.297246938274505, 52.04457001131271], + [4.297562991078945, 52.04406761313933], + [4.296767208183938, 52.04372761678394], + [4.29550890465522, 52.04358301420572], + [4.293452893821121, 52.043062621771064], + [4.293865641152313, 52.04254041208109], + [4.290951689262947, 52.04157297544223], + [4.291707274849408, 52.040378305403365], + [4.298616683422468, 52.02982135223667], + [4.297890739282625, 52.02946873310392], + [4.2979050068504785, 52.029447362072275], + [4.300931442513893, 52.0259320192595], + [4.30418875190537, 52.02214763220608], + [4.304312905358546, 52.022001926763586], + [4.307638584821269, 52.01815135964611], + [4.302664061511409, 52.01648804921444], + [4.301075364619267, 52.01786895195735], + [4.298614503614023, 52.01687686495518], + [4.29551214852881, 52.01484843273213], + [4.2897366980187694, 52.01764749113201], + [4.294344581048558, 52.01935865086649], + [4.286999323286745, 52.02286897247412], + [4.286773411458887, 52.02296742893527], + [4.288254549097564, 52.02375762853949], + [4.2851462754934, 52.02561773749811], + [4.2856503112677204, 52.02591369295945], + [4.2850466816527275, 52.02626769112695], + [4.285883852465252, 52.02648083504882], + [4.285249860627184, 52.027422325487336], + [4.283474822382952, 52.02670022709688], + [4.282800386411271, 52.02762619458525], + [4.2817415233904175, 52.02736818748808], + [4.277896808931001, 52.03246830070582], + [4.275895430725804, 52.03155798447422], + [4.272973380582181, 52.035518452369], + [4.272662682414576, 52.03591712586488], + [4.2666453500144685, 52.033006196266534], + [4.259132777201324, 52.02957094901435], + [4.2563766281119015, 52.028347910437155], + [4.254891591596354, 52.02828958800701], + [4.2482171010162135, 52.02522579567794], + [4.244808089808479, 52.02873108210941], + [4.2442946013846035, 52.0288454528239], + [4.241415380337123, 52.031949543704826], + [4.235053995363408, 52.03925633033003], + [4.228325782009908, 52.034642021633545], + [4.219226713071831, 52.03373677915036], + [4.213734285580347, 52.03168657718097], + [4.21225506243344, 52.030752371620935], + [4.209584526184113, 52.033654693765634], + [4.212434345996899, 52.03403305664894], + [4.209037219593825, 52.038274349476566], + [4.204164020073882, 52.0446700219615], + [4.204116477679248, 52.04472688913754], + [4.196340551756235, 52.055660849970195], + [4.205140633236357, 52.060612584012425], + [4.202413986356266, 52.06152858153633], + [4.211584094955224, 52.06603115998999], + [4.225485927212433, 52.07437331468549], + [4.231085041587676, 52.078546082711924], + [4.243606490506805, 52.08825672095385], + [4.255232821540517, 52.098065722231155], + [4.256071118730901, 52.09978442097469], + [4.253827721922489, 52.101214637468644], + [4.252462096663094, 52.10394776627501], + [4.254216203571023, 52.10142315905338], + [4.257942965727375, 52.09891402723259], + [4.259899476783609, 52.099004543707444], + [4.2605444546838465, 52.09866630093489], + [4.2607114775047625, 52.09828062092279], + [4.2590244617156765, 52.097840206691515], + [4.259394236135388, 52.09701419011669], + [4.261036730271774, 52.09729371091401], + [4.26375190591553, 52.09689401825926], + [4.264653239107092, 52.097494392480904], + [4.263581339684856, 52.09826573150964], + [4.2641707903250134, 52.09863057370024], + [4.266911687295544, 52.097348902559574], + [4.263177656743415, 52.09483666108433], + [4.264192295169757, 52.094252445879086], + [4.271725273925704, 52.09956473472011], + [4.27077606376602, 52.100053189404115], + [4.267196262736144, 52.097485980153955], + [4.265449194329382, 52.098411547111105], + [4.265411761536397, 52.0987431502242], + [4.268732739469603, 52.101106337928655], + [4.26721401225358, 52.101903465148176], + [4.263167412434889, 52.09906429325657], + [4.261235984639122, 52.09921203388785], + [4.260659881335939, 52.099570702357184], + [4.261034812179163, 52.10059200843451], + [4.258808160488056, 52.10145615336712], + [4.257749897678765, 52.10344616214476], + [4.25591576563843, 52.10386352218327], + [4.256175976100322, 52.104186417516225], + [4.258184319523073, 52.10365151591246], + [4.258937269810193, 52.10227772635955], + [4.261447413609206, 52.10294320477129], + [4.265228183456939, 52.10547818242388], + [4.269126831137459, 52.107912988349455], + [4.280093290746854, 52.115423372207516], + [4.28165793398366, 52.11622576382581], + [4.279920955783386, 52.117192002905114], + [4.279890255653004, 52.11673254858853], + [4.279351792247032, 52.11670012920065], + [4.279153268919224, 52.11681728760736], + [4.27913559304246, 52.1172338796451], + [4.279860195367991, 52.11733079953585], + [4.279648851041063, 52.11786485262436], + [4.280022281862804, 52.11791769465592], + [4.280170360764322, 52.11780679008907], + [4.2800340163598145, 52.11733255695807], + [4.280446742831795, 52.11710593817805], + [4.28090783818569, 52.1171598142966], + [4.280811345634485, 52.11749195138159], + [4.281045779417992, 52.11751139690363], + [4.281189532459783, 52.11715151261058], + [4.28054933789752, 52.11704419958114], + [4.2818442593649895, 52.11632354902027], + [4.28666371084166, 52.11923866496945], + [4.30263667331846, 52.12852020607691] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ceb2df4f-8488-42b8-8a83-1e3825b2fb33", + "properties": { + "statcode": "GM0523", + "jrstatcode": "2024GM0523", + "statnaam": "Hardinxveld-Giessendam", + "rubriek": "gemeente", + "id": 149 + }, + "bbox": [ + 114770.61300000176, 425436.6550000012, 123275.24399999902, + 430384.28400000185 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.8476743444576975, 51.83297541958833], + [4.847949469476621, 51.832617313548496], + [4.851113247155031, 51.83312837123366], + [4.854367583501252, 51.83213257414414], + [4.8603368851086, 51.8330118769493], + [4.863006819373674, 51.83294082953536], + [4.866450569398338, 51.8348369109953], + [4.867592347413261, 51.83397945058847], + [4.867928355244634, 51.83199366772902], + [4.875091626188849, 51.832318462270706], + [4.882773841001125, 51.83309404727627], + [4.902151014992797, 51.83765348793139], + [4.90986159852401, 51.83884837630883], + [4.9248638313931625, 51.83971841318064], + [4.9250156293181675, 51.83830334480739], + [4.925072672895741, 51.83787770548687], + [4.925120275378566, 51.8375307392092], + [4.925194866587605, 51.837079730578324], + [4.926986579793933, 51.82830596135512], + [4.918599011468456, 51.827482190083764], + [4.909126363448169, 51.825377442159166], + [4.889400948115376, 51.81889501534335], + [4.885226875372582, 51.81676969261429], + [4.88464251226574, 51.81647139787968], + [4.8833229028889, 51.81862739757955], + [4.87487993976868, 51.81759946955137], + [4.856110760480172, 51.81839470829906], + [4.84767760811273, 51.81891589138007], + [4.839052006017264, 51.81925463100209], + [4.8201149561196255, 51.819057871728], + [4.811415832610211, 51.818658197025], + [4.811384103702623, 51.821147881434264], + [4.808170294829761, 51.82180481103354], + [4.806503761580132, 51.82191995230524], + [4.805075449648224, 51.821949427513076], + [4.805078364986045, 51.82301417841465], + [4.804994874702365, 51.823201646818795], + [4.804575066695482, 51.82893474010533], + [4.8045007605216945, 51.829760179437734], + [4.804482661196883, 51.829983452461185], + [4.803985058799338, 51.83738701623721], + [4.804692076230707, 51.837736234708665], + [4.8039053157516385, 51.838566112285356], + [4.803378549399169, 51.84635340664415], + [4.810705336698017, 51.849252229164854], + [4.81045994905135, 51.8496948597457], + [4.813783122863792, 51.85033921655707], + [4.838082138825593, 51.86073467127649], + [4.845328370133237, 51.83857536610795], + [4.847026467626332, 51.83452800289732], + [4.847297591636093, 51.833944402950074], + [4.847537379367276, 51.833456254837], + [4.8476743444576975, 51.83297541958833] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.79dc9757-4457-40cb-8938-1a1b06b3596c", + "properties": { + "statcode": "GM0531", + "jrstatcode": "2024GM0531", + "statnaam": "Hendrik-Ido-Ambacht", + "rubriek": "gemeente", + "id": 150 + }, + "bbox": [ + 100758.2890000008, 426352.30000000075, 105751.28000000119, + 431507.91699999943 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.658200225724209, 51.85163035604759], + [4.663367530211641, 51.84753234702282], + [4.670173005125878, 51.84214926236851], + [4.672606187846157, 51.8386503287519], + [4.672413144866714, 51.83588280762404], + [4.6692085152405705, 51.82959866281145], + [4.669160662431746, 51.828836175922156], + [4.670438836676199, 51.82358911887699], + [4.669692322650747, 51.82417070038159], + [4.666297501860964, 51.826803685808635], + [4.661885761452052, 51.83160788547057], + [4.659936479300135, 51.831068982216564], + [4.6598916313714716, 51.83105800604229], + [4.653440092766541, 51.829450421779924], + [4.646388125745885, 51.827757874463714], + [4.644003884860616, 51.82752869031909], + [4.642878262916926, 51.82650186094267], + [4.6398534135847695, 51.826348325038516], + [4.637267111202549, 51.825394255793555], + [4.6327152383468855, 51.826941546444154], + [4.622366979562727, 51.8306508562028], + [4.614257999126365, 51.83356328761671], + [4.600154903506953, 51.83873007840784], + [4.6049128447047005, 51.848384516611716], + [4.606995567002378, 51.848524829299734], + [4.608288295486061, 51.849414014447945], + [4.612500775923338, 51.85058750049522], + [4.618715265282707, 51.85123791404178], + [4.623422416474934, 51.85373071423626], + [4.626042701707174, 51.85451287984672], + [4.628757841434202, 51.85434613184291], + [4.633440735171574, 51.85027551607127], + [4.636515977288605, 51.84966242411153], + [4.642492602185771, 51.853907413472626], + [4.647294028997951, 51.85721620700603], + [4.643763009950546, 51.859303604589655], + [4.64002742627797, 51.86252387298432], + [4.635449128606461, 51.86911757041846], + [4.635260958543669, 51.86971115520301], + [4.64568462938473, 51.864242563705616], + [4.647831371836671, 51.862672624385525], + [4.653107857631725, 51.85769615885804], + [4.658200225724209, 51.85163035604759] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.3ea62c29-0bd0-4520-8530-c251d1c3e108", + "properties": { + "statcode": "GM0532", + "jrstatcode": "2024GM0532", + "statnaam": "Stede Broec", + "rubriek": "gemeente", + "id": 151 + }, + "bbox": [ + 141359.91600000113, 521145.5639999993, 146347.8925999999, + 525603.1429999992 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.256724298216976, 52.68671302150012], + [5.25636376067152, 52.68601172065245], + [5.254265208381751, 52.686656767313565], + [5.24648003251127, 52.68551202893576], + [5.246055869606915, 52.68584389902809], + [5.246017079350591, 52.68639330716009], + [5.243421207216221, 52.686243673356415], + [5.235432595278956, 52.68602925185346], + [5.23316893887215, 52.68589921998103], + [5.224861488629999, 52.685236689485116], + [5.215236080917312, 52.68442211276068], + [5.214435470022632, 52.68434639276325], + [5.208790422161189, 52.68380924143431], + [5.206231560825936, 52.68259453561657], + [5.204700061679143, 52.677940610764665], + [5.204595134861464, 52.677613672210626], + [5.195694847347499, 52.692214804417205], + [5.195999602270592, 52.69227752055775], + [5.195805683241712, 52.69260822111771], + [5.19573027524997, 52.69274680689466], + [5.193436616033487, 52.6965944096965], + [5.192766469686865, 52.697843631077006], + [5.190337588795798, 52.70190299966525], + [5.190247229899045, 52.70205690211889], + [5.187023105398028, 52.70745180008074], + [5.185373418328698, 52.71022807934512], + [5.210385674278112, 52.71677626936679], + [5.220133561067031, 52.71769637400259], + [5.230251118997627, 52.717369864015666], + [5.257501406682001, 52.71618077377853], + [5.258158255510359, 52.70904795839274], + [5.258459628093158, 52.70470102042848], + [5.258742904392666, 52.700688209344214], + [5.258956596232855, 52.696755733555406], + [5.258959038497237, 52.696616235067836], + [5.258979705964623, 52.69595689391015], + [5.259248403991115, 52.68690557525029], + [5.256724298216976, 52.68671302150012] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.3adfbe21-a6f1-4729-a6f4-c07890a00134", + "properties": { + "statcode": "GM0534", + "jrstatcode": "2024GM0534", + "statnaam": "Hillegom", + "rubriek": "gemeente", + "id": 152 + }, + "bbox": [ + 97353.2650000006, 476226.0029999986, 102116.54, 481462.8451000005 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.586888919300578, 52.31699544722018], + [4.587469018739465, 52.31676317220151], + [4.587990814476502, 52.3169393512809], + [4.587686422863171, 52.317880920999244], + [4.591033663463803, 52.3177891203921], + [4.593313157693507, 52.31777784247979], + [4.59332130135062, 52.317777801864224], + [4.595087713136808, 52.31767621519015], + [4.596572880086198, 52.31770607269067], + [4.599455999652789, 52.31710099194882], + [4.599457804030372, 52.31710047277292], + [4.601457200312237, 52.31652121844255], + [4.602885936848013, 52.3158465094654], + [4.611676039331051, 52.31355991255957], + [4.611533101159008, 52.31224008986089], + [4.610271250875718, 52.31088493211231], + [4.6075636765486845, 52.30863129736873], + [4.606799797172799, 52.30799543450615], + [4.604737836178874, 52.30627891545872], + [4.602337745097511, 52.30324940124415], + [4.599828298763809, 52.29986982995553], + [4.598243926613805, 52.29773579971078], + [4.596476542232974, 52.294445727127794], + [4.596358650978737, 52.2918431231519], + [4.595601596524256, 52.29080485013454], + [4.593737781778294, 52.28870085805287], + [4.591336994399368, 52.28595799414297], + [4.58953896580263, 52.2824855258245], + [4.588872361380153, 52.28110794047887], + [4.588207152152533, 52.28023236940637], + [4.58488269409062, 52.27833736675791], + [4.584143946654533, 52.277915325240365], + [4.57719135036764, 52.273843010014104], + [4.577122320471025, 52.27380256943305], + [4.572749034624725, 52.27124001875641], + [4.567596893975623, 52.27350071510214], + [4.567567230410794, 52.27351727498277], + [4.5534461231146635, 52.282038765462836], + [4.548472825554757, 52.28432835835284], + [4.548692493530832, 52.28467996865663], + [4.546896053719426, 52.28499755789446], + [4.542550299950233, 52.2866441587391], + [4.54231907153797, 52.28737806893146], + [4.551795298126799, 52.29712311507235], + [4.554459665253583, 52.299411742864386], + [4.555376157881467, 52.299144056332125], + [4.563707432469421, 52.30929800806595], + [4.568446809071977, 52.31564171294589], + [4.5690754690177116, 52.31648303151935], + [4.57324055818885, 52.315355519966744], + [4.583435366359737, 52.318382361153404], + [4.5857925218296485, 52.318197372419775], + [4.585936527643314, 52.31757056546687], + [4.586090327550492, 52.317315199873256], + [4.586610487335905, 52.31701141683881], + [4.586888919300578, 52.31699544722018] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.6a3e1a62-5f5d-4dec-be91-acad2acc11f2", + "properties": { + "statcode": "GM0537", + "jrstatcode": "2024GM0537", + "statnaam": "Katwijk", + "rubriek": "gemeente", + "id": 153 + }, + "bbox": [ + 85742.71020000055, 463476.0219999999, 92054.75409999862, 470635.5537 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.414933344834123, 52.21610743783828], + [4.419591440089565, 52.21431226910457], + [4.4217916474077175, 52.2148082894147], + [4.422326079662684, 52.21449254234839], + [4.423290402784065, 52.21542804928933], + [4.425696362563907, 52.216288887083735], + [4.429285899447968, 52.21241084097283], + [4.4332773228567115, 52.213504057559874], + [4.435463622945546, 52.21060290332928], + [4.437137638466723, 52.21119945262774], + [4.437410482647173, 52.20966702942042], + [4.437478150207179, 52.20951102850021], + [4.4401880558716105, 52.20735558344881], + [4.441653397879706, 52.2085034854038], + [4.444452174104712, 52.209509921402294], + [4.446308648260339, 52.21098178457578], + [4.448478548834344, 52.21250409847496], + [4.4513056401840085, 52.211697516184536], + [4.455896517945512, 52.21403794284763], + [4.4640820667038765, 52.21596433177357], + [4.466175801511171, 52.21418784658437], + [4.465748448223299, 52.21314290936688], + [4.462511147268665, 52.21176005668979], + [4.462332095521518, 52.21055039549945], + [4.4595954997935126, 52.20924047324325], + [4.458624657278689, 52.2082426056617], + [4.455648581070383, 52.20702998460995], + [4.460643280295172, 52.2048029961955], + [4.4626747063917005, 52.20341151533185], + [4.46041736360486, 52.20219908363229], + [4.463471481147098, 52.20020156285939], + [4.461760583192125, 52.19710648312545], + [4.466176180042803, 52.1974139293209], + [4.466370301519485, 52.19688623556189], + [4.463203907221635, 52.19334554820403], + [4.462657634787182, 52.193071062388974], + [4.463532788730628, 52.192669949030844], + [4.4614656648440105, 52.188710512134776], + [4.458623294472877, 52.18345574999834], + [4.458175222594701, 52.18348259571808], + [4.45820628380426, 52.1836319846867], + [4.454947455206291, 52.1836601387662], + [4.452042766855049, 52.183046705234325], + [4.451891406804676, 52.18284356065429], + [4.448613377842152, 52.18263817588686], + [4.448599617071923, 52.18263662830824], + [4.440064906599792, 52.181069508696254], + [4.4376793830118775, 52.18171260300512], + [4.4357997612243985, 52.181224366463006], + [4.435017531334751, 52.180889675801886], + [4.436000660630807, 52.18042606616312], + [4.440654566992848, 52.17964518178818], + [4.445831415458694, 52.17879941962643], + [4.448388684441102, 52.17665668248539], + [4.448850189488539, 52.17411980102301], + [4.445687871030415, 52.17000587752822], + [4.445501687350155, 52.168765567287096], + [4.445412669939278, 52.16722127636334], + [4.446023806405489, 52.16512867905485], + [4.448368279966277, 52.16205195674182], + [4.448290894033701, 52.16197833772056], + [4.440478179940308, 52.15565298391638], + [4.431548694344416, 52.158367143506695], + [4.425973996325128, 52.15922980796639], + [4.419771531874831, 52.16234433094826], + [4.417786312486691, 52.1614775286893], + [4.4147641537525635, 52.16245466806194], + [4.413193653572311, 52.16379085652235], + [4.411595084473015, 52.16347917777467], + [4.409319179021691, 52.169342056352576], + [4.405094003812211, 52.16762072556567], + [4.404112227864317, 52.16840511115143], + [4.403220557727267, 52.16895728378941], + [4.400079783703994, 52.17138138740397], + [4.39509100883248, 52.17460564596996], + [4.392278155365122, 52.1750768703405], + [4.374433483340405, 52.18687382638778], + [4.383647498427564, 52.19646522297212], + [4.391436767249836, 52.20655733644063], + [4.397040878517189, 52.212312009174], + [4.399760942712013, 52.210622771880395], + [4.400174197053405, 52.210885567345585], + [4.400440258219795, 52.21105790327501], + [4.398195622905506, 52.212481187224675], + [4.39978554212668, 52.21484591540284], + [4.4054640804249185, 52.21971990318276], + [4.414829442732855, 52.21614706244443], + [4.4148422733825745, 52.2161421678527], + [4.414933344834123, 52.21610743783828] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.bab27e75-c8c4-4950-92b0-3866db1694f9", + "properties": { + "statcode": "GM0542", + "jrstatcode": "2024GM0542", + "statnaam": "Krimpen aan den IJssel", + "rubriek": "gemeente", + "id": 154 + }, + "bbox": [ + 97334.15500000119, 435174.86199999973, 103796.39389999956, + 438344.63699999824 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.623664845769215, 51.92628526246407], + [4.630587080973748, 51.92143371509352], + [4.643018854951964, 51.91256940646648], + [4.642782955449651, 51.912457752069486], + [4.6351516743499666, 51.910070418543064], + [4.623217754783024, 51.90853617508157], + [4.601463716333021, 51.90699769755644], + [4.596826281267663, 51.907811452957056], + [4.596768988757145, 51.90780502007986], + [4.595173304550954, 51.907082121755906], + [4.59673298720624, 51.9057575875552], + [4.593510900543097, 51.90410159014859], + [4.593083546265007, 51.904679854660266], + [4.592520039348822, 51.90440638526135], + [4.592212981832892, 51.90560117389122], + [4.588747706695679, 51.904187425120185], + [4.589098556136356, 51.902367495226606], + [4.5841911031955895, 51.90390542294414], + [4.582034793074745, 51.904086495255946], + [4.57632845404583, 51.90303172041799], + [4.5694629753282205, 51.90435092628804], + [4.555087559299065, 51.90564645882589], + [4.549238435294208, 51.90488212562516], + [4.549901259191995, 51.906728487104964], + [4.5586851149599825, 51.908238887273825], + [4.566060951084158, 51.90924646949537], + [4.5711832653337305, 51.911865576821974], + [4.57715150710274, 51.91455164318965], + [4.579454583027194, 51.91675379075062], + [4.579490962626125, 51.916829346675236], + [4.581280382417931, 51.91986817534345], + [4.58283977557917, 51.92077692983332], + [4.588136699023212, 51.92179607398283], + [4.593959354235916, 51.92447615479815], + [4.5981555168673145, 51.92608293315362], + [4.601683265604128, 51.9266510265644], + [4.607053916098815, 51.925682388922596], + [4.610724389426053, 51.92534109438322], + [4.613235697823603, 51.92607723742979], + [4.615067855534433, 51.92735363929334], + [4.61770393282102, 51.93105014175779], + [4.623664845769215, 51.92628526246407] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.78c33e7f-6d61-44cb-a602-85f570d8108e", + "properties": { + "statcode": "GM0546", + "jrstatcode": "2024GM0546", + "statnaam": "Leiden", + "rubriek": "gemeente", + "id": 155 + }, + "bbox": [ + 90099.75299999863, 459364.3370000012, 95920.63399999961, + 466644.45800000057 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.517984550561484, 52.17853444566583], + [4.518493439286263, 52.17424970890121], + [4.517168720751162, 52.17267367513024], + [4.515121164117773, 52.17108639403555], + [4.5155183197903765, 52.16951181252302], + [4.516194482718581, 52.16581726209091], + [4.515039863466026, 52.16340091831394], + [4.514831198375399, 52.16080221774201], + [4.518857165647774, 52.15822275532772], + [4.520820699111422, 52.15655101446094], + [4.5216918134450985, 52.15386167474638], + [4.522235523852735, 52.15216958193207], + [4.522239523527507, 52.152155239741425], + [4.523911280327723, 52.147654846240265], + [4.5240376810806, 52.14739786756339], + [4.515986676280671, 52.14469391822864], + [4.510676580008814, 52.14086587688897], + [4.513212626734072, 52.13997419127773], + [4.513099485469745, 52.139916710616625], + [4.497969595724786, 52.13216370455066], + [4.496561745695619, 52.13145000084818], + [4.491952885527017, 52.12901094805407], + [4.487519961082113, 52.127409720507664], + [4.472975415649525, 52.11895161082025], + [4.472289028140632, 52.119634651404624], + [4.472321143813751, 52.1234586071781], + [4.472941439489814, 52.12370318578917], + [4.468149282386823, 52.128550817182784], + [4.467481014273789, 52.12832320536224], + [4.466845064105732, 52.12897989406244], + [4.465981592507328, 52.12789030159681], + [4.466420253255077, 52.12733339517926], + [4.46519192514208, 52.12661335740473], + [4.4644922885786675, 52.12731117030074], + [4.468915538255969, 52.1327631369748], + [4.469066352006427, 52.133198373034844], + [4.469238665731849, 52.13427561702186], + [4.4671713334747345, 52.136943190439986], + [4.466682039586187, 52.140890627750515], + [4.466050664839558, 52.14641609929426], + [4.465405524413482, 52.149442899452815], + [4.462968825097775, 52.148945027799186], + [4.462444420531906, 52.14977673546818], + [4.4592872656026135, 52.14969671909408], + [4.4570196157603785, 52.14778886956539], + [4.450872364732536, 52.14212890160883], + [4.449603925617679, 52.140984339212835], + [4.446561992279091, 52.14119324286776], + [4.444678084084493, 52.140619884191494], + [4.443789483167526, 52.14101325258952], + [4.442988532648871, 52.14534578750748], + [4.443939311443735, 52.14604126426354], + [4.4413715863976, 52.14949849606479], + [4.438865156957451, 52.153264485502305], + [4.439232475773364, 52.1547074705806], + [4.440478179940308, 52.15565298391638], + [4.448290894033701, 52.16197833772056], + [4.448368279966277, 52.16205195674182], + [4.450408146794832, 52.166319438382985], + [4.453052087785087, 52.16849210549086], + [4.454777495246764, 52.17108244630249], + [4.466868291050968, 52.16992873327576], + [4.467573142721576, 52.17045124715387], + [4.467234255727535, 52.172170469706494], + [4.4685091666394685, 52.1734820485185], + [4.469573377276095, 52.174345224286114], + [4.47157349321488, 52.17445599381401], + [4.478653266342723, 52.179576737230605], + [4.479707952185267, 52.17900390396076], + [4.480795730878413, 52.1796280841336], + [4.484607495352965, 52.178015238711986], + [4.487401854036711, 52.176923698234155], + [4.487434485736919, 52.17816458545845], + [4.4896005133714425, 52.177145241352946], + [4.491922501957045, 52.17540744992866], + [4.493439542215651, 52.17585602103313], + [4.495368602720434, 52.17780203789321], + [4.497173687915818, 52.18094329374474], + [4.497562226743066, 52.183982651752665], + [4.498342285489465, 52.183993566813065], + [4.5016336158137165, 52.18426434193344], + [4.503546433446878, 52.18462130406671], + [4.508525373706107, 52.1839732412669], + [4.51720799857858, 52.1827185830898], + [4.518368683161523, 52.18211625872343], + [4.517984550561484, 52.17853444566583] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ee80b5ec-9f3d-4ad2-9960-8eb1480d0f08", + "properties": { + "statcode": "GM0547", + "jrstatcode": "2024GM0547", + "statnaam": "Leiderdorp", + "rubriek": "gemeente", + "id": 156 + }, + "bbox": [ + 95308.44570000097, 460736.8962999992, 99174.9290000014, + 466353.5159999989 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.518368683161523, 52.18211625872343], + [4.528177797719833, 52.17985077968809], + [4.538153674429999, 52.180084693911304], + [4.538779149896713, 52.18013007072908], + [4.539065742660968, 52.17710070296644], + [4.540011508751507, 52.175568656536036], + [4.542329854925494, 52.171953604402596], + [4.550349872568791, 52.163013071898234], + [4.552758210831069, 52.1631039063278], + [4.555700932293159, 52.16442549986501], + [4.560592305005782, 52.16678300444921], + [4.562399817720856, 52.16611887740176], + [4.560490157328231, 52.1641301057153], + [4.5626480970869325, 52.16132878695124], + [4.561633874265479, 52.1608190677442], + [4.571480909629383, 52.15310902803848], + [4.570489666693179, 52.143420448108664], + [4.56610496407326, 52.135264024542536], + [4.561381212700882, 52.13223040439295], + [4.560220012696423, 52.1319328798356], + [4.550733048313659, 52.13838028586006], + [4.544548064029641, 52.14073117617375], + [4.537268603719905, 52.1409575056821], + [4.530796095060251, 52.14186289776587], + [4.5277836987852025, 52.14323707964986], + [4.5246670470544625, 52.14633722735878], + [4.5240376810806, 52.14739786756339], + [4.523911280327723, 52.147654846240265], + [4.522239523527507, 52.152155239741425], + [4.522235523852735, 52.15216958193207], + [4.5216918134450985, 52.15386167474638], + [4.520820699111422, 52.15655101446094], + [4.518857165647774, 52.15822275532772], + [4.514831198375399, 52.16080221774201], + [4.515039863466026, 52.16340091831394], + [4.516194482718581, 52.16581726209091], + [4.5155183197903765, 52.16951181252302], + [4.515121164117773, 52.17108639403555], + [4.517168720751162, 52.17267367513024], + [4.518493439286263, 52.17424970890121], + [4.517984550561484, 52.17853444566583], + [4.518368683161523, 52.18211625872343] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.29b9dc72-ee79-4500-8f57-d21f3f9daf89", + "properties": { + "statcode": "GM0553", + "jrstatcode": "2024GM0553", + "statnaam": "Lisse", + "rubriek": "gemeente", + "id": 157 + }, + "bbox": [ + 95343.24029999971, 470785.1499999985, 99409.27899999917, + 477963.41099999845 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.5534461231146635, 52.282038765462836], + [4.567567230410794, 52.27351727498277], + [4.567596893975623, 52.27350071510214], + [4.572749034624725, 52.27124001875641], + [4.568335793946374, 52.26855338573722], + [4.56803834133811, 52.26651739479129], + [4.568251150326854, 52.26555793212066], + [4.568448632203926, 52.26470549074317], + [4.569537572823251, 52.25986023145159], + [4.568763657160266, 52.2556709461636], + [4.567832079383025, 52.250747328514464], + [4.5662091676068615, 52.245013543855286], + [4.565347726581195, 52.2423478450031], + [4.565054955070379, 52.241430680493636], + [4.564183737818655, 52.23862875755546], + [4.562272647677873, 52.23384344250561], + [4.560783683480807, 52.23305996786052], + [4.555619474206903, 52.23201906963155], + [4.553624982871213, 52.230932974593635], + [4.55047036189576, 52.226744715954126], + [4.553933983188353, 52.22220541854054], + [4.553225776481837, 52.22233252879956], + [4.543569541312049, 52.22680295553615], + [4.539358548594331, 52.229799026300945], + [4.535072941549743, 52.23125412684647], + [4.534674141068687, 52.23137603919623], + [4.533568178173837, 52.231719575524664], + [4.531435253384309, 52.23238312725725], + [4.53142321403671, 52.232373557438144], + [4.530477019781743, 52.232695758992676], + [4.530468704901273, 52.23269949172357], + [4.529926687188698, 52.232949503159325], + [4.527776883942252, 52.233891866322864], + [4.52491510396501, 52.23557199076055], + [4.5250649021386415, 52.235922574001016], + [4.529471932476026, 52.2381372873535], + [4.529092565887826, 52.238325984339205], + [4.527416558657128, 52.239159597224955], + [4.528915765834483, 52.24006577199963], + [4.528625989109173, 52.24027526729601], + [4.5300508069814445, 52.241162379744495], + [4.527827914211528, 52.242061546087285], + [4.527738399757875, 52.242409226555274], + [4.524088213693659, 52.24437716570991], + [4.525890188428246, 52.24577569897806], + [4.525178422476563, 52.246235298050905], + [4.526594222599244, 52.24725279494159], + [4.521475856540128, 52.24953937005487], + [4.517877895114816, 52.25273079093801], + [4.513495040784694, 52.254991464343654], + [4.520917218505954, 52.26069826177613], + [4.532872097024219, 52.27309554576273], + [4.530178436665046, 52.274146617864055], + [4.535025800172168, 52.278832496915186], + [4.5354570645076695, 52.27914773252865], + [4.535990146378492, 52.278155612276315], + [4.536443298687362, 52.27835927460945], + [4.536508022854707, 52.27919167463941], + [4.538709947640675, 52.28177744934513], + [4.542550299950233, 52.2866441587391], + [4.546896053719426, 52.28499755789446], + [4.548692493530832, 52.28467996865663], + [4.548472825554757, 52.28432835835284], + [4.5534461231146635, 52.282038765462836] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ff26e149-40c4-4409-9793-6ebd0e033b5d", + "properties": { + "statcode": "GM0556", + "jrstatcode": "2024GM0556", + "statnaam": "Maassluis", + "rubriek": "gemeente", + "id": 158 + }, + "bbox": [74229, 435796.87999999896, 79702.14699999988, 440584.5731000006], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.228291314746438, 51.94799094774675], + [4.231767021395302, 51.942922353230315], + [4.231919682103096, 51.94295461378294], + [4.236941035084504, 51.94392966915507], + [4.240317158710659, 51.9428721135711], + [4.241775314271325, 51.94179602031083], + [4.25309468442999, 51.93273298994309], + [4.259402033711561, 51.92800395855793], + [4.260522072989977, 51.92730681817122], + [4.261420058854044, 51.92678075412873], + [4.264272372638832, 51.9254682297828], + [4.266128379222384, 51.92530212156788], + [4.2706828410095605, 51.92353316314438], + [4.272695983313354, 51.92354100136129], + [4.2926110086228855, 51.92123631982094], + [4.277122016383049, 51.91128487327443], + [4.277052930856443, 51.911240231246694], + [4.267571210650752, 51.90533504262643], + [4.266183409182456, 51.905904044427956], + [4.255428780082287, 51.91017061516075], + [4.2441981479550535, 51.91374281776787], + [4.236464810485525, 51.917303297470426], + [4.232166657004711, 51.920709447636035], + [4.22938975332296, 51.923305506319096], + [4.222905247072749, 51.92876409760592], + [4.219932479983811, 51.93046814565735], + [4.212717692054358, 51.93372746354075], + [4.219528776329471, 51.94139967883217], + [4.221453481840102, 51.94266861483095], + [4.228291314746438, 51.94799094774675] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.11669e06-7193-466c-aba7-38da846a0a1c", + "properties": { + "statcode": "GM0569", + "jrstatcode": "2024GM0569", + "statnaam": "Nieuwkoop", + "rubriek": "gemeente", + "id": 159 + }, + "bbox": [ + 106699.74700000137, 457783.84099999815, 121128.56199999899, + 471358.3779999986 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.801444461360836, 52.20801961693638], + [4.802611112264894, 52.201746676644525], + [4.803621065693271, 52.20107139336133], + [4.813594310150965, 52.20184711858084], + [4.813139459152756, 52.20111116852362], + [4.814630178292494, 52.19916832281027], + [4.822253479093348, 52.19609351565872], + [4.823430047053513, 52.193283909933804], + [4.835258360480351, 52.186195796718216], + [4.837468738704423, 52.1837604178208], + [4.838383243368527, 52.183258299983706], + [4.8429952737595805, 52.18081489007266], + [4.844061511056247, 52.1800656870999], + [4.85546508215365, 52.17895771587292], + [4.867116739247352, 52.173457654373266], + [4.892178256131188, 52.16179792033835], + [4.887574434214758, 52.15995816524852], + [4.873623464337562, 52.156082509353375], + [4.874518480819271, 52.13883141526054], + [4.872606617744036, 52.138862741748774], + [4.870543667138489, 52.138340157369385], + [4.864915049596963, 52.13739112288686], + [4.855238666869632, 52.13720961848716], + [4.852530859735847, 52.13832934041334], + [4.851535293860713, 52.13961564400995], + [4.847412571871065, 52.138944942388], + [4.846019655870111, 52.13953911092063], + [4.842583825816129, 52.13953312241516], + [4.8407933405923, 52.141476767124], + [4.837520577969921, 52.14064375090867], + [4.836704642118573, 52.14287992242768], + [4.834119454713208, 52.14296408437976], + [4.8330531128739205, 52.144706057555666], + [4.831891938210954, 52.1442318711758], + [4.826471851529682, 52.14217633121172], + [4.820533623926715, 52.1422287681982], + [4.816665724377836, 52.13938693129152], + [4.813111094566548, 52.14017324365466], + [4.809320042489757, 52.137801455227695], + [4.808843061919335, 52.13567377855484], + [4.807599040123963, 52.13521107387899], + [4.8088468724945175, 52.13181379649518], + [4.807790214039816, 52.12985772047877], + [4.808065124824426, 52.12894798526239], + [4.806365640775116, 52.12739626947748], + [4.803497703642577, 52.12641564806592], + [4.801980656694714, 52.12485754386925], + [4.7983576555423095, 52.12530060343397], + [4.793490841428945, 52.123972736782214], + [4.792080179629943, 52.122287379380644], + [4.791893080758605, 52.12046046646995], + [4.78750806012133, 52.11999328794009], + [4.785372458981246, 52.120661996599914], + [4.784069365539547, 52.120756051803916], + [4.783306021696112, 52.120373409553245], + [4.783019297022894, 52.11976282872234], + [4.784438581495494, 52.11803600786971], + [4.783969218791443, 52.11743723166929], + [4.783151257810841, 52.1173199998202], + [4.780450210837345, 52.117961143262974], + [4.77954247787297, 52.11765334550609], + [4.778259155111602, 52.115841175471964], + [4.7765077386640495, 52.11600402622276], + [4.775948743272424, 52.115779885069045], + [4.77492851223224, 52.11484271230079], + [4.770861086781436, 52.115137538373034], + [4.76921948635527, 52.113311519982325], + [4.766675642623869, 52.11314509056953], + [4.763702070808694, 52.11355171018554], + [4.762532571699652, 52.11371160993449], + [4.761049632976962, 52.112846131142014], + [4.760239458529191, 52.11184493379281], + [4.759328660729574, 52.11034461773924], + [4.757196331529858, 52.109674983812155], + [4.755078622823594, 52.10899275552598], + [4.738856699861746, 52.106507437341584], + [4.740740556862982, 52.10809049088679], + [4.751921254465939, 52.11902279171105], + [4.753240332072868, 52.11944196466692], + [4.756641310472256, 52.123790451838985], + [4.758622582588887, 52.12839032974793], + [4.758709639731744, 52.128539286906005], + [4.76007314387296, 52.13098146371572], + [4.759291891936619, 52.133748736496635], + [4.759033267485599, 52.1351012240182], + [4.741838810371837, 52.16267322154544], + [4.728998055959001, 52.159530021861016], + [4.726811408382315, 52.15899521036439], + [4.726074178309841, 52.1564132348647], + [4.72433892247987, 52.156111206614405], + [4.72393180759844, 52.1560783381962], + [4.704997530998944, 52.14476048693892], + [4.704034054260156, 52.14464456093736], + [4.704164999401845, 52.14809747995867], + [4.705454506221504, 52.15059234416568], + [4.70567269334014, 52.152156602311415], + [4.699737942327962, 52.15706557620568], + [4.6982298728588665, 52.15835954016694], + [4.681209371734924, 52.167504227518236], + [4.687269708592078, 52.18660649789148], + [4.688928145793803, 52.191878010550454], + [4.690830648181494, 52.19167395504569], + [4.695315936058534, 52.18915448609524], + [4.707578194996506, 52.20490160301763], + [4.720806824469864, 52.201425468255465], + [4.723360093725062, 52.21094248578871], + [4.723560043421832, 52.2115240334], + [4.7245300818838984, 52.21080082440692], + [4.725334437205368, 52.211509948556014], + [4.728765997731066, 52.209818813286056], + [4.732833640012577, 52.2069720628047], + [4.734389141549658, 52.20655566389649], + [4.743629882603779, 52.214792826267065], + [4.7479715653795544, 52.21486789898918], + [4.750668836204473, 52.2157205516746], + [4.753298505748658, 52.21746780239112], + [4.759847855077979, 52.217586497170124], + [4.7620744872624545, 52.21813027116462], + [4.771228580937319, 52.222752774961826], + [4.774650279292411, 52.22458274703373], + [4.776400158120775, 52.22737266284007], + [4.780985629174887, 52.22874123571205], + [4.784936398100692, 52.22862617485603], + [4.786875080484989, 52.22788274775384], + [4.789410010194405, 52.22787510167742], + [4.794575697702013, 52.226730665167196], + [4.794429874012167, 52.22342340026883], + [4.795983530900885, 52.22317623265964], + [4.7970028612368365, 52.22034806059187], + [4.8021496641017665, 52.21763360257282], + [4.801444461360836, 52.20801961693638] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4adfbf79-1574-4f28-9757-e4e72385a238", + "properties": { + "statcode": "GM0575", + "jrstatcode": "2024GM0575", + "statnaam": "Noordwijk", + "rubriek": "gemeente", + "id": 160 + }, + "bbox": [ + 87914.0720999986, 469228.4149999991, 98840.25699999928, + 482626.32360000163 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.563707432469421, 52.30929800806595], + [4.555376157881467, 52.299144056332125], + [4.554459665253583, 52.299411742864386], + [4.551795298126799, 52.29712311507235], + [4.54231907153797, 52.28737806893146], + [4.542550299950233, 52.2866441587391], + [4.538709947640675, 52.28177744934513], + [4.536508022854707, 52.27919167463941], + [4.536443298687362, 52.27835927460945], + [4.535990146378492, 52.278155612276315], + [4.5354570645076695, 52.27914773252865], + [4.535025800172168, 52.278832496915186], + [4.530178436665046, 52.274146617864055], + [4.532872097024219, 52.27309554576273], + [4.520917218505954, 52.26069826177613], + [4.513495040784694, 52.254991464343654], + [4.501416278779733, 52.248561375037724], + [4.497662772268455, 52.24603322985391], + [4.495928102861513, 52.24486401480911], + [4.494919563284067, 52.244179873665544], + [4.479974498703099, 52.234119237299815], + [4.477492152562883, 52.232449707381356], + [4.468491707768018, 52.22661927427965], + [4.466066003701964, 52.22500271466934], + [4.466985335015475, 52.2237858334272], + [4.470704324909367, 52.221762520490465], + [4.470358145119443, 52.219812674582236], + [4.4640820667038765, 52.21596433177357], + [4.455896517945512, 52.21403794284763], + [4.4513056401840085, 52.211697516184536], + [4.448478548834344, 52.21250409847496], + [4.446308648260339, 52.21098178457578], + [4.444452174104712, 52.209509921402294], + [4.441653397879706, 52.2085034854038], + [4.4401880558716105, 52.20735558344881], + [4.437478150207179, 52.20951102850021], + [4.437410482647173, 52.20966702942042], + [4.437137638466723, 52.21119945262774], + [4.435463622945546, 52.21060290332928], + [4.4332773228567115, 52.213504057559874], + [4.429285899447968, 52.21241084097283], + [4.425696362563907, 52.216288887083735], + [4.423290402784065, 52.21542804928933], + [4.422326079662684, 52.21449254234839], + [4.4217916474077175, 52.2148082894147], + [4.419591440089565, 52.21431226910457], + [4.414933344834123, 52.21610743783828], + [4.4148422733825745, 52.2161421678527], + [4.414829442732855, 52.21614706244443], + [4.4054640804249185, 52.21971990318276], + [4.418301927426549, 52.233740062814064], + [4.434516565893821, 52.25378554778757], + [4.44726177814798, 52.26724485329438], + [4.493971128476394, 52.32819808293768], + [4.494926529779438, 52.32794852843056], + [4.543370822266072, 52.314988613049735], + [4.5473222602715495, 52.313996598189654], + [4.563707432469421, 52.30929800806595] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.0f09897f-3474-45a7-bca3-557095cd23b5", + "properties": { + "statcode": "GM0579", + "jrstatcode": "2024GM0579", + "statnaam": "Oegstgeest", + "rubriek": "gemeente", + "id": 161 + }, + "bbox": [ + 89876.7815000005, 464180.91800000146, 94158.48900000006, + 468895.8370000012 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.478665300917615, 52.20466860373372], + [4.480131067020747, 52.20197968587728], + [4.484353774838938, 52.203010424221056], + [4.486716533531793, 52.20417878695584], + [4.4880324781248895, 52.2029229622672], + [4.489852131106171, 52.20397759253107], + [4.490612351548735, 52.20343044191821], + [4.491447184116945, 52.20368720256991], + [4.492240763743873, 52.201297606761244], + [4.493109013916001, 52.19575443784815], + [4.493340652287114, 52.1948591259133], + [4.489957751234638, 52.19266450045267], + [4.488012286887056, 52.19097033594814], + [4.488091932963231, 52.18949275289949], + [4.490903141147347, 52.18666570133462], + [4.490968281732475, 52.186564813590756], + [4.4912088115109245, 52.18475420465432], + [4.489525184428775, 52.181698158566526], + [4.491430757380932, 52.18095133117902], + [4.492769269389456, 52.181283139303304], + [4.492894948881414, 52.181540845178894], + [4.494329313576703, 52.181669839125135], + [4.494129028141737, 52.182045529330324], + [4.494899157202816, 52.18255006437089], + [4.495256035913714, 52.18393885656035], + [4.497562226743066, 52.183982651752665], + [4.497173687915818, 52.18094329374474], + [4.495368602720434, 52.17780203789321], + [4.493439542215651, 52.17585602103313], + [4.491922501957045, 52.17540744992866], + [4.4896005133714425, 52.177145241352946], + [4.487434485736919, 52.17816458545845], + [4.487401854036711, 52.176923698234155], + [4.484607495352965, 52.178015238711986], + [4.480795730878413, 52.1796280841336], + [4.479707952185267, 52.17900390396076], + [4.478653266342723, 52.179576737230605], + [4.47157349321488, 52.17445599381401], + [4.469573377276095, 52.174345224286114], + [4.4685091666394685, 52.1734820485185], + [4.467234255727535, 52.172170469706494], + [4.467573142721576, 52.17045124715387], + [4.466868291050968, 52.16992873327576], + [4.454777495246764, 52.17108244630249], + [4.453052087785087, 52.16849210549086], + [4.450408146794832, 52.166319438382985], + [4.448368279966277, 52.16205195674182], + [4.446023806405489, 52.16512867905485], + [4.445412669939278, 52.16722127636334], + [4.445501687350155, 52.168765567287096], + [4.445687871030415, 52.17000587752822], + [4.448850189488539, 52.17411980102301], + [4.448388684441102, 52.17665668248539], + [4.445831415458694, 52.17879941962643], + [4.440654566992848, 52.17964518178818], + [4.436000660630807, 52.18042606616312], + [4.435017531334751, 52.180889675801886], + [4.4357997612243985, 52.181224366463006], + [4.4376793830118775, 52.18171260300512], + [4.440064906599792, 52.181069508696254], + [4.448599617071923, 52.18263662830824], + [4.448613377842152, 52.18263817588686], + [4.451891406804676, 52.18284356065429], + [4.452042766855049, 52.183046705234325], + [4.454947455206291, 52.1836601387662], + [4.45820628380426, 52.1836319846867], + [4.458175222594701, 52.18348259571808], + [4.458623294472877, 52.18345574999834], + [4.4614656648440105, 52.188710512134776], + [4.463532788730628, 52.192669949030844], + [4.462657634787182, 52.193071062388974], + [4.463203907221635, 52.19334554820403], + [4.466370301519485, 52.19688623556189], + [4.466176180042803, 52.1974139293209], + [4.461760583192125, 52.19710648312545], + [4.463471481147098, 52.20020156285939], + [4.466307435396473, 52.20054890832363], + [4.467659981588755, 52.201932971033735], + [4.47024026932022, 52.20226719185671], + [4.471378976610141, 52.2015702468947], + [4.472825743855414, 52.202656342010464], + [4.476248208622202, 52.20322578482114], + [4.478665300917615, 52.20466860373372] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f008e6b5-473b-43a6-9ad6-c38090acb797", + "properties": { + "statcode": "GM0589", + "jrstatcode": "2024GM0589", + "statnaam": "Oudewater", + "rubriek": "gemeente", + "id": 162 + }, + "bbox": [ + 114606.71799999848, 444337.9829999991, 123396.33199999854, + 452921.7349999994 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.868225038756269, 52.06344633272144], + [4.871457910669044, 52.05922460328521], + [4.875506488776915, 52.06157978717764], + [4.881344030861595, 52.05752258141224], + [4.89541133901831, 52.04823392507694], + [4.895738943331871, 52.05047920269182], + [4.900546507210755, 52.05213982588496], + [4.906504664729876, 52.05347564157526], + [4.917117797588472, 52.043790856737715], + [4.914811744676263, 52.04237780654272], + [4.911398027116456, 52.04018162518999], + [4.92668102100711, 52.02998687491919], + [4.926435415917836, 52.02847585477127], + [4.924026053715582, 52.026525285229546], + [4.920059169034175, 52.025557850894955], + [4.9124258910977066, 52.025291021678704], + [4.9049746055306445, 52.026477528396306], + [4.908523198522018, 52.02277682866038], + [4.917747688597487, 52.01321669425267], + [4.916638646799448, 52.01341313658517], + [4.920044825546431, 52.01001400154111], + [4.916855501557209, 52.01014475576018], + [4.913888248157042, 52.01107758466475], + [4.9097346737538095, 52.011041416214404], + [4.896411934362127, 52.00651643675978], + [4.891584332560329, 52.00485272903497], + [4.8778317645874285, 52.00056884988602], + [4.8532603081880135, 51.991726792825524], + [4.835217848184357, 51.98614302050802], + [4.826968648948841, 51.992594686004914], + [4.817805905521922, 51.99976688905379], + [4.853602035871029, 52.00479841087903], + [4.857126556382675, 52.00595950798789], + [4.856385688617407, 52.00683805821832], + [4.848602730774647, 52.01611691565333], + [4.847203421273327, 52.01797430343012], + [4.846895777654134, 52.018181708179206], + [4.840178054058915, 52.01670694272224], + [4.8333347762704655, 52.01642293447143], + [4.824994256849447, 52.01723660891757], + [4.821484686945929, 52.01591829148123], + [4.815858924397682, 52.014029992082165], + [4.812631347410255, 52.01394183215711], + [4.808285146402154, 52.01414324163552], + [4.8053948225308325, 52.014132928479995], + [4.803410173810587, 52.014144549038214], + [4.798700208048421, 52.022271728063245], + [4.809933419604729, 52.02676451715632], + [4.809659851364212, 52.02750592559738], + [4.808670541965742, 52.02965390398749], + [4.806704370126562, 52.033167301576114], + [4.81182222805134, 52.033824511073846], + [4.817192930196524, 52.03693109671078], + [4.829360815621016, 52.049279513371125], + [4.829490283666744, 52.04981340023966], + [4.839093459508701, 52.05416740028996], + [4.848048500015039, 52.05816468475323], + [4.856305076402217, 52.059151787287306], + [4.868225038756269, 52.06344633272144] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.60bc8c39-4422-40cb-a0f9-6e26fab3267a", + "properties": { + "statcode": "GM0590", + "jrstatcode": "2024GM0590", + "statnaam": "Papendrecht", + "rubriek": "gemeente", + "id": 163 + }, + "bbox": [105503.046, 425995.2921000011, 110633.80999999866, 429182], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.705429529513184, 51.841257740272034], + [4.706696905352375, 51.84107110255739], + [4.7141259537194165, 51.84122449372018], + [4.737139876490596, 51.84645282626275], + [4.738653836238696, 51.84357351648221], + [4.740344705947441, 51.84325524076625], + [4.743394624755276, 51.84271974192449], + [4.742763936845159, 51.841002689025714], + [4.741410292078826, 51.840776406066105], + [4.737243491864597, 51.834037546709624], + [4.737238027899739, 51.83402849370325], + [4.736845501254795, 51.83341761188253], + [4.736640120824985, 51.833089385957], + [4.734196405715643, 51.82911341682978], + [4.733795241581803, 51.82849060032298], + [4.7337938300922735, 51.82848829677591], + [4.729638671276236, 51.82216873918245], + [4.70997638471658, 51.823348277435045], + [4.707924003003304, 51.8233504218856], + [4.703733128378772, 51.82314189078889], + [4.697838369720268, 51.82258749711635], + [4.692267567754098, 51.82200635977119], + [4.688343847774802, 51.821412931994345], + [4.684631781241696, 51.820775464526506], + [4.676369797632991, 51.82041616532478], + [4.671729454062405, 51.82079130774509], + [4.671708689632661, 51.82085397597755], + [4.670438836676199, 51.82358911887699], + [4.669160662431746, 51.828836175922156], + [4.6692085152405705, 51.82959866281145], + [4.672413144866714, 51.83588280762404], + [4.672606187846157, 51.8386503287519], + [4.67590600313251, 51.84110175933928], + [4.68047469371793, 51.84460769507245], + [4.681911353023354, 51.848440667336384], + [4.681348894039438, 51.848678137740954], + [4.681826751021455, 51.849093263726324], + [4.6831906708754545, 51.84849145425306], + [4.683317386785843, 51.848437643999105], + [4.690005603450253, 51.84563304407331], + [4.699190315407917, 51.84310441074295], + [4.705429529513184, 51.841257740272034] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.34d33ff7-0ca2-4bff-b7b5-24b269be0755", + "properties": { + "statcode": "GM0597", + "jrstatcode": "2024GM0597", + "statnaam": "Ridderkerk", + "rubriek": "gemeente", + "id": 164 + }, + "bbox": [ + 97304.55200000107, 428086.83199999854, 104027.86699999869, + 435258.4840000011 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.58302042196629, 51.90121270464973], + [4.590797261793692, 51.89584850540589], + [4.595028826032788, 51.89417273004929], + [4.619572170348848, 51.88952269980738], + [4.619248844805511, 51.888442247301604], + [4.620300433404778, 51.887633847024475], + [4.624229637321763, 51.8838058805525], + [4.626391054034048, 51.88065776310212], + [4.635260958543669, 51.86971115520301], + [4.635449128606461, 51.86911757041846], + [4.64002742627797, 51.86252387298432], + [4.643763009950546, 51.859303604589655], + [4.647294028997951, 51.85721620700603], + [4.642492602185771, 51.853907413472626], + [4.636515977288605, 51.84966242411153], + [4.633440735171574, 51.85027551607127], + [4.628757841434202, 51.85434613184291], + [4.626042701707174, 51.85451287984672], + [4.623422416474934, 51.85373071423626], + [4.618715265282707, 51.85123791404178], + [4.612500775923338, 51.85058750049522], + [4.608288295486061, 51.849414014447945], + [4.606995567002378, 51.848524829299734], + [4.6049128447047005, 51.848384516611716], + [4.600154903506953, 51.83873007840784], + [4.594684138619201, 51.840283112094596], + [4.585362058392506, 51.84251468152912], + [4.571058445970809, 51.84711677498695], + [4.571385980493139, 51.849427356110894], + [4.569970695612606, 51.85262053796942], + [4.565961256292657, 51.85208631020244], + [4.564112995060293, 51.85348767317724], + [4.563524213576198, 51.855018126953375], + [4.562732574553216, 51.856069665287215], + [4.560299136494071, 51.85933099553485], + [4.556370990839486, 51.8645718671574], + [4.5548832436219415, 51.866560388756994], + [4.553926309689332, 51.867857473913226], + [4.553841791750164, 51.86797232537172], + [4.552769500324132, 51.869429420469466], + [4.549383136969257, 51.874027230743685], + [4.554872629324308, 51.875559903681406], + [4.557845640441976, 51.87691929735421], + [4.561525615225948, 51.87821861570009], + [4.5677373737401705, 51.878176991043176], + [4.568911738282622, 51.87805203714506], + [4.5691112808917, 51.8781481777469], + [4.568906052254884, 51.878325175652584], + [4.573148668375642, 51.89122017285482], + [4.573463601902354, 51.89163916115429], + [4.573467546655688, 51.89208504650717], + [4.5754075358383774, 51.89808271240731], + [4.5755994162932465, 51.898057602225734], + [4.576095529979914, 51.899373849201034], + [4.575905610971698, 51.901252660639855], + [4.57632845404583, 51.90303172041799], + [4.58302042196629, 51.90121270464973] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7cbc9255-5b5e-420e-9322-24afa134d1cd", + "properties": { + "statcode": "GM0599", + "jrstatcode": "2024GM0599", + "statnaam": "Rotterdam", + "rubriek": "gemeente", + "id": 165 + }, + "bbox": [ + 57075.46579999849, 428647.44000000134, 101032.59589999914, + 446670.79769999906 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.1509579370310705, 51.98761844452759], + [4.148942117977594, 51.98509408696943], + [4.1499547129303185, 51.9848105081192], + [4.147280704750779, 51.981393283853414], + [4.15530332084326, 51.97959994355175], + [4.1550625713787195, 51.977838057864005], + [4.169605429373052, 51.97397330840431], + [4.175898189133519, 51.97169378915175], + [4.187474597752582, 51.96681771872781], + [4.1865800943501625, 51.965869082927185], + [4.187917965618646, 51.965391777903356], + [4.1906088159073205, 51.965981620677226], + [4.19119613300483, 51.96544484527956], + [4.189369477250389, 51.96475785755265], + [4.186723852234215, 51.96267591460085], + [4.192396037367463, 51.95480593941121], + [4.217823717603746, 51.941636672420955], + [4.219528776329471, 51.94139967883217], + [4.212717692054358, 51.93372746354075], + [4.219932479983811, 51.93046814565735], + [4.222905247072749, 51.92876409760592], + [4.22938975332296, 51.923305506319096], + [4.232166657004711, 51.920709447636035], + [4.236464810485525, 51.917303297470426], + [4.2441981479550535, 51.91374281776787], + [4.255428780082287, 51.91017061516075], + [4.266183407751917, 51.905904043515356], + [4.267571210650752, 51.90533504262643], + [4.2818863477974975, 51.90015215146727], + [4.296372644642978, 51.89705294001938], + [4.319448016850891, 51.894589206476866], + [4.319596767028285, 51.894574630732826], + [4.330956988724404, 51.89410253151969], + [4.341071031122672, 51.89534191708791], + [4.34979757355402, 51.89767026297059], + [4.360034665560923, 51.89943138351386], + [4.370622684571089, 51.899355527535334], + [4.372137428298711, 51.899188322335135], + [4.380173412760717, 51.897925302082584], + [4.388344082557973, 51.896779114730755], + [4.393419953490678, 51.896735899723886], + [4.399034080804062, 51.89741683903485], + [4.409712775123324, 51.89985787930143], + [4.409757400682799, 51.89986792162575], + [4.413710315534412, 51.90075462326248], + [4.412338317473845, 51.90242111304756], + [4.415676954514744, 51.905024782168496], + [4.413297725760001, 51.9072844114089], + [4.413445571231238, 51.907678798821394], + [4.411346263709198, 51.91027274648502], + [4.409999308331459, 51.90985247246315], + [4.40954194695666, 51.91041701131052], + [4.409075321291521, 51.912049735682494], + [4.412209998218534, 51.913239123741], + [4.412739207969259, 51.91391417046895], + [4.413506286020285, 51.9139526721665], + [4.413601162791426, 51.914585138303785], + [4.4152657131563995, 51.91448477482408], + [4.415697051130478, 51.91593813878526], + [4.415827290217769, 51.915930479044455], + [4.4163458840838805, 51.91756982065052], + [4.417076716808975, 51.91994752520881], + [4.417064331020424, 51.920423702056716], + [4.417054445118012, 51.92082399803706], + [4.416861452623069, 51.92312164396287], + [4.415234985114908, 51.9229703715918], + [4.410496281519597, 51.92929156196157], + [4.409874638119642, 51.92911251594865], + [4.4081725883441925, 51.9314142015502], + [4.408808613920595, 51.93474895179009], + [4.408978508461493, 51.93578469296737], + [4.409810608896985, 51.936339113039494], + [4.413262652764885, 51.936815733354756], + [4.414762317201452, 51.937374171899926], + [4.416414513710168, 51.93815479766001], + [4.417712926994255, 51.938476592663505], + [4.415492169550569, 51.94075854325197], + [4.413207302406361, 51.939057745762966], + [4.4093171802431295, 51.93798149636713], + [4.408517596210978, 51.93863659815592], + [4.403920167593328, 51.937252615118936], + [4.394977049171374, 51.94290874309767], + [4.3942159671204495, 51.943999491464076], + [4.393447922441628, 51.94425952075786], + [4.393478281405655, 51.94446508162285], + [4.393668899765799, 51.94461267062392], + [4.394920643436779, 51.94645753151804], + [4.395187814940512, 51.94692704158961], + [4.394351937421914, 51.947109668398255], + [4.389671904661457, 51.945472280716984], + [4.389420745519233, 51.94566981090089], + [4.388933356561257, 51.945535046890384], + [4.384001230673727, 51.95469299412173], + [4.3793094653563855, 51.96340662685282], + [4.389779413198665, 51.965126401825586], + [4.38994741435789, 51.96460171291275], + [4.391751956632881, 51.96492104479844], + [4.393564126948403, 51.96247163538103], + [4.393987500801391, 51.962631503815864], + [4.402933412547201, 51.966316314442864], + [4.407910876301374, 51.968198605790896], + [4.42789835738201, 51.97646646310629], + [4.428968373161806, 51.975876112192545], + [4.446682075558126, 51.962785953933306], + [4.45088308090214, 51.96588489303666], + [4.456824517679169, 51.96731098688333], + [4.460374671390906, 51.96910142778071], + [4.460161339566186, 51.97160876137962], + [4.462220536279353, 51.972681412207415], + [4.461346480515528, 51.97483721506349], + [4.461676335776586, 51.97512195478528], + [4.464023131808533, 51.97714766845319], + [4.463240984034006, 51.9775265134966], + [4.4641246008846895, 51.978307015903], + [4.465802683599121, 51.97892971261739], + [4.466680222353719, 51.97849831752759], + [4.469451168156174, 51.98018749991689], + [4.468874874103436, 51.980479734416015], + [4.468971629120852, 51.980528674284336], + [4.469012149879079, 51.98054916021432], + [4.469515818573157, 51.98030065206524], + [4.4705581218747925, 51.9797795658653], + [4.483251765326537, 51.9733623289869], + [4.491006869623948, 51.96954967134535], + [4.495234073105287, 51.967414991874875], + [4.495275864818081, 51.96966380688067], + [4.495799687562483, 51.97184448688553], + [4.496857183189615, 51.971305838731766], + [4.5065844790667375, 51.96637576503433], + [4.505844165986531, 51.96565202695782], + [4.509273868426475, 51.96389492956429], + [4.512246845668069, 51.96242040924113], + [4.513103275781196, 51.96292169203074], + [4.513900700195697, 51.96265375828111], + [4.518586476868772, 51.960286285429085], + [4.52094659590086, 51.96340793725031], + [4.523653751039617, 51.96392492612069], + [4.5278216858431515, 51.96565869696165], + [4.528759909217327, 51.96702363980642], + [4.534985106983377, 51.968272302566234], + [4.535782340945393, 51.97044783808177], + [4.539951359985163, 51.969885139818054], + [4.545651914286335, 51.972319551643935], + [4.547686282475619, 51.97280661177203], + [4.554215334525766, 51.96892069252697], + [4.5564017460045765, 51.96885466589589], + [4.556585946963042, 51.96846604133395], + [4.560547644268938, 51.96962215917335], + [4.5613988971597, 51.97027522681152], + [4.561104694552362, 51.97052502145783], + [4.561651900526621, 51.970761757304196], + [4.561151941207294, 51.97117750333692], + [4.562413739012375, 51.97192671908334], + [4.5628975324826895, 51.97152076978324], + [4.563367733059003, 51.97172792476107], + [4.565382353347639, 51.97127568830476], + [4.566936032165548, 51.97118981492426], + [4.570275663387738, 51.972024093807946], + [4.571908917480722, 51.97186877609447], + [4.574363305164762, 51.97287621169545], + [4.574112344539846, 51.97308652599423], + [4.5785439758846795, 51.97553539456981], + [4.57899981884374, 51.97578719480296], + [4.578524470852409, 51.97618800935022], + [4.577921191417467, 51.97585443000581], + [4.57352940212839, 51.974576118836396], + [4.570229901065462, 51.97903010105885], + [4.578918486813049, 51.98113420214044], + [4.57731222779994, 51.98640483320776], + [4.579923817099815, 51.987777197085364], + [4.578942894191762, 51.989860656226774], + [4.594367517497419, 51.99428155345338], + [4.598773041128196, 51.98796859337316], + [4.594128269019564, 51.977629441447256], + [4.59442854264025, 51.977117614940134], + [4.593840759269788, 51.976777314626005], + [4.593740613130939, 51.97608859255697], + [4.594181566469593, 51.97544036573663], + [4.601808262582871, 51.97214010185967], + [4.590690596333325, 51.968231845446], + [4.590021946536619, 51.96858096214601], + [4.583992414024661, 51.965368966697184], + [4.583805717598485, 51.96549178168806], + [4.581479347152691, 51.96442323246316], + [4.580385484708337, 51.9637588086343], + [4.575149340561674, 51.96126716488006], + [4.570508060349453, 51.95909992731452], + [4.5680128804548055, 51.9580799083274], + [4.567891009916255, 51.95818676981608], + [4.566795402620952, 51.957881761784265], + [4.564367130705771, 51.959924536582406], + [4.56205310841769, 51.95887454578137], + [4.562899100627809, 51.956864603507064], + [4.561587489418544, 51.95665392112667], + [4.56240560886931, 51.95472423696287], + [4.56406343755954, 51.950808853888184], + [4.564604214283455, 51.95034949684777], + [4.567437282679589, 51.94795778548493], + [4.572779644721716, 51.943456112692], + [4.570499337713193, 51.942426641600065], + [4.567594150696963, 51.94198191093683], + [4.560594460591934, 51.94091007963756], + [4.562646584920989, 51.9360648038557], + [4.562724245514254, 51.93588140510355], + [4.564212800465278, 51.93236583520182], + [4.564387053528684, 51.93195424371559], + [4.565288192292569, 51.929825782042904], + [4.564702334256221, 51.929547171632436], + [4.565152708601225, 51.929178974154375], + [4.565154975309165, 51.92891434381616], + [4.566238813971122, 51.925908838568425], + [4.565995455255263, 51.925737484456924], + [4.565688381688094, 51.92555103848637], + [4.5657772394751, 51.92506438512813], + [4.564551264605367, 51.923632639856436], + [4.56318542437561, 51.92282398799495], + [4.561452455594619, 51.9221731960833], + [4.561523928116701, 51.92187453788089], + [4.5608856328084, 51.92166282103636], + [4.556909726559381, 51.91991389724613], + [4.5563273014566485, 51.92031641060446], + [4.552078893185278, 51.91944962780269], + [4.545161237569881, 51.91929142389512], + [4.537549564327274, 51.919778378501334], + [4.537851597839706, 51.919317275973405], + [4.540522589434743, 51.915241862302764], + [4.538222091303892, 51.915344160922515], + [4.53823104536949, 51.914910881252936], + [4.537438874135233, 51.9146822461738], + [4.53718531719792, 51.914036274612364], + [4.538332323151002, 51.911897814985366], + [4.53921993900315, 51.91169231261003], + [4.5416769787068025, 51.906852321821454], + [4.542135953671713, 51.90620455721937], + [4.5433884453661975, 51.9062200650244], + [4.546133406226502, 51.90657791498585], + [4.547232855970742, 51.90694646740288], + [4.5486391747065475, 51.9104015540726], + [4.550100964575786, 51.914378077041235], + [4.5503357377493305, 51.91486188502602], + [4.553995873933184, 51.91661780087395], + [4.554256319371755, 51.91650505037894], + [4.554024934546659, 51.91477955515233], + [4.556495887317051, 51.91480313971644], + [4.556716422637476, 51.9121158675035], + [4.556828308518736, 51.91038570848769], + [4.555552360989274, 51.910541250045775], + [4.551050578597902, 51.909637945557606], + [4.549901259191995, 51.906728487104964], + [4.549238435294208, 51.90488212562516], + [4.555087559299065, 51.90564645882589], + [4.5694629753282205, 51.90435092628804], + [4.57632845404583, 51.90303172041799], + [4.575905610971698, 51.901252660639855], + [4.576095529979914, 51.899373849201034], + [4.5755994162932465, 51.898057602225734], + [4.5754075358383774, 51.89808271240731], + [4.573467546655688, 51.89208504650717], + [4.573463601902354, 51.89163916115429], + [4.573148668375642, 51.89122017285482], + [4.568906052254884, 51.878325175652584], + [4.5691112808917, 51.8781481777469], + [4.568911738282622, 51.87805203714506], + [4.5677373737401705, 51.878176991043176], + [4.561525615225948, 51.87821861570009], + [4.557845640441976, 51.87691929735421], + [4.554872629324308, 51.875559903681406], + [4.549383136969257, 51.874027230743685], + [4.548184853395662, 51.87383550527191], + [4.543984758618985, 51.87185587005669], + [4.543398017577948, 51.871312182567145], + [4.542970938001779, 51.87112963564706], + [4.54263357132726, 51.870844973138595], + [4.539971593007644, 51.87017864956083], + [4.536396887285781, 51.86976417030939], + [4.535295404828659, 51.869338896481416], + [4.532026633344496, 51.86877671297963], + [4.529503859505104, 51.86894849167605], + [4.526848944824149, 51.86941480194415], + [4.526018496643912, 51.86973057217738], + [4.5226310389282, 51.8690780457394], + [4.515239464451644, 51.869036622250164], + [4.515233805286385, 51.869036578437246], + [4.496455519854449, 51.868970892797435], + [4.4944054397464415, 51.86896893652877], + [4.4887527247298955, 51.86734816142988], + [4.487175195830216, 51.86717149794296], + [4.485694028790092, 51.86657052597075], + [4.4835433778447396, 51.86590549279109], + [4.48170318218863, 51.86543702501774], + [4.48152564236557, 51.8654325045254], + [4.48072831548206, 51.86526635775105], + [4.480087902478355, 51.86527592171817], + [4.48040261540678, 51.86232756155803], + [4.47186278678081, 51.86166723787152], + [4.465228559251217, 51.86201848798547], + [4.446475413973209, 51.86605091624335], + [4.442149506899566, 51.86624532023639], + [4.44102022494981, 51.86590974273977], + [4.440240799851294, 51.86641827219], + [4.44024071291452, 51.86641833261314], + [4.436530165603116, 51.86857355090778], + [4.431736339636821, 51.86980855719167], + [4.430227634954077, 51.86940924974366], + [4.428368705515107, 51.8703781074828], + [4.417618767301462, 51.872421057661754], + [4.415823703510466, 51.87243628399136], + [4.415001337811079, 51.871736267472535], + [4.411500991230752, 51.87163267174573], + [4.406300481491421, 51.872991093858296], + [4.394846160952357, 51.87233270846175], + [4.390431611163763, 51.87057967876729], + [4.388355558409976, 51.86862494138707], + [4.388021634781203, 51.86824700489076], + [4.386368657589366, 51.86638099924842], + [4.384436620481974, 51.861561619029544], + [4.384349983266147, 51.86124464834933], + [4.384347890576439, 51.86123698720546], + [4.383512466592058, 51.857369764837834], + [4.385021891659074, 51.855531798872235], + [4.385162228545387, 51.853759222251526], + [4.384909350795645, 51.85359886787717], + [4.385067352680309, 51.85343151157778], + [4.383228670734808, 51.85240215104237], + [4.383664524768482, 51.842118255154816], + [4.372089009900396, 51.843348141827526], + [4.360778874073875, 51.84645956533368], + [4.353630211018931, 51.84905294095841], + [4.346271913259289, 51.85328889762825], + [4.341555236790271, 51.85709709434434], + [4.339718875591644, 51.85938350307116], + [4.339651997714201, 51.85946061879446], + [4.335539757588365, 51.864301790802955], + [4.283792337774493, 51.864476320498895], + [4.265031130894074, 51.86476725304076], + [4.25975840251041, 51.86580331957737], + [4.252577767114453, 51.868259550314036], + [4.239383150979978, 51.87298591099791], + [4.2329696161244, 51.87748579976936], + [4.23002952991842, 51.883063135908124], + [4.228998350640212, 51.88568461003703], + [4.2200670702824965, 51.89606695500043], + [4.215907411590821, 51.898937717190684], + [4.210704539746001, 51.90133867699151], + [4.197099116192784, 51.90830135980692], + [4.185370770790075, 51.91288551014699], + [4.176772602697362, 51.917789308374275], + [4.172712276141576, 51.9185500827094], + [4.172385344114656, 51.91858599078094], + [4.168186804762118, 51.91905701738572], + [4.167018188438662, 51.92312548748974], + [4.162668514566888, 51.92665194705017], + [4.144889679494005, 51.931409461202044], + [4.11305569233852, 51.93574071027384], + [4.112674942931381, 51.934798479755024], + [4.107723826765164, 51.93614160776871], + [4.101719639983708, 51.92700927907775], + [4.102002703544944, 51.92353049084641], + [4.102002503278962, 51.92353037629128], + [4.092893892431784, 51.93252794107722], + [4.08283753682446, 51.93367142864404], + [4.073716311081518, 51.933628500899104], + [4.063935341602892, 51.9322271170906], + [3.993527780788627, 51.915848094271745], + [3.9899904531302846, 51.917349106651784], + [3.986751074001237, 51.916123170424335], + [3.9852210777929638, 51.91624787966231], + [3.9837940796436624, 51.91809545778694], + [3.976075137400669, 51.9343204743394], + [3.9635003786769, 51.95419843130624], + [3.9623867736724177, 51.96154270742575], + [3.9648214088196374, 51.966881450352595], + [3.9772660111797697, 51.98056967298347], + [3.980748663333631, 51.983587375975766], + [3.984075251972037, 51.98514334957003], + [3.9966215867194723, 51.98800262544104], + [4.004095375978255, 51.98903773404911], + [4.0106266459588715, 51.988555589656976], + [4.023864898065568, 51.985768120874916], + [4.028523746508012, 51.98709204586347], + [4.0327286277449605, 51.98749696815793], + [4.0416854951225805, 51.985970759932144], + [4.045601975636749, 51.99191787669189], + [4.047148100779457, 51.994336741374106], + [4.048176947509807, 51.99424690598185], + [4.0933363862896766, 51.98497961765822], + [4.097016966263733, 51.98504835845705], + [4.110139138075267, 51.9920032094888], + [4.125302909748147, 52.00164058122231], + [4.1325172326586355, 51.99854276753599], + [4.130987262819898, 51.997179317206815], + [4.132363284267339, 51.99546003147787], + [4.135567118724703, 51.992702927157566], + [4.138613383043041, 51.99164722445992], + [4.1509579370310705, 51.98761844452759] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.172f9858-acf3-41c8-bef3-20a2aa5d9ae8", + "properties": { + "statcode": "GM0603", + "jrstatcode": "2024GM0603", + "statnaam": "Rijswijk (ZH.)", + "rubriek": "gemeente", + "id": 166 + }, + "bbox": [ + 79790.02699999884, 447688.38060000166, 84361.27360000089, 453145.2401 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.346904985912942, 52.05705459063016], + [4.347256566782508, 52.05630435748298], + [4.344691303465085, 52.05393948111772], + [4.3526387077272775, 52.04909517555076], + [4.352312493263918, 52.04818248222875], + [4.34913218701524, 52.04688594139105], + [4.346877492628794, 52.04551755502289], + [4.3460627038643, 52.04401817118718], + [4.3468368113616505, 52.043573023109], + [4.346884008673421, 52.042466642136375], + [4.3503641517043246, 52.03931300230812], + [4.353777855161969, 52.03067598254814], + [4.354833897986723, 52.030438326288156], + [4.3579021922619, 52.027765461300135], + [4.357531851908068, 52.02737751477484], + [4.357790282030797, 52.02686319714048], + [4.357693163667414, 52.0268208082583], + [4.355477310715246, 52.025852139180394], + [4.355426800822968, 52.02571317996157], + [4.355034442917907, 52.02553018152065], + [4.354950331832447, 52.025580383289466], + [4.351418453743742, 52.0240031321347], + [4.3480119422782675, 52.02245664251616], + [4.348001861526927, 52.02245360791282], + [4.347670292137395, 52.02235143833252], + [4.343695446108745, 52.02061677341681], + [4.334426327761852, 52.016481196318594], + [4.334287267216494, 52.016418050367434], + [4.3302459938604985, 52.014666057513786], + [4.325956240875383, 52.01279331349752], + [4.325765910150902, 52.01276624528192], + [4.319389348549556, 52.01998790117724], + [4.317584510796867, 52.01908681460575], + [4.316913712114318, 52.01878506773961], + [4.3098192615626, 52.01563403900757], + [4.307638584821269, 52.01815135964611], + [4.304312905358546, 52.022001926763586], + [4.30418875190537, 52.02214763220608], + [4.300931442513893, 52.0259320192595], + [4.2979050068504785, 52.029447362072275], + [4.297890739282625, 52.02946873310392], + [4.298616683422468, 52.02982135223667], + [4.291707274849408, 52.040378305403365], + [4.290951689262947, 52.04157297544223], + [4.293865641152313, 52.04254041208109], + [4.293452893821121, 52.043062621771064], + [4.29550890465522, 52.04358301420572], + [4.296767208183938, 52.04372761678394], + [4.297562991078945, 52.04406761313933], + [4.297246938274505, 52.04457001131271], + [4.298737084005706, 52.04500924243652], + [4.298366722776905, 52.045557101216794], + [4.303226150826527, 52.046956280427], + [4.304409632327408, 52.04665981252528], + [4.309812349545611, 52.04857445807437], + [4.310041740261614, 52.04866920093631], + [4.313080582031055, 52.05013258576431], + [4.316445659373792, 52.05087056521923], + [4.321907980870466, 52.05305174324009], + [4.321353459427094, 52.054616413760705], + [4.324122349232063, 52.05564745987929], + [4.325487392503381, 52.05544121652495], + [4.32762825736959, 52.05645274575076], + [4.327643090312789, 52.05694290921634], + [4.328650962051242, 52.0565486017491], + [4.330332666299532, 52.05733536190873], + [4.33489199857129, 52.059523399263405], + [4.335150685211975, 52.05963106773664], + [4.340306937297911, 52.06194681042132], + [4.341880818444089, 52.06097770091408], + [4.344154672798984, 52.05938189543352], + [4.346904985912942, 52.05705459063016] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.38427aaa-f620-4470-966b-cadc38e17190", + "properties": { + "statcode": "GM0606", + "jrstatcode": "2024GM0606", + "statnaam": "Schiedam", + "rubriek": "gemeente", + "id": 167 + }, + "bbox": [ + 83744.00600000098, 434714.33399999887, 88333.2190000005, + 442144.76300000027 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.384001230673727, 51.95469299412173], + [4.388933356561257, 51.945535046890384], + [4.389420745519233, 51.94566981090089], + [4.389671904661457, 51.945472280716984], + [4.394351937421914, 51.947109668398255], + [4.395187814940512, 51.94692704158961], + [4.394920643436779, 51.94645753151804], + [4.393668899765799, 51.94461267062392], + [4.393478281405655, 51.94446508162285], + [4.393447922441628, 51.94425952075786], + [4.3942159671204495, 51.943999491464076], + [4.394977049171374, 51.94290874309767], + [4.403920167593328, 51.937252615118936], + [4.408517596210978, 51.93863659815592], + [4.4093171802431295, 51.93798149636713], + [4.413207302406361, 51.939057745762966], + [4.415492169550569, 51.94075854325197], + [4.417712926994255, 51.938476592663505], + [4.416414513710168, 51.93815479766001], + [4.414762317201452, 51.937374171899926], + [4.413262652764885, 51.936815733354756], + [4.409810608896985, 51.936339113039494], + [4.408978508461493, 51.93578469296737], + [4.408808613920595, 51.93474895179009], + [4.4081725883441925, 51.9314142015502], + [4.409874638119642, 51.92911251594865], + [4.410496281519597, 51.92929156196157], + [4.415234985114908, 51.9229703715918], + [4.416861452623069, 51.92312164396287], + [4.417054445118012, 51.92082399803706], + [4.417064331020424, 51.920423702056716], + [4.417076716808975, 51.91994752520881], + [4.4163458840838805, 51.91756982065052], + [4.415827290217769, 51.915930479044455], + [4.415697051130478, 51.91593813878526], + [4.4152657131563995, 51.91448477482408], + [4.413601162791426, 51.914585138303785], + [4.413506286020285, 51.9139526721665], + [4.412739207969259, 51.91391417046895], + [4.412209998218534, 51.913239123741], + [4.409075321291521, 51.912049735682494], + [4.40954194695666, 51.91041701131052], + [4.409999308331459, 51.90985247246315], + [4.411346263709198, 51.91027274648502], + [4.413445571231238, 51.907678798821394], + [4.413297725760001, 51.9072844114089], + [4.415676954514744, 51.905024782168496], + [4.412338317473845, 51.90242111304756], + [4.413710315534412, 51.90075462326248], + [4.409757400682799, 51.89986792162575], + [4.409712775123324, 51.89985787930143], + [4.399034080804062, 51.89741683903485], + [4.393419953490678, 51.896735899723886], + [4.388344082557973, 51.896779114730755], + [4.380173412760717, 51.897925302082584], + [4.372137428298711, 51.899188322335135], + [4.370622684571089, 51.899355527535334], + [4.369555394960432, 51.90308284196831], + [4.369950626234684, 51.9063917628922], + [4.369304975299214, 51.90845710859226], + [4.369219141775088, 51.908868237174936], + [4.367268205663684, 51.913948356422296], + [4.367225581242799, 51.91405155718218], + [4.366437807456577, 51.91505362592816], + [4.365512644832119, 51.921546193116946], + [4.363786960552744, 51.92309603478619], + [4.36307965213499, 51.92360374791044], + [4.362192012961902, 51.92409531618608], + [4.362001692836032, 51.92538169789265], + [4.361950259184813, 51.92572932869029], + [4.361825717945315, 51.926571097578886], + [4.363922081659264, 51.9276874627719], + [4.3631091244737235, 51.933348289046044], + [4.362703318070612, 51.934543943641316], + [4.362255509876059, 51.93563659409221], + [4.362202630553164, 51.9357597109076], + [4.360409355348473, 51.938799991674756], + [4.356437584511737, 51.94380516355267], + [4.3506713588841075, 51.95150652054202], + [4.367071178806624, 51.9552199082694], + [4.363537937826832, 51.96087424087124], + [4.3793094653563855, 51.96340662685282], + [4.384001230673727, 51.95469299412173] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.813b30db-d859-4f60-b420-66bc940daa61", + "properties": { + "statcode": "GM0610", + "jrstatcode": "2024GM0610", + "statnaam": "Sliedrecht", + "rubriek": "gemeente", + "id": 168 + }, + "bbox": [109665.204, 425347, 115300.04100000113, 428847.7969999984], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.780379733991585, 51.846639929814096], + [4.788147326825046, 51.84493742135679], + [4.7954227399107765, 51.84497970756334], + [4.802736816487459, 51.84632326652889], + [4.803378549399169, 51.84635340664415], + [4.8039053157516385, 51.838566112285356], + [4.804692076230707, 51.837736234708665], + [4.803985058799338, 51.83738701623721], + [4.804482661196883, 51.829983452461185], + [4.8045007605216945, 51.829760179437734], + [4.804575066695482, 51.82893474010533], + [4.804994874702365, 51.823201646818795], + [4.805078364986045, 51.82301417841465], + [4.805075449648224, 51.821949427513076], + [4.806503761580132, 51.82191995230524], + [4.808170294829761, 51.82180481103354], + [4.811384103702623, 51.821147881434264], + [4.811415832610211, 51.818658197025], + [4.797476593944037, 51.81716511053217], + [4.789741799803142, 51.81573818802169], + [4.785354886694126, 51.815198390985984], + [4.778547676427792, 51.81529342328965], + [4.7720915989414525, 51.81531908858026], + [4.7661803380640535, 51.816065473447665], + [4.757757206588527, 51.81919126918708], + [4.751440572601412, 51.821610718825994], + [4.741764665766825, 51.82222108612145], + [4.74169178130527, 51.822218372537606], + [4.729638671276236, 51.82216873918245], + [4.7337938300922735, 51.82848829677591], + [4.733795241581803, 51.82849060032298], + [4.734196405715643, 51.82911341682978], + [4.736640120824985, 51.833089385957], + [4.736845501254795, 51.83341761188253], + [4.737238027899739, 51.83402849370325], + [4.737243491864597, 51.834037546709624], + [4.741410292078826, 51.840776406066105], + [4.742763936845159, 51.841002689025714], + [4.753792810627361, 51.844508351945976], + [4.756175760616485, 51.84496009487829], + [4.758675590457932, 51.84440656698677], + [4.761347814626896, 51.84373517508093], + [4.765225698130492, 51.84425652547054], + [4.7669775420425085, 51.84388732883352], + [4.773142367979823, 51.84471047336523], + [4.774545798470233, 51.845543089065934], + [4.780379733991585, 51.846639929814096] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.2bddcf65-ab72-48e7-98b0-cca330af1d98", + "properties": { + "statcode": "GM0613", + "jrstatcode": "2024GM0613", + "statnaam": "Albrandswaard", + "rubriek": "gemeente", + "id": 169 + }, + "bbox": [ + 85829.76199999824, 427413.77899999917, 93324.0859999992, + 432060.7109999992 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.406300481491421, 51.872991093858296], + [4.411500991230752, 51.87163267174573], + [4.415001337811079, 51.871736267472535], + [4.415823703510466, 51.87243628399136], + [4.417618767301462, 51.872421057661754], + [4.428368705515107, 51.8703781074828], + [4.4302276335022475, 51.86940924973186], + [4.431736339636821, 51.86980855719167], + [4.436530165603116, 51.86857355090778], + [4.44024071291452, 51.86641833261314], + [4.440240798418466, 51.86641827127956], + [4.44102022494981, 51.86590974273977], + [4.442149506899566, 51.86624532023639], + [4.446475413973209, 51.86605091624335], + [4.465228559251217, 51.86201848798547], + [4.47186278678081, 51.86166723787152], + [4.48040261540678, 51.86232756155803], + [4.480548590226443, 51.86101826763416], + [4.48058100795992, 51.85950925891882], + [4.4798716981086395, 51.85892915304352], + [4.481272428743295, 51.858561709747335], + [4.480287510125322, 51.85514858900147], + [4.48299009461749, 51.85409698129266], + [4.484165426306932, 51.85363420104209], + [4.485729854915951, 51.85303875145299], + [4.489875348772361, 51.85142043406069], + [4.489665615817325, 51.850821776586], + [4.487268129917205, 51.84860800914709], + [4.489699964840748, 51.84677584591476], + [4.489569939459617, 51.84549500429151], + [4.489603762613476, 51.84406080392599], + [4.492227114623788, 51.84144421528615], + [4.489724340943311, 51.84069034485873], + [4.489094303713286, 51.83539556985162], + [4.478968343200913, 51.83421405585994], + [4.467119438271535, 51.83194383422386], + [4.458562144844636, 51.83164541331211], + [4.450082983746166, 51.83217348219533], + [4.443892509330462, 51.83343058147495], + [4.432482336186925, 51.83704614680436], + [4.423752811592109, 51.840073051921706], + [4.41417244556497, 51.84278900588852], + [4.409744087418047, 51.843219011953565], + [4.392381827853432, 51.84205096523043], + [4.383664524768482, 51.842118255154816], + [4.383228670734808, 51.85240215104237], + [4.385067352680309, 51.85343151157778], + [4.384909350795645, 51.85359886787717], + [4.385162228545387, 51.853759222251526], + [4.385021891659074, 51.855531798872235], + [4.383512466592058, 51.857369764837834], + [4.3843478801054525, 51.86123693587923], + [4.384347890576439, 51.86123698720546], + [4.384349983266147, 51.86124464834933], + [4.384436620481974, 51.861561619029544], + [4.386368657589366, 51.86638099924842], + [4.388021634781203, 51.86824700489076], + [4.388355558409976, 51.86862494138707], + [4.390431611163763, 51.87057967876729], + [4.394846160952357, 51.87233270846175], + [4.406300481491421, 51.872991093858296] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f757120d-8b51-4a7d-ac3f-48b19dc30bca", + "properties": { + "statcode": "GM0622", + "jrstatcode": "2024GM0622", + "statnaam": "Vlaardingen", + "rubriek": "gemeente", + "id": 170 + }, + "bbox": [77952.48099999875, 434482, 85034.3350000009, 440848.5769999996], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.35643758449111, 51.94380516445135], + [4.360409355348473, 51.938799991674756], + [4.362202629099212, 51.93575971089492], + [4.362255509876059, 51.93563659409221], + [4.362703318070612, 51.934543943641316], + [4.3631091244737235, 51.933348289046044], + [4.363922081659264, 51.9276874627719], + [4.361825717945315, 51.926571097578886], + [4.362001692836032, 51.92538169789265], + [4.362016780329779, 51.92527971777452], + [4.362192012961902, 51.92409531618608], + [4.36307965213499, 51.92360374791044], + [4.363786960552744, 51.92309603478619], + [4.365512644832119, 51.921546193116946], + [4.366437807456577, 51.91505362592816], + [4.367225581242799, 51.91405155718218], + [4.367268205663684, 51.913948356422296], + [4.369219141775088, 51.908868237174936], + [4.369304975299214, 51.90845710859226], + [4.369950626234684, 51.9063917628922], + [4.369555394960432, 51.90308284196831], + [4.370622684571089, 51.899355527535334], + [4.360034665560923, 51.89943138351386], + [4.34979757355402, 51.89767026297059], + [4.341071031122672, 51.89534191708791], + [4.330956988724404, 51.89410253151969], + [4.319596767028285, 51.894574630732826], + [4.319448016829556, 51.89458920737559], + [4.296372644642978, 51.89705294001938], + [4.2818863477974975, 51.90015215146727], + [4.267571210650752, 51.90533504262643], + [4.277052930856443, 51.911240231246694], + [4.277122016383049, 51.91128487327443], + [4.2926110086228855, 51.92123631982094], + [4.292953754770014, 51.921467809182644], + [4.2950734156997745, 51.92287837823972], + [4.313747109578789, 51.934933137313806], + [4.314843117546685, 51.93681013661544], + [4.32290603164139, 51.94269820509952], + [4.323873479934917, 51.94164000849949], + [4.336460487497542, 51.94643445423771], + [4.335530018126215, 51.946993962734396], + [4.336556426085613, 51.94739700373755], + [4.3506713588841075, 51.95150652054202], + [4.35643758449111, 51.94380516445135] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4908884c-09ae-4e7e-8e20-eb847ae2e1d0", + "properties": { + "statcode": "GM0626", + "jrstatcode": "2024GM0626", + "statnaam": "Voorschoten", + "rubriek": "gemeente", + "id": 171 + }, + "bbox": [ + 87456.84600000083, 457459.3271000013, 92151.58520000055, + 462802.8819999993 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.462444420531906, 52.14977673546818], + [4.462968825097775, 52.148945027799186], + [4.465405524413482, 52.149442899452815], + [4.466050664839558, 52.14641609929426], + [4.466682039586187, 52.140890627750515], + [4.4671713334747345, 52.136943190439986], + [4.469238665731849, 52.13427561702186], + [4.469066352006427, 52.133198373034844], + [4.468915538255969, 52.1327631369748], + [4.4644922885786675, 52.12731117030074], + [4.463211876385998, 52.12632585145196], + [4.455982130110692, 52.121177287213506], + [4.451074988714857, 52.11751212293579], + [4.446442046412882, 52.11337707131647], + [4.443142953976787, 52.111579726376085], + [4.438993986455462, 52.10992924993402], + [4.435744518497304, 52.10740153257449], + [4.433578780264875, 52.10415799112086], + [4.427902584065898, 52.10147024464356], + [4.423703975062802, 52.10358982895132], + [4.4208166669652575, 52.10462243616306], + [4.42121528307982, 52.10498326642114], + [4.4141579123918495, 52.10750833178454], + [4.413074349766266, 52.106633109957585], + [4.411378115207063, 52.10728658061039], + [4.412048093575214, 52.10797121971078], + [4.401159065184216, 52.111869994585554], + [4.41354861911179, 52.12160542217149], + [4.4132246168539115, 52.12218863286252], + [4.418304793382851, 52.12443579243257], + [4.427411967356159, 52.13324315508061], + [4.442988532648871, 52.14534578750748], + [4.443789483167526, 52.14101325258952], + [4.444678084084493, 52.140619884191494], + [4.446561992279091, 52.14119324286776], + [4.449603925617679, 52.140984339212835], + [4.450872364732536, 52.14212890160883], + [4.4570196157603785, 52.14778886956539], + [4.4592872656026135, 52.14969671909408], + [4.462444420531906, 52.14977673546818] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.1033640e-f962-48f2-a38d-946e020f1c58", + "properties": { + "statcode": "GM0627", + "jrstatcode": "2024GM0627", + "statnaam": "Waddinxveen", + "rubriek": "gemeente", + "id": 172 + }, + "bbox": [ + 100372.8350000009, 447301.2091999985, 108265.4600000009, + 454594.9622000009 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.646904042329074, 52.06428003922634], + [4.6591506024799525, 52.064005953058775], + [4.659147765353541, 52.06401773816246], + [4.659967730229911, 52.064104308168574], + [4.664024090327717, 52.057705042295304], + [4.666964657026835, 52.05762737629251], + [4.6696999104636, 52.05550463632017], + [4.669001406681072, 52.05234154784609], + [4.6798040435724, 52.052072469722766], + [4.679543180247151, 52.051246287665734], + [4.677311484885834, 52.043971066937914], + [4.6870594219932, 52.043836078273195], + [4.6873997006487, 52.04308516196827], + [4.705105953390314, 52.040282708405016], + [4.706039289398623, 52.04011969881705], + [4.701737732676482, 52.037856006466676], + [4.699701711572397, 52.0369142813961], + [4.694970453521301, 52.03441915698198], + [4.691896565641546, 52.032984763109376], + [4.685847712405736, 52.03026386954486], + [4.680541370280156, 52.02798127582812], + [4.679081628783794, 52.02819101434761], + [4.667278995619409, 52.025078336849944], + [4.667770299542605, 52.02451870508918], + [4.670380627710718, 52.022835198714716], + [4.673647892966856, 52.022599324927675], + [4.679671673602235, 52.0211572636433], + [4.681823104670654, 52.01930750351139], + [4.675574859545683, 52.01767490590768], + [4.66660655264981, 52.01297063583893], + [4.664792116992685, 52.01452389909289], + [4.664716704741298, 52.016484765449796], + [4.667303285407352, 52.01924517653139], + [4.667767737775245, 52.021489400665175], + [4.6673725209650945, 52.02264606591313], + [4.663771185236021, 52.02200759317445], + [4.6628002758162275, 52.02398426406749], + [4.656843404723092, 52.022050903490495], + [4.655184801800506, 52.021015920958526], + [4.653052302647587, 52.02134420334725], + [4.648812721783909, 52.020575577447175], + [4.648425253380079, 52.018986515245956], + [4.636802522620658, 52.01167991167045], + [4.624735698718093, 52.014722052888025], + [4.5969523289978085, 52.03154637512307], + [4.59108942778075, 52.035087376100805], + [4.607334557183236, 52.04531199615047], + [4.606272714757318, 52.045949099444755], + [4.610224337628777, 52.046267306954356], + [4.6108225342103575, 52.04823347810592], + [4.610947408415692, 52.04871085300544], + [4.608046842874654, 52.049116530608224], + [4.6055291021669555, 52.05043832653335], + [4.608405926256057, 52.062944282937586], + [4.608074226445477, 52.06544109554702], + [4.607427110877652, 52.06552651866799], + [4.607023721983084, 52.07704584397485], + [4.625320375285519, 52.076443249354085], + [4.625307180049537, 52.074447226476444], + [4.636881164490192, 52.07353164088043], + [4.637624697742871, 52.06801016026814], + [4.638225121412685, 52.06482359519138], + [4.6468606620477955, 52.06428271122608], + [4.646904042329074, 52.06428003922634] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.19943627-ceba-4b81-8e2c-ecc7cb30f1a1", + "properties": { + "statcode": "GM0629", + "jrstatcode": "2024GM0629", + "statnaam": "Wassenaar", + "rubriek": "gemeente", + "id": 173 + }, + "bbox": [ + 80736.1649999991, 456765.61300000176, 90436.54699999839, + 467010.45910000056 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.404112227864317, 52.16840511115143], + [4.405094003812211, 52.16762072556567], + [4.409319179021691, 52.169342056352576], + [4.411595084473015, 52.16347917777467], + [4.413193653572311, 52.16379085652235], + [4.4147641537525635, 52.16245466806194], + [4.417786312486691, 52.1614775286893], + [4.419771531874831, 52.16234433094826], + [4.425973996325128, 52.15922980796639], + [4.431548694344416, 52.158367143506695], + [4.440478179940308, 52.15565298391638], + [4.439232475773364, 52.1547074705806], + [4.438865156957451, 52.153264485502305], + [4.4413715863976, 52.14949849606479], + [4.443939311443735, 52.14604126426354], + [4.442988532648871, 52.14534578750748], + [4.427411967356159, 52.13324315508061], + [4.418304793382851, 52.12443579243257], + [4.4132246168539115, 52.12218863286252], + [4.41354861911179, 52.12160542217149], + [4.401159065184216, 52.111869994585554], + [4.389310187183216, 52.103921646438955], + [4.37270929656381, 52.094772594424555], + [4.370072988198612, 52.09606420789936], + [4.3644057467972, 52.10080554092549], + [4.363309010178451, 52.10180345127759], + [4.358831354076847, 52.105527037918286], + [4.358486561997701, 52.10575894908734], + [4.343743457846494, 52.0981085414286], + [4.342318125733198, 52.09748184206079], + [4.341362039548272, 52.098342489472415], + [4.338573373236649, 52.097434809047314], + [4.337252929812567, 52.09876951100471], + [4.32738901210725, 52.09565738016889], + [4.32328959417702, 52.09920995893221], + [4.332264274864017, 52.10304008471127], + [4.330434519015273, 52.104261218344654], + [4.333060413431348, 52.10573078190536], + [4.32894217942354, 52.10920949946257], + [4.328835857773563, 52.10928734944658], + [4.30263667331846, 52.12852020607691], + [4.331611410987685, 52.14998040711048], + [4.3500985725020715, 52.165658694086176], + [4.357370062657953, 52.17181571930645], + [4.374433483340405, 52.18687382638778], + [4.392278155365122, 52.1750768703405], + [4.39509100883248, 52.17460564596996], + [4.400079783703994, 52.17138138740397], + [4.403220557727267, 52.16895728378941], + [4.404112227864317, 52.16840511115143] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.9196c2ba-5754-42b3-b322-e06c001ffcf4", + "properties": { + "statcode": "GM0632", + "jrstatcode": "2024GM0632", + "statnaam": "Woerden", + "rubriek": "gemeente", + "id": 174 + }, + "bbox": [ + 114243.54, 453039.2129999995, 128805.70600000024, 463875.4699999988 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.903686554141357, 52.16205077709003], + [4.907806722534319, 52.16146081176449], + [4.909637961372828, 52.16187089241254], + [4.91118728125278, 52.16009498278449], + [4.9117775751006, 52.14425447519907], + [4.915039412365846, 52.14458130328064], + [4.9236017117576205, 52.14731887959952], + [4.934375859109258, 52.13885822596297], + [4.943916060285596, 52.127536784335], + [4.960996820521761, 52.133361842920756], + [4.970095981700405, 52.122441670860695], + [4.978198011889031, 52.11284627958242], + [4.978466666019174, 52.113157039492215], + [4.980221541176038, 52.11219949569462], + [4.97958036549124, 52.11156407913293], + [4.979624916678799, 52.10872243160254], + [4.978728719632594, 52.108100410255204], + [4.976269446041966, 52.107971775623575], + [4.975820428212223, 52.10571647978256], + [4.973049621284431, 52.10278376753615], + [4.973440463739853, 52.10123002617158], + [4.975659727504222, 52.09978958411625], + [4.989327149679314, 52.10075530690541], + [4.993524272655011, 52.092225886964485], + [4.994217961332027, 52.09038489018415], + [5.0050070789573065, 52.08845210600386], + [5.003230182910371, 52.07795675707373], + [5.001618037498539, 52.0781440109017], + [4.999498257094239, 52.06613144714707], + [4.995845258422169, 52.067334264227654], + [4.98259104567623, 52.06495046044022], + [4.970500846199651, 52.06756012231482], + [4.957105587951775, 52.06594767792254], + [4.956333251421545, 52.070299359349555], + [4.94571417992028, 52.075555387295026], + [4.939366796167825, 52.07792391675501], + [4.936202370064339, 52.0798657774483], + [4.930846640921977, 52.0792854959447], + [4.926608433048674, 52.07781814931836], + [4.92466104562518, 52.07759057229169], + [4.917981639633138, 52.07476474779977], + [4.91489123572979, 52.074092583298665], + [4.908202580859019, 52.071895651121146], + [4.905473025165545, 52.070148202491914], + [4.901613352086569, 52.070396432298466], + [4.900250011220091, 52.070202261126255], + [4.888984530277329, 52.068907544738636], + [4.875334667822606, 52.06888528222076], + [4.8745163895868, 52.06819074714586], + [4.873200411814852, 52.06874539314767], + [4.855231509573798, 52.06881354621659], + [4.840376439874552, 52.06888006827187], + [4.829807903191145, 52.066823402842935], + [4.8340353885458445, 52.07273585029404], + [4.8327892373782415, 52.072951043338264], + [4.833045259568279, 52.07482692983462], + [4.826275687671352, 52.07464357557838], + [4.826492611217977, 52.079527175935866], + [4.825629565962691, 52.079792332299036], + [4.82563534598579, 52.08008147421786], + [4.82339470379061, 52.09280121655865], + [4.823055886140577, 52.105192804673514], + [4.82438949402095, 52.10540307553848], + [4.825314741101429, 52.1071510893818], + [4.792080179629943, 52.122287379380644], + [4.793490841428945, 52.123972736782214], + [4.7983576555423095, 52.12530060343397], + [4.801980656694714, 52.12485754386925], + [4.803497703642577, 52.12641564806592], + [4.806365640775116, 52.12739626947748], + [4.808065124824426, 52.12894798526239], + [4.807790214039816, 52.12985772047877], + [4.8088468724945175, 52.13181379649518], + [4.807599040123963, 52.13521107387899], + [4.808843061919335, 52.13567377855484], + [4.809320042489757, 52.137801455227695], + [4.813111094566548, 52.14017324365466], + [4.816665724377836, 52.13938693129152], + [4.820533623926715, 52.1422287681982], + [4.826471851529682, 52.14217633121172], + [4.831891938210954, 52.1442318711758], + [4.8330531128739205, 52.144706057555666], + [4.834119454713208, 52.14296408437976], + [4.836704642118573, 52.14287992242768], + [4.837520577969921, 52.14064375090867], + [4.8407933405923, 52.141476767124], + [4.842583825816129, 52.13953312241516], + [4.846019655870111, 52.13953911092063], + [4.847412571871065, 52.138944942388], + [4.851535293860713, 52.13961564400995], + [4.852530859735847, 52.13832934041334], + [4.855238666869632, 52.13720961848716], + [4.864915049596963, 52.13739112288686], + [4.870543667138489, 52.138340157369385], + [4.872606617744036, 52.138862741748774], + [4.874518480819271, 52.13883141526054], + [4.873623464337562, 52.156082509353375], + [4.887574434214758, 52.15995816524852], + [4.892178256131188, 52.16179792033835], + [4.903686554141357, 52.16205077709003] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.db843787-5d91-4c3d-a364-192e7266bd09", + "properties": { + "statcode": "GM0637", + "jrstatcode": "2024GM0637", + "statnaam": "Zoetermeer", + "rubriek": "gemeente", + "id": 175 + }, + "bbox": [ + 88350.87000000104, 449607.19999999925, 98079.40300000086, + 456482.7410000004 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.510126848031308, 52.090028075189565], + [4.513134385270834, 52.08844516642076], + [4.514267358146804, 52.08858715062891], + [4.5305551791418, 52.080510732403745], + [4.530103521141798, 52.08008210451593], + [4.53601940423295, 52.07690793642596], + [4.534180620497165, 52.07556370385283], + [4.53390423616747, 52.07521514919764], + [4.535168098402097, 52.07446319497139], + [4.533694956873119, 52.07305113110721], + [4.5532098194512765, 52.06383148330261], + [4.5527717130714915, 52.063307759548856], + [4.557180247335913, 52.06123936641557], + [4.5493428342867865, 52.05474446545488], + [4.5475466995369045, 52.050369671072175], + [4.545079451212371, 52.048861025859395], + [4.534332818945437, 52.049407751777686], + [4.522594378751639, 52.043399330467615], + [4.51899580737053, 52.04138403698878], + [4.512072642323647, 52.03682517918405], + [4.507060333147083, 52.03282534468694], + [4.504709268250092, 52.031930763661094], + [4.4953788940342285, 52.031906644887194], + [4.47738443919783, 52.03179157401692], + [4.477680969523682, 52.03139482516338], + [4.477027885871207, 52.031280576125376], + [4.476706110941415, 52.03164214453769], + [4.472804432457973, 52.03802450053474], + [4.472531177171188, 52.03797242873952], + [4.471955739573021, 52.039030688055846], + [4.471619171645839, 52.03899674644802], + [4.470743678425846, 52.04047771013849], + [4.458932104217082, 52.03885383759266], + [4.457643806110892, 52.03861865961428], + [4.456994730665659, 52.039672221495834], + [4.456438011400488, 52.039541784252116], + [4.450564137655585, 52.04921020739103], + [4.438044241580543, 52.050283699682744], + [4.425831255774702, 52.051469445649296], + [4.422072403575685, 52.05167308822989], + [4.415394622686726, 52.05744133217617], + [4.422431051332642, 52.05732947742137], + [4.4204239717064056, 52.062101143345885], + [4.420832515068699, 52.06258004736731], + [4.421685233699247, 52.062885893035805], + [4.421404199477198, 52.063303456549214], + [4.455166087765837, 52.07818176616018], + [4.456752071586638, 52.078814831742825], + [4.4756598601893955, 52.08129630162135], + [4.474274726963158, 52.08526066565295], + [4.493018073759078, 52.08775191367806], + [4.492218925884501, 52.09000976337928], + [4.4978058948580415, 52.087837562692854], + [4.499367784918219, 52.08845985624384], + [4.498908025940071, 52.08942776935852], + [4.499967035235277, 52.09165520286495], + [4.504449609923593, 52.09329033175115], + [4.510126848031308, 52.090028075189565] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.bc56d274-4afe-4809-b142-344a6eec334a", + "properties": { + "statcode": "GM0638", + "jrstatcode": "2024GM0638", + "statnaam": "Zoeterwoude", + "rubriek": "gemeente", + "id": 176 + }, + "bbox": [ + 92236.97100000083, 455039.5320000015, 97736.17700000107, + 462486.29199999943 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.542948830335793, 52.12123481175779], + [4.541905299975563, 52.118660206561344], + [4.535322767868167, 52.12043247791573], + [4.536502250907333, 52.10195752290193], + [4.537134664742603, 52.08394597908151], + [4.534571269377725, 52.08349622961895], + [4.5305551791418, 52.080510732403745], + [4.514267358146804, 52.08858715062891], + [4.513134385270834, 52.08844516642076], + [4.510126848031308, 52.090028075189565], + [4.504449609923593, 52.09329033175115], + [4.499967035235277, 52.09165520286495], + [4.498908025940071, 52.08942776935852], + [4.499367784918219, 52.08845985624384], + [4.4978058948580415, 52.087837562692854], + [4.492218925884501, 52.09000976337928], + [4.490413658031666, 52.09785838597212], + [4.4846468905251395, 52.10358811211239], + [4.4708257864458965, 52.11770810347141], + [4.472975415649525, 52.11895161082025], + [4.487519961082113, 52.127409720507664], + [4.491952885527017, 52.12901094805407], + [4.496561745695619, 52.13145000084818], + [4.497969595724786, 52.13216370455066], + [4.513099485469745, 52.139916710616625], + [4.513212626734072, 52.13997419127773], + [4.510676580008814, 52.14086587688897], + [4.515986676280671, 52.14469391822864], + [4.5240376810806, 52.14739786756339], + [4.5246670470544625, 52.14633722735878], + [4.5277836987852025, 52.14323707964986], + [4.530796095060251, 52.14186289776587], + [4.537268603719905, 52.1409575056821], + [4.544548064029641, 52.14073117617375], + [4.550733048313659, 52.13838028586006], + [4.549140143373007, 52.13759296725298], + [4.550303142522373, 52.13675820592304], + [4.546307160600089, 52.13402119878734], + [4.546058208279806, 52.13335665625444], + [4.547620537779519, 52.1323100450737], + [4.545190276997194, 52.12920413510513], + [4.545160178946237, 52.129167596326205], + [4.540640914979625, 52.12156227789896], + [4.542948830335793, 52.12123481175779] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.30548464-f629-40c1-af0d-a797e2149c84", + "properties": { + "statcode": "GM0642", + "jrstatcode": "2024GM0642", + "statnaam": "Zwijndrecht", + "rubriek": "gemeente", + "id": 177 + }, + "bbox": [ + 97539.25, 423851.9930000007, 105669.94999999925, 429041.95800000057 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.6327152383468855, 51.826941546444154], + [4.637267111202549, 51.825394255793555], + [4.6398534135847695, 51.826348325038516], + [4.642878262916926, 51.82650186094267], + [4.644003884860616, 51.82752869031909], + [4.646388125745885, 51.827757874463714], + [4.653440092766541, 51.829450421779924], + [4.6598916313714716, 51.83105800604229], + [4.659936479300135, 51.831068982216564], + [4.661885761452052, 51.83160788547057], + [4.666297501860964, 51.826803685808635], + [4.669692322650747, 51.82417070038159], + [4.670438836676199, 51.82358911887699], + [4.671708689632661, 51.82085397597755], + [4.671376105730293, 51.82084552201156], + [4.668392046405299, 51.82054656358189], + [4.664442432728738, 51.81948229046972], + [4.663248795641995, 51.81902685456238], + [4.658584378961727, 51.81669068984112], + [4.65645853765151, 51.81550861907685], + [4.656316657783594, 51.815429723659456], + [4.654747459140773, 51.814444617581394], + [4.650792095576763, 51.811512917577225], + [4.650545244931636, 51.81131583629254], + [4.6480710879790115, 51.809277718566975], + [4.64195779605306, 51.80570992017464], + [4.632178861780685, 51.80213104927525], + [4.621221575591659, 51.800803681803664], + [4.597775588999061, 51.80629581168602], + [4.5968759677706315, 51.80643149747417], + [4.583083476734169, 51.80747987736994], + [4.578295107504451, 51.80835516809109], + [4.569631586962593, 51.81130849242987], + [4.566743356586097, 51.81282915101053], + [4.564462042806355, 51.814330161186554], + [4.560725606775506, 51.81873554932166], + [4.5593002905759805, 51.82313870740599], + [4.556345341217486, 51.8278318608001], + [4.55360870054682, 51.82989690571221], + [4.5572493861597625, 51.83389747021037], + [4.558911899635909, 51.836242432384225], + [4.558635741207109, 51.8368355028898], + [4.5600134242773205, 51.838791264782124], + [4.5638333077598, 51.840943732113686], + [4.569035651229084, 51.844849304591875], + [4.571058445970809, 51.84711677498695], + [4.585362058392506, 51.84251468152912], + [4.594684138619201, 51.840283112094596], + [4.600154903506953, 51.83873007840784], + [4.614257999126365, 51.83356328761671], + [4.622366979562727, 51.8306508562028], + [4.6327152383468855, 51.826941546444154] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.43ac9d28-49a1-4a8c-99fc-d7434d8c5e85", + "properties": { + "statcode": "GM0654", + "jrstatcode": "2024GM0654", + "statnaam": "Borsele", + "rubriek": "gemeente", + "id": 178 + }, + "bbox": [ + 37463.517999999225, 378491.47100000083, 53937.929900001734, + 391728.7129999995 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [3.9281724639280977, 51.450553173080955], + [3.933320037627477, 51.44855205255597], + [3.929755450468476, 51.44989468988284], + [3.925606242792195, 51.45147830633821], + [3.9281724639280977, 51.450553173080955] + ] + ], + [ + [ + [3.7062981776638084, 51.470956890508596], + [3.6983925548851517, 51.46969141167282], + [3.695678084423537, 51.47111471653913], + [3.7026293395201937, 51.47481192657744], + [3.7055059387215454, 51.47179687893368], + [3.7062981776638084, 51.470956890508596] + ] + ], + [ + [ + [3.8112977457781567, 51.48311069538515], + [3.818702030171312, 51.4830210648019], + [3.8232506477200183, 51.4835022553089], + [3.8320062023019497, 51.4849351747231], + [3.841938835565294, 51.48527061676376], + [3.8509657569826805, 51.48406045270747], + [3.8696565743185123, 51.48257033278486], + [3.8711775717814523, 51.48092427799575], + [3.8741167534592935, 51.480040041847836], + [3.8803926034351117, 51.48100745877069], + [3.8977407853710213, 51.479889622188836], + [3.9034888830154926, 51.479594960339405], + [3.9128776703357486, 51.47912157922126], + [3.9122681191887185, 51.4782386735456], + [3.9129146761864444, 51.47722939832908], + [3.9124116099415627, 51.47648019939433], + [3.9101263994755366, 51.473076578649284], + [3.908081237900085, 51.471831329295284], + [3.9090452761591745, 51.471466149114], + [3.907741371476147, 51.46952370214363], + [3.9077320286764876, 51.469509783256754], + [3.9091291149905443, 51.46780685700231], + [3.916236356450644, 51.46342473753142], + [3.928510234135184, 51.458790651424636], + [3.9259803793137067, 51.45458395812683], + [3.925433111869634, 51.451527521960365], + [3.9240086365625464, 51.45133396152354], + [3.9226448673953103, 51.45020848897777], + [3.924294721357043, 51.44881784109805], + [3.9253579332810355, 51.44546636891941], + [3.921224217002161, 51.44452128968515], + [3.923254807672463, 51.4397980872202], + [3.925397607415557, 51.43790365459183], + [3.92578182880027, 51.43448569129928], + [3.9189731616288883, 51.42682571125202], + [3.9164728700660763, 51.41868882555131], + [3.9156710911457258, 51.41842816749836], + [3.9164138427935606, 51.42091697856567], + [3.914726803298742, 51.42048200215814], + [3.9141323992656405, 51.41760977911327], + [3.9113097075621983, 51.41541221096494], + [3.911723494924866, 51.4140365637043], + [3.9081658465955473, 51.408664100182804], + [3.900623828991999, 51.394999389555835], + [3.8933954337325694, 51.3937401776532], + [3.8843202016086136, 51.3954611219317], + [3.8812917846841053, 51.396128939116686], + [3.8759348293752365, 51.397338602056884], + [3.871412215376995, 51.39737133899911], + [3.86698744129773, 51.39638457890906], + [3.864372613711914, 51.395481714480304], + [3.861622089910391, 51.39370829750226], + [3.860866908270134, 51.39223333734002], + [3.858163214973, 51.391225866215436], + [3.8479300928813904, 51.390230468466775], + [3.8367265968507467, 51.388428907510246], + [3.8222828727674267, 51.3869667134093], + [3.8186630612328836, 51.38617989243737], + [3.818101484175008, 51.385173826134896], + [3.817931791993328, 51.38520545235809], + [3.817491434206739, 51.38606823076638], + [3.817050299149582, 51.38596492487946], + [3.8173406723767838, 51.38503100285472], + [3.817076059465177, 51.38500482021512], + [3.816703951155453, 51.38579264736445], + [3.812971852762582, 51.38547560685909], + [3.8123382462069557, 51.38557461816754], + [3.7982663012196687, 51.39472431903438], + [3.7902262632248527, 51.39834215872494], + [3.7895177460135434, 51.39981469293553], + [3.7750276979689636, 51.405388719714395], + [3.7775971398256663, 51.40900957972085], + [3.777177783084711, 51.40980958967779], + [3.7758755049269377, 51.41024797689004], + [3.7651702370195825, 51.41033421491632], + [3.754956338293302, 51.41480169361137], + [3.750296616652811, 51.41393760833973], + [3.744875077863405, 51.41224091812256], + [3.7443121611976147, 51.41145045747713], + [3.7348089408897187, 51.411142825768515], + [3.7270953743445516, 51.41398629397272], + [3.72539722536434, 51.41503680664482], + [3.720661640435644, 51.426091176379245], + [3.719213146591585, 51.42676177356984], + [3.7177707906964588, 51.42712667077972], + [3.7167374049357074, 51.42597903007007], + [3.715664743993216, 51.42679426851858], + [3.7128772902679734, 51.431596156842915], + [3.7110509723458796, 51.43180529680633], + [3.7095405619942197, 51.43357231836791], + [3.7085436095227573, 51.4347016861791], + [3.7027429681983657, 51.44140060881471], + [3.6963918303751333, 51.44585113847607], + [3.7029747953289363, 51.450044253784434], + [3.704648422661965, 51.450304056274824], + [3.7067200042349446, 51.447944662554946], + [3.7016522562301604, 51.443270998091755], + [3.7035509223113983, 51.44173685987809], + [3.7102828927963496, 51.446569055617694], + [3.7181344005426458, 51.44250133642015], + [3.719228119156365, 51.44264568350899], + [3.722222637090103, 51.44492058250377], + [3.7125323676420527, 51.4508627508612], + [3.727345906466863, 51.456395379498794], + [3.725544605562631, 51.458284568540236], + [3.7143958513376547, 51.45430787056212], + [3.7099046359633494, 51.453461645236374], + [3.7099453941026233, 51.453590277452456], + [3.71027897515931, 51.45461970958806], + [3.7112339057300643, 51.45773722023585], + [3.71488162611593, 51.46363571042927], + [3.7168534017701855, 51.46453540763197], + [3.7156038002299567, 51.46641192567712], + [3.717423531276257, 51.46960767369933], + [3.721334574843683, 51.47319440956344], + [3.7198618837397572, 51.474933219969124], + [3.718651050251483, 51.4750223946312], + [3.714658627816674, 51.470621008612945], + [3.7136989129739417, 51.47073700362875], + [3.710525384828575, 51.4718352772811], + [3.7056260209407696, 51.47694805707049], + [3.706449166797979, 51.47868956895237], + [3.7036479310032706, 51.48227034837062], + [3.7033589635743986, 51.48242242980779], + [3.700776018875736, 51.48313547288858], + [3.699477642362333, 51.490619615965734], + [3.6990504652555085, 51.4923409722019], + [3.699795080562272, 51.4939434713374], + [3.705536319678312, 51.502455908838854], + [3.721881769062573, 51.50213159395737], + [3.7388384742709393, 51.49998836524633], + [3.7674564032192013, 51.49835953340728], + [3.7796100239775217, 51.49595401617267], + [3.7910694650403878, 51.49040664641864], + [3.7969255063486402, 51.487027768966975], + [3.8036839486631973, 51.48447061692917], + [3.8112977457781567, 51.48311069538515] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7d270f7d-834a-4637-b373-7da511230208", + "properties": { + "statcode": "GM0664", + "jrstatcode": "2024GM0664", + "statnaam": "Goes", + "rubriek": "gemeente", + "id": 179 + }, + "bbox": [ + 38244.392000000924, 388821.41000000015, 56761.94200000167, + 397180.7813999988 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [3.72089579761585, 51.52932709452578], + [3.7184445009604374, 51.52840381844657], + [3.7176835295032298, 51.52871670113347], + [3.7206224338449623, 51.53087904249888], + [3.720307669248583, 51.531836914483165], + [3.720590658755893, 51.531852547096484], + [3.7209687302945054, 51.53061480949757], + [3.72089579761585, 51.52932709452578] + ] + ], + [ + [ + [3.829628402638906, 51.54843564306416], + [3.8357286584900425, 51.54739948206446], + [3.8453663097346458, 51.54371101983001], + [3.84595298489435, 51.54130506397136], + [3.8492059839078148, 51.53959398643359], + [3.8602461858470525, 51.53851625953769], + [3.865871067952755, 51.53953113569894], + [3.865115824578592, 51.54147703372124], + [3.8662753292240915, 51.54163132535743], + [3.8668595167194115, 51.54170793840088], + [3.8678108500881585, 51.54004370136563], + [3.87015130181097, 51.54047178716712], + [3.8697997933765205, 51.541459261589466], + [3.870328150447406, 51.54156315652836], + [3.8706992350176046, 51.54057199981798], + [3.8824735312872383, 51.5427247065887], + [3.8866539971241614, 51.54281209299206], + [3.891348796550691, 51.541318850555015], + [3.8982736579876582, 51.54112701718945], + [3.901064046404147, 51.54355533192952], + [3.907017240279847, 51.54369051412368], + [3.9124886472324585, 51.54570526482758], + [3.9183756067171895, 51.54400095050879], + [3.9253457833229253, 51.54445494035663], + [3.926927174988356, 51.544200333970444], + [3.931012895587167, 51.538325721475296], + [3.926410332420825, 51.537856182965854], + [3.9264322721373643, 51.53724610227952], + [3.928198882112599, 51.53722584725839], + [3.9334713797854297, 51.53151459451727], + [3.9404569163301, 51.525481828376094], + [3.943762247449328, 51.52623219226322], + [3.9493707578832646, 51.52884298495695], + [3.957049855043499, 51.530736687756644], + [3.971465551848836, 51.528466556340405], + [3.9698900772776335, 51.52557843648919], + [3.9679371260238137, 51.52598102017896], + [3.963506038691685, 51.520613221251864], + [3.9636358278590076, 51.513933125000705], + [3.9652305178439193, 51.50646916110534], + [3.961888768211909, 51.50520849182783], + [3.956198424723895, 51.503404408815506], + [3.9436514296618705, 51.49724501735756], + [3.940184544257152, 51.49314317731434], + [3.925821460609729, 51.49186849746507], + [3.925654256849742, 51.49101542835134], + [3.9258760631169833, 51.489101462679436], + [3.9245845779505424, 51.486740850238334], + [3.9247437860515664, 51.48537235299938], + [3.9218318848242832, 51.48502464212456], + [3.9209184355455853, 51.486114435321916], + [3.9150185615651023, 51.48479959921348], + [3.9167644231034195, 51.48159659858752], + [3.9128776703357486, 51.47912157922126], + [3.9034888830154926, 51.479594960339405], + [3.8977407853710213, 51.479889622188836], + [3.8803926034351117, 51.48100745877069], + [3.8741167534592935, 51.480040041847836], + [3.8711775717814523, 51.48092427799575], + [3.8696565743185123, 51.48257033278486], + [3.8509657569826805, 51.48406045270747], + [3.841938835565294, 51.48527061676376], + [3.8320062023019497, 51.4849351747231], + [3.8232506477200183, 51.4835022553089], + [3.818702030171312, 51.4830210648019], + [3.8112977457781567, 51.48311069538515], + [3.8036839486631973, 51.48447061692917], + [3.7969255063486402, 51.487027768966975], + [3.7910694650403878, 51.49040664641864], + [3.7796100239775217, 51.49595401617267], + [3.7674564032192013, 51.49835953340728], + [3.7388384742709393, 51.49998836524633], + [3.721881769062573, 51.50213159395737], + [3.705536319678312, 51.502455908838854], + [3.7056085258081293, 51.503641581279204], + [3.7108537045019125, 51.503470239383475], + [3.711103158282571, 51.50672068628819], + [3.745245000639509, 51.51247194824406], + [3.746943476753197, 51.51685246933759], + [3.728153558604487, 51.52446566677998], + [3.7285941818535817, 51.52539454629326], + [3.727892059598286, 51.52550244563229], + [3.727219695764306, 51.52425734422649], + [3.7260124457249155, 51.524743289016094], + [3.7250618283272057, 51.525720879284926], + [3.7265537036358958, 51.52996148258996], + [3.7313432177478125, 51.53494195227623], + [3.73235726799751, 51.53842348776278], + [3.73439652723032, 51.54017397035904], + [3.7462707076734616, 51.54468643946879], + [3.7496292249875367, 51.54417474756967], + [3.7504077152843127, 51.54607457424619], + [3.7536458614616515, 51.54755839531687], + [3.7637365113687165, 51.54553160170457], + [3.7675199667975026, 51.54600703593255], + [3.770173078515569, 51.54385490438732], + [3.770186478466861, 51.54260846491557], + [3.780949441061437, 51.54273822270662], + [3.7924672162944564, 51.541085788959215], + [3.7985550396863546, 51.542194380929], + [3.801178042760337, 51.54220401060605], + [3.802797642166762, 51.54294562711217], + [3.803706785609136, 51.54402691047215], + [3.8051983146403967, 51.545180597734614], + [3.8129485039345354, 51.547232948791994], + [3.814320501440279, 51.54698917449205], + [3.8138277506471, 51.54789194009098], + [3.8141781187518666, 51.54807008104511], + [3.814854692864193, 51.547431758948655], + [3.8150220456915123, 51.54680243355139], + [3.815610781013203, 51.54681962891791], + [3.8151252423711846, 51.54787805073852], + [3.8156768486631814, 51.547947152689275], + [3.8168569025647243, 51.54651255903451], + [3.817294484541518, 51.54668587269706], + [3.8163631631321104, 51.54812574412894], + [3.8165184168552044, 51.54886170789363], + [3.8167812557038445, 51.54882038043964], + [3.8169706800847125, 51.54813771362919], + [3.8178183299724973, 51.548152908238684], + [3.8179007052178013, 51.54771533985237], + [3.8201600877177015, 51.547859470985614], + [3.8203034854230458, 51.54625248366283], + [3.820787027248125, 51.546202606834875], + [3.8207080440553782, 51.54730475480883], + [3.8208831600507387, 51.5473071087254], + [3.820888164342286, 51.546863568438845], + [3.8211448216953, 51.54684391063589], + [3.8212481719283717, 51.54822571314935], + [3.8205780915659235, 51.548212518047194], + [3.820631852097641, 51.549272761167046], + [3.8224692632903277, 51.54839442967059], + [3.829628402638906, 51.54843564306416] + ] + ], + [ + [ + [3.7783940221483165, 51.548632216246816], + [3.7774952466873235, 51.5477336983253], + [3.770768041121842, 51.55027252726312], + [3.7717428077855693, 51.551350177063306], + [3.7783940221483165, 51.548632216246816] + ] + ], + [ + [ + [3.7718907811081794, 51.54792893946574], + [3.770905767764534, 51.54680125925119], + [3.767437024726532, 51.54749389497769], + [3.7608547588304937, 51.54760726357982], + [3.757010243252018, 51.54831605934873], + [3.756349284542476, 51.54943298124069], + [3.7573730027644765, 51.55018232861725], + [3.769045134390563, 51.55236825587051], + [3.7701060907547115, 51.54950861292379], + [3.7718907811081794, 51.54792893946574] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.774b91e4-61a7-494c-a97e-0825551fc183", + "properties": { + "statcode": "GM0668", + "jrstatcode": "2024GM0668", + "statnaam": "West Maas en Waal", + "rubriek": "gemeente", + "id": 180 + }, + "bbox": [ + 155925.66299999878, 424563, 170346.76700000092, 434036.15300000086 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.531362560547886, 51.89475336679323], + [5.530982971435718, 51.89139351371638], + [5.536505348881547, 51.89168450725576], + [5.539882923381314, 51.891178659176916], + [5.54312158471067, 51.88840384427858], + [5.547330225967518, 51.88825841759314], + [5.550662177283872, 51.88804791331494], + [5.55637574633376, 51.88875032861584], + [5.563894257394759, 51.890530397621255], + [5.5769928645041205, 51.89243661729042], + [5.5714598250038385, 51.88391188029334], + [5.569895293571983, 51.8847073291541], + [5.5664374727091195, 51.88394834016258], + [5.5669479517534075, 51.88125464268416], + [5.568252925547874, 51.88045475274881], + [5.569393797900785, 51.879665619412556], + [5.568435462428692, 51.87654546921055], + [5.5602558553733115, 51.87504787005084], + [5.559618989061663, 51.87085048775371], + [5.553782341981704, 51.87037375732889], + [5.553073520114082, 51.86263263015014], + [5.577273265625711, 51.86458490078318], + [5.577732844796946, 51.86035137484043], + [5.57871075142363, 51.859204964374634], + [5.584696404051807, 51.857228093949686], + [5.581036892617963, 51.85114699104039], + [5.5845460652674825, 51.84153499420507], + [5.5850132877882315, 51.83910658355122], + [5.598269398561568, 51.839544211375284], + [5.598493641179508, 51.837851198589576], + [5.6098352823815105, 51.83627384514094], + [5.606631283560918, 51.83568927509394], + [5.609857529194359, 51.833939925797196], + [5.60785349965607, 51.83312077329094], + [5.608961901402746, 51.830988823030275], + [5.603069782508333, 51.82828142449179], + [5.599544564132334, 51.82911861193133], + [5.597976615211845, 51.828049441289046], + [5.588848392526304, 51.82969957167565], + [5.576791871920223, 51.82815180523269], + [5.567879785489582, 51.827783278389695], + [5.55815836948093, 51.82752670374353], + [5.554824285565418, 51.82656016235002], + [5.552147179923371, 51.82496722141326], + [5.551264577702485, 51.82413081878973], + [5.548628699456513, 51.81980272168763], + [5.545284523634033, 51.817434346747184], + [5.540929784076257, 51.81630760279422], + [5.5356338752006, 51.8165743730952], + [5.52788422813875, 51.81848119837396], + [5.517734242069692, 51.81928391971916], + [5.514213996394645, 51.82074390438085], + [5.5080787899499954, 51.82614341485542], + [5.5032551282530004, 51.8287639049381], + [5.496006274812846, 51.83060448502899], + [5.490190299706195, 51.83050863626218], + [5.485848612352557, 51.829409036463936], + [5.481839802248524, 51.827066381013346], + [5.479672859135429, 51.82437160249982], + [5.478348818798375, 51.82005413704955], + [5.476931542766655, 51.81718303973819], + [5.47421458851921, 51.81464138011669], + [5.467486000424002, 51.811802634717566], + [5.464480380209881, 51.81118659289545], + [5.449554205568748, 51.80967755103838], + [5.439403921526384, 51.80970948566892], + [5.429255146567062, 51.81136743758571], + [5.422292288115642, 51.814558473051655], + [5.418271550490205, 51.818557921776716], + [5.414885448888102, 51.8212901864388], + [5.41622292781237, 51.82263981464071], + [5.414964973182289, 51.824937797451206], + [5.40833137135651, 51.829280618959515], + [5.40697064187125, 51.83280054406771], + [5.405843280539788, 51.832705633363894], + [5.40533860898151, 51.834653427414594], + [5.40063321565599, 51.837658770487856], + [5.40914897844902, 51.843923931567595], + [5.415234177553466, 51.851801019555566], + [5.4178249356624795, 51.858091891713705], + [5.422978267758916, 51.86642416344993], + [5.433340439305558, 51.8770526274418], + [5.434813589461813, 51.87815058044725], + [5.436046225460358, 51.87901911448937], + [5.444983559157148, 51.884203301749444], + [5.453434548815749, 51.88743749050884], + [5.4639167457524485, 51.88900894746643], + [5.476156540123197, 51.889624832794716], + [5.49738163295381, 51.889041942675696], + [5.5090311540825025, 51.889844870447675], + [5.523175474902494, 51.89239386147619], + [5.531362560547886, 51.89475336679323] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.56a94444-42f8-4a5f-a9de-c292c75ededa", + "properties": { + "statcode": "GM0677", + "jrstatcode": "2024GM0677", + "statnaam": "Hulst", + "rubriek": "gemeente", + "id": 181 + }, + "bbox": [ + 54342.623500000685, 362212.48000000045, 74709.12579999864, + 380679.70699999854 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [3.9932608630177415, 51.4040610072085], + [4.017869534506985, 51.401134537023076], + [4.019079957263007, 51.401407621401695], + [4.01942893813839, 51.40118660723751], + [4.01636847176939, 51.39903015475985], + [4.0174526892124245, 51.39824627769278], + [4.017204598685615, 51.397455322007474], + [4.01839990157523, 51.39698598297699], + [4.02180892974154, 51.398068394332185], + [4.02173784988042, 51.400480014280035], + [4.022188021714667, 51.400598174924774], + [4.022266838170395, 51.398258805575686], + [4.0249168399253366, 51.39426613804747], + [4.029111985925671, 51.39351191923377], + [4.03236916442231, 51.385312832432454], + [4.03274115647081, 51.3849025814466], + [4.0332102529742215, 51.38507164801307], + [4.033469800875959, 51.38483543674238], + [4.03294899881608, 51.38467335785073], + [4.034889552435344, 51.38253305524484], + [4.0346973554546866, 51.382411744894135], + [4.033303671578656, 51.3837421470869], + [4.03262255675478, 51.38336492471273], + [4.034179563652824, 51.382023541549806], + [4.033342904998338, 51.38102505468425], + [4.034257211826547, 51.38064176112775], + [4.035487620061146, 51.381943665183506], + [4.036900235846461, 51.380258546378215], + [4.036655805601432, 51.3794915740975], + [4.0394075719739835, 51.37737885625634], + [4.044079283797991, 51.3709205155343], + [4.049450369038717, 51.36696722819021], + [4.053161272663516, 51.3657918205065], + [4.085972847262705, 51.36417356393913], + [4.092360532713862, 51.36145138450654], + [4.094976360147545, 51.36174075921356], + [4.096248056476672, 51.36139026958268], + [4.098627145956856, 51.35907106127405], + [4.110962610362572, 51.35437713631668], + [4.110955012361343, 51.35428094726291], + [4.110594845212489, 51.35394672737844], + [4.110491257722217, 51.35203444112444], + [4.111265703897413, 51.35198435119996], + [4.1116007399261445, 51.35348356773466], + [4.111143963913432, 51.353870631224225], + [4.111318418086631, 51.35402168933407], + [4.111546487109166, 51.35407080707315], + [4.115434062209966, 51.352423682302664], + [4.119191646158536, 51.34917269876862], + [4.127449396985181, 51.343704166084805], + [4.134070625049799, 51.33658010304096], + [4.135226751681983, 51.33837621426306], + [4.134094132827887, 51.3437224705989], + [4.1285241104597, 51.34877463326758], + [4.112623383655462, 51.36062219400959], + [4.114944786676068, 51.3630320082887], + [4.118424485276133, 51.363777577046804], + [4.130925398424391, 51.36449686090997], + [4.139251236353634, 51.361217659964815], + [4.150323123312953, 51.34947996509331], + [4.157988726243724, 51.347284984339346], + [4.151598908810832, 51.366393642697155], + [4.155608383591193, 51.36878767821576], + [4.172839772271019, 51.37335425576194], + [4.173209920889429, 51.36065649312705], + [4.176876265226487, 51.36239090602863], + [4.1771257551809615, 51.367320023890876], + [4.185444604243893, 51.374861484669864], + [4.1914155748414545, 51.3764191816129], + [4.206455857852878, 51.374471600111406], + [4.212961718249248, 51.36839030655939], + [4.2124127243586855, 51.366065740939156], + [4.215480861654346, 51.36408828893], + [4.215430258261507, 51.36169236230881], + [4.216559144327876, 51.36028500172423], + [4.2201492562112, 51.361669503969765], + [4.2239031262395175, 51.358158428597804], + [4.223861575205852, 51.355181124752185], + [4.234695748797679, 51.348060158478916], + [4.168065259618256, 51.29445099810347], + [4.1661316846224405, 51.2928928881037], + [4.159774863722737, 51.29021660341515], + [4.142409129673537, 51.282372417090436], + [4.094620922589029, 51.260761541182895], + [4.09260244313385, 51.2601791932523], + [4.092493764525668, 51.25970994273366], + [4.091061936970518, 51.25989483062279], + [4.091139800643288, 51.25915836042941], + [4.090312053703086, 51.25921530074572], + [4.090116793037862, 51.25868389849885], + [4.078926942638559, 51.25373852640415], + [4.0761638940991896, 51.25213856801302], + [4.070639644368734, 51.250694544352754], + [4.07142053497536, 51.250240949019364], + [4.0662354428579786, 51.24830320163815], + [4.064100161951131, 51.24750178836858], + [4.061848169984398, 51.24457291226498], + [4.05791084248947, 51.24342115970989], + [4.042232256952527, 51.24150377396556], + [4.039880435829458, 51.24144846131413], + [4.036537324935712, 51.24567841200925], + [4.032395477636446, 51.24330433318737], + [4.02734210224838, 51.24249672451645], + [4.024490492773247, 51.241499845967965], + [4.02214244985569, 51.244333612793575], + [4.020934080691961, 51.24536555866089], + [4.015481410037105, 51.24449786987373], + [4.014866775123174, 51.24508727617251], + [4.005692969250326, 51.2418759062598], + [4.003360525489463, 51.24331203494955], + [3.9970304098667824, 51.241193688283964], + [3.9941128768403718, 51.2428255135972], + [3.9930676066661506, 51.2449848201712], + [3.994598921276101, 51.24643046119645], + [3.9931192128323403, 51.24800340639624], + [3.9875903230455743, 51.24980946271034], + [3.9822366945028516, 51.24910982305321], + [3.9821361885013844, 51.26148248569852], + [3.9819371672849777, 51.2626911940848], + [3.9788792568598303, 51.30081453477484], + [3.978167670378778, 51.30156554303752], + [3.975818428552725, 51.30068861812747], + [3.9721189526891463, 51.30031332750184], + [3.958078636914912, 51.30455523124309], + [3.9532755392086107, 51.3082909016994], + [3.9566467300672716, 51.32199660042883], + [3.9617294690685982, 51.3328957921824], + [3.9597176284098885, 51.3418971029396], + [3.9593924199218327, 51.35132298207593], + [3.955808432419203, 51.35410396472589], + [3.954626914978339, 51.35677629344987], + [3.9576390203211527, 51.36373620094963], + [3.9570467823610826, 51.364812657480876], + [3.941779947495071, 51.36540891529485], + [3.948361788675919, 51.3672444640134], + [3.9547062199295198, 51.367496069515504], + [3.9554101883942283, 51.36586434307027], + [3.958020227248917, 51.36521568874649], + [3.9590668905183404, 51.36766880110663], + [3.9596148000948714, 51.36899785695374], + [3.9591556801979495, 51.37128714221575], + [3.962697115625875, 51.37537309522766], + [3.963238988090424, 51.381415021111046], + [3.967604653667098, 51.38450426765489], + [3.968163551379348, 51.38562812390952], + [3.9656870255286143, 51.38905576302727], + [3.9652446428019146, 51.396923894098556], + [3.963950327319025, 51.3986339469776], + [3.9638907824070047, 51.3993736829861], + [3.9693375208325623, 51.40277715774939], + [3.970834569014676, 51.40570064390935], + [3.974308756842593, 51.406688738561456], + [3.991727209917489, 51.40574197023336], + [3.9931971406848206, 51.40538346424142], + [3.9932608630177415, 51.4040610072085] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e83a795f-e0d0-4ade-9b78-4c47b6861e11", + "properties": { + "statcode": "GM0678", + "jrstatcode": "2024GM0678", + "statnaam": "Kapelle", + "rubriek": "gemeente", + "id": 182 + }, + "bbox": [ + 52206.73900000006, 385379.9250999987, 59914.75899999961, + 394229.72129999846 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [3.971465551848836, 51.528466556340405], + [3.9897360945182827, 51.524185809714844], + [3.9934954765974755, 51.52266262059645], + [3.9937625411595015, 51.52208831821043], + [3.9956420392193577, 51.5217873284263], + [3.997041506762323, 51.5221201005423], + [3.9995546929581423, 51.52089376760976], + [4.003135753989652, 51.5217066799681], + [4.003341333629091, 51.51999211314572], + [4.00257521354536, 51.51908407771886], + [4.002564941390989, 51.51583623127711], + [4.003595237070489, 51.5145942025051], + [4.004421715345171, 51.514611928732876], + [4.00438145880404, 51.516353890683966], + [4.002751691768554, 51.51643475228585], + [4.0027028250295436, 51.518289061969035], + [4.004983330256911, 51.518494586363566], + [4.005294265958558, 51.515929410262714], + [4.005867198727245, 51.51558619104255], + [4.005911594346555, 51.51404811319442], + [4.0057208812146765, 51.51404225075809], + [4.005747085190516, 51.51366059990623], + [4.006324971320163, 51.51366073492364], + [4.006348092730869, 51.51404909018793], + [4.00613784542731, 51.514072207848976], + [4.006116574067042, 51.51560127815594], + [4.006693560264535, 51.516033734324395], + [4.006586882417739, 51.519003646900245], + [4.004405418481883, 51.52149107717276], + [4.005515750196014, 51.52148683692719], + [4.006347511783789, 51.52031598662877], + [4.007631579582592, 51.5202422822441], + [4.01295002006373, 51.518247223186755], + [4.01361356320264, 51.51973060826583], + [4.013667790222352, 51.51745099737488], + [4.017388120978762, 51.51245045528591], + [4.015018573968637, 51.51065973401294], + [4.0135928123890965, 51.50758817973602], + [4.010483454179536, 51.50689613130301], + [4.006377189104767, 51.50458111746738], + [4.0047311846496525, 51.50484329101992], + [4.004898171218537, 51.49636998545516], + [4.005797106560538, 51.47891716028265], + [4.006090432386897, 51.473279702000546], + [4.007322826500559, 51.458634201774444], + [4.005750999750353, 51.45872339169707], + [4.00349247014437, 51.457017161040554], + [4.002191265764684, 51.457454988825084], + [4.000971506466028, 51.456265809328805], + [4.000067600173082, 51.456750854336676], + [3.9988655098248036, 51.456273134473825], + [3.994499497300239, 51.45302244657899], + [3.993001013073629, 51.45134179804504], + [3.988438302608894, 51.45351689214137], + [3.986893345141667, 51.453619028689786], + [3.9814413278469054, 51.459646444030724], + [3.9786403932461685, 51.460193548278774], + [3.9780516798739898, 51.46117575710348], + [3.9754126245014567, 51.46236628323361], + [3.961692294861488, 51.4559785669374], + [3.950406395370958, 51.455771438804504], + [3.934219506432985, 51.448450607958605], + [3.933320037627477, 51.44855205255597], + [3.9281724639280977, 51.450553173080955], + [3.925606242792195, 51.45147830633821], + [3.925433111869634, 51.451527521960365], + [3.9259803793137067, 51.45458395812683], + [3.928510234135184, 51.458790651424636], + [3.916236356450644, 51.46342473753142], + [3.9091291149905443, 51.46780685700231], + [3.9077320286764876, 51.469509783256754], + [3.907741371476147, 51.46952370214363], + [3.9090452761591745, 51.471466149114], + [3.908081237900085, 51.471831329295284], + [3.9101263994755366, 51.473076578649284], + [3.9124116099415627, 51.47648019939433], + [3.9129146761864444, 51.47722939832908], + [3.9122681191887185, 51.4782386735456], + [3.9128776703357486, 51.47912157922126], + [3.9167644231034195, 51.48159659858752], + [3.9150185615651023, 51.48479959921348], + [3.9209184355455853, 51.486114435321916], + [3.9218318848242832, 51.48502464212456], + [3.9247437860515664, 51.48537235299938], + [3.9245845779505424, 51.486740850238334], + [3.9258760631169833, 51.489101462679436], + [3.925654256849742, 51.49101542835134], + [3.925821460609729, 51.49186849746507], + [3.940184544257152, 51.49314317731434], + [3.9436514296618705, 51.49724501735756], + [3.956198424723895, 51.503404408815506], + [3.961888768211909, 51.50520849182783], + [3.9652305178439193, 51.50646916110534], + [3.9636358278590076, 51.513933125000705], + [3.963506038691685, 51.520613221251864], + [3.9679371260238137, 51.52598102017896], + [3.9698900772776335, 51.52557843648919], + [3.971465551848836, 51.528466556340405] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f71557a9-e207-4e93-b362-dfc63e0b32a2", + "properties": { + "statcode": "GM0687", + "jrstatcode": "2024GM0687", + "statnaam": "Middelburg (Z.)", + "rubriek": "gemeente", + "id": 183 + }, + "bbox": [ + 29217.38599999994, 388005.76740000024, 41154.94000000134, + 395537.80750000104 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [3.716890456499065, 51.523827095140426], + [3.7152578411752515, 51.52376761381493], + [3.7133763456136486, 51.52491570757793], + [3.7176835295032298, 51.52871670113347], + [3.7184445009604374, 51.52840381844657], + [3.715789697519256, 51.525131346960116], + [3.7162552567809923, 51.52452012415754], + [3.717629633411027, 51.524401768851234], + [3.716890456499065, 51.523827095140426] + ] + ], + [ + [ + [3.6918327377129474, 51.52928065878791], + [3.6909958315754636, 51.527251948589075], + [3.689857374311499, 51.528133551766814], + [3.6901996277432745, 51.52995807237745], + [3.6910465458866346, 51.530576256919105], + [3.6918327377129474, 51.52928065878791] + ] + ], + [ + [ + [3.6131581310242837, 51.53514198222456], + [3.6148581518880025, 51.53052019947369], + [3.617214430059618, 51.52526505611226], + [3.626253419845, 51.52593521926651], + [3.6337099215356643, 51.526003804712055], + [3.6349046197919956, 51.52312633350495], + [3.6347742976056807, 51.520528798836764], + [3.6396407042986683, 51.520503081991066], + [3.641596778208095, 51.51969320026117], + [3.651471299379107, 51.521335775620855], + [3.6565060899798056, 51.52217292068924], + [3.6588403410123105, 51.51926115393781], + [3.6802023192946667, 51.53449610700453], + [3.6827795042014007, 51.52961322036153], + [3.6873989542901535, 51.52407245394968], + [3.6977774928350464, 51.51563712724776], + [3.7074612435772263, 51.51680287113046], + [3.711987687286312, 51.51786555912299], + [3.715011574484804, 51.519527670162084], + [3.7205862877325346, 51.52233222830221], + [3.7233943976557264, 51.52317394848372], + [3.7261185682812203, 51.52375506047079], + [3.729030187312016, 51.52340972174342], + [3.7281349582653873, 51.524135213805934], + [3.728153558604487, 51.52446566677998], + [3.746943476753197, 51.51685246933759], + [3.745245000639509, 51.51247194824406], + [3.711103158282571, 51.50672068628819], + [3.7108537045019125, 51.503470239383475], + [3.7056085258081293, 51.503641581279204], + [3.705536319678312, 51.502455908838854], + [3.699795080562272, 51.4939434713374], + [3.6990504652555085, 51.4923409722019], + [3.699477642362333, 51.490619615965734], + [3.700776018875736, 51.48313547288858], + [3.7033589635743986, 51.48242242980779], + [3.7036479310032706, 51.48227034837062], + [3.695697646650944, 51.481001228769564], + [3.6854170397975707, 51.47699864248743], + [3.6675012659036397, 51.469822507381416], + [3.6618274193004527, 51.468382766831404], + [3.6615451142278217, 51.46834328818293], + [3.6549991942725564, 51.468330947397654], + [3.648349703607895, 51.46984509868344], + [3.63662513974744, 51.476828415961805], + [3.628978597592615, 51.48075507987836], + [3.6216558631690545, 51.475484510859516], + [3.6177288293129695, 51.47775497428008], + [3.608750500657512, 51.47563588377338], + [3.6049653338019234, 51.47825951887611], + [3.6017605477753225, 51.47932624141185], + [3.5996588023772222, 51.47529455742576], + [3.598426701603656, 51.47554861368489], + [3.5982234778952007, 51.47572903932039], + [3.5977402377494245, 51.47629976739765], + [3.596866711690069, 51.47643944325191], + [3.5970083622088187, 51.477095784702804], + [3.5925964517908606, 51.47758806596469], + [3.59030842216374, 51.47865864378373], + [3.5894213879452845, 51.4798035235205], + [3.5869787780219125, 51.4792533669001], + [3.584762172342266, 51.48289151650311], + [3.583315730571505, 51.48270356495819], + [3.581236621837554, 51.48638461521706], + [3.579630448992732, 51.48921586071392], + [3.58143738667713, 51.48953125499476], + [3.581561341471108, 51.490319665759294], + [3.5850302657956994, 51.49090838911981], + [3.5848902440423287, 51.49436803895066], + [3.582011414273106, 51.499819714728574], + [3.579861934607695, 51.50097692581441], + [3.578171471142905, 51.50236922173654], + [3.5780637991462902, 51.50474192154936], + [3.576327720449851, 51.50527340277385], + [3.5753356058924055, 51.5065798565506], + [3.577880124341459, 51.50721764376446], + [3.582600658583672, 51.50822528067477], + [3.5833123791094654, 51.50858688927441], + [3.583423187856175, 51.5086610126578], + [3.5788377238431717, 51.51242509317547], + [3.58110391340425, 51.513486678616665], + [3.582848392278338, 51.5134735759502], + [3.5824323627717543, 51.51668758289077], + [3.5841727887875616, 51.51686511258354], + [3.583684299901704, 51.51962664341117], + [3.596634828942459, 51.52245161389253], + [3.594755277026821, 51.52646552522992], + [3.59347030776448, 51.52878113338836], + [3.590638308628974, 51.530022072592544], + [3.5897970378574255, 51.531813554580125], + [3.592958197965623, 51.53216705628668], + [3.602712966550047, 51.53491329833719], + [3.6035445097351277, 51.533957364419024], + [3.6109204381030406, 51.53488456408669], + [3.6109751002835946, 51.53530118162856], + [3.6131581310242837, 51.53514198222456] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.34842afc-3d87-4af0-baaa-29dabce79374", + "properties": { + "statcode": "GM0703", + "jrstatcode": "2024GM0703", + "statnaam": "Reimerswaal", + "rubriek": "gemeente", + "id": 184 + }, + "bbox": [ + 58092.04830000177, 376805.5934000015, 77733.0700000003, + 393201.9754000008 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.038293527660347, 51.50550430156267], + [4.042672953187906, 51.502643240929686], + [4.047290691042209, 51.502187156200655], + [4.051577893698156, 51.50333555094627], + [4.053679055545414, 51.5027882951749], + [4.056799683517957, 51.500272648820506], + [4.057785860740479, 51.49881711692425], + [4.057411924560725, 51.498483496136096], + [4.055343111689119, 51.49953976465815], + [4.055411294262594, 51.50082441903015], + [4.053529688227995, 51.50234457588556], + [4.052723010318445, 51.50195948333823], + [4.053971947260124, 51.49855373488616], + [4.055303085462813, 51.49847253736895], + [4.056130897559675, 51.49816399431624], + [4.057870253779153, 51.49717106717494], + [4.057313043910904, 51.49679572462413], + [4.056936875442059, 51.49701400138989], + [4.057229395815377, 51.49725877570426], + [4.055939840035645, 51.49799932056598], + [4.055050304915638, 51.49824231463227], + [4.054168128481544, 51.49825652856481], + [4.054216323278141, 51.49783972395336], + [4.053883462161775, 51.49780752326858], + [4.054023598305825, 51.496918659711156], + [4.055289503264624, 51.496172476855754], + [4.056478354035999, 51.49679638195474], + [4.056641449695652, 51.49671006361359], + [4.055015727361623, 51.49578025052892], + [4.053611994372296, 51.49686771726281], + [4.053459554633876, 51.49679973200583], + [4.053305035683362, 51.49689638587681], + [4.052072478312608, 51.496068946046194], + [4.052419334674102, 51.495851592101246], + [4.052879283719655, 51.49611948556997], + [4.053739082246681, 51.49544858705609], + [4.054484246998489, 51.49582279876272], + [4.054543188847537, 51.49569039100751], + [4.053756089167351, 51.495297114580396], + [4.052969175115689, 51.49594027148951], + [4.0528116219423, 51.49584549340069], + [4.053739983778037, 51.49499906565215], + [4.054716272542787, 51.492983056628205], + [4.0546864941153595, 51.492470906354804], + [4.0545833525835056, 51.49141160943728], + [4.054212286023434, 51.49081051961111], + [4.0543220608849335, 51.49069979382537], + [4.055388208602497, 51.49073203824222], + [4.057199513013362, 51.489412060174466], + [4.058218179035318, 51.48835295479198], + [4.058439107861694, 51.486796187351786], + [4.058033577190144, 51.48484734673697], + [4.057845181785266, 51.484285350289476], + [4.057499479053098, 51.48371894667263], + [4.057689864260878, 51.48365689282035], + [4.057447499908661, 51.483409567992645], + [4.057277949761685, 51.48346830788537], + [4.056515152055512, 51.48277349557851], + [4.055915008255033, 51.4826426851531], + [4.05638389665345, 51.48228563669403], + [4.056231345815487, 51.48210629994128], + [4.054859599972253, 51.48153992363398], + [4.056967946242185, 51.47961866521185], + [4.058933945881358, 51.47528547019008], + [4.060380511097502, 51.47464837546899], + [4.0624308349688505, 51.473683264301584], + [4.071318469496258, 51.465742298033355], + [4.076220056835845, 51.461262930594714], + [4.080259739796287, 51.458600634622535], + [4.084153090293819, 51.45831512952639], + [4.093243472385328, 51.44632033721987], + [4.101309579771065, 51.44504469830696], + [4.123950142325722, 51.43594493090369], + [4.127378535477659, 51.436578162781764], + [4.129471784906877, 51.43539875051559], + [4.1331197243815385, 51.43140102151789], + [4.139004526465718, 51.431002372750534], + [4.140467985820055, 51.431847537672894], + [4.144172558542959, 51.43190184042703], + [4.14674921541427, 51.43169447327523], + [4.153423400030554, 51.43299432811551], + [4.1586861853426305, 51.43575588044417], + [4.163972708895017, 51.437134388873325], + [4.181451646426873, 51.44399022501472], + [4.192580317553475, 51.44180059516665], + [4.200388968148925, 51.44169471152696], + [4.204516924890097, 51.43848236276033], + [4.211593369730663, 51.4379238167766], + [4.214803217079206, 51.43688708258972], + [4.221645953091557, 51.437217643135256], + [4.223053545927597, 51.438670141203886], + [4.219546860362005, 51.456696280213194], + [4.222456854497705, 51.463629272366695], + [4.217613241862369, 51.487676207739796], + [4.230327770234477, 51.48890425477217], + [4.265431751910424, 51.43968067783876], + [4.275851638195848, 51.42504940900949], + [4.266446871084605, 51.41997948172469], + [4.263732257132608, 51.416449107420554], + [4.269061035404936, 51.40034738964129], + [4.268633596190043, 51.38812644950628], + [4.26634902206735, 51.38654063201948], + [4.2683820498273715, 51.38354588817438], + [4.273697687711427, 51.38314988645752], + [4.274563533567924, 51.38165658381722], + [4.277424577929724, 51.3760352401092], + [4.243196203188866, 51.37481060132922], + [4.244018831170941, 51.37873321462372], + [4.24334778058702, 51.3841118707934], + [4.231624569127984, 51.39490087777234], + [4.216978373290295, 51.39942807537618], + [4.211594823305493, 51.400343893701944], + [4.206746720539293, 51.39966168020032], + [4.203565618387798, 51.40432154139465], + [4.200635192598085, 51.406278583999445], + [4.198694899081083, 51.406724021998066], + [4.197479078325954, 51.4068552560834], + [4.194520007928867, 51.40565175704547], + [4.189514315294246, 51.40561956496056], + [4.188742899828428, 51.40430590942353], + [4.184922333423201, 51.404024317976706], + [4.182404821909183, 51.40285099644083], + [4.173302599917384, 51.4018284234907], + [4.1735012350736405, 51.40151523935919], + [4.1567362235074325, 51.39482696755468], + [4.153864125731725, 51.39457343174611], + [4.1528039588282, 51.395149851642856], + [4.138814476076386, 51.396541088261856], + [4.133394721361947, 51.39908276027579], + [4.121209963431564, 51.40078909930415], + [4.120453970100572, 51.40025906694213], + [4.117571611817497, 51.40148134570279], + [4.117178436402246, 51.401132338939895], + [4.114466490631205, 51.40209490831619], + [4.1069157621955155, 51.40251760287424], + [4.095920265716628, 51.40540517014809], + [4.080637936224891, 51.408173176952644], + [4.079292519180071, 51.407478131485995], + [4.07292349398906, 51.411820828053635], + [4.068248957274822, 51.41271034273747], + [4.068031910141635, 51.4122734430416], + [4.066130161445468, 51.41352561426407], + [4.061857331894528, 51.41370938693825], + [4.051348781450593, 51.41999718439848], + [4.051861698485039, 51.42213664384235], + [4.046661794984193, 51.426189683849195], + [4.048678398226499, 51.42837049283427], + [4.0507773675873056, 51.42956905508215], + [4.050344625152709, 51.42984543488212], + [4.038630685872214, 51.432104768427955], + [4.032904071044085, 51.43249060948835], + [4.03397769255153, 51.43378156004312], + [4.033904067304724, 51.435920238561835], + [4.0337957551385095, 51.43645388981918], + [4.032286485593268, 51.43692429705091], + [4.03069226854583, 51.43690972771613], + [4.030220195749248, 51.435852586460115], + [4.0306181984599645, 51.433262404738514], + [4.029839281708428, 51.43335086431978], + [4.029543358070372, 51.43568295837138], + [4.016691194308952, 51.43976512704766], + [4.015253872132926, 51.43982474523899], + [4.0131427028654585, 51.439030509627315], + [4.0125845709357915, 51.43940530669439], + [4.0143605081118645, 51.440349051560105], + [4.016459864962774, 51.443880156377325], + [4.011941463009343, 51.45453701478768], + [4.009946492995411, 51.45440867915068], + [4.009506647685957, 51.45289497545317], + [4.010804533400806, 51.449088594958944], + [4.011044853186752, 51.44382385308344], + [4.009750788602311, 51.44004426428191], + [4.006339482771489, 51.44047720160311], + [4.006936273986378, 51.441916688549654], + [4.005919162743587, 51.444084005620695], + [4.003320114054992, 51.444014373293214], + [4.003317038753671, 51.4451474845629], + [3.9993517824626506, 51.446767864113475], + [3.993001013073629, 51.45134179804504], + [3.994499497300239, 51.45302244657899], + [3.9988655098248036, 51.456273134473825], + [4.000067600173082, 51.456750854336676], + [4.000971506466028, 51.456265809328805], + [4.002191265764684, 51.457454988825084], + [4.00349247014437, 51.457017161040554], + [4.005750999750353, 51.45872339169707], + [4.007322826500559, 51.458634201774444], + [4.006090432386897, 51.473279702000546], + [4.005797106560538, 51.47891716028265], + [4.004898171218537, 51.49636998545516], + [4.0047311846496525, 51.50484329101992], + [4.006377189104767, 51.50458111746738], + [4.010483454179536, 51.50689613130301], + [4.0135928123890965, 51.50758817973602], + [4.015018573968637, 51.51065973401294], + [4.017388120978762, 51.51245045528591], + [4.013667790222352, 51.51745099737488], + [4.01361356320264, 51.51973060826583], + [4.017638687429847, 51.51881653378084], + [4.021240769235132, 51.51243990660257], + [4.02473457791772, 51.511682395613], + [4.025028393947409, 51.511029357955884], + [4.038293527660347, 51.50550430156267] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ce627481-e5d5-498b-996d-52210aa398dd", + "properties": { + "statcode": "GM0715", + "jrstatcode": "2024GM0715", + "statnaam": "Terneuzen", + "rubriek": "gemeente", + "id": 185 + }, + "bbox": [ + 33561.31109999865, 357829.1499999985, 58532.93400000036, + 376491.50939999893 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [3.716146223936068, 51.35350141554923], + [3.722536282800771, 51.349617976541204], + [3.7315256810791886, 51.34870847471374], + [3.742185822819293, 51.3488127253668], + [3.758132469571585, 51.347868621869665], + [3.7585830367602027, 51.34619624287476], + [3.755799953119348, 51.34392655287053], + [3.7549818715414633, 51.341063757654936], + [3.7586326105169374, 51.3396529203179], + [3.768171141671257, 51.336329166398336], + [3.7709664312104945, 51.3362635842982], + [3.7696195418021263, 51.34856942889539], + [3.771756491142881, 51.350265498765395], + [3.788994759810484, 51.34955734574328], + [3.7923245484851957, 51.34692266628867], + [3.798285226734232, 51.345236474955435], + [3.800137136611826, 51.34432241502352], + [3.80988403417853, 51.343500087023486], + [3.8070810270409896, 51.340610853234516], + [3.807152249702774, 51.338400181050645], + [3.8147442081832645, 51.32996232880118], + [3.8153702511943735, 51.33015310257556], + [3.8157306303996283, 51.32965901550721], + [3.8162287391695933, 51.329816886660474], + [3.8158548467078655, 51.33030076886414], + [3.8164554849694756, 51.330483793228915], + [3.813361141855544, 51.33686847907302], + [3.8145074514789976, 51.33724125141499], + [3.815234148711392, 51.3358830231862], + [3.8162796751089716, 51.33593110469797], + [3.815785553620384, 51.33700335010206], + [3.8160180072798635, 51.33703502991028], + [3.816785428269256, 51.335749909485045], + [3.817024612501451, 51.33578010301527], + [3.816742119550099, 51.33713924119833], + [3.817253531519501, 51.33723157113812], + [3.8166344078983965, 51.33936241198787], + [3.8139803457337016, 51.34282087340818], + [3.8177653163425367, 51.342874364023935], + [3.817222336607164, 51.340656176370864], + [3.8191610916860683, 51.33627220608002], + [3.819948338964518, 51.33634971151663], + [3.8206517784218503, 51.33899120247977], + [3.8217312355787607, 51.339767083750985], + [3.821740371177307, 51.340293553752865], + [3.820239481038687, 51.34109136146979], + [3.819841805156101, 51.34257000281572], + [3.8202384225306916, 51.34269831624], + [3.8215285384875473, 51.34112159504083], + [3.8238114191699406, 51.34099547701967], + [3.8273384265074917, 51.343220049963215], + [3.8276177938925144, 51.34288304837115], + [3.8248646304069918, 51.341043416210326], + [3.8292815562267135, 51.33969117576654], + [3.8285631798931465, 51.342403211144365], + [3.8291523272862884, 51.342536399463214], + [3.8301606693461876, 51.33942200555943], + [3.8346581402096303, 51.33885555793858], + [3.8357047889209728, 51.33734213981923], + [3.84204613456506, 51.33581837396871], + [3.8482079112455145, 51.33562848772418], + [3.8560557569410854, 51.33587559022275], + [3.8572727537800726, 51.33539231751895], + [3.8585638362874226, 51.3359924928329], + [3.866852993386077, 51.33636910922239], + [3.8701836520166637, 51.340382087609996], + [3.8739099260495333, 51.34185618185548], + [3.874850094791818, 51.345695391842966], + [3.875596789246856, 51.34630431925193], + [3.8837010079584497, 51.34742898339107], + [3.884843286323204, 51.347632414402455], + [3.8848451298119517, 51.349360765952596], + [3.8861583378049374, 51.34892540217224], + [3.885550492951834, 51.34775835663827], + [3.891186988601968, 51.348761945576285], + [3.8971103437965153, 51.35315851139688], + [3.905045440205753, 51.357218735854914], + [3.9174352610350596, 51.36125113133995], + [3.9366379806562373, 51.36358372749002], + [3.941779947495071, 51.36540891529485], + [3.9570467823610826, 51.364812657480876], + [3.9576390203211527, 51.36373620094963], + [3.954626914978339, 51.35677629344987], + [3.955808432419203, 51.35410396472589], + [3.9593924199218327, 51.35132298207593], + [3.9597176284098885, 51.3418971029396], + [3.9617294690685982, 51.3328957921824], + [3.9566467300672716, 51.32199660042883], + [3.9532755392086107, 51.3082909016994], + [3.958078636914912, 51.30455523124309], + [3.9721189526891463, 51.30031332750184], + [3.975818428552725, 51.30068861812747], + [3.978167670378778, 51.30156554303752], + [3.9788792568598303, 51.30081453477484], + [3.9819371672849777, 51.2626911940848], + [3.9821361885013844, 51.26148248569852], + [3.9822366945028516, 51.24910982305321], + [3.9875903230455743, 51.24980946271034], + [3.9931192128323403, 51.24800340639624], + [3.994598921276101, 51.24643046119645], + [3.9930676066661506, 51.2449848201712], + [3.9941128768403718, 51.2428255135972], + [3.9970304098667824, 51.241193688283964], + [4.003360525489463, 51.24331203494955], + [4.005692969250326, 51.2418759062598], + [4.000080450150104, 51.23912344053297], + [3.99971837748672, 51.2376651734712], + [3.9924883546124965, 51.23636223628349], + [3.9881147190262154, 51.233219336285664], + [3.9862049667394945, 51.234159522992705], + [3.9828528805039873, 51.23006234316384], + [3.978918694509599, 51.22536622478076], + [3.9777881022939865, 51.22504390264303], + [3.9765589837678164, 51.22538586003916], + [3.9721441250728318, 51.22469208255317], + [3.9642859854935644, 51.2239498701463], + [3.9585623698004375, 51.215807282018424], + [3.953170455949845, 51.21647250349702], + [3.9466394602640684, 51.21550796037628], + [3.9426184176962975, 51.214710190960126], + [3.9431381238093284, 51.21361564500981], + [3.935980046949743, 51.21189276188652], + [3.9314356790303155, 51.21728859595905], + [3.929418487718968, 51.22026036770101], + [3.925449813319951, 51.21710629187713], + [3.9219150879491425, 51.21705081104227], + [3.9196321761711084, 51.217070760502715], + [3.9186751519440506, 51.214972632644155], + [3.916004714102156, 51.21463392887095], + [3.9186286030691315, 51.207763488485206], + [3.915337450899535, 51.20816983689857], + [3.9115468817574066, 51.205444639448395], + [3.9005529595901374, 51.20238458707671], + [3.8969779403565212, 51.20264626814909], + [3.8946642016980846, 51.20349697839478], + [3.8931359038986737, 51.20308042514938], + [3.8932332687713425, 51.20284740362653], + [3.888350512404421, 51.20104705275655], + [3.8878676029060837, 51.20111389409994], + [3.8873586082133107, 51.200925548036494], + [3.88634956239529, 51.20016212162249], + [3.8849712730661867, 51.201943777534915], + [3.8848499131844805, 51.20259649971361], + [3.8845102651856527, 51.20335428815619], + [3.879464566150576, 51.20626312893532], + [3.877625583726642, 51.208013017227046], + [3.88307521760341, 51.210275979544114], + [3.8902439494580077, 51.21399591460202], + [3.8933464648407665, 51.218662466839014], + [3.8904203838103473, 51.22136217438137], + [3.8888767766777153, 51.22275492260166], + [3.888653748011189, 51.22295614625386], + [3.888602108020607, 51.222998633015386], + [3.8701706832014575, 51.216266361366266], + [3.864712567294891, 51.213462549980015], + [3.86212329055712, 51.212398505287524], + [3.859573770218439, 51.21083068724982], + [3.8561125140544874, 51.21106123858422], + [3.852411358092718, 51.213215735004944], + [3.842350570990629, 51.21216170524401], + [3.8356665887680976, 51.213157983183805], + [3.834261945708913, 51.212030560903266], + [3.826925920321086, 51.20935907226955], + [3.821154322714593, 51.209205944152764], + [3.8105738877515902, 51.2127673399918], + [3.8062837539681227, 51.21262340049129], + [3.806027099486739, 51.21337931354311], + [3.804357666393658, 51.21323028271111], + [3.8049897383032705, 51.21012062957049], + [3.7992914814055356, 51.21086436944411], + [3.797232468113724, 51.21289784807175], + [3.791145327659945, 51.2140123760454], + [3.7895398169562746, 51.21608722582856], + [3.7888835261353435, 51.223753855591575], + [3.788455287109494, 51.226372811593045], + [3.78910275226722, 51.23949866352338], + [3.7894515175165107, 51.24578627875809], + [3.7954733120159188, 51.25605333385105], + [3.7854337637574043, 51.258467317779555], + [3.778185985448434, 51.26239003377672], + [3.7737836248913768, 51.263975223716514], + [3.7730723216236175, 51.26190928337319], + [3.769263614256833, 51.25986188432571], + [3.762513734451923, 51.26178082700552], + [3.755714361013628, 51.269344146403185], + [3.752412550913711, 51.270266685222275], + [3.7517257307247505, 51.26916048561407], + [3.7231289755611248, 51.27334277194338], + [3.7192421250165597, 51.27254334542553], + [3.718913473277976, 51.271535425649645], + [3.714090450786481, 51.272176770692525], + [3.7127010584471334, 51.27210308383545], + [3.7097250930229664, 51.272587232998404], + [3.6939337048106835, 51.276039043628806], + [3.6988826600827776, 51.284445958715786], + [3.7014250467177647, 51.28674844008452], + [3.7035588656917744, 51.28698772703754], + [3.7066106347502537, 51.2888260212192], + [3.7040296036307474, 51.30247914940738], + [3.707143303244998, 51.30663640182486], + [3.7035824298773625, 51.30994318938886], + [3.7124087083946637, 51.315790672717625], + [3.70384545312321, 51.318370657330725], + [3.6894074229711125, 51.32030134913807], + [3.6862836854727536, 51.321598782942246], + [3.666204183582538, 51.31981171067659], + [3.6638277315961583, 51.32523888432243], + [3.6599912724644215, 51.32488686630923], + [3.6579721570805557, 51.33335049976402], + [3.653309821240926, 51.33175006340252], + [3.644231890105506, 51.341741446642395], + [3.6495980304350253, 51.342734862347626], + [3.6472421643989956, 51.35004874745985], + [3.6495470339782585, 51.34899721062187], + [3.6541965264564436, 51.348390222070805], + [3.6590339688516282, 51.34994337696105], + [3.6593981909046716, 51.351135259480834], + [3.6823091067564597, 51.353433427917686], + [3.6823863436162956, 51.355273168936485], + [3.6878451208627676, 51.355576875218475], + [3.689814669038646, 51.353350680457936], + [3.6938143787503903, 51.352473781618095], + [3.6930506047972513, 51.365287592614], + [3.6936116154117884, 51.36398604380259], + [3.6966865243621276, 51.36225370849824], + [3.70518744614443, 51.35880127607518], + [3.7143047485293663, 51.3536470775578], + [3.716146223936068, 51.35350141554923] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e2d16e7b-c7ac-464f-8b1e-f436a6b251b7", + "properties": { + "statcode": "GM0716", + "jrstatcode": "2024GM0716", + "statnaam": "Tholen", + "rubriek": "gemeente", + "id": 186 + }, + "bbox": [ + 57735.06030000001, 389389.1420000009, 75394.0364000015, + 407959.10990000144 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.168552930074764, 51.6436409820487], + [4.192900571468017, 51.63468879764655], + [4.193175936020012, 51.63876299916941], + [4.1941367398907765, 51.63903026445618], + [4.1956053754734715, 51.634672760574276], + [4.2012236501617, 51.6347804299632], + [4.195763387147404, 51.637986076575565], + [4.200539956989325, 51.63922691583398], + [4.211516686302258, 51.638543850104064], + [4.214233099413289, 51.63788802246134], + [4.217519797651623, 51.63531515777931], + [4.229559602077853, 51.633931173574155], + [4.232688996434154, 51.63506221427587], + [4.2373236719131215, 51.63401442676383], + [4.227822353828634, 51.631022596578276], + [4.214466608664733, 51.62766402692121], + [4.205020844668492, 51.62356141704838], + [4.1976594939855705, 51.6180479550924], + [4.19168488753337, 51.60933696942693], + [4.190573560494295, 51.606055835424044], + [4.190162322406805, 51.600953896546855], + [4.190817042839338, 51.59738453780104], + [4.192231517562285, 51.5939015806513], + [4.195717966407269, 51.58897518335542], + [4.198891447289048, 51.58597535088782], + [4.228121118474745, 51.56371630668508], + [4.232443710961235, 51.55905485980531], + [4.235585635843284, 51.552723934688025], + [4.236118851113026, 51.550365798126], + [4.235657042546331, 51.54324152183046], + [4.23304311782112, 51.5374920251512], + [4.219930778636128, 51.51380292894327], + [4.218799785435205, 51.50896139555327], + [4.218927212580822, 51.50485845504699], + [4.224906110151614, 51.49649297295094], + [4.230327770234477, 51.48890425477217], + [4.217613241862369, 51.487676207739796], + [4.216476355173725, 51.49025470858666], + [4.213754461283499, 51.492006090104994], + [4.1766868328097635, 51.5018757700231], + [4.172815953904643, 51.50466432262767], + [4.172221133854546, 51.50841589302451], + [4.165739860982887, 51.51046348753185], + [4.162485349665068, 51.512108284704645], + [4.160613500594245, 51.514643333705834], + [4.161030286932724, 51.51486608048659], + [4.16296803862598, 51.51236075996723], + [4.169515733747678, 51.510230819572904], + [4.173048388516136, 51.51002262550053], + [4.173456407311446, 51.510584354575776], + [4.170714412811211, 51.5114600946407], + [4.170313973554106, 51.512156586868194], + [4.165830104631098, 51.513059283886], + [4.168085470418418, 51.5136929443432], + [4.174023001387873, 51.51206046944463], + [4.176118523864243, 51.51510129336068], + [4.168520731482406, 51.5190693520977], + [4.163935701998225, 51.52282464600247], + [4.152828818910428, 51.5231581049583], + [4.150204387552555, 51.52406347683512], + [4.146841807955535, 51.52202136731889], + [4.143988096902037, 51.5213846274918], + [4.141327418514721, 51.52142541282512], + [4.134746111058476, 51.52613308847452], + [4.126162193168739, 51.52394049915785], + [4.1179973760623225, 51.52376855889718], + [4.1082852930934965, 51.52463433914746], + [4.102454542373408, 51.5244338693145], + [4.100990692569961, 51.5256467853104], + [4.098791189528962, 51.525084541615584], + [4.093351956678197, 51.52490610675853], + [4.092342539343, 51.52507177419962], + [4.091931225137098, 51.52666397435504], + [4.079701453143028, 51.52736751984325], + [4.079505593256557, 51.525413445046105], + [4.076982378886552, 51.525059077493786], + [4.071289054089702, 51.52964756907939], + [4.073068558396698, 51.53135708639169], + [4.070095590205912, 51.532066015497364], + [4.068018159456372, 51.5334021220605], + [4.066002643504597, 51.533239667480544], + [4.064355145913623, 51.53433746279446], + [4.0597868426543045, 51.54105634105589], + [4.061172421373723, 51.54321970377681], + [4.060746585288053, 51.544042182292586], + [4.056050020175388, 51.54650853286615], + [4.05229716328146, 51.54723171896285], + [4.0490730858756665, 51.552589360722266], + [4.033219419706341, 51.55430830269336], + [4.031875900402513, 51.555401643189214], + [4.02753148504683, 51.55642337064831], + [4.030447875164599, 51.561290810617486], + [4.0301198919753345, 51.56284350197411], + [4.026716018814314, 51.56522652839085], + [4.023138509822975, 51.56737359767211], + [4.013003330189438, 51.57037476300741], + [4.005447697320014, 51.57569242380075], + [3.989829578887852, 51.57636843667418], + [3.9838720292478467, 51.580876958573036], + [3.9847289308915417, 51.58706139146041], + [3.9878300137263176, 51.5910186568033], + [3.9900074822205047, 51.592635295716626], + [3.994734093272991, 51.594111693884635], + [3.9952871556860865, 51.593867122362425], + [3.9938980350152447, 51.5931862326293], + [4.004569900203735, 51.593684153874676], + [4.004594793101484, 51.59386140132684], + [4.001909177682599, 51.5945903913234], + [4.0087000433932, 51.596143526027916], + [4.0120070958098735, 51.59503451100001], + [4.020756826647066, 51.597957519871976], + [4.023782706481128, 51.59688178092881], + [4.037487496046437, 51.60297663821587], + [4.0386852079315565, 51.604373653408715], + [4.039656669702077, 51.603941026522996], + [4.043212067809354, 51.60414317834453], + [4.0439753639108496, 51.60450923014847], + [4.045825357858224, 51.60392556329207], + [4.053592013983115, 51.60899126054544], + [4.061976732934124, 51.60977182861353], + [4.06374526794823, 51.611622800124685], + [4.068903559635597, 51.61209607356825], + [4.074556439934598, 51.613469974408865], + [4.083463339422434, 51.61176424747493], + [4.085094914056335, 51.61252593525745], + [4.101488741815285, 51.61021009275674], + [4.103833843284555, 51.60922308103238], + [4.104370393603554, 51.60662699356971], + [4.1054663053969715, 51.60660927312967], + [4.109166838254897, 51.60451370438156], + [4.108924902665006, 51.60434801109902], + [4.10479533499173, 51.606284478136715], + [4.104413597799521, 51.60596506330574], + [4.107129266589059, 51.60318904179645], + [4.108257930843812, 51.60258801662198], + [4.109971027695061, 51.604243319005136], + [4.111292747725802, 51.60336609239098], + [4.116589388281178, 51.60221087098269], + [4.127872811678879, 51.60190479025446], + [4.1401756576232875, 51.60314738064234], + [4.14488912305499, 51.603908019802105], + [4.1493518992478835, 51.603742987081795], + [4.151188569259579, 51.603062958209925], + [4.156189363680152, 51.60368238781195], + [4.161710782509377, 51.605262653933565], + [4.1709962032441945, 51.60595186395311], + [4.1734835482771135, 51.60547032095779], + [4.174496050633743, 51.60761720902035], + [4.174067178704602, 51.60835927751923], + [4.168786123416247, 51.60897194078495], + [4.173729522219951, 51.611371197911275], + [4.174807567757328, 51.61435118307254], + [4.17633148671722, 51.61405912176835], + [4.177481322474458, 51.61643890771762], + [4.174223003331934, 51.6174835300778], + [4.169519185288661, 51.61664463012328], + [4.170816745408416, 51.618701427136735], + [4.168548303751185, 51.61526995002668], + [4.164341382407034, 51.61359524218525], + [4.16164291909694, 51.615189721815774], + [4.160463975329948, 51.61485738856913], + [4.158258793649319, 51.61297985180534], + [4.154070935919967, 51.61252251660326], + [4.142194980627883, 51.613474819387115], + [4.135876392934317, 51.61293756547389], + [4.1262633365757955, 51.613115011852], + [4.117601651764796, 51.624635786254586], + [4.114112501143701, 51.62430538185599], + [4.108672996731768, 51.62968163537567], + [4.104691644301651, 51.6301453371679], + [4.103700039872727, 51.629655525689394], + [4.100481320473383, 51.63098186291484], + [4.09939800246453, 51.63281984710766], + [4.098499931032075, 51.638807157594215], + [4.100301449496226, 51.64114833273376], + [4.097757718874077, 51.64253836510351], + [4.099923003769474, 51.642141423886855], + [4.100580090233696, 51.642825494299274], + [4.09852990319386, 51.64337637159464], + [4.099561177287996, 51.64338455464424], + [4.105282985621394, 51.64137141636042], + [4.103937980787649, 51.643629490790225], + [4.107212657681368, 51.646331057087465], + [4.116723628634757, 51.65225867715754], + [4.1202551528822, 51.653595532896446], + [4.124167779585507, 51.65358050684322], + [4.137163038675793, 51.65245789310296], + [4.148728426956554, 51.650078840020385], + [4.168552930074764, 51.6436409820487] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ae70298a-430c-4e96-883f-854780d782f0", + "properties": { + "statcode": "GM0717", + "jrstatcode": "2024GM0717", + "statnaam": "Veere", + "rubriek": "gemeente", + "id": 187 + }, + "bbox": [ + 19420.94530000165, 387633.52529999986, 40386.47190000117, + 408155.7888999991 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [3.6953273564697424, 51.542079662789256], + [3.689882718151819, 51.536929825188395], + [3.687892509256865, 51.53711606381385], + [3.686733494753581, 51.54298020045925], + [3.682532585796965, 51.54832810580059], + [3.6817402178934024, 51.55166674737353], + [3.6836849034942563, 51.55285395823331], + [3.68853533876599, 51.55151117450982], + [3.6943558996140773, 51.54683969838221], + [3.6953273564697424, 51.542079662789256] + ] + ], + [ + [ + [3.6754973572055727, 51.55606226634045], + [3.6751699670636553, 51.554228858562325], + [3.673855830758126, 51.55495640046601], + [3.6724970162405257, 51.55705665367402], + [3.6702827112200573, 51.558447760219174], + [3.672612159126187, 51.5589954281625], + [3.673910209938948, 51.558233005571175], + [3.6754973572055727, 51.55606226634045] + ] + ], + [ + [ + [3.6723004338734158, 51.56136314846136], + [3.6723985073664287, 51.56029112286095], + [3.6694552612005316, 51.5607001821238], + [3.667483383667771, 51.56026535378421], + [3.665810352929786, 51.56034495540839], + [3.667043572206979, 51.56160017222238], + [3.6712913663493194, 51.56188860804849], + [3.6723004338734158, 51.56136314846136] + ] + ], + [ + [ + [3.629508675842192, 51.59021034821443], + [3.629858192176765, 51.58804178828542], + [3.6336233932019217, 51.589397434756414], + [3.6349134849381066, 51.58689246651456], + [3.6298798586870182, 51.58534196980668], + [3.627877685326882, 51.58406022931398], + [3.6282611914883196, 51.57982392514071], + [3.6280215815819763, 51.57755193262103], + [3.628050956903256, 51.574584792493795], + [3.630284827153733, 51.57156651442557], + [3.6395077170217807, 51.565594683371806], + [3.6389902843339192, 51.56448129711466], + [3.6408702097671313, 51.563104698121556], + [3.643678560402596, 51.56145075389515], + [3.6503081638619728, 51.55897775301138], + [3.653025810607904, 51.5586998811242], + [3.6531465019757983, 51.55844400754451], + [3.650014136069175, 51.55885377009336], + [3.6466445463154016, 51.559595233607254], + [3.6447646565248606, 51.56040339516531], + [3.64395667366711, 51.55975880003017], + [3.6483883341696655, 51.5577642445581], + [3.6502877569153904, 51.55760456519481], + [3.6505213121416054, 51.55806548783117], + [3.6532570122816113, 51.55769526703484], + [3.653181394612491, 51.55732000305247], + [3.653647399384689, 51.557311739693404], + [3.653492876861044, 51.55768274402577], + [3.6537019869144527, 51.55771397260714], + [3.653890057955615, 51.557393892567234], + [3.653858794520834, 51.55719484889268], + [3.6566363838148432, 51.556566429644796], + [3.659624571860626, 51.55378611187598], + [3.6640723910345807, 51.55123850251876], + [3.6654055925726414, 51.55088609433536], + [3.668762930108613, 51.550382853091385], + [3.66359721863384, 51.54854217477772], + [3.6643054205153587, 51.54833864079539], + [3.6697219975027147, 51.550293313864245], + [3.6716110070618493, 51.54813549042058], + [3.667816168903687, 51.545017904437266], + [3.6667529337534863, 51.542475387489894], + [3.6681566109364216, 51.54223411011172], + [3.6686764923673647, 51.54405413255648], + [3.66935126733545, 51.544960861023235], + [3.6724797637947226, 51.54725229081696], + [3.6773296238274624, 51.5405414536482], + [3.6802023192946667, 51.53449610700453], + [3.6588403410123105, 51.51926115393781], + [3.6565060899798056, 51.52217292068924], + [3.651471299379107, 51.521335775620855], + [3.641596778208095, 51.51969320026117], + [3.6396407042986683, 51.520503081991066], + [3.6347742976056807, 51.520528798836764], + [3.6349046197919956, 51.52312633350495], + [3.6337099215356643, 51.526003804712055], + [3.626253419845, 51.52593521926651], + [3.617214430059618, 51.52526505611226], + [3.6148581518880025, 51.53052019947369], + [3.6131581310242837, 51.53514198222456], + [3.6109751002835946, 51.53530118162856], + [3.6109204381030406, 51.53488456408669], + [3.6035445097351277, 51.533957364419024], + [3.602712966550047, 51.53491329833719], + [3.592958197965623, 51.53216705628668], + [3.5897970378574255, 51.531813554580125], + [3.590638308628974, 51.530022072592544], + [3.59347030776448, 51.52878113338836], + [3.594755277026821, 51.52646552522992], + [3.596634828942459, 51.52245161389253], + [3.583684299901704, 51.51962664341117], + [3.5841727887875616, 51.51686511258354], + [3.5824323627717543, 51.51668758289077], + [3.582848392278338, 51.5134735759502], + [3.58110391340425, 51.513486678616665], + [3.5788377238431717, 51.51242509317547], + [3.583423187856175, 51.5086610126578], + [3.5833123791094654, 51.50858688927441], + [3.582600658583672, 51.50822528067477], + [3.577880124341459, 51.50721764376446], + [3.5753356058924055, 51.5065798565506], + [3.576327720449851, 51.50527340277385], + [3.5780637991462902, 51.50474192154936], + [3.578171471142905, 51.50236922173654], + [3.579861934607695, 51.50097692581441], + [3.582011414273106, 51.499819714728574], + [3.5848902440423287, 51.49436803895066], + [3.5850302657956994, 51.49090838911981], + [3.581561341471108, 51.490319665759294], + [3.58143738667713, 51.48953125499476], + [3.579630448992732, 51.48921586071392], + [3.581236621837554, 51.48638461521706], + [3.583315730571505, 51.48270356495819], + [3.584762172342266, 51.48289151650311], + [3.5869787780219125, 51.4792533669001], + [3.5839231556028803, 51.47845763365254], + [3.5823420605582803, 51.47581205132668], + [3.5757023817489433, 51.47444726388423], + [3.574299043434564, 51.47743409608874], + [3.570515073610498, 51.4768920308284], + [3.5660576677317564, 51.47824870285873], + [3.566320698607672, 51.4729658991408], + [3.5645671358264983, 51.470429753289096], + [3.5602254010132834, 51.47111406887547], + [3.556926559640188, 51.468050257749326], + [3.555132659959827, 51.467905160020194], + [3.5527611684218274, 51.47095550800453], + [3.5482775202633645, 51.46942642611474], + [3.5465938655257103, 51.4675798626337], + [3.544345906242622, 51.466499436746744], + [3.539805168204486, 51.46549828941472], + [3.528139228437849, 51.46374292449477], + [3.526627615164111, 51.46292340992689], + [3.5162124990928336, 51.472644017239226], + [3.5109756154407212, 51.47923492212006], + [3.502472090585126, 51.48823186551593], + [3.4958451312536347, 51.493686845403175], + [3.4852226257607914, 51.498739939183814], + [3.4806457298347078, 51.50008648739121], + [3.4602340543607326, 51.50970348061754], + [3.451046665836433, 51.5148314345792], + [3.443779220641128, 51.520962872890266], + [3.441858367337525, 51.521809253923664], + [3.439785510120746, 51.52198926308219], + [3.437153955811326, 51.52597828821939], + [3.4361424967681904, 51.525492298975], + [3.4352314134876347, 51.525484211159885], + [3.4337820875439915, 51.52646845497785], + [3.4332598131885206, 51.52840954778], + [3.4349401336494534, 51.535950566723486], + [3.4361963238815316, 51.54024933312212], + [3.438305871286668, 51.542444084603254], + [3.4520751608023375, 51.54810086032704], + [3.4594395159282234, 51.550570770825054], + [3.488438770573155, 51.563523683740115], + [3.4946712603538552, 51.5662661306244], + [3.5027683322734853, 51.56907535196071], + [3.514293990027902, 51.57323682297563], + [3.5319321899779035, 51.57965286385659], + [3.5523775204446317, 51.58958783111606], + [3.5751878116208258, 51.594096311351436], + [3.58239794489446, 51.59466087219178], + [3.598514069454213, 51.59428814797279], + [3.6079429242126957, 51.59303723376412], + [3.61699350597207, 51.5904938762032], + [3.629508675842192, 51.59021034821443] + ] + ], + [ + [ + [3.7198529737599104, 51.64913484797476], + [3.714355661498068, 51.64223862039667], + [3.716754030234152, 51.64081621695684], + [3.716699544644793, 51.640708429057156], + [3.7149535983585453, 51.64123731991272], + [3.7133152916337115, 51.63900999557265], + [3.714651817324006, 51.63832551848088], + [3.714688041358788, 51.638493258109364], + [3.7150701436705424, 51.63854741751382], + [3.7155110972317007, 51.638148515987915], + [3.7174304668380107, 51.63886323766156], + [3.7179613920271084, 51.64006997542213], + [3.7173460469571307, 51.640467953582956], + [3.7182950746975334, 51.640653880311255], + [3.7183536842554075, 51.640603123483295], + [3.7183620961127155, 51.63972611755929], + [3.719119350503797, 51.639276052815156], + [3.7162959017919728, 51.63669198762719], + [3.714470843346048, 51.63688531803504], + [3.7137071671072817, 51.63632594141809], + [3.714759327222319, 51.635715526013286], + [3.71391079559749, 51.63482999633253], + [3.718460276649081, 51.63279214638325], + [3.7204301226515004, 51.63452300403454], + [3.7209496376263744, 51.63424116072335], + [3.718718531531536, 51.63211437360375], + [3.7128399922857285, 51.634609554789535], + [3.711210088524436, 51.634114486840886], + [3.709554432216117, 51.632407461435264], + [3.714815870218312, 51.629946025301514], + [3.7169498414421143, 51.631389111941836], + [3.7176589806945266, 51.631063835741145], + [3.7170720878341448, 51.630473056959644], + [3.724267184303102, 51.62741488024884], + [3.7270263747093586, 51.6297577550144], + [3.7228876503918693, 51.631801596216114], + [3.7235194277746544, 51.63221170722093], + [3.7277209921051995, 51.630347517854894], + [3.7307420509761493, 51.632912313910886], + [3.7222285860206727, 51.636850298404234], + [3.7230357075050797, 51.63745343482598], + [3.7312541566490744, 51.63362051470162], + [3.731665651457165, 51.63226200314045], + [3.722250271418046, 51.62490067352329], + [3.7085488212305253, 51.63117674238426], + [3.7041843466419846, 51.62873467283807], + [3.707055795537318, 51.62445171295524], + [3.7036912311026837, 51.62188654192997], + [3.7029632206792877, 51.62242017026568], + [3.7052593348240412, 51.62390014823224], + [3.7045655284953085, 51.62534047522998], + [3.6975140397345023, 51.62883166308121], + [3.69457513856132, 51.625638419568645], + [3.6901037407202133, 51.62303442502989], + [3.6964508453770315, 51.61936930565538], + [3.6989457314623517, 51.6196329990636], + [3.700169915824545, 51.62040173822897], + [3.7009604432124172, 51.61993900473184], + [3.6990270031900505, 51.61880470524737], + [3.6967295176280346, 51.618602847534376], + [3.690339455002583, 51.62129633016453], + [3.687333937804736, 51.62172591262069], + [3.68625856991424, 51.619753552555586], + [3.6861505611367247, 51.61666521539162], + [3.6940146520788004, 51.616512326441246], + [3.691589244826645, 51.61602268857291], + [3.6866288316369964, 51.61614732115356], + [3.6842781794817743, 51.61484945043084], + [3.68236776257901, 51.60097181847351], + [3.683126776438492, 51.600763151755224], + [3.6807537536860395, 51.60009801986406], + [3.68089427388627, 51.60068915186353], + [3.6818665847742347, 51.60100215455935], + [3.68226620911709, 51.602211957097396], + [3.683804914213182, 51.614865099093954], + [3.6824456567361055, 51.616296172636474], + [3.6765395131613667, 51.61828701789284], + [3.674148028291696, 51.6202026275291], + [3.6750314107794533, 51.6205236942898], + [3.677095098262179, 51.6189582122793], + [3.6817607117920352, 51.61728059007729], + [3.6828153567000683, 51.6207203876852], + [3.6803575785680662, 51.6209618526762], + [3.6795271462531427, 51.619897158342354], + [3.678842315229181, 51.62000176869969], + [3.678645659639015, 51.621721361515604], + [3.6769078437332334, 51.62249230736146], + [3.672627659555158, 51.62241042568351], + [3.668270810152087, 51.62136940975924], + [3.667638276106305, 51.621869387112845], + [3.6732897028291234, 51.623239926701494], + [3.6825243199900486, 51.623408488658384], + [3.6869749488823182, 51.62901159350937], + [3.6980495544477305, 51.638875646087804], + [3.697288344470113, 51.63966111405712], + [3.6971897291357227, 51.640984706582486], + [3.69845331748296, 51.642616416997626], + [3.701557270160292, 51.64390703407597], + [3.7038785150627884, 51.644100426403234], + [3.7034655921832873, 51.64278456075788], + [3.7016660110291437, 51.643089827957766], + [3.698395276086567, 51.6404716880137], + [3.7015762319319556, 51.637725032889634], + [3.7031872517506836, 51.63763972089738], + [3.7072840708794854, 51.640433935504355], + [3.705272047998629, 51.64190077223955], + [3.7054691929655275, 51.64256559162187], + [3.708260912189566, 51.643462652449756], + [3.7137331491237546, 51.642401407864064], + [3.719247779497924, 51.64875721692934], + [3.718955709135624, 51.65033135184202], + [3.722224399046873, 51.65033777396621], + [3.72223341790383, 51.65033779170421], + [3.721126914562106, 51.64922875245091], + [3.7198529737599104, 51.64913484797476] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7749bb2c-7ffd-4171-9406-1d93bcd0059f", + "properties": { + "statcode": "GM0718", + "jrstatcode": "2024GM0718", + "statnaam": "Vlissingen", + "rubriek": "gemeente", + "id": 188 + }, + "bbox": [ + 25712.526799999177, 384187.53290000185, 38794.06210000068, + 389486.48000000045 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [3.7029747953289363, 51.450044253784434], + [3.6963918303751333, 51.44585113847607], + [3.7027429681983657, 51.44140060881471], + [3.7085436095227573, 51.4347016861791], + [3.6919760390048526, 51.444064775889636], + [3.6852309285048626, 51.447008639391846], + [3.679695264906936, 51.44888981021761], + [3.678337919771733, 51.44862976698961], + [3.675660554844, 51.4467550315025], + [3.6749235594264476, 51.44684275643654], + [3.677835328186995, 51.44925731773148], + [3.6790377205314373, 51.45125139139928], + [3.6864464709042926, 51.457282174143366], + [3.6907059912271865, 51.456712815800664], + [3.704648422661965, 51.450304056274824], + [3.7029747953289363, 51.450044253784434] + ] + ], + [ + [ + [3.7111080737994127, 51.46546492873363], + [3.7132463860012193, 51.46340177312183], + [3.71488162611593, 51.46363571042927], + [3.7112339057300643, 51.45773722023585], + [3.71027897515931, 51.45461970958806], + [3.7096452003656184, 51.454800000330806], + [3.705263249985758, 51.45319374271947], + [3.6927074927716075, 51.45875558687893], + [3.693295075159084, 51.45969671787816], + [3.709004662921779, 51.46560587423989], + [3.7111080737994127, 51.46546492873363] + ] + ], + [ + [ + [3.706449166797979, 51.47868956895237], + [3.7056260209407696, 51.47694805707049], + [3.704410566948168, 51.47823856820468], + [3.7006650039050104, 51.47686774672877], + [3.7026293395201937, 51.47481192657744], + [3.695678084423537, 51.47111471653913], + [3.6983925548851517, 51.46969141167282], + [3.7062981776638084, 51.470956890508596], + [3.706767329217295, 51.47045156894581], + [3.7033675385060962, 51.467399000499086], + [3.6861444760622097, 51.460928413381666], + [3.6854314779080566, 51.46129918901231], + [3.684045426971762, 51.46256462029472], + [3.681554540906053, 51.46254111378749], + [3.6786373189669392, 51.460757028355964], + [3.6789502648445027, 51.460273015347255], + [3.6781371074222426, 51.460025423477305], + [3.67640456342934, 51.46214161486294], + [3.672879977767625, 51.460980040630304], + [3.6756125880834443, 51.45757893139516], + [3.6731135842526434, 51.45713970159287], + [3.671313765422466, 51.45915995966874], + [3.670037576617464, 51.45891037057976], + [3.669563781229252, 51.459448180076684], + [3.664486948068525, 51.457824620006605], + [3.6626859025129033, 51.458898032851415], + [3.66215156989086, 51.45854743363437], + [3.6584759777285956, 51.45688695730774], + [3.656156736185917, 51.453143831677], + [3.656606462411761, 51.45269799608553], + [3.6596896808486568, 51.452591514734465], + [3.6672334281906083, 51.45008279946189], + [3.666754624965414, 51.44951707268943], + [3.6603973942617163, 51.451799966371645], + [3.656305119409349, 51.45206139697908], + [3.651385741000143, 51.44950669885442], + [3.649731254950526, 51.450281583786996], + [3.6468533161330376, 51.44972219209987], + [3.641628605429899, 51.44755977061293], + [3.6413897382864513, 51.44506494522108], + [3.640027687194146, 51.443522589028234], + [3.632279349296422, 51.44154946117968], + [3.6293191074971065, 51.44145639598546], + [3.626189229845249, 51.442255729660744], + [3.623265868353185, 51.44109813818154], + [3.6230871283031174, 51.44145429323812], + [3.622622539573765, 51.44143332546319], + [3.6225899923066986, 51.44104821989593], + [3.6185883912071652, 51.44161438921287], + [3.614053936718078, 51.440955457465776], + [3.6091029969126986, 51.440226535019804], + [3.6019197917650403, 51.44314416409299], + [3.600521526592538, 51.45185615012028], + [3.5968598264846254, 51.45166650110407], + [3.597382107526501, 51.44601385912817], + [3.597144991049731, 51.44459319728341], + [3.597241228987709, 51.44381105299984], + [3.5987351063578226, 51.44327347640244], + [3.5986898559594, 51.44321839974333], + [3.5971237498231536, 51.443718948359766], + [3.5970306765532407, 51.44361953032946], + [3.5976254276885933, 51.44337080201252], + [3.598038559325522, 51.443157724258555], + [3.5980188609946278, 51.44312362488364], + [3.5975128492834147, 51.443212590866196], + [3.5972117204534717, 51.44262149934389], + [3.596985882397733, 51.44248093321392], + [3.5963561770245493, 51.44246847848385], + [3.5970222010386594, 51.44205262908273], + [3.596432239871255, 51.44156848524439], + [3.6004656240497814, 51.44023688035737], + [3.6009241778078698, 51.439722978313775], + [3.5988468435788037, 51.440057310702535], + [3.597536841243011, 51.44075418491792], + [3.5949565617220522, 51.440134128837556], + [3.5927131685592752, 51.441126010606936], + [3.5899152446749465, 51.441470098457856], + [3.5829536387221155, 51.4404318319799], + [3.582224752368192, 51.43965843320533], + [3.581717377172465, 51.4395846241058], + [3.5799480951758453, 51.44064997638208], + [3.576286625720291, 51.43985009639676], + [3.575837065947985, 51.44034236429796], + [3.575186863611848, 51.439933941858186], + [3.575861843879864, 51.4395836493571], + [3.57605795184115, 51.43822947250024], + [3.5757580359105257, 51.438188687342446], + [3.57500972098864, 51.43904913735031], + [3.5691157294612683, 51.440524381799555], + [3.5678975444667413, 51.44322608446074], + [3.5593339642206434, 51.44843291340652], + [3.5558839308122363, 51.44964197542415], + [3.554919628341432, 51.44985367819563], + [3.5517375920299052, 51.44889775435283], + [3.5512781665238413, 51.449367333511454], + [3.5517874619258016, 51.44947900318753], + [3.5504825760857375, 51.45076082187266], + [3.54810885668213, 51.45192238640391], + [3.547691098335163, 51.45159947148322], + [3.5422225195280554, 51.454372948613404], + [3.533821618095395, 51.45830809579203], + [3.526627615164111, 51.46292340992689], + [3.528139228437849, 51.46374292449477], + [3.539805168204486, 51.46549828941472], + [3.544345906242622, 51.466499436746744], + [3.5465938655257103, 51.4675798626337], + [3.5482775202633645, 51.46942642611474], + [3.5527611684218274, 51.47095550800453], + [3.555132659959827, 51.467905160020194], + [3.556926559640188, 51.468050257749326], + [3.5602254010132834, 51.47111406887547], + [3.5645671358264983, 51.470429753289096], + [3.566320698607672, 51.4729658991408], + [3.5660576677317564, 51.47824870285873], + [3.570515073610498, 51.4768920308284], + [3.574299043434564, 51.47743409608874], + [3.5757023817489433, 51.47444726388423], + [3.5823420605582803, 51.47581205132668], + [3.5839231556028803, 51.47845763365254], + [3.5869787780219125, 51.4792533669001], + [3.5894213879452845, 51.4798035235205], + [3.59030842216374, 51.47865864378373], + [3.5925964517908606, 51.47758806596469], + [3.5970083622088187, 51.477095784702804], + [3.596866711690069, 51.47643944325191], + [3.5977402377494245, 51.47629976739765], + [3.5982234778952007, 51.47572903932039], + [3.598426701603656, 51.47554861368489], + [3.5996588023772222, 51.47529455742576], + [3.6017605477753225, 51.47932624141185], + [3.6049653338019234, 51.47825951887611], + [3.608750500657512, 51.47563588377338], + [3.6177288293129695, 51.47775497428008], + [3.6216558631690545, 51.475484510859516], + [3.628978597592615, 51.48075507987836], + [3.63662513974744, 51.476828415961805], + [3.648349703607895, 51.46984509868344], + [3.6549991942725564, 51.468330947397654], + [3.6615451142278217, 51.46834328818293], + [3.6618274193004527, 51.468382766831404], + [3.6675012659036397, 51.469822507381416], + [3.6854170397975707, 51.47699864248743], + [3.695697646650944, 51.481001228769564], + [3.7036479310032706, 51.48227034837062], + [3.706449166797979, 51.47868956895237] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.db794e71-b926-46f8-bad0-fa85d193a059", + "properties": { + "statcode": "GM0736", + "jrstatcode": "2024GM0736", + "statnaam": "De Ronde Venen", + "rubriek": "gemeente", + "id": 189 + }, + "bbox": [ + 114496.37200000137, 463807.9609999992, 130070, 479588.2762000002 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.021543196394508, 52.30245685000956], + [5.021867208979982, 52.28265326889607], + [5.014919995594517, 52.25912783944815], + [5.0074630381922285, 52.23170451688432], + [5.007462662255508, 52.231704486914865], + [5.007050154429698, 52.231672998839485], + [5.003190629131312, 52.23136366932479], + [4.999829893083959, 52.23107987638587], + [4.997414947495272, 52.23081724392032], + [4.994727576583872, 52.23247422744987], + [4.993587289252788, 52.23209923401038], + [4.994729786139232, 52.230266340393584], + [4.980413772468395, 52.22684743805667], + [4.982874234040173, 52.222415596333356], + [4.973746600813149, 52.22059841748987], + [4.968303572951637, 52.20784217077775], + [4.966595723924032, 52.20005231479744], + [4.96138767107734, 52.199475119744314], + [4.960808551723437, 52.197819783237044], + [4.9508812697985745, 52.19863849990366], + [4.949556134779997, 52.193492922198686], + [4.948382718164692, 52.19359818449637], + [4.948276322864777, 52.19253238047073], + [4.949469593145104, 52.19240861472674], + [4.948571571559016, 52.18578468420288], + [4.945712623310659, 52.185812990616434], + [4.933995272528573, 52.176945035751814], + [4.935006836360384, 52.1758548039599], + [4.933738821007749, 52.174140506375096], + [4.9316183820551815, 52.17375658075245], + [4.932450602888894, 52.17239874533121], + [4.928606318787841, 52.167200112508624], + [4.909637961372828, 52.16187089241254], + [4.907806722534319, 52.16146081176449], + [4.903686554141357, 52.16205077709003], + [4.892178256131188, 52.16179792033835], + [4.867116739247352, 52.173457654373266], + [4.85546508215365, 52.17895771587292], + [4.844061511056247, 52.1800656870999], + [4.8429952737595805, 52.18081489007266], + [4.838383243368527, 52.183258299983706], + [4.837468738704423, 52.1837604178208], + [4.835258360480351, 52.186195796718216], + [4.823430047053513, 52.193283909933804], + [4.822253479093348, 52.19609351565872], + [4.814630178292494, 52.19916832281027], + [4.813139459152756, 52.20111116852362], + [4.813594310150965, 52.20184711858084], + [4.803621065693271, 52.20107139336133], + [4.802611112264894, 52.201746676644525], + [4.801444461360836, 52.20801961693638], + [4.8021496641017665, 52.21763360257282], + [4.7970028612368365, 52.22034806059187], + [4.795983530900885, 52.22317623265964], + [4.794429874012167, 52.22342340026883], + [4.794575697702013, 52.226730665167196], + [4.801942560183223, 52.22692220455095], + [4.8052750460766696, 52.227974168901156], + [4.8081982595994575, 52.22711518609006], + [4.8141000109021155, 52.22716933084596], + [4.817192775751912, 52.228324892183934], + [4.822002626902075, 52.229194393652676], + [4.828613597850272, 52.230593093869416], + [4.839632618743961, 52.23539129234758], + [4.842845250437879, 52.23534723765731], + [4.842995897736945, 52.23678997151128], + [4.845995130944479, 52.237657785662954], + [4.847325731319702, 52.23978137583857], + [4.8507921277460575, 52.2386066182034], + [4.85215655257544, 52.23964121685521], + [4.851273142949737, 52.24189019873819], + [4.852053258587674, 52.24201349017286], + [4.854937885688049, 52.242145619318464], + [4.85529095483691, 52.24555596316659], + [4.856534921351903, 52.246275755985714], + [4.8575217163641105, 52.24772305570537], + [4.860620840930349, 52.24821680907315], + [4.86611332111365, 52.25098827545572], + [4.868779158330591, 52.25169834489171], + [4.870121266278465, 52.253282155192345], + [4.872289667838331, 52.251182047744194], + [4.8738529382110265, 52.250742634015204], + [4.877728871488566, 52.25281610606547], + [4.88271883800424, 52.25371151620988], + [4.887585668922624, 52.25098923044971], + [4.891759482573247, 52.253267668585956], + [4.898568544630832, 52.25093224087821], + [4.902930740889363, 52.25318180583217], + [4.908547054127416, 52.252682614619964], + [4.9109702471370635, 52.252682238819624], + [4.917303282638893, 52.25681724349646], + [4.918553556698897, 52.258586171888794], + [4.918086870984259, 52.26166513574685], + [4.923136703113481, 52.26302317713372], + [4.9247136298710945, 52.2669372604582], + [4.929390510379887, 52.268353331696346], + [4.92929998137112, 52.26995832238282], + [4.92801465590284, 52.27174215600536], + [4.926651425743649, 52.2724447913009], + [4.92765493270485, 52.27380831749794], + [4.925985695997225, 52.27807831272517], + [4.926402677419892, 52.27970926318866], + [4.928587193839562, 52.279611280472444], + [4.9337550764663485, 52.28089576741017], + [4.942691519470023, 52.27818395998696], + [4.946667500608783, 52.27899155122057], + [4.953764917963497, 52.278029650525426], + [4.95524052492509, 52.27830490173321], + [4.956571503126153, 52.278665651061054], + [4.961053634284887, 52.27817420107842], + [4.96263236520146, 52.280291329814304], + [4.965801830678279, 52.280648879456], + [4.967576494829886, 52.279561637085614], + [4.969722978688367, 52.28311784102749], + [4.971839480589079, 52.28436069784707], + [4.9718510162791265, 52.28436832408878], + [4.98350589065718, 52.29036813665715], + [4.997475367290456, 52.289118354964096], + [5.001757890366825, 52.292772555732945], + [5.001851253794966, 52.295878770590974], + [5.003239953520095, 52.29601793126692], + [5.003245724754582, 52.29639630164781], + [5.003765109680504, 52.298340489386995], + [5.005264794834356, 52.298392833050066], + [5.007951944591508, 52.30154855902575], + [5.01176932565609, 52.30339284021617], + [5.014264586891831, 52.30367692048324], + [5.017702341017639, 52.302715485021594], + [5.021543196394508, 52.30245685000956] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.1a5e4989-8841-46b3-a780-42eb653437e5", + "properties": { + "statcode": "GM0737", + "jrstatcode": "2024GM0737", + "statnaam": "Tytsjerksteradiel", + "rubriek": "gemeente", + "id": 190 + }, + "bbox": [ + 184530.6000000015, 570681.7809999995, 203634.79399999976, + 589232.3350999989 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.942532811309073, 53.25047541000492], + [5.949602478302776, 53.239601035926206], + [5.954104800802295, 53.232221897176], + [5.95597354452426, 53.22805631556453], + [5.966140917745425, 53.22806095758189], + [5.971758060500819, 53.2279465954173], + [5.9853465397585195, 53.23065829102239], + [6.009598443292817, 53.238542326382635], + [6.015140342480784, 53.24052854659747], + [6.017354362952821, 53.24124026626722], + [6.019790680598649, 53.24091399317083], + [6.027395235121716, 53.2301643142732], + [6.0445032753792, 53.22586216912321], + [6.086288982520159, 53.215025983786695], + [6.0816996737830955, 53.21408576899575], + [6.080302512519013, 53.21327587592853], + [6.081774586884407, 53.211431598202815], + [6.079270268523908, 53.21076844766982], + [6.079264114319683, 53.209647093365284], + [6.0829228084561855, 53.20997804240146], + [6.0840157344099195, 53.20851129004383], + [6.079210940892371, 53.206835409686526], + [6.081289342898307, 53.202665505810764], + [6.08140246269695, 53.202424360318865], + [6.08225359652924, 53.19842899702762], + [6.085304243014926, 53.19422309572631], + [6.088802737310546, 53.19273156172346], + [6.098852303447431, 53.18645534439965], + [6.102320433708268, 53.18222223160993], + [6.108946748675412, 53.176331732277305], + [6.10935426020209, 53.17705721479231], + [6.114593421029394, 53.17597764529902], + [6.1134171298957645, 53.172950963617986], + [6.105012977255062, 53.151799397900135], + [6.104529769952198, 53.150421431746295], + [6.093943078529775, 53.15613437734847], + [6.088799537657712, 53.15392826133269], + [6.0857600849296665, 53.15711798089828], + [6.0867503553055995, 53.158042806200044], + [6.084325719784272, 53.158652282413705], + [6.0789316473611725, 53.15645515507559], + [6.061658912065243, 53.15660229743833], + [6.0490348832126495, 53.15641758118807], + [6.040602828731586, 53.15648788334265], + [6.01309829672073, 53.154536803091936], + [6.0012475192377135, 53.14962078911173], + [6.000866499234451, 53.14946160793223], + [5.986844275204779, 53.14183455404403], + [5.974879643429387, 53.134892817515826], + [5.961871285490183, 53.131126260069145], + [5.95096841383376, 53.12744717617164], + [5.950953906195765, 53.126577595824315], + [5.950157790422628, 53.12624582223171], + [5.948344503715362, 53.12625754667618], + [5.9432775114430445, 53.12444186650063], + [5.9434596664364925, 53.121613979259266], + [5.938580420912089, 53.12540383693781], + [5.932401687857651, 53.128133550993844], + [5.927667058539488, 53.12916203157258], + [5.923355993001468, 53.130909854192176], + [5.908628809044055, 53.1447804931201], + [5.9189621987611485, 53.14917262640839], + [5.923299329578063, 53.15295950071058], + [5.931917979930263, 53.161084075364585], + [5.933745678381385, 53.168868478529056], + [5.932778773350992, 53.170298900605665], + [5.925945218648029, 53.16842742936596], + [5.915566274796483, 53.16875855275444], + [5.88028369990177, 53.170319827957776], + [5.86193687398289, 53.17151871382134], + [5.857065449593103, 53.18141687884754], + [5.854979339845627, 53.18582265623255], + [5.853420547923529, 53.18937154402968], + [5.850972961182072, 53.191720834710004], + [5.862069670595314, 53.19359588263804], + [5.857465077589531, 53.20159964899109], + [5.856992142144692, 53.20293196400746], + [5.85766395900239, 53.20386634428172], + [5.8577275686510335, 53.20406334829642], + [5.897891698909739, 53.20869718019727], + [5.9070519050586645, 53.211028958414374], + [5.9068742541423225, 53.211360344359335], + [5.90565060290354, 53.21184240062861], + [5.905003633743251, 53.21247624403168], + [5.904972311250791, 53.21391784996807], + [5.905932091768573, 53.215013869699455], + [5.897863799754016, 53.21465807316012], + [5.8978997603520265, 53.215388224444276], + [5.893821340962917, 53.21551826894018], + [5.894188243856954, 53.217648942087315], + [5.889011951097707, 53.217976427142226], + [5.888952681740638, 53.22095244748224], + [5.8971165060556885, 53.22097013752973], + [5.89692656323587, 53.222962172623795], + [5.889170198111143, 53.22281573406521], + [5.889991975378141, 53.22499869691698], + [5.880656454978924, 53.22497572071035], + [5.879892286656958, 53.23324876283402], + [5.8590345423470245, 53.230570112193064], + [5.8525538247296565, 53.23047672896566], + [5.852553757335356, 53.230476728328455], + [5.859241280791769, 53.24329273744594], + [5.859196781112558, 53.24329202557031], + [5.8321603394600485, 53.242856586559846], + [5.8310196738436755, 53.244722802323444], + [5.832044734897014, 53.246402492346476], + [5.83316649188213, 53.24774478106546], + [5.82990306217772, 53.255351006321575], + [5.829700787291793, 53.257582143683805], + [5.832062546427092, 53.26033901974502], + [5.832530149947759, 53.26854722181858], + [5.838649165826244, 53.27494928424115], + [5.847516851147487, 53.284085997962414], + [5.8476608121385345, 53.28516262403796], + [5.860768619291517, 53.28849380850128], + [5.86118011763423, 53.28865774978165], + [5.8618348610091005, 53.28822102177058], + [5.861345661823128, 53.288044388386645], + [5.86415362542186, 53.28687742374854], + [5.874610604306046, 53.282601718221265], + [5.882244592405089, 53.27678249235831], + [5.889596366208527, 53.2721569738779], + [5.891562590975268, 53.27097951431893], + [5.904314303310859, 53.26423268985523], + [5.912588335062703, 53.260279082077794], + [5.9144481765054016, 53.25864643507759], + [5.922955083487569, 53.257405054986336], + [5.925913665104011, 53.25472983109672], + [5.925774924579714, 53.25235319450209], + [5.942532811309073, 53.25047541000492] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e0a0145d-cb74-41d8-9659-9c3a9482f6ff", + "properties": { + "statcode": "GM0743", + "jrstatcode": "2024GM0743", + "statnaam": "Asten", + "rubriek": "gemeente", + "id": 191 + }, + "bbox": [ + 176330.33799999952, 371689.38699999824, 188657.44799999893, + 383490.2800000012 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.718245466902878, 51.43873364973598], + [5.721777633296819, 51.438218903936544], + [5.734550549839825, 51.43900976747786], + [5.74395422949273, 51.43736725659715], + [5.755698871423147, 51.43426787514489], + [5.762414802092775, 51.430574924612294], + [5.766245059592778, 51.42527642135821], + [5.769218471733261, 51.424298427789864], + [5.776037939345275, 51.41917429429578], + [5.780367288125507, 51.41823648180278], + [5.782960369629936, 51.41693105774388], + [5.7880813919448775, 51.413121002731984], + [5.7878820390439305, 51.412647323042826], + [5.791152999704376, 51.41163144118793], + [5.821313359166038, 51.40233159726945], + [5.831882883916692, 51.39926974926494], + [5.8328984268002895, 51.397580290228994], + [5.838270972192357, 51.39525729580236], + [5.8541031036689315, 51.37642963108441], + [5.853235178068655, 51.3727286447909], + [5.8565806052301514, 51.35376391815381], + [5.866018876808297, 51.35462045480854], + [5.870359565007229, 51.35253496602653], + [5.868258162318234, 51.35213743513322], + [5.858466686004235, 51.35029474862733], + [5.840193687883534, 51.346877063742774], + [5.788251545437134, 51.33718255026727], + [5.771061016896435, 51.333920917925404], + [5.770448612871386, 51.333804588777625], + [5.745459767280692, 51.371105725142606], + [5.740216038061261, 51.36979327691894], + [5.739369988969062, 51.37480176329138], + [5.737496467930729, 51.3868146099828], + [5.736108761481185, 51.38968524912992], + [5.733724139408841, 51.39187286187242], + [5.70524536312574, 51.40966420147097], + [5.702877297969981, 51.41254119697247], + [5.700716922416798, 51.418547991182194], + [5.700296169385621, 51.42127374536369], + [5.699978748042478, 51.422154349197314], + [5.693983451957947, 51.43923979306062], + [5.698723530838788, 51.43804215024], + [5.709203286621896, 51.440065538314705], + [5.718245466902878, 51.43873364973598] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.6ca18e93-a330-4eaa-a7a5-90d701ced4a6", + "properties": { + "statcode": "GM0744", + "jrstatcode": "2024GM0744", + "statnaam": "Baarle-Nassau", + "rubriek": "gemeente", + "id": 192 + }, + "bbox": [ + 111843.2190000005, 378384.78400000185, 128851.1099999994, + 388107.02600000054 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.872207379316636, 51.41288466779579], + [4.87310736823001, 51.41241884476502], + [4.871936314800095, 51.41216315859223], + [4.87238076216532, 51.41150093521965], + [4.869747312560433, 51.41115912218331], + [4.869233377211776, 51.411785700923446], + [4.8705778848342405, 51.41274088571097], + [4.871487453371609, 51.412413671634816], + [4.872207379316636, 51.41288466779579] + ] + ], + [ + [ + [4.935415145809615, 51.43205253303306], + [4.934180442485328, 51.43195192538689], + [4.934114279428178, 51.43342924738505], + [4.935502133703747, 51.433490807954925], + [4.935415145809615, 51.43205253303306] + ] + ], + [ + [ + [4.932787323809986, 51.43529309257277], + [4.932733080727654, 51.4344315206604], + [4.931251067959173, 51.434665650420605], + [4.9313292284331665, 51.43644187291958], + [4.932684862245001, 51.436469543004236], + [4.932787323809986, 51.43529309257277] + ] + ], + [ + [ + [4.931632460754602, 51.43716926216468], + [4.93139187744437, 51.436605623897805], + [4.930907165258765, 51.43672516827887], + [4.930689572306076, 51.4371555998358], + [4.931632460754602, 51.43716926216468] + ] + ], + [ + [ + [4.936802884172898, 51.43627031793585], + [4.935458797884807, 51.43618071770169], + [4.935374029976727, 51.43752169776222], + [4.9364783280523135, 51.43754646262566], + [4.936802884172898, 51.43627031793585] + ] + ], + [ + [ + [4.932223115946694, 51.438841954812446], + [4.931142084168517, 51.43878883607368], + [4.930634754607747, 51.43988609240242], + [4.932386579785671, 51.44003046150278], + [4.932223115946694, 51.438841954812446] + ] + ], + [ + [ + [4.923736381377723, 51.43781493627743], + [4.922320660440047, 51.43768211349955], + [4.921503560288311, 51.43924973879997], + [4.922713735979573, 51.440052138259375], + [4.922363364883127, 51.44025704517883], + [4.92416814697276, 51.441848846614704], + [4.925117674994554, 51.44174195799283], + [4.924346809599167, 51.441135690017255], + [4.924862041154661, 51.440725031376445], + [4.923277604222077, 51.43983433534188], + [4.924809594855484, 51.43909948933394], + [4.923736381377723, 51.43781493627743] + ] + ], + [ + [ + [4.853929420686375, 51.478441948115886], + [4.8619500075543, 51.4776097327354], + [4.871697614425414, 51.479807282158376], + [4.8830772848443065, 51.47730833431261], + [4.891294544471502, 51.478216533209604], + [4.892556647415478, 51.47778367380468], + [4.917048257259672, 51.468040968647955], + [4.917972834268961, 51.46674095442144], + [4.932121812787353, 51.45921296591104], + [4.94163292041257, 51.45713676253024], + [4.944662567520207, 51.45679034519912], + [4.947162179786816, 51.458568723373055], + [4.956718529262848, 51.459736005774026], + [4.970077093204793, 51.45874088829374], + [4.973653686317751, 51.45974289869798], + [4.974774174201789, 51.46061892547396], + [4.976712217056151, 51.46126393486351], + [4.977134942217964, 51.460681632744574], + [5.010462629813133, 51.45824439819055], + [5.00978779896116, 51.4571232271268], + [5.010976955492506, 51.456011471897455], + [5.010517503484558, 51.45392882495709], + [5.0053568964827075, 51.4490347961938], + [5.004426031668399, 51.4445813955136], + [4.9983643908806075, 51.440580757198205], + [4.963218655384407, 51.422293022122886], + [4.928978644871743, 51.396050872960174], + [4.927897562515115, 51.399734679683625], + [4.924428019027669, 51.398783547098645], + [4.925235696542351, 51.39665092396061], + [4.927853749896106, 51.39543874937198], + [4.920959385065266, 51.39368698248081], + [4.913848901235514, 51.39507680204064], + [4.917805571581105, 51.39684238924084], + [4.9245867792614115, 51.39688384986481], + [4.9242755250752275, 51.397820364806584], + [4.923268416022655, 51.39855012056091], + [4.919072401303666, 51.39831537451871], + [4.916261281916166, 51.39871674118668], + [4.917815916332337, 51.40051122033525], + [4.9101615940383825, 51.40226024833655], + [4.9105482449583, 51.40287520881978], + [4.908576836762533, 51.40460971878106], + [4.909604244608847, 51.40699706615868], + [4.906060792295286, 51.40913873428465], + [4.905696205619187, 51.409902466699066], + [4.904088348532784, 51.40986513058264], + [4.903701727867641, 51.409955169760146], + [4.904877964056876, 51.41190027775341], + [4.9038478236462915, 51.41241421062046], + [4.9027268079769915, 51.4102759988325], + [4.900086969312635, 51.41060799322444], + [4.900252080444278, 51.41252588129315], + [4.902558622838175, 51.4124854552911], + [4.903187184110443, 51.41355237816549], + [4.90184631414703, 51.41393592420425], + [4.900709820299388, 51.413280909434945], + [4.901164664391031, 51.41408463769054], + [4.899993650255104, 51.41467075018445], + [4.8975614827994125, 51.413484962619485], + [4.898281347840515, 51.412804705122035], + [4.898604365636855, 51.41192987235582], + [4.897132765148688, 51.41169319844826], + [4.896452609116257, 51.41284778040009], + [4.894697956818764, 51.41288908318735], + [4.888773598169684, 51.41543228665267], + [4.886960184250187, 51.41505514970511], + [4.885881270868184, 51.415334655099784], + [4.886070432403227, 51.416598614975015], + [4.883005868315976, 51.4164816148303], + [4.883072064216366, 51.415285865124346], + [4.881331064351205, 51.41546623982297], + [4.879796020370582, 51.41436716822774], + [4.878442883541904, 51.41410227005411], + [4.877748855825436, 51.41547022265054], + [4.873553321846713, 51.41475414246865], + [4.873835147093805, 51.41427990024395], + [4.872884835294592, 51.41361773073166], + [4.871256137651112, 51.41386689022731], + [4.868721382485379, 51.41288778708273], + [4.8662550406394995, 51.41144441634189], + [4.86649703780099, 51.41070793480567], + [4.868381754820953, 51.409956164153265], + [4.8673664007903845, 51.409113586025995], + [4.866462885309725, 51.40971451441362], + [4.8605136710766255, 51.410448349583675], + [4.8596677992536135, 51.41112747409678], + [4.859814956007412, 51.41301072808107], + [4.857607697506714, 51.41278135466479], + [4.851846697944953, 51.414134180774894], + [4.849828737229311, 51.41429293960698], + [4.848631825416821, 51.412748580763775], + [4.839521422634531, 51.41455992527949], + [4.821844156671428, 51.413196587405416], + [4.795997680269376, 51.410272039205566], + [4.793067495546772, 51.40948918353831], + [4.7922136073243, 51.410542311729074], + [4.789334298835196, 51.40898701661111], + [4.7803114168533085, 51.41203100003409], + [4.777752882688441, 51.41382446581621], + [4.77530652841003, 51.4141128045032], + [4.773366560915257, 51.41344065021042], + [4.771193652952307, 51.41490905724699], + [4.7717956169916445, 51.416322307036566], + [4.77073852372757, 51.41662342681636], + [4.768577185074009, 51.41964629012182], + [4.770161649207774, 51.424941418073566], + [4.76661564669378, 51.43050370710893], + [4.767655125736658, 51.43084091047593], + [4.768438850584646, 51.43042268633453], + [4.7741215123240375, 51.43162336774203], + [4.786572226403883, 51.432518700941905], + [4.7877454888850846, 51.43210174463341], + [4.789068019694818, 51.43000621060745], + [4.794264025809282, 51.428497368141635], + [4.7963886664811595, 51.42830951924588], + [4.800260795347104, 51.42911595025914], + [4.804255137829959, 51.427869371225256], + [4.8056719454514, 51.428622348037464], + [4.807707248570515, 51.42719890173764], + [4.808359198557693, 51.42643832621056], + [4.812247854154975, 51.42637025502065], + [4.820099373673933, 51.42418697603121], + [4.821060261169701, 51.42279103381507], + [4.825691670364202, 51.42311407719671], + [4.826933676232998, 51.422228685379075], + [4.826454023449906, 51.42114682663292], + [4.833503432598879, 51.41977521504844], + [4.833033451996885, 51.41911355117996], + [4.834737648359689, 51.41839960385871], + [4.835411514251305, 51.41921122482558], + [4.836742362582557, 51.418831715597804], + [4.8355794970343835, 51.41752745203467], + [4.8364207864213355, 51.41727509178888], + [4.837681388876871, 51.41852625531726], + [4.841469314430405, 51.422442209438806], + [4.841009681279449, 51.42257081935234], + [4.838259283708456, 51.42173275142695], + [4.837646409856512, 51.42084566663886], + [4.8332260653401935, 51.42059184903683], + [4.830217023996129, 51.42121103850875], + [4.829339030254339, 51.42236939681796], + [4.8282115749411565, 51.422303993882224], + [4.828553320621342, 51.423445077669676], + [4.82487059082148, 51.43531831496785], + [4.8259172653212135, 51.436044396058456], + [4.823362935682217, 51.44861887602705], + [4.828583835668971, 51.45087716408475], + [4.8334014624513095, 51.45740234938404], + [4.8354099472208, 51.45854373660152], + [4.8384713632272325, 51.456049805350304], + [4.841349970530219, 51.45676925032361], + [4.8440206867988165, 51.45906555724331], + [4.838403069182596, 51.46137258590255], + [4.8361089038652105, 51.461245488904524], + [4.83694881006126, 51.46797104373023], + [4.839687166930446, 51.47281041856022], + [4.840327129880707, 51.47853464614048], + [4.841878210540118, 51.48073576745609], + [4.848018950122807, 51.48029524801506], + [4.852878824698941, 51.479398688160444], + [4.853929420686375, 51.478441948115886] + ], + [ + [4.9483440320166245, 51.450969428789946], + [4.943112044385797, 51.45036168352748], + [4.943040043805735, 51.450826399406374], + [4.941049788102367, 51.450788426761754], + [4.941081052241783, 51.45046045557485], + [4.93794112783457, 51.4504023895053], + [4.937230339067669, 51.44991857153142], + [4.9344407001708275, 51.44973725640588], + [4.933113392104371, 51.44953620469032], + [4.934737426983895, 51.44747519233316], + [4.936788485582013, 51.4475231526926], + [4.936238596115543, 51.44690691515669], + [4.936728035997384, 51.44684237809218], + [4.938918513426168, 51.447118332772135], + [4.93908152930375, 51.44634887482861], + [4.939506914034936, 51.44649279985665], + [4.940148169998707, 51.44516464470887], + [4.940370139146721, 51.445188328959325], + [4.939722403096721, 51.446565716331335], + [4.940451456586589, 51.446812554859434], + [4.940699369362139, 51.44636604165528], + [4.941500953781074, 51.44641872359138], + [4.941391316866415, 51.4471123291805], + [4.94348840464224, 51.44747870254471], + [4.943532970415787, 51.44866368475775], + [4.945994357761354, 51.44909306097897], + [4.946370913176532, 51.448281628026066], + [4.944761407231715, 51.44778412103816], + [4.946376192164916, 51.447378994195844], + [4.947952814620362, 51.447333432602925], + [4.948349653985965, 51.44904126618662], + [4.950714693885397, 51.449458494933054], + [4.952400581358196, 51.4501507211876], + [4.951262887933737, 51.4510426590132], + [4.952757886465416, 51.45163412166097], + [4.951469263926757, 51.45371264770723], + [4.949432258574655, 51.4535252503552], + [4.950622353184652, 51.45164907507198], + [4.9483440320166245, 51.450969428789946] + ], + [ + [4.9477982790220585, 51.445701406251295], + [4.945728960297563, 51.44453185769683], + [4.945801103252614, 51.44397474486535], + [4.9439331855631625, 51.44379179880031], + [4.943956319672405, 51.4436517074075], + [4.946335797799671, 51.44397843959674], + [4.948011554202041, 51.44403707062195], + [4.9481446423341024, 51.44369747165862], + [4.9498766038047854, 51.4436542664294], + [4.948970824343702, 51.444733674114666], + [4.949647761197695, 51.444777276508944], + [4.949621420846573, 51.445318392482235], + [4.9477982790220585, 51.445701406251295] + ], + [ + [4.939971361228514, 51.436118548463], + [4.939449706932359, 51.43714684371027], + [4.940362008001832, 51.43802017712197], + [4.9398811815543, 51.439446213836064], + [4.938785774916132, 51.43931688592417], + [4.93905317990099, 51.43796543583048], + [4.936468727279585, 51.437795260576216], + [4.936342680377355, 51.43859591983113], + [4.934660262716898, 51.43854877840906], + [4.934899725988789, 51.440855224912994], + [4.933740593168496, 51.44088238525935], + [4.934269604107926, 51.442112758386884], + [4.938109269883858, 51.441904456502336], + [4.938077098350988, 51.443345755614786], + [4.938467792292561, 51.443435047499634], + [4.938881755674, 51.44186253383035], + [4.940281945402628, 51.441801555276626], + [4.939947186293454, 51.44375686207266], + [4.939214518948453, 51.44361966958666], + [4.938561053396657, 51.44345886679168], + [4.938117566875623, 51.44471729975962], + [4.936753157156595, 51.44440502053714], + [4.935477032459808, 51.44428202944292], + [4.935180038745788, 51.444872611748636], + [4.93616914261448, 51.445261698009105], + [4.935545754768273, 51.44634657146332], + [4.933295893806066, 51.44424489263197], + [4.933730304412589, 51.44315983618571], + [4.933176519665922, 51.443088289608546], + [4.933122487827063, 51.44327082158363], + [4.9323970012605285, 51.44316624346652], + [4.931027911757702, 51.44290379357189], + [4.930457117391387, 51.44245628309293], + [4.929887317964956, 51.442476973124855], + [4.929890880196374, 51.44191393425734], + [4.928701892180003, 51.4415974423025], + [4.928858914379884, 51.441029697424945], + [4.929699945236484, 51.44009366815285], + [4.928985976519779, 51.43958869338953], + [4.928300175952782, 51.43855342468325], + [4.926891865473326, 51.439833815864084], + [4.927375432079912, 51.44003176794779], + [4.926526602267746, 51.44130788596026], + [4.926155459009853, 51.441222301326995], + [4.926268117155101, 51.44169365333967], + [4.926851577353726, 51.441660119787436], + [4.9259501422972685, 51.442817160011025], + [4.9280549901666175, 51.44361881659374], + [4.925453414464977, 51.444549769516186], + [4.9237328191256475, 51.44389404801795], + [4.923104611079667, 51.444902342019965], + [4.924263978542257, 51.44492883785904], + [4.922134687180141, 51.44571684377326], + [4.924021805018587, 51.44631336175673], + [4.923034805736003, 51.447377938952684], + [4.921492566248103, 51.44644918500274], + [4.920545547132508, 51.44595926105781], + [4.919429701940697, 51.44693244294162], + [4.918302806114936, 51.445784847583795], + [4.919910330218345, 51.445161385039576], + [4.920287282089876, 51.44575861384465], + [4.921537263243622, 51.444862300969916], + [4.920863356875181, 51.444791744706706], + [4.922369392387845, 51.44266300269099], + [4.921900531923835, 51.44206652511046], + [4.921540367760593, 51.44219317898126], + [4.919189624383732, 51.44067024092842], + [4.921200655903932, 51.440403950319634], + [4.920214039735834, 51.43954202519652], + [4.921303294809301, 51.439114826506106], + [4.919797203045061, 51.43808578816288], + [4.920722939230575, 51.437304062339834], + [4.918056044453865, 51.4352810353908], + [4.917076908196722, 51.43588572688816], + [4.915012031392923, 51.43535531971394], + [4.91721571947831, 51.43458560562235], + [4.919286618132789, 51.43477093658572], + [4.922550868790922, 51.434006917796246], + [4.922553116447442, 51.43364275159544], + [4.92524556389444, 51.433409395703535], + [4.924961123588125, 51.43387772755625], + [4.925927571193612, 51.43385936128118], + [4.926084525817289, 51.43339644430848], + [4.92784246542908, 51.431223683018764], + [4.928812938378983, 51.4305124401803], + [4.930933494210726, 51.430256891450995], + [4.933598527627167, 51.43102121151151], + [4.935979816063463, 51.42947079757778], + [4.939697383510091, 51.430742557482205], + [4.93993678134873, 51.43411688089065], + [4.936248701037529, 51.434226192631854], + [4.93817098557396, 51.43596646560743], + [4.939971361228514, 51.436118548463] + ], + [ + [4.918878333610802, 51.44400581537573], + [4.918372573235459, 51.44410508854533], + [4.918147168295723, 51.443958833913186], + [4.918222124755676, 51.443433020561926], + [4.918524556828291, 51.4434390894431], + [4.918493675108271, 51.44357441947662], + [4.918878333610802, 51.44400581537573] + ], + [ + [4.931512197016143, 51.447631301270455], + [4.931906848243197, 51.44666025407364], + [4.934073773670971, 51.44740055453011], + [4.933206518532062, 51.44826412628378], + [4.931512197016143, 51.447631301270455] + ], + [ + [4.929125471637762, 51.44812443189117], + [4.928410020402836, 51.448722351815015], + [4.927350435252189, 51.448568239861295], + [4.928398253838984, 51.44782782168605], + [4.929125471637762, 51.44812443189117] + ], + [ + [4.9294908676005385, 51.449570364449066], + [4.930402932045561, 51.44872368769935], + [4.931813160876779, 51.449269964187486], + [4.930703629807344, 51.45040143567687], + [4.9294908676005385, 51.449570364449066] + ], + [ + [4.926926525612116, 51.44536080488887], + [4.9255044799439665, 51.446651372513074], + [4.924171885538755, 51.446351260778954], + [4.92571921736345, 51.444906777223316], + [4.926263912431243, 51.44516726777468], + [4.926926525612116, 51.44536080488887] + ], + [ + [4.940981591145253, 51.44529448883768], + [4.941185421367826, 51.444882772433296], + [4.942315427246841, 51.445136524234805], + [4.942115624847355, 51.445549156822196], + [4.940981591145253, 51.44529448883768] + ], + [ + [4.939760880827988, 51.43976018062788], + [4.940759668419818, 51.4393147459373], + [4.941373761529951, 51.43795178585728], + [4.942226823168165, 51.438108390535895], + [4.941863094187601, 51.43900335015011], + [4.943117189866981, 51.44016437264607], + [4.942054325561972, 51.44004328924178], + [4.939760880827988, 51.43976018062788] + ], + [ + [4.932415946173356, 51.40606142968645], + [4.928495113934673, 51.405114475306625], + [4.936394794866714, 51.40534230967823], + [4.935794988694844, 51.40930019093694], + [4.935135591286358, 51.40922616725398], + [4.929429095374087, 51.40808418427032], + [4.932415946173356, 51.40606142968645] + ], + [ + [4.940998710174233, 51.43464211666145], + [4.942755665500739, 51.435113182703844], + [4.942189609257094, 51.43645467029235], + [4.939971361228514, 51.436118548463], + [4.940998710174233, 51.43464211666145] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.b33fa543-b1b3-4b29-ad4e-be98c8d444a3", + "properties": { + "statcode": "GM0748", + "jrstatcode": "2024GM0748", + "statnaam": "Bergen op Zoom", + "rubriek": "gemeente", + "id": 193 + }, + "bbox": [ + 73888.57999999821, 383977.46499999985, 84535.21999999881, + 398582.4188000001 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.317977607914271, 51.55121575304361], + [4.3163087989979765, 51.54549683927876], + [4.308281092266532, 51.5467164648119], + [4.306909221133954, 51.54350492421143], + [4.314623878336248, 51.54107526204879], + [4.327574671249017, 51.53519402816652], + [4.32872558232791, 51.531752858423275], + [4.32841350123797, 51.530726574781035], + [4.325649444500462, 51.52961400555018], + [4.329535257323158, 51.52932464640672], + [4.3298862376097045, 51.528239590856536], + [4.3376458283027475, 51.527562974626626], + [4.342777419851456, 51.52638956208058], + [4.3404571503276035, 51.522669506494815], + [4.340815083701871, 51.52178897142301], + [4.3421944793416305, 51.518049755879886], + [4.35014020069667, 51.51837319579828], + [4.351597241374923, 51.51770076395821], + [4.352463788076851, 51.5142993854332], + [4.350554601608838, 51.50570102035929], + [4.353959410699806, 51.50645098122756], + [4.354397545805284, 51.5057784598844], + [4.351180275502134, 51.50385055920063], + [4.349540184827901, 51.50348101178467], + [4.351589641841361, 51.49992841635234], + [4.358172545731638, 51.49260335310097], + [4.3638795518555415, 51.49118681213607], + [4.3726435171907685, 51.4877725080463], + [4.371822950332694, 51.48390628951879], + [4.371655066314631, 51.4790932415547], + [4.361632426299943, 51.47637176652063], + [4.362668383442177, 51.471685498693695], + [4.361396833637237, 51.471219159329266], + [4.366965865509341, 51.45671886284281], + [4.359769003821512, 51.45791304045234], + [4.344308309761708, 51.46058696752372], + [4.340183037761061, 51.46254827109634], + [4.336514709450954, 51.45980063313166], + [4.3279611488238725, 51.464241612753206], + [4.32421585609185, 51.46229142472411], + [4.32419103787473, 51.46140710780398], + [4.3224773019273135, 51.46029990310474], + [4.320010655706907, 51.460589338899055], + [4.312239070514201, 51.46012693380075], + [4.311166562015032, 51.4601732863939], + [4.308471919667061, 51.46540730977965], + [4.307358846099076, 51.466216853730124], + [4.304182349561145, 51.46581574812951], + [4.303917515205853, 51.46664307884677], + [4.3014467933192675, 51.46662085800882], + [4.299564800407704, 51.46639311944331], + [4.299512521191358, 51.46602468913293], + [4.299100135923058, 51.46680089623791], + [4.2976849383900735, 51.4662220481655], + [4.297664836417441, 51.458339424590655], + [4.297462228974114, 51.45011275626316], + [4.295082211641725, 51.4488229322577], + [4.2937335726649035, 51.44537612084549], + [4.290251581629857, 51.445182849496895], + [4.287133368737118, 51.443969779163616], + [4.283173290217166, 51.439666982758624], + [4.268272277600324, 51.440264210927126], + [4.265431751910424, 51.43968067783876], + [4.230327770234477, 51.48890425477217], + [4.224906110151614, 51.49649297295094], + [4.218927212580822, 51.50485845504699], + [4.218799785435205, 51.50896139555327], + [4.219930778636128, 51.51380292894327], + [4.23304311782112, 51.5374920251512], + [4.235657042546331, 51.54324152183046], + [4.236118851113026, 51.550365798126], + [4.239725113009386, 51.55091846755072], + [4.242935824202957, 51.55912530311541], + [4.242975446769727, 51.56297980884604], + [4.252026711722063, 51.570657678607624], + [4.267622507152432, 51.56801014070004], + [4.267504532057433, 51.56631015915714], + [4.26726952607374, 51.56494500337719], + [4.268394917088943, 51.56485143686159], + [4.27312931500771, 51.56443789977233], + [4.298165883429326, 51.55894815996937], + [4.297813885416854, 51.555913094405824], + [4.296233919467418, 51.55385951829378], + [4.297160396280276, 51.55365762119001], + [4.317977607914271, 51.55121575304361] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.2f0a7ba7-18aa-4fe0-9a72-d7d2ba110ad5", + "properties": { + "statcode": "GM0753", + "jrstatcode": "2024GM0753", + "statnaam": "Best", + "rubriek": "gemeente", + "id": 194 + }, + "bbox": [ + 152382.19750000164, 388310.10069999844, 159186.36800000072, + 395488.1229999997 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.405360289030632, 51.54835326808998], + [5.410935744501103, 51.54226908446843], + [5.412045088306289, 51.54269993712877], + [5.420303506887189, 51.53856517407979], + [5.422158155797316, 51.53691074406015], + [5.4229779428211184, 51.53394066470731], + [5.423842807511351, 51.534055099195804], + [5.425463271768263, 51.53241278379863], + [5.426433778597901, 51.532732783473314], + [5.427505038731531, 51.53166630413173], + [5.4265840509070955, 51.531276810055104], + [5.433370366975177, 51.52439703957936], + [5.447507692328072, 51.51206895350574], + [5.440704808013803, 51.49605928723151], + [5.4425705689183, 51.49392721604361], + [5.442167817077179, 51.49383879954], + [5.42715568912572, 51.489611993315116], + [5.4179952562994735, 51.48623699429917], + [5.411911757068948, 51.48468305941116], + [5.411708326429572, 51.48464628686753], + [5.407146110863857, 51.48407013637763], + [5.401293544120124, 51.483833254292975], + [5.3960544349134345, 51.484397090727384], + [5.391016562157046, 51.48555482874212], + [5.390034037581502, 51.48581365028763], + [5.389736765687596, 51.487516835610066], + [5.386014494498338, 51.486703461596], + [5.375017642675288, 51.48904925286449], + [5.364610548046442, 51.49144656253062], + [5.355887441610802, 51.49610683603766], + [5.35557448710257, 51.49693450004746], + [5.35518151353711, 51.49915912545522], + [5.353326204212385, 51.50179639292132], + [5.352606691433186, 51.50599216908945], + [5.351317728858629, 51.50605383049566], + [5.350751351805212, 51.507553104213684], + [5.350892634898525, 51.5121274999214], + [5.349486322468265, 51.51716841534382], + [5.35150697166917, 51.518007043919184], + [5.353902178628991, 51.521186872759905], + [5.353570378207495, 51.523802611147175], + [5.3537318862305865, 51.52608388109101], + [5.35545923037663, 51.52890283319236], + [5.365622478557622, 51.52998049203521], + [5.368595919661319, 51.53148999974291], + [5.356910779416933, 51.5447165735921], + [5.365170911839069, 51.545003026698026], + [5.36852003914678, 51.54352319034302], + [5.382674972278291, 51.54372844690578], + [5.388166034881616, 51.54433233278736], + [5.4042333353428695, 51.54829166965381], + [5.405360289030632, 51.54835326808998] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.2a8f1754-bb27-44e5-92b3-f483b724b3ad", + "properties": { + "statcode": "GM0755", + "jrstatcode": "2024GM0755", + "statnaam": "Boekel", + "rubriek": "gemeente", + "id": 195 + }, + "bbox": [ + 171575.69200000167, 399304.546, 180736.30000000075, 404504.76729999855 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.681459876611804, 51.62903105138469], + [5.681780708099892, 51.627816600520674], + [5.685925026438195, 51.62811592340222], + [5.709228784019851, 51.62575360859009], + [5.740060452247232, 51.62249637652116], + [5.750478242151181, 51.62268337516537], + [5.75861458742041, 51.59394650695961], + [5.7326206554184855, 51.59037533430455], + [5.729478996775775, 51.58981152699514], + [5.709972702067733, 51.58634826870726], + [5.709393237320106, 51.586258545872894], + [5.709788213285681, 51.5858357541673], + [5.709050945120604, 51.58555232579588], + [5.706138282410856, 51.587086774693226], + [5.699385896218431, 51.58411653453674], + [5.6871025385329546, 51.58380670988523], + [5.685529466159073, 51.58373623251389], + [5.660201953845103, 51.58297793231416], + [5.658053963960359, 51.58315136908272], + [5.65135725139028, 51.58236019653721], + [5.650368871104731, 51.58474415104586], + [5.650683722952855, 51.58717622053395], + [5.649501786509579, 51.589216806163904], + [5.6485216724925476, 51.59363843464269], + [5.645303256040284, 51.60082406824112], + [5.642928344133616, 51.60620926789363], + [5.626568498427971, 51.623400988857874], + [5.633674157551338, 51.62478551324829], + [5.63557462924038, 51.62536373582951], + [5.6509825986581435, 51.62571165268947], + [5.651343890045777, 51.62669566275675], + [5.658178680953495, 51.62803025222102], + [5.664711236320244, 51.62898681282355], + [5.664924715102144, 51.62833937010611], + [5.666591203920351, 51.628453100229656], + [5.672607307680685, 51.62868878238771], + [5.672740233628614, 51.62735722009799], + [5.674344723530106, 51.627438394906825], + [5.674278937400564, 51.62813533434011], + [5.680077965748173, 51.628378161821175], + [5.681459876611804, 51.62903105138469] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7b74241e-eafd-45c7-9ccc-f486117a1c30", + "properties": { + "statcode": "GM0757", + "jrstatcode": "2024GM0757", + "statnaam": "Boxtel", + "rubriek": "gemeente", + "id": 196 + }, + "bbox": [ + 145224.91099999845, 394950.7710000016, 156248.15100000054, + 405089.1730000004 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.3177319071598745, 51.6346339351938], + [5.338404933766144, 51.622127055704475], + [5.343810934636907, 51.62297156816237], + [5.343177440557648, 51.616867788720484], + [5.339048269772819, 51.61386069946476], + [5.334862648755185, 51.61363979322993], + [5.332131018084346, 51.61113648713275], + [5.3359635345018726, 51.60309326216789], + [5.340833737468813, 51.604350017892465], + [5.3413856210621224, 51.601468329065355], + [5.342834533747304, 51.600223878978895], + [5.345866868926279, 51.602737919916784], + [5.350985141750662, 51.60396604574268], + [5.3529289625853185, 51.60069064649912], + [5.363138339816421, 51.601779095523746], + [5.374139133490328, 51.60173034732653], + [5.3783445068146625, 51.602546258335465], + [5.380528761783988, 51.60290189900474], + [5.38621214376324, 51.6008689442195], + [5.381443278915583, 51.59620372761484], + [5.387608453438095, 51.59043091254352], + [5.38959136854171, 51.58967142325777], + [5.389056420636331, 51.589117944120844], + [5.386701575088267, 51.5890812337391], + [5.385260253773323, 51.58958697198023], + [5.381442795659568, 51.587601535538994], + [5.384027271710311, 51.58684545748881], + [5.389666609237811, 51.58348409728348], + [5.387825621192139, 51.58245380800409], + [5.388948698474153, 51.58082731099411], + [5.393682114479817, 51.579945465600574], + [5.391450453624588, 51.57616415413585], + [5.392967258507329, 51.57543009699071], + [5.395951791096441, 51.576605713562614], + [5.403815728752315, 51.575907910345606], + [5.402015035765186, 51.573841903262824], + [5.402499050358762, 51.57171382853339], + [5.399343646294226, 51.572194552658246], + [5.399475792170386, 51.566098142898085], + [5.39800942833239, 51.56578144178569], + [5.400083868568597, 51.56240310758541], + [5.4016055321495156, 51.56191485598277], + [5.405201303113507, 51.56202764476662], + [5.402869305262566, 51.557882921178084], + [5.404246632757228, 51.5544313524141], + [5.4042333353428695, 51.54829166965381], + [5.388166034881616, 51.54433233278736], + [5.382674972278291, 51.54372844690578], + [5.36852003914678, 51.54352319034302], + [5.365170911839069, 51.545003026698026], + [5.356910779416933, 51.5447165735921], + [5.3508462460381105, 51.54423572368164], + [5.343931944375863, 51.54447086559005], + [5.3371933983820306, 51.546402723137355], + [5.333135885658849, 51.55110836403132], + [5.324943136863709, 51.551208370661826], + [5.308395626189729, 51.545979832035776], + [5.2989937514118965, 51.54784879878975], + [5.273270948237091, 51.552820793855645], + [5.268900065394559, 51.55372662581737], + [5.264413109003526, 51.55796867911016], + [5.261454601893912, 51.561130432760145], + [5.246177657263301, 51.579478142367364], + [5.247207483205688, 51.58677984828935], + [5.247241353485094, 51.58704048869364], + [5.24764348964858, 51.58961669393675], + [5.248632559810648, 51.59043869769987], + [5.255379592686758, 51.59342414688612], + [5.262907261766904, 51.59992057107186], + [5.268655271111237, 51.60091201154115], + [5.275664517964696, 51.60440549264133], + [5.278743577595759, 51.6047904785625], + [5.275662951503926, 51.60774108698248], + [5.2692395030571255, 51.609608730918254], + [5.26826274409806, 51.61210114500211], + [5.268820716569324, 51.61253775464717], + [5.271733955381259, 51.61283572139747], + [5.270803932143908, 51.61443690490463], + [5.271433653430557, 51.615458306318054], + [5.273485165906665, 51.61557833567251], + [5.275831048755713, 51.61576135842779], + [5.27834227617969, 51.61829671366465], + [5.27771801303264, 51.61917980903537], + [5.2797850073429675, 51.62016044803969], + [5.280567275878803, 51.6222539057781], + [5.281724145230325, 51.62253352631408], + [5.285520709584503, 51.62292789366968], + [5.290923445203576, 51.621327487544804], + [5.294667102178754, 51.62133487188364], + [5.295072408841496, 51.62289358211435], + [5.297579546765953, 51.62509903517264], + [5.299645783449515, 51.62570946259411], + [5.30433268187101, 51.62492383667727], + [5.306806122859774, 51.627825265781155], + [5.30617606781515, 51.62990428797792], + [5.308275203382815, 51.6330345612532], + [5.310955383588508, 51.6336724370083], + [5.3177319071598745, 51.6346339351938] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.63b9f1fb-b220-4aaa-a8cc-572549e3f279", + "properties": { + "statcode": "GM0758", + "jrstatcode": "2024GM0758", + "statnaam": "Breda", + "rubriek": "gemeente", + "id": 197 + }, + "bbox": [ + 104500.37999999896, 388703.9990000017, 119257.30000000075, + 406227.9549999982 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.762652103898817, 51.635033765032055], + [4.765017512173356, 51.63191024272928], + [4.765686181918047, 51.62914042117142], + [4.769582118125882, 51.62950994644503], + [4.787505938592238, 51.637048012740074], + [4.78891264050128, 51.634417697972815], + [4.806969545870522, 51.63260713251495], + [4.811845144662104, 51.63290504499035], + [4.818273092259805, 51.63161564651258], + [4.820035209519325, 51.63062347569839], + [4.821260249482607, 51.62955859556554], + [4.821866534222654, 51.62727431579163], + [4.823779449094048, 51.62769529704285], + [4.826036352571086, 51.62698441787312], + [4.828038397510406, 51.62457819860868], + [4.842683135541849, 51.616985862295316], + [4.83907877446526, 51.60893419244351], + [4.843551929314554, 51.60387614900446], + [4.8398924814002005, 51.60245739932418], + [4.839802968885783, 51.60168142281653], + [4.834072618594188, 51.59741167098577], + [4.834722645246214, 51.59734643025572], + [4.841371182071748, 51.59625956368601], + [4.842020574434511, 51.59602694681942], + [4.842621844838883, 51.58582934208546], + [4.845730039527093, 51.58345025699038], + [4.854397948413529, 51.57937045329735], + [4.8642385221296776, 51.57908886124154], + [4.865370278943817, 51.57291726403207], + [4.870085336669576, 51.570818799294884], + [4.8716845027613065, 51.56711039783674], + [4.869105349426627, 51.566761739755506], + [4.8682783983949, 51.55992592749821], + [4.86731119047429, 51.55886500193224], + [4.864150690740043, 51.5594027152046], + [4.862984965221776, 51.55726955759771], + [4.8437030822780685, 51.554236430115296], + [4.8397802070154325, 51.553185773029334], + [4.837396647558251, 51.54951316889576], + [4.832904274836537, 51.54957963642687], + [4.830769543211568, 51.55035179681951], + [4.824520527574413, 51.54783963631313], + [4.799350925028028, 51.53706418522263], + [4.801325992398353, 51.5360834462468], + [4.798038273421078, 51.535141366399984], + [4.794252963905218, 51.534897112889155], + [4.778105058504075, 51.529449236647224], + [4.777848517244066, 51.52938955254122], + [4.77006045690775, 51.527357290264135], + [4.769313555162194, 51.52538180147896], + [4.7702854919530555, 51.52439668117541], + [4.770019202112711, 51.52364182074195], + [4.768632849953494, 51.525128983930315], + [4.767546071825133, 51.52510529252743], + [4.76446966553466, 51.52404576231155], + [4.760185112300555, 51.51930821089925], + [4.7489341805199565, 51.51896161929548], + [4.7469951420287, 51.51547857395545], + [4.750947630259352, 51.5091067452787], + [4.753472064482721, 51.505795755249345], + [4.760023281296753, 51.502372765957084], + [4.758795439471775, 51.500953134029025], + [4.758359780121517, 51.500157350612525], + [4.755377891250746, 51.50036385794652], + [4.75526002936293, 51.50054183817679], + [4.75269951055176, 51.49980752456647], + [4.748944490671883, 51.49668450789806], + [4.7500032284969, 51.49543139667145], + [4.749699067338224, 51.49436392519616], + [4.748133776577322, 51.491939891003575], + [4.746829771892199, 51.4907041333846], + [4.746561411923654, 51.48950462279201], + [4.733996599867764, 51.48554820654415], + [4.735651989251697, 51.491747729471356], + [4.7421577098049355, 51.50563140087159], + [4.74348381396904, 51.51090972191412], + [4.743983723505078, 51.518761333724576], + [4.743234836453145, 51.5253938417974], + [4.741133878140312, 51.526314559504236], + [4.7401187452712925, 51.52785817303868], + [4.7418016128654745, 51.531096352458675], + [4.741463936085706, 51.53285799373299], + [4.739732577895804, 51.53210976235108], + [4.73879875949359, 51.53226698612041], + [4.735618546034805, 51.53369368073301], + [4.732031462499806, 51.536341150965676], + [4.730199225635984, 51.536416986352364], + [4.730013283577732, 51.53519340077687], + [4.728864457293873, 51.5348417525954], + [4.728174933404435, 51.53366100699733], + [4.725500951397087, 51.533100664700015], + [4.72507862204318, 51.532919045025245], + [4.72248993989996, 51.535158164494284], + [4.728417243993372, 51.53687754825064], + [4.703996817857169, 51.54979854237665], + [4.694186764400467, 51.544848449804256], + [4.694624289019309, 51.55673342449535], + [4.693288484303434, 51.562587340047926], + [4.693715839183337, 51.56795239678327], + [4.6908563704416935, 51.57412456741317], + [4.686050382241292, 51.58757111910717], + [4.686006222422276, 51.5877117664976], + [4.682106226922593, 51.59889335112703], + [4.674881703690293, 51.60019207334787], + [4.675561050611315, 51.60385398381115], + [4.663871879119738, 51.60406868968502], + [4.6643296146701205, 51.60872360084606], + [4.66037711403185, 51.61239758090349], + [4.657984495358704, 51.62045266293735], + [4.660291314014406, 51.62159129008584], + [4.663560205538258, 51.62535941152154], + [4.664807690271867, 51.62836147736558], + [4.6641601693132655, 51.63088228473974], + [4.66507157672892, 51.63431920743105], + [4.672257057849994, 51.63262296828042], + [4.678512501475802, 51.63259402328388], + [4.682753950112349, 51.63363643946105], + [4.690958710859533, 51.63735795979537], + [4.698737983556532, 51.637974697651764], + [4.699059657383532, 51.6380731922291], + [4.704333503549831, 51.6382461499286], + [4.731840121279877, 51.64305625369611], + [4.738536846272982, 51.642813627911714], + [4.745000574548422, 51.64043980450848], + [4.74902903138145, 51.63897964161936], + [4.757368363600153, 51.63757551746305], + [4.762652103898817, 51.635033765032055] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.de6da76d-a80c-4fa7-9bdb-d49cf5f2fb40", + "properties": { + "statcode": "GM0762", + "jrstatcode": "2024GM0762", + "statnaam": "Deurne", + "rubriek": "gemeente", + "id": 198 + }, + "bbox": [ + 177930.99300000072, 373814.4759999998, 192874.9699999988, + 390672.88899999857 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.852573702735848, 51.50414442468248], + [5.860714412705525, 51.49198033156002], + [5.871695195927734, 51.450111965296045], + [5.874965893378916, 51.44655772195858], + [5.875364226539054, 51.44613091517297], + [5.876591361997421, 51.444815805807664], + [5.876660657553467, 51.44474153348288], + [5.879916698507603, 51.44124748034632], + [5.902907706993534, 51.41661497189932], + [5.920002128435333, 51.3978901434998], + [5.9312875158085685, 51.384752676548686], + [5.921229688453702, 51.37916362169957], + [5.919051951757043, 51.377953149058065], + [5.895838310598499, 51.36504372052779], + [5.894552477192963, 51.36433784223029], + [5.878131644516757, 51.35522995720565], + [5.874543143095494, 51.35331272545593], + [5.870359565007229, 51.35253496602653], + [5.866018876808297, 51.35462045480854], + [5.8565806052301514, 51.35376391815381], + [5.853235178068655, 51.3727286447909], + [5.8541031036689315, 51.37642963108441], + [5.838270972192357, 51.39525729580236], + [5.8328984268002895, 51.397580290228994], + [5.831882883916692, 51.39926974926494], + [5.821313359166038, 51.40233159726945], + [5.791152999704376, 51.41163144118793], + [5.7878820390439305, 51.412647323042826], + [5.7880813919448775, 51.413121002731984], + [5.782960369629936, 51.41693105774388], + [5.780367288125507, 51.41823648180278], + [5.776037939345275, 51.41917429429578], + [5.769218471733261, 51.424298427789864], + [5.766245059592778, 51.42527642135821], + [5.762414802092775, 51.430574924612294], + [5.755698871423147, 51.43426787514489], + [5.74395422949273, 51.43736725659715], + [5.734550549839825, 51.43900976747786], + [5.721777633296819, 51.438218903936544], + [5.718245466902878, 51.43873364973598], + [5.718179173472625, 51.44453353420504], + [5.730001517071464, 51.444355694321644], + [5.722848438557563, 51.45319059121028], + [5.724072271814067, 51.45412795571204], + [5.721949804250653, 51.45445192659571], + [5.721122763110878, 51.455768063641386], + [5.71734739737507, 51.46553019716814], + [5.717215044986297, 51.46823803021594], + [5.722973464472519, 51.46729103223999], + [5.723957366495737, 51.47008605100206], + [5.735015117371941, 51.469186957908114], + [5.736090975716659, 51.47192743803064], + [5.722942245077772, 51.48288847453006], + [5.721717705856357, 51.48513146722199], + [5.723474968261509, 51.48421056215607], + [5.725639515790483, 51.48436350574111], + [5.72861719544677, 51.486094354477125], + [5.730428547452672, 51.486217579146725], + [5.736410950425809, 51.48450411569097], + [5.738149571893876, 51.485236493220015], + [5.742608483021136, 51.48556102712663], + [5.755901064948933, 51.487826635160836], + [5.76375124950336, 51.48805247207922], + [5.768256228520278, 51.488970850906995], + [5.77382643700032, 51.488648403506616], + [5.778487785845488, 51.49010917337427], + [5.79164132404862, 51.491480395747736], + [5.7990280502194995, 51.494097016343666], + [5.8013379901815805, 51.49389521592744], + [5.852573702735848, 51.50414442468248] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.df0491e9-c1a7-44cd-bcd1-80da9590ec98", + "properties": { + "statcode": "GM0765", + "jrstatcode": "2024GM0765", + "statnaam": "Pekela", + "rubriek": "gemeente", + "id": 199 + }, + "bbox": [ + 256824.54080000147, 559691.5549999997, 265867.9829999991, + 571446.9910000004 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.98378148997138, 53.117650971803776], + [6.987361598082174, 53.11577303142678], + [6.987692982915232, 53.116103525686015], + [7.022239704795768, 53.11608198251972], + [7.0280272213453925, 53.11611212877432], + [7.029754349437196, 53.115097082694604], + [7.025959450455527, 53.11243171205198], + [7.028177015032968, 53.11108949444987], + [7.029885649901322, 53.10831562591801], + [7.04260885191196, 53.101887999271625], + [7.03822975505968, 53.09707469983521], + [7.037532905358728, 53.09630940926807], + [7.015445869600892, 53.07177413555377], + [7.013333022160933, 53.06944051108821], + [7.010133386196178, 53.073701699220145], + [7.000809752306094, 53.063306629738186], + [6.994928875841666, 53.05684252001404], + [6.992910121499327, 53.05509610527333], + [6.990362820561852, 53.05438183879062], + [6.987828459708604, 53.049076391166], + [6.980387868631474, 53.04090878834677], + [6.955790045078969, 53.013860657076556], + [6.954654138592898, 53.014145189889696], + [6.953999988110559, 53.01432857203779], + [6.941662907325547, 53.01741926068197], + [6.93585396752884, 53.01962292189207], + [6.911911025503392, 53.03471126276664], + [6.907702759065396, 53.038880971886435], + [6.905525011847069, 53.04362951036806], + [6.920629164499534, 53.04525508954145], + [6.919904950627579, 53.04931216909215], + [6.933343544227774, 53.04961279448131], + [6.9330219078561415, 53.0535877851335], + [6.9244404957052605, 53.05777745645617], + [6.929094287071273, 53.07182908117712], + [6.9296060222314315, 53.07336403260512], + [6.930594509146235, 53.07285161760483], + [6.936893090986302, 53.07742188034095], + [6.94383642170342, 53.08191417477372], + [6.95540953615499, 53.093270878341876], + [6.956890874316832, 53.094710661223694], + [6.957951533262238, 53.094354861899276], + [6.958397271850527, 53.09526669049353], + [6.959382095847822, 53.094936721141444], + [6.96059812582888, 53.09580134586039], + [6.960784800625543, 53.09743023052103], + [6.961735259108778, 53.11002129733445], + [6.965294910407109, 53.110831060309536], + [6.967389871162932, 53.11135724935031], + [6.979749049288736, 53.11919620737839], + [6.982535279153917, 53.11912326303971], + [6.984452114432141, 53.118110274126686], + [6.98378148997138, 53.117650971803776] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.be8af921-0275-4830-add3-4ade202e17bf", + "properties": { + "statcode": "GM0766", + "jrstatcode": "2024GM0766", + "statnaam": "Dongen", + "rubriek": "gemeente", + "id": 200 + }, + "bbox": [ + 121559.386, 402130.49599999934, 128489.10399999842, 410107.0540000014 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.957627765751014, 51.66030732544184], + [4.957896724914466, 51.65153188536334], + [4.976871891111607, 51.65359703615599], + [4.987266910127334, 51.65460893119486], + [4.989336721340156, 51.64879362239477], + [4.98936094173398, 51.64869462401972], + [5.002419151051776, 51.613025692383026], + [5.0044921276944105, 51.60788676831001], + [4.991544334950602, 51.60791620827835], + [4.983513709802208, 51.60736413252045], + [4.982359900002206, 51.60866561376225], + [4.977553585798171, 51.60909064195259], + [4.96532391121493, 51.612935182217484], + [4.96078162214467, 51.61348658153067], + [4.957862099399294, 51.61375852738698], + [4.952931247985199, 51.61472315235889], + [4.95026563523685, 51.61241186911163], + [4.950248472185196, 51.61239370992772], + [4.947846386719574, 51.61117029243532], + [4.943590918586454, 51.61002923139375], + [4.940311950294774, 51.61019844176052], + [4.937040547087887, 51.611021147221216], + [4.937314375466151, 51.611396623801944], + [4.926437624099198, 51.613234163595024], + [4.918080591071829, 51.61629452940702], + [4.911881665093595, 51.61539925513547], + [4.911167283791475, 51.6161565693822], + [4.911326764395357, 51.6180617951567], + [4.909899589087149, 51.61832710828727], + [4.9135587828958815, 51.6196376865644], + [4.915554433642408, 51.622432858753896], + [4.9042792111502305, 51.624332572640014], + [4.905019149336986, 51.62453244357162], + [4.9118225040049195, 51.62636494908245], + [4.9121173346537645, 51.62682547682483], + [4.910537767973162, 51.627425951716624], + [4.910028091598329, 51.62946005329847], + [4.911147548765318, 51.63124821553246], + [4.913191687961357, 51.63402276037289], + [4.928946344414801, 51.646673117685935], + [4.929280208934049, 51.64853232020904], + [4.9301058882273505, 51.647954772100626], + [4.930354376172142, 51.64954139406223], + [4.932815728061176, 51.65069770869293], + [4.932906360794026, 51.65157645086497], + [4.932459993337647, 51.655823676140834], + [4.9344103032544915, 51.65725366924674], + [4.933000257518242, 51.65889347106879], + [4.933126177783237, 51.659884149020236], + [4.931047553611336, 51.663552072183], + [4.930942919923052, 51.6671016367949], + [4.926775586287247, 51.66908741924744], + [4.925032353795833, 51.67300929624856], + [4.925073922745669, 51.67498029885635], + [4.933169421303784, 51.6767499757076], + [4.943575772325614, 51.6789179990118], + [4.9442484765405, 51.67888572303824], + [4.944348240848031, 51.67834339447823], + [4.945135892800019, 51.67796939622914], + [4.945811405800061, 51.67706619669671], + [4.947506612024715, 51.67694359514578], + [4.953732003291721, 51.670769148182536], + [4.956443490783076, 51.66401746811235], + [4.957627765751014, 51.66030732544184] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.317d440b-c6e0-4195-8417-2b46427208b2", + "properties": { + "statcode": "GM0770", + "jrstatcode": "2024GM0770", + "statnaam": "Eersel", + "rubriek": "gemeente", + "id": 201 + }, + "bbox": [ + 144596.25499999896, 369891.62999999896, 155118.8049999997, + 386609.57660000026 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.333816579649218, 51.46853656618219], + [5.3560022805484735, 51.46231472516718], + [5.35838913752898, 51.46701532722347], + [5.369446549512172, 51.46531660232972], + [5.367168687752819, 51.45943072067472], + [5.363512595456269, 51.46026489911583], + [5.361489495671311, 51.4573623392354], + [5.356718446793026, 51.453597722874086], + [5.36121275078395, 51.448588492426595], + [5.360830211217496, 51.443118691667564], + [5.357398471540416, 51.439872706691446], + [5.356916894119809, 51.438203502859274], + [5.355794790557913, 51.434110194884894], + [5.354193784865457, 51.43299987780017], + [5.352856785099421, 51.43282549260684], + [5.346255164727533, 51.428956231791645], + [5.345534746199484, 51.43092242279324], + [5.342368804720918, 51.431067750912256], + [5.34336982825595, 51.42743624354914], + [5.339842233656806, 51.42555794224859], + [5.319371416154898, 51.42379530218915], + [5.319996531623338, 51.41992794731412], + [5.316089764926076, 51.4194092718095], + [5.315895673424265, 51.41891100034981], + [5.317148703938281, 51.41491389361188], + [5.321789957654129, 51.408691624654026], + [5.3236643295192305, 51.40618721221227], + [5.331593357980239, 51.40628572328768], + [5.335136833675714, 51.40740267172142], + [5.354379228753864, 51.40877269802924], + [5.367617561498898, 51.40007118048515], + [5.370687022619419, 51.398048001469114], + [5.370212590445381, 51.39762177436753], + [5.372282365036492, 51.39274187730207], + [5.372484683227426, 51.3922464410188], + [5.374034718281497, 51.38856541889497], + [5.388907030149399, 51.37646010365587], + [5.38802653151113, 51.3752678700216], + [5.382605516457626, 51.3728313101597], + [5.381133209040725, 51.37113090430048], + [5.378211476935918, 51.36939360610482], + [5.375637831628432, 51.36876256390611], + [5.374066807401635, 51.36952839975154], + [5.370496373597551, 51.369311436545296], + [5.3643222519463185, 51.36697609970629], + [5.355752350071096, 51.3625316330822], + [5.352451180917472, 51.3618210201635], + [5.351581765281313, 51.360703074833694], + [5.348280378368169, 51.3596318897065], + [5.345773931315377, 51.357517071239485], + [5.344744547039395, 51.35490775326897], + [5.3425885768255394, 51.35267231070152], + [5.346783717305873, 51.347516242650585], + [5.341992231006033, 51.34421792602431], + [5.3471213097877, 51.33745315530378], + [5.341740314152369, 51.33582537237307], + [5.337839265346211, 51.33480408696488], + [5.332203365559176, 51.33316551334898], + [5.331480663904904, 51.33360081866105], + [5.326353771384669, 51.33262148193802], + [5.326141729754888, 51.33189548629575], + [5.324010013579953, 51.33290245639843], + [5.321158787600069, 51.32956952874391], + [5.322951669310567, 51.32869222205276], + [5.318876752399031, 51.32485505397862], + [5.3167327103366295, 51.32345389174892], + [5.31616756672903, 51.323683822617674], + [5.309551598560465, 51.32104873118373], + [5.308056095294968, 51.32182834434511], + [5.2921737462104055, 51.31823746112284], + [5.2634105720534, 51.31928179983632], + [5.285972547563536, 51.33633888589339], + [5.279096624039964, 51.353338922553654], + [5.278922465107349, 51.35376933544846], + [5.27529883547214, 51.36272298211399], + [5.2758912032249805, 51.36439583841152], + [5.277442685788855, 51.368776579396], + [5.2774437469967, 51.36877957633431], + [5.279275107456971, 51.37386124307448], + [5.279765763428943, 51.37532882507267], + [5.285915411268839, 51.384469858122515], + [5.29032359421431, 51.38613001158996], + [5.289414988085757, 51.38892265108751], + [5.298815742613558, 51.3896818406947], + [5.302711598085715, 51.39071118034782], + [5.306283431185476, 51.39095912802885], + [5.307099570713, 51.390617005114976], + [5.310865871585291, 51.39071499598754], + [5.31044419756369, 51.39605508864816], + [5.3136500944048874, 51.399440911619976], + [5.307295205531912, 51.406114264483215], + [5.302987120838697, 51.40750085449826], + [5.299967686582836, 51.40778935138788], + [5.298021551488142, 51.40715431353791], + [5.29625350201183, 51.40775189432117], + [5.290148977712874, 51.40408117416868], + [5.281426665836658, 51.404994663206324], + [5.278386803218675, 51.40865040625089], + [5.276393315361597, 51.40934818514733], + [5.272903675840229, 51.40946998936177], + [5.248775817610895, 51.42255773438624], + [5.249446467382487, 51.422953904306674], + [5.244782510158733, 51.426253937910985], + [5.2433805075090225, 51.42548261637947], + [5.237704666933674, 51.42855889787026], + [5.237597737793309, 51.43071422296992], + [5.239169526156778, 51.43099051609137], + [5.239062441327136, 51.43366952318342], + [5.25248218361666, 51.43793921347286], + [5.248819963546613, 51.44308190791196], + [5.24839613069742, 51.4456310274728], + [5.249025104257965, 51.44572070184373], + [5.2588742708531475, 51.44712453187053], + [5.260442823465198, 51.4482353756833], + [5.2646627644810815, 51.44892776828151], + [5.2710203285359265, 51.44903281951683], + [5.27925339255479, 51.45021940983884], + [5.28224964861962, 51.452250029476055], + [5.285018312105713, 51.4541115836578], + [5.294497666279075, 51.45528347466702], + [5.297229823601189, 51.45313795488158], + [5.29806828728189, 51.45462579108486], + [5.30317826698652, 51.45858548930849], + [5.303096652130904, 51.45914920895548], + [5.314251773280749, 51.46078095214802], + [5.315077500521419, 51.461372019659464], + [5.318803907667853, 51.461481393903085], + [5.320423761830598, 51.46086814320234], + [5.32420471423368, 51.46272253456316], + [5.325896321100276, 51.46287659993254], + [5.3258399779557335, 51.46379170635545], + [5.328041975710338, 51.464226363556534], + [5.330512264308702, 51.463840893859626], + [5.331597937876138, 51.46283189776735], + [5.3345990006491935, 51.462934793842074], + [5.332626884576331, 51.46542220483999], + [5.334728039215636, 51.46587476493421], + [5.333816579649218, 51.46853656618219] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e58c52b9-a2cd-4d89-bba9-7ddc534d474b", + "properties": { + "statcode": "GM0772", + "jrstatcode": "2024GM0772", + "statnaam": "Eindhoven", + "rubriek": "gemeente", + "id": 202 + }, + "bbox": [ + 152881.23999999836, 379002.7049999982, 166228.579, 389786.2349999994 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.476447601711379, 51.49706834047513], + [5.479144674364623, 51.496613048156796], + [5.49621393294774, 51.49677627013403], + [5.496377639269504, 51.49677809624758], + [5.511424142114053, 51.49692216264557], + [5.513325803774382, 51.4962514015997], + [5.513387255096444, 51.49548154427838], + [5.515556062738265, 51.493341651202215], + [5.512491769455503, 51.49102840114204], + [5.512456429526454, 51.48956182136081], + [5.510573922621157, 51.48735403211577], + [5.508414595921447, 51.48768431115052], + [5.5081483580058395, 51.48542457142827], + [5.506597375491263, 51.48375745098395], + [5.505525384789338, 51.483564568718556], + [5.50602018799032, 51.482300459552654], + [5.509560989249301, 51.47923634486116], + [5.5079424286423055, 51.47856703792908], + [5.5087516502296925, 51.47705983195233], + [5.508350328063845, 51.47555480143525], + [5.508090003723995, 51.4744618604921], + [5.5080964999813435, 51.47116973796766], + [5.510110066188795, 51.4698741089718], + [5.50904166187585, 51.46942619282852], + [5.511581652848431, 51.46749730218453], + [5.512866203923047, 51.4666004811524], + [5.514119462726071, 51.46652217121076], + [5.514389782016347, 51.465556657838604], + [5.514937970112401, 51.464975648184115], + [5.515893711253244, 51.46513035253577], + [5.516930377281415, 51.46424073605896], + [5.517582306625338, 51.464347549099045], + [5.5189857057023515, 51.46290991352117], + [5.518113928487554, 51.462952315747756], + [5.518271888740928, 51.4626284740876], + [5.520954583320272, 51.46155183723232], + [5.521068900245866, 51.461016394485156], + [5.5218713803059405, 51.461094920941385], + [5.524918426664782, 51.45949421675389], + [5.5298401082713395, 51.45869858853619], + [5.53100452966293, 51.45724546832779], + [5.532529529022602, 51.45720547388811], + [5.531692584363976, 51.45561923956082], + [5.531586079616238, 51.45554067565612], + [5.5344710655299885, 51.451566541060494], + [5.5388262548940626, 51.44944283726127], + [5.539079065661206, 51.448445904786155], + [5.5401512344106445, 51.4479750596288], + [5.5385221563234035, 51.44561391686313], + [5.539408547703138, 51.44456654238903], + [5.538511895867968, 51.44353596151134], + [5.541405409975152, 51.44104305710616], + [5.541318216560159, 51.4404643008432], + [5.540710537777218, 51.4405142350757], + [5.5412586684324285, 51.43971970257642], + [5.5426591121384305, 51.439238439998896], + [5.542626247038093, 51.43997941259742], + [5.543925217027441, 51.439602997349496], + [5.5435642414690465, 51.43871059064051], + [5.544384087105612, 51.437214821109876], + [5.54588678347779, 51.43657916264175], + [5.546704667361424, 51.43391171189284], + [5.548678971152387, 51.43467727449301], + [5.546779242882721, 51.433675323082525], + [5.540249682848841, 51.431334708035656], + [5.534752772621908, 51.431684060260004], + [5.534737951928141, 51.431676329874854], + [5.532035501640759, 51.43198887581347], + [5.531237189506133, 51.4289516187185], + [5.5317783878551126, 51.42802605665489], + [5.5303493065268485, 51.427200720239064], + [5.525178328079437, 51.427898012669694], + [5.525802234142504, 51.405151453662505], + [5.525814949023648, 51.404697137633065], + [5.5076128083042395, 51.404532214225846], + [5.505184444289796, 51.403417404295666], + [5.504873934582972, 51.400154818726705], + [5.504637175761146, 51.40011366478852], + [5.503624499509648, 51.40152226810106], + [5.499850966942401, 51.40385773999298], + [5.490047747573786, 51.40445181842775], + [5.482316010147577, 51.404652997312375], + [5.480372098477995, 51.40468914192875], + [5.480069955116678, 51.40473679249961], + [5.477104515207927, 51.40487574823141], + [5.469321557846218, 51.40534964450399], + [5.461978637416672, 51.40495408758699], + [5.461800865830542, 51.40495994548893], + [5.453509515197124, 51.40529311573359], + [5.436188923438437, 51.40497634875443], + [5.435749471552274, 51.404189686951064], + [5.435355931554821, 51.40336336968183], + [5.431191563020223, 51.402062729634515], + [5.43096538984054, 51.40263734564043], + [5.429903285331062, 51.40281006327509], + [5.427276715087595, 51.402653607263304], + [5.4253830891071795, 51.40442274359931], + [5.428652174341545, 51.40521347374334], + [5.429851692992303, 51.40617767031853], + [5.429425579261356, 51.411560885161826], + [5.427372890948414, 51.417013066501674], + [5.427807568363708, 51.42185794329225], + [5.42790932293336, 51.42217103128311], + [5.426331412804601, 51.43040752680224], + [5.42428593971327, 51.431533584500976], + [5.419944015534021, 51.43285290410091], + [5.417168456636824, 51.43148792287761], + [5.4167393196164, 51.43171567129283], + [5.414634719867948, 51.430166326479366], + [5.4120736797690485, 51.431341173972235], + [5.410699434848458, 51.43506177399241], + [5.4090011706685095, 51.434459831343744], + [5.407437130849707, 51.43601391277397], + [5.404922884639168, 51.43712798123392], + [5.400794913216137, 51.43296752880946], + [5.3976465932193385, 51.4336426243515], + [5.396340067295546, 51.43392341457344], + [5.393805034804551, 51.434577656734504], + [5.3911429767166, 51.436521847704974], + [5.389221296448876, 51.43763570004497], + [5.3873744008143465, 51.43780160604044], + [5.37968636712116, 51.43509235813089], + [5.379130506761372, 51.436609952263126], + [5.373198556173442, 51.437608248211575], + [5.371249055102869, 51.43890879707071], + [5.367800246522368, 51.438365291333724], + [5.366822394002549, 51.4374485325666], + [5.366899382964696, 51.436205348785585], + [5.362226615696128, 51.435464338703554], + [5.362252654983229, 51.4360554936876], + [5.356916894119809, 51.438203502859274], + [5.357398471540416, 51.439872706691446], + [5.360830211217496, 51.443118691667564], + [5.36121275078395, 51.448588492426595], + [5.356718446793026, 51.453597722874086], + [5.361489495671311, 51.4573623392354], + [5.363512595456269, 51.46026489911583], + [5.367168687752819, 51.45943072067472], + [5.369446549512172, 51.46531660232972], + [5.379150756852553, 51.46384234352242], + [5.38467770239242, 51.46766003457117], + [5.387538099684872, 51.46820582181018], + [5.387114399228933, 51.469271572238625], + [5.389576108446422, 51.47059912458557], + [5.390685731286425, 51.47063815988405], + [5.390826157717972, 51.4713343116888], + [5.39118688815015, 51.47175640408732], + [5.390518508484994, 51.4851542565184], + [5.391041639485211, 51.485037306408614], + [5.391016562157046, 51.48555482874212], + [5.3960544349134345, 51.484397090727384], + [5.401293544120124, 51.483833254292975], + [5.407146110863857, 51.48407013637763], + [5.411708326429572, 51.48464628686753], + [5.411911757068948, 51.48468305941116], + [5.4179952562994735, 51.48623699429917], + [5.42715568912572, 51.489611993315116], + [5.442167817077179, 51.49383879954], + [5.4425705689183, 51.49392721604361], + [5.449783324024511, 51.49524937167729], + [5.451297308544778, 51.495464143600806], + [5.4638951446537565, 51.496978501556214], + [5.468249986604104, 51.49684394204311], + [5.468738008627428, 51.495792097177066], + [5.472133174437789, 51.49574223361886], + [5.476447601711379, 51.49706834047513] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.88ad4b60-f27e-4f46-bfc4-e4bafab210a2", + "properties": { + "statcode": "GM0777", + "jrstatcode": "2024GM0777", + "statnaam": "Etten-Leur", + "rubriek": "gemeente", + "id": 203 + }, + "bbox": [ + 99754.02600000054, 392289.78500000015, 106970.307, 405334.1889999993 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.663560205538258, 51.62535941152154], + [4.660291314014406, 51.62159129008584], + [4.657984495358704, 51.62045266293735], + [4.66037711403185, 51.61239758090349], + [4.6643296146701205, 51.60872360084606], + [4.663871879119738, 51.60406868968502], + [4.675561050611315, 51.60385398381115], + [4.674881703690293, 51.60019207334787], + [4.682106226922593, 51.59889335112703], + [4.686006222422276, 51.5877117664976], + [4.686050382241292, 51.58757111910717], + [4.6908563704416935, 51.57412456741317], + [4.693715839183337, 51.56795239678327], + [4.693288484303434, 51.562587340047926], + [4.694624289019309, 51.55673342449535], + [4.694186764400467, 51.544848449804256], + [4.687076719764645, 51.54260302785052], + [4.681079406616888, 51.540695364593695], + [4.660423773946655, 51.526392141057656], + [4.654217017220967, 51.52414513843558], + [4.6523845164151165, 51.52192661771071], + [4.6509265263627615, 51.52128729537303], + [4.643061514744437, 51.518147394299575], + [4.638157788765851, 51.5172052398846], + [4.638716047853591, 51.5244126552197], + [4.640110074891266, 51.54342316121106], + [4.637868401746281, 51.542325974653046], + [4.63608348543297, 51.54318899615278], + [4.6352857337964535, 51.54235140021243], + [4.632777252419559, 51.54424918609309], + [4.631775803092161, 51.54388153225712], + [4.63007772510344, 51.54716178243546], + [4.628782391984629, 51.54662708105819], + [4.627016654032053, 51.548081121880564], + [4.625809344288126, 51.54741155954429], + [4.624795702709342, 51.55238557355784], + [4.615790464232136, 51.553179420491006], + [4.611003273244399, 51.55433847621386], + [4.610107846571745, 51.55360287399521], + [4.608136334203586, 51.55424161186123], + [4.6065712634556455, 51.55602308258958], + [4.601658748035435, 51.5586948864391], + [4.596819219277577, 51.560020881233406], + [4.592000383122493, 51.56024635305579], + [4.59185783260504, 51.56089944842057], + [4.591761315613386, 51.56103164863113], + [4.592222477610132, 51.56128932641351], + [4.590420540452121, 51.56494017913325], + [4.59064572258934, 51.56597868082148], + [4.594670780340593, 51.56674040682183], + [4.595963223392616, 51.57336318705569], + [4.595979078486161, 51.5756838351558], + [4.598557829017328, 51.58437818999421], + [4.598251696557705, 51.5856202847747], + [4.596804499274191, 51.590348401688715], + [4.608672286758824, 51.60216494234517], + [4.610606004880199, 51.60314225406624], + [4.613891623070715, 51.60803798205316], + [4.610729673335507, 51.609541215186994], + [4.610932474926188, 51.61220272204232], + [4.609294548712141, 51.61316376831584], + [4.6089136883335415, 51.61495452320353], + [4.606706645360221, 51.61661625230902], + [4.603564983113851, 51.617203684159655], + [4.604351523243087, 51.62086013817094], + [4.601233178213057, 51.62523889112882], + [4.606290864856685, 51.62772018187576], + [4.611321126152724, 51.62850296732813], + [4.616820503642302, 51.62762354029766], + [4.6227518989145775, 51.62469072809674], + [4.624435304121387, 51.62426561261213], + [4.629206111141957, 51.62404829661971], + [4.634342167345342, 51.625443091368126], + [4.635700728143756, 51.62629323751398], + [4.636646286399133, 51.62864425265582], + [4.6380241816664425, 51.62971367966642], + [4.643916955848878, 51.63237881147692], + [4.658175747288385, 51.6345866857003], + [4.66507157672892, 51.63431920743105], + [4.6641601693132655, 51.63088228473974], + [4.664807690271867, 51.62836147736558], + [4.663560205538258, 51.62535941152154] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ae4cbe95-aa52-4ebc-8108-e7e9e0b5df58", + "properties": { + "statcode": "GM0779", + "jrstatcode": "2024GM0779", + "statnaam": "Geertruidenberg", + "rubriek": "gemeente", + "id": 204 + }, + "bbox": [ + 116048.31300000101, 409347.7109999992, 123596.26399999857, 414709.375 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.890031386041467, 51.71976849092477], + [4.901550378059516, 51.71867236886818], + [4.917991152319767, 51.71995936614485], + [4.9210070407424045, 51.71140922520242], + [4.9269578614297815, 51.69426273058683], + [4.9291090519037235, 51.688135088216185], + [4.930362399500565, 51.6842809025916], + [4.9307598694751755, 51.683510185725936], + [4.933169421303784, 51.6767499757076], + [4.925073922745669, 51.67498029885635], + [4.925032353795833, 51.67300929624856], + [4.917520963660354, 51.675258437408104], + [4.9137808831960035, 51.675048918793074], + [4.9128270062399775, 51.67659001717827], + [4.906551547577757, 51.67595309626376], + [4.906931915195107, 51.674943524384354], + [4.898721093632619, 51.6741833374142], + [4.8968355520444256, 51.67477446130674], + [4.880500457474377, 51.67420789744383], + [4.880228766894699, 51.67183546130771], + [4.879713313398443, 51.67204316161865], + [4.87655024558928, 51.67333145287832], + [4.875787113055425, 51.67473331120091], + [4.87202028499277, 51.67517472284719], + [4.871248286866419, 51.675820177216195], + [4.866203491181668, 51.676105912382965], + [4.8626521389120825, 51.67706678668443], + [4.8606806495341885, 51.678708609899225], + [4.8565804889307165, 51.680242673342875], + [4.856621778599258, 51.68166786062364], + [4.8510602724244025, 51.683964658522505], + [4.846211207673899, 51.684491543140794], + [4.843391262918841, 51.68601738649426], + [4.842265579104931, 51.68285559747825], + [4.842685569176086, 51.67973350266804], + [4.8423679313917605, 51.67965404692623], + [4.839624346900573, 51.684020732798984], + [4.831942031028444, 51.69179099728402], + [4.829657248089459, 51.695634883149395], + [4.826669174338842, 51.7043582928028], + [4.824133546679028, 51.709540937703544], + [4.823610411152653, 51.71128815268457], + [4.829766917632194, 51.71158581544897], + [4.836904719393343, 51.712611863763094], + [4.841592415924551, 51.71344947768782], + [4.8730549209807315, 51.7199982676511], + [4.890017175016667, 51.719769778031356], + [4.890031386041467, 51.71976849092477] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.db018fff-70bf-4a4a-910f-433dde4b51ad", + "properties": { + "statcode": "GM0784", + "jrstatcode": "2024GM0784", + "statnaam": "Gilze en Rijen", + "rubriek": "gemeente", + "id": 205 + }, + "bbox": [ + 116284.0850000009, 391338.0461000018, 126722.75, 403151.1629999988 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.940311950294774, 51.61019844176052], + [4.943590918586454, 51.61002923139375], + [4.947846386719574, 51.61117029243532], + [4.948807685997269, 51.610376683727644], + [4.961164590155374, 51.6061774575739], + [4.9678435962892955, 51.60285898937711], + [4.968736830918296, 51.60205749505429], + [4.967774288367847, 51.59768545494468], + [4.972859688746222, 51.597305693467526], + [4.973399508564013, 51.592073976317124], + [4.972339481581218, 51.58515265186817], + [4.970275308794497, 51.57722419556019], + [4.969197368112002, 51.57726895853858], + [4.966778550533264, 51.57366251968911], + [4.968990322651161, 51.57130476150396], + [4.968101071022773, 51.569321846799944], + [4.967831950326516, 51.568721945428386], + [4.9665677626967915, 51.56782842268143], + [4.966954448245496, 51.56731130009192], + [4.964183009909947, 51.565242768908625], + [4.954368691420584, 51.56225381818057], + [4.95114531012869, 51.56091753452276], + [4.951180192625626, 51.5580482615712], + [4.9529822776789185, 51.55341317063182], + [4.953479031754132, 51.55052834296105], + [4.964128292906565, 51.549912100722096], + [4.969236049575846, 51.54899380627558], + [4.97845451867069, 51.544814627010524], + [4.979565147844995, 51.54420169220539], + [4.976665531282883, 51.54241851250248], + [4.97546006383119, 51.54013286562536], + [4.974136010296693, 51.539840411304276], + [4.962572745934026, 51.5258644129153], + [4.956643640568355, 51.518676602621454], + [4.911062843890669, 51.510081285567864], + [4.8662324430237325, 51.53806660510657], + [4.854563986962187, 51.53392658413709], + [4.851050402670457, 51.53410227457409], + [4.844738938707749, 51.53332769818509], + [4.845060614524174, 51.528481553991995], + [4.842351820206017, 51.526845066119456], + [4.829766328487475, 51.52785880428469], + [4.829260986513577, 51.529689433971946], + [4.831324946714565, 51.52947268100856], + [4.835703864260774, 51.53152660603577], + [4.836794883099718, 51.532770891392964], + [4.836113159365308, 51.53446553593712], + [4.834616543299126, 51.53514853843068], + [4.83485947789196, 51.53861754540855], + [4.84835744924438, 51.5429843707176], + [4.8518191541440645, 51.54468369835334], + [4.852706063194358, 51.54521146077152], + [4.864261136059156, 51.55202014607339], + [4.864545173853687, 51.55350317813245], + [4.862984965221776, 51.55726955759771], + [4.864150690740043, 51.5594027152046], + [4.86731119047429, 51.55886500193224], + [4.8682783983949, 51.55992592749821], + [4.869105349426627, 51.566761739755506], + [4.8716845027613065, 51.56711039783674], + [4.870085336669576, 51.570818799294884], + [4.865370278943817, 51.57291726403207], + [4.8642385221296776, 51.57908886124154], + [4.8691713750112, 51.57844190152702], + [4.868966109390642, 51.58100243275432], + [4.889620378743492, 51.58881109520078], + [4.890245540087028, 51.58903605766958], + [4.8999000556781995, 51.59266738621446], + [4.899922544813301, 51.59267523176941], + [4.913785893604048, 51.59809047066148], + [4.911635156528381, 51.60006717138264], + [4.913113294591784, 51.60039662936998], + [4.91377507095579, 51.59970727838132], + [4.916268734613237, 51.60001556156542], + [4.916150682221476, 51.60081160178457], + [4.918498989258532, 51.601367429696225], + [4.917442810628728, 51.60854073740417], + [4.911881665093595, 51.61539925513547], + [4.918080591071829, 51.61629452940702], + [4.926437624099198, 51.613234163595024], + [4.937314375466151, 51.611396623801944], + [4.937040547087887, 51.611021147221216], + [4.940311950294774, 51.61019844176052] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4d3dafd6-0fa2-462b-8f99-713b3c37ddbe", + "properties": { + "statcode": "GM0785", + "jrstatcode": "2024GM0785", + "statnaam": "Goirle", + "rubriek": "gemeente", + "id": 206 + }, + "bbox": [ + 125532.13100000098, 386948.54, 135813.35799999908, 394654.0760000013 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.993407457462179, 51.538410991301745], + [5.00156823487032, 51.53748782567725], + [5.020503688160854, 51.53895403886456], + [5.022499770228943, 51.5384596146739], + [5.027520471864166, 51.53343817725346], + [5.030500980161728, 51.529507210347695], + [5.032725262142497, 51.53016771918327], + [5.044364047072092, 51.530832714775855], + [5.044825033023364, 51.530642579172095], + [5.050785044712438, 51.52995219000216], + [5.0522744888896245, 51.52976367929197], + [5.052772423089919, 51.53241629783682], + [5.051710219595342, 51.535058614177046], + [5.055461497280189, 51.53608087119567], + [5.060322926620698, 51.537869156917104], + [5.061879528372276, 51.537710505981494], + [5.062912489623238, 51.537843983503116], + [5.064680259523745, 51.53742559673958], + [5.0735270195833, 51.536743989389734], + [5.073827122661745, 51.53671667055407], + [5.083465386255392, 51.53582395350876], + [5.085483034467038, 51.53559283159575], + [5.096474550786552, 51.53496681288016], + [5.102823918175366, 51.5360427704612], + [5.10609689442096, 51.53742697758306], + [5.109820583301512, 51.53938317454063], + [5.110645332850198, 51.53890236565062], + [5.108678939852682, 51.5372322424979], + [5.109588948167247, 51.53680540530898], + [5.105652816384041, 51.53333739689989], + [5.104528697752248, 51.53383661994453], + [5.1000593545322035, 51.531454983996305], + [5.105060705850723, 51.52817589080072], + [5.098141092282585, 51.52495238246365], + [5.100490095484143, 51.52296972135864], + [5.098750743466646, 51.52200645788398], + [5.100947280166622, 51.52051970271272], + [5.095023734390812, 51.51725160096732], + [5.098441608185178, 51.51536059989196], + [5.0960354152711576, 51.50991218979905], + [5.0881869033132245, 51.51129750735093], + [5.072998000487205, 51.50287503969433], + [5.076915040974192, 51.50079651767116], + [5.062722972524177, 51.49285224518851], + [5.069293116598929, 51.48683587829393], + [5.068367917504957, 51.48533475009383], + [5.051580275667158, 51.48713195859545], + [5.048791776429387, 51.47191353412523], + [5.049865470518108, 51.47182583668982], + [5.049740820891922, 51.471108149389316], + [5.045931785165589, 51.471114751231276], + [5.043427159240386, 51.4746858071256], + [5.042487986074348, 51.47482798173929], + [5.043144019544356, 51.47517553289951], + [5.037888458708058, 51.479349844791635], + [5.039172428896301, 51.479774979679384], + [5.040093735570901, 51.485099583867], + [5.0402102235902335, 51.48653309136621], + [5.0387025780530985, 51.486544242955844], + [5.03878803310355, 51.4870006034851], + [5.033155628011271, 51.48719427160151], + [5.032058539484474, 51.48573239487571], + [5.022278717816092, 51.481778577637364], + [5.016522482126589, 51.475439158298094], + [5.015272492290786, 51.47632935616913], + [5.008338213103683, 51.47329958514014], + [5.0064110513539575, 51.47511015662494], + [4.999301716435932, 51.479306377749396], + [4.999788297337558, 51.480501921491914], + [4.999176405628895, 51.48201587772815], + [4.987993346189467, 51.48304472644774], + [4.988420316700682, 51.48398465491871], + [4.990096245119663, 51.48507807524987], + [4.99133643274975, 51.484421163712135], + [4.993391038372017, 51.48547930719701], + [4.991637888453159, 51.48618245917145], + [4.992618492353416, 51.48745351213123], + [4.997228474014113, 51.48853841290662], + [5.0003639438762315, 51.491862473666274], + [4.9978038283891735, 51.4928449654732], + [4.997158893442718, 51.49204964775894], + [4.992466436479754, 51.493945535806716], + [4.996756578764898, 51.49677471386328], + [4.9946429703047635, 51.497650691768726], + [4.986739820358542, 51.49532926506758], + [4.985775985163466, 51.49975454475263], + [4.989655111021883, 51.50575507824081], + [4.992298365796971, 51.51224760151634], + [4.989917963382039, 51.513149558913824], + [4.982496198976588, 51.51408805574602], + [4.98455460160387, 51.51788211694502], + [4.980868797123014, 51.51863092719159], + [4.977595842229813, 51.52165162109418], + [4.968750850186071, 51.5211816222888], + [4.962572745934026, 51.5258644129153], + [4.974136010296693, 51.539840411304276], + [4.97546006383119, 51.54013286562536], + [4.987628861346058, 51.54002282079671], + [4.993407457462179, 51.538410991301745] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f7198f35-bff9-438f-aee3-8f5096247467", + "properties": { + "statcode": "GM0794", + "jrstatcode": "2024GM0794", + "statnaam": "Helmond", + "rubriek": "gemeente", + "id": 207 + }, + "bbox": [ + 167704.61199999973, 383262.01000000164, 179240.61300000176, + 391157.62739999965 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.614828462949722, 51.50044764434929], + [5.618730597233208, 51.49863892468455], + [5.622037070628521, 51.498090542585985], + [5.626066004207454, 51.498285436498755], + [5.626930623210973, 51.49627512136894], + [5.630939105340609, 51.49511062568801], + [5.634822217397029, 51.494883161657825], + [5.641138847566632, 51.498303710613165], + [5.644156463386044, 51.50123840704827], + [5.646385426963598, 51.502096780904694], + [5.6502536104351195, 51.50374873535304], + [5.652516471372445, 51.50401071672639], + [5.65640371545631, 51.507309274352686], + [5.663585133258117, 51.50225583384551], + [5.675105371295012, 51.49894749752939], + [5.669951764026618, 51.504138111447865], + [5.672668235509089, 51.50544156329877], + [5.682961236802443, 51.50447959962598], + [5.684144016599923, 51.507699975580536], + [5.697390211860488, 51.5041304950259], + [5.7081814673279245, 51.50182762849974], + [5.707835845768839, 51.4999862205443], + [5.707692887937399, 51.49922452514423], + [5.705995704168202, 51.49940141862069], + [5.705047981509938, 51.49753291581997], + [5.707316362715367, 51.49721822341878], + [5.712115721217924, 51.49493215448802], + [5.712669171301041, 51.49414352974777], + [5.71207387108291, 51.491500484655305], + [5.712984683828375, 51.490525899348675], + [5.718744169090466, 51.48857945803559], + [5.720685022559345, 51.48715804337099], + [5.721717705856357, 51.48513146722199], + [5.722942245077772, 51.48288847453006], + [5.736090975716659, 51.47192743803064], + [5.735015117371941, 51.469186957908114], + [5.723957366495737, 51.47008605100206], + [5.722973464472519, 51.46729103223999], + [5.717215044986297, 51.46823803021594], + [5.71734739737507, 51.46553019716814], + [5.721122763110878, 51.455768063641386], + [5.721949804250653, 51.45445192659571], + [5.724072271814067, 51.45412795571204], + [5.722848438557563, 51.45319059121028], + [5.730001517071464, 51.444355694321644], + [5.718179173472625, 51.44453353420504], + [5.718245466902878, 51.43873364973598], + [5.709203286621896, 51.440065538314705], + [5.698723530838788, 51.43804215024], + [5.693983451957947, 51.43923979306062], + [5.68972517508743, 51.44298323841947], + [5.682197766276668, 51.44932673868661], + [5.672237615830225, 51.45771484591745], + [5.66899613686294, 51.45684947793743], + [5.656468182333515, 51.45655960919769], + [5.644342526057428, 51.45625798215563], + [5.641555371735416, 51.455652089755105], + [5.621390443629546, 51.450180696977824], + [5.617295330300417, 51.449287142459056], + [5.614545666850722, 51.44923150047531], + [5.614512711170466, 51.450044242156615], + [5.608146924841191, 51.44971709295364], + [5.6087633182497845, 51.45156846705949], + [5.6047243795535335, 51.452800305814286], + [5.6034125664176395, 51.45399035924692], + [5.601005122334686, 51.452170408129426], + [5.597034342976173, 51.45649716575115], + [5.596224356828515, 51.456173598489436], + [5.5928218477751726, 51.45834034105708], + [5.590515588784539, 51.45776081258779], + [5.584708453689933, 51.46050901813075], + [5.587807833479268, 51.46347118912707], + [5.584651549281282, 51.4641442559592], + [5.5829736508381265, 51.46554855577632], + [5.592838997625586, 51.46712443389647], + [5.605202177061915, 51.47098563635621], + [5.603534235392766, 51.4725896790782], + [5.59610731021015, 51.474899229249715], + [5.585784269163625, 51.47931204682661], + [5.580445651559933, 51.48533211657091], + [5.570156038505403, 51.49693626539408], + [5.576729851057874, 51.49945316655239], + [5.579933202303234, 51.49876008818117], + [5.609653841855819, 51.50921734337133], + [5.611237791982608, 51.50797516842867], + [5.610561618756398, 51.50472582180562], + [5.614828462949722, 51.50044764434929] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.690fc537-4cf2-4a0e-9d5f-d8891d320e60", + "properties": { + "statcode": "GM0796", + "jrstatcode": "2024GM0796", + "statnaam": "'s-Hertogenbosch", + "rubriek": "gemeente", + "id": 208 + }, + "bbox": [ + 142518.943, 408354.6779999994, 162772.52800000086, 419595.20800000057 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.4440262829629535, 51.753312234690064], + [5.443517178546588, 51.75104946249492], + [5.447422564192312, 51.74530758661132], + [5.451307000089771, 51.73979912783433], + [5.45139888195486, 51.73968226352909], + [5.450538518570363, 51.73937710760875], + [5.451910737108504, 51.737599775399104], + [5.454173241709219, 51.73545525413149], + [5.451929693162651, 51.734001332200855], + [5.453139632261204, 51.73239317856765], + [5.454714804355491, 51.732869557479304], + [5.45645124160898, 51.73136830543917], + [5.45789560532656, 51.72996447746233], + [5.460073610174297, 51.73070759131272], + [5.462592239431096, 51.72819919391609], + [5.463187920661531, 51.725866275421666], + [5.464843435231894, 51.726294872304386], + [5.465433659306161, 51.72678777472294], + [5.466293915035017, 51.726656935204886], + [5.466865953846385, 51.72702012120869], + [5.4742443192027235, 51.728964720333686], + [5.480137046147774, 51.72446402207485], + [5.478827997729718, 51.72415826055881], + [5.484785215117537, 51.71330805955444], + [5.4877730610547575, 51.712899420032564], + [5.487819896539058, 51.71206773876283], + [5.49770657216024, 51.71171060231301], + [5.497321865186787, 51.71076576344623], + [5.49891889193399, 51.71056578339553], + [5.4982318469307465, 51.70917731258585], + [5.499656068711694, 51.70900837074442], + [5.49906819410221, 51.7070828362657], + [5.492385882034265, 51.70610065475623], + [5.483075003115306, 51.701463579823866], + [5.478291475274635, 51.70143127059582], + [5.471054223371142, 51.69115160502594], + [5.469401359698457, 51.69126885569285], + [5.469849785362334, 51.689136746639434], + [5.46032683896112, 51.68965142009299], + [5.459846631663857, 51.69128831797221], + [5.458768412936531, 51.6920293836263], + [5.456872727904078, 51.687590841530124], + [5.452718755861304, 51.68847496274951], + [5.451678818149745, 51.686751268916645], + [5.445167496197634, 51.68858120772275], + [5.4466246580074085, 51.69290229627019], + [5.447404687489772, 51.695023387544204], + [5.4459982783947956, 51.69529809118752], + [5.441353391736139, 51.694656087424185], + [5.443350173735243, 51.69761803805825], + [5.439597284304942, 51.6986513964135], + [5.439330385065321, 51.70043436769263], + [5.429808253541787, 51.701478675911254], + [5.406066042136311, 51.69907520495196], + [5.397715368877534, 51.69848850958239], + [5.394524618313469, 51.69889287031005], + [5.385707550516021, 51.70098497484226], + [5.375679141032434, 51.70027536342548], + [5.373116620193837, 51.69974095700569], + [5.371544817310317, 51.69796906629992], + [5.367997814480344, 51.69708634861418], + [5.366215859024516, 51.69696762385137], + [5.362463146611014, 51.698495954940924], + [5.3607112206249115, 51.698767830983456], + [5.3592740501373255, 51.698679145006444], + [5.364295720468062, 51.69052768784245], + [5.36563360053612, 51.68886342380953], + [5.369856997653569, 51.684337620745474], + [5.3733073291559945, 51.68133523957187], + [5.377110253750164, 51.67880180460334], + [5.376587206696129, 51.678516949374114], + [5.3724665148270985, 51.68010862457579], + [5.367813722917147, 51.68079420185219], + [5.3670123631477376, 51.68084263241532], + [5.3664738715957645, 51.68068879256065], + [5.35735135306128, 51.68200275524183], + [5.357024363485458, 51.68106612399742], + [5.35575981847648, 51.68129499982226], + [5.353313973611042, 51.6814519738554], + [5.352180482045613, 51.68108248954492], + [5.3509393633362565, 51.67714481638124], + [5.355962091003682, 51.67400388345087], + [5.353878435469245, 51.67314201591066], + [5.354613261680425, 51.67250667122741], + [5.352932435915207, 51.671814276162614], + [5.353692933237832, 51.67107346448076], + [5.343959684589422, 51.66744589469496], + [5.341485656709574, 51.66618577510583], + [5.342006648625523, 51.66530157234927], + [5.338883188441677, 51.66399664097978], + [5.327474754401043, 51.67336715817809], + [5.319057404211456, 51.67037213133489], + [5.318759108020432, 51.670870802234965], + [5.308558827061462, 51.669063587015835], + [5.303216462535651, 51.667204420292514], + [5.300780686737588, 51.668223990032025], + [5.298813199292021, 51.66729990556465], + [5.294248063073602, 51.67219832537856], + [5.292321469689066, 51.671668861062535], + [5.291131320287475, 51.6719512442854], + [5.29192212469472, 51.67445846399429], + [5.291489355981483, 51.67480524884614], + [5.2894283726357445, 51.67871426895956], + [5.288587901124311, 51.68186436071053], + [5.287303971288449, 51.68225782462988], + [5.27429620689873, 51.68367307409552], + [5.26563381116894, 51.684725201034205], + [5.260619746482606, 51.6840176375243], + [5.257249427010779, 51.6840427352033], + [5.253813973300697, 51.68439690726704], + [5.247445984566715, 51.68338556244891], + [5.238394546753662, 51.68453260987007], + [5.23427173066235, 51.68549938431194], + [5.231901757309179, 51.68925719569041], + [5.2261577617298745, 51.690030807516294], + [5.226818914031245, 51.69085088157773], + [5.228740668927187, 51.69135249195332], + [5.248383629701087, 51.69500259251842], + [5.248484530166996, 51.69509646288205], + [5.248916016184846, 51.69713080014707], + [5.251569345928825, 51.699371792099356], + [5.25133418588161, 51.69978286037446], + [5.248929100060427, 51.70124437374635], + [5.248174049193329, 51.70110291893675], + [5.247012610663293, 51.702735383685585], + [5.241120328261439, 51.70102553685473], + [5.238987423092563, 51.70204386793788], + [5.237273972947851, 51.704761261834484], + [5.23575644719895, 51.70465306775339], + [5.241204243149667, 51.71398888587288], + [5.229977435330912, 51.710569560407876], + [5.229313520324697, 51.71228758997943], + [5.228535670681968, 51.71476775870036], + [5.231063303453556, 51.724016234581015], + [5.227517414759227, 51.72715081139487], + [5.224884043128653, 51.726655437317866], + [5.221743798535968, 51.729386197161524], + [5.219346146689772, 51.72815066847498], + [5.215156202836088, 51.73133197111884], + [5.210015473845987, 51.733946104173555], + [5.210440983245238, 51.73548017011757], + [5.209495331514108, 51.737368027404344], + [5.2103749317305965, 51.737711098178906], + [5.2064941735584505, 51.74147718457158], + [5.211850927613208, 51.74273564424245], + [5.216347456321717, 51.743451172921304], + [5.222139375014899, 51.7433875572342], + [5.231103772468126, 51.741303936727164], + [5.2446785217277805, 51.73442123551812], + [5.249679661526798, 51.73358070668237], + [5.255466236327561, 51.73489966193039], + [5.264141428395134, 51.73882804853722], + [5.268538278180714, 51.73964741531472], + [5.27572029817583, 51.740169909857364], + [5.283284992705538, 51.73977682696585], + [5.291652399618709, 51.73726271247455], + [5.29599666187431, 51.736717872139764], + [5.3003386804362504, 51.73728743740514], + [5.3043608419763535, 51.73878397125504], + [5.322041220280863, 51.74652362993229], + [5.353514362603138, 51.755477250257485], + [5.35556602173364, 51.75339195434028], + [5.355904766987361, 51.75143498392135], + [5.363998480509907, 51.751506812071305], + [5.374292681810749, 51.75332410013367], + [5.3908154193167634, 51.75998213863243], + [5.411820119491383, 51.76217085140803], + [5.423230860244542, 51.763227860227076], + [5.436218816528215, 51.764725263279864], + [5.438816384388385, 51.765030277993255], + [5.4440262829629535, 51.753312234690064] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.479857ce-1e00-44dc-8eb6-9a7b79db4947", + "properties": { + "statcode": "GM0797", + "jrstatcode": "2024GM0797", + "statnaam": "Heusden", + "rubriek": "gemeente", + "id": 209 + }, + "bbox": [ + 133894.96599999815, 405271.4670000002, 145623.454, 417173.79250000045 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.185699795362008, 51.74191755621143], + [5.195524362743061, 51.740273186983856], + [5.2064941735584505, 51.74147718457158], + [5.2103749317305965, 51.737711098178906], + [5.209495331514108, 51.737368027404344], + [5.210440983245238, 51.73548017011757], + [5.210015473845987, 51.733946104173555], + [5.215156202836088, 51.73133197111884], + [5.219346146689772, 51.72815066847498], + [5.221743798535968, 51.729386197161524], + [5.224884043128653, 51.726655437317866], + [5.227517414759227, 51.72715081139487], + [5.231063303453556, 51.724016234581015], + [5.228535670681968, 51.71476775870036], + [5.229313520324697, 51.71228758997943], + [5.229977435330912, 51.710569560407876], + [5.241204243149667, 51.71398888587288], + [5.23575644719895, 51.70465306775339], + [5.237273972947851, 51.704761261834484], + [5.238987421646002, 51.702043867936084], + [5.241120328261439, 51.70102553685473], + [5.247012610663293, 51.702735383685585], + [5.248174049193329, 51.70110291893675], + [5.248929100060427, 51.70124437374635], + [5.251334180082066, 51.69978286486199], + [5.251569345928825, 51.699371792099356], + [5.248916016184846, 51.69713080014707], + [5.248484533051464, 51.69509646558203], + [5.2483836282546985, 51.69500259251674], + [5.228740668927187, 51.69135249195332], + [5.226818914031245, 51.69085088157773], + [5.2261577617298745, 51.690030807516294], + [5.225743784501255, 51.683861135321536], + [5.223227611657627, 51.67378197129123], + [5.20794839846266, 51.67395599559258], + [5.202264399965075, 51.67061076498091], + [5.204776630989626, 51.66982208547573], + [5.1748780844820255, 51.66919343716675], + [5.166798144411885, 51.669047440944404], + [5.161767291604871, 51.663447623371816], + [5.1576727274805645, 51.66327474125871], + [5.156958128979915, 51.65775984319605], + [5.154451888102577, 51.654919099908874], + [5.1600656733718395, 51.63953565594038], + [5.144938395095858, 51.640511705649054], + [5.1377107877746715, 51.64027119464355], + [5.129258169581778, 51.637881360544924], + [5.123066245257779, 51.63819447052347], + [5.1158758735995, 51.63761027405548], + [5.106136972578786, 51.63595584487036], + [5.103229591452234, 51.65226428227088], + [5.1016256296835305, 51.66134450656432], + [5.102717960823595, 51.668349659670845], + [5.101994272808742, 51.66983731308063], + [5.102311527851866, 51.67194302551164], + [5.101581266762321, 51.67244220645564], + [5.104021830717423, 51.674900177004616], + [5.101509391099549, 51.676834692840764], + [5.106493212154362, 51.677327834930146], + [5.1056657538333035, 51.68387804322265], + [5.1048832902217, 51.690036691695646], + [5.1042024151290075, 51.69498373360845], + [5.103052795652336, 51.70248382257215], + [5.11150612771401, 51.70357640703476], + [5.108720540197282, 51.70903270438254], + [5.106854713790902, 51.710861114759204], + [5.105421245724409, 51.71095604782283], + [5.103027306140961, 51.712551566040496], + [5.101601373426454, 51.713205312163815], + [5.098528248226232, 51.716930461606765], + [5.095749089223467, 51.71827206268276], + [5.093824949631202, 51.71861524795875], + [5.093157063124406, 51.71920493446703], + [5.090413339334775, 51.71931503255155], + [5.0835397698713045, 51.72090653518849], + [5.081760241387991, 51.72234439842897], + [5.092124421527644, 51.727583750756516], + [5.101583040106484, 51.7312154582789], + [5.118138580130175, 51.73570929752575], + [5.126531198571028, 51.73731464285061], + [5.128054699486863, 51.73760714234623], + [5.1634966300133005, 51.74270234088003], + [5.168836828788012, 51.743073866135454], + [5.17726006915511, 51.742917749808456], + [5.185699795362008, 51.74191755621143] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.12e09df8-d3b5-4c6e-ad71-b55247203f21", + "properties": { + "statcode": "GM0798", + "jrstatcode": "2024GM0798", + "statnaam": "Hilvarenbeek", + "rubriek": "gemeente", + "id": 210 + }, + "bbox": [ + 131487.568, 382146.96599999815, 145562.004900001, 395251.3960000016 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.118799479237077, 51.54591897465773], + [5.12706085500031, 51.53235379726098], + [5.130196119365457, 51.530297889343764], + [5.144966433711716, 51.521493772232155], + [5.147452384218872, 51.522268557082135], + [5.148887651268739, 51.52365777692956], + [5.150075427072155, 51.52276803953187], + [5.1537137336757946, 51.520413876280315], + [5.159420692418621, 51.51654314057906], + [5.160887737348145, 51.51729560857646], + [5.164212042256473, 51.514679826568944], + [5.16555318330512, 51.51521540505512], + [5.170207210119884, 51.51113531412438], + [5.173581571586476, 51.51023902399874], + [5.174452331931364, 51.511046823132006], + [5.176479501571223, 51.511310807129874], + [5.179306080394878, 51.5085976564534], + [5.183859029452686, 51.50874656100198], + [5.184281413684371, 51.50790592971175], + [5.1901384876654175, 51.50740865010858], + [5.195401252889607, 51.50973289161383], + [5.203033519531168, 51.50994320436513], + [5.214732355433375, 51.51172626901254], + [5.2244347895799015, 51.51714845112589], + [5.226534156198319, 51.507473665425756], + [5.232363168140222, 51.508919787051745], + [5.235942579833295, 51.51390959388703], + [5.251249803467959, 51.50963084917255], + [5.250076280074796, 51.50800093675437], + [5.250969140822626, 51.506209015269576], + [5.247892068148485, 51.506336084282545], + [5.24711077022892, 51.498878571530895], + [5.228443943797803, 51.49870000601074], + [5.230606150705935, 51.490938664315784], + [5.229966910311983, 51.48972677283771], + [5.226155181981597, 51.489110829808936], + [5.225256122971551, 51.48837433371231], + [5.223120499807424, 51.4815738044418], + [5.220434967595474, 51.47287951966624], + [5.209730271545727, 51.46561307020938], + [5.191024878796082, 51.430224999903686], + [5.191020000434413, 51.4302158232278], + [5.190182475330537, 51.430112399961736], + [5.184980787731371, 51.428764026258335], + [5.178153519849224, 51.43026102369111], + [5.173458333740277, 51.428240218857916], + [5.1707656281032595, 51.42973308173785], + [5.158553217017335, 51.4321742517235], + [5.1579482497895555, 51.428830855332336], + [5.153211529927523, 51.42835432142062], + [5.152499813517961, 51.428968547501306], + [5.119459113293277, 51.428274835261256], + [5.102020556081373, 51.428922728159904], + [5.1045726178862205, 51.431348890697166], + [5.080307280309255, 51.46926263810068], + [5.078564272835812, 51.4714445156563], + [5.049740820891922, 51.471108149389316], + [5.049865470518108, 51.47182583668982], + [5.048791776429387, 51.47191353412523], + [5.051580275667158, 51.48713195859545], + [5.068367917504957, 51.48533475009383], + [5.069293116598929, 51.48683587829393], + [5.062722972524177, 51.49285224518851], + [5.076915040974192, 51.50079651767116], + [5.072998000487205, 51.50287503969433], + [5.0881869033132245, 51.51129750735093], + [5.0960354152711576, 51.50991218979905], + [5.098441608185178, 51.51536059989196], + [5.095023734390812, 51.51725160096732], + [5.100947280166622, 51.52051970271272], + [5.098750743466646, 51.52200645788398], + [5.100490095484143, 51.52296972135864], + [5.098141092282585, 51.52495238246365], + [5.105060705850723, 51.52817589080072], + [5.1000593545322035, 51.531454983996305], + [5.104528697752248, 51.53383661994453], + [5.105652816384041, 51.53333739689989], + [5.109588948167247, 51.53680540530898], + [5.108678939852682, 51.5372322424979], + [5.110645332850198, 51.53890236565062], + [5.109820583301512, 51.53938317454063], + [5.112520946263487, 51.540023268775336], + [5.113660797363046, 51.54100706218273], + [5.1134865568048715, 51.54234964939475], + [5.118799479237077, 51.54591897465773] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.94de36c6-cebc-4275-9e75-f055f4020d67", + "properties": { + "statcode": "GM0809", + "jrstatcode": "2024GM0809", + "statnaam": "Loon op Zand", + "rubriek": "gemeente", + "id": 211 + }, + "bbox": [ + 127324.432, 401912.39400000125, 135542.22399999946, 409820.58300000057 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.104021830717423, 51.674900177004616], + [5.101581266762321, 51.67244220645564], + [5.102311527851866, 51.67194302551164], + [5.101994272808742, 51.66983731308063], + [5.102717960823595, 51.668349659670845], + [5.1016256296835305, 51.66134450656432], + [5.103229591452234, 51.65226428227088], + [5.106136972578786, 51.63595584487036], + [5.101367915934858, 51.63271186735846], + [5.0981846101412645, 51.628822579690876], + [5.09811923663916, 51.628243615689094], + [5.099849152861406, 51.627851585739826], + [5.101216846669753, 51.62040588670581], + [5.102958647027206, 51.616911136714485], + [5.101323208637109, 51.61658048074672], + [5.099157628619579, 51.61770626112397], + [5.096003309140368, 51.61246582850089], + [5.093745312317202, 51.61124928786998], + [5.079438677997636, 51.610784222171795], + [5.080181588901057, 51.609542283965396], + [5.0755421996860335, 51.608952321759375], + [5.075539939180224, 51.60576774665671], + [5.074025192750822, 51.60568095322772], + [5.074058841186641, 51.60948333742648], + [5.07207110787449, 51.608322399421326], + [5.07151266605565, 51.60826735171654], + [5.07097772320509, 51.608633771151815], + [5.070590544013791, 51.61029067517432], + [5.061771358586508, 51.609346128036485], + [5.060248946622313, 51.61077841915162], + [5.045010899759348, 51.61109712124035], + [5.0440250167383, 51.607359736929354], + [5.042036556443341, 51.60613749253007], + [5.0044921276944105, 51.60788676831001], + [5.002419151051776, 51.613025692383026], + [4.98936094173398, 51.64869462401972], + [4.989336721340156, 51.64879362239477], + [4.987266910127334, 51.65460893119486], + [4.988649910292356, 51.66071931604162], + [4.992246270219898, 51.67625089116253], + [5.018528463129692, 51.66970290451716], + [5.018524637162633, 51.669663252788716], + [5.021269650011416, 51.66896757481362], + [5.029147088026555, 51.66697638224008], + [5.043732775774787, 51.66311707875223], + [5.0452857070088815, 51.662693896520175], + [5.045238986181388, 51.663131342425274], + [5.047246618881364, 51.6632509738042], + [5.047365152090664, 51.66208487276036], + [5.04917754363415, 51.66162342699517], + [5.053226750808765, 51.66165092263635], + [5.053818373180732, 51.66165609136772], + [5.058403633548791, 51.661726949784814], + [5.058743749421118, 51.66383233305045], + [5.058682523223739, 51.66533765388168], + [5.05797046221416, 51.668316167686754], + [5.061013493626758, 51.66829025561698], + [5.060621492124551, 51.67111324723032], + [5.067324280321035, 51.670978564152534], + [5.070174719419625, 51.67083640508041], + [5.07204297781957, 51.670763203945704], + [5.080265007126026, 51.671389158946695], + [5.0897422271737325, 51.67475224779079], + [5.094997877196387, 51.67458539859066], + [5.101509391099549, 51.676834692840764], + [5.104021830717423, 51.674900177004616] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c7d4b85e-a651-46ba-b905-78b24fabe5e0", + "properties": { + "statcode": "GM0820", + "jrstatcode": "2024GM0820", + "statnaam": "Nuenen, Gerwen en Nederwetten", + "rubriek": "gemeente", + "id": 212 + }, + "bbox": [ + 163219.00299999863, 382768.3280000016, 170146.8951999992, + 394356.9070000015 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.547914383687609, 51.53807588392167], + [5.55438093296231, 51.51898814219002], + [5.557652443399427, 51.50936972429677], + [5.566551702085502, 51.50167244998326], + [5.576729851057874, 51.49945316655239], + [5.570156038505403, 51.49693626539408], + [5.580445651559933, 51.48533211657091], + [5.585784269163625, 51.47931204682661], + [5.59610731021015, 51.474899229249715], + [5.603534235392766, 51.4725896790782], + [5.605202177061915, 51.47098563635621], + [5.592838997625586, 51.46712443389647], + [5.5829736508381265, 51.46554855577632], + [5.584651549281282, 51.4641442559592], + [5.587807833479268, 51.46347118912707], + [5.584708453689933, 51.46050901813075], + [5.5790007197568405, 51.455079060661674], + [5.571173041320002, 51.447731574924724], + [5.566126569092827, 51.44156599551588], + [5.548678971152387, 51.43467727449301], + [5.546704667361424, 51.43391171189284], + [5.54588678347779, 51.43657916264175], + [5.544384087105612, 51.437214821109876], + [5.5435642414690465, 51.43871059064051], + [5.543925217027441, 51.439602997349496], + [5.542626247038093, 51.43997941259742], + [5.5426591121384305, 51.439238439998896], + [5.5412586684324285, 51.43971970257642], + [5.540710537777218, 51.4405142350757], + [5.541318216560159, 51.4404643008432], + [5.541405409975152, 51.44104305710616], + [5.538511895867968, 51.44353596151134], + [5.539408547703138, 51.44456654238903], + [5.5385221563234035, 51.44561391686313], + [5.5401512344106445, 51.4479750596288], + [5.539079065661206, 51.448445904786155], + [5.5388262548940626, 51.44944283726127], + [5.5344710655299885, 51.451566541060494], + [5.531586079616238, 51.45554067565612], + [5.531692584363976, 51.45561923956082], + [5.532529529022602, 51.45720547388811], + [5.53100452966293, 51.45724546832779], + [5.5298401082713395, 51.45869858853619], + [5.524918426664782, 51.45949421675389], + [5.5218713803059405, 51.461094920941385], + [5.521068900245866, 51.461016394485156], + [5.520954583320272, 51.46155183723232], + [5.518271888740928, 51.4626284740876], + [5.518113928487554, 51.462952315747756], + [5.5189857057023515, 51.46290991352117], + [5.517582306625338, 51.464347549099045], + [5.516930377281415, 51.46424073605896], + [5.515893711253244, 51.46513035253577], + [5.514937970112401, 51.464975648184115], + [5.514389782016347, 51.465556657838604], + [5.514119462726071, 51.46652217121076], + [5.512866203923047, 51.4666004811524], + [5.511581652848431, 51.46749730218453], + [5.50904166187585, 51.46942619282852], + [5.510110066188795, 51.4698741089718], + [5.5080964999813435, 51.47116973796766], + [5.508090003723995, 51.4744618604921], + [5.508350328063845, 51.47555480143525], + [5.5087516502296925, 51.47705983195233], + [5.5079424286423055, 51.47856703792908], + [5.509560989249301, 51.47923634486116], + [5.50602018799032, 51.482300459552654], + [5.505525384789338, 51.483564568718556], + [5.506597375491263, 51.48375745098395], + [5.5081483580058395, 51.48542457142827], + [5.508414595921447, 51.48768431115052], + [5.510573922621157, 51.48735403211577], + [5.512456429526454, 51.48956182136081], + [5.512491769455503, 51.49102840114204], + [5.515556062738265, 51.493341651202215], + [5.513387255096444, 51.49548154427838], + [5.513325803774382, 51.4962514015997], + [5.511424142114053, 51.49692216264557], + [5.510240401603323, 51.49728703557383], + [5.509792286578164, 51.498587549477726], + [5.514939509018443, 51.49998161594143], + [5.51859917472615, 51.50199579832756], + [5.523982986120355, 51.50194623819972], + [5.526116535594566, 51.501446347556154], + [5.525973990963208, 51.502292744706395], + [5.527834441389362, 51.502319028278976], + [5.531619394791616, 51.505560752864234], + [5.532794353477103, 51.505212154209445], + [5.538675771817345, 51.507595947754176], + [5.542272339932157, 51.510627039245996], + [5.546272784675881, 51.51269567567124], + [5.544363497644304, 51.51568439900981], + [5.541758011260172, 51.518074597979734], + [5.540674772331798, 51.52066492726379], + [5.545634244710417, 51.51994971497042], + [5.544030110404701, 51.521758014569805], + [5.544747849705338, 51.523537373572], + [5.5431619139352035, 51.52363008617772], + [5.540194940234127, 51.52601177468753], + [5.536811551152285, 51.52600619336201], + [5.536733419399797, 51.525051970022496], + [5.530863591734274, 51.525048675319766], + [5.547437344072707, 51.53773203260991], + [5.547914383687609, 51.53807588392167] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f9595d07-687c-4fed-9ffb-81da2c79fb3d", + "properties": { + "statcode": "GM0823", + "jrstatcode": "2024GM0823", + "statnaam": "Oirschot", + "rubriek": "gemeente", + "id": 213 + }, + "bbox": [ + 141357.3299999982, 381788.318, 155276.936999999, 395991.14499999955 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.2989937514118965, 51.54784879878975], + [5.308395626189729, 51.545979832035776], + [5.324943136863709, 51.551208370661826], + [5.333135885658849, 51.55110836403132], + [5.3371933983820306, 51.546402723137355], + [5.343931944375863, 51.54447086559005], + [5.3508462460381105, 51.54423572368164], + [5.356910779416933, 51.5447165735921], + [5.368595919661319, 51.53148999974291], + [5.365622478557622, 51.52998049203521], + [5.35545923037663, 51.52890283319236], + [5.3537318862305865, 51.52608388109101], + [5.353570378207495, 51.523802611147175], + [5.353902178628991, 51.521186872759905], + [5.35150697166917, 51.518007043919184], + [5.349486322468265, 51.51716841534382], + [5.350892634898525, 51.5121274999214], + [5.350751351805212, 51.507553104213684], + [5.351317728858629, 51.50605383049566], + [5.352606691433186, 51.50599216908945], + [5.353326204212385, 51.50179639292132], + [5.35518151353711, 51.49915912545522], + [5.35557448710257, 51.49693450004746], + [5.355887441610802, 51.49610683603766], + [5.364610548046442, 51.49144656253062], + [5.375017642675288, 51.48904925286449], + [5.386014494498338, 51.486703461596], + [5.389736765687596, 51.487516835610066], + [5.390034037581502, 51.48581365028763], + [5.391016562157046, 51.48555482874212], + [5.391041639485211, 51.485037306408614], + [5.390518508484994, 51.4851542565184], + [5.39118688815015, 51.47175640408732], + [5.390826157717972, 51.4713343116888], + [5.390685731286425, 51.47063815988405], + [5.389576108446422, 51.47059912458557], + [5.387114399228933, 51.469271572238625], + [5.387538099684872, 51.46820582181018], + [5.38467770239242, 51.46766003457117], + [5.379150756852553, 51.46384234352242], + [5.369446549512172, 51.46531660232972], + [5.35838913752898, 51.46701532722347], + [5.3560022805484735, 51.46231472516718], + [5.333816579649218, 51.46853656618219], + [5.334728039215636, 51.46587476493421], + [5.332626884576331, 51.46542220483999], + [5.3345990006491935, 51.462934793842074], + [5.331597937876138, 51.46283189776735], + [5.330512264308702, 51.463840893859626], + [5.328041975710338, 51.464226363556534], + [5.3258399779557335, 51.46379170635545], + [5.325896321100276, 51.46287659993254], + [5.32420471423368, 51.46272253456316], + [5.320423761830598, 51.46086814320234], + [5.318803907667853, 51.461481393903085], + [5.315077500521419, 51.461372019659464], + [5.314251773280749, 51.46078095214802], + [5.303096652130904, 51.45914920895548], + [5.30317826698652, 51.45858548930849], + [5.29806828728189, 51.45462579108486], + [5.297229823601189, 51.45313795488158], + [5.294497666279075, 51.45528347466702], + [5.285018312105713, 51.4541115836578], + [5.28224964861962, 51.452250029476055], + [5.27925339255479, 51.45021940983884], + [5.2710203285359265, 51.44903281951683], + [5.2646627644810815, 51.44892776828151], + [5.260442823465198, 51.4482353756833], + [5.2588742708531475, 51.44712453187053], + [5.249025104257965, 51.44572070184373], + [5.24839613069742, 51.4456310274728], + [5.248819963546613, 51.44308190791196], + [5.25248218361666, 51.43793921347286], + [5.239062441327136, 51.43366952318342], + [5.239169526156778, 51.43099051609137], + [5.237597737793309, 51.43071422296992], + [5.237704666933674, 51.42855889787026], + [5.2327000427135, 51.42685665651207], + [5.229285026066105, 51.425452070955224], + [5.223738392398728, 51.425097670977856], + [5.223140698362381, 51.42792126166264], + [5.2195431046882375, 51.42891876840792], + [5.2174852831842236, 51.43050388254554], + [5.215771329821329, 51.434179949035624], + [5.209937166468838, 51.4341712373758], + [5.209217706831661, 51.4365005434712], + [5.20667610277402, 51.43469553127162], + [5.1954202923809065, 51.43078311309657], + [5.191024878796082, 51.430224999903686], + [5.209730271545727, 51.46561307020938], + [5.220434967595474, 51.47287951966624], + [5.223120499807424, 51.4815738044418], + [5.225256122971551, 51.48837433371231], + [5.226155181981597, 51.489110829808936], + [5.229966910311983, 51.48972677283771], + [5.230606150705935, 51.490938664315784], + [5.228443943797803, 51.49870000601074], + [5.24711077022892, 51.498878571530895], + [5.247892068148485, 51.506336084282545], + [5.250969140822626, 51.506209015269576], + [5.250076280074796, 51.50800093675437], + [5.251249803467959, 51.50963084917255], + [5.235942579833295, 51.51390959388703], + [5.232363168140222, 51.508919787051745], + [5.226534156198319, 51.507473665425756], + [5.2244347895799015, 51.51714845112589], + [5.23084374524312, 51.52093733495674], + [5.234791330666956, 51.53099436812734], + [5.244006819973305, 51.525750630545815], + [5.249495459536528, 51.53163563455161], + [5.253330656500998, 51.540332681774025], + [5.2613050045123115, 51.540687633161504], + [5.263368604818662, 51.544230201421925], + [5.267971218595389, 51.54322547938806], + [5.2698621245011035, 51.54620915814136], + [5.276884477843458, 51.54486318437558], + [5.277487363810235, 51.54873672074835], + [5.271932644159918, 51.54980699471033], + [5.273270948237091, 51.552820793855645], + [5.2989937514118965, 51.54784879878975] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f31b0bfb-0ce4-45ca-b1d9-1bf78f1cb3ea", + "properties": { + "statcode": "GM0824", + "jrstatcode": "2024GM0824", + "statnaam": "Oisterwijk", + "rubriek": "gemeente", + "id": 214 + }, + "bbox": [ + 137166.35599999875, 390951.26900000125, 147486.41000000015, + 404015.3520000018 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.255499564397096, 51.62492842506136], + [5.260420132030065, 51.621102301574815], + [5.265892426021163, 51.61604795651586], + [5.268820716569324, 51.61253775464717], + [5.26826274409806, 51.61210114500211], + [5.2692395030571255, 51.609608730918254], + [5.275662951503926, 51.60774108698248], + [5.278743577595759, 51.6047904785625], + [5.275664517964696, 51.60440549264133], + [5.268655271111237, 51.60091201154115], + [5.262907261766904, 51.59992057107186], + [5.255379592686758, 51.59342414688612], + [5.248632559810648, 51.59043869769987], + [5.24764348964858, 51.58961669393675], + [5.247241353485094, 51.58704048869364], + [5.247207483205688, 51.58677984828935], + [5.246177657263301, 51.579478142367364], + [5.261454601893912, 51.561130432760145], + [5.264413109003526, 51.55796867911016], + [5.268900065394559, 51.55372662581737], + [5.273270948237091, 51.552820793855645], + [5.271932644159918, 51.54980699471033], + [5.277487363810235, 51.54873672074835], + [5.276884477843458, 51.54486318437558], + [5.2698621245011035, 51.54620915814136], + [5.267971218595389, 51.54322547938806], + [5.263368604818662, 51.544230201421925], + [5.2613050045123115, 51.540687633161504], + [5.253330656500998, 51.540332681774025], + [5.249495459536528, 51.53163563455161], + [5.244006819973305, 51.525750630545815], + [5.234791330666956, 51.53099436812734], + [5.23084374524312, 51.52093733495674], + [5.2244347895799015, 51.51714845112589], + [5.214732355433375, 51.51172626901254], + [5.203033519531168, 51.50994320436513], + [5.195401252889607, 51.50973289161383], + [5.1901384876654175, 51.50740865010858], + [5.184281413684371, 51.50790592971175], + [5.183859029452686, 51.50874656100198], + [5.179306080394878, 51.5085976564534], + [5.176479501571223, 51.511310807129874], + [5.174452331931364, 51.511046823132006], + [5.173581571586476, 51.51023902399874], + [5.170207210119884, 51.51113531412438], + [5.16555318330512, 51.51521540505512], + [5.164212042256473, 51.514679826568944], + [5.160887737348145, 51.51729560857646], + [5.159420692418621, 51.51654314057906], + [5.1537137336757946, 51.520413876280315], + [5.150075427072155, 51.52276803953187], + [5.148887651268739, 51.52365777692956], + [5.147452384218872, 51.522268557082135], + [5.144966433711716, 51.521493772232155], + [5.130196119365457, 51.530297889343764], + [5.135451732255449, 51.53358010011908], + [5.1336563308205525, 51.53499934863485], + [5.141880908315931, 51.542092141164254], + [5.138694808131967, 51.54595613943349], + [5.143824814133606, 51.546226045459996], + [5.14746978506828, 51.54681012663163], + [5.147835931001958, 51.54711795479859], + [5.14116151235942, 51.549531051683786], + [5.13756714346818, 51.55207698969492], + [5.137955198805086, 51.55973708981423], + [5.139138848559264, 51.56132113866867], + [5.138551343147422, 51.56130875235191], + [5.137355035585621, 51.56258092769178], + [5.137838108460352, 51.5631993698859], + [5.141285221191817, 51.567973598936305], + [5.143099021056381, 51.56814181919112], + [5.143057398537538, 51.56825395533504], + [5.141358786708687, 51.56830279220104], + [5.142678907823392, 51.57036639087391], + [5.144964271445698, 51.573875873473824], + [5.145520009427752, 51.57450559734362], + [5.146759179290165, 51.57543609037901], + [5.1484194718566645, 51.5753510934618], + [5.1487882509817835, 51.5753911097246], + [5.147486784361668, 51.57556915996548], + [5.14716504244062, 51.576804958672675], + [5.1487695082947855, 51.57771326705836], + [5.148835159709695, 51.57829129621816], + [5.151075712176647, 51.580325442755125], + [5.161431153409544, 51.58666635878255], + [5.161439728714603, 51.58667157344118], + [5.1703047147409595, 51.59224120532365], + [5.171457884141587, 51.59295643876251], + [5.172095274389438, 51.5922541012672], + [5.172274319377579, 51.59316550588725], + [5.179539019674425, 51.59766446326337], + [5.1868842895848415, 51.601750716195305], + [5.188949976454674, 51.60357190588436], + [5.202034222990228, 51.61147712257119], + [5.210711377326612, 51.61558841713455], + [5.222395311324376, 51.62184390890442], + [5.222010221916581, 51.61974811310147], + [5.2239541654091, 51.618306978488334], + [5.224114612860295, 51.616439152411466], + [5.225928672411199, 51.6159584663621], + [5.228192406329291, 51.615889150386465], + [5.236940296765541, 51.61813711226804], + [5.237586212781114, 51.61896659527108], + [5.2399155355441405, 51.61882512869932], + [5.241984406642074, 51.61792389404877], + [5.244372340147932, 51.6185497392675], + [5.246668939302036, 51.620834093054526], + [5.2461714108632655, 51.62265468573356], + [5.250596949804399, 51.62378219773895], + [5.2508447878961055, 51.62259437852251], + [5.255499564397096, 51.62492842506136] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.891b3aca-291f-480b-90b9-ac6df6a588d6", + "properties": { + "statcode": "GM0826", + "jrstatcode": "2024GM0826", + "statnaam": "Oosterhout", + "rubriek": "gemeente", + "id": 215 + }, + "bbox": [ + 113065.09860000014, 398962.9930000007, 123668.60399999842, + 410943.8515999988 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.8626521389120825, 51.67706678668443], + [4.866203491181668, 51.676105912382965], + [4.871248286866419, 51.675820177216195], + [4.87202028499277, 51.67517472284719], + [4.875787113055425, 51.67473331120091], + [4.87655024558928, 51.67333145287832], + [4.879713313398443, 51.67204316161865], + [4.880228766894699, 51.67183546130771], + [4.880500457474377, 51.67420789744383], + [4.8968355520444256, 51.67477446130674], + [4.898721093632619, 51.6741833374142], + [4.906931915195107, 51.674943524384354], + [4.906551547577757, 51.67595309626376], + [4.9128270062399775, 51.67659001717827], + [4.9137808831960035, 51.675048918793074], + [4.917520963660354, 51.675258437408104], + [4.925032353795833, 51.67300929624856], + [4.926775586287247, 51.66908741924744], + [4.930942919923052, 51.6671016367949], + [4.931047553611336, 51.663552072183], + [4.933126177783237, 51.659884149020236], + [4.933000257518242, 51.65889347106879], + [4.9344103032544915, 51.65725366924674], + [4.932459993337647, 51.655823676140834], + [4.932906360794026, 51.65157645086497], + [4.932815728061176, 51.65069770869293], + [4.930354376172142, 51.64954139406223], + [4.9301058882273505, 51.647954772100626], + [4.929280208934049, 51.64853232020904], + [4.928946344414801, 51.646673117685935], + [4.913191687961357, 51.63402276037289], + [4.911147548765318, 51.63124821553246], + [4.910028091598329, 51.62946005329847], + [4.910537767973162, 51.627425951716624], + [4.9121173346537645, 51.62682547682483], + [4.9118225040049195, 51.62636494908245], + [4.905019149336986, 51.62453244357162], + [4.9042792111502305, 51.624332572640014], + [4.915554433642408, 51.622432858753896], + [4.9135587828958815, 51.6196376865644], + [4.909899589087149, 51.61832710828727], + [4.911326764395357, 51.6180617951567], + [4.911167283791475, 51.6161565693822], + [4.911881665093595, 51.61539925513547], + [4.917442810628728, 51.60854073740417], + [4.918498989258532, 51.601367429696225], + [4.916150682221476, 51.60081160178457], + [4.916268734613237, 51.60001556156542], + [4.91377507095579, 51.59970727838132], + [4.913113294591784, 51.60039662936998], + [4.911635156528381, 51.60006717138264], + [4.913785893604048, 51.59809047066148], + [4.899922544813301, 51.59267523176941], + [4.8999000556781995, 51.59266738621446], + [4.890245540087028, 51.58903605766958], + [4.889620378743492, 51.58881109520078], + [4.868966109390642, 51.58100243275432], + [4.8691713750112, 51.57844190152702], + [4.8642385221296776, 51.57908886124154], + [4.854397948413529, 51.57937045329735], + [4.845730039527093, 51.58345025699038], + [4.842621844838883, 51.58582934208546], + [4.842020574434511, 51.59602694681942], + [4.841371182071748, 51.59625956368601], + [4.834722645246214, 51.59734643025572], + [4.834072618594188, 51.59741167098577], + [4.839802968885783, 51.60168142281653], + [4.8398924814002005, 51.60245739932418], + [4.843551929314554, 51.60387614900446], + [4.83907877446526, 51.60893419244351], + [4.842683135541849, 51.616985862295316], + [4.828038397510406, 51.62457819860868], + [4.826036352571086, 51.62698441787312], + [4.823779449094048, 51.62769529704285], + [4.821866534222654, 51.62727431579163], + [4.821260249482607, 51.62955859556554], + [4.820035209519325, 51.63062347569839], + [4.818273092259805, 51.63161564651258], + [4.811845144662104, 51.63290504499035], + [4.806969545870522, 51.63260713251495], + [4.78891264050128, 51.634417697972815], + [4.787505938592238, 51.637048012740074], + [4.796489096215547, 51.641186962018836], + [4.794305106400317, 51.641740574415536], + [4.781080917842865, 51.6638855680875], + [4.79678740910233, 51.669515118589615], + [4.801197866988423, 51.67020524925054], + [4.80683312243013, 51.67127250363556], + [4.816954462650173, 51.673649248135675], + [4.821787886038523, 51.67474395853746], + [4.82735159469676, 51.676962694949395], + [4.828561485597879, 51.676443757707865], + [4.8423679313917605, 51.67965404692623], + [4.842685569176086, 51.67973350266804], + [4.842265579104931, 51.68285559747825], + [4.843391262918841, 51.68601738649426], + [4.846211207673899, 51.684491543140794], + [4.8510602724244025, 51.683964658522505], + [4.856621778599258, 51.68166786062364], + [4.8565804889307165, 51.680242673342875], + [4.8606806495341885, 51.678708609899225], + [4.8626521389120825, 51.67706678668443] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.a59b724d-2f9a-42d9-bbf3-08df0014f0a0", + "properties": { + "statcode": "GM0828", + "jrstatcode": "2024GM0828", + "statnaam": "Oss", + "rubriek": "gemeente", + "id": 216 + }, + "bbox": [152673.9919999987, 415239.5370000005, 177363.1640000008, 426895], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.5356338752006, 51.8165743730952], + [5.540929784076257, 51.81630760279422], + [5.545284523634033, 51.817434346747184], + [5.548628699456513, 51.81980272168763], + [5.551264577702485, 51.82413081878973], + [5.552147179923371, 51.82496722141326], + [5.554824285565418, 51.82656016235002], + [5.55815836948093, 51.82752670374353], + [5.567879785489582, 51.827783278389695], + [5.576791871920223, 51.82815180523269], + [5.588848392526304, 51.82969957167565], + [5.597976615211845, 51.828049441289046], + [5.606235317806525, 51.82530003058379], + [5.617812883383226, 51.82005557791626], + [5.622159631106509, 51.81921102780668], + [5.625896685384022, 51.8192297164351], + [5.635214683589018, 51.81954367863634], + [5.6413045533554635, 51.817891908929155], + [5.644215967266571, 51.816036794282276], + [5.646574635367745, 51.81303035809906], + [5.649901248303548, 51.806136939209374], + [5.653913756206688, 51.80115183290135], + [5.657493793705361, 51.79803009752411], + [5.663350802349167, 51.79453442471932], + [5.668406962210519, 51.79291697274162], + [5.674103275372108, 51.7924496588593], + [5.685789719929982, 51.79119314644649], + [5.69371615596691, 51.787740958197446], + [5.696500793723177, 51.785466669729125], + [5.702309324211474, 51.77814360364802], + [5.705976541168297, 51.77625509687636], + [5.711229945490515, 51.77503386233291], + [5.701047866377871, 51.76874714174677], + [5.696035829765933, 51.7613397230959], + [5.690858170095597, 51.759130691852604], + [5.686105506905495, 51.75927486350757], + [5.680139616349151, 51.76135335286224], + [5.67627567696484, 51.7647731490682], + [5.674734601320916, 51.768009619398995], + [5.672260613733808, 51.76561615822175], + [5.66996487197104, 51.762604421745564], + [5.667692661663198, 51.75381316581384], + [5.667222663252112, 51.75225628099758], + [5.66350647776818, 51.75432553631362], + [5.6602621281786565, 51.75570226774855], + [5.652547393065808, 51.76198666594457], + [5.648729035144794, 51.76426579567718], + [5.6454183199075345, 51.76289119406436], + [5.633773719382196, 51.76083301458914], + [5.635775478544902, 51.75832505703046], + [5.626728323808004, 51.75694196448119], + [5.624338550101529, 51.75651581429274], + [5.620488709359173, 51.75600016493438], + [5.61722109359197, 51.755202134162765], + [5.61504927722721, 51.75616011192399], + [5.612470124247588, 51.75477426970515], + [5.602030118325252, 51.75167725448958], + [5.597324186649663, 51.7505977883176], + [5.596605895819332, 51.74741329366118], + [5.576385355619752, 51.74489142046942], + [5.577477084285113, 51.735760901375755], + [5.579917819183812, 51.73293894226685], + [5.582224966498779, 51.73274991906531], + [5.580881160467036, 51.731448088077244], + [5.576006312678134, 51.73153196734757], + [5.573760780196489, 51.73105924970953], + [5.5701329695533, 51.73102849007787], + [5.56017021875659, 51.73235974333197], + [5.553918934486931, 51.7348017815967], + [5.543295369525478, 51.73846480911999], + [5.533919040270629, 51.740596648954366], + [5.529138623435625, 51.74044026587675], + [5.516846977207772, 51.73869516193123], + [5.510283040795483, 51.73808405572729], + [5.509937626456443, 51.73734209143367], + [5.509553322568136, 51.73727550734044], + [5.508994977439918, 51.73717876718855], + [5.508732996328496, 51.73793047456305], + [5.507706227397685, 51.73782194001489], + [5.504614699555786, 51.736677930590005], + [5.499000531625453, 51.7354787327452], + [5.495306038953742, 51.73467930841778], + [5.478717196468602, 51.7302165204885], + [5.4742443192027235, 51.728964720333686], + [5.466865953846385, 51.72702012120869], + [5.466293915035017, 51.726656935204886], + [5.465433659306161, 51.72678777472294], + [5.464843435231894, 51.726294872304386], + [5.463187920661531, 51.725866275421666], + [5.462592239431096, 51.72819919391609], + [5.460073610174297, 51.73070759131272], + [5.45789560532656, 51.72996447746233], + [5.45645124160898, 51.73136830543917], + [5.454714804355491, 51.732869557479304], + [5.453139632261204, 51.73239317856765], + [5.451929693162651, 51.734001332200855], + [5.454173241709219, 51.73545525413149], + [5.451910737108504, 51.737599775399104], + [5.450538518570363, 51.73937710760875], + [5.45139888195486, 51.73968226352909], + [5.451306995754021, 51.73979913322976], + [5.447422564192312, 51.74530758661132], + [5.443517178546588, 51.75104946249492], + [5.4440262829629535, 51.753312234690064], + [5.438816384388385, 51.765030277993255], + [5.436218816528215, 51.764725263279864], + [5.423230860244542, 51.763227860227076], + [5.4118201194918765, 51.76217085230689], + [5.3908154193167634, 51.75998213863243], + [5.374292681810749, 51.75332410013367], + [5.363998477613559, 51.75150681207072], + [5.355904766987361, 51.75143498392135], + [5.35556602173364, 51.75339195434028], + [5.353514362603138, 51.755477250257485], + [5.357568156552572, 51.757890339808085], + [5.359927399756343, 51.76058743748614], + [5.360429645810032, 51.7686803424799], + [5.362538883477008, 51.77946368778759], + [5.369038904155726, 51.78981619858384], + [5.370194004813801, 51.79109690017174], + [5.375603085137705, 51.79616023551823], + [5.383490521346241, 51.80463369635861], + [5.394409465519178, 51.8127230573151], + [5.398384889637789, 51.81715553370845], + [5.400054070993443, 51.819417477868065], + [5.401706346127795, 51.82089279847573], + [5.4060582100964165, 51.8224201954743], + [5.410409641800704, 51.82254524656683], + [5.414885448888102, 51.8212901864388], + [5.418271550490205, 51.818557921776716], + [5.422292288115642, 51.814558473051655], + [5.429255146567062, 51.81136743758571], + [5.439403921526384, 51.80970948566892], + [5.449554205568748, 51.80967755103838], + [5.464480380209881, 51.81118659289545], + [5.467486000424002, 51.811802634717566], + [5.47421458851921, 51.81464138011669], + [5.476931542766655, 51.81718303973819], + [5.478348818798375, 51.82005413704955], + [5.479672859135429, 51.82437160249982], + [5.481839802248524, 51.827066381013346], + [5.485848612352557, 51.829409036463936], + [5.490190299706195, 51.83050863626218], + [5.496006274812846, 51.83060448502899], + [5.5032551282530004, 51.8287639049381], + [5.5080787899499954, 51.82614341485542], + [5.514213996394645, 51.82074390438085], + [5.517734242069692, 51.81928391971916], + [5.52788422813875, 51.81848119837396], + [5.5356338752006, 51.8165743730952] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.30aa3a65-55c3-4a88-a068-e785b74434d0", + "properties": { + "statcode": "GM0840", + "jrstatcode": "2024GM0840", + "statnaam": "Rucphen", + "rubriek": "gemeente", + "id": 217 + }, + "bbox": [ + 92358.26999999955, 387474.94000000134, 103174.69399999827, + 398102.3649000004 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.536616313975775, 51.56577633404857], + [4.530905321080438, 51.559887611124765], + [4.528689673714675, 51.555486572431576], + [4.528068983010124, 51.55199880568805], + [4.530358611448828, 51.549255656642764], + [4.5334826711143785, 51.54926947425391], + [4.542422470713592, 51.551087082031614], + [4.545083926119248, 51.55164556627063], + [4.544640324149737, 51.552948266934976], + [4.545371045801442, 51.55390881324377], + [4.546444978844216, 51.55365063025582], + [4.547310788566006, 51.55236143002983], + [4.550493400188558, 51.55271176205807], + [4.566841908383552, 51.55596309618739], + [4.568020735045344, 51.55619935714712], + [4.582011610881737, 51.559047845962716], + [4.581750755876632, 51.560266742169105], + [4.582879051284162, 51.560419125913135], + [4.584896326897019, 51.559634910984634], + [4.591761315613386, 51.56103164863113], + [4.59185783260504, 51.56089944842057], + [4.592000383122493, 51.56024635305579], + [4.596819219277577, 51.560020881233406], + [4.601658748035435, 51.5586948864391], + [4.6065712634556455, 51.55602308258958], + [4.608136334203586, 51.55424161186123], + [4.610107846571745, 51.55360287399521], + [4.611003273244399, 51.55433847621386], + [4.615790464232136, 51.553179420491006], + [4.624795702709342, 51.55238557355784], + [4.625809344288126, 51.54741155954429], + [4.627016654032053, 51.548081121880564], + [4.628782391984629, 51.54662708105819], + [4.63007772510344, 51.54716178243546], + [4.631775803092161, 51.54388153225712], + [4.632777252419559, 51.54424918609309], + [4.6352857337964535, 51.54235140021243], + [4.63608348543297, 51.54318899615278], + [4.637868401746281, 51.542325974653046], + [4.640110074891266, 51.54342316121106], + [4.638716047853591, 51.5244126552197], + [4.631059770212455, 51.523311376166006], + [4.627659563958766, 51.52246774669002], + [4.624986623709643, 51.521090128067826], + [4.626401751659641, 51.518920661062786], + [4.621507383777454, 51.51744384163267], + [4.621618195661202, 51.516261924937886], + [4.619405379258248, 51.516172002202005], + [4.620539103664789, 51.51073618396989], + [4.618201755555784, 51.51067224283589], + [4.618197659171177, 51.50961524682799], + [4.6170868911900165, 51.50970684329953], + [4.616379469145747, 51.50808729755053], + [4.615020048379295, 51.508946896627734], + [4.610784554388936, 51.50833860059384], + [4.579573546618017, 51.51071275075205], + [4.5897312032007145, 51.49673744504884], + [4.583709942275899, 51.49576408216416], + [4.579179919613597, 51.49340621416205], + [4.576177672154064, 51.4925394438448], + [4.5739762795882175, 51.4884685700663], + [4.575808045905428, 51.48813956834304], + [4.572299213382526, 51.48267487875983], + [4.556100788683922, 51.48563433021444], + [4.548160792838867, 51.47331259445625], + [4.5381845478195295, 51.48239772376045], + [4.486681568183694, 51.477352821565006], + [4.485406498268134, 51.48162255858001], + [4.492861652375291, 51.48329129513162], + [4.490313442219102, 51.48699162464964], + [4.497893254796351, 51.501432794564494], + [4.498096385596837, 51.501811979616676], + [4.496653520424474, 51.50830048246743], + [4.498517065034203, 51.50986346184508], + [4.5021795429084674, 51.51672352113194], + [4.5026881796752525, 51.516749059870975], + [4.514332214990773, 51.517895527156995], + [4.513563588602051, 51.521601486196104], + [4.515953755528485, 51.52152027691435], + [4.517650805605401, 51.525388241691374], + [4.51965820920941, 51.52540136775578], + [4.520137109169846, 51.52655808479976], + [4.519579210744624, 51.52708135819923], + [4.52118957159136, 51.52895055367921], + [4.520418932407497, 51.528991276402], + [4.5219686361421605, 51.53177565360518], + [4.521408386495535, 51.53309497117191], + [4.523191561660773, 51.542556840746215], + [4.515795701386806, 51.54299794398567], + [4.51583320614698, 51.54208777260591], + [4.514444035960076, 51.54190104945233], + [4.511315466500614, 51.54398242981436], + [4.506789737616264, 51.543632474525936], + [4.498830566616445, 51.54478508028364], + [4.498789206090494, 51.545704419700556], + [4.497472345160565, 51.54627328852213], + [4.498081232885455, 51.54994209922978], + [4.50020415078661, 51.55853633324061], + [4.501634754626562, 51.563270732238436], + [4.504153851017201, 51.562985042290244], + [4.50495557456559, 51.566026311843686], + [4.508713474849148, 51.56554861898299], + [4.509450016755429, 51.56855866694564], + [4.536616313975775, 51.56577633404857] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.a0668815-3988-4d8d-b23f-d465eb2d58ae", + "properties": { + "statcode": "GM0845", + "jrstatcode": "2024GM0845", + "statnaam": "Sint-Michielsgestel", + "rubriek": "gemeente", + "id": 218 + }, + "bbox": [ + 149229.56899999827, 401259.61100000143, 159817.74700000137, + 412524.44409999996 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.439597284304942, 51.6986513964135], + [5.443350173735243, 51.69761803805825], + [5.441353391736139, 51.694656087424185], + [5.4459982783947956, 51.69529809118752], + [5.447404687489772, 51.695023387544204], + [5.4466246580074085, 51.69290229627019], + [5.445167496197634, 51.68858120772275], + [5.451678818149745, 51.686751268916645], + [5.452718755861304, 51.68847496274951], + [5.456872727904078, 51.687590841530124], + [5.448826836413832, 51.669552161043796], + [5.445631267519385, 51.666416830426684], + [5.445042493154713, 51.664278959530435], + [5.4394105735198215, 51.66487438314822], + [5.43260928461049, 51.66417724947514], + [5.431593158120304, 51.663186843553476], + [5.4316634263707835, 51.66089459167125], + [5.4284237380358915, 51.65647169451964], + [5.423529298484124, 51.65385120033671], + [5.423389800540978, 51.65378314577808], + [5.422485944611033, 51.65399787125549], + [5.422230274504935, 51.65359395014304], + [5.414644278399982, 51.65570260778963], + [5.415095664931722, 51.654079190944145], + [5.41142550196245, 51.654458277310425], + [5.411264895725974, 51.65397047646095], + [5.41347484968299, 51.6537464175756], + [5.412621333445578, 51.65277887562064], + [5.411080838940357, 51.65269151015564], + [5.4109788610403635, 51.65155129781935], + [5.412563836691849, 51.650985308552855], + [5.412296889735245, 51.650303272036524], + [5.406058006019845, 51.65021491751853], + [5.405959793232336, 51.64831180121896], + [5.401948738027039, 51.64794316815283], + [5.400042118400149, 51.64656699087077], + [5.396154779373245, 51.64532075682006], + [5.395370853833295, 51.64617497744923], + [5.389823782234629, 51.64563103033156], + [5.385160441108584, 51.64641909095691], + [5.3841919553366715, 51.64590569145209], + [5.380096283590645, 51.64635627705433], + [5.379111526733458, 51.64734966286629], + [5.378098463168, 51.64663865103162], + [5.379898634400305, 51.64570585503412], + [5.379070000444955, 51.645550794321245], + [5.379592131364177, 51.64415157488393], + [5.377169487233532, 51.6435391956581], + [5.3762415553512355, 51.64463004299623], + [5.375439297773044, 51.64445032142015], + [5.37603447625347, 51.643328906572194], + [5.371868162232574, 51.64193102019701], + [5.375296152089296, 51.63998953111687], + [5.377891640238063, 51.63949458428107], + [5.379399897044522, 51.6399335577502], + [5.380089017755582, 51.639188226287814], + [5.383186359848109, 51.63845110332125], + [5.378687272936851, 51.63867066455873], + [5.373190667493684, 51.63703586515532], + [5.371361048869888, 51.63722591271661], + [5.3711752013824, 51.63300367892483], + [5.374997765182852, 51.63369341566374], + [5.383284924665113, 51.63160385117726], + [5.383211006489338, 51.62848576759302], + [5.3840782671688485, 51.62838770074305], + [5.383579163284556, 51.6277080253184], + [5.3872448847315075, 51.62592658393958], + [5.3844548173105, 51.6254673756269], + [5.383852690182753, 51.62408583879007], + [5.385887997666471, 51.623454314026326], + [5.384508556133822, 51.62335994851555], + [5.385917216721557, 51.62090596121802], + [5.388957329638025, 51.621289808741594], + [5.388615268625469, 51.61772611138433], + [5.391015218395477, 51.61654837390934], + [5.3905226901805525, 51.61432929479953], + [5.392414663372762, 51.61236067496405], + [5.390716009435532, 51.61178033147445], + [5.394856265127042, 51.605842015335625], + [5.390423601702772, 51.605423638314555], + [5.380528761783988, 51.60290189900474], + [5.3783445068146625, 51.602546258335465], + [5.374139133490328, 51.60173034732653], + [5.363138339816421, 51.601779095523746], + [5.3529289625853185, 51.60069064649912], + [5.350985141750662, 51.60396604574268], + [5.345866868926279, 51.602737919916784], + [5.342834533747304, 51.600223878978895], + [5.3413856210621224, 51.601468329065355], + [5.340833737468813, 51.604350017892465], + [5.3359635345018726, 51.60309326216789], + [5.332131018084346, 51.61113648713275], + [5.334862648755185, 51.61363979322993], + [5.339048269772819, 51.61386069946476], + [5.343177440557648, 51.616867788720484], + [5.343810934636907, 51.62297156816237], + [5.338404933766144, 51.622127055704475], + [5.3177319071598745, 51.6346339351938], + [5.320424750413467, 51.635654853937254], + [5.321190718569855, 51.63696179004829], + [5.319558290839143, 51.638491401818996], + [5.318671325637198, 51.64205448309745], + [5.319696389673972, 51.64548954310603], + [5.319150328110028, 51.64997492604082], + [5.316876918705086, 51.65224136618041], + [5.314509578470368, 51.65247153053232], + [5.312573774895584, 51.653945683009155], + [5.31173901808008, 51.658128984291984], + [5.306194076884824, 51.66111104869509], + [5.303797220796478, 51.66399303022914], + [5.303971151110642, 51.665548356389536], + [5.308948689026468, 51.66794078661545], + [5.319057404211456, 51.67037213133489], + [5.327474754398675, 51.67336715997573], + [5.338883188441677, 51.66399664097978], + [5.342006648625523, 51.66530157234927], + [5.341485656709574, 51.66618577510583], + [5.343959684589422, 51.66744589469496], + [5.353692933237832, 51.67107346448076], + [5.352932435915207, 51.671814276162614], + [5.354613261680425, 51.67250667122741], + [5.353878435469245, 51.67314201591066], + [5.355962091003682, 51.67400388345087], + [5.3509393633362565, 51.67714481638124], + [5.352180482045613, 51.68108248954492], + [5.353313973611042, 51.6814519738554], + [5.35575981847648, 51.68129499982226], + [5.357024363485458, 51.68106612399742], + [5.357351351615357, 51.68200275524143], + [5.3664738715957645, 51.68068879256065], + [5.3670123631477376, 51.68084263241532], + [5.367813722917147, 51.68079420185219], + [5.3724665148270985, 51.68010862457579], + [5.376587206696129, 51.678516949374114], + [5.377110253750164, 51.67880180460334], + [5.3733073291559945, 51.68133523957187], + [5.369856997653569, 51.684337620745474], + [5.36563360053612, 51.68886342380953], + [5.364295720468062, 51.69052768784245], + [5.3592740501373255, 51.698679145006444], + [5.3607112206249115, 51.698767830983456], + [5.362463146611014, 51.698495954940924], + [5.366215859024516, 51.69696762385137], + [5.367997824605773, 51.697086347716976], + [5.371544817310317, 51.69796906629992], + [5.37311662019356, 51.699740957904595], + [5.375679139586097, 51.70027536252651], + [5.385707550515996, 51.7009849757411], + [5.394524618313469, 51.69889287031005], + [5.397715368877534, 51.69848850958239], + [5.406066042136311, 51.69907520495196], + [5.429808253542638, 51.7014786768101], + [5.439330386515006, 51.700434370388514], + [5.439597284304942, 51.6986513964135] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.b494c36f-d5d7-461a-88ed-e3f3af630e3c", + "properties": { + "statcode": "GM0847", + "jrstatcode": "2024GM0847", + "statnaam": "Someren", + "rubriek": "gemeente", + "id": 219 + }, + "bbox": [ + 172441.43100000173, 369576.4439999983, 181708.52899999917, + 385443.07009999827 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.68972517508743, 51.44298323841947], + [5.693983451957947, 51.43923979306062], + [5.699978748042478, 51.422154349197314], + [5.700296169385621, 51.42127374536369], + [5.700716922416798, 51.418547991182194], + [5.702877297969981, 51.41254119697247], + [5.70524536312574, 51.40966420147097], + [5.733724139408841, 51.39187286187242], + [5.736108761481185, 51.38968524912992], + [5.737496467930729, 51.3868146099828], + [5.739369988969062, 51.37480176329138], + [5.740216038061261, 51.36979327691894], + [5.745459767280692, 51.371105725142606], + [5.770448612871386, 51.333804588777625], + [5.76009276684314, 51.331837902935575], + [5.747064213848794, 51.329362482440914], + [5.7458957073564445, 51.3291420419431], + [5.713650061867568, 51.323011634983054], + [5.701730171613075, 51.320743654054674], + [5.6721107820480245, 51.315094012914564], + [5.6704938063985315, 51.31748248659178], + [5.672090676942896, 51.323592154913534], + [5.6701006812164705, 51.3256535246596], + [5.6667692375211205, 51.32672501866517], + [5.654707151483519, 51.353877286009975], + [5.6389417868355105, 51.389123736023976], + [5.639001499380831, 51.39797123410778], + [5.63787220150182, 51.406707463794696], + [5.639015501915434, 51.422456484221584], + [5.639224951290862, 51.42310408695667], + [5.643034504283446, 51.434812633872326], + [5.642457307149572, 51.43492847831548], + [5.643623788780782, 51.44019261369037], + [5.644475761198198, 51.44112322594837], + [5.647529584099519, 51.442005071427104], + [5.648265744789148, 51.44150688875465], + [5.653307663421253, 51.44638526121196], + [5.655285611956871, 51.45237826909246], + [5.656298776155287, 51.45282600022351], + [5.656017726337835, 51.45527247111165], + [5.656468182333515, 51.45655960919769], + [5.66899613686294, 51.45684947793743], + [5.672237615830225, 51.45771484591745], + [5.682197766276668, 51.44932673868661], + [5.68972517508743, 51.44298323841947] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.8bdd1eba-3797-42f1-8c78-060ff6208e2a", + "properties": { + "statcode": "GM0848", + "jrstatcode": "2024GM0848", + "statnaam": "Son en Breugel", + "rubriek": "gemeente", + "id": 220 + }, + "bbox": [ + 157542.3599999994, 389434.44099999964, 166042.30099999905, + 394769.0520000011 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.487944593958292, 51.54136262168497], + [5.488815413741941, 51.53328521295678], + [5.493449072240688, 51.526685553696694], + [5.494253692437788, 51.527206374153536], + [5.496452520420048, 51.52704871518564], + [5.498271528741384, 51.52852964457805], + [5.501898241891133, 51.52743713554791], + [5.501858418684686, 51.52672686621965], + [5.50257155912085, 51.527293174826994], + [5.503725146865265, 51.526496453545434], + [5.503342825601314, 51.52578917792871], + [5.4999238823177645, 51.5252035429865], + [5.500108861965664, 51.52137710300151], + [5.505453341388338, 51.521667279659226], + [5.506564941943957, 51.52303670730879], + [5.508341081680088, 51.52382771868559], + [5.5089314077574425, 51.522687030864255], + [5.51303045482648, 51.52429637483228], + [5.514551348098417, 51.52324910368742], + [5.519781761859638, 51.52246471358605], + [5.5210647753524125, 51.52290244128371], + [5.521603313183823, 51.52244858365244], + [5.522613573418311, 51.523430817089086], + [5.525047826071297, 51.52186900429216], + [5.530863591734274, 51.525048675319766], + [5.536733419399797, 51.525051970022496], + [5.536811551152285, 51.52600619336201], + [5.540194940234127, 51.52601177468753], + [5.5431619139352035, 51.52363008617772], + [5.544747849705338, 51.523537373572], + [5.544030110404701, 51.521758014569805], + [5.545634244710417, 51.51994971497042], + [5.540674772331798, 51.52066492726379], + [5.541758011260172, 51.518074597979734], + [5.544363497644304, 51.51568439900981], + [5.546272784675881, 51.51269567567124], + [5.542272339932157, 51.510627039245996], + [5.538675771817345, 51.507595947754176], + [5.532794353477103, 51.505212154209445], + [5.531619394791616, 51.505560752864234], + [5.527834441389362, 51.502319028278976], + [5.525973990963208, 51.502292744706395], + [5.526116535594566, 51.501446347556154], + [5.523982986120355, 51.50194623819972], + [5.51859917472615, 51.50199579832756], + [5.514939509018443, 51.49998161594143], + [5.509792286578164, 51.498587549477726], + [5.510240401603323, 51.49728703557383], + [5.511424142114053, 51.49692216264557], + [5.496377639269504, 51.49677809624758], + [5.49621393294774, 51.49677627013403], + [5.479144674364623, 51.496613048156796], + [5.476447601711379, 51.49706834047513], + [5.472133174437789, 51.49574223361886], + [5.468738008627428, 51.495792097177066], + [5.468249986604104, 51.49684394204311], + [5.4638951446537565, 51.496978501556214], + [5.451297308544778, 51.495464143600806], + [5.449783324024511, 51.49524937167729], + [5.4425705689183, 51.49392721604361], + [5.440704808013803, 51.49605928723151], + [5.447507692328072, 51.51206895350574], + [5.433370366975177, 51.52439703957936], + [5.4265840509070955, 51.531276810055104], + [5.427505038731531, 51.53166630413173], + [5.426433778597901, 51.532732783473314], + [5.425463271768263, 51.53241278379863], + [5.423842807511351, 51.534055099195804], + [5.429834783780996, 51.53497013954497], + [5.431572648864797, 51.53334689160662], + [5.434424361682381, 51.534328054934775], + [5.437412300973904, 51.53397280601987], + [5.457009874674745, 51.53801174046754], + [5.4682838472228505, 51.540646795118136], + [5.482749516757661, 51.5415711359988], + [5.487145717790996, 51.54184837065478], + [5.487944593958292, 51.54136262168497] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.2fe21852-1b07-4a1a-8120-c4562f72753d", + "properties": { + "statcode": "GM0851", + "jrstatcode": "2024GM0851", + "statnaam": "Steenbergen", + "rubriek": "gemeente", + "id": 221 + }, + "bbox": [ + 72068.80600000173, 395492.945700001, 89608.03500000015, + 408083.0833999999 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.371213151416713, 51.65620914750805], + [4.375902557140966, 51.651902806876805], + [4.376397062668112, 51.65193326186347], + [4.380769165321363, 51.65058446973145], + [4.386668331325635, 51.64618069897063], + [4.392436230831262, 51.644814295452036], + [4.39716933262884, 51.643051102628036], + [4.399904561925538, 51.638805210090126], + [4.40910825371031, 51.63271937011206], + [4.413492367659361, 51.63116412561707], + [4.421207340548379, 51.63081840146354], + [4.423859218548817, 51.63026500717271], + [4.425001896859295, 51.6294659215926], + [4.428815969539023, 51.62327071539915], + [4.437827866411595, 51.617119161441956], + [4.435704529432684, 51.61517465102273], + [4.4337654678186, 51.61593944914248], + [4.431934990237659, 51.613911211707695], + [4.432463570091419, 51.612891102932615], + [4.431546544331487, 51.61084499634678], + [4.426674800754523, 51.61174020391223], + [4.42801825057505, 51.60540513173353], + [4.429338034424864, 51.59387856058762], + [4.429922643077751, 51.5902477004756], + [4.432925985441103, 51.582797155324], + [4.443999240069713, 51.569095437615154], + [4.441953916830263, 51.56738504459267], + [4.441078187744477, 51.55849163960846], + [4.438381469959303, 51.556391259861975], + [4.429032308530543, 51.555701265848064], + [4.428204722911735, 51.553598408596706], + [4.426878352939452, 51.552382756842434], + [4.411468489412353, 51.55159855079671], + [4.378090419834989, 51.544314746462206], + [4.3735980190202755, 51.54400308570586], + [4.361582707896624, 51.54591288511492], + [4.317977607914271, 51.55121575304361], + [4.297160396280276, 51.55365762119001], + [4.296233919467418, 51.55385951829378], + [4.297813885416854, 51.555913094405824], + [4.298165883429326, 51.55894815996937], + [4.27312931500771, 51.56443789977233], + [4.268394917088943, 51.56485143686159], + [4.26726952607374, 51.56494500337719], + [4.267504532057433, 51.56631015915714], + [4.267622507152432, 51.56801014070004], + [4.252026711722063, 51.570657678607624], + [4.242975446769727, 51.56297980884604], + [4.242935824202957, 51.55912530311541], + [4.239725113009386, 51.55091846755072], + [4.236118851113026, 51.550365798126], + [4.235585635843284, 51.552723934688025], + [4.232443710961235, 51.55905485980531], + [4.228121118474745, 51.56371630668508], + [4.198891447289048, 51.58597535088782], + [4.195717966407269, 51.58897518335542], + [4.192231517562285, 51.5939015806513], + [4.190817042839338, 51.59738453780104], + [4.190162322406805, 51.600953896546855], + [4.190573560494295, 51.606055835424044], + [4.19168488753337, 51.60933696942693], + [4.1976594939855705, 51.6180479550924], + [4.205020844668492, 51.62356141704838], + [4.214466608664733, 51.62766402692121], + [4.227822353828634, 51.631022596578276], + [4.2373236719131215, 51.63401442676383], + [4.240418020149676, 51.6332114847171], + [4.238276255601393, 51.632491039066934], + [4.240971868283722, 51.6320516745342], + [4.252923063934929, 51.63232645409691], + [4.2532548515734545, 51.630772293997886], + [4.258694349533815, 51.631470268435244], + [4.259266578296213, 51.63313957205757], + [4.264406451080082, 51.6359215349819], + [4.271575359157113, 51.63794276921908], + [4.2744340599467785, 51.63814808781963], + [4.276204111972689, 51.637278178345234], + [4.282432314215667, 51.639808467618764], + [4.290188949438692, 51.640514854233274], + [4.292903211642795, 51.64139172177889], + [4.292177681217987, 51.63891184000261], + [4.295317276272212, 51.638963192618895], + [4.294937239213738, 51.64200551904977], + [4.295662729428201, 51.64235018611874], + [4.2987951142738305, 51.64187828974461], + [4.309282790504118, 51.64526568016661], + [4.3174457665657755, 51.646277585857526], + [4.332119821403429, 51.64474372090083], + [4.3371181878776195, 51.645198838649534], + [4.3502689321437025, 51.64811848050216], + [4.361060341595884, 51.6524735051723], + [4.368773499912333, 51.6571360874612], + [4.371213151416713, 51.65620914750805] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.3b35e18d-c211-4e22-9c9c-b29fc1aad39b", + "properties": { + "statcode": "GM0852", + "jrstatcode": "2024GM0852", + "statnaam": "Waterland", + "rubriek": "gemeente", + "id": 222 + }, + "bbox": [ + 125078.73600000143, 491977.20800000057, 138156.30559999868, 500851.829 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.997964432297237, 52.49473276621614], + [5.02461118118036, 52.48492547750787], + [5.025520450419663, 52.48513613948308], + [5.030621713921614, 52.4870607254855], + [5.031052654666073, 52.48847685551673], + [5.0339134853475, 52.48857231631335], + [5.03407873479551, 52.48833004375123], + [5.038780118138384, 52.48834375219086], + [5.059094935616399, 52.49095566685158], + [5.058645618402979, 52.48552485197158], + [5.059481435377508, 52.48561453750717], + [5.059061970472236, 52.481796657820205], + [5.060571076862159, 52.476706516474856], + [5.067652223532228, 52.472304409141614], + [5.06908894506191, 52.470711738188704], + [5.068475003048129, 52.46876668106277], + [5.0619048536240285, 52.4677049665049], + [5.057838846636234, 52.46792578584667], + [5.051066824274957, 52.46933276899025], + [5.048829594424747, 52.468456941970636], + [5.041573137473899, 52.46589453172312], + [5.041424136287721, 52.465497496127654], + [5.039723938617336, 52.46557405854787], + [5.0391180876928425, 52.46497517574288], + [5.038762073655559, 52.46503406769407], + [5.0388309340308695, 52.46577575344763], + [5.038651094413921, 52.4657875738268], + [5.038664025009759, 52.46613271049815], + [5.0382160140045285, 52.46620109260132], + [5.038225992447682, 52.46628075534405], + [5.033605252108371, 52.467389822958665], + [5.033415892787441, 52.465965729932], + [5.033308215180593, 52.46480697414945], + [5.034098756390503, 52.464397983245924], + [5.03851683342102, 52.46400106408339], + [5.038750581076899, 52.46342452314283], + [5.0383654430929505, 52.463225100489524], + [5.037709441626563, 52.46344927395099], + [5.036449160973684, 52.4631709835194], + [5.038799131716455, 52.46046327646276], + [5.039871129367665, 52.46085258021645], + [5.04043745501904, 52.46013561475933], + [5.041671718420542, 52.46013783154437], + [5.040653318861605, 52.45904187557267], + [5.040884224486756, 52.45818462574312], + [5.042292337633946, 52.457776276497775], + [5.043460650720344, 52.45759403255529], + [5.046074067235924, 52.46118132413618], + [5.049257724326031, 52.462765312198606], + [5.0540360020723964, 52.46208359783613], + [5.055248517186951, 52.46087641382093], + [5.0498014306212315, 52.45551401213915], + [5.04846496674039, 52.45510029847537], + [5.048178512612126, 52.45388354330932], + [5.048165504177814, 52.45056768422023], + [5.047726713137035, 52.44837989614938], + [5.0482239418321, 52.447674414877376], + [5.04912540949577, 52.447326248278586], + [5.050304964177926, 52.44500109910918], + [5.047951861722842, 52.44225372350562], + [5.049416213279996, 52.43935903933943], + [5.057489012173649, 52.439127555330955], + [5.06383301483017, 52.43732519376011], + [5.064842786384807, 52.43734319560138], + [5.065663092064124, 52.43858305634964], + [5.067196664442942, 52.43889558489243], + [5.071705627068151, 52.437732902113076], + [5.078061164617049, 52.43655796842877], + [5.086927388962657, 52.437023947239986], + [5.08718753814633, 52.435061450438226], + [5.088846409479545, 52.43484328526304], + [5.09300253201605, 52.44011564274438], + [5.09439110211467, 52.448543674181984], + [5.092997028862114, 52.45036743828417], + [5.092636567348265, 52.45166215427481], + [5.094686715318585, 52.45414627800738], + [5.09877663140412, 52.45726893502312], + [5.099253158343341, 52.4582354532037], + [5.099074168862106, 52.45841321268632], + [5.099143813073835, 52.458554260155616], + [5.099509047634841, 52.4582883389385], + [5.099233721435076, 52.45761162292161], + [5.099040540495452, 52.457400173239705], + [5.1001627432531285, 52.45706405866438], + [5.100689586608696, 52.457910485672734], + [5.100545555629061, 52.4579460424976], + [5.100626841565547, 52.45808253364102], + [5.100782290786883, 52.45804456869474], + [5.100962026507828, 52.45831836403605], + [5.10132066347455, 52.45889959454893], + [5.1007935342874955, 52.458996640945], + [5.100430815750914, 52.45841775907434], + [5.099269644708634, 52.4586638531153], + [5.0992795579973595, 52.45877627783157], + [5.100007272548535, 52.458695515912474], + [5.101535508797352, 52.46205519116695], + [5.100521926652567, 52.46417212356455], + [5.102725423192931, 52.46671500459154], + [5.104927328102359, 52.467276213216486], + [5.106344985310453, 52.46754563690057], + [5.111763139096805, 52.46397775519057], + [5.1136445986516295, 52.46178894994726], + [5.120098364363459, 52.46179295968125], + [5.132080413171671, 52.46309801058288], + [5.1347442142765045, 52.46288108597825], + [5.13652398817872, 52.46240479251484], + [5.137285376731626, 52.46183994382179], + [5.137573172234453, 52.46125411448093], + [5.137328637755508, 52.460658004155995], + [5.1375962623879685, 52.46038670493708], + [5.13877421102065, 52.45991066174452], + [5.139313095389028, 52.459909685235054], + [5.139381651264863, 52.45968798083887], + [5.138856194575374, 52.45962459259131], + [5.138859038530239, 52.459547782930784], + [5.139293023272252, 52.459500517241175], + [5.139270003092935, 52.45943723801804], + [5.138707157653715, 52.459487083640305], + [5.138293886559368, 52.45998334273189], + [5.137005408115323, 52.46034175598011], + [5.133416824167895, 52.459818507479575], + [5.1243154205714125, 52.45706796828475], + [5.12192227102606, 52.455645088158], + [5.1110857632814914, 52.45404569794335], + [5.106176845989698, 52.45019353467114], + [5.099122874798355, 52.45026848232752], + [5.094938944616109, 52.448452481736936], + [5.09387120314271, 52.4410102525684], + [5.091921394378695, 52.437365753063446], + [5.086756333308089, 52.43209183016935], + [5.086347414262292, 52.43229391520816], + [5.088212374609906, 52.43423174486519], + [5.0859224913927354, 52.43504640391482], + [5.0816984249737045, 52.43105829879795], + [5.080848100950548, 52.430695413049186], + [5.079429319824796, 52.430741766880416], + [5.079982585605501, 52.43029379772599], + [5.079776308340757, 52.43002693239645], + [5.078911743057415, 52.430160230414245], + [5.0766062886397005, 52.42892736604382], + [5.076320197515431, 52.42857455529006], + [5.076220857315998, 52.428170257295065], + [5.077033356347201, 52.42782657162629], + [5.076970569199028, 52.4276044452834], + [5.076832541597501, 52.4269744049118], + [5.076679048872608, 52.42699169932968], + [5.076667306996039, 52.42765049143723], + [5.075443358876896, 52.4278363202969], + [5.07563219154458, 52.428581459576364], + [5.074879121861559, 52.42872187596855], + [5.074318406710813, 52.42785854013496], + [5.074652876465432, 52.42775764427552], + [5.074211524005842, 52.42712271218926], + [5.076707693037677, 52.42668385026037], + [5.076178395395579, 52.426431833003555], + [5.075843677221365, 52.426341383711524], + [5.075183397615896, 52.4262524379406], + [5.0742893712583665, 52.42495206356367], + [5.074377300575474, 52.42451005283682], + [5.075439419564634, 52.4242997202118], + [5.075366219500687, 52.424174659472705], + [5.074056261130874, 52.424417737258736], + [5.073049319892526, 52.42395384273074], + [5.073263688900067, 52.420582179986134], + [5.068263524147653, 52.416558099575596], + [5.065412546012646, 52.41723944783791], + [5.049177133423939, 52.41512927254887], + [5.040109138979139, 52.417307253930375], + [5.035238072280898, 52.418250990847476], + [5.0329342056150805, 52.41646284753902], + [5.0300447917786615, 52.415643495791514], + [5.029727793544366, 52.4177068201727], + [5.028357307577804, 52.41941642512188], + [5.021145753302403, 52.421054819968575], + [5.018205109216432, 52.419059549432724], + [5.000292804985572, 52.425406731593505], + [4.990445197689168, 52.42552077996823], + [4.989100177556863, 52.42330650687214], + [4.987101491899271, 52.42284169787549], + [4.982636419509616, 52.42676229238878], + [4.976238280448379, 52.42402599753763], + [4.97331980850478, 52.42279733416754], + [4.956005271251374, 52.42196033854783], + [4.95577711075209, 52.422431932306374], + [4.953559214081649, 52.422256632242906], + [4.952329179296735, 52.42352357120089], + [4.951340219009839, 52.42322851566267], + [4.951722006837267, 52.42250701737678], + [4.951481365915671, 52.421929744670614], + [4.949682840859511, 52.42198354440548], + [4.9488071642021225, 52.421464346099214], + [4.947788574187965, 52.42156224111937], + [4.950689657201392, 52.42359613093973], + [4.950861297141673, 52.43714072432768], + [4.948786132990363, 52.44797399567669], + [4.9480016071419195, 52.452388692579596], + [4.950676229238107, 52.45821979693883], + [4.94687722863381, 52.46888310692068], + [4.947168980385004, 52.47906319302592], + [4.948316321936885, 52.48400482830396], + [4.953896013518927, 52.482958698809746], + [4.953617339898734, 52.4756940235296], + [4.958036125137246, 52.47122813509785], + [4.974010111158024, 52.470404369170225], + [4.976494220041409, 52.472740829579244], + [4.995163857690376, 52.49187261309059], + [4.997964432297237, 52.49473276621614] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.bc5969c4-cee2-4fa6-a598-ef4939dbdb09", + "properties": { + "statcode": "GM0855", + "jrstatcode": "2024GM0855", + "statnaam": "Tilburg", + "rubriek": "gemeente", + "id": 223 + }, + "bbox": [ + 124567.39600000158, 393451.83410000056, 142776.28799999878, + 405889.2969999984 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.178968092265918, 51.641661425045356], + [5.17957727386827, 51.63989306345902], + [5.184009279456192, 51.640677709358485], + [5.191821269008258, 51.63947733137514], + [5.191991292744604, 51.638090145320426], + [5.191292370621025, 51.63688665482866], + [5.192229867215516, 51.63444623376776], + [5.192978597489153, 51.63426172479953], + [5.193660949647803, 51.630613654600275], + [5.195884188446538, 51.62797974797405], + [5.201219346510413, 51.62396201206202], + [5.202768109966964, 51.62262181301973], + [5.207876385652375, 51.620404744019154], + [5.207809957315866, 51.620201446619255], + [5.210711377326612, 51.61558841713455], + [5.202034222990228, 51.61147712257119], + [5.188949976454674, 51.60357190588436], + [5.1868842895848415, 51.601750716195305], + [5.179539019674425, 51.59766446326337], + [5.172274319377579, 51.59316550588725], + [5.172095274389438, 51.5922541012672], + [5.171457884141587, 51.59295643876251], + [5.1703047147409595, 51.59224120532365], + [5.161439728714603, 51.58667157344118], + [5.161431153409544, 51.58666635878255], + [5.151075712176647, 51.580325442755125], + [5.148835159709695, 51.57829129621816], + [5.1487695082947855, 51.57771326705836], + [5.14716504244062, 51.576804958672675], + [5.147486784361668, 51.57556915996548], + [5.1487882509817835, 51.5753911097246], + [5.1484194718566645, 51.5753510934618], + [5.146759179290165, 51.57543609037901], + [5.145520009427752, 51.57450559734362], + [5.144964271445698, 51.573875873473824], + [5.142678907823392, 51.57036639087391], + [5.141358786708687, 51.56830279220104], + [5.143057398537538, 51.56825395533504], + [5.143099021056381, 51.56814181919112], + [5.141285221191817, 51.567973598936305], + [5.137838108460352, 51.5631993698859], + [5.137355035585621, 51.56258092769178], + [5.138551343147422, 51.56130875235191], + [5.139138848559264, 51.56132113866867], + [5.137955198805086, 51.55973708981423], + [5.13756714346818, 51.55207698969492], + [5.14116151235942, 51.549531051683786], + [5.147835931001958, 51.54711795479859], + [5.14746978506828, 51.54681012663163], + [5.143824814133606, 51.546226045459996], + [5.138694808131967, 51.54595613943349], + [5.141880908315931, 51.542092141164254], + [5.1336563308205525, 51.53499934863485], + [5.135451732255449, 51.53358010011908], + [5.130196119365457, 51.530297889343764], + [5.12706085500031, 51.53235379726098], + [5.118799479237077, 51.54591897465773], + [5.1134865568048715, 51.54234964939475], + [5.113660797363046, 51.54100706218273], + [5.112520946263487, 51.540023268775336], + [5.109820583301512, 51.53938317454063], + [5.10609689442096, 51.53742697758306], + [5.102823918175366, 51.5360427704612], + [5.096474550786552, 51.53496681288016], + [5.085483034467038, 51.53559283159575], + [5.083465386255392, 51.53582395350876], + [5.073827122661745, 51.53671667055407], + [5.0735270195833, 51.536743989389734], + [5.064680259523745, 51.53742559673958], + [5.062912489623238, 51.537843983503116], + [5.061879528372276, 51.537710505981494], + [5.060322926620698, 51.537869156917104], + [5.055461497280189, 51.53608087119567], + [5.051710219595342, 51.535058614177046], + [5.052772423089919, 51.53241629783682], + [5.0522744888896245, 51.52976367929197], + [5.050785044712438, 51.52995219000216], + [5.044825033023364, 51.530642579172095], + [5.044364047072092, 51.530832714775855], + [5.032725262142497, 51.53016771918327], + [5.030500980161728, 51.529507210347695], + [5.027520471864166, 51.53343817725346], + [5.022499770228943, 51.5384596146739], + [5.020503688160854, 51.53895403886456], + [5.00156823487032, 51.53748782567725], + [4.993407457462179, 51.538410991301745], + [4.987628861346058, 51.54002282079671], + [4.97546006383119, 51.54013286562536], + [4.976665531282883, 51.54241851250248], + [4.979565147844995, 51.54420169220539], + [4.97845451867069, 51.544814627010524], + [4.969236049575846, 51.54899380627558], + [4.964128292906565, 51.549912100722096], + [4.953479031754132, 51.55052834296105], + [4.9529822776789185, 51.55341317063182], + [4.951180192625626, 51.5580482615712], + [4.95114531012869, 51.56091753452276], + [4.954368691420584, 51.56225381818057], + [4.964183009909947, 51.565242768908625], + [4.966954448245496, 51.56731130009192], + [4.9665677626967915, 51.56782842268143], + [4.967831950326516, 51.568721945428386], + [4.968101071022773, 51.569321846799944], + [4.968990322651161, 51.57130476150396], + [4.966778550533264, 51.57366251968911], + [4.969197368112002, 51.57726895853858], + [4.970275308794497, 51.57722419556019], + [4.972339481581218, 51.58515265186817], + [4.973399508564013, 51.592073976317124], + [4.972859688746222, 51.597305693467526], + [4.967774288367847, 51.59768545494468], + [4.968736830918296, 51.60205749505429], + [4.9678435962892955, 51.60285898937711], + [4.961164590155374, 51.6061774575739], + [4.948807685997269, 51.610376683727644], + [4.947846386719574, 51.61117029243532], + [4.950248472185196, 51.61239370992772], + [4.95026563523685, 51.61241186911163], + [4.952931247985199, 51.61472315235889], + [4.957862099399294, 51.61375852738698], + [4.96078162214467, 51.61348658153067], + [4.96532391121493, 51.612935182217484], + [4.977553585798171, 51.60909064195259], + [4.982359900002206, 51.60866561376225], + [4.983513709802208, 51.60736413252045], + [4.991544334950602, 51.60791620827835], + [5.0044921276944105, 51.60788676831001], + [5.042036556443341, 51.60613749253007], + [5.0440250167383, 51.607359736929354], + [5.045010899759348, 51.61109712124035], + [5.060248946622313, 51.61077841915162], + [5.061771358586508, 51.609346128036485], + [5.070590544013791, 51.61029067517432], + [5.07097772320509, 51.608633771151815], + [5.07151266605565, 51.60826735171654], + [5.07207110787449, 51.608322399421326], + [5.074058841186641, 51.60948333742648], + [5.074025192750822, 51.60568095322772], + [5.075539939180224, 51.60576774665671], + [5.0755421996860335, 51.608952321759375], + [5.080181588901057, 51.609542283965396], + [5.079438677997636, 51.610784222171795], + [5.093745312317202, 51.61124928786998], + [5.096003309140368, 51.61246582850089], + [5.099157628619579, 51.61770626112397], + [5.101323208637109, 51.61658048074672], + [5.102958647027206, 51.616911136714485], + [5.101216846669753, 51.62040588670581], + [5.099849152861406, 51.627851585739826], + [5.09811923663916, 51.628243615689094], + [5.0981846101412645, 51.628822579690876], + [5.101367915934858, 51.63271186735846], + [5.106136972578786, 51.63595584487036], + [5.1158758735995, 51.63761027405548], + [5.123066245257779, 51.63819447052347], + [5.129258169581778, 51.637881360544924], + [5.1377107877746715, 51.64027119464355], + [5.144938395095858, 51.640511705649054], + [5.1600656733718395, 51.63953565594038], + [5.1720596470891, 51.6388965404862], + [5.178393654934187, 51.639680842394256], + [5.17792862399795, 51.641623959504976], + [5.178968092265918, 51.641661425045356] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.237e35b8-f840-4c47-aba9-38d8a60384d3", + "properties": { + "statcode": "GM0858", + "jrstatcode": "2024GM0858", + "statnaam": "Valkenswaard", + "rubriek": "gemeente", + "id": 224 + }, + "bbox": [ + 155042.08700000122, 363663.12900000066, 164748.1409999989, + 376581.26000000164 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.516417602409409, 51.37833551387407], + [5.527180534883607, 51.366941072637424], + [5.494144102194841, 51.35548676160202], + [5.493828528905589, 51.3540382673345], + [5.49428760647773, 51.35329230180374], + [5.496668768462305, 51.35265008813798], + [5.496030166119561, 51.34650779036227], + [5.487725076119127, 51.34312352034206], + [5.487005288605666, 51.3422783726639], + [5.481868069247612, 51.34084031845951], + [5.478346002854963, 51.33871160789993], + [5.477632244155183, 51.33723067849712], + [5.473603484228227, 51.33398314723531], + [5.476021636581829, 51.331216642204495], + [5.4771685354980315, 51.327520356600296], + [5.480786226854644, 51.32444177969582], + [5.480237811428885, 51.32405503902092], + [5.48293149668405, 51.3213413632706], + [5.4890559856933985, 51.318368661180514], + [5.490089112466404, 51.31667891803848], + [5.491371866387549, 51.31422232287696], + [5.490679124617826, 51.31029896863863], + [5.489194094039631, 51.306471165808695], + [5.485733840506566, 51.302432873494396], + [5.484859326308681, 51.29999994438948], + [5.483016497546417, 51.30016467802337], + [5.483199277159014, 51.29864551879394], + [5.479568946038, 51.296848756513825], + [5.477613959528161, 51.2949681536665], + [5.476887545288196, 51.29139133843102], + [5.470230866964002, 51.288149864860515], + [5.464836219342427, 51.28456533167676], + [5.441781537442904, 51.28210587007131], + [5.440610065641631, 51.278586879008536], + [5.438371270891573, 51.276026192857714], + [5.437719045894651, 51.27602756098778], + [5.433297705097176, 51.276333155855085], + [5.41741151905494, 51.26228572985173], + [5.403797196697036, 51.27346994805203], + [5.400896839891965, 51.27446196954669], + [5.398011391679622, 51.2776706491307], + [5.387803626226576, 51.285238899101934], + [5.397202093545763, 51.290620271692156], + [5.3970855890034075, 51.291476279989645], + [5.392664975758025, 51.293990010348864], + [5.394866228407547, 51.29627130709281], + [5.393425355474418, 51.299650802668786], + [5.39546403004111, 51.306008651850966], + [5.3947628217065136, 51.30634619169919], + [5.394459646209354, 51.3089942498068], + [5.395905307100101, 51.31017753310627], + [5.397672508499019, 51.31432058161189], + [5.400719157470839, 51.31350099408813], + [5.41078557215312, 51.319976919556865], + [5.412861454683742, 51.32051812983166], + [5.413652542559253, 51.318646452255514], + [5.416487404873655, 51.31939178085435], + [5.419850669584818, 51.31801834680427], + [5.4239278020709545, 51.31250749843429], + [5.425799123844847, 51.311990226838724], + [5.427375272737025, 51.31438950819295], + [5.4339226730520895, 51.32432076444422], + [5.424290736177545, 51.33075986118742], + [5.423035146836463, 51.33258136371408], + [5.422819889369321, 51.336266711729934], + [5.421951767198308, 51.33855653708896], + [5.4212019082625575, 51.33837728153089], + [5.421401244476503, 51.340693671636544], + [5.424979292605531, 51.34437128865649], + [5.425182582414423, 51.345373885701214], + [5.4227129781896055, 51.348324353714986], + [5.422905106062803, 51.34984847282575], + [5.423527870017695, 51.352239786323885], + [5.421546755382935, 51.35418829066256], + [5.420979831041843, 51.35665119825788], + [5.419703407978394, 51.35925012697058], + [5.419881985946962, 51.36510337607527], + [5.420981979992775, 51.36929950494547], + [5.4188711720867, 51.37180738516209], + [5.421360787988467, 51.37431725256572], + [5.42320735317642, 51.37486642567529], + [5.423165009830818, 51.37438982141156], + [5.424502337323499, 51.37407069544259], + [5.424897856306622, 51.37262440980168], + [5.4268340043764605, 51.372621140020954], + [5.427068428149532, 51.37180462400782], + [5.42938217670033, 51.3710051501747], + [5.429055255006383, 51.37021446851139], + [5.431266610135349, 51.369975071788296], + [5.43195647043433, 51.36913436320731], + [5.43540650882179, 51.36813334290278], + [5.436301110964431, 51.366239499854764], + [5.43922154571609, 51.366252430795136], + [5.44188598885119, 51.36747830162386], + [5.445234104884516, 51.36815096611812], + [5.461057710688366, 51.369471081683926], + [5.471255288416263, 51.37083198289582], + [5.491875441486941, 51.37405483045276], + [5.49647719073453, 51.37313736433081], + [5.501804052493968, 51.374165313719764], + [5.508479488162446, 51.37276574686233], + [5.516417602409409, 51.37833551387407] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.2d26801a-caf6-46c9-bb86-82b3a4cd1d7c", + "properties": { + "statcode": "GM0861", + "jrstatcode": "2024GM0861", + "statnaam": "Veldhoven", + "rubriek": "gemeente", + "id": 225 + }, + "bbox": [ + 150039.98999999836, 376364.6319999993, 157967.6400000006, + 383312.22100000083 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.379130506761372, 51.436609952263126], + [5.37968636712116, 51.43509235813089], + [5.3873744008143465, 51.43780160604044], + [5.389221296448876, 51.43763570004497], + [5.3911429767166, 51.436521847704974], + [5.393805034804551, 51.434577656734504], + [5.396340067295546, 51.43392341457344], + [5.3976465932193385, 51.4336426243515], + [5.400794913216137, 51.43296752880946], + [5.404922884639168, 51.43712798123392], + [5.407437130849707, 51.43601391277397], + [5.4090011706685095, 51.434459831343744], + [5.410699434848458, 51.43506177399241], + [5.4120736797690485, 51.431341173972235], + [5.414634719867948, 51.430166326479366], + [5.4167393196164, 51.43171567129283], + [5.417168456636824, 51.43148792287761], + [5.419944015534021, 51.43285290410091], + [5.42428593971327, 51.431533584500976], + [5.426331412804601, 51.43040752680224], + [5.42790932293336, 51.42217103128311], + [5.427807568363708, 51.42185794329225], + [5.427372890948414, 51.417013066501674], + [5.429425579261356, 51.411560885161826], + [5.429851692992303, 51.40617767031853], + [5.428652174341545, 51.40521347374334], + [5.4253830891071795, 51.40442274359931], + [5.427276715087595, 51.402653607263304], + [5.423853759786638, 51.399648207744264], + [5.424363388407031, 51.39911977089364], + [5.423407535931207, 51.3987183231017], + [5.423982467972785, 51.3983842660936], + [5.422095632731989, 51.39673939540199], + [5.422189909146349, 51.3950812843941], + [5.423036056614945, 51.39497306289998], + [5.42159958557142, 51.392870375228576], + [5.419634087834053, 51.39221166504404], + [5.420169026659139, 51.391857678472384], + [5.417805435431941, 51.39018434670549], + [5.418252045713312, 51.389741848948546], + [5.41757312203476, 51.38908989834186], + [5.418338043967956, 51.389090342645986], + [5.417773115830356, 51.387953727554574], + [5.419402014261214, 51.38721720168226], + [5.420061301716801, 51.38620731556085], + [5.420744366148361, 51.386290274551065], + [5.42022687412901, 51.38562523189836], + [5.421116062064772, 51.38572829150519], + [5.42031925840197, 51.385033721772], + [5.421655467566621, 51.38446947107471], + [5.4218011851064265, 51.383409910930354], + [5.417837626158909, 51.382087573447], + [5.413481910633694, 51.3839050089257], + [5.410273819971719, 51.381248037723346], + [5.40981319469625, 51.380104890907276], + [5.408413783674267, 51.3798184701225], + [5.39651527905855, 51.3808201645531], + [5.395891807260784, 51.379329292642666], + [5.393152934551778, 51.377476967687535], + [5.390862253446137, 51.37759178826196], + [5.388907030149399, 51.37646010365587], + [5.374034718281497, 51.38856541889497], + [5.372484683227426, 51.3922464410188], + [5.372282365036492, 51.39274187730207], + [5.370212590445381, 51.39762177436753], + [5.370687022619419, 51.398048001469114], + [5.367617561498898, 51.40007118048515], + [5.354379228753864, 51.40877269802924], + [5.335136833675714, 51.40740267172142], + [5.331593357980239, 51.40628572328768], + [5.3236643295192305, 51.40618721221227], + [5.321789957654129, 51.408691624654026], + [5.317148703938281, 51.41491389361188], + [5.315895673424265, 51.41891100034981], + [5.316089764926076, 51.4194092718095], + [5.319996531623338, 51.41992794731412], + [5.319371416154898, 51.42379530218915], + [5.339842233656806, 51.42555794224859], + [5.34336982825595, 51.42743624354914], + [5.342368804720918, 51.431067750912256], + [5.345534746199484, 51.43092242279324], + [5.346255164727533, 51.428956231791645], + [5.352856785099421, 51.43282549260684], + [5.354193784865457, 51.43299987780017], + [5.355794790557913, 51.434110194884894], + [5.356916894119809, 51.438203502859274], + [5.362252654983229, 51.4360554936876], + [5.362226615696128, 51.435464338703554], + [5.366899382964696, 51.436205348785585], + [5.366822394002549, 51.4374485325666], + [5.367800246522368, 51.438365291333724], + [5.371249055102869, 51.43890879707071], + [5.373198556173442, 51.437608248211575], + [5.379130506761372, 51.436609952263126] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d65c84c3-3d79-4005-bffb-718a2b83b1c2", + "properties": { + "statcode": "GM0865", + "jrstatcode": "2024GM0865", + "statnaam": "Vught", + "rubriek": "gemeente", + "id": 226 + }, + "bbox": [ + 138893.73999999836, 402635.27699999884, 150430.23699999973, + 411262.25499999896 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.238394546753662, 51.68453260987007], + [5.247445984566715, 51.68338556244891], + [5.253813973300697, 51.68439690726704], + [5.257249427010779, 51.6840427352033], + [5.260619746482606, 51.6840176375243], + [5.26563381116894, 51.684725201034205], + [5.274296202558514, 51.68367307499024], + [5.287303971288449, 51.68225782462988], + [5.288587901124311, 51.68186436071053], + [5.2894283726357445, 51.67871426895956], + [5.291489355981483, 51.67480524884614], + [5.29192212469472, 51.67445846399429], + [5.291131320287475, 51.6719512442854], + [5.292321469689066, 51.671668861062535], + [5.294248065961186, 51.67219832717854], + [5.298813199292021, 51.66729990556465], + [5.300780686737588, 51.668223990032025], + [5.303216462535651, 51.667204420292514], + [5.308558827061462, 51.669063587015835], + [5.318759108020432, 51.670870802234965], + [5.319057404211456, 51.67037213133489], + [5.308948689026468, 51.66794078661545], + [5.303971151110642, 51.665548356389536], + [5.303797220796478, 51.66399303022914], + [5.306194076884824, 51.66111104869509], + [5.31173901808008, 51.658128984291984], + [5.312573774895584, 51.653945683009155], + [5.314509578470368, 51.65247153053232], + [5.316876918705086, 51.65224136618041], + [5.319150328110028, 51.64997492604082], + [5.319696389673972, 51.64548954310603], + [5.318671325637198, 51.64205448309745], + [5.319558290839143, 51.638491401818996], + [5.321190718569855, 51.63696179004829], + [5.320424750413467, 51.635654853937254], + [5.3177319071598745, 51.6346339351938], + [5.310955383588508, 51.6336724370083], + [5.308275203382815, 51.6330345612532], + [5.30617606781515, 51.62990428797792], + [5.306806122859774, 51.627825265781155], + [5.30433268187101, 51.62492383667727], + [5.299645783449515, 51.62570946259411], + [5.297579546765953, 51.62509903517264], + [5.295072408841496, 51.62289358211435], + [5.294667102178754, 51.62133487188364], + [5.290923445203576, 51.621327487544804], + [5.285520709584503, 51.62292789366968], + [5.281724145230325, 51.62253352631408], + [5.280567275878803, 51.6222539057781], + [5.2797850073429675, 51.62016044803969], + [5.27771801303264, 51.61917980903537], + [5.27834227617969, 51.61829671366465], + [5.275831048755713, 51.61576135842779], + [5.273485165906665, 51.61557833567251], + [5.271433653430557, 51.615458306318054], + [5.270803932143908, 51.61443690490463], + [5.271733955381259, 51.61283572139747], + [5.268820716569324, 51.61253775464717], + [5.265892426021163, 51.61604795651586], + [5.260420132030065, 51.621102301574815], + [5.255499564397096, 51.62492842506136], + [5.2508447878961055, 51.62259437852251], + [5.250596949804399, 51.62378219773895], + [5.2461714108632655, 51.62265468573356], + [5.246668939302036, 51.620834093054526], + [5.244372340147932, 51.6185497392675], + [5.241984406642074, 51.61792389404877], + [5.2399155355441405, 51.61882512869932], + [5.237586212781114, 51.61896659527108], + [5.236940296765541, 51.61813711226804], + [5.228192406329291, 51.615889150386465], + [5.225928672411199, 51.6159584663621], + [5.224114612860295, 51.616439152411466], + [5.2239541654091, 51.618306978488334], + [5.222010221916581, 51.61974811310147], + [5.222395311324376, 51.62184390890442], + [5.210711377326612, 51.61558841713455], + [5.207809957315866, 51.620201446619255], + [5.207876385652375, 51.620404744019154], + [5.202768109966964, 51.62262181301973], + [5.201219346510413, 51.62396201206202], + [5.195884188446538, 51.62797974797405], + [5.193660949647803, 51.630613654600275], + [5.192978597489153, 51.63426172479953], + [5.192229867215516, 51.63444623376776], + [5.191292370621025, 51.63688665482866], + [5.191991292744604, 51.638090145320426], + [5.191821269008258, 51.63947733137514], + [5.184009279456192, 51.640677709358485], + [5.17957727386827, 51.63989306345902], + [5.178968092265918, 51.641661425045356], + [5.17792862399795, 51.641623959504976], + [5.178393654934187, 51.639680842394256], + [5.1720596470891, 51.6388965404862], + [5.1600656733718395, 51.63953565594038], + [5.154451888102577, 51.654919099908874], + [5.156958128979915, 51.65775984319605], + [5.1576727274805645, 51.66327474125871], + [5.161767291604871, 51.663447623371816], + [5.166798144411885, 51.669047440944404], + [5.1748780844820255, 51.66919343716675], + [5.204776630989626, 51.66982208547573], + [5.202264399965075, 51.67061076498091], + [5.20794839846266, 51.67395599559258], + [5.223227611657627, 51.67378197129123], + [5.225743784501255, 51.683861135321536], + [5.2261577617298745, 51.690030807516294], + [5.231901757309179, 51.68925719569041], + [5.23427173066235, 51.68549938431194], + [5.238394546753662, 51.68453260987007] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.fa201c9b-4969-4889-9786-840ed1244442", + "properties": { + "statcode": "GM0866", + "jrstatcode": "2024GM0866", + "statnaam": "Waalre", + "rubriek": "gemeente", + "id": 227 + }, + "bbox": [ + 157114.09600000083, 375228.73999999836, 163996.3669999987, + 379581.8440000005 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.469321557846218, 51.40534964450399], + [5.477104515207927, 51.40487574823141], + [5.480069955116678, 51.40473679249961], + [5.480372098477995, 51.40468914192875], + [5.482316010147577, 51.404652997312375], + [5.490047747573786, 51.40445181842775], + [5.499850966942401, 51.40385773999298], + [5.503624499509648, 51.40152226810106], + [5.504637175761146, 51.40011366478852], + [5.504873934582972, 51.400154818726705], + [5.512003874493759, 51.38381131184311], + [5.516417602409409, 51.37833551387407], + [5.508479488162446, 51.37276574686233], + [5.501804052493968, 51.374165313719764], + [5.49647719073453, 51.37313736433081], + [5.491875441486941, 51.37405483045276], + [5.471255288416263, 51.37083198289582], + [5.461057710688366, 51.369471081683926], + [5.445234104884516, 51.36815096611812], + [5.44188598885119, 51.36747830162386], + [5.43922154571609, 51.366252430795136], + [5.436301110964431, 51.366239499854764], + [5.43540650882179, 51.36813334290278], + [5.43195647043433, 51.36913436320731], + [5.431266610135349, 51.369975071788296], + [5.429055255006383, 51.37021446851139], + [5.42938217670033, 51.3710051501747], + [5.427068428149532, 51.37180462400782], + [5.4268340043764605, 51.372621140020954], + [5.424897856306622, 51.37262440980168], + [5.424502337323499, 51.37407069544259], + [5.423165009830818, 51.37438982141156], + [5.42320735317642, 51.37486642567529], + [5.424236826913193, 51.376553138724425], + [5.423833578169402, 51.37760135027251], + [5.424851854737287, 51.379193347174485], + [5.425552648026863, 51.379242223016455], + [5.424083482365555, 51.380294324188164], + [5.4218011851064265, 51.383409910930354], + [5.421655467566621, 51.38446947107471], + [5.42031925840197, 51.385033721772], + [5.421116062064772, 51.38572829150519], + [5.42022687412901, 51.38562523189836], + [5.420744366148361, 51.386290274551065], + [5.420061301716801, 51.38620731556085], + [5.419402014261214, 51.38721720168226], + [5.417773115830356, 51.387953727554574], + [5.418338043967956, 51.389090342645986], + [5.41757312203476, 51.38908989834186], + [5.418252045713312, 51.389741848948546], + [5.417805435431941, 51.39018434670549], + [5.420169026659139, 51.391857678472384], + [5.419634087834053, 51.39221166504404], + [5.42159958557142, 51.392870375228576], + [5.423036056614945, 51.39497306289998], + [5.422189909146349, 51.3950812843941], + [5.422095632731989, 51.39673939540199], + [5.423982467972785, 51.3983842660936], + [5.423407535931207, 51.3987183231017], + [5.424363388407031, 51.39911977089364], + [5.423853759786638, 51.399648207744264], + [5.427276715087595, 51.402653607263304], + [5.429903285331062, 51.40281006327509], + [5.43096538984054, 51.40263734564043], + [5.431191563020223, 51.402062729634515], + [5.435355931554821, 51.40336336968183], + [5.435749471552274, 51.404189686951064], + [5.436188923438437, 51.40497634875443], + [5.453509515197124, 51.40529311573359], + [5.461800865830542, 51.40495994548893], + [5.461978637416672, 51.40495408758699], + [5.469321557846218, 51.40534964450399] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.52f03e66-e1a8-4e24-b32f-6ee7d129d55e", + "properties": { + "statcode": "GM0867", + "jrstatcode": "2024GM0867", + "statnaam": "Waalwijk", + "rubriek": "gemeente", + "id": 228 + }, + "bbox": [ + 122577.4299999997, 407054.36410000175, 135942.39799999818, + 415015.05999999866 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.027654294510972, 51.71106133254144], + [5.041760682557218, 51.7108827494124], + [5.0536297888914055, 51.711817828298564], + [5.062456614778774, 51.713842899092555], + [5.069098900177642, 51.716281599393255], + [5.075058276034277, 51.71887713856025], + [5.081760241387991, 51.72234439842897], + [5.0835397698713045, 51.72090653518849], + [5.090413339334775, 51.71931503255155], + [5.093157063124406, 51.71920493446703], + [5.093824949631202, 51.71861524795875], + [5.095749089223467, 51.71827206268276], + [5.098528248226232, 51.716930461606765], + [5.101601373426454, 51.713205312163815], + [5.103027306140961, 51.712551566040496], + [5.105421245724409, 51.71095604782283], + [5.106854713790902, 51.710861114759204], + [5.108720540197282, 51.70903270438254], + [5.11150612771401, 51.70357640703476], + [5.103052795652336, 51.70248382257215], + [5.1042024151290075, 51.69498373360845], + [5.104883290227307, 51.69003669079681], + [5.105665758176853, 51.683878042334236], + [5.106493212154362, 51.677327834930146], + [5.101509391099549, 51.676834692840764], + [5.094997877196387, 51.67458539859066], + [5.0897422271737325, 51.67475224779079], + [5.080265007126026, 51.671389158946695], + [5.07204297781957, 51.670763203945704], + [5.070174717967783, 51.670836405975315], + [5.067324280321035, 51.670978564152534], + [5.060621492124551, 51.67111324723032], + [5.061013493626758, 51.66829025561698], + [5.05797046221416, 51.668316167686754], + [5.058682523223739, 51.66533765388168], + [5.058743749421118, 51.66383233305045], + [5.058403633548791, 51.661726949784814], + [5.053818373180732, 51.66165609136772], + [5.053226750808765, 51.66165092263635], + [5.04917754363415, 51.66162342699517], + [5.047365152090664, 51.66208487276036], + [5.047246618881364, 51.6632509738042], + [5.045238986181388, 51.663131342425274], + [5.0452857070088815, 51.662693896520175], + [5.043732775774787, 51.66311707875223], + [5.029147089486243, 51.666976380446826], + [5.021269650011416, 51.66896757481362], + [5.018524637162633, 51.669663252788716], + [5.018528463129692, 51.66970290451716], + [4.992246270219898, 51.67625089116253], + [4.988649910292356, 51.66071931604162], + [4.987266910127334, 51.65460893119486], + [4.976871891119748, 51.6535970352571], + [4.957896724914466, 51.65153188536334], + [4.957627765751014, 51.66030732544184], + [4.956443490783076, 51.66401746811235], + [4.953732003291721, 51.670769148182536], + [4.947506612024715, 51.67694359514578], + [4.945811405800061, 51.67706619669671], + [4.945135892800019, 51.67796939622914], + [4.944348240848031, 51.67834339447823], + [4.9442484765405, 51.67888572303824], + [4.943575772325614, 51.6789179990118], + [4.933169421303784, 51.6767499757076], + [4.9307598694751755, 51.683510185725936], + [4.930362399500565, 51.6842809025916], + [4.9291090519037235, 51.688135088216185], + [4.926957871572222, 51.694262728828974], + [4.921007040751669, 51.71140922430362], + [4.917991152319767, 51.71995936614485], + [4.921425484038053, 51.72044282691931], + [4.935952635850623, 51.72242679349113], + [4.9455634111604345, 51.72304160023139], + [4.958484237259765, 51.722628971552446], + [4.969986783177094, 51.72109967395029], + [4.9886369212572985, 51.716871352979226], + [5.009452410168935, 51.71281936135162], + [5.027654294510972, 51.71106133254144] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.a4acac67-b6a1-4a24-a9a8-55fb9f20c349", + "properties": { + "statcode": "GM0873", + "jrstatcode": "2024GM0873", + "statnaam": "Woensdrecht", + "rubriek": "gemeente", + "id": 229 + }, + "bbox": [ + 76849.05999999866, 374384.8979999982, 88471.85099999979, + 386979.2679999992 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.299100135923058, 51.46680089623791], + [4.299512521191358, 51.46602468913293], + [4.299564800407704, 51.46639311944331], + [4.3014467933192675, 51.46662085800882], + [4.303917515205853, 51.46664307884677], + [4.304182349561145, 51.46581574812951], + [4.307358846099076, 51.466216853730124], + [4.308471919667061, 51.46540730977965], + [4.311166562015032, 51.4601732863939], + [4.312239070514201, 51.46012693380075], + [4.320010655706907, 51.460589338899055], + [4.3224773019273135, 51.46029990310474], + [4.32419103787473, 51.46140710780398], + [4.32421585609185, 51.46229142472411], + [4.3279611488238725, 51.464241612753206], + [4.336514709450954, 51.45980063313166], + [4.340183037761061, 51.46254827109634], + [4.344308309761708, 51.46058696752372], + [4.359769003821512, 51.45791304045234], + [4.366965865509341, 51.45671886284281], + [4.383412419717241, 51.455115259899955], + [4.391083219783498, 51.45148726246832], + [4.384838615844289, 51.44931593856271], + [4.382709313174408, 51.45023238515038], + [4.38148819497483, 51.44832519600509], + [4.379806107609867, 51.44775616528982], + [4.379328222404806, 51.44678892873944], + [4.386640059388187, 51.44524326571493], + [4.392034205463271, 51.44637629627252], + [4.396526266449193, 51.44215123727398], + [4.3970474567028335, 51.44091111826459], + [4.395484985059449, 51.43977014647438], + [4.3954151960594725, 51.435512666656486], + [4.39881823999595, 51.43524365249753], + [4.397205525771034, 51.43159783549208], + [4.392513167768563, 51.4325134660897], + [4.3923056864572425, 51.431462023937506], + [4.39460518744086, 51.431522918074634], + [4.394228993216811, 51.42972093050424], + [4.3952014371717025, 51.426902523585674], + [4.391330461041167, 51.42735273048706], + [4.390526900097719, 51.42426678431697], + [4.389723155666694, 51.42445970922857], + [4.38365999700702, 51.42107646693765], + [4.3915149732994685, 51.408327696209206], + [4.391610990729587, 51.408171811432], + [4.431691671750893, 51.37504901633871], + [4.425080932690322, 51.37128953691353], + [4.4277543703531625, 51.369679020130555], + [4.4298156821117995, 51.36737490278949], + [4.431351611807324, 51.36385308252027], + [4.421853721545218, 51.36523053138443], + [4.407397429537775, 51.36007563317356], + [4.3973934761001585, 51.35650351523784], + [4.3890992945991165, 51.35524900326839], + [4.384543340293544, 51.35435189284551], + [4.38403907855622, 51.35523055391364], + [4.378758611908934, 51.354920912216926], + [4.369800820099522, 51.35670323720853], + [4.368240137699051, 51.35610363098504], + [4.3665267976919955, 51.35730558777351], + [4.350964688066616, 51.35825921227663], + [4.350889619418017, 51.35868282363738], + [4.341353766905752, 51.35756324920575], + [4.337292200692984, 51.36964413886379], + [4.33516473560243, 51.37564873573083], + [4.334505127328914, 51.377641245652285], + [4.277424577929724, 51.3760352401092], + [4.274563533567924, 51.38165658381722], + [4.273697687711427, 51.38314988645752], + [4.2683820498273715, 51.38354588817438], + [4.26634902206735, 51.38654063201948], + [4.268633596190043, 51.38812644950628], + [4.269061035404936, 51.40034738964129], + [4.263732257132608, 51.416449107420554], + [4.266446871084605, 51.41997948172469], + [4.275851638195848, 51.42504940900949], + [4.265431751910424, 51.43968067783876], + [4.268272277600324, 51.440264210927126], + [4.283173290217166, 51.439666982758624], + [4.287133368737118, 51.443969779163616], + [4.290251581629857, 51.445182849496895], + [4.2937335726649035, 51.44537612084549], + [4.295082211641725, 51.4488229322577], + [4.297462228974114, 51.45011275626316], + [4.297664836417441, 51.458339424590655], + [4.2976849383900735, 51.4662220481655], + [4.299100135923058, 51.46680089623791] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.a9122893-d510-4f97-ac53-eb1f6d561431", + "properties": { + "statcode": "GM0879", + "jrstatcode": "2024GM0879", + "statnaam": "Zundert", + "rubriek": "gemeente", + "id": 230 + }, + "bbox": [ + 95406.60000000149, 381697.8370000012, 110355.99799999967, + 395870.83900000155 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.72248993989996, 51.535158164494284], + [4.72507862204318, 51.532919045025245], + [4.725500951397087, 51.533100664700015], + [4.728174933404435, 51.53366100699733], + [4.728864457293873, 51.5348417525954], + [4.730013283577732, 51.53519340077687], + [4.730199225635984, 51.536416986352364], + [4.732031462499806, 51.536341150965676], + [4.735618546034805, 51.53369368073301], + [4.73879875949359, 51.53226698612041], + [4.739732577895804, 51.53210976235108], + [4.741463936085706, 51.53285799373299], + [4.7418016128654745, 51.531096352458675], + [4.7401187452712925, 51.52785817303868], + [4.741133878140312, 51.526314559504236], + [4.743234836453145, 51.5253938417974], + [4.743983723505078, 51.518761333724576], + [4.74348381396904, 51.51090972191412], + [4.7421577098049355, 51.50563140087159], + [4.735651989251697, 51.491747729471356], + [4.733996599867764, 51.48554820654415], + [4.729151853537486, 51.48390719048825], + [4.724745930096793, 51.478778631153155], + [4.720603275947919, 51.473454914669205], + [4.715989647132259, 51.471065940358], + [4.716898104484849, 51.4688646228092], + [4.703248778811078, 51.466968319014704], + [4.702750856332088, 51.46608306478223], + [4.704056128875446, 51.465465332893984], + [4.699345697216921, 51.46086093459126], + [4.699314323074712, 51.45997228285249], + [4.693096896379349, 51.45172993177124], + [4.686440558881316, 51.45127081831464], + [4.66661633487558, 51.444237481264004], + [4.669689623117762, 51.4263626031699], + [4.664472330542755, 51.42615861777543], + [4.656418612000794, 51.424993449616], + [4.651716570369112, 51.42688536051514], + [4.646649984446889, 51.42339517504492], + [4.641290378115593, 51.42201444647585], + [4.637473762336771, 51.423015112798346], + [4.633936142587505, 51.42507498746035], + [4.630094465254992, 51.425916928571255], + [4.597054886764636, 51.43012046668425], + [4.588248224972613, 51.43135765041132], + [4.582487980459374, 51.43137757652367], + [4.582219139678085, 51.43193372839403], + [4.574728190352772, 51.43284851855393], + [4.535408781751248, 51.42302963542472], + [4.529896463812438, 51.449520509811805], + [4.548160792838867, 51.47331259445625], + [4.556100788683922, 51.48563433021444], + [4.572299213382526, 51.48267487875983], + [4.575808045905428, 51.48813956834304], + [4.5739762795882175, 51.4884685700663], + [4.576177672154064, 51.4925394438448], + [4.579179919613597, 51.49340621416205], + [4.583709942275899, 51.49576408216416], + [4.5897312032007145, 51.49673744504884], + [4.579573546618017, 51.51071275075205], + [4.610784554388936, 51.50833860059384], + [4.615020048379295, 51.508946896627734], + [4.616379469145747, 51.50808729755053], + [4.6170868911900165, 51.50970684329953], + [4.618197659171177, 51.50961524682799], + [4.618201755555784, 51.51067224283589], + [4.620539103664789, 51.51073618396989], + [4.619405379258248, 51.516172002202005], + [4.621618195661202, 51.516261924937886], + [4.621507383777454, 51.51744384163267], + [4.626401751659641, 51.518920661062786], + [4.624986623709643, 51.521090128067826], + [4.627659563958766, 51.52246774669002], + [4.631059770212455, 51.523311376166006], + [4.638716047853591, 51.5244126552197], + [4.638157788765851, 51.5172052398846], + [4.643061514744437, 51.518147394299575], + [4.6509265263627615, 51.52128729537303], + [4.6523845164151165, 51.52192661771071], + [4.654217017220967, 51.52414513843558], + [4.660423773946655, 51.526392141057656], + [4.681079406616888, 51.540695364593695], + [4.687076719764645, 51.54260302785052], + [4.694186764400467, 51.544848449804256], + [4.703996817857169, 51.54979854237665], + [4.728417243993372, 51.53687754825064], + [4.72248993989996, 51.535158164494284] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e40b4362-7328-4057-977a-ffb6f26e18b5", + "properties": { + "statcode": "GM0880", + "jrstatcode": "2024GM0880", + "statnaam": "Wormerland", + "rubriek": "gemeente", + "id": 231 + }, + "bbox": [ + 114373.02059999853, 497990.7670000009, 124280.35889999941, + 506255.31109999865 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.834024114648883, 52.538873550761856], + [4.8353435028686045, 52.53735035230356], + [4.837494760225012, 52.5306230122545], + [4.843298367094346, 52.52678978535404], + [4.849797276448804, 52.52503951496282], + [4.859381782599615, 52.52503408152432], + [4.867719843426443, 52.52214476557611], + [4.874694449904401, 52.52004338482241], + [4.893501735814496, 52.51760733852933], + [4.901948385193271, 52.51784203721787], + [4.909524288394235, 52.51700944792764], + [4.922600960864763, 52.51141219000615], + [4.928531079017899, 52.51080703723356], + [4.934352056066859, 52.51164060624266], + [4.934703734288906, 52.510353346637864], + [4.929246861952406, 52.50740719582529], + [4.925117600499881, 52.505530019916996], + [4.925583214677425, 52.5054038277092], + [4.926481162508297, 52.5042801706719], + [4.926209459897767, 52.50017902611664], + [4.9239923052045995, 52.49688245793043], + [4.92378824695222, 52.49315989167638], + [4.920650892489534, 52.49043447685898], + [4.916126955072171, 52.486545207966266], + [4.908220900217422, 52.48309687403526], + [4.9064696421211025, 52.47982647495597], + [4.8956309644300555, 52.47822750804143], + [4.890532451246778, 52.478959187005], + [4.882437860642703, 52.47480183775707], + [4.867226324107673, 52.47057703952404], + [4.8625866963135085, 52.46849752303201], + [4.852504937847793, 52.47036706622033], + [4.846479951093574, 52.47072438756742], + [4.842398872354696, 52.472110712637104], + [4.841536160259115, 52.47302199720561], + [4.837546527424453, 52.47709385111425], + [4.836924709103435, 52.47987601874188], + [4.8168454821548226, 52.48256093715145], + [4.812364815359015, 52.48396753050133], + [4.8115656815387435, 52.48574661463437], + [4.798842866529277, 52.491105258303996], + [4.79364344175564, 52.49088201887342], + [4.792358804185313, 52.4911316365171], + [4.791589052282329, 52.49214457144078], + [4.795033157795576, 52.49603124750586], + [4.794611735773294, 52.5006605963484], + [4.793997685507849, 52.50328743176592], + [4.7933456119618985, 52.50700424133519], + [4.789751427791484, 52.50942618331929], + [4.788756149596098, 52.51110572278902], + [4.789094559720951, 52.51839889462684], + [4.789860919713963, 52.519235886408474], + [4.792439650543623, 52.519725202105455], + [4.798284275712428, 52.52436047913179], + [4.804705940440539, 52.52536017851136], + [4.811626572320728, 52.530190500630326], + [4.820186920503515, 52.53123179774098], + [4.824407186219339, 52.53380445913314], + [4.816992994576942, 52.53564820833568], + [4.819027469323631, 52.53872596914024], + [4.820986505763584, 52.538246358555035], + [4.824385242721314, 52.5425999438353], + [4.828031738846205, 52.54166855990592], + [4.833910385168198, 52.538960348882064], + [4.834024114648883, 52.538873550761856] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.18056c27-f070-4c30-b76b-8ce087e2d592", + "properties": { + "statcode": "GM0882", + "jrstatcode": "2024GM0882", + "statnaam": "Landgraaf", + "rubriek": "gemeente", + "id": 232 + }, + "bbox": [ + 197452.57090000063, 320235.6099999994, 204711.5799999982, + 327410.3999999985 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.044150932095982, 50.92944810550663], + [6.045582163376466, 50.92808011138852], + [6.050870797216333, 50.92990542312688], + [6.0561604475295026, 50.927152548627156], + [6.0557236025597865, 50.92614828824938], + [6.0540227655229195, 50.92224733961486], + [6.0618181665598945, 50.92123646625113], + [6.062966573365747, 50.92203500489081], + [6.068184214590992, 50.92065300558458], + [6.071774980624441, 50.92313329421006], + [6.075256983057471, 50.9227536117307], + [6.082127449099296, 50.921541168817456], + [6.089435919349353, 50.918525211098455], + [6.090161437500055, 50.919571538476696], + [6.093725966293757, 50.92123069751431], + [6.094148939738207, 50.92070225364839], + [6.092146571461637, 50.917511932129585], + [6.088933288737968, 50.915924846183614], + [6.086741758633166, 50.913906136959014], + [6.086036397327144, 50.91201847047981], + [6.081528454991554, 50.90940615051195], + [6.079813306573712, 50.90577028781304], + [6.075797120636885, 50.90534100333218], + [6.063824002182868, 50.903657909546624], + [6.064021991298754, 50.90232403547596], + [6.059350910573808, 50.90121225719035], + [6.058729763105211, 50.902448387814914], + [6.056328517453783, 50.90184463679762], + [6.056617372183282, 50.900113429511435], + [6.055878262514407, 50.899932269006676], + [6.048687495648843, 50.89941497556321], + [6.045548352624149, 50.89997395360477], + [6.0428971355168075, 50.900408596850156], + [6.042682449728001, 50.89879473116649], + [6.0434947683196105, 50.89761528288016], + [6.042202022289923, 50.89518279043871], + [6.042200020644983, 50.895127039235014], + [6.042444149616474, 50.8928254120189], + [6.040904561165952, 50.8928982207869], + [6.040421144201254, 50.892066449091274], + [6.045525675143301, 50.88988977369857], + [6.042876090566966, 50.88715249704096], + [6.040414960733908, 50.888240529860624], + [6.037054739809768, 50.8863204351757], + [6.034027030716405, 50.880581224751836], + [6.034797761914354, 50.8791672176656], + [6.032950990366924, 50.87661527831854], + [6.031139939130585, 50.87158731191795], + [6.027356574291798, 50.87161489681065], + [6.021404199476627, 50.87156405297299], + [6.0206981529782, 50.87121566178887], + [6.020245331027883, 50.87154990785996], + [6.0171416653203655, 50.87046666540505], + [6.015860359831517, 50.87021987873741], + [6.015086789621474, 50.873514596339355], + [6.010093604541065, 50.87760525787611], + [6.009557329991887, 50.878431810796755], + [6.009533819923453, 50.87847685534875], + [6.009525000536044, 50.87858589803982], + [6.009083863087391, 50.88404744606795], + [6.0078688055326515, 50.88582823357097], + [6.002976627230683, 50.88947918159854], + [5.9993609315876055, 50.89162227659437], + [5.998505565666929, 50.89180497197819], + [5.998625158230236, 50.89290711891147], + [5.99660931497816, 50.89252167448884], + [5.994808845264021, 50.89557530461286], + [5.994742513261778, 50.89846326758663], + [5.994740411334197, 50.89851027308797], + [5.994620347383549, 50.902390514999205], + [5.994505473540793, 50.903513550506375], + [5.993368140693547, 50.903643608190336], + [5.993701524202868, 50.904408352528435], + [5.993291964764541, 50.904624976238786], + [5.992971324778711, 50.90468529075081], + [5.993039625454675, 50.90484310345443], + [5.991604921925204, 50.90505704865545], + [5.992378813098556, 50.90613113411236], + [5.99072708844058, 50.906182732124215], + [5.993431515007456, 50.910049723792966], + [6.003230697421261, 50.91722508824509], + [6.006104514163516, 50.918679087292645], + [6.0123833560486775, 50.92627254711687], + [6.011696324624567, 50.92643948785818], + [6.01221443132884, 50.92694988620923], + [6.01236436112809, 50.92709748949225], + [6.016137087547485, 50.930811337805814], + [6.018201659382992, 50.934701396419214], + [6.038439024789211, 50.930890410136946], + [6.044150932095982, 50.92944810550663] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.34e9164a-4f9a-474d-b2f8-755a63f82f08", + "properties": { + "statcode": "GM0888", + "jrstatcode": "2024GM0888", + "statnaam": "Beek (L.)", + "rubriek": "gemeente", + "id": 233 + }, + "bbox": [180863.7509999983, 323270.1000000015, 188014.25, 329545.8103], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.832378658638787, 50.94734955905528], + [5.837819898127633, 50.94639833340231], + [5.838608889996495, 50.946601734481106], + [5.839891581742605, 50.95019129941855], + [5.844344750080958, 50.946658596753416], + [5.84846126590236, 50.94471117897739], + [5.853086374183057, 50.94644711254388], + [5.853810050424351, 50.946484099517875], + [5.854958797104596, 50.946076166667545], + [5.856929660420883, 50.94400142743198], + [5.856488031727257, 50.943317067841775], + [5.855540189036292, 50.936006654041286], + [5.850764336054251, 50.92849460280142], + [5.847235985367081, 50.925774499224275], + [5.8415887702864575, 50.91984355298088], + [5.833958668761098, 50.9200233887918], + [5.831315048772041, 50.919184970367205], + [5.83155712383595, 50.9171802383159], + [5.826617608511909, 50.9165913345933], + [5.801714637281589, 50.91413002124923], + [5.800727700339689, 50.91459798160398], + [5.792161408643347, 50.91048345607653], + [5.782440629779446, 50.9133763722961], + [5.781190396647519, 50.91207750611105], + [5.778926770207204, 50.91096076120237], + [5.776588146486577, 50.91163098319578], + [5.774677995567554, 50.91128446651941], + [5.765939157607385, 50.90456896366061], + [5.758762753693047, 50.89860844705953], + [5.755517328271307, 50.89956571540349], + [5.7561481561401795, 50.90010632473082], + [5.754845464296494, 50.90059245529036], + [5.755096402626542, 50.90086175651045], + [5.759891855645759, 50.907962928292385], + [5.7647475361346165, 50.91377971047737], + [5.769176732823363, 50.917037902016354], + [5.771135920799222, 50.919317233911045], + [5.773628477027499, 50.9233847233584], + [5.7738245079361805, 50.92556080485803], + [5.772299472892234, 50.92724075979556], + [5.772473043760532, 50.92854009879395], + [5.775057974490912, 50.93114777425803], + [5.777919438087313, 50.932689340680554], + [5.77723608702195, 50.93301017288209], + [5.778551974805767, 50.9338172218883], + [5.777673205992613, 50.9341822980722], + [5.77853347256659, 50.936495301576116], + [5.779230535357988, 50.939241204264576], + [5.782604937126926, 50.941813892948986], + [5.78319879822521, 50.942634416979466], + [5.783484049927866, 50.94259450985724], + [5.783730983139431, 50.942996887286334], + [5.779171324948317, 50.94381608694501], + [5.77933932255809, 50.944394424968614], + [5.779954571258101, 50.945339275841455], + [5.783324013071075, 50.94604046535948], + [5.788107725987504, 50.94860626128048], + [5.7882018490124745, 50.94805811684769], + [5.793361485059767, 50.95190444900896], + [5.802129667005934, 50.94741246430948], + [5.803715496416065, 50.94838445625247], + [5.8111156514314715, 50.954493211315636], + [5.812513296382129, 50.954834969136094], + [5.827815797479594, 50.94891034469554], + [5.832378658638787, 50.94734955905528] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ab2b5d0c-b6e7-4caf-a45a-c144de5480fc", + "properties": { + "statcode": "GM0889", + "jrstatcode": "2024GM0889", + "statnaam": "Beesel", + "rubriek": "gemeente", + "id": 234 + }, + "bbox": [ + 198174.85700000077, 361693.0210000016, 206463.14200000092, + 367807.80099999905 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.08743248699005, 51.29504179843863], + [6.09055976240493, 51.29479482460585], + [6.092910131965478, 51.29540309653026], + [6.093297695627031, 51.295436243333974], + [6.103152317753074, 51.288700427264665], + [6.107008466659087, 51.29146930035455], + [6.1144620588451115, 51.28917535173896], + [6.120057676399319, 51.28511273356434], + [6.1228567575987, 51.28060929454559], + [6.124552666670683, 51.27981831740712], + [6.124757904013873, 51.27755000126626], + [6.12450462848292, 51.27475524758523], + [6.094802591340525, 51.25401742204039], + [6.085617164786197, 51.24762570547348], + [6.072663656101611, 51.24256009186593], + [6.062731354729663, 51.2464446836323], + [6.060475667038951, 51.24790627982154], + [6.054821169194176, 51.25161673080323], + [6.051332262582155, 51.252527464538595], + [6.043266379185488, 51.247120603406316], + [6.038362475450548, 51.246103733954484], + [6.03221695528435, 51.24694275165065], + [6.027584575825164, 51.245552631834975], + [6.025510595968727, 51.24736039579015], + [6.019728199952151, 51.24969775804247], + [6.020170110486953, 51.25041255821791], + [6.015998383730704, 51.250911210473305], + [6.016658459739235, 51.25295667219058], + [6.014330089383737, 51.255352292358296], + [6.007839968241578, 51.25724721547577], + [6.005880084640543, 51.25868299489437], + [6.0057637212520145, 51.262286036403495], + [6.007356012258287, 51.26436117563078], + [6.009611847733264, 51.26575905685064], + [6.01177410287976, 51.26637552682566], + [6.020663363379163, 51.26587133795838], + [6.0262839215005535, 51.26689785331662], + [6.028197738474254, 51.26805632148437], + [6.0293549335761965, 51.27097892384867], + [6.030536359006789, 51.274026942787195], + [6.037602621582766, 51.27896979785522], + [6.042266594952075, 51.28238445858142], + [6.049058169801159, 51.2869238822713], + [6.05842520469356, 51.29024661348877], + [6.058880103807978, 51.28967193625841], + [6.063277796978657, 51.288697696338225], + [6.066818802680578, 51.28888140697904], + [6.069974608756209, 51.29143092362914], + [6.0708908789829845, 51.29367687885281], + [6.081496744919591, 51.29646705803101], + [6.084717158430475, 51.29745438170266], + [6.08743248699005, 51.29504179843863] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d6f7994e-27dd-4e94-b852-488ab88f1f8a", + "properties": { + "statcode": "GM0893", + "jrstatcode": "2024GM0893", + "statnaam": "Bergen (L.)", + "rubriek": "gemeente", + "id": 235 + }, + "bbox": [ + 195796.55099999905, 390742.83999999985, 212355.02899999917, + 409904.96599999815 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.036641611445065, 51.672760130135366], + [6.072384235657354, 51.663839173608864], + [6.075672115966713, 51.66480399754965], + [6.078637964507407, 51.66340226460487], + [6.0796626270982905, 51.663461896228846], + [6.078987004743646, 51.66194906823358], + [6.079544991115934, 51.66159325465835], + [6.083187062554332, 51.661849072079086], + [6.085344840064591, 51.662914075632564], + [6.086536909515441, 51.6625398732893], + [6.0873164436362455, 51.66026824437165], + [6.088308977223122, 51.65985672706396], + [6.095034608168958, 51.659702961740024], + [6.099654449927058, 51.65811586069144], + [6.101965501668972, 51.660608272854546], + [6.116887756947027, 51.65653398120848], + [6.118087483705691, 51.65597292534737], + [6.115771025774329, 51.65322735813663], + [6.116973623703583, 51.650595168765804], + [6.116338421895567, 51.650171987259256], + [6.11261989286331, 51.64846433074916], + [6.109412075147766, 51.64686652292459], + [6.111682561440218, 51.644729941924574], + [6.1080403911784105, 51.64193232576349], + [6.099532935794059, 51.623533640232665], + [6.097229090185054, 51.620883540244364], + [6.093934017096336, 51.62215404462921], + [6.094355340830934, 51.615195784091256], + [6.091423792188668, 51.6058485568501], + [6.117084570542011, 51.5938475477571], + [6.119284143794158, 51.59366724802804], + [6.121487189539437, 51.59273891140262], + [6.130559913076642, 51.58108761228026], + [6.146985707692292, 51.570590739387676], + [6.157032466248391, 51.56657550011104], + [6.16138491321328, 51.56044036779058], + [6.176901936996361, 51.53855572415759], + [6.188674010274688, 51.533479011562235], + [6.199928916973485, 51.52738144365348], + [6.207745123021712, 51.51904759693825], + [6.212023629559243, 51.51339094322258], + [6.21336126397044, 51.50781767101907], + [6.204044708537059, 51.50431295478997], + [6.1883625425625794, 51.505080997265274], + [6.1691934379285795, 51.50308165641622], + [6.166640909702583, 51.50786362899122], + [6.161669559080846, 51.51188332669488], + [6.15778529150553, 51.51362013281419], + [6.1463001026483015, 51.51688098412988], + [6.1410940432727426, 51.51951956940745], + [6.131205733339953, 51.525847155624795], + [6.119682590391399, 51.53184501065648], + [6.116056808047044, 51.537290956629015], + [6.114631226986023, 51.54205342966904], + [6.113822497722738, 51.544328146520606], + [6.111916387618968, 51.54625494134782], + [6.108328853161241, 51.54760925438107], + [6.1045907738308856, 51.54821614405598], + [6.080717581181068, 51.54693802246889], + [6.073757439302233, 51.549242302330114], + [6.062131819509147, 51.55587512222764], + [6.056509487023539, 51.55758052732461], + [6.048120698761913, 51.558462546515464], + [6.0414527814770995, 51.563647448897264], + [6.037870314639347, 51.56941097233489], + [6.0378181604999615, 51.5741147621517], + [6.039409677199822, 51.57912868615935], + [6.039717812377292, 51.58161596067083], + [6.038660246784438, 51.584130894352704], + [6.033478466554819, 51.589610642089546], + [6.0307234124037015, 51.591518370003115], + [6.026281406785659, 51.59557685357621], + [6.0237839149921335, 51.60303544117963], + [6.02385297855437, 51.61612536389351], + [6.022659421225012, 51.61885150370198], + [6.019979812639182, 51.62192114247128], + [6.0044705849587325, 51.63177662125324], + [5.996016348758065, 51.63687031107701], + [5.98212195519019, 51.64251969369476], + [5.976606937639543, 51.64378311161331], + [6.001517910798049, 51.65525368745743], + [6.002015248330164, 51.65457335985], + [6.006842676730226, 51.65602732625652], + [6.014235274376551, 51.66032688750321], + [6.015375299298028, 51.66224228044488], + [6.024672178652635, 51.66007172921514], + [6.0317575649307935, 51.66304811620917], + [6.0242777743993985, 51.669816409586765], + [6.030090109249408, 51.67466052471829], + [6.031944778109264, 51.676165202567184], + [6.033261225754084, 51.67611753034297], + [6.034672448997506, 51.67514586861288], + [6.0342830447835585, 51.674676831623366], + [6.0315404040612455, 51.674582748610376], + [6.032349450737695, 51.674055686006156], + [6.035031958663462, 51.67392235271797], + [6.036641611445065, 51.672760130135366] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ac224cf4-745c-4e90-8cbb-8a106e9383fc", + "properties": { + "statcode": "GM0899", + "jrstatcode": "2024GM0899", + "statnaam": "Brunssum", + "rubriek": "gemeente", + "id": 236 + }, + "bbox": [ + 193048.37099999934, 326487.36300000176, 199357.75, 330475.0560000017 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.969083797898254, 50.96103558125922], + [5.9723005427328495, 50.95927460890398], + [5.973689871027066, 50.9593584864838], + [5.974007012957863, 50.95858546534528], + [5.9740421495003, 50.95833959124914], + [5.978200186054517, 50.959943435158245], + [5.980123454391773, 50.9606796502916], + [5.988819568332221, 50.95941623605728], + [5.992266326749993, 50.95892219049198], + [5.999249581640617, 50.95782918158873], + [6.006053520461303, 50.95753539965458], + [6.005198416377907, 50.95677655365539], + [6.016852845429342, 50.95264263899898], + [6.015078570825327, 50.94788288256741], + [6.015851822025866, 50.94462421019441], + [6.018201659382992, 50.934701396419214], + [6.016137087547485, 50.930811337805814], + [6.01236436112809, 50.92709748949225], + [6.01221443132884, 50.92694988620923], + [6.011696324624567, 50.92643948785818], + [5.975632504028413, 50.9289919086682], + [5.9752459836943315, 50.92892314247378], + [5.971499781462248, 50.930855112950745], + [5.966095642818822, 50.932392337102556], + [5.963959316350887, 50.933709295342894], + [5.962335054129105, 50.934025157728854], + [5.954893604247628, 50.93383835508133], + [5.954113333536826, 50.93354814124485], + [5.954237554687524, 50.93295859324278], + [5.952075230397492, 50.93254032266235], + [5.946049224768991, 50.92976450419647], + [5.945470407910792, 50.9285097988414], + [5.941900135727731, 50.92709611802709], + [5.937169273785708, 50.92958123313552], + [5.936216803396819, 50.93018603273064], + [5.932655557761989, 50.93251011599047], + [5.930115004973063, 50.9342681445515], + [5.929757327319196, 50.93477314672573], + [5.92846998095531, 50.93661221648551], + [5.934416130581634, 50.93863578985067], + [5.931425395609222, 50.94156948594572], + [5.936029070830828, 50.94632502376884], + [5.940863258966458, 50.947897042082836], + [5.942184710357988, 50.94886340881102], + [5.94229217737848, 50.949014089783766], + [5.942632487132489, 50.94949124586797], + [5.9438000032198, 50.949154646741604], + [5.952653952129504, 50.95250507246131], + [5.958387763353363, 50.95667407286093], + [5.96275516415356, 50.9587395602402], + [5.965356880306484, 50.960924817969854], + [5.965827954438524, 50.962297785563976], + [5.969990171613638, 50.962502331095344], + [5.9706801323857635, 50.9621424431152], + [5.969083797898254, 50.96103558125922] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.904e9419-e997-4c3d-9bfa-66349cbc30c2", + "properties": { + "statcode": "GM0907", + "jrstatcode": "2024GM0907", + "statnaam": "Gennep", + "rubriek": "gemeente", + "id": 237 + }, + "bbox": [ + 191781.625, 406269.98600000143, 200452.64400000125, 417854.10500000045 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.95229427523977, 51.742684064219176], + [5.955155145508776, 51.73811759511531], + [5.956856992110447, 51.738654520524754], + [5.959168988522716, 51.73828843863512], + [5.961110176011152, 51.7387815635504], + [5.968744643190063, 51.73854625685685], + [5.973361929984725, 51.7393055921846], + [5.9756646482011995, 51.739096163824556], + [5.980254137952017, 51.738767264237104], + [5.98549522477493, 51.739267658183344], + [5.994196696856955, 51.73830941836556], + [6.006903713375124, 51.732712648124746], + [6.028965405865118, 51.72575337031059], + [6.032259315938769, 51.72381888569993], + [6.032938906012331, 51.72147758453551], + [6.035034728996345, 51.72122675730543], + [6.034822456321315, 51.71997949620051], + [6.035424293445151, 51.7177742755246], + [6.038386379943224, 51.71811377068895], + [6.037880833350883, 51.71992978397534], + [6.0449391464119975, 51.71691335892884], + [6.042009162485267, 51.71334459760199], + [6.037747577642425, 51.713666299613706], + [6.037721894237693, 51.71274371953268], + [6.032204951243692, 51.71318148538035], + [6.028395963523441, 51.711786750433404], + [6.028164509895451, 51.71078990148547], + [6.026646375439009, 51.709789280208135], + [6.026053824108551, 51.70868807968468], + [6.0270571174478516, 51.7071483988793], + [6.026839190655862, 51.70435335165204], + [6.028118767016486, 51.702439676390185], + [6.027765516139066, 51.70054918634008], + [6.030632419935516, 51.698345907949786], + [6.031780539039357, 51.69253333943923], + [6.030279418420692, 51.69013165150163], + [6.028252053594179, 51.689609668882696], + [6.03213097701988, 51.68489212325289], + [6.0322935821385615, 51.6839192655911], + [6.030365795582141, 51.68294874285427], + [6.029823048767441, 51.67809944664847], + [6.031944778109264, 51.676165202567184], + [6.030090109249408, 51.67466052471829], + [6.0242777743993985, 51.669816409586765], + [6.0317575649307935, 51.66304811620917], + [6.024672178652635, 51.66007172921514], + [6.015375299298028, 51.66224228044488], + [6.014235274376551, 51.66032688750321], + [6.006842676730226, 51.65602732625652], + [6.002015248330164, 51.65457335985], + [6.001517910798049, 51.65525368745743], + [5.976606937639543, 51.64378311161331], + [5.972127860838861, 51.64577179120485], + [5.967469521421061, 51.64928483181772], + [5.964855670998495, 51.65273236644211], + [5.963481984665129, 51.65732361160402], + [5.963453992693417, 51.662988470520794], + [5.964139014952934, 51.66749765624847], + [5.964586608872366, 51.6755733457449], + [5.963394977096826, 51.6816579942286], + [5.961888284724681, 51.68585797271235], + [5.961395223441899, 51.68709959817167], + [5.9613952024357335, 51.687099652206854], + [5.9563762909506375, 51.69963303508423], + [5.956254744007542, 51.70660595861225], + [5.955416550027128, 51.70913152958713], + [5.951829637501735, 51.71170058028741], + [5.946753514272231, 51.71343221802728], + [5.933784829173395, 51.71614039907995], + [5.919469547173511, 51.71767149905557], + [5.921325238845684, 51.72182094101769], + [5.929497572171272, 51.728164011318256], + [5.933710166010239, 51.733161259734054], + [5.933517958441535, 51.7364870062235], + [5.9344866065781465, 51.739698498165374], + [5.938298605794952, 51.741593147887805], + [5.9439620718451085, 51.741816813114355], + [5.951952505425363, 51.744370648874344], + [5.95328789580416, 51.74802415871542], + [5.95229427523977, 51.742684064219176] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.85bd855c-eef2-4e1c-aa65-42422d3ef403", + "properties": { + "statcode": "GM0917", + "jrstatcode": "2024GM0917", + "statnaam": "Heerlen", + "rubriek": "gemeente", + "id": 238 + }, + "bbox": [ + 190743.94399999827, 314475.94000000134, 200043.9600000009, + 327572.4230000004 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.937169273785708, 50.92958123313552], + [5.941900135727731, 50.92709611802709], + [5.945470407910792, 50.9285097988414], + [5.946049224768991, 50.92976450419647], + [5.952075230397492, 50.93254032266235], + [5.954237554687524, 50.93295859324278], + [5.954113333536826, 50.93354814124485], + [5.954893604247628, 50.93383835508133], + [5.962335054129105, 50.934025157728854], + [5.963959316350887, 50.933709295342894], + [5.966095642818822, 50.932392337102556], + [5.971499781462248, 50.930855112950745], + [5.9752459836943315, 50.92892314247378], + [5.975632504028413, 50.9289919086682], + [6.011696324624567, 50.92643948785818], + [6.0123833560486775, 50.92627254711687], + [6.006104514163516, 50.918679087292645], + [6.003230697421261, 50.91722508824509], + [5.993431515007456, 50.910049723792966], + [5.99072708844058, 50.906182732124215], + [5.992378813098556, 50.90613113411236], + [5.991604921925204, 50.90505704865545], + [5.993039625454675, 50.90484310345443], + [5.992971324778711, 50.90468529075081], + [5.993291964764541, 50.904624976238786], + [5.993701524202868, 50.904408352528435], + [5.993368140693547, 50.903643608190336], + [5.994505473540793, 50.903513550506375], + [5.994620347383549, 50.902390514999205], + [5.994740411334197, 50.89851027308797], + [5.994742513261778, 50.89846326758663], + [5.994808845264021, 50.89557530461286], + [5.99660931497816, 50.89252167448884], + [5.998625158230236, 50.89290711891147], + [5.998505565666929, 50.89180497197819], + [5.9993609315876055, 50.89162227659437], + [6.002976627230683, 50.88947918159854], + [6.0078688055326515, 50.88582823357097], + [6.009083863087391, 50.88404744606795], + [6.009525000536044, 50.87858589803982], + [6.009533819923453, 50.87847685534875], + [6.009557329991887, 50.878431810796755], + [6.010093604541065, 50.87760525787611], + [6.015086789621474, 50.873514596339355], + [6.015860359831517, 50.87021987873741], + [6.0171416653203655, 50.87046666540505], + [6.017393761453702, 50.86977153839741], + [6.017991234411445, 50.87004783880382], + [6.0183151172952005, 50.8696763268203], + [6.018780607337073, 50.86983059854567], + [6.020308979428865, 50.86879092304543], + [6.015449499423637, 50.866207363098354], + [6.0110164863817745, 50.86392379707656], + [6.007241170716026, 50.86093933594962], + [6.00817197447375, 50.85942347908441], + [6.000568447895553, 50.85773521615131], + [6.010780627041374, 50.84755437021371], + [6.012023868606261, 50.84611633112247], + [6.015741649568663, 50.84381072305181], + [6.0179588943982365, 50.84380546793987], + [6.015942454205596, 50.83879622460772], + [6.018450072224905, 50.83732910754004], + [6.016315604474593, 50.83388374831543], + [6.0187686040497415, 50.82969518752966], + [6.025264862578307, 50.82778574627967], + [6.022744390371083, 50.82660576121203], + [6.023952450644498, 50.82510787214908], + [6.024698315627826, 50.82159527285287], + [6.02637934684846, 50.820122038182], + [6.025641726873302, 50.819183979091676], + [6.0237228643707885, 50.818403174061125], + [6.023660060243439, 50.818618222194615], + [6.022044201182294, 50.82015875521346], + [6.020631458431761, 50.81973889275826], + [6.017471760048674, 50.82168530722165], + [6.0157463677672816, 50.82381163081339], + [6.016609688000865, 50.82433487331459], + [6.0160062972463155, 50.825316934574275], + [6.017030304410087, 50.82570151541574], + [6.0152112293019, 50.827266554299406], + [6.011463867016609, 50.83076450250385], + [6.007496101811551, 50.83177915006445], + [6.004085547120593, 50.83142037096547], + [6.00302096432605, 50.832025901520915], + [6.00504811669025, 50.83391426627197], + [6.005351294158271, 50.835553662151405], + [6.004129662541473, 50.83767811534461], + [5.997835683382917, 50.8412257795577], + [5.994193009266576, 50.84178770559675], + [5.991708540200947, 50.84365452949078], + [5.9895250438001755, 50.84417020343706], + [5.979161561201155, 50.84932371665707], + [5.974072249097143, 50.85376460689589], + [5.971428492429499, 50.857816845910904], + [5.969362332494571, 50.86008040196935], + [5.968739545793339, 50.860929651646245], + [5.961596719381151, 50.869575872610035], + [5.9540285635375945, 50.87650331778472], + [5.952628536066949, 50.8778822727253], + [5.946397953762984, 50.88420938741496], + [5.938905556452197, 50.89033116427787], + [5.928696089872671, 50.90054859552827], + [5.925484813294523, 50.90260894944505], + [5.92529703504685, 50.90394910457695], + [5.924180625211563, 50.90484428767965], + [5.923404977085121, 50.90440574582957], + [5.923516612601209, 50.90557017814112], + [5.916366759387699, 50.909918121657505], + [5.904385626529522, 50.91364975960063], + [5.904880042421453, 50.914464796833904], + [5.906154016464487, 50.914485456329395], + [5.908234763079225, 50.915468692049906], + [5.904104014712363, 50.917283502959286], + [5.899586300987314, 50.91682429716253], + [5.895757747083147, 50.91896820287763], + [5.895505916084782, 50.920135030332375], + [5.898224589398134, 50.923308941758044], + [5.9007447546741965, 50.922983373827584], + [5.9011409878488355, 50.92508664069024], + [5.9029781682399864, 50.92542381312968], + [5.905514542047259, 50.92755527369512], + [5.910218750137722, 50.92698599958344], + [5.913154824221967, 50.92805604810333], + [5.917697210765637, 50.93055254107408], + [5.9202103882832136, 50.93171191815431], + [5.91895040410386, 50.933226068765684], + [5.9282347129307125, 50.93653962048723], + [5.92846998095531, 50.93661221648551], + [5.929757327319196, 50.93477314672573], + [5.930115004973063, 50.9342681445515], + [5.932655557761989, 50.93251011599047], + [5.936216803396819, 50.93018603273064], + [5.937169273785708, 50.92958123313552] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4f44e526-d58a-48e0-a6ce-18eb51371ec0", + "properties": { + "statcode": "GM0928", + "jrstatcode": "2024GM0928", + "statnaam": "Kerkrade", + "rubriek": "gemeente", + "id": 239 + }, + "bbox": [ + 198189.99080000073, 317297.59699999914, 204337.8500000015, + 324231.1099999994 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.079909328358936, 50.90291676542234], + [6.07803321040038, 50.90029632808296], + [6.076548275931144, 50.89463045906704], + [6.075181650452115, 50.89295265293458], + [6.075615097165456, 50.89253208953748], + [6.076240282340387, 50.89147276736886], + [6.075418426971544, 50.890519139296366], + [6.076384573679054, 50.88895593459301], + [6.077592088020234, 50.887522323627834], + [6.0780044340381405, 50.888037127858105], + [6.079338278508422, 50.886718397018356], + [6.078341322279695, 50.88486899961711], + [6.079640769252529, 50.88367887016815], + [6.0796369189446775, 50.8822304149086], + [6.080314472972111, 50.882699351589274], + [6.081325610511758, 50.88216358064077], + [6.082609130664192, 50.88247517079364], + [6.0822987114265175, 50.881634204850876], + [6.086333415020782, 50.879876624660234], + [6.087208165406129, 50.87847388524078], + [6.085073701826518, 50.87636841433532], + [6.088102299837591, 50.87242694962179], + [6.086269923179213, 50.87157167921971], + [6.086642871879324, 50.869606120369966], + [6.084763725357315, 50.86679055342877], + [6.083396496844563, 50.864837331288214], + [6.08102702929298, 50.86454437253279], + [6.081040481072254, 50.86256395876336], + [6.077473954947183, 50.86095958222431], + [6.077019238511507, 50.859667673562406], + [6.076089633982068, 50.855627012517544], + [6.074170890527499, 50.84653786982799], + [6.06334054566734, 50.850218588338755], + [6.056698756468551, 50.85105276391892], + [6.056978442128551, 50.852795521804055], + [6.05711694003058, 50.85547522766738], + [6.056080668011045, 50.85721562069051], + [6.056023112475961, 50.85721818293605], + [6.0539374488916815, 50.85693051272438], + [6.052263609204856, 50.85558246865098], + [6.050303302534934, 50.85505743442374], + [6.050081803668656, 50.854224568005485], + [6.045082491799, 50.85239099497891], + [6.044478523935412, 50.85270421001958], + [6.042141319769196, 50.85123650653239], + [6.034281487965716, 50.8505750584743], + [6.027839215107832, 50.84763020204093], + [6.0260326527286425, 50.84723759118088], + [6.025647386459013, 50.84772196182657], + [6.021990009097314, 50.846384359602446], + [6.018945629379024, 50.846255640467916], + [6.0179588943982365, 50.84380546793987], + [6.015741649568663, 50.84381072305181], + [6.012023868606261, 50.84611633112247], + [6.010780627041374, 50.84755437021371], + [6.000568447895553, 50.85773521615131], + [6.00817197447375, 50.85942347908441], + [6.007241170716026, 50.86093933594962], + [6.0110164863817745, 50.86392379707656], + [6.015449499423637, 50.866207363098354], + [6.020308979428865, 50.86879092304543], + [6.018780607337073, 50.86983059854567], + [6.0183151172952005, 50.8696763268203], + [6.017991234411445, 50.87004783880382], + [6.017393761453702, 50.86977153839741], + [6.0171416653203655, 50.87046666540505], + [6.020245331027883, 50.87154990785996], + [6.0206981529782, 50.87121566178887], + [6.021404199476627, 50.87156405297299], + [6.027356574291798, 50.87161489681065], + [6.031139939130585, 50.87158731191795], + [6.032950990366924, 50.87661527831854], + [6.034797761914354, 50.8791672176656], + [6.034027030716405, 50.880581224751836], + [6.037054739809768, 50.8863204351757], + [6.040414960733908, 50.888240529860624], + [6.042876090566966, 50.88715249704096], + [6.045525675143301, 50.88988977369857], + [6.040421144201254, 50.892066449091274], + [6.040904561165952, 50.8928982207869], + [6.042444149616474, 50.8928254120189], + [6.042200020644983, 50.895127039235014], + [6.042202022289923, 50.89518279043871], + [6.0434947683196105, 50.89761528288016], + [6.042682449728001, 50.89879473116649], + [6.0428971355168075, 50.900408596850156], + [6.045548352624149, 50.89997395360477], + [6.048687495648843, 50.89941497556321], + [6.055878262514407, 50.899932269006676], + [6.056617372183282, 50.900113429511435], + [6.056328517453783, 50.90184463679762], + [6.058729763105211, 50.902448387814914], + [6.059350910573808, 50.90121225719035], + [6.064021991298754, 50.90232403547596], + [6.063824002182868, 50.903657909546624], + [6.075797120636885, 50.90534100333218], + [6.079813306573712, 50.90577028781304], + [6.079909328358936, 50.90291676542234] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.848c460a-66de-4bf7-852f-17fe312d33cd", + "properties": { + "statcode": "GM0935", + "jrstatcode": "2024GM0935", + "statnaam": "Maastricht", + "rubriek": "gemeente", + "id": 240 + }, + "bbox": [ + 172724.9389999993, 312709.2259999998, 181452.9530000016, + 324742.8200000003 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.731480082575075, 50.88290072318189], + [5.732515306328243, 50.882434171391786], + [5.734315786145794, 50.88279461425464], + [5.735933088189301, 50.88215281175212], + [5.734944664397945, 50.87893086640903], + [5.733044833236592, 50.87506158653545], + [5.73676736399995, 50.87366095336892], + [5.738447352123553, 50.873534282327284], + [5.7394157149398195, 50.873098411921454], + [5.741979635556205, 50.87301279247118], + [5.742639086938481, 50.871420756362426], + [5.746006235196344, 50.87226806306586], + [5.746974053006141, 50.870701274027745], + [5.748770460576897, 50.87110747635801], + [5.749428645255343, 50.87043433539485], + [5.7554446816290525, 50.8714909101047], + [5.759160563485661, 50.86609552657292], + [5.762660385665368, 50.86651034822879], + [5.762924779283905, 50.86413783328641], + [5.7528788706390435, 50.859452301009604], + [5.752942256050589, 50.8585155790219], + [5.749329092710789, 50.85705293946481], + [5.7573403742239275, 50.85529059102325], + [5.757315374454825, 50.845616306646185], + [5.754854951714611, 50.84184052493359], + [5.748013669176949, 50.840908551501485], + [5.7468559284069975, 50.84081896218115], + [5.7468081235581945, 50.840269559962636], + [5.741260917552326, 50.84010271365896], + [5.740639149391172, 50.83915727391874], + [5.740453902439889, 50.83839895739807], + [5.74631141356107, 50.837324939056074], + [5.745564749309045, 50.83633932018786], + [5.746706255164845, 50.83587172553182], + [5.7455651528343346, 50.835619317124554], + [5.745565622230634, 50.83478558703662], + [5.746493801491368, 50.830294443731816], + [5.746266182408647, 50.827648114620104], + [5.744914891820776, 50.82776958341795], + [5.745364553638175, 50.82401203283036], + [5.7448731906842365, 50.82292112340176], + [5.743698282467661, 50.82299034624663], + [5.743483766906589, 50.821323848131655], + [5.732596394577261, 50.819048056469555], + [5.7287324786002864, 50.817924704033295], + [5.728183819466488, 50.817140161619], + [5.723197532462466, 50.81472857914247], + [5.718984586949469, 50.814109578740265], + [5.717311909927233, 50.81450138475656], + [5.717013662157125, 50.8060840057019], + [5.716944057227049, 50.80380527626374], + [5.7098234932256995, 50.80419138354685], + [5.709969679305999, 50.804742717877716], + [5.708528497978646, 50.80491067445357], + [5.709456801814712, 50.808282032916004], + [5.696503084429069, 50.808546060048265], + [5.693817016842319, 50.810449709103814], + [5.693840835074405, 50.81110307168582], + [5.69385589043638, 50.811515976141074], + [5.691679539257833, 50.812122186427594], + [5.6887734770950615, 50.81162660742211], + [5.6859937940499, 50.8122240368956], + [5.6843600719151866, 50.81342017710786], + [5.680602091285631, 50.812031753880525], + [5.67942026695639, 50.8147113483868], + [5.678455834509792, 50.81506578608687], + [5.678282885568966, 50.81646838686849], + [5.67317316791119, 50.815995520488464], + [5.672750015092086, 50.81694934529606], + [5.669671789610385, 50.81724626354819], + [5.6694539168358515, 50.817850286842635], + [5.668076150555276, 50.81773732098587], + [5.667648162181275, 50.8165444312822], + [5.666397784448287, 50.81682949316969], + [5.666691632422183, 50.81725882513769], + [5.664272267387997, 50.81718707130217], + [5.663183768273882, 50.818066013982786], + [5.659009734251962, 50.818481648051], + [5.65417996461915, 50.81997439301902], + [5.655164811400208, 50.820966148714746], + [5.6543391859002075, 50.821268565779015], + [5.6564559516191055, 50.82315776362944], + [5.655506395230244, 50.82379642547622], + [5.656177706669457, 50.82428965324801], + [5.651878293744802, 50.827483991901026], + [5.6492753554998725, 50.82636073703903], + [5.648862164198814, 50.82675440358881], + [5.6513604603512455, 50.83183103456323], + [5.6499669088725994, 50.83387222690872], + [5.64833423793468, 50.833218163637085], + [5.647418958783504, 50.83593232280608], + [5.64373156545873, 50.83793611999267], + [5.6453455942244934, 50.83939509410599], + [5.641853698916145, 50.84079316870319], + [5.642792834041331, 50.84146721525136], + [5.641218389494512, 50.84289170090071], + [5.642257431509567, 50.843124873864106], + [5.639218864137139, 50.84633384882433], + [5.638866056305384, 50.84767448051074], + [5.640765984237708, 50.84769696094262], + [5.640286892911865, 50.84946554365624], + [5.642708416238031, 50.85008054168375], + [5.641784584592659, 50.85239496997338], + [5.640325935056197, 50.85372497641759], + [5.643513540579971, 50.85678377359285], + [5.641685496312512, 50.85755481062103], + [5.643790508098781, 50.85887860214153], + [5.641801744008132, 50.85924789391099], + [5.6436164079463, 50.86048290010363], + [5.642278632017041, 50.86140747421991], + [5.644005313610539, 50.86292043197919], + [5.641664645687524, 50.864161561608], + [5.649472010133601, 50.86834350389377], + [5.644159223408254, 50.87134985392621], + [5.647887743277486, 50.873707892666744], + [5.648566157851067, 50.873337576638384], + [5.651323273182161, 50.87509169828556], + [5.653367332463294, 50.874001304727805], + [5.656442312888638, 50.876568608991064], + [5.657907229400688, 50.876662069600194], + [5.6585962600715884, 50.87618469385279], + [5.660936507628459, 50.877369324230116], + [5.66167762512616, 50.87866504871913], + [5.665868114545509, 50.87973499999044], + [5.669637414607891, 50.88182049702888], + [5.67327351408139, 50.88104575829576], + [5.6757289954613235, 50.88091443707847], + [5.679331022124541, 50.88054226703109], + [5.6791059824594825, 50.883468713414885], + [5.6825155674505075, 50.88852427260672], + [5.6863443752157545, 50.89119301327527], + [5.692566235443209, 50.89393329065723], + [5.696246226779995, 50.8985958892259], + [5.6971806444937885, 50.902261733362224], + [5.695781606120178, 50.90580294171358], + [5.696534657825821, 50.908609672741875], + [5.698263916551055, 50.9101546215269], + [5.7034182690928015, 50.91171387337064], + [5.706427414635161, 50.91200277973488], + [5.709269928500065, 50.911593369113575], + [5.714854119964466, 50.90845784764836], + [5.717281038640424, 50.907642931541], + [5.714445968452318, 50.907322264626295], + [5.714618669735081, 50.90685570428531], + [5.713021719564377, 50.906256396830564], + [5.712639989107175, 50.9026723697808], + [5.719480074734865, 50.89944513114305], + [5.718308470843324, 50.896837451711484], + [5.723467330895994, 50.894561980588925], + [5.725232015223964, 50.890925524536634], + [5.725426404919299, 50.88727453799349], + [5.726542005903975, 50.88414760071932], + [5.732462907219922, 50.88352985270477], + [5.731480082575075, 50.88290072318189] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.8281bd48-8261-4f8c-a38b-68534eb70c12", + "properties": { + "statcode": "GM0938", + "jrstatcode": "2024GM0938", + "statnaam": "Meerssen", + "rubriek": "gemeente", + "id": 241 + }, + "bbox": [ + 177893.6009999998, 319653.2179999985, 184286.83999999985, + 328249.84800000116 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.748906719911617, 50.94100481893764], + [5.748239583987944, 50.93898135151532], + [5.750119667075568, 50.939203159133115], + [5.748619245561746, 50.93589101155401], + [5.752127133849841, 50.93439524787824], + [5.753992757039656, 50.933756639847026], + [5.755425271500216, 50.93176651407734], + [5.757137739336843, 50.931594884220125], + [5.757463481072857, 50.93230197633197], + [5.761527858394889, 50.931176869997955], + [5.761228803847353, 50.930427635059175], + [5.76854390118415, 50.92819099706789], + [5.769015073203342, 50.92883274090655], + [5.770938359891048, 50.9279279413438], + [5.772473043760532, 50.92854009879395], + [5.772299472892234, 50.92724075979556], + [5.7738245079361805, 50.92556080485803], + [5.773628477027499, 50.9233847233584], + [5.771135920799222, 50.919317233911045], + [5.769176732823363, 50.917037902016354], + [5.7647475361346165, 50.91377971047737], + [5.759891855645759, 50.907962928292385], + [5.755096402626542, 50.90086175651045], + [5.754845464296494, 50.90059245529036], + [5.7561481561401795, 50.90010632473082], + [5.755517328271307, 50.89956571540349], + [5.758762753693047, 50.89860844705953], + [5.765939157607385, 50.90456896366061], + [5.774677995567554, 50.91128446651941], + [5.776588146486577, 50.91163098319578], + [5.778926770207204, 50.91096076120237], + [5.781190396647519, 50.91207750611105], + [5.782440629779446, 50.9133763722961], + [5.792161408643347, 50.91048345607653], + [5.800727700339689, 50.91459798160398], + [5.801714637281589, 50.91413002124923], + [5.802299361166341, 50.913622668686514], + [5.800854845849445, 50.91241550267273], + [5.800454002107264, 50.91024109521273], + [5.801002960763721, 50.90875488870846], + [5.798500864228424, 50.90814357672859], + [5.796556971085402, 50.90747872527925], + [5.802256889020379, 50.90241206601106], + [5.798817263201248, 50.901015079753584], + [5.80171309164112, 50.900803522918906], + [5.803481124536677, 50.898037272374495], + [5.801488262420649, 50.896306526006704], + [5.800519993509262, 50.89818054006651], + [5.796563436034586, 50.897696752177275], + [5.7976266404585655, 50.89517397977068], + [5.796773095429937, 50.89174742213483], + [5.79984206483523, 50.885672876832004], + [5.798371672545638, 50.88285024919815], + [5.7895106089551716, 50.882570381409835], + [5.789101070294637, 50.88388857726284], + [5.78675705113838, 50.88356120804627], + [5.7854451363382715, 50.882441749679], + [5.784186676036378, 50.882401902685466], + [5.781584041183872, 50.88362781095835], + [5.780403679526945, 50.882748602137816], + [5.777662881101626, 50.88372732023514], + [5.773847632940418, 50.878995441429595], + [5.772703564377042, 50.87682974224599], + [5.77281012024775, 50.87487411136475], + [5.773998123478599, 50.87445135218818], + [5.772594912538908, 50.87373585900384], + [5.7742250108718824, 50.87346299549783], + [5.773331834331867, 50.87259994519569], + [5.773012824797364, 50.87227985151434], + [5.770814678402863, 50.87238935979763], + [5.76700134443255, 50.87320323381852], + [5.764269292628106, 50.86977260688595], + [5.765065158622266, 50.868672199231085], + [5.764629979035528, 50.8668404032717], + [5.762660385665368, 50.86651034822879], + [5.759160563485661, 50.86609552657292], + [5.7554446816290525, 50.8714909101047], + [5.749428645255343, 50.87043433539485], + [5.748770460576897, 50.87110747635801], + [5.746974053006141, 50.870701274027745], + [5.746006235196344, 50.87226806306586], + [5.742639086938481, 50.871420756362426], + [5.741979635556205, 50.87301279247118], + [5.7394157149398195, 50.873098411921454], + [5.738447352123553, 50.873534282327284], + [5.73676736399995, 50.87366095336892], + [5.733044833236592, 50.87506158653545], + [5.734944664397945, 50.87893086640903], + [5.735933088189301, 50.88215281175212], + [5.734315786145794, 50.88279461425464], + [5.732515306328243, 50.882434171391786], + [5.731480082575075, 50.88290072318189], + [5.732462907219922, 50.88352985270477], + [5.726542005903975, 50.88414760071932], + [5.725426404919299, 50.88727453799349], + [5.725232015223964, 50.890925524536634], + [5.723467330895994, 50.894561980588925], + [5.718308470843324, 50.896837451711484], + [5.719480074734865, 50.89944513114305], + [5.712639989107175, 50.9026723697808], + [5.713021719564377, 50.906256396830564], + [5.714618669735081, 50.90685570428531], + [5.714445968452318, 50.907322264626295], + [5.717281038640424, 50.907642931541], + [5.714854119964466, 50.90845784764836], + [5.718925380184004, 50.90781243157943], + [5.720381358350799, 50.90807081134546], + [5.724529355687999, 50.910606679045124], + [5.726772608377567, 50.91376889084933], + [5.72725940617286, 50.915797927444224], + [5.7259071703264555, 50.921198441160925], + [5.72693032146782, 50.923841220248654], + [5.7325444657017055, 50.9302216986242], + [5.7408794246830945, 50.93522480180417], + [5.743575253157594, 50.93835535188647], + [5.744217837665561, 50.94116922217568], + [5.74599258879187, 50.94341102151394], + [5.748906719911617, 50.94100481893764] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.3a730deb-a4c1-4e78-940e-fcac0c9acdb8", + "properties": { + "statcode": "GM0944", + "jrstatcode": "2024GM0944", + "statnaam": "Mook en Middelaar", + "rubriek": "gemeente", + "id": 242 + }, + "bbox": [ + 187951.70899999887, 414459.68400000036, 193062.60200000182, + 421220.83999999985 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.932766879663456, 51.74193844732489], + [5.935890640838086, 51.74102861130233], + [5.938298605794952, 51.741593147887805], + [5.9344866065781465, 51.739698498165374], + [5.933517958441535, 51.7364870062235], + [5.933710166010239, 51.733161259734054], + [5.929497572171272, 51.728164011318256], + [5.921325238845684, 51.72182094101769], + [5.919469547173511, 51.71767149905557], + [5.912001825566462, 51.71787657662869], + [5.8995667182497655, 51.72018993841585], + [5.8937825803233075, 51.722063697639015], + [5.887958944571685, 51.725192175110756], + [5.885404037891201, 51.72831418802164], + [5.883979077146598, 51.735437325797214], + [5.883781778751189, 51.73652966270187], + [5.881609338864048, 51.741545973686655], + [5.88049085152398, 51.746892089611116], + [5.879560425950663, 51.749913597296484], + [5.871166200148891, 51.75513824374707], + [5.870798713938989, 51.75533553910417], + [5.864468842426048, 51.75768172202199], + [5.865039867487945, 51.75824975891624], + [5.867141569481413, 51.760462156195075], + [5.869244699343948, 51.76286047609876], + [5.867408597336814, 51.767603332257245], + [5.867454943507644, 51.774417324620785], + [5.867893198232532, 51.77552102073724], + [5.869015285791381, 51.77573531296609], + [5.886374560436388, 51.77859045457154], + [5.893409258369347, 51.77785292497381], + [5.901094056765852, 51.77047888460443], + [5.9053757989882705, 51.76568381911449], + [5.91111459385341, 51.76240566183089], + [5.913393275889967, 51.75900102056663], + [5.913329390530319, 51.7555150188967], + [5.915133553614806, 51.7525365899201], + [5.922485749845885, 51.750615518583665], + [5.933323245547478, 51.74809858598837], + [5.930738179786761, 51.74653518955853], + [5.929948271667801, 51.74442846827343], + [5.932766879663456, 51.74193844732489] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.b74d16ce-cbb5-459b-84d2-0bf6d0c744a1", + "properties": { + "statcode": "GM0946", + "jrstatcode": "2024GM0946", + "statnaam": "Nederweert", + "rubriek": "gemeente", + "id": 243 + }, + "bbox": [ + 172913.07200000063, 360936.59099999815, 189204.2890000008, + 373171.5520000011 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.850656743966481, 51.29154331822942], + [5.837922138800337, 51.27971991721155], + [5.839421247782084, 51.277723397751195], + [5.833836169607963, 51.27494323540894], + [5.834741240065659, 51.27342659790142], + [5.842251910997898, 51.26244769989791], + [5.846741285401381, 51.25553102913321], + [5.849927050457913, 51.2565991477742], + [5.854991813910056, 51.25365895409268], + [5.855618023928054, 51.24924986598207], + [5.853440953274115, 51.244493112781], + [5.852213844789873, 51.24362661727844], + [5.849307987739162, 51.245396536164314], + [5.84577340728605, 51.245564815014376], + [5.840482542672353, 51.24477001004769], + [5.835574141864929, 51.24138681349409], + [5.832660186901106, 51.24114543601023], + [5.828301377727196, 51.24103135638693], + [5.818036398805222, 51.2420048340459], + [5.811703330492326, 51.24093022131089], + [5.808261525373335, 51.240440456484734], + [5.8029627749029205, 51.23787085053228], + [5.794872719907421, 51.23706643154398], + [5.791770005564464, 51.23753696961107], + [5.786343259982215, 51.242977325682844], + [5.782359924238693, 51.24737264933752], + [5.777869124698123, 51.250399915910705], + [5.76957084844889, 51.25415237823657], + [5.749612065673793, 51.261566410839734], + [5.744097469388306, 51.26530113367211], + [5.740666082394199, 51.27024909700013], + [5.740576235443367, 51.2703687973406], + [5.737071123476857, 51.27630771927561], + [5.734051976740183, 51.27894527207313], + [5.729612612196865, 51.281183388151234], + [5.728845337682433, 51.281420210034774], + [5.722141966675122, 51.28282345172942], + [5.708873560375913, 51.28356564920143], + [5.698058408191741, 51.28285490679445], + [5.6865671416988235, 51.280717741204896], + [5.6745117718520675, 51.27704929024702], + [5.669041016460239, 51.27732599384597], + [5.664034145006468, 51.278434203515474], + [5.659549975823438, 51.2788382379354], + [5.656958402041103, 51.27973161520914], + [5.648748827828228, 51.285190129293206], + [5.643996708349969, 51.29057548978197], + [5.651876135387297, 51.29774165133622], + [5.6721107820480245, 51.315094012914564], + [5.701730171613075, 51.320743654054674], + [5.713650061867568, 51.323011634983054], + [5.7458957073564445, 51.3291420419431], + [5.747064213848794, 51.329362482440914], + [5.76009276684314, 51.331837902935575], + [5.770448612871386, 51.333804588777625], + [5.771061016896435, 51.333920917925404], + [5.788251545437134, 51.33718255026727], + [5.840193687883534, 51.346877063742774], + [5.832075655036202, 51.33804651425331], + [5.840587349095115, 51.33072051575294], + [5.852141730768985, 51.32070231450329], + [5.8594789494907715, 51.31950604752648], + [5.877823370093845, 51.31657769394109], + [5.860724559017845, 51.31080239217045], + [5.850656743966481, 51.29154331822942] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.59f67a41-a5a0-4d8e-bf5e-b9358fbda5b0", + "properties": { + "statcode": "GM0957", + "jrstatcode": "2024GM0957", + "statnaam": "Roermond", + "rubriek": "gemeente", + "id": 244 + }, + "bbox": [ + 192072.04349999875, 352305.56599999964, 203819.05600000173, + 363444.98800000176 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.025510595968727, 51.24736039579015], + [6.027584575825164, 51.245552631834975], + [6.03221695528435, 51.24694275165065], + [6.038362475450548, 51.246103733954484], + [6.043266379185488, 51.247120603406316], + [6.051332262582155, 51.252527464538595], + [6.054821169194176, 51.25161673080323], + [6.060475667038951, 51.24790627982154], + [6.062731354729663, 51.2464446836323], + [6.072663656101611, 51.24256009186593], + [6.086024848880472, 51.2226702123943], + [6.083593916041715, 51.22204220064062], + [6.073259258399037, 51.222436256723505], + [6.070694242742527, 51.222085566724395], + [6.067987517163066, 51.220550805530664], + [6.068467976954511, 51.21335111595334], + [6.069494508269901, 51.213213989400366], + [6.070977997713064, 51.20053135678556], + [6.073141435233297, 51.18282475160686], + [6.0665907299243615, 51.18405254853019], + [6.061034983657321, 51.18356335158524], + [6.055284598047666, 51.1843618880897], + [6.054602825997856, 51.17970362604326], + [6.057070983548457, 51.17570380709001], + [6.048139281509569, 51.17484500971543], + [6.050004489564984, 51.17214913429872], + [6.060074977981576, 51.17091259990419], + [6.063565923847018, 51.16552430157662], + [6.056573887987169, 51.16355535371848], + [6.054863885206476, 51.16243792438777], + [6.0556264309220325, 51.162112388615164], + [6.047854618326667, 51.16126604483306], + [6.040114915439684, 51.16054231316446], + [6.039871156790756, 51.16160092770937], + [6.03753680298185, 51.16138838920636], + [6.037385158988086, 51.160992975071245], + [6.036115223882532, 51.16090499182948], + [6.035646801533121, 51.1614152543086], + [6.0324785647137675, 51.16087516959142], + [6.02945876668636, 51.161127005840775], + [6.027624734639353, 51.16208111552176], + [6.026076380780784, 51.16402270424483], + [6.019067985562146, 51.16434319789966], + [6.01479099986661, 51.1659082291487], + [6.013459703997512, 51.16650833092824], + [6.007686982219823, 51.16393295261826], + [6.006112504774155, 51.16371084861549], + [6.005970490243294, 51.16316071435527], + [6.001986832957421, 51.162522174658086], + [5.999188509004311, 51.162166114710416], + [5.999334955248475, 51.16420455979668], + [5.997555526696186, 51.165917195567715], + [5.997920872060225, 51.16816764758695], + [5.995049056752823, 51.16850207329499], + [5.994550755889535, 51.166145626720024], + [5.991566710280265, 51.16756185722362], + [5.991287240000453, 51.1685249442939], + [5.9925493870425, 51.17022627235744], + [5.989894659513368, 51.17065782293199], + [5.986826158147963, 51.16938669709039], + [5.986180449666941, 51.1703989705795], + [5.989020185731101, 51.17345297046571], + [5.98769035822158, 51.175192381971215], + [5.984664339160914, 51.17469664624422], + [5.983566637406623, 51.17622935356701], + [5.974737823558405, 51.170896311816804], + [5.955477518409901, 51.159044472309624], + [5.952514616131151, 51.15882286501525], + [5.947157457993667, 51.16017689394033], + [5.946977314722369, 51.16071968713677], + [5.9425104266372974, 51.160418852827775], + [5.938740209181996, 51.16180031399663], + [5.935011475045722, 51.164757543528445], + [5.92811155236355, 51.16865052994314], + [5.922815798405842, 51.169660575376774], + [5.917244816861789, 51.16869788547122], + [5.922240612245893, 51.17217634917686], + [5.925560982934499, 51.177149221759706], + [5.92130065662175, 51.178982391537176], + [5.925497382084308, 51.1845080640851], + [5.931665398409935, 51.18996629055223], + [5.951325308658558, 51.201164991161846], + [5.965147206155062, 51.20876999567457], + [5.971198761744775, 51.2131609235085], + [5.980006687970626, 51.2233348417315], + [5.986026471100392, 51.227162823960604], + [5.994835992132085, 51.2295979740252], + [6.001988903126722, 51.233946335350055], + [6.005329625744285, 51.23779208749782], + [6.006338055809398, 51.24014051090009], + [6.0090980760784385, 51.25079077469828], + [6.005880084640543, 51.25868299489437], + [6.007839968241578, 51.25724721547577], + [6.014330089383737, 51.255352292358296], + [6.016658459739235, 51.25295667219058], + [6.015998383730704, 51.250911210473305], + [6.020170110486953, 51.25041255821791], + [6.019728199952151, 51.24969775804247], + [6.025510595968727, 51.24736039579015] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c839ed09-9c26-4936-b1a9-dc1bb70bb695", + "properties": { + "statcode": "GM0965", + "jrstatcode": "2024GM0965", + "statnaam": "Simpelveld", + "rubriek": "gemeente", + "id": 245 + }, + "bbox": [ + 194867.307, 312580.26000000164, 199935.76000000164, 319080.5370000005 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.971428492429499, 50.857816845910904], + [5.974072249097143, 50.85376460689589], + [5.979161561201155, 50.84932371665707], + [5.9895250438001755, 50.84417020343706], + [5.991708540200947, 50.84365452949078], + [5.994193009266576, 50.84178770559675], + [5.997835683382917, 50.8412257795577], + [6.004129662541473, 50.83767811534461], + [6.005351294158271, 50.835553662151405], + [6.00504811669025, 50.83391426627197], + [6.00302096432605, 50.832025901520915], + [6.004085547120593, 50.83142037096547], + [6.007496101811551, 50.83177915006445], + [6.011463867016609, 50.83076450250385], + [6.0152112293019, 50.827266554299406], + [6.017030304410087, 50.82570151541574], + [6.0160062972463155, 50.825316934574275], + [6.016609688000865, 50.82433487331459], + [6.0157463677672816, 50.82381163081339], + [6.017471760048674, 50.82168530722165], + [6.020631458431761, 50.81973889275826], + [6.022044201182294, 50.82015875521346], + [6.023660060243439, 50.818618222194615], + [6.0237228643707885, 50.818403174061125], + [6.022101285606848, 50.81681007675465], + [6.024489380346307, 50.8159237388756], + [6.023528750470038, 50.81464989920437], + [6.024758235028063, 50.81388849527892], + [6.0165004230690515, 50.80978026960188], + [6.009994566129288, 50.80398854059461], + [6.003692640040034, 50.80147154956551], + [5.991384883689422, 50.80804477064598], + [5.984989495531848, 50.810449861017965], + [5.983518167118582, 50.80972969809002], + [5.981917563965278, 50.81085772179211], + [5.982926181308264, 50.81143748243056], + [5.980555568315974, 50.81298288423106], + [5.979523159158022, 50.814576369809046], + [5.977958552739751, 50.814906050288265], + [5.969418708512723, 50.81685801612424], + [5.97182973376274, 50.82117705478848], + [5.967904290707204, 50.822352298545205], + [5.9594878608086015, 50.82823186780041], + [5.955544187893483, 50.835394599711336], + [5.956946980091637, 50.835842623922], + [5.955770381089664, 50.83927389310675], + [5.956177578026536, 50.84201589392894], + [5.9548162141446115, 50.84592411772832], + [5.955295569287679, 50.84692069664295], + [5.953263829675696, 50.84821745988104], + [5.9538034378021125, 50.85049351669186], + [5.954162418391666, 50.85154004880948], + [5.955021677280477, 50.85186493516848], + [5.954776234977207, 50.85258636993994], + [5.957385018111966, 50.853061248051624], + [5.96072011893878, 50.85487050769743], + [5.961334988981021, 50.85405104221092], + [5.964806187853763, 50.85514574906968], + [5.969362332494571, 50.86008040196935], + [5.971428492429499, 50.857816845910904] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e32085dd-dbce-4929-afab-0ac8cc185b7d", + "properties": { + "statcode": "GM0971", + "jrstatcode": "2024GM0971", + "statnaam": "Stein (L.)", + "rubriek": "gemeente", + "id": 246 + }, + "bbox": [ + 178375.73999999836, 326536.27800000086, 183218.7950000018, + 336692.27219999954 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.787179177956793, 51.0191639888956], + [5.781155984403089, 51.01118682151089], + [5.7748277374674, 51.00415463284857], + [5.779442113973567, 51.00297916986579], + [5.789196660319275, 51.001197058388975], + [5.786118988995756, 50.9940465138928], + [5.783657269162101, 50.99058055657335], + [5.782178074096568, 50.985805852128294], + [5.782465376897855, 50.981887717655766], + [5.7864601148465145, 50.97457050737967], + [5.786538394692875, 50.97137246115002], + [5.783898140336409, 50.96887903180424], + [5.784205334505775, 50.96781180678023], + [5.785963600795661, 50.962630326845165], + [5.785841521108474, 50.96022362804026], + [5.7862682732713635, 50.954666745772954], + [5.788107725987504, 50.94860626128048], + [5.783324013071075, 50.94604046535948], + [5.779954571258101, 50.945339275841455], + [5.77933932255809, 50.944394424968614], + [5.779171324948317, 50.94381608694501], + [5.783730983139431, 50.942996887286334], + [5.783484049927866, 50.94259450985724], + [5.78319879822521, 50.942634416979466], + [5.782604937126926, 50.941813892948986], + [5.779230535357988, 50.939241204264576], + [5.77853347256659, 50.936495301576116], + [5.777673205992613, 50.9341822980722], + [5.778551974805767, 50.9338172218883], + [5.77723608702195, 50.93301017288209], + [5.777919438087313, 50.932689340680554], + [5.775057974490912, 50.93114777425803], + [5.772473043760532, 50.92854009879395], + [5.770938359891048, 50.9279279413438], + [5.769015073203342, 50.92883274090655], + [5.76854390118415, 50.92819099706789], + [5.761228803847353, 50.930427635059175], + [5.761527858394889, 50.931176869997955], + [5.757463481072857, 50.93230197633197], + [5.757137739336843, 50.931594884220125], + [5.755425271500216, 50.93176651407734], + [5.753992757039656, 50.933756639847026], + [5.752127133849841, 50.93439524787824], + [5.748619245561746, 50.93589101155401], + [5.750119667075568, 50.939203159133115], + [5.748239583987944, 50.93898135151532], + [5.748906719911617, 50.94100481893764], + [5.74599258879187, 50.94341102151394], + [5.7458774038204234, 50.9464957450235], + [5.746588304578588, 50.94730343647938], + [5.7515768393450815, 50.94924210928885], + [5.755667273879993, 50.94984121270806], + [5.7581080417934976, 50.950750372004364], + [5.759185328608787, 50.95254199228368], + [5.758010234949584, 50.955505985732685], + [5.756048257880107, 50.95772314672168], + [5.75284035699639, 50.95965667096878], + [5.750523075405422, 50.96074092261208], + [5.746226943874993, 50.96164485220119], + [5.742036634669989, 50.96056014109742], + [5.740020743574246, 50.959195860390444], + [5.7390137285484135, 50.957434411564655], + [5.734159561228152, 50.95545101826968], + [5.731240773880122, 50.95487635287822], + [5.725323896284072, 50.95555824320849], + [5.722012221465287, 50.95713462637924], + [5.719903319952553, 50.95958747272113], + [5.720127426273579, 50.96242128383415], + [5.724272794121365, 50.96621067577129], + [5.725667176022445, 50.9666854441821], + [5.728544751469017, 50.96987343402887], + [5.7331609341246015, 50.97182416657704], + [5.735388679965071, 50.97437238483238], + [5.736377366687418, 50.97791488438055], + [5.73729523704959, 50.978690997937115], + [5.739778836094832, 50.97979835146127], + [5.746645312379288, 50.98066435315689], + [5.749883983733198, 50.98253661421677], + [5.751496234371732, 50.98414110061798], + [5.75264580731793, 50.98672204834352], + [5.755132123271745, 50.988980270551046], + [5.7550185488426, 50.99011538627159], + [5.759138142531267, 50.993166318481215], + [5.766087079574642, 50.99768785430318], + [5.76767288520948, 51.00065384949393], + [5.767438286796439, 51.00435500748207], + [5.766069437334988, 51.00691242279832], + [5.766006600086904, 51.00899723483138], + [5.767492931405363, 51.013255074106965], + [5.7734065282219635, 51.018999218634775], + [5.782634736840406, 51.018653114496956], + [5.786284107339232, 51.01912989519524], + [5.787179177956793, 51.0191639888956] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.dc1bd428-0908-4750-bdae-f306ebcce0f6", + "properties": { + "statcode": "GM0981", + "jrstatcode": "2024GM0981", + "statnaam": "Vaals", + "rubriek": "gemeente", + "id": 247 + }, + "bbox": [ + 192626.65199999884, 307155.1409999989, 200193.72100000083, + 312775.76999999955 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.975741810433262, 50.80235272071215], + [5.974916248260983, 50.79801399015533], + [5.97721416619311, 50.79668845864439], + [5.979153747528865, 50.79631407784441], + [5.9798837244650525, 50.79520177125869], + [5.9835108218793875, 50.794863146571906], + [5.9850081643048885, 50.79482694233121], + [5.98577492410943, 50.793843363281034], + [5.988269446279262, 50.7940498298126], + [5.995869977614526, 50.79007039695777], + [5.995810574786041, 50.7874591811918], + [5.997455783562987, 50.78656634501973], + [5.998509264826562, 50.78698285976277], + [6.0007291253498085, 50.7852201236833], + [6.0021594332321495, 50.78417509406629], + [6.005531815058744, 50.78335764433467], + [6.0065568646871155, 50.78191548899422], + [6.0100394959170815, 50.780429991997245], + [6.017412919751983, 50.77856138834755], + [6.017610734967227, 50.77802954535707], + [6.020210019253423, 50.77710146173586], + [6.020333418482414, 50.776488177197336], + [6.026081635711194, 50.775538437199195], + [6.027865036746464, 50.7738334766026], + [6.018361147689865, 50.76335681048282], + [6.020989249646663, 50.754294749361954], + [6.01735153817138, 50.75501435633018], + [6.0139650928982125, 50.75505555391067], + [6.004310970310076, 50.7537885594101], + [6.002558827949834, 50.754114198258776], + [5.999277802179559, 50.75302588279702], + [5.997914875863684, 50.75365674796771], + [5.996532344009862, 50.75380561911668], + [5.993371788347658, 50.75275998003938], + [5.984522812311359, 50.75339656504574], + [5.983190379413124, 50.75281984460725], + [5.979335253789348, 50.7546323761315], + [5.976495375111721, 50.75435305062435], + [5.97414689871209, 50.75522683006703], + [5.975118178901989, 50.75788850222754], + [5.9726084086641515, 50.75972004908727], + [5.969205217151777, 50.76060134727398], + [5.96096410740112, 50.76153841701009], + [5.960663360878734, 50.76247519284357], + [5.959007546676743, 50.76236682815348], + [5.953582743695073, 50.7601414643078], + [5.951706498950279, 50.76054836903828], + [5.946492702596752, 50.75981845090892], + [5.944083024038816, 50.7584269288744], + [5.938969377523661, 50.75793877311857], + [5.935757628041358, 50.75697943801679], + [5.93454988486727, 50.75848826135418], + [5.933051366798511, 50.7587777972561], + [5.932046861284393, 50.75812567751139], + [5.930188410667694, 50.75900291566378], + [5.9299071430643195, 50.75978732548539], + [5.931055643229057, 50.75993845365003], + [5.932141835573915, 50.760886651037865], + [5.931037653116008, 50.760929179771125], + [5.9313370769706655, 50.761494717772365], + [5.930523503901143, 50.76203075619363], + [5.929982240569525, 50.76194954619058], + [5.9298767831623955, 50.76211088689812], + [5.930083839497691, 50.76265119894055], + [5.927955291185348, 50.76247820112382], + [5.9271719884018195, 50.763812334481784], + [5.926784059710879, 50.76310875217737], + [5.925051082413353, 50.763684830025475], + [5.925605291173734, 50.763888991817645], + [5.924516453951503, 50.766891129792306], + [5.920541092069626, 50.7693331343266], + [5.921904957528862, 50.77335420103458], + [5.923869866311319, 50.775236964365945], + [5.930898923472766, 50.77512542877679], + [5.93403095551641, 50.77359034270315], + [5.935929778891479, 50.771460892879766], + [5.937745450876034, 50.77136864395349], + [5.941137649877138, 50.77199564945415], + [5.943312622580481, 50.773053375967564], + [5.944077281351465, 50.77574512604711], + [5.94491427779083, 50.78160900898594], + [5.942008088363353, 50.790479118036394], + [5.943391874651347, 50.79383294847434], + [5.945499966083234, 50.79560135044477], + [5.951703694837665, 50.79384813173732], + [5.957847656273933, 50.79811861593612], + [5.961063669908511, 50.80039612354281], + [5.964808923066584, 50.802418645419], + [5.969104248026361, 50.80127230072268], + [5.9766808695649996, 50.80336997726752], + [5.975741810433262, 50.80235272071215] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7cfa71d1-1542-48ac-87a3-9abfdda52dfa", + "properties": { + "statcode": "GM0983", + "jrstatcode": "2024GM0983", + "statnaam": "Venlo", + "rubriek": "gemeente", + "id": 248 + }, + "bbox": [ + 202645.82400000095, 365620.9759999998, 213448.37999999896, + 391303.5480000004 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.21336126397044, 51.50781767101907], + [6.214101019571041, 51.503290454522684], + [6.212763623417338, 51.491308153901436], + [6.217975473880004, 51.48502551592717], + [6.218514764191541, 51.484341450874155], + [6.219031988913274, 51.484983269551336], + [6.223556679360955, 51.47496489540113], + [6.223332336013339, 51.47216796452651], + [6.222892730600562, 51.46942862427854], + [6.223675853950805, 51.46871484246511], + [6.2222951366425905, 51.46616230885981], + [6.2219245436955495, 51.460584771173004], + [6.220123044150177, 51.45551958556639], + [6.220593393726127, 51.44664625655137], + [6.214107595333804, 51.44652774960884], + [6.214761418365544, 51.43388074651728], + [6.206865577093698, 51.40533359550486], + [6.205256959964405, 51.39952010864707], + [6.211362527949151, 51.400925600252776], + [6.22666802621865, 51.40026804123569], + [6.226032657752495, 51.39953164324636], + [6.226769269148492, 51.39937424413009], + [6.224321967433, 51.39710506229762], + [6.214424680224809, 51.38963427592983], + [6.216367381503851, 51.38883248553589], + [6.214742562415571, 51.387515714823465], + [6.216298729459224, 51.38410557952887], + [6.22079905564174, 51.37351555354148], + [6.226389913927751, 51.36033615973655], + [6.22476597293128, 51.35940853119864], + [6.19725330603646, 51.34369092554651], + [6.192577861563284, 51.34101315039339], + [6.189881664517613, 51.33946142428445], + [6.194236369839179, 51.334878974349124], + [6.188303739352222, 51.33506817009091], + [6.178571090338043, 51.33333209448397], + [6.1690069117982365, 51.33301392348725], + [6.168158186149986, 51.332322174746004], + [6.169271680288751, 51.32973700385113], + [6.164187553487907, 51.32555205110625], + [6.159589945969435, 51.319691289532784], + [6.159420407112814, 51.31564202400353], + [6.1588288187447, 51.31515159767243], + [6.154239675489016, 51.311114587732526], + [6.153823795561238, 51.307448164887646], + [6.145144673853941, 51.298116006303026], + [6.129010926149828, 51.28570242005569], + [6.124757904013873, 51.27755000126626], + [6.124552666670683, 51.27981831740712], + [6.1228567575987, 51.28060929454559], + [6.120057676399319, 51.28511273356434], + [6.1144620588451115, 51.28917535173896], + [6.107008466659087, 51.29146930035455], + [6.103152317753074, 51.288700427264665], + [6.093297695627031, 51.295436243333974], + [6.092910131965478, 51.29540309653026], + [6.09055976240493, 51.29479482460585], + [6.08743248699005, 51.29504179843863], + [6.084717158430475, 51.29745438170266], + [6.089138729568374, 51.29924005678961], + [6.092282113724636, 51.30132220525598], + [6.100453454193979, 51.30721415833391], + [6.1060351869165705, 51.312287084534844], + [6.107815386877327, 51.314405180768695], + [6.109173644685681, 51.31599357659999], + [6.115389550788426, 51.321999539819465], + [6.11743322285614, 51.32699185313406], + [6.118174352889833, 51.33004765282486], + [6.116998043936384, 51.33394447906216], + [6.11665749433217, 51.33910973488838], + [6.118795943680208, 51.34101719622067], + [6.123253373957759, 51.34336978006994], + [6.119595420900515, 51.34647875439902], + [6.118773028172564, 51.345931376213024], + [6.10710016677691, 51.356002847341834], + [6.099636283120542, 51.35713211193541], + [6.094942330413982, 51.36560019230148], + [6.090759491169533, 51.37148339903544], + [6.087930552614467, 51.37045879383104], + [6.086234353398509, 51.372596067438415], + [6.077587396417548, 51.378172833320406], + [6.090432246131551, 51.38589795347553], + [6.090121585747505, 51.3890928883859], + [6.087601261409206, 51.38954183006309], + [6.085474655015543, 51.39052651130385], + [6.08377312987453, 51.39245058524226], + [6.08183553745468, 51.392211341077655], + [6.077364722985926, 51.39428090232129], + [6.074370322972012, 51.393909242887744], + [6.073126188369232, 51.39572924336425], + [6.072077362484686, 51.39830289545389], + [6.071904940507561, 51.40162637589608], + [6.074011757602539, 51.40546513460617], + [6.073365966563468, 51.40610569837896], + [6.0768637942248755, 51.409655319180715], + [6.077611537907358, 51.419609775061566], + [6.0776961615147425, 51.42017080469217], + [6.0818174855500935, 51.420581965738386], + [6.101757666757823, 51.41955410912856], + [6.107642149716805, 51.42024816951213], + [6.108959471201028, 51.41942618782319], + [6.109479529589039, 51.420464819248714], + [6.116192279108393, 51.42125606947644], + [6.120803982637575, 51.41715039261128], + [6.121946323737712, 51.415859135280954], + [6.124505219822669, 51.41544080360227], + [6.124555874090468, 51.41480061878718], + [6.127733036121778, 51.414786063395844], + [6.12819785921437, 51.41389109454427], + [6.131170588484562, 51.41470448187484], + [6.132606924499421, 51.41377929978032], + [6.134091054915163, 51.416136429050056], + [6.1352707787693825, 51.4161092784168], + [6.140780107567881, 51.39486198457084], + [6.153041389829923, 51.39592525406947], + [6.148995190004785, 51.40777515943052], + [6.149648195531361, 51.4112172939459], + [6.151375490712412, 51.41461237778016], + [6.156824594745704, 51.419119897051544], + [6.15837952021404, 51.42272657607331], + [6.157827506304657, 51.426667322365816], + [6.154611587674637, 51.43470166343427], + [6.154355032871028, 51.43536780371898], + [6.154263826639819, 51.4400836366687], + [6.156876885867121, 51.444932367161115], + [6.164845197283436, 51.452570154347754], + [6.176042698317266, 51.46146664005653], + [6.178640381588216, 51.46580766787534], + [6.178688717814062, 51.470385234961256], + [6.177609229238019, 51.47382982849995], + [6.174637959755337, 51.477276021258696], + [6.170536043862405, 51.48120657462102], + [6.167107727772032, 51.48578841504789], + [6.166557619043973, 51.48819618961886], + [6.166601770395255, 51.48979550924284], + [6.169226237034169, 51.49923273489879], + [6.1691934379285795, 51.50308165641622], + [6.1883625425625794, 51.505080997265274], + [6.204044708537059, 51.50431295478997], + [6.21336126397044, 51.50781767101907] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.b9d2a759-e367-41e1-a554-18a336ff1c4a", + "properties": { + "statcode": "GM0984", + "jrstatcode": "2024GM0984", + "statnaam": "Venray", + "rubriek": "gemeente", + "id": 249 + }, + "bbox": [ + 186272.6000000015, 384276.55999999866, 207324.63500000164, + 398104.5850000009 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.018211958185508, 51.56333468012517], + [6.031668836577393, 51.55233882674815], + [6.033687678777638, 51.55544747689977], + [6.032735170031176, 51.55668521327506], + [6.034320572153598, 51.55749726835549], + [6.037307850416583, 51.55814927509746], + [6.040912857158731, 51.55663044944835], + [6.04432767141727, 51.55744752616569], + [6.042866078491789, 51.558694626000154], + [6.044581890330359, 51.55901529814519], + [6.04642502264811, 51.55764101662243], + [6.048120698761913, 51.558462546515464], + [6.056509487023539, 51.55758052732461], + [6.062131819509147, 51.55587512222764], + [6.073757439302233, 51.549242302330114], + [6.080717581181068, 51.54693802246889], + [6.1045907738308856, 51.54821614405598], + [6.108328853161241, 51.54760925438107], + [6.111916387618968, 51.54625494134782], + [6.113822497722738, 51.544328146520606], + [6.114631226986023, 51.54205342966904], + [6.116056808047044, 51.537290956629015], + [6.119682590391399, 51.53184501065648], + [6.131205733339953, 51.525847155624795], + [6.1410940432727426, 51.51951956940745], + [6.131998435053445, 51.511473449023896], + [6.126870850912733, 51.51437995075628], + [6.121991125327338, 51.51017649039643], + [6.1146489131029975, 51.51454322680841], + [6.106612147807495, 51.51830162019399], + [6.107124114779635, 51.5217951495499], + [6.10100066921732, 51.52271419418497], + [6.095628655108424, 51.521595957115075], + [6.093771939799824, 51.52272053772452], + [6.0871692261619685, 51.523566122573776], + [6.079928583231371, 51.522952478577864], + [6.076764458748736, 51.52477734573039], + [6.0667738280957355, 51.523693696332415], + [6.064602182499014, 51.51606637855041], + [6.066259310617135, 51.50794750524484], + [6.072704505136009, 51.497263128459124], + [6.073755975029908, 51.49517267057576], + [6.0680815687201966, 51.48836966660979], + [6.068394103891104, 51.48789974500921], + [6.063889610049273, 51.48805413031117], + [6.061657482083267, 51.48727097436809], + [6.059189719885178, 51.48843291320908], + [6.049473536450912, 51.49040429118482], + [6.0399426680678925, 51.48791588608774], + [6.039794120246762, 51.486390231301826], + [6.036194535730765, 51.484720211122095], + [6.0352094286916635, 51.48234835585552], + [6.030210967028708, 51.47984922562425], + [6.0247416987203195, 51.479701672218866], + [6.013269618052528, 51.47699228902214], + [5.994352998351315, 51.47524638160484], + [5.991879957655579, 51.47451102649377], + [5.991867729523224, 51.474507196780706], + [5.982029434634649, 51.47140297648348], + [5.9529435624321705, 51.463527925234466], + [5.941444525569835, 51.46104640713266], + [5.916382368932782, 51.45562563074049], + [5.874965893378916, 51.44655772195858], + [5.871695195927734, 51.450111965296045], + [5.860714412705525, 51.49198033156002], + [5.852573702735848, 51.50414442468248], + [5.8510188756552015, 51.51084406851266], + [5.847686043728228, 51.52529524200886], + [5.83823846425486, 51.56641461613499], + [5.870892394786967, 51.562644194627474], + [5.891466123277402, 51.56020467989421], + [5.906662586880648, 51.552030867290334], + [5.917840712120093, 51.55264120658289], + [5.935444932667412, 51.553600194141005], + [5.952381379079304, 51.55697332080303], + [5.97338678481245, 51.561063333839975], + [5.991269800591702, 51.566085350675806], + [6.003052577992613, 51.569851482369465], + [6.004252789993715, 51.57024351813182], + [6.005098996061472, 51.569825000408414], + [6.0115193615755365, 51.56664913610214], + [6.011519433203701, 51.56664910066306], + [6.018211958185508, 51.56333468012517] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c5f0d344-8ab9-4119-8129-84d9ce9fcc6e", + "properties": { + "statcode": "GM0986", + "jrstatcode": "2024GM0986", + "statnaam": "Voerendaal", + "rubriek": "gemeente", + "id": 250 + }, + "bbox": [ + 188388.2259999998, 316789.2829999998, 195990.59099999815, + 324036.0920000002 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.92529703504685, 50.90394910457695], + [5.925484813294523, 50.90260894944505], + [5.928696089872671, 50.90054859552827], + [5.938905556452197, 50.89033116427787], + [5.946397953762984, 50.88420938741496], + [5.952628536066949, 50.8778822727253], + [5.9540285635375945, 50.87650331778472], + [5.961596719381151, 50.869575872610035], + [5.968739545793339, 50.860929651646245], + [5.969362332494571, 50.86008040196935], + [5.964806187853763, 50.85514574906968], + [5.961334988981021, 50.85405104221092], + [5.96072011893878, 50.85487050769743], + [5.957385018111966, 50.853061248051624], + [5.954776234977207, 50.85258636993994], + [5.955021677280477, 50.85186493516848], + [5.954162418391666, 50.85154004880948], + [5.9538034378021125, 50.85049351669186], + [5.953263829675696, 50.84821745988104], + [5.955295569287679, 50.84692069664295], + [5.9548162141446115, 50.84592411772832], + [5.95089221152855, 50.84456957228363], + [5.946801687932131, 50.84468629851174], + [5.946367364751437, 50.84442746731308], + [5.946108437152003, 50.84428725778304], + [5.945346758438904, 50.84389395472971], + [5.940413912997528, 50.8415157577155], + [5.9358069412933085, 50.84013681798053], + [5.933187198661985, 50.839660941785375], + [5.9296085895490425, 50.84024770433044], + [5.92910849128029, 50.843042692332936], + [5.925002411073521, 50.84884125352323], + [5.916169405585804, 50.84881890876018], + [5.90325788535756, 50.845706095718825], + [5.898771660577333, 50.843350895103065], + [5.8915894617293345, 50.84284692543903], + [5.891245813959866, 50.842747095194085], + [5.8894568103409926, 50.845210995446216], + [5.8879925719625135, 50.847033702841514], + [5.883671713302002, 50.85167742585946], + [5.8766417336880945, 50.85502768433948], + [5.875727450619112, 50.855527343073945], + [5.876639262067848, 50.85658789025491], + [5.8743072667617815, 50.857243206341124], + [5.869032718373899, 50.85667944918819], + [5.869481782020269, 50.85841355767501], + [5.871304167793217, 50.86087649048353], + [5.871423135951143, 50.863012350509], + [5.873103619688921, 50.86466073397306], + [5.871332554719876, 50.867810102404356], + [5.870408095102615, 50.86771677242278], + [5.870141653082136, 50.868641262445706], + [5.869061789568469, 50.8687567178403], + [5.870671117164704, 50.87075499452076], + [5.8691314964416215, 50.87219609770925], + [5.870068496666384, 50.873018853021684], + [5.865349109472277, 50.87584062177893], + [5.863891648794781, 50.8770956838441], + [5.86279413084996, 50.8797435172332], + [5.861839655823678, 50.879941194541566], + [5.862751028400174, 50.8801824970606], + [5.861618434374936, 50.88241751284662], + [5.871456020784563, 50.88345921056819], + [5.880786445124296, 50.882530159555955], + [5.885859815155237, 50.88430506548048], + [5.8870986078110805, 50.88371833202466], + [5.888598114300866, 50.88434545392474], + [5.889605240867326, 50.88563649347317], + [5.8904616525972004, 50.88507697584907], + [5.894007297181165, 50.88560206019694], + [5.890390055503333, 50.88841307320371], + [5.903666112757822, 50.89423845354868], + [5.901572345381322, 50.89579345722454], + [5.914707107160307, 50.9017216777503], + [5.913392701756072, 50.90272496890411], + [5.917242132007873, 50.9042645599532], + [5.920543404922078, 50.903063700833734], + [5.923404977085121, 50.90440574582957], + [5.924180625211563, 50.90484428767965], + [5.92529703504685, 50.90394910457695] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.a35eed46-7c88-435d-bce8-0d03da49ac22", + "properties": { + "statcode": "GM0988", + "jrstatcode": "2024GM0988", + "statnaam": "Weert", + "rubriek": "gemeente", + "id": 251 + }, + "bbox": [ + 167494.51000000164, 354604.9299999997, 183253.7950000018, + 366841.4829999991 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.669041016460239, 51.27732599384597], + [5.6745117718520675, 51.27704929024702], + [5.6865671416988235, 51.280717741204896], + [5.698058408191741, 51.28285490679445], + [5.708873560375913, 51.28356564920143], + [5.722141966675122, 51.28282345172942], + [5.728845337682433, 51.281420210034774], + [5.729612612196865, 51.281183388151234], + [5.734051976740183, 51.27894527207313], + [5.737071123476857, 51.27630771927561], + [5.740576235443367, 51.2703687973406], + [5.740666082394199, 51.27024909700013], + [5.744097469388306, 51.26530113367211], + [5.749612065673793, 51.261566410839734], + [5.76957084844889, 51.25415237823657], + [5.777869124698123, 51.250399915910705], + [5.782359924238693, 51.24737264933752], + [5.786343259982215, 51.242977325682844], + [5.791770005564464, 51.23753696961107], + [5.7900507010682425, 51.23649870461025], + [5.789737791688882, 51.23388325807824], + [5.781766620099523, 51.220138788155886], + [5.775845133183217, 51.219005982357324], + [5.774778498594196, 51.21800247796023], + [5.774581034448967, 51.21592943443276], + [5.773188242508369, 51.21512857738938], + [5.768514449025514, 51.21484703300374], + [5.7643932627196985, 51.21587935049152], + [5.760651520114199, 51.21646993006048], + [5.75686655895853, 51.21614334044379], + [5.755264251794864, 51.2154385769602], + [5.7517761206351254, 51.21361106551978], + [5.750836353576027, 51.20967945727011], + [5.749207480463247, 51.20847696362004], + [5.751543674148334, 51.20750351372584], + [5.753343919233469, 51.20794217381912], + [5.755856593742705, 51.206830056974766], + [5.75290918173745, 51.20517920239293], + [5.753642038590584, 51.203184784774706], + [5.751826808959021, 51.20008811111476], + [5.745819515748265, 51.19384565394027], + [5.747368674001936, 51.192423895284975], + [5.746836939451326, 51.19244046410432], + [5.746546958069897, 51.19055756836448], + [5.745698118614059, 51.19057484283302], + [5.745641219355552, 51.18949896330358], + [5.7432821386481185, 51.188260364151816], + [5.743075111479948, 51.18753469962988], + [5.742180322243729, 51.18765865387581], + [5.74009826426482, 51.18655141262828], + [5.739634347510927, 51.18475604037989], + [5.738507433592814, 51.18639669168893], + [5.733859714979492, 51.186206958850434], + [5.733480981623493, 51.185318282751425], + [5.7299350137872995, 51.18497454936166], + [5.729535529446404, 51.18552367382607], + [5.726543583500207, 51.18548365719346], + [5.726761977197582, 51.18495830427938], + [5.725429954836965, 51.184668659967784], + [5.725190369005168, 51.18526836479855], + [5.717783366448632, 51.1843790223896], + [5.714478980199023, 51.18350882224567], + [5.709339211192951, 51.18042069405302], + [5.7080037339795515, 51.182054695659566], + [5.701288047367917, 51.18247835711974], + [5.701611271400998, 51.18379299834995], + [5.696436059732099, 51.18393705049566], + [5.695294766367526, 51.18255894961424], + [5.691764773236126, 51.18364071713935], + [5.689695084275151, 51.18537665523424], + [5.687871477447125, 51.18540026679163], + [5.687216266831785, 51.18476681049652], + [5.682835493905229, 51.18392929173462], + [5.681156869951345, 51.184445133405156], + [5.680494074656636, 51.18348157721056], + [5.676541017969495, 51.182725566398986], + [5.6763595334734305, 51.1844287713856], + [5.672469362297135, 51.185600106858196], + [5.664495087980755, 51.1862943895501], + [5.6580436526226086, 51.18474501947812], + [5.649739956411067, 51.193617710055484], + [5.654083142887042, 51.19424170428324], + [5.652733748802749, 51.19766099470511], + [5.646467590546369, 51.199944105295664], + [5.583143766487426, 51.21654800959947], + [5.566045273703402, 51.22090940690335], + [5.594320582981395, 51.22607368988148], + [5.594414375191799, 51.22418039344111], + [5.602195613602266, 51.22585602118634], + [5.618781562639911, 51.22942527863339], + [5.623467374666471, 51.24899791641885], + [5.623480582311873, 51.24910878249395], + [5.625972195056806, 51.27360160140786], + [5.643996708349969, 51.29057548978197], + [5.648748827828228, 51.285190129293206], + [5.656958402041103, 51.27973161520914], + [5.659549975823438, 51.2788382379354], + [5.664034145006468, 51.278434203515474], + [5.669041016460239, 51.27732599384597] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.20583b9a-bbc2-436a-bcc6-7a375941f8f9", + "properties": { + "statcode": "GM0994", + "jrstatcode": "2024GM0994", + "statnaam": "Valkenburg aan de Geul", + "rubriek": "gemeente", + "id": 252 + }, + "bbox": [ + 180499.6563999988, 315615.96400000155, 190271.2809999995, + 322585.1955999993 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.832716795550792, 50.88577384967091], + [5.833596272512936, 50.882402954347796], + [5.834937176370156, 50.88232552154899], + [5.834687330136825, 50.88064824404117], + [5.835829823689674, 50.88151413126829], + [5.841992122062668, 50.88242845380654], + [5.850129399692241, 50.88366686182699], + [5.851665151020808, 50.88219973599099], + [5.856977731579222, 50.88191537907342], + [5.861618434374936, 50.88241751284662], + [5.862751028400174, 50.8801824970606], + [5.861839655823678, 50.879941194541566], + [5.86279413084996, 50.8797435172332], + [5.863891648794781, 50.8770956838441], + [5.865349109472277, 50.87584062177893], + [5.870068496666384, 50.873018853021684], + [5.8691314964416215, 50.87219609770925], + [5.870671117164704, 50.87075499452076], + [5.869061789568469, 50.8687567178403], + [5.870141653082136, 50.868641262445706], + [5.870408095102615, 50.86771677242278], + [5.871332554719876, 50.867810102404356], + [5.873103619688921, 50.86466073397306], + [5.871423135951143, 50.863012350509], + [5.871304167793217, 50.86087649048353], + [5.869481782020269, 50.85841355767501], + [5.869032718373899, 50.85667944918819], + [5.8743072667617815, 50.857243206341124], + [5.876639262067848, 50.85658789025491], + [5.875727450619112, 50.855527343073945], + [5.8766417336880945, 50.85502768433948], + [5.883671713302002, 50.85167742585946], + [5.8879925719625135, 50.847033702841514], + [5.885122839029008, 50.84748246708241], + [5.881386770328348, 50.8466870882766], + [5.876155621590155, 50.84629954049457], + [5.875646385617594, 50.84711149529815], + [5.874765279667038, 50.8466834959341], + [5.874841050146511, 50.845377123928216], + [5.8775787442724, 50.841319040519735], + [5.8765502171699096, 50.84024073075466], + [5.873951472126055, 50.837923514932946], + [5.871087252874524, 50.836518064178], + [5.870259078651162, 50.83653494014132], + [5.871002825500188, 50.838293078912415], + [5.867122427250596, 50.83866479542144], + [5.866213586970893, 50.83871181139254], + [5.865930427175856, 50.837574657168666], + [5.859460865344469, 50.83368419196535], + [5.857421063545757, 50.832109052840785], + [5.853923257353101, 50.831736925676694], + [5.853509122133884, 50.83255159791916], + [5.849918938900553, 50.83195422698456], + [5.844934196075222, 50.833453874507995], + [5.84400656229112, 50.833717030842614], + [5.843255205365318, 50.833176517643906], + [5.836090818388062, 50.83596218773522], + [5.836458926855949, 50.832727851121156], + [5.837364460535429, 50.8313580168227], + [5.836284896940935, 50.82999815596714], + [5.831744732626334, 50.82954880871744], + [5.827305897883589, 50.829987863433225], + [5.823609775945856, 50.830357957630405], + [5.8208923585450725, 50.83238229503139], + [5.821239056212686, 50.83876111311943], + [5.818428517954257, 50.83938295870547], + [5.812869883050087, 50.84123121957864], + [5.810820953447342, 50.84048304870699], + [5.807829032384514, 50.841474576175386], + [5.805301245451477, 50.84342692739295], + [5.801637822721864, 50.84987502027797], + [5.800667167602215, 50.848350397472146], + [5.7974195898183645, 50.848395955855565], + [5.795032169024177, 50.8485701410558], + [5.791384864949942, 50.849871165080245], + [5.7827026834080995, 50.84924894912536], + [5.780418595172573, 50.849453652119614], + [5.779405760010133, 50.850210325702754], + [5.778780726889825, 50.85230446559186], + [5.775792329046936, 50.853394058826055], + [5.774613454263815, 50.852571885819245], + [5.770752917175558, 50.852395428127075], + [5.769032498930268, 50.85296068133468], + [5.7641822667978735, 50.85454572217075], + [5.7573403742239275, 50.85529059102325], + [5.749329092710789, 50.85705293946481], + [5.752942256050589, 50.8585155790219], + [5.7528788706390435, 50.859452301009604], + [5.762924779283905, 50.86413783328641], + [5.762660385665368, 50.86651034822879], + [5.764629979035528, 50.8668404032717], + [5.765065158622266, 50.868672199231085], + [5.764269292628106, 50.86977260688595], + [5.76700134443255, 50.87320323381852], + [5.770814678402863, 50.87238935979763], + [5.773012824797364, 50.87227985151434], + [5.773331834331867, 50.87259994519569], + [5.7742250108718824, 50.87346299549783], + [5.772594912538908, 50.87373585900384], + [5.773998123478599, 50.87445135218818], + [5.77281012024775, 50.87487411136475], + [5.772703564377042, 50.87682974224599], + [5.773847632940418, 50.878995441429595], + [5.777662881101626, 50.88372732023514], + [5.780403679526945, 50.882748602137816], + [5.781584041183872, 50.88362781095835], + [5.784186676036378, 50.882401902685466], + [5.7854451363382715, 50.882441749679], + [5.78675705113838, 50.88356120804627], + [5.789101070294637, 50.88388857726284], + [5.7895106089551716, 50.882570381409835], + [5.798371672545638, 50.88285024919815], + [5.79984206483523, 50.885672876832004], + [5.802367111443062, 50.88707880622122], + [5.809865888765983, 50.887847366945365], + [5.8140814586633045, 50.88607340641559], + [5.814989768980067, 50.88623892436289], + [5.81727449270824, 50.88477615498058], + [5.8191393378230645, 50.88386711805157], + [5.820231957118577, 50.88543783118554], + [5.824226725115268, 50.88699735245382], + [5.827765423293426, 50.88954445731848], + [5.833228625878354, 50.89218873976706], + [5.836647713257763, 50.89159989491042], + [5.832716795550792, 50.88577384967091] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.8becd47c-b974-4a87-b390-df7033935409", + "properties": { + "statcode": "GM0995", + "jrstatcode": "2024GM0995", + "statnaam": "Lelystad", + "rubriek": "gemeente", + "id": 253 + }, + "bbox": [ + 146242.42289999872, 488530.78929999843, 169853.62420000136, + 522755.2670000009 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.533444869709518, 52.57771608716233], + [5.529431671561263, 52.57510294064892], + [5.525598048153755, 52.57731888669863], + [5.529603678091611, 52.57984015445371], + [5.533444869709518, 52.57771608716233] + ] + ], + [ + [ + [5.302143733082876, 52.691594575454246], + [5.353661501742648, 52.67773804915791], + [5.361210244438812, 52.67441906832519], + [5.39954884005712, 52.6493832356393], + [5.413217409400554, 52.63600578906701], + [5.415819066404031, 52.637093131123564], + [5.416096476826657, 52.63630361287738], + [5.414237521018447, 52.635634788176155], + [5.415745851624131, 52.63423366248722], + [5.41706300272538, 52.634572085579364], + [5.415831401341507, 52.63366193751191], + [5.456439140142135, 52.5936403973133], + [5.467912697963697, 52.571370783121466], + [5.468555819484693, 52.56964004444012], + [5.466997814961844, 52.56721440874456], + [5.464381483023678, 52.565719000353305], + [5.453240878114803, 52.56330883806537], + [5.448430967732709, 52.56159725537973], + [5.443568566266165, 52.55885039609367], + [5.439835338943776, 52.55551234743833], + [5.4280456868694635, 52.53809410017062], + [5.426890667499848, 52.53503446021833], + [5.426257999548673, 52.528031065381086], + [5.427163701502707, 52.527983208279366], + [5.427076339482018, 52.52749357746606], + [5.429066657897742, 52.52741583332736], + [5.429112330629039, 52.527868350190275], + [5.429744000529271, 52.527925193675024], + [5.430317170269232, 52.52941079714721], + [5.432398533300855, 52.5293542107245], + [5.4326756136225995, 52.5322882925074], + [5.433093236039965, 52.53242557237108], + [5.432789764399817, 52.53059673799546], + [5.433592883026682, 52.53052969974701], + [5.434607192985482, 52.52978406941073], + [5.434894698086425, 52.52762031519798], + [5.43519814626499, 52.52968388642397], + [5.436272023741338, 52.53104841906373], + [5.439421247456735, 52.53287564494295], + [5.439768332663081, 52.53267205573075], + [5.436799520230644, 52.53100062949032], + [5.438568930389745, 52.52987779701778], + [5.441568363453658, 52.531619336058334], + [5.440428767154818, 52.53231964247147], + [5.441813233928534, 52.53313887119599], + [5.442980658702909, 52.532405462705334], + [5.445558548786392, 52.533882234638334], + [5.445192817995396, 52.53419305161846], + [5.446321931079168, 52.53480078252135], + [5.445519324835732, 52.535323058694004], + [5.4444390741857855, 52.534725982445195], + [5.443900605883996, 52.535175373227275], + [5.4449013008329, 52.53572538376877], + [5.444120425593231, 52.53624091909842], + [5.442916789045736, 52.53554387828641], + [5.44319552418562, 52.53527414360821], + [5.442435538961764, 52.534826837750636], + [5.4420423596087515, 52.53532942410145], + [5.442154448686428, 52.53597956363116], + [5.443714313260469, 52.536916473919135], + [5.444431538049225, 52.53684925873991], + [5.447578482188561, 52.535217277058344], + [5.45451102801385, 52.54601282862991], + [5.454621304097002, 52.54663417880487], + [5.453813077546332, 52.546790250959134], + [5.455940827933123, 52.55032780731986], + [5.454301146314716, 52.55119219299676], + [5.454478251071541, 52.55140545356331], + [5.4577929615503376, 52.55010130755607], + [5.45897091950372, 52.55138332836835], + [5.460159539740462, 52.551856987073755], + [5.462095400174439, 52.552151319924576], + [5.493321682598803, 52.55326895535011], + [5.497449443437366, 52.554366706337035], + [5.500714442964688, 52.55610437197205], + [5.518991951372554, 52.567400430205566], + [5.51770227593564, 52.56826104534773], + [5.521901373562628, 52.57083871112164], + [5.5233175758273765, 52.570072535433376], + [5.541182545728811, 52.58110329669923], + [5.5587088832554725, 52.59226032136803], + [5.565123405384074, 52.594638281919295], + [5.572888477320754, 52.59615741822424], + [5.587410493548349, 52.56345976924965], + [5.588312998489489, 52.54918511709776], + [5.591280792327507, 52.51412248517587], + [5.58805660514203, 52.513772700038146], + [5.588055891861756, 52.51377263563934], + [5.588146838325001, 52.51339275749637], + [5.591360840716771, 52.4999637429024], + [5.605870332143016, 52.4845198345348], + [5.565419837720177, 52.47028069722675], + [5.572779826323266, 52.462448371017864], + [5.586388618433462, 52.447710592353474], + [5.581972236270665, 52.44559245900271], + [5.573803176918143, 52.438794098392705], + [5.5666368491056355, 52.43586299753251], + [5.587998199104293, 52.41476624268314], + [5.589069976966171, 52.41118658957995], + [5.5832169177819555, 52.411357844540234], + [5.578014190792063, 52.409967890446765], + [5.554641668370047, 52.396389231397954], + [5.54522462189671, 52.39016056235244], + [5.53729791938523, 52.38500009145712], + [5.532702516696497, 52.38454678902171], + [5.5089916047396095, 52.39766241461214], + [5.474978808748484, 52.42003314757299], + [5.448893995628983, 52.43530139012858], + [5.438608263406936, 52.442631108544774], + [5.42688947527696, 52.43550538620348], + [5.427176845789918, 52.434553689304536], + [5.423775167243446, 52.432563901897694], + [5.42100808109608, 52.43208300010111], + [5.397532878344171, 52.419840538794375], + [5.378988063626148, 52.41149396466797], + [5.350772403621867, 52.400208678682574], + [5.34951417600784, 52.40146794932239], + [5.343710279279663, 52.401242187980436], + [5.334836650608485, 52.40573433978459], + [5.318862570269009, 52.410709703722645], + [5.275812367200888, 52.42331691905683], + [5.267984044295544, 52.427365348037945], + [5.258424194477879, 52.43542548169388], + [5.377911013123047, 52.486898792410734], + [5.386467609862067, 52.49026720184108], + [5.394798307116492, 52.49077103122465], + [5.400235984115223, 52.493632392389195], + [5.416746301470264, 52.50304828347864], + [5.417160599214511, 52.503455394169116], + [5.418587482062796, 52.50305672528562], + [5.419099151862864, 52.50337760415161], + [5.4185161024704565, 52.50402025160131], + [5.4197031195555585, 52.50335068863523], + [5.420175731669492, 52.503534844204076], + [5.419640537164409, 52.50462736431869], + [5.424255394270543, 52.50701787324127], + [5.424346979880819, 52.506930885094306], + [5.434573998585565, 52.51119389490598], + [5.440582488710167, 52.51781114086193], + [5.439416454656979, 52.5188216370809], + [5.436596226874615, 52.5182836627756], + [5.43694867087471, 52.51720476489626], + [5.43671625268854, 52.51711370978498], + [5.436039283813029, 52.51825537924197], + [5.436108303133148, 52.51869950947029], + [5.436694509940678, 52.51857612182454], + [5.437279710489408, 52.519011028933285], + [5.43604204701389, 52.520745028581366], + [5.435735162720981, 52.522048497148305], + [5.435482706156791, 52.52447280711674], + [5.434060520365481, 52.526351601728024], + [5.432976283497028, 52.524717296061546], + [5.431939711079002, 52.52473446577387], + [5.429782580911426, 52.524895974598145], + [5.429519156285815, 52.52664143810394], + [5.429013814510256, 52.52676980152328], + [5.429057987326731, 52.52734760507967], + [5.427066668442429, 52.52742531436204], + [5.427004665664877, 52.52673249435549], + [5.426272185299232, 52.52682527348691], + [5.4255198952834025, 52.520828804586834], + [5.424993634106983, 52.52082897409615], + [5.425194048113603, 52.52696182706862], + [5.422709127638136, 52.52727651804914], + [5.423101985884622, 52.52901110203118], + [5.424758216602697, 52.52960928792775], + [5.425537906331366, 52.529667678515025], + [5.426281424844971, 52.53551735220643], + [5.427184151181253, 52.5379528078812], + [5.4310697341635, 52.543544731981726], + [5.438492689416037, 52.55492212683659], + [5.4405670369320625, 52.55720621066006], + [5.443526362740119, 52.55949505911125], + [5.4461450039839745, 52.56108111145689], + [5.448888386014269, 52.562236035441934], + [5.45164303203223, 52.563300677111314], + [5.4641898617585465, 52.5661823040368], + [5.46624073551283, 52.56747019086331], + [5.4673522531060375, 52.569253907998785], + [5.466799291995581, 52.571771355920674], + [5.457384240763655, 52.5899771522474], + [5.455458734538162, 52.59355838420749], + [5.407211506692009, 52.64084410594941], + [5.40628382297968, 52.64061760246925], + [5.398974567797282, 52.64883383446722], + [5.360342334954662, 52.674179484976044], + [5.352631700151178, 52.67743040493784], + [5.30549431447697, 52.68988627355989], + [5.299204683275065, 52.683218684791186], + [5.293237713556021, 52.68130697893666], + [5.287130054313885, 52.681579335032644], + [5.281432067750455, 52.684389660431265], + [5.288298973908576, 52.68419825537328], + [5.292413227366021, 52.68507299097367], + [5.295124304010651, 52.68677813792297], + [5.296550884996299, 52.6898284959199], + [5.286883434490551, 52.68989547488343], + [5.287424934642896, 52.69116497883662], + [5.297173443873865, 52.69218593091433], + [5.302143733082876, 52.691594575454246] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.801fe1f9-adcc-4558-84d6-597d77264766", + "properties": { + "statcode": "GM1507", + "jrstatcode": "2024GM1507", + "statnaam": "Horst aan de Maas", + "rubriek": "gemeente", + "id": 254 + }, + "bbox": [ + 188908.3440000005, 376701.8687000014, 209995.40700000152, + 393091.6400000006 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.076764458748736, 51.52477734573039], + [6.079928583231371, 51.522952478577864], + [6.0871692261619685, 51.523566122573776], + [6.093771939799824, 51.52272053772452], + [6.095628655108424, 51.521595957115075], + [6.10100066921732, 51.52271419418497], + [6.107124114779635, 51.5217951495499], + [6.106612147807495, 51.51830162019399], + [6.1146489131029975, 51.51454322680841], + [6.121991125327338, 51.51017649039643], + [6.126870850912733, 51.51437995075628], + [6.131998435053445, 51.511473449023896], + [6.1410940432727426, 51.51951956940745], + [6.1463001026483015, 51.51688098412988], + [6.15778529150553, 51.51362013281419], + [6.161669559080846, 51.51188332669488], + [6.166640909702583, 51.50786362899122], + [6.1691934379285795, 51.50308165641622], + [6.169226237034169, 51.49923273489879], + [6.166601770395255, 51.48979550924284], + [6.166557619043973, 51.48819618961886], + [6.167107727772032, 51.48578841504789], + [6.170536043862405, 51.48120657462102], + [6.174637959755337, 51.477276021258696], + [6.177609229238019, 51.47382982849995], + [6.178688717814062, 51.470385234961256], + [6.178640381588216, 51.46580766787534], + [6.176042698317266, 51.46146664005653], + [6.164845197283436, 51.452570154347754], + [6.156876885867121, 51.444932367161115], + [6.154263826639819, 51.4400836366687], + [6.154355032871028, 51.43536780371898], + [6.154611587674637, 51.43470166343427], + [6.157827506304657, 51.426667322365816], + [6.15837952021404, 51.42272657607331], + [6.156824594745704, 51.419119897051544], + [6.151375490712412, 51.41461237778016], + [6.149648195531361, 51.4112172939459], + [6.148995190004785, 51.40777515943052], + [6.153041389829923, 51.39592525406947], + [6.140780107567881, 51.39486198457084], + [6.1352707787693825, 51.4161092784168], + [6.134091054915163, 51.416136429050056], + [6.132606924499421, 51.41377929978032], + [6.131170588484562, 51.41470448187484], + [6.12819785921437, 51.41389109454427], + [6.127733036121778, 51.414786063395844], + [6.124555874090468, 51.41480061878718], + [6.124505219822669, 51.41544080360227], + [6.121946323737712, 51.415859135280954], + [6.120803982637575, 51.41715039261128], + [6.116192279108393, 51.42125606947644], + [6.109479529589039, 51.420464819248714], + [6.108959471201028, 51.41942618782319], + [6.107642149716805, 51.42024816951213], + [6.101757666757823, 51.41955410912856], + [6.0818174855500935, 51.420581965738386], + [6.0776961615147425, 51.42017080469217], + [6.077611537907358, 51.419609775061566], + [6.0768637942248755, 51.409655319180715], + [6.073365966563468, 51.40610569837896], + [6.074011757602539, 51.40546513460617], + [6.071904940507561, 51.40162637589608], + [6.072077362484686, 51.39830289545389], + [6.073126188369232, 51.39572924336425], + [6.018765891647014, 51.38225664175083], + [6.0068568448832504, 51.379974901074505], + [5.9898331774190705, 51.37822111978116], + [5.982109243065846, 51.37814906426264], + [5.957804793985122, 51.378093870634764], + [5.947327359686458, 51.38313401448174], + [5.9312875158085685, 51.384752676548686], + [5.920002128435333, 51.3978901434998], + [5.902907706993534, 51.41661497189932], + [5.879916698507603, 51.44124748034632], + [5.876660657553467, 51.44474153348288], + [5.876591361997421, 51.444815805807664], + [5.875364226539054, 51.44613091517297], + [5.874965893378916, 51.44655772195858], + [5.916382368932782, 51.45562563074049], + [5.941444525569835, 51.46104640713266], + [5.9529435624321705, 51.463527925234466], + [5.982029434634649, 51.47140297648348], + [5.991867729523224, 51.474507196780706], + [5.991879957655579, 51.47451102649377], + [5.994352998351315, 51.47524638160484], + [6.013269618052528, 51.47699228902214], + [6.0247416987203195, 51.479701672218866], + [6.030210967028708, 51.47984922562425], + [6.0352094286916635, 51.48234835585552], + [6.036194535730765, 51.484720211122095], + [6.039794120246762, 51.486390231301826], + [6.0399426680678925, 51.48791588608774], + [6.049473536450912, 51.49040429118482], + [6.059189719885178, 51.48843291320908], + [6.061657482083267, 51.48727097436809], + [6.063889610049273, 51.48805413031117], + [6.068394103891104, 51.48789974500921], + [6.0680815687201966, 51.48836966660979], + [6.073755975029908, 51.49517267057576], + [6.072704505136009, 51.497263128459124], + [6.066259310617135, 51.50794750524484], + [6.064602182499014, 51.51606637855041], + [6.0667738280957355, 51.523693696332415], + [6.076764458748736, 51.52477734573039] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.6db26371-c2bc-41c1-acb0-b02b7be0cfdb", + "properties": { + "statcode": "GM1509", + "jrstatcode": "2024GM1509", + "statnaam": "Oude IJsselstreek", + "rubriek": "gemeente", + "id": 255 + }, + "bbox": [ + 217074.94700000063, 427005.69900000095, 233736.23299999908, + 443864.80799999833 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.481469858017477, 51.97388588678741], + [6.482963375696094, 51.9736865838027], + [6.483566048501052, 51.97428487648126], + [6.494797971198431, 51.97059108929648], + [6.505966733610529, 51.9691396177546], + [6.5246407564813556, 51.96780087154826], + [6.527269414311489, 51.966023555636454], + [6.532828982006827, 51.96235348008142], + [6.5198322401889195, 51.95556266249584], + [6.51861382011923, 51.95346769852886], + [6.518641761752138, 51.95117125789601], + [6.517186023291516, 51.94800762330214], + [6.504780558880395, 51.94598432311395], + [6.503453559384543, 51.94402280985546], + [6.502966024105521, 51.941284578319475], + [6.500979114335893, 51.93950428280805], + [6.503127506320403, 51.939313132155746], + [6.495579932889181, 51.93028759819829], + [6.49708941155619, 51.929599583592264], + [6.494518949447916, 51.927120834376986], + [6.492359022286169, 51.92593000629384], + [6.493233612612748, 51.92021742211264], + [6.492576569086823, 51.917409714590775], + [6.490659276237444, 51.917171047693124], + [6.491174765681643, 51.91564133342972], + [6.487112555598273, 51.91408589505701], + [6.488668619028142, 51.91273170786119], + [6.482710100967107, 51.910259874729], + [6.47235182293651, 51.90735331308674], + [6.476064399466023, 51.90197250804913], + [6.479994004599408, 51.89433633406081], + [6.479170182671139, 51.88924249350133], + [6.480608924824375, 51.88426264193764], + [6.481900968404168, 51.88341539163504], + [6.484207484987974, 51.87896844436585], + [6.483499591105689, 51.877416316394026], + [6.48097482048067, 51.87407435886255], + [6.478467876503226, 51.87230910566429], + [6.477979079904538, 51.871851957824866], + [6.477872648946406, 51.87175825363167], + [6.475314218470408, 51.870660622516375], + [6.4743250902580405, 51.86945631439381], + [6.4718347990766585, 51.86896255112124], + [6.471867093914537, 51.866075648967126], + [6.471285485357654, 51.864525985520515], + [6.468402112935504, 51.86417626951205], + [6.468127068120608, 51.86034683320025], + [6.464383725104011, 51.85528728849419], + [6.458314868504619, 51.85868462995662], + [6.451089076579733, 51.8652459974234], + [6.448470202556001, 51.865505554820416], + [6.446672616896233, 51.86500555407241], + [6.4436739747619045, 51.86266711965629], + [6.441377297324322, 51.861858461220116], + [6.4387330212811, 51.86209969212647], + [6.432362758515146, 51.85938292753169], + [6.429436134341519, 51.860714532142154], + [6.428605625256421, 51.865083632705435], + [6.427360648156642, 51.86586176028176], + [6.426125448796724, 51.86625022464822], + [6.4243250832062175, 51.865973292144], + [6.421794062527992, 51.86698848027831], + [6.420218072268391, 51.866781203096174], + [6.418574396792075, 51.86724752845431], + [6.415182571583481, 51.86873049089106], + [6.412253357063815, 51.87109641510755], + [6.410170207747178, 51.869554564595354], + [6.40875176284658, 51.86946372221866], + [6.406754017988829, 51.870767691989904], + [6.404314393804992, 51.870242180034204], + [6.402474967130028, 51.86913735351403], + [6.401312417420763, 51.86945035452697], + [6.400604471049083, 51.870437131145], + [6.399127488538432, 51.87030059156304], + [6.398371939562928, 51.87097664929347], + [6.396745912246703, 51.870333885319006], + [6.392284246478646, 51.87403112494295], + [6.390566089223392, 51.873968066111054], + [6.3911543963024595, 51.87294974544352], + [6.388392203384865, 51.86720088677412], + [6.386967234120438, 51.86495537616752], + [6.3880344770257595, 51.86189912183293], + [6.391387969508293, 51.86139806207461], + [6.392000576991797, 51.86033637081768], + [6.395502747853754, 51.8590622801732], + [6.400432656700701, 51.85583293525869], + [6.407710369116423, 51.85436449437958], + [6.408953208407315, 51.85334615653383], + [6.409055460054033, 51.852485707528565], + [6.405033407502188, 51.84890889720366], + [6.405185453351889, 51.84738689166835], + [6.40237740102866, 51.84454099019673], + [6.402437165319586, 51.84322291832983], + [6.40666533797639, 51.83855041824427], + [6.4080892057813985, 51.83588069624943], + [6.402953573526987, 51.8365443329076], + [6.407491142212202, 51.828089471159416], + [6.401818359678159, 51.827262653444556], + [6.4002143288045685, 51.8285330265702], + [6.392682882380466, 51.83113283774496], + [6.392278205551949, 51.83195151433642], + [6.389543741728753, 51.83329514543847], + [6.382224233109602, 51.834781774572654], + [6.373704739940138, 51.834759431881956], + [6.368722918174809, 51.83325738894787], + [6.3633305614994, 51.83515587558062], + [6.362849118074661, 51.8358235576824], + [6.3640612109864785, 51.83844058113069], + [6.362516307470399, 51.842772554558174], + [6.360257498577569, 51.84579907086527], + [6.357747034331483, 51.84748440782213], + [6.348714597137384, 51.85009284508604], + [6.345179578374518, 51.850957468336546], + [6.339422138234126, 51.85073998332155], + [6.333140791656667, 51.8515913229135], + [6.320503661247896, 51.85168376954377], + [6.3177633188768105, 51.851223384206186], + [6.312508715791866, 51.85027708059282], + [6.308281495588405, 51.84980998057968], + [6.306203000939828, 51.84907820061848], + [6.303758739330007, 51.85357363250678], + [6.300683461716931, 51.86203744786818], + [6.300504100827485, 51.86450946261253], + [6.298222402934917, 51.86594334151212], + [6.299006316786269, 51.86782621680684], + [6.299160345051101, 51.868388582401074], + [6.30175200019203, 51.86874047806846], + [6.309582511984276, 51.86916952268921], + [6.311944768849262, 51.869202014471185], + [6.312210032376573, 51.86848747127445], + [6.322492646025441, 51.86867042970978], + [6.324576550607304, 51.86902982162189], + [6.329250944808087, 51.871233494380526], + [6.327226491104168, 51.87245850226692], + [6.327203153211252, 51.873621115303074], + [6.331632919336013, 51.874820749503186], + [6.326539842116346, 51.87902923686794], + [6.3294427598910135, 51.88033627051649], + [6.326900266922512, 51.88478183421175], + [6.325160331148356, 51.88777842741136], + [6.324324372037372, 51.88896143655049], + [6.33107026114311, 51.89207612277869], + [6.332279171018891, 51.89326778257612], + [6.329586578736509, 51.89477746115719], + [6.322612539712973, 51.89599032085287], + [6.318553983807419, 51.89774392677994], + [6.315792218109867, 51.89784267429538], + [6.310866135258452, 51.900035209185106], + [6.306824722118259, 51.90453521990616], + [6.305951808039105, 51.90688469369599], + [6.306283432729284, 51.9082107558856], + [6.307288422782832, 51.910261765305634], + [6.308740598058196, 51.91071801452458], + [6.307963048342748, 51.911391706565524], + [6.30902215631842, 51.911784713360326], + [6.310996828448003, 51.91058979568149], + [6.316142720730233, 51.912737166420904], + [6.3168757043347, 51.916202956523634], + [6.31576490667896, 51.91828275183197], + [6.311294878377751, 51.92063836001965], + [6.301771438689362, 51.91988882992006], + [6.294979031731045, 51.92089386963854], + [6.291147915858551, 51.92241514860014], + [6.289653096285729, 51.9254889093592], + [6.291026382723794, 51.928991660518896], + [6.292887096792876, 51.93131436669885], + [6.2960118241258485, 51.93285729284008], + [6.295669056457942, 51.93534180087999], + [6.29648794784204, 51.93641537286122], + [6.299830319687663, 51.9384683507083], + [6.303980236353881, 51.9380612505638], + [6.3059496592298405, 51.93704533926899], + [6.306804884726716, 51.93794090875572], + [6.305762803885496, 51.93882101911977], + [6.308604155100732, 51.93976399716945], + [6.314607637816945, 51.93650246133631], + [6.319982365958167, 51.93596829633524], + [6.321735252877741, 51.93518796344439], + [6.326753853271144, 51.92944255155225], + [6.331155214536872, 51.926164221957784], + [6.3334208957029166, 51.92546839647886], + [6.333794350918584, 51.925717328715436], + [6.335449460930467, 51.925845820828755], + [6.335755007596257, 51.92605508269277], + [6.33684319421765, 51.92610510717431], + [6.338039118507106, 51.92489148831803], + [6.338939008266754, 51.924833200834414], + [6.340051498989771, 51.925689600578025], + [6.342360571550166, 51.92512130415678], + [6.3446014562592365, 51.925251400674746], + [6.348588919355133, 51.92455915752127], + [6.349171806510799, 51.92371391704974], + [6.352325879231016, 51.92381251228579], + [6.35558339329662, 51.92364074920403], + [6.3583962669896295, 51.9228719126921], + [6.359327987678333, 51.92278202342853], + [6.360845299334819, 51.922966579754764], + [6.362547194117361, 51.9237681017925], + [6.362553958710896, 51.923771180939355], + [6.37160593625691, 51.92760671754062], + [6.376847096097594, 51.93005098986328], + [6.381311824316856, 51.93331587966464], + [6.38176700586236, 51.93457104730605], + [6.379963244004573, 51.93628148953729], + [6.384397256073439, 51.941134607197725], + [6.388230648755212, 51.94497718615871], + [6.3962913113413515, 51.952525670543494], + [6.401551866610166, 51.956782782959316], + [6.403585752342948, 51.957321831538906], + [6.4072895731285024, 51.963148420902925], + [6.409973757166044, 51.96588678005611], + [6.416081865598383, 51.9726219174811], + [6.425587820735429, 51.97259401179969], + [6.426922667719169, 51.97199695481074], + [6.430123421667042, 51.97182841250479], + [6.434801785343015, 51.97207539609076], + [6.434887488639555, 51.97097286192171], + [6.437040831628489, 51.97072436061814], + [6.437505354153629, 51.97157480847602], + [6.439061393597045, 51.97155513824261], + [6.439350815129619, 51.972100742504914], + [6.44129250597569, 51.97172976837331], + [6.441336340272825, 51.97085706201496], + [6.447501826891726, 51.969708316295424], + [6.451790533970054, 51.97179712178152], + [6.453097714291101, 51.971671832020014], + [6.460194267367144, 51.9735571665636], + [6.461518545728873, 51.97514779970881], + [6.46312910478989, 51.97530506854962], + [6.46259472235776, 51.97621534195775], + [6.466710031271851, 51.97705641677282], + [6.46785048554855, 51.97821890933035], + [6.473198146143117, 51.97604014805396], + [6.481469858017477, 51.97388588678741] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.5544c3d1-15ab-4919-b4f4-fbcd9f191454", + "properties": { + "statcode": "GM1525", + "jrstatcode": "2024GM1525", + "statnaam": "Teylingen", + "rubriek": "gemeente", + "id": 256 + }, + "bbox": [ + 91325.09899999946, 466093.48099999875, 98566.94099999964, + 474465.319600001 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.530477019781743, 52.232695758992676], + [4.53142321403671, 52.232373557438144], + [4.531435253384309, 52.23238312725725], + [4.533568178173837, 52.231719575524664], + [4.534674141068687, 52.23137603919623], + [4.535072941549743, 52.23125412684647], + [4.539358548594331, 52.229799026300945], + [4.543569541312049, 52.22680295553615], + [4.553225776481837, 52.22233252879956], + [4.553933983188353, 52.22220541854054], + [4.556615361820582, 52.21927304626106], + [4.558433146166438, 52.218798537598616], + [4.556908504479673, 52.21641473687611], + [4.557826137714725, 52.21506695179501], + [4.555374071684326, 52.21401535084279], + [4.554284867931925, 52.21231199948595], + [4.5589546394315565, 52.210241559673996], + [4.5580907042673475, 52.20852097855432], + [4.5582695441911, 52.20576054052912], + [4.560686481428783, 52.20477902179245], + [4.56052127021799, 52.203658251796924], + [4.561661946023493, 52.20363940301969], + [4.559554545802889, 52.201961389393745], + [4.559650191465477, 52.20049723353364], + [4.558142548747485, 52.20036691897671], + [4.555578208878883, 52.20014522303052], + [4.555571938598795, 52.19970987606293], + [4.555269245356754, 52.19969721012378], + [4.5552006015784725, 52.199612317546986], + [4.555359164820057, 52.199441561165024], + [4.555567552707783, 52.199405374703424], + [4.555564634743891, 52.1992027612242], + [4.556664205955005, 52.19881762442139], + [4.5568081650033205, 52.198502249955204], + [4.55686699379728, 52.1980066495852], + [4.557155228856088, 52.19774191896489], + [4.554046189838488, 52.19758212058965], + [4.554129581460316, 52.19834201151661], + [4.549297542559664, 52.198361799109996], + [4.549375258117041, 52.198937708305436], + [4.54676765530397, 52.19897558463327], + [4.5452555344679, 52.194088964130884], + [4.544480834315005, 52.19221740231269], + [4.544519538297519, 52.19152147236917], + [4.543001190806823, 52.18811916797852], + [4.543662876124053, 52.18739387404571], + [4.538153674429999, 52.180084693911304], + [4.528177797719833, 52.17985077968809], + [4.518368683161523, 52.18211625872343], + [4.51720799857858, 52.1827185830898], + [4.508525373706107, 52.1839732412669], + [4.503546433446878, 52.18462130406671], + [4.5016336158137165, 52.18426434193344], + [4.498342285489465, 52.183993566813065], + [4.497562226743066, 52.183982651752665], + [4.495256035913714, 52.18393885656035], + [4.494899157202816, 52.18255006437089], + [4.494129028141737, 52.182045529330324], + [4.494329313576703, 52.181669839125135], + [4.492894948881414, 52.181540845178894], + [4.492769269389456, 52.181283139303304], + [4.491430757380932, 52.18095133117902], + [4.489525184428775, 52.181698158566526], + [4.4912088115109245, 52.18475420465432], + [4.490968281732475, 52.186564813590756], + [4.490903141147347, 52.18666570133462], + [4.488091932963231, 52.18949275289949], + [4.488012286887056, 52.19097033594814], + [4.489957751234638, 52.19266450045267], + [4.493340652287114, 52.1948591259133], + [4.493109013916001, 52.19575443784815], + [4.492240763743873, 52.201297606761244], + [4.491447184116945, 52.20368720256991], + [4.490612351548735, 52.20343044191821], + [4.489852131106171, 52.20397759253107], + [4.4880324781248895, 52.2029229622672], + [4.486716533531793, 52.20417878695584], + [4.484353774838938, 52.203010424221056], + [4.480131067020747, 52.20197968587728], + [4.478665300917615, 52.20466860373372], + [4.476248208622202, 52.20322578482114], + [4.472825743855414, 52.202656342010464], + [4.471378976610141, 52.2015702468947], + [4.47024026932022, 52.20226719185671], + [4.467659981588755, 52.201932971033735], + [4.466307435396473, 52.20054890832363], + [4.463471481147098, 52.20020156285939], + [4.46041736360486, 52.20219908363229], + [4.4626747063917005, 52.20341151533185], + [4.460643280295172, 52.2048029961955], + [4.455648581070383, 52.20702998460995], + [4.458624657278689, 52.2082426056617], + [4.4595954997935126, 52.20924047324325], + [4.462332095521518, 52.21055039549945], + [4.462511147268665, 52.21176005668979], + [4.465748448223299, 52.21314290936688], + [4.466175801511171, 52.21418784658437], + [4.4640820667038765, 52.21596433177357], + [4.470358145119443, 52.219812674582236], + [4.470704324909367, 52.221762520490465], + [4.466985335015475, 52.2237858334272], + [4.466066003701964, 52.22500271466934], + [4.468491707768018, 52.22661927427965], + [4.477492152562883, 52.232449707381356], + [4.479974498703099, 52.234119237299815], + [4.494919563284067, 52.244179873665544], + [4.495928102861513, 52.24486401480911], + [4.497662772268455, 52.24603322985391], + [4.501416278779733, 52.248561375037724], + [4.513495040784694, 52.254991464343654], + [4.517877895114816, 52.25273079093801], + [4.521475856540128, 52.24953937005487], + [4.526594222599244, 52.24725279494159], + [4.525178422476563, 52.246235298050905], + [4.525890188428246, 52.24577569897806], + [4.524088213693659, 52.24437716570991], + [4.527738399757875, 52.242409226555274], + [4.527827914211528, 52.242061546087285], + [4.5300508069814445, 52.241162379744495], + [4.528625989109173, 52.24027526729601], + [4.528915765834483, 52.24006577199963], + [4.527416558657128, 52.239159597224955], + [4.529092565887826, 52.238325984339205], + [4.529471932476026, 52.2381372873535], + [4.5250649021386415, 52.235922574001016], + [4.52491510396501, 52.23557199076055], + [4.527776883942252, 52.233891866322864], + [4.529926687188698, 52.232949503159325], + [4.530468704901273, 52.23269949172357], + [4.530477019781743, 52.232695758992676] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.b3a22887-5c21-463d-8412-fc5a25b4b789", + "properties": { + "statcode": "GM1581", + "jrstatcode": "2024GM1581", + "statnaam": "Utrechtse Heuvelrug", + "rubriek": "gemeente", + "id": 257 + }, + "bbox": [ + 145413.58700000122, 442479.2179999985, 164752.6090000011, + 455347.53510000184 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.291152962082781, 52.08635309416002], + [5.3204227623303035, 52.070326903790786], + [5.3326085185938785, 52.07880983036647], + [5.332250884709801, 52.08416337884466], + [5.384527215540383, 52.07826840573308], + [5.3883412972653115, 52.07493217499023], + [5.389822677076463, 52.075668760958784], + [5.3910561396420675, 52.075074336929816], + [5.39450735292128, 52.074964766191655], + [5.403503687682078, 52.07567853680221], + [5.405893845317019, 52.07522048028003], + [5.407061226712815, 52.072576821968], + [5.405365282473154, 52.070999677157445], + [5.399536891238409, 52.06921058582242], + [5.4004806629603825, 52.067687132386894], + [5.398956348043343, 52.06693826776788], + [5.400529974046654, 52.06474539816899], + [5.401896329503161, 52.06429857206787], + [5.409354200791138, 52.06898446973861], + [5.42235569176337, 52.07301583719089], + [5.424071756966373, 52.07249862320753], + [5.4333811646507435, 52.072294679666804], + [5.4354690690812175, 52.072850937180206], + [5.437466220276991, 52.07201545083523], + [5.438313444518977, 52.07027324542754], + [5.436451192017912, 52.06160928171869], + [5.435267296949255, 52.05959755083364], + [5.4306229611816335, 52.0590476463512], + [5.428714925671417, 52.05734106194244], + [5.428335267528853, 52.0563055809794], + [5.429868576143703, 52.05286660997555], + [5.435150579009116, 52.04788530001974], + [5.441601915030243, 52.045693086611976], + [5.44570271417671, 52.04525887786716], + [5.448612721742665, 52.04323692502941], + [5.453891929969611, 52.049767791404754], + [5.4611380823332505, 52.04725905951209], + [5.4620997920255085, 52.0489881628163], + [5.465857670898718, 52.05079260926324], + [5.477194758055668, 52.05285491676497], + [5.485379639840824, 52.05623467171798], + [5.491428751080772, 52.05732201938984], + [5.497875962760791, 52.05701820975255], + [5.512995415830341, 52.055113671044914], + [5.515681242901561, 52.05419115214761], + [5.5164308776020645, 52.04776380198994], + [5.525998900426961, 52.04136897639525], + [5.529347880607721, 52.04020242794458], + [5.525265511596816, 52.034987576046724], + [5.5223198234800295, 52.031051356542704], + [5.51833903057346, 52.02587830777725], + [5.512592173395474, 52.01851609710709], + [5.511022638392806, 52.016420278958684], + [5.50788690004474, 52.012311109311106], + [5.494201674412025, 51.99490106016984], + [5.492874725989795, 51.99609462170215], + [5.490897718514199, 51.99656105323832], + [5.485293834515211, 51.990965027427634], + [5.486084186352486, 51.9908526328474], + [5.48459472380478, 51.98775957450443], + [5.480300683741016, 51.991094035784876], + [5.479259179502817, 51.990199541932604], + [5.48055513228411, 51.98874798512675], + [5.47784981738722, 51.98769171151577], + [5.477664499531541, 51.983472671457385], + [5.472686603522912, 51.98297761379602], + [5.457011991660738, 51.98368404978995], + [5.442408233860953, 51.98594752784307], + [5.436243938215127, 51.98534843772959], + [5.430399878984731, 51.98326509845802], + [5.423363655296438, 51.9787554234284], + [5.418155579527131, 51.97660570376293], + [5.399337609624783, 51.97310277910691], + [5.390976067921979, 51.97073019670432], + [5.390517006613791, 51.97124810148891], + [5.392009633350875, 51.973402578658664], + [5.394950930428558, 51.97444163125012], + [5.394164744967885, 51.97593426783754], + [5.38759070717839, 51.97630891200781], + [5.378429895083015, 51.98608204581023], + [5.3994222887710235, 51.987948124062456], + [5.4152766573603675, 51.99670192581627], + [5.398905597051636, 52.002922802617505], + [5.381647053577556, 52.00213780347216], + [5.363665277254372, 52.01002048204825], + [5.350259969909334, 52.0160374573441], + [5.344291571964541, 52.02019368951905], + [5.323985485866767, 52.022825444891794], + [5.314648163506303, 52.02700065731372], + [5.291219989398952, 52.0083538133853], + [5.287995862380536, 52.0099216063827], + [5.279909909943421, 52.01072158712196], + [5.271693121208748, 52.014609190892756], + [5.269884369056916, 52.01832579580498], + [5.26323940120852, 52.02438010343919], + [5.2708667928765545, 52.027403338757786], + [5.269298254294833, 52.02917030969348], + [5.264452930314805, 52.03112578928493], + [5.257498858487953, 52.03267743957084], + [5.257470026632358, 52.036105267175635], + [5.258581981528784, 52.03726072058627], + [5.257539970753763, 52.03831611322183], + [5.255887924567865, 52.03812811398319], + [5.251083397216322, 52.0392250017929], + [5.249494398122637, 52.04098601149071], + [5.2489533652892995, 52.04211461666707], + [5.249893834500142, 52.04637767509072], + [5.2480059497651945, 52.04741282245221], + [5.251506756059187, 52.053319509000076], + [5.2507385518436465, 52.05564544907876], + [5.247423095670817, 52.05864655111072], + [5.252121616848688, 52.06202598037544], + [5.256001029496365, 52.06289313066711], + [5.257523311509426, 52.065490096476374], + [5.259353291144167, 52.06676610354873], + [5.265362717526967, 52.07020685370183], + [5.266158638608081, 52.07071465636382], + [5.291152962082781, 52.08635309416002] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.6b622427-2685-42b8-9309-bb2b05bbd797", + "properties": { + "statcode": "GM1586", + "jrstatcode": "2024GM1586", + "statnaam": "Oost Gelre", + "rubriek": "gemeente", + "id": 258 + }, + "bbox": [ + 228583.54100000113, 442310.0870000012, 244235.48999999836, + 454015.6079999991 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.621374410896088, 52.06557454732198], + [6.623740147476578, 52.06362273852349], + [6.628900685226718, 52.06424093036259], + [6.636944779880076, 52.0643264310773], + [6.635354660085358, 52.06081380471113], + [6.632180917782459, 52.06105582948718], + [6.631754001591666, 52.06083037254537], + [6.631446610528466, 52.060524368346485], + [6.634143390475997, 52.057549286800125], + [6.636473330051769, 52.05664664389857], + [6.638588425285546, 52.06050302757243], + [6.643208529885822, 52.06020467301351], + [6.646838915744636, 52.06541072760179], + [6.651138244422523, 52.06359919404507], + [6.658970690591566, 52.063041280905836], + [6.6638081297842655, 52.057705409006644], + [6.663929259872745, 52.05444775275327], + [6.6618012436378375, 52.05159792831556], + [6.665622001258756, 52.050110031133954], + [6.666760069482923, 52.05031483463542], + [6.674703766649048, 52.04855924374988], + [6.684040656663125, 52.0448286202388], + [6.68798117701861, 52.0443654368866], + [6.687852920860575, 52.03985615236798], + [6.683569364246277, 52.028202066307934], + [6.680666794367781, 52.02799881916552], + [6.679606654096044, 52.02868633788731], + [6.677733490650777, 52.028375131178855], + [6.672060641577787, 52.022901326301735], + [6.662375543400693, 52.01741300966963], + [6.6617537833434834, 52.01555043726309], + [6.65852925187716, 52.01423386369259], + [6.656649159923878, 52.014814352317664], + [6.65581359321377, 52.013562644401325], + [6.658170116156098, 52.01117847997115], + [6.655244214505393, 52.00463877377275], + [6.654464777547185, 52.002910499151014], + [6.653361993195637, 51.99993118571986], + [6.652705119133545, 51.99753204409986], + [6.655162487222435, 51.9793326810045], + [6.657056086977597, 51.977552060994654], + [6.654618535581886, 51.976315023605935], + [6.655598209723333, 51.975544825533625], + [6.6455999609592675, 51.96886474128141], + [6.642525407642854, 51.965819953003624], + [6.637879289569108, 51.96498657084559], + [6.638915777610612, 51.962547012630054], + [6.633928395709412, 51.96566957027836], + [6.628720851311504, 51.96728146745501], + [6.604276018872948, 51.97027616351424], + [6.59843313684548, 51.97114320259144], + [6.59254114773827, 51.97084142299616], + [6.591743208814085, 51.97212538496613], + [6.589441580272451, 51.97170941322686], + [6.57510420080702, 51.973224562721086], + [6.569683620795245, 51.972157949900186], + [6.559352360678049, 51.97436406328068], + [6.554528264486108, 51.97375766433591], + [6.54738532968745, 51.97276676510939], + [6.527269414311489, 51.966023555636454], + [6.5246407564813556, 51.96780087154826], + [6.505966733610529, 51.9691396177546], + [6.494797971198431, 51.97059108929648], + [6.483566048501052, 51.97428487648126], + [6.482963375696094, 51.9736865838027], + [6.481469858017477, 51.97388588678741], + [6.473198146143117, 51.97604014805396], + [6.46785048554855, 51.97821890933035], + [6.46692680891913, 51.97862178875401], + [6.46873271200743, 51.98109809590268], + [6.47577276093889, 51.98813623172115], + [6.460057676607075, 51.99515095534963], + [6.459208230803992, 51.99775212200262], + [6.467488194686496, 52.000756747332396], + [6.460267572695974, 52.00617130688763], + [6.46563176230284, 52.00769514471763], + [6.461869064889235, 52.0120339769874], + [6.461833742200489, 52.01375890294421], + [6.460329125381576, 52.01458087244448], + [6.462058005017618, 52.01691492153493], + [6.459199474474786, 52.01872184109715], + [6.462185204243236, 52.02170080360348], + [6.464946971134, 52.02060098580762], + [6.480071332721833, 52.03294824520913], + [6.483385546320687, 52.03134708920756], + [6.485967389812757, 52.03338564300124], + [6.486670423422363, 52.03393336669308], + [6.487909218948618, 52.0323067670771], + [6.490168663190289, 52.03395901848744], + [6.490644080543781, 52.03561444175368], + [6.491619226507041, 52.03635930606717], + [6.492807662744571, 52.035888613981435], + [6.494297250554442, 52.03785131048712], + [6.49959578105881, 52.03582035494344], + [6.508706906382119, 52.04426627041159], + [6.514828320954718, 52.04049363203795], + [6.5172877276081165, 52.04241448918307], + [6.522627680683785, 52.038156014999394], + [6.539120488158703, 52.02522371880466], + [6.5715225120822724, 52.030993889532446], + [6.586887921448834, 52.03799018949863], + [6.5898985948663364, 52.03924032199957], + [6.590430315926702, 52.04069208767797], + [6.590801787412824, 52.04147393374656], + [6.594225731935241, 52.042271150995234], + [6.596237945612816, 52.04281924812597], + [6.595962737435668, 52.046314109295906], + [6.596588121558568, 52.047248958692016], + [6.598780335391888, 52.049173498587905], + [6.60144845200781, 52.05027840437237], + [6.6026232341339535, 52.05011535814274], + [6.605480576692242, 52.051855429375], + [6.604391923839717, 52.05555522595611], + [6.606440701279959, 52.06021552091302], + [6.606289462887566, 52.06517735804558], + [6.607450823345701, 52.06566666142894], + [6.613085697896117, 52.06804031608872], + [6.621374410896088, 52.06557454732198] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.13d968a1-f0c8-4a8a-8725-d7508464151e", + "properties": { + "statcode": "GM1598", + "jrstatcode": "2024GM1598", + "statnaam": "Koggenland", + "rubriek": "gemeente", + "id": 259 + }, + "bbox": [ + 119507.24500000104, 512058.72100000083, 131434.10689999908, 523716.932 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.950784438178336, 52.672866054739934], + [4.952742724277662, 52.67176547510289], + [4.952889550166275, 52.672130266071626], + [4.960564627999692, 52.6737392177504], + [4.9607879069167975, 52.67352298056499], + [4.96176589621424, 52.673708900721294], + [4.96167064113362, 52.6746118935971], + [4.962130799283623, 52.676027338207454], + [4.963410855273674, 52.67559743375488], + [4.964742028248922, 52.676284608293926], + [4.964737922999257, 52.67705029066833], + [4.966320511965744, 52.6771953238665], + [4.966418780575065, 52.67854998386095], + [4.9695752992034565, 52.67891608022139], + [4.970622531953246, 52.679631356736834], + [4.9715789782847635, 52.67915865735804], + [4.976759445286271, 52.67742003942878], + [4.9792047098529935, 52.679679163222815], + [4.983009358209969, 52.67509999247183], + [5.002353033780351, 52.67492679563492], + [5.001492617131752, 52.6737206540539], + [5.0035391210829445, 52.67335640182204], + [5.003414421404511, 52.67048913229503], + [5.006103954749196, 52.670268921678016], + [5.012653923721126, 52.66827721453079], + [5.021314389092877, 52.66440920102669], + [5.034762670632922, 52.666556351921834], + [5.036583874907632, 52.662062933437596], + [5.03892951215275, 52.65614051253246], + [5.037678401364246, 52.650229659210204], + [5.038143443416942, 52.648961056098635], + [5.037139357853963, 52.647657786912795], + [5.034072024221638, 52.645746064901815], + [5.02992158847406, 52.64350911214656], + [5.027033011291915, 52.64198900280763], + [5.026387765705029, 52.64174099193682], + [5.018292064051316, 52.638263439427824], + [5.014874663305854, 52.634995690105065], + [5.013536646979903, 52.63043138033617], + [5.016493879578058, 52.63085434355113], + [5.016861543653074, 52.63027803641327], + [5.018903751364419, 52.62991887167766], + [5.016926235233951, 52.62452932017458], + [5.017194480805385, 52.61868735702601], + [5.019659333667352, 52.612453573800536], + [5.018853049782741, 52.61243750579924], + [5.018653721949044, 52.61206363381396], + [5.0066901447584335, 52.610519142473706], + [5.007949379928123, 52.60779907056515], + [5.004881212638093, 52.59757304746966], + [4.94984990577973, 52.595285342969014], + [4.949257774954328, 52.59953283881265], + [4.952523240287815, 52.60117101192435], + [4.9569411085454576, 52.60222257753364], + [4.958675776795309, 52.60326346221817], + [4.959316112956325, 52.60468048268776], + [4.956634644576948, 52.61066848433946], + [4.95385656595381, 52.6131426677365], + [4.95333533486536, 52.613391238745514], + [4.950933269976725, 52.614106339046195], + [4.948497817998455, 52.613550999027915], + [4.937695237575264, 52.60737918621737], + [4.928947566104004, 52.60516544445281], + [4.926925470262382, 52.6066969991112], + [4.925790690243942, 52.6094758256208], + [4.922044782086666, 52.611484410355246], + [4.896930985433974, 52.613352112158296], + [4.8839922558622435, 52.61313855230602], + [4.887251235104939, 52.622594338291435], + [4.8894013036578965, 52.62392095803968], + [4.888050124945942, 52.62737892671154], + [4.885350718271398, 52.63013684372549], + [4.88137657868372, 52.63343661354821], + [4.875536621405913, 52.63411258995947], + [4.87340182792605, 52.634440594819], + [4.873399398720588, 52.63444647812652], + [4.873282786536504, 52.63472893609223], + [4.875828168560562, 52.63521059665623], + [4.876529762735634, 52.63630538512952], + [4.87672021351867, 52.640532140150476], + [4.875236161621232, 52.642425102125216], + [4.86507478111389, 52.64943636877885], + [4.862700342697713, 52.65299845511438], + [4.863178670519804, 52.6564686546419], + [4.866201162097499, 52.65976439264441], + [4.868204914424808, 52.66416375232508], + [4.870780736070556, 52.66784023920462], + [4.874091169381519, 52.675463572142796], + [4.875709836751757, 52.677731458722896], + [4.879395507265164, 52.680080475148145], + [4.876293329323029, 52.68634274520216], + [4.879382853525452, 52.688016403521345], + [4.881985440599185, 52.68809567447946], + [4.8887038403044345, 52.69045552076218], + [4.891419417595246, 52.69517576796774], + [4.899860112550244, 52.69758659571289], + [4.9108468390768625, 52.69990944646801], + [4.91586194297553, 52.69934112859331], + [4.918112594208722, 52.696918641160686], + [4.917518122786067, 52.6939614221106], + [4.917324723699132, 52.692957030931574], + [4.91710490631245, 52.692868808866656], + [4.914128271865405, 52.69149858773737], + [4.904979375234919, 52.687268490818575], + [4.90561821221224, 52.68641909511615], + [4.918100923540137, 52.6828034453211], + [4.918767922242597, 52.682568842100295], + [4.922720515913554, 52.68183684535973], + [4.923954829522676, 52.68158099593691], + [4.925181940850325, 52.68119020094501], + [4.92814328535814, 52.680265275230916], + [4.933853713489834, 52.678650072228066], + [4.949412044816083, 52.67448290030817], + [4.950784438178336, 52.672866054739934] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.2c4b06d7-815f-4239-a86c-e9ebfa3ac97b", + "properties": { + "statcode": "GM1621", + "jrstatcode": "2024GM1621", + "statnaam": "Lansingerland", + "rubriek": "gemeente", + "id": 260 + }, + "bbox": [ + 88856.85500000045, 441674.0179999992, 98615.22599999979, + 452929.6550000012 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.565042961073281, 52.058569379497065], + [4.561059633638684, 52.04206086243793], + [4.563304771149052, 52.03827702083798], + [4.56345716946241, 52.035776979884325], + [4.560140282154391, 52.033189893375045], + [4.559347338119586, 52.031407363488555], + [4.558217972992305, 52.028908449351285], + [4.556776973415948, 52.018400721586964], + [4.557119438817576, 52.01393638301399], + [4.5548751467765225, 52.00594858541693], + [4.553444531017972, 52.00392394175711], + [4.54989360496533, 51.99574655901116], + [4.547005418755447, 51.993942883776334], + [4.548387895569834, 51.99255733297954], + [4.546339275275281, 51.99151415825852], + [4.546909605839141, 51.99022834606033], + [4.547393656305648, 51.988746239256415], + [4.548417968373853, 51.98495707372459], + [4.548162227697237, 51.98329424947764], + [4.550885758415477, 51.98187362431739], + [4.551991874240598, 51.97886930615097], + [4.553760535643221, 51.97704111155994], + [4.5519347253073015, 51.97473738404976], + [4.547686282475619, 51.97280661177203], + [4.545651914286335, 51.972319551643935], + [4.539951359985163, 51.969885139818054], + [4.535782340945393, 51.97044783808177], + [4.534985106983377, 51.968272302566234], + [4.528759909217327, 51.96702363980642], + [4.5278216858431515, 51.96565869696165], + [4.523653751039617, 51.96392492612069], + [4.52094659590086, 51.96340793725031], + [4.518586476868772, 51.960286285429085], + [4.513900700195697, 51.96265375828111], + [4.513103275781196, 51.96292169203074], + [4.512246845668069, 51.96242040924113], + [4.509273868426475, 51.96389492956429], + [4.505844165986531, 51.96565202695782], + [4.5065844790667375, 51.96637576503433], + [4.496857183189615, 51.971305838731766], + [4.495799687562483, 51.97184448688553], + [4.495275864818081, 51.96966380688067], + [4.495234073105287, 51.967414991874875], + [4.491006869623948, 51.96954967134535], + [4.483251765326537, 51.9733623289869], + [4.4705581218747925, 51.9797795658653], + [4.469515818573157, 51.98030065206524], + [4.469012149879079, 51.98054916021432], + [4.468971627665468, 51.980528674272975], + [4.468874874103436, 51.980479734416015], + [4.469451168156174, 51.98018749991689], + [4.466680222353719, 51.97849831752759], + [4.465802683599121, 51.97892971261739], + [4.4641246008846895, 51.978307015903], + [4.463240984034006, 51.9775265134966], + [4.464023131808533, 51.97714766845319], + [4.461676327156415, 51.975121949324254], + [4.461346480515528, 51.97483721506349], + [4.462220536279353, 51.972681412207415], + [4.460161339566186, 51.97160876137962], + [4.460374671390906, 51.96910142778071], + [4.456824517679169, 51.96731098688333], + [4.45088308090214, 51.96588489303666], + [4.446682075558126, 51.962785953933306], + [4.428968373161806, 51.975876112192545], + [4.42789835738201, 51.97646646310629], + [4.424446295897598, 51.97961102239278], + [4.447247919728504, 51.99240905578051], + [4.450569291924199, 51.995697189671944], + [4.450801255608233, 51.99588021770662], + [4.45281315262733, 51.99722664173753], + [4.451387234232727, 51.99813821761267], + [4.449775903662854, 52.00050276793405], + [4.4519303402461325, 52.00083781497612], + [4.458728118927033, 52.00220921284472], + [4.458868461098312, 52.00466553501339], + [4.4570425415589625, 52.004943762291006], + [4.455350988869723, 52.006424862435], + [4.456390711796714, 52.00851285611765], + [4.461561680671063, 52.01265141474696], + [4.458392916608214, 52.01602302734737], + [4.459438113538656, 52.01704546647269], + [4.458110902370876, 52.018527714796036], + [4.45719924366989, 52.02216887689946], + [4.457354350035966, 52.022260576255924], + [4.4579606460629995, 52.02235407311391], + [4.4605688309478335, 52.02320823183454], + [4.4613041538797935, 52.02388855959202], + [4.463040970440558, 52.02421464162345], + [4.463470407014545, 52.02422264095809], + [4.464489760641445, 52.02463129778723], + [4.467175364247513, 52.02535362069665], + [4.467992536004485, 52.0257868729926], + [4.468108099186116, 52.02649009159931], + [4.476706110941415, 52.03164214453769], + [4.477027885871207, 52.031280576125376], + [4.477680969523682, 52.03139482516338], + [4.47738443919783, 52.03179157401692], + [4.4953788940342285, 52.031906644887194], + [4.504709268250092, 52.031930763661094], + [4.507060333147083, 52.03282534468694], + [4.512072642323647, 52.03682517918405], + [4.51899580737053, 52.04138403698878], + [4.522594378751639, 52.043399330467615], + [4.534332818945437, 52.049407751777686], + [4.545079451212371, 52.048861025859395], + [4.5475466995369045, 52.050369671072175], + [4.5493428342867865, 52.05474446545488], + [4.557180247335913, 52.06123936641557], + [4.557808993890128, 52.06174116294993], + [4.565042961073281, 52.058569379497065] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7c8c570f-8401-4f92-9ef3-cf99df98d1c6", + "properties": { + "statcode": "GM1640", + "jrstatcode": "2024GM1640", + "statnaam": "Leudal", + "rubriek": "gemeente", + "id": 261 + }, + "bbox": [ + 180058.5799999982, 351389.0300000012, 198532.54399999976, + 369817.7470000014 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.890414416443031, 51.31366855146823], + [5.910653642408798, 51.30770938274393], + [5.907504187402076, 51.31325159426979], + [5.919327019843737, 51.30999048269969], + [5.923569407208856, 51.308813225494426], + [5.954705688420158, 51.30028024102243], + [5.966010438452735, 51.295363238587576], + [5.986620449797041, 51.286630166917305], + [6.008271406061382, 51.27752941989706], + [6.011014624159656, 51.27155264256623], + [6.009611847733264, 51.26575905685064], + [6.007356012258287, 51.26436117563078], + [6.0057637212520145, 51.262286036403495], + [6.005880084640543, 51.25868299489437], + [6.0090980760784385, 51.25079077469828], + [6.006338055809398, 51.24014051090009], + [6.005329625744285, 51.23779208749782], + [6.001988903126722, 51.233946335350055], + [5.994835992132085, 51.2295979740252], + [5.986026471100392, 51.227162823960604], + [5.980006687970626, 51.2233348417315], + [5.971198761744775, 51.2131609235085], + [5.965147206155062, 51.20876999567457], + [5.951325308658558, 51.201164991161846], + [5.949918794450596, 51.202036719013144], + [5.94701228018644, 51.202407178281845], + [5.946719365413744, 51.20339879407846], + [5.945658735264748, 51.20356004306598], + [5.925602953083745, 51.20372541941891], + [5.919571281982816, 51.205654431158074], + [5.914127528429835, 51.208906816761015], + [5.907013279541415, 51.20554955351296], + [5.905996012415763, 51.206408254161026], + [5.908177188231147, 51.2074956309405], + [5.90920866374681, 51.20944528515491], + [5.907883412695601, 51.211428254788984], + [5.894169398630495, 51.21602528001705], + [5.891655125186401, 51.21420671744895], + [5.8894836805306925, 51.215383688631114], + [5.883643784711986, 51.213361923799255], + [5.878265231231833, 51.2096077243042], + [5.8728318189934, 51.203399077146756], + [5.873255637983964, 51.20194478744779], + [5.872094753067969, 51.1995057331251], + [5.868553332800993, 51.19682250024564], + [5.8682420844967025, 51.195078269315], + [5.873733189736576, 51.19094155836928], + [5.848725185698151, 51.17943372935541], + [5.848041517416353, 51.17912736935916], + [5.848559770797481, 51.17827786557396], + [5.85246923549472, 51.17458009654586], + [5.84609200318872, 51.17859303878839], + [5.82695976930345, 51.17058447112814], + [5.827651154831848, 51.1690394024529], + [5.826169521017508, 51.16780738556964], + [5.827011361478333, 51.167331645583666], + [5.826417151632104, 51.166834336726396], + [5.824310909284696, 51.1678412096257], + [5.822295306330757, 51.16622063976916], + [5.816079179679221, 51.16326028689091], + [5.815709843241838, 51.161598706313605], + [5.814689912952997, 51.16106762670108], + [5.815027904862559, 51.158848284302785], + [5.813857791288875, 51.158746161081474], + [5.8089714405179205, 51.16133562377822], + [5.806319603901111, 51.16281124885538], + [5.8057903141143195, 51.162385098405274], + [5.804943667150836, 51.16287146132076], + [5.802733873383162, 51.16120865429767], + [5.801990088556854, 51.16004162553943], + [5.802579211968914, 51.15948009669798], + [5.798704061204676, 51.15765180302188], + [5.791814045210097, 51.156985850093264], + [5.786508119625033, 51.1547396509271], + [5.785086369222007, 51.15310828704363], + [5.777646150485688, 51.151303860860125], + [5.776667623693111, 51.15440459507764], + [5.774759166531826, 51.15468220211435], + [5.7771610547723355, 51.15741207979002], + [5.7764482861526885, 51.15770876694456], + [5.779482553844917, 51.159383069865044], + [5.779402365175145, 51.16331633067477], + [5.7784423595431145, 51.16329673732152], + [5.7778193343373285, 51.16254035400055], + [5.775963902958178, 51.16304977734783], + [5.7767856501655075, 51.16324174022644], + [5.776366005238174, 51.16532976011911], + [5.774037681432873, 51.165291741143946], + [5.774460297306083, 51.16393660927158], + [5.773018665734626, 51.164498447972754], + [5.770188539018155, 51.164223858096456], + [5.769564948400783, 51.16908331541225], + [5.770447482708714, 51.170016416753406], + [5.772611442901094, 51.1694976992307], + [5.777377354976768, 51.17072054260569], + [5.779735943826667, 51.17179916724915], + [5.779372444971561, 51.17216435449686], + [5.773864271356748, 51.1726931213029], + [5.7729521061635785, 51.17336978006471], + [5.776728475428011, 51.17848550338453], + [5.767160442435644, 51.183691095146955], + [5.7559632633999485, 51.18446067263744], + [5.756868357690686, 51.18540432216835], + [5.753140691851452, 51.186099457879884], + [5.749089928042975, 51.18867837539018], + [5.745641219355552, 51.18949896330358], + [5.745698118614059, 51.19057484283302], + [5.746546958069897, 51.19055756836448], + [5.746836939451326, 51.19244046410432], + [5.747368674001936, 51.192423895284975], + [5.745819515748265, 51.19384565394027], + [5.751826808959021, 51.20008811111476], + [5.753642038590584, 51.203184784774706], + [5.75290918173745, 51.20517920239293], + [5.755856593742705, 51.206830056974766], + [5.753343919233469, 51.20794217381912], + [5.751543674148334, 51.20750351372584], + [5.749207480463247, 51.20847696362004], + [5.750836353576027, 51.20967945727011], + [5.7517761206351254, 51.21361106551978], + [5.755264251794864, 51.2154385769602], + [5.75686655895853, 51.21614334044379], + [5.760651520114199, 51.21646993006048], + [5.7643932627196985, 51.21587935049152], + [5.768514449025514, 51.21484703300374], + [5.773188242508369, 51.21512857738938], + [5.774581034448967, 51.21592943443276], + [5.774778498594196, 51.21800247796023], + [5.775845133183217, 51.219005982357324], + [5.781766620099523, 51.220138788155886], + [5.789737791688882, 51.23388325807824], + [5.7900507010682425, 51.23649870461025], + [5.791770005564464, 51.23753696961107], + [5.794872719907421, 51.23706643154398], + [5.8029627749029205, 51.23787085053228], + [5.808261525373335, 51.240440456484734], + [5.811703330492326, 51.24093022131089], + [5.818036398805222, 51.2420048340459], + [5.828301377727196, 51.24103135638693], + [5.832660186901106, 51.24114543601023], + [5.835574141864929, 51.24138681349409], + [5.840482542672353, 51.24477001004769], + [5.84577340728605, 51.245564815014376], + [5.849307987739162, 51.245396536164314], + [5.852213844789873, 51.24362661727844], + [5.853440953274115, 51.244493112781], + [5.855618023928054, 51.24924986598207], + [5.854991813910056, 51.25365895409268], + [5.849927050457913, 51.2565991477742], + [5.846741285401381, 51.25553102913321], + [5.842251910997898, 51.26244769989791], + [5.834741240065659, 51.27342659790142], + [5.833836169607963, 51.27494323540894], + [5.839421247782084, 51.277723397751195], + [5.837922138800337, 51.27971991721155], + [5.850656743966481, 51.29154331822942], + [5.860724559017845, 51.31080239217045], + [5.877823370093845, 51.31657769394109], + [5.886739446235436, 51.31475440957983], + [5.890414416443031, 51.31366855146823] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.06d3c83f-ce89-44e2-a6a3-e8844c853fef", + "properties": { + "statcode": "GM1641", + "jrstatcode": "2024GM1641", + "statnaam": "Maasgouw", + "rubriek": "gemeente", + "id": 262 + }, + "bbox": [ + 184454.86899999902, 345645.4849999994, 194754.41099999845, + 358639.25510000065 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.894169398630495, 51.21602528001705], + [5.907883412695601, 51.211428254788984], + [5.90920866374681, 51.20944528515491], + [5.908177188231147, 51.2074956309405], + [5.905996012415763, 51.206408254161026], + [5.907013279541415, 51.20554955351296], + [5.914127528429835, 51.208906816761015], + [5.919571281982816, 51.205654431158074], + [5.925602953083745, 51.20372541941891], + [5.945658735264748, 51.20356004306598], + [5.946719365413744, 51.20339879407846], + [5.94701228018644, 51.202407178281845], + [5.949918794450596, 51.202036719013144], + [5.951325308658558, 51.201164991161846], + [5.931665398409935, 51.18996629055223], + [5.925497382084308, 51.1845080640851], + [5.92130065662175, 51.178982391537176], + [5.925560982934499, 51.177149221759706], + [5.922240612245893, 51.17217634917686], + [5.917244816861789, 51.16869788547122], + [5.922815798405842, 51.169660575376774], + [5.92811155236355, 51.16865052994314], + [5.935011475045722, 51.164757543528445], + [5.938740209181996, 51.16180031399663], + [5.9425104266372974, 51.160418852827775], + [5.946977314722369, 51.16071968713677], + [5.947157457993667, 51.16017689394033], + [5.952514616131151, 51.15882286501525], + [5.955477518409901, 51.159044472309624], + [5.9434456779450615, 51.15149667205737], + [5.930259134970001, 51.143432859626635], + [5.913888269899707, 51.13319992157227], + [5.91156295117386, 51.1317930179177], + [5.907985567936042, 51.13478818377082], + [5.903385189977206, 51.13302220614848], + [5.901460737807626, 51.13420971877275], + [5.8982738471143925, 51.134832326077415], + [5.897775573752915, 51.135954567016825], + [5.896585754266991, 51.135959987233676], + [5.895248393739377, 51.13525488154074], + [5.893553346919411, 51.135156334039024], + [5.890630901607012, 51.134402882935824], + [5.890395769303344, 51.134884864169045], + [5.887154643740149, 51.13442234713073], + [5.8866164199639615, 51.13500889936511], + [5.882838480018367, 51.13339907517351], + [5.881568225670119, 51.13483104344452], + [5.8743022292556715, 51.13424964108171], + [5.87283677543027, 51.13487808142138], + [5.872281555974889, 51.13510866121424], + [5.866165731118241, 51.127252992758194], + [5.8579547151899165, 51.11678249002072], + [5.851091089975564, 51.109184996496715], + [5.85094436259797, 51.10923338512187], + [5.8486764191495615, 51.109535010441014], + [5.844679803833633, 51.105262838472306], + [5.837665125190738, 51.10324255689772], + [5.83508594426652, 51.10105495223608], + [5.83471128862573, 51.099469775308606], + [5.833507214988762, 51.09955531355435], + [5.833405225421006, 51.10375087233841], + [5.828886397018886, 51.107039762985714], + [5.823591025310879, 51.10835005694736], + [5.813761321906284, 51.10768274818833], + [5.810862912923133, 51.108866897663646], + [5.808358037553403, 51.11120449868015], + [5.807835015649727, 51.1140352894145], + [5.809850248142891, 51.1184221952212], + [5.81596643499746, 51.12217383589034], + [5.81899551658723, 51.12526682586649], + [5.82374979825077, 51.12875624302718], + [5.827523632393279, 51.130105334026126], + [5.840115823388178, 51.130842602425645], + [5.842329384228658, 51.13220842864147], + [5.843668257831084, 51.13459227678166], + [5.843506568834242, 51.13732686279953], + [5.8458404880508175, 51.140758798217696], + [5.855619724301737, 51.14469731352098], + [5.84654246381392, 51.14893285428596], + [5.846005408247316, 51.14871629388788], + [5.840288970238174, 51.15232908919575], + [5.836354299935993, 51.15368498066725], + [5.836948755996809, 51.155109650250196], + [5.838610603413764, 51.15708661930594], + [5.835818898894191, 51.15760818752854], + [5.83515366637212, 51.158387486275785], + [5.83288113161083, 51.159037408546645], + [5.833389367196362, 51.1612350396358], + [5.831408819826517, 51.163158435607684], + [5.830074031854294, 51.16405819821005], + [5.8281813655811705, 51.164284280119624], + [5.827540438150841, 51.16617527830794], + [5.826417151632104, 51.166834336726396], + [5.827011361478333, 51.167331645583666], + [5.826169521017508, 51.16780738556964], + [5.827651154831848, 51.1690394024529], + [5.82695976930345, 51.17058447112814], + [5.84609200318872, 51.17859303878839], + [5.85246923549472, 51.17458009654586], + [5.848559770797481, 51.17827786557396], + [5.848041517416353, 51.17912736935916], + [5.848725185698151, 51.17943372935541], + [5.873733189736576, 51.19094155836928], + [5.8682420844967025, 51.195078269315], + [5.868553332800993, 51.19682250024564], + [5.872094753067969, 51.1995057331251], + [5.873255637983964, 51.20194478744779], + [5.8728318189934, 51.203399077146756], + [5.878265231231833, 51.2096077243042], + [5.883643784711986, 51.213361923799255], + [5.8894836805306925, 51.215383688631114], + [5.891655125186401, 51.21420671744895], + [5.894169398630495, 51.21602528001705] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.5d1aaf2e-6da1-4bc8-aa31-9e4e64570aa5", + "properties": { + "statcode": "GM1652", + "jrstatcode": "2024GM1652", + "statnaam": "Gemert-Bakel", + "rubriek": "gemeente", + "id": 263 + }, + "bbox": [ + 173308.83100000024, 388405.9147000015, 187310.78599999845, + 401110.4107999988 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.7883423999012695, 51.59419126120454], + [5.800586009598337, 51.57862177243742], + [5.809580725511416, 51.57408112948195], + [5.8202161353969695, 51.56867368591052], + [5.8227854171993325, 51.56829135117469], + [5.83823846425486, 51.56641461613499], + [5.847686043728228, 51.52529524200886], + [5.8510188756552015, 51.51084406851266], + [5.852573702735848, 51.50414442468248], + [5.8013379901815805, 51.49389521592744], + [5.7990280502194995, 51.494097016343666], + [5.79164132404862, 51.491480395747736], + [5.778487785845488, 51.49010917337427], + [5.77382643700032, 51.488648403506616], + [5.768256228520278, 51.488970850906995], + [5.76375124950336, 51.48805247207922], + [5.755901064948933, 51.487826635160836], + [5.742608483021136, 51.48556102712663], + [5.738149571893876, 51.485236493220015], + [5.736410950425809, 51.48450411569097], + [5.730428547452672, 51.486217579146725], + [5.72861719544677, 51.486094354477125], + [5.725639515790483, 51.48436350574111], + [5.723474968261509, 51.48421056215607], + [5.721717705856357, 51.48513146722199], + [5.720685022559345, 51.48715804337099], + [5.718744169090466, 51.48857945803559], + [5.712984683828375, 51.490525899348675], + [5.71207387108291, 51.491500484655305], + [5.712669171301041, 51.49414352974777], + [5.712115721217924, 51.49493215448802], + [5.707316362715367, 51.49721822341878], + [5.705047981509938, 51.49753291581997], + [5.705995704168202, 51.49940141862069], + [5.707692887937399, 51.49922452514423], + [5.7081814673279245, 51.50182762849974], + [5.697390211860488, 51.5041304950259], + [5.684144016599923, 51.507699975580536], + [5.686005011325831, 51.51273597302123], + [5.684070046240344, 51.51322780029305], + [5.6852889213745055, 51.51516885610895], + [5.68452050571498, 51.51777922316417], + [5.6815755928756575, 51.51838944951732], + [5.676738165593225, 51.52435425310671], + [5.674538695531004, 51.525775618832895], + [5.680654293929313, 51.52589626976583], + [5.681302373616451, 51.52636182436085], + [5.677703042532878, 51.52725771406574], + [5.6783739463438465, 51.528357253836134], + [5.682174232199824, 51.52764063114006], + [5.677452820027161, 51.53085685153145], + [5.6745297615449815, 51.53326162873565], + [5.666855579314716, 51.540666935725184], + [5.66047894121604, 51.55132593797725], + [5.659450610136593, 51.55375921066713], + [5.6524857891615445, 51.56967852338115], + [5.654379974627852, 51.571255143453214], + [5.6560944702061535, 51.5736780199226], + [5.656486087752632, 51.57426874330512], + [5.656517496308913, 51.574794841071856], + [5.6542438402921, 51.57640052160531], + [5.652673049796828, 51.57831718693295], + [5.65135725139028, 51.58236019653721], + [5.658053963960359, 51.58315136908272], + [5.660201953845103, 51.58297793231416], + [5.685529466159073, 51.58373623251389], + [5.6871025385329546, 51.58380670988523], + [5.699385896218431, 51.58411653453674], + [5.706138282410856, 51.587086774693226], + [5.709050945120604, 51.58555232579588], + [5.709788213285681, 51.5858357541673], + [5.709393237320106, 51.586258545872894], + [5.709972702067733, 51.58634826870726], + [5.729478996775775, 51.58981152699514], + [5.7326206554184855, 51.59037533430455], + [5.75861458742041, 51.59394650695961], + [5.786678405436075, 51.598208266926086], + [5.7883423999012695, 51.59419126120454] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.70d07b40-f27f-4519-8cb9-516ee308372f", + "properties": { + "statcode": "GM1655", + "jrstatcode": "2024GM1655", + "statnaam": "Halderberge", + "rubriek": "gemeente", + "id": 264 + }, + "bbox": [ + 88469.54100000113, 395936.7058000006, 101432.2809999995, + 404932.3524999991 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.592907040009187, 51.62443667780105], + [4.5961303876794855, 51.624109330320955], + [4.601233178213057, 51.62523889112882], + [4.604351523243087, 51.62086013817094], + [4.603564983113851, 51.617203684159655], + [4.606706645360221, 51.61661625230902], + [4.6089136883335415, 51.61495452320353], + [4.609294548712141, 51.61316376831584], + [4.610932474926188, 51.61220272204232], + [4.610729673335507, 51.609541215186994], + [4.613891623070715, 51.60803798205316], + [4.610606004880199, 51.60314225406624], + [4.608672286758824, 51.60216494234517], + [4.596804499274191, 51.590348401688715], + [4.598251696557705, 51.5856202847747], + [4.598557829017328, 51.58437818999421], + [4.595979078486161, 51.5756838351558], + [4.595963223392616, 51.57336318705569], + [4.594670780340593, 51.56674040682183], + [4.59064572258934, 51.56597868082148], + [4.590420540452121, 51.56494017913325], + [4.592222477610132, 51.56128932641351], + [4.591761315613386, 51.56103164863113], + [4.584896326897019, 51.559634910984634], + [4.582879051284162, 51.560419125913135], + [4.581750755876632, 51.560266742169105], + [4.582011610881737, 51.559047845962716], + [4.568020735045344, 51.55619935714712], + [4.566841908383552, 51.55596309618739], + [4.550493400188558, 51.55271176205807], + [4.547310788566006, 51.55236143002983], + [4.546444978844216, 51.55365063025582], + [4.545371045801442, 51.55390881324377], + [4.544640324149737, 51.552948266934976], + [4.545083926119248, 51.55164556627063], + [4.542422470713592, 51.551087082031614], + [4.5334826711143785, 51.54926947425391], + [4.530358611448828, 51.549255656642764], + [4.528068983010124, 51.55199880568805], + [4.528689673714675, 51.555486572431576], + [4.530905321080438, 51.559887611124765], + [4.536616313975775, 51.56577633404857], + [4.509450016755429, 51.56855866694564], + [4.508713474849148, 51.56554861898299], + [4.50495557456559, 51.566026311843686], + [4.504153851017201, 51.562985042290244], + [4.501634754626562, 51.563270732238436], + [4.50020415078661, 51.55853633324061], + [4.4868518508248645, 51.560439798727444], + [4.4809935134315175, 51.560974358094676], + [4.474014238707465, 51.56074786473148], + [4.473008452414805, 51.56221308932472], + [4.469914855101161, 51.563043626284596], + [4.46639320570015, 51.56204071136926], + [4.465796368608678, 51.5610431358557], + [4.457535573862968, 51.56145913783623], + [4.456950270776211, 51.56261284138392], + [4.453247187208257, 51.563543675656774], + [4.453011143681811, 51.56667605684708], + [4.448577911075059, 51.56573250997633], + [4.44467465285627, 51.569234822824754], + [4.443999240069713, 51.569095437615154], + [4.432925985441103, 51.582797155324], + [4.429922643077751, 51.5902477004756], + [4.429338034424864, 51.59387856058762], + [4.42801825057505, 51.60540513173353], + [4.426674800754523, 51.61174020391223], + [4.431546544331487, 51.61084499634678], + [4.432463570091419, 51.612891102932615], + [4.431934990237659, 51.613911211707695], + [4.4337654678186, 51.61593944914248], + [4.435704529432684, 51.61517465102273], + [4.437827866411595, 51.617119161441956], + [4.443536530095635, 51.61508855682698], + [4.454843759618164, 51.61420718745705], + [4.461370528289133, 51.61437974186095], + [4.471442251971254, 51.615966026271586], + [4.4760277528615, 51.61835989903347], + [4.480438549892421, 51.619718675877984], + [4.484278687598543, 51.62008281244505], + [4.487744444339236, 51.61964193145548], + [4.492440408733845, 51.61753256909952], + [4.49616181482402, 51.613174562669045], + [4.502169735797832, 51.608745859108275], + [4.507988316652189, 51.607095181093705], + [4.513756028688402, 51.60674754878592], + [4.516554580870397, 51.607131889046556], + [4.519132444994774, 51.607834107026605], + [4.525486618490434, 51.61270226423523], + [4.530866893837874, 51.61594787390396], + [4.536894527958003, 51.617150261375095], + [4.543204302364252, 51.617667796324895], + [4.549134243696611, 51.61989149825689], + [4.553253628338717, 51.62246573452341], + [4.5545678849730615, 51.62487668296883], + [4.556695386676565, 51.62688664034037], + [4.560437435828721, 51.62881753861624], + [4.571077171203081, 51.63039960650379], + [4.577682151109334, 51.62963276227732], + [4.589187056514979, 51.625202372295036], + [4.592907040009187, 51.62443667780105] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d486471d-0621-4933-aae9-0c12d22c9c76", + "properties": { + "statcode": "GM1658", + "jrstatcode": "2024GM1658", + "statnaam": "Heeze-Leende", + "rubriek": "gemeente", + "id": 265 + }, + "bbox": [ + 161021.41000000015, 367332.60500000045, 173634.35300000012, + 381512.0480000004 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.63787220150182, 51.406707463794696], + [5.639001499380831, 51.39797123410778], + [5.6389417868355105, 51.389123736023976], + [5.654707151483519, 51.353877286009975], + [5.647528364874315, 51.3520757069798], + [5.648774085202652, 51.35016744159443], + [5.642603012953493, 51.34839679271227], + [5.639925612601633, 51.34673705427354], + [5.639537355243297, 51.34310249112709], + [5.64063749157873, 51.34186187235847], + [5.640192425887449, 51.339574211616345], + [5.639203048638368, 51.339972501422395], + [5.6367235371613535, 51.34083797735288], + [5.636637236013747, 51.3378338034044], + [5.642894304883277, 51.33729495081533], + [5.644231735156799, 51.336525371507285], + [5.644112814299277, 51.33348424905744], + [5.641277577417283, 51.33407700831426], + [5.6385917732705595, 51.331859432041], + [5.63445669304787, 51.333398348237964], + [5.633128003154987, 51.33131417891597], + [5.6349306458035935, 51.33021826604136], + [5.631295164238266, 51.32754093128695], + [5.6211473636878555, 51.33118854915603], + [5.618967607499145, 51.32894985482467], + [5.6100526039210665, 51.33082352237879], + [5.605316597977324, 51.331805082757896], + [5.602433329141234, 51.33099243975891], + [5.585460387098202, 51.32620585355393], + [5.567926797901935, 51.3210871768921], + [5.53759525949548, 51.30755739593937], + [5.528489422977368, 51.3027509990743], + [5.515773885506556, 51.29520250654502], + [5.484859326308681, 51.29999994438948], + [5.485733840506566, 51.302432873494396], + [5.489194094039631, 51.306471165808695], + [5.490679124617826, 51.31029896863863], + [5.491371866387549, 51.31422232287696], + [5.490089112466404, 51.31667891803848], + [5.4890559856933985, 51.318368661180514], + [5.48293149668405, 51.3213413632706], + [5.480237811428885, 51.32405503902092], + [5.480786226854644, 51.32444177969582], + [5.4771685354980315, 51.327520356600296], + [5.476021636581829, 51.331216642204495], + [5.473603484228227, 51.33398314723531], + [5.477632244155183, 51.33723067849712], + [5.478346002854963, 51.33871160789993], + [5.481868069247612, 51.34084031845951], + [5.487005288605666, 51.3422783726639], + [5.487725076119127, 51.34312352034206], + [5.496030166119561, 51.34650779036227], + [5.496668768462305, 51.35265008813798], + [5.49428760647773, 51.35329230180374], + [5.493828528905589, 51.3540382673345], + [5.494144102194841, 51.35548676160202], + [5.527180534883607, 51.366941072637424], + [5.516417602409409, 51.37833551387407], + [5.512003874493759, 51.38381131184311], + [5.504873934582972, 51.400154818726705], + [5.505184444289796, 51.403417404295666], + [5.5076128083042395, 51.404532214225846], + [5.525814949023648, 51.404697137633065], + [5.53357391999351, 51.40467101543094], + [5.533705038780856, 51.40428442602499], + [5.535579831365205, 51.404605915795656], + [5.536379868254329, 51.40319348681357], + [5.543213183023644, 51.40403630415805], + [5.544813768290469, 51.40313635688592], + [5.543751107889584, 51.404665331383754], + [5.557858160172107, 51.4055140533789], + [5.560778717085812, 51.40616004266083], + [5.5613683013563495, 51.404900653033806], + [5.5624285786223036, 51.40529965391856], + [5.56424931529946, 51.40488021111705], + [5.5667373589823015, 51.405591724934396], + [5.565860268901864, 51.40729854681578], + [5.568910741197284, 51.40865035394177], + [5.594032456207492, 51.417245448909696], + [5.598717568337997, 51.41834142921654], + [5.639015501915434, 51.422456484221584], + [5.63787220150182, 51.406707463794696] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.52b619e7-87a7-48b6-9d7e-5388c4bff88e", + "properties": { + "statcode": "GM1659", + "jrstatcode": "2024GM1659", + "statnaam": "Laarbeek", + "rubriek": "gemeente", + "id": 266 + }, + "bbox": [ + 165116.6490000002, 389568.5729999989, 175742.06899999827, + 397893.97300000116 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.659450610136593, 51.55375921066713], + [5.66047894121604, 51.55132593797725], + [5.666855579314716, 51.540666935725184], + [5.6745297615449815, 51.53326162873565], + [5.677452820027161, 51.53085685153145], + [5.682174232199824, 51.52764063114006], + [5.6783739463438465, 51.528357253836134], + [5.677703042532878, 51.52725771406574], + [5.681302373616451, 51.52636182436085], + [5.680654293929313, 51.52589626976583], + [5.674538695531004, 51.525775618832895], + [5.676738165593225, 51.52435425310671], + [5.6815755928756575, 51.51838944951732], + [5.68452050571498, 51.51777922316417], + [5.6852889213745055, 51.51516885610895], + [5.684070046240344, 51.51322780029305], + [5.686005011325831, 51.51273597302123], + [5.684144016599923, 51.507699975580536], + [5.682961236802443, 51.50447959962598], + [5.672668235509089, 51.50544156329877], + [5.669951764026618, 51.504138111447865], + [5.675105371295012, 51.49894749752939], + [5.663585133258117, 51.50225583384551], + [5.65640371545631, 51.507309274352686], + [5.652516471372445, 51.50401071672639], + [5.6502536104351195, 51.50374873535304], + [5.646385426963598, 51.502096780904694], + [5.644156463386044, 51.50123840704827], + [5.641138847566632, 51.498303710613165], + [5.634822217397029, 51.494883161657825], + [5.630939105340609, 51.49511062568801], + [5.626930623210973, 51.49627512136894], + [5.626066004207454, 51.498285436498755], + [5.622037070628521, 51.498090542585985], + [5.618730597233208, 51.49863892468455], + [5.614828462949722, 51.50044764434929], + [5.610561618756398, 51.50472582180562], + [5.611237791982608, 51.50797516842867], + [5.609653841855819, 51.50921734337133], + [5.579933202303234, 51.49876008818117], + [5.576729851057874, 51.49945316655239], + [5.566551702085502, 51.50167244998326], + [5.557652443399427, 51.50936972429677], + [5.55438093296231, 51.51898814219002], + [5.547914383687609, 51.53807588392167], + [5.547437344072707, 51.53773203260991], + [5.543042784155194, 51.54000069052648], + [5.545207344740525, 51.54168695904746], + [5.537947252783092, 51.55131873916396], + [5.533083050327249, 51.55780364187039], + [5.5452396518136435, 51.55809640725418], + [5.5553372244439, 51.55852463133836], + [5.584340985611722, 51.56273139131788], + [5.607416138837899, 51.559693023129604], + [5.614225132454341, 51.55460472135138], + [5.618192415511262, 51.555841531035455], + [5.619234008827287, 51.55399607711903], + [5.6217953527194835, 51.553268543232484], + [5.625670014311785, 51.55509932091812], + [5.640335143880971, 51.56441825515316], + [5.6524857891615445, 51.56967852338115], + [5.659450610136593, 51.55375921066713] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.894c4bf7-c608-447f-b676-34346c34c81c", + "properties": { + "statcode": "GM1667", + "jrstatcode": "2024GM1667", + "statnaam": "Reusel-De Mierden", + "rubriek": "gemeente", + "id": 267 + }, + "bbox": [ + 133005.3999999985, 369030.19000000134, 142279.04, 382587.7719999999 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.1707656281032595, 51.42973308173785], + [5.173458333740277, 51.428240218857916], + [5.178153519849224, 51.43026102369111], + [5.184980787731371, 51.428764026258335], + [5.190182475330537, 51.430112399961736], + [5.191020000434413, 51.4302158232278], + [5.190851534695934, 51.41821086989814], + [5.194749362026191, 51.39995521663458], + [5.1999210244923475, 51.391707423855266], + [5.200959367406299, 51.39006596995081], + [5.197402590431802, 51.3840178824797], + [5.19926882133983, 51.38230810193029], + [5.193014179141581, 51.37826408512702], + [5.188508371324627, 51.37762045454621], + [5.187987716386282, 51.3745131415211], + [5.185414634113832, 51.37584075885718], + [5.183215737946083, 51.37578613424789], + [5.184347015223584, 51.37476319830529], + [5.190659076457761, 51.37190508017135], + [5.192101848176569, 51.366769344011864], + [5.19060479328941, 51.36622676883303], + [5.192137967685084, 51.36479671840928], + [5.1974230285749075, 51.3627247004168], + [5.195391792968225, 51.36229149820351], + [5.196424769196731, 51.36158727379377], + [5.191942549554973, 51.36146788169682], + [5.191913625795293, 51.35627376931226], + [5.192339402884297, 51.35073743467886], + [5.19449448152019, 51.35107553234753], + [5.196292848117151, 51.34984214305273], + [5.1960685722921, 51.34799572155173], + [5.193865244899522, 51.34522611742541], + [5.2046977662037515, 51.32543849994598], + [5.200255056280694, 51.32266121556908], + [5.196564729667111, 51.32035924056069], + [5.190556258085938, 51.32007015675763], + [5.17306275542151, 51.31577164223132], + [5.1626397681581375, 51.31031660535702], + [5.13435325286528, 51.31550045607374], + [5.131710903116715, 51.34677451030841], + [5.126282557599567, 51.35022839992009], + [5.119401773262539, 51.355639665542846], + [5.116570383384476, 51.36111800201479], + [5.071181694993063, 51.39348746783899], + [5.095456428843444, 51.42250067282099], + [5.102020556081373, 51.428922728159904], + [5.119459113293277, 51.428274835261256], + [5.152499813517961, 51.428968547501306], + [5.153211529927523, 51.42835432142062], + [5.1579482497895555, 51.428830855332336], + [5.158553217017335, 51.4321742517235], + [5.1707656281032595, 51.42973308173785] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.35e99760-8ea1-4c31-b4bf-4349eebb32e6", + "properties": { + "statcode": "GM1669", + "jrstatcode": "2024GM1669", + "statnaam": "Roerdalen", + "rubriek": "gemeente", + "id": 268 + }, + "bbox": [ + 191865.7659999989, 345424.68400000036, 210478.37999999896, 356401.75 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.1458906481614655, 51.170490839920355], + [6.175421796944162, 51.15846399465643], + [6.170113362790682, 51.15523639596617], + [6.162848436249207, 51.152671197152195], + [6.163339438475368, 51.14869747141986], + [6.157371993858398, 51.14887713799561], + [6.15535444025653, 51.14819189427006], + [6.152542187830729, 51.14802698702984], + [6.1476860573826135, 51.14860762419994], + [6.144775540724981, 51.14702940939546], + [6.141794821034353, 51.1464895965176], + [6.133483294570719, 51.14516757527068], + [6.125972440985011, 51.144907406031855], + [6.1216175805978805, 51.14273535588151], + [6.121474963590081, 51.1410935546058], + [6.119851583121768, 51.14057685924328], + [6.119698194813923, 51.14044846590688], + [6.119214165202389, 51.14030205965481], + [6.109697541178921, 51.13767080250185], + [6.10343162933585, 51.13641555868514], + [6.100448108883245, 51.13642065855785], + [6.096303226896344, 51.134759006168565], + [6.091752487790798, 51.13491218241507], + [6.089190283620978, 51.13016436844365], + [6.087275893299165, 51.129348485502646], + [6.088839746293583, 51.12802045500885], + [6.086855850940451, 51.12758470365513], + [6.084424017677077, 51.126018687224615], + [6.08644664113851, 51.12565513804297], + [6.086992030874046, 51.1245949165955], + [6.083639082910881, 51.12391996666984], + [6.081077990893899, 51.12587092002865], + [6.080009618312143, 51.124251952937605], + [6.080550929473838, 51.122141711071556], + [6.075614243549089, 51.12084084013253], + [6.076204416501926, 51.119514123289434], + [6.075713464134131, 51.119118154284585], + [6.071270159060556, 51.11797434859102], + [6.0688941119308355, 51.11809317679359], + [6.062400991068329, 51.11685326652407], + [6.060293323604444, 51.11592644094266], + [6.057575365712764, 51.11355731748453], + [6.057372188763327, 51.113315100777726], + [6.056646703968167, 51.112440237306075], + [6.05523791694179, 51.11074225497862], + [6.056832033417314, 51.10954956069814], + [6.044686198725827, 51.101300397974356], + [6.044400809115142, 51.10111945004915], + [6.042943436274903, 51.10120252449239], + [6.036463084435843, 51.096531422901066], + [6.030469134115845, 51.101741348032895], + [6.029177698347927, 51.10489233604289], + [6.02843853460621, 51.10633963365009], + [6.028213812605768, 51.1071557340164], + [6.023974645279779, 51.10663571020932], + [6.022639608305454, 51.10906263934227], + [6.024216934238375, 51.10987010502686], + [6.021983155526032, 51.11337131681311], + [6.013160494316968, 51.116779673776094], + [6.013948247377392, 51.11792553983596], + [6.000765671195528, 51.11413613583784], + [5.9977036160083825, 51.11883658824896], + [5.99090317060081, 51.120409188777444], + [5.984806714615079, 51.120655081327996], + [5.982988730542347, 51.118094834343296], + [5.982065365966124, 51.11860875210337], + [5.978488482228196, 51.115842870310544], + [5.976080774356744, 51.11709135864542], + [5.972126289675796, 51.11469440687638], + [5.96532901055165, 51.118442183124564], + [5.961775428519131, 51.11703988789736], + [5.962602502275747, 51.11648816196404], + [5.956056373003125, 51.11478265697602], + [5.9565691967123575, 51.11382216013313], + [5.954235225111801, 51.113199496253515], + [5.953350298139509, 51.11452533953899], + [5.951566995743008, 51.11293121353941], + [5.948088819996707, 51.11258139540634], + [5.9475183940311505, 51.11334250535666], + [5.943479605961924, 51.1128861815054], + [5.940426102742138, 51.11269301976352], + [5.9413405353042785, 51.11382670487375], + [5.940500294553994, 51.11432874751474], + [5.926754752527981, 51.113774029865105], + [5.925824526797449, 51.11429798455866], + [5.920664564716019, 51.11875292231555], + [5.9143723902885315, 51.12829652812491], + [5.916386535403781, 51.13045185676878], + [5.913888269899707, 51.13319992157227], + [5.930259134970001, 51.143432859626635], + [5.9434456779450615, 51.15149667205737], + [5.955477518409901, 51.159044472309624], + [5.974737823558405, 51.170896311816804], + [5.983566637406623, 51.17622935356701], + [5.984664339160914, 51.17469664624422], + [5.98769035822158, 51.175192381971215], + [5.989020185731101, 51.17345297046571], + [5.986180449666941, 51.1703989705795], + [5.986826158147963, 51.16938669709039], + [5.989894659513368, 51.17065782293199], + [5.9925493870425, 51.17022627235744], + [5.991287240000453, 51.1685249442939], + [5.991566710280265, 51.16756185722362], + [5.994550755889535, 51.166145626720024], + [5.995049056752823, 51.16850207329499], + [5.997920872060225, 51.16816764758695], + [5.997555526696186, 51.165917195567715], + [5.999334955248475, 51.16420455979668], + [5.999188509004311, 51.162166114710416], + [6.001986832957421, 51.162522174658086], + [6.005970490243294, 51.16316071435527], + [6.006112504774155, 51.16371084861549], + [6.007686982219823, 51.16393295261826], + [6.013459703997512, 51.16650833092824], + [6.01479099986661, 51.1659082291487], + [6.019067985562146, 51.16434319789966], + [6.026076380780784, 51.16402270424483], + [6.027624734639353, 51.16208111552176], + [6.02945876668636, 51.161127005840775], + [6.0324785647137675, 51.16087516959142], + [6.035646801533121, 51.1614152543086], + [6.036115223882532, 51.16090499182948], + [6.037385158988086, 51.160992975071245], + [6.03753680298185, 51.16138838920636], + [6.039871156790756, 51.16160092770937], + [6.040114915439684, 51.16054231316446], + [6.047854618326667, 51.16126604483306], + [6.0556264309220325, 51.162112388615164], + [6.054863885206476, 51.16243792438777], + [6.056573887987169, 51.16355535371848], + [6.063565923847018, 51.16552430157662], + [6.060074977981576, 51.17091259990419], + [6.050004489564984, 51.17214913429872], + [6.048139281509569, 51.17484500971543], + [6.057070983548457, 51.17570380709001], + [6.054602825997856, 51.17970362604326], + [6.055284598047666, 51.1843618880897], + [6.061034983657321, 51.18356335158524], + [6.0665907299243615, 51.18405254853019], + [6.073141435233297, 51.18282475160686], + [6.0785150387218305, 51.1771918208784], + [6.0821901733457135, 51.17163352241545], + [6.089996802932306, 51.170355130849], + [6.093702021349889, 51.170405141269846], + [6.09583732097564, 51.17111767771269], + [6.099685655259153, 51.169832744922815], + [6.1021034178051385, 51.17180373593905], + [6.107491453260964, 51.17270032707816], + [6.112700545552466, 51.17486361879811], + [6.115553035389823, 51.177880429623094], + [6.122405863210826, 51.181302816773346], + [6.165170408442888, 51.194414120794754], + [6.180724253072873, 51.186358500535825], + [6.138801676023602, 51.17333922999921], + [6.1458906481614655, 51.170490839920355] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.6ddef6ea-1b5b-4d54-8abf-4055fa13f019", + "properties": { + "statcode": "GM1674", + "jrstatcode": "2024GM1674", + "statnaam": "Roosendaal", + "rubriek": "gemeente", + "id": 269 + }, + "bbox": [ + 80061.85799999908, 385184.35599999875, 95063.22300000116, + 398233.6860000007 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.44467465285627, 51.569234822824754], + [4.448577911075059, 51.56573250997633], + [4.453011143681811, 51.56667605684708], + [4.453247187208257, 51.563543675656774], + [4.456950270776211, 51.56261284138392], + [4.457535573862968, 51.56145913783623], + [4.465796368608678, 51.5610431358557], + [4.46639320570015, 51.56204071136926], + [4.469914855101161, 51.563043626284596], + [4.473008452414805, 51.56221308932472], + [4.474014238707465, 51.56074786473148], + [4.4809935134315175, 51.560974358094676], + [4.4868518508248645, 51.560439798727444], + [4.50020415078661, 51.55853633324061], + [4.498081232885455, 51.54994209922978], + [4.497472345160565, 51.54627328852213], + [4.498789206090494, 51.545704419700556], + [4.498830566616445, 51.54478508028364], + [4.506789737616264, 51.543632474525936], + [4.511315466500614, 51.54398242981436], + [4.514444035960076, 51.54190104945233], + [4.51583320614698, 51.54208777260591], + [4.515795701386806, 51.54299794398567], + [4.523191561660773, 51.542556840746215], + [4.521408386495535, 51.53309497117191], + [4.5219686361421605, 51.53177565360518], + [4.520418932407497, 51.528991276402], + [4.52118957159136, 51.52895055367921], + [4.519579210744624, 51.52708135819923], + [4.520137109169846, 51.52655808479976], + [4.51965820920941, 51.52540136775578], + [4.517650805605401, 51.525388241691374], + [4.515953755528485, 51.52152027691435], + [4.513563588602051, 51.521601486196104], + [4.514332214990773, 51.517895527156995], + [4.5026881796752525, 51.516749059870975], + [4.5021795429084674, 51.51672352113194], + [4.498517065034203, 51.50986346184508], + [4.496653520424474, 51.50830048246743], + [4.498096385596837, 51.501811979616676], + [4.497893254796351, 51.501432794564494], + [4.490313442219102, 51.48699162464964], + [4.492861652375291, 51.48329129513162], + [4.485406498268134, 51.48162255858001], + [4.486681568183694, 51.477352821565006], + [4.480242215779382, 51.47828164581623], + [4.476492284419084, 51.47826709606376], + [4.471646421441265, 51.476250655379786], + [4.467341774768017, 51.472983914738215], + [4.466715555155924, 51.47199090707909], + [4.464905675952053, 51.47113491274916], + [4.464721384642352, 51.4710134153223], + [4.464560311271386, 51.47115326302324], + [4.457049886251781, 51.469816684507656], + [4.447010818380715, 51.468972957126304], + [4.442559945977718, 51.46868945944698], + [4.442446193574476, 51.46863865424352], + [4.391083219783498, 51.45148726246832], + [4.383412419717241, 51.455115259899955], + [4.366965865509341, 51.45671886284281], + [4.361396833637237, 51.471219159329266], + [4.362668383442177, 51.471685498693695], + [4.361632426299943, 51.47637176652063], + [4.371655066314631, 51.4790932415547], + [4.371822950332694, 51.48390628951879], + [4.3726435171907685, 51.4877725080463], + [4.3638795518555415, 51.49118681213607], + [4.358172545731638, 51.49260335310097], + [4.351589641841361, 51.49992841635234], + [4.349540184827901, 51.50348101178467], + [4.351180275502134, 51.50385055920063], + [4.354397545805284, 51.5057784598844], + [4.353959410699806, 51.50645098122756], + [4.350554601608838, 51.50570102035929], + [4.352463788076851, 51.5142993854332], + [4.351597241374923, 51.51770076395821], + [4.35014020069667, 51.51837319579828], + [4.3421944793416305, 51.518049755879886], + [4.340815083701871, 51.52178897142301], + [4.3404571503276035, 51.522669506494815], + [4.342777419851456, 51.52638956208058], + [4.3376458283027475, 51.527562974626626], + [4.3298862376097045, 51.528239590856536], + [4.329535257323158, 51.52932464640672], + [4.325649444500462, 51.52961400555018], + [4.32841350123797, 51.530726574781035], + [4.32872558232791, 51.531752858423275], + [4.327574671249017, 51.53519402816652], + [4.314623878336248, 51.54107526204879], + [4.306909221133954, 51.54350492421143], + [4.308281092266532, 51.5467164648119], + [4.3163087989979765, 51.54549683927876], + [4.317977607914271, 51.55121575304361], + [4.361582707896624, 51.54591288511492], + [4.3735980190202755, 51.54400308570586], + [4.378090419834989, 51.544314746462206], + [4.411468489412353, 51.55159855079671], + [4.426878352939452, 51.552382756842434], + [4.428204722911735, 51.553598408596706], + [4.429032308530543, 51.555701265848064], + [4.438381469959303, 51.556391259861975], + [4.441078187744477, 51.55849163960846], + [4.441953916830263, 51.56738504459267], + [4.443999240069713, 51.569095437615154], + [4.44467465285627, 51.569234822824754] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.8b9ddb8a-c960-40b4-ac3f-c53d1bceffc1", + "properties": { + "statcode": "GM1676", + "jrstatcode": "2024GM1676", + "statnaam": "Schouwen-Duiveland", + "rubriek": "gemeente", + "id": 270 + }, + "bbox": [ + 36911.00879999995, 401997.88170000166, 72413.53249999881, + 419974.2928000018 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [3.9340316420532204, 51.735748967044195], + [3.9311933101243843, 51.73486800732649], + [3.914058482646326, 51.73468160452922], + [3.9126935920472428, 51.73404725264531], + [3.9112549123408673, 51.73529787606719], + [3.9111880788956195, 51.73712719969346], + [3.9144871025624925, 51.739342686866934], + [3.9190634781290625, 51.73941701286491], + [3.9264170133002456, 51.73839455028457], + [3.9337340591840873, 51.736285347512826], + [3.9340316420532204, 51.735748967044195] + ] + ], + [ + [ + [3.952550573074243, 51.74674989621797], + [3.955150331791959, 51.745989447292054], + [3.959849784790208, 51.7465890340521], + [3.962217615803332, 51.74605608189141], + [3.9598760093247507, 51.74427840930334], + [3.950545686505732, 51.74129355154219], + [3.950216153057127, 51.74061728268289], + [3.949164978873771, 51.74132936472255], + [3.9492486178075743, 51.740236127108275], + [3.9485997754811475, 51.74004898573605], + [3.94788073190379, 51.74052431331617], + [3.9418968457720656, 51.73968134570171], + [3.938207203908714, 51.739960728881684], + [3.936901992420545, 51.743358292265526], + [3.9370283087440585, 51.745804252374725], + [3.9427198997755557, 51.746898569552144], + [3.952550573074243, 51.74674989621797] + ] + ], + [ + [ + [4.0157296426084725, 51.72627853173871], + [4.0130335829138435, 51.72523191511133], + [4.006475562376267, 51.72532865354617], + [4.0030164620422255, 51.72656698817964], + [3.9975774924651044, 51.73216760016633], + [3.9947839711728705, 51.73901777583175], + [3.9907909580657392, 51.74490767454814], + [3.981909345300605, 51.7515130904818], + [3.978003145776038, 51.75258110528797], + [3.9798706023786914, 51.75472830730611], + [3.9823880940595338, 51.756353576566084], + [3.9922216255926997, 51.758312006088225], + [3.995430115261348, 51.75839925672466], + [3.997338627026227, 51.75785984502983], + [3.9959816393817755, 51.75494145721054], + [3.996154254278213, 51.750771997246275], + [4.002800207862533, 51.73941978431834], + [4.008056904583578, 51.73382839812411], + [4.016391974094619, 51.72912036071409], + [4.0157296426084725, 51.72627853173871] + ] + ], + [ + [ + [3.8424772502866773, 51.75630501708531], + [3.8399750472722265, 51.7551462895972], + [3.84198318517323, 51.75335586646108], + [3.8415748265073764, 51.75225321317682], + [3.8376643989302135, 51.750135670678674], + [3.837303808538843, 51.74933200196981], + [3.8353952854893656, 51.74987637200453], + [3.8403939979059443, 51.75250171812934], + [3.84055777675542, 51.75333135556136], + [3.837457765904287, 51.75527961264189], + [3.831074514717464, 51.75241849876243], + [3.8299173244865155, 51.75129848995478], + [3.831921569982326, 51.750420298556215], + [3.8307900981333947, 51.7492811464051], + [3.8274848596363626, 51.748943964565214], + [3.8270940111902694, 51.74767207920051], + [3.8277259274052566, 51.74737115299118], + [3.8260199513132958, 51.74038129791058], + [3.8267380088559473, 51.739575306937766], + [3.8258883606852017, 51.739487889846], + [3.8257940813061433, 51.738847783103196], + [3.830107693534628, 51.73946822402991], + [3.830781830471629, 51.74005371423518], + [3.8359318669366793, 51.73884736041304], + [3.8388132029296322, 51.73925733926066], + [3.8420697128087093, 51.73876035518775], + [3.846288692274819, 51.74047082733532], + [3.8470514109675324, 51.74014260457748], + [3.84484848331147, 51.73965785614444], + [3.8447678067899442, 51.73916036512439], + [3.846322920655642, 51.738829878577754], + [3.84723707893951, 51.739159393825375], + [3.8469199194205133, 51.73864277403093], + [3.8499951131046752, 51.73750796918256], + [3.8514357369152785, 51.73860430054263], + [3.8472052561023555, 51.73974269864533], + [3.8477030100272764, 51.74013229390258], + [3.854713565689656, 51.73848048853563], + [3.8732703680147695, 51.74152617729043], + [3.8875233464549894, 51.744231579026504], + [3.889732294658762, 51.74349992741538], + [3.891551174060443, 51.743814254580684], + [3.8894686684360167, 51.74295522485569], + [3.891095613254533, 51.74012143246628], + [3.893876299214338, 51.74036015515665], + [3.8945308627332507, 51.74106404951996], + [3.8988248303243984, 51.74003900684597], + [3.903701001704332, 51.73767281300026], + [3.9033644955377556, 51.73689793381176], + [3.9068387490495518, 51.7331293900455], + [3.9088867921346617, 51.73288421131349], + [3.9111349875654584, 51.73188305266818], + [3.912965948057292, 51.72971517886814], + [3.912824026558061, 51.72925508752482], + [3.912250215898934, 51.72962966895904], + [3.911752201798528, 51.72935741699525], + [3.913738754315242, 51.72751123239057], + [3.915336191078324, 51.72833949764254], + [3.9149436042197503, 51.72859398752666], + [3.9134005065975153, 51.72974429840177], + [3.9138838937784683, 51.731346554606134], + [3.9189049629206454, 51.73199941735192], + [3.920694649339851, 51.731458757362674], + [3.9217865213825647, 51.73182264326961], + [3.926862975174594, 51.731620445838836], + [3.9432321444049676, 51.734309404437646], + [3.944191459682779, 51.733353411808906], + [3.9609133137366586, 51.73344050592224], + [3.964679987803572, 51.73407467540234], + [3.9712981040285276, 51.733618089068024], + [3.9733307809376184, 51.732871743505676], + [3.9702035816251633, 51.72670206427834], + [3.9717970517178003, 51.726506249705544], + [3.9747120553061626, 51.73184161593762], + [3.978742999476999, 51.730289442019895], + [3.9791704984934904, 51.72954366946233], + [3.9772368197519756, 51.72935939903659], + [3.9795019747185374, 51.72724063005525], + [3.982733603243521, 51.72566505632807], + [3.98296104465419, 51.72316992376594], + [3.9847655981735612, 51.71996673192705], + [3.9824550104962206, 51.717740644512766], + [3.9914769065108913, 51.71390750584747], + [4.007068591896211, 51.70311648033192], + [4.011280972721046, 51.69753461031902], + [4.014881995313595, 51.68668916339589], + [4.02093974371095, 51.6847377639912], + [4.022283939469722, 51.685041583543345], + [4.027066368989, 51.684394103887556], + [4.028124448245874, 51.68288339030894], + [4.02993328758994, 51.68254556195394], + [4.040436352801624, 51.68462070335079], + [4.0442437935732025, 51.684638215771145], + [4.053337253736026, 51.68112803137586], + [4.0554765362994125, 51.67930977464119], + [4.064439820900261, 51.67757876743997], + [4.068561268177658, 51.67519992950982], + [4.071330461576626, 51.674971439098364], + [4.076238558822367, 51.67592119798585], + [4.077945627321514, 51.675175964446744], + [4.074357589047704, 51.67413115088251], + [4.0743310476457815, 51.67359991518554], + [4.080776267232781, 51.670945441484825], + [4.083051397291524, 51.671874315190244], + [4.084023171373578, 51.67157122172681], + [4.083168722558856, 51.67050618203258], + [4.086625304959257, 51.669166135488744], + [4.088306118582295, 51.67079018441407], + [4.088799396647009, 51.67065984819398], + [4.087370137776064, 51.66887735589907], + [4.09170481902461, 51.66708378118773], + [4.109083613816541, 51.67762107899447], + [4.114174864012111, 51.67928971654311], + [4.114823673006409, 51.6787346843266], + [4.120566350080238, 51.67960652209417], + [4.121774304522337, 51.6793635412369], + [4.1211866994600115, 51.67812144732107], + [4.122552662199919, 51.67749962509939], + [4.12494481451858, 51.67768123511719], + [4.125624777620094, 51.67866295203445], + [4.128995719797229, 51.67960639956593], + [4.128258043514596, 51.678542739757916], + [4.130295881964585, 51.67796500648389], + [4.131617016892982, 51.678868560103204], + [4.136467224736341, 51.67860544460713], + [4.137048897855092, 51.67957392633551], + [4.144503155231929, 51.67916420047409], + [4.148733727891088, 51.67973591157456], + [4.155479750720507, 51.683418724486835], + [4.157346466399526, 51.682492013351606], + [4.1563144687888425, 51.681167293200446], + [4.155857668520843, 51.675556964505375], + [4.163279017036362, 51.66770945501195], + [4.171624805229365, 51.66826465527839], + [4.1737646630856995, 51.66720228328323], + [4.166233436719203, 51.66724933610525], + [4.165853582366096, 51.665748203647745], + [4.1618118139845, 51.665301287166976], + [4.161912280623649, 51.66465897937057], + [4.174813006535314, 51.66547280237298], + [4.1801455709884605, 51.66426634783605], + [4.183069632241217, 51.66298041264901], + [4.177356953640962, 51.664563535586915], + [4.1642103783279305, 51.6642283647176], + [4.163660892843279, 51.662922258347166], + [4.162018749148536, 51.6627400052505], + [4.16220157340242, 51.66036640708998], + [4.180392782021507, 51.66049751257915], + [4.182739468240028, 51.66090045203712], + [4.1834507676604495, 51.659530709697265], + [4.18275132980927, 51.65940496129152], + [4.181120048476152, 51.65997646982737], + [4.178070933037404, 51.65930339977563], + [4.1745611034320635, 51.65931546405262], + [4.170687759786521, 51.660028455147334], + [4.166889321983531, 51.65921745646947], + [4.166066686193313, 51.65842574026532], + [4.1664665887343055, 51.65645047617501], + [4.169213529411395, 51.65441869627034], + [4.17531355382051, 51.65366370680978], + [4.1804267215292015, 51.654143125116896], + [4.182424086600289, 51.653583021824524], + [4.181011852917247, 51.64935693428373], + [4.1872840010527055, 51.64704809614642], + [4.191397635518942, 51.644502313018194], + [4.193453386996928, 51.642164727422006], + [4.1941367398907765, 51.63903026445618], + [4.193175936020012, 51.63876299916941], + [4.1906107972007005, 51.64352104053729], + [4.184858475845122, 51.647174413044304], + [4.177212118567414, 51.64962861230375], + [4.174838531556381, 51.64738057977859], + [4.1726472167750215, 51.64714551717034], + [4.15647807741225, 51.653817284749806], + [4.155928661114387, 51.654429221124936], + [4.159421887092443, 51.657903106733656], + [4.15772267789973, 51.659102795599956], + [4.156772230983284, 51.65905829301298], + [4.152125812665566, 51.65519128714205], + [4.137793163794031, 51.65740112615839], + [4.138593567192615, 51.65916773538488], + [4.146694108805452, 51.65942798356334], + [4.157257826298468, 51.66056289062429], + [4.157110170888294, 51.66225666913933], + [4.155960576790972, 51.66229516492408], + [4.1550156933580915, 51.66372511826494], + [4.152366021000867, 51.66393890096797], + [4.143044866586224, 51.66364527190318], + [4.137727719436847, 51.66178638675085], + [4.137574674053299, 51.66198458188368], + [4.143064369459132, 51.6638669821949], + [4.160061410392857, 51.66462631564673], + [4.160023525039386, 51.66516083807688], + [4.159266172384938, 51.66516578093076], + [4.159175360497734, 51.665552901625844], + [4.155729350430273, 51.66554081984559], + [4.1602620918548014, 51.667245270546616], + [4.159582644072048, 51.66951381608623], + [4.156018703820664, 51.67373872320339], + [4.153795889437228, 51.675750231115565], + [4.151947806235609, 51.676189841409155], + [4.149935168999638, 51.678374645891985], + [4.143016517661893, 51.67525350176287], + [4.138864043407726, 51.67675595308823], + [4.108878419835414, 51.67376686576498], + [4.1050568177567595, 51.67283726001515], + [4.10469604683043, 51.672003778781395], + [4.102231434753821, 51.670972878553236], + [4.100633861157199, 51.67116286431325], + [4.095336314407784, 51.66746885601163], + [4.096672111382804, 51.66658560200359], + [4.095486149562895, 51.66580670078605], + [4.0946950366354775, 51.66619623756637], + [4.094177091937179, 51.665823602594834], + [4.098254107946777, 51.66415395976395], + [4.100414347832117, 51.66313993895818], + [4.100234255046467, 51.662973306766325], + [4.0985064919936764, 51.66370484125994], + [4.098158061898147, 51.663382242086236], + [4.100208377888216, 51.662513980306514], + [4.10172374748547, 51.660781114117974], + [4.10529609658407, 51.65811105487019], + [4.101891941124931, 51.65398416237816], + [4.102624959509865, 51.65555383907028], + [4.100540390831282, 51.656146570896105], + [4.097639463067771, 51.65285886407099], + [4.096982688245496, 51.651915385379176], + [4.098901494883575, 51.650993557738076], + [4.101085888224114, 51.65307983556062], + [4.09656635222624, 51.64754322145668], + [4.090556144936525, 51.643968784927296], + [4.083859462912836, 51.642553123295286], + [4.071030266953958, 51.632489677550836], + [4.062819148497265, 51.62922568497234], + [4.057171759604865, 51.62805385242487], + [4.049834149075714, 51.63123223153517], + [4.038789084484251, 51.62733076385431], + [4.034667578095808, 51.62495400771621], + [4.029243803369461, 51.624603283637384], + [4.016092318281714, 51.620609328562864], + [4.01028525364085, 51.61792954948855], + [4.006899122819088, 51.617497254036465], + [3.991722482378079, 51.618169422800655], + [3.985917669358725, 51.61486033943545], + [3.9680597135593976, 51.6143498062258], + [3.9621513607476095, 51.616508185420486], + [3.9616705693572287, 51.61745676025101], + [3.9485762826538022, 51.6252742629185], + [3.9466293601975933, 51.624944216719726], + [3.9400546501361027, 51.6343848723117], + [3.9374152449254987, 51.63465285734919], + [3.938176599996744, 51.635827974505666], + [3.9354337115093614, 51.63603702033971], + [3.9298678885568923, 51.62963807995714], + [3.92827888827311, 51.628715990929685], + [3.9255257563244363, 51.62828096891473], + [3.926365061792814, 51.63055606894576], + [3.919359617662356, 51.63068503345757], + [3.917836185780684, 51.628618365879866], + [3.914377315528215, 51.62921124575434], + [3.870729854888587, 51.59703753390473], + [3.8705479406373255, 51.59708064108678], + [3.9141939338090714, 51.62924329249685], + [3.8969841717461544, 51.63224926160815], + [3.895476684587351, 51.63331741860807], + [3.90746330025961, 51.64000414446211], + [3.9194778301346704, 51.64651508705017], + [3.924819830466045, 51.64665145591489], + [3.9263926680086056, 51.64722604658306], + [3.9288653208430504, 51.64760581539353], + [3.9305785060121075, 51.647625011453925], + [3.933584791743334, 51.648400349539116], + [3.9332870900745927, 51.648536911546024], + [3.9328129175969457, 51.64875305526128], + [3.9321460906132684, 51.64834892326646], + [3.927277947973597, 51.647561494756516], + [3.926317629146774, 51.64770637154347], + [3.9261086641281, 51.64749107530704], + [3.9249476080681824, 51.64711753230748], + [3.9188128744029638, 51.646942299016416], + [3.9170700223565587, 51.64610061235535], + [3.9111067960409494, 51.64285713828252], + [3.9111395684533843, 51.64234897554238], + [3.9108575524149822, 51.64219485012497], + [3.9100889168771773, 51.64230342360663], + [3.9070135824867784, 51.64063034376138], + [3.898942415549406, 51.63635984783193], + [3.8979407594275624, 51.63672096511217], + [3.8935847695698786, 51.633524340572876], + [3.8903609756573925, 51.63280212186388], + [3.890122570815018, 51.6314439755652], + [3.8896512368839318, 51.63160033262605], + [3.890685457402093, 51.64319902990151], + [3.8855839757821506, 51.64856228601803], + [3.8872443332304556, 51.64987688017698], + [3.8849519931723235, 51.65640067238747], + [3.8808324225246484, 51.65743697411743], + [3.8756734419186523, 51.66316498201932], + [3.876836810559484, 51.66706792569276], + [3.8675831524223687, 51.673278272919454], + [3.8574360710384363, 51.678236558131815], + [3.848927736641377, 51.676217248953286], + [3.846677971656104, 51.67665400914313], + [3.8425410481120807, 51.678526683862486], + [3.8245082691763272, 51.683523821884535], + [3.8203954532674698, 51.684440410119315], + [3.8180138607248746, 51.68433113600943], + [3.8118392578488187, 51.68716875413838], + [3.812119075158375, 51.68736240600958], + [3.8181476132853063, 51.68469940619727], + [3.82056155068799, 51.68476166577084], + [3.8234643348253767, 51.68420341744915], + [3.825562095077539, 51.68764770261548], + [3.8246340983783584, 51.69092723818221], + [3.8175491522029588, 51.69596523513024], + [3.8132117479216054, 51.6972620013435], + [3.8074348631116783, 51.6972999014743], + [3.800201225203228, 51.696292618669126], + [3.79838630948496, 51.69678732899726], + [3.7933459702846797, 51.69566475041853], + [3.7895121986090405, 51.693433134957566], + [3.7862915336466756, 51.68895325788356], + [3.7876434214286565, 51.68801154449844], + [3.7930429303389914, 51.68969151313361], + [3.804219701366175, 51.69105863659797], + [3.806010884560359, 51.69018490566144], + [3.8056880418514583, 51.68993923009861], + [3.803944546347537, 51.690697873943975], + [3.793088742902014, 51.68932746882337], + [3.781957639212908, 51.68593457013463], + [3.770368551577017, 51.68075051119244], + [3.754307464992745, 51.67537242711059], + [3.7551421418696016, 51.67423338395412], + [3.758361647493319, 51.67529751300318], + [3.757244213009451, 51.67369003446848], + [3.749686701025214, 51.67240663148613], + [3.746088842640329, 51.67348692968734], + [3.735584913186472, 51.67154386967534], + [3.724596771771102, 51.668532361451696], + [3.725142369583232, 51.66615065853075], + [3.7235815925730567, 51.66583017365514], + [3.723595320838137, 51.66350378353562], + [3.7227169915661955, 51.66332700343171], + [3.723167371208578, 51.65597265347284], + [3.7244378202960062, 51.65541533558506], + [3.7294035406355115, 51.65511791478091], + [3.7292119694796413, 51.65451880698433], + [3.7283001895349615, 51.65441078404941], + [3.7274348776173936, 51.65032850070702], + [3.72223341790383, 51.65033779170421], + [3.722224399046873, 51.65033777396621], + [3.718955709135624, 51.65033135184202], + [3.719106489790596, 51.650944738588876], + [3.7161375569263164, 51.652543603192], + [3.7150558629056127, 51.653832754958216], + [3.716838818223195, 51.65519528367321], + [3.7211135986204473, 51.655333568306915], + [3.7225817289560497, 51.65597589994585], + [3.7223911517420643, 51.663218294943576], + [3.7194829253625397, 51.664975107812545], + [3.7137882598159693, 51.66595136158675], + [3.710208519371548, 51.666483771058175], + [3.6993321184097576, 51.671535628894645], + [3.6894891362314355, 51.678106547497535], + [3.68192107533248, 51.6877119685699], + [3.6789629071699843, 51.69842566161627], + [3.6792660646695188, 51.70712299990497], + [3.6816722764389174, 51.71227564462254], + [3.6887634710416877, 51.71986160856314], + [3.716285107712507, 51.736049463289426], + [3.7243006800231258, 51.73935084956781], + [3.7258079334706373, 51.737954566160106], + [3.710043322957473, 51.730608357704554], + [3.720279790325403, 51.73224620176585], + [3.737009650719115, 51.736078241930876], + [3.7289513867927986, 51.73602483149511], + [3.7268885597088706, 51.73732289559195], + [3.742173232229775, 51.73726036793115], + [3.7602148429999738, 51.74150488916225], + [3.763744746233576, 51.74255933867552], + [3.771261690889696, 51.74337756522029], + [3.789415886337565, 51.744108781168], + [3.7987183309818224, 51.743754715141016], + [3.813365431510482, 51.740538028661355], + [3.819838730749025, 51.74132527527885], + [3.8233653920689035, 51.74427384562044], + [3.823835368350041, 51.74653558207759], + [3.8221283307563922, 51.74751590889782], + [3.8228763686534157, 51.75008057679506], + [3.8254104777065, 51.75105700682814], + [3.8271051139979573, 51.75293644658922], + [3.8312436586562737, 51.75561681103225], + [3.8391938304208018, 51.75823060897665], + [3.8424772502866773, 51.75630501708531] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.08ad636f-a2be-446f-9f8f-03fb439230fd", + "properties": { + "statcode": "GM1680", + "jrstatcode": "2024GM1680", + "statnaam": "Aa en Hunze", + "rubriek": "gemeente", + "id": 271 + }, + "bbox": [ + 233930.49700000137, 543154.7159999982, 258967.08199999854, + 568446.5439999998 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.7898268514412585, 53.086307726329366], + [6.813944746074357, 53.07097158312735], + [6.814535534153284, 53.07059805818446], + [6.837170404695812, 53.05622843650471], + [6.843273029457793, 53.052344216842215], + [6.861287446519793, 53.04087401750008], + [6.8970879987378, 53.0180511930397], + [6.904620002668368, 53.013234534060274], + [6.907130511865872, 53.01162876557211], + [6.9071844553306425, 53.011594247198154], + [6.922171262907539, 53.00200466502825], + [6.934679925593372, 52.99399610385792], + [6.935684803872583, 52.99335254551784], + [6.927946226945897, 52.9921416136961], + [6.87232084905525, 52.98342061479271], + [6.85792401719698, 52.981158672017344], + [6.85463628712138, 52.980641845982], + [6.845879914372534, 52.97927005537118], + [6.839030956524213, 52.977959990042564], + [6.838959417210351, 52.9780596065378], + [6.814368707499926, 52.97048782694798], + [6.8127641313432505, 52.96999113207594], + [6.78875900417868, 52.96277466638819], + [6.7800595670338195, 52.961639665171404], + [6.72929562503722, 52.95492805381618], + [6.727711791699552, 52.95471976218551], + [6.731146483487787, 52.938829099009084], + [6.731422438998934, 52.93755502898778], + [6.724650933098302, 52.93730514901682], + [6.727293699034175, 52.91380443713475], + [6.728313429939113, 52.90667588910677], + [6.734699113456522, 52.8841022472765], + [6.736337070820103, 52.87869128858816], + [6.714563920384996, 52.868158816629915], + [6.6864989185626404, 52.87529912961526], + [6.6749857489992905, 52.905017205875694], + [6.666733851058938, 52.90944937310524], + [6.64170566320064, 52.91200067821972], + [6.625570705972414, 52.91280560945618], + [6.614877553043025, 52.91831141833219], + [6.5858143879013555, 52.9194679779469], + [6.5650712959811415, 52.9449807703264], + [6.561504801657726, 52.946652120768555], + [6.567226993926604, 52.95246365314024], + [6.569997288732658, 52.95767513815233], + [6.581265317042905, 52.96744906199222], + [6.582845678357264, 52.968009949134284], + [6.596043479000811, 52.97265798945351], + [6.595377792249751, 52.9762701346563], + [6.596484893819628, 52.979299193279374], + [6.599383102252871, 52.98151806384233], + [6.6041346796931455, 52.98289880751416], + [6.605701905019967, 52.98449399630125], + [6.607926180874753, 52.98941225256089], + [6.60794453784303, 52.98944080400504], + [6.607862970995843, 52.995352763441325], + [6.6115723254990035, 52.999574460278744], + [6.61172005319992, 53.00160646868516], + [6.6159836053447965, 53.00813418055041], + [6.620726897627961, 53.009265943750755], + [6.621846075361758, 53.0100560473267], + [6.621738524427908, 53.01217339313051], + [6.629760545612086, 53.01562456260244], + [6.632646181860323, 53.02203607447802], + [6.6297636834121505, 53.023715133018875], + [6.631221429428706, 53.02610524110129], + [6.648593305702451, 53.02633252710933], + [6.648009907200823, 53.028264098135416], + [6.644770984030536, 53.03915139994149], + [6.6405555933297675, 53.04162858189947], + [6.641532694289405, 53.043192594047866], + [6.643382712354556, 53.04699865071623], + [6.646477364691253, 53.0491239330361], + [6.6468340473281815, 53.050444014842824], + [6.647898372942868, 53.05096625868465], + [6.653786930423791, 53.055530599619615], + [6.662141794904087, 53.05617832937917], + [6.666936723889906, 53.05823555842289], + [6.664199233573127, 53.05992683774885], + [6.664525983129805, 53.06158990612621], + [6.669285696072735, 53.06322006169308], + [6.671599072150369, 53.06501703754428], + [6.669375572109787, 53.06560077510432], + [6.670211761613711, 53.06711597863694], + [6.664357774355648, 53.069147447132444], + [6.66641104039468, 53.07200396016789], + [6.666007798471796, 53.07215504399305], + [6.66358007578023, 53.071334062128564], + [6.6612171733747845, 53.07318837661482], + [6.662159720187751, 53.07502977190983], + [6.659982417804033, 53.074420905772385], + [6.654692951089619, 53.07825316817154], + [6.653988563090491, 53.08009584290007], + [6.64976769223415, 53.07956781113827], + [6.648855079743161, 53.08218859985099], + [6.6577742016664905, 53.08403025909362], + [6.661836130959141, 53.08198529869056], + [6.669187501173478, 53.080345146666176], + [6.670426370453447, 53.08010540867195], + [6.6785205688353635, 53.07682457535066], + [6.687493221056857, 53.07222731920288], + [6.692642727985358, 53.07018324504069], + [6.699014669789376, 53.06517356573486], + [6.705244941659807, 53.067658985053924], + [6.70629916735051, 53.06808043248095], + [6.711432974542642, 53.070113019186294], + [6.713687191958534, 53.06869691802191], + [6.715487305055639, 53.0694317489649], + [6.726138503570842, 53.07366591447388], + [6.727173662929845, 53.07322117286988], + [6.748211006180518, 53.08123278924803], + [6.750200535505793, 53.08178728887762], + [6.7493681559280105, 53.08363558781079], + [6.74787656121278, 53.08352851976346], + [6.745108216866957, 53.084690055703625], + [6.746004876737317, 53.08582919988749], + [6.757858841976423, 53.08940269814541], + [6.7619518366510185, 53.090544171311784], + [6.763279535529203, 53.09091479416917], + [6.76528532689175, 53.091495865881214], + [6.776509375691281, 53.09476066349912], + [6.7898268514412585, 53.086307726329366] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.a74ecd08-e1d5-4d19-af31-baa00ac4f4d5", + "properties": { + "statcode": "GM1681", + "jrstatcode": "2024GM1681", + "statnaam": "Borger-Odoorn", + "rubriek": "gemeente", + "id": 272 + }, + "bbox": [ + 244914.8147, 536262.8350000009, 266539.48319999874, 557380.5769999996 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.948411448291894, 52.982617897931355], + [6.956650442159329, 52.97553387161497], + [6.9567208747597435, 52.97547329507212], + [6.9632923008156276, 52.969820942595504], + [6.969586281565959, 52.96442721488398], + [6.970352656024164, 52.96376901054102], + [6.970362365005208, 52.96376067335316], + [6.978563518636568, 52.95671684965253], + [6.979860926479461, 52.95560423101138], + [6.986022412739283, 52.95031893425049], + [6.987880570255676, 52.948723216422046], + [6.995023711801554, 52.942587822183704], + [7.002899220414839, 52.9358148371443], + [7.009558647096978, 52.930093146101626], + [7.015697681079108, 52.9248156556931], + [7.02467071043704, 52.91986999620711], + [7.026854375416079, 52.9190370114188], + [7.04553112117777, 52.915915495723], + [7.039580572539965, 52.90756042830068], + [7.039539903031377, 52.90750373108063], + [7.039539874788632, 52.90750369192413], + [7.016562059012825, 52.8754461637716], + [7.014799274866757, 52.87298657872813], + [7.013154293887576, 52.87299261774419], + [7.007588968260933, 52.87301129991196], + [6.966638107873116, 52.863868372546825], + [6.9644948156767645, 52.86494852891784], + [6.961449770906025, 52.86428240558378], + [6.957615265270796, 52.86190462566814], + [6.9520754351421505, 52.8553160469615], + [6.9518881625081175, 52.85218790587421], + [6.949912809355614, 52.84880328402723], + [6.919245356741014, 52.83835357857342], + [6.910925435703256, 52.835401512805824], + [6.884943909903723, 52.82450059041793], + [6.871417189982958, 52.82005088301917], + [6.86900190505216, 52.81929376003629], + [6.865063944722631, 52.81581593439449], + [6.858805411629693, 52.81379300755872], + [6.855622115802305, 52.811577439053906], + [6.8498057961030945, 52.804633945748336], + [6.840713789178109, 52.81017635929614], + [6.8391170277995235, 52.81219865346217], + [6.835878723323475, 52.81420575770716], + [6.833451046226474, 52.81570526302411], + [6.826940729476199, 52.819752258847565], + [6.809867581370754, 52.8288187260598], + [6.767422024119617, 52.84905992531837], + [6.766676366971102, 52.84941500264188], + [6.765601037739759, 52.849925624402005], + [6.7691398790776365, 52.85147213890904], + [6.754086497191513, 52.85853227352989], + [6.753008153605934, 52.859040367384914], + [6.753400845305787, 52.86158369725058], + [6.75247740359292, 52.862958713977], + [6.752322833706209, 52.86319061782602], + [6.750997910793903, 52.86513395971933], + [6.747294355076603, 52.87030487937273], + [6.745106179814873, 52.871850518626225], + [6.740446462252905, 52.870984133455075], + [6.737492190954101, 52.87490638564882], + [6.736337070820103, 52.87869128858816], + [6.734699113456522, 52.8841022472765], + [6.728313429939113, 52.90667588910677], + [6.727293699034175, 52.91380443713475], + [6.724650933098302, 52.93730514901682], + [6.731422438998934, 52.93755502898778], + [6.731146483487787, 52.938829099009084], + [6.727711791699552, 52.95471976218551], + [6.72929562503722, 52.95492805381618], + [6.7800595670338195, 52.961639665171404], + [6.78875900417868, 52.96277466638819], + [6.8127641313432505, 52.96999113207594], + [6.814368707499926, 52.97048782694798], + [6.838959417210351, 52.9780596065378], + [6.839030956524213, 52.977959990042564], + [6.845879914372534, 52.97927005537118], + [6.85463628712138, 52.980641845982], + [6.85792401719698, 52.981158672017344], + [6.87232084905525, 52.98342061479271], + [6.927946226945897, 52.9921416136961], + [6.935684803872583, 52.99335254551784], + [6.936610606468505, 52.99275957555698], + [6.938411828849792, 52.99121198224346], + [6.942927258234717, 52.98733178557014], + [6.948411448291894, 52.982617897931355] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f2096683-f1b3-4c24-af8b-830e4cb7f44b", + "properties": { + "statcode": "GM1690", + "jrstatcode": "2024GM1690", + "statnaam": "De Wolden", + "rubriek": "gemeente", + "id": 273 + }, + "bbox": [ + 211021.1259999983, 514322.3359999992, 232333.3740000017, + 535063.5007999986 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.3458032219072225, 52.78841820802051], + [6.34822059545524, 52.78811435139633], + [6.350464065564432, 52.78859037770805], + [6.351029968204546, 52.787650048277506], + [6.352081796755126, 52.78784123106151], + [6.353345436906951, 52.785410452095796], + [6.349477761940366, 52.78340508073835], + [6.350079520575916, 52.782826184024955], + [6.351245460139165, 52.78327097068347], + [6.352284174531704, 52.78238747034229], + [6.353734107858142, 52.782489044652735], + [6.353755765557209, 52.7820460122727], + [6.355499523546376, 52.77951591766417], + [6.355994822777503, 52.780338809874976], + [6.3588737205929045, 52.78176635785757], + [6.3591676102759696, 52.782812820278565], + [6.360900345136604, 52.78323316011405], + [6.363330345282919, 52.781968984905625], + [6.367027379170586, 52.78108262174869], + [6.3680544635909015, 52.78135346728646], + [6.3698573112399135, 52.78026579638837], + [6.3706769793068245, 52.78076897106476], + [6.37206784397086, 52.78000195417472], + [6.374561903987574, 52.781531922303735], + [6.373212925239908, 52.782322788118854], + [6.377916494139816, 52.785203618946895], + [6.386823890116883, 52.77995615312965], + [6.387367238945209, 52.77903152491646], + [6.387996598339619, 52.779345109008986], + [6.389824724545662, 52.77895945846356], + [6.3915281297233, 52.779573772041154], + [6.394041748838612, 52.77744853008682], + [6.400575992469621, 52.78086870414457], + [6.40730529859626, 52.78553249089254], + [6.410238683792366, 52.786345414425455], + [6.410293775610854, 52.7871096369933], + [6.412947842849398, 52.78831815121765], + [6.416376413794879, 52.78638733074957], + [6.416653472021513, 52.78172928777315], + [6.418923056590992, 52.78165680745051], + [6.420440437482623, 52.780913820199906], + [6.4216017168730835, 52.78107813267182], + [6.42260164163295, 52.78248589765316], + [6.423762617364236, 52.78285382737772], + [6.42753040081483, 52.782501366050276], + [6.428050770926135, 52.783709979000534], + [6.43199766120696, 52.784563784827895], + [6.432566415428795, 52.7864685010229], + [6.430011641863058, 52.78716537348351], + [6.4295733016808345, 52.788705111291726], + [6.433143869291489, 52.790767861419745], + [6.436655625802485, 52.79146450643968], + [6.436982390419502, 52.791996707531695], + [6.446920324103504, 52.78588928878102], + [6.446490696165397, 52.781541948991695], + [6.44621432155656, 52.7777279413256], + [6.446152327384421, 52.776095508863335], + [6.442976719943697, 52.774485569334985], + [6.440598271995176, 52.7729134984279], + [6.436458806109868, 52.77039860613263], + [6.4315236620353895, 52.768623731895715], + [6.413890812052816, 52.76605963336163], + [6.410140092926471, 52.76488723848795], + [6.416144544420277, 52.755317322299696], + [6.419403169082017, 52.75599439747539], + [6.426285695234019, 52.75142284201991], + [6.42052292115733, 52.748227202814505], + [6.42246159600392, 52.745139283728676], + [6.423192572975428, 52.743000249138305], + [6.415406773657657, 52.74083352608262], + [6.421325458438316, 52.731415402548244], + [6.40680249661282, 52.72841017368421], + [6.41324668390117, 52.72056066296979], + [6.414636889194582, 52.72022046928635], + [6.414195687476045, 52.71940443722804], + [6.414365058676333, 52.71726127631449], + [6.413202879372251, 52.71620889059579], + [6.409933637135117, 52.71429541117861], + [6.407176173315153, 52.713824559313494], + [6.4055888014799445, 52.71258292706353], + [6.404726219497979, 52.709121223033264], + [6.403598844961741, 52.705998849278714], + [6.404749643664279, 52.7046753312857], + [6.407167605283564, 52.706795573220205], + [6.416222095684018, 52.703463819866116], + [6.419665888455159, 52.70165544143451], + [6.4265186685217115, 52.70477853086036], + [6.435646706495533, 52.70609603959004], + [6.451141649943326, 52.706981635824356], + [6.449875745577699, 52.70527485050281], + [6.45131163366839, 52.69940576813921], + [6.448676610115438, 52.693787622932234], + [6.46281456168103, 52.69520294339805], + [6.4633194632857816, 52.69330766406287], + [6.474699121484786, 52.6942075691267], + [6.485980361954423, 52.693632741953316], + [6.484851974050982, 52.68424572065909], + [6.492925948738856, 52.68358693223582], + [6.492573833598246, 52.67597084758156], + [6.49977395272947, 52.675642890266616], + [6.499551791831072, 52.6735540433655], + [6.502417931732619, 52.67346002191437], + [6.530555815409529, 52.67247238161916], + [6.530069144772385, 52.66461544141527], + [6.52938067357998, 52.65450731166292], + [6.529283780702445, 52.654452758278374], + [6.513861463898781, 52.64629376771876], + [6.514013777540985, 52.645272014794784], + [6.5178657598990934, 52.61891792348843], + [6.518021880965973, 52.61798858461203], + [6.5182469839733255, 52.61646819743371], + [6.5186041906933685, 52.614087840754515], + [6.5120268421640475, 52.613649665850154], + [6.50465358825712, 52.6170152937687], + [6.500009912891226, 52.617969705578545], + [6.49153488469897, 52.61917028239179], + [6.48389550660296, 52.61907656697034], + [6.480581221693939, 52.61815476673233], + [6.478016185958721, 52.6186313023339], + [6.474200364375848, 52.62074498738537], + [6.472368731049734, 52.624579261021765], + [6.469965169490716, 52.62498568091199], + [6.464035318725264, 52.623875782786946], + [6.4607075271453915, 52.61699142760377], + [6.453476975385101, 52.61395567145393], + [6.443032863584334, 52.61619549638951], + [6.442345351937081, 52.61580356832004], + [6.438410263827006, 52.61707450501806], + [6.434934370169245, 52.61928554399555], + [6.434471419511146, 52.62045263820121], + [6.435601399497361, 52.62085314249439], + [6.435639303764576, 52.621570118858756], + [6.4338030643784965, 52.626409209750264], + [6.432992225603014, 52.62776504533031], + [6.4313261515715485, 52.62836956005493], + [6.428176485008926, 52.628188499183295], + [6.426036660433751, 52.62651255391242], + [6.426886440704144, 52.62463841364328], + [6.421609580579085, 52.62304466138477], + [6.4188084957645675, 52.619023196069925], + [6.416150181103323, 52.618667685391415], + [6.412049107736523, 52.619868522530346], + [6.411164158202961, 52.620823961530725], + [6.409502226821514, 52.621733256921], + [6.4062888732639385, 52.62056414076659], + [6.405893772310601, 52.61870881918642], + [6.406858313615219, 52.617780995466426], + [6.4037202548036465, 52.616254218100906], + [6.40112350045989, 52.61625960092314], + [6.396035213390098, 52.617787962008485], + [6.39384557965928, 52.61723347061954], + [6.3915222146181065, 52.61451941138814], + [6.386778182706293, 52.613619992426514], + [6.384084204030553, 52.61225014869453], + [6.38204825941548, 52.615645496110346], + [6.380252686628686, 52.61502141370954], + [6.376551951970085, 52.61689334195464], + [6.376057763719629, 52.61780972231825], + [6.377239350738519, 52.620013453821045], + [6.3736183251182235, 52.62332641122792], + [6.375550335038574, 52.62615574557861], + [6.3752058947120185, 52.627408128161534], + [6.374137225875314, 52.62900978963367], + [6.372276194031979, 52.62949897002479], + [6.370981664561336, 52.63166020083883], + [6.369204207769536, 52.63219152901083], + [6.368602558199529, 52.633525822733], + [6.369777887808873, 52.63500196247094], + [6.3664079412946935, 52.63745336823754], + [6.363907090116774, 52.63837603324268], + [6.3641023334117754, 52.64314167714593], + [6.359440778852816, 52.64551866770863], + [6.353476645108288, 52.646280646135246], + [6.351726150441187, 52.64830455671665], + [6.343596313948654, 52.65115780061446], + [6.3417196164592164, 52.65368559352074], + [6.334002897046376, 52.65469886288426], + [6.331200772252643, 52.65716113568182], + [6.327797712082432, 52.65869274594001], + [6.326340171654624, 52.658958165972216], + [6.32588363516166, 52.65970876890838], + [6.327224595200471, 52.660446807063785], + [6.325871335468251, 52.661154530180696], + [6.325857254160353, 52.662809812832926], + [6.3276203506465425, 52.663717666444185], + [6.328516813302949, 52.665378105782885], + [6.329290121716742, 52.665398458295165], + [6.328004446000201, 52.666131656029435], + [6.3287114652180545, 52.666738531138684], + [6.3269381667911535, 52.66920694656369], + [6.32252931668311, 52.67043781742093], + [6.319587166594433, 52.67039797519046], + [6.318960577669068, 52.66972123985545], + [6.316740213285884, 52.66989528755993], + [6.316816293861136, 52.66949348253278], + [6.314957066778227, 52.66942457250513], + [6.314821762135714, 52.66875079397737], + [6.31387525525934, 52.668688422294565], + [6.314103204466315, 52.66805816884363], + [6.312080466000435, 52.66805545919335], + [6.311659698958236, 52.66733871442144], + [6.3096703738215405, 52.66675293159784], + [6.3058258401891845, 52.66623925016586], + [6.302621769081127, 52.667346233027814], + [6.301889387898437, 52.66699686407892], + [6.30228807662636, 52.66642672274258], + [6.299676185312037, 52.66649693663593], + [6.299688873554443, 52.66583072375248], + [6.2975629936264665, 52.666369434185995], + [6.295195624925863, 52.66357751374167], + [6.295547777955921, 52.66232221252587], + [6.291946865009482, 52.662437314664515], + [6.28905617588351, 52.66324916190038], + [6.288269668275239, 52.663887389773514], + [6.287486929725603, 52.66345260092495], + [6.287226183041432, 52.664180645275486], + [6.285052513019399, 52.66539435294091], + [6.285490726718195, 52.66699179000144], + [6.284530862503196, 52.66715302335817], + [6.282704902858257, 52.6682192970857], + [6.2790563942533755, 52.66905125691686], + [6.277905351934542, 52.668539358943484], + [6.277350399376807, 52.6689305049876], + [6.276253934660228, 52.66731311349204], + [6.274513303199958, 52.66689796281049], + [6.2733389092962035, 52.66491016015245], + [6.270067118640723, 52.66479411548926], + [6.265895500735187, 52.666780288866], + [6.2655011962008285, 52.667987742818426], + [6.266325296380528, 52.668257854440206], + [6.266456671668147, 52.67099580198753], + [6.268575952309942, 52.67171477186724], + [6.269045591928148, 52.673575713300515], + [6.2724890031733, 52.67319817145729], + [6.2726684487901325, 52.673742390191634], + [6.269814719809341, 52.68222796961512], + [6.275161162376129, 52.683447003151876], + [6.2835241995002304, 52.68249190237697], + [6.283842343638397, 52.6841979457732], + [6.281740653937842, 52.68447351041674], + [6.2754232945992, 52.687742974669256], + [6.2758941607088286, 52.69030956508074], + [6.285011970390224, 52.689705157134895], + [6.286700161910086, 52.69906929389237], + [6.275807626733328, 52.69546342650345], + [6.276325684023179, 52.69800419706907], + [6.279634872556641, 52.69961184066815], + [6.277951438967324, 52.701051121683776], + [6.27669938353887, 52.700586118185235], + [6.277213828411028, 52.703359789828184], + [6.273802844956174, 52.70328156155905], + [6.274255173936705, 52.70618308846203], + [6.268628000189447, 52.70554371745503], + [6.2531197704384995, 52.70528154907599], + [6.24897551694279, 52.70822096264946], + [6.24255593789905, 52.70681332977144], + [6.2379279272082435, 52.705770563722155], + [6.233328108328243, 52.70665906493178], + [6.224961119213569, 52.703230209406996], + [6.216903585120546, 52.70315773387874], + [6.216633925991896, 52.709594395229495], + [6.216522747998598, 52.71270708474471], + [6.2163198068994046, 52.71860403463615], + [6.217623491702051, 52.721299679847206], + [6.234576271420325, 52.740600769031836], + [6.231438771263551, 52.741708583385496], + [6.236637968808267, 52.74390321872144], + [6.241555040113076, 52.75065296759079], + [6.247411821099697, 52.75413576580287], + [6.252027523793202, 52.758310595386334], + [6.254670891412684, 52.75759710594158], + [6.259614242112008, 52.757957975211326], + [6.261747093037881, 52.757604491403974], + [6.268555721332249, 52.758405949127685], + [6.281479572073031, 52.76292186312323], + [6.297492208753055, 52.766090110042136], + [6.2990490381329955, 52.766836766018905], + [6.298509868735964, 52.767941865841166], + [6.299181053578685, 52.76859402708717], + [6.29303711676799, 52.77847187386551], + [6.29562481333434, 52.78078683794383], + [6.297054649739499, 52.78092852838506], + [6.298380438162721, 52.78201590362594], + [6.297490846538288, 52.78255992381585], + [6.300567866934319, 52.78585902163362], + [6.299530559723842, 52.78706509806483], + [6.300784096941656, 52.78730433852301], + [6.300541786269682, 52.787727920565594], + [6.302184248755358, 52.7884959814648], + [6.3026091763850705, 52.78952373721437], + [6.301207282314006, 52.79097364599143], + [6.3052991999604675, 52.791550599655864], + [6.306924597458981, 52.79387102151582], + [6.309400896712197, 52.79532161532612], + [6.320847373213464, 52.79538852174581], + [6.340680770717834, 52.79897782774493], + [6.34591914404099, 52.79894695067741], + [6.34624459473963, 52.798945179257146], + [6.35365815772852, 52.79891161832078], + [6.354596496550821, 52.795198470152364], + [6.352479584407605, 52.794534855300256], + [6.350439358617984, 52.79183947593708], + [6.342956757076093, 52.78969272985704], + [6.3458032219072225, 52.78841820802051] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.6dfa6150-a3d2-42a2-88bf-6a66475c976f", + "properties": { + "statcode": "GM1695", + "jrstatcode": "2024GM1695", + "statnaam": "Noord-Beveland", + "rubriek": "gemeente", + "id": 274 + }, + "bbox": [ + 33485.01999999955, 394351.989, 51856.295099999756, 403034.2873999998 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [3.779522059212001, 51.54967152380409], + [3.7783940221483165, 51.548632216246816], + [3.7717428077855693, 51.551350177063306], + [3.772644692303971, 51.55199870663026], + [3.779522059212001, 51.54967152380409] + ] + ], + [ + [ + [3.807792300226757, 51.605521683897635], + [3.809770840275218, 51.60501802086904], + [3.8126620030493013, 51.60547247171068], + [3.820194471863241, 51.602484481999575], + [3.8348326409598346, 51.60570858180661], + [3.8351454865997208, 51.60507451236727], + [3.8389250852362413, 51.60505516375803], + [3.8389311980829306, 51.60585795719813], + [3.8401131746068953, 51.604422402043824], + [3.8411400326726466, 51.60359410763214], + [3.846708954250218, 51.603550953354635], + [3.848828768713639, 51.604298922775335], + [3.8502964999944833, 51.604092407829], + [3.850299188636045, 51.603775174366774], + [3.8488274359523764, 51.60388834852602], + [3.8469065888692957, 51.60314946617899], + [3.842796014388514, 51.60316321382052], + [3.841541887033623, 51.60275110671977], + [3.8422553991725445, 51.60196694784276], + [3.8429656286044, 51.602167787102005], + [3.845353253736576, 51.60215170967964], + [3.8463415228174362, 51.602548262467266], + [3.8505499198309967, 51.60242964778189], + [3.8509838658091127, 51.60372908726006], + [3.851512053532215, 51.60350912989938], + [3.851427176022018, 51.60210984280367], + [3.8559090533849907, 51.601015764427736], + [3.861937966238743, 51.60018492382671], + [3.8687199717281704, 51.59572655391111], + [3.8705479406373255, 51.59708064108678], + [3.870729854888587, 51.59703753390473], + [3.8688960457572237, 51.59559860959062], + [3.8732501416582723, 51.592332584464266], + [3.8758785337268042, 51.58923908291811], + [3.881043310276465, 51.58095160108109], + [3.8881515831720495, 51.5750262986289], + [3.88899392894763, 51.57440786849853], + [3.890462981308563, 51.57466572212848], + [3.891348381218719, 51.576271698864375], + [3.8916786504589034, 51.576274514121735], + [3.892513285772702, 51.57458498774792], + [3.894293003679069, 51.57457664207122], + [3.8942008315478414, 51.57433796178248], + [3.8921358115077287, 51.57425734768941], + [3.8887667166880924, 51.573589518022665], + [3.889325655625103, 51.57221213155105], + [3.892838546045362, 51.57266430444099], + [3.893700741227082, 51.57321571537956], + [3.8939783724771475, 51.571730150084896], + [3.8935334614240387, 51.57162909810886], + [3.893078425616546, 51.57241752549215], + [3.892387154809178, 51.57221333694932], + [3.8933032399250806, 51.56835924791449], + [3.896589044764091, 51.56427272399121], + [3.897645054679142, 51.56356610046947], + [3.898843151973506, 51.564260786772614], + [3.8996241812512484, 51.56323355392421], + [3.896935686898231, 51.56264885503101], + [3.896897370336318, 51.55997456243874], + [3.891986938554215, 51.55798716495549], + [3.8726615304671097, 51.55524563656329], + [3.871514569063864, 51.553481047994055], + [3.8714468293663296, 51.55206719317633], + [3.864642364972472, 51.54680429215134], + [3.8654951952085743, 51.54484411623479], + [3.8680004629560267, 51.54493608101804], + [3.8710243852173876, 51.54464746320258], + [3.871015514077384, 51.54444421647599], + [3.867988319954833, 51.54471846320556], + [3.866053708879968, 51.54453682381181], + [3.8652122710931516, 51.54415025087773], + [3.865926018552857, 51.543853828179344], + [3.868489894462971, 51.54386538648822], + [3.8684756468411203, 51.54374817539698], + [3.866227315222451, 51.543347047154484], + [3.8668595167194115, 51.54170793840088], + [3.8662753292240915, 51.54163132535743], + [3.865115824578592, 51.54147703372124], + [3.864572470572285, 51.54300179381064], + [3.8616751126872515, 51.54304758157623], + [3.8616124417733864, 51.54332396005881], + [3.862199911047776, 51.543447203572185], + [3.8620390310470714, 51.54412054256411], + [3.859092507732385, 51.54384939016155], + [3.8588625730434805, 51.544387782377505], + [3.853738853898012, 51.544417399894236], + [3.8467907823095615, 51.54918194602272], + [3.8445647667615677, 51.54974140941011], + [3.844523171584952, 51.551510899962814], + [3.836801737898219, 51.55591937626415], + [3.832880983140283, 51.556303984352645], + [3.82557253578787, 51.55553998901141], + [3.8253100158736415, 51.55570700789122], + [3.8251821963353088, 51.55570745792526], + [3.8247956970594505, 51.55508256508851], + [3.8175816242241094, 51.55393227569228], + [3.817133682767763, 51.554074827450094], + [3.8157945020451582, 51.55370414687524], + [3.8152004309360383, 51.55359672029239], + [3.814989179349047, 51.55350564085846], + [3.8151039847542485, 51.55335549186149], + [3.8143259623248293, 51.55314437492502], + [3.813365609435055, 51.55260553344109], + [3.8135423428643715, 51.551859932274574], + [3.8130922700361696, 51.551449147806004], + [3.810767939080766, 51.55444984846537], + [3.8091750677024585, 51.554053617223616], + [3.8115244040401097, 51.55077002043966], + [3.810150952691676, 51.55061172051481], + [3.807527369687299, 51.55291033880676], + [3.8074451771374425, 51.553336629658176], + [3.8072034651105855, 51.55344615999215], + [3.807029152649705, 51.55417661001973], + [3.807332431358026, 51.55442858474641], + [3.8072424201180306, 51.55457224173372], + [3.805696714332437, 51.55459282709924], + [3.805524021550031, 51.55466534914903], + [3.8053544621586064, 51.554951077724326], + [3.805108669927807, 51.55495301302554], + [3.8050773128194764, 51.554816848363714], + [3.8049761862917317, 51.55481547196175], + [3.8049767070873877, 51.554656071639855], + [3.805160437236511, 51.554635089739456], + [3.8052190452213215, 51.554501382799145], + [3.805086925480008, 51.55443492853659], + [3.810114826088914, 51.54980540075397], + [3.80886715586715, 51.5498542266388], + [3.8078271960551975, 51.54927456367177], + [3.805925608360751, 51.548026444509986], + [3.803546636261072, 51.54777404457084], + [3.796681761415785, 51.54928131327909], + [3.787397286384477, 51.55053585023804], + [3.7870412320039177, 51.550033508336895], + [3.7750926125138484, 51.55440848945398], + [3.761858344450132, 51.5550158572031], + [3.761871858941751, 51.554478230254105], + [3.760364231036818, 51.5550843317368], + [3.7364262671685555, 51.54680874232808], + [3.729974547992732, 51.54214726604036], + [3.7147770883943547, 51.535493880611], + [3.711911339071817, 51.533428702742995], + [3.7058581018217907, 51.52668012566751], + [3.7044983354688434, 51.52602495310288], + [3.702975015353297, 51.526133010212824], + [3.7004049755481425, 51.52773590730582], + [3.69837396598125, 51.534499794128536], + [3.7016982608309, 51.54178470973615], + [3.6989158605662347, 51.54730838038897], + [3.688459395171357, 51.55609096913311], + [3.6918033121331666, 51.557730076590424], + [3.695996892367667, 51.56210008923298], + [3.700659109099328, 51.56636023399642], + [3.700200143044818, 51.5665914778192], + [3.6979162727372317, 51.56519491130527], + [3.695332931479556, 51.56213567835284], + [3.6920001629608445, 51.55860956665327], + [3.691243010529195, 51.558883721797294], + [3.6888266434868933, 51.55782147990695], + [3.6894185655502234, 51.557096095369744], + [3.686355537038103, 51.556910242445625], + [3.67783555246916, 51.56059913095908], + [3.6718787214406152, 51.56465916164221], + [3.663765991189206, 51.56719865219851], + [3.6550354499554816, 51.56930966509906], + [3.6532860992814475, 51.570024028108485], + [3.6513059736592575, 51.57192801303422], + [3.6499808094951653, 51.57476206191355], + [3.650072348677298, 51.576370841902154], + [3.645756960220243, 51.58144101164711], + [3.6439556620382363, 51.58497168258331], + [3.64433394560413, 51.58658490321418], + [3.6464699709362836, 51.587278768554434], + [3.6457340574278807, 51.58900846433711], + [3.6408762153182335, 51.588435935230045], + [3.6349134849381066, 51.58689246651456], + [3.6336233932019217, 51.589397434756414], + [3.6667812316615067, 51.59522951588254], + [3.6807537536860395, 51.60009801986406], + [3.683126776438492, 51.600763151755224], + [3.6846394480441016, 51.59777713892007], + [3.6880248303141516, 51.598500958810675], + [3.688363418174421, 51.60016597856763], + [3.6898215785552293, 51.60001564880138], + [3.689598974561824, 51.59796959252421], + [3.6929239696861975, 51.59775822303568], + [3.699284270989939, 51.59942166121634], + [3.700241059235872, 51.59815287019861], + [3.708441774352298, 51.59493387871419], + [3.71071833664927, 51.594761281648736], + [3.7193081705732407, 51.595656518677046], + [3.7196457869070207, 51.595368980896374], + [3.713278646026182, 51.5943358894411], + [3.7147443897178, 51.59189799559705], + [3.716751264070159, 51.59140549255976], + [3.7205684090526168, 51.591771086573104], + [3.720452039236123, 51.59298473663954], + [3.726344284763024, 51.59232403365144], + [3.730053109947036, 51.59267893674359], + [3.73682388994779, 51.594994720651684], + [3.741722083261268, 51.59440707077862], + [3.7448591228375756, 51.596934327303465], + [3.7485890502623334, 51.59743479590873], + [3.7592696252269167, 51.59708965314138], + [3.7615393169078946, 51.598982046479684], + [3.7612015878855756, 51.59961308870105], + [3.774459722546345, 51.59718924164825], + [3.7764519003606845, 51.59814294592659], + [3.778889825743431, 51.6011913601749], + [3.7805675770749434, 51.60193595800869], + [3.7880013324496393, 51.601948972329005], + [3.7947930974240682, 51.60273543849844], + [3.796546890407768, 51.60423912204828], + [3.7980545190561266, 51.604272286773714], + [3.7994426060974993, 51.604921986833354], + [3.799257083237173, 51.605355175624595], + [3.800489172447354, 51.605411812978275], + [3.807792300226757, 51.605521683897635] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.604812de-54bd-4555-962c-11413f15af1d", + "properties": { + "statcode": "GM1696", + "jrstatcode": "2024GM1696", + "statnaam": "Wijdemeren", + "rubriek": "gemeente", + "id": 275 + }, + "bbox": [ + 129985.48800000176, 464251.5, 138488.9387000017, 477510.9789999984 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.06487595987539, 52.2782653409327], + [5.077081952593318, 52.277976609132836], + [5.084615517147124, 52.2794075046108], + [5.087704173164079, 52.281684925197624], + [5.1020658065774205, 52.27989083673558], + [5.102928750292479, 52.277649277666995], + [5.108444307961027, 52.275642442276656], + [5.119151491502531, 52.273537999591156], + [5.120534179252908, 52.27136251993024], + [5.125574058886237, 52.260217641492325], + [5.127331432433582, 52.25957856600319], + [5.132743274158706, 52.259736200389], + [5.136499531160265, 52.25958304676778], + [5.136915750362494, 52.253953286143485], + [5.139604521058461, 52.254014789163705], + [5.140047962090094, 52.24577423422218], + [5.142277247732326, 52.243316840483054], + [5.1420201931355995, 52.239312581426496], + [5.141326534647375, 52.23827318084952], + [5.141361923359499, 52.236847326702886], + [5.141791303596617, 52.22549347150058], + [5.140255161968094, 52.22464350046464], + [5.1402325651808285, 52.22453595670496], + [5.138515909733455, 52.22466918752976], + [5.138520214037505, 52.224590238284506], + [5.1279446949181215, 52.224403821760355], + [5.128062622963745, 52.22238339383047], + [5.129955070615952, 52.222392400462994], + [5.130008318037192, 52.221491024865315], + [5.123309836883476, 52.22138884743965], + [5.122336932670941, 52.220814563245064], + [5.1225228597308945, 52.21993240195342], + [5.122655394909256, 52.219650278409844], + [5.12252675737762, 52.21882509544609], + [5.126958663187439, 52.21740958118843], + [5.12841883344888, 52.21683812197528], + [5.128403344278031, 52.216733577090466], + [5.133148921493548, 52.21446086751699], + [5.133943143298605, 52.21429483201144], + [5.137575826581924, 52.210975566638496], + [5.139511124568834, 52.208380589053135], + [5.139739672234561, 52.20809706536181], + [5.139828257949978, 52.20798031226594], + [5.1399547588339765, 52.20801802958732], + [5.13998275530263, 52.20828812006977], + [5.141106529303212, 52.20847711769103], + [5.14144116573192, 52.20804946092097], + [5.142015554294127, 52.208166328445145], + [5.141788203575613, 52.208599638425056], + [5.1424360229712205, 52.20870695847675], + [5.142512039326159, 52.20780360931584], + [5.1405808667323045, 52.207287311309955], + [5.142441993185737, 52.204967553456015], + [5.145611634175332, 52.20050443748605], + [5.145702971575385, 52.19788545143484], + [5.145120063580179, 52.19661562738459], + [5.141546170822544, 52.193644793738464], + [5.141078807249278, 52.19316222189027], + [5.1358918156891935, 52.19030637434006], + [5.129204238837833, 52.18737708370527], + [5.121939002961221, 52.18558027412205], + [5.124110587860274, 52.18082739193829], + [5.121412578349918, 52.18095275420026], + [5.115311140794645, 52.179816286945425], + [5.078655973936567, 52.17298568960246], + [5.046463540806306, 52.16592911111719], + [5.041591768114565, 52.18375152125596], + [5.032503227235234, 52.184113407909216], + [5.033764727818623, 52.18616371243843], + [5.034977237777944, 52.18680295477805], + [5.035584478152012, 52.19097460661613], + [5.036646304663575, 52.19373330517519], + [5.038134078369397, 52.19516317259551], + [5.0372042124292, 52.196847585433936], + [5.037124708899609, 52.19805270908921], + [5.03097211656894, 52.19876407653524], + [5.027942336311307, 52.19995886379602], + [5.02606126206141, 52.20137396151108], + [5.022769094872558, 52.201534187645215], + [5.021292959948611, 52.20188574324995], + [5.021384346759376, 52.20203661020717], + [5.022935402401035, 52.20170948278442], + [5.02245201851737, 52.20222550257094], + [5.022031667328018, 52.20238321089819], + [5.0215867424788145, 52.202475227948945], + [5.021603895174345, 52.20254198948837], + [5.022686429252025, 52.202235970130516], + [5.023025933654335, 52.20203897830424], + [5.023101083559321, 52.202753555618834], + [5.022473496648429, 52.20267384205183], + [5.022621035919692, 52.203941462902755], + [5.023432856489143, 52.20382839038356], + [5.023315078621092, 52.20305084117694], + [5.024996261625613, 52.20284389398545], + [5.025034699847247, 52.20327761211267], + [5.025455058876333, 52.2032793003813], + [5.025599861709452, 52.203981824255756], + [5.036649899088372, 52.20213798678062], + [5.037421020948798, 52.20496451273438], + [5.035316237293976, 52.205232595331644], + [5.036444743340167, 52.20956397308381], + [5.036443697987681, 52.209564066150186], + [5.033400586871716, 52.209836231866745], + [5.034353826644375, 52.21311746065018], + [5.033729681766694, 52.213123036579134], + [5.03378795620158, 52.21371399528586], + [5.036742066341113, 52.21366335971952], + [5.037242932273548, 52.21418861501893], + [5.035329562331759, 52.214462266119924], + [5.035683425542503, 52.21512465889784], + [5.036909314691437, 52.21515572262357], + [5.037118902671438, 52.21659647597782], + [5.035848998815417, 52.217529137417934], + [5.0366656037606194, 52.22436015414485], + [5.039211791959226, 52.22394451884435], + [5.039362948744495, 52.22440708986169], + [5.041907180101372, 52.223993057985815], + [5.041922574671635, 52.224062218053724], + [5.042632502235691, 52.22386555048864], + [5.042795657596923, 52.224039510469424], + [5.0419839406689375, 52.224326650323896], + [5.041928838430628, 52.22408867873139], + [5.039873206791377, 52.22438732481002], + [5.036964891735808, 52.22478895076328], + [5.037101783319567, 52.22534164886803], + [5.038730558437262, 52.22517941526975], + [5.041685795058564, 52.22823451256517], + [5.0424844549077035, 52.228779883387496], + [5.041144619292125, 52.22932344560152], + [5.0412563158386305, 52.22950610265398], + [5.040696513245002, 52.22956745743136], + [5.040545488647116, 52.22984196270607], + [5.041428705863142, 52.230077863489896], + [5.041585570519996, 52.230888222961525], + [5.042313433398877, 52.2305316776763], + [5.056224256550338, 52.234978666800934], + [5.0557895493840075, 52.23521359561279], + [5.05676173400347, 52.23559283786208], + [5.0574084113160085, 52.23524752679058], + [5.05771279285552, 52.2353425884963], + [5.056901999339825, 52.236522344186746], + [5.045996318642128, 52.24322054981528], + [5.0464429884441815, 52.24872509055249], + [5.045258112641387, 52.249868472821554], + [5.044191584607674, 52.25160426353716], + [5.0434278512601525, 52.25544854127034], + [5.04187884641245, 52.25655996586453], + [5.040253175588553, 52.25657638079639], + [5.0371963980512415, 52.253441191323255], + [5.035255369373886, 52.2526448666876], + [5.032122534785752, 52.25461849310925], + [5.030709873684419, 52.256890262844024], + [5.032505038272917, 52.25874379200644], + [5.032572530684435, 52.259974915452396], + [5.03145378168343, 52.26130569899902], + [5.026551005935262, 52.26419861339186], + [5.027854682123514, 52.266246433437786], + [5.027626835030745, 52.26777764351082], + [5.026339209767423, 52.2686613864141], + [5.023310111439562, 52.271471993071806], + [5.022886886924665, 52.2724834371064], + [5.023710261362141, 52.273208170300265], + [5.028295396218105, 52.27203213525468], + [5.029813730182406, 52.272043503310094], + [5.030933101842481, 52.2725028694046], + [5.033069984466158, 52.27528988416129], + [5.042521969057626, 52.277930300020074], + [5.048237536848301, 52.276960437629604], + [5.049679801922665, 52.27798885860703], + [5.049666116638086, 52.28020587498602], + [5.050753455708156, 52.28181780638939], + [5.0603980738688845, 52.2851431091239], + [5.062858837717778, 52.28477829278121], + [5.062872994348557, 52.282199646865514], + [5.064412425143185, 52.280737600508765], + [5.063885585612035, 52.27997565960923], + [5.06532548811819, 52.279659343819134], + [5.0638125343283, 52.27857706766097], + [5.06487595987539, 52.2782653409327] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ad4c25c8-5101-44b0-96f2-204a6b8c775f", + "properties": { + "statcode": "GM1699", + "jrstatcode": "2024GM1699", + "statnaam": "Noordenveld", + "rubriek": "gemeente", + "id": 276 + }, + "bbox": [ + 216518.08700000122, 555883.3850000016, 232148.97159999982, + 580246.4800000004 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.494387818515014, 53.19820193093402], + [6.49642774892768, 53.19813743330674], + [6.506844706842157, 53.200145038537755], + [6.508991497446728, 53.19912069725892], + [6.509815440374903, 53.19900970309612], + [6.509774158244688, 53.19877938062746], + [6.513336054888932, 53.19697354357589], + [6.513385989039717, 53.196937017804], + [6.51200938065714, 53.1962177159788], + [6.513975105274892, 53.19402806987855], + [6.517114294056927, 53.188850368572986], + [6.518393648528062, 53.18734527902167], + [6.521383581111369, 53.1857623350213], + [6.523744136845703, 53.18272015083916], + [6.526603142998835, 53.17743611074205], + [6.534082530435905, 53.17046736280422], + [6.53672298832621, 53.16442590346857], + [6.536457250231941, 53.16273345224124], + [6.534126066435536, 53.16093317066545], + [6.5377900815173495, 53.15831391768754], + [6.534170064598785, 53.15143853067395], + [6.537193786906856, 53.14865664465898], + [6.538324416982029, 53.145522620474026], + [6.536815360478184, 53.14220940813344], + [6.540083971950583, 53.1387702839902], + [6.539120602044242, 53.13255646771825], + [6.5337678501207765, 53.1326962967852], + [6.5177465471596, 53.131429276163466], + [6.515078440467116, 53.1311848285939], + [6.510929974841284, 53.13069305298999], + [6.512501764633502, 53.12560446279061], + [6.504978670020921, 53.122343375938975], + [6.500894048512239, 53.12057681645159], + [6.498425333015029, 53.123359383853504], + [6.480299554588547, 53.120786701182475], + [6.481326770609386, 53.11846307414562], + [6.484300131109125, 53.11164457758603], + [6.484870306166899, 53.10610117802511], + [6.4908339541819355, 53.096799375559115], + [6.502546888422387, 53.08487182827132], + [6.503346620079072, 53.08342184060679], + [6.504009846897839, 53.08338152225691], + [6.51208902580409, 53.073837192856864], + [6.513356407050214, 53.07228029084608], + [6.514465367852709, 53.06507311567195], + [6.511648897504749, 53.05625137117193], + [6.505130060469678, 53.046354757557154], + [6.500380731991912, 53.03907185522498], + [6.499950962372465, 53.03843029448062], + [6.502893480095611, 53.0322127950376], + [6.495527756099198, 53.03089769487853], + [6.5038730475152144, 53.01604157897982], + [6.509978604901077, 53.017039433913645], + [6.513036285084626, 53.01055666252384], + [6.505120509945017, 53.00991709700016], + [6.488212019821584, 53.00540528001636], + [6.466055429015483, 52.999517740217165], + [6.41366392953038, 52.98562636157328], + [6.413279837634505, 52.98552292733334], + [6.40268646302724, 52.9956533412612], + [6.374071937903996, 53.02295634085177], + [6.362521372211423, 53.03396902909502], + [6.36321882835212, 53.03926245401917], + [6.364923966736113, 53.0519778868947], + [6.367810520184601, 53.06735999538987], + [6.351724581935016, 53.07093151193833], + [6.332381542652382, 53.07520718688919], + [6.332055348601995, 53.0752793786572], + [6.305273761233356, 53.0811895485358], + [6.31515744850534, 53.09405278464002], + [6.337795882194794, 53.08868884563361], + [6.340999242976237, 53.08794458616267], + [6.344442859550672, 53.087150569019684], + [6.356620477282122, 53.10708451786673], + [6.363559885381331, 53.10756024735014], + [6.365354000034606, 53.119527280419234], + [6.365626896316197, 53.12128980155935], + [6.366051891437271, 53.122558348791934], + [6.381472577413085, 53.14773785673552], + [6.382612271281861, 53.14957048973382], + [6.381546329972608, 53.14959267377728], + [6.381564016423236, 53.15318586104405], + [6.3814709593859495, 53.15343602083885], + [6.3887285508660625, 53.15801477184856], + [6.391128129136729, 53.1594187543223], + [6.395093718111999, 53.16352872133473], + [6.397614301639024, 53.16451272095509], + [6.398594459547915, 53.16486210593761], + [6.402687250940926, 53.167005663107595], + [6.404137894491499, 53.16857237993115], + [6.404120699733266, 53.172955005814444], + [6.405469531334325, 53.176282999785826], + [6.405593276087354, 53.176474865757896], + [6.407970277615127, 53.17814843033424], + [6.424487530526685, 53.18167802192382], + [6.438017906438784, 53.18565153606916], + [6.442866783736723, 53.18774042308918], + [6.445661941956306, 53.19101548718267], + [6.447712074699071, 53.196440585061325], + [6.449947913307895, 53.1966967064435], + [6.463461420829451, 53.2000582309544], + [6.481511831532542, 53.20355343716861], + [6.48571682935421, 53.203821257815676], + [6.492725633380469, 53.200736374999515], + [6.492939385779665, 53.19931673752814], + [6.493504905877004, 53.19849701868053], + [6.494387818515014, 53.19820193093402] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.3ef56981-81c4-4926-8b88-7242ac930be9", + "properties": { + "statcode": "GM1700", + "jrstatcode": "2024GM1700", + "statnaam": "Twenterand", + "rubriek": "gemeente", + "id": 277 + }, + "bbox": [ + 227056.38650000095, 489112.0229999982, 245388.58300000057, + 501579.6790000014 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.673086988009048, 52.49362732616891], + [6.693485356756647, 52.486327108808766], + [6.697584620905226, 52.4862982385871], + [6.717706685885537, 52.47813155024854], + [6.710678501293691, 52.47118453104439], + [6.710082527349976, 52.47059921890725], + [6.706727820310108, 52.466750707112254], + [6.701594666912634, 52.46116270102449], + [6.698916990088534, 52.45679518259775], + [6.6994208769098025, 52.453811535185885], + [6.6975761664620395, 52.451644944261126], + [6.696577631844474, 52.45173455086975], + [6.6961160316565635, 52.451278292964645], + [6.694832353411791, 52.45081117943309], + [6.692249637990119, 52.447427209948444], + [6.6893224499598976, 52.447045649490924], + [6.682962223462229, 52.44627230149097], + [6.677777589932028, 52.44414906193962], + [6.676441066623186, 52.4441410255345], + [6.673333944839595, 52.44145099792103], + [6.672586882633802, 52.439034773780335], + [6.673518592467754, 52.434494695400026], + [6.677268163320242, 52.429870357798485], + [6.6778873429666445, 52.42799329405014], + [6.675330471225697, 52.42701749550147], + [6.674207981713049, 52.424896537242795], + [6.674235447369019, 52.42435472178648], + [6.676548611569541, 52.42365478946915], + [6.6750745628476365, 52.4228522776301], + [6.672551305171656, 52.422084620846356], + [6.669673052662341, 52.417367497217164], + [6.675442245886154, 52.413942082574486], + [6.675576772461218, 52.41301849949177], + [6.69863530341627, 52.39374107104791], + [6.691112575954877, 52.39280255955852], + [6.685247551041021, 52.393108096352314], + [6.684422792196694, 52.39092742361202], + [6.676000915759323, 52.395748906517284], + [6.671895918987155, 52.38885139802418], + [6.667157168177959, 52.38992823242735], + [6.664168721999466, 52.389514292985574], + [6.65176171599402, 52.39871608252049], + [6.647626005030807, 52.39545362363003], + [6.645425526624587, 52.39646523301227], + [6.640178971976273, 52.39907981156782], + [6.635856334249389, 52.39528296253198], + [6.6183485857316855, 52.38842972594044], + [6.6148024470915345, 52.38644736655198], + [6.60946381402642, 52.389544449203754], + [6.598851199321966, 52.38365830018238], + [6.596854734093911, 52.38664060489173], + [6.58130905027823, 52.40968042458597], + [6.575951935564895, 52.417513498188924], + [6.57246948211746, 52.42331503850489], + [6.573350953661508, 52.423314362587405], + [6.584942385050508, 52.4317725986422], + [6.5881898768567275, 52.434152044356125], + [6.5981475935943745, 52.43902936303938], + [6.597003344954889, 52.44940233302935], + [6.596386700057452, 52.45480781561881], + [6.583592236372634, 52.45051493987185], + [6.574844352193537, 52.44757828318382], + [6.572784929315111, 52.44688801383884], + [6.571632862720555, 52.44650372009978], + [6.571045104901356, 52.44839559650659], + [6.570047842426777, 52.44807063234155], + [6.570522367214758, 52.44752203228496], + [6.56683912710931, 52.44627744833605], + [6.5663269264869, 52.446818310096376], + [6.563355478828084, 52.44582782599053], + [6.558641308376489, 52.448868846927574], + [6.555347078001645, 52.44884437253957], + [6.546514661338818, 52.45057686626048], + [6.542994874493671, 52.45122640590746], + [6.537914001906601, 52.44975188837131], + [6.531036650784739, 52.446218109405876], + [6.5301708910757945, 52.44497038898379], + [6.530526239402877, 52.44329870288083], + [6.528403746974823, 52.44066449733013], + [6.524503175100238, 52.43976040156732], + [6.5211625551938575, 52.440270723230825], + [6.518504823362632, 52.43940208484759], + [6.51775636613656, 52.43779436363374], + [6.510901302467581, 52.43717339990571], + [6.500229203126864, 52.43829464788783], + [6.4803431430251655, 52.4403327456906], + [6.479725905371312, 52.441157952235606], + [6.475309362648272, 52.441002675162125], + [6.475051901809722, 52.44108350158269], + [6.47368557643821, 52.442896144555704], + [6.469232795936696, 52.44499674201931], + [6.457355430845409, 52.45498582829389], + [6.453489575391813, 52.46002213454781], + [6.4485496355916405, 52.460307440974454], + [6.448760028603475, 52.46113084147805], + [6.450098300749774, 52.461256417645565], + [6.451377015095997, 52.46152504648171], + [6.449942916524285, 52.461935067934], + [6.447528779982874, 52.46494536109484], + [6.448375183023087, 52.46646866138752], + [6.450405708888006, 52.46689127408685], + [6.451545327202552, 52.464741813391456], + [6.4523553683907195, 52.464516656121575], + [6.453273315275438, 52.46648928343044], + [6.450733935267566, 52.46793621161317], + [6.450679284702248, 52.46880029834437], + [6.452644249950014, 52.46949014094004], + [6.4524791184604595, 52.471002221585124], + [6.453645101972204, 52.4713162072393], + [6.452912438930019, 52.47004781192476], + [6.454260130238473, 52.46931905933268], + [6.458682428709185, 52.46997465132769], + [6.461449387950007, 52.4713627010724], + [6.460713572846958, 52.4719542571995], + [6.461621429409667, 52.47225893296693], + [6.461504407409619, 52.47334066492372], + [6.465451517169998, 52.47511546259194], + [6.472442446026532, 52.47568832526307], + [6.47840512492063, 52.47760450051829], + [6.488575953585879, 52.47686220772826], + [6.492504007544747, 52.479258634176446], + [6.49578967353491, 52.479256193548146], + [6.494808907665208, 52.48100208633918], + [6.497427579879408, 52.481292464313235], + [6.503773163427531, 52.48172168176892], + [6.505468751316482, 52.49096261412965], + [6.509787499017485, 52.490666459772946], + [6.534360843011175, 52.488978239924016], + [6.534402524701936, 52.48897537207359], + [6.5544634601208065, 52.48759328849144], + [6.565289076124336, 52.485654092924534], + [6.572990616939872, 52.48427154040309], + [6.595188119720464, 52.48030329628956], + [6.6010350224878955, 52.47947023166092], + [6.611421202507752, 52.466864917936974], + [6.6130013837763055, 52.46560324783502], + [6.616059813910055, 52.46882955263542], + [6.62260703990185, 52.47147526613855], + [6.6268208256120955, 52.473831259871304], + [6.6312168048523255, 52.47197258753183], + [6.635620649250807, 52.47164722503361], + [6.6405844495248525, 52.473105145973086], + [6.641541226493295, 52.471243853269876], + [6.649555602188943, 52.47308988452473], + [6.651100231411975, 52.4751567754306], + [6.6474596170322915, 52.47861403920714], + [6.654578210321505, 52.48271524346772], + [6.653659030798507, 52.4878321633534], + [6.663283126772645, 52.49248650356436], + [6.669301277978281, 52.494980733280094], + [6.673086988009048, 52.49362732616891] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.edf25e6c-64c3-47a8-a78c-1b1f7642129e", + "properties": { + "statcode": "GM1701", + "jrstatcode": "2024GM1701", + "statnaam": "Westerveld", + "rubriek": "gemeente", + "id": 278 + }, + "bbox": [ + 204347.98299999908, 527192.3552000001, 228639.03799999878, + 549304.3399999999 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.302985255135563, 52.924972366748136], + [6.333280544507836, 52.906356065205784], + [6.369026187023093, 52.921975626178636], + [6.385550079849557, 52.91554733126847], + [6.384172614545408, 52.91425013101138], + [6.385590171894813, 52.91367621178331], + [6.383439054743628, 52.91165055045854], + [6.3812885134787, 52.9124102721957], + [6.377917005323856, 52.908657686241995], + [6.379398530448206, 52.90821723676912], + [6.3777230716012445, 52.90679481409404], + [6.376566602512352, 52.90715443904412], + [6.370496010430356, 52.90322738001009], + [6.36901807973032, 52.90368406931434], + [6.368513126310818, 52.90317595424288], + [6.367221038501174, 52.90339543639474], + [6.359560259763463, 52.89453434158462], + [6.373265582641458, 52.890274404971166], + [6.366554259943483, 52.881663925026906], + [6.368679756553292, 52.87704896758246], + [6.3726361334435175, 52.87590741471412], + [6.372050547968122, 52.88125499857901], + [6.376878993810799, 52.88620809087332], + [6.378626630874312, 52.886976613376966], + [6.381437719805307, 52.8895627609161], + [6.383875159066332, 52.88912388601724], + [6.419992846362892, 52.882321872759924], + [6.420095972689015, 52.88202290833029], + [6.4196396041571555, 52.88147473141659], + [6.42226347257635, 52.88031385327901], + [6.42020565404275, 52.87791548291177], + [6.427698024915454, 52.87253152422194], + [6.4292967343909355, 52.87311449641724], + [6.429723839249728, 52.871813318096294], + [6.430778797920042, 52.87186228642189], + [6.431448472710068, 52.86994596543273], + [6.432143607335733, 52.86776838430995], + [6.431021471970563, 52.867658625144074], + [6.434345004594456, 52.85699324023987], + [6.429244971562867, 52.85647390682669], + [6.4308592862110645, 52.850442222992676], + [6.435521316747574, 52.8511455615902], + [6.44119973239622, 52.84991812487681], + [6.451273118178186, 52.850015453422685], + [6.4607159175852225, 52.85306614129713], + [6.463150122545782, 52.84889215539999], + [6.46189272875542, 52.848476005896146], + [6.462089314086403, 52.84655792859353], + [6.461152868028848, 52.84510436486185], + [6.4626672464153305, 52.838676859363865], + [6.476125074443522, 52.83816109982596], + [6.480026129701907, 52.83694436227976], + [6.476314116354368, 52.83280560518042], + [6.4676620463150485, 52.82181517229801], + [6.464024719872418, 52.81813768829097], + [6.46226694336899, 52.81649232809168], + [6.46133876275163, 52.81534608775234], + [6.460445943144501, 52.81616139852233], + [6.459281957488436, 52.81520019160639], + [6.459907865234613, 52.8138638251571], + [6.458707263478453, 52.80875185577449], + [6.455450742855869, 52.800556495325466], + [6.449734089445061, 52.79276345332111], + [6.446920324103504, 52.78588928878102], + [6.436982390419502, 52.791996707531695], + [6.436655625802485, 52.79146450643968], + [6.433143869291489, 52.790767861419745], + [6.4295733016808345, 52.788705111291726], + [6.430011641863058, 52.78716537348351], + [6.432566415428795, 52.7864685010229], + [6.43199766120696, 52.784563784827895], + [6.428050770926135, 52.783709979000534], + [6.42753040081483, 52.782501366050276], + [6.423762617364236, 52.78285382737772], + [6.42260164163295, 52.78248589765316], + [6.4216017168730835, 52.78107813267182], + [6.420440437482623, 52.780913820199906], + [6.418923056590992, 52.78165680745051], + [6.416653472021513, 52.78172928777315], + [6.416376413794879, 52.78638733074957], + [6.412947842849398, 52.78831815121765], + [6.410293775610854, 52.7871096369933], + [6.410238683792366, 52.786345414425455], + [6.40730529859626, 52.78553249089254], + [6.400575992469621, 52.78086870414457], + [6.394041748838612, 52.77744853008682], + [6.3915281297233, 52.779573772041154], + [6.389824724545662, 52.77895945846356], + [6.387996598339619, 52.779345109008986], + [6.387367238945209, 52.77903152491646], + [6.386823890116883, 52.77995615312965], + [6.377916494139816, 52.785203618946895], + [6.373212925239908, 52.782322788118854], + [6.374561903987574, 52.781531922303735], + [6.37206784397086, 52.78000195417472], + [6.3706769793068245, 52.78076897106476], + [6.3698573112399135, 52.78026579638837], + [6.3680544635909015, 52.78135346728646], + [6.367027379170586, 52.78108262174869], + [6.363330345282919, 52.781968984905625], + [6.360900345136604, 52.78323316011405], + [6.3591676102759696, 52.782812820278565], + [6.3588737205929045, 52.78176635785757], + [6.355994822777503, 52.780338809874976], + [6.355499523546376, 52.77951591766417], + [6.353755765557209, 52.7820460122727], + [6.353734107858142, 52.782489044652735], + [6.352284174531704, 52.78238747034229], + [6.351245460139165, 52.78327097068347], + [6.350079520575916, 52.782826184024955], + [6.349477761940366, 52.78340508073835], + [6.353345436906951, 52.785410452095796], + [6.352081796755126, 52.78784123106151], + [6.351029968204546, 52.787650048277506], + [6.350464065564432, 52.78859037770805], + [6.34822059545524, 52.78811435139633], + [6.3458032219072225, 52.78841820802051], + [6.342956757076093, 52.78969272985704], + [6.350439358617984, 52.79183947593708], + [6.352479584407605, 52.794534855300256], + [6.354596496550821, 52.795198470152364], + [6.35365815772852, 52.79891161832078], + [6.34624459473963, 52.798945179257146], + [6.34591914404099, 52.79894695067741], + [6.340680770717834, 52.79897782774493], + [6.320847373213464, 52.79538852174581], + [6.309400896712197, 52.79532161532612], + [6.306924597458981, 52.79387102151582], + [6.3052991999604675, 52.791550599655864], + [6.301207282314006, 52.79097364599143], + [6.3026091763850705, 52.78952373721437], + [6.302184248755358, 52.7884959814648], + [6.300541786269682, 52.787727920565594], + [6.300784096941656, 52.78730433852301], + [6.299530559723842, 52.78706509806483], + [6.300567866934319, 52.78585902163362], + [6.297490846538288, 52.78255992381585], + [6.298380438162721, 52.78201590362594], + [6.297054649739499, 52.78092852838506], + [6.29562481333434, 52.78078683794383], + [6.29303711676799, 52.77847187386551], + [6.299181053578685, 52.76859402708717], + [6.298509868735964, 52.767941865841166], + [6.2990490381329955, 52.766836766018905], + [6.297492208753055, 52.766090110042136], + [6.281479572073031, 52.76292186312323], + [6.268555721332249, 52.758405949127685], + [6.261747093037881, 52.757604491403974], + [6.259614242112008, 52.757957975211326], + [6.254670891412684, 52.75759710594158], + [6.252027523793202, 52.758310595386334], + [6.247411821099697, 52.75413576580287], + [6.241555040113076, 52.75065296759079], + [6.236637968808267, 52.74390321872144], + [6.231438771263551, 52.741708583385496], + [6.220658967038629, 52.74791142002022], + [6.218555848951603, 52.74830038707024], + [6.201842960875291, 52.729307084981826], + [6.195339220728256, 52.73956259787715], + [6.194073840229982, 52.74159405867315], + [6.187257685824124, 52.75275256797872], + [6.185962057778084, 52.75485926881192], + [6.177592358072935, 52.76830249172639], + [6.17692568602413, 52.76821361898727], + [6.175671113102685, 52.76989311235591], + [6.174445638611216, 52.772060073345216], + [6.1729059740068895, 52.77305425554323], + [6.1765839851439095, 52.775199754642045], + [6.1848101490494685, 52.78030455941115], + [6.193807864719061, 52.78640280634567], + [6.201730742250688, 52.79369609481708], + [6.199103524028965, 52.79582829616241], + [6.185121238065105, 52.80722411249503], + [6.180458078998799, 52.81103425793949], + [6.177229782604304, 52.81385109156843], + [6.172418931200511, 52.81563908378527], + [6.171408177771927, 52.81525550494528], + [6.157643904295626, 52.82503554887961], + [6.1517148331027585, 52.827399158478634], + [6.149895735808826, 52.828123878831406], + [6.149198956909105, 52.82840241838787], + [6.149564678416673, 52.82845896985028], + [6.151962155268811, 52.82882968618025], + [6.150288736260284, 52.829940318500924], + [6.1367944830329915, 52.838917075416624], + [6.1304516731293885, 52.84387255058586], + [6.128694393238034, 52.84780737031689], + [6.119819889813939, 52.85421494321397], + [6.120994744399524, 52.85464975513314], + [6.140512521204493, 52.863478116252836], + [6.141219093222964, 52.863799652605834], + [6.160459547956042, 52.87252077612225], + [6.190679751566051, 52.88447885552956], + [6.200811950567222, 52.88837858263976], + [6.206900007036154, 52.89074386118996], + [6.228785292603344, 52.910302296164346], + [6.232291053300591, 52.913438179885944], + [6.24234301581247, 52.91834521753664], + [6.244829592805605, 52.91958699934942], + [6.247258689549847, 52.92334744566653], + [6.247552946602442, 52.92369168616264], + [6.256593063409256, 52.927641232936004], + [6.283155242574852, 52.92614773714615], + [6.302985255135563, 52.924972366748136] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.0e17c0a1-00f6-4d8f-b48f-92e56171870b", + "properties": { + "statcode": "GM1705", + "jrstatcode": "2024GM1705", + "statnaam": "Lingewaard", + "rubriek": "gemeente", + "id": 279 + }, + "bbox": [ + 187332.31700000167, 429701.186999999, 200390.33199999854, 441473.989 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.940327671376169, 51.95603975938518], + [5.955225440385972, 51.948753539148626], + [5.960293449976552, 51.9437827322582], + [5.961794242549942, 51.93879262058416], + [5.965775466700798, 51.93876761439823], + [5.9667308933056775, 51.93591068109538], + [5.9723309647764875, 51.93074206735532], + [5.972887444927234, 51.92918657787942], + [5.968612960245418, 51.92821244351981], + [5.977099459265454, 51.922857533975716], + [5.987062570298805, 51.91331383154284], + [5.998450827041795, 51.90664070532623], + [6.014525844012948, 51.901259471112255], + [6.021802975614492, 51.89632336722394], + [6.03058274696172, 51.88023922031113], + [6.037154821388433, 51.87541841186706], + [6.046284693441949, 51.87091320773935], + [6.044091205216544, 51.87120709485531], + [6.035455873048185, 51.873048848341526], + [6.021932137411128, 51.879294506249025], + [6.016915678678584, 51.88098596820077], + [6.009287310211939, 51.88160341526207], + [6.002050708481595, 51.88028257654201], + [5.9926147483461145, 51.87492666704488], + [5.988747602850197, 51.87147020837244], + [5.9857528384224725, 51.86775767850551], + [5.981180058406508, 51.85994744124952], + [5.977749583995384, 51.857229765066194], + [5.974353375956989, 51.85586326831792], + [5.970333589128019, 51.85475418128262], + [5.9662472983011, 51.854449297145514], + [5.95917320898202, 51.85537365877027], + [5.95528813523312, 51.856928017258554], + [5.937315412574613, 51.87141112062489], + [5.933326436461693, 51.873178877189034], + [5.923633016752711, 51.87462318078593], + [5.914002331369797, 51.8741793546145], + [5.903613557296091, 51.872541952747774], + [5.895967774166042, 51.870533616079406], + [5.886765709096197, 51.86520300756139], + [5.8843506183369785, 51.86701641318368], + [5.882738267494001, 51.8661439571389], + [5.882526866267893, 51.86628580636304], + [5.882990506373511, 51.86667513463096], + [5.881952312430703, 51.867099424141145], + [5.880267877596999, 51.869215474301754], + [5.876953328662349, 51.8765038327188], + [5.876135839906483, 51.876597765312], + [5.875841182485258, 51.88086313945096], + [5.871481040398796, 51.88865240980861], + [5.868696726211897, 51.88820314530859], + [5.865424421662843, 51.88853737010749], + [5.865490976368128, 51.88898257065271], + [5.864102301980188, 51.888720613545985], + [5.861311438283307, 51.8887744876171], + [5.859492001952439, 51.88867234507653], + [5.857627692088099, 51.88838881866484], + [5.8571235405180015, 51.89462092317051], + [5.856947873401362, 51.89695435192436], + [5.874738476502477, 51.897570663340154], + [5.875886646451598, 51.90080998156493], + [5.875420843348704, 51.90208355452823], + [5.8721423700225905, 51.90200492454319], + [5.872984202592404, 51.905230927231386], + [5.8736644275403505, 51.90845186664069], + [5.882636665513498, 51.908211435031795], + [5.891199332881083, 51.90726350133111], + [5.892031657291007, 51.91058731397602], + [5.8943805438968155, 51.914727673865066], + [5.893057730469589, 51.916185778117935], + [5.896996831524837, 51.92080966212278], + [5.889521956572292, 51.92526506647295], + [5.897918378930612, 51.93435795751755], + [5.9018636631384025, 51.93346419703547], + [5.912417079028998, 51.94491520809447], + [5.9109648754944155, 51.9459068780614], + [5.911715709766304, 51.94701909471848], + [5.911330162245361, 51.947336195274815], + [5.912193288317846, 51.94791499420687], + [5.914173708065559, 51.948611727739575], + [5.915172770021522, 51.9499675267412], + [5.922007068786399, 51.950839055481644], + [5.928301363069057, 51.9508203150991], + [5.928378848079009, 51.95080437252108], + [5.929522093014202, 51.95074603599733], + [5.930717310937102, 51.952869162965726], + [5.931617412341644, 51.95673403705032], + [5.9318306311372515, 51.95948313461081], + [5.935597111222731, 51.96041566076742], + [5.940327671376169, 51.95603975938518] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.49a6abe5-ac3f-415e-8828-4e194e3b98c3", + "properties": { + "statcode": "GM1706", + "jrstatcode": "2024GM1706", + "statnaam": "Cranendonck", + "rubriek": "gemeente", + "id": 280 + }, + "bbox": [ + 163967.86899999902, 359074.8999999985, 174863.53400000185, + 373886.4849999994 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.654707151483519, 51.353877286009975], + [5.6667692375211205, 51.32672501866517], + [5.6701006812164705, 51.3256535246596], + [5.672090676942896, 51.323592154913534], + [5.6704938063985315, 51.31748248659178], + [5.6721107820480245, 51.315094012914564], + [5.651876135387297, 51.29774165133622], + [5.643996708349969, 51.29057548978197], + [5.625972195056806, 51.27360160140786], + [5.623480582311873, 51.24910878249395], + [5.623467374666471, 51.24899791641885], + [5.618781562639911, 51.22942527863339], + [5.602195613602266, 51.22585602118634], + [5.594414375191799, 51.22418039344111], + [5.594320582981395, 51.22607368988148], + [5.566045273703402, 51.22090940690335], + [5.56045060221523, 51.22232732682711], + [5.55617266125076, 51.240337114882436], + [5.5548663771834255, 51.24449729457917], + [5.556603701901009, 51.25085059453411], + [5.555985927179716, 51.25438951094499], + [5.557370764917117, 51.257182469786585], + [5.556637554941932, 51.257475535886606], + [5.55676911015378, 51.26006025075176], + [5.557305434535562, 51.26005232639531], + [5.557930545473921, 51.26246383807032], + [5.556695160293661, 51.26312766008819], + [5.557177227234113, 51.264299224926276], + [5.556214752810571, 51.26664397562988], + [5.544588847408937, 51.271187940603724], + [5.528685310090584, 51.28175655475214], + [5.5190063208447615, 51.28947525238181], + [5.51578058270536, 51.295199053749116], + [5.515773885506556, 51.29520250654502], + [5.528489422977368, 51.3027509990743], + [5.53759525949548, 51.30755739593937], + [5.567926797901935, 51.3210871768921], + [5.585460387098202, 51.32620585355393], + [5.602433329141234, 51.33099243975891], + [5.605316597977324, 51.331805082757896], + [5.6100526039210665, 51.33082352237879], + [5.618967607499145, 51.32894985482467], + [5.6211473636878555, 51.33118854915603], + [5.631295164238266, 51.32754093128695], + [5.6349306458035935, 51.33021826604136], + [5.633128003154987, 51.33131417891597], + [5.63445669304787, 51.333398348237964], + [5.6385917732705595, 51.331859432041], + [5.641277577417283, 51.33407700831426], + [5.644112814299277, 51.33348424905744], + [5.644231735156799, 51.336525371507285], + [5.642894304883277, 51.33729495081533], + [5.636637236013747, 51.3378338034044], + [5.6367235371613535, 51.34083797735288], + [5.639203048638368, 51.339972501422395], + [5.640192425887449, 51.339574211616345], + [5.64063749157873, 51.34186187235847], + [5.639537355243297, 51.34310249112709], + [5.639925612601633, 51.34673705427354], + [5.642603012953493, 51.34839679271227], + [5.648774085202652, 51.35016744159443], + [5.647528364874315, 51.3520757069798], + [5.654707151483519, 51.353877286009975] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f161fb5f-dfa4-4c55-a980-ce0e27a16194", + "properties": { + "statcode": "GM1708", + "jrstatcode": "2024GM1708", + "statnaam": "Steenwijkerland", + "rubriek": "gemeente", + "id": 281 + }, + "bbox": [ + 182510.6499999985, 517284.9305000007, 209941.2030000016, + 541031.7529999986 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.1367944830329915, 52.838917075416624], + [6.150288736260284, 52.829940318500924], + [6.151962155268811, 52.82882968618025], + [6.149564678432338, 52.82845897074886], + [6.149198956909105, 52.82840241838787], + [6.149895735808826, 52.828123878831406], + [6.1517148331027585, 52.827399158478634], + [6.157643904295626, 52.82503554887961], + [6.171408177771927, 52.81525550494528], + [6.172418931200511, 52.81563908378527], + [6.177229782604304, 52.81385109156843], + [6.180458078998799, 52.81103425793949], + [6.185121238065105, 52.80722411249503], + [6.199103524028965, 52.79582829616241], + [6.201730742250688, 52.79369609481708], + [6.193807864719061, 52.78640280634567], + [6.1848101490494685, 52.78030455941115], + [6.1765839851439095, 52.775199754642045], + [6.1729059740068895, 52.77305425554323], + [6.1685253888103775, 52.767093492618336], + [6.163939986186745, 52.76644934610869], + [6.1601537035740375, 52.764658577178494], + [6.156496419307965, 52.76265013832276], + [6.137708752644956, 52.75900426973604], + [6.132468094210344, 52.75866799431914], + [6.126330462254879, 52.75683437298087], + [6.121597328516485, 52.754210156892015], + [6.120376223473515, 52.750242462786325], + [6.127093624404966, 52.74026386353789], + [6.129147870073887, 52.73802828485912], + [6.132976388754846, 52.73139632006845], + [6.139934972230123, 52.720362512547794], + [6.1426470852629524, 52.716326359268045], + [6.14391846973262, 52.71426495820852], + [6.151422778458543, 52.702882722176454], + [6.151985051448839, 52.70159698906323], + [6.151435882741209, 52.70137652006162], + [6.153820607020068, 52.697336960385464], + [6.156606681442305, 52.691957347156226], + [6.158802689982939, 52.69248021067643], + [6.1589760417018855, 52.69215417824358], + [6.155776700383235, 52.69105696681803], + [6.154498489224375, 52.69041057729054], + [6.154790092137812, 52.68820618467642], + [6.153691559392889, 52.68624885679535], + [6.150160877734947, 52.68303037598489], + [6.144840004786589, 52.680072650461675], + [6.141274282287652, 52.67863773826635], + [6.1361294812794185, 52.67725713307125], + [6.135427634660672, 52.67683727934943], + [6.135987617799343, 52.67463436788254], + [6.132834292114023, 52.67342435244011], + [6.131083982964882, 52.6718043553369], + [6.127569571175947, 52.67193716428029], + [6.1253998057012495, 52.67027353720253], + [6.123011939275702, 52.66952197354394], + [6.122266725758583, 52.6684318949196], + [6.119566086395519, 52.667936868418444], + [6.107491985473292, 52.66563571732723], + [6.102469027943342, 52.66343371667205], + [6.099917288177548, 52.66082127534782], + [6.097360356835844, 52.66462737569491], + [6.08556284400793, 52.66327421250757], + [6.072906185372973, 52.65814134420017], + [6.0614065736525715, 52.65285833589973], + [6.058918983099586, 52.652329237034095], + [6.054864164048848, 52.65021892515031], + [6.038208215876086, 52.64950000641382], + [6.026216612799225, 52.642919037324084], + [6.02457584517942, 52.64205644864421], + [6.021101892704084, 52.64136724149268], + [6.018859037235045, 52.643514111745944], + [6.01807261204888, 52.64385498739442], + [6.017504775319403, 52.64339949713126], + [6.017069993012709, 52.643362545754165], + [6.015736626327377, 52.64411491784547], + [6.014327328950946, 52.64599975100794], + [6.0142434274961065, 52.6460542331111], + [6.012501278498678, 52.64718545662673], + [6.01230157669153, 52.647315124451055], + [6.011323567726005, 52.64798422274988], + [6.010859241042101, 52.64833207479956], + [6.010569683526564, 52.64854900177807], + [6.010115081421572, 52.64888955790968], + [6.007917314724616, 52.65053589414734], + [6.007675246243786, 52.65071721366543], + [6.007411159554082, 52.650915023203794], + [6.007322208403873, 52.65098165041909], + [6.006441089546516, 52.65150148563191], + [6.006257116076666, 52.6515849323211], + [6.006124356365003, 52.6516451487927], + [6.005560094189792, 52.651901082345795], + [6.004939000458102, 52.65218279003318], + [6.002852942196555, 52.65312890892888], + [6.002642588327286, 52.6532243092652], + [6.002584223030647, 52.65325077953998], + [5.999529743310671, 52.654635944329605], + [5.996914905450349, 52.65505071725698], + [5.996414776736722, 52.655130041238856], + [5.995044137459143, 52.65534742057673], + [5.991781472535715, 52.655864798567215], + [5.990842097360617, 52.6560137416357], + [5.990360908380969, 52.656090033822004], + [5.987512979004215, 52.656541525592246], + [5.986267093182817, 52.65673901528367], + [5.985219282796214, 52.65690509188735], + [5.984203383715758, 52.657153653390296], + [5.984108270165343, 52.657176922563686], + [5.984048064927869, 52.65719164841562], + [5.98330689485672, 52.65758552066752], + [5.983243754648109, 52.65761907373666], + [5.982923140788972, 52.65778944970612], + [5.982651821687711, 52.65794374514009], + [5.979546420979964, 52.660495570114854], + [5.974667269105189, 52.662713911874626], + [5.970814000439276, 52.66518881739399], + [5.966851667729429, 52.66658018333189], + [5.964968381780952, 52.66615437100961], + [5.963054292289044, 52.6663983121686], + [5.961794957408784, 52.66729648647636], + [5.9581725091995645, 52.6678094745995], + [5.9540173264465395, 52.66767405812306], + [5.9415935194817715, 52.670516676289765], + [5.940101132670559, 52.67042656422994], + [5.939725865726151, 52.66883524716443], + [5.935147852609884, 52.669233803554256], + [5.934593466912041, 52.66978161611564], + [5.93308401620595, 52.67126351616801], + [5.932750590019315, 52.67318892259256], + [5.933870298665179, 52.675510458509194], + [5.9401605389741645, 52.67922320911427], + [5.945376969690003, 52.682301419808326], + [5.944707565303116, 52.68271257508819], + [5.946847878797455, 52.68400277252804], + [5.949519112966519, 52.685713458564685], + [5.951508805288473, 52.68495190244759], + [5.952740279675786, 52.685240021558386], + [5.959400149806233, 52.6899503093098], + [5.962104800177959, 52.69035067422252], + [5.965155429263163, 52.69356972280216], + [5.964825026891277, 52.69810442327125], + [5.959011668664417, 52.703863423520495], + [5.954839010279306, 52.70376762565697], + [5.955315511003246, 52.707261773050256], + [5.952091738539221, 52.71087622217952], + [5.951161371143035, 52.711919221711526], + [5.942555031301335, 52.715001999593056], + [5.941885217567108, 52.71594903321968], + [5.941169754132894, 52.717550648616346], + [5.935559418644981, 52.730251722705596], + [5.930150529520861, 52.739586126801356], + [5.921829484094165, 52.75116970138943], + [5.906009446363249, 52.761325557395594], + [5.900054127240127, 52.761195253141096], + [5.897761868482398, 52.76213486877229], + [5.896085417085646, 52.76282201505527], + [5.894382821713619, 52.76513370030133], + [5.892550334345012, 52.76595969398951], + [5.8851365507832245, 52.76930084938943], + [5.879938535151886, 52.77309156558359], + [5.862083295200251, 52.78102255340257], + [5.850296490711259, 52.78453079942579], + [5.843389942568436, 52.784463617986816], + [5.841618422995423, 52.785138379833896], + [5.837310574979447, 52.78502388788616], + [5.836054309703256, 52.78563509564427], + [5.828146520578368, 52.78554533929744], + [5.8187917635000765, 52.78469664770391], + [5.818656493205891, 52.787635733404656], + [5.812725480421597, 52.79118641355397], + [5.803474410190059, 52.79685870198061], + [5.795177033982417, 52.80652183738242], + [5.810015541433563, 52.813883551092104], + [5.817070756758223, 52.81668838605761], + [5.81974419827096, 52.81727838858882], + [5.819896855323214, 52.81690330517887], + [5.820306033018416, 52.8159501938249], + [5.822354325060527, 52.815109428109764], + [5.824154493653732, 52.813297054465565], + [5.8287205756596006, 52.81342693344571], + [5.833411154900569, 52.81176061882593], + [5.837365345852888, 52.808261814500206], + [5.836101862643067, 52.80595460983804], + [5.838444419259773, 52.80594702879682], + [5.842201968061011, 52.807584265380676], + [5.843593643370088, 52.80503254260125], + [5.849951822689008, 52.80616168726525], + [5.854802503426849, 52.80551819679689], + [5.857026771679714, 52.807228860857784], + [5.8596399577636875, 52.80453624439988], + [5.865636138636162, 52.804650455320264], + [5.868679640983712, 52.80272622934943], + [5.876292243042149, 52.80085487188024], + [5.879580817917839, 52.801202677854214], + [5.8825779469025195, 52.80391960068343], + [5.893428707937263, 52.80628288173565], + [5.897881478136421, 52.80780331216547], + [5.900657173528275, 52.811824865473355], + [5.908583603373417, 52.81371207914554], + [5.9119657203490075, 52.816115948827765], + [5.91385994440868, 52.81862211419885], + [5.916321230362877, 52.82028033712466], + [5.924202018826967, 52.82358984331085], + [5.9229461692573855, 52.82752583509279], + [5.926409573961534, 52.82818344496317], + [5.9227472582208245, 52.82987258089562], + [5.923097636703166, 52.83103450332396], + [5.926983265579941, 52.83157678511724], + [5.930115122195552, 52.83135654178437], + [5.930653798564274, 52.83224756023206], + [5.926732157708866, 52.833291768494306], + [5.930157747360847, 52.835012906904595], + [5.938019494307728, 52.83538176970294], + [5.94180257789286, 52.83596856306785], + [5.944368138987449, 52.83707104902219], + [5.946247287987606, 52.83742471544358], + [5.95578367377808, 52.833234569102586], + [5.9568533602283225, 52.834442704249895], + [5.955792338084168, 52.83744184616364], + [5.958731318940835, 52.83976596131217], + [5.969976268217108, 52.84237532308866], + [5.973127795318994, 52.84246971440311], + [5.972438087974245, 52.841916695024146], + [5.972870727900841, 52.840713570091594], + [5.976174984669167, 52.83474817201192], + [5.981556478763814, 52.829473220850645], + [5.986394300541116, 52.8218539840194], + [5.986473074449422, 52.821703121587596], + [5.988904137828438, 52.822063953540564], + [5.990574655407381, 52.821596560818115], + [5.994209508160877, 52.81911624336624], + [5.99650785655816, 52.816561509679616], + [5.9990783853822975, 52.816910007598544], + [6.007483397850737, 52.82004646890508], + [6.01789959442993, 52.82190033689855], + [6.024558962546593, 52.82254466263565], + [6.026616498966662, 52.82107760196669], + [6.031168379643614, 52.81499070869167], + [6.038209014769423, 52.81771410923792], + [6.043508168742741, 52.81960681066592], + [6.0445190220400455, 52.819751545924476], + [6.0469574429355575, 52.820526384718164], + [6.048536443650753, 52.821543647955025], + [6.052935858526172, 52.824123365356975], + [6.057816399751497, 52.82545265867257], + [6.059951033724858, 52.82611853669096], + [6.0593000711509415, 52.82680556123848], + [6.054979225445256, 52.83134728677219], + [6.052607348006824, 52.837339119689084], + [6.054546995470372, 52.83763131430538], + [6.056489886538082, 52.83796577108586], + [6.061512949409365, 52.83929629298117], + [6.081000267767655, 52.83873232330259], + [6.083297784399598, 52.8394869762423], + [6.087480419982726, 52.84311386268869], + [6.0931930980633995, 52.844579417944786], + [6.119819889813939, 52.85421494321397], + [6.128694393238034, 52.84780737031689], + [6.1304516731293885, 52.84387255058586], + [6.1367944830329915, 52.838917075416624] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.647b13e2-c4bd-4875-b0d4-aa4d13c37569", + "properties": { + "statcode": "GM1709", + "jrstatcode": "2024GM1709", + "statnaam": "Moerdijk", + "rubriek": "gemeente", + "id": 282 + }, + "bbox": [ + 84813.41600000113, 402347.16699999943, 108148.74570000172, + 414741.7109999992 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.59596568177798, 51.70108432133729], + [4.56952437169414, 51.696397533743465], + [4.567226899811247, 51.69533428858911], + [4.554902110783848, 51.69321552835179], + [4.545346072390322, 51.69331534877257], + [4.545140854310799, 51.69200123972533], + [4.543927733883369, 51.69180597598052], + [4.543069422309636, 51.693811613574404], + [4.544329278239823, 51.69512702329159], + [4.55492964570388, 51.69685465527705], + [4.572305171292658, 51.700072934130084], + [4.579641015204464, 51.70003532177394], + [4.5898029096239465, 51.70234719476453], + [4.599473853908625, 51.70304865580071], + [4.600467194379416, 51.70269662745421], + [4.59596568177798, 51.70108432133729] + ] + ], + [ + [ + [4.645136584917976, 51.719067325039354], + [4.650865382803539, 51.710111995770724], + [4.654631764491436, 51.70898522002605], + [4.656511381820819, 51.70729768053384], + [4.657403400871708, 51.70220424005052], + [4.659688916907009, 51.69684569441994], + [4.666939731973598, 51.68649367881741], + [4.673227621903177, 51.688986864878835], + [4.679190558994997, 51.68643591677054], + [4.6811214523705855, 51.687847972321784], + [4.692818256716113, 51.6816798485916], + [4.695036876069129, 51.683357236613695], + [4.697313554933672, 51.68771751586166], + [4.704534030488974, 51.68050651281561], + [4.702030565707947, 51.67989380692168], + [4.70460566339117, 51.67632156713004], + [4.70662519363326, 51.676753186965314], + [4.7098789378812285, 51.67327189373414], + [4.684992283960599, 51.66628979629303], + [4.694232713170168, 51.65830641773672], + [4.69678308504902, 51.6545941145418], + [4.689171801409973, 51.65241643448341], + [4.6925618322286775, 51.64755183351656], + [4.695451347535239, 51.64710592074486], + [4.699059657383532, 51.6380731922291], + [4.698737983556532, 51.637974697651764], + [4.690958710859533, 51.63735795979537], + [4.682753950112349, 51.63363643946105], + [4.678512501475802, 51.63259402328388], + [4.672257057849994, 51.63262296828042], + [4.66507157672892, 51.63431920743105], + [4.658175747288385, 51.6345866857003], + [4.643916955848878, 51.63237881147692], + [4.6380241816664425, 51.62971367966642], + [4.636646286399133, 51.62864425265582], + [4.635700728143756, 51.62629323751398], + [4.634342167345342, 51.625443091368126], + [4.629206111141957, 51.62404829661971], + [4.624435304121387, 51.62426561261213], + [4.6227518989145775, 51.62469072809674], + [4.616820503642302, 51.62762354029766], + [4.611321126152724, 51.62850296732813], + [4.606290864856685, 51.62772018187576], + [4.601233178213057, 51.62523889112882], + [4.5961303876794855, 51.624109330320955], + [4.592907040009187, 51.62443667780105], + [4.589187056514979, 51.625202372295036], + [4.577682151109334, 51.62963276227732], + [4.571077171203081, 51.63039960650379], + [4.560437435828721, 51.62881753861624], + [4.556695386676565, 51.62688664034037], + [4.5545678849730615, 51.62487668296883], + [4.553253628338717, 51.62246573452341], + [4.549134243696611, 51.61989149825689], + [4.543204302364252, 51.617667796324895], + [4.536894527958003, 51.617150261375095], + [4.530866893837874, 51.61594787390396], + [4.525486618490434, 51.61270226423523], + [4.519132444994774, 51.607834107026605], + [4.516554580870397, 51.607131889046556], + [4.513756028688402, 51.60674754878592], + [4.507988316652189, 51.607095181093705], + [4.502169735797832, 51.608745859108275], + [4.49616181482402, 51.613174562669045], + [4.492440408733845, 51.61753256909952], + [4.487744444339236, 51.61964193145548], + [4.484278687598543, 51.62008281244505], + [4.480438549892421, 51.619718675877984], + [4.4760277528615, 51.61835989903347], + [4.471442251971254, 51.615966026271586], + [4.461370528289133, 51.61437974186095], + [4.454843759618164, 51.61420718745705], + [4.443536530095635, 51.61508855682698], + [4.437827866411595, 51.617119161441956], + [4.428815969539023, 51.62327071539915], + [4.425001896859295, 51.6294659215926], + [4.423859218548817, 51.63026500717271], + [4.421207340548379, 51.63081840146354], + [4.413492367659361, 51.63116412561707], + [4.40910825371031, 51.63271937011206], + [4.399904561925538, 51.638805210090126], + [4.39716933262884, 51.643051102628036], + [4.392436230831262, 51.644814295452036], + [4.386668331325635, 51.64618069897063], + [4.380769165321363, 51.65058446973145], + [4.376397062668112, 51.65193326186347], + [4.376666968558613, 51.652096691891124], + [4.3748776084308085, 51.65367785163907], + [4.375232639318525, 51.65375199589635], + [4.37753474290027, 51.65272080474328], + [4.378010616892774, 51.65305021058984], + [4.372876153767225, 51.65694729585765], + [4.377142960711203, 51.65929932930822], + [4.375710841139176, 51.66053000251873], + [4.378187151117187, 51.661325760809746], + [4.383470026289219, 51.66540709255714], + [4.385612542321671, 51.66832490006025], + [4.3877924147005904, 51.66883428167798], + [4.393535643261405, 51.677820039781764], + [4.392249022091669, 51.6787890794149], + [4.392178023737496, 51.680078121978575], + [4.393985698654404, 51.68049847658892], + [4.399724933038688, 51.683600225548375], + [4.407208951197809, 51.687904819015905], + [4.404933757250718, 51.689574430033645], + [4.398025304124732, 51.68602597589567], + [4.396750992279265, 51.68593845413747], + [4.389654304030371, 51.68164832601899], + [4.39154135102359, 51.68424290363656], + [4.401604055176558, 51.688909720637014], + [4.401443371305395, 51.690077363696176], + [4.403043205655113, 51.691746013479936], + [4.401664128766333, 51.692741842838686], + [4.395021415181015, 51.69048350009106], + [4.391966385501844, 51.69053990227298], + [4.3919885659036595, 51.69092585415981], + [4.395517935115572, 51.690900191264404], + [4.40057504411947, 51.693662135447575], + [4.39877946988284, 51.693390298326754], + [4.397200760551415, 51.69429922225523], + [4.394180478450648, 51.69278355732176], + [4.393674919324915, 51.69199225070385], + [4.393179057236646, 51.6922223992098], + [4.3944878187076695, 51.693764993154375], + [4.40363760711812, 51.6987130011037], + [4.405399985250285, 51.69864371531984], + [4.400965904994133, 51.696312905805165], + [4.402879408616386, 51.69459801154003], + [4.406650276250845, 51.696950770494205], + [4.407218656516696, 51.69862885416476], + [4.4077572268968455, 51.69866710456037], + [4.407025303046086, 51.69695322442014], + [4.402358383207448, 51.69310193245034], + [4.403743229853779, 51.69211068289863], + [4.413158392370394, 51.69509717467268], + [4.42283825798955, 51.70020722133405], + [4.426307573472732, 51.700783427790746], + [4.429536179554487, 51.700773583422475], + [4.423525742064031, 51.69978674346009], + [4.41141575695851, 51.69327176047577], + [4.410397959077303, 51.69248176136432], + [4.412326249632092, 51.69107484912543], + [4.412614317146523, 51.69089679047433], + [4.419692229768706, 51.6944968172469], + [4.426435936516678, 51.69722127266467], + [4.431354211688754, 51.69662804995226], + [4.436660920166995, 51.697639772647356], + [4.437361155159988, 51.69740276211677], + [4.435012121031043, 51.69705456347345], + [4.43613422594158, 51.696271878608584], + [4.436775326003113, 51.69609042811802], + [4.4396922340133536, 51.69680608847734], + [4.44357980931152, 51.69617826953946], + [4.44371228114643, 51.69606185839801], + [4.441192309533303, 51.69543269539336], + [4.442849748001303, 51.69456475229334], + [4.44250369591091, 51.69409794976696], + [4.442076833852454, 51.694082484205154], + [4.442117048180936, 51.6931144833219], + [4.443612205920709, 51.69323807473276], + [4.443937428034843, 51.694774347390116], + [4.442254678981428, 51.69539463589093], + [4.443292642633508, 51.695665282848175], + [4.445445455556097, 51.694752494710755], + [4.451365556074368, 51.691789208948286], + [4.462910267306095, 51.68894258376288], + [4.490224109185637, 51.68297989170629], + [4.493053866216655, 51.68333863760294], + [4.4934184961471, 51.684144624821485], + [4.507712274734597, 51.68313065905153], + [4.519583519523482, 51.68371008364264], + [4.524623328620445, 51.68450697626627], + [4.526213495821986, 51.6858142218349], + [4.527064882000468, 51.68283771811683], + [4.525980707544955, 51.68029588873704], + [4.526399281996981, 51.68033222263976], + [4.5263602457415155, 51.68099460816472], + [4.526591806565683, 51.68100791482865], + [4.52672134566379, 51.68084752432097], + [4.527163768553565, 51.680939711751684], + [4.527011415790833, 51.681130308781604], + [4.527071202851504, 51.68162340627535], + [4.5276611137541165, 51.68283338633919], + [4.527138592333608, 51.68506504279982], + [4.5278779709497, 51.68485034216311], + [4.5279016264522, 51.68453423749236], + [4.528430645405302, 51.68445918967173], + [4.5285073062877705, 51.68479913065975], + [4.5299121581511, 51.68468479935444], + [4.530173721640861, 51.68606990755307], + [4.527167800746079, 51.686337447221675], + [4.5268766776292235, 51.68536833284826], + [4.526543342281409, 51.68652838714637], + [4.532168438454377, 51.6861236467322], + [4.532676809234469, 51.68528044390119], + [4.5354284757161265, 51.68505387605071], + [4.5376178690975095, 51.6852459914896], + [4.537557005402298, 51.68712391785975], + [4.549374343519961, 51.68848083844859], + [4.56874817017597, 51.69223008144387], + [4.574101491111285, 51.69234226402859], + [4.60165497190352, 51.69694681232244], + [4.619370083421007, 51.705581495261086], + [4.621252864712112, 51.704825913563326], + [4.622909264014357, 51.70390480340123], + [4.623266842373711, 51.704259904712], + [4.620655290711906, 51.705934122217556], + [4.619241603877355, 51.70623368137995], + [4.626570710673565, 51.70908724275719], + [4.638654379627414, 51.71239813733148], + [4.638913560488393, 51.713240235858606], + [4.636430503290081, 51.717350504559526], + [4.636854224004795, 51.7174352989387], + [4.639353077618716, 51.71336421815253], + [4.640387694510386, 51.7128240095472], + [4.643004529310186, 51.713335569147574], + [4.647334012407899, 51.712880975032164], + [4.643852296104246, 51.718826986619156], + [4.64403373977476, 51.71886306253671], + [4.64450002594492, 51.71895577279887], + [4.645136584917976, 51.719067325039354] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.756049bf-9eb4-4ca4-ba22-28b4367018b9", + "properties": { + "statcode": "GM1711", + "jrstatcode": "2024GM1711", + "statnaam": "Echt-Susteren", + "rubriek": "gemeente", + "id": 283 + }, + "bbox": [ + 183578.76999999955, 337764.0496999994, 200481.5540000014, + 349733.3284999989 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.8982738471143925, 51.134832326077415], + [5.901460737807626, 51.13420971877275], + [5.903385189977206, 51.13302220614848], + [5.907985567936042, 51.13478818377082], + [5.91156295117386, 51.1317930179177], + [5.913888269899707, 51.13319992157227], + [5.916386535403781, 51.13045185676878], + [5.9143723902885315, 51.12829652812491], + [5.920664564716019, 51.11875292231555], + [5.925824526797449, 51.11429798455866], + [5.926754752527981, 51.113774029865105], + [5.940500294553994, 51.11432874751474], + [5.9413405353042785, 51.11382670487375], + [5.940426102742138, 51.11269301976352], + [5.943479605961924, 51.1128861815054], + [5.9475183940311505, 51.11334250535666], + [5.948088819996707, 51.11258139540634], + [5.951566995743008, 51.11293121353941], + [5.953350298139509, 51.11452533953899], + [5.954235225111801, 51.113199496253515], + [5.9565691967123575, 51.11382216013313], + [5.956056373003125, 51.11478265697602], + [5.962602502275747, 51.11648816196404], + [5.961775428519131, 51.11703988789736], + [5.96532901055165, 51.118442183124564], + [5.972126289675796, 51.11469440687638], + [5.976080774356744, 51.11709135864542], + [5.978488482228196, 51.115842870310544], + [5.982065365966124, 51.11860875210337], + [5.982988730542347, 51.118094834343296], + [5.984806714615079, 51.120655081327996], + [5.99090317060081, 51.120409188777444], + [5.9977036160083825, 51.11883658824896], + [6.000765671195528, 51.11413613583784], + [6.013948247377392, 51.11792553983596], + [6.013160494316968, 51.116779673776094], + [6.021983155526032, 51.11337131681311], + [6.024216934238375, 51.10987010502686], + [6.022639608305454, 51.10906263934227], + [6.023974645279779, 51.10663571020932], + [6.028213812605768, 51.1071557340164], + [6.02843853460621, 51.10633963365009], + [6.029177698347927, 51.10489233604289], + [6.030469134115845, 51.101741348032895], + [6.036463084435843, 51.096531422901066], + [6.02999150103478, 51.094656766533845], + [6.025905855914495, 51.09423905655763], + [6.020675522653794, 51.09283829775718], + [6.017574832107432, 51.09457261047722], + [6.014085766479237, 51.091459112242134], + [6.0095235966293705, 51.090844195462246], + [6.00382494234594, 51.08679202247771], + [5.997793461859026, 51.084245707591386], + [5.992194288769823, 51.07985481926393], + [5.988451695791446, 51.07461388932338], + [5.984981434215885, 51.07358581292313], + [5.984641181323564, 51.073574258771025], + [5.98176412033597, 51.07317670338325], + [5.980293915561033, 51.0723171163821], + [5.9795810292155736, 51.07134359307588], + [5.981729620021405, 51.069477899540715], + [5.978663074746711, 51.067702213628124], + [5.9784727732290355, 51.066438021800636], + [5.974782771168086, 51.06315817607526], + [5.973161756232114, 51.06290641660814], + [5.971654192009892, 51.06188706562698], + [5.969995470694812, 51.06051620087776], + [5.970599999517017, 51.06023522064207], + [5.970779726037829, 51.05801754176571], + [5.968113419769968, 51.05556219451142], + [5.970311287162075, 51.054185465477566], + [5.968228055698691, 51.0510708119671], + [5.9692975525150285, 51.04914369174421], + [5.968450234242817, 51.04800246703161], + [5.9684743095836, 51.04785538716879], + [5.969197712486365, 51.04677217877459], + [5.966900196283764, 51.04413706205929], + [5.963839495551381, 51.04368525850302], + [5.961717137767096, 51.04199040569582], + [5.958177138757908, 51.04112589630507], + [5.95946730257374, 51.03823865588161], + [5.958185476443529, 51.03624459855739], + [5.957622102527437, 51.03471400224055], + [5.955701136808885, 51.03503212094608], + [5.954006356009473, 51.036529264925], + [5.945485352079703, 51.03683956775096], + [5.9381294039987305, 51.03511723794774], + [5.9346072513158425, 51.0412295221838], + [5.926305296495746, 51.048255251278256], + [5.926261047730216, 51.04835372613715], + [5.918731637912971, 51.06395283598638], + [5.9132063576164775, 51.06688210763754], + [5.905644644858542, 51.06184586353961], + [5.896372366344334, 51.057141326329536], + [5.892000344679532, 51.05312782458622], + [5.887198739270748, 51.05217918271114], + [5.875188066431748, 51.051472589864], + [5.868690345262921, 51.05168572845534], + [5.8667369023869185, 51.05157041556212], + [5.866387640463282, 51.0511196789303], + [5.867285161712182, 51.0462798717485], + [5.874607869911438, 51.03913807478799], + [5.878028124192717, 51.03758348845513], + [5.8770004168482775, 51.032041790734695], + [5.874809448300441, 51.03140096721734], + [5.874317139082111, 51.03176869797817], + [5.872839115805776, 51.03155081522237], + [5.873168585445725, 51.03104943408863], + [5.865313831485554, 51.0291683325886], + [5.86177034851176, 51.029531783072976], + [5.861827703110175, 51.028894467285575], + [5.856735703556566, 51.02853714923759], + [5.852614134032044, 51.02931809487415], + [5.851078020127301, 51.032403875092776], + [5.84911693763384, 51.03653774461866], + [5.852740588618714, 51.03812321291791], + [5.848580504006499, 51.04628289491673], + [5.844230492275836, 51.04572190490256], + [5.842312183615557, 51.04638596592775], + [5.841238434280074, 51.045753941104486], + [5.838152336044667, 51.04661497155051], + [5.835275412631054, 51.04892955264081], + [5.827253150516897, 51.04755818086221], + [5.826772487358631, 51.05586852306901], + [5.823677810494795, 51.06673157132889], + [5.823960466277137, 51.07251055074739], + [5.820541884428074, 51.072588842089864], + [5.819623098636277, 51.07260986287095], + [5.813518799836064, 51.06554433982842], + [5.80934353649733, 51.059144168591764], + [5.8078561471359595, 51.0592120651521], + [5.806934306930509, 51.057572047317784], + [5.806261178607752, 51.058098480742764], + [5.803233364586927, 51.057594734590886], + [5.80294588034825, 51.05855755926713], + [5.800536713787774, 51.05930400879057], + [5.799338796722869, 51.06007180645049], + [5.800886286507548, 51.06211178063057], + [5.801058491937634, 51.06401959756023], + [5.7982578043824065, 51.06817505579559], + [5.797680763150948, 51.07089956464743], + [5.796620076048788, 51.07182440564432], + [5.799248135674596, 51.075006872535695], + [5.80419120411369, 51.076925412109475], + [5.804879960019452, 51.077929330028766], + [5.804506577393683, 51.0805316997841], + [5.802824263057939, 51.08276520287756], + [5.798847830078504, 51.085783454940035], + [5.797130450327417, 51.08618064356304], + [5.795107063891364, 51.08962269995097], + [5.796022623027056, 51.09147846845716], + [5.8000581334703405, 51.09420156226085], + [5.805336654292817, 51.09591904052314], + [5.809745702239311, 51.096310082346655], + [5.81398701003838, 51.09558470386827], + [5.821329133700604, 51.09266878858221], + [5.824142983615022, 51.09235008476755], + [5.8289869107301655, 51.094421595766605], + [5.832391521744039, 51.097325138329005], + [5.833507214988762, 51.09955531355435], + [5.83471128862573, 51.099469775308606], + [5.83508594426652, 51.10105495223608], + [5.837665125190738, 51.10324255689772], + [5.844679803833633, 51.105262838472306], + [5.8486764191495615, 51.109535010441014], + [5.85094436259797, 51.10923338512187], + [5.851091089975564, 51.109184996496715], + [5.8579547151899165, 51.11678249002072], + [5.866165731118241, 51.127252992758194], + [5.872281555974889, 51.13510866121424], + [5.87283677543027, 51.13487808142138], + [5.8743022292556715, 51.13424964108171], + [5.881568225670119, 51.13483104344452], + [5.882838480018367, 51.13339907517351], + [5.8866164199639615, 51.13500889936511], + [5.887154643740149, 51.13442234713073], + [5.890395769303344, 51.134884864169045], + [5.890630901607012, 51.134402882935824], + [5.893553346919411, 51.135156334039024], + [5.895248393739377, 51.13525488154074], + [5.896585754266991, 51.135959987233676], + [5.897775573752915, 51.135954567016825], + [5.8982738471143925, 51.134832326077415] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.fada5bc0-544c-4567-8f60-ec0fbac133b6", + "properties": { + "statcode": "GM1714", + "jrstatcode": "2024GM1714", + "statnaam": "Sluis", + "rubriek": "gemeente", + "id": 284 + }, + "bbox": [ + 13565.39999999851, 363156.7459000014, 38244.57800000161, + 381480.88529999927 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [3.5194348772695703, 51.40749187767404], + [3.5456700656773794, 51.40530701538916], + [3.5476764370168206, 51.40516815080625], + [3.5498426820254285, 51.40615358764], + [3.5509978276846623, 51.40595182806723], + [3.548269390542169, 51.40344755322191], + [3.546522118520746, 51.403522553501666], + [3.547366053553239, 51.40186496000874], + [3.5471228525260896, 51.40163974600633], + [3.5477620915048513, 51.4013158652603], + [3.548091782426313, 51.401519570185016], + [3.5509111198879966, 51.400736994513416], + [3.5536281234510008, 51.403676436599675], + [3.553060411948542, 51.404581238925836], + [3.5532843896176964, 51.40469614056033], + [3.554019597458766, 51.403775518748745], + [3.552605625725025, 51.40138594042828], + [3.558577614426557, 51.40019262290874], + [3.567859619372317, 51.40061625832485], + [3.5626852535129276, 51.39668708410065], + [3.5627645078932066, 51.396062351432455], + [3.5662967647598944, 51.39846432048315], + [3.5670050707629453, 51.39776302371385], + [3.5644987224394176, 51.39571630134024], + [3.56467571976864, 51.39531881036091], + [3.5662297469493223, 51.39532704243563], + [3.5676963874447662, 51.396480925683925], + [3.568436591569779, 51.39654193928542], + [3.5685907530131145, 51.39519006414596], + [3.5700872318782086, 51.39511240984027], + [3.5703386799119463, 51.39575409266232], + [3.5707259968646174, 51.3957458573134], + [3.5720799866075494, 51.39490526588182], + [3.5734875791011196, 51.39490737455883], + [3.574383762916546, 51.395662533292516], + [3.568307353150346, 51.39863999345082], + [3.5682434692298464, 51.399248846890075], + [3.578322159146233, 51.39386423210364], + [3.5781454314711008, 51.392592191971495], + [3.5848168206684443, 51.38789849306885], + [3.589168790204018, 51.386722792166225], + [3.60694058772035, 51.38518265464399], + [3.607752439480157, 51.383755677732424], + [3.6141809596984715, 51.38248407729589], + [3.6157688488275284, 51.38052865491332], + [3.6233739636230133, 51.37902291082025], + [3.6407536289842195, 51.375903867582494], + [3.6521847517231207, 51.37470634010043], + [3.66243297969384, 51.3737076790857], + [3.6658718940247015, 51.37465330578574], + [3.6684867976227045, 51.37426011090884], + [3.6721677064470923, 51.37275842615343], + [3.687396863971868, 51.37125865303798], + [3.690980429817886, 51.36757184206428], + [3.690965538586765, 51.36589439566105], + [3.6930506047972513, 51.365287592614], + [3.6938143787503903, 51.352473781618095], + [3.689814669038646, 51.353350680457936], + [3.6878451208627676, 51.355576875218475], + [3.6823863436162956, 51.355273168936485], + [3.6823091067564597, 51.353433427917686], + [3.6593981909046716, 51.351135259480834], + [3.6590339688516282, 51.34994337696105], + [3.6541965264564436, 51.348390222070805], + [3.6495470339782585, 51.34899721062187], + [3.6472421643989956, 51.35004874745985], + [3.6495980304350253, 51.342734862347626], + [3.644231890105506, 51.341741446642395], + [3.653309821240926, 51.33175006340252], + [3.6579721570805557, 51.33335049976402], + [3.6599912724644215, 51.32488686630923], + [3.6638277315961583, 51.32523888432243], + [3.666204183582538, 51.31981171067659], + [3.6862836854727536, 51.321598782942246], + [3.6894074229711125, 51.32030134913807], + [3.70384545312321, 51.318370657330725], + [3.7124087083946637, 51.315790672717625], + [3.7035824298773625, 51.30994318938886], + [3.707143303244998, 51.30663640182486], + [3.7040296036307474, 51.30247914940738], + [3.7066106347502537, 51.2888260212192], + [3.7035588656917744, 51.28698772703754], + [3.7014250467177647, 51.28674844008452], + [3.6988826600827776, 51.284445958715786], + [3.6939337048106835, 51.276039043628806], + [3.6899323809239135, 51.280608961596016], + [3.682571781092191, 51.281090962773305], + [3.677908619990842, 51.28053165456881], + [3.676756693768039, 51.28306462551618], + [3.658100251486692, 51.29018852656013], + [3.6444060774912472, 51.29011085053682], + [3.6432578696348994, 51.288692389585556], + [3.640820302963255, 51.28808738460686], + [3.6257100534457187, 51.29333829715942], + [3.6212278791314305, 51.29276510451809], + [3.6192098573949854, 51.29424721790616], + [3.618567872527651, 51.29590889895542], + [3.6147165962972307, 51.29771885792561], + [3.6126916745700317, 51.297940234514044], + [3.590831945529533, 51.30441657111245], + [3.5917810607028535, 51.305339985145025], + [3.589891771381381, 51.30582435405076], + [3.5858295085158765, 51.30167498351826], + [3.5811128422302927, 51.298321300785936], + [3.5879279196149607, 51.2929604626867], + [3.583385070847283, 51.29225423511614], + [3.5825990308634745, 51.2907591342679], + [3.5838795174338944, 51.288884566254005], + [3.5818120503660533, 51.28691251154608], + [3.57983134279178, 51.288766834417316], + [3.5777688070577405, 51.28882109443658], + [3.576159447211195, 51.28800713135613], + [3.571530758010742, 51.2910274342423], + [3.5719412809827227, 51.29196347216046], + [3.566482878930198, 51.293791691029526], + [3.566195555274741, 51.29462638484505], + [3.562707484104423, 51.29585625535605], + [3.5597592174246144, 51.29545468950106], + [3.558077746574215, 51.29122054484592], + [3.5562512955599024, 51.290361778769686], + [3.5556918547463927, 51.289799174425085], + [3.553586900281899, 51.28957875212603], + [3.5498137982261904, 51.29110169666206], + [3.5434266451867273, 51.29119775821125], + [3.5423095587597375, 51.28800624061226], + [3.5380032873327285, 51.28365614696925], + [3.53366547891384, 51.28348877436071], + [3.5291297622268067, 51.28874372801057], + [3.5154148027543157, 51.28715060062102], + [3.517619199039371, 51.28058349549524], + [3.5280118735812116, 51.24644035608517], + [3.527594176570135, 51.24604015673396], + [3.4846684698758406, 51.243269326540734], + [3.4503852305277722, 51.24161447342671], + [3.4469555862849948, 51.24160984554369], + [3.444412683647739, 51.242099474617255], + [3.4444959608481414, 51.2426927400097], + [3.4405330337369757, 51.243465421178634], + [3.4323138303055933, 51.24560935977656], + [3.427478866637241, 51.24465693838977], + [3.4253698757662137, 51.25087383875009], + [3.424405324096568, 51.254476584526735], + [3.421223044228054, 51.25661718167294], + [3.4183357737065765, 51.25748497730763], + [3.4171386778046253, 51.25977800422645], + [3.4159845490183836, 51.25994819594168], + [3.411564180100573, 51.25692779980176], + [3.4074029172280063, 51.25696206028737], + [3.40316227369099, 51.262463167728754], + [3.396806207022987, 51.26410310086549], + [3.3945336098207175, 51.26541847162655], + [3.3889201212698628, 51.27125095335105], + [3.387865026010037, 51.27325001755366], + [3.386467947906249, 51.27388504615718], + [3.3823315692367397, 51.274077458644186], + [3.3783941843600136, 51.27502598464339], + [3.375800034297938, 51.2770784287642], + [3.375336900271323, 51.27850603002367], + [3.3759295383953125, 51.27948461714816], + [3.379698466922752, 51.2803112507902], + [3.3816801407092143, 51.28162350684275], + [3.3804167901518367, 51.28431442525686], + [3.3807962290763616, 51.286961469942355], + [3.3789320660194693, 51.28851749843651], + [3.370287028730007, 51.291940419061156], + [3.3668032188563064, 51.295643938134795], + [3.36607406978462, 51.2982709790424], + [3.367390929112882, 51.29962236650702], + [3.3717576200430144, 51.30009016658287], + [3.3780794533518037, 51.30265034654523], + [3.3768390456808026, 51.302448207811985], + [3.3629069725365093, 51.31190028609054], + [3.3583781888356805, 51.314981421538874], + [3.362848664874982, 51.31814303539615], + [3.385305635422301, 51.33425861722525], + [3.383512995227167, 51.34120500362132], + [3.3740706931319084, 51.34850782164951], + [3.3737058833614255, 51.35423314852252], + [3.3749900321785926, 51.35888718021211], + [3.3723431130792236, 51.361993109429065], + [3.3730715268790754, 51.36468904410534], + [3.369694209849306, 51.366909933634055], + [3.3704851745601605, 51.371011775472326], + [3.370098108426031, 51.37246155266229], + [3.371843905241522, 51.37359680599695], + [3.3785182661895927, 51.37741542513154], + [3.3804311098897064, 51.37829465542854], + [3.3802304505797816, 51.37993596069311], + [3.3806549585604895, 51.380094846787905], + [3.380870620677062, 51.37808332392154], + [3.3826327532158045, 51.37782344304521], + [3.382662594916828, 51.38004891142747], + [3.381917229388778, 51.380282971608125], + [3.3819265043062923, 51.38048753909252], + [3.3831962153574087, 51.380140654271656], + [3.3832328907736806, 51.379296085376225], + [3.3852361822438968, 51.37937112992461], + [3.4022769170996603, 51.38332334248944], + [3.4118204228404867, 51.38646571007204], + [3.4212878355973158, 51.38964266003275], + [3.4307351345944963, 51.39152075809015], + [3.4328269671599463, 51.39048297771647], + [3.4366206821265806, 51.38845795407906], + [3.44006034419159, 51.38849335787811], + [3.4483445009293643, 51.39119049021215], + [3.455750469128773, 51.393628966042584], + [3.457738664718593, 51.393988444536056], + [3.4729829922342783, 51.396325253730424], + [3.487818171131255, 51.399509884385516], + [3.4945040700483485, 51.40196877948884], + [3.500200512494509, 51.40418299436004], + [3.5014544461160426, 51.405626614725136], + [3.5041168918325227, 51.40664154855543], + [3.505346250516098, 51.40662076108491], + [3.5194348772695703, 51.40749187767404] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.2bf81a44-69c1-4ec6-8086-9ede08f2e85f", + "properties": { + "statcode": "GM1719", + "jrstatcode": "2024GM1719", + "statnaam": "Drimmelen", + "rubriek": "gemeente", + "id": 285 + }, + "bbox": [ + 103722.47500000149, 404659.2809999995, 118120.432, 419938.47199999914 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.7824492069482245, 51.76656830368463], + [4.785403999584813, 51.75593280300802], + [4.802501611598944, 51.757586358085014], + [4.812863306740674, 51.756634185333766], + [4.822276059514972, 51.753856613293046], + [4.828089465468742, 51.75378408401277], + [4.833649301213624, 51.7540057321101], + [4.841881359185388, 51.756686632489185], + [4.8467510800456095, 51.75705641660906], + [4.851328482676456, 51.75617821370641], + [4.853126169876117, 51.75074827581668], + [4.852481134998981, 51.74867966463446], + [4.849411439060214, 51.74482722766891], + [4.849831104333358, 51.74034530797933], + [4.846930571302664, 51.733552489105314], + [4.846937674946745, 51.725524104212894], + [4.840663929235395, 51.716323610952166], + [4.836904719393343, 51.712611863763094], + [4.829766917632194, 51.71158581544897], + [4.823610411152653, 51.71128815268457], + [4.824133546679028, 51.709540937703544], + [4.826669174338842, 51.7043582928028], + [4.829657248089459, 51.695634883149395], + [4.831942031028444, 51.69179099728402], + [4.839624346900573, 51.684020732798984], + [4.8423679313917605, 51.67965404692623], + [4.828561485597879, 51.676443757707865], + [4.82735159469676, 51.676962694949395], + [4.821787886038523, 51.67474395853746], + [4.816954462650173, 51.673649248135675], + [4.80683312243013, 51.67127250363556], + [4.801197866988423, 51.67020524925054], + [4.79678740910233, 51.669515118589615], + [4.781080917842865, 51.6638855680875], + [4.794305106400317, 51.641740574415536], + [4.796489096215547, 51.641186962018836], + [4.787505938592238, 51.637048012740074], + [4.769582118125882, 51.62950994644503], + [4.765686181918047, 51.62914042117142], + [4.765017512173356, 51.63191024272928], + [4.762652103898817, 51.635033765032055], + [4.757368363600153, 51.63757551746305], + [4.74902903138145, 51.63897964161936], + [4.745000574548422, 51.64043980450848], + [4.738536846272982, 51.642813627911714], + [4.731840121279877, 51.64305625369611], + [4.704333503549831, 51.6382461499286], + [4.699059657383532, 51.6380731922291], + [4.695451347535239, 51.64710592074486], + [4.6925618322286775, 51.64755183351656], + [4.689171801409973, 51.65241643448341], + [4.69678308504902, 51.6545941145418], + [4.694232713170168, 51.65830641773672], + [4.684992283960599, 51.66628979629303], + [4.7098789378812285, 51.67327189373414], + [4.70662519363326, 51.676753186965314], + [4.70460566339117, 51.67632156713004], + [4.702030565707947, 51.67989380692168], + [4.704534030488974, 51.68050651281561], + [4.697313554933672, 51.68771751586166], + [4.695036876069129, 51.683357236613695], + [4.692818256716113, 51.6816798485916], + [4.6811214523705855, 51.687847972321784], + [4.679190558994997, 51.68643591677054], + [4.673227621903177, 51.688986864878835], + [4.666939731973598, 51.68649367881741], + [4.659688916907009, 51.69684569441994], + [4.657403400871708, 51.70220424005052], + [4.656511381820819, 51.70729768053384], + [4.654631764491436, 51.70898522002605], + [4.650865382803539, 51.710111995770724], + [4.645136584917976, 51.719067325039354], + [4.675222591695757, 51.724209390396105], + [4.676304223471845, 51.72492365057537], + [4.677286224333661, 51.720110253156356], + [4.698553145367009, 51.72199204999138], + [4.721842544707664, 51.73427192319262], + [4.733650890871403, 51.7365073681544], + [4.7374507553351375, 51.7413004025358], + [4.747363734775174, 51.74662248509182], + [4.747901713521311, 51.74877150304603], + [4.750726955856961, 51.752289221768656], + [4.763942448348742, 51.759067674180244], + [4.772109348566305, 51.759329642323955], + [4.778796945552594, 51.76416874509562], + [4.780654223725177, 51.766418891879844], + [4.7824492069482245, 51.76656830368463] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4f635194-ef30-4ccc-a353-cd6c45668b8f", + "properties": { + "statcode": "GM1721", + "jrstatcode": "2024GM1721", + "statnaam": "Bernheze", + "rubriek": "gemeente", + "id": 286 + }, + "bbox": [ + 157504.2800000012, 404208.4279999994, 169752.76700000092, + 416885.83469999954 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.543295369525478, 51.73846480911999], + [5.553918934486931, 51.7348017815967], + [5.56017021875659, 51.73235974333197], + [5.5701329695533, 51.73102849007787], + [5.573760780196489, 51.73105924970953], + [5.576006312678134, 51.73153196734757], + [5.580881160467036, 51.731448088077244], + [5.587758832810808, 51.72595416502525], + [5.600065179772515, 51.70848683888693], + [5.599086349896545, 51.70715522434344], + [5.595436509417038, 51.70752647409532], + [5.5970406160619355, 51.701987489863214], + [5.600228463794755, 51.69828990694333], + [5.600588716452188, 51.69657293001791], + [5.598855984915045, 51.695870891747795], + [5.596837463362325, 51.690922553916685], + [5.588948512337507, 51.684816102733784], + [5.5868641463777475, 51.68305317301], + [5.5787842785180395, 51.68054590578354], + [5.576412623011341, 51.679971641771736], + [5.57696529142573, 51.67876555635458], + [5.574493106199737, 51.67838457990413], + [5.573016257301673, 51.678090098016845], + [5.573522890693154, 51.67709016375168], + [5.565907845485736, 51.66736890231793], + [5.562239677548047, 51.663152334312805], + [5.561966391589932, 51.66077736065861], + [5.564048466100619, 51.66147073439438], + [5.566394235917477, 51.66134443415126], + [5.567738857165757, 51.65933339367735], + [5.568910278732974, 51.65956352687199], + [5.571045942226479, 51.65519781611934], + [5.5674094793697595, 51.6535070598077], + [5.570300300018686, 51.65143425080422], + [5.56782541632317, 51.65035307449792], + [5.56535933641198, 51.64836950811312], + [5.542011803027442, 51.64031069762864], + [5.54241222293014, 51.63915633334223], + [5.543145893204826, 51.6390999604256], + [5.542236714477016, 51.63453714204701], + [5.5336626608485435, 51.63551279814699], + [5.532474891116746, 51.634471762079755], + [5.531094299621703, 51.6329529788], + [5.526215571318931, 51.632256199104056], + [5.52439681887918, 51.630438696422694], + [5.516880297555913, 51.631821737151846], + [5.504858901789401, 51.63607848479295], + [5.504623117051998, 51.63300568087251], + [5.497202497093161, 51.626685978165185], + [5.468912504049135, 51.64169751466536], + [5.465928052144347, 51.64290123249195], + [5.438499720845578, 51.64991808399681], + [5.423389800540978, 51.65378314577808], + [5.423529298484124, 51.65385120033671], + [5.4284237380358915, 51.65647169451964], + [5.4316634263707835, 51.66089459167125], + [5.431593158120304, 51.663186843553476], + [5.43260928461049, 51.66417724947514], + [5.4394105735198215, 51.66487438314822], + [5.445042493154713, 51.664278959530435], + [5.445631267519385, 51.666416830426684], + [5.448826836413832, 51.669552161043796], + [5.456872727904078, 51.687590841530124], + [5.458768412936531, 51.6920293836263], + [5.459846631663857, 51.69128831797221], + [5.46032683896112, 51.68965142009299], + [5.469849785362334, 51.689136746639434], + [5.469401359698457, 51.69126885569285], + [5.471054223371142, 51.69115160502594], + [5.478291475274635, 51.70143127059582], + [5.483075003115306, 51.701463579823866], + [5.492385882034265, 51.70610065475623], + [5.49906819410221, 51.7070828362657], + [5.499656068711694, 51.70900837074442], + [5.4982318469307465, 51.70917731258585], + [5.49891889193399, 51.71056578339553], + [5.497321865186787, 51.71076576344623], + [5.49770657216024, 51.71171060231301], + [5.487819896539058, 51.71206773876283], + [5.4877730610547575, 51.712899420032564], + [5.484785215117537, 51.71330805955444], + [5.478827997729718, 51.72415826055881], + [5.480137046147774, 51.72446402207485], + [5.4742443192027235, 51.728964720333686], + [5.478717196468602, 51.7302165204885], + [5.495306038953742, 51.73467930841778], + [5.499000531625453, 51.7354787327452], + [5.504614699555786, 51.736677930590005], + [5.507706227397685, 51.73782194001489], + [5.508732996328496, 51.73793047456305], + [5.508994977439918, 51.73717876718855], + [5.509553322568136, 51.73727550734044], + [5.509937626456443, 51.73734209143367], + [5.510283040795483, 51.73808405572729], + [5.516846977207772, 51.73869516193123], + [5.529138623435625, 51.74044026587675], + [5.533919040270629, 51.740596648954366], + [5.543295369525478, 51.73846480911999] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d7d5281c-0f03-4157-b957-3f5a80753596", + "properties": { + "statcode": "GM1723", + "jrstatcode": "2024GM1723", + "statnaam": "Alphen-Chaam", + "rubriek": "gemeente", + "id": 287 + }, + "bbox": [ + 110561.80099999905, 385394.7320000008, 129247.52699999884, + 396610.6339999996 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.864261136059156, 51.55202014607339], + [4.852706063194358, 51.54521146077152], + [4.8518191541440645, 51.54468369835334], + [4.84835744924438, 51.5429843707176], + [4.83485947789196, 51.53861754540855], + [4.834616543299126, 51.53514853843068], + [4.836113159365308, 51.53446553593712], + [4.836794883099718, 51.532770891392964], + [4.835703864260774, 51.53152660603577], + [4.831324946714565, 51.52947268100856], + [4.829260986513577, 51.529689433971946], + [4.829766328487475, 51.52785880428469], + [4.842351820206017, 51.526845066119456], + [4.845060614524174, 51.528481553991995], + [4.844738938707749, 51.53332769818509], + [4.851050402670457, 51.53410227457409], + [4.854563986962187, 51.53392658413709], + [4.8662324430237325, 51.53806660510657], + [4.911062843890669, 51.510081285567864], + [4.956643640568355, 51.518676602621454], + [4.962572745934026, 51.5258644129153], + [4.968750850186071, 51.5211816222888], + [4.977595842229813, 51.52165162109418], + [4.980868797123014, 51.51863092719159], + [4.98455460160387, 51.51788211694502], + [4.982496198976588, 51.51408805574602], + [4.989917963382039, 51.513149558913824], + [4.992298365796971, 51.51224760151634], + [4.989655111021883, 51.50575507824081], + [4.985775985163466, 51.49975454475263], + [4.986739820358542, 51.49532926506758], + [4.9946429703047635, 51.497650691768726], + [4.996756578764898, 51.49677471386328], + [4.992466436479754, 51.493945535806716], + [4.997158893442718, 51.49204964775894], + [4.9978038283891735, 51.4928449654732], + [5.0003639438762315, 51.491862473666274], + [4.997228474014113, 51.48853841290662], + [4.992618492353416, 51.48745351213123], + [4.991637888453159, 51.48618245917145], + [4.993391038372017, 51.48547930719701], + [4.99133643274975, 51.484421163712135], + [4.990096245119663, 51.48507807524987], + [4.988420316700682, 51.48398465491871], + [4.987993346189467, 51.48304472644774], + [4.999176405628895, 51.48201587772815], + [4.999788297337558, 51.480501921491914], + [4.999301716435932, 51.479306377749396], + [5.0064110513539575, 51.47511015662494], + [5.008338213103683, 51.47329958514014], + [5.015272492290786, 51.47632935616913], + [5.016522482126589, 51.475439158298094], + [5.010836009815398, 51.47230743169766], + [5.00795319871604, 51.46672903879618], + [5.007685326389072, 51.4627797719908], + [5.01055861770749, 51.45943294846789], + [5.010462629813133, 51.45824439819055], + [4.977134942217964, 51.460681632744574], + [4.976712217056151, 51.46126393486351], + [4.974774174201789, 51.46061892547396], + [4.973653686317751, 51.45974289869798], + [4.970077093204793, 51.45874088829374], + [4.956718529262848, 51.459736005774026], + [4.947162179786816, 51.458568723373055], + [4.944662567520207, 51.45679034519912], + [4.94163292041257, 51.45713676253024], + [4.932121812787353, 51.45921296591104], + [4.917972834268961, 51.46674095442144], + [4.917048257259672, 51.468040968647955], + [4.892556647415478, 51.47778367380468], + [4.891294544471502, 51.478216533209604], + [4.8830772848443065, 51.47730833431261], + [4.871697614425414, 51.479807282158376], + [4.8619500075543, 51.4776097327354], + [4.853929420686375, 51.478441948115886], + [4.852878824698941, 51.479398688160444], + [4.848018950122807, 51.48029524801506], + [4.841878210540118, 51.48073576745609], + [4.8376498929855645, 51.48195520627173], + [4.829278502822133, 51.48178589796176], + [4.825356951976164, 51.4821259008856], + [4.8211429669315455, 51.483070230487606], + [4.820167985645735, 51.48602909262321], + [4.817419113548133, 51.488991736333745], + [4.818217646230124, 51.49105144827833], + [4.817569732276748, 51.49292526617824], + [4.815205359119374, 51.49481906405604], + [4.8055508752306215, 51.49740523765236], + [4.802251949101098, 51.49760001564278], + [4.801905216664262, 51.498381525692515], + [4.79725760219641, 51.49962590633643], + [4.795911045554758, 51.49943800866111], + [4.794946091009126, 51.49987940572982], + [4.79394566623588, 51.499785168082894], + [4.7934636579863135, 51.49942693125699], + [4.792494045919869, 51.498357997305696], + [4.792181519419008, 51.498630070971345], + [4.79129241389154, 51.49844741491494], + [4.790866487204203, 51.49815866747465], + [4.787759323631464, 51.49903814956463], + [4.786161478490251, 51.498837180812764], + [4.785067275172632, 51.49974683457107], + [4.783060982004517, 51.49956422055761], + [4.780735333334983, 51.504084680014046], + [4.774844922459034, 51.504937839237655], + [4.774746052904128, 51.50484717162867], + [4.7738880237026, 51.50495594699914], + [4.773922585156979, 51.505094296176516], + [4.7737575504809415, 51.50511446346979], + [4.760023281296753, 51.502372765957084], + [4.753472064482721, 51.505795755249345], + [4.750947630259352, 51.5091067452787], + [4.7469951420287, 51.51547857395545], + [4.7489341805199565, 51.51896161929548], + [4.760185112300555, 51.51930821089925], + [4.76446966553466, 51.52404576231155], + [4.767546071825133, 51.52510529252743], + [4.768632849953494, 51.525128983930315], + [4.770019202112711, 51.52364182074195], + [4.7702854919530555, 51.52439668117541], + [4.769313555162194, 51.52538180147896], + [4.77006045690775, 51.527357290264135], + [4.777848517244066, 51.52938955254122], + [4.778105058504075, 51.529449236647224], + [4.794252963905218, 51.534897112889155], + [4.798038273421078, 51.535141366399984], + [4.801325992398353, 51.5360834462468], + [4.799350925028028, 51.53706418522263], + [4.824520527574413, 51.54783963631313], + [4.830769543211568, 51.55035179681951], + [4.832904274836537, 51.54957963642687], + [4.837396647558251, 51.54951316889576], + [4.8397802070154325, 51.553185773029334], + [4.8437030822780685, 51.554236430115296], + [4.862984965221776, 51.55726955759771], + [4.864545173853687, 51.55350317813245], + [4.864261136059156, 51.55202014607339] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.de16a1a3-f6a2-48e9-bc0c-a093748df5f3", + "properties": { + "statcode": "GM1724", + "jrstatcode": "2024GM1724", + "statnaam": "Bergeijk", + "rubriek": "gemeente", + "id": 288 + }, + "bbox": [ + 143747.87000000104, 363569.5700000003, 158256.7509999983, + 377193.21499999985 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.413481910633694, 51.3839050089257], + [5.417837626158909, 51.382087573447], + [5.4218011851064265, 51.383409910930354], + [5.424083482365555, 51.380294324188164], + [5.425552648026863, 51.379242223016455], + [5.424851854737287, 51.379193347174485], + [5.423833578169402, 51.37760135027251], + [5.424236826913193, 51.376553138724425], + [5.42320735317642, 51.37486642567529], + [5.421360787988467, 51.37431725256572], + [5.4188711720867, 51.37180738516209], + [5.420981979992775, 51.36929950494547], + [5.419881985946962, 51.36510337607527], + [5.419703407978394, 51.35925012697058], + [5.420979831041843, 51.35665119825788], + [5.421546755382935, 51.35418829066256], + [5.423527870017695, 51.352239786323885], + [5.422905106062803, 51.34984847282575], + [5.4227129781896055, 51.348324353714986], + [5.425182582414423, 51.345373885701214], + [5.424979292605531, 51.34437128865649], + [5.421401244476503, 51.340693671636544], + [5.4212019082625575, 51.33837728153089], + [5.421951767198308, 51.33855653708896], + [5.422819889369321, 51.336266711729934], + [5.423035146836463, 51.33258136371408], + [5.424290736177545, 51.33075986118742], + [5.4339226730520895, 51.32432076444422], + [5.427375272737025, 51.31438950819295], + [5.425799123844847, 51.311990226838724], + [5.4239278020709545, 51.31250749843429], + [5.419850669584818, 51.31801834680427], + [5.416487404873655, 51.31939178085435], + [5.413652542559253, 51.318646452255514], + [5.412861454683742, 51.32051812983166], + [5.41078557215312, 51.319976919556865], + [5.400719157470839, 51.31350099408813], + [5.397672508499019, 51.31432058161189], + [5.395905307100101, 51.31017753310627], + [5.394459646209354, 51.3089942498068], + [5.3947628217065136, 51.30634619169919], + [5.39546403004111, 51.306008651850966], + [5.393425355474418, 51.299650802668786], + [5.394866228407547, 51.29627130709281], + [5.392664975758025, 51.293990010348864], + [5.3970855890034075, 51.291476279989645], + [5.397202093545763, 51.290620271692156], + [5.387803626226576, 51.285238899101934], + [5.398011391679622, 51.2776706491307], + [5.400896839891965, 51.27446196954669], + [5.403797196697036, 51.27346994805203], + [5.41741151905494, 51.26228572985173], + [5.395944780809269, 51.266971622669615], + [5.346140319603697, 51.27576438776718], + [5.345747993964624, 51.272203984400015], + [5.344159537388157, 51.27019819894665], + [5.342610552724319, 51.26575492618967], + [5.339394265751159, 51.26406250927911], + [5.336475588483227, 51.26306721103629], + [5.315137028383831, 51.26345525909066], + [5.296153755205995, 51.26148162355165], + [5.263119764654163, 51.266801780479895], + [5.237914201546757, 51.26135314862721], + [5.225971942754497, 51.268259749631135], + [5.242192615593963, 51.30521857745368], + [5.24111849526878, 51.30566501082844], + [5.242535362782994, 51.306003874193934], + [5.24396938302689, 51.30938740824144], + [5.259448857807822, 51.31147730917439], + [5.260250028770296, 51.315493261121745], + [5.2634105720534, 51.31928179983632], + [5.2921737462104055, 51.31823746112284], + [5.308056095294968, 51.32182834434511], + [5.309551598560465, 51.32104873118373], + [5.31616756672903, 51.323683822617674], + [5.3167327103366295, 51.32345389174892], + [5.318876752399031, 51.32485505397862], + [5.322951669310567, 51.32869222205276], + [5.321158787600069, 51.32956952874391], + [5.324010013579953, 51.33290245639843], + [5.326141729754888, 51.33189548629575], + [5.326353771384669, 51.33262148193802], + [5.331480663904904, 51.33360081866105], + [5.332203365559176, 51.33316551334898], + [5.337839265346211, 51.33480408696488], + [5.341740314152369, 51.33582537237307], + [5.3471213097877, 51.33745315530378], + [5.341992231006033, 51.34421792602431], + [5.346783717305873, 51.347516242650585], + [5.3425885768255394, 51.35267231070152], + [5.344744547039395, 51.35490775326897], + [5.345773931315377, 51.357517071239485], + [5.348280378368169, 51.3596318897065], + [5.351581765281313, 51.360703074833694], + [5.352451180917472, 51.3618210201635], + [5.355752350071096, 51.3625316330822], + [5.3643222519463185, 51.36697609970629], + [5.370496373597551, 51.369311436545296], + [5.374066807401635, 51.36952839975154], + [5.375637831628432, 51.36876256390611], + [5.378211476935918, 51.36939360610482], + [5.381133209040725, 51.37113090430048], + [5.382605516457626, 51.3728313101597], + [5.38802653151113, 51.3752678700216], + [5.388907030149399, 51.37646010365587], + [5.390862253446137, 51.37759178826196], + [5.393152934551778, 51.377476967687535], + [5.395891807260784, 51.379329292642666], + [5.39651527905855, 51.3808201645531], + [5.408413783674267, 51.3798184701225], + [5.40981319469625, 51.380104890907276], + [5.410273819971719, 51.381248037723346], + [5.413481910633694, 51.3839050089257] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.bf4f656c-fb4c-4242-ab7a-33064c345d94", + "properties": { + "statcode": "GM1728", + "jrstatcode": "2024GM1728", + "statnaam": "Bladel", + "rubriek": "gemeente", + "id": 289 + }, + "bbox": [ + 140797.33300000057, 368498.81500000134, 149881.60700000077, + 383059.2589999996 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.209217706831661, 51.4365005434712], + [5.209937166468838, 51.4341712373758], + [5.215771329821329, 51.434179949035624], + [5.2174852831842236, 51.43050388254554], + [5.2195431046882375, 51.42891876840792], + [5.223140698362381, 51.42792126166264], + [5.223738392398728, 51.425097670977856], + [5.229285026066105, 51.425452070955224], + [5.2327000427135, 51.42685665651207], + [5.237704666933674, 51.42855889787026], + [5.2433805075090225, 51.42548261637947], + [5.244782510158733, 51.426253937910985], + [5.249446467382487, 51.422953904306674], + [5.248775817610895, 51.42255773438624], + [5.272903675840229, 51.40946998936177], + [5.276393315361597, 51.40934818514733], + [5.278386803218675, 51.40865040625089], + [5.281426665836658, 51.404994663206324], + [5.290148977712874, 51.40408117416868], + [5.29625350201183, 51.40775189432117], + [5.298021551488142, 51.40715431353791], + [5.299967686582836, 51.40778935138788], + [5.302987120838697, 51.40750085449826], + [5.307295205531912, 51.406114264483215], + [5.3136500944048874, 51.399440911619976], + [5.31044419756369, 51.39605508864816], + [5.310865871585291, 51.39071499598754], + [5.307099570713, 51.390617005114976], + [5.306283431185476, 51.39095912802885], + [5.302711598085715, 51.39071118034782], + [5.298815742613558, 51.3896818406947], + [5.289414988085757, 51.38892265108751], + [5.29032359421431, 51.38613001158996], + [5.285915411268839, 51.384469858122515], + [5.279765763428943, 51.37532882507267], + [5.279275107456971, 51.37386124307448], + [5.2774437469967, 51.36877957633431], + [5.277442685788855, 51.368776579396], + [5.2758912032249805, 51.36439583841152], + [5.27529883547214, 51.36272298211399], + [5.278922465107349, 51.35376933544846], + [5.279096624039964, 51.353338922553654], + [5.285972547563536, 51.33633888589339], + [5.2634105720534, 51.31928179983632], + [5.260250028770296, 51.315493261121745], + [5.259448857807822, 51.31147730917439], + [5.24396938302689, 51.30938740824144], + [5.242535362782994, 51.306003874193934], + [5.24111849526878, 51.30566501082844], + [5.200255056280694, 51.32266121556908], + [5.2046977662037515, 51.32543849994598], + [5.193865244899522, 51.34522611742541], + [5.1960685722921, 51.34799572155173], + [5.196292848117151, 51.34984214305273], + [5.19449448152019, 51.35107553234753], + [5.192339402884297, 51.35073743467886], + [5.191913625795293, 51.35627376931226], + [5.191942549554973, 51.36146788169682], + [5.196424769196731, 51.36158727379377], + [5.195391792968225, 51.36229149820351], + [5.1974230285749075, 51.3627247004168], + [5.192137967685084, 51.36479671840928], + [5.19060479328941, 51.36622676883303], + [5.192101848176569, 51.366769344011864], + [5.190659076457761, 51.37190508017135], + [5.184347015223584, 51.37476319830529], + [5.183215737946083, 51.37578613424789], + [5.185414634113832, 51.37584075885718], + [5.187987716386282, 51.3745131415211], + [5.188508371324627, 51.37762045454621], + [5.193014179141581, 51.37826408512702], + [5.19926882133983, 51.38230810193029], + [5.197402590431802, 51.3840178824797], + [5.200959367406299, 51.39006596995081], + [5.1999210244923475, 51.391707423855266], + [5.194749362026191, 51.39995521663458], + [5.190851534695934, 51.41821086989814], + [5.191020000434413, 51.4302158232278], + [5.191024878796082, 51.430224999903686], + [5.1954202923809065, 51.43078311309657], + [5.20667610277402, 51.43469553127162], + [5.209217706831661, 51.4365005434712] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e843053b-0cb7-4dec-b69e-377aa4ca2407", + "properties": { + "statcode": "GM1729", + "jrstatcode": "2024GM1729", + "statnaam": "Gulpen-Wittem", + "rubriek": "gemeente", + "id": 290 + }, + "bbox": [ + 185476.47179999948, 306846.1979999989, 197032.938000001, + 317806.3040000014 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.92910849128029, 50.843042692332936], + [5.9296085895490425, 50.84024770433044], + [5.933187198661985, 50.839660941785375], + [5.9358069412933085, 50.84013681798053], + [5.940413912997528, 50.8415157577155], + [5.945346758438904, 50.84389395472971], + [5.946108437152003, 50.84428725778304], + [5.946367364751437, 50.84442746731308], + [5.946801687932131, 50.84468629851174], + [5.95089221152855, 50.84456957228363], + [5.9548162141446115, 50.84592411772832], + [5.956177578026536, 50.84201589392894], + [5.955770381089664, 50.83927389310675], + [5.956946980091637, 50.835842623922], + [5.955544187893483, 50.835394599711336], + [5.9594878608086015, 50.82823186780041], + [5.967904290707204, 50.822352298545205], + [5.97182973376274, 50.82117705478848], + [5.969418708512723, 50.81685801612424], + [5.977958552739751, 50.814906050288265], + [5.979523159158022, 50.814576369809046], + [5.980555568315974, 50.81298288423106], + [5.982926181308264, 50.81143748243056], + [5.981917563965278, 50.81085772179211], + [5.983518167118582, 50.80972969809002], + [5.981369340815976, 50.808594972954104], + [5.9801733884012105, 50.80711883754485], + [5.980200153966159, 50.80579471589084], + [5.978700687412878, 50.804670333265186], + [5.977897651271873, 50.80506114722936], + [5.9766808695649996, 50.80336997726752], + [5.969104248026361, 50.80127230072268], + [5.964808923066584, 50.802418645419], + [5.961063669908511, 50.80039612354281], + [5.957847656273933, 50.79811861593612], + [5.951703694837665, 50.79384813173732], + [5.945499966083234, 50.79560135044477], + [5.943391874651347, 50.79383294847434], + [5.942008088363353, 50.790479118036394], + [5.94491427779083, 50.78160900898594], + [5.944077281351465, 50.77574512604711], + [5.943312622580481, 50.773053375967564], + [5.941137649877138, 50.77199564945415], + [5.937745450876034, 50.77136864395349], + [5.935929778891479, 50.771460892879766], + [5.93403095551641, 50.77359034270315], + [5.930898923472766, 50.77512542877679], + [5.923869866311319, 50.775236964365945], + [5.921904957528862, 50.77335420103458], + [5.920541092069626, 50.7693331343266], + [5.924516453951503, 50.766891129792306], + [5.925605291173734, 50.763888991817645], + [5.925051082413353, 50.763684830025475], + [5.926784059710879, 50.76310875217737], + [5.9271719884018195, 50.763812334481784], + [5.927955291185348, 50.76247820112382], + [5.930083839497691, 50.76265119894055], + [5.9298767831623955, 50.76211088689812], + [5.929982240569525, 50.76194954619058], + [5.930523503901143, 50.76203075619363], + [5.9313370769706655, 50.761494717772365], + [5.931037653116008, 50.760929179771125], + [5.932141835573915, 50.760886651037865], + [5.931055643229057, 50.75993845365003], + [5.9299071430643195, 50.75978732548539], + [5.930188410667694, 50.75900291566378], + [5.932046861284393, 50.75812567751139], + [5.933051366798511, 50.7587777972561], + [5.93454988486727, 50.75848826135418], + [5.935757628041358, 50.75697943801679], + [5.9331842007950515, 50.75655386872448], + [5.931105260188963, 50.75694217874892], + [5.921450183871683, 50.75135746820959], + [5.91622058647367, 50.75045047453855], + [5.915080951755227, 50.75036749286343], + [5.915382633249643, 50.75472018444767], + [5.913980582749509, 50.75432423882059], + [5.913703493843996, 50.75574773611917], + [5.910750193245039, 50.755238292794715], + [5.909009803080415, 50.75421878675267], + [5.908211432447598, 50.75569344428143], + [5.907068065111422, 50.75511492290966], + [5.905845401772549, 50.755502235150814], + [5.9048500783879785, 50.755223822149645], + [5.90300551269026, 50.753711751067875], + [5.9035263764779025, 50.75345455129618], + [5.901630042160776, 50.751400516111026], + [5.901023132480363, 50.75149430376767], + [5.889738335998163, 50.75632771885138], + [5.889188377991288, 50.75754801625668], + [5.890215419219063, 50.760131177389574], + [5.889672101203892, 50.764221151792036], + [5.886664496164183, 50.76981685941426], + [5.8862281458234955, 50.770046935500716], + [5.876228062772686, 50.76561626564031], + [5.870620326533788, 50.76491553877584], + [5.863453990135316, 50.76350868726448], + [5.85994969345939, 50.761830089745345], + [5.852296672538804, 50.75721674369161], + [5.848919977184348, 50.75340778389864], + [5.846171683099386, 50.76167150542128], + [5.845037578186922, 50.76537085289239], + [5.84491044058017, 50.770764219713314], + [5.8425471339231, 50.7740768658205], + [5.8442432037483965, 50.774551356876096], + [5.841617018651953, 50.77745282676059], + [5.839537976069249, 50.7805806310099], + [5.838455582002525, 50.78164953819858], + [5.837191071098182, 50.78102304960988], + [5.835255817959993, 50.78173772909606], + [5.834851537974655, 50.78254604884341], + [5.833973715026258, 50.78436689778091], + [5.835585846818077, 50.78481203452154], + [5.835886073622444, 50.78668112863963], + [5.832896755644909, 50.78662433489826], + [5.832460074650401, 50.78869273739433], + [5.828127172327647, 50.79049902975939], + [5.8276442128204025, 50.79018118447029], + [5.822417959158705, 50.79544145406107], + [5.820816428841563, 50.79807033627527], + [5.821381862569355, 50.80215252862841], + [5.819738598878445, 50.80477305723844], + [5.81952386136682, 50.80526019841134], + [5.8306649694049675, 50.80786933176226], + [5.8317180329283795, 50.80877041913461], + [5.8361725631365715, 50.80766631148185], + [5.837534997249693, 50.80820986017308], + [5.839239496253256, 50.80758803107749], + [5.842251858915706, 50.81006752629728], + [5.844781126642489, 50.81448675829852], + [5.845482636237541, 50.815348919602386], + [5.848814580742524, 50.814993968464385], + [5.852822779357874, 50.817831425562964], + [5.851177785627269, 50.81917544590527], + [5.853176325824389, 50.82075125434736], + [5.858527790706681, 50.820858520209576], + [5.864135529510129, 50.82334432875208], + [5.8631408558331755, 50.82679580114743], + [5.862325607485538, 50.82923164674129], + [5.859709514019009, 50.83207809130062], + [5.859460865344469, 50.83368419196535], + [5.865930427175856, 50.837574657168666], + [5.866213586970893, 50.83871181139254], + [5.867122427250596, 50.83866479542144], + [5.871002825500188, 50.838293078912415], + [5.870259078651162, 50.83653494014132], + [5.871087252874524, 50.836518064178], + [5.873951472126055, 50.837923514932946], + [5.8765502171699096, 50.84024073075466], + [5.8775787442724, 50.841319040519735], + [5.874841050146511, 50.845377123928216], + [5.874765279667038, 50.8466834959341], + [5.875646385617594, 50.84711149529815], + [5.876155621590155, 50.84629954049457], + [5.881386770328348, 50.8466870882766], + [5.885122839029008, 50.84748246708241], + [5.8879925719625135, 50.847033702841514], + [5.8894568103409926, 50.845210995446216], + [5.891245813959866, 50.842747095194085], + [5.8915894617293345, 50.84284692543903], + [5.898771660577333, 50.843350895103065], + [5.90325788535756, 50.845706095718825], + [5.916169405585804, 50.84881890876018], + [5.925002411073521, 50.84884125352323], + [5.92910849128029, 50.843042692332936] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.707dbe5a-b3b1-488e-8e94-a9ab563800e6", + "properties": { + "statcode": "GM1730", + "jrstatcode": "2024GM1730", + "statnaam": "Tynaarlo", + "rubriek": "gemeente", + "id": 291 + }, + "bbox": [ + 228178.85700000077, 560629.3060000017, 248063.37900000066, + 579663.9699999988 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.540897912000229, 53.17988156930768], + [6.54174391833293, 53.1786103064968], + [6.5427088665346185, 53.178672355228876], + [6.546253711341903, 53.18027859966269], + [6.54818830399557, 53.18109763702782], + [6.548377594229454, 53.18088572739804], + [6.548572154281021, 53.18066992109097], + [6.555809423478782, 53.17329704181305], + [6.559319433348278, 53.16934097786557], + [6.560587356322461, 53.16612699277085], + [6.562753262872441, 53.16041617802085], + [6.563177891919293, 53.15868694550263], + [6.563687461755379, 53.15763837451387], + [6.564742338727855, 53.157989663525115], + [6.581496957638259, 53.16353068975769], + [6.581098885720939, 53.16261321934829], + [6.583455289430044, 53.158527459601615], + [6.587089330693162, 53.156225957933366], + [6.584642549825113, 53.15430518672305], + [6.587386438006845, 53.14868323617963], + [6.587794254699335, 53.14589180244528], + [6.6004563394163895, 53.14430881497252], + [6.606521015806628, 53.139313859050446], + [6.608180322006928, 53.138894582982644], + [6.60918154793157, 53.13840361813459], + [6.610623452092698, 53.13794370654251], + [6.614400443105885, 53.13555695740314], + [6.613641275230729, 53.132694287265565], + [6.616568293266702, 53.132972615742105], + [6.618976872977991, 53.13158085523647], + [6.618978350384085, 53.129880078795466], + [6.62132024826518, 53.12830909942443], + [6.621763333467514, 53.12635071043676], + [6.622834219460987, 53.12537297561637], + [6.627335591206533, 53.122833222584376], + [6.628648448049582, 53.119493050467845], + [6.630575689852066, 53.119385297180756], + [6.627937744421937, 53.11717911317026], + [6.628067782634538, 53.115874611911885], + [6.6298302942108345, 53.11468334098668], + [6.633862114800889, 53.11420311553002], + [6.635781527295582, 53.113396275238216], + [6.637102774274598, 53.10864869605786], + [6.634836257816771, 53.106202076530856], + [6.6435021201215, 53.108662340866275], + [6.651909362116504, 53.11115954411186], + [6.653648242149388, 53.11162476149017], + [6.674926989096316, 53.117524735807095], + [6.678771877835265, 53.11810818734133], + [6.6946173518129335, 53.12105783039303], + [6.69536692827611, 53.12117601511284], + [6.718724701008477, 53.12024789576108], + [6.719831760661762, 53.12021853616125], + [6.721380803465835, 53.120130339211606], + [6.723256501725685, 53.12005241176114], + [6.737450956338634, 53.119461728969185], + [6.742396571928891, 53.116370689803986], + [6.743253770102585, 53.11656829974175], + [6.743530418166635, 53.115936425466195], + [6.744729944415677, 53.1152479940868], + [6.776509375691281, 53.09476066349912], + [6.76528532689175, 53.091495865881214], + [6.763279535529203, 53.09091479416917], + [6.7619518366510185, 53.090544171311784], + [6.757858841976423, 53.08940269814541], + [6.746004876737317, 53.08582919988749], + [6.745108216866957, 53.084690055703625], + [6.74787656121278, 53.08352851976346], + [6.7493681559280105, 53.08363558781079], + [6.750200535505793, 53.08178728887762], + [6.748211006180518, 53.08123278924803], + [6.727173662929845, 53.07322117286988], + [6.726138503570842, 53.07366591447388], + [6.715487305055639, 53.0694317489649], + [6.713687191958534, 53.06869691802191], + [6.711432974542642, 53.070113019186294], + [6.70629916735051, 53.06808043248095], + [6.705244941659807, 53.067658985053924], + [6.699014669789376, 53.06517356573486], + [6.692642727985358, 53.07018324504069], + [6.687493221056857, 53.07222731920288], + [6.6785205688353635, 53.07682457535066], + [6.670426370453447, 53.08010540867195], + [6.669187501173478, 53.080345146666176], + [6.661836130959141, 53.08198529869056], + [6.6577742016664905, 53.08403025909362], + [6.648855079743161, 53.08218859985099], + [6.64976769223415, 53.07956781113827], + [6.653988563090491, 53.08009584290007], + [6.654692951089619, 53.07825316817154], + [6.659982417804033, 53.074420905772385], + [6.662159720187751, 53.07502977190983], + [6.6612171733747845, 53.07318837661482], + [6.66358007578023, 53.071334062128564], + [6.666007798471796, 53.07215504399305], + [6.66641104039468, 53.07200396016789], + [6.664357774355648, 53.069147447132444], + [6.670211761613711, 53.06711597863694], + [6.669375572109787, 53.06560077510432], + [6.671599072150369, 53.06501703754428], + [6.669285696072735, 53.06322006169308], + [6.664525983129805, 53.06158990612621], + [6.664199233573127, 53.05992683774885], + [6.666936723889906, 53.05823555842289], + [6.662141794904087, 53.05617832937917], + [6.653786930423791, 53.055530599619615], + [6.647898372942868, 53.05096625868465], + [6.6468340473281815, 53.050444014842824], + [6.646477364691253, 53.0491239330361], + [6.643382712354556, 53.04699865071623], + [6.641532694289405, 53.043192594047866], + [6.6405555933297675, 53.04162858189947], + [6.644770984030536, 53.03915139994149], + [6.648009907200823, 53.028264098135416], + [6.648593305702451, 53.02633252710933], + [6.631221429428706, 53.02610524110129], + [6.603549136729377, 53.03295643797397], + [6.6064893309762445, 53.03820273342775], + [6.608087385763294, 53.048418235221064], + [6.605170002053204, 53.05644736713698], + [6.603717727166883, 53.05887926923198], + [6.601235393790263, 53.061757620424345], + [6.600455914644707, 53.061020182546144], + [6.588077250901665, 53.05799928984953], + [6.586811487738036, 53.05953792919279], + [6.57580412896452, 53.05918760885822], + [6.5752015496556275, 53.05506773906382], + [6.575057478699391, 53.05463943082779], + [6.570399284389453, 53.05488721019823], + [6.569936662058317, 53.05712175418687], + [6.56972048677291, 53.05986178259434], + [6.555213266672854, 53.058608083669405], + [6.55607614082358, 53.055726496308154], + [6.552730226853886, 53.05514669762835], + [6.553955759183898, 53.05272769273501], + [6.5514904411440185, 53.050365419175556], + [6.550024431401471, 53.04647226741868], + [6.552516171326307, 53.04349544531924], + [6.552315923149886, 53.04257558492149], + [6.551488951839859, 53.04025241577629], + [6.5507698845851845, 53.038155431697476], + [6.549276972532048, 53.03834539387158], + [6.547306761155324, 53.035066961840066], + [6.541270337106363, 53.03565958067281], + [6.541743057500756, 53.03717768593106], + [6.533683240402635, 53.038156258784], + [6.53389257698503, 53.03893170496025], + [6.530193800729275, 53.040109500072845], + [6.530852246486164, 53.04118547478785], + [6.529107491812489, 53.04338519601901], + [6.52428353803774, 53.045949023985905], + [6.510923659928796, 53.04445354334984], + [6.505130060469678, 53.046354757557154], + [6.511648897504749, 53.05625137117193], + [6.514465367852709, 53.06507311567195], + [6.513356407050214, 53.07228029084608], + [6.51208902580409, 53.073837192856864], + [6.504009846897839, 53.08338152225691], + [6.503346620079072, 53.08342184060679], + [6.502546888422387, 53.08487182827132], + [6.4908339541819355, 53.096799375559115], + [6.484870306166899, 53.10610117802511], + [6.484300131109125, 53.11164457758603], + [6.481326770609386, 53.11846307414562], + [6.480299554588547, 53.120786701182475], + [6.498425333015029, 53.123359383853504], + [6.500894048512239, 53.12057681645159], + [6.504978670020921, 53.122343375938975], + [6.512501764633502, 53.12560446279061], + [6.510929974841284, 53.13069305298999], + [6.515078440467116, 53.1311848285939], + [6.5177465471596, 53.131429276163466], + [6.5337678501207765, 53.1326962967852], + [6.539120602044242, 53.13255646771825], + [6.540083971950583, 53.1387702839902], + [6.536815360478184, 53.14220940813344], + [6.538324416982029, 53.145522620474026], + [6.537193786906856, 53.14865664465898], + [6.534170064598785, 53.15143853067395], + [6.5377900815173495, 53.15831391768754], + [6.534126066435536, 53.16093317066545], + [6.536457250231941, 53.16273345224124], + [6.53672298832621, 53.16442590346857], + [6.534082530435905, 53.17046736280422], + [6.526603142998835, 53.17743611074205], + [6.523744136845703, 53.18272015083916], + [6.521383581111369, 53.1857623350213], + [6.518393648528062, 53.18734527902167], + [6.517114294056927, 53.188850368572986], + [6.513975105274892, 53.19402806987855], + [6.51200938065714, 53.1962177159788], + [6.513385989039717, 53.196937017804], + [6.515715198228856, 53.19830814966963], + [6.526709041618231, 53.195851915913984], + [6.5304919809405995, 53.19555927328935], + [6.529528927343624, 53.1951949202612], + [6.530398830369987, 53.19285651245797], + [6.53421774809441, 53.18406356816348], + [6.534615869233839, 53.18378994328839], + [6.537453615813243, 53.18264493096336], + [6.539536204096203, 53.18130938371482], + [6.540897912000229, 53.17988156930768] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.28235eee-3c4e-4967-a70e-ede03066bf50", + "properties": { + "statcode": "GM1731", + "jrstatcode": "2024GM1731", + "statnaam": "Midden-Drenthe", + "rubriek": "gemeente", + "id": 292 + }, + "bbox": [ + 220435.5705000013, 528265.7010000013, 245338.08720000088, + 558169.9459999986 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.4916925251502935, 52.995586924157685], + [6.492585957535133, 52.99305883647305], + [6.498060827327407, 52.993780960552066], + [6.493702068515542, 52.99233690839848], + [6.494572563188306, 52.99195867806525], + [6.499004411609058, 52.9902157913655], + [6.494233439046637, 52.98585584561628], + [6.493913340798115, 52.98426558728276], + [6.496595237320329, 52.98323938084206], + [6.490489031125965, 52.977596547160765], + [6.485502069104544, 52.97298464683746], + [6.486882929937511, 52.97244216538142], + [6.495743242395678, 52.96899053485099], + [6.487558124219688, 52.96120495068264], + [6.493831404943351, 52.95874731854858], + [6.489193855723993, 52.95445702061656], + [6.48394766824284, 52.950173062160886], + [6.48649198599966, 52.9491814943428], + [6.489537944902449, 52.94805852594407], + [6.490587342165784, 52.94901251641116], + [6.493128114867875, 52.94799589024655], + [6.496971747894984, 52.9515660928986], + [6.508826789631689, 52.94698466259656], + [6.519577252735541, 52.94295573492474], + [6.517622169071832, 52.9397629709468], + [6.530772383979753, 52.934625921499055], + [6.5346028897302855, 52.93251481629143], + [6.535914704980517, 52.93259055759651], + [6.539278923724108, 52.9458902920995], + [6.5429974888576625, 52.95533823608684], + [6.555331079685241, 52.94954679873614], + [6.561504801657726, 52.946652120768555], + [6.5650712959811415, 52.9449807703264], + [6.5858143879013555, 52.9194679779469], + [6.614877553043025, 52.91831141833219], + [6.625570705972414, 52.91280560945618], + [6.64170566320064, 52.91200067821972], + [6.666733851058938, 52.90944937310524], + [6.6749857489992905, 52.905017205875694], + [6.6864989185626404, 52.87529912961526], + [6.714563920384996, 52.868158816629915], + [6.72186079270657, 52.86631731917581], + [6.719858122442886, 52.86148889471611], + [6.725984613535045, 52.85729312699352], + [6.728379815433137, 52.85382371104067], + [6.719672520259183, 52.84882974337958], + [6.704053154465229, 52.84697785809696], + [6.706346835293358, 52.8424286129654], + [6.70759812979811, 52.836392229192214], + [6.69602521853929, 52.82661556660188], + [6.693987305324461, 52.82780416737776], + [6.691058806592685, 52.82601917708846], + [6.690210597215291, 52.82267195721269], + [6.693487266478979, 52.81545881862984], + [6.692398132088835, 52.810752461148], + [6.691604094759669, 52.809779143744585], + [6.690155101538337, 52.810122907235424], + [6.681183140729085, 52.80773221093955], + [6.679036548957289, 52.802775571289665], + [6.675772312014556, 52.80027015449773], + [6.678028824583204, 52.7991071735504], + [6.675113864835937, 52.79713582362003], + [6.66774774440849, 52.799702223628856], + [6.66087938287129, 52.8012326254174], + [6.643253107225272, 52.786247268286594], + [6.638956184834504, 52.782560052666774], + [6.616261913884377, 52.76301004660726], + [6.608160431255748, 52.75533139574603], + [6.587467392784547, 52.735689860115286], + [6.57586521093385, 52.73981226651906], + [6.574036183409962, 52.74052336115269], + [6.57321942130444, 52.73985780463653], + [6.570779448966534, 52.740793139754146], + [6.55966100204751, 52.74506538640878], + [6.5575774834195, 52.74535011930924], + [6.562429719314227, 52.75669450773964], + [6.566277311653985, 52.76557690774617], + [6.537520915999813, 52.765234278250375], + [6.535367397830118, 52.76810435182335], + [6.512792676983419, 52.762100660456824], + [6.5079043925976885, 52.768847283003076], + [6.505539152030297, 52.76807444613617], + [6.503364781931472, 52.76934619598808], + [6.490847968303387, 52.77088343676672], + [6.496164254139658, 52.7862246728247], + [6.491805073821667, 52.79312329448272], + [6.478490847591506, 52.79584779606438], + [6.455450742855869, 52.800556495325466], + [6.458707263478453, 52.80875185577449], + [6.459907865234613, 52.8138638251571], + [6.459281957488436, 52.81520019160639], + [6.460445943144501, 52.81616139852233], + [6.46133876275163, 52.81534608775234], + [6.46226694336899, 52.81649232809168], + [6.464024719872418, 52.81813768829097], + [6.4676620463150485, 52.82181517229801], + [6.476314116354368, 52.83280560518042], + [6.480026129701907, 52.83694436227976], + [6.476125074443522, 52.83816109982596], + [6.4626672464153305, 52.838676859363865], + [6.461152868028848, 52.84510436486185], + [6.462089314086403, 52.84655792859353], + [6.46189272875542, 52.848476005896146], + [6.463150122545782, 52.84889215539999], + [6.4607159175852225, 52.85306614129713], + [6.451273118178186, 52.850015453422685], + [6.44119973239622, 52.84991812487681], + [6.435521316747574, 52.8511455615902], + [6.4308592862110645, 52.850442222992676], + [6.429244971562867, 52.85647390682669], + [6.434345004594456, 52.85699324023987], + [6.431021471970563, 52.867658625144074], + [6.432143607335733, 52.86776838430995], + [6.431448472710068, 52.86994596543273], + [6.430778797920042, 52.87186228642189], + [6.429723839249728, 52.871813318096294], + [6.4292967343909355, 52.87311449641724], + [6.427698024915454, 52.87253152422194], + [6.42020565404275, 52.87791548291177], + [6.42226347257635, 52.88031385327901], + [6.4196396041571555, 52.88147473141659], + [6.420095972689015, 52.88202290833029], + [6.419992846362892, 52.882321872759924], + [6.383875159066332, 52.88912388601724], + [6.381437719805307, 52.8895627609161], + [6.378626630874312, 52.886976613376966], + [6.376878993810799, 52.88620809087332], + [6.372050547968122, 52.88125499857901], + [6.3726361334435175, 52.87590741471412], + [6.368679756553292, 52.87704896758246], + [6.366554259943483, 52.881663925026906], + [6.373265582641458, 52.890274404971166], + [6.359560259763463, 52.89453434158462], + [6.367221038501174, 52.90339543639474], + [6.368513126310818, 52.90317595424288], + [6.36901807973032, 52.90368406931434], + [6.370496010430356, 52.90322738001009], + [6.376566602512352, 52.90715443904412], + [6.3777230716012445, 52.90679481409404], + [6.379398530448206, 52.90821723676912], + [6.377917005323856, 52.908657686241995], + [6.3812885134787, 52.9124102721957], + [6.383439054743628, 52.91165055045854], + [6.385590171894813, 52.91367621178331], + [6.384172614545408, 52.91425013101138], + [6.385550079849557, 52.91554733126847], + [6.369026187023093, 52.921975626178636], + [6.393435770296861, 52.93284344736677], + [6.402671156057106, 52.94338181005714], + [6.427614708971872, 52.97181540007347], + [6.422622955087762, 52.976593131988935], + [6.413279837634505, 52.98552292733334], + [6.41366392953038, 52.98562636157328], + [6.466055429015483, 52.999517740217165], + [6.488212019821584, 53.00540528001636], + [6.4916925251502935, 52.995586924157685] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.44007ffb-a637-46db-b9d7-0cba2480aece", + "properties": { + "statcode": "GM1734", + "jrstatcode": "2024GM1734", + "statnaam": "Overbetuwe", + "rubriek": "gemeente", + "id": 293 + }, + "bbox": [ + 172817.6400000006, 431389.4600000009, 190123.01000000164, 442888.954 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.829339465864981, 51.96084806987727], + [5.830197455084211, 51.95862382662664], + [5.831338165890455, 51.95861672693247], + [5.831282299330102, 51.95554752525998], + [5.830080781622446, 51.95385340907609], + [5.829912265713497, 51.95343156567208], + [5.83050699122603, 51.953266464727164], + [5.828634063641284, 51.94848379564446], + [5.829927197041962, 51.94523733528024], + [5.837172088864755, 51.945177758148155], + [5.837402759495149, 51.944156554394795], + [5.849679709353735, 51.942944192376785], + [5.850394183971174, 51.94451029476062], + [5.852822012440497, 51.94407858954375], + [5.861506452868989, 51.942575673262674], + [5.862243183192942, 51.942889551588515], + [5.872097347000506, 51.94147420517267], + [5.87607585428169, 51.940267483322714], + [5.878373066205316, 51.93877249591652], + [5.8836509728169775, 51.93765031043201], + [5.887768701463473, 51.936135399104046], + [5.892673519512802, 51.93573212829156], + [5.8949832561694535, 51.93511596701819], + [5.897918378930612, 51.93435795751755], + [5.889521956572292, 51.92526506647295], + [5.896996831524837, 51.92080966212278], + [5.893057730469589, 51.916185778117935], + [5.8943805438968155, 51.914727673865066], + [5.892031657291007, 51.91058731397602], + [5.891199332881083, 51.90726350133111], + [5.882636665513498, 51.908211435031795], + [5.8736644275403505, 51.90845186664069], + [5.872984202592404, 51.905230927231386], + [5.8721423700225905, 51.90200492454319], + [5.875420843348704, 51.90208355452823], + [5.875886646451598, 51.90080998156493], + [5.874738476502477, 51.897570663340154], + [5.856947873401362, 51.89695435192436], + [5.8571235405180015, 51.89462092317051], + [5.83684812358419, 51.89374964996785], + [5.836722394473941, 51.893746293264485], + [5.830237801923278, 51.89368104089353], + [5.830198423906666, 51.89172559254295], + [5.834389090488845, 51.89034185349824], + [5.835940133726277, 51.888147538385304], + [5.835873571415731, 51.886033530374384], + [5.8368208083861175, 51.88365579797119], + [5.837788357042733, 51.88343400305584], + [5.832813415068879, 51.87843507262689], + [5.835153812551968, 51.87761900633138], + [5.834173389961789, 51.87562305161426], + [5.8325831141085445, 51.87343951069948], + [5.831611237201062, 51.87223199312593], + [5.82899735370312, 51.87239513881869], + [5.828067610192893, 51.873409714565476], + [5.817074831109551, 51.87026538317438], + [5.8103136143423075, 51.872772664419436], + [5.798351270317705, 51.875686057702595], + [5.77335732684862, 51.878641365553925], + [5.761035201419147, 51.88111912319319], + [5.7513045817061075, 51.883503912232044], + [5.740732839977134, 51.88501253433032], + [5.736418158986936, 51.88541447271046], + [5.726164177184991, 51.88715011969378], + [5.706659392611512, 51.89329156653444], + [5.709841732563041, 51.89560695916466], + [5.7110026069530475, 51.89677392335344], + [5.70921250312679, 51.8979152866056], + [5.7064000253806215, 51.89791974769929], + [5.707819428803584, 51.901314610256335], + [5.707596772882556, 51.902850634530424], + [5.705317715353143, 51.90403606331384], + [5.706279734481351, 51.90632851061219], + [5.706130807623057, 51.907988784747324], + [5.700976513788148, 51.91324978908093], + [5.695515017664701, 51.91690628176851], + [5.692195460104914, 51.91839509710983], + [5.696255487125046, 51.920781747106155], + [5.694854457560908, 51.92137299580149], + [5.681211002586233, 51.918319695535224], + [5.677392621846626, 51.9207830333699], + [5.676053200539266, 51.92306400526504], + [5.677557706979208, 51.92436612450617], + [5.67593249756564, 51.92602785934195], + [5.678313275510308, 51.92864380510626], + [5.684359858226014, 51.92977807936569], + [5.689925336137149, 51.93259962073963], + [5.696322303131522, 51.93125112427854], + [5.693025987905151, 51.93465773369377], + [5.688777718426315, 51.935141009148666], + [5.670931641220553, 51.93054528897512], + [5.660350943246159, 51.92961222631775], + [5.659965334093422, 51.93351989436692], + [5.659618769142462, 51.93708191697622], + [5.6677148575630225, 51.938908383092354], + [5.665779972919963, 51.94133210626646], + [5.663137941501705, 51.94071175233508], + [5.661144285498298, 51.94360734093964], + [5.654345300877264, 51.9414112716028], + [5.653297806231142, 51.94287754034932], + [5.647017896072994, 51.94032667719316], + [5.646322703520318, 51.94109092066021], + [5.650419183588023, 51.94745308064071], + [5.651715577790445, 51.948030226625534], + [5.654801292496248, 51.9465444825298], + [5.665988990940865, 51.95279947605697], + [5.669698236827349, 51.95382103169216], + [5.676552877742007, 51.957574765859235], + [5.681918233910433, 51.95915884450351], + [5.706632403464679, 51.962705722286415], + [5.721503033858699, 51.96386779071851], + [5.722605558506185, 51.964050769957765], + [5.7284502622413696, 51.96714208899284], + [5.732198799834301, 51.96815692311183], + [5.741610298836293, 51.97011285283843], + [5.746295706433668, 51.97002000176239], + [5.761901271278068, 51.96353088944984], + [5.772150892421925, 51.960163163089724], + [5.7776105503251385, 51.95912665773574], + [5.782460003746268, 51.95916939648942], + [5.786773346760853, 51.96015864442596], + [5.8107451486073955, 51.969252442635025], + [5.8183913046133515, 51.971899710749724], + [5.825429850072082, 51.97323130948195], + [5.8353426404977, 51.97355872678843], + [5.836195436561484, 51.97092309564045], + [5.835368169413819, 51.97069999826298], + [5.835953426841234, 51.96616405386343], + [5.834191336498927, 51.962799644029026], + [5.833799472914503, 51.9626420374598], + [5.829339465864981, 51.96084806987727] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d757c4e4-7e93-4eab-b02a-c65879febe99", + "properties": { + "statcode": "GM1735", + "jrstatcode": "2024GM1735", + "statnaam": "Hof van Twente", + "rubriek": "gemeente", + "id": 294 + }, + "bbox": [ + 225294.73000000045, 464597.15199999884, 248256.886, 480879.7100000009 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.742897620715447, 52.28309285347755], + [6.743606310673003, 52.28154731237164], + [6.744232215093121, 52.28171484550496], + [6.745766223335185, 52.280130813276], + [6.748134814368111, 52.27604877397341], + [6.749367913326387, 52.271016334570106], + [6.748564192869948, 52.2701666957029], + [6.749397629747774, 52.269384955836], + [6.748820695854634, 52.26708577665472], + [6.747914497921569, 52.26685416568927], + [6.748981055516957, 52.26528645343594], + [6.750752254764721, 52.26115750048993], + [6.7529595104496485, 52.25236956094698], + [6.748844517782666, 52.25173220010846], + [6.729370317905433, 52.252549401277136], + [6.724281422875928, 52.252705842612706], + [6.723590376117602, 52.25201142119345], + [6.719616352253046, 52.248616693932], + [6.717926716045526, 52.2435142438513], + [6.720055388410058, 52.24374224973599], + [6.721508731042798, 52.239151095854055], + [6.720827896816015, 52.23802179527636], + [6.718774306466024, 52.23786408738697], + [6.7187998263949735, 52.23917610939186], + [6.717087846349189, 52.24098049736162], + [6.712139720091169, 52.22602899571662], + [6.7032394798417405, 52.219442109638045], + [6.702039137171115, 52.21682155121435], + [6.71238776634234, 52.20633143274622], + [6.7042791596479105, 52.199235536759865], + [6.697494103180753, 52.1962479674761], + [6.683776102275303, 52.19729394121113], + [6.675646351499076, 52.19791305174729], + [6.6720504483809195, 52.198186717591064], + [6.653081957845854, 52.193700698596814], + [6.624484459047273, 52.1888793011618], + [6.630806441618517, 52.18629855403865], + [6.634453812614044, 52.1859552081601], + [6.640123556878885, 52.18128051132369], + [6.641391369159703, 52.180906211228326], + [6.642754975962408, 52.181447118064675], + [6.647294071297758, 52.17689528220975], + [6.645040700493845, 52.17419425513303], + [6.640280130439704, 52.16740514073072], + [6.634841499141317, 52.172177291060756], + [6.631041018242752, 52.17314226761861], + [6.629101012197396, 52.17203266884875], + [6.625839650660656, 52.17249925802631], + [6.625285831710263, 52.172171946429664], + [6.626563832683666, 52.17145692209179], + [6.624952229628867, 52.168649826472056], + [6.621989512212277, 52.16837295692525], + [6.6173567481934485, 52.16529092178251], + [6.612147207678886, 52.163166303383655], + [6.609270338647148, 52.16514329190216], + [6.607354759181883, 52.164630923544635], + [6.60285133734484, 52.16912131118997], + [6.603184833151556, 52.170721823765696], + [6.606207438179587, 52.17236913925325], + [6.606326834794967, 52.17308244198132], + [6.596115189283665, 52.17983524686791], + [6.591077336781758, 52.182263635855165], + [6.589953710921534, 52.18248783610294], + [6.587982379078458, 52.18201063340419], + [6.584948797089735, 52.18152984435961], + [6.555349472159152, 52.17725556392276], + [6.517641996071343, 52.18126703676864], + [6.513240991168135, 52.18123054075669], + [6.49583936320073, 52.17714536876567], + [6.4924011400701405, 52.177371863954], + [6.490646945014629, 52.179862976629565], + [6.479031684028356, 52.18259959510568], + [6.478356972029017, 52.18382723681527], + [6.472699992490094, 52.189040469988385], + [6.469998978379989, 52.19269046761185], + [6.469464453868264, 52.19828203296691], + [6.470269541998202, 52.19937978943556], + [6.4671183123413005, 52.20039534175605], + [6.45728705923815, 52.200964656567955], + [6.456133276765448, 52.20170922781636], + [6.453491243327994, 52.20417245873741], + [6.452745778180853, 52.206477188969565], + [6.446310979561898, 52.21280091641644], + [6.439967782771839, 52.217067151919004], + [6.431573657612693, 52.22124423412671], + [6.42934228186543, 52.22313580161101], + [6.421974923832512, 52.23292575026087], + [6.416807354524148, 52.2371263389919], + [6.416395241612498, 52.23952515078794], + [6.416422228279953, 52.242166351854735], + [6.421032532612413, 52.245127037870304], + [6.423819088723661, 52.24707894278893], + [6.4262261757765815, 52.24886242391046], + [6.42848612169015, 52.248203291033754], + [6.431821270371995, 52.250901513232606], + [6.429603361349241, 52.251513373553934], + [6.429684604919498, 52.251698024757374], + [6.436937937992942, 52.25406122989191], + [6.439043396482028, 52.25473023569116], + [6.441490181167536, 52.2565970709719], + [6.447812086870613, 52.25784338604798], + [6.457087768606659, 52.261595841318176], + [6.466541183771526, 52.26549596557844], + [6.4710015243784165, 52.26768603733804], + [6.472062775041312, 52.2697121941234], + [6.477075869747144, 52.27188352222673], + [6.486661506431879, 52.274944526487616], + [6.490511021743562, 52.27600201803762], + [6.515760550501697, 52.28222497810961], + [6.517263573061239, 52.28304405625362], + [6.522542474172353, 52.283431340168356], + [6.535028545843132, 52.28297679296076], + [6.535795272661423, 52.2827043842786], + [6.541561739674534, 52.282683241116864], + [6.54154658391021, 52.282266690437844], + [6.554008645759348, 52.283312959934406], + [6.562252558619825, 52.274358897147906], + [6.568118126498174, 52.270188441383866], + [6.574099347164196, 52.269317287881556], + [6.586964248678136, 52.27037030618117], + [6.595148415918605, 52.27119855107201], + [6.605397665474524, 52.27072052174518], + [6.612131467267341, 52.27691949660604], + [6.626066252019887, 52.28997394757922], + [6.647464578276064, 52.293710988881635], + [6.657519785393809, 52.29485430462855], + [6.666095179323433, 52.29825206739597], + [6.683636560962459, 52.30620484316015], + [6.690940198124301, 52.30839106427342], + [6.697460238688405, 52.30861046545461], + [6.701088063218086, 52.308069026704636], + [6.71199208999597, 52.303668185858136], + [6.723697348409699, 52.2960655314627], + [6.727837909555716, 52.292055568230985], + [6.732891836775162, 52.28981314543598], + [6.742886460209116, 52.28311347961948], + [6.742897620715447, 52.28309285347755] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e4331fba-27d1-44a5-90b4-1ef37e51f5cb", + "properties": { + "statcode": "GM1740", + "jrstatcode": "2024GM1740", + "statnaam": "Neder-Betuwe", + "rubriek": "gemeente", + "id": 295 + }, + "bbox": [ + 159552.66899999976, 433389.98800000176, 177287.12900000066, + 440650.4479999989 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.653760552975891, 51.95391047587542], + [5.662190549954245, 51.95264323970925], + [5.665988990940865, 51.95279947605697], + [5.654801292496248, 51.9465444825298], + [5.651715577790445, 51.948030226625534], + [5.650419183588023, 51.94745308064071], + [5.646322703520318, 51.94109092066021], + [5.647017896072994, 51.94032667719316], + [5.653297806231142, 51.94287754034932], + [5.654345300877264, 51.9414112716028], + [5.661144285498298, 51.94360734093964], + [5.663137941501705, 51.94071175233508], + [5.665779972919963, 51.94133210626646], + [5.6677148575630225, 51.938908383092354], + [5.659618769142462, 51.93708191697622], + [5.659965334093422, 51.93351989436692], + [5.660350943246159, 51.92961222631775], + [5.670931641220553, 51.93054528897512], + [5.688777718426315, 51.935141009148666], + [5.693025987905151, 51.93465773369377], + [5.696322303131522, 51.93125112427854], + [5.689925336137149, 51.93259962073963], + [5.684359858226014, 51.92977807936569], + [5.678313275510308, 51.92864380510626], + [5.67593249756564, 51.92602785934195], + [5.677557706979208, 51.92436612450617], + [5.676053200539266, 51.92306400526504], + [5.677392621846626, 51.9207830333699], + [5.681211002586233, 51.918319695535224], + [5.694854457560908, 51.92137299580149], + [5.696255487125046, 51.920781747106155], + [5.692195460104914, 51.91839509710983], + [5.695515017664701, 51.91690628176851], + [5.700976513788148, 51.91324978908093], + [5.706130807623057, 51.907988784747324], + [5.706279734481351, 51.90632851061219], + [5.705317715353143, 51.90403606331384], + [5.707596772882556, 51.902850634530424], + [5.707819428803584, 51.901314610256335], + [5.7064000253806215, 51.89791974769929], + [5.70921250312679, 51.8979152866056], + [5.7110026069530475, 51.89677392335344], + [5.709841732563041, 51.89560695916466], + [5.706659392611512, 51.89329156653444], + [5.697151919983615, 51.89504340320201], + [5.685013781320144, 51.89564847987748], + [5.668474723335407, 51.8955933686471], + [5.654680938868131, 51.89679653791956], + [5.646951831419817, 51.89790671287182], + [5.625837709880975, 51.89939704819046], + [5.624300721135939, 51.89939573001262], + [5.599086637855278, 51.89912097042499], + [5.57164072784898, 51.9017452332612], + [5.5560127536000286, 51.90103565459235], + [5.544447951144083, 51.899005246338106], + [5.531362560547886, 51.89475336679323], + [5.523175474902494, 51.89239386147619], + [5.5090311540825025, 51.889844870447675], + [5.49738163295381, 51.889041942675696], + [5.476156540123197, 51.889624832794716], + [5.4639167457524485, 51.88900894746643], + [5.463566028120402, 51.89133888704803], + [5.460966197751854, 51.89364916444144], + [5.458854005925686, 51.897495621333896], + [5.455540954908044, 51.90282172182755], + [5.45644075026446, 51.90302530847249], + [5.4560403161597115, 51.903703474008445], + [5.45560958469563, 51.90445228024359], + [5.45657286448456, 51.90481184719078], + [5.4587714529303675, 51.90489287604798], + [5.472451035788509, 51.90806887473254], + [5.472151327964229, 51.91171659364286], + [5.470581827116338, 51.91143586596399], + [5.468009754415401, 51.91478264819193], + [5.467234527134258, 51.91476998502011], + [5.469782477607805, 51.91811985024851], + [5.468721744526006, 51.91852256507768], + [5.469730128844086, 51.91987773814481], + [5.463615074717322, 51.92131793479486], + [5.462629314712543, 51.92090431339836], + [5.461643748402242, 51.92162076752864], + [5.453922444962443, 51.92051725376358], + [5.453384517009267, 51.92276135857611], + [5.458426572795175, 51.92289276951888], + [5.460345836561616, 51.92411678977535], + [5.467387447954072, 51.923536179405545], + [5.472398827491453, 51.92197474273439], + [5.474262107807829, 51.92189964135], + [5.47652722398128, 51.92086977221026], + [5.480383106447869, 51.92278208876596], + [5.481255591134515, 51.92254922603707], + [5.483197014077363, 51.92327192791154], + [5.487742532838775, 51.92303189993306], + [5.487211845203509, 51.92381492457066], + [5.490896128743429, 51.92474450942108], + [5.491745944782706, 51.92406125054739], + [5.488629352282698, 51.92315506675646], + [5.489014824946083, 51.921019105903135], + [5.486866780652579, 51.9210373177059], + [5.486421372155019, 51.91893457815473], + [5.489826794996148, 51.918247076353886], + [5.493557128599829, 51.91850658915046], + [5.498812779129036, 51.923226385012896], + [5.501010405576132, 51.92267429220746], + [5.505397057995378, 51.92391818233537], + [5.507137698197887, 51.92278666489647], + [5.510593175864507, 51.92227354785855], + [5.512298744355842, 51.92137509193273], + [5.515654747297538, 51.92154007884703], + [5.547705748918749, 51.92164706959458], + [5.551746901540359, 51.91780097459866], + [5.551786526889146, 51.917807854404415], + [5.556824505036093, 51.919234901501575], + [5.554577072265469, 51.92303186058297], + [5.553876698495535, 51.92295929692627], + [5.553882123803565, 51.92580658069349], + [5.55418131430252, 51.93280943460967], + [5.554116446482942, 51.93401941899551], + [5.548441141615271, 51.93425273774372], + [5.539818226016218, 51.93713325481188], + [5.533636018182437, 51.94302102092803], + [5.533880921708888, 51.94348161846405], + [5.540202528016002, 51.94365185246806], + [5.54944482234256, 51.94230243039771], + [5.560695589550402, 51.944056691824], + [5.567534301479105, 51.94149139426918], + [5.573253265009438, 51.94199809000831], + [5.57629743233801, 51.94292220429759], + [5.579115180810705, 51.945442638478454], + [5.5841019651893005, 51.94732929568999], + [5.5866165869928865, 51.95082894784525], + [5.592736557938135, 51.94918255946573], + [5.603911084571992, 51.94388327203182], + [5.605939647188888, 51.94312478453368], + [5.617887704615431, 51.941351127044314], + [5.6227674304202475, 51.939765424871005], + [5.627864509623475, 51.93719380697675], + [5.630288649694217, 51.93640949831903], + [5.636231926901756, 51.93669236848376], + [5.6396255784625655, 51.93825906997698], + [5.640638870127652, 51.93957811394462], + [5.645088474539557, 51.944879689591666], + [5.645304401588492, 51.9466808757808], + [5.6496216464611155, 51.950021182191925], + [5.6462200559992475, 51.950584670898024], + [5.644259296017193, 51.95234885804644], + [5.648922546569286, 51.95400129183282], + [5.653760552975891, 51.95391047587542] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.b5a9b2a6-a114-41d3-a368-018a1d80dbb5", + "properties": { + "statcode": "GM1742", + "jrstatcode": "2024GM1742", + "statnaam": "Rijssen-Holten", + "rubriek": "gemeente", + "id": 296 + }, + "bbox": [ + 219069.6700000018, 473178.10599999875, 234617.54300000146, + 482607.8420000002 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.495125178743357, 52.32389278424809], + [6.4993272773715205, 52.323521662170876], + [6.499759314713893, 52.32355514346978], + [6.5179084929610305, 52.32517443474947], + [6.5180600805882225, 52.324407549818055], + [6.5231376302449755, 52.32383358119582], + [6.524120337251613, 52.32401154552449], + [6.524671365143334, 52.32563022334538], + [6.531292858457287, 52.318741496547254], + [6.532513123328569, 52.31721945140743], + [6.533099102327034, 52.31666711793215], + [6.536189176915876, 52.31564543516184], + [6.538188739717644, 52.31552350191615], + [6.539651756831884, 52.31580314795428], + [6.545089133828128, 52.31837510713642], + [6.549041046560348, 52.31251536247821], + [6.549031901133782, 52.312418774980245], + [6.549920923685692, 52.31128079615497], + [6.550690973452037, 52.30957819905245], + [6.552291160195492, 52.30338628289319], + [6.553539100385819, 52.2972256071575], + [6.553377622455152, 52.29492464031731], + [6.552291041831652, 52.294947348689305], + [6.549962791706602, 52.287801969683336], + [6.550262844131771, 52.28736562655461], + [6.553438515771832, 52.28392909086967], + [6.554008645759348, 52.283312959934406], + [6.54154658391021, 52.282266690437844], + [6.541561739674534, 52.282683241116864], + [6.535795272661423, 52.2827043842786], + [6.535028541424253, 52.28297679210481], + [6.522542474172353, 52.283431340168356], + [6.517263573061239, 52.28304405625362], + [6.515760550501697, 52.28222497810961], + [6.490511021743562, 52.27600201803762], + [6.486661506431879, 52.274944526487616], + [6.477075869747144, 52.27188352222673], + [6.472062775041312, 52.2697121941234], + [6.4710015243784165, 52.26768603733804], + [6.466541183771526, 52.26549596557844], + [6.4570877700712295, 52.2615958413049], + [6.447812086870613, 52.25784338604798], + [6.441490181167536, 52.2565970709719], + [6.439043396482028, 52.25473023569116], + [6.436937937992942, 52.25406122989191], + [6.429684604919498, 52.251698024757374], + [6.429603361349241, 52.251513373553934], + [6.431821270371995, 52.250901513232606], + [6.42848612169015, 52.248203291033754], + [6.4262261757765815, 52.24886242391046], + [6.423819088723661, 52.24707894278893], + [6.421032532612413, 52.245127037870304], + [6.416422228279953, 52.242166351854735], + [6.402618864400438, 52.24327170994379], + [6.389863307871805, 52.242559183372244], + [6.3859627215158, 52.243109265649565], + [6.383410827445524, 52.244015806648896], + [6.381851467515696, 52.24611280613758], + [6.381133395168223, 52.246603567458735], + [6.381224610911762, 52.24739685048604], + [6.377205602646789, 52.25001763872122], + [6.376542143111078, 52.25134943051631], + [6.376342977284229, 52.2521929392237], + [6.37728670191326, 52.25439647356203], + [6.374880243525781, 52.255135949130334], + [6.374809754495722, 52.25629790518694], + [6.377222494131542, 52.25664860309235], + [6.377162479294068, 52.2586813358644], + [6.3729447815521505, 52.260911200388165], + [6.370775291365182, 52.2600064513091], + [6.36483397263859, 52.26343331502958], + [6.364543306648871, 52.26315669552134], + [6.3630620843550245, 52.264010292526116], + [6.363488306227443, 52.26420858576366], + [6.356718040344522, 52.26812823677362], + [6.355376253978833, 52.26726567560774], + [6.352842966155375, 52.268350480092586], + [6.354883856505827, 52.26920124270394], + [6.353489017339455, 52.27001848810892], + [6.352126664844828, 52.27082693760117], + [6.350831523319944, 52.269253913695664], + [6.348856789769507, 52.26989183196982], + [6.350537705824776, 52.27144878012514], + [6.328842017542068, 52.28110297384008], + [6.327823668853722, 52.29014268007617], + [6.327817554839064, 52.29018276504421], + [6.326529854159441, 52.30163153874815], + [6.3411937859580885, 52.30907848634992], + [6.3560156718717336, 52.31821878454417], + [6.371107265650506, 52.31994610099852], + [6.397649584994481, 52.322726137967116], + [6.41583601482676, 52.32499609350142], + [6.421896013020871, 52.32568999960831], + [6.4297329418783935, 52.325061583116124], + [6.447541581252396, 52.322128862657756], + [6.460919867964384, 52.32005861362146], + [6.468189488334605, 52.32646224556003], + [6.495125178743357, 52.32389278424809] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.75f9f837-110a-4cfe-879a-51a50ff22cc4", + "properties": { + "statcode": "GM1771", + "jrstatcode": "2024GM1771", + "statnaam": "Geldrop-Mierlo", + "rubriek": "gemeente", + "id": 297 + }, + "bbox": [ + 164595.86300000176, 379344.26000000164, 173714.8200000003, + 385733.77699999884 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.584708453689933, 51.46050901813075], + [5.590515588784539, 51.45776081258779], + [5.5928218477751726, 51.45834034105708], + [5.596224356828515, 51.456173598489436], + [5.597034342976173, 51.45649716575115], + [5.601005122334686, 51.452170408129426], + [5.6034125664176395, 51.45399035924692], + [5.6047243795535335, 51.452800305814286], + [5.6087633182497845, 51.45156846705949], + [5.608146924841191, 51.44971709295364], + [5.614512711170466, 51.450044242156615], + [5.614545666850722, 51.44923150047531], + [5.617295330300417, 51.449287142459056], + [5.621390443629546, 51.450180696977824], + [5.641555371735416, 51.455652089755105], + [5.644342526057428, 51.45625798215563], + [5.656468182333515, 51.45655960919769], + [5.656017726337835, 51.45527247111165], + [5.656298776155287, 51.45282600022351], + [5.655285611956871, 51.45237826909246], + [5.653307663421253, 51.44638526121196], + [5.648265744789148, 51.44150688875465], + [5.647529584099519, 51.442005071427104], + [5.644475761198198, 51.44112322594837], + [5.643623788780782, 51.44019261369037], + [5.642457307149572, 51.43492847831548], + [5.643034504283446, 51.434812633872326], + [5.639224951290862, 51.42310408695667], + [5.639015501915434, 51.422456484221584], + [5.598717568337997, 51.41834142921654], + [5.594032456207492, 51.417245448909696], + [5.568910741197284, 51.40865035394177], + [5.565860268901864, 51.40729854681578], + [5.5667373589823015, 51.405591724934396], + [5.56424931529946, 51.40488021111705], + [5.5624285786223036, 51.40529965391856], + [5.5613683013563495, 51.404900653033806], + [5.560778717085812, 51.40616004266083], + [5.557858160172107, 51.4055140533789], + [5.543751107889584, 51.404665331383754], + [5.544813768290469, 51.40313635688592], + [5.543213183023644, 51.40403630415805], + [5.536379868254329, 51.40319348681357], + [5.535579831365205, 51.404605915795656], + [5.533705038780856, 51.40428442602499], + [5.53357391999351, 51.40467101543094], + [5.525814949023648, 51.404697137633065], + [5.525802234142504, 51.405151453662505], + [5.525178328079437, 51.427898012669694], + [5.5303493065268485, 51.427200720239064], + [5.5317783878551126, 51.42802605665489], + [5.531237189506133, 51.4289516187185], + [5.532035501640759, 51.43198887581347], + [5.534737951928141, 51.431676329874854], + [5.534752772621908, 51.431684060260004], + [5.540249682848841, 51.431334708035656], + [5.546779242882721, 51.433675323082525], + [5.548678971152387, 51.43467727449301], + [5.566126569092827, 51.44156599551588], + [5.571173041320002, 51.447731574924724], + [5.5790007197568405, 51.455079060661674], + [5.584708453689933, 51.46050901813075] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.153be21c-77e2-4cc0-93a0-4e84558660d3", + "properties": { + "statcode": "GM1773", + "jrstatcode": "2024GM1773", + "statnaam": "Olst-Wijhe", + "rubriek": "gemeente", + "id": 298 + }, + "bbox": [ + 201286.3660000004, 479098.188000001, 212849.39699999988, + 496476.2950000018 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.161281400695902, 52.44948804691577], + [6.1774281033335425, 52.43114925162773], + [6.191058063601994, 52.43268985422698], + [6.190762259757538, 52.43075503559073], + [6.192585672334338, 52.4309635637398], + [6.19349344538833, 52.42832420946453], + [6.196585732187393, 52.427110529606054], + [6.2064830756224545, 52.42820954710689], + [6.208341758727355, 52.42781553664802], + [6.207679675715228, 52.42551699305081], + [6.209895684732729, 52.42531641709234], + [6.230958350772745, 52.42349958398039], + [6.22385544306374, 52.41156207438384], + [6.2215785424011845, 52.40908891112892], + [6.225988950624358, 52.403168333159826], + [6.2312329457457825, 52.397879503178075], + [6.230048596674207, 52.39769719792246], + [6.231988781865309, 52.3947937978726], + [6.232120025204467, 52.39331292399072], + [6.2308644202248855, 52.39191387131481], + [6.229769607687927, 52.389728113532236], + [6.2264895137768255, 52.388142634572326], + [6.221799309337976, 52.38735532296431], + [6.218446413591999, 52.38527043273342], + [6.216403379959099, 52.38638792606079], + [6.2039876633336, 52.38689911208021], + [6.202354568984085, 52.38518002137705], + [6.206520529778066, 52.384705662346356], + [6.207571875038123, 52.3838617103044], + [6.2072993111666, 52.38264235291967], + [6.201606778579357, 52.38350773191392], + [6.201020372233218, 52.38030421121028], + [6.198675756485494, 52.3803172360316], + [6.201793993183575, 52.37958618987038], + [6.203503094553333, 52.37826174195034], + [6.2027097725781655, 52.37713035198889], + [6.20371533084796, 52.37735199130796], + [6.203295661667066, 52.37619315509003], + [6.202492220912183, 52.37621833322629], + [6.2019712360574575, 52.37594039146186], + [6.201974669850291, 52.37586593856745], + [6.201959228487404, 52.375580344745764], + [6.200336824327622, 52.375003717977165], + [6.201479920523599, 52.37412012571424], + [6.201337160066388, 52.37139477206684], + [6.2001638674870945, 52.37112212625931], + [6.196690453407129, 52.372214425725794], + [6.1954672518867895, 52.37417504203545], + [6.189455837645557, 52.37574588359955], + [6.188498680365478, 52.370926973494534], + [6.188962414384572, 52.36426568854867], + [6.190876725935169, 52.36299507845786], + [6.190710527080616, 52.36175847409655], + [6.194658392575934, 52.358645944964344], + [6.19621303304867, 52.358613367065594], + [6.195295018484011, 52.35546694420315], + [6.1969395198070325, 52.35367529637249], + [6.196858913012545, 52.3521116409756], + [6.222961220056546, 52.3472367045292], + [6.224235303981408, 52.34649642092305], + [6.235665251931249, 52.339902349182225], + [6.231878431211419, 52.33561284195693], + [6.232482696353335, 52.329607051611234], + [6.235842524540114, 52.32838918395713], + [6.235354999821735, 52.319820192074225], + [6.205620291028534, 52.320855108896886], + [6.203691026051455, 52.320280852617465], + [6.202473019256446, 52.318105653767724], + [6.1995132963161055, 52.31598314616579], + [6.190066403048083, 52.31475538037147], + [6.183442025297207, 52.31502924112899], + [6.181550914803041, 52.314857201960706], + [6.182176122542215, 52.30891083855058], + [6.1718567999683005, 52.30878543303233], + [6.163115118953894, 52.3074091384062], + [6.140394723038591, 52.30376413500287], + [6.130298004746254, 52.3016656814342], + [6.129975866360489, 52.30159906822877], + [6.118586723710723, 52.29889270348512], + [6.108364975184414, 52.297659315004], + [6.108116108165938, 52.29901449871329], + [6.101462234291074, 52.30121352288656], + [6.101320378574241, 52.301224771010816], + [6.098741584505151, 52.30115990704313], + [6.0991941321768985, 52.30012834430449], + [6.090902179517345, 52.29998946884469], + [6.088129032360935, 52.30037629610272], + [6.086234038960454, 52.30189784970257], + [6.084071402267834, 52.30168592075048], + [6.082927738390492, 52.30712015260456], + [6.084398033558566, 52.31145210286011], + [6.080990104414897, 52.31190247711161], + [6.079693984190287, 52.31764154118571], + [6.0737758414924805, 52.31774093969593], + [6.071842938412504, 52.317185071967266], + [6.06652511104341, 52.31780911180213], + [6.066086975300347, 52.32025307493519], + [6.0673876057223115, 52.3214128896888], + [6.070705678723691, 52.321881899257015], + [6.07368063105663, 52.330569239498494], + [6.074355607432586, 52.33255580194331], + [6.075632414187174, 52.33330016158958], + [6.074053475342871, 52.33452364564816], + [6.0755795670986465, 52.334741762430895], + [6.076764144533402, 52.33865076005204], + [6.075329971359418, 52.34455553645621], + [6.076131209263119, 52.34566932632805], + [6.076070119108163, 52.350570293943335], + [6.078098925430134, 52.35175579261977], + [6.0780098838915215, 52.352426431416376], + [6.087240503660913, 52.353889999047155], + [6.094778511487268, 52.35693105967784], + [6.093522059905471, 52.35867170848393], + [6.0907128600470015, 52.36044415723847], + [6.088487343946803, 52.36114566129878], + [6.08088202347077, 52.362036110467706], + [6.077844927652806, 52.36429706027241], + [6.078203163966864, 52.3690461671143], + [6.079701213856353, 52.37066484955077], + [6.0824633044853975, 52.37206929154968], + [6.095133368065179, 52.37384113341648], + [6.113371072549623, 52.37720882573386], + [6.120853832327386, 52.37954197156842], + [6.123650405581344, 52.38131818503421], + [6.125829977270933, 52.38405853426802], + [6.1261966445681875, 52.38606593177523], + [6.12520844874622, 52.39262716839241], + [6.12997056433021, 52.39860332111666], + [6.1305527164966716, 52.399977689045215], + [6.1275792394590685, 52.39961730441411], + [6.1253722823585255, 52.40017733056413], + [6.123683203429971, 52.40191615694336], + [6.119064762234602, 52.40264187456349], + [6.116246638484041, 52.404875138480755], + [6.114857081912373, 52.406985379295534], + [6.110806828784857, 52.40781256215297], + [6.114741104917125, 52.414255603627836], + [6.113572497705246, 52.41690566718485], + [6.113871943593512, 52.419853255861725], + [6.118244866540685, 52.42664384189268], + [6.118169119449726, 52.42843684151158], + [6.116385032308631, 52.43019943026929], + [6.119489293919116, 52.432925717223355], + [6.1141066817593686, 52.4380064650968], + [6.109580016796527, 52.440530727870694], + [6.120409810751315, 52.44230948090474], + [6.130271761843357, 52.44161198892191], + [6.135907263591901, 52.44156582997247], + [6.137075090458907, 52.44076154828361], + [6.139660018262937, 52.441617146549326], + [6.140435156802589, 52.44341234577729], + [6.1476759233260045, 52.44444107616649], + [6.153133681472903, 52.45022993770134], + [6.154914837571916, 52.453183025745], + [6.1576807606987725, 52.45354103120509], + [6.161281400695902, 52.44948804691577] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.40b9002a-5358-4c45-a32e-a7957eb6b0d6", + "properties": { + "statcode": "GM1774", + "jrstatcode": "2024GM1774", + "statnaam": "Dinkelland", + "rubriek": "gemeente", + "id": 299 + }, + "bbox": [ + 248503.8999999985, 477138.3260000013, 269741.6270000003, + 499205.1400000006 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [7.005063235902843, 52.44535832850605], + [7.00838116348132, 52.436141342686184], + [7.0107824174892786, 52.42913658142015], + [7.021989735781499, 52.42298415161912], + [7.028107315436731, 52.413612894584716], + [7.03607398708345, 52.40266260590533], + [7.041364709030495, 52.40256818043565], + [7.047046857651545, 52.4007912287104], + [7.050592433091184, 52.40075347421763], + [7.0516558386579575, 52.39992481903496], + [7.055319649089385, 52.401033591756], + [7.0587282055572365, 52.39941024041294], + [7.058517668344578, 52.396191432485566], + [7.063716364859949, 52.390677538682716], + [7.072204707644945, 52.372802526017495], + [7.031803667176907, 52.3676827632958], + [7.0078297753945815, 52.36382506358541], + [6.986120010691449, 52.37196449788417], + [6.970923549244237, 52.37984686898747], + [6.962668705670871, 52.36338662842975], + [6.970259186145256, 52.34876651423639], + [6.965973662134779, 52.34838639757828], + [6.9611043412669344, 52.346811999970576], + [6.952843358185178, 52.340350233447225], + [6.951140815611415, 52.33795956581928], + [6.953583418811326, 52.3339734759366], + [6.945202252234555, 52.332723670959815], + [6.937531013193346, 52.33283627936478], + [6.931905343220491, 52.332755606676535], + [6.932261286334105, 52.331209898472196], + [6.930441869810151, 52.330012203527545], + [6.930969360825703, 52.32945961118381], + [6.924599380405568, 52.329990315314966], + [6.918189131460963, 52.330799738775994], + [6.9127937832623, 52.330570938701676], + [6.9062263589606285, 52.332611312039305], + [6.900646007227116, 52.333460191657174], + [6.898140547482521, 52.328145855961644], + [6.897158284545568, 52.32821336129312], + [6.8947402981029935, 52.324953911878715], + [6.887778729725033, 52.32205757396292], + [6.886334263657451, 52.32228212222397], + [6.885604721099732, 52.32125240678387], + [6.884331516937036, 52.31845235513373], + [6.879868624750655, 52.31901438029565], + [6.876990600855047, 52.31226220954053], + [6.871770810530556, 52.31260986526311], + [6.870933275414147, 52.31190207845622], + [6.869340391129067, 52.31211925937444], + [6.86836811504422, 52.310611775867386], + [6.867049822262588, 52.31031126181927], + [6.867110496940573, 52.30829689748125], + [6.865041161925073, 52.3067998889121], + [6.863572371753938, 52.307348187451616], + [6.861349346209864, 52.306366862961625], + [6.861484477239287, 52.30399913354818], + [6.86073323692852, 52.303344566151175], + [6.859781375919999, 52.29867441422005], + [6.865298280962115, 52.29722132678835], + [6.872719593344939, 52.297363015743784], + [6.8796739616927205, 52.294839946530175], + [6.879902353568604, 52.29371917514213], + [6.883889797415082, 52.293953097150165], + [6.887931853794025, 52.29276223524466], + [6.88948027979644, 52.29246696857609], + [6.8944975078862125, 52.29353812687357], + [6.912127141079004, 52.285505747476215], + [6.9103583739969014, 52.28514271065635], + [6.907017186953304, 52.28543500604364], + [6.895828301587164, 52.283239301901624], + [6.895373526218296, 52.28382670053938], + [6.890215727710298, 52.282204502221965], + [6.889567053019456, 52.28097800324584], + [6.887811485815948, 52.28345212437663], + [6.883207433394793, 52.283170561912364], + [6.883261674211747, 52.282212881940666], + [6.880020296862853, 52.28140405014708], + [6.8812422633532115, 52.27935561349555], + [6.876494922945127, 52.274724793537224], + [6.868327340819642, 52.272961767688024], + [6.840491564894965, 52.2763115348226], + [6.8475700048271015, 52.27858384630218], + [6.846663038978657, 52.27946028315498], + [6.84576073191071, 52.27975896995483], + [6.852014135273848, 52.28205950324145], + [6.8506452862030836, 52.28297194823336], + [6.850304375736236, 52.284131498914725], + [6.852488621576957, 52.28487027089634], + [6.847799376004296, 52.28991593535494], + [6.846374992308218, 52.29140197964184], + [6.842698151806039, 52.29174675069395], + [6.8432023963559825, 52.29244830440627], + [6.839589969558453, 52.293303620353605], + [6.836634907354438, 52.293238097698456], + [6.83493148627265, 52.29414152060681], + [6.831186226765806, 52.29397924368413], + [6.827901941478741, 52.294862307120546], + [6.828407593934602, 52.29535080383375], + [6.827890337753978, 52.29552221889195], + [6.8230682575030315, 52.29709709770801], + [6.820503652083116, 52.29853536062988], + [6.819237101276201, 52.30144831726639], + [6.8199847067511845, 52.30241940011068], + [6.821170079729486, 52.30248126107627], + [6.823895591765618, 52.30442385881434], + [6.825691456784349, 52.30640012064127], + [6.82333619514793, 52.30875951971963], + [6.812251402065186, 52.31088728900464], + [6.8093347939833, 52.310362861092614], + [6.807815878329283, 52.3130912252623], + [6.8032299501167035, 52.31343683184829], + [6.80203883101836, 52.31358607982833], + [6.80212890482971, 52.31454419470588], + [6.785148993393773, 52.31736996400958], + [6.785823998257553, 52.318140386957296], + [6.781839840193474, 52.31833554888668], + [6.779077684770222, 52.31785404475199], + [6.773841845500584, 52.31891057319835], + [6.763051669552959, 52.3280305225701], + [6.762136077362358, 52.330761578625584], + [6.759035352559289, 52.33206059951326], + [6.760577181470427, 52.34194281279809], + [6.76263436159351, 52.34343709948581], + [6.773978606036313, 52.346563274964], + [6.778322385786173, 52.35021210926944], + [6.783394440346114, 52.360106090565594], + [6.797601719964498, 52.36129685789074], + [6.806833424834809, 52.36221746822673], + [6.8173872243512585, 52.36501892005989], + [6.835792821079129, 52.362624708644404], + [6.851789003897879, 52.36216867888156], + [6.855673690060824, 52.360287737258446], + [6.8635845378168785, 52.36373119988509], + [6.863567341360575, 52.38863775619793], + [6.862597986738931, 52.40294195918969], + [6.86234693927242, 52.40765573975596], + [6.8565920059102305, 52.410451077555145], + [6.851507051456183, 52.414571976417626], + [6.85347777939911, 52.42707072481646], + [6.891191397620152, 52.43202821324314], + [6.896910263202973, 52.43278871343515], + [6.924377907707428, 52.43412972296307], + [6.928525347532091, 52.434148359525345], + [6.938775843217487, 52.432722506560836], + [6.947238762117441, 52.432836297249004], + [6.9492238153089625, 52.43286512438869], + [6.9473003727563105, 52.43662141454267], + [6.95350628561904, 52.43993176398557], + [6.961061603799651, 52.44398830207076], + [6.961785386533216, 52.44362439527436], + [6.962188169272242, 52.44398311940731], + [6.962036787538025, 52.44470545880454], + [6.974429117688722, 52.45970363628383], + [6.977533755945545, 52.46568075363247], + [6.987623215354184, 52.46976679447156], + [6.993907084222128, 52.46548540590728], + [6.994573882690287, 52.46212702054324], + [7.000025524486569, 52.45471091638138], + [7.005063235902843, 52.44535832850605] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c64e4644-a067-4166-a008-8cd49790fb6b", + "properties": { + "statcode": "GM1783", + "jrstatcode": "2024GM1783", + "statnaam": "Westland", + "rubriek": "gemeente", + "id": 300 + }, + "bbox": [ + 68348.99680000171, 439860.9600000009, 81041.58799999952, + 452695.6363000013 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.187483568271245, 52.05211638927908], + [4.1895653590006985, 52.05149775627546], + [4.191736574989643, 52.052191627336235], + [4.196340551756235, 52.055660849970195], + [4.204116477679248, 52.04472688913754], + [4.204164020073882, 52.0446700219615], + [4.209037219593825, 52.038274349476566], + [4.212434345996899, 52.03403305664894], + [4.209584526184113, 52.033654693765634], + [4.21225506243344, 52.030752371620935], + [4.213734285580347, 52.03168657718097], + [4.219226713071831, 52.03373677915036], + [4.228325782009908, 52.034642021633545], + [4.235053995363408, 52.03925633033003], + [4.241415380337123, 52.031949543704826], + [4.2442946013846035, 52.0288454528239], + [4.244808089808479, 52.02873108210941], + [4.248217102472967, 52.02522579569206], + [4.254891591596354, 52.02828958800701], + [4.2563766281119015, 52.028347910437155], + [4.259132777201324, 52.02957094901435], + [4.2666453500144685, 52.033006196266534], + [4.272662682414576, 52.03591712586488], + [4.272973380582181, 52.035518452369], + [4.275895430725804, 52.03155798447422], + [4.277896808931001, 52.03246830070582], + [4.2817415233904175, 52.02736818748808], + [4.282800375814333, 52.02762621066579], + [4.283474822382952, 52.02670022709688], + [4.285249860627184, 52.027422325487336], + [4.285883852465252, 52.02648083504882], + [4.2850466816527275, 52.02626769112695], + [4.2856503112677204, 52.02591369295945], + [4.2851462754934, 52.02561773749811], + [4.288254549097564, 52.02375762853949], + [4.286773411458887, 52.02296742893527], + [4.286999323286745, 52.02286897247412], + [4.294344583983695, 52.019358649994885], + [4.2897366980187694, 52.01764749113201], + [4.29551214852881, 52.01484843273213], + [4.298614503614023, 52.01687686495518], + [4.301075364619267, 52.01786895195735], + [4.302664061511409, 52.01648804921444], + [4.307638584821269, 52.01815135964611], + [4.3098192615626, 52.01563403900757], + [4.307588819842499, 52.01469314148093], + [4.281464487775158, 52.002916011230056], + [4.2731172611077275, 51.99924989290257], + [4.265245211022963, 51.99583620391124], + [4.267252483449287, 51.99358386939029], + [4.269815124832234, 51.992893639443444], + [4.271116624890313, 51.992246802575586], + [4.271894258716249, 51.992891650547996], + [4.280321640621385, 51.99034746235701], + [4.280355421556584, 51.98853984506456], + [4.284089975711887, 51.9856409812233], + [4.287537077396874, 51.98901593691161], + [4.288683785702892, 51.988825261804344], + [4.29019264846403, 51.98739657980534], + [4.291913353010427, 51.98297231148463], + [4.29331375055831, 51.983207783901], + [4.295629462993805, 51.98359712161629], + [4.296324598496283, 51.981764777676695], + [4.298781523392505, 51.9821612363582], + [4.299270893617607, 51.98111385871824], + [4.30181627299174, 51.98120029174262], + [4.30290081750003, 51.98009163581608], + [4.302690714189847, 51.97969556230407], + [4.298253164630138, 51.97746394729837], + [4.295980785912299, 51.97753277941083], + [4.287553460815987, 51.97335536843793], + [4.289303072056592, 51.971910485058544], + [4.285091555329129, 51.9698895775497], + [4.2841274683235255, 51.970626619683436], + [4.282317216386283, 51.96978807998039], + [4.280315033840446, 51.97145140389689], + [4.27816106200015, 51.97043317469278], + [4.274686272146003, 51.97339617851686], + [4.273224690784234, 51.97364302483011], + [4.271949480543972, 51.97161441202409], + [4.272464673001735, 51.97025599069644], + [4.27145577584505, 51.969859901221064], + [4.2765374296457646, 51.96505397712134], + [4.263448572256649, 51.960093595511545], + [4.258267964092738, 51.95896530462314], + [4.253629039521839, 51.95886674794689], + [4.2339574323827485, 51.953331399580556], + [4.233532570066485, 51.95267104435035], + [4.23409928549425, 51.949735355106824], + [4.239398469895856, 51.9446368220441], + [4.241257942265724, 51.9436745299455], + [4.240317158710659, 51.9428721135711], + [4.236941035084504, 51.94392966915507], + [4.231919682103096, 51.94295461378294], + [4.231767021395302, 51.942922353230315], + [4.228291314746438, 51.94799094774675], + [4.221453481840102, 51.94266861483095], + [4.219528776329471, 51.94139967883217], + [4.217823717603746, 51.941636672420955], + [4.192396037367463, 51.95480593941121], + [4.186723852234215, 51.96267591460085], + [4.189369477250389, 51.96475785755265], + [4.19119613300483, 51.96544484527956], + [4.1906088159073205, 51.965981620677226], + [4.187917965618646, 51.965391777903356], + [4.1865800943501625, 51.965869082927185], + [4.187474597752582, 51.96681771872781], + [4.175898189133519, 51.97169378915175], + [4.169605429373052, 51.97397330840431], + [4.1550625713787195, 51.977838057864005], + [4.15530332084326, 51.97959994355175], + [4.147280704750779, 51.981393283853414], + [4.1499547129303185, 51.9848105081192], + [4.148942117977594, 51.98509408696943], + [4.1509579370310705, 51.98761844452759], + [4.138613383043041, 51.99164722445992], + [4.135567118724703, 51.992702927157566], + [4.132363284267339, 51.99546003147787], + [4.130987262819898, 51.997179317206815], + [4.1325172326586355, 51.99854276753599], + [4.125302909748147, 52.00164058122231], + [4.1374022529160905, 52.00989109442173], + [4.152739658508614, 52.0222215573334], + [4.1605866597923296, 52.02882882559762], + [4.168188423698872, 52.03399267604739], + [4.175480459828649, 52.041545437549125], + [4.187647653758942, 52.05644965112369], + [4.189178921995794, 52.05546711539258], + [4.187483568271245, 52.05211638927908] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7a9d4115-c38b-4ddc-a9eb-8474f508a195", + "properties": { + "statcode": "GM1842", + "jrstatcode": "2024GM1842", + "statnaam": "Midden-Delfland", + "rubriek": "gemeente", + "id": 301 + }, + "bbox": [ + 75693.84380000085, 437539.61199999973, 87358.90500000119, + 448498.20270000026 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.319389348549556, 52.01998790117724], + [4.325765910150902, 52.01276624528192], + [4.325956240875383, 52.01279331349752], + [4.326059327720989, 52.01250006646745], + [4.325624199297454, 52.01232245045779], + [4.325321860897431, 52.01219907738066], + [4.325995389807823, 52.01162105055287], + [4.325329426491343, 52.011315348711655], + [4.325397110320099, 52.01110164200667], + [4.32547071649411, 52.01086923264827], + [4.325268156440216, 52.01077504532263], + [4.324374485766219, 52.0105832927633], + [4.3243715281501816, 52.010530490989645], + [4.324366319540991, 52.010437474551935], + [4.320635737452763, 52.009322032850434], + [4.321490059568697, 52.00846349292353], + [4.320217743007207, 52.00806544663136], + [4.323244422008502, 52.00433561314942], + [4.326346270810709, 52.00529279640247], + [4.326236844218229, 52.00542793291237], + [4.325759738804335, 52.006017129607265], + [4.326504513647679, 52.00624332391983], + [4.326547894868222, 52.00614641104505], + [4.327740302315775, 52.006404792649654], + [4.328069941900511, 52.00609700219501], + [4.328259554728464, 52.00591995341902], + [4.33131179499156, 52.00728013967887], + [4.332655693060222, 52.007882839868245], + [4.336370855964824, 52.0047531815783], + [4.338453227937851, 52.00569073446375], + [4.339037625910961, 52.00504791961826], + [4.341097251106899, 52.00278274284255], + [4.3411425007289965, 52.00271036189336], + [4.33583429134002, 52.00105531414118], + [4.337716867547207, 51.99880253979174], + [4.334746299832819, 51.998346643734365], + [4.333348316048771, 51.99792123433908], + [4.333244425523361, 51.998116117031486], + [4.33152500080776, 51.997852172268395], + [4.332813938450033, 51.99555332314698], + [4.333109542468982, 51.99317179815658], + [4.325732344402375, 51.991951225848794], + [4.32411192735902, 51.98985860501339], + [4.328487650444218, 51.985702018627165], + [4.332042137805029, 51.98406790655577], + [4.332723641511645, 51.98045665064039], + [4.338227324820158, 51.974177716248576], + [4.343134369712317, 51.97567480160887], + [4.345068900451849, 51.975419351236475], + [4.356625880980555, 51.97729625742527], + [4.35737637939093, 51.97549262231301], + [4.358571671764425, 51.97565789973627], + [4.358831644702143, 51.97502014264995], + [4.3576564919814, 51.97481940429058], + [4.358203846870733, 51.97350383715334], + [4.359307012748724, 51.97369335155617], + [4.359479001158204, 51.973280389308705], + [4.358368790247594, 51.97310737941372], + [4.358536135020588, 51.97270514465525], + [4.359701042876098, 51.972872942700235], + [4.3598805962259695, 51.97245727738436], + [4.358720932578595, 51.97226094967038], + [4.359540231946459, 51.97013539782889], + [4.368173838796324, 51.971581759636116], + [4.369175464199921, 51.96887046622439], + [4.375752331370833, 51.970147607856184], + [4.386302878384676, 51.97221405212884], + [4.383622480756835, 51.975815867972806], + [4.393809811261694, 51.9775034764756], + [4.3942172691559245, 51.97632683571531], + [4.396173948718054, 51.97608016255917], + [4.396745758921338, 51.974180780963586], + [4.39772304301432, 51.97433365244667], + [4.402933412547201, 51.966316314442864], + [4.3939875036712275, 51.962631505637866], + [4.393564126948403, 51.96247163538103], + [4.391751956632881, 51.96492104479844], + [4.38994741435789, 51.96460171291275], + [4.389779413198665, 51.965126401825586], + [4.3793094653563855, 51.96340662685282], + [4.363537937826832, 51.96087424087124], + [4.367071178806624, 51.9552199082694], + [4.3506713588841075, 51.95150652054202], + [4.336556426085613, 51.94739700373755], + [4.335530018126215, 51.946993962734396], + [4.336460487497542, 51.94643445423771], + [4.323873479934917, 51.94164000849949], + [4.32290603164139, 51.94269820509952], + [4.314843117546685, 51.93681013661544], + [4.313747109578789, 51.934933137313806], + [4.2950734156997745, 51.92287837823972], + [4.292953754770014, 51.921467809182644], + [4.2926110086228855, 51.92123631982094], + [4.272695983313354, 51.92354100136129], + [4.2706828410095605, 51.92353316314438], + [4.266128379222384, 51.92530212156788], + [4.264272372638832, 51.9254682297828], + [4.261420058854044, 51.92678075412873], + [4.260522072989977, 51.92730681817122], + [4.259402033711561, 51.92800395855793], + [4.25309468442999, 51.93273298994309], + [4.241775314271325, 51.94179602031083], + [4.240317158710659, 51.9428721135711], + [4.241257942265724, 51.9436745299455], + [4.239722238318094, 51.94446927401094], + [4.239398469895856, 51.9446368220441], + [4.23409928549425, 51.949735355106824], + [4.233532570066485, 51.95267104435035], + [4.2339574323827485, 51.953331399580556], + [4.253629039521839, 51.95886674794689], + [4.258267964092738, 51.95896530462314], + [4.263448572256649, 51.960093595511545], + [4.2765374296457646, 51.96505397712134], + [4.27145577584505, 51.969859901221064], + [4.272464673001735, 51.97025599069644], + [4.271949480543972, 51.97161441202409], + [4.273224690784234, 51.97364302483011], + [4.274686272146003, 51.97339617851686], + [4.27816106200015, 51.97043317469278], + [4.280315033840446, 51.97145140389689], + [4.282317219252073, 51.969788081805085], + [4.2841274683235255, 51.970626619683436], + [4.285091555329129, 51.9698895775497], + [4.289303072056592, 51.971910485058544], + [4.287553460815987, 51.97335536843793], + [4.295980785912299, 51.97753277941083], + [4.298253164630138, 51.97746394729837], + [4.302690714189847, 51.97969556230407], + [4.30290081750003, 51.98009163581608], + [4.30181627299174, 51.98120029174262], + [4.300702906787537, 51.981162492563364], + [4.299270893617607, 51.98111385871824], + [4.298781523392505, 51.9821612363582], + [4.296324598496283, 51.981764777676695], + [4.29598668666436, 51.98265551582028], + [4.295629462993805, 51.98359712161629], + [4.29331375055831, 51.983207783901], + [4.291913353010427, 51.98297231148463], + [4.290489377803753, 51.9866336959185], + [4.29019264846403, 51.98739657980534], + [4.288683785702892, 51.988825261804344], + [4.287537077396874, 51.98901593691161], + [4.284089975711887, 51.9856409812233], + [4.280355421556584, 51.98853984506456], + [4.280332967635585, 51.989741409582514], + [4.280321640621385, 51.99034746235701], + [4.271894258716249, 51.992891650547996], + [4.271116624890313, 51.992246802575586], + [4.269815124832234, 51.992893639443444], + [4.267252483449287, 51.99358386939029], + [4.265245211022963, 51.99583620391124], + [4.2731172611077275, 51.99924989290257], + [4.281464487775158, 52.002916011230056], + [4.307588819842499, 52.01469314148093], + [4.3098192615626, 52.01563403900757], + [4.316913712114318, 52.01878506773961], + [4.317584510796867, 52.01908681460575], + [4.319389348549556, 52.01998790117724] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.972d08c5-8a8d-4192-83ea-adb788fddc59", + "properties": { + "statcode": "GM1859", + "jrstatcode": "2024GM1859", + "statnaam": "Berkelland", + "rubriek": "gemeente", + "id": 302 + }, + "bbox": [ + 224456.08300000057, 448576.8110000007, 249058.1000000015, + 466721.26300000027 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.596115189283665, 52.17983524686791], + [6.606326834794967, 52.17308244198132], + [6.606207438179587, 52.17236913925325], + [6.603184833151556, 52.170721823765696], + [6.60285133734484, 52.16912131118997], + [6.607354759181883, 52.164630923544635], + [6.609270338647148, 52.16514329190216], + [6.612147207678886, 52.163166303383655], + [6.6173567481934485, 52.16529092178251], + [6.621989512212277, 52.16837295692525], + [6.624952229628867, 52.168649826472056], + [6.626563832683666, 52.17145692209179], + [6.625285831710263, 52.172171946429664], + [6.625839650660656, 52.17249925802631], + [6.629101012197396, 52.17203266884875], + [6.631041018242752, 52.17314226761861], + [6.634841499141317, 52.172177291060756], + [6.640280130439704, 52.16740514073072], + [6.645040700493845, 52.17419425513303], + [6.649211789900651, 52.17287848292906], + [6.671338904567617, 52.165683196966796], + [6.671973457404456, 52.16492723049695], + [6.673397353201004, 52.16323969849632], + [6.672784386176579, 52.16137906286265], + [6.674066686628217, 52.16124345886582], + [6.673146905768826, 52.16011888449001], + [6.673640332377302, 52.15986232645376], + [6.673914084347463, 52.15881439764384], + [6.670610185793815, 52.156420318562525], + [6.673094993042832, 52.15475329646826], + [6.672428703150343, 52.15303169500724], + [6.673819391025086, 52.15210362494999], + [6.672678818539619, 52.15050735292187], + [6.671309218977704, 52.150458112122244], + [6.673748235859685, 52.148286599767744], + [6.674394814787772, 52.142774462735694], + [6.672613019218743, 52.13930996138776], + [6.668409059049566, 52.13661468898022], + [6.663003451994667, 52.130001055591954], + [6.672556203694622, 52.12737029568558], + [6.677690595253182, 52.125958951666334], + [6.697810020440575, 52.12355366983163], + [6.711289866346881, 52.119708238593766], + [6.7162723611826, 52.118270405476494], + [6.7394930371196295, 52.118104771700516], + [6.739505820765104, 52.11855641574525], + [6.760572330352168, 52.118779933641186], + [6.759705403412373, 52.112661916504386], + [6.759574190946519, 52.10930293425362], + [6.75853499453313, 52.10530124853142], + [6.758014650933799, 52.10382570067284], + [6.75762658341714, 52.09928861662763], + [6.756193099767151, 52.09766673358881], + [6.755467379505521, 52.09712807624779], + [6.756304806879145, 52.09692943272754], + [6.755002498300052, 52.09486271229569], + [6.753297317165426, 52.09588078355792], + [6.750284203236054, 52.09577815679998], + [6.744776320027058, 52.0931234957352], + [6.745064083164028, 52.09117056573734], + [6.745496107888002, 52.090067438627], + [6.750264854688302, 52.08750762892661], + [6.751086897025158, 52.08547683557536], + [6.747612068662857, 52.081924903776866], + [6.744028277057259, 52.08033713830199], + [6.735470597988412, 52.074633957393154], + [6.713867404800905, 52.072901483572664], + [6.695973027983043, 52.07014228013326], + [6.694662799428882, 52.06980044335237], + [6.696867691090385, 52.06734371715704], + [6.695873813055931, 52.06426501329609], + [6.695226454242222, 52.06416796457224], + [6.689570622544518, 52.05645301901118], + [6.687385770267903, 52.056394582017866], + [6.686806772830621, 52.05551875907347], + [6.686742488780129, 52.05254006548731], + [6.688199394693721, 52.05234958791698], + [6.68798117701861, 52.0443654368866], + [6.684040656663125, 52.0448286202388], + [6.674703766649048, 52.04855924374988], + [6.666760069482923, 52.05031483463542], + [6.665622001258756, 52.050110031133954], + [6.6618012436378375, 52.05159792831556], + [6.663929259872745, 52.05444775275327], + [6.6638081297842655, 52.057705409006644], + [6.658970690591566, 52.063041280905836], + [6.651138244422523, 52.06359919404507], + [6.646838915744636, 52.06541072760179], + [6.643208529885822, 52.06020467301351], + [6.638588425285546, 52.06050302757243], + [6.636473330051769, 52.05664664389857], + [6.634143390475997, 52.057549286800125], + [6.631446610528466, 52.060524368346485], + [6.631754001591666, 52.06083037254537], + [6.632180917782459, 52.06105582948718], + [6.635354660085358, 52.06081380471113], + [6.636944779880076, 52.0643264310773], + [6.628900685226718, 52.06424093036259], + [6.623740147476578, 52.06362273852349], + [6.621374410896088, 52.06557454732198], + [6.613085697896117, 52.06804031608872], + [6.607450823345701, 52.06566666142894], + [6.606289462887566, 52.06517735804558], + [6.606440701279959, 52.06021552091302], + [6.604391923839717, 52.05555522595611], + [6.605480576692242, 52.051855429375], + [6.6026232341339535, 52.05011535814274], + [6.60144845200781, 52.05027840437237], + [6.598780335391888, 52.049173498587905], + [6.596588121558568, 52.047248958692016], + [6.595962737435668, 52.046314109295906], + [6.596237945612816, 52.04281924812597], + [6.594225731935241, 52.042271150995234], + [6.590801787412824, 52.04147393374656], + [6.590430315926702, 52.04069208767797], + [6.5898985948663364, 52.03924032199957], + [6.586887921448834, 52.03799018949863], + [6.5715225120822724, 52.030993889532446], + [6.539120488158703, 52.02522371880466], + [6.522627680683785, 52.038156014999394], + [6.5172877276081165, 52.04241448918307], + [6.514828320954718, 52.04049363203795], + [6.508706906382119, 52.04426627041159], + [6.49959578105881, 52.03582035494344], + [6.494297250554442, 52.03785131048712], + [6.492807662744571, 52.035888613981435], + [6.491619226507041, 52.03635930606717], + [6.490644080543781, 52.03561444175368], + [6.490168663190289, 52.03395901848744], + [6.487909218948618, 52.0323067670771], + [6.486670423422363, 52.03393336669308], + [6.485967389812757, 52.03338564300124], + [6.483385546320687, 52.03134708920756], + [6.480071332721833, 52.03294824520913], + [6.464946971134, 52.02060098580762], + [6.462185204243236, 52.02170080360348], + [6.4576175684099875, 52.02233917881919], + [6.438538963890763, 52.025010290435326], + [6.437194817483918, 52.02555909933513], + [6.437767773703984, 52.02659695314871], + [6.440026950912038, 52.027147911985374], + [6.43619195034318, 52.03067932310661], + [6.435419376309445, 52.030382331949404], + [6.432451241068617, 52.035073522429855], + [6.434948162409193, 52.03477147670092], + [6.431643146707373, 52.039348884742466], + [6.427191886446836, 52.0431902414094], + [6.424536190639975, 52.04244725522295], + [6.423734287333864, 52.04401895234173], + [6.425712580914322, 52.044791986484384], + [6.423237160603543, 52.04748120063026], + [6.420363311892585, 52.04645810081268], + [6.418746886491221, 52.047545887222306], + [6.419243844958171, 52.04782314844437], + [6.4188815265578505, 52.04810596289579], + [6.419088409624434, 52.04825192432519], + [6.41821432361634, 52.04860075769598], + [6.416510601448039, 52.0502992865114], + [6.415448344221169, 52.05082573369111], + [6.413418975360939, 52.05496922670285], + [6.413324955904614, 52.056385820039075], + [6.414099712890743, 52.05774962653162], + [6.413629032669231, 52.05791021813748], + [6.413223175307462, 52.062617507233476], + [6.410858322800577, 52.06553731057486], + [6.406002223094648, 52.0766508319654], + [6.400538849296355, 52.08381103820813], + [6.401924043776222, 52.08721161672239], + [6.4032570027184965, 52.088200060194836], + [6.411559717705201, 52.08950157124275], + [6.414047080157631, 52.08871771567344], + [6.417982329548186, 52.09125898609528], + [6.423998570852531, 52.096907988194], + [6.437558663513509, 52.10374275770018], + [6.439742272107557, 52.103132179014565], + [6.44346119748804, 52.104771349609294], + [6.444885068967358, 52.106196101416145], + [6.451822447465271, 52.10730397429409], + [6.452466355095423, 52.10690553004645], + [6.455204914932255, 52.10798014759412], + [6.460133099259784, 52.10673835836192], + [6.461463506725624, 52.104026314382104], + [6.46670426311179, 52.1066064544674], + [6.470497860691834, 52.10585270774441], + [6.47019433022859, 52.104290924519795], + [6.4724228895260785, 52.104063501834496], + [6.4725379270817855, 52.1021048819374], + [6.4768922817890635, 52.10042146780271], + [6.4785436357681405, 52.10068968876875], + [6.480116344237232, 52.10465837181014], + [6.482002483343294, 52.10592272607668], + [6.48246887591327, 52.109060953919425], + [6.481173826537257, 52.110290215808355], + [6.48459297666152, 52.114495353346484], + [6.487472846909658, 52.11632841946339], + [6.489031557315356, 52.11929884551437], + [6.491187738751647, 52.120035051083384], + [6.489717072028502, 52.12064197225005], + [6.492109452798583, 52.12400465299844], + [6.491409544838788, 52.12614253989177], + [6.488304685500533, 52.12690266059279], + [6.488258866292592, 52.12998080959605], + [6.486522149053334, 52.1318750657376], + [6.487889558952293, 52.13243911048842], + [6.488518329801672, 52.134242597164835], + [6.484866945565959, 52.1372750115252], + [6.481646688708074, 52.140914589959216], + [6.481224347115252, 52.14247886912107], + [6.470959069007593, 52.14401042301396], + [6.470711100463976, 52.1464065480068], + [6.469434609892031, 52.14747542418982], + [6.466581728730691, 52.14733645172575], + [6.466519419585322, 52.14963963980831], + [6.462662389870966, 52.15060115701715], + [6.461404340847371, 52.152143053156436], + [6.483787986911382, 52.15719940977948], + [6.487846365421266, 52.161193829041004], + [6.492845869898656, 52.16943006502904], + [6.494371805383818, 52.17319641556879], + [6.492221880746962, 52.176115612459], + [6.4924011400701405, 52.177371863954], + [6.49583936320073, 52.17714536876567], + [6.513240991168135, 52.18123054075669], + [6.517641996071343, 52.18126703676864], + [6.555349472159152, 52.17725556392276], + [6.584948797089735, 52.18152984435961], + [6.587982379078458, 52.18201063340419], + [6.589953710921534, 52.18248783610294], + [6.591077336781758, 52.182263635855165], + [6.596115189283665, 52.17983524686791] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7a9cbafe-fb61-4f56-902d-37a2790b04f9", + "properties": { + "statcode": "GM1876", + "jrstatcode": "2024GM1876", + "statnaam": "Bronckhorst", + "rubriek": "gemeente", + "id": 303 + }, + "bbox": [ + 204649.83159999922, 442640.7520000003, 229772.1090000011, + 461475.3570000008 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.36198348074678, 52.12666911063275], + [6.3691392676570535, 52.123969253550385], + [6.377940067370342, 52.12715327608646], + [6.379200863040735, 52.12589499288977], + [6.383440364774999, 52.127261248107146], + [6.38267792717388, 52.12854864868069], + [6.392680634000248, 52.13149368451724], + [6.395843274913926, 52.13083229941908], + [6.391822331996108, 52.12372778550715], + [6.398389379428459, 52.11764775067424], + [6.396489461539771, 52.11714835102107], + [6.3915296545633975, 52.11305094396759], + [6.418422294650441, 52.10043873004563], + [6.423998570852531, 52.096907988194], + [6.417982329548186, 52.09125898609528], + [6.414047080157631, 52.08871771567344], + [6.411559717705201, 52.08950157124275], + [6.4032570027184965, 52.088200060194836], + [6.401924043776222, 52.08721161672239], + [6.400538849296355, 52.08381103820813], + [6.406002223094648, 52.0766508319654], + [6.410858322800577, 52.06553731057486], + [6.413223175307462, 52.062617507233476], + [6.413629032669231, 52.05791021813748], + [6.414099712890743, 52.05774962653162], + [6.413324955904614, 52.056385820039075], + [6.413418975360939, 52.05496922670285], + [6.415448344221169, 52.05082573369111], + [6.416510601448039, 52.0502992865114], + [6.41821432361634, 52.04860075769598], + [6.419088409624434, 52.04825192432519], + [6.4188815265578505, 52.04810596289579], + [6.419243844958171, 52.04782314844437], + [6.418746886491221, 52.047545887222306], + [6.420363311892585, 52.04645810081268], + [6.423237160603543, 52.04748120063026], + [6.425712580914322, 52.044791986484384], + [6.423734287333864, 52.04401895234173], + [6.424536190639975, 52.04244725522295], + [6.427191886446836, 52.0431902414094], + [6.431643146707373, 52.039348884742466], + [6.434948162409193, 52.03477147670092], + [6.432451241068617, 52.035073522429855], + [6.435419376309445, 52.030382331949404], + [6.43619195034318, 52.03067932310661], + [6.440026950912038, 52.027147911985374], + [6.437767773703984, 52.02659695314871], + [6.437194817483918, 52.02555909933513], + [6.438538963890763, 52.025010290435326], + [6.4576175684099875, 52.02233917881919], + [6.462185204243236, 52.02170080360348], + [6.459199474474786, 52.01872184109715], + [6.462058005017618, 52.01691492153493], + [6.460329125381576, 52.01458087244448], + [6.461833742200489, 52.01375890294421], + [6.461869064889235, 52.0120339769874], + [6.46563176230284, 52.00769514471763], + [6.460267572695974, 52.00617130688763], + [6.467488194686496, 52.000756747332396], + [6.459208230803992, 51.99775212200262], + [6.460057676607075, 51.99515095534963], + [6.47577276093889, 51.98813623172115], + [6.46873271200743, 51.98109809590268], + [6.46692680891913, 51.97862178875401], + [6.46785048554855, 51.97821890933035], + [6.466710031271851, 51.97705641677282], + [6.46259472235776, 51.97621534195775], + [6.46312910478989, 51.97530506854962], + [6.461518545728873, 51.97514779970881], + [6.460194267367144, 51.9735571665636], + [6.453097714291101, 51.971671832020014], + [6.451790533970054, 51.97179712178152], + [6.447501826891726, 51.969708316295424], + [6.441336340272825, 51.97085706201496], + [6.44129250597569, 51.97172976837331], + [6.439350815129619, 51.972100742504914], + [6.439061393597045, 51.97155513824261], + [6.437505354153629, 51.97157480847602], + [6.437040831628489, 51.97072436061814], + [6.434887488639555, 51.97097286192171], + [6.434801785343015, 51.97207539609076], + [6.430123421667042, 51.97182841250479], + [6.426922667719169, 51.97199695481074], + [6.425587820735429, 51.97259401179969], + [6.416081865598383, 51.9726219174811], + [6.402519671969593, 51.9821505980506], + [6.396399680273603, 51.98001184514865], + [6.3926785148731815, 51.97974778923033], + [6.39030592603909, 51.98025853082451], + [6.3808780824433295, 51.97773814290829], + [6.385839067852374, 51.9761696842584], + [6.388267286175593, 51.97629988450773], + [6.3908209252539, 51.970737763317025], + [6.390378034291631, 51.96832788302859], + [6.3813920980819905, 51.96797881721811], + [6.37345617621931, 51.96985834004281], + [6.368350757161014, 51.9685324212592], + [6.365338720274358, 51.96962590072114], + [6.366290709792506, 51.97177574653796], + [6.368765332758621, 51.973137551218905], + [6.369857474067802, 51.97621594123476], + [6.3535058699592275, 51.974675081679884], + [6.337374721370158, 51.974684745621694], + [6.327518883627069, 51.9757494516881], + [6.327728241290196, 51.97728683231787], + [6.331138263107736, 51.98056977426858], + [6.332216130137854, 51.98286377026904], + [6.335657878434831, 51.98564646445303], + [6.329005598921554, 51.98914245579216], + [6.326454978843611, 51.99188890005622], + [6.3225394640444, 51.99341770306033], + [6.319133279588674, 51.99426071114083], + [6.316521985356393, 51.9941729698336], + [6.314270100883523, 51.99409725896269], + [6.305152290392902, 51.99218771931244], + [6.295657611744628, 51.98846694271538], + [6.294340583202528, 51.9903159964547], + [6.29382604982975, 51.99219169646132], + [6.291896735286046, 51.993345368649955], + [6.278944778353499, 51.984912559531715], + [6.274650931413955, 51.98528849188611], + [6.273869938530179, 51.98460333494566], + [6.272299235323441, 51.98369081121818], + [6.270522898143176, 51.98344197606419], + [6.268943690307267, 51.9839773417059], + [6.267343083776885, 51.98377003475753], + [6.260051892440864, 51.9868346630488], + [6.259362336745876, 51.98746245199893], + [6.254367360332717, 51.98807002562076], + [6.25381184767548, 51.987826411699196], + [6.253896318852065, 51.9875937573222], + [6.252260477479741, 51.98683341568048], + [6.250720786804431, 51.987329388097], + [6.24794874968992, 51.984085997347115], + [6.257298828418557, 51.9825284745742], + [6.257298931444752, 51.98252845763247], + [6.256808183014959, 51.98097524007803], + [6.252838604490819, 51.97990436234479], + [6.249788086015252, 51.97596466473195], + [6.248374335371882, 51.97628654457132], + [6.247347510161306, 51.977316433731126], + [6.244390557366667, 51.97784226071199], + [6.242977934755715, 51.977771261865065], + [6.243410728785991, 51.97892948525102], + [6.244707981699266, 51.98004208197667], + [6.2427266281383975, 51.98100463023239], + [6.237459331021347, 51.98111844934359], + [6.234803099762933, 51.982614170659105], + [6.2342362011789865, 51.983424657717734], + [6.2357813884708975, 51.985011080543565], + [6.232112665461803, 51.98836545385086], + [6.232521450280479, 51.986481556551986], + [6.228721167152701, 51.98717229998613], + [6.228086623730505, 51.987795019041755], + [6.2239020997003225, 51.98574045310499], + [6.22241731634613, 51.98414782958075], + [6.231703687360831, 51.98077576888419], + [6.230130727939888, 51.9790909905033], + [6.2311191824084835, 51.97864901529741], + [6.229280178149879, 51.97677660526409], + [6.229799763802818, 51.97620685621106], + [6.224147680407838, 51.97841993735834], + [6.217260143820359, 51.97933194445249], + [6.211678984857113, 51.97839026120715], + [6.2051342629419635, 51.98024757250883], + [6.190986531053032, 51.97905616572953], + [6.183434957999575, 51.97953428044135], + [6.182403111992678, 51.9791981878019], + [6.179407352933152, 51.979345040133914], + [6.171697998804035, 51.98082700218825], + [6.168431173036938, 51.97980481043542], + [6.160582665604562, 51.97951273839033], + [6.160483486937829, 51.981036748459665], + [6.161585007743107, 51.99075370162519], + [6.161889172440446, 51.99324858781847], + [6.1595657098555545, 51.99602503791899], + [6.159934548127292, 51.99784706680939], + [6.164317263868543, 51.9989862981609], + [6.1630756132093785, 51.99956743912242], + [6.159250532133227, 51.99973978188692], + [6.159160286778841, 52.00068425937905], + [6.158463897457724, 52.001812269830126], + [6.158856383176495, 52.00396369081122], + [6.157265672531341, 52.00413544786082], + [6.153956659162444, 52.00327133216006], + [6.1566594867498665, 52.00636493788859], + [6.159500966161698, 52.006672489436134], + [6.161183571341808, 52.01382798844546], + [6.164745159370199, 52.01440145115216], + [6.164524212742181, 52.016919839916795], + [6.167188155614754, 52.01637174791567], + [6.169803811996295, 52.016536470023546], + [6.173575432058489, 52.01757355009641], + [6.172965525930773, 52.01853418845325], + [6.176546918296356, 52.01922837364413], + [6.176558426105147, 52.02035513875866], + [6.177295557658014, 52.02033798568209], + [6.17723128449989, 52.021561687909845], + [6.174534254539829, 52.02272228031846], + [6.176818078240908, 52.0252890835752], + [6.174655087243654, 52.02559899133394], + [6.175307251865582, 52.02724347309807], + [6.1732326286719905, 52.02777469689572], + [6.1770149948333035, 52.0314745426575], + [6.175057249102321, 52.031701148750784], + [6.175913483143924, 52.03577771790985], + [6.175535588780879, 52.03936455255466], + [6.175513135790732, 52.039369126142056], + [6.1671905351070055, 52.03696574642421], + [6.1591149054837455, 52.03741536986943], + [6.155432644626186, 52.04117126795852], + [6.152050804464467, 52.042083295788515], + [6.148153836427991, 52.041686219899894], + [6.146130760019105, 52.04069043592253], + [6.142004532846849, 52.03669972837736], + [6.135085228071527, 52.034724597903505], + [6.128008210993185, 52.034010512087356], + [6.121502326132174, 52.03461732469684], + [6.1168480462949395, 52.03588132159801], + [6.11330128839457, 52.037670087942324], + [6.111723912344026, 52.039251727239034], + [6.110882914531361, 52.04161666786904], + [6.111604611848243, 52.04469915545588], + [6.1157636433264, 52.04874585023269], + [6.123063067587723, 52.052543905996124], + [6.1320736392363955, 52.055732592018664], + [6.137469230956889, 52.05918110840307], + [6.139301035038159, 52.061211874470736], + [6.147885253372708, 52.06468701309052], + [6.151228199460558, 52.0679451240498], + [6.162801661657201, 52.07409271478813], + [6.167781577961954, 52.075942850541246], + [6.17071917493876, 52.07890323643711], + [6.17400715342236, 52.088539106794386], + [6.175736303341073, 52.09029728675386], + [6.178296722177967, 52.091297095374465], + [6.1895745915604, 52.09130826507972], + [6.199630446258788, 52.093790773431564], + [6.203042957758731, 52.093588754386246], + [6.206829532209604, 52.09242062887758], + [6.210534264085144, 52.092451828599835], + [6.215321183088727, 52.094885979274785], + [6.217898865017434, 52.097881301781484], + [6.219201415414042, 52.09630891613346], + [6.216831585257303, 52.0944331497401], + [6.217000113213243, 52.09311512219841], + [6.2184856750195046, 52.092729778250735], + [6.21816185893666, 52.089592187124445], + [6.219476081346058, 52.0887330083172], + [6.220180786735795, 52.089578111030114], + [6.221693892672395, 52.08877469073536], + [6.219223118263366, 52.09254994540903], + [6.22016299850333, 52.10032689781068], + [6.224476415168679, 52.10019906980787], + [6.224509697311122, 52.10186242905482], + [6.222156029592317, 52.10672565874178], + [6.225777824095645, 52.10685171060845], + [6.22663773226169, 52.109409507299105], + [6.232415980038951, 52.110747137877034], + [6.231768464780724, 52.11115086586054], + [6.233876978265826, 52.1131257992354], + [6.235043401482647, 52.112800122531304], + [6.2359214480267, 52.113716535649694], + [6.242431737920396, 52.1125303719519], + [6.244724078673751, 52.112613968849416], + [6.258233318661099, 52.11027225425237], + [6.266609756689333, 52.11182986349548], + [6.269700897400834, 52.11160980175937], + [6.2715899484505595, 52.11304167243215], + [6.27750009997163, 52.12168593221147], + [6.282621703540875, 52.12351844601849], + [6.296002494628361, 52.128274291571685], + [6.31017587562142, 52.13155834433113], + [6.3283143682943575, 52.13771236167568], + [6.357721049106952, 52.13552675248663], + [6.357721570175844, 52.13029935547982], + [6.36198348074678, 52.12666911063275] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7665a3f6-76a0-4b54-92b8-94496ae4f243", + "properties": { + "statcode": "GM1883", + "jrstatcode": "2024GM1883", + "statnaam": "Sittard-Geleen", + "rubriek": "gemeente", + "id": 304 + }, + "bbox": [181010.75, 328617.8999999985, 191383.25, 342650.99909999967], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.823677810494795, 51.06673157132889], + [5.826772487358631, 51.05586852306901], + [5.827253150516897, 51.04755818086221], + [5.835275412631054, 51.04892955264081], + [5.838152336044667, 51.04661497155051], + [5.841238434280074, 51.045753941104486], + [5.842312183615557, 51.04638596592775], + [5.844230492275836, 51.04572190490256], + [5.848580504006499, 51.04628289491673], + [5.852740588618714, 51.03812321291791], + [5.84911693763384, 51.03653774461866], + [5.851078020127301, 51.032403875092776], + [5.852614134032044, 51.02931809487415], + [5.856735703556566, 51.02853714923759], + [5.861827703110175, 51.028894467285575], + [5.86177034851176, 51.029531783072976], + [5.865313831485554, 51.0291683325886], + [5.873168585445725, 51.03104943408863], + [5.872839115805776, 51.03155081522237], + [5.874317139082111, 51.03176869797817], + [5.874809448300441, 51.03140096721734], + [5.8770004168482775, 51.032041790734695], + [5.874606611399821, 51.029179702918675], + [5.876659259873078, 51.02384627045269], + [5.8788955722310225, 51.02064376445094], + [5.8786610511793524, 51.01820874960946], + [5.8818454513823175, 51.015372751878544], + [5.8842616448189915, 51.01338157949724], + [5.885445741543134, 51.013816017123546], + [5.88834399340522, 51.01347233947649], + [5.895739565120926, 51.01101906409385], + [5.895482668649266, 51.004714369505805], + [5.900588125281005, 51.00331999448011], + [5.905517416588451, 51.00217196307393], + [5.90365022856273, 50.9871481910369], + [5.895723355276165, 50.9813741814907], + [5.893802312138591, 50.98109704846403], + [5.8927619566277345, 50.98021002194499], + [5.896796749566599, 50.97648614942801], + [5.897085535000427, 50.97486501722193], + [5.895411112535255, 50.97492931499519], + [5.891036366533106, 50.97409396698567], + [5.890372877130027, 50.97208978382592], + [5.89084841045243, 50.97172490516082], + [5.889273725515886, 50.97100240767334], + [5.8866920680235, 50.968448165936486], + [5.885266823070194, 50.96843638998727], + [5.885180271069622, 50.96775814267983], + [5.881478189630155, 50.9663204580312], + [5.877858408335927, 50.96380226921513], + [5.87678739937878, 50.964743391506005], + [5.875299204768191, 50.96399280121898], + [5.873503086469455, 50.96280431004021], + [5.871211689365596, 50.9642030866699], + [5.869177864659085, 50.96656752255548], + [5.865843887120444, 50.96396199781989], + [5.8615569569065595, 50.96608213012312], + [5.860445753904916, 50.96532377837301], + [5.858873012999932, 50.96656744838117], + [5.856398884648784, 50.96475542857925], + [5.855827955045826, 50.965857148169434], + [5.852185079071688, 50.968026987830264], + [5.845233149867736, 50.96395301906151], + [5.843265974226747, 50.963516679842385], + [5.8426083136367195, 50.96075330893336], + [5.841092429643152, 50.959592051686954], + [5.839817929199921, 50.95705767460108], + [5.839973214831735, 50.95594208236942], + [5.840282842598973, 50.9549776205552], + [5.8395611956606635, 50.95394986429297], + [5.840145679103049, 50.95137835141798], + [5.839891581742605, 50.95019129941855], + [5.838608889996495, 50.946601734481106], + [5.837819898127633, 50.94639833340231], + [5.832378658638787, 50.94734955905528], + [5.827815797479594, 50.94891034469554], + [5.812513296382129, 50.954834969136094], + [5.8111156514314715, 50.954493211315636], + [5.803715496416065, 50.94838445625247], + [5.802129667005934, 50.94741246430948], + [5.793361485059767, 50.95190444900896], + [5.7882018490124745, 50.94805811684769], + [5.788107725987504, 50.94860626128048], + [5.7862682732713635, 50.954666745772954], + [5.785841521108474, 50.96022362804026], + [5.785963600795661, 50.962630326845165], + [5.784205334505775, 50.96781180678023], + [5.783898140336409, 50.96887903180424], + [5.786538394692875, 50.97137246115002], + [5.7864601148465145, 50.97457050737967], + [5.782465376897855, 50.981887717655766], + [5.782178074096568, 50.985805852128294], + [5.783657269162101, 50.99058055657335], + [5.786118988995756, 50.9940465138928], + [5.789196660319275, 51.001197058388975], + [5.779442113973567, 51.00297916986579], + [5.7748277374674, 51.00415463284857], + [5.781155984403089, 51.01118682151089], + [5.787179177956793, 51.0191639888956], + [5.786284107339232, 51.01912989519524], + [5.782634736840406, 51.018653114496956], + [5.7734065282219635, 51.018999218634775], + [5.775640949947511, 51.020678746898184], + [5.776434185700358, 51.022448422690786], + [5.775490907938804, 51.02511508229481], + [5.7728549030583824, 51.027429711861586], + [5.767165469558186, 51.029159242412916], + [5.760818545543069, 51.03000625116353], + [5.7583015335530785, 51.03205238538453], + [5.75800232349278, 51.03366567712107], + [5.759615270607028, 51.03673991358387], + [5.766407640830087, 51.04252632154907], + [5.770759243503808, 51.04919091974444], + [5.772564334886717, 51.05629567532839], + [5.771669409526123, 51.0598913211088], + [5.772566489882409, 51.06161501651329], + [5.774655573610347, 51.06297679096035], + [5.7790545947880805, 51.06285998415623], + [5.78439744087202, 51.061446550562266], + [5.787845094487873, 51.05970136229546], + [5.793179282458868, 51.05852638733452], + [5.797453698460111, 51.05915701370439], + [5.799338796722869, 51.06007180645049], + [5.800536713787774, 51.05930400879057], + [5.80294588034825, 51.05855755926713], + [5.803233364586927, 51.057594734590886], + [5.806261178607752, 51.058098480742764], + [5.806934306930509, 51.057572047317784], + [5.8078561471359595, 51.0592120651521], + [5.80934353649733, 51.059144168591764], + [5.813518799836064, 51.06554433982842], + [5.819623098636277, 51.07260986287095], + [5.820541884428074, 51.072588842089864], + [5.823960466277137, 51.07251055074739], + [5.823677810494795, 51.06673157132889] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.30f309d0-0168-4a92-ba15-1587c94df3d9", + "properties": { + "statcode": "GM1884", + "jrstatcode": "2024GM1884", + "statnaam": "Kaag en Braassem", + "rubriek": "gemeente", + "id": 305 + }, + "bbox": [ + 96929.32400000095, 462987.40399999917, 110050.86800000072, + 471972.36100000143 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.724154531319085, 52.23237133344954], + [4.7228965984100535, 52.22036390548757], + [4.723649577217825, 52.218234968161056], + [4.72330196035959, 52.2163538651162], + [4.723764399954997, 52.21657365211], + [4.724558784547825, 52.213222835295], + [4.724738951775617, 52.21258338117541], + [4.729562530948015, 52.21027114687225], + [4.728765997731066, 52.209818813286056], + [4.725334437205368, 52.211509948556014], + [4.7245300818838984, 52.21080082440692], + [4.723560043421832, 52.2115240334], + [4.723360093725062, 52.21094248578871], + [4.720806824469864, 52.201425468255465], + [4.707578194996506, 52.20490160301763], + [4.695315936058534, 52.18915448609524], + [4.690830648181494, 52.19167395504569], + [4.688928145793803, 52.191878010550454], + [4.687269708592078, 52.18660649789148], + [4.681209371734924, 52.167504227518236], + [4.679841095322084, 52.16274542313812], + [4.665335693463441, 52.16243344780629], + [4.645516629803485, 52.16200753545533], + [4.641485421843244, 52.16181552655951], + [4.639845829472896, 52.16160635538836], + [4.619032162988979, 52.15870800333558], + [4.61059330488638, 52.15757167377353], + [4.605923043184745, 52.15693495958504], + [4.572736679113299, 52.15224831738887], + [4.571480909629383, 52.15310902803848], + [4.561633874265479, 52.1608190677442], + [4.5626480970869325, 52.16132878695124], + [4.560490157328231, 52.1641301057153], + [4.562399817720856, 52.16611887740176], + [4.560592305005782, 52.16678300444921], + [4.555700932293159, 52.16442549986501], + [4.552758210831069, 52.1631039063278], + [4.550349872568791, 52.163013071898234], + [4.542329854925494, 52.171953604402596], + [4.540011508751507, 52.175568656536036], + [4.539065742660968, 52.17710070296644], + [4.538779149896713, 52.18013007072908], + [4.538153674429999, 52.180084693911304], + [4.543662876124053, 52.18739387404571], + [4.543001190806823, 52.18811916797852], + [4.544519538297519, 52.19152147236917], + [4.544480834315005, 52.19221740231269], + [4.5452555344679, 52.194088964130884], + [4.54676765530397, 52.19897558463327], + [4.549375258117041, 52.198937708305436], + [4.549297542559664, 52.198361799109996], + [4.554129581460316, 52.19834201151661], + [4.554046189838488, 52.19758212058965], + [4.557155228856088, 52.19774191896489], + [4.55686699379728, 52.1980066495852], + [4.5568081650033205, 52.198502249955204], + [4.556664205955005, 52.19881762442139], + [4.555564634743891, 52.1992027612242], + [4.555567552707783, 52.199405374703424], + [4.555359164820057, 52.199441561165024], + [4.5552006015784725, 52.199612317546986], + [4.555269245356754, 52.19969721012378], + [4.555571938598795, 52.19970987606293], + [4.555578208878883, 52.20014522303052], + [4.558142548747485, 52.20036691897671], + [4.559650191465477, 52.20049723353364], + [4.559554545802889, 52.201961389393745], + [4.561661946023493, 52.20363940301969], + [4.56052127021799, 52.203658251796924], + [4.560686481428783, 52.20477902179245], + [4.5582695441911, 52.20576054052912], + [4.5580907042673475, 52.20852097855432], + [4.5589546394315565, 52.210241559673996], + [4.554284867931925, 52.21231199948595], + [4.555374071684326, 52.21401535084279], + [4.557826137714725, 52.21506695179501], + [4.556908504479673, 52.21641473687611], + [4.558433146166438, 52.218798537598616], + [4.5722021916675555, 52.21699910306771], + [4.573762755567894, 52.21725835470777], + [4.583553195091427, 52.21887420588917], + [4.598180765778404, 52.215545173726106], + [4.6027615851328045, 52.21455826911345], + [4.618437147720568, 52.21447576921382], + [4.62248379787611, 52.214922744125516], + [4.625844648556071, 52.21530124737865], + [4.632634452711475, 52.21618427423957], + [4.638574556212056, 52.218486622648065], + [4.644022106930556, 52.220651173888726], + [4.647177779394168, 52.221205878401065], + [4.658473734545848, 52.22609828276864], + [4.665847202929803, 52.227996412878184], + [4.668345769519378, 52.22958041092776], + [4.670348087144909, 52.23075578542271], + [4.676699023394591, 52.22592552023059], + [4.679975125695984, 52.22676310891473], + [4.683632300972573, 52.22635403358111], + [4.686210563840143, 52.22663345971459], + [4.696244105624449, 52.232109272883555], + [4.700243660765442, 52.233079440440065], + [4.7044280493148865, 52.23384206157586], + [4.724154531319085, 52.23237133344954] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4a3d631e-a652-42b1-939e-158bbd943a2e", + "properties": { + "statcode": "GM1891", + "jrstatcode": "2024GM1891", + "statnaam": "Dantumadiel", + "rubriek": "gemeente", + "id": 306 + }, + "bbox": [ + 188022.47700000182, 582530.0850000009, 201015.6409999989, + 593420.8880000003 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.032300469332423, 53.3254969968106], + [6.036328998414566, 53.324334744751454], + [6.038416789799612, 53.32517629165307], + [6.066774241141938, 53.32363523922052], + [6.071219822380752, 53.32470720367138], + [6.073646434771287, 53.32484796831636], + [6.075663293845304, 53.324294167022224], + [6.077752685958152, 53.32208710160133], + [6.075141478877728, 53.321736940075915], + [6.072958917328025, 53.31642897756776], + [6.071844661319247, 53.30102863083643], + [6.070988060482861, 53.30096265758789], + [6.071541504696997, 53.29659541591371], + [6.069793715790347, 53.29692008792287], + [6.073695149613431, 53.29239969572258], + [6.072969828275971, 53.2923870639897], + [6.065680513353715, 53.29247624556897], + [6.054369800273315, 53.29075958320043], + [6.051863922449327, 53.26628627223037], + [6.050114947872083, 53.26614131500686], + [6.049879700895337, 53.26485513919734], + [6.049438661046895, 53.26264400361537], + [6.048844448782696, 53.2597135633605], + [6.0470006932429925, 53.25170092870862], + [6.04670952700754, 53.25065786475973], + [6.046047488855094, 53.250698799617794], + [6.04492926744159, 53.24591267063638], + [6.044530480018664, 53.24591528635198], + [6.043965635037673, 53.243502476458445], + [6.038848876874368, 53.24261661424983], + [6.031769529141655, 53.242238012742746], + [6.028694334369566, 53.24272026001656], + [6.027705534467139, 53.24139286671284], + [6.0230941649150695, 53.24279141799993], + [6.0213596523480675, 53.242532388838], + [6.02071949390012, 53.241312894525365], + [6.019790680598649, 53.24091399317083], + [6.017354362952821, 53.24124026626722], + [6.015140342480784, 53.24052854659747], + [6.009598443292817, 53.238542326382635], + [5.9853465397585195, 53.23065829102239], + [5.971758060500819, 53.2279465954173], + [5.966140917745425, 53.22806095758189], + [5.95597354452426, 53.22805631556453], + [5.954104800802295, 53.232221897176], + [5.949602478302776, 53.239601035926206], + [5.942532811309073, 53.25047541000492], + [5.925774924579714, 53.25235319450209], + [5.925913665104011, 53.25472983109672], + [5.922955083487569, 53.257405054986336], + [5.9144481765054016, 53.25864643507759], + [5.912588335062703, 53.260279082077794], + [5.904314303310859, 53.26423268985523], + [5.891562590975268, 53.27097951431893], + [5.889596366208527, 53.2721569738779], + [5.882244592405089, 53.27678249235831], + [5.891700687244229, 53.28003829016022], + [5.897787705875692, 53.28365981063008], + [5.897693842183481, 53.28463372556895], + [5.906648670696134, 53.28783933971893], + [5.903538427234251, 53.29418165601359], + [5.8969040700578095, 53.30152565979032], + [5.8990492148655544, 53.30248438305139], + [5.920886645150153, 53.31109856096766], + [5.922253438760844, 53.31260697715945], + [5.924360878539488, 53.313082657216135], + [5.935015420523748, 53.31567122228416], + [5.9350808578643575, 53.3156607614551], + [5.938418503668672, 53.31566517686448], + [5.948895194510686, 53.3177803179832], + [5.955684676856852, 53.3214122707695], + [5.9592040819984895, 53.321495507636754], + [5.963858452561237, 53.3228530325371], + [5.96878440257183, 53.32250766432858], + [5.9721741346188315, 53.32109134650182], + [5.972183646555235, 53.321051719359595], + [5.974452879116845, 53.317297452052124], + [5.973840843511499, 53.31509718217955], + [5.970813350863135, 53.31332036115096], + [5.975852740222416, 53.30692730575386], + [5.9801082044625415, 53.30748928963424], + [5.989624197926191, 53.3100428794693], + [5.994291501108679, 53.31013075578506], + [5.999055958757649, 53.31048915811967], + [6.009254114654965, 53.30963068387517], + [6.011617885619043, 53.308443785538614], + [6.016098387621895, 53.30811750025427], + [6.020151898894252, 53.308223586792096], + [6.0211242997282, 53.30900092096894], + [6.021234935138634, 53.31689901951905], + [6.022437837099205, 53.324030953982074], + [6.0245259519291166, 53.32461182757644], + [6.032300469332423, 53.3254969968106] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ac615f91-50f4-4822-8511-13b3a318670b", + "properties": { + "statcode": "GM1892", + "jrstatcode": "2024GM1892", + "statnaam": "Zuidplas", + "rubriek": "gemeente", + "id": 307 + }, + "bbox": [ + 97246.17500000075, 438615.0309999995, 107027.85000000149, + 453313.08999999985 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.624735698718093, 52.014722052888025], + [4.636802522620658, 52.01167991167045], + [4.648425253380079, 52.018986515245956], + [4.648812721783909, 52.020575577447175], + [4.653052302647587, 52.02134420334725], + [4.655184801800506, 52.021015920958526], + [4.656843404723092, 52.022050903490495], + [4.6628002758162275, 52.02398426406749], + [4.663771185236021, 52.02200759317445], + [4.6673725209650945, 52.02264606591313], + [4.667767737775245, 52.021489400665175], + [4.667303285407352, 52.01924517653139], + [4.664716704741298, 52.016484765449796], + [4.664792116992685, 52.01452389909289], + [4.66660655264981, 52.01297063583893], + [4.6707289208124285, 52.01112640984754], + [4.670096857869127, 52.010549871723036], + [4.667032053757787, 52.010005490286886], + [4.659454559108632, 52.00528769649374], + [4.662810241899534, 52.003245824768314], + [4.669524162807684, 52.002464893875526], + [4.6707169438145355, 52.0023261111264], + [4.674967487106949, 51.99972484652373], + [4.680229460252321, 51.99654157508703], + [4.681162763966796, 51.99687667637315], + [4.681761749316162, 51.99710721665401], + [4.684021274540899, 51.9979576724787], + [4.688684512651094, 51.996258042150544], + [4.682508979956503, 51.992694967797014], + [4.6769445787696045, 51.98828581424403], + [4.674289455692099, 51.98701695689748], + [4.671823130735396, 51.98447232047171], + [4.670679935178969, 51.9804218638464], + [4.667850994192692, 51.97885054578414], + [4.655923274261823, 51.97655312642947], + [4.649835076451132, 51.97342888830154], + [4.648577543215971, 51.97300731270268], + [4.632678508885314, 51.970245283737974], + [4.630838748137585, 51.96818947820173], + [4.632921372120737, 51.966320005630216], + [4.639773574251277, 51.962176771891095], + [4.642060728061025, 51.95987054863904], + [4.645709043146397, 51.9561072006794], + [4.6460058175214405, 51.95418187174359], + [4.639684479702675, 51.9511298622821], + [4.6361278910301715, 51.941343540027304], + [4.634734947311566, 51.93797573602277], + [4.633350460149822, 51.936939753350984], + [4.630970916272226, 51.93629077871903], + [4.623776759790233, 51.93619176663735], + [4.6214636209635005, 51.93524977749181], + [4.619488624484371, 51.93349226847018], + [4.618924069931186, 51.933895042566924], + [4.614245806600324, 51.93723101454399], + [4.6104970853607865, 51.939908946713146], + [4.605905465549378, 51.94323234342607], + [4.603699192593064, 51.94480787507961], + [4.599742538563236, 51.94766615360458], + [4.602068262792452, 51.94947559834572], + [4.59939236642667, 51.951984186409064], + [4.595332502691564, 51.95579789967098], + [4.595049461126701, 51.95603700612066], + [4.590188742099619, 51.9601428392689], + [4.588460073493366, 51.961602589377165], + [4.583992414024661, 51.965368966697184], + [4.590021946536619, 51.96858096214601], + [4.590690596333325, 51.968231845446], + [4.601808261111986, 51.972140102748725], + [4.594181566469593, 51.97544036573663], + [4.593740613130939, 51.97608859255697], + [4.593840759269788, 51.976777314626005], + [4.59442854264025, 51.977117614940134], + [4.594128269019564, 51.977629441447256], + [4.598773041128196, 51.98796859337316], + [4.594367517497419, 51.99428155345338], + [4.578942894191762, 51.989860656226774], + [4.579923817099815, 51.987777197085364], + [4.57731222779994, 51.98640483320776], + [4.578918486813049, 51.98113420214044], + [4.570229901065462, 51.97903010105885], + [4.57352940212839, 51.974576118836396], + [4.577921191417467, 51.97585443000581], + [4.578524470852409, 51.97618800935022], + [4.57899981884374, 51.97578719480296], + [4.5785439758846795, 51.97553539456981], + [4.574112344539846, 51.97308652599423], + [4.574363305164762, 51.97287621169545], + [4.571908917480722, 51.97186877609447], + [4.5713789501278255, 51.97191917726895], + [4.570275663387738, 51.972024093807946], + [4.566936032165548, 51.97118981492426], + [4.565382353347639, 51.97127568830476], + [4.563367733059003, 51.97172792476107], + [4.5628975324826895, 51.97152076978324], + [4.562413739012375, 51.97192671908334], + [4.561151941207294, 51.97117750333692], + [4.561544493743846, 51.97085107366181], + [4.561651900526621, 51.970761757304196], + [4.561104694552362, 51.97052502145783], + [4.5613988971597, 51.97027522681152], + [4.560547644268938, 51.96962215917335], + [4.556585946963042, 51.96846604133395], + [4.5564017460045765, 51.96885466589589], + [4.554215334525766, 51.96892069252697], + [4.547686282475619, 51.97280661177203], + [4.5519347253073015, 51.97473738404976], + [4.553760535643221, 51.97704111155994], + [4.551991874240598, 51.97886930615097], + [4.550885758415477, 51.98187362431739], + [4.548162227697237, 51.98329424947764], + [4.548417968373853, 51.98495707372459], + [4.547393656305648, 51.988746239256415], + [4.546909605839141, 51.99022834606033], + [4.546339275275281, 51.99151415825852], + [4.548387895569834, 51.99255733297954], + [4.547005418755447, 51.993942883776334], + [4.54989360496533, 51.99574655901116], + [4.553444531017972, 52.00392394175711], + [4.5548751467765225, 52.00594858541693], + [4.557119438817576, 52.01393638301399], + [4.556776973415948, 52.018400721586964], + [4.558217972992305, 52.028908449351285], + [4.559347338119586, 52.031407363488555], + [4.560140282154391, 52.033189893375045], + [4.56345716946241, 52.035776979884325], + [4.563304771149052, 52.03827702083798], + [4.561059633638684, 52.04206086243793], + [4.565042961073281, 52.058569379497065], + [4.5659254124737325, 52.05922595871239], + [4.607427110877652, 52.06552651866799], + [4.608074226445477, 52.06544109554702], + [4.608405926256057, 52.062944282937586], + [4.6055291021669555, 52.05043832653335], + [4.608046842874654, 52.049116530608224], + [4.610947408415692, 52.04871085300544], + [4.6108225342103575, 52.04823347810592], + [4.610224337628777, 52.046267306954356], + [4.606272714757318, 52.045949099444755], + [4.607334557183236, 52.04531199615047], + [4.59108942778075, 52.035087376100805], + [4.5969523289978085, 52.03154637512307], + [4.624735698718093, 52.014722052888025] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.98c299df-9255-4f92-9d50-6af806cc4b9e", + "properties": { + "statcode": "GM1894", + "jrstatcode": "2024GM1894", + "statnaam": "Peel en Maas", + "rubriek": "gemeente", + "id": 308 + }, + "bbox": [ + 186000.3999999985, 364234.3960000016, 206284.29, 378732.93299999833 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.073126188369232, 51.39572924336425], + [6.074370322972012, 51.393909242887744], + [6.077364722985926, 51.39428090232129], + [6.08183553745468, 51.392211341077655], + [6.08377312987453, 51.39245058524226], + [6.085474655015543, 51.39052651130385], + [6.087601261409206, 51.38954183006309], + [6.090121585747505, 51.3890928883859], + [6.090432246131551, 51.38589795347553], + [6.077587396417548, 51.378172833320406], + [6.086234353398509, 51.372596067438415], + [6.087930552614467, 51.37045879383104], + [6.090759491169533, 51.37148339903544], + [6.094942330413982, 51.36560019230148], + [6.099636283120542, 51.35713211193541], + [6.10710016677691, 51.356002847341834], + [6.118773028172564, 51.345931376213024], + [6.119595420900515, 51.34647875439902], + [6.123253373957759, 51.34336978006994], + [6.118795943680208, 51.34101719622067], + [6.11665749433217, 51.33910973488838], + [6.116998043936384, 51.33394447906216], + [6.118174352889833, 51.33004765282486], + [6.11743322285614, 51.32699185313406], + [6.115389550788426, 51.321999539819465], + [6.109173644685681, 51.31599357659999], + [6.107815386877327, 51.314405180768695], + [6.1060351869165705, 51.312287084534844], + [6.100453454193979, 51.30721415833391], + [6.092282113724636, 51.30132220525598], + [6.089138729568374, 51.29924005678961], + [6.084717158430475, 51.29745438170266], + [6.081496744919591, 51.29646705803101], + [6.0708908789829845, 51.29367687885281], + [6.069974608756209, 51.29143092362914], + [6.066818802680578, 51.28888140697904], + [6.063277796978657, 51.288697696338225], + [6.058880103807978, 51.28967193625841], + [6.05842520469356, 51.29024661348877], + [6.049058169801159, 51.2869238822713], + [6.042266594952075, 51.28238445858142], + [6.037602621582766, 51.27896979785522], + [6.030536359006789, 51.274026942787195], + [6.0293549335761965, 51.27097892384867], + [6.028197738474254, 51.26805632148437], + [6.0262839215005535, 51.26689785331662], + [6.020663363379163, 51.26587133795838], + [6.01177410287976, 51.26637552682566], + [6.009611847733264, 51.26575905685064], + [6.011014624159656, 51.27155264256623], + [6.008271406061382, 51.27752941989706], + [5.986620449797041, 51.286630166917305], + [5.966010438452735, 51.295363238587576], + [5.954705688420158, 51.30028024102243], + [5.923569407208856, 51.308813225494426], + [5.919327019843737, 51.30999048269969], + [5.907504187402076, 51.31325159426979], + [5.910653642408798, 51.30770938274393], + [5.890414416443031, 51.31366855146823], + [5.886739446235436, 51.31475440957983], + [5.877823370093845, 51.31657769394109], + [5.8594789494907715, 51.31950604752648], + [5.852141730768985, 51.32070231450329], + [5.840587349095115, 51.33072051575294], + [5.832075655036202, 51.33804651425331], + [5.840193687883534, 51.346877063742774], + [5.858466686004235, 51.35029474862733], + [5.868258162318234, 51.35213743513322], + [5.870359565007229, 51.35253496602653], + [5.874543143095494, 51.35331272545593], + [5.878131644516757, 51.35522995720565], + [5.894552477192963, 51.36433784223029], + [5.895838310598499, 51.36504372052779], + [5.919051951757043, 51.377953149058065], + [5.921229688453702, 51.37916362169957], + [5.9312875158085685, 51.384752676548686], + [5.947327359686458, 51.38313401448174], + [5.957804793985122, 51.378093870634764], + [5.982109243065846, 51.37814906426264], + [5.9898331774190705, 51.37822111978116], + [6.0068568448832504, 51.379974901074505], + [6.018765891647014, 51.38225664175083], + [6.073126188369232, 51.39572924336425] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4d91010a-44cd-4d01-b8e8-9bbe04c96211", + "properties": { + "statcode": "GM1895", + "jrstatcode": "2024GM1895", + "statnaam": "Oldambt", + "rubriek": "gemeente", + "id": 309 + }, + "bbox": [ + 256416.54080000147, 570494.938000001, 278026.08999999985, 587933.046 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [7.2096727618343035, 53.239638740824944], + [7.208052969470304, 53.239197552703075], + [7.206544196117534, 53.23755394920811], + [7.205136109054074, 53.23941086084705], + [7.20597804315202, 53.23966355563947], + [7.206725663110748, 53.239472370406176], + [7.2068724463367655, 53.24158012650499], + [7.207889675405172, 53.24268218557986], + [7.208948025323206, 53.24307284718149], + [7.2096727618343035, 53.239638740824944] + ] + ], + [ + [ + [7.013228521828281, 53.266840430792534], + [7.01260530641766, 53.26063824947987], + [7.013295913559261, 53.260701738338604], + [7.021847250229796, 53.25323684447325], + [7.0231541895783165, 53.25409323277783], + [7.031597992207447, 53.25613194368608], + [7.03459627562549, 53.25842273748202], + [7.037208963723549, 53.259682097076066], + [7.038718796397515, 53.25862988989503], + [7.040306915069872, 53.25983663279587], + [7.057420824596793, 53.24734026926094], + [7.059440880556944, 53.24822793770811], + [7.067503070854565, 53.242391595664245], + [7.079430773837929, 53.24817720883573], + [7.076632565374212, 53.24969943911263], + [7.083943286570991, 53.25434779302343], + [7.093249678240937, 53.257144300465015], + [7.093694726453905, 53.256093128337355], + [7.095500542589613, 53.255282748207165], + [7.097721762739716, 53.256122198750475], + [7.103612944301764, 53.252277348890544], + [7.1052769861149265, 53.25274497716121], + [7.106550663707844, 53.251903096450896], + [7.108266005164473, 53.252662387804946], + [7.111828028894679, 53.25069169353506], + [7.115105772486889, 53.25223064192387], + [7.116611260375381, 53.25064682088846], + [7.119241001892024, 53.25119030869724], + [7.120935056883856, 53.249882851732046], + [7.123996685421545, 53.25041540207254], + [7.134008041555711, 53.25015497369159], + [7.135451924632085, 53.24840176458981], + [7.139681505470542, 53.24750856422015], + [7.143043602352098, 53.24569866720297], + [7.14708918036935, 53.24634858617038], + [7.150120115706123, 53.245192508583834], + [7.15586431807459, 53.24339187791252], + [7.156156964584359, 53.24491817869621], + [7.158640051618329, 53.24502493099721], + [7.159369324379858, 53.24609343437854], + [7.163137206545362, 53.24537363225618], + [7.166545361904901, 53.24388070812819], + [7.167750276721107, 53.24275611150325], + [7.170403607171579, 53.24268282968946], + [7.17306605731394, 53.24049820663937], + [7.173758169282429, 53.24150818476453], + [7.17563707986574, 53.24077497839372], + [7.176660445370203, 53.24108305626328], + [7.177485135107781, 53.24123317355616], + [7.183217450105236, 53.23912920248793], + [7.18357995746317, 53.23987593393603], + [7.1862209071214185, 53.238735763507755], + [7.187477837990367, 53.23912318924442], + [7.189847095828771, 53.23820031831329], + [7.19455639548255, 53.238025435791], + [7.205717148525447, 53.23631033847457], + [7.207027662225523, 53.2323836129856], + [7.207665806963596, 53.23242888838486], + [7.208056575256689, 53.231661145077695], + [7.20894959649891, 53.23181110642395], + [7.209134704292345, 53.23221430634904], + [7.206576664515673, 53.23681979897618], + [7.2080707642310236, 53.23887379518173], + [7.208480990709031, 53.239244880004726], + [7.20980621223088, 53.239407878721394], + [7.212504566232504, 53.22818866573433], + [7.210491716870418, 53.228397130405035], + [7.21702536778699, 53.21476659985766], + [7.217622763715173, 53.197817332613944], + [7.216551685823117, 53.19554802372633], + [7.211453258126973, 53.192508586028694], + [7.208190393767206, 53.18865101797938], + [7.218244380496386, 53.18424349569337], + [7.227498373224411, 53.18027850960182], + [7.214002285875996, 53.17720411430641], + [7.205994864952147, 53.1764970421272], + [7.203654868749204, 53.17656421046988], + [7.200771089624461, 53.17327961467325], + [7.190900425863074, 53.16183974227163], + [7.1911793417628616, 53.159571812578996], + [7.189323465443024, 53.157322875542874], + [7.189244223164386, 53.1548829600368], + [7.183172711740577, 53.154754256588824], + [7.17699533715248, 53.152582477967094], + [7.173959302635665, 53.14793125199741], + [7.148069605195814, 53.159544419617255], + [7.145308069018232, 53.16077367014772], + [7.143216004038656, 53.15716281296592], + [7.140110282792712, 53.15460650001339], + [7.133625976499611, 53.15239832227946], + [7.126278840888728, 53.15144890318199], + [7.116111424415998, 53.148015892726534], + [7.10719675246807, 53.14441622323953], + [7.102139264147093, 53.14323230214418], + [7.098400106801946, 53.14336091050502], + [7.089515121352049, 53.14518898842346], + [7.086207389541432, 53.14502310217073], + [7.080305721324619, 53.14357221493663], + [7.068850109916001, 53.13748632586253], + [7.051180023902143, 53.13021802298083], + [7.049903341135131, 53.12883090028436], + [7.035596571571906, 53.119579350192666], + [7.033659498072122, 53.11604699987072], + [7.029754349437196, 53.115097082694604], + [7.0280272213453925, 53.11611212877432], + [7.022239704795768, 53.11608198251972], + [6.987692982915232, 53.116103525686015], + [6.987361598082174, 53.11577303142678], + [6.98378148997138, 53.117650971803776], + [6.984452114432141, 53.118110274126686], + [6.982535279153917, 53.11912326303971], + [6.979749049288736, 53.11919620737839], + [6.967389871162932, 53.11135724935031], + [6.965294910407109, 53.110831060309536], + [6.9658467635028805, 53.11207788560298], + [6.9598721045183085, 53.12449940434948], + [6.956537235291262, 53.13438881851626], + [6.956316406883023, 53.135045562943716], + [6.955967667136809, 53.136264726118384], + [6.955477278317545, 53.1369198117466], + [6.954928660791773, 53.13674331806749], + [6.95444777412494, 53.143795826141435], + [6.9503811479473, 53.158895102988225], + [6.943783490092004, 53.159013442802156], + [6.942299142569918, 53.16641923735381], + [6.929833528072418, 53.16533469596732], + [6.92927552023799, 53.16905065449669], + [6.903730925954305, 53.16650601164885], + [6.907404724833704, 53.16969928832316], + [6.912208340358797, 53.171966317622804], + [6.9082840781784345, 53.172234205582], + [6.907636170768075, 53.17287799087896], + [6.908203048868004, 53.17428689597696], + [6.9125341818586925, 53.17562343406721], + [6.913084611929698, 53.17692935409899], + [6.911498062691187, 53.17870354300952], + [6.911580120102128, 53.181283677718355], + [6.9138600746023595, 53.18302684698151], + [6.9157956847259205, 53.18827857087638], + [6.918689543654915, 53.19139242314241], + [6.922902821321967, 53.190704418781486], + [6.925108747230981, 53.194248742268734], + [6.922718167501793, 53.19464785686435], + [6.916820009816793, 53.195569915286235], + [6.918397524524813, 53.19873335480223], + [6.924687874146621, 53.20507124988772], + [6.920596311742892, 53.207448922074995], + [6.929004792220029, 53.21308412291672], + [6.926942470433117, 53.214597400902186], + [6.922815647880482, 53.22062986525624], + [6.925532296771689, 53.221557635449905], + [6.920041382607872, 53.227342508308325], + [6.912716318376807, 53.225124616061606], + [6.908591239232712, 53.23395393283503], + [6.911344191478548, 53.24301546694541], + [6.913953453140759, 53.24283564094821], + [6.91614822291579, 53.243618322996134], + [6.921720602660467, 53.23918011343875], + [6.928591183732551, 53.2370754941336], + [6.937603451722126, 53.244249270432306], + [6.942506432283158, 53.24204335356124], + [6.9449903679465255, 53.243614774489394], + [6.946136336825264, 53.24897373176655], + [6.95223080424393, 53.25649864195928], + [6.9970116039997405, 53.26712894122027], + [7.013228521828281, 53.266840430792534] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.55e4d18a-3340-4f94-b665-1c7e3e3e31aa", + "properties": { + "statcode": "GM1896", + "jrstatcode": "2024GM1896", + "statnaam": "Zwartewaterland", + "rubriek": "gemeente", + "id": 310 + }, + "bbox": [ + 194580.75200000033, 507366.3189999983, 207860.2509999983, 520304.25 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.120271324186645, 52.66508959000123], + [6.108082779736409, 52.658451065468846], + [6.106389547096149, 52.65679524596739], + [6.104291289217833, 52.657119780543596], + [6.103832594665219, 52.65614053651506], + [6.104470934764707, 52.64792571198723], + [6.104124478225338, 52.64692895936637], + [6.10299942710835, 52.64674461640841], + [6.1019320316696, 52.64062020845352], + [6.097382649127409, 52.63618197823825], + [6.097238405747686, 52.63604363253505], + [6.095916658717092, 52.63094119603649], + [6.0983478944639575, 52.62555485540957], + [6.1039305790630785, 52.625569411914086], + [6.105093962338364, 52.62149404718915], + [6.106665937914647, 52.6214744897583], + [6.106727303620188, 52.62084526305677], + [6.10587205303513, 52.62082840235618], + [6.1061585671177045, 52.61889746434633], + [6.107476762532171, 52.618872772494036], + [6.107614345855544, 52.61797077302009], + [6.106413572832627, 52.61789437561478], + [6.106950859008251, 52.61483221844191], + [6.1037009659050305, 52.612685506228615], + [6.106229777507731, 52.60703472929941], + [6.1030635874521835, 52.60565213149922], + [6.105282770058597, 52.603433161980426], + [6.105847946643697, 52.603696310603155], + [6.11424486948282, 52.59999284473376], + [6.1205285965860305, 52.597069433739165], + [6.12405685728828, 52.5940565724531], + [6.125507639758204, 52.59249182444333], + [6.124031523287239, 52.59128260747238], + [6.127465878977827, 52.58675663156619], + [6.131377875758493, 52.58124629317216], + [6.147418545938212, 52.58440824205241], + [6.147531514122069, 52.58380048532725], + [6.155069509345821, 52.582706345054284], + [6.157425463899858, 52.58077670157829], + [6.158812328748678, 52.57540570752756], + [6.166814244979877, 52.56525215381562], + [6.140527239379674, 52.55210243897252], + [6.127817870526294, 52.55672578561433], + [6.125719305357086, 52.556266117855884], + [6.118080954426575, 52.557397494018275], + [6.1139621132150035, 52.560810432067285], + [6.109790502374963, 52.56111455065307], + [6.110059635204115, 52.56741236092266], + [6.10367525240335, 52.56735249207014], + [6.100786796544726, 52.5637616988343], + [6.09768412741948, 52.55862943978217], + [6.093350399964183, 52.55578797399172], + [6.092411044387918, 52.553516304389646], + [6.089399557323757, 52.551840635120534], + [6.081128240014147, 52.55384723215074], + [6.074185753999815, 52.55640235761067], + [6.076162810864478, 52.55696278948193], + [6.073544343441076, 52.559176056556836], + [6.070155946563593, 52.55822620310511], + [6.063153713861562, 52.56727990860881], + [6.033545396691586, 52.55902989043918], + [6.033037539277, 52.55940346816955], + [6.012792881148784, 52.58605864309572], + [6.012609498940838, 52.58603615833957], + [6.012687737756626, 52.58563638305207], + [5.982940698069983, 52.57751377043308], + [5.973009303100279, 52.59090270846107], + [5.972623584483285, 52.5914581426277], + [5.972413053094812, 52.59255483913352], + [5.971563022415308, 52.59336806486262], + [5.9713412286417435, 52.594157309143135], + [5.972720141204854, 52.59553769232614], + [5.97697501441602, 52.600075561613515], + [5.980242993261023, 52.60508846687377], + [5.991308602849516, 52.6144299078127], + [5.991745406986074, 52.621747504971246], + [5.987949957832485, 52.62407114725408], + [5.986401565097824, 52.62501768640011], + [5.987174906987368, 52.626930108049784], + [5.9904005227540305, 52.625834371491074], + [6.010786503834627, 52.63714428469975], + [6.013092582568412, 52.63924688816411], + [6.012473829409077, 52.63943935499514], + [6.012861632073047, 52.639744051146366], + [6.017841573772677, 52.63906714147533], + [6.020339052585899, 52.637893672095096], + [6.020353286202121, 52.63866189394118], + [6.022226768090551, 52.639512185722204], + [6.01864777704982, 52.64324003363694], + [6.017504775319403, 52.64339949713126], + [6.01807261204888, 52.64385498739442], + [6.018859037235045, 52.643514111745944], + [6.021101892704084, 52.64136724149268], + [6.02457584517942, 52.64205644864421], + [6.026216612799225, 52.642919037324084], + [6.038208215876086, 52.64950000641382], + [6.054864164048848, 52.65021892515031], + [6.058918983099586, 52.652329237034095], + [6.0614065736525715, 52.65285833589973], + [6.072906185372973, 52.65814134420017], + [6.08556284400793, 52.66327421250757], + [6.097360356835844, 52.66462737569491], + [6.099917288177548, 52.66082127534782], + [6.102469027943342, 52.66343371667205], + [6.107491985473292, 52.66563571732723], + [6.119566086395519, 52.667936868418444], + [6.120271324186645, 52.66508959000123] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f0db13a5-f64e-4ff1-a790-c7c4fad16b9f", + "properties": { + "statcode": "GM1900", + "jrstatcode": "2024GM1900", + "statnaam": "Súdwest-Fryslân", + "rubriek": "gemeente", + "id": 311 + }, + "bbox": [ + 140141.44350000098, 540105.4695000015, 181857.6169999987, + 574122.0069999993 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.3730021689383785, 53.07225690595588], + [5.376507076741309, 53.071291032577044], + [5.378172332841075, 53.071397444434325], + [5.378344219612538, 53.0723171248197], + [5.3810193927408845, 53.07258109891655], + [5.385993234668433, 53.0691041860764], + [5.3908699725749525, 53.05961180616778], + [5.3944973020643, 53.05766548371538], + [5.395457662834192, 53.0553738401242], + [5.375348014458833, 53.05604911286564], + [5.365733631811128, 53.068798644528634], + [5.364069502110075, 53.07505920539198], + [5.3646408389894, 53.07574053832296], + [5.367522539561903, 53.0763128274612], + [5.3730021689383785, 53.07225690595588] + ] + ], + [ + [ + [5.421435887977767, 53.15381403446787], + [5.426418805836906, 53.15313151796518], + [5.435509809055445, 53.153525500178056], + [5.435176088519104, 53.15278288326535], + [5.442649956971001, 53.151089603807186], + [5.442740381552891, 53.15027056585666], + [5.4439078295578796, 53.14993659293784], + [5.444628874272003, 53.15109893122769], + [5.451118576698019, 53.14992338570416], + [5.452849832068128, 53.148092537377586], + [5.455110007394166, 53.1475826128908], + [5.46302806020644, 53.14726806888379], + [5.461436497084215, 53.14454716618272], + [5.466697024132206, 53.14372772721519], + [5.468337596508712, 53.14333277904007], + [5.469643786175294, 53.14512711454274], + [5.4721918422553255, 53.146614486494], + [5.47849748250699, 53.14529152362249], + [5.477269466290148, 53.142942498710305], + [5.479664679514488, 53.14298996767461], + [5.48280172697101, 53.14146694943075], + [5.48462949679155, 53.14171860429195], + [5.487101667682341, 53.14100021166302], + [5.486635333335314, 53.140331816191], + [5.48419180226897, 53.139820015290205], + [5.483024149833592, 53.13886080823913], + [5.481195627520722, 53.13861568894911], + [5.484321670235463, 53.13698817755339], + [5.488270571976982, 53.138305484251944], + [5.492518629039775, 53.14201241461603], + [5.496871664694039, 53.14039147986653], + [5.497918554182761, 53.14073541686175], + [5.500940809551177, 53.13897989439226], + [5.50080661622873, 53.13847063162958], + [5.502888243041742, 53.13784858303234], + [5.501068785345152, 53.13622510544384], + [5.504737573334756, 53.13533916360575], + [5.504985542526985, 53.13472725724795], + [5.512940391970544, 53.138580760789736], + [5.510426016323353, 53.140101378720196], + [5.5112934321701115, 53.14083692878448], + [5.512505452657397, 53.14187130420114], + [5.511704695190816, 53.14216561491906], + [5.512395722480926, 53.14314901546239], + [5.5101987587899846, 53.144540887314925], + [5.511596940594664, 53.14576652901562], + [5.520856524896158, 53.14641499935648], + [5.524645637040179, 53.14554403309328], + [5.527656661388258, 53.14594957063034], + [5.5312123326759055, 53.14788879566945], + [5.537952060903381, 53.1444650394824], + [5.53765675945876, 53.14210379784134], + [5.539182356455339, 53.14198454388599], + [5.539665605669716, 53.14095308138213], + [5.542177500860528, 53.139947043654345], + [5.543825349984442, 53.1385096004376], + [5.547317061803597, 53.13736545669178], + [5.550847776247877, 53.13408763653004], + [5.5541907870379665, 53.132938094886406], + [5.555380738068085, 53.13460362779482], + [5.557448760646587, 53.13472723423228], + [5.558126899604567, 53.13428684456213], + [5.559929453236385, 53.134636582030716], + [5.562297302595592, 53.1315862284624], + [5.563603082768471, 53.13124252667008], + [5.562604474754645, 53.13023170624223], + [5.5652000175644485, 53.129600423313924], + [5.571337266623386, 53.12991983432521], + [5.573980581449851, 53.13120572555694], + [5.574360955382618, 53.13350938946774], + [5.575310988162182, 53.13429169657885], + [5.577602960633082, 53.13369298927894], + [5.577994607476643, 53.13401954805491], + [5.581756388225962, 53.13374979789783], + [5.582455957305939, 53.133109948075045], + [5.584033612625753, 53.13394927250465], + [5.582860813373088, 53.132477270351906], + [5.585919529370152, 53.13099728420123], + [5.58661600210067, 53.13124608478892], + [5.587641307420754, 53.13033513414613], + [5.58976640401054, 53.13098114642379], + [5.589950102281068, 53.1310015397559], + [5.591231685175277, 53.12881776324983], + [5.594420540734151, 53.12946984287012], + [5.5963314439286895, 53.12596357584019], + [5.618871828541192, 53.1361179880081], + [5.622215914998725, 53.13824792039584], + [5.62541348774539, 53.134187439391226], + [5.624209503989695, 53.133890798007826], + [5.626236019420374, 53.132007709697305], + [5.6244827901368675, 53.1284802960343], + [5.6218937253312165, 53.12694563039021], + [5.62448133062382, 53.128200165580445], + [5.62750227266599, 53.128205357991106], + [5.627423725639073, 53.126702992068225], + [5.632088719856434, 53.12627023839058], + [5.632186767190357, 53.1255892614607], + [5.635400263452751, 53.12541421363776], + [5.637347904647186, 53.12414909636101], + [5.643025651813682, 53.12288204766305], + [5.646412696481234, 53.1163501187953], + [5.656510111993281, 53.11236547691883], + [5.656565315035639, 53.112381717840655], + [5.659483768056496, 53.11598471393499], + [5.680037038900248, 53.128575450096385], + [5.684880697736329, 53.12826748778613], + [5.685974053899785, 53.12986741889256], + [5.692232543782055, 53.12884844537834], + [5.691573474024536, 53.12736344810283], + [5.694373307215609, 53.12696950029128], + [5.694373744521757, 53.126969442558845], + [5.695616535217611, 53.126825895907146], + [5.693890698257754, 53.12290128461139], + [5.695451625257268, 53.1225775957948], + [5.696108101343468, 53.11994190471071], + [5.700612691182512, 53.11577500543795], + [5.707938873659691, 53.119698796184274], + [5.709866346517489, 53.119602986873204], + [5.71839276654896, 53.11972894853048], + [5.7211385532701575, 53.120501083360615], + [5.725123872423315, 53.12359452847293], + [5.730559816001658, 53.12053911489406], + [5.733252738502525, 53.12019217358886], + [5.737153612372473, 53.12083578473452], + [5.736178760986742, 53.1219022085322], + [5.745520691365656, 53.12548217148069], + [5.7514836783720655, 53.12594241334754], + [5.754563098212664, 53.12466293454648], + [5.7562437058895375, 53.12083663105525], + [5.756589793788496, 53.11578057698213], + [5.757448944160718, 53.11271550264933], + [5.76140401823205, 53.11367904493731], + [5.7626464090214995, 53.11163881896213], + [5.760812648987646, 53.11119495203036], + [5.762627698783834, 53.1088174284492], + [5.7693980789107195, 53.10653557779463], + [5.769717655681753, 53.10598539892894], + [5.767779304064293, 53.10506383875989], + [5.769532928517052, 53.103263235506866], + [5.771109359882078, 53.102922907221576], + [5.774208527070394, 53.10380937865859], + [5.776964045934298, 53.10345723990519], + [5.780572306840597, 53.101894201762406], + [5.7846154937917715, 53.099029897104856], + [5.787380272205862, 53.09849667965025], + [5.788153102967272, 53.09655509841941], + [5.7781336047366505, 53.092731698350605], + [5.771383905855842, 53.08910592937191], + [5.7720416028221795, 53.0883798326763], + [5.771188075650989, 53.08794395787623], + [5.771482635062038, 53.08764740907383], + [5.7729481708177355, 53.0874817560304], + [5.774271812863474, 53.08619167551902], + [5.772629515855217, 53.081821576648764], + [5.771009435969229, 53.08107711481482], + [5.76428273129071, 53.08027617010652], + [5.773563615538129, 53.07410912516869], + [5.775053888202148, 53.066644191230935], + [5.766683578978467, 53.062240340967584], + [5.761843142353906, 53.06079840426776], + [5.76312477102319, 53.056621573380745], + [5.766813015331392, 53.05054539074034], + [5.769543239995383, 53.04953309170181], + [5.77141237270783, 53.047146957105475], + [5.7710118104221335, 53.04696774246413], + [5.7706964645226835, 53.04744301401246], + [5.768538685824233, 53.04667218180166], + [5.767290518138033, 53.047282582134976], + [5.767480014547016, 53.04644765512083], + [5.75983846651308, 53.04668990436406], + [5.755432156734178, 53.04683805444894], + [5.7367046581151095, 53.03015190329585], + [5.733241301533335, 53.015438065780934], + [5.736164293808883, 53.01389279605597], + [5.748065925129243, 53.0084613928495], + [5.748891226425696, 53.007841932431724], + [5.748181224031258, 53.00728191007894], + [5.742182557190127, 53.005351438209765], + [5.741499839695173, 53.00429781690683], + [5.742258180500429, 53.002300625813675], + [5.738942269161177, 53.001196137749766], + [5.733565661226958, 53.00093000927875], + [5.731033922187104, 53.00137191415349], + [5.723168589033038, 52.999053343340556], + [5.721872128543561, 52.99758204443345], + [5.716132400693907, 52.99516434462405], + [5.714453104388615, 52.99337413973018], + [5.713117587037974, 52.990330848594645], + [5.707187539398133, 52.9865854655118], + [5.707776780205338, 52.985108837687605], + [5.706541692724134, 52.98447529790956], + [5.705174477609656, 52.984243198567846], + [5.697369157105584, 52.98608796828322], + [5.691858903187015, 52.988591109024014], + [5.69080103729297, 52.988271517110874], + [5.690701682162149, 52.98817875472661], + [5.688090221605868, 52.98486837468895], + [5.687442913520598, 52.982080364967615], + [5.690322690785694, 52.97419336903672], + [5.690872987950217, 52.967039598120635], + [5.690750083600693, 52.962557119849876], + [5.689134442891084, 52.94552024600512], + [5.688141209366137, 52.93627232937023], + [5.689325964319963, 52.93296662689435], + [5.6833403412773835, 52.93388108037426], + [5.67906626787735, 52.932951810275306], + [5.663772093701445, 52.934320144445635], + [5.655822334454199, 52.93503866303658], + [5.642455005099697, 52.93616728285305], + [5.6399782778120775, 52.922469478316664], + [5.639633795114999, 52.92241637260679], + [5.620750609181515, 52.91950356986951], + [5.594259849080047, 52.91541157944458], + [5.58260235712273, 52.929413112418096], + [5.580274666818445, 52.93275209256273], + [5.580527824489772, 52.933959215495456], + [5.578901000680562, 52.93394169125669], + [5.577259384485826, 52.93520454396029], + [5.572818698083869, 52.94224649386805], + [5.569573582532457, 52.94474251793337], + [5.569021510373719, 52.94553492437019], + [5.5644738524669775, 52.94736551085579], + [5.5118314846301875, 52.92697477634956], + [5.495217534676567, 52.91557631262246], + [5.4899501316351005, 52.91174580298248], + [5.4771202759870405, 52.90258602106237], + [5.4887742544449365, 52.89278983764783], + [5.493844790896722, 52.88983575283331], + [5.489712458342535, 52.88603001375691], + [5.494327128058827, 52.88295720501341], + [5.501818986931597, 52.88004348329322], + [5.501097232367206, 52.87957111838881], + [5.495902741497717, 52.876054491453], + [5.495517090632334, 52.873815680614825], + [5.490171430999914, 52.87143226095823], + [5.487486929675381, 52.873398476034964], + [5.485234113991463, 52.871693008221804], + [5.477092582683579, 52.868766219018255], + [5.473658015482267, 52.87124143289427], + [5.472469745716767, 52.87297182890815], + [5.468688925343201, 52.87179412766691], + [5.467718333807439, 52.872563411036445], + [5.465128722563158, 52.87130109444767], + [5.457526427486794, 52.87212683268694], + [5.457437007149959, 52.87167658161443], + [5.447895607908008, 52.87271047600274], + [5.443651508569751, 52.87372070442754], + [5.432531845225501, 52.87464996351692], + [5.426244525608725, 52.87332636007931], + [5.43240016524563, 52.86990419756616], + [5.433351530669, 52.87010871510171], + [5.438087284802071, 52.86023851661302], + [5.437421389057788, 52.85973243651763], + [5.441004562250379, 52.85091618153774], + [5.43853371277941, 52.85110274866426], + [5.430793441936328, 52.85003928954341], + [5.42612623297661, 52.848135039986886], + [5.414882075955172, 52.85025457417509], + [5.398080909085091, 52.857100516524746], + [5.389860992649865, 52.861942651273694], + [5.384202572498205, 52.866520568590595], + [5.379276569503051, 52.86850554101544], + [5.373744997816881, 52.87118084466751], + [5.369192488061092, 52.87239040650594], + [5.365093684511643, 52.8727840445339], + [5.366403329326266, 52.87354840225088], + [5.363827483854269, 52.876153795123585], + [5.363337125719781, 52.876084123662835], + [5.360468433496079, 52.876306644554454], + [5.360422423152643, 52.876396165631945], + [5.3634219152626175, 52.87656398217907], + [5.364716035651955, 52.87688731291194], + [5.3637757615820405, 52.8781603094093], + [5.362555969803516, 52.877993036600046], + [5.361765479278555, 52.878177046783215], + [5.3612817542319195, 52.877841226860994], + [5.361199585536453, 52.8778879207641], + [5.361776151899596, 52.87834373903923], + [5.3625769519771405, 52.878340962806135], + [5.362302840120087, 52.87891739266341], + [5.3609633990856125, 52.878803849277986], + [5.359722565301171, 52.878971566509506], + [5.356751027186599, 52.88417858194884], + [5.355084418754433, 52.88497313388811], + [5.354380540429016, 52.88600225316161], + [5.353676058238568, 52.88598540642825], + [5.355066329732866, 52.88677528504124], + [5.35531491047976, 52.88667654269041], + [5.3545908459363005, 52.886302282665326], + [5.35576634137635, 52.8858607103049], + [5.3581864323504655, 52.88595388838461], + [5.3582715982751195, 52.88622276640765], + [5.356823836639372, 52.88637831007442], + [5.356762672938549, 52.88658040876766], + [5.36136766077475, 52.88702789429015], + [5.361317579131044, 52.887558773944605], + [5.354816055824908, 52.88737918420145], + [5.3523426213113074, 52.886187386694246], + [5.352071945659856, 52.88638162526761], + [5.357631126691138, 52.88910887478889], + [5.360351870254462, 52.89232469225103], + [5.3642824067960015, 52.89424724541149], + [5.368813140494763, 52.898004712784775], + [5.371372676237221, 52.899400257698396], + [5.383368499831737, 52.90258837563638], + [5.388793213710376, 52.90543696507956], + [5.390905985461563, 52.90563775148921], + [5.393444320791999, 52.90470718509319], + [5.397337395612176, 52.90631715955921], + [5.401018532569878, 52.90605076640567], + [5.406790151437763, 52.91011402026103], + [5.407219637627824, 52.9132295671206], + [5.4079263198742575, 52.91376572932558], + [5.4071545906890925, 52.91739864101517], + [5.409288889366394, 52.92150883542579], + [5.40589342877693, 52.92621436458856], + [5.4022082857990705, 52.93671012695999], + [5.401025299237247, 52.93918234567453], + [5.395904883206708, 52.94302896331281], + [5.402279468931263, 52.94521374970719], + [5.402372912778809, 52.945071379528166], + [5.401724856350279, 52.94448536110076], + [5.402650452781915, 52.94384238094124], + [5.403085297536749, 52.94389888760007], + [5.40283773788566, 52.94468713676489], + [5.403660746296722, 52.9447555186703], + [5.40374212059791, 52.943986095894296], + [5.404821646046091, 52.943969104266074], + [5.404862157909652, 52.94508838038363], + [5.406373445105211, 52.9451159912227], + [5.406391795964665, 52.947034088613215], + [5.4039894008301905, 52.947084700428924], + [5.402807268818973, 52.946696997716984], + [5.402553281269526, 52.94643383141695], + [5.402843775998844, 52.945092695673694], + [5.403353894333604, 52.94512904048218], + [5.403323265868893, 52.94494466650579], + [5.402729970371542, 52.94493725132176], + [5.402360797354597, 52.94592248487899], + [5.402349277158418, 52.946432203354775], + [5.40262384953114, 52.9467509125812], + [5.403948886447357, 52.94720232055602], + [5.406597183337217, 52.94719085428518], + [5.407867686524103, 52.946422215364], + [5.409115155134574, 52.947887994405086], + [5.408810052496591, 52.95064228790822], + [5.409578394753225, 52.95144589288205], + [5.408939846273507, 52.953957811010035], + [5.407727895077369, 52.953593557159316], + [5.4068092592226895, 52.95625952433849], + [5.408345960077962, 52.956921387284304], + [5.408056991696132, 52.95955798649157], + [5.406112432085147, 52.95900701367682], + [5.404532997146238, 52.95977496948435], + [5.410842791928006, 52.960539745702974], + [5.43222854370547, 52.971031626712026], + [5.43197536841008, 52.971201970787504], + [5.421824294848485, 52.96633080374879], + [5.418317049951067, 52.968918683862704], + [5.417474359071347, 52.96886926144819], + [5.418075521044335, 52.966612415239574], + [5.419452777539728, 52.965192508965444], + [5.411333604227733, 52.96129460748137], + [5.412784543298036, 52.96352596580363], + [5.410296583744255, 52.97039472314128], + [5.4081358270633695, 52.97426945456883], + [5.405870966649364, 52.97637172993881], + [5.402894827788615, 52.98442399617335], + [5.39947217596956, 52.99000705963481], + [5.398623126431445, 52.996639578446775], + [5.39679672294423, 53.00281964391932], + [5.401147509371267, 53.00529948827559], + [5.405368983443057, 53.011747349105164], + [5.406887186521791, 53.01134956078572], + [5.407902070605326, 53.013317038262905], + [5.4057110048133525, 53.012592908074964], + [5.404700528899362, 53.01334837979955], + [5.4065512761359535, 53.01445553029862], + [5.408385611453908, 53.018467580099895], + [5.408094085126401, 53.02029724860016], + [5.397670171442837, 53.02343290491109], + [5.396771908883933, 53.025074683801584], + [5.398385486177966, 53.02789412416775], + [5.396108344004021, 53.02862988271769], + [5.396604979421429, 53.03014160173268], + [5.401185382233784, 53.03033239033679], + [5.402877094925343, 53.031638465274945], + [5.4009526534983605, 53.035292963201854], + [5.4010635802370945, 53.03769668380862], + [5.402224299164992, 53.037789997074604], + [5.403679079723731, 53.03688079257819], + [5.404994892577622, 53.03413847114317], + [5.406820803404556, 53.03309264589542], + [5.403126294454125, 53.039588130351625], + [5.404397307340428, 53.04212455704617], + [5.404585577106971, 53.0472413235546], + [5.403505218393761, 53.04852140127992], + [5.403211547914039, 53.04409154543554], + [5.401302819509237, 53.041212805530094], + [5.400066965390868, 53.03363552129068], + [5.398695292936304, 53.03247628085468], + [5.394287392297576, 53.0321274170619], + [5.39287035564793, 53.03359385300561], + [5.393612035794526, 53.034446583652766], + [5.389202318342116, 53.0406282133099], + [5.384927744954955, 53.04458968184036], + [5.3840674003890046, 53.04500779708351], + [5.376188251618961, 53.042819500611884], + [5.3742377380066175, 53.04430697467115], + [5.373626408046338, 53.04570597522307], + [5.379927584130721, 53.047101910830385], + [5.3801734035478574, 53.04786767013256], + [5.3780365218114365, 53.053382757496045], + [5.376065472698314, 53.05474958917659], + [5.392935092499839, 53.05483869293478], + [5.3959651571998934, 53.05168535995405], + [5.395031014094088, 53.0502201754057], + [5.400425012017171, 53.04989610723103], + [5.400888032323045, 53.050464920638795], + [5.396745403640244, 53.05064431442514], + [5.396606346779705, 53.05162008095588], + [5.397535789889628, 53.05187332234499], + [5.396639659658454, 53.052079272498496], + [5.3948403914220275, 53.05480992666632], + [5.397089073239862, 53.05480086375141], + [5.399160037012589, 53.05179282135706], + [5.400227790718227, 53.05175166036322], + [5.3982774548226855, 53.054762900043016], + [5.401206004620038, 53.05390806507681], + [5.402670401253642, 53.0516795770404], + [5.403753579959805, 53.05174447144084], + [5.402106279899762, 53.054444325338444], + [5.401042077501613, 53.05476019131978], + [5.397083652747042, 53.05928860637441], + [5.394835052471424, 53.06085555130216], + [5.392629334165204, 53.063166673866704], + [5.391186285157622, 53.06677070562256], + [5.3899316401660355, 53.069516365273714], + [5.3911851435367115, 53.07295730095805], + [5.389397727742659, 53.075407991652426], + [5.389427034276562, 53.07678699220744], + [5.382749353030017, 53.08493460951551], + [5.3794092049088835, 53.091650174650425], + [5.374599404868777, 53.091025150703956], + [5.3508098812638565, 53.07732622469291], + [5.344375404813281, 53.074900256314976], + [5.3438649304785715, 53.073722479673485], + [5.338068992877087, 53.072729576558174], + [5.338874745768799, 53.070424182665484], + [5.33905211936454, 53.06800756377388], + [5.339987549621514, 53.066361826451285], + [5.339770424850535, 53.065006166080366], + [5.339584390644257, 53.06495861776145], + [5.339506860859423, 53.06638152700727], + [5.338188673297139, 53.06916433579338], + [5.3375558414685145, 53.06911889894905], + [5.337543025637169, 53.068418821218934], + [5.33744340351377, 53.068413577113304], + [5.336733972747692, 53.070018920449066], + [5.337615591701994, 53.0701355839944], + [5.336242957105989, 53.073248770077775], + [5.335058573870372, 53.073706465404875], + [5.334533622156246, 53.071986817694984], + [5.335360411331334, 53.069881400097614], + [5.3364937037723905, 53.0699863799189], + [5.337198811681288, 53.06838516973418], + [5.33600484348838, 53.06824021007106], + [5.337390471779812, 53.064819039261415], + [5.340698758094495, 53.063581401264805], + [5.340417680057537, 53.06339871045931], + [5.337081373805568, 53.06486741787212], + [5.3335542587908185, 53.07238199996046], + [5.331176680459025, 53.07328439818245], + [5.327424753369494, 53.072678575282595], + [5.326640271394449, 53.07136331886103], + [5.326351881120754, 53.071838204115274], + [5.324328373366351, 53.071619831369475], + [5.322907290942016, 53.07188042173139], + [5.301679972478828, 53.06851793776438], + [5.297124965120156, 53.06724262089271], + [5.2218079150737555, 53.02809588212114], + [5.213385475780431, 53.023217673660966], + [5.212708898198216, 53.02126422330227], + [5.210963081725464, 53.020279906250686], + [5.207916753132398, 53.01892605290335], + [5.206564360443371, 53.019527626840144], + [5.20469927634389, 53.01864949982416], + [5.207226202266516, 53.017069446965394], + [5.202528749614075, 53.01751095076073], + [5.166762437217802, 52.99925907611944], + [5.165883070627195, 52.999867188925094], + [5.2019055462032755, 53.01876416148551], + [5.201614631987765, 53.02084414779344], + [5.203528784227135, 53.01961504967909], + [5.29323566246758, 53.06655245200482], + [5.301157156404512, 53.06928667299611], + [5.323648783095644, 53.072844156266804], + [5.324918900233021, 53.07436023495857], + [5.322956520673338, 53.07906745364447], + [5.326998784527858, 53.079639892616456], + [5.327111049990196, 53.0794049872472], + [5.32371516892689, 53.07881608201521], + [5.325831659561597, 53.073704762821], + [5.327360660534854, 53.073017039838426], + [5.330979638151045, 53.07362677428822], + [5.332331210377383, 53.074686308643365], + [5.331460739986223, 53.077537517176594], + [5.333391158866802, 53.07968234413792], + [5.332588842509317, 53.08013134080409], + [5.332918796699478, 53.080315406436526], + [5.334323423080003, 53.07968497773221], + [5.331966222976054, 53.0773723105435], + [5.332937856182333, 53.07513950316016], + [5.334875729342418, 53.07419143144352], + [5.335489611823612, 53.07546809497565], + [5.334924127397811, 53.07707508733646], + [5.33656758787956, 53.077262436636346], + [5.3383703487178815, 53.075117150270344], + [5.3437110885083845, 53.07607855988975], + [5.348536836533694, 53.07770486765989], + [5.377868874117901, 53.09493782405502], + [5.380652668524115, 53.09820291952934], + [5.38238604072917, 53.10460340431491], + [5.379189347937391, 53.107119656269326], + [5.379019305570148, 53.108061407777846], + [5.387415225941817, 53.111181391732494], + [5.396058141586606, 53.11448424952824], + [5.3990278230280735, 53.11610893020054], + [5.400927608358126, 53.11752240480019], + [5.404399552765763, 53.121525938084105], + [5.406173488453188, 53.12672302134084], + [5.409707068940052, 53.13741103968002], + [5.411598326353963, 53.15193900472411], + [5.4126914869173515, 53.15196734773889], + [5.413031871555441, 53.15288512181877], + [5.413478667661663, 53.15271763975793], + [5.414894553101379, 53.152195147599095], + [5.414195846573911, 53.15163632351433], + [5.4170898056428545, 53.15082214560769], + [5.421435887977767, 53.15381403446787] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.ab989600-1863-4dc2-bcce-bc5c0f129a0e", + "properties": { + "statcode": "GM1901", + "jrstatcode": "2024GM1901", + "statnaam": "Bodegraven-Reeuwijk", + "rubriek": "gemeente", + "id": 312 + }, + "bbox": [ + 105131.29100000113, 447391.1400000006, 119756.74300000072, + 459508.2430000007 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.792080179629943, 52.122287379380644], + [4.825314741101429, 52.1071510893818], + [4.82438949402095, 52.10540307553848], + [4.823055886140577, 52.105192804673514], + [4.82339470379061, 52.09280121655865], + [4.82563534598579, 52.08008147421786], + [4.825629565962691, 52.079792332299036], + [4.826492611217977, 52.079527175935866], + [4.826275687671352, 52.07464357557838], + [4.833045259568279, 52.07482692983462], + [4.8327892373782415, 52.072951043338264], + [4.8340353885458445, 52.07273585029404], + [4.829807903191145, 52.066823402842935], + [4.840376439874552, 52.06888006827187], + [4.855231509573798, 52.06881354621659], + [4.873200411814852, 52.06874539314767], + [4.868225038756269, 52.06344633272144], + [4.856305076402217, 52.059151787287306], + [4.848048500015039, 52.05816468475323], + [4.839093459508701, 52.05416740028996], + [4.829490283666744, 52.04981340023966], + [4.829360815621016, 52.049279513371125], + [4.817192930196524, 52.03693109671078], + [4.81182222805134, 52.033824511073846], + [4.806704370126562, 52.033167301576114], + [4.808670541965742, 52.02965390398749], + [4.809659851364212, 52.02750592559738], + [4.809933419604729, 52.02676451715632], + [4.798700208048421, 52.022271728063245], + [4.785077632657843, 52.016454135808175], + [4.77594424583129, 52.01406416670021], + [4.76620600418453, 52.013242000061375], + [4.75087977144438, 52.014088358610906], + [4.750991277170266, 52.01389879432047], + [4.7500488549533895, 52.01450353236569], + [4.749629411656634, 52.01528287666931], + [4.749148482423159, 52.01617645107008], + [4.746016653469895, 52.016976388899415], + [4.743697436295025, 52.02260807044821], + [4.736782650476541, 52.022748224521756], + [4.736296381869601, 52.02421783202507], + [4.734618601601134, 52.024278923940166], + [4.734400030784875, 52.025020151543636], + [4.730154874516395, 52.02488346524063], + [4.7299638161011766, 52.02562819102138], + [4.727607436521775, 52.02531459611624], + [4.727419844744065, 52.02598812244131], + [4.7263427228622215, 52.02592599449403], + [4.721211078106177, 52.02610764256393], + [4.721180473820176, 52.02647265820083], + [4.719852283747362, 52.02648424094458], + [4.719933920145282, 52.028468876766865], + [4.719903398001635, 52.030273069389324], + [4.71987122724114, 52.03520081863276], + [4.717581403914859, 52.03530673753341], + [4.716260763406758, 52.0382226858987], + [4.7123931940838935, 52.0389630714532], + [4.709229598060335, 52.03954954933609], + [4.706039289398623, 52.04011969881705], + [4.705105953390314, 52.040282708405016], + [4.6873997006487, 52.04308516196827], + [4.6870594219932, 52.043836078273195], + [4.677311484885834, 52.043971066937914], + [4.679543180247151, 52.051246287665734], + [4.6798040435724, 52.052072469722766], + [4.669001406681072, 52.05234154784609], + [4.6696999104636, 52.05550463632017], + [4.666964657026835, 52.05762737629251], + [4.664024090327717, 52.057705042295304], + [4.659967730229911, 52.064104308168574], + [4.665910582068442, 52.063951609957364], + [4.665660021833614, 52.06572393931328], + [4.677246984107649, 52.06552052785768], + [4.678997537782069, 52.0601970216564], + [4.679298395936971, 52.05921589649284], + [4.681973526512063, 52.0591040638142], + [4.683121213847279, 52.062607479841574], + [4.685346984539342, 52.06938437971505], + [4.68614899672989, 52.069214349063614], + [4.686259893698383, 52.069525798866636], + [4.69441120306891, 52.06776738890262], + [4.696834782485646, 52.074005757591614], + [4.704905029014683, 52.07683641064059], + [4.713027605898408, 52.07692938421953], + [4.7155058530066745, 52.08118841227142], + [4.713101995695535, 52.08433839889645], + [4.70875813396667, 52.0936438934485], + [4.7070054212876595, 52.09329654049173], + [4.70506793038399, 52.09463873202756], + [4.704731800808349, 52.09524086170518], + [4.724440586795226, 52.09958187185645], + [4.724517582610613, 52.099599443555135], + [4.733073144526902, 52.101475494459486], + [4.734809713555532, 52.101876382815554], + [4.734518022451264, 52.10261461524148], + [4.740222862857555, 52.104648091754186], + [4.738856699861746, 52.106507437341584], + [4.755078622823594, 52.10899275552598], + [4.757196331529858, 52.109674983812155], + [4.759328660729574, 52.11034461773924], + [4.760239458529191, 52.11184493379281], + [4.761049632976962, 52.112846131142014], + [4.762532571699652, 52.11371160993449], + [4.763702070808694, 52.11355171018554], + [4.766675642623869, 52.11314509056953], + [4.76921948635527, 52.113311519982325], + [4.770861086781436, 52.115137538373034], + [4.77492851223224, 52.11484271230079], + [4.775948743272424, 52.115779885069045], + [4.7765077386640495, 52.11600402622276], + [4.778259155111602, 52.115841175471964], + [4.77954247787297, 52.11765334550609], + [4.780450210837345, 52.117961143262974], + [4.783151257810841, 52.1173199998202], + [4.783969218791443, 52.11743723166929], + [4.784438581495494, 52.11803600786971], + [4.783019297022894, 52.11976282872234], + [4.783306021696112, 52.120373409553245], + [4.784069365539547, 52.120756051803916], + [4.785372458981246, 52.120661996599914], + [4.78750806012133, 52.11999328794009], + [4.791893080758605, 52.12046046646995], + [4.792080179629943, 52.122287379380644] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d3e4df28-2a9e-4efb-b76b-0d0e858c12eb", + "properties": { + "statcode": "GM1903", + "jrstatcode": "2024GM1903", + "statnaam": "Eijsden-Margraten", + "rubriek": "gemeente", + "id": 313 + }, + "bbox": [ + 175807.62000000104, 307246.811999999, 188608.2030000016, + 318450.5309999995 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.769032498930268, 50.85296068133468], + [5.770752917175558, 50.852395428127075], + [5.774613454263815, 50.852571885819245], + [5.775792329046936, 50.853394058826055], + [5.778780726889825, 50.85230446559186], + [5.779405760010133, 50.850210325702754], + [5.780418595172573, 50.849453652119614], + [5.7827026834080995, 50.84924894912536], + [5.791384864949942, 50.849871165080245], + [5.795032169024177, 50.8485701410558], + [5.7974195898183645, 50.848395955855565], + [5.800667167602215, 50.848350397472146], + [5.801637822721864, 50.84987502027797], + [5.805301245451477, 50.84342692739295], + [5.807829032384514, 50.841474576175386], + [5.810820953447342, 50.84048304870699], + [5.812869883050087, 50.84123121957864], + [5.818428517954257, 50.83938295870547], + [5.821239056212686, 50.83876111311943], + [5.8208923585450725, 50.83238229503139], + [5.823609775945856, 50.830357957630405], + [5.827305897883589, 50.829987863433225], + [5.831744732626334, 50.82954880871744], + [5.836284896940935, 50.82999815596714], + [5.837364460535429, 50.8313580168227], + [5.836458926855949, 50.832727851121156], + [5.836090818388062, 50.83596218773522], + [5.843255205365318, 50.833176517643906], + [5.84400656229112, 50.833717030842614], + [5.844934196075222, 50.833453874507995], + [5.849918938900553, 50.83195422698456], + [5.853509122133884, 50.83255159791916], + [5.853923257353101, 50.831736925676694], + [5.857421063545757, 50.832109052840785], + [5.859460865344469, 50.83368419196535], + [5.859709514019009, 50.83207809130062], + [5.862325607485538, 50.82923164674129], + [5.8631408558331755, 50.82679580114743], + [5.864135529510129, 50.82334432875208], + [5.858527790706681, 50.820858520209576], + [5.853176325824389, 50.82075125434736], + [5.851177785627269, 50.81917544590527], + [5.852822779357874, 50.817831425562964], + [5.848814580742524, 50.814993968464385], + [5.845482636237541, 50.815348919602386], + [5.844781126642489, 50.81448675829852], + [5.842251858915706, 50.81006752629728], + [5.839239496253256, 50.80758803107749], + [5.837534997249693, 50.80820986017308], + [5.8361725631365715, 50.80766631148185], + [5.8317180329283795, 50.80877041913461], + [5.8306649694049675, 50.80786933176226], + [5.81952386136682, 50.80526019841134], + [5.819738598878445, 50.80477305723844], + [5.821381862569355, 50.80215252862841], + [5.820816428841563, 50.79807033627527], + [5.822417959158705, 50.79544145406107], + [5.8276442128204025, 50.79018118447029], + [5.828127172327647, 50.79049902975939], + [5.832460074650401, 50.78869273739433], + [5.832896755644909, 50.78662433489826], + [5.835886073622444, 50.78668112863963], + [5.835585846818077, 50.78481203452154], + [5.833973715026258, 50.78436689778091], + [5.834851537974655, 50.78254604884341], + [5.835255817959993, 50.78173772909606], + [5.837191071098182, 50.78102304960988], + [5.838455582002525, 50.78164953819858], + [5.839537976069249, 50.7805806310099], + [5.841617018651953, 50.77745282676059], + [5.8442432037483965, 50.774551356876096], + [5.8425471339231, 50.7740768658205], + [5.84491044058017, 50.770764219713314], + [5.845037578186922, 50.76537085289239], + [5.843250596900293, 50.76488229130218], + [5.837707690897821, 50.763135897180724], + [5.8306774820129235, 50.75853919485726], + [5.822710970513351, 50.758824017865116], + [5.8144167743084685, 50.75616313918273], + [5.808789997358301, 50.755928202369425], + [5.807329123459491, 50.75617567027177], + [5.79322954753435, 50.770191226406595], + [5.788289687753766, 50.76801343744766], + [5.784502587897476, 50.767169222000994], + [5.77971483646604, 50.77430928049664], + [5.776944025615156, 50.78267454451627], + [5.7773670998895055, 50.78295548581631], + [5.773575122037202, 50.78324520036152], + [5.765810913440081, 50.78254591531321], + [5.759562941024116, 50.777956651617146], + [5.758826357860481, 50.77820059958681], + [5.755776443088637, 50.77501905374475], + [5.754557928849878, 50.77518938338431], + [5.750415180759524, 50.7721934332954], + [5.747088617759539, 50.77048492088715], + [5.744088202837706, 50.76775849088577], + [5.740554844532578, 50.76306685581978], + [5.741437344622796, 50.76228577325955], + [5.740459512844378, 50.76144905248452], + [5.7415715989003235, 50.76116203754715], + [5.739178953418878, 50.75707382870199], + [5.730387573518147, 50.75741603506733], + [5.730221642954519, 50.75827327898812], + [5.726403959430593, 50.759414904451404], + [5.724012250482545, 50.760905898022294], + [5.724619546912324, 50.76143975864338], + [5.722317617302125, 50.76278162669879], + [5.722782312115838, 50.76313308750538], + [5.722024025940898, 50.76349428465616], + [5.722842009336212, 50.763776413967214], + [5.722153581694186, 50.76411479296026], + [5.720266494470762, 50.764715105893025], + [5.715632849130325, 50.75987807559778], + [5.713561280938028, 50.760151934838255], + [5.713668416702196, 50.76068365238241], + [5.712292585194117, 50.760960570584245], + [5.712157023598673, 50.76047977250744], + [5.710627477484865, 50.7607868744403], + [5.710234959094447, 50.759811564617046], + [5.708897467158664, 50.75993496807179], + [5.708679163312208, 50.759011410315104], + [5.707406407622019, 50.7590129886979], + [5.707046456812875, 50.75828729586359], + [5.7029769458444575, 50.75880812423484], + [5.699408753541432, 50.75540930237494], + [5.695094017782669, 50.75476500801499], + [5.688474975443555, 50.755713661823215], + [5.687823024377058, 50.757681939712825], + [5.68206195697431, 50.75753637886672], + [5.6828323296783845, 50.761259544825606], + [5.6937545012078195, 50.77093976770342], + [5.69736787463825, 50.77531027070327], + [5.6987459749444795, 50.779620288687035], + [5.698708275083167, 50.78314957740475], + [5.69397820686103, 50.796636826712664], + [5.693817016842319, 50.810449709103814], + [5.696503084429069, 50.808546060048265], + [5.709456801814712, 50.808282032916004], + [5.708528497978646, 50.80491067445357], + [5.709969679305999, 50.804742717877716], + [5.7098234932256995, 50.80419138354685], + [5.716944057227049, 50.80380527626374], + [5.717013662157125, 50.8060840057019], + [5.717311909927233, 50.81450138475656], + [5.718984586949469, 50.814109578740265], + [5.723197532462466, 50.81472857914247], + [5.728183819466488, 50.817140161619], + [5.7287324786002864, 50.817924704033295], + [5.732596394577261, 50.819048056469555], + [5.743483766906589, 50.821323848131655], + [5.743698282467661, 50.82299034624663], + [5.7448731906842365, 50.82292112340176], + [5.745364553638175, 50.82401203283036], + [5.744914891820776, 50.82776958341795], + [5.746266182408647, 50.827648114620104], + [5.746493801491368, 50.830294443731816], + [5.745565622230634, 50.83478558703662], + [5.7455651528343346, 50.835619317124554], + [5.746706255164845, 50.83587172553182], + [5.745564749309045, 50.83633932018786], + [5.74631141356107, 50.837324939056074], + [5.740453902439889, 50.83839895739807], + [5.740639149391172, 50.83915727391874], + [5.741260917552326, 50.84010271365896], + [5.7468081235581945, 50.840269559962636], + [5.7468559284069975, 50.84081896218115], + [5.748013669176949, 50.840908551501485], + [5.754854951714611, 50.84184052493359], + [5.757315374454825, 50.845616306646185], + [5.7573403742239275, 50.85529059102325], + [5.7641822667978735, 50.85454572217075], + [5.769032498930268, 50.85296068133468] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.b777c399-e4b9-43d6-b004-b1da47989c7c", + "properties": { + "statcode": "GM1904", + "jrstatcode": "2024GM1904", + "statnaam": "Stichtse Vecht", + "rubriek": "gemeente", + "id": 314 + }, + "bbox": [ + 122323.26000000164, 458785.08100000024, 136746.436999999, + 477975.98800000176 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.0634258221025705, 52.28705511150957], + [5.064791874263108, 52.28508054372536], + [5.065471486614254, 52.28519815713902], + [5.065863351779981, 52.28113987727388], + [5.065858514844543, 52.28053732744548], + [5.064412425143185, 52.280737600508765], + [5.062872994348557, 52.282199646865514], + [5.062858837717778, 52.28477829278121], + [5.0603980738688845, 52.2851431091239], + [5.050753455708156, 52.28181780638939], + [5.049666116638086, 52.28020587498602], + [5.049679801922665, 52.27798885860703], + [5.048237536848301, 52.276960437629604], + [5.042521969057626, 52.277930300020074], + [5.033069984466158, 52.27528988416129], + [5.030933101842481, 52.2725028694046], + [5.029813730182406, 52.272043503310094], + [5.028295396218105, 52.27203213525468], + [5.023710261362141, 52.273208170300265], + [5.022886886924665, 52.2724834371064], + [5.023310111439562, 52.271471993071806], + [5.026339209767423, 52.2686613864141], + [5.027626835030745, 52.26777764351082], + [5.027854682123514, 52.266246433437786], + [5.026551005935262, 52.26419861339186], + [5.03145378168343, 52.26130569899902], + [5.032572530684435, 52.259974915452396], + [5.032505038272917, 52.25874379200644], + [5.030709873684419, 52.256890262844024], + [5.032122534785752, 52.25461849310925], + [5.035255369373886, 52.2526448666876], + [5.0371963980512415, 52.253441191323255], + [5.040253175588553, 52.25657638079639], + [5.04187884641245, 52.25655996586453], + [5.0434278512601525, 52.25544854127034], + [5.044191584607674, 52.25160426353716], + [5.045258112641387, 52.249868472821554], + [5.0464429884441815, 52.24872509055249], + [5.045996318642128, 52.24322054981528], + [5.056901999339825, 52.236522344186746], + [5.05771279285552, 52.2353425884963], + [5.0574084113160085, 52.23524752679058], + [5.05676173400347, 52.23559283786208], + [5.0557895493840075, 52.23521359561279], + [5.056224256550338, 52.234978666800934], + [5.042313433398877, 52.2305316776763], + [5.041585570519996, 52.230888222961525], + [5.041428705863142, 52.230077863489896], + [5.040545488647116, 52.22984196270607], + [5.040696513245002, 52.22956745743136], + [5.0412563158386305, 52.22950610265398], + [5.041144619292125, 52.22932344560152], + [5.0424844549077035, 52.228779883387496], + [5.041685795058564, 52.22823451256517], + [5.038730558437262, 52.22517941526975], + [5.037101783319567, 52.22534164886803], + [5.036964891735808, 52.22478895076328], + [5.039873206791377, 52.22438732481002], + [5.041928838430628, 52.22408867873139], + [5.0419839406689375, 52.224326650323896], + [5.042795657596923, 52.224039510469424], + [5.042632502235691, 52.22386555048864], + [5.041922574671635, 52.224062218053724], + [5.041907180101372, 52.223993057985815], + [5.039362948744495, 52.22440708986169], + [5.039211791959226, 52.22394451884435], + [5.0366656037606194, 52.22436015414485], + [5.035848998815417, 52.217529137417934], + [5.037118902671438, 52.21659647597782], + [5.036909314691437, 52.21515572262357], + [5.035683425542503, 52.21512465889784], + [5.035329562331759, 52.214462266119924], + [5.037242932273548, 52.21418861501893], + [5.036742066341113, 52.21366335971952], + [5.03378795620158, 52.21371399528586], + [5.033729681766694, 52.213123036579134], + [5.034353826644375, 52.21311746065018], + [5.033400586871716, 52.209836231866745], + [5.036443697987681, 52.209564066150186], + [5.036444743340167, 52.20956397308381], + [5.035316237293976, 52.205232595331644], + [5.037421020948798, 52.20496451273438], + [5.036649899088372, 52.20213798678062], + [5.025599861709452, 52.203981824255756], + [5.025455058876333, 52.2032793003813], + [5.025034699847247, 52.20327761211267], + [5.024996261625613, 52.20284389398545], + [5.023315078621092, 52.20305084117694], + [5.023432856489143, 52.20382839038356], + [5.022621035919692, 52.203941462902755], + [5.022473496648429, 52.20267384205183], + [5.023101083559321, 52.202753555618834], + [5.023025933654335, 52.20203897830424], + [5.022686429252025, 52.202235970130516], + [5.021603895174345, 52.20254198948837], + [5.0215867424788145, 52.202475227948945], + [5.022031667328018, 52.20238321089819], + [5.02245201851737, 52.20222550257094], + [5.022935402401035, 52.20170948278442], + [5.021384346759376, 52.20203661020717], + [5.021292959948611, 52.20188574324995], + [5.022769094872558, 52.201534187645215], + [5.02606126206141, 52.20137396151108], + [5.027942336311307, 52.19995886379602], + [5.03097211656894, 52.19876407653524], + [5.037124708899609, 52.19805270908921], + [5.0372042124292, 52.196847585433936], + [5.038134078369397, 52.19516317259551], + [5.036646304663575, 52.19373330517519], + [5.035584478152012, 52.19097460661613], + [5.034977237777944, 52.18680295477805], + [5.033764727818623, 52.18616371243843], + [5.032503227235234, 52.184113407909216], + [5.041591768114565, 52.18375152125596], + [5.046463540806306, 52.16592911111719], + [5.078655973936567, 52.17298568960246], + [5.115311140794645, 52.179816286945425], + [5.118845193870585, 52.17240604327531], + [5.094889714575814, 52.15534902674039], + [5.095508890383182, 52.15507839814781], + [5.120528950619055, 52.145541139524795], + [5.110778760130727, 52.136641211110906], + [5.107092849351739, 52.13321116002113], + [5.105576320914654, 52.13188547766312], + [5.103397423082698, 52.12984837173892], + [5.10227409772102, 52.130324923067775], + [5.101084362788781, 52.12984462747842], + [5.100194593078097, 52.1302131877471], + [5.087164523404801, 52.13567145637883], + [5.085764487041218, 52.134550360682795], + [5.085532825800853, 52.13436600866539], + [5.0761584627154726, 52.12704912144519], + [5.072389585520747, 52.125359216233306], + [5.070198663943747, 52.12718148749431], + [5.069733455135529, 52.12641462707149], + [5.066989571266426, 52.12598498009912], + [5.065727185949981, 52.125255438474895], + [5.061204541468027, 52.122561779014724], + [5.047556017859414, 52.12997241235426], + [5.044978461146636, 52.128779387237664], + [5.045419445499814, 52.128462417303865], + [5.040881218674538, 52.12549976191757], + [5.03354503368749, 52.11675881346186], + [5.032510821752011, 52.1168365949269], + [5.012112283164495, 52.12969158653759], + [5.002700039171996, 52.14130126034632], + [5.003101807110674, 52.14205047962936], + [4.9945031970406975, 52.138611223212514], + [4.986377675777416, 52.135243208140814], + [4.985237992231186, 52.13243713318216], + [4.973938346498304, 52.129673239358816], + [4.970095981700405, 52.122441670860695], + [4.960996820521761, 52.133361842920756], + [4.943916060285596, 52.127536784335], + [4.934375859109258, 52.13885822596297], + [4.9236017117576205, 52.14731887959952], + [4.915039412365846, 52.14458130328064], + [4.9117775751006, 52.14425447519907], + [4.91118728125278, 52.16009498278449], + [4.909637961372828, 52.16187089241254], + [4.928606318787841, 52.167200112508624], + [4.932450602888894, 52.17239874533121], + [4.9316183820551815, 52.17375658075245], + [4.933738821007749, 52.174140506375096], + [4.935006836360384, 52.1758548039599], + [4.933995272528573, 52.176945035751814], + [4.945712623310659, 52.185812990616434], + [4.948571571559016, 52.18578468420288], + [4.949469593145104, 52.19240861472674], + [4.948276322864777, 52.19253238047073], + [4.948382718164692, 52.19359818449637], + [4.949556134779997, 52.193492922198686], + [4.9508812697985745, 52.19863849990366], + [4.960808551723437, 52.197819783237044], + [4.96138767107734, 52.199475119744314], + [4.966595723924032, 52.20005231479744], + [4.968303572951637, 52.20784217077775], + [4.973746600813149, 52.22059841748987], + [4.982874234040173, 52.222415596333356], + [4.980413772468395, 52.22684743805667], + [4.994729786139232, 52.230266340393584], + [4.993587289252788, 52.23209923401038], + [4.994727576583872, 52.23247422744987], + [4.997414947495272, 52.23081724392032], + [4.999829893083959, 52.23107987638587], + [5.003190629131312, 52.23136366932479], + [5.007050154429698, 52.231672998839485], + [5.007462662255508, 52.231704486914865], + [5.0074630381922285, 52.23170451688432], + [5.014919995594517, 52.25912783944815], + [5.021867208979982, 52.28265326889607], + [5.022826485026242, 52.28215043118948], + [5.024381632669321, 52.281357446748565], + [5.030528417835409, 52.28848718128803], + [5.033212457394684, 52.28625810435435], + [5.039521331519451, 52.28326330448453], + [5.0407422484464925, 52.28387502873157], + [5.04277865748143, 52.28248813933357], + [5.047491815113677, 52.285028644562935], + [5.050404330664364, 52.28787198241012], + [5.052738048042331, 52.28650823849858], + [5.059540299286015, 52.28932013313658], + [5.0634258221025705, 52.28705511150957] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.cbcdc450-22e8-4837-ac07-d231559855b6", + "properties": { + "statcode": "GM1911", + "jrstatcode": "2024GM1911", + "statnaam": "Hollands Kroon", + "rubriek": "gemeente", + "id": 315 + }, + "bbox": [ + 112669.5549999997, 524492.6999999993, 140200.27299999818, + 557012.2503999993 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.054712489739772, 52.940347137765926], + [5.0536638150607, 52.9368540535926], + [5.0504943045029345, 52.93796206161243], + [5.049161039166044, 52.937785732469685], + [5.048333924824319, 52.93737926339497], + [5.0483087691993225, 52.937062066950794], + [5.047513829235664, 52.93674290519132], + [5.0471827674280965, 52.936813528674584], + [5.046308770314981, 52.93642383696478], + [5.046315703963207, 52.93619890851576], + [5.045455502978367, 52.935792102869165], + [5.045141230163426, 52.93587274450735], + [5.044116074799484, 52.93530627820906], + [5.044129515355632, 52.934482270653994], + [5.049031127413792, 52.93023458581338], + [5.0491701007531455, 52.92970545954548], + [5.048194338608031, 52.930334473887655], + [5.046643968415547, 52.92972439800985], + [5.04736074330503, 52.929132508908744], + [5.0471208147065045, 52.92880558463737], + [5.0420577542256595, 52.932401978235795], + [5.03886152628993, 52.93126535798251], + [5.038422667017636, 52.93018893774941], + [5.039599490170768, 52.929066072927654], + [5.038328344164708, 52.92840772091451], + [5.039118292701476, 52.925788166368086], + [5.038004168380751, 52.92268040142896], + [5.03744081603186, 52.92266005651235], + [5.037852665086342, 52.921520975002394], + [5.039097208808062, 52.921487257095755], + [5.046371333041583, 52.9235970134285], + [5.045622420350091, 52.92424329557369], + [5.041886279200892, 52.92309968752926], + [5.041592246808738, 52.92343678184549], + [5.047349974833242, 52.925178501193955], + [5.0485907854968355, 52.92406856868779], + [5.073900758396152, 52.893819713301276], + [5.076823666394401, 52.89291154181543], + [5.0794837174831144, 52.89003547755066], + [5.079321443401273, 52.88736815130033], + [5.102072162954089, 52.86017970346877], + [5.104484608624132, 52.85986104528723], + [5.104779286658324, 52.85960878007616], + [5.103148833085604, 52.85908230686661], + [5.105304882912652, 52.85690836418922], + [5.106903012604233, 52.85727623725228], + [5.109333428561571, 52.856697292050924], + [5.110940777673642, 52.854897827123274], + [5.111329916020055, 52.8542868861878], + [5.10784542870203, 52.85326444029049], + [5.11393620575401, 52.84582959498659], + [5.104148290917491, 52.77445227409698], + [5.099631764546621, 52.773309534386556], + [5.098672958082251, 52.77235475864568], + [5.093665887133967, 52.76969187826489], + [5.0921078463083695, 52.76928520752794], + [5.083582439967433, 52.76961480178978], + [5.0762114404602405, 52.769245384739484], + [5.069722976698589, 52.768103167655134], + [5.067460789991217, 52.766670852460464], + [5.064292574939627, 52.762587647611724], + [5.061724660207071, 52.76066335208595], + [5.056920522044771, 52.7574980600876], + [5.044998692624851, 52.753133025730286], + [5.0399267110047425, 52.75238979676641], + [5.025926308273927, 52.751571093536846], + [4.996860451522888, 52.752065330722296], + [4.9874405882144535, 52.75241704347871], + [4.958434003332616, 52.75328945790395], + [4.955821565041147, 52.75327859871035], + [4.954973254512891, 52.754066253023936], + [4.954745675312514, 52.75508710071322], + [4.954342167344739, 52.755296332820954], + [4.946419220218829, 52.75395230597955], + [4.944386075197281, 52.753659001662065], + [4.9446138734631075, 52.75278346465489], + [4.94032778406042, 52.75042134640063], + [4.937815727177377, 52.74982925128208], + [4.932792670521105, 52.74892753809429], + [4.931424480026252, 52.74199917905692], + [4.9273631610938535, 52.737348444893726], + [4.910940961403497, 52.718940074797615], + [4.905638413800401, 52.71349880584823], + [4.905375309042041, 52.71308515614106], + [4.903920374041241, 52.7116340623044], + [4.898669408864142, 52.706831941174705], + [4.877703352642587, 52.71198823808915], + [4.872013049175457, 52.71628958096537], + [4.861210831938322, 52.720726385699614], + [4.858092649936456, 52.72334534244753], + [4.855471020931334, 52.723072871163836], + [4.852152042862176, 52.72244772173396], + [4.847685312869555, 52.72025936718062], + [4.84796625730337, 52.72100751170232], + [4.848390448029376, 52.72213706658595], + [4.8494223886101695, 52.72488472041282], + [4.8497260701270575, 52.72569324006082], + [4.844877022499894, 52.731018350656676], + [4.844189672378013, 52.732334044430765], + [4.8431764265289505, 52.732885550765054], + [4.840065293137188, 52.734433789117205], + [4.838695613102805, 52.73697200313951], + [4.835286241813508, 52.74208053366808], + [4.830379655564386, 52.7472027150322], + [4.815631101898933, 52.760045412397936], + [4.812518881610816, 52.762765056454505], + [4.8085277761038645, 52.76674475073748], + [4.806960684078627, 52.77021427530432], + [4.813336471392449, 52.77133366539534], + [4.815492754900031, 52.77024129806155], + [4.82075396624435, 52.76960717879893], + [4.819849392676134, 52.77412947998463], + [4.827128853490232, 52.775038938883], + [4.828468519649943, 52.77531281612568], + [4.828996714872311, 52.77532621942908], + [4.827409165300735, 52.783565276794775], + [4.829535482647889, 52.78361031126161], + [4.831256228937443, 52.7838199437192], + [4.832207638350786, 52.79939406624077], + [4.834306477232244, 52.80777935563952], + [4.8345733585328245, 52.807778480950226], + [4.81288216364066, 52.832319659517886], + [4.812822924251337, 52.83262998799247], + [4.810696152822282, 52.83518700831464], + [4.809873127560024, 52.8362611911166], + [4.799457365469767, 52.84377115495401], + [4.794422890840414, 52.847373648221144], + [4.782562568771844, 52.85143550627252], + [4.759698482633986, 52.84840190851207], + [4.759698302131175, 52.8484019704702], + [4.758855260337156, 52.84868928138177], + [4.7702180066692375, 52.87761434595464], + [4.770938919537558, 52.87862622477848], + [4.772085933963836, 52.88024892174772], + [4.782296004245452, 52.89468578892001], + [4.787654919720738, 52.90234642089488], + [4.794909200618785, 52.912578272584625], + [4.797300166488924, 52.9121140324385], + [4.804531785425825, 52.91048704583804], + [4.806725049716558, 52.91271434931157], + [4.808700569502625, 52.91124669109041], + [4.84199870320765, 52.899104763091756], + [4.8462088219278305, 52.89953641209385], + [4.849483083864275, 52.89914783736866], + [4.850485569999149, 52.89836756619871], + [4.851002862820602, 52.89675456871176], + [4.861357941070591, 52.89241056683102], + [4.873673581915541, 52.888508781154684], + [4.874937191215308, 52.88829044374193], + [4.88289470543486, 52.88891749500003], + [4.908658923085216, 52.89424521862147], + [4.910473216833052, 52.89551299394437], + [4.911800090848744, 52.89569113932655], + [4.920871279561547, 52.899865721105556], + [4.935127773996563, 52.903482732957144], + [4.936729323253569, 52.904583859031185], + [4.935794202632149, 52.90620907187413], + [4.9368866475953865, 52.90775228971816], + [4.9382048205236675, 52.90760987152152], + [4.942764921539764, 52.91040171454227], + [4.945637955056129, 52.910061995031135], + [4.954592516324215, 52.91669120233887], + [4.956867444907043, 52.920100046222245], + [4.958414391445745, 52.925138775786145], + [4.96848803643347, 52.930334934834804], + [4.970208979041964, 52.93068776754587], + [4.972342348004817, 52.93098123358129], + [4.986770638299266, 52.93181845572474], + [4.990785836838447, 52.93293812173653], + [4.996881746784887, 52.93473802516517], + [5.002959794777373, 52.935667749864535], + [5.005169032295018, 52.93571439096814], + [5.012046586229903, 52.93396076122794], + [5.017321544313074, 52.934436662498356], + [5.021003667148172, 52.93488938498288], + [5.025656679476661, 52.937366405661436], + [5.027225650957847, 52.94128644401632], + [5.024216937060539, 52.942574341182876], + [5.024555258353411, 52.94274572485171], + [5.028827989923518, 52.94101407695211], + [5.030636776556697, 52.94284903168892], + [5.035048962853913, 52.941200299243505], + [5.037249037455737, 52.93982185802927], + [5.036986282093971, 52.939657300720725], + [5.031794455610255, 52.94218637054716], + [5.030090419334632, 52.941937764820985], + [5.029140805408473, 52.94091877032042], + [5.034026444458295, 52.938313271125665], + [5.033619429187578, 52.93813030982015], + [5.033001639397317, 52.93847547469839], + [5.031384349613118, 52.93712554870221], + [5.032656760100086, 52.93650982703299], + [5.033233245813828, 52.93688396712872], + [5.038042155611353, 52.93341765575964], + [5.039479430270776, 52.934077307240265], + [5.034949097059088, 52.93745489021875], + [5.0353615119305815, 52.93760397793989], + [5.039306976534059, 52.93472674390365], + [5.041133773840079, 52.93434170211736], + [5.041995062349751, 52.93475463511276], + [5.041967144852321, 52.93566363348167], + [5.03950983334429, 52.93794211761556], + [5.039775873812607, 52.93801102878309], + [5.0429002681162975, 52.935750006688146], + [5.04387204842839, 52.935723750255264], + [5.044789594212067, 52.936150961821745], + [5.044850761403035, 52.936472526348055], + [5.045234832791668, 52.93665411757802], + [5.04594148050561, 52.9366895847916], + [5.046830258203155, 52.93710104584402], + [5.0469422847111325, 52.937419913415354], + [5.0475825382930335, 52.93765819600199], + [5.048000876341014, 52.93764602307711], + [5.048899170748761, 52.938064202992166], + [5.049539445104753, 52.938896764360585], + [5.048268662365045, 52.94026194152482], + [5.049112070147054, 52.94078316152031], + [5.054151633377695, 52.941141872484046], + [5.165883070627195, 52.999867188925094], + [5.166762437217802, 52.99925907611944], + [5.054712489739772, 52.940347137765926] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.acdf0ff4-7d65-470a-8bdc-4e2a6fdd1911", + "properties": { + "statcode": "GM1916", + "jrstatcode": "2024GM1916", + "statnaam": "Leidschendam-Voorburg", + "rubriek": "gemeente", + "id": 316 + }, + "bbox": [ + 82880.3834999986, 452495.27600000054, 93715.8209999986, + 460485.32499999925 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.466845064105732, 52.12897989406244], + [4.467481014273789, 52.12832320536224], + [4.468149282386823, 52.128550817182784], + [4.472941439489814, 52.12370318578917], + [4.472321143813751, 52.1234586071781], + [4.472289028140632, 52.119634651404624], + [4.472975415649525, 52.11895161082025], + [4.4708257864458965, 52.11770810347141], + [4.4846468905251395, 52.10358811211239], + [4.490413658031666, 52.09785838597212], + [4.492218925884501, 52.09000976337928], + [4.493018073759078, 52.08775191367806], + [4.474274726963158, 52.08526066565295], + [4.4756598601893955, 52.08129630162135], + [4.456752071586638, 52.078814831742825], + [4.455166087765837, 52.07818176616018], + [4.421404199477198, 52.063303456549214], + [4.421685233699247, 52.062885893035805], + [4.420832515068699, 52.06258004736731], + [4.420690706501567, 52.06345523818234], + [4.417243577656287, 52.066221646908076], + [4.411881370037994, 52.072134493420734], + [4.405928610013232, 52.07659312742779], + [4.4039238392560955, 52.077845017312995], + [4.397093570530318, 52.074763553172886], + [4.394621524836263, 52.075906918730816], + [4.391921483327074, 52.07472496055775], + [4.388650953369096, 52.072973786361175], + [4.38458270772078, 52.07623423923234], + [4.384360788929854, 52.076161081478865], + [4.3799958419888885, 52.07474501568707], + [4.37142877853194, 52.069582298347264], + [4.364012408565264, 52.065321365366465], + [4.363822627360876, 52.06517390066944], + [4.3560219958092565, 52.061572049067536], + [4.360826110630753, 52.05846833767279], + [4.360451845754613, 52.058265059455984], + [4.360122985426429, 52.058501174836806], + [4.359576977657874, 52.058198796912016], + [4.359968624433668, 52.057927896048845], + [4.35943733144171, 52.05763086816036], + [4.359822718293022, 52.0573663310923], + [4.359474975022876, 52.05718026062867], + [4.359228884542722, 52.0573483770941], + [4.357349786936239, 52.05625471181958], + [4.3572499643906735, 52.05633559033223], + [4.357574943464856, 52.0565536129898], + [4.353977375777407, 52.05898691151904], + [4.35331627227032, 52.05866834876733], + [4.352281471369034, 52.059394096984754], + [4.348003600341269, 52.056498113731195], + [4.344478914539758, 52.05961752977566], + [4.344244066589064, 52.059773579152356], + [4.344127353175053, 52.05972057025414], + [4.342195740459893, 52.061134555404884], + [4.3555187020389, 52.06803980246179], + [4.354932235531278, 52.06825037026808], + [4.335213198569284, 52.0750004045887], + [4.3388518240871745, 52.07661393605397], + [4.338958434078054, 52.07666120153589], + [4.345394886100799, 52.079111544701945], + [4.345103216239177, 52.079480793193724], + [4.352489588799785, 52.08269092567767], + [4.353202159482526, 52.083006205685955], + [4.356777046283107, 52.08460439232175], + [4.358897303144946, 52.0855592046517], + [4.367778520643479, 52.089582949035815], + [4.368029968544982, 52.08969721133029], + [4.373051240457284, 52.09205892330535], + [4.373436349719362, 52.092346885909464], + [4.371466750069151, 52.09383465214673], + [4.37270929656381, 52.094772594424555], + [4.389310187183216, 52.103921646438955], + [4.401159065184216, 52.111869994585554], + [4.412048093575214, 52.10797121971078], + [4.411378115207063, 52.10728658061039], + [4.413074349766266, 52.106633109957585], + [4.4141579123918495, 52.10750833178454], + [4.42121528307982, 52.10498326642114], + [4.4208166669652575, 52.10462243616306], + [4.423703975062802, 52.10358982895132], + [4.427902584065898, 52.10147024464356], + [4.433578780264875, 52.10415799112086], + [4.435744518497304, 52.10740153257449], + [4.438993986455462, 52.10992924993402], + [4.443142953976787, 52.111579726376085], + [4.446442046412882, 52.11337707131647], + [4.4510749887336845, 52.11751212203712], + [4.455982127209449, 52.12117728629177], + [4.463211874944457, 52.12632585054177], + [4.4644922885786675, 52.12731117030074], + [4.46519192514208, 52.12661335740473], + [4.466420253255077, 52.12733339517926], + [4.465981592507328, 52.12789030159681], + [4.466845064105732, 52.12897989406244] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f58c4e7b-cf49-4680-9fb7-13cda47857a4", + "properties": { + "statcode": "GM1924", + "jrstatcode": "2024GM1924", + "statnaam": "Goeree-Overflakkee", + "rubriek": "gemeente", + "id": 317 + }, + "bbox": [ + 48086.08949999884, 407881.9653999992, 87004.64909999818, 429939.182 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.346149805182535, 51.70448640548969], + [4.337140579152436, 51.70388319312555], + [4.336055278990941, 51.704702867468214], + [4.339987014379153, 51.70563983910541], + [4.346149805182535, 51.70448640548969] + ] + ], + [ + [ + [4.367891961021444, 51.70673775468968], + [4.367097150803763, 51.70470679797268], + [4.362563195738223, 51.70692683479312], + [4.3664013527872765, 51.70976336228622], + [4.367891961021444, 51.70673775468968] + ] + ], + [ + [ + [3.884950896156165, 51.7599210501055], + [3.8850709943098556, 51.75837281369777], + [3.8818288917600356, 51.7574619581787], + [3.8821723966689854, 51.756995068980345], + [3.8795233353403606, 51.75678613774889], + [3.87740609766428, 51.758672455062275], + [3.878019426430696, 51.759251107786014], + [3.880348844374508, 51.758865373684095], + [3.8816487903247543, 51.759917023546656], + [3.8837764523231466, 51.760313178646875], + [3.884950896156165, 51.7599210501055] + ] + ], + [ + [ + [3.956211237705472, 51.778042776514944], + [3.963278010393411, 51.77588108042745], + [3.9656541995774774, 51.77438822359872], + [3.9541795375209983, 51.77625352273615], + [3.9418178233473533, 51.776571922745696], + [3.9263274780960074, 51.77508692059937], + [3.9131208346093627, 51.770825401946176], + [3.908948009634945, 51.77020940001217], + [3.9045842066110494, 51.77112049309799], + [3.9217065421611683, 51.78127643442416], + [3.926449797460351, 51.78663274910643], + [3.9287186099152427, 51.7880644040945], + [3.934298853189273, 51.78992930325935], + [3.9394393470518687, 51.78538883106423], + [3.956211237705472, 51.778042776514944] + ] + ], + [ + [ + [4.148512632082476, 51.798776264014364], + [4.147353275798377, 51.79863508545678], + [4.142726669549448, 51.79911540747792], + [4.140620594872772, 51.80054898459863], + [4.144873524106806, 51.801737009487965], + [4.148900856762836, 51.801313690944696], + [4.14746984871952, 51.79955145438998], + [4.148512632082476, 51.798776264014364] + ] + ], + [ + [ + [3.968042508214006, 51.79813880775309], + [3.9672771390762853, 51.79748619199879], + [3.9593978995948897, 51.79883563792812], + [3.9570109948763297, 51.79983905932859], + [3.957279332663621, 51.80095832535329], + [3.961768254242709, 51.802180291739646], + [3.965569456518251, 51.80201238071651], + [3.9636301760120385, 51.80131810977178], + [3.9632852872964826, 51.80057756221699], + [3.9652693065939326, 51.79862809119169], + [3.968042508214006, 51.79813880775309] + ] + ], + [ + [ + [4.014922255684437, 51.840479892667474], + [4.013732949396088, 51.836530583308516], + [4.0198682954522935, 51.832255281915224], + [4.0266586712344985, 51.82925993199693], + [4.028432972916826, 51.828992647122746], + [4.031811533395456, 51.83101409031658], + [4.032343512351993, 51.83053806561693], + [4.028518134644025, 51.82733571082676], + [4.036014137036098, 51.823635958970776], + [4.038195063251015, 51.82523168335704], + [4.033075415859423, 51.82791712975902], + [4.03326246449815, 51.82962571114333], + [4.039501391262772, 51.8280770170563], + [4.041657461157081, 51.82833418587019], + [4.0437337307291745, 51.82967207475399], + [4.044723528656431, 51.82917896460927], + [4.0485964423018235, 51.83205525026513], + [4.048791239769612, 51.831880097382424], + [4.044977634667181, 51.829054023593095], + [4.045652960394921, 51.828660565664045], + [4.0446076399995015, 51.82535989361472], + [4.044914277776297, 51.823220556903074], + [4.046716569131325, 51.821670609677895], + [4.041227352284917, 51.8231992011707], + [4.038689995488166, 51.82121325928922], + [4.04383218692294, 51.81858493709103], + [4.042598298181745, 51.81769567231513], + [4.0436886071493765, 51.81707680576288], + [4.049025450383246, 51.821016601778545], + [4.049765126920675, 51.82016336652788], + [4.053257078394455, 51.81970580430387], + [4.053691097941143, 51.81964820709277], + [4.0542289876482664, 51.82099177135356], + [4.054491025379584, 51.820981539543375], + [4.056027852179537, 51.81873833064723], + [4.06335979960011, 51.813440664031226], + [4.08373875987705, 51.80708444281707], + [4.093435898577658, 51.804475624597615], + [4.115992634312063, 51.7956316526503], + [4.121040322022767, 51.79542056182098], + [4.122448077596231, 51.794690844326766], + [4.121567008449433, 51.793863660307146], + [4.125313556695672, 51.79284333503123], + [4.129004811300515, 51.791830170951044], + [4.126335438271543, 51.789439736614085], + [4.13136390823378, 51.787856782776664], + [4.133657118299396, 51.7905852085323], + [4.137876102192005, 51.78941401599626], + [4.136013330405833, 51.78670148250706], + [4.140247034245422, 51.78542807130671], + [4.143031233881514, 51.78793597965122], + [4.148955647936864, 51.785852089599], + [4.164667775980704, 51.77942405266604], + [4.1812006915874145, 51.77557824751379], + [4.187552063341047, 51.77551265978153], + [4.191718761231766, 51.7738408245176], + [4.19011206260261, 51.77298602520568], + [4.19081658714433, 51.7726134939198], + [4.192163706648068, 51.773219394061655], + [4.193383064205842, 51.77446603776648], + [4.193504108338713, 51.77413491042743], + [4.193146826151514, 51.773039598326086], + [4.19397993673343, 51.771619388157504], + [4.216972804342559, 51.75705443659975], + [4.217747371884774, 51.75722409606893], + [4.21906593367859, 51.756624591486094], + [4.228144666816539, 51.75146946584087], + [4.242602920525987, 51.745218027966395], + [4.244656177448591, 51.74398220929496], + [4.243168908329224, 51.74278656915878], + [4.2451785468382255, 51.74174640227581], + [4.246002152074211, 51.74205389985877], + [4.246304983107398, 51.74193042106735], + [4.245144619923691, 51.74103281279112], + [4.245213148350595, 51.740954149820176], + [4.244904876699209, 51.740741158660626], + [4.244803147935631, 51.740778421646624], + [4.2441776550583175, 51.74034832902849], + [4.243464315902188, 51.740489746055395], + [4.243235031953207, 51.74042090277453], + [4.243412033426132, 51.740156751741246], + [4.244014111120618, 51.74014813794516], + [4.24416246559642, 51.739625445346235], + [4.244395459660692, 51.73968540571132], + [4.244373138344716, 51.740101160360496], + [4.245008911425355, 51.7405347509624], + [4.245012163639806, 51.74068512634177], + [4.245300702601451, 51.74090023699577], + [4.245452275227488, 51.74089891529105], + [4.246574919487485, 51.74171543933734], + [4.2467526109385885, 51.7410162932506], + [4.260276508235014, 51.730168737712404], + [4.262834129934871, 51.727539757193135], + [4.271732314810657, 51.72313682638606], + [4.2797158464143905, 51.72080974674618], + [4.280123171447954, 51.721249791749536], + [4.281735977150058, 51.72096291875075], + [4.279708171827485, 51.71894268403772], + [4.280529580280435, 51.71823692688574], + [4.281334632831277, 51.71983676899581], + [4.282611681828513, 51.72043582406344], + [4.288396367497999, 51.71828801814178], + [4.295008046856274, 51.71766144675284], + [4.298578132001538, 51.71678453275215], + [4.318763418528237, 51.70587206614666], + [4.329449739385754, 51.70262436974894], + [4.341216661168911, 51.702942383549875], + [4.351590243937197, 51.702102721601925], + [4.365584731067856, 51.703102544735124], + [4.383713265061939, 51.70208925871107], + [4.386751225862344, 51.70256927586968], + [4.389712166372011, 51.70464221761602], + [4.391065975024459, 51.70431036340063], + [4.393897326017025, 51.706451688426014], + [4.395749414301903, 51.70940149575994], + [4.39438920104342, 51.71029381605968], + [4.394801313399592, 51.71096977425601], + [4.3971346650371705, 51.7107227598835], + [4.397899164025632, 51.711413086901246], + [4.398045837062541, 51.711378259491504], + [4.398230772927275, 51.71133434696007], + [4.398169794681866, 51.710498861957596], + [4.399409212233808, 51.710126834637144], + [4.400933892936382, 51.70939191186493], + [4.398880749848125, 51.7089184429208], + [4.397762783806389, 51.70797533774249], + [4.397297712041432, 51.70653193343031], + [4.398487884565643, 51.70448689355187], + [4.4021601320059744, 51.70427677078491], + [4.401467734493545, 51.70299968612127], + [4.398878613605441, 51.702211593908196], + [4.401936917242293, 51.69912161543274], + [4.40363760711812, 51.6987130011037], + [4.3944878187076695, 51.693764993154375], + [4.395036899269228, 51.695754682418645], + [4.391380903459686, 51.697120426595], + [4.3898350398908415, 51.69682992144041], + [4.388416683310923, 51.695538530419064], + [4.383669602356606, 51.695944185851936], + [4.3783495281138105, 51.693647674112], + [4.372205141474913, 51.69365971052774], + [4.371461168386245, 51.695254926131156], + [4.363358235738619, 51.69495521773625], + [4.367389998696456, 51.68775427636642], + [4.367965737993212, 51.68526780938174], + [4.367244880886324, 51.68312161840808], + [4.3660415120753004, 51.68256634066757], + [4.363702865887754, 51.68249594725698], + [4.363701545053012, 51.68234080606566], + [4.365739995656209, 51.681819109576125], + [4.364518227426737, 51.677772609742284], + [4.3571398363667315, 51.67121809728938], + [4.338617713041254, 51.66497815246539], + [4.329256015171408, 51.662908038207306], + [4.309008380150314, 51.65977238799483], + [4.300589149479486, 51.65922830317692], + [4.2992985348698465, 51.65956109896519], + [4.280630985806995, 51.654528132677385], + [4.27183893331217, 51.654617228313136], + [4.257492613955585, 51.65636423479256], + [4.250619491705407, 51.657879112453806], + [4.245860642751598, 51.658138644480374], + [4.232463893855988, 51.66140482964856], + [4.22278020160011, 51.66813743381581], + [4.219584628588894, 51.67261789172935], + [4.220150439339214, 51.67378407239097], + [4.210672682052629, 51.67631392634757], + [4.207599925898772, 51.676231996511], + [4.206972029302496, 51.674894906674076], + [4.205485157951306, 51.676175562417804], + [4.205373863638167, 51.67764270593478], + [4.194453172876063, 51.67929179732566], + [4.1891170972629395, 51.682983296556095], + [4.183848903316599, 51.68255193456335], + [4.168378630088629, 51.68343934117814], + [4.164960591805192, 51.68650608799761], + [4.164166486193457, 51.68723346405563], + [4.157346466399526, 51.682492013351606], + [4.155479750720507, 51.683418724486835], + [4.162513162794145, 51.68778130417864], + [4.1608610750691035, 51.69084932203094], + [4.155228529793765, 51.69658813831825], + [4.152295150804846, 51.69782418183592], + [4.134954365490578, 51.70198814003263], + [4.131756705402469, 51.70383477015248], + [4.128888958970245, 51.70334374519227], + [4.122708101572923, 51.70638215057137], + [4.116047955485639, 51.70723516148241], + [4.111019618369001, 51.70784677411709], + [4.09951128687818, 51.70741624225268], + [4.096246930334653, 51.70716520639192], + [4.095185581578045, 51.70648519248166], + [4.091347814646912, 51.70644841969216], + [4.08659209471174, 51.70753599427138], + [4.085906470879507, 51.709011580451396], + [4.085366360245105, 51.70896788643063], + [4.085902473899546, 51.70802471506977], + [4.082565493182396, 51.70767942190733], + [4.082770309084314, 51.706513914943685], + [4.080766646571715, 51.707977740436654], + [4.076483755418318, 51.708638330435846], + [4.069915560691262, 51.707847613243665], + [4.058900990872336, 51.71164180438255], + [4.0507140550869005, 51.71169509643001], + [4.048402117262578, 51.714728440321686], + [4.050586772893471, 51.71755091810106], + [4.043145674050424, 51.725019458811715], + [4.040686229821379, 51.72724024706872], + [4.0402408007688, 51.73100666317044], + [4.037957446501349, 51.73528821069609], + [4.0332223867026515, 51.73843424716189], + [4.032777702375126, 51.739643225114435], + [4.034776339554582, 51.74380742761043], + [4.0314560987959585, 51.74553351160119], + [4.029823549627326, 51.74268778069676], + [4.025914640907456, 51.741619497946196], + [4.024020350391118, 51.74187192980101], + [4.022381623762842, 51.74329884770131], + [4.01891174365622, 51.75170760983138], + [4.018573396190128, 51.755202230435486], + [4.017191800857508, 51.75617073790359], + [4.0272533368958845, 51.75769991811762], + [4.026091944298804, 51.75876348240874], + [4.022666292649385, 51.758650963838896], + [4.019178637055399, 51.760936551667676], + [4.02093368849563, 51.76414254577473], + [4.022229937412553, 51.766901942980745], + [4.022853979769106, 51.76904669001595], + [4.018417179051998, 51.77052032039424], + [4.018819019108555, 51.77707916101322], + [4.020347264100743, 51.77929026735644], + [4.010274223520219, 51.786514917431454], + [4.004390539813541, 51.791221923174234], + [4.002275391319565, 51.794415722146155], + [4.003490221835152, 51.79701493900982], + [3.995392329969674, 51.800194825234904], + [3.992170187845262, 51.80183586405676], + [3.989107611310066, 51.8024722450407], + [3.98318194169321, 51.801156101250506], + [3.9706140370774725, 51.800809696169004], + [3.9682478875210436, 51.80311603572611], + [3.9569837188536847, 51.80408193766381], + [3.9494286936735694, 51.80337966855622], + [3.9450007789490686, 51.80079957007947], + [3.935791098399975, 51.79761284333768], + [3.9356208017394847, 51.79776857142573], + [3.9369177878087864, 51.798593646920075], + [3.9346782830813334, 51.798203710932874], + [3.9355854197805855, 51.797477059244585], + [3.935117542275667, 51.797301133926254], + [3.9337495909641316, 51.7982353591759], + [3.92575559602755, 51.797587408055186], + [3.925059761689826, 51.796894502771984], + [3.921161577879431, 51.79690702008482], + [3.912101543997197, 51.79514314368196], + [3.912613118222364, 51.793809023731356], + [3.9076431046360525, 51.79218105567305], + [3.9030687623760545, 51.7920605180675], + [3.89698054796023, 51.79359000002496], + [3.8906724720536054, 51.79207904633877], + [3.889705172782411, 51.789486129978926], + [3.892116293317595, 51.78689656938842], + [3.895728574161742, 51.78491092399455], + [3.8924722158938607, 51.78239216336753], + [3.8890233269478096, 51.78122378836864], + [3.887059957250478, 51.780472276561255], + [3.885934628354756, 51.780426747232276], + [3.8856817246932316, 51.78058474815173], + [3.885752944773244, 51.780808411273426], + [3.8863438315879506, 51.78112444098248], + [3.886320830803442, 51.781519141021214], + [3.885757844402737, 51.781791779949344], + [3.8842031154605237, 51.781208242143535], + [3.884304324278063, 51.78094511971106], + [3.8848063237486836, 51.78090107319689], + [3.88511521396408, 51.780527597168145], + [3.885612269296187, 51.78033142526904], + [3.8855172985855835, 51.779985037485794], + [3.8843124746567206, 51.779798615694126], + [3.8839222507910747, 51.77984611206856], + [3.883810205651313, 51.78004273662897], + [3.883758598712626, 51.78062457309241], + [3.883907269076129, 51.780846797749575], + [3.8842291158514133, 51.780944537865366], + [3.884135693059091, 51.781186021955484], + [3.8834751052649596, 51.780995906334944], + [3.882033923957981, 51.78063484842767], + [3.8824393945362097, 51.780044930543056], + [3.883453114640325, 51.77995613110625], + [3.8835711980342587, 51.779736789021385], + [3.883395305280066, 51.779586868928575], + [3.882782273505192, 51.77957568666365], + [3.882910068119747, 51.7791793377729], + [3.882229510917075, 51.77913501582872], + [3.8800658373083357, 51.779288984085504], + [3.8773653239318113, 51.77967265134539], + [3.87172744594954, 51.78193672573151], + [3.869498477197589, 51.78117763005379], + [3.8671174943764988, 51.77628767109091], + [3.8685139399322126, 51.77572715297737], + [3.8655383147770834, 51.7749782354361], + [3.8594727717329325, 51.7653189081994], + [3.86124685577599, 51.76293725254451], + [3.860565950122939, 51.762187547460286], + [3.858701177548099, 51.762593548976994], + [3.855426077686494, 51.757864341149165], + [3.859062076050933, 51.75670045886515], + [3.858716651195373, 51.75784789886259], + [3.8596881462223696, 51.75802111476406], + [3.8600915175451544, 51.75690439455882], + [3.860614780750553, 51.75702061523387], + [3.8632050413432157, 51.76091329788648], + [3.8649146686443516, 51.758731712335496], + [3.869229340824642, 51.75744747183273], + [3.874287524447981, 51.75489372254841], + [3.874414563459613, 51.75375494218314], + [3.8710499792178523, 51.75082723323453], + [3.86476368076078, 51.75093607068671], + [3.8620630730391228, 51.75263948344843], + [3.861680763270216, 51.75211397086187], + [3.857421331618183, 51.753164271065295], + [3.8562128450250546, 51.75241113925237], + [3.8533894457400852, 51.75280393229458], + [3.8531119499743443, 51.754473925229476], + [3.852067683762007, 51.75291450444616], + [3.851376804695348, 51.75387983827121], + [3.8521414547032884, 51.75511643900985], + [3.8505204416035372, 51.75583256597014], + [3.8499471648697208, 51.75535331370034], + [3.8488962101782023, 51.75576129370377], + [3.848698856405766, 51.75660534806251], + [3.8461122687239166, 51.75716194313106], + [3.8424772502866773, 51.75630501708531], + [3.8391938304208018, 51.75823060897665], + [3.838531395017366, 51.759867158848785], + [3.8505215249459677, 51.7664300827229], + [3.8599352335306563, 51.7709050843091], + [3.8644353182866085, 51.778125449275244], + [3.86549043505555, 51.78219360016047], + [3.865100500755739, 51.78504672722771], + [3.863122524510871, 51.78985268798236], + [3.855392440095293, 51.802509724966804], + [3.8546697754161188, 51.805259397721784], + [3.8553822551563415, 51.80839142290695], + [3.857439473880786, 51.81153977017247], + [3.8595755888371426, 51.81389857360916], + [3.8652623566371265, 51.81773166354603], + [3.8693306086437484, 51.81960303208539], + [3.877779786109052, 51.82120556601403], + [3.8923897090262174, 51.82577383169133], + [3.903611707738159, 51.82594181110244], + [3.9092822378370995, 51.826788164085045], + [3.937277340968278, 51.835750516091544], + [3.9480818165347995, 51.83969740788019], + [3.950857070803436, 51.83825459448934], + [3.9604685918081595, 51.84106406446108], + [3.9687688821682494, 51.84256796267529], + [3.984413674407152, 51.84425916908434], + [4.0002214579920485, 51.849297902181384], + [4.0088886054632304, 51.84992799578255], + [4.012303017289803, 51.84929255792275], + [4.012449863487425, 51.84769000275584], + [4.008507147677802, 51.84546655350333], + [4.008279940547176, 51.842733215912595], + [4.014922255684437, 51.840479892667474] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.7f87fa1b-985c-410c-ba69-e005a65ab415", + "properties": { + "statcode": "GM1926", + "jrstatcode": "2024GM1926", + "statnaam": "Pijnacker-Nootdorp", + "rubriek": "gemeente", + "id": 318 + }, + "bbox": [85394.33480000123, 442650.9910000004, 92519.6240000017, 452215], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.394444997814233, 52.05405390077354], + [4.398549537897922, 52.05121787032825], + [4.400073494014802, 52.05236756955526], + [4.401358144132421, 52.053335522929764], + [4.422072403575685, 52.05167308822989], + [4.425831255774702, 52.051469445649296], + [4.438043858870612, 52.0502837343507], + [4.450564137655585, 52.04921020739103], + [4.456438011400488, 52.039541784252116], + [4.456994730665659, 52.039672221495834], + [4.457643806110892, 52.03861865961428], + [4.458932104217082, 52.03885383759266], + [4.470743678425846, 52.04047771013849], + [4.471619171645839, 52.03899674644802], + [4.471955739573021, 52.039030688055846], + [4.472531177171188, 52.03797242873952], + [4.472804432457973, 52.03802450053474], + [4.476706110941415, 52.03164214453769], + [4.468108099186116, 52.02649009159931], + [4.467992536004485, 52.0257868729926], + [4.467175364247513, 52.02535362069665], + [4.464489760641445, 52.02463129778723], + [4.463470407014545, 52.02422264095809], + [4.463040970440558, 52.02421464162345], + [4.4613041538797935, 52.02388855959202], + [4.4605688309478335, 52.02320823183454], + [4.4579606460629995, 52.02235407311391], + [4.457354350035966, 52.022260576255924], + [4.45719924366989, 52.02216887689946], + [4.458110902370876, 52.018527714796036], + [4.459438113538656, 52.01704546647269], + [4.458392916608214, 52.01602302734737], + [4.461561680671063, 52.01265141474696], + [4.456390711796714, 52.00851285611765], + [4.455350988869723, 52.006424862435], + [4.4570425415589625, 52.004943762291006], + [4.458868461098312, 52.00466553501339], + [4.458728118927033, 52.00220921284472], + [4.4519303402461325, 52.00083781497612], + [4.449775903662854, 52.00050276793405], + [4.451387234232727, 51.99813821761267], + [4.45281315262733, 51.99722664173753], + [4.450801257045397, 51.99588021861694], + [4.450569291924199, 51.995697189671944], + [4.447247919728504, 51.99240905578051], + [4.424446295897598, 51.97961102239278], + [4.42789835738201, 51.97646646310629], + [4.407910876301374, 51.968198605790896], + [4.407273407645127, 51.96898676863647], + [4.401537674254719, 51.97804642435112], + [4.397030128008511, 51.978974022008856], + [4.393526962358369, 51.987175866023854], + [4.391770153022798, 51.9912892495066], + [4.389577360005181, 51.9965198224503], + [4.389164345707076, 51.997380756042205], + [4.388281289634618, 51.999454289375684], + [4.388142452546732, 51.999775904567876], + [4.385915732382054, 52.00483525560222], + [4.38617336479526, 52.00489411485667], + [4.388622998689171, 52.00545371464375], + [4.388180440122924, 52.00663811556127], + [4.389025231618225, 52.007830893082456], + [4.388497773327513, 52.008666833294185], + [4.3883459128789655, 52.009447114518515], + [4.393686792705543, 52.0109331469797], + [4.3936875259657295, 52.0110216381192], + [4.394515940388208, 52.011255646728245], + [4.393319911085713, 52.01306956409536], + [4.390789337330061, 52.01682887353641], + [4.387848350901026, 52.02137085059597], + [4.386244899521858, 52.023308192077415], + [4.379808653944724, 52.026663579390295], + [4.379735288096948, 52.02673268245576], + [4.393928640969298, 52.03305326898939], + [4.387850895656423, 52.03844285081381], + [4.386768135042207, 52.03844420316042], + [4.3811800853543, 52.03638644045985], + [4.3798581964688985, 52.035952283741395], + [4.372657859999117, 52.04092792884516], + [4.378103282963097, 52.04464481624016], + [4.385840564392816, 52.04979572145351], + [4.386098397507107, 52.04996733819703], + [4.387904518077771, 52.05116948871893], + [4.389676176021016, 52.04996134686356], + [4.391439918528141, 52.05176141250072], + [4.39113098256923, 52.0519516790199], + [4.3925867658999485, 52.05315311906563], + [4.393124129346798, 52.05284343893801], + [4.393764105915721, 52.053330406200466], + [4.393570780483377, 52.05347845463224], + [4.394444997814233, 52.05405390077354] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e3accffa-35f5-4b22-9dfa-bd570a952fb1", + "properties": { + "statcode": "GM1930", + "jrstatcode": "2024GM1930", + "statnaam": "Nissewaard", + "rubriek": "gemeente", + "id": 319 + }, + "bbox": [ + 72187.12000000104, 422470.2675999999, 89200.59699999914, + 432228.4149999991 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.346271913259289, 51.85328889762825], + [4.353630211018931, 51.84905294095841], + [4.360778874073875, 51.84645956533368], + [4.372089009900396, 51.843348141827526], + [4.383664524768482, 51.842118255154816], + [4.392381827853432, 51.84205096523043], + [4.409744087418047, 51.843219011953565], + [4.41417244556497, 51.84278900588852], + [4.423752811592109, 51.840073051921706], + [4.432482336186925, 51.83704614680436], + [4.428451891078103, 51.83421099049184], + [4.422274010546394, 51.83022658523517], + [4.419013048980663, 51.82959039519019], + [4.415597637478825, 51.82966874113328], + [4.412552999811526, 51.82992244220184], + [4.399136630105926, 51.83142018426472], + [4.396629614209695, 51.83103455042049], + [4.382131800907792, 51.824079158535866], + [4.3791949570134285, 51.82249747765784], + [4.369082272591684, 51.81698143693689], + [4.357432471203118, 51.81902815251953], + [4.354298215877877, 51.81916501584833], + [4.3471080353227896, 51.81788735323365], + [4.3398343254718315, 51.816829069719006], + [4.337084979248023, 51.81643877926648], + [4.330791238996062, 51.81297461961496], + [4.317263797921076, 51.8112874362628], + [4.305858100752337, 51.808595374272485], + [4.299039394268612, 51.804061000983744], + [4.295791706202004, 51.80211093059477], + [4.284496852192102, 51.803664518367015], + [4.271604248602554, 51.80515545774595], + [4.268596056614152, 51.804839163099714], + [4.264368955506803, 51.80339648026857], + [4.246628033462405, 51.78533932563058], + [4.239869244553156, 51.785368206761156], + [4.230053659188036, 51.7880459517978], + [4.221891260688386, 51.794372667529466], + [4.2217463302267655, 51.796271467937686], + [4.217583348506716, 51.796733149018806], + [4.211629810672548, 51.80013147344211], + [4.204331816771499, 51.80157173000794], + [4.20110292294673, 51.80319584322649], + [4.194242577208186, 51.80430484961258], + [4.19457640633527, 51.80708342465563], + [4.199182575146887, 51.809881394251065], + [4.212351600361673, 51.814025422959105], + [4.213504703455236, 51.816171533938665], + [4.2129805177955415, 51.82058150457776], + [4.219708153241824, 51.824559591076905], + [4.217773986345974, 51.826113392374076], + [4.2181335145580166, 51.82634655758978], + [4.219110345047289, 51.825722817895866], + [4.219666873563413, 51.825968120134995], + [4.220110207705476, 51.826163526071404], + [4.220682434025319, 51.825811163515986], + [4.221969590971616, 51.82501853537012], + [4.222214943699022, 51.82653744220709], + [4.2206015027311725, 51.82720243380432], + [4.220254720851461, 51.82821287341969], + [4.20915319379312, 51.83477965985384], + [4.207083445714831, 51.83555746600355], + [4.197121865073855, 51.83494576248901], + [4.195544885822678, 51.836724453312854], + [4.195609476330075, 51.839186706701774], + [4.195709240825987, 51.8396832030381], + [4.198244525151533, 51.839694707091894], + [4.198528143580243, 51.843392939127995], + [4.196524044922837, 51.843149841048266], + [4.196447856141321, 51.84350983980091], + [4.194750322259961, 51.84330662506286], + [4.193473752024533, 51.84294648580316], + [4.192734880022059, 51.843429511262215], + [4.194726638400371, 51.84421734499827], + [4.196394916711517, 51.84647806723784], + [4.19760995586887, 51.84700168975755], + [4.1981737052891965, 51.8494300732798], + [4.198103324620841, 51.849973652649815], + [4.196540351667876, 51.85028735462624], + [4.19417852826437, 51.85003936775393], + [4.191416769420886, 51.84893625505482], + [4.185272527566686, 51.84970761786473], + [4.239383150979978, 51.87298591099791], + [4.252577765662726, 51.86825955030002], + [4.25975840251041, 51.86580331957737], + [4.265031130894074, 51.86476725304076], + [4.283792337774493, 51.864476320498895], + [4.335539757588365, 51.864301790802955], + [4.339651997714201, 51.85946061879446], + [4.339718875591644, 51.85938350307116], + [4.341555236790271, 51.85709709434434], + [4.346271913259289, 51.85328889762825] + ], + [ + [4.220378955287071, 51.82591405240347], + [4.220126190826122, 51.826084130943585], + [4.21979098406496, 51.82594218413446], + [4.220084328742566, 51.82574563229158], + [4.220378955287071, 51.82591405240347] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.3dacada6-991e-4913-96be-938b2ff7ff63", + "properties": { + "statcode": "GM1931", + "jrstatcode": "2024GM1931", + "statnaam": "Krimpenerwaard", + "rubriek": "gemeente", + "id": 320 + }, + "bbox": [ + 99196.04699999839, 433696.0370000005, 119969.66200000048, + 448377.17500000075 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.808285146402154, 52.01414324163552], + [4.812631347410255, 52.01394183215711], + [4.815858924397682, 52.014029992082165], + [4.821484686945929, 52.01591829148123], + [4.824994256849447, 52.01723660891757], + [4.8333347762704655, 52.01642293447143], + [4.840178054058915, 52.01670694272224], + [4.846895777654134, 52.018181708179206], + [4.847203421273327, 52.01797430343012], + [4.848602730774647, 52.01611691565333], + [4.856385688617407, 52.00683805821832], + [4.857126556382675, 52.00595950798789], + [4.853602035871029, 52.00479841087903], + [4.817805905521922, 51.99976688905379], + [4.826968648948841, 51.992594686004914], + [4.835217848184357, 51.98614302050802], + [4.834114363667695, 51.98558024717724], + [4.844296974682223, 51.9763518091374], + [4.845546370421592, 51.975200503739856], + [4.847553164557082, 51.975136900480095], + [4.849765880113696, 51.973854075318414], + [4.860382219234603, 51.968013506222825], + [4.864304497700337, 51.96339736016608], + [4.865673980645983, 51.96043334769064], + [4.8689566469359775, 51.95670673959237], + [4.871597951255687, 51.95371069670306], + [4.872755662569698, 51.95094068680953], + [4.875812031641798, 51.94353356492248], + [4.877792920155559, 51.938030675583256], + [4.872278440565287, 51.938354436535015], + [4.863281046964581, 51.94002599368127], + [4.85919557296549, 51.94083125700334], + [4.846701170399016, 51.94137667079924], + [4.837195894811313, 51.94042104781091], + [4.83230416660702, 51.93863880268592], + [4.814195227951548, 51.92623148457066], + [4.811283443603574, 51.924554632050445], + [4.801233115458099, 51.92163226992241], + [4.790704900995191, 51.9196589955794], + [4.777610069032362, 51.91706524139311], + [4.767193402252507, 51.915903355082015], + [4.7617621395281615, 51.914216871083106], + [4.743869487122732, 51.90524884134606], + [4.7239721693186185, 51.89809058502871], + [4.715811920134732, 51.8959490426813], + [4.705601147496467, 51.8972183257705], + [4.690955663676873, 51.89483765657401], + [4.6806758675472215, 51.89300509475107], + [4.675994274529346, 51.891142357735966], + [4.6733672105559885, 51.89022758149221], + [4.668166587077526, 51.889585346829], + [4.654651667956043, 51.889682010477486], + [4.639300752503034, 51.89073328587414], + [4.6332168230188, 51.89048363142247], + [4.625423195701768, 51.889383166888244], + [4.621065586525739, 51.88940154440596], + [4.619572170348848, 51.88952269980738], + [4.595028826032788, 51.89417273004929], + [4.590797261793692, 51.89584850540589], + [4.58302042196629, 51.90121270464973], + [4.57632845404583, 51.90303172041799], + [4.582034793074745, 51.904086495255946], + [4.5841911031955895, 51.90390542294414], + [4.589098556136356, 51.902367495226606], + [4.588747706695679, 51.904187425120185], + [4.592212981832892, 51.90560117389122], + [4.592520039348822, 51.90440638526135], + [4.593083546265007, 51.904679854660266], + [4.593510900543097, 51.90410159014859], + [4.59673298720624, 51.9057575875552], + [4.595173304550954, 51.907082121755906], + [4.596768988757145, 51.90780502007986], + [4.596826281267663, 51.907811452957056], + [4.601463716333021, 51.90699769755644], + [4.623217754783024, 51.90853617508157], + [4.6351516743499666, 51.910070418543064], + [4.642782955449651, 51.912457752069486], + [4.643018854951964, 51.91256940646648], + [4.630587080973748, 51.92143371509352], + [4.623664845769215, 51.92628526246407], + [4.61770393282102, 51.93105014175779], + [4.619488624484371, 51.93349226847018], + [4.6214636209635005, 51.93524977749181], + [4.623776759790233, 51.93619176663735], + [4.630970916272226, 51.93629077871903], + [4.633350460149822, 51.936939753350984], + [4.634734947311566, 51.93797573602277], + [4.6361278910301715, 51.941343540027304], + [4.639684479702675, 51.9511298622821], + [4.6460058175214405, 51.95418187174359], + [4.645709043146397, 51.9561072006794], + [4.642060728061025, 51.95987054863904], + [4.639773574251277, 51.962176771891095], + [4.632921372120737, 51.966320005630216], + [4.630838748137585, 51.96818947820173], + [4.632678508885314, 51.970245283737974], + [4.648577543215971, 51.97300731270268], + [4.649835076451132, 51.97342888830154], + [4.655923274261823, 51.97655312642947], + [4.667850994192692, 51.97885054578414], + [4.670679935178969, 51.9804218638464], + [4.671823130735396, 51.98447232047171], + [4.674289455692099, 51.98701695689748], + [4.6769445787696045, 51.98828581424403], + [4.682508979956503, 51.992694967797014], + [4.688684512651094, 51.996258042150544], + [4.69064166460612, 51.99667196559464], + [4.696829694068746, 51.99694392429435], + [4.7010714697721205, 51.997560617262316], + [4.707217068694577, 52.0017622659845], + [4.712909601667188, 51.999141338067744], + [4.714411543378495, 52.0004028287156], + [4.718861287894371, 51.99836956388027], + [4.7267023154114325, 52.00126345569701], + [4.726736470692108, 52.00127603338362], + [4.727569779626537, 52.00158288224279], + [4.724200948889383, 52.00338473543737], + [4.722792599193202, 52.0054820581469], + [4.728327690531802, 52.00734370670605], + [4.730774075070289, 52.00735094424682], + [4.737291799227511, 52.005935125689284], + [4.737733367684216, 52.006841435392126], + [4.739321561016128, 52.00625210009558], + [4.7420563771577, 52.00458641268183], + [4.745970129438371, 52.00279561923597], + [4.7522619739899, 52.0023482119821], + [4.757327226146794, 52.0014384797975], + [4.757247402489247, 52.00292617521693], + [4.752763002887728, 52.010536548182344], + [4.750991277170266, 52.01389879432047], + [4.75087977144438, 52.014088358610906], + [4.76620600418453, 52.013242000061375], + [4.77594424583129, 52.01406416670021], + [4.785077632657843, 52.016454135808175], + [4.798700208048421, 52.022271728063245], + [4.803410173810587, 52.014144549038214], + [4.8053948225308325, 52.014132928479995], + [4.808285146402154, 52.01414324163552] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.61b07a66-8921-4ac8-85cf-d942da06c6da", + "properties": { + "statcode": "GM1940", + "jrstatcode": "2024GM1940", + "statnaam": "De Fryske Marren", + "rubriek": "gemeente", + "id": 321 + }, + "bbox": [ + 157628.45659999922, 535234.9400000013, 192041.86199999973, + 563629.9970000014 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.800272593874554, 53.047908386937145], + [5.809041328666149, 53.043684568412765], + [5.8231859074985906, 53.038431452598665], + [5.8360090444707655, 53.030973703275244], + [5.849335484374835, 53.02390484846281], + [5.85760313362069, 53.017008281184744], + [5.866126946228406, 52.99979646142756], + [5.877480860674058, 52.99085471395373], + [5.882841123578355, 52.98672298469039], + [5.886076768168917, 52.98402472649425], + [5.887267383243287, 52.98151510175026], + [5.867215203407935, 52.97862167907319], + [5.869238787938936, 52.968740547600504], + [5.870970615752215, 52.96444160615367], + [5.887570840914913, 52.967010184100694], + [5.888076695660611, 52.96645710870464], + [5.885988817909101, 52.966111420099615], + [5.886154071373211, 52.96571090740759], + [5.888519931338893, 52.96505633557132], + [5.891026848106279, 52.961696945350155], + [5.89168300030295, 52.96191498140147], + [5.891630219660288, 52.96227807542498], + [5.894767869692895, 52.96317917108912], + [5.8956334510842225, 52.96214747229549], + [5.89741557514923, 52.96307695049216], + [5.898113265116887, 52.96239333992844], + [5.902305075326951, 52.95736896731519], + [5.905447637256471, 52.955629991263585], + [5.905711092585141, 52.95551514084918], + [5.904885672927439, 52.95416388094355], + [5.914181108920472, 52.9429222083976], + [5.9129835614868655, 52.94060264965451], + [5.9190882810073875, 52.93294935365797], + [5.923569612395209, 52.92730314604975], + [5.9333596942362234, 52.9150242998797], + [5.937846927466566, 52.91174044024063], + [5.933073616888629, 52.907340539844945], + [5.929846024081115, 52.90651500313403], + [5.925057803616567, 52.9038583355617], + [5.911163403869098, 52.89782747345089], + [5.904174700452753, 52.89670094778539], + [5.901460023507713, 52.89702815076825], + [5.899025652254022, 52.89562701289017], + [5.896172445813403, 52.895904293125405], + [5.890665864897897, 52.895380100305765], + [5.886016957854831, 52.89423942801578], + [5.884969468673144, 52.889815087606515], + [5.883237666494005, 52.8890456693121], + [5.88051255354661, 52.88880857744705], + [5.876971391732104, 52.88682803433874], + [5.87110316428116, 52.88167304063699], + [5.868424228195543, 52.88029813135563], + [5.868098603073396, 52.87903307264888], + [5.864545541963847, 52.8760874380464], + [5.861754574948932, 52.87467893098427], + [5.856958773077065, 52.87097531489648], + [5.856056067805876, 52.867641602789824], + [5.8512796336312585, 52.86268936113582], + [5.843927548338351, 52.85487379709875], + [5.840837219467964, 52.848373761570805], + [5.839909030508761, 52.846920764992426], + [5.840016982952861, 52.84299620657043], + [5.83587947924684, 52.84104078195206], + [5.833007740184387, 52.83656006263188], + [5.829236699032121, 52.833465948934524], + [5.8287076882916455, 52.83176805723442], + [5.825746336600741, 52.83016976677583], + [5.827750429519739, 52.827709401137994], + [5.824728699747551, 52.82558981759547], + [5.821567358851583, 52.82468998354217], + [5.819014262140772, 52.82307233237881], + [5.818127787743096, 52.82166848122346], + [5.818238050565895, 52.81978034054525], + [5.81974419827096, 52.81727838858882], + [5.817070756758223, 52.81668838605761], + [5.810015541433563, 52.813883551092104], + [5.795177033982417, 52.80652183738242], + [5.789806672874144, 52.803691485512275], + [5.78737549197019, 52.80896901140739], + [5.784382141997081, 52.8174757446888], + [5.748807356744224, 52.83967958266816], + [5.745718919839033, 52.84023622777546], + [5.724681986394606, 52.84398224129241], + [5.72482388031273, 52.84362330654309], + [5.727247290430969, 52.8369161951629], + [5.729573993792976, 52.83372655529361], + [5.728663438238734, 52.833398009178566], + [5.722699070103703, 52.83607463316579], + [5.713081365774213, 52.83802724127795], + [5.712362934948513, 52.83829996407891], + [5.712602564475215, 52.83960534245447], + [5.71205326068428, 52.84007462154079], + [5.712701292324829, 52.8409992581213], + [5.710654816249682, 52.84040276413603], + [5.710200407152512, 52.838949390263636], + [5.708841010593638, 52.83848560219363], + [5.710025831088503, 52.84071485277304], + [5.716629810223245, 52.84256574772262], + [5.714907698042213, 52.842676839977045], + [5.715263652173531, 52.8432838435982], + [5.714605480840608, 52.842535259372525], + [5.7113662482974235, 52.84164441505817], + [5.709753211940409, 52.84187672978702], + [5.707939606978204, 52.83814557480247], + [5.706163939877254, 52.838785613086806], + [5.707783782804319, 52.84175127525464], + [5.70259865676438, 52.84362246039774], + [5.702314998223859, 52.84312691574131], + [5.705672518990856, 52.841705485824775], + [5.706056343506883, 52.84075439419272], + [5.7052153975156825, 52.839924712910026], + [5.704592970368565, 52.840157148275544], + [5.703715379089576, 52.83889137096498], + [5.704562072932594, 52.83851869910881], + [5.703305096828404, 52.83775889454982], + [5.69934962317044, 52.84085838742881], + [5.70019489906149, 52.842916912087865], + [5.698004895594578, 52.84424020424841], + [5.695160613736129, 52.84462522193182], + [5.694623500654747, 52.84412002406982], + [5.693945769019653, 52.844390076771326], + [5.693116415971274, 52.845143216904106], + [5.685150054634626, 52.84594418536915], + [5.683701100349572, 52.84478258958345], + [5.680317407968874, 52.84525182276423], + [5.680407664508114, 52.84594591010695], + [5.679686099930181, 52.84617050357032], + [5.678530496683704, 52.845136851965414], + [5.673564628669751, 52.84511911613592], + [5.668237428298315, 52.84464443644605], + [5.669410073887706, 52.84100109034192], + [5.66461470287612, 52.844321491893176], + [5.657598532646778, 52.84369571513105], + [5.657175016570318, 52.8451083525015], + [5.654833785831597, 52.845962176503626], + [5.653903625756932, 52.84724705642386], + [5.654545399501913, 52.8477815430184], + [5.656382443627175, 52.847677194236034], + [5.657248970003251, 52.85399778795679], + [5.644618369760616, 52.86038564845835], + [5.643373929945217, 52.8598999032223], + [5.641252184007654, 52.86028211096615], + [5.634625072780189, 52.85836826859577], + [5.618465856426093, 52.85096618611706], + [5.616605558001371, 52.85070908753761], + [5.60788493720794, 52.85180618297977], + [5.601375724149539, 52.85198470464168], + [5.585257300377856, 52.849378363193175], + [5.582704460211692, 52.84733888021594], + [5.582981710314615, 52.84509774053373], + [5.579995544575518, 52.839732323217234], + [5.57309149420424, 52.83616960267236], + [5.567341538132199, 52.83423035905794], + [5.558890969780092, 52.83301253588717], + [5.552766841688193, 52.83259002152808], + [5.544853629209564, 52.83306597951205], + [5.526952846957075, 52.837450957464284], + [5.500010094405051, 52.845773485683374], + [5.486178894152818, 52.84918389912349], + [5.472930502344946, 52.851690458408385], + [5.466933663261651, 52.85192594613892], + [5.453665623252203, 52.85470645046282], + [5.450422576072213, 52.854088160529244], + [5.449016555374422, 52.8521326075037], + [5.447329309465821, 52.85152316057935], + [5.441004562250379, 52.85091618153774], + [5.437421389057788, 52.85973243651763], + [5.438087284802071, 52.86023851661302], + [5.433351530669, 52.87010871510171], + [5.43240016524563, 52.86990419756616], + [5.426244525608725, 52.87332636007931], + [5.432531845225501, 52.87464996351692], + [5.443651508569751, 52.87372070442754], + [5.447895607908008, 52.87271047600274], + [5.457437007149959, 52.87167658161443], + [5.457526427486794, 52.87212683268694], + [5.465128722563158, 52.87130109444767], + [5.467718333807439, 52.872563411036445], + [5.468688925343201, 52.87179412766691], + [5.472469745716767, 52.87297182890815], + [5.473658015482267, 52.87124143289427], + [5.477092582683579, 52.868766219018255], + [5.485234113991463, 52.871693008221804], + [5.487486929675381, 52.873398476034964], + [5.490171430999914, 52.87143226095823], + [5.495517090632334, 52.873815680614825], + [5.495902741497717, 52.876054491453], + [5.501097232367206, 52.87957111838881], + [5.501818986931597, 52.88004348329322], + [5.494327128058827, 52.88295720501341], + [5.489712458342535, 52.88603001375691], + [5.493844790896722, 52.88983575283331], + [5.4887742544449365, 52.89278983764783], + [5.4771202759870405, 52.90258602106237], + [5.4899501316351005, 52.91174580298248], + [5.495217534676567, 52.91557631262246], + [5.5118314846301875, 52.92697477634956], + [5.5644738524669775, 52.94736551085579], + [5.569021510373719, 52.94553492437019], + [5.569573582532457, 52.94474251793337], + [5.572818698083869, 52.94224649386805], + [5.577259384485826, 52.93520454396029], + [5.578901000680562, 52.93394169125669], + [5.580527824489772, 52.933959215495456], + [5.580274666818445, 52.93275209256273], + [5.58260235712273, 52.929413112418096], + [5.594259849080047, 52.91541157944458], + [5.620750609181515, 52.91950356986951], + [5.639633795114999, 52.92241637260679], + [5.6399782778120775, 52.922469478316664], + [5.642455005099697, 52.93616728285305], + [5.655822334454199, 52.93503866303658], + [5.663772093701445, 52.934320144445635], + [5.67906626787735, 52.932951810275306], + [5.6833403412773835, 52.93388108037426], + [5.689325964319963, 52.93296662689435], + [5.688141209366137, 52.93627232937023], + [5.689134442891084, 52.94552024600512], + [5.690750083600693, 52.962557119849876], + [5.690872987950217, 52.967039598120635], + [5.690322690785694, 52.97419336903672], + [5.687442913520598, 52.982080364967615], + [5.688090221605868, 52.98486837468895], + [5.690701682162149, 52.98817875472661], + [5.69080103729297, 52.988271517110874], + [5.691858903187015, 52.988591109024014], + [5.697369157105584, 52.98608796828322], + [5.705174477609656, 52.984243198567846], + [5.706541692724134, 52.98447529790956], + [5.707776780205338, 52.985108837687605], + [5.707187539398133, 52.9865854655118], + [5.713117587037974, 52.990330848594645], + [5.714453104388615, 52.99337413973018], + [5.716132400693907, 52.99516434462405], + [5.721872128543561, 52.99758204443345], + [5.723168589033038, 52.999053343340556], + [5.731033922187104, 53.00137191415349], + [5.733565661226958, 53.00093000927875], + [5.738942269161177, 53.001196137749766], + [5.742258180500429, 53.002300625813675], + [5.741499839695173, 53.00429781690683], + [5.742182557190127, 53.005351438209765], + [5.748181224031258, 53.00728191007894], + [5.748891226425696, 53.007841932431724], + [5.748065925129243, 53.0084613928495], + [5.736164293808883, 53.01389279605597], + [5.733241301533335, 53.015438065780934], + [5.7367046581151095, 53.03015190329585], + [5.755432156734178, 53.04683805444894], + [5.75983846651308, 53.04668990436406], + [5.767480014547016, 53.04644765512083], + [5.767290518138033, 53.047282582134976], + [5.768538685824233, 53.04667218180166], + [5.7706964645226835, 53.04744301401246], + [5.7710118104221335, 53.04696774246413], + [5.769846724078389, 53.045849234794645], + [5.773912370877477, 53.04592169040287], + [5.796386035549136, 53.05883930184373], + [5.798748585825923, 53.05619529721312], + [5.795525023695661, 53.05487635366581], + [5.796458205742147, 53.053737231299145], + [5.7958178445773205, 53.05301596634021], + [5.797946979295318, 53.04980869243661], + [5.800272593874554, 53.047908386937145] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.90ae9c02-2944-415d-9aaf-692ea97f076b", + "properties": { + "statcode": "GM1942", + "jrstatcode": "2024GM1942", + "statnaam": "Gooise Meren", + "rubriek": "gemeente", + "id": 322 + }, + "bbox": [ + 129478.17199999839, 474219.3229999989, 144302.15630000085, + 486452.78500000015 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.040005747654829, 52.33497763940336], + [5.037667496899091, 52.33460364058956], + [5.037201288876994, 52.337428710758545], + [5.036279344048733, 52.337798025727274], + [5.032820792964432, 52.33809642845484], + [5.032787078668775, 52.33827683646675], + [5.034560656861165, 52.33830739219638], + [5.038945485728482, 52.33758224270257], + [5.041975660692551, 52.336516263185295], + [5.040005747654829, 52.33497763940336] + ] + ], + [ + [ + [5.09357310491504, 52.33876259315699], + [5.107069516044711, 52.33147881039847], + [5.1089037772246835, 52.33202933873765], + [5.110039113408558, 52.33111628376822], + [5.11046787427298, 52.33014390558011], + [5.1235593160319475, 52.329408040043944], + [5.1290313622483765, 52.325188325962706], + [5.133435246120887, 52.32764530552219], + [5.137184983541305, 52.325322516181046], + [5.138324338341371, 52.32590170210216], + [5.138440971981972, 52.32581198597812], + [5.1392123631496265, 52.325218684794656], + [5.138098216177165, 52.32465857564624], + [5.1479093435165675, 52.31458427716993], + [5.151385784906158, 52.3123268618792], + [5.149436226974772, 52.311943669790125], + [5.14676607431919, 52.31261159570607], + [5.147762752027443, 52.31388211220011], + [5.147141061098954, 52.31373836792924], + [5.145353125930946, 52.312039356068674], + [5.143629582240788, 52.310875804546114], + [5.146294881997165, 52.30931376660459], + [5.149993541993187, 52.31012774462658], + [5.151243983037495, 52.30876572985482], + [5.149948859940369, 52.3084144826364], + [5.1495389602423325, 52.30875177772919], + [5.148849125630521, 52.30846090321735], + [5.149037896939867, 52.3080058220614], + [5.150028114240363, 52.30803642695619], + [5.150112799476995, 52.30823883994014], + [5.151729759131266, 52.3082225932508], + [5.151941864891674, 52.30770215213636], + [5.152596362532414, 52.30776305630485], + [5.152558038045012, 52.308002321256254], + [5.1542436670231355, 52.30864543743756], + [5.15414118762137, 52.30880553502488], + [5.1521945321154865, 52.308401216842306], + [5.151275452880724, 52.30935041881871], + [5.153091477814203, 52.30996872642924], + [5.152603145533487, 52.31018968555674], + [5.152082239428051, 52.311011345880615], + [5.151314156369344, 52.31086210252563], + [5.151970710766557, 52.310418530613724], + [5.15219439530829, 52.31002483265563], + [5.15191016360362, 52.309813621132065], + [5.151053052701797, 52.309600539021716], + [5.149961880817174, 52.31080140237455], + [5.150100287595363, 52.31146736140607], + [5.152408996352578, 52.31194687952679], + [5.161504741175078, 52.306417951471616], + [5.165580476221783, 52.30495774894379], + [5.173568804396741, 52.304023284596745], + [5.181539139270101, 52.30521062348155], + [5.187205514200102, 52.3074286488723], + [5.196994634094345, 52.308944472841006], + [5.228488450933167, 52.31125397490765], + [5.230352435220955, 52.305446936727705], + [5.229812358191386, 52.30448091860229], + [5.230080520603479, 52.30292443448092], + [5.229134412163528, 52.3028030631022], + [5.229560711934036, 52.30172389400907], + [5.227173649080907, 52.30116685832302], + [5.2194802297349465, 52.2991571155606], + [5.214126561376555, 52.29849803337031], + [5.211759527025664, 52.300095275371966], + [5.210489430571736, 52.301860683696965], + [5.209010012206491, 52.302020324979495], + [5.20872169950818, 52.30025737387646], + [5.203496025363798, 52.29965669136611], + [5.2022462876985855, 52.29971821947409], + [5.197798070604373, 52.30033454951847], + [5.195805400958646, 52.2988989892519], + [5.194991649370559, 52.297107370900484], + [5.19591712865506, 52.29507667519681], + [5.190433901656756, 52.29346422506751], + [5.190373047147379, 52.29323401468865], + [5.188223930557436, 52.2925506061997], + [5.187690736644793, 52.292953293216556], + [5.187075244978985, 52.29260290074054], + [5.192379474614199, 52.29032929306788], + [5.193232180470064, 52.28822297288821], + [5.195383357003244, 52.28858077757143], + [5.19530577384957, 52.28824419415777], + [5.1957639921287075, 52.28600913839542], + [5.195683156160979, 52.28476537417372], + [5.193802863425794, 52.285527890899196], + [5.192137397418841, 52.28411569997366], + [5.194662172189152, 52.2834785598334], + [5.194347404771672, 52.28242847106545], + [5.194473268985762, 52.280940669590514], + [5.18998731022849, 52.279098643516114], + [5.184702826003534, 52.27800968461277], + [5.187598272303521, 52.27524438029274], + [5.191179874821426, 52.27374243548942], + [5.196222841718254, 52.270892936162284], + [5.201117095260228, 52.26813994518962], + [5.201103338109604, 52.26813669693619], + [5.201580330261499, 52.267937010307115], + [5.200936266740973, 52.26737135025272], + [5.199784283473077, 52.26782572254204], + [5.193513063308994, 52.26637124810836], + [5.183139258765219, 52.26396920269584], + [5.183131359241697, 52.264603157211155], + [5.176939053178711, 52.26288645307423], + [5.1738841406519365, 52.261677798014624], + [5.1659467758128494, 52.25770606344977], + [5.162128837708069, 52.255795799643295], + [5.161808366268519, 52.25992642840917], + [5.13760932865831, 52.25960390067427], + [5.13745517019387, 52.25988580096023], + [5.137497025933547, 52.26041687939615], + [5.137708897901805, 52.260424669699795], + [5.137700703465109, 52.26048596715183], + [5.137493896595861, 52.260520412196826], + [5.137558968550615, 52.26090016713066], + [5.137208848916542, 52.26147626224094], + [5.137723696883205, 52.263063571108646], + [5.140478808819893, 52.2650931056313], + [5.143957328494695, 52.27053517838112], + [5.144354548052634, 52.27131410522578], + [5.143936188856415, 52.27134337148442], + [5.143895229812301, 52.272909182236766], + [5.143719119773015, 52.27382660526521], + [5.14394567642512, 52.27430124833072], + [5.141440728953376, 52.27526049304911], + [5.136265687176782, 52.27714664717783], + [5.135358551074838, 52.278086699899134], + [5.1344053546936195, 52.277816417356526], + [5.134169784400654, 52.278042315448566], + [5.13306817563684, 52.278667596151685], + [5.131048342795254, 52.278363047207264], + [5.127191416351198, 52.27864773062213], + [5.121800173008003, 52.28172180366897], + [5.116026567291901, 52.28277529359394], + [5.107354559462466, 52.28546162260944], + [5.104646015309711, 52.285384664830715], + [5.098714997441803, 52.290573703524686], + [5.09847354166339, 52.29163615027364], + [5.099353981602083, 52.29280350460432], + [5.1029186803479725, 52.29446770528974], + [5.106065060379813, 52.29466848868185], + [5.10767436076005, 52.29729161009609], + [5.106266326915499, 52.29833605660148], + [5.101971819684586, 52.29780419410383], + [5.098943531111088, 52.298696625613644], + [5.096793692691504, 52.300436661221404], + [5.095771002367263, 52.30376174861909], + [5.096482747496969, 52.30729259588533], + [5.100566918376804, 52.310296400368756], + [5.094618645234988, 52.31242635530367], + [5.0921068991480185, 52.31302333748346], + [5.092644459967638, 52.313773147326835], + [5.093076658405978, 52.314150286614286], + [5.091653149908785, 52.314643949110945], + [5.075393751289575, 52.31914520572032], + [5.0695084287361185, 52.32179335719238], + [5.064686905836961, 52.322005933848146], + [5.06572087746508, 52.32048161667148], + [5.0652594559807085, 52.319181519922516], + [5.062536173000015, 52.31764202290392], + [5.058340030709305, 52.316317291901726], + [5.0580348550563805, 52.316683259425474], + [5.0590928628417595, 52.31705231310332], + [5.0567417910500785, 52.319599434482456], + [5.060125868949205, 52.32107149867424], + [5.061519118618724, 52.32180069532524], + [5.061108700203338, 52.32210550690249], + [5.0615135660278785, 52.32367471757081], + [5.058211049068097, 52.324816881263025], + [5.049066403512274, 52.3269916025247], + [5.045594794516783, 52.32676778726176], + [5.044395028764473, 52.32714885717126], + [5.044801360776557, 52.3274732317506], + [5.0439522905898775, 52.3279601889701], + [5.0397947308257125, 52.32902691492432], + [5.0289528477575685, 52.330769655021044], + [5.0215873635760975, 52.330862333285296], + [5.017273290575492, 52.33018671111445], + [5.018424004815159, 52.32433890697253], + [5.017932845893998, 52.32319233820787], + [5.016653253607835, 52.32298689590738], + [5.016133679578445, 52.32451212164975], + [5.012793853433807, 52.33020742406345], + [5.014450117039145, 52.33143131839825], + [5.01499231577592, 52.33177646010408], + [5.018462551026608, 52.334074428595684], + [5.025343573555785, 52.337049010739854], + [5.027486445218185, 52.337719079101404], + [5.027923054180904, 52.336694888517044], + [5.029971692642945, 52.336606796120584], + [5.030094622048376, 52.33626598935786], + [5.028773675355116, 52.335674407957754], + [5.029598371094845, 52.33466515026131], + [5.0321494408249645, 52.333536291383474], + [5.036615252372661, 52.333522295679444], + [5.040819202436681, 52.33448619362816], + [5.042924053065242, 52.33604300122544], + [5.044578609191201, 52.33527633257676], + [5.056181653618006, 52.33773235635561], + [5.061882448233321, 52.337564296881375], + [5.067094484636735, 52.336683846138335], + [5.068589872007352, 52.337185264118084], + [5.068108449139342, 52.33643499531081], + [5.06773900125315, 52.33636633220542], + [5.068552678257193, 52.334052167610736], + [5.069319810763256, 52.334078456803624], + [5.069817656606197, 52.333354343161396], + [5.070041266894704, 52.332794558978165], + [5.069229316817614, 52.330588123470804], + [5.069654403553397, 52.33046118829987], + [5.070594023488567, 52.33177461346582], + [5.071267756629766, 52.33368747625797], + [5.071038389194636, 52.33374898400276], + [5.0705738933530995, 52.333629834538364], + [5.069854896031051, 52.334598606580265], + [5.0701919489806935, 52.33549238564019], + [5.069797448757048, 52.33708709691313], + [5.077350943503419, 52.33981194901067], + [5.082603737293369, 52.33946988804352], + [5.09357310491504, 52.33876259315699] + ] + ], + [ + [ + [5.106933994932636, 52.34559269942206], + [5.109798516093584, 52.34368298789618], + [5.1097006519638075, 52.34363275658012], + [5.109216719183161, 52.34398281135669], + [5.108007143803461, 52.34336648147716], + [5.103626422564352, 52.34599774642721], + [5.102564104108498, 52.34627508172036], + [5.102200136229548, 52.346868811565656], + [5.100370408562883, 52.347158734790455], + [5.100337088739392, 52.347214810741555], + [5.102715995362429, 52.34686888750612], + [5.106933994932636, 52.34559269942206] + ] + ], + [ + [ + [5.081052404462953, 52.34546255841208], + [5.079636028726245, 52.344464572116074], + [5.080819734196396, 52.34568919166088], + [5.086751404573955, 52.34666196760644], + [5.088320377347785, 52.34738640817108], + [5.0883772530045475, 52.347289284576945], + [5.086948537761057, 52.34657593453158], + [5.081052404462953, 52.34546255841208] + ] + ], + [ + [ + [5.070009727494535, 52.364233726990165], + [5.069259699883951, 52.364077092181844], + [5.068032320430738, 52.364262180153446], + [5.067671048007506, 52.3652496303144], + [5.0685241946698, 52.36553162463483], + [5.069879549983155, 52.36538711220701], + [5.070009727494535, 52.364233726990165] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.45367f4f-1a07-4305-943f-2d4b4c1ae968", + "properties": { + "statcode": "GM1945", + "jrstatcode": "2024GM1945", + "statnaam": "Berg en Dal", + "rubriek": "gemeente", + "id": 323 + }, + "bbox": [ + 188923.546, 417066.631000001, 201580.56899999827, 432746.65900000185 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.063485553200236, 51.86545122420112], + [6.06164072603394, 51.86118032258949], + [6.060434454791714, 51.86129194607241], + [6.059602361006505, 51.857654737259104], + [6.054355158952742, 51.85740523215036], + [6.051423581591931, 51.85666122598864], + [6.0553046029218445, 51.852354123005725], + [6.041683528908092, 51.847011937897825], + [6.0369272949075095, 51.844081660400924], + [6.035670506364077, 51.842638042627065], + [6.033416313150709, 51.84335310616733], + [6.032682246410688, 51.84235152113002], + [6.029153099976701, 51.84512321069416], + [6.020184054090466, 51.841638979424616], + [6.0178389620862225, 51.841559733258556], + [6.0160433335798515, 51.838242418623935], + [6.014713308409859, 51.837496385830875], + [6.010142235341658, 51.835127093082875], + [6.002256778353844, 51.83249053789706], + [5.994426219078938, 51.83091512600153], + [5.98673735948246, 51.83066988261799], + [5.976465174900644, 51.832946420225916], + [5.972110947434013, 51.83342977042116], + [5.968961695847083, 51.83407484074265], + [5.962978205974486, 51.836913959386585], + [5.962903065787589, 51.83685996537525], + [5.9450447090063845, 51.82354402009364], + [5.958150801916101, 51.816931292599904], + [5.957140390340696, 51.81633890752583], + [5.955676243700245, 51.815469430105864], + [5.954788787493777, 51.81590716503069], + [5.9528468764225275, 51.814789605000655], + [5.950672204390571, 51.81623748586645], + [5.949627852272597, 51.81544504230532], + [5.948077947920924, 51.816446184275904], + [5.945926677411326, 51.815111134243544], + [5.947027603277895, 51.814386054552685], + [5.946569887808638, 51.813479917722944], + [5.9494218895896145, 51.81244306949198], + [5.947977864185113, 51.81137137321897], + [5.951144549753416, 51.81056023244957], + [5.956379517201072, 51.81009147000177], + [5.963079178487161, 51.80705919009943], + [5.975238649886813, 51.79926948887516], + [5.979065335774125, 51.79765066370785], + [5.974391910676703, 51.79562307809401], + [5.976782097924301, 51.79427617060186], + [5.974953223446492, 51.79226131675042], + [5.9726324824535535, 51.7895652922607], + [5.9750095323820265, 51.788807804288425], + [5.97398894249851, 51.78842209197213], + [5.974548401873862, 51.78506197568303], + [5.979538839004038, 51.785977077686475], + [5.9808593519649325, 51.785529822254226], + [5.9817656118614035, 51.78413670550094], + [5.984678684445407, 51.78505713458644], + [5.9847932498545955, 51.784428165821545], + [5.987887788434451, 51.782888727804355], + [5.989747683395986, 51.783723736299464], + [5.990427036698373, 51.783197491888345], + [5.983431933883704, 51.77872503435656], + [5.984544074017168, 51.777793572142706], + [5.984022428560238, 51.77535119853991], + [5.982359842372314, 51.773697008094985], + [5.98680159615522, 51.77222690731889], + [5.990750008856924, 51.769682232357354], + [5.992066971936541, 51.770245907467114], + [5.990501099636176, 51.76627730716524], + [5.978290044785134, 51.75971001353938], + [5.973547517592902, 51.75898667465867], + [5.958336078182261, 51.75146073333532], + [5.956824762779082, 51.75193850034436], + [5.951988190985365, 51.74894941861765], + [5.95328789580416, 51.74802415871542], + [5.951952505425363, 51.744370648874344], + [5.9439620718451085, 51.741816813114355], + [5.938298605794952, 51.741593147887805], + [5.935890640838086, 51.74102861130233], + [5.932766879663456, 51.74193844732489], + [5.929948271667801, 51.74442846827343], + [5.930738179786761, 51.74653518955853], + [5.933323245547478, 51.74809858598837], + [5.922485749845885, 51.750615518583665], + [5.915133553614806, 51.7525365899201], + [5.913329390530319, 51.7555150188967], + [5.913393275889967, 51.75900102056663], + [5.91111459385341, 51.76240566183089], + [5.9053757989882705, 51.76568381911449], + [5.901094056765852, 51.77047888460443], + [5.893409258369347, 51.77785292497381], + [5.893087021994762, 51.77814904008921], + [5.887983591298603, 51.7829808193431], + [5.887208905028552, 51.78534556352023], + [5.887442782936183, 51.79537367508367], + [5.881024784409381, 51.801449424181975], + [5.879397499759684, 51.80827779438779], + [5.879110108282534, 51.80952987481598], + [5.882448451053946, 51.80950397875628], + [5.8855469659485475, 51.81020332005321], + [5.886147152235602, 51.81085318845674], + [5.885958209128942, 51.8125012669398], + [5.884087674330938, 51.81385756836255], + [5.881515819014861, 51.81740168161418], + [5.880492500996661, 51.820326167520186], + [5.881931577727027, 51.8210453447519], + [5.882606101995582, 51.82116375298119], + [5.888063393464342, 51.82300330984393], + [5.888313914160187, 51.82310052300435], + [5.88875037587669, 51.82269197260844], + [5.8923391922526145, 51.823893959751466], + [5.893523133071832, 51.82428034134427], + [5.893711177152731, 51.82392781811749], + [5.899095307755475, 51.82461580757385], + [5.900333417018063, 51.82572439542103], + [5.901431824201803, 51.82738811819546], + [5.905303620635754, 51.82745051474816], + [5.90824944409843, 51.829353028831946], + [5.906508129450075, 51.83059065667115], + [5.903939156391165, 51.831342396651145], + [5.896984880223342, 51.832169218314405], + [5.895889041327107, 51.83258482388896], + [5.895794020343071, 51.833578477092836], + [5.898087840588603, 51.836404734444464], + [5.892169494405439, 51.840013150792736], + [5.8945303778805425, 51.840556757147546], + [5.884567391356525, 51.843842040459585], + [5.880389295583765, 51.84505497384061], + [5.885490982343252, 51.84765958651755], + [5.887336661144286, 51.849690592199494], + [5.884622194828022, 51.850168055702156], + [5.887408207059585, 51.85454321092869], + [5.887371750585031, 51.85881325894945], + [5.881584425955962, 51.85910035465493], + [5.881584195281011, 51.859100367311534], + [5.886765709096197, 51.86520300756139], + [5.895967774166042, 51.870533616079406], + [5.903613557296091, 51.872541952747774], + [5.914002331369797, 51.8741793546145], + [5.923633016752711, 51.87462318078593], + [5.933326436461693, 51.873178877189034], + [5.937315412574613, 51.87141112062489], + [5.95528813523312, 51.856928017258554], + [5.95917320898202, 51.85537365877027], + [5.9662472983011, 51.854449297145514], + [5.970333589128019, 51.85475418128262], + [5.974353375956989, 51.85586326831792], + [5.977749583995384, 51.857229765066194], + [5.981180058406508, 51.85994744124952], + [5.9857528384224725, 51.86775767850551], + [5.988747602850197, 51.87147020837244], + [5.9926147483461145, 51.87492666704488], + [6.002050708481595, 51.88028257654201], + [6.009287310211939, 51.88160341526207], + [6.016915678678584, 51.88098596820077], + [6.021932137411128, 51.879294506249025], + [6.035455873048185, 51.873048848341526], + [6.044091205216544, 51.87120709485531], + [6.046284693441949, 51.87091320773935], + [6.054414066419078, 51.86910701854409], + [6.063485553200236, 51.86545122420112] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.28e64286-3161-4892-9564-c347d7bce04f", + "properties": { + "statcode": "GM1948", + "jrstatcode": "2024GM1948", + "statnaam": "Meierijstad", + "rubriek": "gemeente", + "id": 324 + }, + "bbox": [ + 153890.436999999, 392492.9041999988, 173669.60399999842, + 407431.2019999996 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.414644278399982, 51.65570260778963], + [5.422230274504935, 51.65359395014304], + [5.422485944611033, 51.65399787125549], + [5.423389800540978, 51.65378314577808], + [5.438499720845578, 51.64991808399681], + [5.465928052144347, 51.64290123249195], + [5.468912504049135, 51.64169751466536], + [5.497202497093161, 51.626685978165185], + [5.504623117051998, 51.63300568087251], + [5.504858901789401, 51.63607848479295], + [5.516880297555913, 51.631821737151846], + [5.52439681887918, 51.630438696422694], + [5.526215571318931, 51.632256199104056], + [5.531094299621703, 51.6329529788], + [5.532474891116746, 51.634471762079755], + [5.5336626608485435, 51.63551279814699], + [5.542236714477016, 51.63453714204701], + [5.543145893204826, 51.6390999604256], + [5.54241222293014, 51.63915633334223], + [5.542011803027442, 51.64031069762864], + [5.56535933641198, 51.64836950811312], + [5.56782541632317, 51.65035307449792], + [5.570300300018686, 51.65143425080422], + [5.571652022285019, 51.65115469491404], + [5.572767165529214, 51.65061252112304], + [5.579747523931208, 51.64591065893888], + [5.58397510677085, 51.64459402003795], + [5.5857658151171155, 51.64387020590781], + [5.586776990015485, 51.64342285690344], + [5.588356429539286, 51.64265349924236], + [5.586434621077621, 51.640071248743666], + [5.587543281690844, 51.63762726120028], + [5.593172951058047, 51.63350508479711], + [5.59506932276028, 51.63414861766378], + [5.5987359101954155, 51.63208896589467], + [5.602273598347333, 51.62941366629574], + [5.6056287338506685, 51.632092905851444], + [5.607470989721758, 51.633777585830025], + [5.623392341269548, 51.626659994096464], + [5.626568498427971, 51.623400988857874], + [5.642928344133616, 51.60620926789363], + [5.645303256040284, 51.60082406824112], + [5.6485216724925476, 51.59363843464269], + [5.649501786509579, 51.589216806163904], + [5.650683722952855, 51.58717622053395], + [5.650368871104731, 51.58474415104586], + [5.65135725139028, 51.58236019653721], + [5.652673049796828, 51.57831718693295], + [5.6542438402921, 51.57640052160531], + [5.656517496308913, 51.574794841071856], + [5.656486087752632, 51.57426874330512], + [5.6560944702061535, 51.5736780199226], + [5.654379974627852, 51.571255143453214], + [5.6524857891615445, 51.56967852338115], + [5.640335143880971, 51.56441825515316], + [5.625670014311785, 51.55509932091812], + [5.6217953527194835, 51.553268543232484], + [5.619234008827287, 51.55399607711903], + [5.618192415511262, 51.555841531035455], + [5.614225132454341, 51.55460472135138], + [5.607416138837899, 51.559693023129604], + [5.584340985611722, 51.56273139131788], + [5.5553372244439, 51.55852463133836], + [5.5452396518136435, 51.55809640725418], + [5.533083050327249, 51.55780364187039], + [5.537947252783092, 51.55131873916396], + [5.545207344740525, 51.54168695904746], + [5.543042784155194, 51.54000069052648], + [5.547437344072707, 51.53773203260991], + [5.530863591734274, 51.525048675319766], + [5.525047826071297, 51.52186900429216], + [5.522613573418311, 51.523430817089086], + [5.521603313183823, 51.52244858365244], + [5.5210647753524125, 51.52290244128371], + [5.519781761859638, 51.52246471358605], + [5.514551348098417, 51.52324910368742], + [5.51303045482648, 51.52429637483228], + [5.5089314077574425, 51.522687030864255], + [5.508341081680088, 51.52382771868559], + [5.506564941943957, 51.52303670730879], + [5.505453341388338, 51.521667279659226], + [5.500108861965664, 51.52137710300151], + [5.4999238823177645, 51.5252035429865], + [5.503342825601314, 51.52578917792871], + [5.503725146865265, 51.526496453545434], + [5.50257155912085, 51.527293174826994], + [5.501858418684686, 51.52672686621965], + [5.501898241891133, 51.52743713554791], + [5.498271528741384, 51.52852964457805], + [5.496452520420048, 51.52704871518564], + [5.494253692437788, 51.527206374153536], + [5.493449072240688, 51.526685553696694], + [5.488815413741941, 51.53328521295678], + [5.487944593958292, 51.54136262168497], + [5.487145717790996, 51.54184837065478], + [5.482749516757661, 51.5415711359988], + [5.4682838472228505, 51.540646795118136], + [5.457009874674745, 51.53801174046754], + [5.437412300973904, 51.53397280601987], + [5.434424361682381, 51.534328054934775], + [5.431572648864797, 51.53334689160662], + [5.429834783780996, 51.53497013954497], + [5.423842807511351, 51.534055099195804], + [5.4229779428211184, 51.53394066470731], + [5.422158155797316, 51.53691074406015], + [5.420303506887189, 51.53856517407979], + [5.412045088306289, 51.54269993712877], + [5.410935744501103, 51.54226908446843], + [5.405360289030632, 51.54835326808998], + [5.4042333353428695, 51.54829166965381], + [5.404246632757228, 51.5544313524141], + [5.402869305262566, 51.557882921178084], + [5.405201303113507, 51.56202764476662], + [5.4016055321495156, 51.56191485598277], + [5.400083868568597, 51.56240310758541], + [5.39800942833239, 51.56578144178569], + [5.399475792170386, 51.566098142898085], + [5.399343646294226, 51.572194552658246], + [5.402499050358762, 51.57171382853339], + [5.402015035765186, 51.573841903262824], + [5.403815728752315, 51.575907910345606], + [5.395951791096441, 51.576605713562614], + [5.392967258507329, 51.57543009699071], + [5.391450453624588, 51.57616415413585], + [5.393682114479817, 51.579945465600574], + [5.388948698474153, 51.58082731099411], + [5.387825621192139, 51.58245380800409], + [5.389666609237811, 51.58348409728348], + [5.384027271710311, 51.58684545748881], + [5.381442795659568, 51.587601535538994], + [5.385260253773323, 51.58958697198023], + [5.386701575088267, 51.5890812337391], + [5.389056420636331, 51.589117944120844], + [5.38959136854171, 51.58967142325777], + [5.387608453438095, 51.59043091254352], + [5.381443278915583, 51.59620372761484], + [5.38621214376324, 51.6008689442195], + [5.380528761783988, 51.60290189900474], + [5.390423601702772, 51.605423638314555], + [5.394856265127042, 51.605842015335625], + [5.390716009435532, 51.61178033147445], + [5.392414663372762, 51.61236067496405], + [5.3905226901805525, 51.61432929479953], + [5.391015218395477, 51.61654837390934], + [5.388615268625469, 51.61772611138433], + [5.388957329638025, 51.621289808741594], + [5.385917216721557, 51.62090596121802], + [5.384508556133822, 51.62335994851555], + [5.385887997666471, 51.623454314026326], + [5.383852690182753, 51.62408583879007], + [5.3844548173105, 51.6254673756269], + [5.3872448847315075, 51.62592658393958], + [5.383579163284556, 51.6277080253184], + [5.3840782671688485, 51.62838770074305], + [5.383211006489338, 51.62848576759302], + [5.383284924665113, 51.63160385117726], + [5.374997765182852, 51.63369341566374], + [5.3711752013824, 51.63300367892483], + [5.371361048869888, 51.63722591271661], + [5.373190667493684, 51.63703586515532], + [5.378687272936851, 51.63867066455873], + [5.383186359848109, 51.63845110332125], + [5.380089017755582, 51.639188226287814], + [5.379399897044522, 51.6399335577502], + [5.377891640238063, 51.63949458428107], + [5.375296152089296, 51.63998953111687], + [5.371868162232574, 51.64193102019701], + [5.37603447625347, 51.643328906572194], + [5.375439297773044, 51.64445032142015], + [5.3762415553512355, 51.64463004299623], + [5.377169487233532, 51.6435391956581], + [5.379592131364177, 51.64415157488393], + [5.379070000444955, 51.645550794321245], + [5.379898634400305, 51.64570585503412], + [5.378098463168, 51.64663865103162], + [5.379111526733458, 51.64734966286629], + [5.380096283590645, 51.64635627705433], + [5.3841919553366715, 51.64590569145209], + [5.385160441108584, 51.64641909095691], + [5.389823782234629, 51.64563103033156], + [5.395370853833295, 51.64617497744923], + [5.396154779373245, 51.64532075682006], + [5.400042118400149, 51.64656699087077], + [5.401948738027039, 51.64794316815283], + [5.405959793232336, 51.64831180121896], + [5.406058006019845, 51.65021491751853], + [5.412296889735245, 51.650303272036524], + [5.412563836691849, 51.650985308552855], + [5.4109788610403635, 51.65155129781935], + [5.411080838940357, 51.65269151015564], + [5.412621333445578, 51.65277887562064], + [5.41347484968299, 51.6537464175756], + [5.411264895725974, 51.65397047646095], + [5.41142550196245, 51.654458277310425], + [5.415095664931722, 51.654079190944145], + [5.414644278399982, 51.65570260778963] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.57031830-7693-4e01-a9a5-2c4c4ae9c12f", + "properties": { + "statcode": "GM1949", + "jrstatcode": "2024GM1949", + "statnaam": "Waadhoeke", + "rubriek": "gemeente", + "id": 325 + }, + "bbox": [ + 158392.77809999883, 570849.2270000018, 179133.6719999984, + 594772.006000001 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.722391244223774, 53.322313744923086], + [5.721414547753652, 53.31603321574744], + [5.729682159868487, 53.317452167227245], + [5.749301099004772, 53.3135552731869], + [5.747164131061722, 53.309923334792344], + [5.744770028480292, 53.30878864466787], + [5.739393312130655, 53.3039875896535], + [5.735383647243453, 53.29472099679266], + [5.735156066923408, 53.294369995394106], + [5.73057151599257, 53.29446844212008], + [5.729875518692044, 53.29388567917191], + [5.727981825652159, 53.291702730518246], + [5.727083518777574, 53.28938237277086], + [5.727026049840931, 53.28914706324592], + [5.727642108127701, 53.289072411948915], + [5.727627457306305, 53.2889680638489], + [5.725499030905349, 53.28914628936609], + [5.724849123114074, 53.28773298126736], + [5.726350098094681, 53.287607278408885], + [5.723813285993688, 53.284610597049515], + [5.721357706043133, 53.27957217991537], + [5.720129390555778, 53.2749166552686], + [5.722306466405744, 53.27153241457075], + [5.7273399452324005, 53.2683455239168], + [5.735386796782844, 53.26471366877922], + [5.729835786283442, 53.261235763413524], + [5.735956894953565, 53.25147004007408], + [5.736132979551689, 53.24890248206658], + [5.7336195995158565, 53.248513986505706], + [5.743915888773677, 53.24109812016327], + [5.736011874960574, 53.23743492462718], + [5.734953786668666, 53.238054081088315], + [5.729768819630922, 53.2352543956101], + [5.738147649450041, 53.23128337059089], + [5.733625103564147, 53.230894714368006], + [5.732551824975513, 53.2303229382915], + [5.7335965120754535, 53.22231666117065], + [5.734162336469596, 53.215804629845636], + [5.745611657990612, 53.21587634186966], + [5.745369451101634, 53.215521081840414], + [5.747107201747199, 53.21514436996297], + [5.7440225191247825, 53.21261232380305], + [5.743905031849614, 53.21137913438545], + [5.7347405777232074, 53.21121967586657], + [5.736090218938963, 53.206084741354736], + [5.737400332123459, 53.20621728934338], + [5.738382296264282, 53.20420322261027], + [5.742411233934749, 53.200095126604545], + [5.744574245277761, 53.19780481196746], + [5.742116845119234, 53.194277907219636], + [5.740700366001501, 53.18744702372818], + [5.74034248700695, 53.18537189463207], + [5.745409002917455, 53.18523128031985], + [5.741422985386052, 53.18089514074611], + [5.7377861452759, 53.17254669954566], + [5.734812688184149, 53.17147421120416], + [5.733325915826684, 53.16947362182467], + [5.732382985969419, 53.16938870294393], + [5.731345663624256, 53.17074327755158], + [5.7282169904229985, 53.16978523603918], + [5.7283339336468435, 53.16792455574621], + [5.724924743867104, 53.166079001783345], + [5.723529471054009, 53.168422735295394], + [5.723757859420227, 53.16997907320621], + [5.7201272057320445, 53.17052726115096], + [5.7187872416256225, 53.16948279808071], + [5.713244058720396, 53.17522963732823], + [5.707694785632263, 53.17438948490089], + [5.7060986802078295, 53.17338306285289], + [5.699291213019734, 53.173709838063374], + [5.697901339222355, 53.17447904165291], + [5.6972986882108, 53.17771722270785], + [5.692686246255165, 53.17993222731857], + [5.68709595320065, 53.1800389227062], + [5.68591270960258, 53.1816858022222], + [5.684642047868549, 53.181825849850505], + [5.679398216849551, 53.17913285511834], + [5.677291192202909, 53.1763926771237], + [5.675171699269559, 53.177718552302345], + [5.674259923085817, 53.17744465342333], + [5.672524703089114, 53.175170253825236], + [5.6690061163694265, 53.1733328311605], + [5.668102806914254, 53.173667908345976], + [5.668038293661277, 53.17507170901363], + [5.665830093983039, 53.17527455718162], + [5.662062173220096, 53.17219955741306], + [5.66252040523884, 53.17076905716293], + [5.658700239256805, 53.168316294173295], + [5.656292696836557, 53.16796100099035], + [5.652840171879897, 53.166259186148736], + [5.653537154671154, 53.16592571515831], + [5.655140130946402, 53.16514204525625], + [5.656084187500338, 53.16573352044104], + [5.6602966373392976, 53.16427765851774], + [5.660985236142572, 53.16311268517206], + [5.657502491900358, 53.15861505551241], + [5.658085774411841, 53.15873593563552], + [5.6594352397962036, 53.15762358548012], + [5.657659414858295, 53.15723802928105], + [5.6566587056876205, 53.15543363331992], + [5.6569341935436075, 53.154441874375685], + [5.657953241937955, 53.15432096380548], + [5.661904018337, 53.15496757284065], + [5.661577210175274, 53.15310426834469], + [5.6628138465514155, 53.15232407964131], + [5.661973613028908, 53.15091994188672], + [5.6633201473550665, 53.14982125560372], + [5.65847189704989, 53.14941841807304], + [5.6554476665532105, 53.14772744428246], + [5.652030062071762, 53.148690191770555], + [5.649680317158229, 53.14761043816963], + [5.6491827618516535, 53.146862650898136], + [5.652450413394953, 53.1442801324436], + [5.654124328657031, 53.14163897412192], + [5.649763663293745, 53.13932374974033], + [5.649698282074933, 53.1392890334853], + [5.648106905732887, 53.138370596677085], + [5.646528235588555, 53.13791366646071], + [5.6448271529702465, 53.13780954074408], + [5.639438162268516, 53.136210033793986], + [5.638213517634532, 53.136564464056015], + [5.631993134900195, 53.13301956610586], + [5.636183257623275, 53.1306459130162], + [5.635204638296307, 53.12959966543589], + [5.637299568651736, 53.12807850887034], + [5.638371421498577, 53.12796901969663], + [5.638317429406209, 53.12716977062096], + [5.637483569914377, 53.127143534311216], + [5.637347904647186, 53.12414909636101], + [5.635400263452751, 53.12541421363776], + [5.632186767190357, 53.1255892614607], + [5.632088719856434, 53.12627023839058], + [5.627423725639073, 53.126702992068225], + [5.62750227266599, 53.128205357991106], + [5.62448133062382, 53.128200165580445], + [5.6218937253312165, 53.12694563039021], + [5.6244827901368675, 53.1284802960343], + [5.626236019420374, 53.132007709697305], + [5.624209503989695, 53.133890798007826], + [5.62541348774539, 53.134187439391226], + [5.622215914998725, 53.13824792039584], + [5.618871828541192, 53.1361179880081], + [5.5963314439286895, 53.12596357584019], + [5.594420540734151, 53.12946984287012], + [5.591231685175277, 53.12881776324983], + [5.589950102281068, 53.1310015397559], + [5.58976640401054, 53.13098114642379], + [5.587641307420754, 53.13033513414613], + [5.58661600210067, 53.13124608478892], + [5.585919529370152, 53.13099728420123], + [5.582860813373088, 53.132477270351906], + [5.584033612625753, 53.13394927250465], + [5.582455957305939, 53.133109948075045], + [5.581756388225962, 53.13374979789783], + [5.577994607476643, 53.13401954805491], + [5.577602960633082, 53.13369298927894], + [5.575310988162182, 53.13429169657885], + [5.574360955382618, 53.13350938946774], + [5.573980581449851, 53.13120572555694], + [5.571337266623386, 53.12991983432521], + [5.5652000175644485, 53.129600423313924], + [5.562604474754645, 53.13023170624223], + [5.563603082768471, 53.13124252667008], + [5.562297302595592, 53.1315862284624], + [5.559929453236385, 53.134636582030716], + [5.558126899604567, 53.13428684456213], + [5.557448760646587, 53.13472723423228], + [5.555380738068085, 53.13460362779482], + [5.5541907870379665, 53.132938094886406], + [5.550847776247877, 53.13408763653004], + [5.547317061803597, 53.13736545669178], + [5.543825349984442, 53.1385096004376], + [5.542177500860528, 53.139947043654345], + [5.539665605669716, 53.14095308138213], + [5.539182356455339, 53.14198454388599], + [5.53765675945876, 53.14210379784134], + [5.537952060903381, 53.1444650394824], + [5.5312123326759055, 53.14788879566945], + [5.527656661388258, 53.14594957063034], + [5.524645637040179, 53.14554403309328], + [5.520856524896158, 53.14641499935648], + [5.511596940594664, 53.14576652901562], + [5.5101987587899846, 53.144540887314925], + [5.512395722480926, 53.14314901546239], + [5.511704695190816, 53.14216561491906], + [5.512505452657397, 53.14187130420114], + [5.5112934321701115, 53.14083692878448], + [5.510426016323353, 53.140101378720196], + [5.512940391970544, 53.138580760789736], + [5.504985542526985, 53.13472725724795], + [5.504737573334756, 53.13533916360575], + [5.501068785345152, 53.13622510544384], + [5.502888243041742, 53.13784858303234], + [5.50080661622873, 53.13847063162958], + [5.500940809551177, 53.13897989439226], + [5.497918554182761, 53.14073541686175], + [5.496871664694039, 53.14039147986653], + [5.492518629039775, 53.14201241461603], + [5.488270571976982, 53.138305484251944], + [5.484321670235463, 53.13698817755339], + [5.481195627520722, 53.13861568894911], + [5.483024149833592, 53.13886080823913], + [5.48419180226897, 53.139820015290205], + [5.486635333335314, 53.140331816191], + [5.487101667682341, 53.14100021166302], + [5.48462949679155, 53.14171860429195], + [5.48280172697101, 53.14146694943075], + [5.479664679514488, 53.14298996767461], + [5.477269466290148, 53.142942498710305], + [5.47849748250699, 53.14529152362249], + [5.4721918422553255, 53.146614486494], + [5.472834508888064, 53.1488554870557], + [5.47480976134353, 53.15080647911453], + [5.476441605618245, 53.15042075999958], + [5.476722647067544, 53.15034436448333], + [5.4767856767684515, 53.15076261159611], + [5.480251150441996, 53.157338142673964], + [5.482795337046699, 53.15913471914953], + [5.486684231453948, 53.16501602080307], + [5.484743797019301, 53.16583468709441], + [5.486045444508869, 53.16774892016652], + [5.485401910888776, 53.16787475521831], + [5.486010590138217, 53.16967948818836], + [5.488265964859508, 53.16988717875623], + [5.489405107998102, 53.172116556991696], + [5.49166381834067, 53.17222809686661], + [5.493434761899187, 53.17302635401605], + [5.493996203732125, 53.17429730159803], + [5.496367208096854, 53.17780531533373], + [5.49637255363541, 53.1783827381293], + [5.481860458339045, 53.17615711982024], + [5.480237267477299, 53.175960752413545], + [5.48013542040002, 53.176319470123985], + [5.479409342415154, 53.17668463118232], + [5.481607309414898, 53.180037292088485], + [5.480932310494542, 53.18005558703206], + [5.483639146296311, 53.18379299543363], + [5.481699659682429, 53.18378038930973], + [5.482157769021867, 53.18520455401695], + [5.487604752547737, 53.193644115472324], + [5.490168668121965, 53.19406840604895], + [5.489556181242098, 53.20073880563708], + [5.485112619837876, 53.199882629948206], + [5.479343414830559, 53.19966934132965], + [5.4668427916784275, 53.19935180738099], + [5.462458398346217, 53.19994169941688], + [5.461699387596919, 53.201114057199774], + [5.458007526107217, 53.20007097671596], + [5.456213063994504, 53.20303101529628], + [5.437989280898602, 53.209838123916605], + [5.448775399514962, 53.22029920350367], + [5.452677713855429, 53.22269444986873], + [5.46166647594015, 53.22647321843149], + [5.473255078008259, 53.23474354047152], + [5.480126554981645, 53.23792497425034], + [5.48271929791245, 53.24062346815356], + [5.48969453620407, 53.24203658795726], + [5.504440582638543, 53.24870949786351], + [5.515272408043282, 53.25200591793633], + [5.516182900317801, 53.25327490095603], + [5.519280096855966, 53.25435375035706], + [5.524365525590176, 53.25578158412737], + [5.527288631786113, 53.25734422351033], + [5.536384833894333, 53.26408068528814], + [5.538119452146678, 53.26561652548279], + [5.546352824884971, 53.27174517907473], + [5.552850811877287, 53.27477434195392], + [5.561746200343482, 53.285050493615444], + [5.578509374011739, 53.29602019504719], + [5.587016414923092, 53.30046713005536], + [5.622388295143366, 53.31118511963927], + [5.625673763966913, 53.310733791085525], + [5.628335182287769, 53.31272090139899], + [5.634126902071644, 53.31453439977031], + [5.643445503146225, 53.31903724749344], + [5.680347421783466, 53.32810910340694], + [5.717368942207003, 53.33891484828545], + [5.722391244223774, 53.322313744923086] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.dc9f0e60-3b49-4ed5-bc03-f91bf08d8f60", + "properties": { + "statcode": "GM1950", + "jrstatcode": "2024GM1950", + "statnaam": "Westerwolde", + "rubriek": "gemeente", + "id": 326 + }, + "bbox": [ + 264124.6950000003, 540356.0799999982, 277843.6099999994, + 576330.6950000003 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [7.148069605195814, 53.159544419617255], + [7.173959302635665, 53.14793125199741], + [7.17699533715248, 53.152582477967094], + [7.183172711740577, 53.154754256588824], + [7.189244223164386, 53.1548829600368], + [7.189601260096546, 53.14796157359161], + [7.185865202509548, 53.14466808817037], + [7.183123402811405, 53.14014913130805], + [7.180263661294365, 53.138032485066546], + [7.178961564790038, 53.1385454894684], + [7.180076627830445, 53.13131979349883], + [7.181018536571423, 53.127678641332096], + [7.183641193867932, 53.124867887042775], + [7.185872814784532, 53.12422574662299], + [7.183101072513988, 53.121679982102826], + [7.202793505122827, 53.11341057346942], + [7.199219323274691, 53.0813861843925], + [7.200513602343765, 53.074678711760114], + [7.204243238478395, 53.05557409207151], + [7.21293205244502, 53.011060834621404], + [7.217445356723037, 53.00703714058411], + [7.216102664360146, 53.00592203167275], + [7.216487731406364, 53.00564991052305], + [7.2095623342545405, 53.0005066730392], + [7.200509137028007, 52.98148373555055], + [7.181515491515237, 52.941584240571885], + [7.150260581704638, 52.910126783637224], + [7.104370693708483, 52.8639311880633], + [7.087257914784635, 52.84988714088397], + [7.087820936040725, 52.84868721353386], + [7.092739665529198, 52.838196135693074], + [7.072378654932537, 52.83851389972459], + [7.07164094331952, 52.839278179277315], + [7.072192957146666, 52.84521093466172], + [7.076317061943696, 52.848746765189226], + [7.076236882578873, 52.85003012391166], + [7.0700680984014825, 52.84779338520556], + [7.0691381552924835, 52.84786367073496], + [7.0659173046852555, 52.85164196687829], + [7.0642701454103, 52.851043245578566], + [7.063749671672166, 52.85178953230462], + [7.062726515981982, 52.85146844391666], + [7.052300941266023, 52.86149563532505], + [7.051461353512399, 52.86118207053493], + [7.0478849221364674, 52.864506271004515], + [7.046433017999846, 52.865855601788475], + [7.043486223700511, 52.865218578090904], + [7.040286193964239, 52.872818215182264], + [7.018576914506942, 52.87297499472047], + [7.014799274866757, 52.87298657872813], + [7.016562059012825, 52.8754461637716], + [7.039539874788632, 52.90750369192413], + [7.039539903031377, 52.90750373108063], + [7.039580572539965, 52.90756042830068], + [7.04553112117777, 52.915915495723], + [7.026854375416079, 52.9190370114188], + [7.02783157629528, 52.92164628598913], + [7.031887267889694, 52.925305751264474], + [7.036299778269342, 52.92926598064795], + [7.063425971845336, 52.930970487620776], + [7.064653759115385, 52.95077390696913], + [7.064675475022268, 52.95118460422994], + [7.067341982448114, 52.95211145932457], + [7.0699360940621805, 52.95318908226969], + [7.071118315675561, 52.98309281950439], + [7.072058182908146, 53.00378668357066], + [7.092200596501459, 53.012941549894165], + [7.095672854975217, 53.01450031605399], + [7.100013472358187, 53.01644444417272], + [7.09795871734915, 53.02122247493383], + [7.095786265707073, 53.0211989049212], + [7.091959473256963, 53.02284614167971], + [7.088447638302955, 53.0263416539864], + [7.082749308200862, 53.02549768197257], + [7.0803778278409375, 53.02974951957935], + [7.082637851263058, 53.03351535399182], + [7.084263429910781, 53.0395039172744], + [7.086676418080552, 53.040488877347414], + [7.08611936616285, 53.042346912340136], + [7.081655111663605, 53.04446450438257], + [7.07172520925533, 53.04360317522601], + [7.070108345693568, 53.042770987809504], + [7.0680480172008, 53.043508378234634], + [7.067055491412683, 53.04769077656475], + [7.068328492607538, 53.05078423796081], + [7.071996169742706, 53.05073470613407], + [7.074541103101301, 53.049946890985915], + [7.076640146269358, 53.05118405876867], + [7.080162910362145, 53.059173038851846], + [7.0800954166267465, 53.06144222995062], + [7.076880436564273, 53.06369064289551], + [7.070465977296445, 53.06619287915822], + [7.0659467206705004, 53.0672789952731], + [7.06465336770604, 53.06695011545061], + [7.060163479685063, 53.06580826269817], + [7.037198614704391, 53.06483134565775], + [7.0336480405998545, 53.06474787596833], + [7.032378943585067, 53.06677559200377], + [7.029532834567391, 53.06664899744052], + [7.0191007429762875, 53.07146698155296], + [7.015445869600892, 53.07177413555377], + [7.037532905358728, 53.09630940926807], + [7.03822975505968, 53.09707469983521], + [7.04260885191196, 53.101887999271625], + [7.029885649901322, 53.10831562591801], + [7.028177015032968, 53.11108949444987], + [7.025959450455527, 53.11243171205198], + [7.029754349437196, 53.115097082694604], + [7.033659498072122, 53.11604699987072], + [7.035596571571906, 53.119579350192666], + [7.049903341135131, 53.12883090028436], + [7.051180023902143, 53.13021802298083], + [7.068850109916001, 53.13748632586253], + [7.080305721324619, 53.14357221493663], + [7.086207389541432, 53.14502310217073], + [7.089515121352049, 53.14518898842346], + [7.098400106801946, 53.14336091050502], + [7.102139264147093, 53.14323230214418], + [7.10719675246807, 53.14441622323953], + [7.116111424415998, 53.148015892726534], + [7.126278840888728, 53.15144890318199], + [7.133625976499611, 53.15239832227946], + [7.140110282792712, 53.15460650001339], + [7.143216004038656, 53.15716281296592], + [7.145308069018232, 53.16077367014772], + [7.148069605195814, 53.159544419617255] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.76a4e8e3-36cb-4fb6-b668-64fbc06e52dc", + "properties": { + "statcode": "GM1952", + "jrstatcode": "2024GM1952", + "statnaam": "Midden-Groningen", + "rubriek": "gemeente", + "id": 327 + }, + "bbox": [ + 238707.85500000045, 565848.5219999999, 260702.72100000083, + 591239.8000000007 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.8873770467211815, 53.29788200261689], + [6.8897264321319245, 53.2927379956757], + [6.890767452633341, 53.29053389228968], + [6.889239077541994, 53.28981993022951], + [6.891270642419928, 53.28692055866748], + [6.893112061038575, 53.287791936560055], + [6.895596452728207, 53.28591758730707], + [6.887471895888268, 53.28169186817672], + [6.887332782941919, 53.27917884773045], + [6.899089805632028, 53.2794664310691], + [6.9079042628634255, 53.279302714683865], + [6.9082581943245245, 53.27870079194239], + [6.90908246956917, 53.279000124506375], + [6.908142462573447, 53.2700197586805], + [6.910202267097898, 53.2684454951903], + [6.9093366311455195, 53.263558923991646], + [6.912149787697959, 53.26348521560132], + [6.911343595296434, 53.25198626576897], + [6.9092558130328054, 53.243518271230435], + [6.911344191478548, 53.24301546694541], + [6.908591239232712, 53.23395393283503], + [6.912716318376807, 53.225124616061606], + [6.920041382607872, 53.227342508308325], + [6.925532296771689, 53.221557635449905], + [6.922815647880482, 53.22062986525624], + [6.926942470433117, 53.214597400902186], + [6.929004792220029, 53.21308412291672], + [6.920596311742892, 53.207448922074995], + [6.924687874146621, 53.20507124988772], + [6.918397524524813, 53.19873335480223], + [6.916820009816793, 53.195569915286235], + [6.922718167501793, 53.19464785686435], + [6.925108747230981, 53.194248742268734], + [6.922902821321967, 53.190704418781486], + [6.918689543654915, 53.19139242314241], + [6.9157956847259205, 53.18827857087638], + [6.9138600746023595, 53.18302684698151], + [6.911580120102128, 53.181283677718355], + [6.911498062691187, 53.17870354300952], + [6.913084611929698, 53.17692935409899], + [6.9125341818586925, 53.17562343406721], + [6.908203048868004, 53.17428689597696], + [6.907636170768075, 53.17287799087896], + [6.9082840781784345, 53.172234205582], + [6.912208340358797, 53.171966317622804], + [6.907404724833704, 53.16969928832316], + [6.903730925954305, 53.16650601164885], + [6.92927552023799, 53.16905065449669], + [6.929833528072418, 53.16533469596732], + [6.942299142569918, 53.16641923735381], + [6.943783490092004, 53.159013442802156], + [6.9503811479473, 53.158895102988225], + [6.95444777412494, 53.143795826141435], + [6.954928660791773, 53.13674331806749], + [6.955477278317545, 53.1369198117466], + [6.955967667136809, 53.136264726118384], + [6.956316406883023, 53.135045562943716], + [6.956537235291262, 53.13438881851626], + [6.9598721045183085, 53.12449940434948], + [6.9658467635028805, 53.11207788560298], + [6.965294910407109, 53.110831060309536], + [6.961735259108778, 53.11002129733445], + [6.959339123922372, 53.12017590041462], + [6.949835724583468, 53.12116882045756], + [6.934801531653252, 53.124142476971265], + [6.899627304807828, 53.12807347112161], + [6.89894336148612, 53.12816329736422], + [6.8970398228083125, 53.12849418954446], + [6.897099756959059, 53.127578097293075], + [6.894717730186476, 53.12785377137521], + [6.88625355447804, 53.1285995038923], + [6.885047479341893, 53.12742564859279], + [6.884268755802019, 53.12561636863543], + [6.883026935129991, 53.12581725010374], + [6.882814998656238, 53.12519543118828], + [6.880017350296227, 53.12564761884934], + [6.878939537765251, 53.125821779230705], + [6.878619235722635, 53.12514871880841], + [6.8742928565415236, 53.125368440527126], + [6.8741238741348525, 53.12354730313366], + [6.865958020922257, 53.12392810612373], + [6.865928939202782, 53.124387295044734], + [6.865159016204048, 53.124421169355564], + [6.851542183418133, 53.12502114722703], + [6.823101125237104, 53.12621902331299], + [6.821169035195594, 53.1288316877374], + [6.8158059380421925, 53.12742235898351], + [6.803239535972117, 53.12408968370961], + [6.805988098285102, 53.120325947397845], + [6.801673952818212, 53.119171677341605], + [6.806959691502976, 53.09825521052987], + [6.808450537352778, 53.09227957956606], + [6.813944746074357, 53.07097158312735], + [6.7898268514412585, 53.086307726329366], + [6.776509375691281, 53.09476066349912], + [6.744729944415677, 53.1152479940868], + [6.743530418166635, 53.115936425466195], + [6.743253770102585, 53.11656829974175], + [6.742396571928891, 53.116370689803986], + [6.737450956338634, 53.119461728969185], + [6.723256501725685, 53.12005241176114], + [6.721380803465835, 53.120130339211606], + [6.719831760661762, 53.12021853616125], + [6.718724701008477, 53.12024789576108], + [6.69536692827611, 53.12117601511284], + [6.689052760045486, 53.14466442728652], + [6.686274685881276, 53.147847586326165], + [6.6869865172111185, 53.1489653722244], + [6.690215550138153, 53.150393212788266], + [6.6902695908963405, 53.151155000344936], + [6.68871424653212, 53.15461112692571], + [6.679705687859359, 53.16332877391088], + [6.6781785364094315, 53.16480619511421], + [6.671683976644332, 53.16690687940743], + [6.669676477598498, 53.169029163950114], + [6.665367972614278, 53.16944068454163], + [6.663259195717639, 53.170583187327296], + [6.661625555082095, 53.17197929158935], + [6.6611646553767, 53.1733244082771], + [6.660273504756214, 53.17659100733502], + [6.657635750407563, 53.18035332249214], + [6.657241171212741, 53.18076906875162], + [6.657240923214944, 53.18076933468675], + [6.647251202628617, 53.18378196602029], + [6.639468069394171, 53.185980746387045], + [6.643992998958356, 53.18736571541987], + [6.644813332651505, 53.18738214160194], + [6.646821286045124, 53.18793735107025], + [6.6398131035421075, 53.19029657380589], + [6.640197770224024, 53.190517579616504], + [6.642611434273527, 53.19188234734791], + [6.650179182448187, 53.19341039714304], + [6.662155877487048, 53.19981522209732], + [6.6668726965742495, 53.20202034168583], + [6.673596943425537, 53.20065063696345], + [6.683022981908868, 53.200986315428786], + [6.684013104479448, 53.202146958132914], + [6.682484292654336, 53.208487287484466], + [6.679762093364769, 53.208322276995766], + [6.679638449242982, 53.209401415855616], + [6.6800812458596255, 53.21002997461952], + [6.680473000312529, 53.21169168552504], + [6.682658103441656, 53.212059297220456], + [6.682847701583617, 53.21129906043854], + [6.688190104107129, 53.21217995925262], + [6.688232299638157, 53.21263397171327], + [6.690489450438414, 53.21246766519642], + [6.690770837506244, 53.21316097956104], + [6.693361273957634, 53.21299549080778], + [6.693308663890964, 53.214252030559116], + [6.69824526298273, 53.214667451022514], + [6.697515540320558, 53.216965585446964], + [6.698789806565651, 53.21730699284991], + [6.698548347066726, 53.21780623132407], + [6.701166991678252, 53.21940482575788], + [6.702759241194228, 53.22113602911539], + [6.705123587134566, 53.2237064118821], + [6.706367292254623, 53.22453039490185], + [6.705759992691656, 53.22501157018128], + [6.707049421285216, 53.22559920880433], + [6.708203001703138, 53.2262012528477], + [6.707203565053348, 53.22686289085417], + [6.707631661283189, 53.22710443691199], + [6.705672235009795, 53.228256312443804], + [6.707303728238703, 53.23106984581736], + [6.708804527096106, 53.23185574083504], + [6.70901266529072, 53.23311786148988], + [6.707088787231399, 53.23429595036099], + [6.708453045108267, 53.23490867500862], + [6.708870568191134, 53.23517723524639], + [6.7088517630415145, 53.23529665443691], + [6.708829754388304, 53.23543645716106], + [6.712008782141433, 53.23845739644913], + [6.717685704221496, 53.24187250043655], + [6.712720709527273, 53.24461985276402], + [6.714507592146103, 53.24561091412471], + [6.709810721223133, 53.24843132473459], + [6.703537438869636, 53.2519420720751], + [6.703733119392309, 53.25378171211206], + [6.698330355105381, 53.25614494891944], + [6.707515830802641, 53.25943048778712], + [6.717657611834981, 53.263167715159916], + [6.732291767293924, 53.2692086207222], + [6.75113649421049, 53.275399610036324], + [6.772526792028621, 53.28308659506243], + [6.814344532631207, 53.297591662455105], + [6.814354962759, 53.29757984885438], + [6.814551250566792, 53.29735753436549], + [6.816649280263645, 53.295182075764835], + [6.8251616186573445, 53.297622291449294], + [6.828072441624258, 53.29109182404531], + [6.838278388024882, 53.290348174953195], + [6.845805573318319, 53.29012599149055], + [6.850950841252226, 53.29664943880511], + [6.851495667469593, 53.2967854623098], + [6.860254431926324, 53.29632572899183], + [6.860723181893143, 53.294986974466454], + [6.873222322862184, 53.296493755593794], + [6.8745666661760545, 53.29561145267007], + [6.877568109693093, 53.296489045565515], + [6.87960893177364, 53.29784965391203], + [6.8866311429736395, 53.29827483852196], + [6.8873770467211815, 53.29788200261689] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.93d8b636-55df-4a39-9a41-348778c49168", + "properties": { + "statcode": "GM1954", + "jrstatcode": "2024GM1954", + "statnaam": "Beekdaelen", + "rubriek": "gemeente", + "id": 328 + }, + "bbox": [ + 183793.8280000016, 321301.9609999992, 199916.989, 333349.80999999866 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.966325829569703, 50.979769444076375], + [5.968046168662124, 50.979379786246206], + [5.971318470277559, 50.97999665931649], + [5.981357148168922, 50.98321726590105], + [5.9842221616014655, 50.98211458670245], + [6.017363443017619, 50.983401723741736], + [6.018700495523902, 50.98381854395661], + [6.026511759099017, 50.98327203009814], + [6.026802266195733, 50.981309389080074], + [6.021163117748618, 50.9710029252834], + [6.015206976837701, 50.962364390938454], + [6.013000394354167, 50.960397765019636], + [6.009080732685546, 50.95948473563957], + [6.006053520461303, 50.95753539965458], + [5.999249581640617, 50.95782918158873], + [5.992266326749993, 50.95892219049198], + [5.988819568332221, 50.95941623605728], + [5.980123454391773, 50.9606796502916], + [5.978200186054517, 50.959943435158245], + [5.9740421495003, 50.95833959124914], + [5.974007012957863, 50.95858546534528], + [5.973689871027066, 50.9593584864838], + [5.9723005427328495, 50.95927460890398], + [5.969083797898254, 50.96103558125922], + [5.9706801323857635, 50.9621424431152], + [5.969990171613638, 50.962502331095344], + [5.965827954438524, 50.962297785563976], + [5.965356880306484, 50.960924817969854], + [5.96275516415356, 50.9587395602402], + [5.958387763353363, 50.95667407286093], + [5.952653952129504, 50.95250507246131], + [5.9438000032198, 50.949154646741604], + [5.942632487132489, 50.94949124586797], + [5.94229217737848, 50.949014089783766], + [5.942184710357988, 50.94886340881102], + [5.940863258966458, 50.947897042082836], + [5.936029070830828, 50.94632502376884], + [5.931425395609222, 50.94156948594572], + [5.934416130581634, 50.93863578985067], + [5.92846998095531, 50.93661221648551], + [5.9282347129307125, 50.93653962048723], + [5.91895040410386, 50.933226068765684], + [5.9202103882832136, 50.93171191815431], + [5.917697210765637, 50.93055254107408], + [5.913154824221967, 50.92805604810333], + [5.910218750137722, 50.92698599958344], + [5.905514542047259, 50.92755527369512], + [5.9029781682399864, 50.92542381312968], + [5.9011409878488355, 50.92508664069024], + [5.9007447546741965, 50.922983373827584], + [5.898224589398134, 50.923308941758044], + [5.895505916084782, 50.920135030332375], + [5.895757747083147, 50.91896820287763], + [5.899586300987314, 50.91682429716253], + [5.904104014712363, 50.917283502959286], + [5.908234763079225, 50.915468692049906], + [5.906154016464487, 50.914485456329395], + [5.904880042421453, 50.914464796833904], + [5.904385626529522, 50.91364975960063], + [5.916366759387699, 50.909918121657505], + [5.923516612601209, 50.90557017814112], + [5.923404977085121, 50.90440574582957], + [5.920543404922078, 50.903063700833734], + [5.917242132007873, 50.9042645599532], + [5.913392701756072, 50.90272496890411], + [5.914707107160307, 50.9017216777503], + [5.901572345381322, 50.89579345722454], + [5.903666112757822, 50.89423845354868], + [5.890390055503333, 50.88841307320371], + [5.894007297181165, 50.88560206019694], + [5.8904616525972004, 50.88507697584907], + [5.889605240867326, 50.88563649347317], + [5.888598114300866, 50.88434545392474], + [5.8870986078110805, 50.88371833202466], + [5.885859815155237, 50.88430506548048], + [5.880786445124296, 50.882530159555955], + [5.871456020784563, 50.88345921056819], + [5.861618434374936, 50.88241751284662], + [5.856977731579222, 50.88191537907342], + [5.851665151020808, 50.88219973599099], + [5.850129399692241, 50.88366686182699], + [5.841992122062668, 50.88242845380654], + [5.835829823689674, 50.88151413126829], + [5.834687330136825, 50.88064824404117], + [5.834937176370156, 50.88232552154899], + [5.833596272512936, 50.882402954347796], + [5.832716795550792, 50.88577384967091], + [5.836647713257763, 50.89159989491042], + [5.833228625878354, 50.89218873976706], + [5.827765423293426, 50.88954445731848], + [5.824226725115268, 50.88699735245382], + [5.820231957118577, 50.88543783118554], + [5.8191393378230645, 50.88386711805157], + [5.81727449270824, 50.88477615498058], + [5.814989768980067, 50.88623892436289], + [5.8140814586633045, 50.88607340641559], + [5.809865888765983, 50.887847366945365], + [5.802367111443062, 50.88707880622122], + [5.79984206483523, 50.885672876832004], + [5.796773095429937, 50.89174742213483], + [5.7976266404585655, 50.89517397977068], + [5.796563436034586, 50.897696752177275], + [5.800519993509262, 50.89818054006651], + [5.801488262420649, 50.896306526006704], + [5.803481124536677, 50.898037272374495], + [5.80171309164112, 50.900803522918906], + [5.798817263201248, 50.901015079753584], + [5.802256889020379, 50.90241206601106], + [5.796556971085402, 50.90747872527925], + [5.798500864228424, 50.90814357672859], + [5.801002960763721, 50.90875488870846], + [5.800454002107264, 50.91024109521273], + [5.800854845849445, 50.91241550267273], + [5.802299361166341, 50.913622668686514], + [5.801714637281589, 50.91413002124923], + [5.826617608511909, 50.9165913345933], + [5.83155712383595, 50.9171802383159], + [5.831315048772041, 50.919184970367205], + [5.833958668761098, 50.9200233887918], + [5.8415887702864575, 50.91984355298088], + [5.847235985367081, 50.925774499224275], + [5.850764336054251, 50.92849460280142], + [5.855540189036292, 50.936006654041286], + [5.856488031727257, 50.943317067841775], + [5.856929660420883, 50.94400142743198], + [5.854958797104596, 50.946076166667545], + [5.853810050424351, 50.946484099517875], + [5.853086374183057, 50.94644711254388], + [5.84846126590236, 50.94471117897739], + [5.844344750080958, 50.946658596753416], + [5.839891581742605, 50.95019129941855], + [5.840145679103049, 50.95137835141798], + [5.8395611956606635, 50.95394986429297], + [5.840282842598973, 50.9549776205552], + [5.839973214831735, 50.95594208236942], + [5.839817929199921, 50.95705767460108], + [5.841092429643152, 50.959592051686954], + [5.8426083136367195, 50.96075330893336], + [5.843265974226747, 50.963516679842385], + [5.845233149867736, 50.96395301906151], + [5.852185079071688, 50.968026987830264], + [5.855827955045826, 50.965857148169434], + [5.856398884648784, 50.96475542857925], + [5.858873012999932, 50.96656744838117], + [5.860445753904916, 50.96532377837301], + [5.8615569569065595, 50.96608213012312], + [5.865843887120444, 50.96396199781989], + [5.869177864659085, 50.96656752255548], + [5.871211689365596, 50.9642030866699], + [5.873503086469455, 50.96280431004021], + [5.875299204768191, 50.96399280121898], + [5.87678739937878, 50.964743391506005], + [5.877858408335927, 50.96380226921513], + [5.881478189630155, 50.9663204580312], + [5.885180271069622, 50.96775814267983], + [5.885266823070194, 50.96843638998727], + [5.8866920680235, 50.968448165936486], + [5.889273725515886, 50.97100240767334], + [5.89084841045243, 50.97172490516082], + [5.890372877130027, 50.97208978382592], + [5.891036366533106, 50.97409396698567], + [5.895411112535255, 50.97492931499519], + [5.897085535000427, 50.97486501722193], + [5.904828404136133, 50.97456531454496], + [5.915590268503003, 50.977824557416376], + [5.919655718328638, 50.97819317333974], + [5.927723290867631, 50.98232075988452], + [5.933886362533179, 50.98535320232181], + [5.950134400504628, 50.9872071970278], + [5.955184997763152, 50.988416998176206], + [5.957392227155256, 50.985005263886706], + [5.966325829569703, 50.979769444076375] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.c5803b09-640d-49a7-a17b-531809c06811", + "properties": { + "statcode": "GM1955", + "jrstatcode": "2024GM1955", + "statnaam": "Montferland", + "rubriek": "gemeente", + "id": 329 + }, + "bbox": [ + 203267.87700000033, 431333.01999999955, 220053.489, 443837.6409999989 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.148209409038118, 51.9731870005804], + [6.150944721031972, 51.966266236828076], + [6.157867374110605, 51.95879361946716], + [6.162520888008929, 51.95587770068484], + [6.163142654461127, 51.955323271047625], + [6.165746173923386, 51.95493577412992], + [6.169132608240158, 51.953285549462315], + [6.172658048433354, 51.95296840837076], + [6.178508951582837, 51.94870281907746], + [6.182749484163817, 51.948149518075596], + [6.182773828780293, 51.948125436471265], + [6.184620559671575, 51.947691658396394], + [6.186022730137752, 51.94608769606064], + [6.1885905583400795, 51.945536096735914], + [6.1884256126229635, 51.94333869949502], + [6.191733420076835, 51.94245176048097], + [6.1932628042311615, 51.940882748195996], + [6.205009805999219, 51.936640203105384], + [6.205618125246977, 51.937729259574446], + [6.202743158666634, 51.93908701181815], + [6.2030763732712115, 51.941326784447966], + [6.202994028756417, 51.94148453098489], + [6.2030747334763365, 51.94214330386242], + [6.204422380283155, 51.942382162259236], + [6.210326178526628, 51.943382171930736], + [6.212048401556827, 51.94289339594354], + [6.2146028023821795, 51.943220371830314], + [6.216383196393201, 51.944122418414274], + [6.219041313914536, 51.94314157478488], + [6.221360030780355, 51.94392790789419], + [6.2207529862070015, 51.944575575686855], + [6.229304619401133, 51.94456464132762], + [6.254275235730428, 51.9432530410099], + [6.262877005864939, 51.94295722602381], + [6.2728743708578305, 51.94317851864656], + [6.272847662261367, 51.94188485866147], + [6.275391792338816, 51.941799495332866], + [6.279023969198959, 51.943344060583456], + [6.293820181764655, 51.94376685781195], + [6.293820245823189, 51.94376686091335], + [6.3020663670818795, 51.94413404847923], + [6.301843338973133, 51.94196520675692], + [6.302606403680451, 51.94135312284012], + [6.305762803885496, 51.93882101911977], + [6.306804884726716, 51.93794090875572], + [6.3059496592298405, 51.93704533926899], + [6.303980236353881, 51.9380612505638], + [6.299830319687663, 51.9384683507083], + [6.29648794784204, 51.93641537286122], + [6.295669056457942, 51.93534180087999], + [6.2960118241258485, 51.93285729284008], + [6.292887096792876, 51.93131436669885], + [6.291026382723794, 51.928991660518896], + [6.289653096285729, 51.9254889093592], + [6.291147915858551, 51.92241514860014], + [6.294979031731045, 51.92089386963854], + [6.301771438689362, 51.91988882992006], + [6.311294878377751, 51.92063836001965], + [6.31576490667896, 51.91828275183197], + [6.3168757043347, 51.916202956523634], + [6.316142720730233, 51.912737166420904], + [6.310996828448003, 51.91058979568149], + [6.30902215631842, 51.911784713360326], + [6.307963048342748, 51.911391706565524], + [6.308740598058196, 51.91071801452458], + [6.307288422782832, 51.910261765305634], + [6.306283432729284, 51.9082107558856], + [6.305951808039105, 51.90688469369599], + [6.306824722118259, 51.90453521990616], + [6.310866135258452, 51.900035209185106], + [6.315792218109867, 51.89784267429538], + [6.318553983807419, 51.89774392677994], + [6.322612539712973, 51.89599032085287], + [6.329586578736509, 51.89477746115719], + [6.332279171018891, 51.89326778257612], + [6.33107026114311, 51.89207612277869], + [6.324324372037372, 51.88896143655049], + [6.325160331148356, 51.88777842741136], + [6.326900266922512, 51.88478183421175], + [6.3294427598910135, 51.88033627051649], + [6.326539842116346, 51.87902923686794], + [6.331632919336013, 51.874820749503186], + [6.327203153211252, 51.873621115303074], + [6.327226491104168, 51.87245850226692], + [6.329250944808087, 51.871233494380526], + [6.324576550607304, 51.86902982162189], + [6.322492646025441, 51.86867042970978], + [6.312210032376573, 51.86848747127445], + [6.311944768849262, 51.869202014471185], + [6.309582511984276, 51.86916952268921], + [6.30175200019203, 51.86874047806846], + [6.299160345051101, 51.868388582401074], + [6.299006316786269, 51.86782621680684], + [6.295716464995385, 51.86824389368362], + [6.288289972751347, 51.871421028984415], + [6.2833813809587555, 51.872203750871066], + [6.279906837360218, 51.874069701477], + [6.2722615426249915, 51.87465434648818], + [6.269366096741788, 51.87391519531821], + [6.265330233638344, 51.86999253271428], + [6.26222306584254, 51.86824314752946], + [6.25284442067627, 51.86890176680853], + [6.246295277576542, 51.869950241592896], + [6.241826580985138, 51.8689669659004], + [6.234804465814901, 51.87000352492889], + [6.230135616277424, 51.869653340575084], + [6.224632833867423, 51.868543453265076], + [6.21505695175013, 51.86762620408191], + [6.20265135553965, 51.87171981563656], + [6.192760084002041, 51.876439309811026], + [6.183549378333787, 51.8825312026841], + [6.182010070299942, 51.885777641218574], + [6.185990122807471, 51.886851208573745], + [6.191423285279321, 51.88737214182372], + [6.189604321569053, 51.88878861608393], + [6.191085062565459, 51.891657101384595], + [6.187036776274856, 51.89230571402344], + [6.182558099479808, 51.89390680737422], + [6.1697692517773355, 51.90128706014474], + [6.167911771469124, 51.9009419426542], + [6.1667725627036, 51.901047161435216], + [6.1653545155114955, 51.90234467086948], + [6.16285521869793, 51.90294871582296], + [6.160027418646183, 51.90475362761231], + [6.157192734248828, 51.90736756238396], + [6.156623020930556, 51.91122741028626], + [6.154775886530492, 51.911264521275506], + [6.152569590497229, 51.908868535927205], + [6.14332840481187, 51.913627502685], + [6.142583201129548, 51.91542986249316], + [6.143707307697982, 51.918030265334075], + [6.142958625932728, 51.9184575472898], + [6.141433404200995, 51.91592357723161], + [6.140304555239624, 51.91547459731059], + [6.138432547454414, 51.915529328273486], + [6.124489024950748, 51.922292536230955], + [6.112652804744196, 51.927803590581675], + [6.09468872283547, 51.936720131664885], + [6.094148635285782, 51.93882782888917], + [6.091427930079956, 51.93872098671032], + [6.09110167163836, 51.94231024621759], + [6.091370414447587, 51.96291602183814], + [6.089514437785545, 51.96350917259307], + [6.090393681075599, 51.96784428647168], + [6.105200748649926, 51.96669721496331], + [6.108823220263489, 51.96717275891949], + [6.112358183587752, 51.96886708943387], + [6.118293689299909, 51.970535395654245], + [6.122334650318945, 51.971483991516656], + [6.1210903180128255, 51.97339812688178], + [6.129211869184346, 51.978213978393434], + [6.144688334128337, 51.98050015335358], + [6.146466433725556, 51.975591940005174], + [6.14596644748256, 51.975251724650796], + [6.148209409038118, 51.9731870005804] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4bf2b726-5b67-41c2-a476-9aeed3b82d9f", + "properties": { + "statcode": "GM1959", + "jrstatcode": "2024GM1959", + "statnaam": "Altena", + "rubriek": "gemeente", + "id": 330 + }, + "bbox": [ + 105882.50800000131, 413626.4219999984, 138118.92700000107, + 426733.9699999988 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.98775692375039, 51.821059363558135], + [4.999282631405173, 51.820867776437304], + [5.000363907649196, 51.820933382773724], + [5.009344103960625, 51.817512037203635], + [5.010102677687023, 51.81660837769425], + [5.010307524648762, 51.81301044525132], + [5.0124267255100134, 51.8106480839941], + [5.015970383753096, 51.80822186083884], + [5.024246902379331, 51.80477067254393], + [5.026178724197704, 51.80396497031137], + [5.038597533065808, 51.80096573922292], + [5.044479707553497, 51.799326112183365], + [5.048146340110459, 51.79811390108256], + [5.052579438917634, 51.79529064494242], + [5.057119317734001, 51.79069535913676], + [5.061043559413441, 51.78528272162515], + [5.0669661710727425, 51.780553179938906], + [5.0698548777586145, 51.77954878360445], + [5.0742486535279285, 51.779070066887805], + [5.078539165220532, 51.779563744456425], + [5.081953429155902, 51.78071264721944], + [5.087201835146672, 51.785095481325705], + [5.09143788935883, 51.78693304408425], + [5.095890395173819, 51.78764758538891], + [5.100277636024242, 51.78715052908784], + [5.1048581279001555, 51.78572508759052], + [5.108970222586282, 51.78357811526899], + [5.116087977850806, 51.778923630234566], + [5.118645301248375, 51.777812653890805], + [5.137580795151413, 51.772905259969555], + [5.139649074170331, 51.770219389493924], + [5.138687566992999, 51.767452845479724], + [5.136350157314343, 51.76391645432439], + [5.1358906587859146, 51.76031974470693], + [5.137652478001221, 51.75762825185201], + [5.142713817062305, 51.75521022642364], + [5.138112603266311, 51.75072629246639], + [5.126335921961405, 51.74502148311283], + [5.125591438734124, 51.743226604570545], + [5.12598449022953, 51.739629192430215], + [5.126608001626233, 51.737928969100714], + [5.128054699486863, 51.73760714234623], + [5.126531198571028, 51.73731464285061], + [5.118138580130175, 51.73570929752575], + [5.101583040106484, 51.7312154582789], + [5.092124421527644, 51.727583750756516], + [5.081760241387991, 51.72234439842897], + [5.075058276034277, 51.71887713856025], + [5.069098900183965, 51.71628159849444], + [5.062456614778774, 51.713842899092555], + [5.0536297888914055, 51.711817828298564], + [5.041760682557218, 51.7108827494124], + [5.027654294510972, 51.71106133254144], + [5.009452408721998, 51.712819361346945], + [4.9886369212572985, 51.716871352979226], + [4.969986783177094, 51.72109967395029], + [4.958484237259765, 51.722628971552446], + [4.9455634111604345, 51.72304160023139], + [4.935952635850623, 51.72242679349113], + [4.921425484038053, 51.72044282691931], + [4.917991152319767, 51.71995936614485], + [4.901550378059516, 51.71867236886818], + [4.890031386041467, 51.71976849092477], + [4.890017175016667, 51.719769778031356], + [4.8730549209807315, 51.7199982676511], + [4.841592415924551, 51.71344947768782], + [4.836904719393343, 51.712611863763094], + [4.840663929235395, 51.716323610952166], + [4.846937674946745, 51.725524104212894], + [4.846930571302664, 51.733552489105314], + [4.849831104333358, 51.74034530797933], + [4.849411439060214, 51.74482722766891], + [4.852481134998981, 51.74867966463446], + [4.853126169876117, 51.75074827581668], + [4.851328482676456, 51.75617821370641], + [4.8467510800456095, 51.75705641660906], + [4.841881359185388, 51.756686632489185], + [4.833649301213624, 51.7540057321101], + [4.828089465468742, 51.75378408401277], + [4.822276059514972, 51.753856613293046], + [4.812863306740674, 51.756634185333766], + [4.802501611598944, 51.757586358085014], + [4.785403999584813, 51.75593280300802], + [4.7824492069482245, 51.76656830368463], + [4.780654223725177, 51.766418891879844], + [4.778796945552594, 51.76416874509562], + [4.772109348566305, 51.759329642323955], + [4.763942448348742, 51.759067674180244], + [4.750726955856961, 51.752289221768656], + [4.747901713521311, 51.74877150304603], + [4.747363734775174, 51.74662248509182], + [4.7374507553351375, 51.7413004025358], + [4.733650890871403, 51.7365073681544], + [4.721842544707664, 51.73427192319262], + [4.698553145367009, 51.72199204999138], + [4.677286224333661, 51.720110253156356], + [4.676304223471845, 51.72492365057537], + [4.681597589101821, 51.728418728028295], + [4.693262894328346, 51.732281626147035], + [4.703745677747655, 51.73692747186531], + [4.724591579097507, 51.74790551616242], + [4.736630793974386, 51.755568379492274], + [4.740769999835573, 51.758818207112746], + [4.744788205733936, 51.7634874316461], + [4.750568881008354, 51.77576150556164], + [4.755239671168641, 51.781611405533646], + [4.765224479150237, 51.789208362000586], + [4.765983137902961, 51.789631667840155], + [4.773539017784451, 51.79332433578956], + [4.797194138180015, 51.79976996464425], + [4.806875681322382, 51.80033628648609], + [4.828872220684182, 51.79802061246265], + [4.8361084409578865, 51.797839096697686], + [4.845984335976476, 51.79875695585519], + [4.854413462728822, 51.80068312837893], + [4.859667267153294, 51.80268434607918], + [4.88464251226574, 51.81647139787968], + [4.885226875372582, 51.81676969261429], + [4.889400948115376, 51.81889501534335], + [4.909126363448169, 51.825377442159166], + [4.918599011468456, 51.827482190083764], + [4.926986579793933, 51.82830596135512], + [4.936064116271526, 51.828314499560406], + [4.942437574715162, 51.827243176460236], + [4.960515808530892, 51.8250421011327], + [4.969633134786853, 51.82365436791464], + [4.976099736255647, 51.82263304317404], + [4.98775692375039, 51.821059363558135] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d7323a9a-3b38-49a3-a004-a50e5a8465e9", + "properties": { + "statcode": "GM1960", + "jrstatcode": "2024GM1960", + "statnaam": "West Betuwe", + "rubriek": "gemeente", + "id": 331 + }, + "bbox": [ + 127912.32999999821, 423950.9723000005, 156931.3590000011, + 438565.90900000185 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.267761262327018, 51.932756054726525], + [5.27622746896751, 51.93262793495146], + [5.279572655349013, 51.93319543940809], + [5.280976661527247, 51.93316779941471], + [5.281282076830914, 51.93267111025788], + [5.284946865831786, 51.93069164747358], + [5.286724103347488, 51.928510337576036], + [5.285183497626288, 51.92263941263409], + [5.273687370090665, 51.920087057340005], + [5.294893405549515, 51.900052315020716], + [5.297323515167907, 51.901579048109426], + [5.3065849396661156, 51.89657807740642], + [5.306751298369135, 51.896417564323684], + [5.3092063380686945, 51.89662046315983], + [5.3120450142125515, 51.895907237739195], + [5.3187758369788405, 51.89255869106602], + [5.323366423380577, 51.889010349833896], + [5.323415091062672, 51.886983525696046], + [5.321939357422554, 51.88562803762209], + [5.316294045489911, 51.8833230416831], + [5.314951621893284, 51.88181595760857], + [5.315178213291676, 51.880575927809616], + [5.3171934325592485, 51.880232585082986], + [5.322676377786616, 51.88196625269567], + [5.32682997877226, 51.88258782982942], + [5.334934676723525, 51.88176266913267], + [5.337163588302292, 51.8809815191489], + [5.339456063253407, 51.877874047560624], + [5.339023936308964, 51.874034158369035], + [5.336583099657013, 51.869966339158005], + [5.328089340828764, 51.86451731594501], + [5.328358765796124, 51.85940774463573], + [5.328084725147959, 51.85926259784634], + [5.328290440942038, 51.85701747864233], + [5.338534174793813, 51.85826368941294], + [5.338889025896554, 51.85759408848435], + [5.342759483434463, 51.85679830258726], + [5.349293622008207, 51.85842659971379], + [5.360069656851253, 51.858362426585515], + [5.373121321968625, 51.86144694689078], + [5.378407737818571, 51.86339993274416], + [5.37961954115334, 51.86151423957878], + [5.395239158724999, 51.85293350254723], + [5.399781086457307, 51.854572244758906], + [5.407928371198308, 51.854412816721826], + [5.40809602747326, 51.854386832078085], + [5.4095704082226135, 51.85370168378996], + [5.415234177553466, 51.851801019555566], + [5.40914897844902, 51.843923931567595], + [5.40063321565599, 51.837658770487856], + [5.393419546977249, 51.8337932435837], + [5.384391410097796, 51.82729179780822], + [5.370683523419813, 51.811952038752516], + [5.365796306095346, 51.807953554409515], + [5.361095867933307, 51.805719689156994], + [5.354082559044399, 51.80420646049165], + [5.347412137836948, 51.80418637801469], + [5.347068309128082, 51.80423487863437], + [5.343677405108738, 51.80485914706765], + [5.339032094019697, 51.80659414504522], + [5.333551008172002, 51.81034899277383], + [5.328299181931772, 51.81525065928869], + [5.326105155488768, 51.81700860053479], + [5.324842666811741, 51.81780699789357], + [5.316328372143325, 51.821796947209805], + [5.311269551559325, 51.823144415759074], + [5.304600300762132, 51.8239633531776], + [5.297845703365956, 51.82405728573273], + [5.29055341618485, 51.82323520582551], + [5.281717973341229, 51.82120751418325], + [5.2795147874460255, 51.82074068252396], + [5.247175454345989, 51.817122349615076], + [5.237415982004504, 51.815020706146036], + [5.235457174354424, 51.814482212845576], + [5.220700683511052, 51.81090452439345], + [5.212881999614107, 51.81004888317419], + [5.203272348114647, 51.81024066157874], + [5.195123006484557, 51.81150971006859], + [5.176743395342202, 51.81634903049227], + [5.1706429818692285, 51.81703240619318], + [5.159280339727086, 51.81647991122632], + [5.148703597982212, 51.81501668818882], + [5.1404536978696935, 51.81409306085745], + [5.134906381162292, 51.81421883906934], + [5.127341683311996, 51.81516301187845], + [5.121759413137803, 51.81660711183038], + [5.118358310828507, 51.817904924443894], + [5.1009815590930705, 51.82445700943102], + [5.089867742700475, 51.826642501167974], + [5.0824542348251, 51.826847853010236], + [5.074110309410681, 51.8258207888868], + [5.050726760464155, 51.8185330312112], + [5.039864455978506, 51.81731529297098], + [5.035123693507221, 51.817500387461216], + [5.026351766763361, 51.81885673991695], + [5.027701160194713, 51.82354983594603], + [5.028287572490509, 51.82616034275561], + [5.0314150015856764, 51.84108480241829], + [5.021270351315135, 51.841925717993114], + [5.009323008956305, 51.842716141354465], + [5.0034478635502095, 51.84476893031506], + [5.002895104849438, 51.84366182780679], + [4.999934089803546, 51.844391439043655], + [4.999296319520619, 51.84459988083369], + [4.999520386269443, 51.84513740053805], + [4.998895068161421, 51.84524630568717], + [5.000001849442091, 51.84757584954259], + [4.99868458270965, 51.85227720698765], + [4.998305130534676, 51.85486151416082], + [4.993967838095062, 51.861222725681316], + [4.995964976506216, 51.86184855196006], + [5.001250053886862, 51.85905856934385], + [5.005247918789366, 51.85793331826166], + [5.009520465710118, 51.85804598824106], + [5.015628107501588, 51.85917805211312], + [5.026907960578829, 51.85860771503385], + [5.043734655703735, 51.859229917033296], + [5.0466050363110275, 51.858869202334326], + [5.052999413724211, 51.85736068393063], + [5.059185483862137, 51.858154483554024], + [5.062358152453462, 51.859362053627095], + [5.063624061341797, 51.86059883427393], + [5.062781648892416, 51.862027533020196], + [5.054199740969438, 51.865099082786976], + [5.052198839889445, 51.866643008844925], + [5.052310581203279, 51.8699844868874], + [5.055362254895168, 51.87304093180559], + [5.063387690923341, 51.87440977166783], + [5.071739141697975, 51.87410396268511], + [5.073041267176886, 51.87404801130322], + [5.081277245511439, 51.876005267931504], + [5.08365973936872, 51.87836083527273], + [5.085933410392492, 51.8802990435035], + [5.086585882493342, 51.88112454878526], + [5.087492250036513, 51.88430142759931], + [5.088445949113865, 51.88755071503589], + [5.090364595448436, 51.88865449001752], + [5.094825398344789, 51.88874353829317], + [5.097995195439043, 51.887836898313665], + [5.105759335174851, 51.88881093683972], + [5.112736806283509, 51.88777617992665], + [5.1132634398849675, 51.888255120400956], + [5.114274585385849, 51.889265756695046], + [5.115393503823391, 51.89043769521276], + [5.117582198878412, 51.892366345875374], + [5.118498764202481, 51.89637768620636], + [5.116985546483251, 51.896910631561525], + [5.117028798882866, 51.89817592688344], + [5.119672750625911, 51.8982451992053], + [5.132376937200629, 51.91486040288818], + [5.1357208160119345, 51.914195367132], + [5.136571766777253, 51.91469331973733], + [5.135674745403974, 51.91822274241589], + [5.1424328751256905, 51.92493658162861], + [5.150011659134316, 51.92815650180436], + [5.157986329799422, 51.92848139232634], + [5.161662260725169, 51.927499250012445], + [5.166797051622455, 51.92602014760825], + [5.158905218209404, 51.91964490894423], + [5.175900156905171, 51.9211016711169], + [5.1873815030513954, 51.92392138505591], + [5.202630337952105, 51.92476747643521], + [5.207685618497302, 51.92621353812611], + [5.211809913533428, 51.91964536495585], + [5.233164231464214, 51.923584879287944], + [5.242603174137746, 51.92719476669057], + [5.245867327186732, 51.929274110781805], + [5.2550618799294, 51.93548253955924], + [5.267761262327018, 51.932756054726525] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.f4b88a90-c215-441e-8b7f-1af74bc141c4", + "properties": { + "statcode": "GM1961", + "jrstatcode": "2024GM1961", + "statnaam": "Vijfheerenlanden", + "rubriek": "gemeente", + "id": 332 + }, + "bbox": [ + 123314.48000000045, 429919.006000001, 140776.2259999998, + 446111.7199999988 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.172721949548247, 51.96961731859572], + [5.180226656080335, 51.96744832552888], + [5.173991368818868, 51.960341560776264], + [5.163005347185106, 51.946551325641416], + [5.154663180646226, 51.93793499224874], + [5.151467134150006, 51.93361525348091], + [5.149437441712099, 51.93352697535103], + [5.147963229906769, 51.93215495624836], + [5.1490070363444564, 51.9305402646337], + [5.148459847748613, 51.92948519058408], + [5.1424328751256905, 51.92493658162861], + [5.135674745403974, 51.91822274241589], + [5.136571766777253, 51.91469331973733], + [5.1357208160119345, 51.914195367132], + [5.132376937200629, 51.91486040288818], + [5.119672750625911, 51.8982451992053], + [5.117028798882866, 51.89817592688344], + [5.116985546483251, 51.896910631561525], + [5.118498764202481, 51.89637768620636], + [5.117582198878412, 51.892366345875374], + [5.115393503823391, 51.89043769521276], + [5.114274585385849, 51.889265756695046], + [5.1132634398849675, 51.888255120400956], + [5.112736806283509, 51.88777617992665], + [5.105759335174851, 51.88881093683972], + [5.097995195439043, 51.887836898313665], + [5.094825398344789, 51.88874353829317], + [5.090364595448436, 51.88865449001752], + [5.088445949113865, 51.88755071503589], + [5.087492250036513, 51.88430142759931], + [5.086585882493342, 51.88112454878526], + [5.085933410392492, 51.8802990435035], + [5.08365973936872, 51.87836083527273], + [5.081277245511439, 51.876005267931504], + [5.073041267176886, 51.87404801130322], + [5.071739141697975, 51.87410396268511], + [5.063387690923341, 51.87440977166783], + [5.055362254895168, 51.87304093180559], + [5.052310581203279, 51.8699844868874], + [5.052198839889445, 51.866643008844925], + [5.054199740969438, 51.865099082786976], + [5.062781648892416, 51.862027533020196], + [5.063624061341797, 51.86059883427393], + [5.062358152453462, 51.859362053627095], + [5.059185483862137, 51.858154483554024], + [5.052999413724211, 51.85736068393063], + [5.0466050363110275, 51.858869202334326], + [5.043734655703735, 51.859229917033296], + [5.026907960578829, 51.85860771503385], + [5.027387882340032, 51.8637390250376], + [5.021816542542113, 51.869115528579734], + [5.023167179670961, 51.872026718357276], + [5.023227498189976, 51.87574083299419], + [5.0257113182824025, 51.881156939977], + [5.027254431529189, 51.881527811132216], + [5.026955908456512, 51.881918205092965], + [5.023747394200995, 51.881056610894085], + [5.001242457133445, 51.87472591924761], + [5.00126680641585, 51.87499222638966], + [4.996238125000913, 51.873119191568726], + [4.99495245276542, 51.8769562940552], + [4.999452273459163, 51.884283506417155], + [4.996672682803431, 51.89010555736622], + [4.9963018694785655, 51.89668923273564], + [4.994968055710085, 51.90229233350237], + [4.994377201851559, 51.90223927947694], + [4.9943405746386045, 51.90234528265581], + [4.991449530279194, 51.90167333956888], + [4.978838056508582, 51.8983055612015], + [4.974354975055692, 51.897093107548685], + [4.973410699441999, 51.897250049557194], + [4.973740624971699, 51.90766741243567], + [4.967791941386358, 51.91009411316664], + [4.964128182781912, 51.91063800234269], + [4.96416015781443, 51.9122674564867], + [4.963293194791987, 51.91278520015551], + [4.964785223739406, 51.91351896096517], + [4.964121545268275, 51.91375371340886], + [4.956157452716008, 51.91559106386883], + [4.949595488720883, 51.93156606332526], + [4.947639620853774, 51.933710435186065], + [4.945944227038917, 51.933289506995095], + [4.94229315020805, 51.9301666786605], + [4.939235057525854, 51.928938071445], + [4.932126381461086, 51.94755180289925], + [4.929475474039462, 51.95019144918199], + [4.926301291212212, 51.95092794425962], + [4.9335835351884585, 51.959707272132874], + [4.939820507899614, 51.96343996075323], + [4.943305367419566, 51.96394279947816], + [4.948691208629898, 51.96347175033817], + [4.957333549836152, 51.96098403437495], + [4.9638513478730495, 51.95943421268427], + [4.9681017702431305, 51.95933648453702], + [4.976143228731426, 51.96344516723598], + [4.978888037495471, 51.96595788305564], + [4.983908080465726, 51.97059370874642], + [4.98700296681781, 51.97330747747383], + [4.991862257493433, 51.97585292535102], + [4.998073523291346, 51.97787150487801], + [5.002182384422555, 51.97821553619927], + [5.01007749446494, 51.97554415549572], + [5.01610326702513, 51.97214018562541], + [5.022375664213801, 51.969726658062974], + [5.02967287861039, 51.96920336088244], + [5.032848896828819, 51.96974622376395], + [5.036127489757115, 51.97132854729527], + [5.038830287183673, 51.97413619692336], + [5.040402204349428, 51.9774436267203], + [5.04499531809206, 51.98195895122791], + [5.062638115444032, 51.99123307748735], + [5.066286185107292, 51.994073406698654], + [5.077535241679903, 51.99745183199729], + [5.090222734393337, 52.00158365776339], + [5.101399144361827, 52.003033127683466], + [5.1069374373231655, 52.00288945271587], + [5.113917527690851, 52.00167166560383], + [5.119563210007086, 51.99992413394928], + [5.12821678686461, 51.997753001039904], + [5.133868034710612, 51.99668725222335], + [5.13967676084927, 51.99394323430098], + [5.141880508068253, 51.99073009106705], + [5.143595873904202, 51.98421823151059], + [5.143610581939971, 51.98414935028086], + [5.146883184179596, 51.97681740212745], + [5.14971369198154, 51.97427134804363], + [5.1546035785289686, 51.97176615573453], + [5.16095343949704, 51.97047005498546], + [5.172721949548247, 51.96961731859572] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.d2f18e87-36d4-4112-a02b-b5d83e184851", + "properties": { + "statcode": "GM1963", + "jrstatcode": "2024GM1963", + "statnaam": "Hoeksche Waard", + "rubriek": "gemeente", + "id": 333 + }, + "bbox": [ + 75174.38329999894, 412154.23519999906, 102789.9598999992, + 428037.87900000066 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.55492964570388, 51.69685465527705], + [4.544329278239823, 51.69512702329159], + [4.548551305400807, 51.69660331508691], + [4.565560040150664, 51.69973431946486], + [4.572305171292658, 51.700072934130084], + [4.55492964570388, 51.69685465527705] + ] + ], + [ + [ + [4.311311489028662, 51.747113434932565], + [4.334275205042185, 51.74050372053296], + [4.353262261927403, 51.73664426776997], + [4.3571717721793775, 51.73466476175832], + [4.357719234593314, 51.733420327905456], + [4.357144565330678, 51.73181270395494], + [4.350517470183392, 51.73086401050015], + [4.342469783394088, 51.72882744187987], + [4.337106702361495, 51.72662227397111], + [4.323864220604035, 51.72644188370069], + [4.310907721342949, 51.72765168784984], + [4.303541938387328, 51.73003871653602], + [4.30121411482371, 51.7300844090157], + [4.290866417633519, 51.73420695682117], + [4.290453100773524, 51.73448904731308], + [4.291151364938535, 51.73477077028702], + [4.289194050633665, 51.73526036571378], + [4.278945818878104, 51.74060535905969], + [4.277133819342083, 51.74081966727523], + [4.2768268656348525, 51.74166979237796], + [4.267741974127114, 51.74533126486537], + [4.26249679677452, 51.746599760087065], + [4.264303908034211, 51.7457988696415], + [4.262329092471764, 51.7466612027545], + [4.2582931517169405, 51.748648973237096], + [4.2583655985810385, 51.75005973811903], + [4.262092578700724, 51.75361322656251], + [4.26362795257125, 51.75394798136307], + [4.279536744715889, 51.752685302669356], + [4.298482465805146, 51.74926998518317], + [4.311311489028662, 51.747113434932565] + ] + ], + [ + [ + [4.450082983746166, 51.83217348219533], + [4.458562144844636, 51.83164541331211], + [4.467119438271535, 51.83194383422386], + [4.478968343200913, 51.83421405585994], + [4.489094303713286, 51.83539556985162], + [4.499246856107965, 51.83524321472327], + [4.511490074919373, 51.83268440482959], + [4.525477942569267, 51.82985424113594], + [4.531272625639784, 51.83019902249832], + [4.536293925024089, 51.831177200748854], + [4.542843764879531, 51.83186865592189], + [4.548652810365392, 51.83176308026776], + [4.55360870054682, 51.82989690571221], + [4.556345341217486, 51.8278318608001], + [4.5593002905759805, 51.82313870740599], + [4.560725606775506, 51.81873554932166], + [4.564462042806355, 51.814330161186554], + [4.566743356586097, 51.81282915101053], + [4.569631586962593, 51.81130849242987], + [4.578295107504451, 51.80835516809109], + [4.583083476734169, 51.80747987736994], + [4.5968759677706315, 51.80643149747417], + [4.597775588999061, 51.80629581168602], + [4.621221575591659, 51.800803681803664], + [4.621871685768979, 51.79769048839398], + [4.623212685988301, 51.79241316043234], + [4.626840384407917, 51.78475131346423], + [4.627421927609313, 51.78248550604042], + [4.627495381297573, 51.78217194117503], + [4.627711954912485, 51.777638097076355], + [4.626985312449262, 51.772906458598555], + [4.6269291283586105, 51.77266315533824], + [4.62611529822004, 51.76605157999494], + [4.627110220395756, 51.76028313561284], + [4.631122124731273, 51.75010697170179], + [4.6311261280078515, 51.74174595933287], + [4.626579244130007, 51.72825628753038], + [4.623597040914591, 51.721395865171836], + [4.61857923206579, 51.72322709686448], + [4.605927263751629, 51.717066357152895], + [4.595446061772994, 51.71478801682454], + [4.588223072406196, 51.7119137066101], + [4.584837034369704, 51.7115418477183], + [4.580708028230719, 51.71200416713012], + [4.571672073597384, 51.71022602581644], + [4.5714550505505835, 51.709253299490506], + [4.5674269364196745, 51.70721452345092], + [4.5579698600923, 51.70445396107832], + [4.551456900048561, 51.70438567070638], + [4.534974847154106, 51.70190942951036], + [4.530378993229415, 51.70116132469921], + [4.5162033973241895, 51.70330851942508], + [4.511885450840757, 51.70448920649087], + [4.508719432233391, 51.70655747857326], + [4.503178585183997, 51.70658353764581], + [4.493051924743282, 51.7088247084842], + [4.489548767931245, 51.71082198440155], + [4.475127373058093, 51.71299790955667], + [4.467247970670416, 51.7150733405773], + [4.462154356862475, 51.714876605297704], + [4.458037988967813, 51.71570478190485], + [4.451963541867373, 51.71552965665222], + [4.451607586986531, 51.717882906320575], + [4.449790315160052, 51.71750811565407], + [4.448870409700314, 51.71784951872249], + [4.448033902588719, 51.717706214763574], + [4.448255779251871, 51.71686942846589], + [4.448977806656082, 51.71716108089813], + [4.450240838897214, 51.71703119596658], + [4.451310710269675, 51.716601740286364], + [4.451567270647258, 51.714979769398], + [4.446190059384203, 51.715476407510316], + [4.444889467963145, 51.71703545222803], + [4.446703057685384, 51.71711404953503], + [4.446585946010942, 51.717626520865224], + [4.443986858994839, 51.71750598508772], + [4.445266594586433, 51.715455685228505], + [4.443127693702915, 51.71549406195018], + [4.442432058364822, 51.71664495888638], + [4.438984483253203, 51.71556828909021], + [4.436214649259696, 51.71616086680225], + [4.435374317317117, 51.71688987745847], + [4.4215409559824375, 51.71929879676952], + [4.418133279816701, 51.71877882194481], + [4.419525061963385, 51.72083466215511], + [4.4184218823400485, 51.720967069542255], + [4.41691318693636, 51.71902661525003], + [4.412271797358492, 51.7209466626984], + [4.40949251703811, 51.72111571763887], + [4.4074604567600835, 51.72221591976476], + [4.406153034849965, 51.72206434838703], + [4.405020459729173, 51.72035044766916], + [4.404027947245107, 51.72024627658784], + [4.398230772927275, 51.71133434696007], + [4.398045837062541, 51.711378259491504], + [4.397899164025632, 51.711413086901246], + [4.403461625038447, 51.72034300683844], + [4.400348136366791, 51.72140605715819], + [4.400254598876579, 51.72166812674592], + [4.402258580472247, 51.72120816900058], + [4.4034613779099425, 51.72178331932697], + [4.4042415981547895, 51.723363158611136], + [4.3844664391658394, 51.73059367174111], + [4.383594944102586, 51.731755139205575], + [4.371150597998024, 51.73512586226028], + [4.349499359214634, 51.743331561724474], + [4.316968160083875, 51.75196058497757], + [4.290167135830116, 51.757452874123665], + [4.290442344472131, 51.757738271558175], + [4.295905198365716, 51.75658081734899], + [4.296356017988637, 51.75735668302061], + [4.290105706220993, 51.75855879099921], + [4.289687716379967, 51.75773554590758], + [4.2835486638047335, 51.75852182168026], + [4.267190650823076, 51.76105354474945], + [4.257255368286474, 51.76418568490443], + [4.248718458194826, 51.765864507984936], + [4.238504463993134, 51.77261493022515], + [4.236005933942691, 51.775544865561926], + [4.2308889427439, 51.77921272788125], + [4.230411107492707, 51.78042394426854], + [4.232262120617981, 51.78133485838568], + [4.2389498898771425, 51.78018033999996], + [4.247531825037132, 51.78396121594874], + [4.246628033462405, 51.78533932563058], + [4.264368955506803, 51.80339648026857], + [4.268596056614152, 51.804839163099714], + [4.271604248602554, 51.80515545774595], + [4.284496852192102, 51.803664518367015], + [4.295791706202004, 51.80211093059477], + [4.299039394268612, 51.804061000983744], + [4.305858100752337, 51.808595374272485], + [4.317263797921076, 51.8112874362628], + [4.330791238996062, 51.81297461961496], + [4.337084979248023, 51.81643877926648], + [4.3398343254718315, 51.816829069719006], + [4.3471080353227896, 51.81788735323365], + [4.354298215877877, 51.81916501584833], + [4.357432471203118, 51.81902815251953], + [4.369082272591684, 51.81698143693689], + [4.3791949570134285, 51.82249747765784], + [4.382131800907792, 51.824079158535866], + [4.396629614209695, 51.83103455042049], + [4.399136630105926, 51.83142018426472], + [4.412552999811526, 51.82992244220184], + [4.415597637478825, 51.82966874113328], + [4.419013048980663, 51.82959039519019], + [4.422274010546394, 51.83022658523517], + [4.428451891078103, 51.83421099049184], + [4.432482336186925, 51.83704614680436], + [4.443892509330462, 51.83343058147495], + [4.450082983746166, 51.83217348219533] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.217885e4-f945-4be7-860d-ce79a88eb0db", + "properties": { + "statcode": "GM1966", + "jrstatcode": "2024GM1966", + "statnaam": "Het Hogeland", + "rubriek": "gemeente", + "id": 334 + }, + "bbox": [ + 207703.12299999967, 585468.1510000005, 254438.88329999894, + 619231.6486999989 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.212612829521921, 53.36421414970338], + [6.212140109103971, 53.36286494739436], + [6.209626555020773, 53.36369853893041], + [6.210792740225119, 53.364965984912516], + [6.212612829521921, 53.36421414970338] + ] + ], + [ + [ + [6.209636690544652, 53.37236026680702], + [6.209761503712639, 53.370357345001615], + [6.20803994638709, 53.370552673486344], + [6.206702160993962, 53.37206200515641], + [6.207103369499989, 53.372592847063586], + [6.208481491530436, 53.3728680795488], + [6.209636690544652, 53.37236026680702] + ] + ], + [ + [ + [6.207140481973888, 53.370745015660376], + [6.207611102045742, 53.3634970019415], + [6.196634433300578, 53.36400731019742], + [6.181899269710838, 53.37063641652168], + [6.182628022416825, 53.3732931530841], + [6.184074345424208, 53.37384524300714], + [6.187745687947668, 53.37265762340929], + [6.190291979485278, 53.36932903660593], + [6.19106704684928, 53.370233431000145], + [6.190702927452336, 53.373444502836286], + [6.19213668455647, 53.37485996949636], + [6.194399070005416, 53.3748984585464], + [6.197513982541114, 53.37321927773733], + [6.2053035641781475, 53.37227332948142], + [6.207140481973888, 53.370745015660376] + ] + ], + [ + [ + [6.1890093297252715, 53.38590619484769], + [6.184524063106241, 53.383863252568524], + [6.183933414528816, 53.386910336305675], + [6.186584127806528, 53.387597113193316], + [6.1890093297252715, 53.38590619484769] + ] + ], + [ + [ + [6.227078628091079, 53.39012698805818], + [6.222850476829187, 53.3898572072628], + [6.2190676026982565, 53.39088812569124], + [6.21971574839791, 53.39162917277352], + [6.22352046423565, 53.39277501351871], + [6.228034394026006, 53.39344327697614], + [6.229410939236766, 53.393064700140805], + [6.231234636805031, 53.39166907554443], + [6.227078628091079, 53.39012698805818] + ] + ], + [ + [ + [6.778756785299008, 53.46074951632196], + [6.7931211373253975, 53.455722495431345], + [6.7946333142302695, 53.45726707130748], + [6.798364429062786, 53.455010583216364], + [6.813563280088196, 53.46324434370186], + [6.828898680225551, 53.459653985417155], + [6.830188541361655, 53.459756531760725], + [6.831719739737443, 53.46196239292541], + [6.832886849632801, 53.46249960716865], + [6.834921712952395, 53.46245122220875], + [6.834801358306968, 53.46214583364911], + [6.833394919274433, 53.46217453474432], + [6.832180615860493, 53.46164649647369], + [6.830779521735263, 53.45964054511276], + [6.831231794594658, 53.45908106794201], + [6.833531844446667, 53.45829024859983], + [6.834739198936347, 53.45592503503653], + [6.832657230156791, 53.45629676866996], + [6.832525610966002, 53.45606967896507], + [6.8316736437918175, 53.45610670311675], + [6.831630683063507, 53.45648004183282], + [6.822697356823241, 53.458074506302495], + [6.821156665495854, 53.45932801622885], + [6.818215473385709, 53.45978854788427], + [6.817169194287923, 53.4573565994286], + [6.834457178076566, 53.454614735133944], + [6.834488792312094, 53.45411187178862], + [6.832059342762182, 53.45074271789523], + [6.8139294662391, 53.45335499894787], + [6.812882067008494, 53.4508063203864], + [6.829406831201351, 53.448204112071416], + [6.828381851305396, 53.44582095362608], + [6.819795604435411, 53.44714010156335], + [6.81926849124211, 53.444845533358354], + [6.825339778405524, 53.444104883506164], + [6.833709014697803, 53.442898715388324], + [6.837069164075884, 53.4435381313866], + [6.8413220559260335, 53.4429008923851], + [6.84151628607644, 53.44319495424669], + [6.842048315523435, 53.443112911301554], + [6.84197273985204, 53.4428000810345], + [6.847789304550639, 53.441940461038776], + [6.848034170961062, 53.442359394929866], + [6.855352667190067, 53.44128844906912], + [6.856407101502232, 53.44370787782751], + [6.838372043818088, 53.4468561690643], + [6.842581045029791, 53.45721045312023], + [6.842584078615454, 53.458350850227625], + [6.840996321934452, 53.460336202713364], + [6.8415733552612625, 53.46038380707259], + [6.843160448298062, 53.45836640051698], + [6.842913537982515, 53.4564457811979], + [6.85390789647539, 53.45351542483195], + [6.855277250456288, 53.45315034891297], + [6.865085696054882, 53.44975625761181], + [6.866106251313296, 53.4504865371097], + [6.865961237615431, 53.449742807232454], + [6.867646089229332, 53.44987011329613], + [6.866272975433698, 53.44916953526325], + [6.87756851062326, 53.44274190967735], + [6.879645129564172, 53.44142826045513], + [6.880573532891671, 53.44212054015333], + [6.881421109802445, 53.44172677425887], + [6.881148897966383, 53.441376008744], + [6.880350766504369, 53.44102224319666], + [6.881512235907381, 53.44029163025423], + [6.88287902630686, 53.44115388146019], + [6.883470530275867, 53.440823476599945], + [6.882406454422999, 53.43986465174147], + [6.883143296398304, 53.43847204399058], + [6.883462066726758, 53.435536167758784], + [6.881039090578731, 53.43243374448794], + [6.875178940666538, 53.420927517113974], + [6.874210746769434, 53.40803379323934], + [6.871838227812583, 53.40834596870307], + [6.861084378374531, 53.4122518541152], + [6.843717949419436, 53.422419572428176], + [6.792455064506034, 53.40359593995262], + [6.7880579655128, 53.40785013659507], + [6.783983956976769, 53.40747219325695], + [6.784014847713673, 53.409713888941496], + [6.78206445681171, 53.41061285239481], + [6.7786142036210935, 53.41078838418791], + [6.770132952852492, 53.4035582605394], + [6.7538557624999305, 53.397477446837264], + [6.7521464308807655, 53.39675032329119], + [6.748255822688538, 53.394971207372954], + [6.739210482575176, 53.38812223843702], + [6.729683973976058, 53.381096257051624], + [6.709676086759568, 53.37003548252773], + [6.7085619859417776, 53.369463356240416], + [6.708435018900648, 53.36910593386407], + [6.702067719180992, 53.366678361863585], + [6.69704805854944, 53.36290833090567], + [6.686700977857818, 53.36641420152706], + [6.679076249713264, 53.36698904130787], + [6.67083371411812, 53.36496590872048], + [6.663814129732381, 53.3669363204275], + [6.6514811137449525, 53.36458936148415], + [6.647380672497002, 53.36457878000052], + [6.645026047908257, 53.36643718450922], + [6.642181460039747, 53.36565697426956], + [6.6423915003585545, 53.36380005089511], + [6.637001475762956, 53.36286092324917], + [6.63574923323133, 53.36286243896795], + [6.636861372121139, 53.36050113328748], + [6.635954347052615, 53.36031966295926], + [6.634862497626397, 53.362368762757185], + [6.629697387440832, 53.36242106726826], + [6.627697829286429, 53.36124313583234], + [6.627186033013581, 53.360864688351676], + [6.62568726436416, 53.360967039171776], + [6.627547847613625, 53.353343335865446], + [6.6261092148118905, 53.35087518695882], + [6.614727337479905, 53.34921669312054], + [6.606799946778697, 53.348930741091586], + [6.6052457750699745, 53.35016283640514], + [6.603015388408394, 53.34989354038152], + [6.595831009606628, 53.347141282133435], + [6.60144857782774, 53.340423552923006], + [6.60469444557324, 53.340804582859356], + [6.605365768405854, 53.33751569716739], + [6.59256346611681, 53.336015959045596], + [6.592621783870462, 53.335715814568594], + [6.593943040980382, 53.335326016268205], + [6.598021402446372, 53.335494841209915], + [6.601710583327644, 53.32939886401815], + [6.605271581694991, 53.33038344989572], + [6.610193547180699, 53.330114629263726], + [6.614335432112937, 53.32520296998839], + [6.613005832208383, 53.32321737151525], + [6.619862340179092, 53.31442815342731], + [6.63767494504938, 53.31463818942825], + [6.64265766846072, 53.30832104518613], + [6.650369245673503, 53.30920589353956], + [6.654053436540214, 53.308644569362066], + [6.649288352427749, 53.302280941267156], + [6.642768388871197, 53.290933502662725], + [6.6327773061786095, 53.27621194520554], + [6.625872961383987, 53.266139544964716], + [6.633451870348741, 53.259760343740936], + [6.635678101890155, 53.25409439892707], + [6.636045492450774, 53.25143441588816], + [6.635043438083068, 53.25128474275778], + [6.6192969625226645, 53.24944789235037], + [6.618345800872429, 53.25148592872656], + [6.606407233979557, 53.25141658769203], + [6.60635129129401, 53.25374084576126], + [6.590736590998386, 53.255322434529894], + [6.587126621885846, 53.255713648896034], + [6.58634381828678, 53.25587481572715], + [6.5873621825896675, 53.26026026395539], + [6.588533956172453, 53.262548066234054], + [6.585778753825688, 53.26249148874872], + [6.585752332550227, 53.2615398528014], + [6.5672301110711935, 53.26149407596951], + [6.566601188847382, 53.26360735321895], + [6.55394456888905, 53.262125973724956], + [6.552397010474662, 53.262178626236626], + [6.5513871681624485, 53.26237503847895], + [6.549551882511332, 53.26440901425157], + [6.550334058651471, 53.26490942127685], + [6.550263148129653, 53.2649468995246], + [6.54096659424166, 53.26362363376682], + [6.537926182788132, 53.26409670059846], + [6.538470732187209, 53.26262416651341], + [6.539308048422215, 53.26035974873249], + [6.536582566675922, 53.260026662576486], + [6.529683486393694, 53.25824076017993], + [6.523169150134816, 53.25724171943439], + [6.518091230689317, 53.258331156027296], + [6.510825282044057, 53.256787850142466], + [6.5082403580072885, 53.257574051199896], + [6.506459633541323, 53.26890582826119], + [6.506817828414756, 53.270745405612544], + [6.501833581554926, 53.28025937565776], + [6.5039744268308874, 53.288252193918254], + [6.504373628236494, 53.29534927638159], + [6.499740034894666, 53.3005846602079], + [6.497888965144308, 53.30233603196832], + [6.494694844676932, 53.30525451271064], + [6.492622277446001, 53.30726670477029], + [6.4819325518802735, 53.31690606038874], + [6.483592877621713, 53.31992740315073], + [6.482140175723364, 53.32190413282028], + [6.478091151038319, 53.32357249271969], + [6.475288679431524, 53.323922601187384], + [6.4740552681743, 53.32356664814729], + [6.473060119599478, 53.32176354515025], + [6.471460611817444, 53.32097424524835], + [6.46825045210514, 53.32070612110831], + [6.46267556403658, 53.321661250497165], + [6.460868188524907, 53.32292099856953], + [6.462583910656605, 53.32535597967515], + [6.461796950097821, 53.327092214092765], + [6.457265960625016, 53.32879177359517], + [6.453011374464398, 53.32881087987793], + [6.448557109438001, 53.327701631182606], + [6.447010773364343, 53.32665422832477], + [6.44716314561943, 53.324829914734586], + [6.449915857541362, 53.32164353832458], + [6.441293172531491, 53.31680735130675], + [6.4389393979310015, 53.31676809863485], + [6.438144527274984, 53.317498750631025], + [6.4372754363889975, 53.3217268755428], + [6.431096746047296, 53.328206402339774], + [6.429328755240559, 53.32843048419905], + [6.423631605938671, 53.32707057517185], + [6.415560408194045, 53.32830778548197], + [6.413928406437044, 53.3275148958279], + [6.409618645382403, 53.32177507022235], + [6.40575115849902, 53.32007540377428], + [6.398567482237178, 53.319105099462725], + [6.38961608071785, 53.31992418862734], + [6.377616839053708, 53.32003546166546], + [6.367009097382827, 53.321571689450074], + [6.364758625932789, 53.32066495096557], + [6.360396270246196, 53.3152949593268], + [6.356907156480245, 53.313859215624525], + [6.354089784353115, 53.314384440937175], + [6.350145092959876, 53.317324504914765], + [6.346494382372697, 53.31877695988834], + [6.3438656626491285, 53.31907871809391], + [6.340423826103164, 53.318497366501994], + [6.331260248740595, 53.31523614550673], + [6.32684735058565, 53.31530280756917], + [6.3208845648825625, 53.316547173091244], + [6.316531492622854, 53.31939498416103], + [6.315948071449117, 53.325071390875344], + [6.313587016984164, 53.32855855361675], + [6.305667051934662, 53.332630639812244], + [6.296239753620455, 53.33631288559379], + [6.295487761990729, 53.336677793438604], + [6.292270285510376, 53.33845649250726], + [6.294687146575429, 53.33816244574175], + [6.296308686558343, 53.33726936144478], + [6.296959596252748, 53.337122251039204], + [6.297343271333432, 53.337389000406546], + [6.295684261725126, 53.33890236495552], + [6.29916672055625, 53.33947509223349], + [6.299109273183887, 53.339847084018636], + [6.294848643151077, 53.339239675161934], + [6.293100242866843, 53.33931854570336], + [6.29306194227108, 53.33950271530628], + [6.29740834700708, 53.34028687042585], + [6.2969286920738785, 53.34117734167843], + [6.292273749437832, 53.34020507932152], + [6.292361795223687, 53.33974085472472], + [6.291155632383759, 53.3405925836115], + [6.287457007493362, 53.341905416451056], + [6.283014992540043, 53.342517014027216], + [6.27419154347811, 53.34565965814215], + [6.269014562761033, 53.34659987728306], + [6.265588580027207, 53.3468242498837], + [6.258572545789351, 53.34880523439463], + [6.2498445390761, 53.34930172697158], + [6.239833551641933, 53.34430696976256], + [6.234845240683148, 53.34376333849492], + [6.2330550940604015, 53.34415911581689], + [6.232093662574855, 53.34517816686167], + [6.233252052555303, 53.347879167348026], + [6.232293500405795, 53.352151917308674], + [6.24622467800526, 53.35430256250553], + [6.251876343419517, 53.358171882270646], + [6.256431446616983, 53.35724190047756], + [6.25740724096333, 53.35892322485279], + [6.248376352955129, 53.36165208622797], + [6.245203570740898, 53.359673911718595], + [6.240965692336225, 53.358606240920295], + [6.238140796391295, 53.358714148456954], + [6.233911414637485, 53.360228841376895], + [6.234487143490329, 53.361422802515605], + [6.238258775397508, 53.36383086695367], + [6.241836759556492, 53.3649557122622], + [6.239692499876721, 53.36583803162063], + [6.237697114652378, 53.36923651999356], + [6.2357230555972345, 53.36832468275871], + [6.232374928306385, 53.366887958381824], + [6.223136734416801, 53.365766672877925], + [6.217586117927299, 53.36412829689618], + [6.213442158434558, 53.366280378158024], + [6.20968412725947, 53.367188887521685], + [6.2098847815979115, 53.36901115215605], + [6.213443360475074, 53.37191690932006], + [6.22332702260427, 53.37197898079267], + [6.231980903677613, 53.37255137916705], + [6.233707682882567, 53.37321865274833], + [6.225957994222109, 53.37439275168743], + [6.222103760491392, 53.37394635276452], + [6.218880821488312, 53.37431861940492], + [6.207378284034567, 53.3763810192839], + [6.205604238606632, 53.37581398820412], + [6.200907057166912, 53.37566522251022], + [6.191368199115541, 53.37800548421314], + [6.185759704176431, 53.378005417102585], + [6.184454453128138, 53.37853492174161], + [6.183454887702955, 53.38124099138006], + [6.185033463841015, 53.38282136776559], + [6.192066548039423, 53.38236771074744], + [6.199570572546531, 53.3827795977391], + [6.200870944953629, 53.38326541168637], + [6.201686886054363, 53.385588792806274], + [6.196796361643779, 53.39029181185712], + [6.19389419961773, 53.390876951588666], + [6.19228422728565, 53.390333976454535], + [6.191466791756522, 53.3908016069459], + [6.193504605611056, 53.39197931780313], + [6.191535131686635, 53.39278008154755], + [6.180667398126821, 53.39398503929247], + [6.179445276155918, 53.39454984598183], + [6.179691318000283, 53.39592509783141], + [6.18143885239469, 53.39728717192539], + [6.18140026512855, 53.40000385479511], + [6.182527504603386, 53.40177564063235], + [6.184821501098564, 53.403277701059785], + [6.198489812097946, 53.402857688427325], + [6.202386428193993, 53.399397356315134], + [6.210568672777303, 53.395751923816974], + [6.216689710456014, 53.389998797956174], + [6.221605296753777, 53.38816787089195], + [6.224021002937962, 53.38773557432045], + [6.225963650243372, 53.38878380338919], + [6.233509754178292, 53.3889643106758], + [6.236430717044955, 53.391477352691645], + [6.233772854262661, 53.39249460186118], + [6.233212646466501, 53.39371740027624], + [6.232761058486342, 53.39545552676515], + [6.229635693006069, 53.39609876962794], + [6.223905073758883, 53.39650007848175], + [6.2223469007740295, 53.39737508281656], + [6.221034609268847, 53.39643577153302], + [6.218996319351507, 53.397160807049616], + [6.218136263241928, 53.39832999398946], + [6.2132790707777295, 53.39987040051407], + [6.213713538213283, 53.40032378510724], + [6.212887556850359, 53.40084621984781], + [6.211667619428378, 53.400958056840565], + [6.211524379550738, 53.4005395063794], + [6.210939459077714, 53.401404680042276], + [6.211141313506475, 53.40173388434095], + [6.209948102100023, 53.402138917928596], + [6.20957861140055, 53.40210666966973], + [6.209174230016176, 53.40174925636991], + [6.2093743147220595, 53.40134242050377], + [6.209244192451921, 53.40132224127017], + [6.20893872460264, 53.401839281605405], + [6.209608355553648, 53.402579455356566], + [6.20942018055248, 53.40282344970912], + [6.210094728052673, 53.40384417984243], + [6.210662026092675, 53.40431965842924], + [6.20969168411993, 53.40514684591329], + [6.20804852642453, 53.404837018992616], + [6.208121259055127, 53.40457058904511], + [6.207924084805353, 53.404422204040685], + [6.205984060925787, 53.40425820815305], + [6.204624299500711, 53.40435104671494], + [6.203978912478245, 53.40405853325633], + [6.202431300818746, 53.40450574499935], + [6.202375339980105, 53.4051843451841], + [6.207155031232323, 53.40533181996776], + [6.206942915415265, 53.40657640980826], + [6.201927357588944, 53.40637545502379], + [6.201185838713452, 53.40582361727821], + [6.201325385855271, 53.405763738482], + [6.200823902047019, 53.40535688444182], + [6.200716947177591, 53.405395889524506], + [6.200647756775883, 53.405311632316945], + [6.200766113957818, 53.40513204153348], + [6.200684781114235, 53.40510874587706], + [6.199697399584079, 53.405517738402814], + [6.199619613278248, 53.40572440660565], + [6.199440035929026, 53.405743417649006], + [6.19804205513273, 53.40630670004574], + [6.197935782098139, 53.40630741499668], + [6.197572366267551, 53.40644133603904], + [6.1975795335034345, 53.406487711550184], + [6.196898035426859, 53.40676636117216], + [6.196671929854302, 53.40675038384619], + [6.196270152390196, 53.40696317176973], + [6.196261807097094, 53.40705632245789], + [6.195906193094866, 53.407205912110705], + [6.1963272724556715, 53.40785510559314], + [6.195745897021439, 53.40805611490276], + [6.194793817787632, 53.40767382243813], + [6.192687684105402, 53.40850686573071], + [6.192317393241589, 53.40876987409913], + [6.192133678725706, 53.40925306238478], + [6.192283799885923, 53.40967780298738], + [6.191965469790282, 53.40993193817556], + [6.192203088761912, 53.41020195741243], + [6.191606044530735, 53.41044990966097], + [6.191387989840939, 53.41030046138009], + [6.191170270844163, 53.41037996776074], + [6.19133309913846, 53.41056139849142], + [6.191013177374569, 53.410692169338645], + [6.191470882240148, 53.4110874457606], + [6.193476431088193, 53.41033580715685], + [6.195188696308976, 53.410894266651326], + [6.19701076989777, 53.41171772724167], + [6.1999423228023725, 53.4116347351128], + [6.199166282627532, 53.41109722212392], + [6.19766855320845, 53.41111381436322], + [6.197234880621517, 53.41071384125115], + [6.196757637480938, 53.40890493596744], + [6.197536803240276, 53.40858142572109], + [6.198368255289814, 53.40914306197088], + [6.1990076774693375, 53.4088424952432], + [6.199082385204346, 53.40787737476554], + [6.203053482565509, 53.40794860002314], + [6.212273508207063, 53.40959929181897], + [6.211313392567637, 53.41118595372313], + [6.20240962262313, 53.40940435823761], + [6.200149330773242, 53.409356648109316], + [6.200021248058954, 53.40950586393741], + [6.201108712077957, 53.409546377352285], + [6.201791195627008, 53.41008586084493], + [6.201127016564105, 53.41104360947515], + [6.201240489275825, 53.41113084199653], + [6.202419682124389, 53.40996876809612], + [6.211012062569196, 53.411468835685355], + [6.213053136046844, 53.41159830419518], + [6.213671985807487, 53.410967235489146], + [6.214725608422762, 53.409215586987706], + [6.2443048736107505, 53.415108014944295], + [6.2493352904131925, 53.41551390650092], + [6.255062162196506, 53.41516322923473], + [6.26065863333699, 53.41391620369868], + [6.2982619629213055, 53.39999063794796], + [6.302364846368626, 53.39634539341182], + [6.306040621339058, 53.39273079494154], + [6.309199813592878, 53.3929882626359], + [6.310777160457013, 53.39418059051859], + [6.321453844114832, 53.39849598317166], + [6.334823747056372, 53.40259967995116], + [6.338386126962808, 53.405221414065394], + [6.340487082549076, 53.40801855886677], + [6.348838603384398, 53.41007687366144], + [6.351075805972666, 53.411764597665716], + [6.354869245996585, 53.411543389811], + [6.35792429034614, 53.41223752684326], + [6.367733670202405, 53.415758591894075], + [6.396404711791542, 53.41992834978829], + [6.404519136461507, 53.41984915093456], + [6.410675910146511, 53.42075684444723], + [6.415369961545786, 53.422336639051444], + [6.419475668881397, 53.42145616356816], + [6.42346061683535, 53.422163783888955], + [6.467883334585738, 53.424992487870384], + [6.485366914202626, 53.42798161989965], + [6.491496253806229, 53.428523351780896], + [6.501889858016403, 53.42840151776614], + [6.52144924489502, 53.43002726769267], + [6.521985522155492, 53.42957480935759], + [6.537654223823358, 53.43061678220995], + [6.537055434176413, 53.42796767424603], + [6.546867544128767, 53.42891449437081], + [6.5663463310658985, 53.432148437350406], + [6.567566430090538, 53.43173101187637], + [6.568107274607568, 53.432546330495065], + [6.579474561277369, 53.43373956045893], + [6.582340120267584, 53.43487654767281], + [6.599397537668755, 53.43826661416759], + [6.61052497863364, 53.44170601249952], + [6.615511957743136, 53.44508523128287], + [6.62304434614447, 53.447094048590266], + [6.633811290804257, 53.45120787590239], + [6.637640828243109, 53.45178701529181], + [6.639906939489118, 53.452827367611306], + [6.646773812228276, 53.453918356371624], + [6.654305463498217, 53.4559676429152], + [6.667247916724854, 53.458167323758055], + [6.670298706435786, 53.4578079887973], + [6.674353915732382, 53.45832826014015], + [6.695796107098297, 53.46199913789068], + [6.733463663989578, 53.4652173901106], + [6.745993917891189, 53.46601229563058], + [6.756566647432224, 53.46522959026713], + [6.778756785299008, 53.46074951632196] + ] + ], + [ + [ + [6.7301593674728375, 53.464972798105656], + [6.730074783919569, 53.464973740858284], + [6.72987903966881, 53.466443729411885], + [6.7301593674728375, 53.464972798105656] + ] + ], + [ + [ + [6.4233673001668015, 53.51531093660088], + [6.421414511256519, 53.513698122021665], + [6.416260227074648, 53.516512496501676], + [6.414363966927869, 53.52408987785647], + [6.416201727764323, 53.525459347338426], + [6.4228722825417375, 53.525369661891226], + [6.423705674454673, 53.52477585721344], + [6.4211214475565, 53.5242113923245], + [6.4223242178598685, 53.52306037431724], + [6.423417425478091, 53.52303469117716], + [6.424541240576104, 53.52201469518252], + [6.425505093823158, 53.518910208930194], + [6.4233673001668015, 53.51531093660088] + ] + ], + [ + [ + [6.594651608593973, 53.52231140589543], + [6.595708003108353, 53.52047721541588], + [6.599140787026381, 53.520530626883826], + [6.598291440008151, 53.519841109734266], + [6.59569929490465, 53.51958079474171], + [6.592568539559091, 53.520073549122564], + [6.585886037802455, 53.52346250148601], + [6.58700068212309, 53.52541766094571], + [6.588743599948695, 53.526112554244044], + [6.594529482665072, 53.525210902113315], + [6.597694200645129, 53.52309438235027], + [6.594651608593973, 53.52231140589543] + ] + ], + [ + [ + [6.576598402295772, 53.54206447793148], + [6.580597225953574, 53.54154792660911], + [6.591650049475178, 53.5417873079022], + [6.607249796547807, 53.53996947349485], + [6.613407509176588, 53.538408450943855], + [6.620514322778946, 53.53535428876018], + [6.6192956251856945, 53.53472096465049], + [6.613273515448278, 53.5372457142634], + [6.608088752985836, 53.53798170480589], + [6.605543038391314, 53.537556826104456], + [6.601551066161417, 53.53699960582431], + [6.598752592252669, 53.5363102495851], + [6.580656538649243, 53.53671411811818], + [6.574213271494495, 53.53896543854504], + [6.5699452653494586, 53.542034442471795], + [6.572299815636149, 53.54274201759823], + [6.576598402295772, 53.54206447793148] + ] + ], + [ + [ + [6.504950910637211, 53.55128228689295], + [6.50980886791917, 53.54624474104322], + [6.513009712629066, 53.54046170119572], + [6.512023671662566, 53.539389197331616], + [6.518410132972138, 53.53696992230052], + [6.529383916791273, 53.534917506435626], + [6.53183040860685, 53.53384570067415], + [6.532265995081505, 53.5329738237656], + [6.529488934627118, 53.532833736607145], + [6.516281150187849, 53.5343607353086], + [6.505850374694256, 53.5375841511545], + [6.498450048504536, 53.54191297403547], + [6.496342200469874, 53.5451557126984], + [6.4969281635484, 53.54676738049466], + [6.489890486660587, 53.54999656424935], + [6.486899644945991, 53.550613942659396], + [6.483305035791324, 53.54821004582498], + [6.482438833946853, 53.54618290114342], + [6.486777934157065, 53.5442498755587], + [6.489809718469296, 53.54456915052031], + [6.504817544877348, 53.53689592769309], + [6.509481969659259, 53.5351459631482], + [6.50949434972957, 53.53395972836228], + [6.507193742624815, 53.532659293632435], + [6.502897897251143, 53.535263528016046], + [6.495611872804685, 53.53294046255877], + [6.4880768898351215, 53.53288271576713], + [6.481002329320881, 53.53434209689176], + [6.480728166154108, 53.535383573741335], + [6.473230591892922, 53.53576589147355], + [6.473098132541843, 53.53443080583729], + [6.475028403268266, 53.53121066940767], + [6.477697956930658, 53.52968040783461], + [6.486118219419949, 53.52710268671029], + [6.488470684346395, 53.52336151796041], + [6.4884159296322235, 53.52205813074437], + [6.485336551245982, 53.5179466796421], + [6.480519936641111, 53.514291178043074], + [6.4788619599412405, 53.51401236909708], + [6.476610289615603, 53.51698468184818], + [6.475180278242437, 53.52140760481862], + [6.470055866708915, 53.53086420396854], + [6.461051326286434, 53.539074509405594], + [6.460618360982073, 53.54064059806533], + [6.461980014377219, 53.543028727380516], + [6.4689772974102295, 53.54792527848306], + [6.481042231977115, 53.552214593113874], + [6.487404993637242, 53.55358315346586], + [6.495221922507502, 53.55404653268806], + [6.50016165605509, 53.55363258504576], + [6.504950910637211, 53.55128228689295] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.5898ec8e-d162-49af-b89d-ff6016ed645d", + "properties": { + "statcode": "GM1969", + "jrstatcode": "2024GM1969", + "statnaam": "Westerkwartier", + "rubriek": "gemeente", + "id": 335 + }, + "bbox": [ + 207768.72899999842, 567128.6147999987, 230032.09299999848, 595331.182 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.290521643845998, 53.33942031562039], + [6.292838064159901, 53.33492607460454], + [6.293584138040667, 53.33511716684136], + [6.292177918199448, 53.337730663467795], + [6.292241590949095, 53.3384723543686], + [6.292270285510376, 53.33845649250726], + [6.295487761990729, 53.336677793438604], + [6.296239753620455, 53.33631288559379], + [6.305667051934662, 53.332630639812244], + [6.313587016984164, 53.32855855361675], + [6.315948071449117, 53.325071390875344], + [6.316531492622854, 53.31939498416103], + [6.3208845648825625, 53.316547173091244], + [6.32684735058565, 53.31530280756917], + [6.331260248740595, 53.31523614550673], + [6.340423826103164, 53.318497366501994], + [6.3438656626491285, 53.31907871809391], + [6.346494382372697, 53.31877695988834], + [6.350145092959876, 53.317324504914765], + [6.354089784353115, 53.314384440937175], + [6.356907156480245, 53.313859215624525], + [6.360396270246196, 53.3152949593268], + [6.364758625932789, 53.32066495096557], + [6.367009097382827, 53.321571689450074], + [6.377616839053708, 53.32003546166546], + [6.38961608071785, 53.31992418862734], + [6.398567482237178, 53.319105099462725], + [6.40575115849902, 53.32007540377428], + [6.409618645382403, 53.32177507022235], + [6.413928406437044, 53.3275148958279], + [6.415560408194045, 53.32830778548197], + [6.423631605938671, 53.32707057517185], + [6.429328755240559, 53.32843048419905], + [6.431096746047296, 53.328206402339774], + [6.4372754363889975, 53.3217268755428], + [6.438144527274984, 53.317498750631025], + [6.4389393979310015, 53.31676809863485], + [6.441293172531491, 53.31680735130675], + [6.449915857541362, 53.32164353832458], + [6.44716314561943, 53.324829914734586], + [6.447010773364343, 53.32665422832477], + [6.448557109438001, 53.327701631182606], + [6.453011374464398, 53.32881087987793], + [6.457265960625016, 53.32879177359517], + [6.461796950097821, 53.327092214092765], + [6.462583910656605, 53.32535597967515], + [6.460868188524907, 53.32292099856953], + [6.46267556403658, 53.321661250497165], + [6.46825045210514, 53.32070612110831], + [6.471460611817444, 53.32097424524835], + [6.473060119599478, 53.32176354515025], + [6.4740552681743, 53.32356664814729], + [6.475288679431524, 53.323922601187384], + [6.478091151038319, 53.32357249271969], + [6.482140175723364, 53.32190413282028], + [6.483592877621713, 53.31992740315073], + [6.4819325518802735, 53.31690606038874], + [6.492622277446001, 53.30726670477029], + [6.494694844676932, 53.30525451271064], + [6.497888965144308, 53.30233603196832], + [6.499740034894666, 53.3005846602079], + [6.504373628236494, 53.29534927638159], + [6.5039744268308874, 53.288252193918254], + [6.501833581554926, 53.28025937565776], + [6.506817828414756, 53.270745405612544], + [6.506459633541323, 53.26890582826119], + [6.5082403580072885, 53.257574051199896], + [6.508246236549454, 53.25727386825922], + [6.5080024669438385, 53.25621462376696], + [6.5114424223694165, 53.25411424016816], + [6.50215140191113, 53.24770632705575], + [6.49704015751118, 53.24676648233367], + [6.495846650921114, 53.2458230313288], + [6.491985479788564, 53.24555469691966], + [6.4924357566449515, 53.24667469038123], + [6.490427497496022, 53.24732092109065], + [6.488725509121214, 53.24723139372869], + [6.488601659710273, 53.24901635243696], + [6.480920741035802, 53.250185288178244], + [6.480474604972311, 53.24550550488332], + [6.476654900094159, 53.23650235020278], + [6.4697679149274485, 53.220468633415756], + [6.4644736106609555, 53.207614318031176], + [6.464679102901922, 53.207459426331994], + [6.467003612670969, 53.20617038243897], + [6.466382811449497, 53.204193287359914], + [6.46274561567743, 53.20197878676165], + [6.463461420829451, 53.2000582309544], + [6.449947913307895, 53.1966967064435], + [6.447712074699071, 53.196440585061325], + [6.445661941956306, 53.19101548718267], + [6.442866783736723, 53.18774042308918], + [6.438017906438784, 53.18565153606916], + [6.424487530526685, 53.18167802192382], + [6.407970277615127, 53.17814843033424], + [6.405593276087354, 53.176474865757896], + [6.405469531334325, 53.176282999785826], + [6.404120699733266, 53.172955005814444], + [6.404137894491499, 53.16857237993115], + [6.402687250940926, 53.167005663107595], + [6.398594459547915, 53.16486210593761], + [6.397614301639024, 53.16451272095509], + [6.395093718111999, 53.16352872133473], + [6.391128129136729, 53.1594187543223], + [6.3887285508660625, 53.15801477184856], + [6.3814709593859495, 53.15343602083885], + [6.381564016423236, 53.15318586104405], + [6.381546329972608, 53.14959267377728], + [6.382612271281861, 53.14957048973382], + [6.381472577413085, 53.14773785673552], + [6.366051891437271, 53.122558348791934], + [6.365626896316197, 53.12128980155935], + [6.365354000034606, 53.119527280419234], + [6.363559885381331, 53.10756024735014], + [6.356620477282122, 53.10708451786673], + [6.344442859550672, 53.087150569019684], + [6.340999242976237, 53.08794458616267], + [6.337795882194794, 53.08868884563361], + [6.31515744850534, 53.09405278464002], + [6.296426933594896, 53.0984433384825], + [6.293172622208457, 53.09921001551229], + [6.290565601165267, 53.099829050814776], + [6.283050305351933, 53.10686313799068], + [6.274138824602123, 53.11116116546389], + [6.261684591161832, 53.11429269474497], + [6.255594842824107, 53.11419971583625], + [6.2543814453970095, 53.11413149412085], + [6.251264702986161, 53.11393695951403], + [6.2393639590598555, 53.113388825749134], + [6.225961810546482, 53.1143001400744], + [6.222606765128028, 53.114914146199], + [6.212860536767342, 53.115232538573835], + [6.206271316716216, 53.115444484553024], + [6.206205389699969, 53.11544776331626], + [6.205609813682211, 53.11546645468492], + [6.202381526670751, 53.117220591237256], + [6.192941185449468, 53.12335659409693], + [6.185716695339529, 53.129213440409536], + [6.179069281845303, 53.133992024650205], + [6.175677576274714, 53.13507637668683], + [6.176303876147254, 53.15278529385354], + [6.17675035960531, 53.15950451336303], + [6.177337001500711, 53.16698276466403], + [6.181223876468422, 53.17034826482981], + [6.183016801074696, 53.1739843611694], + [6.18579109766844, 53.17883236142514], + [6.18803420529086, 53.18248671651864], + [6.193097426731803, 53.189277732384205], + [6.1952767965628475, 53.19149850199764], + [6.197037147762689, 53.192015868896654], + [6.199830600385461, 53.1953226983288], + [6.199621421570672, 53.198355319732336], + [6.2041145624893534, 53.19975847489949], + [6.209578174623756, 53.19996097745447], + [6.219242358907386, 53.20612981135383], + [6.22483962026343, 53.21200382399431], + [6.224750136963305, 53.21457857334096], + [6.228934101001986, 53.2168054779209], + [6.2299884186874275, 53.217818449798294], + [6.2301733203784115, 53.222440431547085], + [6.225339457465566, 53.22545538154753], + [6.224632096752965, 53.230073794901486], + [6.221680492060702, 53.231667697143166], + [6.214583935996605, 53.233710697402486], + [6.214805951171299, 53.235648528077135], + [6.21554252297969, 53.23698515481565], + [6.220239054202337, 53.237347760674616], + [6.224972056678058, 53.238592839103106], + [6.22461591919349, 53.23970094121697], + [6.222823443907456, 53.239497672818864], + [6.21844951535541, 53.241691303291695], + [6.217978238112253, 53.24193213049143], + [6.21945349010247, 53.24286675052613], + [6.225111529999022, 53.2445904205255], + [6.227743333038975, 53.24523967288594], + [6.229707212970533, 53.24475189970332], + [6.2310948656749465, 53.24510536235962], + [6.232075255667237, 53.247124663756146], + [6.229601568468722, 53.24891319721085], + [6.230318479261675, 53.25042641878553], + [6.233665183512857, 53.25039899832441], + [6.2351006793694905, 53.25335484367728], + [6.2326252661287445, 53.25456391670758], + [6.231749084922092, 53.255946627939615], + [6.232173048892785, 53.25674741236948], + [6.234944825295346, 53.25670389941301], + [6.237584186728123, 53.25754715890445], + [6.2387630276585195, 53.2596810334801], + [6.237973446654104, 53.261582736068576], + [6.239415661036724, 53.26314323572193], + [6.241623516935737, 53.26395168319078], + [6.243484499403227, 53.26545982472689], + [6.243625014747721, 53.26645952773652], + [6.246863172423747, 53.26829583092675], + [6.249977289708137, 53.267219997278076], + [6.2534741384363235, 53.26772462861557], + [6.2549434641655575, 53.26852454772267], + [6.255763293835002, 53.270836489669236], + [6.252964937210827, 53.27346786306819], + [6.251408724147529, 53.27725496897074], + [6.252941136409826, 53.28445924738474], + [6.254266057383521, 53.28864283828208], + [6.259903656385465, 53.29107570987692], + [6.267456569136936, 53.290854853328824], + [6.26926786236765, 53.290278463828386], + [6.270754922561479, 53.29206013980639], + [6.270286679905859, 53.29315973074845], + [6.274374946432766, 53.29648870729568], + [6.274488005110427, 53.29914738611228], + [6.27830717544525, 53.30273093568636], + [6.279478633872877, 53.30332438065155], + [6.29025017149119, 53.305377683856264], + [6.294016443954919, 53.30836857724429], + [6.293579227229854, 53.308615225662514], + [6.29277933349301, 53.30989215627765], + [6.286763298904992, 53.31201036467476], + [6.284027779511329, 53.311792166201855], + [6.280503416685089, 53.31258148469946], + [6.286901048804506, 53.34102626580524], + [6.288469802685005, 53.340557213089866], + [6.290521643845998, 53.33942031562039] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.3ae7d9ea-9ee5-4a78-890d-183acae6a900", + "properties": { + "statcode": "GM1970", + "jrstatcode": "2024GM1970", + "statnaam": "Noardeast-Fryslân", + "rubriek": "gemeente", + "id": 336 + }, + "bbox": [ + 176992.439100001, 584302.8189999983, 215445.50829999894, 603439.364 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.1755554677994144, 53.3440676933321], + [6.175679158033787, 53.34383714008593], + [6.176785408589793, 53.344176457423764], + [6.178241072272197, 53.342638849014854], + [6.177537159788009, 53.34199372429875], + [6.176203153581756, 53.34232986933203], + [6.174909019366651, 53.34334793025055], + [6.174410181715483, 53.343929891815364], + [6.174530734451056, 53.34514440587226], + [6.1758188142920964, 53.34599091037318], + [6.176722441368531, 53.34543791440769], + [6.1767466066013705, 53.344460924751324], + [6.1755554677994144, 53.3440676933321] + ] + ], + [ + [ + [6.16851157537867, 53.359455261741935], + [6.168964064262896, 53.35901720841624], + [6.165114328597118, 53.3595514697992], + [6.166246066866937, 53.36244787779159], + [6.165272618528558, 53.364759904138474], + [6.166117682668669, 53.364565872964576], + [6.168748165549299, 53.36076177678848], + [6.16851157537867, 53.359455261741935] + ] + ], + [ + [ + [6.1835474852645715, 53.412684966453426], + [6.1850279394129295, 53.411405815119814], + [6.18204850371372, 53.41213773813518], + [6.180789160046411, 53.41323773586021], + [6.1835474852645715, 53.412684966453426] + ] + ], + [ + [ + [6.183482498000433, 53.41429160390296], + [6.1894084322998175, 53.4124426061349], + [6.191470882240148, 53.4110874457606], + [6.191013177374569, 53.410692169338645], + [6.189752605658509, 53.41100176966657], + [6.187731063563941, 53.410578828665734], + [6.186740799630766, 53.411978525105944], + [6.182955493333236, 53.413409980473524], + [6.178388222679509, 53.413773406805745], + [6.158950388952222, 53.408239695463124], + [6.159308262007972, 53.40771244220233], + [6.163323387786965, 53.40863654224122], + [6.16336919678631, 53.408517837417726], + [6.1616618132881, 53.40813574945369], + [6.1602918423614375, 53.40642049473845], + [6.161062423284567, 53.40621758819029], + [6.160592053815579, 53.405444994391004], + [6.159737524871061, 53.40527865112863], + [6.1564528352892935, 53.40052277506745], + [6.154941117792765, 53.39231248461049], + [6.15775584892465, 53.386111625629525], + [6.1604845928925, 53.3844903659373], + [6.161112096603619, 53.38344606782308], + [6.1608365474121465, 53.38262667048718], + [6.160372971295824, 53.38263363895765], + [6.160477432309058, 53.38318655451999], + [6.157209968355644, 53.38428174493268], + [6.155604291926239, 53.38255085627727], + [6.157525016334276, 53.38250419716268], + [6.15927483963447, 53.38160596415125], + [6.160212527842172, 53.382120307769654], + [6.160504362457825, 53.382078618130706], + [6.159944453707439, 53.38148502224158], + [6.164041558323873, 53.37818029615132], + [6.163263969801072, 53.37786225641779], + [6.159784966864526, 53.37827106635618], + [6.158226562335145, 53.37888394890508], + [6.157259720136564, 53.3797448160676], + [6.156934951397962, 53.37954165234165], + [6.155173539808415, 53.379565197948644], + [6.15440042163629, 53.379295221040124], + [6.156515589547135, 53.379322172215694], + [6.158203134272397, 53.3785543173959], + [6.157817570554257, 53.378155313164214], + [6.1566475974124995, 53.37785453987285], + [6.154835224538299, 53.37798622180851], + [6.154344902650178, 53.37770394394586], + [6.153950444817345, 53.377395991053106], + [6.15549424847898, 53.37751887104969], + [6.157236075876431, 53.37709815111121], + [6.158487597448964, 53.37665474937084], + [6.157821690130225, 53.377552239757755], + [6.159226897674956, 53.377950547596846], + [6.159440193677401, 53.37775977602472], + [6.160259926646525, 53.37801774465312], + [6.163234379819166, 53.377775820664674], + [6.163220723616623, 53.37747702585913], + [6.16416249068085, 53.37766505146983], + [6.163793381265791, 53.37691601805456], + [6.164669068539794, 53.37566735542313], + [6.163871199202513, 53.37545913658487], + [6.163225163740204, 53.371984437673], + [6.1619239193892295, 53.368808160920906], + [6.163251060488784, 53.367471817443494], + [6.163138722642461, 53.36546734099256], + [6.162242555731169, 53.3650909025413], + [6.164797820436684, 53.36024437479196], + [6.16422973111759, 53.35941598939661], + [6.1653926494457565, 53.35918243908149], + [6.167741496466361, 53.35868599636936], + [6.166273073608192, 53.354395264691185], + [6.167781047103205, 53.349595809141206], + [6.166042452544506, 53.34628905307029], + [6.165248969983535, 53.34595327211044], + [6.165467483894202, 53.345836832551775], + [6.166756146305245, 53.346139053318645], + [6.167626602047949, 53.348737672540665], + [6.169522304594743, 53.346840028096366], + [6.170770338418424, 53.34434437552909], + [6.178249403354022, 53.34028469671945], + [6.1787183658343, 53.33912749332297], + [6.178330174064055, 53.337910294025136], + [6.174083138367646, 53.33407635676621], + [6.176501229069202, 53.32546410673891], + [6.178973003478738, 53.32240853442428], + [6.178201797854082, 53.320540132317504], + [6.174635716303495, 53.31936001810315], + [6.170806343677729, 53.31975269516163], + [6.168956866103291, 53.31893467994454], + [6.159495748760251, 53.31886571473875], + [6.159432129619104, 53.31839595109141], + [6.161501235391673, 53.317975841788055], + [6.159226504929926, 53.31687751728639], + [6.1601697044147254, 53.316944142990614], + [6.164862496616939, 53.318044031221156], + [6.164406304070427, 53.31726096604684], + [6.171917819784773, 53.31765602824927], + [6.171740923335968, 53.3184995753894], + [6.176419154164321, 53.31887838102164], + [6.1809529912668895, 53.320681082615465], + [6.180715133735166, 53.32248453156583], + [6.177815519268249, 53.32526644839236], + [6.175255889085253, 53.332566629191525], + [6.176018043638303, 53.33465098945836], + [6.181100371509367, 53.33849929302516], + [6.1825766478131525, 53.33873632423226], + [6.1849338814865975, 53.336728288097646], + [6.192448723261022, 53.33325580141239], + [6.195386565726092, 53.332647621908954], + [6.1991175290436695, 53.33312530236639], + [6.200754023574607, 53.333934629964574], + [6.195790369684213, 53.33292405208003], + [6.191907388470978, 53.33389605576411], + [6.191001493247559, 53.335207046204246], + [6.192634581547834, 53.336110120595286], + [6.188625932207843, 53.33796666721932], + [6.188103384544623, 53.33926617520923], + [6.17501159244681, 53.3498114463072], + [6.174318324074285, 53.3508456363793], + [6.175432853810189, 53.3549276861351], + [6.180790502681186, 53.357294888547024], + [6.196794331903966, 53.352685276948186], + [6.1977852109374645, 53.34930030269631], + [6.196163809950843, 53.3451586405322], + [6.196552499553427, 53.34115721794673], + [6.198016683250595, 53.34019174041569], + [6.197305411087107, 53.34413323267369], + [6.198866974406322, 53.34439187316986], + [6.200156243361161, 53.34294692994712], + [6.2011162624741445, 53.34345881607086], + [6.2010156976832125, 53.34603652200101], + [6.200247190749793, 53.34677461397731], + [6.201448197575104, 53.34759111398895], + [6.204086484107327, 53.353436217983486], + [6.206687288501961, 53.3547316337915], + [6.207919855936622, 53.35400464716422], + [6.217588144183705, 53.35371955054476], + [6.218891226597566, 53.35035599559905], + [6.217558899095257, 53.348339713311645], + [6.218098422651188, 53.345998929822436], + [6.221419990702873, 53.3422464209754], + [6.224414865427031, 53.340486015559385], + [6.2283339431297895, 53.33915961917084], + [6.229789126952631, 53.336726639904825], + [6.2331421287128865, 53.336795187786926], + [6.237887459064619, 53.33507748438012], + [6.238202510557919, 53.33578531689878], + [6.2360190328929255, 53.336603752757924], + [6.230927344707813, 53.34059256926007], + [6.228207288744332, 53.34171202940644], + [6.222949427398436, 53.34593498778084], + [6.22068687675549, 53.34859322018893], + [6.222730988442191, 53.35152207669852], + [6.224295938087937, 53.350853998300344], + [6.228195068085636, 53.344505250342564], + [6.23064753943441, 53.34286740381331], + [6.235963404772296, 53.34143104620397], + [6.242823715804278, 53.34321048219537], + [6.249695636184034, 53.34742646279628], + [6.253635199292714, 53.34797826547008], + [6.264440723903154, 53.34576011458681], + [6.273025179896719, 53.34498170888283], + [6.278605202571568, 53.34253110080269], + [6.286901048804506, 53.34102626580524], + [6.280503416685089, 53.31258148469946], + [6.284027779511329, 53.311792166201855], + [6.286763298904992, 53.31201036467476], + [6.29277933349301, 53.30989215627765], + [6.293579227229854, 53.308615225662514], + [6.294016443954919, 53.30836857724429], + [6.29025017149119, 53.305377683856264], + [6.279478633872877, 53.30332438065155], + [6.27830717544525, 53.30273093568636], + [6.274488005110427, 53.29914738611228], + [6.274374946432766, 53.29648870729568], + [6.270286679905859, 53.29315973074845], + [6.270754922561479, 53.29206013980639], + [6.26926786236765, 53.290278463828386], + [6.267456569136936, 53.290854853328824], + [6.259903656385465, 53.29107570987692], + [6.254266057383521, 53.28864283828208], + [6.252941136409826, 53.28445924738474], + [6.251408724147529, 53.27725496897074], + [6.252964937210827, 53.27346786306819], + [6.255763293835002, 53.270836489669236], + [6.2549434641655575, 53.26852454772267], + [6.2534741384363235, 53.26772462861557], + [6.249977289708137, 53.267219997278076], + [6.246863172423747, 53.26829583092675], + [6.243625014747721, 53.26645952773652], + [6.243484499403227, 53.26545982472689], + [6.241623516935737, 53.26395168319078], + [6.239415661036724, 53.26314323572193], + [6.237973446654104, 53.261582736068576], + [6.2387630276585195, 53.2596810334801], + [6.237584186728123, 53.25754715890445], + [6.234944825295346, 53.25670389941301], + [6.232173048892785, 53.25674741236948], + [6.223971311264119, 53.257240127511324], + [6.220271567351445, 53.259454815517316], + [6.218947333145745, 53.259872591057935], + [6.217094222553688, 53.26526720557976], + [6.198771548241595, 53.26884297222654], + [6.195151915418893, 53.26960829428772], + [6.189219938582964, 53.26989023290793], + [6.185599871457544, 53.267815501690606], + [6.185669588689362, 53.267273006822435], + [6.1903844026114205, 53.263377664777295], + [6.182412177195886, 53.26100045411366], + [6.181090215267229, 53.2597934052975], + [6.177864208297883, 53.26007466891646], + [6.167380189149562, 53.2636513777587], + [6.164134067218688, 53.2639557102333], + [6.160523206823489, 53.26198467196496], + [6.158659663536975, 53.26363593065265], + [6.154852673682102, 53.261773724964605], + [6.1483587746057005, 53.26000074983609], + [6.144978088351856, 53.260164800285594], + [6.141058343309659, 53.264382928293145], + [6.127331366626219, 53.26168966679408], + [6.113211615260331, 53.25977945069591], + [6.1059626282992205, 53.25760988184563], + [6.096548402006279, 53.254602056312976], + [6.074774473161037, 53.24858279212022], + [6.053917109467852, 53.24521618948234], + [6.0501053132923035, 53.24445930799821], + [6.043965635037673, 53.243502476458445], + [6.044530480018664, 53.24591528635198], + [6.04492926744159, 53.24591267063638], + [6.046047488855094, 53.250698799617794], + [6.04670952700754, 53.25065786475973], + [6.0470006932429925, 53.25170092870862], + [6.048844448782696, 53.2597135633605], + [6.049438661046895, 53.26264400361537], + [6.049879700895337, 53.26485513919734], + [6.050114947872083, 53.26614131500686], + [6.051863922449327, 53.26628627223037], + [6.054369800273315, 53.29075958320043], + [6.065680513353715, 53.29247624556897], + [6.072969828275971, 53.2923870639897], + [6.073695149613431, 53.29239969572258], + [6.069793715790347, 53.29692008792287], + [6.071541504696997, 53.29659541591371], + [6.070988060482861, 53.30096265758789], + [6.071844661319247, 53.30102863083643], + [6.072958917328025, 53.31642897756776], + [6.075141478877728, 53.321736940075915], + [6.077752685958152, 53.32208710160133], + [6.075663293845304, 53.324294167022224], + [6.073646434771287, 53.32484796831636], + [6.071219822380752, 53.32470720367138], + [6.066774241141938, 53.32363523922052], + [6.038416789799612, 53.32517629165307], + [6.036328998414566, 53.324334744751454], + [6.032300469332423, 53.3254969968106], + [6.0245259519291166, 53.32461182757644], + [6.022437837099205, 53.324030953982074], + [6.021234935138634, 53.31689901951905], + [6.0211242997282, 53.30900092096894], + [6.020151898894252, 53.308223586792096], + [6.016098387621895, 53.30811750025427], + [6.011617885619043, 53.308443785538614], + [6.009254114654965, 53.30963068387517], + [5.999055958757649, 53.31048915811967], + [5.994291501108679, 53.31013075578506], + [5.989624197926191, 53.3100428794693], + [5.9801082044625415, 53.30748928963424], + [5.975852740222416, 53.30692730575386], + [5.970813350863135, 53.31332036115096], + [5.973840843511499, 53.31509718217955], + [5.974452879116845, 53.317297452052124], + [5.972183646555235, 53.321051719359595], + [5.9721741346188315, 53.32109134650182], + [5.96878440257183, 53.32250766432858], + [5.963858452561237, 53.3228530325371], + [5.9592040819984895, 53.321495507636754], + [5.955684676856852, 53.3214122707695], + [5.948895194510686, 53.3177803179832], + [5.938418503668672, 53.31566517686448], + [5.9350808578643575, 53.3156607614551], + [5.935015420523748, 53.31567122228416], + [5.924360878539488, 53.313082657216135], + [5.922253438760844, 53.31260697715945], + [5.920886645150153, 53.31109856096766], + [5.8990492148655544, 53.30248438305139], + [5.8969040700578095, 53.30152565979032], + [5.903538427234251, 53.29418165601359], + [5.906648670696134, 53.28783933971893], + [5.897693842183481, 53.28463372556895], + [5.897787705875692, 53.28365981063008], + [5.891700687244229, 53.28003829016022], + [5.882244592405089, 53.27678249235831], + [5.874610604306046, 53.282601718221265], + [5.86415362542186, 53.28687742374854], + [5.861345661823128, 53.288044388386645], + [5.8618348610091005, 53.28822102177058], + [5.86118011763423, 53.28865774978165], + [5.860768619291517, 53.28849380850128], + [5.8476608121385345, 53.28516262403796], + [5.847516851147487, 53.284085997962414], + [5.838649165826244, 53.27494928424115], + [5.831508575690037, 53.275425910161836], + [5.816908410000632, 53.27638909010353], + [5.815309495761606, 53.27747808955301], + [5.813891704591817, 53.27765305074637], + [5.812036118186756, 53.276743470853674], + [5.811266386441677, 53.27698645939664], + [5.810538120474813, 53.27742407303498], + [5.81322916287673, 53.27923789667483], + [5.810522673881161, 53.27985120969578], + [5.811045746828677, 53.28080791579223], + [5.798573283458902, 53.282950593073224], + [5.797745298585803, 53.28379455381544], + [5.794585933100887, 53.28405384938656], + [5.771988929115552, 53.291545682745316], + [5.769033932464718, 53.29254562434303], + [5.768345466130922, 53.29321406229874], + [5.767202369182083, 53.29344033957522], + [5.766411151074319, 53.293433047789286], + [5.7632838391542265, 53.2944910579963], + [5.759656983934275, 53.294096264801304], + [5.7493627819662905, 53.293939364382105], + [5.736851195762869, 53.29458647537619], + [5.735383647243453, 53.29472099679266], + [5.739393312130655, 53.3039875896535], + [5.744770028480292, 53.30878864466787], + [5.747164131061722, 53.309923334792344], + [5.749301099004772, 53.3135552731869], + [5.729682159868487, 53.317452167227245], + [5.721414547753652, 53.31603321574744], + [5.722391244223774, 53.322313744923086], + [5.717368942207003, 53.33891484828545], + [5.717388839466952, 53.340210610055244], + [5.756312314261657, 53.35287802682195], + [5.763501104559338, 53.35057250958248], + [5.765933810687049, 53.35153802164186], + [5.767860237723768, 53.35405560021106], + [5.774010770812931, 53.35604949780842], + [5.779115907376901, 53.355602302089345], + [5.783049481837661, 53.35647777407832], + [5.783237195330813, 53.3573358419385], + [5.788450877072262, 53.35979396426534], + [5.790911067745228, 53.35939941126016], + [5.7931592652433395, 53.36012763035452], + [5.79405337071521, 53.36075222608583], + [5.791672312879569, 53.3624115275646], + [5.813878275123947, 53.36742517732123], + [5.8231755531295155, 53.37194634589002], + [5.824724620120909, 53.37248509741686], + [5.826348827947374, 53.370860605116306], + [5.8326954356778735, 53.3728071084661], + [5.831343104773587, 53.3745880450281], + [5.84502372381481, 53.37902136740137], + [5.859504228922439, 53.3836750733761], + [5.863624942275709, 53.38331170268207], + [5.87847935964204, 53.38658224612759], + [5.885390298025507, 53.38872566070152], + [5.878394281006885, 53.39557220817513], + [5.881523397054175, 53.39513430043694], + [5.88419684025791, 53.39278643110634], + [5.8853306071438345, 53.39284000715929], + [5.887873289995615, 53.39086671860804], + [5.907342431563849, 53.38842994910255], + [5.916760959028456, 53.388425703163364], + [5.920158166090531, 53.38907379228578], + [5.920461879588082, 53.388699817451645], + [5.93313087814843, 53.38830814577911], + [5.947160843681678, 53.39084186093117], + [5.958715082944345, 53.39358833298783], + [5.96986007343881, 53.39501874129441], + [5.971710123151825, 53.39801181034958], + [5.9745735034009275, 53.396228952018326], + [5.974475146396817, 53.39585057192223], + [5.9775557806917705, 53.3961213269213], + [6.006304519120974, 53.40097876690276], + [6.015649158281606, 53.40292672556334], + [6.018894906950831, 53.40307809069101], + [6.0206714219845745, 53.40262253784419], + [6.022835151834063, 53.40315121335081], + [6.03370116114361, 53.403325682038734], + [6.06076119728121, 53.40643322316374], + [6.069149245606147, 53.40730877116315], + [6.077202061164005, 53.405528670776064], + [6.081785673348833, 53.40640115617321], + [6.085790154986388, 53.40464474249826], + [6.083903356270372, 53.403082369135454], + [6.086119224898877, 53.404730952365746], + [6.092186833434627, 53.409588801974024], + [6.094823846574308, 53.40806997853317], + [6.113491694794109, 53.40632530350292], + [6.118110985099344, 53.40480325296349], + [6.124044121694906, 53.405446712539984], + [6.132806581441898, 53.40465849615701], + [6.137385674096793, 53.403579557073066], + [6.139072628973087, 53.40352404581999], + [6.1768709145340965, 53.41465475363702], + [6.183482498000433, 53.41429160390296] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.783469fa-0db1-46f5-bacb-8b907bf8d09c", + "properties": { + "statcode": "GM1978", + "jrstatcode": "2024GM1978", + "statnaam": "Molenlanden", + "rubriek": "gemeente", + "id": 337 + }, + "bbox": [ + 102132.58199999854, 427171.6490000002, 130216.41899999976, + 440376.5009999983 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.932126381461086, 51.94755180289925], + [4.939235057525854, 51.928938071445], + [4.94229315020805, 51.9301666786605], + [4.945944227038917, 51.933289506995095], + [4.947639620853774, 51.933710435186065], + [4.949595488720883, 51.93156606332526], + [4.956157452716008, 51.91559106386883], + [4.964121545268275, 51.91375371340886], + [4.964785223739406, 51.91351896096517], + [4.963293194791987, 51.91278520015551], + [4.96416015781443, 51.9122674564867], + [4.964128182781912, 51.91063800234269], + [4.967791941386358, 51.91009411316664], + [4.973740624971699, 51.90766741243567], + [4.973410699441999, 51.897250049557194], + [4.974354975055692, 51.897093107548685], + [4.978838056508582, 51.8983055612015], + [4.991449530279194, 51.90167333956888], + [4.9943405746386045, 51.90234528265581], + [4.994377201851559, 51.90223927947694], + [4.994968055710085, 51.90229233350237], + [4.9963018694785655, 51.89668923273564], + [4.996672682803431, 51.89010555736622], + [4.999452273459163, 51.884283506417155], + [4.99495245276542, 51.8769562940552], + [4.996238125000913, 51.873119191568726], + [5.00126680641585, 51.87499222638966], + [5.001242457133445, 51.87472591924761], + [5.023747394200995, 51.881056610894085], + [5.026955908456512, 51.881918205092965], + [5.027254431529189, 51.881527811132216], + [5.0257113182824025, 51.881156939977], + [5.023227498189976, 51.87574083299419], + [5.023167179670961, 51.872026718357276], + [5.021816542542113, 51.869115528579734], + [5.027387882340032, 51.8637390250376], + [5.026907960578829, 51.85860771503385], + [5.015628107501588, 51.85917805211312], + [5.009520465710118, 51.85804598824106], + [5.005247918789366, 51.85793331826166], + [5.001250053886862, 51.85905856934385], + [4.995964976506216, 51.86184855196006], + [4.993967838095062, 51.861222725681316], + [4.998305130534676, 51.85486151416082], + [4.99868458270965, 51.85227720698765], + [4.99634190804458, 51.84922862450839], + [4.981260566991807, 51.851870263423386], + [4.983318608900231, 51.857108251288196], + [4.964976577128846, 51.86159157724579], + [4.959309561782317, 51.86288493530633], + [4.956972586530799, 51.85957311672378], + [4.938895226020189, 51.86351838144709], + [4.93839867744693, 51.86362936025897], + [4.9403462743874975, 51.85842846269661], + [4.942714439805488, 51.84478412284491], + [4.936939912180218, 51.84437842598818], + [4.936617773861815, 51.842933787780474], + [4.93088599239708, 51.84026589969078], + [4.925441301747042, 51.840239453207595], + [4.921822814334078, 51.84078889015972], + [4.9248638313931625, 51.83971841318064], + [4.90986159852401, 51.83884837630883], + [4.902151014992797, 51.83765348793139], + [4.882773841001125, 51.83309404727627], + [4.875091626188849, 51.832318462270706], + [4.867928355244634, 51.83199366772902], + [4.867592347413261, 51.83397945058847], + [4.866450569398338, 51.8348369109953], + [4.863006819373674, 51.83294082953536], + [4.8603368851086, 51.8330118769493], + [4.854367583501252, 51.83213257414414], + [4.851113247155031, 51.83312837123366], + [4.847949469476621, 51.832617313548496], + [4.8476743444576975, 51.83297541958833], + [4.847537379367276, 51.833456254837], + [4.847297591636093, 51.833944402950074], + [4.847026467626332, 51.83452800289732], + [4.845328370133237, 51.83857536610795], + [4.838082138825593, 51.86073467127649], + [4.813783122863792, 51.85033921655707], + [4.81045994905135, 51.8496948597457], + [4.810705336698017, 51.849252229164854], + [4.803378549399169, 51.84635340664415], + [4.802736816487459, 51.84632326652889], + [4.7954227399107765, 51.84497970756334], + [4.788147326825046, 51.84493742135679], + [4.780379733991585, 51.846639929814096], + [4.774545798470233, 51.845543089065934], + [4.773142367979823, 51.84471047336523], + [4.7669775420425085, 51.84388732883352], + [4.765225698130492, 51.84425652547054], + [4.761347814626896, 51.84373517508093], + [4.758675590457932, 51.84440656698677], + [4.756175760616485, 51.84496009487829], + [4.753792810627361, 51.844508351945976], + [4.742763936845159, 51.841002689025714], + [4.743394624755276, 51.84271974192449], + [4.740344705947441, 51.84325524076625], + [4.738653836238696, 51.84357351648221], + [4.737139876490596, 51.84645282626275], + [4.7141259537194165, 51.84122449372018], + [4.706696905352375, 51.84107110255739], + [4.705429529513184, 51.841257740272034], + [4.699190315407917, 51.84310441074295], + [4.690005603450253, 51.84563304407331], + [4.683317386785843, 51.848437643999105], + [4.6831906708754545, 51.84849145425306], + [4.683109459050035, 51.84892002224712], + [4.681511961274861, 51.85774355043033], + [4.681264117836388, 51.85891240920401], + [4.681263140082348, 51.85892143958165], + [4.680708895611208, 51.85963856389817], + [4.682397163589804, 51.86060425975287], + [4.685988181088801, 51.865932207729045], + [4.687673721399736, 51.866761237308936], + [4.690438931237449, 51.86684704802038], + [4.690816570156316, 51.86730544107828], + [4.700239703871293, 51.87970988049821], + [4.6972680031357985, 51.87985728889461], + [4.687834162079035, 51.878717769305794], + [4.677884468008798, 51.87530040450528], + [4.672914034527592, 51.87479193902338], + [4.668560410934927, 51.87507257934196], + [4.664438761995058, 51.87494835362037], + [4.642138301834799, 51.88019967247137], + [4.63707557549539, 51.87629445006213], + [4.629396931203021, 51.88083691730098], + [4.628774663633306, 51.8812121527407], + [4.628235730619793, 51.880799913885724], + [4.626391054034048, 51.88065776310212], + [4.624229637321763, 51.8838058805525], + [4.620300433404778, 51.887633847024475], + [4.619248844805511, 51.888442247301604], + [4.619572170348848, 51.88952269980738], + [4.621065586525739, 51.88940154440596], + [4.625423195701768, 51.889383166888244], + [4.6332168230188, 51.89048363142247], + [4.639300752503034, 51.89073328587414], + [4.654651667956043, 51.889682010477486], + [4.668166587077526, 51.889585346829], + [4.6733672105559885, 51.89022758149221], + [4.675994274529346, 51.891142357735966], + [4.6806758675472215, 51.89300509475107], + [4.690955663676873, 51.89483765657401], + [4.705601147496467, 51.8972183257705], + [4.715811920134732, 51.8959490426813], + [4.7239721693186185, 51.89809058502871], + [4.743869487122732, 51.90524884134606], + [4.7617621395281615, 51.914216871083106], + [4.767193402252507, 51.915903355082015], + [4.777610069032362, 51.91706524139311], + [4.790704900995191, 51.9196589955794], + [4.801233115458099, 51.92163226992241], + [4.811283443603574, 51.924554632050445], + [4.814195227951548, 51.92623148457066], + [4.83230416660702, 51.93863880268592], + [4.837195894811313, 51.94042104781091], + [4.846701170399016, 51.94137667079924], + [4.85919557296549, 51.94083125700334], + [4.863281046964581, 51.94002599368127], + [4.872278440565287, 51.938354436535015], + [4.877792920155559, 51.938030675583256], + [4.9140113408427615, 51.942435937938974], + [4.919187601286363, 51.94472895078482], + [4.926301291212212, 51.95092794425962], + [4.929475474039462, 51.95019144918199], + [4.932126381461086, 51.94755180289925] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.e15b9104-7b04-404b-b4a3-3c479ae7c9a7", + "properties": { + "statcode": "GM1979", + "jrstatcode": "2024GM1979", + "statnaam": "Eemsdelta", + "rubriek": "gemeente", + "id": 338 + }, + "bbox": [ + 235293.19200000167, 584489.0095999986, 269163.76900000125, + 604995.7780000009 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.878962827424882, 53.40515386964773], + [6.888058132393288, 53.39595887306334], + [6.885423367980186, 53.393516073272316], + [6.885257515650025, 53.392449001036404], + [6.8891704008679975, 53.39126917243082], + [6.890576348765651, 53.38886780963306], + [6.888661211765343, 53.383699825745715], + [6.889000969634925, 53.38028017592445], + [6.893202882849281, 53.37131157477505], + [6.895679747880759, 53.3696110116096], + [6.894513234866771, 53.36513937642173], + [6.895018599054958, 53.36329145578369], + [6.896448568503865, 53.361892997666146], + [6.896181061564283, 53.35904017480698], + [6.897126101216179, 53.355583422256565], + [6.902085948728846, 53.34750986325361], + [6.9085262883429435, 53.347248024417574], + [6.913038982377809, 53.34460151407876], + [6.91887709020066, 53.34217927582869], + [6.929941963611795, 53.33548339825156], + [6.930484518253129, 53.334862078524665], + [6.93217747101065, 53.334577906247105], + [6.936316019707196, 53.33402949147611], + [6.944317391650058, 53.32969328326006], + [6.943558853782086, 53.32727837876565], + [6.953221398698213, 53.3244675767335], + [6.9702710013018745, 53.32177695224735], + [6.986988473796203, 53.31755092318171], + [6.996464486297116, 53.31671528422774], + [7.004972945974041, 53.31711709227254], + [7.005072775938047, 53.316846131228054], + [7.004802691963457, 53.31675862216843], + [7.003603762860687, 53.31612245030446], + [6.992912755646448, 53.315756504227075], + [6.987633129484733, 53.316400044094806], + [6.970371253775979, 53.320801627832836], + [6.952159315947641, 53.323297659399174], + [6.946087213252157, 53.32486064335432], + [6.94052242432796, 53.3283053501798], + [6.939683884226355, 53.32816760259661], + [6.934314148179759, 53.33307490803506], + [6.931165620011098, 53.332122009935354], + [6.9291352611033705, 53.32899264132039], + [6.928693450476832, 53.32909269021851], + [6.928121644150272, 53.32768996432243], + [6.930475490497239, 53.3271552010682], + [6.931804275385063, 53.32622673708197], + [6.9359271747023445, 53.32632994954363], + [6.949875203516464, 53.322065783199626], + [6.958122598525856, 53.32060472253386], + [6.96291123398801, 53.318858767369875], + [6.968314825735742, 53.31900482450508], + [6.97504620170333, 53.31696060771063], + [6.979354740000236, 53.316332927698866], + [6.996277472922164, 53.31166519308953], + [7.000589690119275, 53.30942443974934], + [7.010727024571035, 53.313809948261905], + [7.009225462494132, 53.31542595850551], + [7.010233835389915, 53.315788769059964], + [7.012914188740654, 53.31124452560414], + [7.009785066066389, 53.30652652786697], + [7.01029299099888, 53.3061237342493], + [7.026994960827931, 53.302459244831994], + [7.030987574783334, 53.3025913110435], + [7.037946440173206, 53.30468549634543], + [7.039185220250837, 53.30239969514637], + [7.04478394291574, 53.3013500318083], + [7.047502913743319, 53.29956734468516], + [7.068193462430611, 53.299757062232814], + [7.06992114604587, 53.30019099468749], + [7.076718264911997, 53.300277677863825], + [7.080722674661556, 53.30369604754781], + [7.086251092330648, 53.30415844030163], + [7.090988959821853, 53.30513224062959], + [7.092232966136805, 53.30562055246094], + [7.095384101272292, 53.30804703685673], + [7.09837879440508, 53.308725801403604], + [7.099966264667085, 53.307900486174105], + [7.099171841491834, 53.30647714243839], + [7.09837565565517, 53.305050538116745], + [7.095629778043137, 53.30473745356862], + [7.090353600898129, 53.30053372627372], + [7.085497989027679, 53.29775022153172], + [7.084900068162387, 53.29801805707307], + [7.0841681069086615, 53.29755956068466], + [7.082503770418732, 53.2912343354148], + [7.085242536000876, 53.28250827988202], + [7.080905518080513, 53.277397481647334], + [7.078238062938103, 53.27076967528745], + [7.0783313842260345, 53.26658129612488], + [7.0846207030917965, 53.26156450186154], + [7.093249678240937, 53.257144300465015], + [7.083943286570991, 53.25434779302343], + [7.076632565374212, 53.24969943911263], + [7.079430773837929, 53.24817720883573], + [7.067503070854565, 53.242391595664245], + [7.059440880556944, 53.24822793770811], + [7.057420824596793, 53.24734026926094], + [7.040306915069872, 53.25983663279587], + [7.038718796397515, 53.25862988989503], + [7.037208963723549, 53.259682097076066], + [7.03459627562549, 53.25842273748202], + [7.031597992207447, 53.25613194368608], + [7.0231541895783165, 53.25409323277783], + [7.021847250229796, 53.25323684447325], + [7.013295913559261, 53.260701738338604], + [7.01260530641766, 53.26063824947987], + [7.013228521828281, 53.266840430792534], + [6.9970116039997405, 53.26712894122027], + [6.95223080424393, 53.25649864195928], + [6.946136336825264, 53.24897373176655], + [6.9449903679465255, 53.243614774489394], + [6.942506432283158, 53.24204335356124], + [6.937603451722126, 53.244249270432306], + [6.928591183732551, 53.2370754941336], + [6.921720602660467, 53.23918011343875], + [6.91614822291579, 53.243618322996134], + [6.913953453140759, 53.24283564094821], + [6.911344191478548, 53.24301546694541], + [6.9092558130328054, 53.243518271230435], + [6.911343595296434, 53.25198626576897], + [6.912149787697959, 53.26348521560132], + [6.9093366311455195, 53.263558923991646], + [6.910202267097898, 53.2684454951903], + [6.908142462573447, 53.2700197586805], + [6.90908246956917, 53.279000124506375], + [6.9082581943245245, 53.27870079194239], + [6.9079042628634255, 53.279302714683865], + [6.899089805632028, 53.2794664310691], + [6.887332782941919, 53.27917884773045], + [6.887471895888268, 53.28169186817672], + [6.895596452728207, 53.28591758730707], + [6.893112061038575, 53.287791936560055], + [6.891270642419928, 53.28692055866748], + [6.889239077541994, 53.28981993022951], + [6.890767452633341, 53.29053389228968], + [6.8897264321319245, 53.2927379956757], + [6.8873770467211815, 53.29788200261689], + [6.8866311429736395, 53.29827483852196], + [6.87960893177364, 53.29784965391203], + [6.877568109693093, 53.296489045565515], + [6.8745666661760545, 53.29561145267007], + [6.873222322862184, 53.296493755593794], + [6.860723181893143, 53.294986974466454], + [6.860254431926324, 53.29632572899183], + [6.851495667469593, 53.2967854623098], + [6.850950841252226, 53.29664943880511], + [6.845805573318319, 53.29012599149055], + [6.838278388024882, 53.290348174953195], + [6.828072441624258, 53.29109182404531], + [6.8251616186573445, 53.297622291449294], + [6.816649280263645, 53.295182075764835], + [6.814551250566792, 53.29735753436549], + [6.814354962759, 53.29757984885438], + [6.814344532631207, 53.297591662455105], + [6.772526792028621, 53.28308659506243], + [6.769136878620857, 53.28662553055445], + [6.772309461406027, 53.287792643547895], + [6.76979441110223, 53.29068040215521], + [6.772225662890932, 53.29191769521191], + [6.764620575656464, 53.298134357207694], + [6.760683718487713, 53.2952361807194], + [6.755538595159845, 53.29963372882928], + [6.753081465752409, 53.29884706599732], + [6.7480482610455494, 53.302968920154655], + [6.744792157265181, 53.30775363229405], + [6.749350823039973, 53.30984305510726], + [6.7479483383402155, 53.31178104470881], + [6.747310379380718, 53.311928015860865], + [6.747050874735152, 53.31149024909631], + [6.744218467762232, 53.31191857494787], + [6.743677349256005, 53.3110992753343], + [6.742895566327703, 53.31135673804279], + [6.742681541158425, 53.31101974903041], + [6.740466968049125, 53.31217948280682], + [6.7376073154533795, 53.31279473596089], + [6.732900784685019, 53.3114087884029], + [6.729448702596229, 53.30535388767735], + [6.724350948145419, 53.305538931620646], + [6.721614131861318, 53.3064295897858], + [6.712716745204696, 53.30932443115425], + [6.709003975037591, 53.310118548004255], + [6.706617899502044, 53.30703759105903], + [6.705316137749625, 53.30752507898333], + [6.689735522555936, 53.29753953074159], + [6.677172460935499, 53.30374073434725], + [6.66076603914592, 53.306692763863886], + [6.657045389765085, 53.30774570140066], + [6.656649041110422, 53.3079319578516], + [6.656752943431635, 53.308063039058446], + [6.655936766336743, 53.308329834152765], + [6.655766747884778, 53.30811724397236], + [6.654781385257599, 53.30842293567114], + [6.654053436540214, 53.308644569362066], + [6.650369245673503, 53.30920589353956], + [6.64265766846072, 53.30832104518613], + [6.63767494504938, 53.31463818942825], + [6.619862340179092, 53.31442815342731], + [6.613005832208383, 53.32321737151525], + [6.614335432112937, 53.32520296998839], + [6.610193547180699, 53.330114629263726], + [6.605271581694991, 53.33038344989572], + [6.601710583327644, 53.32939886401815], + [6.598021402446372, 53.335494841209915], + [6.593943040980382, 53.335326016268205], + [6.592621783870462, 53.335715814568594], + [6.59256346611681, 53.336015959045596], + [6.605365768405854, 53.33751569716739], + [6.60469444557324, 53.340804582859356], + [6.60144857782774, 53.340423552923006], + [6.595831009606628, 53.347141282133435], + [6.603015388408394, 53.34989354038152], + [6.6052457750699745, 53.35016283640514], + [6.606799946778697, 53.348930741091586], + [6.614727337479905, 53.34921669312054], + [6.6261092148118905, 53.35087518695882], + [6.627547847613625, 53.353343335865446], + [6.62568726436416, 53.360967039171776], + [6.627186033013581, 53.360864688351676], + [6.627697829286429, 53.36124313583234], + [6.629697387440832, 53.36242106726826], + [6.634862497626397, 53.362368762757185], + [6.635954347052615, 53.36031966295926], + [6.636861372121139, 53.36050113328748], + [6.63574923323133, 53.36286243896795], + [6.637001475762956, 53.36286092324917], + [6.6423915003585545, 53.36380005089511], + [6.642181460039747, 53.36565697426956], + [6.645026047908257, 53.36643718450922], + [6.647380672497002, 53.36457878000052], + [6.6514811137449525, 53.36458936148415], + [6.663814129732381, 53.3669363204275], + [6.67083371411812, 53.36496590872048], + [6.679076249713264, 53.36698904130787], + [6.686700977857818, 53.36641420152706], + [6.69704805854944, 53.36290833090567], + [6.702067719180992, 53.366678361863585], + [6.708435018900648, 53.36910593386407], + [6.7085619859417776, 53.369463356240416], + [6.709676086759568, 53.37003548252773], + [6.729683973976058, 53.381096257051624], + [6.739210482575176, 53.38812223843702], + [6.748255822688538, 53.394971207372954], + [6.7521464308807655, 53.39675032329119], + [6.7538557624999305, 53.397477446837264], + [6.770132952852492, 53.4035582605394], + [6.7786142036210935, 53.41078838418791], + [6.78206445681171, 53.41061285239481], + [6.784014847713673, 53.409713888941496], + [6.783983956976769, 53.40747219325695], + [6.7880579655128, 53.40785013659507], + [6.792455064506034, 53.40359593995262], + [6.843717949419436, 53.422419572428176], + [6.861084378374531, 53.4122518541152], + [6.871838227812583, 53.40834596870307], + [6.874210746769434, 53.40803379323934], + [6.878962827424882, 53.40515386964773] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.4c1f8640-8cac-43bc-958c-f78134cc43fe", + "properties": { + "statcode": "GM1980", + "jrstatcode": "2024GM1980", + "statnaam": "Dijk en Waard", + "rubriek": "gemeente", + "id": 339 + }, + "bbox": [ + 110489.0390000008, 516275.01900000125, 122058.04800000042, + 527289.0516999997 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.7927314107337295, 52.72048964484342], + [4.793992713461146, 52.71998599819834], + [4.794038686351202, 52.720709873357755], + [4.79544355545963, 52.72044034112282], + [4.7955474587776745, 52.720547267846094], + [4.7959050652084585, 52.72056233617921], + [4.797396559305373, 52.72090004502135], + [4.797602468932895, 52.720847537038644], + [4.797541895645839, 52.7196360693433], + [4.799470129791773, 52.71829137936882], + [4.801959916118407, 52.71599577741056], + [4.8031838176765875, 52.71541136250475], + [4.804545716010984, 52.71567454417022], + [4.80501126376123, 52.71506993425722], + [4.8039239946095975, 52.71477959665099], + [4.8050258492886115, 52.71420878415696], + [4.809170890184331, 52.71512172021447], + [4.813161617654379, 52.714941983542914], + [4.816627325150485, 52.7152824920139], + [4.824028499436228, 52.71653179234369], + [4.826242264598296, 52.71743567240057], + [4.828867328664215, 52.718095986196886], + [4.841148769413399, 52.71930166241799], + [4.843404695615341, 52.71960007163396], + [4.8437468453160575, 52.719654526949455], + [4.844194823736943, 52.71972333184134], + [4.847685312869555, 52.72025936718062], + [4.852152042862176, 52.72244772173396], + [4.855471020931334, 52.723072871163836], + [4.858092649936456, 52.72334534244753], + [4.861210831938322, 52.720726385699614], + [4.872013049175457, 52.71628958096537], + [4.877703352642587, 52.71198823808915], + [4.898669408864142, 52.706831941174705], + [4.899066645715172, 52.70665427059177], + [4.899386465854575, 52.703276891282286], + [4.899853896861063, 52.7001444433872], + [4.8998809617486145, 52.699485042278006], + [4.899860112550244, 52.69758659571289], + [4.891419417595246, 52.69517576796774], + [4.8887038403044345, 52.69045552076218], + [4.881985440599185, 52.68809567447946], + [4.879382853525452, 52.688016403521345], + [4.876293329323029, 52.68634274520216], + [4.879395507265164, 52.680080475148145], + [4.875709836751757, 52.677731458722896], + [4.874091169381519, 52.675463572142796], + [4.870780736070556, 52.66784023920462], + [4.868204914424808, 52.66416375232508], + [4.866201162097499, 52.65976439264441], + [4.863178670519804, 52.6564686546419], + [4.862700342697713, 52.65299845511438], + [4.86507478111389, 52.64943636877885], + [4.875236161621232, 52.642425102125216], + [4.87672021351867, 52.640532140150476], + [4.876529762735634, 52.63630538512952], + [4.875828168560562, 52.63521059665623], + [4.873282786536504, 52.63472893609223], + [4.873399398720588, 52.63444647812652], + [4.87340182792605, 52.634440594819], + [4.86388199110158, 52.635359501720295], + [4.862972379019579, 52.637451076331665], + [4.8605547200873955, 52.63913548643539], + [4.85160647634181, 52.640564467774624], + [4.84742150441551, 52.642059573341676], + [4.84272935857619, 52.645937295689656], + [4.838549297434983, 52.646137821404686], + [4.835531063539512, 52.642438791595374], + [4.835186471455935, 52.64089670703673], + [4.83451082263274, 52.63915388457335], + [4.834537990695429, 52.637994387023625], + [4.834411603574571, 52.637428686982226], + [4.830224612504624, 52.63267785971417], + [4.824210347508693, 52.63382290665303], + [4.814477421024273, 52.6338712907397], + [4.807816292224505, 52.63398373591543], + [4.7947059442030335, 52.63788274275879], + [4.7916431583424295, 52.63823358017479], + [4.788403219579969, 52.63888951826419], + [4.7852789761707815, 52.63811468086748], + [4.7866865409078425, 52.64058707132888], + [4.792983036610795, 52.64842107086844], + [4.798644124782383, 52.65355690975833], + [4.800416117102006, 52.65724418589891], + [4.800565992230026, 52.657872828209484], + [4.8005659954889515, 52.65787291630004], + [4.800544826050836, 52.66003220963081], + [4.8005094671710085, 52.660240917305394], + [4.793616793247745, 52.6571443273769], + [4.792018252473235, 52.65644124714409], + [4.79194257193432, 52.656290266228645], + [4.773669372390934, 52.6483544496092], + [4.7756078047781285, 52.65264595932547], + [4.773005328352638, 52.65340812752941], + [4.774033199907098, 52.65522153899992], + [4.774033355397815, 52.65522183458235], + [4.778042041170488, 52.66431776645006], + [4.774490303582487, 52.66534282211852], + [4.775970167029796, 52.667848846342274], + [4.7785775527141, 52.67230459050632], + [4.7790129481107515, 52.67404466747068], + [4.779025773077488, 52.676483959398105], + [4.772506631873773, 52.67770524622449], + [4.749983902116972, 52.68237290464204], + [4.746907816739731, 52.682302144840236], + [4.7447742261415, 52.681679011840465], + [4.743576423943633, 52.68130855138266], + [4.741741607522679, 52.680806867457264], + [4.738380296313135, 52.68436257416958], + [4.7288538206011115, 52.69140378592109], + [4.732036519751421, 52.692809086413526], + [4.739575248789898, 52.69418946420664], + [4.751540840852129, 52.69698823514839], + [4.766872898596655, 52.69813359783926], + [4.769647021546736, 52.69879348866674], + [4.77076227738609, 52.70204316271903], + [4.7704594522215995, 52.70872462530304], + [4.772986934058915, 52.72004346849139], + [4.777689866864887, 52.72856184871457], + [4.778832155433562, 52.73141083902014], + [4.779138197591052, 52.73127722436886], + [4.781768904457037, 52.72986670901794], + [4.786566023409685, 52.72794571086719], + [4.786872982686974, 52.72637229641378], + [4.78541199053116, 52.72245125637695], + [4.786565100901682, 52.72103398658896], + [4.788830630743622, 52.72084674012981], + [4.790158283258099, 52.7205931459556], + [4.7927314107337295, 52.72048964484342] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.41a9bf7c-00d7-4684-a87b-96b4be5d07cc", + "properties": { + "statcode": "GM1982", + "jrstatcode": "2024GM1982", + "statnaam": "Land van Cuijk", + "rubriek": "gemeente", + "id": 340 + }, + "bbox": [ + 175964.57699999958, 396025.62999999896, 200832.5540000014, + 420756.73600000143 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.769298547539311, 51.7523471565702], + [5.779665513837515, 51.75221195843451], + [5.790534313506559, 51.753509054770596], + [5.809467519159538, 51.756533932437826], + [5.821495122602143, 51.75744528361758], + [5.842415872445692, 51.758812089037306], + [5.852149570736836, 51.75931737653251], + [5.864468842426048, 51.75768172202199], + [5.870798713938989, 51.75533553910417], + [5.871166200148891, 51.75513824374707], + [5.879560425950663, 51.749913597296484], + [5.88049085152398, 51.746892089611116], + [5.881609338864048, 51.741545973686655], + [5.883781778751189, 51.73652966270187], + [5.883979077146598, 51.735437325797214], + [5.885404037891201, 51.72831418802164], + [5.887958944571685, 51.725192175110756], + [5.8937825803233075, 51.722063697639015], + [5.8995667182497655, 51.72018993841585], + [5.912001825566462, 51.71787657662869], + [5.919469547173511, 51.71767149905557], + [5.933784829173395, 51.71614039907995], + [5.946753514272231, 51.71343221802728], + [5.951829637501735, 51.71170058028741], + [5.955416550027128, 51.70913152958713], + [5.956254744007542, 51.70660595861225], + [5.9563762909506375, 51.69963303508423], + [5.9613952024357335, 51.687099652206854], + [5.961395223441899, 51.68709959817167], + [5.961888284724681, 51.68585797271235], + [5.963394977096826, 51.6816579942286], + [5.964586608872366, 51.6755733457449], + [5.964139014952934, 51.66749765624847], + [5.963453992693417, 51.662988470520794], + [5.963481984665129, 51.65732361160402], + [5.964855670998495, 51.65273236644211], + [5.967469521421061, 51.64928483181772], + [5.972127860838861, 51.64577179120485], + [5.976606937639543, 51.64378311161331], + [5.98212195519019, 51.64251969369476], + [5.996016348758065, 51.63687031107701], + [6.0044705849587325, 51.63177662125324], + [6.019979812639182, 51.62192114247128], + [6.022659421225012, 51.61885150370198], + [6.02385297855437, 51.61612536389351], + [6.0237839149921335, 51.60303544117963], + [6.026281406785659, 51.59557685357621], + [6.0307234124037015, 51.591518370003115], + [6.033478466554819, 51.589610642089546], + [6.038660246784438, 51.584130894352704], + [6.039717812377292, 51.58161596067083], + [6.039409677199822, 51.57912868615935], + [6.0378181604999615, 51.5741147621517], + [6.037870314639347, 51.56941097233489], + [6.0414527814770995, 51.563647448897264], + [6.048120698761913, 51.558462546515464], + [6.04642502264811, 51.55764101662243], + [6.044581890330359, 51.55901529814519], + [6.042866078491789, 51.558694626000154], + [6.04432767141727, 51.55744752616569], + [6.040912857158731, 51.55663044944835], + [6.037307850416583, 51.55814927509746], + [6.034320572153598, 51.55749726835549], + [6.032735170031176, 51.55668521327506], + [6.033687678777638, 51.55544747689977], + [6.031668836577393, 51.55233882674815], + [6.018211958185508, 51.56333468012517], + [6.011519433203701, 51.56664910066306], + [6.0115193615755365, 51.56664913610214], + [6.005098996061472, 51.569825000408414], + [6.004252789993715, 51.57024351813182], + [6.003052577992613, 51.569851482369465], + [5.991269800591702, 51.566085350675806], + [5.97338678481245, 51.561063333839975], + [5.952381379079304, 51.55697332080303], + [5.935444932667412, 51.553600194141005], + [5.917840712120093, 51.55264120658289], + [5.906662586880648, 51.552030867290334], + [5.891466123277402, 51.56020467989421], + [5.870892394786967, 51.562644194627474], + [5.83823846425486, 51.56641461613499], + [5.8227854171993325, 51.56829135117469], + [5.8202161353969695, 51.56867368591052], + [5.809580725511416, 51.57408112948195], + [5.800586009598337, 51.57862177243742], + [5.7883423999012695, 51.59419126120454], + [5.786678405436075, 51.598208266926086], + [5.75861458742041, 51.59394650695961], + [5.750478242151181, 51.62268337516537], + [5.747676101711899, 51.63266798026981], + [5.742546332337927, 51.65006172638681], + [5.739061306870649, 51.66184429192618], + [5.735275510888461, 51.67460275846979], + [5.734359118223629, 51.67762198297378], + [5.713814784064452, 51.69782167820297], + [5.707106503619328, 51.70442258212921], + [5.699960203175785, 51.7114515748612], + [5.704850957462372, 51.72132298501022], + [5.709337081225214, 51.72540436079623], + [5.713139066136074, 51.72641507561008], + [5.711877220709315, 51.727659077412966], + [5.709417541171556, 51.72857183228939], + [5.7113644019116965, 51.72952289216017], + [5.718062671977396, 51.73110355145379], + [5.71819809226732, 51.73091048193409], + [5.718394207723908, 51.73097424938], + [5.7188116060454135, 51.73292630044296], + [5.709862867576734, 51.73180782065509], + [5.709620448188811, 51.73182807691718], + [5.709647797385867, 51.73222449132371], + [5.7080576257749485, 51.73195865371726], + [5.706095727696663, 51.732122543207645], + [5.707911409829356, 51.73658235036181], + [5.698116253449743, 51.738507312724245], + [5.699901913755222, 51.74190560679303], + [5.70105904854913, 51.74213306721972], + [5.701426007792497, 51.74421966557598], + [5.701744325287964, 51.74549469109571], + [5.703488095605474, 51.750459672439916], + [5.699910988102576, 51.750468654841505], + [5.701088207736953, 51.755362212269624], + [5.694241440967529, 51.755488261880906], + [5.690858170095597, 51.759130691852604], + [5.696035829765933, 51.7613397230959], + [5.701047866377871, 51.76874714174677], + [5.711229945490515, 51.77503386233291], + [5.721904736575376, 51.774826467045614], + [5.729745375124904, 51.77285104821921], + [5.73202487397093, 51.77189384948585], + [5.735681624094046, 51.768914117163064], + [5.740779258930957, 51.763247942042454], + [5.7452385529258345, 51.7591444932625], + [5.751709408315712, 51.75604316939542], + [5.757958543871319, 51.75418822171423], + [5.769298547539311, 51.7523471565702] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.17a4ff3d-bee9-4cb7-878f-6d9c31996c8d", + "properties": { + "statcode": "GM1991", + "jrstatcode": "2024GM1991", + "statnaam": "Maashorst", + "rubriek": "gemeente", + "id": 341 + }, + "bbox": [ + 167092.13899999857, 403795.811999999, 180156.557, 419964.6693000011 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.701088207736953, 51.755362212269624], + [5.699910988102576, 51.750468654841505], + [5.703488095605474, 51.750459672439916], + [5.7017443267296395, 51.74549469019301], + [5.701426009221622, 51.744219662875565], + [5.70105904854913, 51.74213306721972], + [5.699901913755222, 51.74190560679303], + [5.698116253449743, 51.738507312724245], + [5.707911409829356, 51.73658235036181], + [5.706095727696663, 51.732122543207645], + [5.7080576257749485, 51.73195865371726], + [5.709647797385867, 51.73222449132371], + [5.709620448188811, 51.73182807691718], + [5.709862867576734, 51.73180782065509], + [5.7188116060454135, 51.73292630044296], + [5.718394207723908, 51.73097424938], + [5.71819809226732, 51.73091048193409], + [5.718062671977396, 51.73110355145379], + [5.7113644019116965, 51.72952289216017], + [5.709417541171556, 51.72857183228939], + [5.711877220709315, 51.727659077412966], + [5.713139066136074, 51.72641507561008], + [5.7093370812508555, 51.72540436439156], + [5.704850957462372, 51.72132298501022], + [5.699960203175785, 51.7114515748612], + [5.707106500745065, 51.70442258483363], + [5.713814786944336, 51.69782167639723], + [5.734359118223629, 51.67762198297378], + [5.735275510888461, 51.67460275846979], + [5.739061306870649, 51.66184429192618], + [5.742546332337927, 51.65006172638681], + [5.747676101711899, 51.63266798026981], + [5.750478242151181, 51.62268337516537], + [5.740060452247232, 51.62249637652116], + [5.709228784019851, 51.62575360859009], + [5.685925026438195, 51.62811592340222], + [5.681780708099892, 51.627816600520674], + [5.681459876611804, 51.62903105138469], + [5.680077965748173, 51.628378161821175], + [5.674278937400564, 51.62813533434011], + [5.674344723530106, 51.627438394906825], + [5.672740233628614, 51.62735722009799], + [5.672607307680685, 51.62868878238771], + [5.666591203920351, 51.628453100229656], + [5.664924715102144, 51.62833937010611], + [5.664711236320244, 51.62898681282355], + [5.658178680953495, 51.62803025222102], + [5.651343890045777, 51.62669566275675], + [5.6509825986581435, 51.62571165268947], + [5.63557462924038, 51.62536373582951], + [5.633674157551338, 51.62478551324829], + [5.626568498427971, 51.623400988857874], + [5.623392341269548, 51.626659994096464], + [5.607470989721758, 51.633777585830025], + [5.6056287338506685, 51.632092905851444], + [5.602273598347333, 51.62941366629574], + [5.5987359101954155, 51.63208896589467], + [5.59506932276028, 51.63414861766378], + [5.593172951058047, 51.63350508479711], + [5.587543281690844, 51.63762726120028], + [5.586434621077621, 51.640071248743666], + [5.588356429539286, 51.64265349924236], + [5.586776990015485, 51.64342285690344], + [5.5857658151171155, 51.64387020590781], + [5.58397510677085, 51.64459402003795], + [5.579747523931208, 51.64591065893888], + [5.572767165529214, 51.65061252112304], + [5.571652022285019, 51.65115469491404], + [5.570300300018686, 51.65143425080422], + [5.5674094793697595, 51.6535070598077], + [5.571045942226479, 51.65519781611934], + [5.568910278732974, 51.65956352687199], + [5.567738857165757, 51.65933339367735], + [5.566394235917477, 51.66134443415126], + [5.564048466100619, 51.66147073439438], + [5.561966391589932, 51.66077736065861], + [5.562239677548047, 51.663152334312805], + [5.565907845485736, 51.66736890231793], + [5.573522890693154, 51.67709016375168], + [5.573016257301673, 51.678090098016845], + [5.574493106199737, 51.67838457990413], + [5.57696529142573, 51.67876555635458], + [5.576412623011341, 51.679971641771736], + [5.5787842785180395, 51.68054590578354], + [5.5868641463777475, 51.68305317301], + [5.588948512337507, 51.684816102733784], + [5.596837463362325, 51.690922553916685], + [5.598855984915045, 51.695870891747795], + [5.600588716452188, 51.69657293001791], + [5.600228463794755, 51.69828990694333], + [5.5970406160619355, 51.701987489863214], + [5.595436509417038, 51.70752647409532], + [5.599086349896545, 51.70715522434344], + [5.600065179772515, 51.70848683888693], + [5.587758832810808, 51.72595416502525], + [5.580881160467036, 51.731448088077244], + [5.58222496358423, 51.732749914575884], + [5.579917819183812, 51.73293894226685], + [5.577477084285113, 51.735760901375755], + [5.576385355619752, 51.74489142046942], + [5.596605895819332, 51.74741329366118], + [5.597324186649663, 51.7505977883176], + [5.602030118325252, 51.75167725448958], + [5.612470124247588, 51.75477426970515], + [5.61504927722721, 51.75616011192399], + [5.617221090699983, 51.755202135067314], + [5.620488709359173, 51.75600016493438], + [5.624338550101529, 51.75651581429274], + [5.626728328157765, 51.75694196537112], + [5.635775478544902, 51.75832505703046], + [5.633773719382196, 51.76083301458914], + [5.6454183199075345, 51.76289119406436], + [5.648729035144794, 51.76426579567718], + [5.652547393065808, 51.76198666594457], + [5.6602621281786565, 51.75570226774855], + [5.66350647776818, 51.75432553631362], + [5.66722265748168, 51.75225628460675], + [5.6676926616799586, 51.75381316851038], + [5.66996487197104, 51.762604421745564], + [5.672260613733808, 51.76561615822175], + [5.674734601320916, 51.768009619398995], + [5.67627567696484, 51.7647731490682], + [5.680139616349151, 51.76135335286224], + [5.686105506905495, 51.75927486350757], + [5.690858170095597, 51.759130691852604], + [5.694241440967529, 51.755488261880906], + [5.701088207736953, 51.755362212269624] + ] + ] + ] + } + }, + { + "type": "Feature", + "id": "gemeente_gegeneraliseerd.480b971f-960f-40bb-ae0b-7ce3d4aeeabf", + "properties": { + "statcode": "GM1992", + "jrstatcode": "2024GM1992", + "statnaam": "Voorne aan Zee", + "rubriek": "gemeente", + "id": 342 + }, + "bbox": [ + 59118.03649999946, 424638.04670000076, 75956.00200000033, + 439405.47300000116 + ], + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.220378955287071, 51.82591405240347], + [4.220084328742566, 51.82574563229158], + [4.21979098406496, 51.82594218413446], + [4.220126190826122, 51.826084130943585], + [4.220378955287071, 51.82591405240347] + ] + ], + [ + [ + [4.107723826765164, 51.93614160776871], + [4.112674942931381, 51.934798479755024], + [4.11305569233852, 51.93574071027384], + [4.144889679494005, 51.931409461202044], + [4.162668514566888, 51.92665194705017], + [4.167018188438662, 51.92312548748974], + [4.168186804762118, 51.91905701738572], + [4.172385344114656, 51.91858599078094], + [4.172712276141576, 51.9185500827094], + [4.176772602697362, 51.917789308374275], + [4.185370770790075, 51.91288551014699], + [4.197099116192784, 51.90830135980692], + [4.210704539746001, 51.90133867699151], + [4.215907411590821, 51.898937717190684], + [4.2200670702824965, 51.89606695500043], + [4.228998350640212, 51.88568461003703], + [4.23002952991842, 51.883063135908124], + [4.2329696161244, 51.87748579976936], + [4.239383150979978, 51.87298591099791], + [4.185272527566686, 51.84970761786473], + [4.191416769420886, 51.84893625505482], + [4.19417852826437, 51.85003936775393], + [4.196540351667876, 51.85028735462624], + [4.198103324620841, 51.849973652649815], + [4.198173705312927, 51.84943007238109], + [4.19760995586887, 51.84700168975755], + [4.196394916711517, 51.84647806723784], + [4.194726638400371, 51.84421734499827], + [4.192734880045894, 51.84342951036353], + [4.193473752024533, 51.84294648580316], + [4.194750322259961, 51.84330662506286], + [4.196447856141321, 51.84350983980091], + [4.196524044922837, 51.843149841048266], + [4.198528143580243, 51.843392939127995], + [4.198244525151533, 51.839694707091894], + [4.195709240825987, 51.8396832030381], + [4.195609476330075, 51.839186706701774], + [4.195544885822678, 51.836724453312854], + [4.197121865073855, 51.83494576248901], + [4.207083445714831, 51.83555746600355], + [4.20915319379312, 51.83477965985384], + [4.220254720851461, 51.82821287341969], + [4.2206015027311725, 51.82720243380432], + [4.222214943699022, 51.82653744220709], + [4.221969590971616, 51.82501853537012], + [4.220110207705476, 51.826163526071404], + [4.219110345047289, 51.825722817895866], + [4.2181335145580166, 51.82634655758978], + [4.217773986345974, 51.826113392374076], + [4.219708153241824, 51.824559591076905], + [4.2129805177955415, 51.82058150457776], + [4.213504703455236, 51.816171533938665], + [4.212351600361673, 51.814025422959105], + [4.199182575146887, 51.809881394251065], + [4.19457640633527, 51.80708342465563], + [4.194242577208186, 51.80430484961258], + [4.183605352263788, 51.80434610727668], + [4.181975237924131, 51.80494121649443], + [4.166466107564539, 51.81753745019665], + [4.162847270666795, 51.81942402946504], + [4.159883960960306, 51.82001267742589], + [4.1589176625819295, 51.821143115294866], + [4.15859669527603, 51.82182601460107], + [4.156281260439945, 51.822506998361966], + [4.147367402849806, 51.821541344429605], + [4.143042503110874, 51.822850807681114], + [4.1399872741707, 51.8225931533218], + [4.138301730300927, 51.82108268705052], + [4.1387865911341715, 51.819949513692], + [4.136962700235203, 51.82009675228853], + [4.136610271294919, 51.82039923845612], + [4.131443243756588, 51.81966137143539], + [4.128881970209377, 51.81983254537168], + [4.128609705204438, 51.819245840647525], + [4.128325837102463, 51.81922559189443], + [4.128607276857024, 51.820833242845474], + [4.128729565707407, 51.82299570069319], + [4.129031081682854, 51.823088521091144], + [4.130072493715318, 51.82762107384966], + [4.1303213877763305, 51.82859557152527], + [4.129958244940832, 51.82863079244988], + [4.1293130924233585, 51.8284978414677], + [4.129385918658127, 51.828377624394236], + [4.129325911852342, 51.82836085177123], + [4.128438602535911, 51.829642799622775], + [4.128112035909129, 51.82953492466121], + [4.129035943930879, 51.828278813059754], + [4.128261897611803, 51.82725554138167], + [4.127983403341984, 51.826134715306985], + [4.128598062028204, 51.82445694382512], + [4.128310884335604, 51.82258975702295], + [4.128086473744079, 51.820844668975475], + [4.127849748599024, 51.81931902409166], + [4.127666130921542, 51.81932279479572], + [4.127562090408056, 51.819697804709115], + [4.126931560805956, 51.81988975023632], + [4.126999171356639, 51.81994898590828], + [4.127358323082869, 51.81983514999475], + [4.127509232133519, 51.82031042079642], + [4.127222464212486, 51.820552793946156], + [4.1261817781676084, 51.82078135980507], + [4.12534916671577, 51.82060622604243], + [4.125187485135001, 51.820650377712646], + [4.125562898406772, 51.82084434411823], + [4.125136326520545, 51.82141150367104], + [4.12416204286926, 51.821705924017195], + [4.122717920195282, 51.821595516566106], + [4.1225766375325925, 51.820806452681815], + [4.121380645112126, 51.82033950664674], + [4.1212476199080665, 51.820446361314296], + [4.121558907357246, 51.820606353355124], + [4.122172105675585, 51.821943032223736], + [4.121284124049487, 51.822198023278915], + [4.121253010270258, 51.822311568661824], + [4.121934532108638, 51.82229683305872], + [4.1227687026650015, 51.823993362790866], + [4.122654114988239, 51.82401792378841], + [4.122850009664168, 51.82445385555521], + [4.123003521035812, 51.824427184986995], + [4.123568917813436, 51.82567617645503], + [4.121878368523591, 51.825974546328354], + [4.122229597228602, 51.82680244218415], + [4.121568075276498, 51.826928439633576], + [4.121369886977018, 51.82655707193362], + [4.1198397750635705, 51.826628473237655], + [4.117604725008974, 51.821777701877984], + [4.119583891123216, 51.82081788871226], + [4.119421286688928, 51.82062478021249], + [4.116548178570961, 51.821650946809015], + [4.117436399455715, 51.825224132729346], + [4.115489779521052, 51.82685878468977], + [4.1131138976728545, 51.82745466010189], + [4.102907731950634, 51.828293353556525], + [4.103045383579451, 51.8270810020608], + [4.094248602927761, 51.82903472820929], + [4.0737841149506275, 51.84256136336371], + [4.071892352987414, 51.84256076130586], + [4.057876198412009, 51.83757509424529], + [4.055428808196955, 51.83590852163344], + [4.054676461416163, 51.8362741715167], + [4.048791239769612, 51.831880097382424], + [4.0485964423018235, 51.83205525026513], + [4.054419134687857, 51.83640078876958], + [4.053370380262102, 51.83694214470983], + [4.056318897953095, 51.83915151707192], + [4.061405774506483, 51.84194205866705], + [4.066297938949828, 51.84364378299167], + [4.067459571833728, 51.84542342344906], + [4.067955111368829, 51.8491792597175], + [4.06566445831748, 51.85278465926646], + [4.052368157720194, 51.86636664162878], + [4.037323807589449, 51.87964491383906], + [4.030564888344085, 51.884228814550255], + [4.029378653558065, 51.886373963921905], + [4.029602892520539, 51.88974758554134], + [4.030947530081666, 51.89237179298548], + [4.047597675855536, 51.907778991763806], + [4.050308807884484, 51.90732414107758], + [4.052272066786055, 51.90912997307177], + [4.051779195785503, 51.909429982521246], + [4.0505315577314, 51.909917696493224], + [4.051294285128762, 51.91261959520538], + [4.053275465732048, 51.91450954485446], + [4.052658693642727, 51.91837969864099], + [4.047554887862388, 51.92140884848542], + [4.040137053229322, 51.92390748930251], + [4.029425658364523, 51.920707258923805], + [4.018814371076434, 51.92058895127883], + [4.01621017808731, 51.91881444618669], + [4.009970928062591, 51.918376406016776], + [4.003096841083008, 51.91665925155033], + [3.9990633353301823, 51.91513100958328], + [3.993527780788627, 51.915848094271745], + [4.063935341602892, 51.9322271170906], + [4.073716311081518, 51.933628500899104], + [4.08283753682446, 51.93367142864404], + [4.092893892431784, 51.93252794107722], + [4.102002503278962, 51.92353037629128], + [4.102002703544944, 51.92353049084641], + [4.101719639983708, 51.92700927907775], + [4.107723826765164, 51.93614160776871] + ] + ] + ] + } + } + ], + "bbox": [13565.3999999985, 306846.197999999, 278026.09, 619231.648699999] +} diff --git a/frontend/static/geojson/omgevingsdienstgrenzen.json b/frontend/static/geojson/omgevingsdienstgrenzen.json new file mode 100644 index 00000000..c4944916 --- /dev/null +++ b/frontend/static/geojson/omgevingsdienstgrenzen.json @@ -0,0 +1,18796 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-602f", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [83039.7953, 413372.7273], + [82416.116, 413314.5681], + [82342.4168, 413406.836], + [82615.6738, 413507.1525], + [83039.7953, 413372.7273] + ] + ], + [ + [ + [84546.108, 413601.9101], + [84488.0072, 413376.744], + [84178.1009, 413628.116], + [84447.8038, 413939.9407], + [84546.108, 413601.9101] + ] + ], + [ + [ + [51290.5059, 420096.112], + [51295.24, 419923.7185], + [51069.3358, 419827.0234], + [51091.9745, 419774.5971], + [50908.6184, 419755.1428], + [50766.8119, 419968.0034], + [50810.486, 420031.4928], + [50970.3974, 419985.2513], + [51062.5548, 420100.3764], + [51210.3364, 420141.4063], + [51290.5059, 420096.112] + ] + ], + [ + [ + [56249.2435, 422012.7899], + [56732.1614, 421762.7543], + [56892.8871, 421593.4823], + [56105.13, 421816.5143], + [55252.8123, 421868.8105], + [54180.592, 421724.9744], + [53259.6409, 421269.3153], + [52970.2695, 421206.6363], + [52671.1725, 421314.114], + [53875.5889, 422419.9025], + [54214.826, 423009.15], + [54374.5425, 423165.2648], + [54763.6498, 423365.0099], + [55108.2083, 422852.86], + [56249.2435, 422012.7899] + ] + ], + [ + [ + [69558.0239, 424075.7485], + [69477.7918, 424061.4058], + [69159.5939, 424120.2884], + [69017.066, 424282.2519], + [69312.6493, 424409.393], + [69589.6068, 424357.5648], + [69487.5698, 424163.2088], + [69558.0239, 424075.7485] + ] + ], + [ + [ + [57109.2493, 424232.275], + [57055.043, 424160.7084], + [56514.5365, 424321.46], + [56352.105, 424436.315], + [56373.06, 424560.458], + [56685.3138, 424690.312], + [56947.1011, 424666.5023], + [56811.8451, 424591.8878], + [56786.4463, 424509.975], + [56919.0405, 424290.4388], + [57109.2493, 424232.275] + ] + ], + [ + [ + [98615.226, 452571.141], + [98321.158, 450737.612], + [98470.4087, 450314.8973], + [98477.71, 450036.641], + [98246.847, 449751.406], + [98190.1762, 449553.7139], + [98109.505, 449276.586], + [97997.251, 448108.7], + [98015.082, 447611.761], + [97850.834, 446724.86], + [97750.0229, 446500.7396], + [97495.72, 445593.79], + [97295.052, 445395.417], + [97388.218, 445240.174], + [97246.175, 445125.745], + [97283.6917, 444982.2422], + [97315.032, 444816.97], + [97380.5208, 444394.604], + [97360.817, 444209.814], + [97546.089, 444049.6091], + [97618.233, 443714.498], + [97737.409, 443509.712], + [97609.022, 443254.858], + [97314.64, 443043.42], + [97758.298, 442605.94], + [97908.4565, 442596.8742], + [97920.6199, 442553.4942], + [98194.32, 442679.01], + [98253.64, 442751], + [98233.74, 442779.02], + [98271.64, 442804.93], + [98237.8118, 442851.5731], + [98325.46, 442933.94], + [98358.19, 442888.4], + [98390.76, 442911.08], + [98528.62, 442859.2], + [98635.27, 442848.44], + [98865.79, 442938.67], + [98977.82, 442920.13], + [99147.72, 443030.32], + [99130.7382, 443053.9109], + [99438.269, 443322.9551], + [99469.9, 443350.62], + [99437.737, 443395.575], + [99395.875, 443358.925], + [99092.54, 443220.08], + [98871.41, 443718.14], + [99470.93, 443945.55], + [99367.12, 444533.15], + [99548.2063, 444683.8325], + [99483.4077, 444916.372], + [100548.21, 445396.5351], + [100843.15, 444690.907], + [100511.5554, 443544.1207], + [100531.5639, 443486.9535], + [100490.7673, 443449.535], + [100483.05, 443372.988], + [100512.5589, 443300.5403], + [101032.5959, 442927.6852], + [100263.914, 442501.198], + [100218.392, 442540.542], + [99800.109, 442187.763], + [100102.53, 441765.3601], + [100219.5565, 441601.6549], + [100548.655, 441141.2181], + [100567.8204, 441114.4049], + [100842.2829, 440687.0871], + [101023.216, 440406.01], + [100861.149, 440206.4352], + [101129.738, 439885.505], + [101279.5431, 439708.5904], + [101591.2938, 439335.4708], + [101845.8921, 439034.7965], + [102163.6716, 438660.2508], + [102202.023, 438615.031], + [102076.411, 438344.637], + [102480.8034, 437810.2098], + [102951.3118, 437265.4851], + [103796.3939, 436270.4816], + [103780.036, 436258.226], + [103252.229, 435998.035], + [102429.2964, 435835.9105], + [100930.565, 435680.709], + [100612.44, 435774.7002], + [100608.4899, 435774.0274], + [100497.814, 435694.799], + [100603.5356, 435546.2742], + [100379.801, 435364.458], + [100351.095, 435429.112], + [100311.9846, 435399.1119], + [100292.308, 435532.265], + [100052.122, 435377.597], + [100074.043, 435174.862], + [99738.209, 435349.678], + [99590.043, 435371.464], + [99196.047, 435258.484], + [99654.333, 435051], + [100183, 434448.333], + [100472.2212, 434258.7183], + [102156.109, 433723.271], + [102132.582, 433603.304], + [102204.0248, 433512.604], + [102470.0474, 433083.8905], + [102615.19, 432732.098], + [103213.307, 431507.917], + [103225.5833, 431441.7458], + [103533.352, 430704.937], + [103786.996, 430344.04], + [104027.867, 430109.333], + [103693.3358, 429744.6017], + [103276.712, 429276.575], + [103065.536, 429346.974], + [102747.6143, 429803.1896], + [102560.756, 429823.695], + [102379.325, 429738.571], + [102052.103, 429464.661], + [101623.172, 429396.845], + [101331.542, 429269.394], + [101241.4119, 429171.4262], + [101097.742, 429157.358], + [100758.289, 428086.832], + [100383.1482, 428263.7025], + [99743.467, 428519.008], + [98763.549, 429041.958], + [98621.3341, 428791.2672], + [98257.9393, 428360.8171], + [97991.978, 428124.342], + [97894.555, 427907.844], + [97912.836, 427841.648], + [97795.279, 427582.077], + [97539.25, 427139.884], + [97200.038, 427351.423], + [96799.778, 427367.801], + [96347.4227, 427296.1386], + [96000.038, 427191.378], + [95600.164, 427157.738], + [94639.7846, 427484.1095], + [93799.401, 427779.008], + [93099.89, 427804.55], + [92400.364, 427681.775], + [91580.518, 427439.481], + [90990.279, 427413.779], + [90406.603, 427480.023], + [89981.739, 427625.39], + [89200.597, 428037.879], + [88918.6711, 427726.1267], + [88487, 427288.5], + [88261.2872, 427220.7124], + [88025.984, 427232.568], + [87816.5, 427263.6], + [86894, 427442.7], + [86720.6179, 427402.1498], + [85710.6452, 426642.0898], + [85505.7499, 426468.9337], + [84800, 425865], + [84000, 426104], + [83784.1274, 426122.29], + [83286.375, 425987.2188], + [82783.1873, 425876.6851], + [82593, 425836], + [82153.4615, 425456.908], + [81217.94, 425282.8501], + [80427, 424995], + [79949.2372, 424497.5816], + [79722, 424284], + [78945.62, 424468.58], + [78059, 424648], + [77851, 424616], + [77557, 424460], + [76301.9596, 422470.2676], + [75835.6899, 422480.814], + [75163.2069, 422789.4265], + [74611.3558, 423502.2298], + [74604.743, 423713.6215], + [74318.416, 423769.5904], + [73913.8694, 424154.256], + [73413.1203, 424322.6375], + [73193.3718, 424506.9378], + [72722.2588, 424638.0467], + [71988.7377, 424654.7228], + [71877.414, 424722.7869], + [70831.3636, 426141.88], + [70585.3978, 426355.9449], + [70382.2075, 426424.8721], + [70317.7142, 426551.7512], + [70296.8705, 426628.0934], + [70138.5315, 426706.548], + [69522.207, 426609.564], + [69226.5483, 426760.3256], + [69015.4409, 426735.271], + [68896.3596, 426569.2355], + [68927.6213, 426442.6033], + [68802.1628, 426461.1428], + [68778.4449, 426495.2102], + [68420.8134, 426419.2658], + [68244.5663, 426441.36], + [68224.6666, 426376.4178], + [68205.0573, 426374.504], + [68227.5554, 426553.0087], + [68240.1489, 426793.422], + [68261.1128, 426803.388], + [68341.6199, 427306.3634], + [68360.6496, 427414.4734], + [68335.6869, 427418.8242], + [68290.9625, 427404.8033], + [68295.7509, 427391.3431], + [68291.5825, 427389.5488], + [68232.891, 427533.2155], + [68210.1744, 427521.6048], + [68271.4378, 427380.7683], + [68216.1138, 427267.8594], + [68194.7583, 427143.5072], + [68233.897, 426956.1326], + [68210.505, 426748.763], + [68191.6737, 426554.9013], + [68172.415, 426385.466], + [68159.7634, 426386.1047], + [68153.3133, 426427.9463], + [68110.2141, 426450.0521], + [68114.9894, 426456.5609], + [68139.5301, 426443.4684], + [68150.8497, 426496.1589], + [68131.5471, 426523.4638], + [68060.2436, 426550.1338], + [68002.506, 426531.647], + [67991.445, 426536.752], + [68017.7001, 426557.8804], + [67989.3876, 426621.4834], + [67922.7911, 426655.4018], + [67823.023, 426644.8498], + [67811.7568, 426557.2411], + [67728.402, 426506.731], + [67719.4382, 426518.7775], + [67741.208, 426536.202], + [67786.0682, 426684.163], + [67725.3469, 426713.5943], + [67723.4219, 426726.2628], + [67770.3753, 426723.8059], + [67831.1619, 426911.5333], + [67823.3104, 426914.4029], + [67837.6574, 426962.6626], + [67848.1879, 426959.5117], + [67889.5771, 427097.7763], + [67773.6223, 427132.9943], + [67799.435, 427224.671], + [67754.0803, 427239.4808], + [67739.7001, 427198.4064], + [67634.3675, 427208.1864], + [67470.8841, 426671.2583], + [67605.4618, 426562.1054], + [67593.8775, 426540.8188], + [67397.802, 426658.4298], + [67465.9746, 427054.853], + [67334.9698, 427239.0418], + [67172.3623, 427308.1956], + [66470.5118, 427413.8698], + [66477.6181, 427278.8366], + [65875.1273, 427506.9193], + [64491.7711, 429036.9359], + [64361.4176, 429039.2253], + [63385.4928, 428502.1723], + [63213.441, 428319.8653], + [63162.3383, 428361.4909], + [62747.7633, 427880.1341], + [62479.1218, 427570.601], + [62524.8615, 427525.973], + [62446.0323, 427160.1298], + [62462.7763, 426921.7558], + [62583.838, 426747.045], + [62208.5761, 426924.078], + [62029.568, 426706.399], + [62378.6567, 426407.4586], + [62291.7614, 426310.1074], + [62365.6586, 426239.8743], + [62741.6663, 426671.3604], + [62790.9124, 426575.5068], + [63030.7112, 426520.185], + [63060.515, 426513.229], + [63100.3368, 426662.0099], + [63118.3803, 426660.5406], + [63219.7582, 426409.061], + [63714.5057, 425810.51], + [65106.9577, 425078.0469], + [65770.5068, 424775.8948], + [67308.9111, 423764.6345], + [67656.6795, 423735.0789], + [67752.372, 423652.2135], + [67689.9955, 423561.2523], + [67946.4644, 423443.2579], + [68199.1446, 423326.1393], + [68010.3923, 423063.409], + [68354.2518, 422881.315], + [68517.6903, 423182.1045], + [68806.5011, 423046.8098], + [68672.803, 422747.268], + [68962.4639, 422600.5939], + [69159.3274, 422876.2924], + [69564.1043, 422637.499], + [70636.1123, 421904.0848], + [71769.8397, 421457.2195], + [72208.021, 421442.676], + [72492.5048, 421251.9608], + [72380.059, 421158.693], + [72427.9988, 421116.4513], + [72522.0756, 421182.3259], + [72608.5026, 421319.6258], + [72616.2515, 421282.6528], + [72589.595, 421161.2106], + [72644.499, 421002.2774], + [74205.2949, 419356.2328], + [74259.0726, 419374.2466], + [74349.0319, 419306.0928], + [74966.677, 418722.59], + [75954.027, 418011.348], + [76093.658, 417871.6415], + [75988.859, 417740.247], + [76125.828, 417622.354], + [76183.2438, 417655.669], + [76203.9422, 417641.6047], + [76122.239, 417543.0079], + [76126.8344, 417534.1828], + [76105.1724, 417510.8229], + [76098.2118, 417515.0785], + [76054.2619, 417467.9115], + [76005.2435, 417484.4175], + [75989.288, 417477.008], + [76001.0504, 417447.4305], + [76042.6171, 417445.8188], + [76051.9496, 417387.5112], + [76068.146, 417393.9287], + [76067.3308, 417440.2033], + [76111.9969, 417487.7484], + [76112.4841, 417504.4733], + [76132.787, 417528.0904], + [76143.2527, 417527.7791], + [76222.2094, 417617.3969], + [76233.262, 417539.4284], + [77148.5683, 416318.1439], + [77320.728, 416022.951], + [77927.9361, 415523.6879], + [78475.5796, 415256.3879], + [78504.4679, 415304.9124], + [78615.4168, 415271.3053], + [78471.8885, 415048.695], + [78527.4511, 414969.3198], + [78585.7828, 415146.4483], + [78675.0323, 415211.75], + [79071.1138, 414966.7668], + [79526.9195, 414890.1868], + [79772.1485, 414788.9383], + [81149.1334, 413554.307], + [81882.4891, 413182.2273], + [82696.3514, 413205.8504], + [83412.0618, 413102.1881], + [84380.965, 413199.7436], + [85632.4859, 413069.5871], + [85843.2139, 413120.0964], + [86051.0423, 413347.8944], + [86144.1116, 413309.6953], + [86343.0656, 413545.2353], + [86475.5461, 413871.6454], + [86382.8928, 413972.1943], + [86412.3996, 414047.0038], + [86573.2834, 414017.3281], + [86627.162, 414093.4061], + [86637.2458, 414089.3939], + [86649.9602, 414084.3351], + [86644.483, 413991.4476], + [86729.5782, 413948.8976], + [86833.8428, 413865.711], + [86691.2301, 413814.9641], + [86612.5378, 413711.0968], + [86578.2107, 413550.9603], + [86657.381, 413322.3388], + [86910.8897, 413295.5218], + [86861.107, 413154.0986], + [86680.9511, 413068.8531], + [86887.698, 412722.238], + [87004.6491, 412675.1911], + [86364.6296, 412133.3305], + [86405.608, 412354.1584], + [86154.9363, 412509.5438], + [86047.6264, 412478.6894], + [85947.6021, 412336.3716], + [85620.0426, 412386.0131], + [85248.7106, 412135.6195], + [84823.93, 412142.8641], + [84774.971, 412321.0428], + [84214.3169, 412295.5499], + [84481.8258, 411490.5624], + [84517.7623, 411213.3959], + [84464.5705, 410975.3395], + [84380.4884, 410914.7339], + [84218.6539, 410909.1742], + [84218.3199, 410891.9167], + [84358.4712, 410831.9002], + [84267.6568, 410382.931], + [83747.0479, 409660.9658], + [82455.8709, 408985.093], + [81804.886, 408764.1729], + [80398.9358, 408435.8991], + [79815.5289, 408384.0329], + [79726.787, 408422.3881], + [78426.7173, 407881.9654], + [77818.5031, 407901.1599], + [76828.8288, 408110.8088], + [76355.8948, 408286.731], + [76027.0846, 408320.7533], + [75105.9386, 408698.711], + [74447.9615, 409458.3386], + [74234.9064, 409960.2998], + [74276.1215, 410089.402], + [73625.1415, 410381.3829], + [73412.4789, 410375.708], + [73366.6413, 410227.6699], + [73266.1173, 410371.8023], + [73261.0698, 410535.1368], + [72508.813, 410730.9051], + [72146.5489, 411147.6181], + [71781.457, 411105.6415], + [70713.3233, 411222.1579], + [70482.6956, 411567.2735], + [70429.1468, 411649.1109], + [69948.6729, 411129.6066], + [69821.3321, 411234.8787], + [70315.8551, 411711.9761], + [70207.3751, 412055.1931], + [69828.7566, 412700.1689], + [69628.3068, 412841.1058], + [68437.553, 413324.7948], + [68220.0713, 413534.0255], + [68020.9138, 413482.826], + [67599.5731, 413828.2284], + [67140.9208, 413931.1377], + [66794.592, 414005.2565], + [65998.3848, 413971.3735], + [65772.2825, 413947.4448], + [65697.587, 413873.1008], + [65432.2723, 413873.726], + [65105.7495, 414000.5724], + [65061.2998, 414165.5655], + [65023.886, 414161.3725], + [65059.0606, 414055.7903], + [64827.7495, 414021.5085], + [64839.5808, 413891.6024], + [64704.024, 414056.924], + [64409.352, 414135.731], + [63953.8315, 414055.9668], + [63200.3054, 414491.8718], + [62634.654, 414508.1584], + [62481.095, 414848.526], + [62637.8226, 415159.7253], + [62139.0167, 416000], + [61973.6783, 416250.183], + [61950.6633, 416669.7309], + [61801.7713, 417148.935], + [61481.2385, 417504.977], + [61453.0303, 417640.036], + [61599.671, 418100.697], + [61373.967, 418296.9748], + [61255.3285, 417982.516], + [60983.1658, 417868.723], + [60852.874, 417899.2529], + [60742.6833, 418060.1054], + [60520.6575, 419000], + [60504.6099, 419389.1826], + [60411.2559, 419498.7151], + [61109.0517, 419655.7895], + [61031.0891, 419775.6005], + [60794.3719, 419767.5139], + [60558.3898, 420026.2856], + [60686.238, 420380.6456], + [60781.4706, 420685.9232], + [60829.0169, 420923.6984], + [60525.8865, 421093.3785], + [60567.3444, 421822.4668], + [60677.4225, 422066.4493], + [59997.583, 422883.233], + [59601.6214, 423414.5438], + [59462.4773, 423772.6001], + [59551.7748, 424060.1438], + [59000, 424424.5336], + [58781.2734, 424611.3413], + [58571.419, 424686.1885], + [58159.9258, 424547.653], + [57292.3996, 424525.927], + [57134.217, 424785.6655], + [56359.5055, 424908.3289], + [55836.9468, 424840.482], + [55525.8903, 424559.5193], + [54883.6475, 424217.6658], + [54872.2475, 424235.2233], + [54963.5335, 424325.2195], + [54808.2068, 424284.9258], + [54869.1599, 424202.8444], + [54836.4985, 424183.9188], + [54744.224, 424289.726], + [54191.4198, 424228.6975], + [54141.877, 424152.584], + [53873.0348, 424159.389], + [53244.1565, 423975.813], + [53276.4338, 423826.6916], + [52929.9294, 423652.561], + [52614.1168, 423645.5815], + [52197.636, 423824.306], + [51759.0599, 423665.1645], + [51686.3968, 423378.1065], + [51846.8045, 423086.6265], + [52091.4796, 422860.6303], + [51861.0618, 422585.0598], + [51620.4288, 422459.9877], + [51483.2386, 422379.1831], + [51405.4888, 422375.7205], + [51388.4018, 422393.6564], + [51393.8294, 422418.4348], + [51435.3244, 422452.7479], + [51434.6434, 422496.6863], + [51396.4255, 422527.8158], + [51287.8144, 422465.1197], + [51294.1927, 422435.7062], + [51328.728, 422430.091], + [51349.1826, 422388.1061], + [51383.0278, 422365.5762], + [51375.6795, 422327.18], + [51292.1199, 422308.1598], + [51265.3041, 422313.9996], + [51258.0252, 422336.0315], + [51255.8022, 422400.8274], + [51266.571, 422425.3352], + [51289.0022, 422435.7487], + [51283.1114, 422462.7441], + [51237.0958, 422442.5381], + [51136.8275, 422404.4315], + [51163.4464, 422338.2314], + [51233.1873, 422326.907], + [51240.8305, 422302.3394], + [51228.3493, 422285.9135], + [51186.0249, 422285.5443], + [51193.9308, 422241.2729], + [51146.8705, 422237.314], + [50997.9323, 422257.5323], + [50812.484, 422304.075], + [50428.724, 422564.0154], + [50273.1735, 422482.782], + [50097.5263, 421942.2654], + [50192.5848, 421877.9019], + [49985.5095, 421798.8855], + [49544.3845, 420733.1816], + [49661.2755, 420465.6826], + [49612.5263, 420383.2736], + [49484.7585, 420431.139], + [49247.6183, 419909.8308], + [49495.899, 419775.085], + [49474.7348, 419903.2239], + [49542.2037, 419921.0833], + [49567.4415, 419796.2779], + [49603.8355, 419808.4478], + [49791.7213, 420237.7099], + [49904.6543, 419992.5653], + [50199.5188, 419843.4859], + [50542.7919, 419552.1393], + [50548.9281, 419425.2819], + [50309.855, 419104.447], + [49876.0839, 419125.6178], + [49693.599, 419319.006], + [49665.9785, 419261.1029], + [49374.3605, 419384.1104], + [49289.1645, 419302.0894], + [49095.1573, 419349.8885], + [49079.9164, 419536.0574], + [49004.1628, 419364.113], + [48958.7318, 419472.5005], + [49014.4243, 419608.942], + [48904.1985, 419690.9644], + [48863.4958, 419638.49], + [48791.902, 419685.4061], + [48780.2633, 419779.5842], + [48603.0129, 419845.2776], + [48350.0529, 419755.2781], + [48127.9427, 419974.2928], + [48086.0895, 420157.3105], + [48929.1753, 420869.7987], + [49589.3505, 421353.9024], + [49916.7253, 422150.5665], + [49998.997, 422601.574], + [49978.7352, 422919.5119], + [49853.476, 423456.973], + [49349.885, 424876.113], + [49306.493, 425183.03], + [49362.9639, 425530.394], + [49512.186, 425877.623], + [49664.983, 426136.915], + [50065.989, 426555.079], + [50350.8019, 426757.3843], + [50936.97, 426923.523], + [51954.559, 427410.886], + [52728.458, 427413.73], + [53121.233, 427499.918], + [55070.7452, 428458.0393], + [55824.0152, 428882.2993], + [56012.082, 428718.019], + [56680.548, 429017.505], + [57255.753, 429173.609], + [58337.372, 429340.826], + [59437.247, 429880.445], + [60035.691, 429939.182], + [60269.584, 429864.041], + [60276.33, 429685.579], + [60000, 429443.383], + [59978.5788, 429139.6196], + [60431.5314, 428880.2974], + [60341.2803, 428442.518], + [60755.1468, 427958.9583], + [61216.9076, 427616.9723], + [61338.6458, 427584.9524], + [61575.7062, 427805.4751], + [61611.3848, 427751.838], + [61341.0716, 427400.5225], + [61850.1088, 426979.3283], + [62003.7413, 427154.0482], + [61656.4004, 427459.341], + [61672.8321, 427649.1664], + [62099.6545, 427468.8985], + [62248.7953, 427494.7543], + [62394.6553, 427640.9375], + [62461.864, 427584.823], + [62734.6963, 427899.8656], + [63144.8629, 428375.9011], + [63073.6933, 428437.448], + [63281.3849, 428679.5003], + [63637.5833, 428983.5229], + [63978.1222, 429166.6916], + [64061.7562, 429363.2099], + [64103.4803, 429780.3993], + [63952.9559, 430184.3394], + [63064.7226, 431711.9661], + [62056.0704, 433208.2038], + [61600.2493, 433726.7908], + [61523.0455, 433966.9471], + [61545.4911, 434341.9486], + [61643.493, 434632.1441], + [62821.0895, 436324.8335], + [63006.6985, 436270.7996], + [63145.4721, 436469.203], + [63112.1743, 436503.2], + [63027.3314, 436559.0329], + [63085.3335, 436858.6358], + [63225.4933, 437066.3763], + [63190.9687, 437497.6839], + [62846.0954, 437841.116], + [62341.0181, 438128.5046], + [61597.6339, 437786.2129], + [60867.4884, 437786.7429], + [60684.6345, 437592.7186], + [60254.5268, 437552.1053], + [59778.0313, 437370.0689], + [59497.3153, 437205.3563], + [59118.0365, 437292.4148], + [58877.9068, 437464.0631], + [58652.4427, 437331.9769], + [58547.4595, 437347.8792], + [58453.2635, 437555.3021], + [57957.3393, 439370.4859], + [57135.9843, 441598.6148], + [57075.4658, 442417.1078], + [57254.4062, 443007.7228], + [58139.075, 444513.767], + [58384.808, 444844.827], + [58616.649, 445013.499], + [59484.495, 445315.002], + [60000, 445420.3503], + [60447.5523, 445358.1935], + [61350.9491, 445030.9566], + [61673.6989, 445172.2394], + [61963.3446, 445211.8908], + [62575.3833, 445030.6756], + [62856.6075, 445687.2824], + [62967.754, 445954.4073], + [63038.2233, 445943.1106], + [66121.0923, 444855.9619], + [66374.0378, 444859.1123], + [67288.9688, 445616.8805], + [68348.9968, 446670.7977], + [68838.3959, 446317.5965], + [68730.714, 446167.734], + [68821.9, 445974.837], + [69036.628, 445664.324], + [69243.8148, 445543.2807], + [70083.984, 445080.593], + [69940.7423, 444802.1262], + [70009.758, 444769.394], + [69819.596, 444392.373], + [70367.3151, 444183.4945], + [70347.452, 443987.772], + [71339.328, 443540.987], + [71767.445, 443280.171], + [72553.888, 442724.526], + [72490.677, 442620.009], + [72581.736, 442565.392], + [72767.728, 442627.961], + [72807.104, 442567.582], + [72680.319, 442493.225], + [72494.686, 442264.617], + [72870.096, 441382.684], + [74594.287, 439889.21], + [74711.095, 439860.96], + [74845.694, 440000.0002], + [75325.2638, 440584.5731], + [75555.237, 440016.902], + [75565.79, 440020.324], + [75912.742, 440123.319], + [76143, 440002], + [76241.3663, 439880.7064], + [77003.897, 438860.2621], + [77429.4839, 438327.42], + [77505.3139, 438248.6702], + [77566.1686, 438189.1899], + [77760.09, 438040.14], + [77887.4619, 438019.69], + [78197.6977, 437818.0755], + [78336.182, 437816.822], + [79702.147, 437539.612], + [79726.1113, 437565.0096], + [79874.2743, 437719.7389], + [81178.55, 439041.67], + [81257, 439249.37], + [81821.029, 439896.257], + [81885.8229, 439777.5605], + [82758.972, 440298.347], + [82695.904, 440361.517], + [82767.116, 440405.334], + [83744.006, 440848.577], + [84877.154, 441245.734], + [84643.156, 441878.19], + [85730.998, 442144.763], + [86453.156, 442326.158], + [86463.9, 442267.628], + [86588.398, 442301.453], + [86709.206, 442027.252], + [86738.5455, 442044.6395], + [87358.905, 442446.208], + [87703.775, 442650.991], + [89089.389, 443552.47], + [88856.855, 443905.441], + [90441.729, 445308.721], + [90674.5563, 445671.5831], + [90690.7488, 445691.7398], + [90830.8413, 445839.7519], + [90734.2267, 445942.4263], + [90626.97, 446206.912], + [90775.3892, 446242.2794], + [91244.121, 446388.861], + [91257.25, 446662.007], + [91132.277, 446694.564], + [91018.248, 446860.827], + [91092.6103, 447092.2039], + [91453.491, 447548.088], + [91240.756, 447925.962], + [91313.955, 448038.793], + [91224.962, 448204.86], + [91167.573, 448610.746], + [91178.3492, 448620.8114], + [91220.0948, 448630.6805], + [91400.317, 448723.42], + [91451.749, 448798.464], + [91571.411, 448833.223], + [91600.895, 448833.738], + [91671.4319, 448878.3125], + [91856.764, 448956.334], + [91913.456, 449003.824], + [91922.377, 449081.958], + [92519.624, 449647.702], + [92541.2, 449607.2], + [92586.174, 449619.349], + [92566.379, 449663.743], + [93801.309, 449661.2291], + [94441.5878, 449656.0914], + [94604.123, 449753.658], + [94953.421, 450194.4936], + [95434.4977, 450695.9776], + [95684.0478, 450917.2393], + [96497.181, 451576.172], + [97233.62, 451506.744], + [97404.799, 451672.626], + [97533.6146, 452157.9135], + [98079.403, 452874.321], + [98123.157, 452929.655], + [98615.226, 452571.141] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD22", + "od_naam": "DCMR Milieudienst Rijnmond", + "naam_alt": "DCMR" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-602e", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [154047.947, 565045.368], + [154282.842, 564937.841], + [154394.457, 564949.668], + [154405.99, 565052.013], + [154585.2913, 565081.371], + [154918.6468, 564694.4274], + [155245.582, 563638.079], + [155488.791, 563421.5029], + [155553.209, 563166.4862], + [154204.881, 563241.664], + [153560.6715, 564660.6358], + [153449.349, 565357.375], + [153487.663, 565433.185], + [153680.806, 565496.816], + [154047.947, 565045.368] + ] + ], + [ + [ + [146531.724, 584861.5913], + [145929.2666, 584756.4193], + [145800.126, 584846.356], + [145592.4513, 585266.2724], + [145695.9036, 585434.8121], + [145825.5629, 585437.6984], + [146036.0261, 585443.4111], + [146177.7108, 585326.7298], + [147001.911, 585127.369], + [146531.724, 584861.5913] + ] + ], + [ + [ + [139834.2073, 589987.2831], + [139835.364, 589972.241], + [139831.9805, 589973.769], + [139834.2073, 589987.2831] + ] + ], + [ + [ + [139834.2073, 589987.2831], + [139644.835, 589559.829], + [139459.129, 589506.77], + [138889.1467, 589327.6907], + [138041.8396, 588614.8731], + [137275.7254, 588371.2429], + [136582.9939, 588996.4625], + [136590.0571, 589177.3454], + [137300.598, 589637.006], + [137661.0837, 590368.726], + [138592.5038, 590447.9958], + [139253.4499, 590301.1911], + [139705.0946, 590286.9035], + [139834.2073, 589987.2831] + ] + ], + [ + [ + [135879.311, 590523.89], + [135410.195, 589955.674], + [135355.384, 589933.6508], + [135273.8945, 589877.1343], + [135268.0205, 589912.503], + [135310.077, 589947.62], + [135090.138, 590197.656], + [135023.6115, 590197.9698], + [134972.0284, 590175.8713], + [134935.0196, 590099.4715], + [135113.8079, 590052.0195], + [135275.987, 589828.532], + [135011.384, 590037.734], + [134406.005, 590033.835], + [133379.103, 589770.938], + [133304.5015, 589663.1579], + [133166.589, 589459.576], + [132276.199, 588807.714], + [131396.027, 588338.103], + [128341.2898, 587228.186], + [127297.568, 586556.735], + [127267.156, 586241.15], + [127738.2765, 585334.2901], + [127777.3106, 584778.2993], + [127245.0554, 584047.7529], + [126239.049, 583545.1811], + [124980.953, 582410.116], + [124294.358, 581536.989], + [123750.638, 581167.895], + [122992.605, 581152.02], + [121092.4941, 581038.5301], + [120544.2121, 580210.9319], + [120660.7851, 580036.756], + [120398.0156, 579882.7208], + [118975.5216, 580125.7552], + [118774.1843, 580297.0263], + [119245.641, 581651.827], + [119357.2968, 581842.8915], + [124692.3705, 585531.2498], + [126532.4659, 587261.6443], + [129248.636, 589275.347], + [131602.414, 590669.481], + [132160.214, 590934.247], + [133454.5493, 591311.861], + [134095.248, 591290.244], + [135499.196, 591052.78], + [135761.3026, 590955.2529], + [135902.357, 590768.051], + [135879.311, 590523.89] + ] + ], + [ + [ + [207505.926, 595582.676], + [207514.445, 595557.108], + [207587.708, 595595.6785], + [207686.537, 595425.623], + [207640.443, 595353.312], + [207551.1829, 595389.7465], + [207463.749, 595502.1021], + [207429.817, 595566.505], + [207436.367, 595701.7561], + [207521.1193, 595796.903], + [207581.974, 595736.02], + [207584.7764, 595627.3085], + [207505.926, 595582.676] + ] + ], + [ + [ + [207018.203, 597290.047], + [207048.858, 597241.623], + [206791.9091, 597298.3033], + [206863.7663, 597621.4619], + [206796.179, 597878.068], + [206852.6676, 597857.0828], + [207032.375, 597435.621], + [207018.203, 597290.047] + ] + ], + [ + [ + [207953.6669, 603225.036], + [208053.688, 603083.767], + [207854.666, 603163.031], + [207769.5748, 603284.5279], + [207953.6669, 603225.036] + ] + ], + [ + [ + [207947.366, 603403.795], + [208343.688, 603202.394], + [208482.5166, 603053.1065], + [208452.5723, 603008.775], + [208368.363, 603042.2951], + [208234.4604, 602993.7269], + [208166.8785, 603148.7701], + [207913.41, 603305.289], + [207609.272, 603342.3853], + [206323.403, 602712.48], + [206347.832, 602654.056], + [206613.7373, 602759.7753], + [206616.9262, 602746.5972], + [206503.8413, 602702.8497], + [206414.7878, 602510.9744], + [206466.2777, 602488.9435], + [206435.9205, 602402.6231], + [206379.2882, 602383.4996], + [206166.497, 601851.865], + [206075.7, 600937.049], + [206270.3455, 600248.9456], + [206453.844, 600070.461], + [206496.8473, 599954.6883], + [206479.493, 599863.299], + [206448.6378, 599863.7429], + [206454.9273, 599925.3525], + [206236.2048, 600044.906], + [206131.423, 599851.13], + [206259.286, 599847.3041], + [206376.7944, 599748.5865], + [206438.5756, 599806.4987], + [206458.0447, 599802.0677], + [206421.4969, 599735.6051], + [206698.1015, 599370.7535], + [206646.7364, 599334.7999], + [206414.7255, 599377.805], + [206310.286, 599444.901], + [206244.9201, 599540.0191], + [206223.5501, 599517.1774], + [206106.3074, 599518.5451], + [206055.18, 599487.95], + [206195.9045, 599492.4526], + [206309.1201, 599408.1991], + [206283.9375, 599363.5184], + [206206.4361, 599329.2115], + [206085.669, 599342.5781], + [206053.3739, 599310.8149], + [206027.4885, 599276.2625], + [206130.0814, 599291.0341], + [206246.4995, 599245.4509], + [206330.3169, 599196.9963], + [206284.9306, 599296.4044], + [206377.97, 599341.7353], + [206392.3924, 599320.6564], + [206446.636, 599349.952], + [206644.871, 599325.1591], + [206644.3209, 599291.896], + [206706.7686, 599313.4981], + [206683.1047, 599229.8719], + [206742.8834, 599091.536], + [206690.0339, 599067.7895], + [206651.2101, 598680.6219], + [206568.409, 598326.197], + [206658.351, 598178.426], + [206653.2792, 597955.2652], + [206594.0748, 597912.728], + [206770.0036, 597375.1894], + [206733.1783, 597282.5892], + [206810.883, 597257.434], + [206967.8623, 597203.8785], + [206875.268, 596725.301], + [206981.4705, 596192.2561], + [206869.6771, 595822.9919], + [206817.2374, 595785.0511], + [206831.9301, 595772.2499], + [206917.388, 595806.8131], + [206972.2215, 596096.6423], + [207100.759, 595886.824], + [207186.898, 595609.987], + [207689.972, 595163.6359], + [207722.6245, 595035.1945], + [207698.257, 594899.4484], + [207420.027, 594469.669], + [207591.623, 593512.981], + [207760.057, 593174.7381], + [207710.9538, 592966.2403], + [207474.7578, 592832.3006], + [207219.097, 592873.216], + [207096.8399, 592780.8395], + [206466.4375, 592766.3573], + [206462.7589, 592714.0322], + [206601.148, 592668.7601], + [206450.8687, 592544.9], + [206513.6465, 592552.9894], + [206825.064, 592678.764], + [206795.604, 592591.289], + [207295.708, 592640.687], + [207282.896, 592734.436], + [207594.1918, 592780.0015], + [207894.112, 592983.945], + [207876.049, 593184.4743], + [207679.435, 593491.945], + [207499.991, 594302.507], + [207548.2218, 594535.0308], + [207882.057, 594967.0301], + [207980.099, 594994.4951], + [208139.5889, 594772.7596], + [208644.491, 594391.884], + [208840.962, 594326.3941], + [209088.912, 594382.3526], + [209196.9127, 594473.6533], + [208867.517, 594357.46], + [208607.632, 594462.7341], + [208545.655, 594607.959], + [208653.317, 594709.678], + [208383.9885, 594913.3109], + [208347.572, 595057.5451], + [207462.705, 596221.502], + [207415.28, 596336.092], + [207484.52, 596791.197], + [207838.347, 597058.5651], + [208909.6554, 596557.4318], + [208979.879, 596181.461], + [208877.088, 595719.321], + [208907.983, 595274.2951], + [209006.7156, 595167.9454], + [208954.402, 595606.059], + [209058.078, 595636.015], + [209145.76, 595476.1771], + [209209.055, 595533.8675], + [209199.1128, 595820.6638], + [209147.0041, 595902.2273], + [209225.9584, 595993.9998], + [209394.27, 596646.492], + [209565.805, 596792.628], + [209648.797, 596712.6571], + [210292.926, 596688.315], + [210384.019, 596314.988], + [210297.888, 596089.572], + [210336.825, 595829.482], + [210562.874, 595414.427], + [210764.6213, 595220.8294], + [211027.38, 595076.26], + [211127.477, 594806.63], + [211350.736, 594816.879], + [211669.089, 594629.444], + [211689.1443, 594708.466], + [211542.622, 594797.831], + [211198.251, 595237.754], + [211015.624, 595360.217], + [210659.9715, 595826.1073], + [210505.8648, 596120.193], + [210638.204, 596447.723], + [210743.277, 596374.584], + [211011.177, 595671.063], + [211176.647, 595490.7], + [211532.58, 595335.012], + [211987.151, 595538.455], + [212439.2068, 596013.1115], + [212700.822, 596077.673], + [213423.414, 595839.536], + [213996.182, 595759.912], + [214371.1813, 595491.7764], + [214925.7966, 595331.182], + [214538.979, 592160.312], + [214774.967, 592075.392], + [214956.985, 592101.95], + [215360.9155, 591871.2488], + [215416.02, 591729.814], + [215445.5083, 591702.7323], + [215198.6438, 591366.7283], + [214483.4501, 591129.2672], + [214406.175, 591062.257], + [214156.4908, 590660.3091], + [214152.6, 590364.34], + [213884.5662, 589990.5168], + [213917.29, 589868.53], + [213820.562, 589669.037], + [213698.995, 589731.703], + [213195.052, 589750.149], + [212822.3872, 589474.8594], + [212739.6332, 589008.2176], + [212647.058, 588205.25], + [212755.931, 587785.044], + [212946.14, 587494.457], + [212894.5476, 587236.5104], + [212797.59, 587146.31], + [212564.96, 587087.35], + [212355.76, 587204.59], + [212142.15, 586997.66], + [212134.098, 586886.2954], + [212011.922, 586716.985], + [211865.67, 586625.27], + [211771.49, 586450.47], + [211826.68, 586239.46], + [211750.82, 586001.06], + [211575.79, 585905.14], + [211390.758, 585907.808], + [211363.51, 585818.36], + [211423.79, 585665.17], + [211590.58, 585532.56], + [211498.6415, 585202.4893], + [211275.23, 585202.92], + [211229.35, 585033.96], + [211396.7974, 584836.8565], + [211333.99, 584611.37], + [211241.82, 584570.95], + [211110.09, 584623.7], + [210935.25, 584549.4], + [210559.77, 584353.2], + [210462.487, 584248.053], + [210494.258, 584221.6155], + [210789.088, 583980.876], + [210908.494, 584004.887], + [210933.705, 583881.848], + [210619.317, 583739.623], + [210306.216, 583695.653], + [210258.7477, 583546.3405], + [210246.402, 583330.518], + [210722.88, 583108.63], + [210922.0332, 582933.5404], + [210975.25, 582420.13], + [211302, 582088.38], + [211295.67, 581573.88], + [211226.564, 581460.3283], + [210949.97, 581209.25], + [210959.28, 580922.79], + [210592.91, 580264.77], + [209955.05, 579570.86], + [209590.21, 579544.17], + [209291.724, 579384.625], + [209309.51, 579047.3], + [209126.96, 578677.2], + [209009.952, 578618.304], + [208867.056, 578369.536], + [208537.0334, 577610.0309], + [208391.5894, 577201.6959], + [208212.0712, 576660.1403], + [208096.65, 576254.18], + [207840.846, 575876.798], + [207810.735, 575044.164], + [207789.0611, 574296.1021], + [207768.729, 572324.95], + [207997.04, 572206.77], + [208447.812, 571679.909], + [208938.6526, 571033.5316], + [209578.3269, 570357.8158], + [209796.6804, 570165.063], + [209836.58, 570163.436], + [209840.9982, 570163.1213], + [210282.4405, 570144.5699], + [210935.399, 570116.659], + [211160.829, 570050.941], + [212059.3717, 569960.0563], + [212855.4727, 570030.5406], + [213063.8956, 570054.695], + [213145.0475, 570063.265], + [213552.662, 570078.542], + [214390.823, 569740.255], + [214993.478, 569269.351], + [215506.56, 568492.882], + [215682.0365, 568426.1877], + [215901.08, 568343.617], + [217161.923, 567871.029], + [216518.087, 566431.144], + [218321.224, 565796.659], + [218343.1891, 565788.9122], + [219645.8219, 565330.2945], + [220729.325, 564947.41], + [220559.062, 563233.1058], + [220463.8851, 561816.626], + [220425.074, 561226.96], + [221216.6342, 560012.0547], + [223179.3, 557000.572], + [223906.541, 555883.385], + [224548.2161, 554898.7], + [224891.16, 554371.89], + [223260.1468, 551184.1189], + [222655.72, 550002.79], + [221031.022, 548770.89], + [218649.879, 547000.746], + [216585.467, 549045.953], + [215250.338, 549160.001], + [213462.157, 549304.34], + [212859.512, 548857.571], + [212840.18, 548819.03], + [212681.797, 548398.645], + [212516.1984, 548258.4821], + [211846.523, 547704.491], + [211614.7769, 547352.7925], + [210167.271, 545159.501], + [209760.5099, 544891.6716], + [209083.403, 544450.095], + [207063.5311, 543097.2553], + [205778.2318, 542113.1183], + [205731.023, 542076.843], + [204426.6261, 541080.9398], + [204347.983, 541031.753], + [202564.96, 539941.702], + [202181.666, 539774.876], + [201903.754, 539368.574], + [201749.754, 539283.111], + [200436.0863, 539333.4253], + [200099.002, 539182.224], + [199968.4289, 539143.7958], + [199838.029, 539110.076], + [200004.021, 538444.818], + [200299.919, 537942.146], + [200344.506, 537866.107], + [200201.318, 537790.674], + [199873.724, 537639.715], + [199579.815, 537349.936], + [199474.412, 537235.768], + [199310.824, 537148.05], + [199242.828, 537131.325], + [198887.5055, 536917.484], + [198415.571, 536610.186], + [198102.694, 537284.769], + [197962.557, 537446.788], + [197514.298, 537371.15], + [196813.939, 537158.781], + [196250.31, 536804.941], + [196077.344, 536764.697], + [195920.009, 537047.667], + [195672.67, 537321.608], + [195559.63, 537372.677], + [195396.0913, 537331.163], + [195390.642, 537347.906], + [195057.556, 538193.035], + [194690.076, 538777.03], + [194462.024, 539439.016], + [194431.788, 539572.657], + [194477.759, 539634.571], + [194265.506, 539622.349], + [193510.161, 539325.936], + [193314.168, 539065.757], + [193388.297, 538732.592], + [193317.271, 538597.589], + [192670.999, 539058.828], + [192544.678, 539018.495], + [192372.741, 538894.485], + [192118.311, 538827.2381], + [191588.838, 538782.18], + [191359.426, 538588.93], + [191624.582, 538474.718], + [191589.025, 538375.297], + [191377.775, 538398.222], + [191116.358, 538335.929], + [191093.7036, 538206.4611], + [191341.932, 538020.34], + [191109.047, 537945.427], + [191196.9479, 537508.0797], + [190668.438, 537135.894], + [190503.867, 536950.163], + [190378.198, 536670.361], + [190152.117, 536401.22], + [189619.204, 536187.392], + [189435.221, 535738.569], + [189136.157, 535567.27], + [188406.269, 535299.223], + [188206.216, 534995.517], + [187984.696, 534955.308], + [187469.908, 535160.092], + [187263.242, 535372.845], + [186858.973, 535357.474], + [186680.803, 535655.944], + [186532.051, 535464.617], + [186204.493, 535534.114], + [185776.538, 535405.7401], + [185680.902, 535689.09], + [185428.667, 535505.317], + [185270.696, 535505.176], + [185354.296, 535762.44], + [185085.261, 536150.114], + [184767.869, 536333.589], + [184460.104, 536317.264], + [184337.518, 536518.203], + [184198.863, 536610.929], + [184170.6417, 536716.8211], + [184160.1, 536758.497], + [183980.259, 536691.768], + [183506.448, 536376.851], + [182510.65, 535551.92], + [182150.27, 535234.94], + [181983.0645, 535821.2855], + [181776.02, 536766.76], + [179365.35, 539224.91], + [179156.9391, 539285.8134], + [177737.509, 539695.823], + [177747.2559, 539655.9267], + [177914.05, 538910.35], + [178072.52, 538556.16], + [178011.33, 538519.31], + [177608, 538815.27], + [176958.9102, 539029.5801], + [176910.3627, 539059.7094], + [176925.855, 539205.04], + [176888.607, 539257.093], + [176931.808, 539360.18], + [176794.2149, 539293.1844], + [176764.3203, 539131.321], + [176672.9505, 539079.3033], + [176751.6783, 539327.7228], + [177195.714, 539535.6943], + [177079.627, 539547.5281], + [177103.3031, 539615.1823], + [177059.336, 539531.6811], + [176841.531, 539431.566], + [176732.7315, 539456.9303], + [176612.379, 539041.196], + [176492.4129, 539111.887], + [176600.097, 539442.379], + [176249.8219, 539649.059], + [176230.951, 539593.833], + [176457.866, 539436.654], + [176484.195, 539330.934], + [176427.9389, 539238.36], + [176385.8853, 539264.04], + [176327.3701, 539122.9291], + [176384.605, 539081.71], + [176300.276, 538996.79], + [176032.2468, 539340.5308], + [176088.208, 539569.843], + [175940.019, 539716.4569], + [175748.204, 539758.479], + [175712.256, 539702.108], + [175666.4663, 539731.9643], + [175610.234, 539815.5341], + [175073.147, 539902.4181], + [174976.0591, 539772.7575], + [174747.875, 539824.0411], + [174753.6421, 539901.3016], + [174704.9276, 539926.0964], + [174627.537, 539810.7601], + [174292.9783, 539807.4476], + [173934.2731, 539753.216], + [174014.8641, 539348.1046], + [173690.3337, 539716.3355], + [173217.8835, 539644.9071], + [173188.7609, 539801.9941], + [173030.6721, 539896.4175], + [172967.477, 540039.163], + [173010.493, 540098.799], + [173134.2965, 540087.6474], + [173190.0421, 540791.2024], + [172336.714, 541498.917], + [172253.0931, 541444.5663], + [172110.0426, 541486.5922], + [171664.437, 541272.074], + [170578.7058, 540444.7804], + [170453.4789, 540415.7712], + [169865.6428, 540536.0209], + [169427.103, 540554.5651], + [168342.116, 540261.437], + [168170.754, 540034.02], + [168190.109, 539784.683], + [167990.5158, 539187.0935], + [167526.33, 538789.4242], + [167139.3949, 538572.6485], + [166570.2313, 538435.7446], + [166157.621, 538387.764], + [165624.2116, 538439.5326], + [164416.895, 538924.9931], + [162599.8989, 539847.9222], + [161667.5344, 540226.0557], + [160774.6939, 540503.836], + [160370.697, 540529.5768], + [159476.635, 540838.078], + [159258.2475, 540769.0795], + [159163.725, 540551.388], + [159050.124, 540483.474], + [158624.1158, 540415.5938], + [158457.653, 540436.233], + [157936.306, 540317.55], + [157622.0093, 540105.4695], + [156864.411, 540340.975], + [155732.4719, 541102.4708], + [155178.797, 541641.24], + [154797.7354, 542150.6615], + [154466.0389, 542371.5698], + [154093.611, 542669.327], + [153787.108, 542803.991], + [153511.1423, 542847.8704], + [153599.3463, 542932.9008], + [153426.0083, 543222.8772], + [153392.992, 543215.135], + [153199.8638, 543239.964], + [153196.7698, 543249.9269], + [153398.718, 543268.531], + [153485.856, 543304.483], + [153422.598, 543446.16], + [153340.472, 543427.5733], + [153287.261, 543448.068], + [153254.682, 543410.71], + [153249.152, 543415.908], + [153287.986, 543466.617], + [153341.8977, 543466.2895], + [153323.4658, 543530.44], + [153233.288, 543517.8368], + [153149.76, 543536.531], + [152949.9548, 544116.0398], + [152837.8088, 544204.5048], + [152790.481, 544319.045], + [152743.061, 544317.192], + [152836.68, 544405.0463], + [152853.407, 544394.051], + [152804.6518, 544352.4255], + [152883.7533, 544303.253], + [153046.6558, 544313.5539], + [153052.4003, 544343.472], + [152954.9583, 544360.8205], + [152950.8508, 544383.3115], + [153260.829, 544432.987], + [153257.4791, 544492.0638], + [152819.8642, 544472.2549], + [152653.3173, 544339.7104], + [152635.1085, 544361.3338], + [153009.4208, 544664.6518], + [153192.675, 545022.433], + [153457.271, 545236.282], + [153762.2855, 545654.3226], + [153934.5558, 545809.5771], + [154741.7725, 546164.24], + [155106.767, 546481.224], + [155248.9145, 546503.5729], + [155419.7038, 546400.0323], + [155681.6113, 546579.2194], + [155929.2814, 546549.617], + [156317.4706, 547001.864], + [156346.2667, 547348.5684], + [156393.787, 547408.2458], + [156341.7618, 547812.5], + [156485.1785, 548269.9234], + [156256.677, 548793.489], + [156008.6107, 549961.4001], + [155929.0223, 550236.4933], + [155584.7311, 550664.492], + [156013.1967, 550907.6877], + [156019.4813, 550891.846], + [155975.9325, 550826.6245], + [156038.167, 550755.0864], + [156067.3965, 550761.3809], + [156050.736, 550849.094], + [156106.057, 550856.716], + [156111.5468, 550771.0955], + [156184.1143, 550769.222], + [156186.8068, 550893.7763], + [156288.394, 550896.875], + [156289.5703, 551110.3223], + [156128.0883, 551115.9138], + [156048.639, 551072.752], + [156031.573, 551043.463], + [156051.132, 550894.2249], + [156085.421, 550898.277], + [156083.3668, 550877.7593], + [156043.4858, 550876.9253], + [156018.6468, 550986.5573], + [156017.8604, 551043.2789], + [156036.3088, 551078.749], + [156125.362, 551129.002], + [156303.371, 551127.771], + [156388.7942, 551042.2603], + [156472.596, 551205.398], + [156451.996, 551511.8914], + [156503.6091, 551601.333], + [156460.6076, 551880.848], + [156379.169, 551840.2895], + [156317.3495, 552136.9433], + [156420.5976, 552210.6254], + [156401.0931, 552504.023], + [156270.4403, 552442.6739], + [156164.2846, 552528.1059], + [156588.2551, 552613.3323], + [158024.5546, 553781.5683], + [158007.5346, 553800.5138], + [157325.8543, 553258.0673], + [157090.089, 553545.942], + [157033.477, 553540.418], + [157073.9728, 553289.2905], + [157166.5766, 553131.3223], + [156621.2073, 552697.3451], + [156718.6139, 552945.6869], + [156551.1988, 553709.994], + [156405.912, 554141.135], + [156253.71, 554375.0373], + [156053.602, 555271.059], + [155823.6335, 555892.3079], + [155766.5011, 556630.3791], + [155643.7833, 557318.093], + [155935.7998, 557594.1045], + [156218.991, 558311.703], + [156320.9, 558267.463], + [156388.953, 558486.4285], + [156241.922, 558405.805], + [156174.0829, 558489.8589], + [156298.2611, 558613.0977], + [156421.2359, 559059.605], + [156401.6132, 559263.2102], + [155702.0803, 559612.002], + [155641.7834, 559794.6958], + [155749.9989, 560108.468], + [155597.211, 560190.324], + [155630.5083, 560358.5574], + [155937.7958, 560379.8395], + [156051.2576, 560525.2075], + [155922.076, 560931.866], + [155929.465, 561199.362], + [156007.32, 561209.762], + [156104.925, 561108.604], + [156193.263, 560803.45], + [156315.781, 560687.099], + [156067.7781, 561409.8779], + [156152.9618, 561692.1606], + [156165.4505, 562261.577], + [156092.967, 562404.012], + [156073.384, 561911.036], + [155945.435, 561590.652], + [155862.697, 560747.409], + [155770.702, 560618.389], + [155475.003, 560579.5275], + [155379.9275, 560742.7089], + [155429.673, 560837.608], + [155133.841, 561525.504], + [154847.149, 561966.351], + [154789.451, 562012.8825], + [154260.996, 561769.4112], + [154130.2068, 561934.9644], + [154089.236, 562090.658], + [154511.8355, 562245.943], + [154528.3288, 562331.1581], + [154385.104, 562944.915], + [154252.9634, 563097.04], + [155384.077, 563106.916], + [155587.287, 562756.021], + [155524.666, 562592.962], + [155886.38, 562556.952], + [155917.417, 562620.2577], + [155639.6221, 562640.176], + [155630.283, 562748.762], + [155692.6029, 562776.9524], + [155632.51, 562799.863], + [155511.8281, 563103.7269], + [155662.603, 563102.737], + [155801.518, 562768.011], + [155873.117, 562763.443], + [155742.285, 563098.524], + [155938.664, 563003.429], + [156036.908, 562755.454], + [156109.539, 562762.692], + [155999.0165, 563063.1185], + [155927.654, 563098.255], + [155662.17, 563602.152], + [155511.3974, 563776.5098], + [155363.504, 564033.688], + [155266.7427, 564434.7544], + [155182.6293, 564740.3], + [155266.6266, 565123.2277], + [155146.821, 565395.947], + [155148.78, 565549.409], + [154701.32, 566456.123], + [154477.5965, 567203.4853], + [154155.3595, 567133.9741], + [152560.8288, 565610.0248], + [152129.4592, 565340.2871], + [152095.1691, 565209.2388], + [151706.644, 565098.992], + [151760.4763, 564842.4005], + [151772.186, 564573.46], + [151834.7683, 564390.2735], + [151820.115, 564239.419], + [151807.6408, 564234.1358], + [151802.548, 564392.487], + [151714.3965, 564702.2298], + [151671.9755, 564697.2023], + [151671.063, 564619.295], + [151664.385, 564618.716], + [151616.957, 564797.399], + [151676.058, 564810.341], + [151584.299, 565156.855], + [151504.9562, 565207.8461], + [151469.634, 565016.501], + [151524.8806, 564782.1602], + [151600.85, 564793.789], + [151647.988, 564615.566], + [151567.9457, 564599.4902], + [151660.5616, 564218.7019], + [151882.2435, 564080.8244], + [151863.3878, 564060.5059], + [151639.845, 564224.1], + [151404.026, 565060.527], + [151244.751, 565161.071], + [150993.2345, 565093.8535], + [150940.5338, 564947.5293], + [150921.249, 565000.393], + [150785.6043, 564976.2075], + [150690.383, 565005.291], + [149267.202, 564632.573], + [148961.707, 564491.021], + [143903.147, 560143.558], + [143336.767, 559602.024], + [143290.844, 559384.748], + [143173.429, 559275.495], + [142968.6358, 559125.3378], + [142878.0503, 559192.5088], + [142752.6476, 559095.1032], + [142921.781, 558918.845], + [142606.6683, 558968.7728], + [140200.273, 556944.3978], + [140141.4435, 557012.2504], + [142565.2045, 559108.3406], + [142546.2775, 559339.8573], + [142674.374, 559202.7514], + [148700.903, 564414.548], + [149232.26, 564718.163], + [150740.175, 565112.496], + [150825.4467, 565281.1384], + [150694.3934, 565805.0958], + [150965.33, 565868.5665], + [150972.8314, 565842.4188], + [150745.208, 565777.077], + [150886.558, 565208.142], + [150988.97, 565131.523], + [151231.5745, 565199.1825], + [151322.248, 565317.023], + [151264.154, 565634.364], + [151393.699, 565872.953], + [151339.972, 565922.9599], + [151362.098, 565943.427], + [151456.172, 565873.2], + [151298.015, 565615.953], + [151362.943, 565367.426], + [151492.7408, 565261.8243], + [151533.985, 565403.868], + [151496.2164, 565582.7292], + [151606.369, 565603.5], + [151727.021, 565364.679], + [152085.016, 565471.441], + [152408.522, 565652.241], + [154374.451, 567569.365], + [154560.965, 567932.703], + [154677.118, 568644.977], + [154463.055, 568925.019], + [154451.679, 569029.824], + [155013.936, 569377.0049], + [155592.648, 569744.605], + [155791.4624, 569925.4386], + [155918.6335, 570082.7618], + [156150.985, 570528.351], + [156269.5917, 571106.7466], + [156505.753, 572296.251], + [156631.7703, 573913.0703], + [156683.549, 574399.785], + [156912.509, 575320.471], + [156857.6764, 575801.8987], + [156604.991, 575900], + [156369.23, 576216.9381], + [156152.174, 576294.8], + [156105.43, 576361.72], + [156042.7987, 576558.1296], + [156053.4415, 576594.2768], + [156161.369, 576321.9181], + [156352.9943, 576274.0383], + [156603.836, 575932.597], + [156867.579, 575858.982], + [156789.7176, 576004.5193], + [156753.216, 575940.515], + [156570.0717, 576214.6328], + [156483.6708, 576438.1859], + [156510.003, 576459.187], + [156602.9959, 576318.2069], + [156593.0091, 576512.4661], + [156783.508, 576544.4819], + [156784.1915, 576605.3041], + [156643.473, 576533.83], + [156581.5187, 576588.8158], + [157140.819, 576934.705], + [156859.5506, 576890.0148], + [156832.8061, 576985.6626], + [157076.685, 577069.279], + [157171.503, 577291.524], + [157593.9584, 577465.7734], + [158191.7682, 578045.6491], + [158394.7348, 578493.6319], + [158460.343, 578576.3721], + [158230.2493, 578735.097], + [158171.6528, 578653.2604], + [158016.179, 578429.398], + [158181.612, 578315.871], + [158150.746, 578230.546], + [158057.678, 578118.936], + [157953.3804, 578139.6533], + [157696.0102, 577645.7344], + [156779.724, 577289.651], + [156648.941, 576810.6001], + [156447.42, 576543.7841], + [156248.54, 576501.614], + [156256.7344, 576535.8419], + [156419.9274, 576577.4391], + [156597.629, 576820.96], + [156652.459, 577199.792], + [156740.719, 577344.816], + [157325.925, 577596.673], + [157566.9509, 578283.9159], + [157774.8883, 578895.5525], + [158392.7781, 580357.5055], + [159112.4108, 581522.2806], + [159372.822, 581789.0781], + [159972.7551, 582210.2023], + [160745.6005, 583131.4734], + [161203.968, 583486.108], + [161376.68, 583786.652], + [161842.1459, 583944.5603], + [162825.398, 584688.698], + [163547.7778, 585056.7929], + [163608.296, 585198.128], + [163814.794, 585318.5695], + [164153.903, 585478.11], + [164348.652, 585652.394], + [164954.1544, 586403.3245], + [165069.5417, 586574.4919], + [165617.4015, 587257.7437], + [166050.1394, 587595.8433], + [166640.78, 588740.9], + [167755.5458, 589964.5869], + [168321.4, 590461.04], + [170675.7671, 591661.0048], + [170894.9234, 591611.496], + [171071.5783, 591833.2388], + [171456.9133, 592036.378], + [172076.2023, 592539.686], + [174531.2995, 593558.712], + [176992.4391, 594772.006], + [176993.1026, 594916.2222], + [179578.518, 596338.6271], + [180058.556, 596084.5171], + [180219.9909, 596192.8228], + [180346.7915, 596473.6911], + [180755.146, 596697.7845], + [181095.3388, 596649.8541], + [181356.7194, 596748.7229], + [181368.6923, 596844.2895], + [181714.3049, 597119.7875], + [181878.3469, 597076.7925], + [182027.5723, 597158.6813], + [182086.7068, 597228.5314], + [181927.145, 597412.308], + [183402.182, 597978.838], + [184018.0196, 598485.7289], + [184120.76, 598546.3149], + [184229.9688, 598366.1769], + [184651.0646, 598585.4091], + [184559.8322, 598783.0607], + [185467.2101, 599282.173], + [186427.4641, 599806.335], + [186701.9291, 599767.7021], + [187687.8813, 600138.3443], + [188146.0594, 600380.0573], + [187675.3878, 601138.8408], + [187883.88, 601091.53], + [188063.532, 600831.45], + [188138.9168, 600837.9345], + [188309.6023, 600619.4925], + [189606.8434, 600357.485], + [190233.4954, 600361.5849], + [190458.9893, 600435.3829], + [190479.5047, 600393.9114], + [191322.7434, 600356.6438], + [192254.013, 600645.807], + [193020.284, 600957.519], + [193760.4189, 601122.6634], + [193880.783, 601456.773], + [194072.871, 601259.9029], + [194066.672, 601217.738], + [194271.354, 601249.549], + [196179.104, 601806.2307], + [196798.756, 602028.417], + [197014.4848, 602047.1541], + [197133.088, 601997.493], + [197276.48, 602057.601], + [197999.006, 602083.4596], + [199795.5255, 602445.8245], + [200352.448, 602548.524], + [200889.889, 602355.518], + [201193.79, 602455.554], + [201462.006, 602262.656], + [201338.2039, 602087.5571], + [201483.7984, 602272.4632], + [201882.04, 602817.048], + [202059.064, 602649.735], + [203302.4763, 602467.9395], + [203611.4024, 602301.6578], + [204005.2643, 602377.2964], + [204588.93, 602295.579], + [204894.725, 602178.6675], + [205006.987, 602173.661], + [207507.305, 603439.364], + [207947.366, 603403.795] + ] + ], + [ + [ + [165343.3869, 605907.0813], + [165735.3994, 605498.6323], + [165660.5383, 604949.0571], + [165569.5716, 605030.8642], + [165452.5993, 605567.8652], + [165218.941, 605234.323], + [164413.875, 604898.832], + [163216.951, 604605.3361], + [160926.024, 603468.514], + [160794.261, 603062.907], + [160834.49, 602720.4061], + [161328.0478, 602866.8394], + [161243.8219, 602644.2274], + [160915.475, 602454.141], + [160491.891, 602248.295], + [159754.745, 602032.13], + [157711.0186, 601981.2774], + [156148.203, 602033.453], + [155328.179, 601888.557], + [154781.0559, 601739.3171], + [154368.16, 601523.006], + [153957.4197, 601134.4181], + [153713.862, 600983.552], + [152976.281, 600159.232], + [152496.8107, 599857.1544], + [152169.209, 599650.871], + [151663.156, 599466.359], + [151380.464, 599456.114], + [151156.2683, 599320.5803], + [150852.521, 599097.453], + [150670.866, 599101.679], + [150075.913, 599332.02], + [149913.23, 599065.255], + [149732.8363, 598929.7148], + [149555.208, 598838.797], + [149208.7, 598836.7342], + [148965.6649, 598867.6786], + [149095.8174, 598716.1756], + [148903.5412, 598483.9784], + [148896.232, 598315.983], + [148762.396, 598234.08], + [148062.183, 598413.156], + [147743.393, 598561.268], + [147501.437, 598562.866], + [147063.322, 598347.162], + [146515.08, 598519.387], + [146320.9731, 598492.5927], + [146057.711, 598168.8], + [145422.7104, 597745.0627], + [145437.0699, 597685.9177], + [145058.541, 597879.826], + [144917.3469, 597791.896], + [144790.403, 597812.1254], + [144745.3363, 597759.1954], + [144307.125, 597712.958], + [144270.604, 597570.1848], + [144044.6098, 597525.0553], + [144262.1783, 597585.3789], + [144271.3641, 597716.3864], + [143952.364, 597653.578], + [143966.2, 597571.8303], + [143796.2498, 597306.098], + [143739.68, 597298.144], + [143718.215, 597161.472], + [143640.4673, 596918.6619], + [143708.75, 596763.682], + [143613.5603, 596662.1758], + [143546.991, 596753.815], + [143379.135, 596626.849], + [143290.1673, 596685.5523], + [143158.783, 596728.811], + [143223.4829, 596518.9649], + [143137.7608, 596353.3129], + [141952.7104, 595706.9216], + [141271.5671, 595642.0508], + [140837.61, 595729.8789], + [140705.9976, 595908.9572], + [139832.2094, 596000.9001], + [139687.3498, 595754.1756], + [139300.84, 596000.6839], + [139640.4889, 596894.7426], + [140225.512, 598181.751], + [141582.0592, 600186.5828], + [142115.648, 600708.116], + [142641.648, 600939.029], + [145955.7309, 601983.7111], + [149019.0697, 602786.3422], + [150159.4106, 603081.6371], + [153458.0356, 603940.2285], + [154258.146, 604093.633], + [160684.325, 606104.451], + [162144.428, 606445.589], + [163245.1346, 606450.9704], + [164234.9605, 606368.2849], + [164930.1632, 606138.1676], + [165343.3869, 605907.0813] + ] + ], + [ + [ + [177841.5251, 608434.4199], + [179116.686, 608309.772], + [180522.847, 608321.23], + [181394.285, 608403.853], + [187967.646, 609067.444], + [191088.681, 609256.049], + [192940.0194, 608903.3199], + [193013.2041, 608661.2264], + [192019.999, 608154.397], + [191492.348, 608036.488], + [191113.477, 608084.104], + [189742.101, 608068.5308], + [189188.445, 607847.826], + [188721.321, 607572.624], + [188465.423, 607335.4699], + [186754.108, 606977.522], + [186772.256, 606909.135], + [186683.628, 606866.853], + [184667.6239, 606380.279], + [182764.03, 605779.218], + [181663.6986, 605842.082], + [181105.39, 605784.584], + [180898.351, 605852.323], + [180857.546, 605814.809], + [180856.0019, 605655.426], + [180833.557, 605656.24], + [180836.495, 605806.9574], + [180773.4919, 605812.1128], + [180777.1846, 605626.434], + [180830.3363, 605575.5294], + [180793.549, 605319.804], + [180749.7043, 605325.3928], + [180726.016, 605234.53], + [180654.683, 605225.709], + [180640.938, 605268.0504], + [180707.2684, 605308.158], + [180735.997, 605466.514], + [180737.674, 605830.714], + [180603.765, 605990.192], + [179256.491, 606072.868], + [178514.346, 606298.147], + [177779.0284, 606362.9226], + [177244.602, 606214.599], + [176830.029, 605543.994], + [176034.1163, 604954.0925], + [176009.595, 604880.653], + [175082.034, 604624.881], + [174488.531, 604303.761], + [173917.0097, 604338.5252], + [173395.4063, 604415.6251], + [172674.622, 604450.279], + [172012.284, 604567.797], + [171681.4611, 604747.8288], + [170937.1568, 605155.8148], + [170233.0604, 605942.4225], + [170037.949, 606705.849], + [170078.839, 607179.3], + [170177.257, 607491.457], + [172559.4416, 609302.5648], + [173125.145, 609510.0629], + [173620.6875, 609431.1525], + [175436.0346, 608435.8308], + [177841.5251, 608434.4199] + ] + ], + [ + [ + [220774.049, 613915.4081], + [219633.6769, 613617.6659], + [219287.452, 613755.36], + [218712.246, 613739.3548], + [218511.517, 613811.949], + [218070.044, 613769.456], + [217503.7501, 613868.7034], + [217793.7081, 613569.0152], + [217877.78, 613353.653], + [217590.336, 613162.306], + [216831.933, 613022.394], + [216108.962, 612549.399], + [214851.3088, 612075.988], + [214426.622, 612000.276], + [213991.646, 611837.716], + [213851.377, 611741.842], + [213865.354, 611574.331], + [213681.362, 611326.344], + [212943.125, 611100.545], + [213105.873, 610866.231], + [212433.36, 610544.2079], + [211694.186, 610379.5], + [211434.365, 610439.291], + [210790.45, 610420.392], + [208803.819, 609933.805], + [208761.409, 609881.183], + [208889.491, 609676.942], + [209173.561, 609454.952], + [209110.272, 609421.514], + [208649.366, 609880.023], + [206939.9485, 609871.0268], + [206814.9745, 609599.6343], + [206843.9843, 609386.385], + [206757.9158, 609360.5121], + [206704.8734, 609809.5883], + [206355.295, 609801.286], + [206124.193, 609627.607], + [206050.7648, 609213.4365], + [205679.9313, 609099.2014], + [205808.473, 608700.488], + [205673.4675, 608483.7833], + [205165.732, 608206.2773], + [204754.5687, 608496.7903], + [204800.6063, 608779.3659], + [205247.92, 608700.488], + [205289.5573, 609042.8914], + [204738.6936, 609285.7794], + [203710.5208, 608497.0549], + [203365.3063, 608766.533], + [203574.8971, 610997.5777], + [203953.5095, 611432.5085], + [204901.3519, 612114.9673], + [205643.6824, 612597.7346], + [209603.7878, 613277.4466], + [210861.702, 613569.13], + [214849.097, 613976.043], + [216887.716, 614368.95], + [218546.876, 614799.462], + [219988.129, 615024.54], + [221391.9558, 615019.7694], + [221693.8014, 614767.4535], + [221575.4325, 614286.0868], + [220774.049, 613915.4081] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD02", + "od_naam": "Fryske Utfieringstsjinst Miljeu en Omjouwing", + "naam_alt": "FUMO" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-602d", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [223213.02, 473253.913], + [223480.256, 473196.391], + [224350.293, 473287.788], + [225294.73, 473178.106], + [225297.0585, 472884.2351], + [225328.996, 472617.757], + [225688.63, 472155.45], + [226207.55, 471073.49], + [226363.04, 470865.24], + [226943.34, 470408.82], + [227383.73, 469940.5], + [227833.8268, 469243.409], + [227888.55, 468987.75], + [228073.1828, 468716.3674], + [228153.275, 468634.695], + [228826.27, 468581.32], + [229043.374, 468471.5499], + [228990.16, 468348.6], + [229035.99, 467727.07], + [229226.74, 467323.76], + [229622.2728, 466749.5813], + [229670.469, 466613.698], + [230469.43, 466321.266], + [230593.624, 466045.952], + [230829.165, 466024.343], + [232012.29, 466497.16], + [232313.2046, 466505.9024], + [234899.138, 466100.488], + [236915.7003, 466609.0218], + [237122.273, 466665.9402], + [237256.205, 466721.263], + [237333.459, 466697.5956], + [237682.481, 466433.168], + [238393.48, 465693.61], + [238386.647, 465614.118], + [238182.97, 465427.384], + [238163.142, 465248.945], + [238479.607, 464754.564], + [238609.697, 464813.771], + [238810.224, 464597.152], + [239162.6265, 464839.5463], + [239473.725, 465187.806], + [239675.87, 465222.062], + [239780.778, 465536.232], + [239692.002, 465614.285], + [239729.262, 465651.345], + [239953.23, 465603.252], + [240083.812, 465728.968], + [240345.61, 465626.08], + [240726.79, 465101.596], + [241039.354, 465862.515], + [241327.1944, 465721.0927], + [242854.854, 464947.194], + [242899.7538, 464863.8627], + [243000.494, 464677.854], + [242962.227, 464470.118], + [243050.226, 464456.588], + [242989.515, 464330.365], + [243023.781, 464302.422], + [243044.579, 464186.174], + [242823.235, 463915.832], + [242996.545, 463733.39], + [242954.346, 463541.057], + [243051.342, 463439.498], + [242976.438, 463260.532], + [242882.808, 463253.394], + [243054.004, 463014.775], + [243109.135, 462402.346], + [242994.008, 462014.765], + [242711.538, 461709.831], + [242354.4346, 460967.5565], + [243013.6521, 460686.4349], + [243367.993, 460535.667], + [244750.43, 460292.781], + [245681.2668, 459881.7486], + [246025.401, 459728.033], + [247615.957, 459738.991], + [247615.896, 459789.251], + [249058.1, 459841.215], + [249011.6062, 459159.4882], + [249009.687, 458785.646], + [248946.9196, 458339.1302], + [248914.376, 458174.3085], + [248897.324, 457669.076], + [248802.518, 457486.795], + [248753.926, 457425.934], + [248811.719, 457404.918], + [248726.825, 457173.322], + [248607.857, 457284.377], + [248401.623, 457269.078], + [248029.765, 456966.684], + [248053.548, 456749.798], + [248085.449, 456627.634], + [248417.579, 456348.994], + [248478.159, 456124.136], + [248247.427, 455724.53], + [248005.103, 455543.3], + [247430.341, 454897.915], + [245952.975, 454677.894], + [244731.807, 454348.671], + [244642.667, 454309.024], + [244798.76, 454038.448], + [244736.794, 453694.725], + [244692.6019, 453683.1286], + [244320.204, 452817.897], + [244170.488, 452808.71], + [244132.526, 452710.567], + [244134.05, 452379.12], + [244234.35, 452359.72], + [244235.3, 451471.247], + [244235.49, 450969.45], + [246038.046, 451025.281], + [248727.171, 449777.687], + [249502.468, 449114.093], + [249662.203, 448724.437], + [250032.5489, 448640.9929], + [252802.98, 446483.06], + [252561.78, 446130.12], + [253856.56, 445995.36], + [254129.91, 445184.49], + [254095.296, 444426.642], + [254143.44, 444095.83], + [254290.48, 443869.28], + [254330.03, 443587.55], + [254308.19, 443390.99], + [254053.47, 442725.02], + [253044.93, 442652.54], + [252954.28, 442450.47], + [252026.8734, 442085.4112], + [251878.38, 440442.19], + [251952.03, 440285.26], + [251742.16, 439473.38], + [251199.92, 439006.18], + [251407.28, 438839.61], + [250135.39, 437317.62], + [249857.58, 437297.44], + [249482.52, 437074], + [249262.408, 437036.8223], + [249041.56, 436899.02], + [249072.55, 436615.09], + [248914.57, 436443.44], + [248862.778, 436296.585], + [248472.19, 436120.36], + [247895.715, 435993.796], + [247589.078, 435325.031], + [246869.966, 435015.839], + [245558.817, 436141.685], + [245592.76, 436477.523], + [245517.631, 436520.846], + [245319.731, 436433.735], + [245169.703, 436521.311], + [244997.995, 437185.686], + [244814.826, 437054.279], + [244234.105, 437197.443], + [244229.481, 437363.589], + [243583.69, 437168.16], + [243171.151, 436930.031], + [242210.577, 436365.337], + [241055.345, 435846.179], + [240818.109, 435458.273], + [240372.577, 435434.194], + [240206.357, 435552.023], + [239818.2623, 435403.1884], + [238770.746, 435006.623], + [237500.507, 434632.033], + [236365.344, 433948.8351], + [236007.972, 433651.462], + [235934.767, 433530.354], + [235803.736, 433484.204], + [235814.208, 433313.801], + [235770.678, 433281.129], + [235665.119, 433316.271], + [235560.934, 433231.269], + [235463.344, 433232.695], + [235423.66, 433413.766], + [235242.768, 433479.142], + [235218.87, 433716.901], + [234940.706, 433618.448], + [235049.836, 433402.467], + [235005.723, 433374.27], + [234885.255, 433392.118], + [234730.55, 433535.558], + [234652.025, 433531.85], + [234365.822, 433116.299], + [233636.785, 432648.541], + [233685.086, 432557.164], + [233316.001, 432335.841], + [233323.22, 432296.037], + [232891.51, 432225.307], + [232706.299, 432267.408], + [232635.959, 432222.296], + [232431.201, 431966.98], + [231947.799, 431703.131], + [231861.393, 431599.212], + [231713.91, 431637.73], + [231798.54, 431272.4], + [231670.66, 430999.73], + [230824.169, 430629.55], + [230554.9635, 430458.4201], + [230455.2283, 430376.3516], + [230342.616, 430385.623], + [230160.37, 430376.8], + [230079.49, 430351.07], + [229863.89, 430215.97], + [229771.062, 430030.824], + [229233.3813, 430171.8565], + [229208.976, 430185.394], + [228785.333, 430557.16], + [228276.9129, 431279.7839], + [228096.121, 431306.022], + [227973.127, 431248.592], + [227770.381, 430985.441], + [227613.497, 430893.183], + [227430.975, 430917.381], + [226996.549, 430608.819], + [226792.832, 430754.062], + [226728.662, 431239.294], + [226641.677, 431324.631], + [226555.988, 431366.63], + [226432.433, 431334.051], + [226256.508, 431444.504], + [226148.296, 431419.901], + [226034.358, 431470.171], + [225798.428, 431631.838], + [225592.986, 431892.193], + [225451.945, 431718.644], + [225354.403, 431707.164], + [225214.789, 431850.2962], + [225047.602, 431789.48], + [224922.645, 431664.799], + [224842.097, 431698.502], + [224791.812, 431807.599], + [224690.31, 431790.992], + [224637.232, 431865.478], + [224526.249, 431792.415], + [224213.304, 432199.468], + [224095.088, 432190.818], + [224137.164, 432078.091], + [223955.7641, 431435.9163], + [223861.0616, 431184.7562], + [223939.249, 430845.765], + [224171.004, 430793.209], + [224214.833, 430675.681], + [224458.0332, 430537.2816], + [224802.629, 430182.746], + [225306.27, 430026.399], + [225393.482, 429914.314], + [225401.872, 429818.69], + [225130.352, 429416.89], + [225143.199, 429247.717], + [224954.143, 428928.411], + [224960.309, 428781.836], + [225258.951, 428266.109], + [225361.247, 427970.486], + [225006.275, 428039.356], + [225332.194, 427103.153], + [224942.45, 427005.699], + [224829.912, 427145.483], + [224306.77, 427427.499], + [224277.6181, 427518.1892], + [224087.085, 427665.063], + [223580.341, 427823.517], + [222993.207, 427813.029], + [222652.113, 427641.282], + [222277.62, 427847.481], + [222243.442, 427921.314], + [222323.066, 428213.575], + [222210.133, 428694.07], + [222049.975, 429028.679], + [221874.4911, 429213.8575], + [221248.3061, 429495.7716], + [221003.485, 429588.744], + [220607.137, 429559.337], + [220173.142, 429648.397], + [219302.372, 429647.427], + [219114.2314, 429593.789], + [218753.551, 429483.892], + [218462.9651, 429428.2285], + [218320.79, 429345.006], + [218146.076, 429842.993], + [217922.379, 430781.92], + [217906.569, 431056.775], + [217747.416, 431214.321], + [217798.779, 431424.467], + [217571.624, 431468.096], + [217055.779, 431815.184], + [216716.674, 431898.082], + [216474.853, 432102.724], + [215947.5964, 432161.3267], + [215749.213, 432076.672], + [215476.57, 431636.91], + [215264.93, 431439.71], + [214618.1471, 431505.2467], + [214165.733, 431616.538], + [213859.27, 431503.52], + [213374.3166, 431613.1742], + [213053.235, 431570.4765], + [212675.69, 431442.62], + [212017.36, 431333.02], + [211157.8566, 431778.7783], + [210470.87, 432296.23], + [209829.21, 432966.97], + [209719.28, 433326.98], + [209991.97, 433449.42], + [210365.3603, 433511.4998], + [210238.4, 433667.7], + [210336.803, 433987.949], + [210057.345, 434057.033], + [209747.11, 434231.773], + [208857.99, 435043.28], + [208730.57, 435003.51], + [208652.043, 435014.374], + [208552.906, 435157.678], + [208380.19, 435223.04], + [208183.451, 435421.766], + [207985.3, 435710.5], + [207941.55, 436139.5], + [207814.4138, 436142.2844], + [207665.417, 435874.125], + [207024.031, 436396.912], + [206970.675, 436596.895], + [207045, 436887], + [206993, 436934], + [206891, 436651], + [206813.855, 436600.2444], + [206685, 436605], + [205718.066, 437347.596], + [204897.7468, 437952.5186], + [203652.512, 438932.324], + [203613.09, 439166.45], + [203426.1202, 439152.7463], + [203399.8161, 439551.8449], + [203396.07, 441844.483], + [203267.877, 441909.238], + [203323.634, 442392.119], + [204342.422, 442274.459], + [204590.835, 442329.832], + [204831.8753, 442520.7513], + [205237.8788, 442710.4448], + [205514.484, 442818.782], + [205426.83, 443030.871], + [205979.39, 443572.32], + [207040.014, 443837.641], + [208124.493, 443908.775], + [208188.638, 444990.6214], + [208206.568, 445268.408], + [208043.708, 445575.597], + [208066.881, 445778.573], + [208366.497, 445908.528], + [208280.541, 445972.27], + [208017.669, 445988.644], + [208010.3548, 446093.6543], + [207961.202, 446218.641], + [207985.609, 446458.28], + [207876.183, 446476.229], + [207649.9914, 446377.6888], + [207831.932, 446723.826], + [208026.6628, 446760.1134], + [208133.703, 447557.417], + [208377.516, 447623.829], + [208359.349, 447903.846], + [208542.866, 447844.83], + [208722.218, 447865.088], + [208979.867, 447983.264], + [208936.845, 448089.685], + [209181.835, 448169.582], + [209181.262, 448294.947], + [209231.878, 448293.589], + [209225.985, 448429.682], + [209039.471, 448556.791], + [209193.114, 448844.059], + [209044.293, 448876.925], + [209087.065, 449060.365], + [208944.049, 449117.922], + [209199.142, 449532.36], + [209064.526, 449556.111], + [209118.354, 450010.282], + [209088.0916, 450409.0489], + [209086.5456, 450409.541], + [208518.414, 450135.988], + [207963.7918, 450180.0878], + [207706.7225, 450595.2662], + [207473.638, 450694.283], + [207206.75, 450647.297], + [207069.114, 450535.059], + [206790.642, 450088.125], + [206318.15, 449863.47], + [205833.362, 449779.046], + [205386.262, 449842.021], + [205065.488, 449979.426], + [204820.138, 450175.994], + [204710.155, 450350.877], + [204649.8316, 450613.4116], + [204695.922, 450956.846], + [204976.7176, 451409.9144], + [205473.1372, 451837.5158], + [206087.523, 452198.575], + [206453.609, 452586.049], + [206576.8908, 452813.2809], + [207161.507, 453206.04], + [207386.918, 453570.927], + [208173.146, 454263.2901], + [208512.334, 454472.786], + [208710.159, 454804.312], + [208923.9217, 455878.7842], + [209040.301, 456075.676], + [209214.556, 456188.819], + [209987.406, 456198.547], + [210673.433, 456482.404], + [210907.529, 456462.552], + [211168.474, 456335.517], + [211422.31, 456341.862], + [211747.254, 456616.404], + [211920.071, 456951.665], + [211896.454, 457690.783], + [211731.524, 458182.921], + [211584.876, 458417.057], + [211366.191, 458592.718], + [211099.252, 458686.341], + [210138.402, 458748.921], + [209925.337, 458838.542], + [209701.504, 459205.143], + [209694.7734, 459810.0203], + [209622.3901, 459907.6337], + [209461.046, 460079.433], + [209560.151, 460401.191], + [209531.921, 460637.746], + [209447.051, 460781.103], + [209521.85, 460971.758], + [209237.139, 461116.309], + [209268.187, 461146.951], + [209110.62, 461261.177], + [209213.11, 461374.371], + [209198.009, 461447.404], + [208871.018, 461540.962], + [208931.312, 461768.518], + [208779.139, 461867.134], + [208730.169, 461979.795], + [208813.996, 462156.53], + [208477.706, 462292.695], + [208130.7704, 462275.2276], + [207254.131, 462029.479], + [206722.87, 462210.966], + [206550.906, 462508.888], + [206563.556, 462938.174], + [206658.776, 463271.468], + [206810.927, 463466.808], + [207020.988, 463586.784], + [207824.372, 463562.935], + [208686.356, 463026.396], + [209208.941, 462972.251], + [209366.4702, 463023.3038], + [209566.385, 463973.174], + [209704.078, 464338.254], + [210026.131, 464691.859], + [210111.432, 464933.744], + [210212.795, 465437.657], + [210159.414, 465673.923], + [210014.9549, 465893.8748], + [209833.38, 466031.854], + [209299.825, 466211.542], + [208496.661, 467062.261], + [208213.099, 467141.294], + [207942.783, 467086.301], + [207777.491, 467166.132], + [207589.898, 467554.538], + [207596.0991, 468014.7438], + [207709.323, 468239.247], + [207928.353, 468391.843], + [208658.9, 468412.653], + [209083.361, 468649.926], + [209469.845, 468765.127], + [209845.684, 469151.301], + [209941.5261, 469469.8537], + [209914.056, 469889.929], + [209810.522, 470211.98], + [209226.79, 470860.741], + [208755.934, 471167.577], + [208458.346, 471556.775], + [208223.336, 471724.221], + [208296.3442, 471751.5685], + [208763.9911, 471926.737], + [209047.751, 472031.8792], + [209330.851, 472049.056], + [209499.994, 471846.86], + [209490.809, 471827.704], + [209570.126, 471781.571], + [209573.759, 471787.674], + [209629.833, 471735.22], + [209787.754, 471535.733], + [209808.8113, 471555.645], + [209856.33, 471541.658], + [210742.3306, 471557.8124], + [211691.2948, 471257.5154], + [211518.8937, 471795.3879], + [211652.939, 471813.552], + [212066.0851, 471528.8235], + [212426.14, 471631.111], + [212847.487, 471555.935], + [213158.985, 471398.257], + [214446.74, 471379.12], + [214686.2292, 471581.7062], + [214953.966, 471382.072], + [215274.911, 471298.015], + [215404.13, 471294.72], + [215382.7098, 471460.9596], + [215808.16, 471469.08], + [216426.39, 471746.64], + [216792.7005, 471808.2997], + [216869.52, 471803.92], + [216885.41, 471657.82], + [217153.7017, 471604.2921], + [217226.22, 471218.93], + [218762.38, 471253.96], + [219102.41, 471406.07], + [220009.08, 471435.27], + [219951.34, 472443.78], + [220708.32, 472885.72], + [220735.91, 473012.54], + [220879.33, 473065.3], + [221910.18, 473060.64], + [222622.2176, 473428.3766], + [222927.658, 473584.211], + [223037.353, 473352.372], + [223213.02, 473253.913] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD08", + "od_naam": "Omgevingsdienst Achterhoek", + "naam_alt": "ODA" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-602c", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [165234.77, 425338.92], + [165600, 425310], + [165900, 425436], + [166130, 425700], + [166310.6504, 426181.9286], + [166371.2867, 426275.1202], + [166555.437, 426452.765], + [166785.027, 426560.833], + [167455.1106, 426591], + [168069.3627, 426633.5659], + [168900, 426808], + [169529.764, 426626.201], + [170100, 426322], + [170900, 425741], + [171200, 425648], + [171457.6575, 425650.9189], + [172100, 425688], + [172520.5267, 425505.6838], + [172722, 425300], + [172885.8317, 424966.0986], + [173118, 424200], + [173396.7716, 423646.3938], + [173645, 423300], + [174050.4988, 422912.6108], + [174400, 422734], + [174793.186, 422683.5451], + [175600, 422547], + [176148.4738, 422165.2067], + [176341.6805, 421912.9972], + [176746, 421100], + [177000, 420891], + [177363.164, 420756.736], + [178100, 420737], + [178642.166, 420519.748], + [178800.0001, 420414], + [179053.98, 420083.6979], + [179408.9103, 419455.0157], + [179719.0001, 419000], + [180167.4778, 418657.1874], + [180600.0001, 418453], + [181384.0761, 418252.229], + [182100, 418241], + [182849.696, 418389.412], + [184155.0512, 418733.3588], + [184984.8772, 418839.6397], + [186428.343, 419000.534], + [187100, 419061], + [187951.709, 418884.539], + [188390.4706, 418626.4075], + [188415.9899, 418604.6267], + [188999.51, 418027.263], + [189066.0392, 417691.5488], + [189147.323, 417097.3061], + [189301.1758, 416540.253], + [189315.634, 416418.8213], + [189419.492, 415627.031], + [189598.393, 415280.913], + [190003.18, 414935.65], + [190404.31, 414729.99], + [191265.42, 414478.75], + [191781.625, 414459.684], + [192772.13, 414296.682], + [193670.6485, 414002.2065], + [194022.95, 413812.27], + [194273.08, 413528.39], + [194333.21, 413247.87], + [194347.68, 412472.19], + [194705.6417, 411080.5649], + [194705.6432, 411080.5589], + [194740.829, 410942.6961], + [194848.7185, 410476.2688], + [194936.5, 409800], + [194912.6641, 408901.3281], + [194869.247, 408399.3027], + [194876.174, 407769.099], + [194975.28, 407259.074], + [195159.221, 406876.973], + [195484.7518, 406488.7264], + [195796.551, 406269.986], + [196179.424, 406132.536], + [197146.413, 405511.994], + [197736.4701, 404950.2501], + [198819.76, 403863.05], + [199008.3, 403523.17], + [199093.61, 403220.6101], + [199101.56, 401764.32], + [199281.863, 400936.072], + [199593.6346, 400487.2792], + [199786.4297, 400276.7367], + [200150.97, 399670.319], + [200226.773, 399391.191], + [200207.8945, 399114.2925], + [200102.564, 398555.511], + [200110.855, 398032.251], + [200364.983, 397393.29], + [200832.554, 396820.65], + [200715.794, 396728.19], + [200586.599, 396879.922], + [200467.938, 396843.175], + [200570.544, 396705.35], + [200334.553, 396612.32], + [200083.044, 396779.05], + [199876.533, 396704.67], + [199767.391, 396613.354], + [199834.668, 396476.243], + [199697.7214, 396129.168], + [198753.823, 397344.275], + [198286.615, 397709.0024], + [198286.61, 397709.0063], + [197838.4685, 398058.5226], + [197779.408, 398104.585], + [197696.569, 398060.2669], + [196883.1651, 397634.4446], + [195647.7597, 397065.6147], + [194194.7371, 396599.088], + [193023.05, 396214.85], + [191802.9142, 396099.1194], + [191028.14, 396025.63], + [189967.8782, 396927.5604], + [188539.42, 397189.28], + [186272.6, 397594.21], + [185199.925, 397796.4754], + [185021.54, 397837.948], + [184280.6878, 398435.1997], + [183654.282, 398936.772], + [182796.063, 400664.148], + [182678.3092, 401110.4108], + [180736.3, 400625.989], + [178936.9994, 400219.8228], + [178719.5835, 400156.0701], + [177369.5262, 399764.6027], + [177329.411, 399754.443], + [177356.993, 399707.528], + [177306.036, 399675.77], + [177103.4246, 399845.5914], + [176636.88, 399513.119], + [175785.6905, 399475.0715], + [175676.6958, 399466.7828], + [173921.604, 399375.532], + [173772.656, 399394.271], + [173308.831, 399304.546], + [173401.67, 398855.086], + [173511.3342, 398642.252], + [173669.604, 398464.198], + [173667.6432, 398405.6607], + [173640.7379, 398339.8414], + [173522.8719, 398069.8548], + [173392.192, 397893.973], + [172551.824, 397305.76], + [171538.37, 396265.58], + [171270.31, 396061.03], + [171092.41, 396141.4], + [171019.52, 396346.48], + [170744.8137, 396208.0174], + [170270.8772, 396772.6489], + [168669.8095, 397106.0855], + [166659.751, 396633.029], + [165959.617, 396583.8191], + [165116.649, 396549.488], + [165455.4673, 395828.7182], + [165961.34, 394758.234], + [165811.58, 394570.31], + [166117.01, 394318.58], + [164969.927, 392905.135], + [164566.993, 392550.611], + [164397.725, 392724.048], + [164327.814, 392614.643], + [164290.3454, 392665.0665], + [164201.391, 392616.2056], + [163838.236, 392702.822], + [163732.483, 392819.149], + [163448.311, 392639.623], + [163407.13, 392766.458], + [163284.01, 392678.253], + [163207.111, 392525.776], + [162836.2358, 392492.9042], + [162822.738, 392918.582], + [163059.902, 392984.108], + [163086.308, 393062.836], + [163006.113, 393151.345], + [162956.724, 393088.264], + [162959.363, 393167.287], + [162707.503, 393288.44], + [162581.524, 393123.493], + [162428.91, 393140.806], + [162373.158, 393082.782], + [162050.576, 393816.546], + [161988.909, 394715.088], + [161933.414, 394769.052], + [161628.4784, 394737.7993], + [160625.065, 394633.746], + [159843.2203, 394339.7797], + [158483.88, 393889.318], + [158276.537, 393928.701], + [158078.74, 393819.42], + [157958.051, 393999.937], + [157542.36, 393897.91], + [157482.358, 393885.149], + [157425.318, 394215.548], + [157296.558, 394399.546], + [156723.45, 394859.317], + [156646.509, 394811.358], + [156259.558, 395488.123], + [156181.391, 395481.251], + [155066.924, 395040.627], + [154686.011, 394973.452], + [153704.08, 394950.771], + [153471.8, 395115.47], + [152898.799, 395083.806], + [152478.086, 395030.502], + [151998.463, 395056.923], + [151531.166, 395272.144], + [151250.101, 395795.856], + [150681.8734, 395807.4343], + [149533.537, 395226.858], + [148881.6145, 395435.5301], + [147098.255, 395991.145], + [146795.272, 396092.403], + [146484.8758, 396564.8537], + [146280.3156, 396916.9544], + [145224.911, 398960.111], + [145297.853, 399772.3037], + [145300.256, 399801.296], + [145328.674, 400087.851], + [145397.39, 400179.17], + [145865.549, 400510.441], + [146388.402, 401232.267], + [146786.826, 401341.904], + [147273.038, 401729.796], + [147486.41, 401772.3049], + [147273.497, 402100.889], + [146828.868, 402309.369], + [146761.661, 402586.766], + [146800.388, 402635.277], + [146598.2106, 403026.1289], + [146220.1811, 403589.0821], + [145880.193, 404015.352], + [145557.384, 403756.276], + [145540.469, 403888.456], + [145233.769, 403763.601], + [145267.832, 403560.989], + [145108.2901, 403307.1581], + [144942.774, 403237.858], + [144799.694, 403338.41], + [144638.409, 403354.477], + [144593.486, 403262.287], + [143987.096, 403013.481], + [143830.328, 403021.537], + [143704.807, 403075.294], + [143694.16, 403283.119], + [143559.894, 403443.752], + [143587.09, 403676.854], + [142776.288, 402982.81], + [142576.599, 403496.511], + [142581.255, 403519.117], + [142228.118, 403766.654], + [142121.2479, 403916.0269], + [141752.977, 404363.966], + [141599.816, 404657.401], + [141553.6537, 405063.3835], + [141501.873, 405084.049], + [141437.699, 405355.726], + [141486.4422, 405489.4875], + [141475.086, 405643.847], + [140934.686, 405778.871], + [140627.647, 405692.442], + [140586.04, 405889.297], + [140514.076, 405885.335], + [140545.646, 405669.066], + [140106.929, 405583.086], + [139276.877, 405656.709], + [138893.74, 407369.382], + [139068.17, 407684.871], + [139119.55, 408298.262], + [139402.9, 408316.611], + [139752.853, 408938.541], + [140311.8558, 408953.1234], + [142380.352, 409017.459], + [142206.786, 409105.64], + [142600.897, 409476.824], + [143657.728, 409454.974], + [143834.259, 410575.923], + [143864.405, 411262.255], + [143910.322, 411353.39], + [144043.323, 411408.905], + [145402.2932, 411812.2199], + [145409.2892, 411822.65], + [145439.551, 412048.92], + [145623.454, 412297.893], + [145607.2822, 412343.656], + [145441.324, 412506.567], + [145389.098, 412490.929], + [145309.158, 412672.7], + [144901.462, 412483.274], + [144754.246, 412596.8645], + [144636.421, 412899.426], + [144531.499, 412887.606], + [144910.153, 413925.479], + [144133.452, 413546.682], + [144087.9799, 413737.9179], + [144034.822, 414013.962], + [144211.708, 415042.51], + [143967.472, 415391.774], + [143785.411, 415337.064], + [143569.141, 415641.359], + [143403.18, 415504.281], + [143114.5416, 415858.8878], + [142760.112, 416150.571], + [142789.92, 416321.17], + [142725.11, 416531.36], + [142785.96, 416569.38], + [142518.943, 416989.029], + [142889.2578, 417128.1329], + [143200, 417207], + [143600, 417199], + [144218.6259, 416965.8243], + [145154.7061, 416198.176], + [145500.0001, 416104], + [145900, 416250], + [146500, 416686], + [146803.8461, 416776.6539], + [147300, 416834], + [147822.4281, 416789.4958], + [148400, 416509], + [148700, 416448], + [149000, 416511], + [149278.0161, 416677.1718], + [150500, 417537], + [152673.992, 418531.655], + [152954, 418800], + [153117, 419100], + [153152.0036, 420000.3571], + [153298, 421200], + [153746.8486, 422351.6322], + [153826.5763, 422494.097], + [154199.8469, 423057.3438], + [154744, 424000], + [155497, 424900], + [155771.0631, 425393.1699], + [155886.1113, 425644.8416], + [156000, 425809], + [156300, 425979], + [156600, 425993], + [156908.632, 425853.477], + [157142.2193, 425549.5939], + [157419.6639, 425104.7624], + [157900, 424750], + [158600, 424566], + [159300, 424563], + [160329.1799, 424731.8786], + [160536.3747, 424800.6412], + [161000, 425117], + [161187, 425400], + [161284.3227, 425719.5453], + [161375, 426200], + [161524, 426500], + [161800, 426761], + [162099.1125, 426883.7516], + [162500, 426895], + [163000, 426691], + [163333, 426400], + [163757, 425800], + [164000, 425638], + [164700, 425550], + [165234.77, 425338.92] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD29", + "od_naam": "Omgevingsdienst Brabant Noord", + "naam_alt": "ODBN" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-602b", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [160699.625, 475033.3928], + [160717.3409, 474962.4313], + [161071.319, 475012.955], + [160850.967, 474914.085], + [160856.939, 474892.1628], + [160947.6463, 474892.4064], + [160945.5353, 474858.1763], + [160804.249, 474807.827], + [160902.774, 474401.45], + [160981.56, 474339.608], + [161241.5621, 474424.6355], + [161236.381, 474381.443], + [160939.444, 474274.086], + [161428.37, 472819.636], + [161590.529, 472358.265], + [161877.202, 472063.942], + [162022.94, 471978.926], + [162437.428, 472029.6332], + [162526.9048, 472040.137], + [162663.292, 471763.502], + [162773.384, 471789.91], + [162822.155, 471660.968], + [163146.06, 471509.413], + [163262.652, 471611.148], + [163411.597, 471648.332], + [163456.873, 471756.406], + [163405.225, 471925.604], + [163591.466, 471970.626], + [163577.37, 471854.709], + [163731.1427, 471816.5882], + [163769.31, 471792.475], + [163722.441, 471460.141], + [163913.854, 471490.566], + [163902.278, 471440.11], + [164031.243, 471402.754], + [164311.224, 471056.117], + [164279.097, 471034.144], + [164548.281, 470560.653], + [164973.042, 470123.141], + [165071.915, 470144.764], + [165183.7871, 469956.5171], + [165471.215, 469473.313], + [165416.281, 469464.219], + [165432.609, 469347.858], + [165535.6745, 469364.9482], + [166098.0482, 468406.0371], + [166123.4, 468260], + [170074.3759, 468573.8709], + [170090.9404, 468577.2286], + [171819.145, 468924.76], + [172711.7579, 469585.3176], + [173482.043, 470155.264], + [174017.392, 470550.233], + [174382.032, 470692.271], + [175092.5, 470847.654], + [175247.619, 472548.096], + [175671.5711, 472530.4789], + [175936.771, 472450.87], + [176824.2333, 472419.402], + [177116.5704, 472445.2807], + [177158.718, 472454.978], + [177416.1468, 472508.5781], + [177648.4261, 472655.84], + [178166.355, 472770.76], + [178384.358, 472373.332], + [178481.259, 471555.643], + [178648.101, 471579.125], + [178979.877, 471559.149], + [179313.24, 470660.8], + [179222.589, 470258.869], + [178249.948, 470189.309], + [178331.078, 469772.357], + [178483.091, 469000], + [179191.457, 468255.732], + [179846.123, 467352.322], + [182677.58, 467729.5801], + [182967.52, 467659.29], + [183200.84, 467472.76], + [184046.497, 466390.2], + [183369.23, 465550.2], + [183901.958, 464365.875], + [183925.32, 462666.24], + [186383.387, 462702.844], + [187328.823, 462390.692], + [187440.3868, 462003.3037], + [187528.803, 460838.606], + [187663.5519, 460034.8889], + [187673.7717, 459972.2779], + [187702.856, 459811.261], + [188354.2711, 458828.9278], + [188499.134, 458583.401], + [188997.15, 457683.465], + [189706.487, 457514.038], + [190140.146, 457406.863], + [190921.6462, 457025.7917], + [192003.747, 457028.835], + [193301.042, 456931.199], + [193662.2008, 457000.0001], + [193447.461, 455990.383], + [193313.786, 454549.236], + [190833.953, 452773.426], + [190036.183, 452908.593], + [190134.273, 451417.947], + [188945.387, 451348.795], + [187407.29, 451628.565], + [186746.3377, 451577.2428], + [185919.16, 451019.893], + [184986.1313, 449702.6313], + [184608.6838, 449116.3064], + [184250.157, 448499.627], + [183500.33, 448304.722], + [183623.832, 448169.633], + [183583.632, 448118.736], + [183205.77, 448264.947], + [181800.148, 448241.932], + [181335.567, 448206.523], + [181307.2467, 448158.9715], + [181266.532, 448201.544], + [180353.024, 448143.516], + [179721.2678, 448024.398], + [179569.1622, 447995.7114], + [179297.956, 447623.659], + [179095.748, 447161.048], + [179172.6, 446925.69], + [179141.365, 446700.041], + [179056.26, 446590.11], + [178821.183, 446506.756], + [178943.289, 446051.351], + [178730.762, 445874.535], + [178153.007, 445868.291], + [177890.244, 444787.7738], + [177632.37, 443721.759], + [177942.919, 443666.106], + [177714.061, 443048.114], + [177763.094, 442948.814], + [177432.9025, 442241.7466], + [177432.9763, 442241.3559], + [177711.51, 442096.19], + [177931.56, 442106.37], + [178051.19, 441789.34], + [177975.511, 441768.633], + [176954.068, 441634.745], + [175257.097, 441232.949], + [174889.016, 441055.227], + [174419.476, 440635.745], + [174164.93, 440521.105], + [173903.876, 440502.727], + [173323.845, 440641.554], + [172991.233, 440650.448], + [172671.322, 440465.459], + [172806.814, 440269.661], + [173040.891, 440207.809], + [172745.409, 439835.115], + [172731.275, 439634.669], + [172427.3961, 439043.7585], + [172358.228, 438896.764], + [172125.457, 438721.653], + [171716.851, 438688.797], + [171549.8558, 438775.5009], + [171198.412, 439060.46], + [170862.302, 439235.802], + [170040.14, 439430.59], + [170759.115, 440125.804], + [171035.1218, 440012.2253], + [171015.098, 440365.218], + [171240.697, 440415.729], + [171349.501, 440379.288], + [171506.003, 440475.315], + [171448.294, 441019.446], + [171220.8438, 441597.13], + [171016.292, 442043.457], + [171330.835, 442474.604], + [171412.554, 442877.815], + [170986.902, 443281.443], + [170653.417, 443837.409], + [170565.091, 444685.569], + [170300.154, 445057.325], + [170028.343, 445109.103], + [169787.548, 445201.114], + [169376.958, 445667.61], + [169063.215, 445910.454], + [168981.02, 446091.853], + [169000.597, 446567.723], + [168888.427, 446807.065], + [168746.0862, 446969.7927], + [168649.1957, 447064.6075], + [168699.574, 447121.447], + [168710.302, 447502.788], + [168895.644, 447490.133], + [168936.785, 448010.039], + [168727.9067, 448029.6987], + [168742.8985, 448718.7084], + [168735.9581, 448787.9683], + [168691.078, 449235.837], + [168888.548, 449223.719], + [168899.584, 449392.978], + [168909.929, 449392.462], + [168917.367, 449571.6666], + [168913.0859, 449583.6931], + [168042.3854, 450016.9534], + [167426.106, 450231.4806], + [167363.3212, 450270.9051], + [167449.019, 450468.225], + [167524.01, 450581.715], + [167543.9524, 450580.2033], + [167551.018, 450695.814], + [167541.3077, 450701.9421], + [167538.549, 450828.9343], + [167598.0877, 451091.703], + [166709.536, 451186.12], + [166898.435, 453260.033], + [166793.362, 453652.773], + [166868.7107, 453777.4505], + [166945.858, 453903.759], + [167033.825, 454459.343], + [166893.459, 454807.79], + [166895.6686, 455119.0798], + [166616.6, 455259.95], + [166666.526, 455337.434], + [166641.31, 455414.05], + [166562.875, 455441.727], + [166495.71, 455373.99], + [166480.087, 455928.929], + [166558.913, 455964.843], + [166460.174, 456148.091], + [166459.293, 456362.073], + [166192.622, 456504.372], + [166444.815, 456891.558], + [166364.285, 456980.691], + [166176.74, 457477.1], + [165830.958, 457361.792], + [165900.658, 457145.388], + [165743.908, 457090.002], + [165574.065, 457288.592], + [164889.492, 457123.615], + [164977.267, 456869.776], + [165412.403, 456629.216], + [165390.145, 456475.907], + [165133.886, 456079.12], + [165354.234, 456059.003], + [165274.611, 455608.691], + [164845.161, 455733.609], + [164556.858, 455191.103], + [164877.292, 455084.458], + [164866.425, 454899.778], + [164575.727, 454721.236], + [164285.608, 454371.578], + [164127.973, 454456.464], + [164063.125, 454556.384], + [163723.153, 454509.99], + [163412.522, 454537.809], + [163442.744, 454427.138], + [163357.406, 454307.06], + [163201.3972, 454281.355], + [163075.713, 454280.479], + [163070.3311, 454196.6542], + [163047.606, 453902.966], + [162876.756, 453902.201], + [162725.592, 453678.333], + [162468.123, 453716.071], + [162326.786, 453741.49], + [162095.766, 453685.775], + [161930.381, 453572.286], + [161629.868, 453489.968], + [161112.601, 453822.058], + [160927.574, 453876.084], + [160738.351, 454048.478], + [160496.206, 454137.853], + [160432.091, 454205.476], + [160377.915, 454448.819], + [159938.2832, 454663.9029], + [160000.2, 454744.809], + [159967.887, 454861.744], + [160078.9299, 454933.3531], + [160220.628, 455022.078], + [160267.685, 454979.183], + [160531.225, 455302.0447], + [160776.8638, 455552.1191], + [160800.267, 455674.706], + [160876.3621, 455653.4141], + [160997.917, 455777.164], + [161139.325, 455795.015], + [161776.056, 456160.426], + [161683.567, 456490.48], + [161719.3483, 456765.9791], + [161652.238, 457482.616], + [162306.286, 458101.599], + [162310.135, 458287.054], + [162169.527, 458478.332], + [161797.72, 458575.118], + [161909.604, 458657.759], + [162426.388, 458601.17], + [162651.703, 458649.559], + [162904.869, 458547.016], + [162991.244, 458397.278], + [163157.846, 458460.425], + [163253.854, 458414.578], + [163243.2179, 458605.821], + [162983.077, 458713.276], + [163091.952, 459065.569], + [162956.2035, 459055.1966], + [162728.261, 459003.748], + [162514.198, 459043.192], + [162386.567, 459314.027], + [162361.782, 459617.081], + [162502.451, 459628.045], + [162580.547, 460236.601], + [162661.633, 460265.506], + [162825.415, 460198.708], + [163064.864, 460326.897], + [163248.941, 460331.339], + [163353.29, 460422.798], + [163522.013, 460434.794], + [163547.1704, 460611.3256], + [163544.3132, 460651.5167], + [163536.223, 460664.515], + [163569.462, 460676.681], + [163574.7265, 460688.4718], + [163686.394, 460865.94], + [163522.523, 461040.392], + [163232.057, 461155.396], + [163241.691, 461192.591], + [162900.045, 461266.559], + [162721.752, 461433.988], + [162537.11, 461478.266], + [162650.991, 462136.871], + [162000, 462231.347], + [161610.983, 462369.435], + [161442.949, 462484.461], + [161608.423, 462871.879], + [161629.195, 463023.777], + [161645.47, 463326.178], + [161452.344, 463351.897], + [161487.5895, 463491.0277], + [161494.59, 463518.662], + [161294.603, 463692.533], + [161042.906, 463781.333], + [160861.347, 463746.259], + [160831.625, 463857.759], + [160888.5237, 463903.8139], + [161041.793, 464027.873], + [161277.128, 464068.618], + [161343.622, 464188.13], + [160639.58, 464231.2129], + [159817.2728, 464327.1208], + [159059.305, 464431.48], + [158857.881, 464521.053], + [158603.269, 464784.283], + [158537.495, 464975.558], + [158617.9793, 465026.9451], + [158545.284, 466222.789], + [158479.813, 466273.684], + [158616.807, 466882.09], + [158590.0351, 467552.9559], + [158593.934, 467681.3875], + [158594.0384, 467684.8039], + [158571.601, 468233.086], + [158685.5647, 468469.8432], + [158621.862, 468504.088], + [158647.79, 468638.307], + [158596.687, 468654.636], + [158556.921, 468500.81], + [158247.629, 468642.383], + [156535.27, 470054.995], + [156368.135, 469479.177], + [155568.461, 470118.683], + [155410.52, 470284.63], + [155516.8468, 470752.4925], + [155641.4676, 471302.1333], + [156122.5747, 473227.9654], + [156684.083, 473141.1351], + [156873.8944, 473083.4418], + [157583.294, 473498.8091], + [157941.1976, 473578.3084], + [158284.906, 473811.3991], + [159464.4776, 473969.8041], + [159584.2555, 473943.713], + [159967.7599, 474141.7088], + [160135.9124, 474153.615], + [160201.925, 474271.922], + [160254.797, 474584.349], + [160265.428, 474585.194], + [160324.97, 474182.055], + [160294.517, 474177.563], + [160299.188, 474129.956], + [160384.121, 474160.935], + [160377.552, 474204.544], + [160416.3918, 474212.822], + [160386.458, 474442.667], + [160349.564, 474437.939], + [160320.451, 474592.0348], + [160332.0338, 474596.2487], + [160343.0962, 474541.8668], + [160387.7051, 474533.1356], + [160420.7251, 474482.4942], + [160740.574, 474593.337], + [160711.6364, 474629.5485], + [160548.48, 474586.134], + [160535.6485, 474618.4907], + [160704.6588, 474675.513], + [160642.7368, 474802.7044], + [160731.8053, 474867.2035], + [160711.05, 474883.492], + [160487.6859, 474849.9763], + [160710.011, 474959.428], + [160688.7858, 475027.6194], + [160639.6177, 475027.8015], + [160751.1142, 475060.5782], + [160699.625, 475033.3928] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD09", + "od_naam": "Omgevingsdienst de Vallei", + "naam_alt": "OddV" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-602a", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [150846.9369, 478090.8851], + [150899.3205, 478039.0818], + [150118.3887, 478304.3596], + [150106.2478, 478550.9214], + [150702.0479, 478545.7085], + [151006.3322, 478274.7262], + [150846.9369, 478090.8851] + ] + ], + [ + [ + [131335.613, 483062.164], + [131176.0425, 483021.3175], + [131145.784, 483335.797], + [131083.1487, 483377.1919], + [130847.599, 483411.5397], + [130845.3994, 483431.6237], + [130966.29, 483434.434], + [131264.74, 483352.307], + [131470.693, 483232.715], + [131335.613, 483062.164] + ] + ], + [ + [ + [135901.8631, 484223.4946], + [136096.2433, 484010.2624], + [136089.553, 484004.699], + [136056.7249, 484043.7737], + [135974.0354, 483975.5153], + [135676.656, 484269.438], + [135604.3897, 484300.579], + [135579.8484, 484366.737], + [135455.299, 484399.4866], + [135453.0533, 484405.7348], + [135614.9989, 484366.6074], + [135901.8631, 484223.4946] + ] + ], + [ + [ + [134138.189, 484216.147], + [134041.2036, 484105.516], + [134122.441, 484241.43], + [134527.082, 484347.973], + [134634.324, 484428.135], + [134638.1549, 484417.3127], + [134540.475, 484338.345], + [134138.189, 484216.147] + ] + ], + [ + [ + [133394.86, 486307.932], + [133343.697, 486290.728], + [133260.187, 486311.689], + [133236.064, 486421.665], + [133294.3109, 486452.785], + [133386.555, 486436.301], + [133394.86, 486307.932] + ] + ], + [ + [ + [187328.4396, 503738.1505], + [187007.5518, 503592.1785], + [187004.2739, 503675.4198], + [187062.1658, 503681.1212], + [187283.6404, 503799.2465], + [187328.4396, 503738.1505] + ] + ], + [ + [ + [187114.8243, 503848.9226], + [187091.93, 503730.8214], + [187036.476, 503742.1143], + [186994.093, 504205.001], + [186994.0998, 504205.0121], + [186994.7827, 504205.821], + [187122.995, 504358.253], + [187190.8301, 504323.9383], + [187266.1, 504070.52], + [187228.2302, 503904.9727], + [187114.8243, 503848.9226] + ] + ], + [ + [ + [164912.8996, 510024.3146], + [164641.4365, 509733.0077], + [164381.086, 509979.0707], + [164652.058, 510260.139], + [164912.8996, 510024.3146] + ] + ], + [ + [ + [180121.974, 511529.431], + [180034.3586, 511260.3922], + [178879.364, 511553.821], + [178594.76, 511878.4547], + [178505.949, 512188.434], + [178551.3855, 512804.7648], + [179025.3006, 513081.4472], + [179616.1627, 512987.7983], + [179911.9886, 512781.7494], + [180121.974, 511529.431] + ] + ], + [ + [ + [188921.8818, 514487.6896], + [185873.4634, 513787.3811], + [187356.967, 514338.29], + [187550.983, 514390.152], + [187695.599, 514341.529], + [187726.6809, 514430.4309], + [188811.0114, 514818.1737], + [188907.195, 514877.989], + [189245.0208, 514804.5], + [189319.719, 514673.17], + [189477.293, 514615.2799], + [188921.8818, 514487.6896] + ] + ], + [ + [ + [197192.0115, 517398.0979], + [197070.4108, 517378.6149], + [196740.8358, 517516.4898], + [196424.494, 517754.424], + [196414.609, 517984.857], + [196651.7604, 518091.3364], + [197012.3769, 518011.9115], + [197306.696, 517857.0729], + [197412.9577, 517761.1457], + [197192.0115, 517398.0979] + ] + ], + [ + [ + [179365.35, 539224.91], + [181776.02, 536766.76], + [181983.0645, 535821.2855], + [182150.27, 535234.94], + [182510.65, 535551.92], + [183076.36, 534479.85], + [183704.0378, 533852.3057], + [184106.48, 533459.58], + [184117.56, 533132.59], + [184748.11, 533230.84], + [185281.543, 533244.1141], + [185366.72, 533176.63], + [185657.27, 533191.19], + [185777.26, 533116.86], + [186243.17, 533127.3011], + [187040.945, 532742.089], + [188251.682, 531867.65], + [188605.37, 531448.25], + [189108.322, 531079.944], + [189232.65, 530988.9], + [189349.38, 530732.48], + [189463.0796, 530656.8177], + [189618.55, 530553.36], + [190020.44, 530570.73], + [191096.679, 529448.448], + [191668.1783, 528163.7079], + [192041.35, 527127.81], + [192431.159, 525717.433], + [192480.87, 525539.59], + [192526.94, 525434.56], + [193111.17, 525096.04], + [193174.949, 524980.4754], + [193395.97, 524580], + [193366.82, 524190.95], + [193648.765, 524203.833], + [194046.81, 523566.15], + [194073.18, 523061.75], + [193869.79, 522701.92], + [193687.28, 522655.92], + [193241.1, 522128.26], + [193158.08, 522095.55], + [193022.88, 522179.24], + [192843.7313, 521987.4893], + [192700.11, 521842.81], + [192745.73, 521797.41], + [192395.6, 521452.1849], + [191973.33, 521035.83], + [191899.55, 520776.94], + [191923.72, 520562.87], + [192027.068, 520398.751], + [192065.03, 520338.08], + [192375.04, 520296.09], + [192399.07, 520473.35], + [192499.94, 520484.15], + [193342.78, 520174.37], + [193623.74, 520191.65], + [193869.2349, 520136.5117], + [193955.22, 520037.25], + [194084.92, 520011.14], + [194211.94, 520059.54], + [194481.23, 519906.88], + [194744.1384, 519633.6099], + [195076.25, 519389.47], + [195288.6889, 519107.2562], + [195235.077, 519148.0233], + [195192.8986, 519122.9026], + [195369.756, 518927.892], + [195364.238, 518847.959], + [194329.595, 517238.628], + [194025.562, 516960.113], + [188700.6073, 515147.2684], + [185112.088, 513981.6198], + [181032.9529, 513983.0343], + [179580.5795, 513980.6728], + [179477.572, 513919.6404], + [179281.82, 513927.5819], + [179286.4754, 513803.437], + [179565.9, 513793.963], + [179587.211, 513751.084], + [179264.393, 513759.312], + [179119.056, 513934.116], + [179003.7773, 513901.1103], + [178888.8658, 513981.5468], + [173701.9106, 513981.173], + [173361.383, 514054.917], + [173039.516, 514247.298], + [172880.5181, 514169.5394], + [172257.061, 513619.788], + [172121.833, 513399.109], + [172859.498, 512450.522], + [173128.542, 512231.017], + [177930.4494, 511038.1756], + [178248.3855, 510961.2109], + [179976.675, 510542.8333], + [180048.5281, 510475.2864], + [180053.1794, 510403.8345], + [180060.8958, 510285.2997], + [180260.538, 510290.458], + [180328.294, 510506.745], + [180536.297, 510469.154], + [180364.973, 510454.478], + [180338.861, 510259.727], + [180771.3873, 510257.9318], + [181853.7256, 510321.8571], + [183250.878, 510314.409], + [183591.518, 510233.486], + [183850.684, 510071.072], + [186506.582, 507167.099], + [186652.4532, 506722.0419], + [186729.93, 506485.658], + [186761.1925, 506545.7073], + [186783.0259, 506605.2684], + [186802.5985, 506605.301], + [186787.9458, 506504.3479], + [186819.06, 506492.3769], + [186834.6914, 506571.8646], + [186868.961, 506574.319], + [186908.941, 506550.122], + [186917.4576, 506497.996], + [186927.933, 506433.875], + [186865.997, 506369.2291], + [186852.613, 506406.767], + [186838.9398, 506445.1158], + [186811.488, 506453.583], + [186770.0158, 506430.9155], + [186780.2333, 506377.4448], + [186842.349, 506345.072], + [186807.4815, 506311.5331], + [186776.959, 506346.2545], + [186753.0909, 506343.2878], + [186733.0481, 506258.633], + [186874.129, 503737.426], + [186922.2085, 503718.5623], + [186922.9575, 503606.2073], + [186881.4237, 503607.0651], + [186887.689, 503495.101], + [186784.8813, 503344.196], + [186607.655, 502457.404], + [186623.923, 502134.093], + [186263.9841, 500737.755], + [184151.831, 496874.7721], + [184171.166, 496747.7801], + [184241.6287, 496702.9296], + [184238.9111, 496697.7257], + [184164.7741, 496736.3791], + [184088.916, 496597.2981], + [184040.3164, 496638.3444], + [183896.378, 496625.4641], + [183321.889, 495424.0981], + [183249.5265, 495462.1481], + [183057.1766, 494932.8108], + [182883.559, 494727.641], + [182869.467, 494639.8498], + [181804.9878, 493750.0001], + [181573.7403, 493464.7408], + [181429.1451, 493416.3609], + [180174.192, 492416.7741], + [179479.7498, 491923.6225], + [179357.2678, 491931.6799], + [179316.0072, 491863.6354], + [179332.1838, 491986.7012], + [179161.467, 492002.405], + [179139.9545, 491917.7075], + [179262.7612, 491829.5988], + [179124.4855, 491812.0759], + [178987.094, 492001.983], + [178083.4781, 492182.7638], + [177648.9049, 492087.6456], + [173666.899, 490046.115], + [172566.0448, 489240.1828], + [172513.9355, 489150.2168], + [172560.491, 489074.0606], + [172470.233, 489074.765], + [172533.245, 488996.324], + [172162.4485, 488858.902], + [172030.2634, 488683.3501], + [171986.184, 488732.595], + [171898.9674, 488601.3243], + [171953.4305, 488506.1304], + [171918.3233, 488483.5418], + [171839.2525, 488575.791], + [171710.1702, 488493.7343], + [171829.861, 488329.473], + [171687.1255, 488479.085], + [171204.839, 488076.663], + [171079.157, 487664.2608], + [170906.6703, 487586.754], + [170590.415, 487118.463], + [170634.5668, 487013.6721], + [170526.5, 487020.25], + [170607.9112, 486867.0536], + [170596.293, 486786.4564], + [170560.392, 486753.281], + [170602.191, 486850.633], + [170495.5903, 486989.511], + [170491.1889, 486985.134], + [170543.6146, 486907.2819], + [170362.184, 486777.398], + [170181.5118, 486532.903], + [170273.515, 486470.294], + [170499.9424, 486693.9824], + [170519.745, 486665.516], + [170349.0717, 486478.2107], + [170385.815, 486431.647], + [170249.5555, 486303.2453], + [170302.936, 486256.184], + [170437.5473, 486320.7384], + [170538.1891, 486104.9732], + [170511.494, 486092.6741], + [170450.8045, 486064.2378], + [170369.1023, 485909.922], + [170335.012, 485961.026], + [170346.375, 486068.973], + [170262.636, 486145.425], + [170281.9761, 486239.2093], + [170232.7561, 486288.8461], + [170205.9746, 486277.705], + [170049.9685, 486401.8679], + [169974.16, 486314.4759], + [169569.0294, 486429.5376], + [168717.545, 486165.593], + [168294.592, 486149.453], + [167028.7198, 486646.8643], + [165585.7595, 485060.6924], + [165298.223, 484701.7254], + [165221.949, 484379.334], + [165518.8652, 483332.0198], + [165765.7145, 483029.0289], + [165960.5918, 483084.5609], + [166289.3831, 482926.6386], + [166241.876, 482653.437], + [166174.4949, 482614.9841], + [166079.483, 482347.7061], + [165991.014, 482163.152], + [166271.038, 481455.005], + [166270.34, 481328.137], + [166142.656, 481236.777], + [166009.075, 480739.338], + [166034.337, 480633.6657], + [166039.8828, 480469.2455], + [165878.4183, 480457.3625], + [165901.4379, 480336.5378], + [166021.0398, 480368.213], + [166042.0333, 480420.335], + [166052.9214, 480409.6309], + [166034.431, 480356.133], + [165886.8078, 480281.0418], + [165591.652, 479161.436], + [165302.8738, 478319.518], + [165121.625, 478068.545], + [165297.9885, 477913.1184], + [165095.3895, 477871.9297], + [164657.0549, 476333.4044], + [164477.6233, 476162.962], + [163929.368, 476068.538], + [162205.994, 475542.178], + [161939.6969, 475448.5376], + [161940.486, 475417.631], + [161877.09, 475369.061], + [161872.9659, 475374.543], + [161928.727, 475417.631], + [161884.33, 475470.141], + [161833.1853, 475401.187], + [161827.69, 475404.137], + [161830.052, 475431.497], + [161794.1835, 475436.9915], + [161724.5732, 475408.7141], + [161734.5338, 475373.859], + [161818.345, 475402.67], + [161832.521, 475390.855], + [161837.1345, 475327.843], + [161828.007, 475325.627], + [161823.5923, 475375.3108], + [160751.1142, 475060.5782], + [160639.6177, 475027.8015], + [159461.162, 474652.347], + [159473.6843, 474605.3285], + [158163.3178, 474263.9288], + [158130.227, 474198.7521], + [157058.693, 473936.0321], + [156532.414, 473841.566], + [155980.3026, 473917.5053], + [155831.122, 474147.6881], + [155591.886, 474255.5221], + [155628.8751, 474313.8893], + [155521.5614, 474424.8639], + [155433.2294, 474334.1951], + [155581.6408, 474210.1327], + [155569.319, 474196.6001], + [155334.117, 474411.0859], + [155337.3634, 474421.4745], + [155393.4188, 474371.9121], + [155471.679, 474446.248], + [155369.8566, 474539.0837], + [155299.8129, 474453.5061], + [155271.0278, 474510.6435], + [155329.108, 474541.975], + [154856.109, 475113.017], + [150222.6809, 479512.0426], + [150142.698, 479577.584], + [150000.3547, 479461.3175], + [150223.8308, 479181.5849], + [150036.55, 479230.0237], + [149806.9488, 479107.5649], + [149614.751, 479095.0573], + [149345.848, 478821.3565], + [149263.5326, 478585.2026], + [149031.8221, 478507.9983], + [148861.8798, 478356.6048], + [148745.4939, 478000.1916], + [148769.2274, 477847.6182], + [148814.6985, 477636.5319], + [149489.8871, 476625.1815], + [149446.194, 476594.514], + [147593.0251, 476946.6217], + [147488.3364, 476965.1815], + [146947.892, 477066.8951], + [146713.272, 477078.4331], + [146706.019, 477062.952], + [146393.6503, 476432.6705], + [145227.359, 474079.066], + [145296.409, 474053.149], + [144837.917, 473078.212], + [144766.646, 472924.398], + [144390.037, 472124.2233], + [143773.761, 470810.827], + [143898.714, 470803.441], + [143612.615, 469777.617], + [143501.105, 469350.333], + [143330.525, 468709.651], + [143380.219, 468694.623], + [143333.206, 468607.721], + [143262.586, 468476.898], + [141688.276, 465539.062], + [141113.733, 465554.1781], + [140788.653, 465583.8833], + [140123.546, 465651.399], + [139920.832, 465671.2691], + [138321.1076, 465823.5894], + [138312.8493, 465790.2655], + [137005.823, 465886.99], + [136821.345, 465901.6101], + [136403.5677, 465776.712], + [133893.27, 465026.7636], + [131687.4162, 464251.5], + [131363.5457, 466235.9946], + [130742.179, 466279.257], + [130829.563, 466506.953], + [130912.827, 466577.672], + [130956.602, 467041.609], + [131030.691, 467348.191], + [131133.182, 467506.788], + [131070.5088, 467694.5024], + [131065.72, 467828.611], + [130645.469, 467909.805], + [130438.9909, 468043.7585], + [130311.175, 468201.841], + [130086.203, 468220.793], + [129985.488, 468260.415], + [129991.82, 468277.169], + [130097.6701, 468240.2393], + [130064.9135, 468297.8178], + [130036.266, 468315.509], + [130005.902, 468325.9], + [130007.112, 468333.322], + [130080.944, 468298.9019], + [130104.043, 468276.868], + [130109.5793, 468356.3463], + [130066.6325, 468347.6928], + [130077.427, 468488.678], + [130132.859, 468475.819], + [130124.374, 468389.349], + [130239.185, 468365.749], + [130242.0535, 468413.9915], + [130270.7901, 468414.036], + [130281.0783, 468492.1497], + [131035.454, 468283.297], + [131089.685, 468597.523], + [130945.9524, 468628.0456], + [131025.423, 469109.5832], + [131025.3516, 469109.5939], + [130817.502, 469140.885], + [130884.431, 469505.639], + [130841.777, 469506.467], + [130846.08, 469572.198], + [131047.948, 469565.585], + [131082.461, 469623.86], + [130951.843, 469654.939], + [130976.384, 469728.52], + [131060.18, 469731.571], + [131075.277, 469891.801], + [130988.995, 469995.989], + [131048.472, 470755.743], + [131222.2249, 470708.6616], + [131232.7999, 470760.0781], + [131406.4215, 470713.1822], + [131407.51, 470720.872], + [131455.914, 470698.76], + [131467.154, 470718.062], + [131411.843, 470750.273], + [131407.952, 470723.814], + [131267.654, 470757.712], + [131069.1519, 470803.3525], + [131078.802, 470864.801], + [131190.003, 470846.215], + [131393.542, 471185.1621], + [131448.396, 471245.581], + [131357.1459, 471306.494], + [131364.8739, 471326.7802], + [131326.661, 471333.7891], + [131316.489, 471364.3801], + [131376.9547, 471390.3387], + [131388.101, 471480.449], + [131437.6382, 471440.5428], + [132390.256, 471930.893], + [132360.68, 471957.167], + [132427.283, 471999.059], + [132471.2831, 471960.4383], + [132492.1237, 471970.9205], + [132437.3354, 472102.4333], + [131695.8855, 472851.131], + [131729.2692, 473463.4299], + [131648.9535, 473591.0249], + [131577.0352, 473784.4952], + [131526.9101, 474212.4619], + [131421.733, 474336.623], + [131310.744, 474338.979], + [131100.35, 473991.156], + [130967.3811, 473903.1971], + [130754.5332, 474123.828], + [130659.3174, 474377.0614], + [130782.8953, 474582.6869], + [130788.173, 474719.641], + [130712.519, 474868.08], + [130379.403, 475191.603], + [130469.529, 475419.005], + [130454.82, 475589.447], + [130367.4148, 475688.2102], + [130162.219, 476001.956], + [130133.897, 476114.636], + [130190.4994, 476194.9891], + [130502.7989, 476062.5829], + [130606.438, 476063.336], + [130683.091, 476114.07], + [130830.455, 476423.444], + [131476.943, 476714.114], + [131866.4995, 476604.3669], + [131965.462, 476718.332], + [131965.676, 476965.006], + [132040.71, 477144.008], + [132700.52, 477510.979], + [132868.247, 477469.635], + [132867.93, 477182.725], + [132972.255, 477019.586], + [132935.925, 476934.971], + [133034.031, 476899.34], + [132930.246, 476779.383], + [133002.6647, 476744.3766], + [133835.524, 476708.62], + [134350.319, 476865.653], + [134562.145, 477118.169], + [135541.394, 476914.605], + [135543.683, 477116.305], + [135593.702, 477191.749], + [135695.185, 477288.337], + [135719.855, 477525.172], + [135317.454, 478104.11], + [135301.451, 478222.386], + [135362.034, 478352.03], + [135605.953, 478536.234], + [135820.686, 478557.737], + [135931.597, 478849.168], + [135835.997, 478965.747], + [135542.818, 478907.714], + [135336.638, 479007.825], + [135190.765, 479202.011], + [135122.493, 479572.249], + [135172.613, 479964.906], + [135452.4761, 480298.0091], + [135047.785, 480536.614], + [134876.773, 480603.73], + [134913.769, 480687.007], + [134943.411, 480728.849], + [134846.566, 480784.17], + [133740.006, 481289.636], + [133340.023, 481586.019], + [133011.4061, 481611.1221], + [133081.148, 481441.209], + [133049.046, 481296.696], + [132862.6, 481126.235], + [132575.82, 480980.131], + [132555.196, 481020.944], + [132627.523, 481061.679], + [132468.506, 481345.807], + [132699.976, 481508.547], + [132795.331, 481589.252], + [132767.502, 481623.292], + [132795.889, 481797.763], + [132571.316, 481925.86], + [131949.023, 482170.694], + [131712.246, 482146.901], + [131630.658, 482189.686], + [131658.528, 482225.646], + [131600.904, 482280.1], + [131318.058, 482400.137], + [130579.959, 482597.636], + [130077.949, 482610.454], + [129783.501, 482536.774], + [129858.63, 481885.731], + [129824.496, 481758.331], + [129737.142, 481735.918], + [129702.588, 481905.8], + [129478.172, 482540.646], + [129591.7713, 482676.2383], + [129628.9264, 482714.4499], + [129866.767, 482968.92], + [130337.423, 483297.518], + [130483.8393, 483371.3451], + [130513.031, 483257.2429], + [130652.6078, 483246.7515], + [130660.7993, 483208.791], + [130570.4438, 483143.4141], + [130626.0984, 483030.8434], + [130799.3596, 482904.3885], + [131103.7415, 482901.35], + [131390.795, 483007.219], + [131535.081, 483179.751], + [131647.446, 483093.9148], + [132439.526, 483363.506], + [132827.9716, 483343.0485], + [133182.7594, 483243.5055], + [133284.923, 483298.846], + [133251.7445, 483215.5129], + [133226.5309, 483207.9841], + [133280.856, 482950.2585], + [133333.156, 482952.954], + [133366.7361, 482872.2381], + [133381.705, 482809.888], + [133325.2849, 482564.6353], + [133354.1989, 482550.3851], + [133418.886, 482696.2409], + [133465.7369, 482908.8719], + [133450.1331, 482915.7836], + [133418.4153, 482902.6648], + [133369.8803, 483010.6678], + [133393.2881, 483110.0121], + [133367.1769, 483287.5626], + [133883.278, 483588.512], + [134241.0983, 483548.9362], + [134988.3528, 483467.156], + [135905.0306, 482653.0978], + [136030.295, 482713.87], + [136107.294, 482611.984], + [136136.1071, 482503.6823], + [137028.1925, 482418.4823], + [137399.5314, 481947.6406], + [137700.7141, 482219.9527], + [137955.4399, 481960.6234], + [138033.3341, 482024.7984], + [138151.6588, 482121.6104], + [137941.763, 482408.1229], + [137960.9288, 482418.244], + [138102.46, 482260.804], + [138244.7056, 482280.0843], + [138395.0715, 482439.3973], + [138481.937, 482635.664], + [138184.444, 482933.46], + [137878.8008, 483326.2897], + [137754.8332, 483359.6014], + [137773.7886, 483379.3227], + [137795.3894, 483398.8281], + [137822.2229, 483445.2038], + [137875.2477, 483452.2303], + [137885.0212, 483476.3726], + [137847.8092, 483507.719], + [137790.185, 483439.942], + [137651.2699, 483364.8204], + [137666.379, 483343.1776], + [137661.0434, 483337.6258], + [137635.6969, 483342.8733], + [137614.88, 483313.7619], + [137617.4474, 483272.6602], + [137534.5115, 483339.0946], + [137538.3266, 483398.1693], + [137617.5722, 483384.5385], + [137786.5916, 483712.4338], + [137783.3525, 483748.0642], + [137591.6404, 483868.6097], + [137451.8099, 483583.1053], + [137551.8655, 483819.0322], + [137539.3115, 483980.1347], + [137633.232, 484010.891], + [137740.0509, 484038.4954], + [137720.4451, 484062.3671], + [137759.3389, 484121.2634], + [137709.3327, 484181.2708], + [137710.0927, 484261.4661], + [137742.6701, 484317.9545], + [137688.2189, 484387.9632], + [137760.651, 484479.803], + [137670.0181, 485495.4724], + [137566.271, 486427.587], + [136985.7179, 487469.3303], + [136992.84, 487921.239], + [137099.27, 488107.218], + [137403.348, 488370.488], + [139313.691, 489498.262], + [139425.1314, 489696.5644], + [139667.626, 490202.69], + [139642.789, 490241.2338], + [140194.1182, 490570.6962], + [142670.7134, 492040.9516], + [144111.2251, 492881.9403], + [144112.4225, 492850.8599], + [142825.573, 492076.4381], + [143418.278, 492082.266], + [143659.49, 492224.6701], + [143632.2861, 492295.7238], + [143768.819, 492244.645], + [143807.775, 492296.7944], + [143894.8465, 492233.3854], + [143937.0608, 492261.765], + [143931.4051, 492378.7978], + [144200.838, 492550.613], + [144426.989, 492954.401], + [144528.3422, 493101.5133], + [144297.8563, 492999.2795], + [146242.4229, 494189.6405], + [154368.7243, 499909.1904], + [154949.9333, 500283.9463], + [155515.746, 500340.0343], + [155885.0093, 500658.4648], + [157005.8702, 501706.4829], + [157033.9822, 501751.7929], + [157130.8861, 501707.4751], + [157165.6127, 501743.1939], + [157125.9928, 501814.6826], + [157206.6232, 501740.2174], + [157238.704, 501760.7226], + [157202.3099, 501882.2686], + [157515.5111, 502148.4069], + [157521.7342, 502138.7311], + [158215.777, 502613.475], + [158623.134, 503350.049], + [158543.9053, 503462.4273], + [158352.521, 503402.433], + [158376.5265, 503282.4023], + [158360.7573, 503272.2599], + [158314.7197, 503399.2602], + [158319.371, 503448.681], + [158359.1698, 503434.979], + [158398.8574, 503483.3978], + [158314.7197, 503676.2795], + [158293.793, 503821.3003], + [158276.478, 504091.038], + [158179.8225, 504300.025], + [158106.357, 504118.131], + [158036.007, 504119.9973], + [157889.599, 504137.8795], + [157871.6073, 504332.0841], + [157837.3046, 504346.3469], + [157840.265, 504410.64], + [157705.1239, 504419.21], + [157700.9588, 504342.1186], + [157651.2444, 504352.4148], + [157600.5461, 503685.1695], + [157564.8273, 503685.1695], + [157578.0702, 504367.5698], + [157409.418, 504402.499], + [157435.9823, 504595.5169], + [157548.3397, 504662.1335], + [157601.2454, 504668.6584], + [157651.347, 505319.571], + [157712.4468, 505590.5948], + [157975.6911, 506212.9553], + [158478.348, 507479.24], + [158618.8429, 507733.4904], + [158819.3361, 507988.3216], + [158996.7706, 508164.9425], + [159182.6918, 508293.6057], + [159369.376, 508412.231], + [160219.8023, 508733.7015], + [160358.7008, 508877.1543], + [160433.8425, 509075.7108], + [160396.0439, 509355.7848], + [159755.7865, 511380.8798], + [159624.925, 511779.239], + [156354.182, 517038.7616], + [156291.3955, 517013.5411], + [155796.492, 517927.668], + [153183.0633, 520748.1983], + [152661.7123, 521110.1566], + [149475.2871, 522498.7106], + [149049.127, 521757.288], + [148645.3471, 521545.0744], + [148232.3533, 521575.9335], + [147847.4813, 521889.1934], + [148311.8, 521867.239], + [148590.139, 521964.2011], + [148773.7034, 522153.7009], + [148870.59, 522493.001], + [148216.9575, 522501.3158], + [148253.7644, 522642.5265], + [148913.009, 522755.267], + [149248.9686, 522689.059], + [152731.3755, 521144.3563], + [153241.7755, 520774.836], + [155835.3458, 517988.8074], + [156760.9054, 516500.5253], + [156936.978, 516621.5823], + [156955.7923, 516533.739], + [156829.978, 516459.269], + [156932.1481, 516303.4033], + [157021.3014, 516341.0963], + [156937.965, 516239.789], + [159691.3494, 511788.4279], + [160471.5764, 509311.297], + [160515.3938, 509118.7673], + [160410.063, 508848.75], + [160232.8499, 508682.1638], + [159477.721, 508413.237], + [159151.735, 508222.5026], + [158822.2541, 507916.5926], + [158569.359, 507544.979], + [157770.89, 505606.349], + [157692.7138, 505265.8628], + [157650.209, 504486.581], + [157711.6744, 504481.2897], + [157705.776, 504426.8059], + [157840.849, 504418.232], + [157843.9192, 504468.5847], + [157886.7818, 504474.9347], + [157925.5793, 504640.2588], + [158066.8236, 504634.049], + [158085.4203, 504960.5321], + [158113.7484, 504975.825], + [158093.285, 504772.32], + [158147.7876, 504764.8955], + [158216.671, 504681.975], + [158236.34, 504441.23], + [158256.7799, 504670.8543], + [158329.549, 504822.733], + [158543.0988, 505026.196], + [158566.6665, 505003.56], + [158365.347, 504817.44], + [158485.503, 504692.588], + [158688.895, 504886.5158], + [158611.5089, 504964.3803], + [158705.383, 505055.605], + [158784.6603, 504974.0602], + [158959.45, 505138.517], + [158934.6064, 505173.0812], + [159011.1638, 505240.7648], + [158956.659, 505298.8335], + [158883.4162, 505232.3389], + [158846.8411, 505282.3132], + [158914.69, 505343.566], + [158861.6625, 505400.8869], + [158780.0568, 505323.2643], + [158798.9923, 505293.2659], + [158747.465, 505243.455], + [158720.7448, 505299.3568], + [158728.295, 505371.7028], + [158834.0493, 505476.0334], + [158882.7175, 505468.5928], + [159096.3836, 505287.1782], + [159565.6411, 506488.803], + [159573.057, 506557.947], + [159518.2165, 506575.2621], + [159662.173, 506969.018], + [159550.8683, 507065.0928], + [159562.8585, 507088.8333], + [159787.823, 506943.9368], + [159867.5794, 507086.6649], + [159948.1452, 507139.4493], + [160079.411, 507172.3339], + [162197.137, 507299.346], + [162476.907, 507421.911], + [162698.0392, 507615.6025], + [163935.2992, 508874.611], + [163847.6849, 508970.2125], + [164131.848, 509257.5505], + [164228.0211, 509172.4784], + [165436.5963, 510402.2979], + [166621.5846, 511646.4135], + [167055.599, 511912.06], + [167581.319, 512082.4179], + [171333.437, 513117.365], + [172227.765, 513697.847], + [172752.623, 514157.465], + [172800.7902, 514261.3163], + [172909.102, 514415.22], + [171428.0991, 516718.1812], + [170477.3984, 518151.8581], + [169484.2649, 518861.2046], + [169572.6598, 518909.1673], + [169313.495, 518918.27], + [169314.221, 518928.684], + [169582.4352, 518938.6076], + [169589.822, 518974.507], + [169542.4631, 519003.3989], + [169536.912, 519216.656], + [169405.833, 519208.3543], + [169409.7798, 519069.036], + [169218.6913, 519057.294], + [169170.433, 519115.2639], + [169289.3261, 519123.996], + [169282.0015, 519218.1618], + [169159.896, 519212.401], + [169159.896, 519228.994], + [169336.387, 519237.29], + [169345.2289, 519288.7803], + [169336.535, 519300.961], + [169152.087, 519266.1393], + [168938.514, 519282.8778], + [168937.793, 519259.305], + [169102.316, 519223.2451], + [169260.7313, 518799.0288], + [169252.4033, 518795.4996], + [169111.0972, 519069.5416], + [168820.082, 519299.49], + [168848.3643, 519516.2549], + [168904.3685, 519532.0036], + [168928.4064, 520289.9169], + [168940.232, 521001.5583], + [168967.6267, 523883.8452], + [169022.6777, 528982.3731], + [169037.85, 530609.849], + [169131.9796, 530992.0499], + [171616.2521, 535024.0815], + [173367.6461, 537861.9518], + [173614.9045, 538132.0149], + [174030.8353, 538316.9218], + [176740.479, 538654.39], + [176889.1351, 538769.597], + [176958.9102, 539029.5801], + [177608, 538815.27], + [178011.33, 538519.31], + [178072.52, 538556.16], + [177914.05, 538910.35], + [177747.2559, 539655.9267], + [177737.509, 539695.823], + [179156.9391, 539285.8134], + [179365.35, 539224.91] + ], + [ + [139016.0918, 482377.1194], + [138916.5116, 482279.8233], + [138738.6783, 482302.1111], + [138525.1712, 482068.7062], + [138471.6375, 481813.5527], + [138211.2271, 482042.992], + [138093.6126, 481948.5962], + [138017.4438, 481886.5369], + [138682.6078, 480763.3852], + [138918.8474, 480511.4416], + [138785.7618, 480469.2405], + [138603.9214, 480544.1563], + [138672.3539, 480685.2931], + [138629.9076, 480669.4398], + [138507.3568, 480480.8075], + [138389.388, 480351.7405], + [138570.5709, 480177.3363], + [138823.1062, 480267.0706], + [138907.8885, 480115.2505], + [138819.4355, 480076.4578], + [138791.6038, 480114.0778], + [138744.4519, 480081.8686], + [138757.1596, 480031.1926], + [138824.703, 480034.3765], + [138830.5521, 480056.8787], + [138940.8214, 480054.7118], + [138955.099, 479996.759], + [138999.7576, 480003.3908], + [138997.23, 480030.0206], + [139112.4188, 480101.2051], + [139105.4871, 480119.0405], + [138972.5829, 480074.4832], + [138910.2463, 480180.2978], + [139034.3165, 480248.6913], + [139001.0935, 480273.3835], + [138965.8661, 480364.919], + [138913.4328, 480348.4838], + [138958.0465, 480298.9852], + [138973.1589, 480255.1317], + [138953.6991, 480231.6945], + [138895.1698, 480208.1763], + [138821.1922, 480342.0309], + [138830.8731, 480416.0967], + [138988.4862, 480468.9372], + [139606.8418, 479851.8025], + [139884.3183, 479688.4788], + [140428.8493, 479582.8728], + [140972.8454, 479713.4086], + [141359.9941, 479959.1124], + [142028.0583, 480125.9722], + [144176.4394, 480377.77], + [144344.0678, 480441.8384], + [144974.0973, 480427.0211], + [145132.2111, 480379.1687], + [145216.9019, 480470.7613], + [145251.054, 480443.3199], + [145154.246, 480302.9464], + [145235.5811, 480246.0733], + [145299.4482, 480329.3361], + [145315.3676, 480319.6391], + [145327.1386, 480246.4099], + [145318.5329, 480204.856], + [145234.3149, 480122.3327], + [145151.347, 480053.2521], + [145048.69, 479768.7043], + [145109.4528, 479761.2944], + [145198.25, 480024.782], + [145249.1448, 480084.5299], + [145318.372, 480046.446], + [145322.0464, 480058.3644], + [145332.6311, 480070.491], + [145310.9369, 480083.4223], + [145329.4328, 480114.3118], + [145300.4863, 480143.2013], + [145439.6738, 480488.1617], + [145467.6425, 480461.9605], + [145391.6417, 480271.75], + [145753.5078, 480128.3635], + [145732.3656, 480246.404], + [145538.5125, 480428.3136], + [145498.7385, 480664.2444], + [145584.2841, 480884.4648], + [145641.4181, 480893.2242], + [145617.1856, 480644.6445], + [145788.2622, 480464.5983], + [145828.8149, 480250.1069], + [146076.1068, 479882.0885], + [146316.2513, 479801.6236], + [146615.98, 479873.6604], + [146647.2432, 479838.8782], + [147283.2458, 479580.9735], + [147551.5066, 479381.8815], + [147607.2905, 479384.8915], + [147764.347, 479185.1084], + [148219.7655, 478851.7294], + [148461.8941, 478739.0659], + [148964.0061, 478901.056], + [149210.2376, 479351.4609], + [149552.0441, 479420.4413], + [149666.9892, 479664.8397], + [149889.2717, 479502.5907], + [149966.9316, 479491.6639], + [150106.2932, 479606.7313], + [148974.5039, 480438.2677], + [148043.2544, 481020.1773], + [146555.2566, 481776.4909], + [144953.811, 482379.31], + [144463.8916, 482528.2451], + [143853.1507, 482704.8582], + [143838.8338, 482696.2269], + [143840.2373, 482692.6399], + [143835.7572, 482678.3852], + [143808.7412, 482686.395], + [143681.799, 482610.1146], + [143655.7705, 482612.0508], + [143685.1981, 482661.3378], + [143658.198, 482672.7399], + [143619.091, 482747.5647], + [143689.6473, 482728.385], + [143712.4136, 482806.2557], + [143666.2899, 482887.9836], + [143612.0744, 482904.1673], + [143561.9048, 482876.655], + [143540.0567, 482807.0649], + [143616.1203, 482675.1674], + [143546.5302, 482614.4784], + [143487.023, 482713.6047], + [143316.7211, 482609.6233], + [143386.3112, 482487.4361], + [143460.7564, 482530.323], + [143514.9719, 482500.383], + [143582.8375, 482519.5396], + [143354.9843, 482397.615], + [143095.1556, 482464.0708], + [143114.6709, 482627.7889], + [143161.3855, 482694.7752], + [143113.127, 482789.988], + [142941.906, 482888.749], + [142884.0683, 482805.1865], + [142818.0924, 482740.5362], + [142660.0867, 482844.7159], + [142650.1493, 482950.7614], + [142565.7138, 483080.4119], + [141912.1746, 483191.6467], + [141165.9515, 483062.7357], + [139980.904, 482678.998], + [139340.55, 482391.5321], + [139016.0918, 482377.1194] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD15", + "od_naam": "Omgevingsdienst Flevoland & Gooi en Vechtstreek", + "naam_alt": "OFGV" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6028", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [276667.4623, 585212.5065], + [276560.583, 585160.682], + [276464.4926, 584975.2598], + [276365.282, 585179.496], + [276420.771, 585209.0315], + [276471.212, 585189.02], + [276475.0828, 585423.7883], + [276539.8788, 585548.126], + [276609.4186, 585593.38], + [276667.4623, 585212.5065] + ] + ], + [ + [ + [209948.244, 597852.448], + [209918.497, 597701.934], + [209750.106, 597792.789], + [209826.1243, 597934.7315], + [209948.244, 597852.448] + ] + ], + [ + [ + [209739.7613, 598756.7645], + [209750.617, 598533.9531], + [209635.7826, 598554.3826], + [209544.827, 598721.342], + [209570.857, 598780.724], + [209662.23, 598812.401], + [209739.7613, 598756.7645] + ] + ], + [ + [ + [209575.6708, 598575.1058], + [209616.193, 597768.8281], + [208884.833, 597817.344], + [207895.7686, 598544.1673], + [207941.005, 598840.3741], + [208036.585, 598902.882], + [208282.4001, 598773.4234], + [208456.007, 598404.871], + [208506.472, 598506.0979], + [208478.245, 598863.1901], + [208571.9063, 599021.7854], + [208722.4265, 599027.7559], + [208931.8375, 598843.2089], + [209451.473, 598743.801], + [209575.6708, 598575.1058] + ] + ], + [ + [ + [208350.07, 600248.809], + [208054.159, 600018.13], + [208011.102, 600356.809], + [208186.616, 600435.198], + [208350.07, 600248.809] + ] + ], + [ + [ + [210877.5524, 600747.448], + [210596.6064, 600714.1478], + [210343.607, 600825.963], + [210385.7723, 600908.9339], + [210637.405, 601039.392], + [210936.8245, 601117.2645], + [211028.8909, 601076.2035], + [211152.0338, 600922.3048], + [210877.5524, 600747.448] + ] + ], + [ + [ + [247426.661, 609175.775], + [248391.5942, 608634.9064], + [248488.671, 608808.758], + [248741.4173, 608562.5045], + [249732.788, 609498.708], + [250759.219, 609119.4731], + [250844.6563, 609132.6033], + [250941.419, 609380.121], + [251017.7265, 609441.4619], + [251152.9716, 609438.7966], + [251145.663, 609404.651], + [251052.1954, 609405.9653], + [250972.733, 609345.582], + [250884.1654, 609120.4838], + [250915.4536, 609058.8265], + [251069.984, 608973.892], + [251155.4721, 608712.2973], + [251016.3543, 608750.883], + [251008.1201, 608725.436], + [250951.4491, 608728.419], + [250947.761, 608769.908], + [250350.8661, 608935.4625], + [250245.7549, 609072.9156], + [250049.3933, 609120.2734], + [249985.287, 608848.2549], + [251139.675, 608566.106], + [251142.9013, 608510.1881], + [250989.0623, 608132.013], + [249778.944, 608398.668], + [249714.994, 608113.6623], + [250818.525, 607845.972], + [250755.748, 607579.402], + [250182.382, 607714.8019], + [250152.4488, 607458.7578], + [250557.4624, 607384.3864], + [251116.208, 607261.314], + [251338.025, 607336.966], + [251622.021, 607271.7581], + [251634.264, 607304.743], + [251669.797, 607296.3281], + [251665.48, 607261.414], + [252053.8816, 607173.5876], + [252069.204, 607220.538], + [252557.89, 607111.264], + [252622.449, 607381.934], + [251417.1366, 607707.952], + [251673.4384, 608865.8569], + [251671.0711, 608992.7678], + [251561.1498, 609211.5706], + [251599.3657, 609217.6432], + [251709.3168, 608995.2733], + [251697.245, 608781.209], + [252434.1408, 608469.9515], + [252525.9287, 608431.1812], + [253185.216, 608066.826], + [253251.34, 608149.487], + [253243.409, 608066.525], + [253355.042, 608082.995], + [253265.43, 608003.156], + [254030.6268, 607303.3726], + [254171.6328, 607160.0493], + [254231.7185, 607238.3679], + [254288.9434, 607195.7189], + [254271.668, 607156.3094], + [254219.4554, 607115.8404], + [254298.3168, 607036.1398], + [254387.1366, 607133.9804], + [254427.203, 607098.0301], + [254358.7206, 606989.8601], + [254410.904, 606835.9071], + [254438.8833, 606509.6398], + [254285.044, 606161.051], + [253922.091, 604872.5521], + [253887.3964, 603436.4], + [254210.03, 603122.465], + [254836.207, 602111.831], + [254666.623, 601836.344], + [254658.064, 601717.371], + [254921.0841, 601591.5081], + [255020.1928, 601326.24], + [254904.794, 600748.4903], + [254935.343, 600368.4271], + [255235.8188, 599376.2584], + [255404.6244, 599190.476], + [255337.414, 598691.253], + [255375.3609, 598486.3247], + [255473.8089, 598332.7028], + [255462.6603, 598014.873], + [255533.644, 597631.533], + [255882.7621, 596740.0687], + [256312.225, 596719.98], + [256618.961, 596431.847], + [257013.4696, 596170.568], + [257766.3159, 595441.2172], + [257803.936, 595372.854], + [257917.3771, 595343.6521], + [258194.348, 595288.553], + [258737.744, 594817.5411], + [258693.026, 594547.728], + [259343.5346, 594248.9199], + [260486.007, 593974.374], + [261610.2849, 593528.7568], + [262243.7765, 593449.8495], + [262809.723, 593507.2713], + [262817.0528, 593477.27], + [262799.275, 593467.128], + [262720.9758, 593394.5438], + [262009.491, 593337.876], + [261656.088, 593401.6488], + [260495.074, 593865.992], + [259275.6069, 594117.1978], + [258867.289, 594282.3391], + [258488.2773, 594657.6344], + [258432.7471, 594641.101], + [258063.291, 595179.4621], + [257855.844, 595068.923], + [257728.0611, 594717.7994], + [257698.391, 594728.3019], + [257663.642, 594571.3964], + [257821.7265, 594515.2504], + [257912.466, 594413.834], + [258186.8869, 594431.2223], + [259126.4058, 593976.8136], + [259679.4479, 593826.1974], + [260002.761, 593638.8918], + [260362.451, 593663.041], + [260815.9864, 593445.4468], + [261104.626, 593381.945], + [262243.879, 592887.628], + [262536.842, 592644.725], + [263201.437, 593147.908], + [263097.3228, 593325.4709], + [263163.606, 593367.357], + [263353.634, 592865.735], + [263156.9383, 592336.042], + [263191.802, 592291.9852], + [264314.278, 591909.461], + [264580.072, 591930.227], + [265038.572, 592173.868], + [265126.977, 591921.416], + [265502.8519, 591813.1978], + [265688.666, 591619.012], + [267067.395, 591672.136], + [267181.4319, 591723.1114], + [267634.29, 591743.371], + [267892.2664, 592130.0104], + [268259.536, 592190.146], + [268572.759, 592305.967], + [268654.3853, 592362.2655], + [268857.999, 592637.243], + [269055.787, 592717.511], + [269163.769, 592628.194], + [269114.5912, 592468.5575], + [269065.301, 592308.556], + [268883.114, 592269.371], + [268542.5204, 591793.2834], + [268226.1653, 591475.912], + [268185.6038, 591504.774], + [268138.013, 591452.606], + [268043.6418, 590746.178], + [268249.1458, 589779.5293], + [267973.31, 589204.035], + [267812.7322, 588462.3749], + [267829.905, 587996.48], + [268262.628, 587448.137], + [268849.9891, 586969.9125], + [268882.4571, 586853.6532], + [269005.0918, 586766.3405], + [269151.0888, 586863.2645], + [269554.383, 586444.808], + [269664.186, 586499.489], + [269751.417, 586407.843], + [269863.8663, 586495.0633], + [270106.817, 586281.475], + [270321.445, 586457.956], + [270426.142, 586284.1389], + [270600.1809, 586348.8305], + [270716.734, 586206.073], + [270919.6233, 586270.2533], + [271588.428, 586257.439], + [271689.5219, 586064.702], + [271974.212, 585972.18], + [272203.505, 585776.264], + [272471.745, 585855.171], + [272677.1803, 585731.4861], + [273065.4818, 585540.5375], + [273080.842, 585710.8444], + [273246.277, 585726.797], + [273292.024, 585846.884], + [273545.47, 585772.99], + [273777.0409, 585612.4931], + [273860.556, 585489.351], + [274037.856, 585485.58], + [274221.592, 585246.909], + [274265.0014, 585360.4318], + [274392.4402, 585281.964], + [274459.8964, 585317.9399], + [274514.5275, 585336.0113], + [274902.986, 585111.4393], + [274925.1108, 585195.1289], + [275104.5633, 585072.6679], + [275187.3875, 585117.8723], + [275348.1083, 585019.145], + [275662.953, 585007.567], + [276412.7794, 584835.4942], + [276511.305, 584400.796], + [276553.7808, 584406.9105], + [276582.029, 584322.147], + [276641.2268, 584340.3405], + [276652.4498, 584385.5153], + [276468.724, 584893.629], + [276562.6818, 585124.689], + [276589.0204, 585166.6705], + [276677.0203, 585187.045], + [276888.78, 583943.3], + [276753.8, 583963.09], + [277228.57, 582457.56], + [277316.4, 580572.73], + [277251.25, 580318.42], + [276919.15, 579971.6], + [276711.9686, 579536.8751], + [277396.3274, 579063.5134], + [278026.09, 578638.12], + [277132.67, 578273.09], + [276599.391, 578180.8737], + [276442.78, 578184.4], + [276259.2082, 577814.0874], + [275631.2, 576524.68], + [275656.17, 576272.81], + [275538.32, 576019.48], + [275539.811, 575747.875], + [275582.956, 574978.379], + [275342.193, 574605.691], + [275171.308, 574098.324], + [274985.841, 573858.055], + [274897.302, 573912.966], + [274991.9113, 573110.8724], + [275065.027, 572707.318], + [275248.34, 572398.96], + [275399.48, 572331.24], + [275221.031, 572043.366], + [276562.27, 571156.33], + [276412.58, 567587.25], + [276518.0632, 566843.1568], + [276821.544, 564723.879], + [277529.394, 559786.1283], + [277843.61, 559346.14], + [277756.65, 559219.79], + [277783.26, 559190.17], + [277332.95, 558606.18], + [276778.52, 556474.4249], + [275613.54, 552003.44], + [273598.3976, 548451.8051], + [270634.14, 543237.8175], + [269518.71, 541648.06], + [269559.776, 541515.4543], + [269918.65, 540356.08], + [268546.079, 540359.222], + [268494.3949, 540443.0928], + [268516.179, 541104.015], + [268784.777, 541503.889], + [268776.036, 541646.5441], + [268366.35, 541387.99], + [268303.53, 541394.35], + [268076.81, 541809.66], + [267967.42, 541740.47], + [267930.437, 541822.685], + [267862.356, 541785.362], + [267134.45, 542884.71], + [267078.72, 542848.52], + [266829.3881, 543212.8151], + [266728.179, 543360.69], + [266531.4, 543285.26], + [266296.5783, 544125.8383], + [264834.7445, 544110.032], + [264580.41, 544105.58], + [264692.9011, 544381.9065], + [266157.9889, 547983.7328], + [266157.9907, 547983.7372], + [266160.5819, 547990.1079], + [266539.4832, 548928.8636], + [265275.541, 549247.459], + [265126.592, 549336.802], + [264510.771, 549873.4001], + [264084.788, 550451.276], + [263622.815, 551077.828], + [263076.6149, 551819.57], + [262581.3675, 552491.5263], + [262452.5606, 552666.2992], + [262025.5277, 553245.1919], + [261935.6219, 553367.0601], + [261367.3865, 554138.647], + [261366.7139, 554139.5603], + [261313.623, 554211.664], + [260877.6921, 554802.5274], + [260422.605, 555421.8001], + [260417.728, 555428.4371], + [259847.326, 556204.621], + [259467.747, 556721.148], + [259155.2808, 557146.3436], + [259030.6523, 557315.9356], + [258967.082, 557380.577], + [258898.084, 557450.734], + [258039.3721, 558323.8578], + [257010.9529, 559369.5386], + [257007.252, 559373.303], + [256835.0214, 559548.4216], + [256318.373, 560073.7416], + [253864.356, 562563.468], + [252630.4988, 563815.185], + [252212.6596, 564239.1295], + [250663.5922, 565807.7439], + [250623.177, 565848.522], + [248973.6829, 567523.2575], + [248063.379, 568446.544], + [245891.8532, 570685.6491], + [245810.1049, 570760.7404], + [245790.261, 570830.702], + [245733.288, 570807.634], + [245395.75, 571145.367], + [244444.3225, 571193.3841], + [244318.6, 571199.7291], + [244214.7235, 571207.6244], + [244140.5552, 571209.5215], + [242575.08, 571284.16], + [242525.1419, 571270.0986], + [241470.323, 570922.754], + [241214.087, 570853.225], + [239801.0958, 570171.4671], + [239685.577, 570117.656], + [239127.5049, 569829.9366], + [238551.9777, 569546.0928], + [238699.031, 569820.968], + [238601.408, 570347.718], + [238471.345, 570435.274], + [238200.487, 570484.049], + [238080.203, 570614.574], + [238068.998, 570759.582], + [238241.365, 571008.118], + [238112.142, 571017.884], + [238017.8589, 571388.0478], + [237711.699, 571665.483], + [237638.156, 571773.052], + [237604.767, 571990.464], + [237445.0359, 572162.5933], + [237441.702, 572351.846], + [237277.866, 572503.962], + [237082.509, 572469.653], + [237127.89, 572789.063], + [236870.6291, 573050.3522], + [236773.276, 573099.892], + [236705.3538, 573153.3888], + [236593.534, 573198.164], + [236178.369, 573747.133], + [235328.271, 573909.092], + [235295.8128, 574219.2583], + [235101.853, 574841.796], + [235261.959, 575058.256], + [235014.636, 575310.318], + [234849.497, 575762.355], + [234874.4266, 575864.8897], + [233764.0218, 575229.8551], + [233694.105, 575189.612], + [233658.1178, 575305.7377], + [233626.5774, 575497.6986], + [233471.3695, 576130.8224], + [233380.762, 576487.087], + [233138.9164, 576923.4965], + [232641.7974, 577736.1121], + [232628.404, 577759.917], + [232615.37, 577783.294], + [232487.5105, 577690.0703], + [232253.403, 577507.523], + [232189.004, 577499.584], + [232130.1803, 577640.142], + [232036.607, 577797.57], + [231895.0151, 577943.9628], + [231703.291, 578068.353], + [231676.1937, 578098.3778], + [231405.3904, 579072.7893], + [231343.127, 579332.083], + [231406.842, 579373.649], + [231153.5242, 579402.2081], + [230414.56, 579663.97], + [230261.301, 579508.955], + [230257.9006, 579512.9674], + [230016.7449, 579710.2048], + [230019.104, 579735.878], + [229963.8542, 579747.3716], + [229818.63, 579859.128], + [229126.0069, 579624.9522], + [228989.5815, 579630.0322], + [228930.078, 579661.963], + [228890.888, 579752.601], + [228874.18, 579910.359], + [228400.62, 580246.48], + [228120.117, 580212.4], + [226919.886, 579805.279], + [226022.4217, 579417.7985], + [225873.429, 579387.095], + [225745.297, 578781.372], + [225563.824, 578414.18], + [225243.116, 578176.989], + [224345.068, 577721.706], + [223246.462, 577313.158], + [223090.18, 577124.6736], + [223082.2085, 577103.2057], + [222997.256, 576731.591], + [223005.29, 576243.907], + [222910.743, 576068.194], + [222640.3969, 575825.8083], + [222575.3934, 575786.0089], + [222408.358, 575674.148], + [222149.521, 575213.087], + [221991.1989, 575054.6179], + [221512.7959, 574538.3702], + [221519.405, 574510.6183], + [221523.74, 574110.752], + [221595.085, 574109.268], + [221521.6542, 573904.28], + [220528.0351, 571088.1864], + [220501.5019, 570946.6371], + [220485.8954, 570750.2572], + [220383.8273, 569416.9494], + [219919.845, 569357.738], + [219133.8258, 567128.6148], + [218901.9474, 567213.9135], + [218686.246, 567293.8986], + [217161.923, 567871.029], + [215901.08, 568343.617], + [215682.0365, 568426.1877], + [215506.56, 568492.882], + [214993.478, 569269.351], + [214390.823, 569740.255], + [213552.662, 570078.542], + [213145.0475, 570063.265], + [213063.8956, 570054.695], + [212855.4727, 570030.5406], + [212059.3717, 569960.0563], + [211160.829, 570050.941], + [210935.399, 570116.659], + [210282.4405, 570144.5699], + [209840.9982, 570163.1213], + [209836.58, 570163.436], + [209796.6804, 570165.063], + [209578.3269, 570357.8158], + [208938.6526, 571033.5316], + [208447.812, 571679.909], + [207997.04, 572206.77], + [207768.729, 572324.95], + [207789.0611, 574296.1021], + [207810.735, 575044.164], + [207840.846, 575876.798], + [208096.65, 576254.18], + [208212.0712, 576660.1403], + [208391.5894, 577201.6959], + [208537.0334, 577610.0309], + [208867.056, 578369.536], + [209009.952, 578618.304], + [209126.96, 578677.2], + [209309.51, 579047.3], + [209291.724, 579384.625], + [209590.21, 579544.17], + [209955.05, 579570.86], + [210592.91, 580264.77], + [210959.28, 580922.79], + [210949.97, 581209.25], + [211226.564, 581460.3283], + [211295.67, 581573.88], + [211302, 582088.38], + [210975.25, 582420.13], + [210922.0332, 582933.5404], + [210722.88, 583108.63], + [210246.402, 583330.518], + [210258.7477, 583546.3405], + [210306.216, 583695.653], + [210619.317, 583739.623], + [210933.705, 583881.848], + [210908.494, 584004.887], + [210789.088, 583980.876], + [210494.258, 584221.6155], + [210462.487, 584248.053], + [210559.77, 584353.2], + [210935.25, 584549.4], + [211110.09, 584623.7], + [211241.82, 584570.95], + [211333.99, 584611.37], + [211396.7974, 584836.8565], + [211229.35, 585033.96], + [211275.23, 585202.92], + [211498.6415, 585202.4893], + [211590.58, 585532.56], + [211423.79, 585665.17], + [211363.51, 585818.36], + [211390.758, 585907.808], + [211575.79, 585905.14], + [211750.82, 586001.06], + [211826.68, 586239.46], + [211771.49, 586450.47], + [211865.67, 586625.27], + [212011.922, 586716.985], + [212134.098, 586886.2954], + [212142.15, 586997.66], + [212355.76, 587204.59], + [212564.96, 587087.35], + [212797.59, 587146.31], + [212894.5476, 587236.5104], + [212946.14, 587494.457], + [212755.931, 587785.044], + [212647.058, 588205.25], + [212739.6332, 589008.2176], + [212822.3872, 589474.8594], + [213195.052, 589750.149], + [213698.995, 589731.703], + [213820.562, 589669.037], + [213917.29, 589868.53], + [213884.5662, 589990.5168], + [214152.6, 590364.34], + [214156.4908, 590660.3091], + [214406.175, 591062.257], + [214483.4501, 591129.2672], + [215198.6438, 591366.7283], + [215445.5083, 591702.7323], + [215416.02, 591729.814], + [215360.9155, 591871.2488], + [214956.985, 592101.95], + [214774.967, 592075.392], + [214538.979, 592160.312], + [214925.7966, 595331.182], + [215030.9364, 595280.2894], + [215169.1879, 595155.4796], + [215329.772, 594657.263], + [215379.203, 594679.155], + [215281.872, 594968.8273], + [215285.0751, 595051.4221], + [215287.0086, 595049.6809], + [215448.4045, 595018.9844], + [215557.669, 594920.958], + [215601.2332, 594905.1343], + [215626.4145, 594935.1435], + [215513.7816, 595102.1667], + [215744.9323, 595168.8385], + [215740.5813, 595210.1883], + [215457.6495, 595139.003], + [215341.083, 595146.3129], + [215338.2739, 595166.7767], + [215626.67, 595257.697], + [215593.4695, 595356.392], + [215284.7918, 595244.281], + [215291.306, 595192.692], + [215209.7771, 595286.4696], + [214961.6019, 595429.4844], + [214664.9025, 595493.856], + [214072.93, 595836.317], + [213726.8741, 595936.7154], + [213498.4125, 595958.895], + [213028.505, 596173.676], + [212446.621, 596221.927], + [211786.5558, 595658.1183], + [211455.048, 595593.693], + [211335.3053, 595636.3358], + [211269.9423, 595748.993], + [211343.555, 596050.492], + [211274.1361, 596525.254], + [212198.923, 596775.583], + [212570.06, 597210.705], + [212874.581, 597110.862], + [212937.286, 597298.761], + [212332.401, 597595.221], + [212123.805, 597372.547], + [211843.074, 597250.37], + [211654.857, 597260.151], + [211371.2915, 597425.399], + [211408.056, 597558.726], + [211655.9761, 597829.6827], + [211892.674, 597957.69], + [211748.7718, 598054.1899], + [211611.475, 598430.836], + [211481.276, 598327.806], + [211260.294, 598165.2895], + [210646.804, 598033.317], + [210279.422, 597846.703], + [210000.811, 598083.0329], + [209749.498, 598181.275], + [209760.5355, 598384.2284], + [209993.687, 598710.326], + [210651.436, 598724.834], + [211226.665, 598795.265], + [211340.719, 598870.877], + [210823.414, 598995.502], + [210567.4783, 598942.8383], + [210352.4996, 598981.7836], + [209584.348, 599202.5211], + [209467.0024, 599138.0712], + [209154.586, 599117.969], + [208516.8483, 599371.281], + [208143.614, 599367.116], + [208056.099, 599425.0818], + [207986.2473, 599725.507], + [208089.34, 599902.553], + [208557.8905, 599857.278], + [209056.7, 599908.73], + [209142.616, 599963.7747], + [209193.981, 600222.961], + [208862.6933, 600742.6935], + [208668.8851, 600805.6455], + [208562.453, 600744.017], + [208507.488, 600795.452], + [208641.591, 600928.039], + [208509.5725, 601015.6905], + [207785.115, 601141.763], + [207703.123, 601203.7253], + [207717.8041, 601356.96], + [207832.377, 601509.83], + [207826.472, 601812.1468], + [207899.269, 602010.161], + [208049.992, 602179.018], + [208959.584, 602142.441], + [209223.1105, 601760.2643], + [209771.995, 601360.757], + [210186.5521, 600725.1618], + [210515.946, 600525.178], + [210677.2276, 600478.9342], + [210805.117, 600597.098], + [211306.931, 600623.067], + [211497.9631, 600905.0362], + [211319.8115, 601016.1628], + [211280.943, 601151.811], + [211248.628, 601344.896], + [211039.888, 601414.044], + [210658.169, 601454.257], + [210553.39, 601550.433], + [210467.311, 601444.883], + [210330.7923, 601524.0035], + [210272.0798, 601653.4629], + [209947.028, 601821.176], + [209975.3464, 601871.9659], + [209919.7402, 601929.4776], + [209838.4564, 601940.9934], + [209829.463, 601894.303], + [209789.4555, 601990.144], + [209802.4615, 602026.9355], + [209722.584, 602071.104], + [209698.05, 602067.234], + [209671.6089, 602027.1494], + [209685.4343, 601982.024], + [209676.8053, 601979.6793], + [209655.8307, 602036.9895], + [209699.4267, 602119.8738], + [209686.6008, 602146.8853], + [209730.165, 602260.9973], + [209767.289, 602314.346], + [209701.7016, 602405.6669], + [209592.8154, 602369.9373], + [209597.991, 602340.341], + [209585.066, 602323.6773], + [209456.2485, 602303.9554], + [209365.697, 602313.259], + [209323.1438, 602280.217], + [209219.6517, 602328.8204], + [209215.074, 602404.301], + [209532.7645, 602424.3269], + [209517.079, 602562.679], + [209183.779, 602536.5245], + [209135.16, 602474.551], + [209144.516, 602467.992], + [209111.677, 602422.335], + [209104.5148, 602426.5955], + [209100.0193, 602417.1663], + [209108.1168, 602397.2683], + [209102.737, 602394.6145], + [209036.556, 602439.3899], + [209031.123, 602462.332], + [209019.1563, 602464.3129], + [208925.4768, 602525.9528], + [208918.4083, 602525.9527], + [208894.0717, 602540.5847], + [208894.4902, 602545.7513], + [208848.8188, 602576.2524], + [208833.802, 602574.305], + [208806.816, 602597.686], + [208806.1444, 602608.0467], + [208782.3078, 602624.4289], + [208809.498, 602696.994], + [208770.584, 602718.93], + [208707.747, 602675.6725], + [208566.6464, 602766.8132], + [208541.6941, 602795.8083], + [208528.8752, 602849.4467], + [208538.3291, 602896.8288], + [208516.844, 602924.8752], + [208532.309, 602955.1031], + [208492.298, 602982.2541], + [208477.9838, 602965.4595], + [208463.407, 602974.1461], + [208474.009, 602994.459], + [208452.5723, 603008.775], + [208482.5166, 603053.1065], + [208616.817, 602970.948], + [208729.981, 603034.378], + [208850.1118, 603127.3855], + [209045.1522, 603120.3479], + [208994.224, 603059.944], + [208894.609, 603060.6673], + [208866.2725, 603015.8285], + [208836.803, 602814.154], + [208889.0233, 602778.7333], + [208943.6105, 602841.8623], + [208986.5095, 602808.8913], + [208992.69, 602701.537], + [209256.685, 602712.452], + [209867.724, 602903.155], + [209801.854, 603079.006], + [209212.031, 602873.981], + [209061.783, 602866.97], + [209053.0779, 602883.4803], + [209125.3424, 602888.8069], + [209170.047, 602949.361], + [209124.674, 603055.451], + [209132.1097, 603065.2447], + [209211.988, 602936.803], + [209781.456, 603110.259], + [209917.014, 603126.2243], + [209958.972, 603056.464], + [210031.2775, 602862.325], + [211990.468, 603541.139], + [212324.4, 603590.309], + [212705.648, 603555.861], + [213079.443, 603421.582], + [215599.386, 601902.812], + [215877.4431, 601500.5954], + [216127.0895, 601101.4429], + [216336.8854, 601132.7856], + [216440.113, 601266.826], + [217144.11, 601756.258], + [218027.3957, 602224.5916], + [218260.467, 602519.492], + [218396.0648, 602832.6366], + [218948.3814, 603069.0998], + [219094.6319, 603258.9183], + [219347.206, 603237.687], + [219549.308, 603317.675], + [220196.2276, 603718.3823], + [222095.998, 604208.8022], + [222635.5813, 604207.5883], + [223043.4553, 604314.4124], + [223353.0026, 604494.6782], + [223627.3464, 604400.6001], + [223891.1266, 604483.1605], + [226839.5098, 604841.4256], + [227996.614, 605191.687], + [228403.094, 605258.214], + [229094.138, 605255.313], + [230391.343, 605456.567], + [230427.781, 605406.776], + [231467.35, 605539.2813], + [231432.266, 605243.831], + [232082.7543, 605359.6725], + [233371.53, 605740.622], + [233453.3813, 605695.498], + [233487.8367, 605786.8229], + [234241.107, 605932.0795], + [234429.4442, 606061.7729], + [235556.659, 606458.017], + [236289.577, 606853.299], + [236614.516, 607235.011], + [237111.1278, 607467.1411], + [237818.515, 607937.304], + [238071.7927, 608006.1719], + [238220.3127, 608124.5698], + [238674.3386, 608253.9513], + [239170.619, 608490.8], + [240025.937, 608750.822], + [240229.2824, 608714.4445], + [240497.5928, 608777.1578], + [241914.327, 609211.383], + [244409.2356, 609615.7133], + [245239.669, 609719.828], + [245943.424, 609646.045], + [247426.661, 609175.775] + ] + ], + [ + [ + [244190.313, 609584.39], + [244184.694, 609584.39], + [244168.64, 609747.736], + [244190.313, 609584.39] + ] + ], + [ + [ + [223735.5252, 614849.5535], + [223608.5724, 614668.1923], + [223262.1726, 614976.5063], + [223124.3381, 615818.022], + [223244.0364, 615972.179], + [223686.5576, 615968.5518], + [223742.7796, 615903.2618], + [223572.3001, 615837.9718], + [223653.9126, 615711.0189], + [223726.4571, 615709.2053], + [223802.6288, 615596.7614], + [223871.546, 615252.1752], + [223735.5252, 614849.5535] + ] + ], + [ + [ + [235084.1955, 615805.9707], + [235157.689, 615603.02], + [235385.2641, 615612.7979], + [235330.2253, 615535.1116], + [235158.7889, 615503.2471], + [234950.2211, 615554.5991], + [234500.717, 615924.346], + [234571.007, 616143.171], + [234685.2979, 616222.4373], + [235070.6753, 616128.5218], + [235284.5156, 615896.503], + [235084.1955, 615805.9707] + ] + ], + [ + [ + [233850.5042, 617984.3542], + [234116.5433, 617931.2611], + [234848.803, 617970.1264], + [235886.3574, 617785.262], + [236297.538, 617618.4821], + [236774.5234, 617286.6444], + [236694.9315, 617214.7753], + [236290.8625, 617488.9284], + [235945.7331, 617564.9855], + [235777.7625, 617514.836], + [235514.1534, 617448.3428], + [235329.913, 617368.492], + [234129.4093, 617393.3638], + [233698.0893, 617636.8421], + [233409.5184, 617973.7322], + [233564.3046, 618055.0511], + [233850.5042, 617984.3542] + ] + ], + [ + [ + [229084.9631, 618933.9918], + [229415.6929, 618378.3657], + [229637.9434, 617738.0728], + [229574.4433, 617617.6871], + [230002.0746, 617355.0852], + [230733.2566, 617138.1746], + [230897.3642, 617021.4716], + [230927.7913, 616924.8985], + [230743.9056, 616906.3776], + [229865.4871, 617062.4821], + [229168.3087, 617410.4099], + [228670.2296, 617884.5663], + [228524.9266, 618243.3028], + [228560.9982, 618423.2705], + [228088.9965, 618775.4771], + [227889.7142, 618841.1497], + [227655.5504, 618569.9708], + [227601.5753, 618343.4869], + [227892.4853, 618132.7459], + [228092.9115, 618171.3585], + [229101.025, 617332.7501], + [229413.3148, 617142.811], + [229416.1973, 617010.8045], + [229265.9136, 616863.6959], + [228976.574, 617149.098], + [228497.4838, 616883.082], + [227997.9704, 616868.9758], + [227526.414, 617024.2325], + [227506.4723, 617139.8652], + [227008.7251, 617174.8765], + [227002.188, 617026.1576], + [227135.5964, 616669.7137], + [227315.1946, 616502.0888], + [227877.9354, 616223.7117], + [228040.3184, 615809.7348], + [228038.9096, 615664.6218], + [227841.6686, 615203.9231], + [227528.3761, 614792.2228], + [227418.8661, 614759.5218], + [227264.4875, 615088.0517], + [227162.1829, 615578.8539], + [226806.4559, 616626.175], + [226195.7191, 617530.9702], + [226164.4116, 617704.8373], + [226250.706, 617971.9706], + [226706.3542, 618523.8868], + [227498.7828, 619013.367], + [227918.1483, 619172.1173], + [228435.4097, 619231.6487], + [228763.4937, 619190.6382], + [229084.9631, 618933.9918] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD01", + "od_naam": "Omgevingsdienst Groningen", + "naam_alt": "ODG" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6027", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [87744.332, 464927.8301], + [87810.3136, 464839.6549], + [88101.942, 465027.255], + [88248.862, 464372.893], + [88358.697, 464406.099], + [88464.1531, 464256.0021], + [88669.473, 464144.525], + [88806.588, 464239.147], + [89226.364, 463887.005], + [89606.542, 463785.992], + [90213.604, 463476.022], + [90126.987, 463371.943], + [90099.753, 463211.734], + [90265.8145, 462790.5151], + [90436.547, 462403.598], + [90370.465, 462327.07], + [89286.517, 460994.599], + [88649.926, 460023.039], + [88298.6956, 459777.6925], + [88320.013, 459712.511], + [87456.846, 458640.875], + [88196.876, 458197.05], + [88149.957, 458121.499], + [88265.179, 458047.238], + [88340.713, 458143.613], + [88820.4256, 457856.2356], + [88792.5832, 457816.4558], + [88988.8605, 457698.9461], + [89273.387, 457459.3271], + [89666.205, 457753.222], + [89819.306, 458112.128], + [90045.579, 458390.431], + [90332.1694, 458570.3469], + [90560.739, 458767.373], + [90884.0023, 459223.3077], + [91225.3139, 459626.7461], + [91727.7166, 460193.2141], + [91816.786, 460301.719], + [91863.706, 460223.476], + [91948.831, 460302.515], + [91919.581, 460364.854], + [91980.242, 460485.325], + [92022.86, 460411.714], + [92068.938, 460436.457], + [92390.269, 459892.996], + [92347.449, 459866.321], + [92339.887, 459440.92], + [92385.937, 459364.337], + [92236.971, 459227.849], + [93164.0161, 457645.0893], + [93551.22, 457002.741], + [93664.149, 456128.029], + [94044.066, 455881.659], + [94151.955, 455949.581], + [94121.764, 456057.65], + [94197.368, 456304.572], + [94506.762, 456482.741], + [94891.413, 456115.088], + [95095.401, 455936.498], + [95173.237, 455951.36], + [96278.886, 455039.532], + [96247.364, 454992.211], + [96648.734, 454634.3026], + [96520.9267, 454486.2313], + [96501.524, 454447.676], + [96587.1844, 454363.0009], + [96484.347, 454207.09], + [97810.443, 453165.823], + [97779.732, 453107.902], + [98079.403, 452874.321], + [97533.6146, 452157.9135], + [97404.799, 451672.626], + [97233.62, 451506.744], + [96497.181, 451576.172], + [95684.0478, 450917.2393], + [95434.4977, 450695.9776], + [94953.421, 450194.4936], + [94604.123, 449753.658], + [94441.5878, 449656.0914], + [93801.309, 449661.2291], + [92566.379, 449663.743], + [92586.174, 449619.349], + [92541.2, 449607.2], + [92519.624, 449647.702], + [91922.377, 449081.958], + [91913.456, 449003.824], + [91856.764, 448956.334], + [91671.4319, 448878.3125], + [91600.895, 448833.738], + [91571.411, 448833.223], + [91451.749, 448798.464], + [91400.317, 448723.42], + [91220.0948, 448630.6805], + [91178.3492, 448620.8114], + [91167.573, 448610.746], + [91224.962, 448204.86], + [91313.955, 448038.793], + [91240.756, 447925.962], + [91453.491, 447548.088], + [91092.6103, 447092.2039], + [91018.248, 446860.827], + [91132.277, 446694.564], + [91257.25, 446662.007], + [91244.121, 446388.861], + [90775.3892, 446242.2794], + [90626.97, 446206.912], + [90734.2267, 445942.4263], + [90830.8413, 445839.7519], + [90690.7489, 445691.7399], + [90674.5563, 445671.5831], + [90441.729, 445308.721], + [88856.855, 443905.441], + [89089.389, 443552.47], + [87703.775, 442650.991], + [87358.905, 442446.208], + [86738.5457, 442044.6397], + [86709.206, 442027.252], + [86588.398, 442301.453], + [86463.9, 442267.628], + [86453.156, 442326.158], + [85730.998, 442144.763], + [84643.156, 441878.19], + [84877.154, 441245.734], + [83744.006, 440848.577], + [82767.116, 440405.334], + [82695.904, 440361.517], + [82758.972, 440298.347], + [81885.8229, 439777.5605], + [81821.029, 439896.257], + [81257, 439249.37], + [81178.55, 439041.67], + [79874.2743, 437719.7389], + [79726.1113, 437565.0096], + [79702.147, 437539.612], + [78336.182, 437816.822], + [78197.6977, 437818.0755], + [77887.4619, 438019.69], + [77760.09, 438040.14], + [77566.1686, 438189.1899], + [77505.3139, 438248.6702], + [77429.4839, 438327.42], + [77003.897, 438860.2621], + [76241.3663, 439880.7064], + [76143, 440002], + [75912.742, 440123.319], + [75565.79, 440020.324], + [75555.237, 440016.902], + [75325.2638, 440584.5731], + [74845.694, 440000.0002], + [74711.095, 439860.96], + [74594.287, 439889.21], + [72870.096, 441382.684], + [72494.686, 442264.617], + [72680.319, 442493.225], + [72807.104, 442567.582], + [72767.728, 442627.961], + [72581.736, 442565.392], + [72490.677, 442620.009], + [72553.888, 442724.526], + [71767.445, 443280.171], + [71339.328, 443540.987], + [70347.452, 443987.772], + [70367.3151, 444183.4945], + [69819.596, 444392.373], + [70009.758, 444769.394], + [69940.7423, 444802.1262], + [70083.984, 445080.593], + [69243.8148, 445543.2807], + [69036.628, 445664.324], + [68821.9, 445974.837], + [68730.714, 446167.734], + [68838.3959, 446317.5965], + [68348.9968, 446670.7977], + [69195.5601, 447574.2719], + [70271.7871, 448927.9877], + [70822.7508, 449653.9011], + [71354.0353, 450219.5814], + [71868.3863, 451051.4331], + [72730.4695, 452695.6363], + [72833.6788, 452584.5973], + [72711.2513, 452213.7557], + [72852.8971, 452142.5769], + [73003.0844, 452217.3146], + [73325.1809, 452598.0701], + [73937.6621, 453139.0803], + [73752.3512, 453244.0311], + [74389.2695, 453734.7149], + [75357.2941, 454647.4272], + [75748.5171, 455105.5166], + [76623.8265, 456172.225], + [77437.6066, 457250.9861], + [77498.0229, 457441.2958], + [77346.8048, 457602.8048], + [77257.9978, 457908.3269], + [77373.7822, 457625.5873], + [77624.7629, 457342.4677], + [77758.969, 457350.454], + [77802.5753, 457312.1384], + [77813.353, 457269.0539], + [77697.0045, 457221.853], + [77720.9123, 457129.565], + [77833.9345, 457158.9144], + [78019.2825, 457111.5658], + [78082.0728, 457177.402], + [78009.9579, 457264.3498], + [78050.9725, 457304.3135], + [78236.5649, 457158.8256], + [77976.392, 456883.294], + [78044.9105, 456817.224], + [78570.1665, 457400.258], + [78505.9683, 457455.5985], + [78256.2985, 457173.7746], + [78138.186, 457278.5924], + [78136.1914, 457315.5229], + [78367.7793, 457574.9166], + [78265.0975, 457665.2015], + [77982.9731, 457353.6289], + [77850.8973, 457372.116], + [77812.0453, 457412.6303], + [77839.496, 457525.852], + [77688.4379, 457624.3573], + [77619.3804, 457846.8734], + [77494.4519, 457895.2615], + [77512.8379, 457930.9058], + [77649.497, 457869.256], + [77698.704, 457715.6198], + [77871.821, 457786.9842], + [78135.1953, 458064.9904], + [78406.4435, 458331.742], + [79170.4021, 459155.7611], + [79278.9236, 459243.3942], + [79161.6008, 459352.7024], + [79158.7184, 459301.6199], + [79121.7853, 459298.576], + [79108.3879, 459311.8175], + [79107.8849, 459358.1821], + [79157.6751, 459368.2071], + [79144.1075, 459427.8417], + [79169.7719, 459433.3302], + [79179.725, 459420.8373], + [79169.5825, 459368.221], + [79197.4643, 459342.5784], + [79229.1347, 459348.0907], + [79223.0895, 459385.1419], + [79239.178, 459387.0605], + [79248.413, 459346.8731], + [79204.386, 459335.6028], + [79291.8504, 459254.0785], + [79626.8438, 459573.3713], + [80736.165, 460589.4861], + [82754.79, 462947.7211], + [84044.93, 464673.7254], + [84552.119, 465351.6259], + [85742.7102, 467010.4591], + [86944.948, 465681.121], + [87136.628, 465626.061], + [87472.9795, 465262.6965], + [87684.1664, 464990.0881], + [87744.332, 464927.8301] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD19", + "od_naam": "Omgevingsdienst Haaglanden", + "naam_alt": "ODH" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6026", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [100000, 497691.9698], + [99714.7463, 497668.4609], + [99730.527, 497839.168], + [100007.231, 497900.685], + [100060.5441, 497717.0624], + [100000, 497691.9698] + ] + ], + [ + [ + [109664.6752, 507320.1803], + [109725.77, 506455.194], + [109994.5398, 506765.9265], + [110783, 506442], + [111797.8746, 505773.4384], + [112124.08, 505530.23], + [112410.67, 505710.59], + [112611.06, 505723.52], + [112987.65, 505400.25], + [113440.59, 505386.9], + [113645.9396, 505295.6698], + [113651.702, 505075.907], + [113954.594, 503717.011], + [113485.3978, 503703.2184], + [112918.1159, 503744.8021], + [112905.307, 503646.378], + [112674.834, 503741.913], + [112511.387, 503614.983], + [111916.734, 503918.252], + [111732.391, 503791.012], + [111621.769, 503455.977], + [111641.205, 503225.139], + [111894.9938, 502788.6629], + [111929.416, 502734.096], + [111785.028, 502479.328], + [111630.731, 502410.661], + [111477.2034, 502221.4062], + [111036.0442, 501743.9986], + [110476.489, 501160.229], + [109782.3765, 501033.8614], + [109713.817, 501013.911], + [109323.438, 500821.805], + [108897.584, 500317.328], + [108862.85, 500062.476], + [108720.773, 499853.578], + [108736.235, 499674.988], + [108688.565, 499566.029], + [108364.658, 499388.885], + [108225.916, 499045.273], + [108260.11, 498755.162], + [108121.649, 498475.759], + [108157.2, 498366.809], + [107856.23, 497958.74], + [107228.247, 497539.763], + [107281.781, 497431.949], + [107245.2462, 497391.5729], + [107139.5857, 497274.8008], + [106579.438, 496655.843], + [107655.3939, 495683.5878], + [109014.315, 494482.023], + [109760.585, 494157.082], + [108984.35, 493536.315], + [108293.904, 493300.256], + [107671.106, 492560.7891], + [107052.819, 492014.267], + [106959.61, 491844.744], + [106574.0589, 491548.9912], + [106332.677, 491531.544], + [106493.88, 491198.612], + [106112.779, 490945.724], + [106099.411, 490638.366], + [106779.296, 490417.81], + [106770.394, 490310.773], + [106568.927, 490171.94], + [106417.577, 489819.362], + [106487.882, 489467.486], + [106702.708, 489334.78], + [106939.792, 489393.5631], + [106956.3869, 489352.1427], + [107033.226, 489162.256], + [107326.835, 489073.465], + [107258.446, 488692.9261], + [107259.606, 488637.2611], + [106872.237, 488235.384], + [106666.268, 487927.606], + [106345.21, 487612.148], + [106249.9092, 487185.3179], + [106249.9513, 487184.6365], + [106296.15, 486937.5666], + [106501.3616, 485968.6944], + [106581.054, 485602.0502], + [106520.658, 485235.289], + [106234.8611, 484934.0514], + [105502.9451, 484428.4738], + [105394.3442, 484355.0711], + [105200.7594, 484220.2347], + [104874.4463, 483992.1652], + [104598.179, 483829.082], + [104052.992, 483705.297], + [103433.709, 483559.084], + [102715.463, 483142.4999], + [102471.046, 482894.8167], + [102255.9017, 482517.7891], + [102129.692, 482224.866], + [102107.1244, 481873.0535], + [102106.911, 481867.34], + [102107.1622, 481847.1927], + [102108.4868, 481740.9722], + [102110.7469, 481559.7307], + [102112.2811, 481436.697], + [102116.54, 480905.328], + [101519.9095, 481166.1814], + [101423.305, 481242.3039], + [101287.6789, 481308.2308], + [101287.5565, 481308.2899], + [101091.7113, 481377.7508], + [100990.4134, 481375.5344], + [100870.0997, 481388.1544], + [100869.5445, 481388.165], + [100714.1382, 481391.1244], + [100486.03, 481403.85], + [100505.6289, 481298.8631], + [100469.835, 481279.654], + [100430.5672, 481305.9332], + [100411.6025, 481307.9196], + [100376.51, 481342.11], + [100366.3376, 481370.6376], + [100357.29, 481440.484], + [100196.8047, 481462.8451], + [99497.933, 481133.839], + [99215.3506, 481262.4816], + [99171.429, 481169.3616], + [98840.257, 480467.231], + [97728.934, 481002.808], + [97460.781, 481116.3071], + [94175.3299, 482597.7565], + [94110.5467, 482626.3236], + [96368.7832, 488067.9678], + [97433.3751, 490731.5586], + [98376.08, 493081.208], + [98726.1078, 494778.1434], + [98757.5298, 494793.5601], + [98915.185, 495728.34], + [98797.0041, 495759.7086], + [98350.7507, 497328.1594], + [97439.312, 497041.3533], + [97281.3594, 497039.1441], + [97177.8011, 497096.1656], + [96983.6023, 497361.8533], + [96886.231, 497686.13], + [96920.5703, 497680.2422], + [97024.5625, 497336.831], + [97199.4399, 497111.6336], + [97421.386, 497065.024], + [98409.2324, 497420.3659], + [98427.136, 497463.5928], + [98404.6444, 497509.5325], + [98449.296, 497526.244], + [98486.3774, 497517.538], + [98523.2178, 497490.705], + [98459.9658, 497501.5501], + [98459.476, 497471.123], + [98682.4491, 497352.4588], + [98713.6717, 497402.2969], + [98722.3728, 497399.3233], + [98691.6739, 497348.5976], + [98708.962, 497337.4315], + [98698.8795, 497325.7729], + [98665.1785, 497352.42], + [98643.0538, 497304.19], + [98770.096, 496902.96], + [99114.963, 496994.793], + [99113.3445, 497118.4563], + [98949.3578, 497206.4953], + [99075.428, 497493.1], + [99003.103, 497500.78], + [99003.103, 497525.8835], + [99376.889, 497522.7823], + [99424.2415, 497481.0118], + [99296.999, 497192.195], + [99406.306, 497143.675], + [99553.662, 497473.331], + [99634.634, 497519.2945], + [100047.4918, 497539.1373], + [100058.992, 497493.6251], + [99939.0143, 497401.8609], + [100093.1981, 497212.1291], + [100107.3481, 497161.4355], + [100089.0701, 497104.5239], + [99989.464, 497026.94], + [100007.2561, 497004.606], + [100105.6586, 497074.1221], + [100150.7401, 497053.658], + [100176.1561, 497082.209], + [100571.9, 496832.4011], + [100625.1641, 496909.917], + [100253.238, 497149.071], + [100158.0796, 497353.6729], + [100246.7811, 497493.7621], + [101106.709, 496951.3771], + [101210.6248, 496985.1679], + [101238.0419, 497027.946], + [100684.7211, 497354.81], + [100536.0541, 497469.0548], + [100446.1242, 497523.2538], + [100437.514, 497510.867], + [100430.129, 497514.869], + [100421.5697, 497538.0523], + [100385.8748, 497559.5649], + [100352.694, 497532.6983], + [100305.1454, 497568.9507], + [100328.5256, 497596.0088], + [100846.7521, 497621.88], + [100850.2586, 497726.9196], + [100618.2565, 497712.1023], + [100615.3949, 497747.6531], + [100861.401, 497798.7826], + [101270.959, 497803.726], + [101286.4778, 497818.7455], + [101288.038, 497895.946], + [101266.1751, 497913.7221], + [100928.3516, 497926.0626], + [100912.464, 497980.318], + [100926.0034, 498025.1023], + [101120.9591, 498010.2535], + [101128.0679, 498019.2768], + [101140.3983, 498017.7646], + [101143.0974, 498007.9207], + [101515.087, 497963.4081], + [101849.702, 497993.2669], + [101827.7531, 498009.2631], + [101840.2143, 498117.9333], + [101853.779, 498137.3221], + [101610.376, 498198.0631], + [100970.707, 498298.9841], + [101074.6712, 498340.9422], + [101601.665, 498295.582], + [101613.9571, 498399.5171], + [101518.1391, 498422.3201], + [101518.6513, 498427.959], + [101608.839, 498432.5721], + [101612.647, 498483.6743], + [101518.699, 498518.7283], + [101362.36, 498457.0481], + [101159.6951, 498470.7596], + [101402.8419, 498583.5304], + [101769.484, 498552.134], + [101773.8401, 498595.448], + [102043.1947, 498565.3657], + [102115.631, 498550.9079], + [102131.5151, 498641.198], + [101674.9539, 498740.8942], + [101683.158, 498754.4004], + [101497.9221, 498794.8291], + [101436.943, 498767.533], + [101407.784, 498773.9561], + [101396.4454, 498769.0478], + [101396.8271, 498757.939], + [101387.0269, 498753.801], + [101369.1274, 498750.847], + [101376.7211, 498725.4601], + [101356.6151, 498716.6221], + [101350.4616, 498730.003], + [101254.519, 498687.825], + [101236.459, 498697.066], + [101213.8033, 498745.4651], + [100586.5681, 498515.851], + [100534.557, 498578.1305], + [100424.384, 498542.1214], + [100316.5604, 498397.9984], + [100092.7531, 498297.0115], + [99276.813, 498086.219], + [98613.029, 498106.769], + [97995.3597, 498271.3545], + [97649.5835, 498155.4847], + [97626.2054, 498082.858], + [97582.1349, 498075.8038], + [97632.6345, 498177.477], + [97977.3682, 498317.2962], + [98643.1388, 498135.4673], + [99090.7281, 498110.0258], + [99834.525, 499361.964], + [100265.3107, 500483.1486], + [100632.3671, 501574.1242], + [101088.581, 503163.2975], + [101468.2853, 505123.5133], + [105165.2933, 505038.4893], + [105181.206, 505038.1458], + [105397.289, 505125.498], + [105653.3104, 505147.6423], + [106303.526, 505006.606], + [108074.887, 504564.939], + [108194.9583, 504834.8582], + [108204.3288, 504843.3409], + [108075.153, 505582.618], + [108011.9303, 506508.4353], + [108634.452, 506636.949], + [108821.138, 506735.174], + [108786.973, 506950.086], + [109664.6752, 507320.1803] + ] + ], + [ + [ + [125835.6, 513767.633], + [126013.286, 513100.275], + [125968.974, 512942.861], + [125850.77, 512827.74], + [125550.771, 512712.522], + [125328.438, 512531.578], + [125365.699, 512058.721], + [129095.827, 512292.155], + [129309.671, 513428.905], + [129225.964, 513732.0143], + [130037.1824, 513899.6751], + [130050.895, 513941.207], + [130105.5147, 513942.7172], + [130086.4857, 513703.9814], + [130129.0284, 513592.0046], + [130104.529, 513486.7491], + [130091.028, 513271.303], + [130277.4876, 513058.4814], + [130178.9925, 512907.6463], + [130201.9475, 512812.406], + [130332.2613, 512730.0414], + [130417.1467, 512516.2594], + [130152.3755, 512111.8697], + [130342.5406, 511600.6246], + [130693.8085, 510910.6929], + [130647.8333, 510706.7765], + [130741.104, 510563.888], + [130744.5655, 510401.4754], + [130959.3821, 509613.3066], + [130850.709, 509256.449], + [130863.4613, 508931.5593], + [131096.8565, 508648.8005], + [131636.805, 508205.424], + [131653.8458, 507944.463], + [132447.7563, 506389.195], + [132397.867, 506081.8325], + [132433.6844, 505734.7465], + [132635.513, 505561.69], + [133000.55, 504729.677], + [133119.7843, 504639.5965], + [133186.3962, 504330.5409], + [133229.8352, 503949.3259], + [133455.2698, 503757.275], + [133584.0208, 503516.4691], + [133729.0784, 503567.816], + [133809.386, 503533.501], + [133778.5028, 503321.2363], + [133805.6838, 503085.6986], + [134182.4595, 502871.932], + [134280.7167, 502565.637], + [134398.0801, 502146.4616], + [134527.667, 501827.585], + [134204.6446, 501385.5614], + [133997.0209, 500910.8615], + [134035.0274, 500810.017], + [133991.085, 500715.552], + [133914.4345, 500615.0234], + [133929.9085, 500586.264], + [133924.191, 500583.5705], + [133900.1543, 500613.8091], + [133982.076, 500727.0695], + [133924.001, 500782.402], + [133837.862, 500691.8498], + [133831.4898, 500630.6762], + [133696.644, 500584.3393], + [133718.6368, 500526.7055], + [133883.7475, 500592.9205], + [133890.3495, 500581.3985], + [133835.7173, 500550.278], + [133714.7115, 500507.6728], + [133699.0105, 500535.1664], + [133579.565, 500512.648], + [133562.0498, 500402.013], + [133451.6469, 500265.372], + [133365.0413, 500251.8258], + [133278.112, 500265.3817], + [133174.0324, 500303.9875], + [133131.2945, 500382.1718], + [133058.612, 500371.55], + [132985.1, 500159.575], + [132966.1464, 500105.8621], + [132881.3693, 500111.8833], + [132820.45, 500024.212], + [132774.863, 499956.207], + [132738.8313, 499816.5928], + [132708.414, 499391.919], + [132808.377, 498825.093], + [133287.31, 498333.14], + [133384.1525, 498155.4995], + [133341.4833, 497939.2634], + [132894.496, 497823.115], + [132618.3066, 497848.9333], + [132158.85, 498007.597], + [132006.3719, 497910.8548], + [131511.9155, 497628.0733], + [131501.579, 497583.945], + [131386.0791, 497593.0167], + [131344.587, 497526.579], + [131320.4245, 497533.248], + [131325.501, 497615.75], + [131313.286, 497617.124], + [131314.3495, 497655.5218], + [131283.941, 497663.277], + [131284.6618, 497672.1375], + [130971.257, 497797.062], + [130957.6153, 497638.6715], + [130949.668, 497509.777], + [131003.17, 497464.008], + [131303.2052, 497418.3899], + [131318.782, 497354.164], + [131292.501, 497332.101], + [131248.039, 497357.2588], + [131162.2399, 497326.7085], + [131320.4968, 497024.6619], + [131393.5628, 497067.6283], + [131431.6709, 496987.67], + [131515.5594, 496987.5158], + [131445.76, 496865.9038], + [131460.998, 496770.446], + [131556.489, 496724.554], + [131635.802, 496703.899], + [131815.314, 497102.203], + [132032.51, 497277.433], + [132356.9, 497200.077], + [132438.6901, 497065.38], + [132065.7032, 496470.4373], + [131974.645, 496424.829], + [131954.5402, 496289.5367], + [131951.9293, 495920.5989], + [131920.9595, 495677.3126], + [131954.3956, 495598.6584], + [132015.5008, 495559.633], + [132094.49, 495300.55], + [131933.074, 494995.608], + [132031.138, 494673.064], + [132579.9506, 494644.7791], + [133010.434, 494442.294], + [133079.108, 494443.991], + [133135.5015, 494581.697], + [133239.936, 494616.009], + [133545.9741, 494485.2977], + [133977.593, 494352.705], + [134580.7275, 494402.0169], + [134597.5138, 494183.5851], + [134710.224, 494158.845], + [134995.241, 494744.322], + [135093.4486, 495681.692], + [134999.4987, 495884.9989], + [134975.58, 496029.1564], + [135116.0623, 496304.9905], + [135395.457, 496651.322], + [135428.274, 496758.734], + [135416.187, 496778.561], + [135420.983, 496794.236], + [135445.6898, 496764.5493], + [135426.677, 496689.328], + [135413.453, 496665.853], + [135489.5808, 496628.152], + [135525.763, 496722.189], + [135515.989, 496726.184], + [135521.574, 496741.349], + [135532.123, 496737.083], + [135544.4598, 496767.4989], + [135569.091, 496832.074], + [135533.306, 496843.0135], + [135508.398, 496778.701], + [135429.584, 496806.396], + [135430.3075, 496818.9024], + [135479.733, 496809.72], + [135585.078, 497183.128], + [135517.1243, 497418.9435], + [135667.9838, 497701.2905], + [135817.8588, 497763.1489], + [135914.3115, 497792.7523], + [136280.989, 497394.353], + [136407.933, 497150.328], + [136846.553, 497149.1375], + [137661.4025, 497291.411], + [137842.3535, 497266.6404], + [137963.1263, 497213.2249], + [138014.6552, 497150.1974], + [138033.9901, 497084.9468], + [138017.1418, 497018.677], + [138035.2269, 496988.4278], + [138115.105, 496935.185], + [138151.7305, 496934.9509], + [138156.3056, 496910.2667], + [138120.568, 496903.336], + [138120.732, 496894.789], + [138150.2105, 496889.4289], + [138148.6218, 496882.3934], + [138110.386, 496888.0706], + [138082.487, 496943.384], + [137995.052, 496983.565], + [137750.9484, 496926.1933], + [137131.2499, 496622.3565], + [136968.0068, 496464.6308], + [136230.7429, 496289.4248], + [135895.3965, 495862.0925], + [135415.894, 495872.315], + [135130.6519, 495671.395], + [135054.7105, 494843.622], + [134920.4806, 494438.6525], + [134566.82, 493853.29], + [134539.1033, 493875.8905], + [134666.826, 494090.9793], + [134511.4784, 494182.2679], + [134222.3533, 493739.7319], + [134164.3518, 493699.5994], + [134067.8812, 493705.1659], + [134105.2979, 493655.1627], + [134091.1427, 493625.5293], + [134032.4051, 493640.6106], + [133875.0193, 493504.105], + [133855.3928, 493464.9328], + [133848.4432, 493419.9774], + [133903.5414, 493381.5002], + [133899.1651, 493356.8035], + [133889.4768, 493286.742], + [133879.045, 493288.711], + [133878.5605, 493362.0152], + [133795.402, 493383.049], + [133808.602, 493465.902], + [133757.45, 493481.746], + [133718.8988, 493385.8511], + [133741.5994, 493374.5267], + [133711.2755, 493304.0103], + [133880.8465, 493254.4497], + [133844.7249, 493226.5633], + [133821.915, 493216.5972], + [133776.9618, 493206.8938], + [133715.5274, 493062.4694], + [133721.296, 493013.2631], + [133793.441, 492989.549], + [133788.402, 492975.6555], + [133699.4144, 493003.0859], + [133630.698, 492951.767], + [133643.6543, 492576.5548], + [133301.5406, 492130.3002], + [133107.918, 492206.968], + [132002.304, 491977.208], + [131386.5269, 492222.4576], + [131055.652, 492329.061], + [130897.9476, 492130.8671], + [130700.924, 492040.667], + [130680.49, 492270.349], + [130588.197, 492461.029], + [130098.5303, 492645.779], + [129897.361, 492424.79], + [128682.585, 493137.3649], + [128012.833, 493153.677], + [127919.993, 492907.808], + [127783.753, 492856.84], + [127482.463, 493294.751], + [127045.5566, 492992.7469], + [126846.259, 492857.17], + [125667.9249, 492770.9109], + [125652.717, 492823.475], + [125501.732, 492804.871], + [125418.907, 492946.338], + [125351.439, 492913.913], + [125376.9264, 492833.4796], + [125360.171, 492769.348], + [125237.8645, 492776.0713], + [125177.9481, 492718.663], + [125108.725, 492729.975], + [124899.614, 492003.099], + [124753.701, 491875.1212], + [124241.859, 491675.756], + [123940.387, 491629.5571], + [123400.8981, 492069.393], + [123245.5047, 492190.2673], + [122828.5046, 492403.2578], + [122514.1119, 492600.3002], + [122399.055, 492670.539], + [122406.839, 492695.903], + [122364.7075, 492713.3782], + [122245.5197, 492811.3335], + [121774.494, 493077.069], + [121774.384, 493073.907], + [121054.4595, 493207.5222], + [121023.271, 493204.113], + [120967.3241, 493201.9247], + [120612.7242, 493215.7115], + [120432.213, 493220.556], + [120268.033, 493280.861], + [120069.0097, 493531.164], + [120041.6399, 493652.0192], + [119923.4008, 493714.29], + [119792.79, 493686.867], + [119550.408, 493781.205], + [119501.778, 493766.499], + [119485.237, 493767.276], + [119430.192, 493748.236], + [119428.79, 493735.963], + [119325.855, 493700.781], + [119260.056, 493682.832], + [119141.3833, 493974.9049], + [119020.1689, 494272.177], + [118983.454, 494362.329], + [118951.2106, 494429.5874], + [118743.7235, 494999.8623], + [118673.8216, 495153.8113], + [118002.892, 496194.042], + [118079.2874, 496248.2902], + [118103.7785, 496266.7876], + [118140.559, 496662.667], + [118390.798, 497004.295], + [118667.215, 498203.792], + [118258.12, 498246.589], + [117981.9775, 498402.9167], + [117924.1234, 498504.7521], + [117656.487, 498959.857], + [117616.5938, 499269.736], + [116254.879, 499579.028], + [115951.7493, 499737.9394], + [115899.0394, 499936.3205], + [115039.685, 500539.496], + [114686.3528, 500517.5393], + [114599.332, 500546.029], + [114547.98, 500659.163], + [114785.424, 501089.696], + [114761.0212, 501605.0157], + [114721.7205, 501897.6328], + [114680.838, 502311.548], + [114439.044, 502583.034], + [114373.0206, 502770.4668], + [114402.698, 503581.756], + [114455.483, 503674.455], + [114630.958, 503727.458], + [115031.845, 504239.963], + [115468.5512, 504347.6695], + [115942.488, 504881.364], + [116524.274, 504992.641], + [116812.8669, 505276.6569], + [116311.42, 505485.741], + [116452.144, 505827.107], + [116584.635, 505772.701], + [116818.9871, 506255.3111], + [117065.557, 506149.762], + [117462.057, 505845.364], + [117571.0677, 506034.3481], + [118033.544, 506345.445], + [118193.395, 506768.832], + [118447.982, 507074.38], + [118690.732, 507602.172], + [118828.888, 507816.736], + [119159.4755, 508113.2427], + [119341.929, 508425.907], + [119452.53, 508733.308], + [119461.807, 509142.498], + [119545.8358, 509464.1624], + [119644.767, 509700.336], + [119847.111, 509943.142], + [120373.84, 510149.112], + [120946.159, 510857.919], + [121345.158, 512010.393], + [121549.1867, 512367.2327], + [122072.896, 512929.817], + [123039.519, 513559.586], + [123450.044, 513520.33], + [123820.477, 513338.117], + [123956.374, 513166.833], + [124550.49, 513409.437], + [125286.407, 514091.679], + [125451.731, 514152.474], + [125613.942, 514071.927], + [125649.0791, 514044.0571], + [125835.6, 513767.633] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD17", + "od_naam": "Omgevingsdienst IJmond", + "naam_alt": "OD IJmond" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6025", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [182721.3338, 511713.8453], + [182820.088, 511545.892], + [182455.6658, 511587.8699], + [182234.1665, 511661.4149], + [182164.304, 511692.7], + [182139.7713, 511628.2585], + [182169.9765, 511541.0395], + [182227.324, 511491.971], + [182354.6425, 511371.9333], + [182378.355, 511211.327], + [182319.905, 511166.862], + [182228.9862, 511257.4414], + [182201.2404, 511382.8169], + [182007.2414, 511571.208], + [181991.0878, 511737.5204], + [182114.416, 511804.096], + [182336.0947, 511694.957], + [182467.583, 511763.278], + [182543.873, 511845.015], + [182721.3338, 511713.8453] + ] + ], + [ + [ + [183424.4116, 511546.2032], + [183556.8402, 511492.7738], + [183721.376, 511627.02], + [183713.8187, 511767.2632], + [183772.19, 511863.029], + [184127.6218, 511657.041], + [183793.0339, 511602.9146], + [183703.366, 511467.7778], + [183504.6508, 511367.2814], + [183114.4411, 511654.5711], + [183006.6941, 511880.8664], + [182972.3687, 512066.6034], + [182992.959, 512239.4453], + [183108.751, 512274.088], + [183366.814, 512163.33], + [183529.32, 511943.266], + [183466.2934, 511840.9315], + [183460.944, 511779.5729], + [183424.4116, 511546.2032] + ] + ], + [ + [ + [185262.7165, 513398.099], + [185262.3967, 513262.0794], + [185273.663, 513200.991], + [184898.6719, 512797.341], + [184856.4675, 512752.8771], + [184771.8425, 512642.3539], + [184713.137, 512495.093], + [184737.3476, 512228.0798], + [184891.1644, 511961.2548], + [184983.2142, 511807.6887], + [184664.4939, 511825.4688], + [184470.0803, 511945.06], + [184356.8204, 512100.3203], + [184204.156, 512151.633], + [184071.722, 512282.6], + [183852.812, 512367.117], + [183637.6743, 512344.4564], + [183531.6474, 512493.0838], + [183083.2971, 512877.1124], + [183049.2316, 513117.7718], + [183146.7759, 513266.3262], + [183536.5585, 513391.4388], + [183691.123, 513340.104], + [183838.2296, 513202.1346], + [183955.5637, 513077.1654], + [184058.3356, 513069.544], + [184087.6849, 513211.9892], + [184154.4467, 513327.0958], + [184266.138, 513348.2312], + [184393.2378, 513360.8303], + [184469.769, 513387.419], + [184637.5913, 513368.0239], + [184897.7353, 513354.4183], + [185094.279, 513368.1663], + [185262.7165, 513398.099] + ] + ], + [ + [ + [205509.016, 539341.247], + [206428.8231, 538351.9037], + [206542.911, 538229.514], + [206381.766, 538186.5549], + [206357.184, 538180.002], + [206404.472, 538149.504], + [206527.9278, 538070.1591], + [206930.343, 537811.402], + [207869.8983, 536733.1437], + [207937.576, 536776.5657], + [208264.082, 536581.15], + [208485.1733, 536270.1021], + [208804.263, 535849.6051], + [209761.3305, 534592.0878], + [209941.203, 534356.831], + [209415.869, 533539.303], + [208816.3658, 532854.0055], + [208267.549, 532279.893], + [208021.959, 532038.456], + [207733.523, 531371.992], + [207424.82, 531296.98], + [207171.408, 531094.9791], + [206926.94, 530868.864], + [205663.024, 530449.846], + [205309.646, 530408.766], + [204897.417, 530200.481], + [204580.865, 529905.224], + [204502.9072, 529462.8989], + [204967.8189, 528357.2006], + [205109.102, 528109.8701], + [205375.2819, 527374.5936], + [205858.0978, 526151.7398], + [206046.0319, 525704.5517], + [206134.3405, 525476.0799], + [206654.819, 524214.926], + [206694.337, 524072.266], + [206657.477, 524047.342], + [206823.434, 523599.5725], + [207018.141, 523002.992], + [207165.985, 523062.753], + [207178.092, 523026.601], + [207423.0386, 522907.5894], + [207584.171, 522667.658], + [207680.612, 522674.891], + [207806.223, 522586.187], + [207907.049, 522363.034], + [207861.8862, 522297.1722], + [207464.317, 521684.015], + [207949.4618, 521452.6895], + [208833.135, 521142.654], + [208748.826, 521342.581], + [208902.278, 521382.065], + [208649.4135, 521866.6999], + [209008.208, 521972.545], + [209146.437, 521652.497], + [209389.0545, 521622.485], + [209433.912, 521301.005], + [209580.756, 521325.245], + [209594.601, 521569.714], + [209727.4938, 521798.2935], + [210074.6996, 522220.0037], + [210227.1261, 522226.919], + [210298.642, 522171.428], + [210397.737, 522250.167], + [210648.66, 522293.711], + [210806.176, 522229.709], + [210779.229, 522304.569], + [210888.994, 522344.153], + [210911.959, 522418.168], + [211080.137, 522428.692], + [211138.142, 522331.828], + [211203.5394, 522386.899], + [211298.9, 522354.603], + [211226.755, 522206.08], + [211393.961, 522107.701], + [211382.863, 522035.428], + [211499.8103, 522020.65], + [211647.87, 521994.373], + [211803.343, 521865.028], + [211837.651, 521918.057], + [211874.252, 521869.606], + [211904.913, 521910.3], + [212038.825, 521860.306], + [212172.854, 521895.355], + [212269.826, 521757.532], + [212193.509, 521715.772], + [212188.949, 521631.016], + [212458.471, 521513.932], + [212477.146, 521460.605], + [212708.826, 521483.479], + [212909.988, 521603.466], + [213243.268, 521254.803], + [213286.166, 521064.389], + [213177.546, 520937.845], + [213305.376, 520785.933], + [213400.238, 520839.408], + [213378.095, 520753.297], + [213496.833, 520619.577], + [213648.914, 520656.62], + [213682.174, 520588.125], + [213704.752, 520643.283], + [213761.694, 520591.623], + [213862.615, 520682.524], + [213914.581, 520617.581], + [214073.25, 520692.882], + [214410.107, 520547.986], + [214412.516, 520419.889], + [214440.821, 520285.864], + [214725.708, 520068.308], + [214946.879, 520083.928], + [215023.609, 520306.078], + [215140.785, 520353.717], + [215212.738, 520534.591], + [215250.812, 520491.532], + [215327.968, 520549.449], + [215575.904, 520459.931], + [215700.889, 520342.8224], + [215766.041, 520325.689], + [215738.606, 520147.58], + [215887.329, 520014.364], + [215905.977, 519933.577], + [215958.326, 519982.614], + [216012.4184, 519912.2644], + [216209.104, 519824.377], + [216452.871, 519814.625], + [216427.293, 519953.998], + [216583.532, 520266.658], + [216728.094, 520208.531], + [216726.3, 520282.647], + [216903.08, 520277.068], + [216875.308, 520340.164], + [216924.357, 520379.664], + [217142.657, 520259.244], + [217401.992, 520319.711], + [217535.7252, 520386.6077], + [217563.167, 520466.721], + [217699.986, 520468.775], + [217683.668, 520538.703], + [217747.602, 520546.464], + [217755.792, 520621.55], + [217881.452, 520630.833], + [217875.731, 520675.474], + [218026.165, 520658.042], + [218067.5761, 520733.886], + [218266.522, 520740.89], + [218566.511, 520607.804], + [218690.035, 520334.715], + [218643.088, 520266.568], + [218731.121, 520186.121], + [218678.839, 520183.175], + [218620.6, 519997.636], + [218502.64, 519895.073], + [218505.9841, 519710.9095], + [218598.56, 519633.354], + [218508.905, 519550.057], + [218540.877, 519466.942], + [218639.873, 519438.692], + [218872.338, 519271.278], + [219065.515, 518999.792], + [219589.1379, 518893.9166], + [219719.844, 518614.34], + [220274.21, 518304.183], + [220395.68, 518080.575], + [220800.446, 518001.205], + [221119.498, 517740.983], + [221113.447, 517210.558], + [221284.114, 517110.188], + [221515.929, 516840.529], + [221438.597, 516675.207], + [221481.342, 516527.301], + [221602.475, 516469.819], + [221693.388, 516230.545], + [221820.125, 516177.835], + [221894.911, 516000.616], + [221920.1358, 515861.5898], + [221793.621, 515545.001], + [222043.85, 515179.74], + [221967.191, 514933.45], + [222002.052, 514831.948], + [222255.528, 514627.106], + [222376.175, 514698.215], + [222519.262, 514322.336], + [222699.612, 514477.268], + [223019.514, 514581.792], + [223172.658, 514885.955], + [223320.079, 514949.716], + [223667.037, 514784.485], + [223842.901, 514786.355], + [224053.019, 514959.221], + [223986.247, 515061.533], + [224010.093, 515268.339], + [224225.845, 515401.49], + [224339.8117, 515301.9112], + [224401.242, 515196.455], + [224680.85, 515066.79], + [224860.3, 515108.91], + [225043.58, 515559.06], + [225398.33, 515741.51], + [225337.7971, 515949.2056], + [225479.99, 516137.76], + [225692.94, 516160.98], + [225806.71, 516095.35], + [225863.79, 515945.29], + [225995.92, 515408.68], + [225994.51, 515328.87], + [225918.64, 515283.2], + [225951.87, 515153.8], + [226190.821, 514911.21], + [226459.3673, 514773.6835], + [226505.29, 514817.97], + [227216.25, 514579.14], + [227700.92, 514924.15], + [227914.87, 515693.47], + [228314.5249, 515822.9556], + [228477.942, 515780.176], + [228608.371, 515355.429], + [228870.302, 515124.147], + [229044.8, 515073.75], + [229267.68, 515179.71], + [229784.83, 515198.01], + [230360.78, 515073.23], + [230676.88, 514971.89], + [231182.015, 514605.167], + [231626.698, 514660.868], + [231598.3643, 514925.3311], + [231580.475, 515094.253], + [231568.2861, 515197.4872], + [231261.7485, 518125.6192], + [231249.669, 518239.141], + [232279.017, 519163.3027], + [232285.477, 519169.476], + [233511.1839, 520242.2548], + [233851.61, 520428.424], + [235753.945, 520891.056], + [237286.9538, 521263.0036], + [237905.41, 521412.8955], + [238009.613, 521438.145], + [239027.427, 520970.177], + [240206.3821, 520428.6851], + [240814.2881, 520149.3009], + [242889.8926, 519228.7195], + [243934.0267, 518890.4303], + [244405.1901, 518736.1957], + [244386.387, 518620.311], + [244221.652, 518387.07], + [244216.54, 518127.522], + [243993.774, 518028.362], + [243934.663, 517938.48], + [244003.635, 517874.657], + [244242.774, 517857.492], + [244301.523, 517708.521], + [244101.925, 517323.908], + [244105.323, 517225.308], + [244105.4401, 517224.4436], + [244105.823, 517215.545], + [244091.455, 517126.986], + [244178.953, 516993.694], + [244071.731, 516717.478], + [243942.012, 516573.291], + [243940.781, 516453.008], + [244020.368, 516337.24], + [244220.765, 516345.041], + [244370.161, 516287.751], + [244426.221, 516427.003], + [244564.14, 516408.73], + [244571.411, 516352.619], + [244698.276, 516301.18], + [244849.878, 516296.771], + [245128.202, 515925.101], + [245158.66, 515765.921], + [245449.834, 515596.073], + [245757.58, 514995.84], + [245572.375, 514258.058], + [245542.513, 513678.673], + [245363.918, 513143.701], + [245349.693, 512932.107], + [245411.735, 512757.571], + [245304.961, 512576.161], + [245234.7192, 512060.4962], + [248532.84, 509327.96], + [248539.04, 509117.08], + [248359.718, 509107.809], + [247584.524, 508810.042], + [246735.413, 509129.379], + [246347.386, 509089.748], + [245771.326, 509234.705], + [245457.49, 508099.56], + [245393.41, 507948.82], + [245141.748, 507780.867], + [245146.75, 507594.27], + [243872.9294, 507852.8771], + [242948.1427, 508041.2151], + [242737.37, 508083.98], + [243726.965, 506037.795], + [244461.113, 504519.251], + [244005.232, 500648.109], + [243726.76, 500646.288], + [242326.91, 501433.666], + [242067.166, 501579.679], + [241663.3961, 501294.9592], + [241018.895, 500765.657], + [241091.291, 500197.464], + [240615.712, 499732.739], + [240869.737, 499352.412], + [240768.812, 499120.628], + [240227.883, 498905.781], + [240159.292, 499111.734], + [239824.854, 498943.704], + [239525.029, 498974.751], + [239222.821, 499176.415], + [238941.0185, 498909.4024], + [238501.186, 498607.479], + [238299.457, 498245.01], + [238189.7084, 498383.5611], + [237460.46, 499774.096], + [237061.735, 499860.135], + [235546.658, 500276.6953], + [235021.0456, 500421.9716], + [234282.284, 500625.808], + [232917.353, 500757.7901], + [232914.5171, 500758.0643], + [231242.684, 500919.723], + [230948.874, 500948.132], + [230849.583, 499918.224], + [230419.2776, 499863.8393], + [230241.891, 499828.807], + [230311.488, 499635.582], + [230088.285, 499632.44], + [229825.505, 499361.75], + [229133.306, 499433.871], + [228731.435, 499214.59], + [228257.443, 499143.756], + [227992.216, 498942.307], + [228001.953, 498822.073], + [227940.774, 498787.26], + [227991.744, 498722.186], + [227806.033, 498564.967], + [227506.632, 498487.588], + [227413.867, 498567.319], + [227461.5691, 498709.1722], + [227382.862, 498673.072], + [227396.558, 498505.005], + [227264.1731, 498426.2906], + [227269.299, 498330.208], + [227444.218, 498171.763], + [227385.072, 497951.373], + [227329.658, 497975.614], + [227248.704, 498213.622], + [227111.418, 498164.578], + [227056.3865, 497994.2548], + [227225.3527, 497661.7396], + [227323.482, 497617.553], + [227237.021, 497586.389], + [227054.533, 497632.87], + [226933.775, 497544.392], + [226866.79, 497334.133], + [226965.801, 497165.405], + [226758.918, 497097.914], + [226707.132, 497028.347], + [226681.571, 496909.855], + [226859.332, 496841.839], + [226739.86, 496334.341], + [226450.663, 496087.131], + [226486.333, 495865.16], + [226411.677, 495746.183], + [226470.42, 495657.649], + [225899.525, 495124.119], + [223225.234, 493844.412], + [224255.201, 492456.333], + [224010.6945, 491427.5601], + [223563.454, 489849.9789], + [223185.521, 488521.153], + [222764.624, 488552.821], + [221053.457, 488126.918], + [220098.22, 487335.431], + [219631.939, 485791.087], + [219472.883, 485253.722], + [219664.245, 484712.946], + [220105.023, 483233.548], + [220315.5436, 482794.1862], + [220649.3846, 482227.4014], + [220973.9459, 481712.8109], + [221056.087, 481582.537], + [220058.922, 480552.208], + [219069.67, 479710.62], + [219174.031, 478438.0072], + [219174.5059, 478433.5528], + [219257.0481, 477428.7299], + [220751.77, 476374.1], + [220639.343, 476199.357], + [220775.07, 476130.175], + [220861.14, 476306.359], + [220955.3226, 476217.6534], + [221051.74, 476128], + [220913.7, 476031.49], + [221088.225, 475913.106], + [221178.529, 476010.295], + [221646.518, 475580.415], + [221617.72, 475557.962], + [221720.113, 475464.357], + [221739.54, 475495.4], + [222150.29, 475119.63], + [222297.03, 475222.3], + [222588.35, 474978.14], + [222595.536, 474752.044], + [222431.34, 474710.78], + [222437.914, 474581.572], + [222603.342, 474501.543], + [222542.252, 474255.509], + [222557.132, 474161.85], + [222604.458, 474014.3], + [222882.891, 473726.48], + [222877.8728, 473638.1375], + [222927.658, 473584.211], + [222622.2176, 473428.3766], + [221910.18, 473060.64], + [220879.33, 473065.3], + [220735.91, 473012.54], + [220708.32, 472885.72], + [219951.34, 472443.78], + [220009.08, 471435.27], + [219102.41, 471406.07], + [218762.38, 471253.96], + [217226.22, 471218.93], + [217153.7017, 471604.2921], + [216885.41, 471657.82], + [216869.52, 471803.92], + [216792.7005, 471808.2997], + [216426.39, 471746.64], + [215808.16, 471469.08], + [215382.7098, 471460.9596], + [215404.13, 471294.72], + [215274.911, 471298.015], + [214953.966, 471382.072], + [214686.2292, 471581.7062], + [214446.74, 471379.12], + [213158.985, 471398.257], + [212847.487, 471555.935], + [212426.14, 471631.111], + [212066.0851, 471528.8235], + [211652.939, 471813.552], + [211518.8937, 471795.3879], + [211691.2948, 471257.5154], + [210742.3306, 471557.8124], + [209856.33, 471541.658], + [209808.8113, 471555.645], + [209787.754, 471535.733], + [209629.833, 471735.22], + [209573.759, 471787.674], + [209570.126, 471781.571], + [209490.809, 471827.704], + [209499.994, 471846.86], + [209330.851, 472049.056], + [209047.751, 472031.8792], + [208763.9911, 471926.737], + [208296.3442, 471751.5685], + [208223.336, 471724.221], + [208004.905, 471444.63], + [208375.84, 471310.294], + [208337.989, 471205.247], + [207969.524, 471376.912], + [208195.004, 470888.228], + [208165.288, 470814.356], + [208399.835, 470578.411], + [208218.281, 470248.937], + [208089.218, 470212.5], + [207988.843, 470314.156], + [208078.531, 470680.312], + [207951.671, 470959.375], + [207812.406, 471075.5], + [207562.8767, 471125.3021], + [206945.589, 471350.634], + [206638.438, 471774.712], + [206541.742, 472057.864], + [206572.951, 472534.841], + [207178.1127, 472994.7943], + [207358.97, 473194.057], + [207381.318, 473368.142], + [207321.037, 473499.486], + [207093.06, 473637.416], + [207052.3299, 473598.6896], + [206718.144, 473500.67], + [206650.144, 473420.8901], + [206334.1687, 473559.6384], + [206184.1142, 473708.5943], + [205303.4, 473971.095], + [205285.351, 474216.46], + [205384.715, 474566.576], + [205716.5062, 475000.1382], + [205536.32, 475111.0771], + [205291.52, 475420.35], + [205222.9962, 475948.0271], + [205092.0552, 476254.9331], + [204488.222, 476947.571], + [204410.634, 477215.577], + [204406.028, 478048.967], + [204029.068, 478512.232], + [203709.398, 479490.12], + [203533.575, 479481.173], + [203565.57, 479366.705], + [203000.13, 479345.729], + [202810.558, 479386.934], + [202679.669, 479554.973], + [202532.3891, 479529.9731], + [202448.578, 480133.835], + [202544.213, 480616.771], + [202311.339, 480664.649], + [202216.852, 481302.332], + [201813.232, 481309.551], + [201682.026, 481246.458], + [201318.787, 481312.476], + [201286.366, 481584.112], + [201373.83, 481713.985], + [201599.554, 481768.296], + [201793.217, 482736.77], + [201837.129, 482958.232], + [201923.369, 483041.876], + [201814.46, 483176.98], + [201918.243, 483202.235], + [201994.84, 483637.92], + [201890.86, 484293.96], + [201944.279, 484418.4], + [201934.931, 484963.646], + [202071.9, 485096.862], + [202065.122, 485171.42], + [202692.424, 485340.295], + [203202.6608, 485683.6353], + [203115.18, 485876.466], + [202921.903, 486071.808], + [202769.552, 486148.388], + [202250.56, 486242.472], + [202041.291, 486492.051], + [202060.65, 487020.675], + [202160.951, 487201.746], + [202347.553, 487359.808], + [203208.446, 487565.303], + [204446.609, 487952.291], + [204953.4882, 488217.0139], + [205141.8901, 488416.5697], + [205287.176, 488722.975], + [205309.8599, 488946.5749], + [205235.147, 489675.9], + [205552.4714, 490344.1284], + [205590.5219, 490497.449], + [205388.569, 490455.279], + [205237.736, 490516.055], + [205120.817, 490708.349], + [204805.702, 490785.907], + [204611.4216, 491032.4491], + [204514.505, 491266.287], + [204237.9846, 491355.5591], + [204498.486, 492075.106], + [204416.023, 492369.159], + [204433.103, 492697.318], + [204722.945, 493455.847], + [204715.779, 493655.288], + [204592.464, 493850.174], + [204800.5156, 494155.6376], + [204428.793, 494717.245], + [204118.188, 494995.02], + [203806.115, 495220.677], + [203617.067, 495573.249], + [203593.852, 495798.688], + [203693.118, 496485.535], + [203554.128, 497862.129], + [203376.211, 498301.3803], + [203039.104, 498720.973], + [202697.913, 499018.121], + [201821.546, 499389.375], + [201480.175, 499595.79], + [201133.647, 499933.391], + [200930.8918, 500252.2305], + [200815.9733, 500512.0937], + [200580.856, 501133.593], + [200293.2961, 501551.9897], + [199743.7145, 502000.2353], + [199355.771, 502263.449], + [198493.513, 502628.339], + [198326.021, 502289.38], + [198157.836, 502149.759], + [197919.754, 502091.548], + [197629.615, 502215.351], + [197593.285, 502194.076], + [197445.446, 502211.195], + [197124.044, 502021.519], + [196664.763, 501560.136], + [196054.966, 500859.545], + [195478.0941, 500306.9553], + [194713.9363, 499441.3008], + [194276.678, 498902.8226], + [193793.866, 499746.728], + [193328.536, 499750.839], + [192968.3148, 499515.1347], + [192345.17, 498893.856], + [192309.3069, 498903.1151], + [192269.3987, 498974.1478], + [192244.534, 498992.456], + [191578.085, 498616.425], + [191251.2655, 499559.5004], + [190517.861, 501183.144], + [189923.9081, 502122.9699], + [188944.075, 503365.354], + [188372.544, 503891.88], + [188188.734, 503929.772], + [187485.0878, 503550.4198], + [187487.7, 503698.528], + [187388.6695, 503759.1625], + [187328.4396, 503738.1505], + [187283.6404, 503799.2465], + [187274.5261, 503936.0327], + [187337.0667, 504018.1172], + [187332.3203, 504122.8169], + [187277.1285, 504378.9737], + [187231.3706, 504549.0211], + [187184.3323, 504645.9228], + [187246.4571, 504848.5841], + [187201.456, 505166.485], + [187124.3445, 505290.0557], + [187106.9661, 505496.7699], + [187210.421, 505620.501], + [187198.5342, 505630.7308], + [187133.6179, 505599.9729], + [187098.628, 505637.789], + [187248.4153, 505714.546], + [187229.998, 505748.7253], + [187124.4634, 505757.0724], + [187115.4473, 505692.624], + [187101.5293, 505692.1769], + [187059.8449, 505801.5528], + [187030.0215, 506174.3778], + [186967.6773, 506235.5429], + [186940.114, 506229.7285], + [186928.4459, 506249.3247], + [186946.2002, 506306.6495], + [186865.997, 506369.2291], + [186927.933, 506433.875], + [186917.4576, 506497.996], + [186908.941, 506550.122], + [186914.986, 506571.1893], + [186886.0294, 506636.1352], + [186925.634, 506681.564], + [186974.1919, 506695.5023], + [186971.0573, 506733.7452], + [186949.728, 506760.363], + [186890.703, 506743.624], + [186849.7617, 507020.901], + [186838.497, 507154.453], + [186807.7545, 507184.7538], + [186877.1265, 507350.3081], + [186860.874, 507362.009], + [186764.6565, 507181.9535], + [186614.6443, 507313.2513], + [186571.9379, 507656.9247], + [185844.877, 508468.4795], + [185692.693, 509219.753], + [185159.805, 510014.493], + [184808.04, 510218.071], + [184650.6043, 510313.0739], + [184315.479, 510369.937], + [183948.448, 510624.454], + [183945.1898, 510663.4229], + [184990.2946, 510633.7457], + [185658.2578, 510538.236], + [185670.5988, 510615.7193], + [185611.749, 510704.572], + [185000, 510778.46], + [183353.694, 510820.48], + [183998.814, 511284.3459], + [184324.733, 511357.932], + [184319.289, 511237.49], + [183934.04, 511117.653], + [183920.5962, 511006.9706], + [183950.974, 510903.4], + [184148.456, 510873.1838], + [184334.153, 511069.032], + [184463.3525, 511108.4703], + [184909.543, 511150.751], + [185253.4768, 510998.6303], + [185629.314, 510734.658], + [185683.9675, 510675.0168], + [185798.6138, 510789.3474], + [185272.349, 511326.852], + [185121.1945, 511641.7778], + [185382.782, 512174.423], + [185345.968, 512273.0893], + [185146.654, 512347.112], + [185132.2247, 512584.6423], + [185192.047, 512793.1859], + [185356.0251, 512946.4235], + [185405.8113, 513115.1794], + [185418.2155, 513259.1237], + [185553.5658, 513337.7423], + [185704.648, 513451.754], + [185654.779, 513596.329], + [185713.6732, 513750.6717], + [185715.52, 513751.096], + [185760.1678, 513761.3528], + [185846.408, 513781.1656], + [185873.3674, 513787.359], + [185873.4634, 513787.3811], + [188921.8818, 514487.6896], + [189496.5957, 514619.7142], + [189512.0313, 514603.967], + [189541.5778, 514591.4534], + [189675.4665, 514657.5864], + [190117.158, 514652.008], + [190055.813, 514450.7761], + [190187.281, 514347.394], + [190254.365, 514407.852], + [190574.137, 514315.096], + [190709.984, 514121.852], + [190901.956, 514043.548], + [191098.238, 514058.098], + [191188.433, 514114.5741], + [191859.4671, 514174.9457], + [192275.2194, 514369.5978], + [192669.1633, 514664.6954], + [193456.4459, 515033.0541], + [193498.8572, 515192.7534], + [193578.223, 515338.503], + [193676.1089, 515406.1474], + [193938.5724, 515363.5978], + [194772.3934, 515230.4718], + [194993.8541, 515231.7322], + [195268.4841, 515235.9536], + [195452.9464, 515238.789], + [195580.9174, 515240.7561], + [195678.4806, 515341.2577], + [195572.7625, 515445.7076], + [195623.3604, 515658.934], + [195842.7773, 515538.8303], + [197212.249, 516808.976], + [197366.3269, 517044.2785], + [197324.259, 517065.3316], + [197350.2154, 517099.4618], + [197687.955, 517027.0718], + [197858.1505, 516897.9792], + [197858.3654, 516983.4665], + [197984.3498, 517079.1894], + [197738.4708, 517491.8598], + [197660.9547, 517508.928], + [197631.5634, 517504.56], + [197540.59, 517587.49], + [197443.3876, 517796.3846], + [197437.6567, 517802.3975], + [197318.6622, 517927.2461], + [197305.0223, 517941.5572], + [197238.1914, 518015.4351], + [197206.434, 518053.869], + [197186.6301, 518077.8372], + [197155.5386, 518115.4653], + [197005.234, 518297.372], + [196988.6797, 518317.4066], + [196970.6198, 518339.2633], + [196964.5368, 518346.6252], + [196904.4153, 518403.9556], + [196891.8863, 518413.134], + [196882.8451, 518419.7573], + [196844.418, 518447.908], + [196802.1211, 518478.894], + [196660.0631, 518582.9635], + [196645.7386, 518593.4574], + [196641.7641, 518596.3691], + [196433.77, 518748.74], + [196256.4471, 518793.3959], + [196222.5317, 518801.9369], + [196129.5847, 518825.3438], + [195908.3377, 518881.0607], + [195844.638, 518897.1023], + [195812.0084, 518905.3195], + [195618.8916, 518953.9526], + [195534.4099, 518975.2278], + [195463.36, 518993.12], + [195394.394, 519020.2091], + [195387.9371, 519022.7451], + [195383.85, 519024.35], + [195333.34, 519067.7621], + [195329.0371, 519071.4603], + [195307.1879, 519090.2391], + [195288.6889, 519107.2562], + [195076.25, 519389.47], + [194744.1384, 519633.6099], + [194481.23, 519906.88], + [194211.94, 520059.54], + [194084.92, 520011.14], + [193955.22, 520037.25], + [193869.2349, 520136.5117], + [193623.74, 520191.65], + [193342.78, 520174.37], + [192499.94, 520484.15], + [192399.07, 520473.35], + [192375.04, 520296.09], + [192065.03, 520338.08], + [192027.068, 520398.751], + [191923.72, 520562.87], + [191899.55, 520776.94], + [191973.33, 521035.83], + [192395.6, 521452.1849], + [192745.73, 521797.41], + [192700.11, 521842.81], + [192843.7313, 521987.4893], + [193022.88, 522179.24], + [193158.08, 522095.55], + [193241.1, 522128.26], + [193687.28, 522655.92], + [193869.79, 522701.92], + [194073.18, 523061.75], + [194046.81, 523566.15], + [193648.765, 524203.833], + [193366.82, 524190.95], + [193395.97, 524580], + [193174.949, 524980.4754], + [193111.17, 525096.04], + [192526.94, 525434.56], + [192480.87, 525539.59], + [192431.159, 525717.433], + [192041.35, 527127.81], + [191668.1783, 528163.7079], + [191096.679, 529448.448], + [190020.44, 530570.73], + [189618.55, 530553.36], + [189463.0796, 530656.8177], + [189349.38, 530732.48], + [189232.65, 530988.9], + [189108.322, 531079.944], + [188605.37, 531448.25], + [188251.682, 531867.65], + [187040.945, 532742.089], + [186243.17, 533127.3011], + [185777.26, 533116.86], + [185657.27, 533191.19], + [185366.72, 533176.63], + [185281.543, 533244.1141], + [184748.11, 533230.84], + [184117.56, 533132.59], + [184106.48, 533459.58], + [183704.0378, 533852.3057], + [183076.36, 534479.85], + [182510.65, 535551.92], + [183506.448, 536376.851], + [183980.259, 536691.768], + [184160.1, 536758.497], + [184170.6416, 536716.8212], + [184198.863, 536610.929], + [184337.518, 536518.203], + [184460.104, 536317.264], + [184767.869, 536333.589], + [185085.261, 536150.114], + [185354.296, 535762.44], + [185270.696, 535505.176], + [185428.667, 535505.317], + [185680.902, 535689.09], + [185776.538, 535405.7401], + [186204.493, 535534.114], + [186532.051, 535464.617], + [186680.803, 535655.944], + [186858.973, 535357.474], + [187263.242, 535372.845], + [187469.908, 535160.092], + [187984.696, 534955.308], + [188206.216, 534995.517], + [188406.269, 535299.223], + [189136.157, 535567.27], + [189435.221, 535738.569], + [189619.204, 536187.392], + [190152.117, 536401.22], + [190378.198, 536670.361], + [190503.867, 536950.163], + [190668.438, 537135.894], + [191196.9479, 537508.0797], + [191109.047, 537945.427], + [191341.932, 538020.34], + [191093.7036, 538206.4611], + [191116.358, 538335.929], + [191377.775, 538398.222], + [191589.025, 538375.297], + [191624.582, 538474.718], + [191359.426, 538588.93], + [191588.838, 538782.18], + [192118.311, 538827.2381], + [192372.741, 538894.485], + [192544.678, 539018.495], + [192670.999, 539058.828], + [193317.271, 538597.589], + [193388.297, 538732.592], + [193314.168, 539065.757], + [193510.161, 539325.936], + [194265.506, 539622.349], + [194477.759, 539634.571], + [194431.788, 539572.657], + [194462.024, 539439.016], + [194690.076, 538777.03], + [195057.556, 538193.035], + [195390.642, 537347.906], + [195396.0913, 537331.163], + [195559.63, 537372.677], + [195672.67, 537321.608], + [195920.009, 537047.667], + [196077.344, 536764.697], + [196250.31, 536804.941], + [196813.939, 537158.781], + [197514.298, 537371.15], + [197962.557, 537446.788], + [198102.694, 537284.769], + [198415.571, 536610.186], + [198887.5055, 536917.484], + [199242.828, 537131.325], + [199310.824, 537148.05], + [199474.412, 537235.768], + [199579.815, 537349.936], + [199873.724, 537639.715], + [200201.318, 537790.6741], + [200344.506, 537866.107], + [200299.919, 537942.146], + [200004.021, 538444.818], + [199838.029, 539110.076], + [199968.4289, 539143.7959], + [200099.002, 539182.224], + [200436.0863, 539333.4255], + [201749.754, 539283.111], + [201903.754, 539368.574], + [202181.666, 539774.876], + [202564.96, 539941.702], + [204347.983, 541031.753], + [204953.067, 540324.863], + [205075.957, 539888.24], + [205509.016, 539341.247] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD04", + "od_naam": "Omgevingsdienst IJsselland", + "naam_alt": "OD IJsselland" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6024", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [119172.3545, 380543.324], + [119234.6, 380491.06], + [119152.93, 380463.19], + [119183.33, 380389.3], + [118999.85, 380352.57], + [118964.59, 380422.53], + [119058.88, 380528.13], + [119121.9, 380491.28], + [119172.3545, 380543.324] + ] + ], + [ + [ + [123582.83, 382646.6], + [123496.9, 382635.94], + [123493.32, 382800.32], + [123589.87, 382806.57], + [123582.83, 382646.6] + ] + ], + [ + [ + [123402.339, 383008.246], + [123397.97, 382912.42], + [123295.08, 382939.11], + [123301.75, 383136.68], + [123396.03, 383139.17], + [123402.339, 383008.246] + ] + ], + [ + [ + [123323.34, 383217.47], + [123306.22, 383154.87], + [123272.6, 383168.38], + [123257.77, 383216.36], + [123323.34, 383217.47] + ] + ], + [ + [ + [123682.23, 383115.23], + [123588.71, 383105.84], + [123583.74, 383255.06], + [123660.54, 383257.34], + [123682.23, 383115.23] + ] + ], + [ + [ + [123365.57, 383403.3], + [123290.37, 383397.86], + [123255.86, 383520.15], + [123377.76, 383535.45], + [123365.57, 383403.3] + ] + ], + [ + [ + [122774.77, 383292.76], + [122676.24, 383278.61], + [122620.54, 383453.37], + [122705.25, 383542.1], + [122681.035, 383565.051], + [122807.64, 383741.34], + [122873.58, 383729.03], + [122819.5579, 383661.9228], + [122855.09, 383616.01], + [122744.3, 383517.62], + [122850.2971, 383435.1923], + [122774.77, 383292.76] + ] + ], + [ + [ + [100303.054, 412776.9083], + [98469.4021, 412275.7099], + [98309.2373, 412159.2121], + [97454.4665, 411933.1738], + [96793.9069, 411951.8761], + [96778.0274, 411805.8479], + [96693.9005, 411785.0961], + [96637.1439, 412008.9075], + [96725.9414, 412154.2352], + [97460.999, 412337.999], + [98666.2261, 412682.4373], + [99173.2918, 412672.6014], + [99878.5818, 412922.0503], + [100547.9269, 412992.8083], + [100616.1669, 412952.9029], + [100303.054, 412776.9083] + ] + ], + [ + [ + [127459.961, 425903.005], + [128254.49, 425877.39], + [128329.078, 425884.292], + [128946.2449, 425500.4], + [128998.028, 425399.593], + [129010.079, 424999.236], + [129154.8602, 424735.6594], + [129397.858, 424464.48], + [129966.7325, 424077.6423], + [130099.526, 423987.342], + [130954.4715, 423649.4892], + [131359.342, 423465.147], + [131611.633, 423329.099], + [131915.9861, 423013.5854], + [132226.85, 422500.912], + [132494.892, 421897.515], + [132901.238, 421369.521], + [133100.093, 421256.905], + [133403.074, 421202.333], + [133699.394, 421255.992], + [133935.545, 421382.818], + [134299.733, 421868.919], + [134592.8539, 422072.1586], + [134900.385, 422150.415], + [135202.872, 422093.913], + [135518.299, 421934.091], + [135801.1189, 421694.1392], + [136290.336, 421174.456], + [136466.361, 421050.2013], + [137771.261, 420499.583], + [137912.996, 420200.282], + [137845.5787, 419892.7195], + [137682.877, 419499.836], + [137649.775, 419099.798], + [137770.382, 418799.941], + [138118.927, 418529.741], + [137799.523, 418031.964], + [136984.031, 417400.132], + [136931.898, 417200.63], + [136957.608, 416800.308], + [136999.997, 416610.998], + [137099.797, 416574.837], + [139549.6301, 417133.5786], + [139918.5779, 417173.7925], + [140500.279, 417154.713], + [141082.863, 417041.791], + [141760.933, 416857.017], + [142518.943, 416989.029], + [142785.96, 416569.38], + [142725.11, 416531.36], + [142789.92, 416321.17], + [142760.112, 416150.571], + [143114.5416, 415858.8878], + [143403.18, 415504.281], + [143569.141, 415641.359], + [143785.411, 415337.064], + [143967.472, 415391.774], + [144211.708, 415042.51], + [144034.822, 414013.962], + [144087.9799, 413737.9179], + [144133.452, 413546.682], + [144910.153, 413925.479], + [144531.499, 412887.606], + [144636.421, 412899.426], + [144754.2459, 412596.8645], + [144901.462, 412483.274], + [145309.158, 412672.7], + [145389.098, 412490.929], + [145441.324, 412506.567], + [145607.2818, 412343.6565], + [145623.454, 412297.893], + [145439.551, 412048.92], + [145409.2894, 411822.6503], + [145402.2931, 411812.2199], + [144043.323, 411408.905], + [143910.322, 411353.39], + [143864.405, 411262.255], + [143834.259, 410575.923], + [143657.728, 409454.974], + [142600.897, 409476.824], + [142206.786, 409105.64], + [142380.352, 409017.459], + [140311.8558, 408953.1234], + [139752.853, 408938.541], + [139402.9, 408316.611], + [139119.55, 408298.262], + [139068.17, 407684.871], + [138893.74, 407369.382], + [139276.877, 405656.709], + [140106.929, 405583.086], + [140545.646, 405669.066], + [140514.076, 405885.335], + [140586.04, 405889.297], + [140627.647, 405692.442], + [140934.686, 405778.871], + [141475.086, 405643.847], + [141486.4422, 405489.4875], + [141437.699, 405355.726], + [141501.873, 405084.049], + [141553.6537, 405063.3835], + [141599.816, 404657.401], + [141752.977, 404363.966], + [142121.2479, 403916.0269], + [142228.118, 403766.654], + [142581.255, 403519.117], + [142576.599, 403496.511], + [142776.288, 402982.81], + [143587.09, 403676.854], + [143559.894, 403443.752], + [143694.16, 403283.119], + [143704.807, 403075.294], + [143830.328, 403021.537], + [143987.096, 403013.481], + [144593.486, 403262.287], + [144638.409, 403354.477], + [144799.694, 403338.41], + [144942.774, 403237.858], + [145108.2901, 403307.1581], + [145267.832, 403560.989], + [145233.769, 403763.601], + [145540.469, 403888.456], + [145557.384, 403756.276], + [145880.193, 404015.352], + [146220.1811, 403589.0821], + [146598.2106, 403026.1289], + [146800.388, 402635.277], + [146761.661, 402586.766], + [146828.868, 402309.369], + [147273.497, 402100.889], + [147486.41, 401772.3049], + [147273.038, 401729.796], + [146786.826, 401341.904], + [146388.402, 401232.267], + [145865.549, 400510.441], + [145397.39, 400179.17], + [145328.674, 400087.851], + [145300.256, 399801.296], + [145297.853, 399772.3037], + [145224.911, 398960.111], + [146280.3156, 396916.9544], + [146484.8758, 396564.8537], + [146795.272, 396092.403], + [147098.255, 395991.145], + [147004.906, 395656], + [147390.005, 395536.336], + [147347.536, 395105.461], + [146860.65, 395255.963], + [146728.943, 394924.236], + [146409.847, 395036.545], + [146266.017, 394642.673], + [145712.729, 394604.169], + [145444.836, 393637.103], + [145062.704, 392983.12], + [144424.394, 393567.79], + [144148.076, 392449.509], + [143702.325, 392028.963], + [143845.672, 390952.306], + [144250.693, 391112.314], + [144500.337, 391666.916], + [145562.0049, 391188.8077], + [145480.196, 391007.63], + [145541.81, 390808.16], + [145328.205, 390822.7], + [145272.369, 389993.145], + [143976.135, 389975.934], + [144124.422, 389112.15], + [144079.736, 388977.421], + [143814.852, 388909.474], + [143752.2277, 388827.6761], + [143602.1982, 388071.4403], + [143413.438, 387104.614], + [142667.7324, 386297.9682], + [141357.33, 382364.343], + [141356.988, 382363.323], + [141298.713, 382351.974], + [140936.556, 382202.956], + [140462.23, 382370.836], + [140135.055, 382146.966], + [139948.281, 382313.6], + [139099.837, 382587.772], + [139056.599, 382215.949], + [138727.014, 382163.98], + [138677.737, 382232.472], + [136379.648, 382163.208], + [135167.153, 382239.882], + [135345.681, 382509.103], + [133675.9923, 386733.8437], + [133555.91, 386977.09], + [131553.092, 386948.54], + [131288.443, 386950.506], + [131116.294, 387348.605], + [131051.12, 387364.73], + [131096.88, 387403.18], + [130733.98, 387869.31], + [130823.4, 387916.18], + [130890.22, 388508.24], + [130899.07, 388667.68], + [130794.36, 388669.42], + [130800.538, 388720.162], + [130409.439, 388743.592], + [130332.448, 388581.328], + [129650.962, 388144.818], + [129247.527, 387441.572], + [128850.67, 387095.19], + [128647.15, 386475.63], + [128626.25, 386036.37], + [128824, 385663], + [128816.646, 385530.808], + [128769.1, 385406.32], + [128851.11, 385282.21], + [128817.98, 385050.68], + [128456.435, 384508.084], + [128389.127, 384012.982], + [127965.346, 383570.14], + [125509.959, 381549.25], + [123110.081, 378644.229], + [123037.424, 379054.523], + [122795.312, 378950.236], + [122850.016, 378712.627], + [123031.366, 378576.623], + [122550.306, 378384.784], + [122056.435, 378542.587], + [122333.066, 378737.228], + [122805.02, 378738.826], + [122784.02, 378843.15], + [122714.45, 378924.78], + [122422.28, 378900.53], + [122226.9403, 378946.4408], + [122336.412, 379145.378], + [121805.04, 379343.411], + [121832.392, 379411.649], + [121696.48, 379605.51], + [121769.707, 379870.632], + [121524.734, 380110.511], + [121499.929, 380195.643], + [121388.038, 380192.229], + [121361.206, 380202.424], + [121444.471, 380418.274], + [121373.183, 380475.923], + [121293.615, 380238.566], + [121110.2016, 380276.7232], + [121123.113, 380490.01], + [121283.547, 380484.444], + [121328.063, 380602.848], + [121235.066, 380646.137], + [121155.5177, 380573.7938], + [121187.756, 380662.997], + [121106.728, 380728.745], + [120936.647, 380597.96], + [120986.219, 380521.946], + [121008.039, 380424.471], + [120905.483, 380398.828], + [120859.0285, 380527.5924], + [120736.991, 380533.01], + [120326.776, 380818.7386], + [120200.339, 380777.646], + [120125.498, 380809.256], + [120139.623, 380949.78], + [119926.3536, 380938.2329], + [119930.039, 380805.175], + [119809.066, 380826.08], + [119701.431, 380704.551], + [119607.093, 380675.737], + [119559.8748, 380828.2574], + [119267.454, 380750.641], + [119286.688, 380697.744], + [119220.059, 380624.544], + [119106.9511, 380653.0629], + [118929.842, 380545.389], + [118757.116, 380386.038], + [118773.367, 380303.985], + [118903.895, 380219.417], + [118832.586, 380126.184], + [118770.202, 380193.485], + [118356.886, 380278.095], + [118298.5834, 380354.0721], + [118310.336, 380563.508], + [118156.596, 380539.103], + [117756.917, 380692.529], + [117616.665, 380711.223], + [117532.132, 380540.029], + [116899.8488, 380746.258], + [115668.944, 380603.971], + [113868.231, 380292.875], + [113663.663, 380207.44], + [113605.211, 380325.083], + [113403.475, 380153.697], + [112778.536, 380497.519], + [112602.208, 380698.523], + [112432.293, 380732.025], + [112296.708, 380658.383], + [112146.925, 380823.015], + [112190.127, 380979.883], + [112116.876, 381014.003], + [111969.381, 381351.564], + [112084.576, 381939.704], + [111843.219, 382560.5913], + [111915.824, 382597.49], + [111969.9298, 382550.5006], + [112366.231, 382680.737], + [113232.865, 382773.137], + [113314.07, 382726.08], + [113404.125, 382492.2], + [113764.1, 382321.393], + [113911.687, 382299.296], + [114181.694, 382386.836], + [114458.365, 382245.928], + [114557.565, 382328.909], + [114697.8499, 382169.426], + [114742.519, 382084.453], + [115012.905, 382074.741], + [115557.0699, 381827.5789], + [115622.695, 381671.763], + [115945.1, 381705.211], + [116030.728, 381606.048], + [115996.441, 381485.949], + [116485.608, 381329.613], + [116452.358, 381256.252], + [116570.298, 381175.927], + [116617.855, 381265.864], + [116710.1082, 381222.9446], + [116628.123, 381078.458], + [116686.432, 381049.941], + [116775.17, 381188.47], + [117041.916, 381622.137], + [117010.054, 381636.684], + [116818.0528, 381544.8861], + [116774.681, 381446.52], + [116467.005, 381420.609], + [116258.233, 381491.087], + [116198.1494, 381620.4196], + [116119.675, 381613.744], + [116144.417, 381740.506], + [115898.46, 383063.357], + [115971.861, 383143.572], + [115805.067, 384543.838], + [116169.915, 384792.277], + [116510.302, 385515.643], + [116650.853, 385641.563], + [116861.529, 385362.51], + [117062.198, 385441.046], + [117249.719, 385695.122], + [116861.239, 385954.7], + [116701.701, 385941.763], + [116765.716, 386689.534], + [116960.031, 387226.478], + [117009.27, 387862.96], + [117118.852, 388107.026], + [116826.156, 388244.893], + [116244.5121, 388230.4741], + [115972.401, 388270.391], + [115680.503, 388377.711], + [115615.34, 388707.408], + [115426.989, 389038.488], + [115484.237, 389267.196], + [115440.869, 389476.008], + [115278.326, 389687.977], + [114610.1853, 389980.9912], + [114381.285, 390004.493], + [114357.9064, 390091.6285], + [114036.308, 390232.666], + [113942.6395, 390212.5201], + [113876.036, 390262.169], + [113806.486, 390252.25], + [113772.693, 390212.669], + [113704.397, 390094.3], + [113682.943, 390124.745], + [113621.04, 390104.929], + [113591.202, 390073.048], + [113376.252, 390172.659], + [113265.119, 390151.215], + [113189.977, 390253.04], + [113050.501, 390233.877], + [112893.2021, 390738.114], + [112485.036, 390836.446], + [112478.087, 390826.417], + [112418.618, 390839.019], + [112421.147, 390854.39], + [112409.708, 390856.73], + [111453.554, 390559.834], + [111366.942, 390402.636], + [111335.929, 390314.367], + [111129.082, 390339.131], + [111121.07, 390359.002], + [110942.572, 390278.855], + [110678.8, 389933.7], + [110751.1, 389793.65], + [110728.94, 389675.08], + [110617.8769, 389406.3615], + [110526.11, 389269.68], + [110506.3, 389136.4], + [109629.721, 388703.999], + [109291.573, 388524.465], + [108980.3568, 387956.6935], + [108687.164, 387367.063], + [108364.185, 387104.235], + [108425.052, 386858.762], + [107474.69, 386656.61], + [107439.1674, 386558.452], + [107529.222, 386488.88], + [107197.075, 385979.728], + [107193.962, 385880.888], + [106753.15, 384968.04], + [106289.99, 384921.39], + [104904.3022, 384152.3795], + [105098.39, 382161.74], + [104735.32, 382142.63], + [104173.91, 382018.59], + [103849.012, 382232.347], + [103492.71, 381847.64], + [103118.373, 381697.837], + [102854.06, 381811.88], + [102610.38, 382043.57], + [102344.17, 382140], + [100051.4348, 382632.0042], + [99440.524, 382776.309], + [99039.99, 382782.93], + [99021.9782, 382845.0062], + [98502.21, 382952.55], + [95755.339, 381891.44], + [95406.6, 384842.93], + [96706.62, 387474.94], + [96025.3, 388493.65], + [92440.97, 387975.356], + [91994.93, 388084.229], + [91734.417, 388085.858], + [91394.977, 387865.755], + [91091.3518, 387506.1102], + [91046.451, 387396.192], + [90919.504, 387302.556], + [90906.529, 387289.202], + [90895.535, 387304.901], + [90371.838, 387162.844], + [89673.126, 387077.931], + [89363.471, 387050.391], + [89355.4942, 387044.8416], + [85760.715, 385184.356], + [85323.356, 384948.758], + [85176.754, 385052.744], + [85088.95, 384841.751], + [84971.152, 384780.064], + [84936.446, 384672.924], + [85442.356, 384493.978], + [85819.054, 384614.889], + [86124.929, 384140.624], + [86159.289, 384002.176], + [86048.936, 383876.726], + [86037.642, 383403.173], + [86273.852, 383370.034], + [86156.212, 382965.98], + [85831.3111, 383072.2787], + [85815.288, 382955.509], + [85975.28, 382960.104], + [85946.391, 382760], + [86009.749, 382445.549], + [85741.231, 382499.301], + [85680.657, 382156.772], + [85625.052, 382178.998], + [85198.196, 381808.419], + [85725.1665, 380382.7088], + [85731.6099, 380365.2764], + [88471.851, 376643.258], + [88006.075, 376231.088], + [88189.867, 376049.476], + [88330.035, 375791.271], + [88431.856, 375398.087], + [87772.449, 375560.029], + [86758.0407, 375000], + [86055.917, 374612.03], + [85476.3091, 374480.3443], + [85157.602, 374384.898], + [85123.822, 374483.126], + [84755.546, 374453.751], + [84134.371, 374660.685], + [84024.737, 374595.5], + [83907.271, 374730.8775], + [82824.884, 374852.241], + [82820.325, 374899.439], + [82154.393, 374784.372], + [81890.8503, 376132.3456], + [81752.3471, 376802.4473], + [81709.623, 377024.762], + [77733.07, 376905.01], + [77543.422, 377533.3726], + [77485.685, 377700.41], + [77116.343, 377750.124], + [76979.946, 378085.437], + [77141.667, 378259.405], + [77192.259, 379618.428], + [76849.06, 381415.31], + [77043.92, 381805.13], + [77706.646, 382359.108], + [77007.031, 383997.815], + [74653.4, 389511.66], + [74290.3415, 390361.8322], + [73890.109, 391299.06], + [73888.58, 391755.62], + [73975.7164, 392292.9427], + [74927.575, 394913.672], + [75119.02, 395550.39], + [75163.574, 396342.405], + [75130.74, 396605.3141], + [74924.01, 397313.03], + [74632.53, 397836.34], + [72646.34, 400345.13], + [72431.88, 400682.43], + [72199.28, 401234.41], + [72107.64, 401623.47], + [72068.806, 402021.278], + [72106.62, 402588.3601], + [72189.5913, 402952.0962], + [72619.24, 403914.35], + [73138.97, 404519.38], + [73800.36, 404965.19], + [74731, 405324], + [75394.0364, 405646.3905], + [75606.8389, 405553.6905], + [75457.306, 405475.8831], + [75643.1493, 405424.0658], + [76470.9953, 405441.6773], + [76491.2722, 405268.4295], + [76869.0579, 405340.2244], + [76911.5498, 405525.3098], + [77272.1425, 405829.2863], + [77771.8433, 406046.5083], + [77970.0725, 406066.3208], + [78091.119, 405967.6778], + [78526.5145, 406242.5976], + [79064.594, 406313.0615], + [79253.9319, 406407.7809], + [79199.5654, 406132.6636], + [79416.9708, 406135.1128], + [79395.7419, 406473.9484], + [79446.531, 406511.5376], + [79662.5506, 406455.7964], + [80394.0295, 406821.8263], + [80960.639, 406926.0633], + [81973.7296, 406740.6104], + [82320.3993, 406786.239], + [83235.1866, 407097.9909], + [83988.84, 407571.8864], + [84529.8381, 408083.0834], + [84697.2033, 407977.6071], + [85015.025, 407494.0285], + [85049.2918, 407496.9413], + [85068.2216, 407514.8629], + [84946.8441, 407692.4799], + [84971.5259, 407700.3866], + [85129.2341, 407583.4596], + [85162.6719, 407619.648], + [84813.416, 408058.1184], + [85112.2759, 408315.6674], + [85015.0915, 408453.95], + [85187.6463, 408540.0973], + [85559.4048, 408989.0759], + [85712.0884, 409311.6285], + [85863.6589, 409366.2228], + [86274.5865, 410360.4143], + [86187.0765, 410469.4315], + [86184.1264, 410612.8995], + [86309.7779, 410657.9551], + [86711.3637, 410997.6132], + [87235.3436, 411469.4896], + [87080.5312, 411657.3481], + [86597.4984, 411269.0644], + [86509.2498, 411260.5261], + [86011.9871, 410789.9671], + [86146.433, 411076.8171], + [86849.3056, 411586.5136], + [86839.9544, 411716.56], + [86953.0797, 411900.6944], + [86859.2312, 412012.7668], + [86396.5445, 411767.7738], + [86185.402, 411776.9319], + [86187.5226, 411819.8466], + [86431.506, 411813.6613], + [86785.322, 412116.166], + [86660.7719, 412087.6093], + [86553.0003, 412190.207], + [86341.8918, 412024.4393], + [86305.7371, 411936.8864], + [86271.8034, 411962.9576], + [86364.6296, 412133.3305], + [87004.6491, 412675.1911], + [87126.376, 412665.8385], + [86816.3402, 412410.6883], + [86946.0453, 412218.1219], + [87210.27, 412476.3393], + [87252.0763, 412662.491], + [87289.3643, 412666.2451], + [87236.1998, 412476.2631], + [86907.7724, 412052.1758], + [87002.027, 411940.6084], + [87657.4259, 412264.0924], + [88334.1685, 412823.6575], + [88574.8366, 412884.5869], + [88798.0019, 412880.5504], + [88381.0726, 412776.2513], + [87534.2278, 412062.6351], + [87462.6809, 411975.6943], + [87593.9034, 411817.393], + [87613.5553, 411797.3179], + [88108.2505, 412191.2803], + [88578.4791, 412488.1916], + [88917.6186, 412417.7211], + [89285.9524, 412525.4679], + [89334.016, 412498.4693], + [89171.1183, 412461.855], + [89247.5534, 412373.7696], + [89291.6108, 412353.0049], + [89494.3017, 412429.9909], + [89762.1518, 412356.6567], + [89771.1421, 412343.5876], + [89596.0191, 412275.8563], + [89709.3518, 412177.8124], + [89684.7534, 412126.1925], + [89655.2195, 412124.8551], + [89656.6016, 412017.1319], + [89760.1514, 412029.54], + [89784.8511, 412200.1542], + [89669.41, 412270.6683], + [89741.5591, 412299.8459], + [89889.0772, 412196.3732], + [90294.1258, 411861.4378], + [91088.3028, 411534.5603], + [92968.7238, 410847.6001], + [93164.9015, 410885.1023], + [93191.2176, 410974.4567], + [94178.2947, 410849.6166], + [95000, 410904.2253], + [95349.5663, 410988.7363], + [95461.2486, 411132.8629], + [95516.209, 410801.0371], + [95437.8888, 410519.1504], + [95466.8843, 410522.8501], + [95465.056, 410596.571], + [95481.0875, 410597.862], + [95489.8351, 410579.913], + [95520.5529, 410589.8071], + [95510.2672, 410611.1351], + [95515.05, 410665.9423], + [95557.4351, 410800.0682], + [95524.2338, 411048.7621], + [95575.0803, 411024.2733], + [95576.301, 410989.088], + [95612.7849, 410980.3074], + [95618.5322, 411018.0626], + [95715.5293, 411004.1985], + [95735.4308, 411158.076], + [95527.9259, 411190.2906], + [95506.521, 411082.7165], + [95484.9966, 411212.0426], + [95873.4338, 411162.4324], + [95907.486, 411068.215], + [96097.4696, 411040.7798], + [96249.117, 411060.3831], + [96247.3466, 411269.3479], + [97066.2238, 411410.832], + [98410.5278, 411812.69], + [98780.7955, 411821.0223], + [100691.368, 412312.3551], + [101926.1998, 413259.8894], + [102055.4529, 413174.4604], + [102168.869, 413070.7841], + [102194.0003, 413110.0294], + [102015.4463, 413298.1826], + [101918.0848, 413332.5383], + [102427.982, 413644.676], + [103266.928, 414004.3534], + [103285.803, 414097.8523], + [103118.9198, 414556.8849], + [103148.297, 414566.0163], + [103316.319, 414111.3331], + [103387.2028, 414050.501], + [103568.6314, 414105.5595], + [103867.3201, 414051.9358], + [103633.4583, 414715.879], + [103646.037, 414719.7644], + [103678.3625, 414729.7495], + [103722.475, 414741.711], + [105807, 415293], + [105882.508, 415371.731], + [106252, 415757], + [107062, 416179], + [107791, 416689], + [109242, 417897], + [110081, 418742], + [110370, 419101], + [110652, 419618], + [111063, 420980], + [111391, 421628], + [112087.2221, 422467.2368], + [112139.9663, 422513.8831], + [112664.729, 422920.275], + [114302.434, 423623.865], + [114970.74, 423681.498], + [116486, 423412], + [116985, 423388], + [117667, 423485], + [118250, 423695], + [118614, 423915], + [120347.21, 425436.655], + [120387.7319, 425469.563], + [120677.158, 425704.034], + [122041.9291, 426416.1029], + [122696.466, 426646.014], + [123275.244, 426733.97], + [123901, 426731], + [124339.6188, 426609.1059], + [125584.4167, 426356.7633], + [126212.0702, 426198.7255], + [126657.2433, 426082.5601], + [127459.961, 425903.005] + ], + [ + [124494.56, 384745.61], + [124130.47, 384680.2], + [124125.78, 384731.93], + [123987.41, 384728.55], + [123989.36, 384692.05], + [123771.06, 384686.93], + [123721.32, 384633.41], + [123527.2811, 384614.4389], + [123434.8775, 384592.6456], + [123546.346, 384362.657], + [123688.96, 384367.11], + [123650.3101, 384298.79], + [123684.29, 384291.4], + [123836.7537, 384321.1616], + [123847.56, 384235.49], + [123877.23, 384251.32], + [123920.9027, 384103.2897], + [123936.35, 384105.83], + [123892.26, 384259.34], + [123943.11, 384286.49], + [123960.04, 384236.71], + [124015.8, 384242.23], + [124008.65, 384319.44], + [124154.68, 384359.3099], + [124158.58, 384491.12], + [124329.97, 384537.85], + [124355.6, 384447.42], + [124243.38, 384392.75], + [124355.36, 384347], + [124464.93, 384341.27], + [124493.66, 384531.1], + [124658.34, 384576.53], + [124775.99, 384652.84], + [124697.5, 384752.54], + [124801.81, 384817.72], + [124713.62, 385049.49], + [124571.91, 385029.49], + [124653.38, 384820.27], + [124494.56, 384745.61] + ], + [ + [124453.0934, 384159.7722], + [124308.4497, 384030.529], + [124313.09, 383968.52], + [124183.1064, 383948.9549], + [124184.62, 383933.36], + [124350.2651, 383968.7062], + [124466.805, 383974.526], + [124475.83, 383936.69], + [124596.21, 383931.16], + [124533.9602, 384051.6218], + [124581.05, 384056.19], + [124579.58, 384116.4], + [124453.0934, 384159.7722] + ], + [ + [123902.44, 383096.99], + [123972.87, 382932.3], + [124095.36, 382983.96], + [124056.91, 383133.44], + [123902.44, 383096.99], + [123866.87, 383211.61], + [123930.899, 383308.379], + [123898.44, 383467.23], + [123822.19, 383453.31], + [123839.8584, 383302.8474], + [123660.0435, 383285.0228], + [123651.83, 383374.15], + [123534.82, 383369.63], + [123553.061, 383626.118], + [123472.49, 383629.64], + [123510.12, 383766.29], + [123776.9263, 383741.4657], + [123775.677, 383901.8235], + [123802.9, 383911.59], + [123830.6042, 383736.4714], + [123927.91, 383729.0901], + [123905.97, 383946.76], + [123854.9401, 383931.81], + [123809.4, 383914.2], + [123779.43, 384054.39], + [123684.3616, 384020.234], + [123595.56, 384007.1], + [123575.32, 384072.93], + [123644.35, 384115.79], + [123601.76, 384236.75], + [123443.9, 384003.91], + [123473.35, 383883.01], + [123434.8, 383875.29], + [123431.17, 383895.62], + [123380.66, 383884.3], + [123285.295, 383855.697], + [123245.3, 383806.16], + [123205.7, 383808.71], + [123205.5549, 383746.0706], + [123122.67, 383711.38], + [123133.19, 383648.15], + [123191.01, 383543.65], + [123141.0169, 383487.7834], + [123092.61, 383372.91], + [122995.59, 383515.97], + [123029.35, 383537.78], + [122971.23, 383680.12], + [122945.366, 383670.7618], + [122953.53, 383723.15], + [122994.0713, 383719.1632], + [122932.2134, 383848.2794], + [123079.11, 383936.54], + [122898.8998, 384041.25], + [122778.82, 383969.06], + [122735.86, 384081.51], + [122816.4776, 384083.9454], + [122669.009, 384172.5525], + [122800.62, 384238.08], + [122732.76, 384356.95], + [122624.89, 384254.31], + [122558.707, 384200.227], + [122481.83, 384308.99], + [122402.6712, 384181.8236], + [122513.9792, 384111.7464], + [122540.61, 384178.02], + [122626.87, 384077.75], + [122579.97, 384070.2], + [122683.16, 383832.71], + [122650.14, 383766.56], + [122625.1899, 383780.81], + [122460.67, 383612.43], + [122600.3, 383581.91], + [122531.09, 383486.46], + [122606.52, 383438.45], + [122501.07, 383324.64], + [122564.8803, 383237.2613], + [122378, 383013.39], + [122310.35, 383081.1], + [122166.39, 383023.02], + [122319.07, 382936.4], + [122463.2031, 382956.0921], + [122689.6418, 382869.6443], + [122689.54, 382829.13], + [122876.6, 382801.98], + [122857.151, 382854.207], + [122924.3415, 382851.7383], + [122934.93, 382800.17], + [123055.65, 382557.68], + [123122.64, 382478.13], + [123269.9292, 382448.7757], + [123455.79, 382532.65], + [123620.32, 382359.14], + [123879.72, 382499.03], + [123898.67, 382874.32], + [123642.29, 382888.06], + [123777.15, 383080.84], + [123902.44, 383096.99] + ], + [ + [122441.41, 383983.65], + [122406.32, 383994.92], + [122390.545, 383978.75], + [122395.3799, 383920.22], + [122416.4099, 383920.76], + [122414.3597, 383935.8292], + [122441.41, 383983.65] + ], + [ + [123322.25, 384381.42], + [123349.01, 384273.22], + [123500.16, 384354.64], + [123440.47, 384451.087], + [123322.25, 384381.42] + ], + [ + [123156.68, 384437.32], + [123107.364, 384504.151], + [123033.6, 384487.47], + [123105.92, 384404.64], + [123156.68, 384437.32] + ], + [ + [123183.09, 384598.02], + [123245.9, 384503.43], + [123344.31, 384563.59], + [123267.971, 384689.948], + [123183.09, 384598.02] + ], + [ + [123001.8803, 384130.83], + [122903.93, 384275.03], + [122811.08, 384242.23], + [122917.6298, 384080.85], + [122955.68, 384109.59], + [123001.8803, 384130.83] + ], + [ + [123978.93, 384117.38], + [123992.82, 384071.49], + [124071.55, 384099.24], + [124057.94, 384145.23], + [123978.93, 384117.38] + ], + [ + [123890.29, 383502.21], + [123959.43, 383452.23], + [124001.2, 383300.34], + [124060.62, 383317.4], + [124035.9378, 383417.1183], + [124123.92, 383545.75], + [124049.94, 383532.73], + [123890.29, 383502.21] + ], + [ + [123356.24, 379756.4], + [123082.77, 379652.76], + [123632.59, 379674.68], + [123593.58, 380115.25], + [123547.652, 380107.299], + [123149.83, 379982.73], + [123356.24, 379756.4] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD25", + "od_naam": "Omgevingsdienst Midden- en West-Brabant", + "naam_alt": "OMWB" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6023", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [107956.3411, 463433.4159], + [108357.322, 462883.428], + [108340.7551, 462709.5338], + [108249.89, 462432.793], + [108237.3115, 462048.7168], + [108303.381, 462060.994], + [109610.9044, 463308.1711], + [109638.797, 463311.5734], + [109757.848, 463344.093], + [109810.911, 463630.897], + [109961.075, 463689.0393], + [110842.821, 464030.852], + [111992.729, 460952.942], + [112009.1335, 460802.315], + [112059.962, 460493.974], + [111964.2509, 460223.0723], + [111958.1463, 460206.5514], + [111818.036, 459695.96], + [111580.91, 459214.19], + [111490.162, 459168.344], + [110713.5896, 457958.8149], + [110582.964, 457783.841], + [111696.686, 458050.548], + [111842.4145, 458125.1893], + [111989.128, 458198.425], + [112052.9603, 458364.8059], + [112109.4171, 458475.7168], + [112211.823, 458571.132], + [112291.7762, 458552.6534], + [112495.068, 458505.669], + [112669.471, 458522.699], + [112783.64, 458724.9], + [113061.957, 458689.741], + [113132.715, 458793.419], + [113171.212, 458818.034], + [113291.019, 458798.908], + [113380.6051, 458999.7879], + [113443.062, 459033.5125], + [113627.462, 458960.638], + [113683.593, 458973.215], + [113716.293, 459039.566], + [113620.686, 459232.495], + [113640.888, 459300.263], + [113693.52, 459342.4], + [113782.676, 459331.195], + [113928.319, 459255.586], + [114229.06, 459305.091], + [114243.54, 459508.243], + [116506.511, 457806.082], + [116441.618, 457612.094], + [116350.072, 457589.409], + [116362.578, 456210.578], + [116505.1805, 454794.2305], + [116504.5355, 454762.0646], + [116563.468, 454732.107], + [116544.401, 454188.889], + [117008.653, 454205.725], + [116989.5077, 453997.1542], + [117074.76, 453972.561], + [116779.878, 453316.979], + [117506.267, 453540.287], + [118524.7529, 453525.3204], + [119756.743, 453508.865], + [119411.391, 452921.735], + [118590.504, 452449.847], + [118023.452, 452344.197], + [117405.945, 451904.071], + [116743.566, 451424.676], + [116734.229, 451365.346], + [115888.79, 449997.992], + [115517.547, 449655.272], + [115165.782, 449584.948], + [115297.5867, 449192.9861], + [115363.578, 448953.4711], + [115381.697, 448870.836], + [114606.718, 448377.175], + [114922.7261, 447470.3737], + [115058.9595, 447467.9878], + [115257.386, 447467.55], + [115555.5704, 447442.7733], + [115777.218, 447450.834], + [116165.0573, 447657.8952], + [116407.111, 447802.695], + [116978.949, 447707.771], + [117448.947, 447735.809], + [117911.306, 447896.434], + [117932.252, 447873.202], + [118026.7729, 447665.8438], + [118553.499, 446629.5851], + [118603.654, 446531.47], + [118360.706, 446404.063], + [115898.439, 445862.938], + [116521.5, 445060.101], + [117082.618, 444337.983], + [117006.341, 444275.948], + [117698.1411, 443243.9613], + [117783.0284, 443115.2321], + [117920.86, 443107.13], + [118071.8374, 442963.2824], + [118796.5834, 442308.1474], + [119062.426, 441792.631], + [119154.1797, 441462.1934], + [119376.8453, 441045.9756], + [119556.0361, 440711.3596], + [119633.4377, 440402.6184], + [119837.7523, 439577.0572], + [119969.662, 438963.878], + [119590.71, 439002.57], + [118973.343, 439192.96], + [118693.066, 439284.5822], + [117834.3855, 439351.5771], + [117179.994, 439250.163], + [116842.1158, 439054.4371], + [115585.9808, 437683.7337], + [115384.22, 437498.76], + [114690.277, 437179.1611], + [113964.235, 436965.5177], + [113060.9771, 436684.4267], + [112343.236, 436561.224], + [111967.956, 436376.798], + [110728.0839, 435389.8197], + [109351.581, 434605.748], + [108787.743, 434372.651], + [108086.267, 434520.402], + [107075.7221, 434265.0992], + [106366.174, 434068.049], + [106041.8959, 433863.9575], + [105860.059, 433763.959], + [105501.353, 433696.037], + [104571.112, 433716.0791], + [103515.582, 433843.7951], + [103096.4959, 433820.3466], + [102558.7223, 433703.511], + [102258.7715, 433708.7078], + [102156.109, 433723.271], + [100472.2212, 434258.7183], + [100183, 434448.333], + [99654.333, 435051], + [99196.047, 435258.484], + [99590.043, 435371.464], + [99738.209, 435349.678], + [100074.043, 435174.862], + [100052.122, 435377.597], + [100292.308, 435532.265], + [100311.9846, 435399.1119], + [100351.095, 435429.112], + [100379.801, 435364.458], + [100603.5356, 435546.2742], + [100497.814, 435694.799], + [100608.4899, 435774.0274], + [100612.44, 435774.7002], + [100930.565, 435680.709], + [102429.2964, 435835.9105], + [103252.229, 435998.035], + [103780.036, 436258.226], + [103796.3939, 436270.4816], + [102951.3118, 437265.4851], + [102480.8034, 437810.2098], + [102076.411, 438344.637], + [102202.023, 438615.031], + [102163.6716, 438660.2508], + [101845.8921, 439034.7965], + [101591.2938, 439335.4708], + [101279.5431, 439708.5904], + [101129.738, 439885.505], + [100861.149, 440206.4352], + [101023.216, 440406.01], + [100842.2829, 440687.0871], + [100567.8204, 441114.4049], + [100548.655, 441141.2181], + [100219.5565, 441601.6549], + [100102.53, 441765.3601], + [99800.109, 442187.763], + [100218.392, 442540.542], + [100263.914, 442501.198], + [101032.5958, 442927.6853], + [100512.5589, 443300.5403], + [100483.05, 443372.988], + [100490.7673, 443449.535], + [100531.5639, 443486.9535], + [100511.5554, 443544.1207], + [100843.15, 444690.907], + [100548.21, 445396.5351], + [99483.4077, 444916.372], + [99548.2063, 444683.8325], + [99367.12, 444533.15], + [99470.93, 443945.55], + [98871.41, 443718.14], + [99092.54, 443220.08], + [99395.875, 443358.925], + [99437.737, 443395.575], + [99469.9, 443350.62], + [99438.269, 443322.9551], + [99130.7382, 443053.9109], + [99147.72, 443030.32], + [98977.82, 442920.13], + [98941.4678, 442926.146], + [98865.79, 442938.67], + [98635.27, 442848.44], + [98528.62, 442859.2], + [98390.76, 442911.08], + [98358.19, 442888.4], + [98325.46, 442933.94], + [98237.8118, 442851.5731], + [98264.3726, 442814.9505], + [98271.64, 442804.93], + [98233.74, 442779.02], + [98253.64, 442751], + [98194.32, 442679.01], + [97920.6199, 442553.4942], + [97908.4565, 442596.8742], + [97758.298, 442605.94], + [97314.64, 443043.42], + [97609.022, 443254.858], + [97737.409, 443509.712], + [97618.233, 443714.498], + [97546.089, 444049.6091], + [97360.817, 444209.814], + [97380.5208, 444394.604], + [97315.032, 444816.97], + [97283.6917, 444982.2422], + [97246.175, 445125.745], + [97388.218, 445240.174], + [97295.052, 445395.417], + [97495.72, 445593.79], + [97750.0229, 446500.7396], + [97850.834, 446724.86], + [98015.082, 447611.761], + [97997.251, 448108.7], + [98109.505, 449276.586], + [98190.1762, 449553.7139], + [98246.847, 449751.406], + [98477.71, 450036.641], + [98470.4087, 450314.8973], + [98321.158, 450737.612], + [98615.226, 452571.141], + [98123.157, 452929.655], + [98079.403, 452874.321], + [97779.732, 453107.902], + [97810.443, 453165.823], + [96484.347, 454207.09], + [96587.1844, 454363.0009], + [96501.524, 454447.676], + [96520.9267, 454486.2313], + [96648.734, 454634.3026], + [96247.364, 454992.211], + [96278.886, 455039.532], + [96558.071, 455368.439], + [96734.354, 455416.415], + [96714.49, 457420.777], + [96657.803, 459477.141], + [97106.3061, 459274.6975], + [97181.106, 459560.302], + [97023.478, 459598.575], + [97342.7848, 460441.1014], + [97344.8928, 460445.1426], + [97515.292, 460788.762], + [97409.675, 460906.441], + [97427.576, 460980.177], + [97704.666, 461281.52], + [97626.1204, 461375.31], + [97736.177, 461461.645], + [98377.4507, 460736.8963], + [98457.3309, 460769.0921], + [98784.567, 461102.928], + [99094.963, 462006.985], + [99174.929, 463084.128], + [99259.792, 462987.404], + [101536.5405, 463483.8497], + [101856.8787, 463551.2575], + [102435.6695, 463671.5347], + [103863.1898, 463979.1227], + [103975.6128, 464001.2402], + [104251.6524, 464019.7756], + [105608.1694, 464053.4863], + [106600.978, 464078.422], + [106699.747, 464606.96], + [107854.512, 463578.357], + [107956.3411, 463433.4159] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD21", + "od_naam": "Omgevingsdienst Midden-Holland", + "naam_alt": "ODMH" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6022", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [138750.515, 528721.4381], + [138908.0406, 528504.1018], + [138480.14, 528751.095], + [138410.896, 528951.849], + [138750.515, 528721.4381] + ] + ], + [ + [ + [144747.6488, 534027.9099], + [144711.4795, 534027.9099], + [144545.1893, 534083.4869], + [144374.047, 534167.7348], + [143761.8164, 534561.7149], + [143812.5415, 534723.5945], + [143597.7315, 534971.9269], + [143835.037, 535367.5834], + [143893.4963, 535329.5398], + [144932.0238, 534243.6903], + [144834.102, 534148.415], + [144747.6488, 534027.9099] + ] + ], + [ + [ + [107592.8738, 552798.2974], + [107112.0233, 552776.7284], + [106699.4029, 553006.8338], + [106333.2189, 553751.3728], + [106370.2606, 554551.4744], + [106626.3778, 555372.2136], + [106923.2409, 555720.4059], + [107297.7858, 555874.2614], + [107848.914, 555864.8687], + [108166.5469, 555613.514], + [108139.6917, 555237.2758], + [108362.4007, 554964.2639], + [109562.8695, 554443.1078], + [109000, 554266.343], + [108163.758, 553759.867], + [107826.6745, 553291.3053], + [107592.8738, 552798.2974] + ] + ], + [ + [ + [132647.5344, 550417.4585], + [132575.2403, 550029.075], + [132362.7236, 550153.3625], + [132272.9963, 550134.1595], + [132217.1769, 550089.1885], + [132215.32, 550053.899], + [132161.708, 550018.634], + [132139.4871, 550026.5977], + [132080.522, 549983.5101], + [132080.87, 549958.478], + [132022.8221, 549913.4823], + [132001.735, 549922.5561], + [131932.511, 549859.8471], + [131932.979, 549768.1478], + [132260.327, 549293.9139], + [132269.3962, 549234.9894], + [132204.1119, 549305.2932], + [132099.5421, 549237.895], + [132147.43, 549171.803], + [132131.125, 549135.4991], + [131792.5769, 549537.3182], + [131577.057, 549411.868], + [131546.9694, 549292.2273], + [131625.4998, 549166.8943], + [131539.6693, 549094.0457], + [131591.384, 548802.2878], + [131514.7882, 548456.8207], + [131476.8898, 548454.7401], + [131503.9749, 548327.8503], + [131587.659, 548323.694], + [132077.9911, 548556.1318], + [132027.9653, 548628.2874], + [131776.097, 548502.2229], + [131756.502, 548539.829], + [132144.6351, 548731.808], + [132227.5001, 548607.9038], + [133915.031, 545234.169], + [134111.303, 545132.2601], + [134288.9598, 544811.4511], + [134276.773, 544514.6828], + [135796.1404, 541482.9299], + [135958.48, 541446.832], + [135978.217, 541418.683], + [135868.1741, 541360.529], + [136012.444, 541118.05], + [136120.245, 541158.5671], + [136283.6968, 541093.5114], + [136391.1949, 540892.8569], + [136417.147, 540824.773], + [136181.995, 540711.9], + [136589.1454, 539883.0039], + [135898.6066, 531942.9771], + [136443.6468, 531962.1336], + [136472.0574, 531878.583], + [136174.233, 531553.001], + [136209.0396, 531519.1691], + [136409.8704, 531705.8558], + [136434.617, 531621.582], + [136223.57, 531453.026], + [136250.274, 531388.2801], + [136488.961, 531548.08], + [136443.914, 531742.5651], + [136489.5459, 531836.873], + [136539.176, 531902.3678], + [136731.4609, 531527.7598], + [136656.207, 531519.597], + [136811.4068, 531407.9021], + [136839.6399, 531212.8305], + [136992.788, 531223.2046], + [136861.0638, 531143.6715], + [136942.0918, 530946.8328], + [136935.8415, 530946.265], + [136864.586, 531016.623], + [136823.6241, 530979.4991], + [136860.443, 530838.9746], + [136945.4254, 530849.9168], + [136976.9996, 530852.4076], + [137200.4915, 530905.6588], + [137225.3947, 530871.4503], + [136996.8283, 530789.6738], + [136990.058, 530418.7841], + [137039.649, 530467.6318], + [137073.9989, 530465.2311], + [136969.9426, 530345.6137], + [136884.8339, 530338.4363], + [136889.8966, 530324.23], + [136903.126, 530324.083], + [136910.2835, 530307.2064], + [136968.1675, 530305.3926], + [137033.7719, 530177.4393], + [137197.9414, 530060.1824], + [137175.79, 530029.8995], + [137199.687, 529849.9421], + [137634.254, 529403.487], + [137795.2111, 529311.1398], + [138680.8375, 528310.1309], + [138908.7325, 528444.2284], + [138793.6663, 528065.263], + [138822.4694, 528016.593], + [138980.223, 528152.878], + [139173.0543, 528210.9665], + [139096.438, 528102.762], + [139277.325, 527930.9891], + [139325.83, 528034.3769], + [139774.7233, 528113.3723], + [139862.2012, 527973.7665], + [140012.324, 528054.287], + [140002.422, 528217.6778], + [140325.5088, 528179.4159], + [140228.586, 528062.013], + [140322.761, 527942.376], + [140425.35, 527944.9418], + [140526.683, 528034.439], + [140515.0618, 528103.7333], + [140381.2084, 528144.7574], + [140390.2459, 528193.5191], + [140654.1009, 528042.0269], + [140738.501, 528046.345], + [141025.8059, 528245.3], + [141321.0471, 528823.5341], + [141189.7349, 528865.98], + [141253.687, 528892.4175], + [141396.8446, 528825.5702], + [141448.112, 528931.0584], + [141879.3044, 529762.0313], + [142617.7284, 529757.894], + [143292.322, 529712.899], + [143906.4663, 529604.5145], + [144096.671, 529470.254], + [144354.8402, 529482.5677], + [146294.819, 529577.8281], + [146487.808, 529485.741], + [147084.9638, 528916.2164], + [146348.099, 528801.21], + [146300.259, 528711.6131], + [146853.013, 528681.4401], + [147218.3294, 528782.1555], + [147630.83, 528418.051], + [147939.6953, 528336.1973], + [147952.2854, 528131.8835], + [148218.7081, 527624.0983], + [148246.655, 527309.197], + [148052.74, 527212.672], + [148008.95, 527056.422], + [148267.1703, 526787.2651], + [148086.501, 526655.912], + [148091.245, 526097.924], + [148002.6453, 526072.054], + [148105.1292, 526042.6309], + [148168.313, 525828.3041], + [148335.921, 525740.229], + [148296.146, 525272.855], + [148375.9398, 525195.4613], + [148403.8444, 525208.2392], + [148496.7133, 525112.989], + [148480.3066, 525094.2338], + [148812.6433, 524768.684], + [149223.0166, 524549.0618], + [149419.8073, 524540.926], + [149587.524, 524619.6325], + [149605.4125, 524732.262], + [149631.4394, 524556.697], + [149610.124, 524383.3741], + [149574.557, 524314.7449], + [149515.595, 524275.845], + [149455.456, 524350.5761], + [149110.4441, 524507.9146], + [148966.7532, 524362.3094], + [148971.7, 524325.934], + [149008.3946, 524296.5819], + [149059.3371, 524289.846], + [149049.419, 524274.702], + [149007.319, 524279.689], + [149000.0061, 524213.447], + [149031.967, 524210.117], + [149038.6901, 524256.45], + [149053.917, 524256.742], + [149042.9096, 524197.4179], + [148988.9738, 524164.5995], + [148970.117, 524050.2016], + [149061.026, 523929.662], + [148684.9239, 523576.7304], + [148677.4311, 523583.2328], + [148715.7728, 523627.6274], + [148713.441, 523633.1893], + [148649.865, 523624.362], + [148531.7608, 523647.7313], + [148408.7341, 523694.0473], + [148374.6718, 523637.6828], + [148584.284, 523557.5322], + [148640.7764, 523565.0445], + [148639.1143, 523543.7649], + [148549.783, 523539.494], + [148409.371, 523563.246], + [148417.261, 523480.2601], + [148528.113, 523491.939], + [148529.324, 523472.4379], + [148468.104, 523462.728], + [148485.3068, 523400.9478], + [148191.6811, 523133.887], + [148137.5233, 523156.5347], + [148412.2373, 523403.8824], + [148377.381, 523563.414], + [148109.7671, 523509.3236], + [148002.479, 523490.542], + [148000.6538, 523438.7605], + [148144.5174, 523401.8453], + [148360.135, 523468.617], + [148033.4258, 523273.2086], + [147728.502, 523176.8391], + [147713.7684, 523041.4048], + [147916.4756, 522879.2515], + [148002.012, 522906.065], + [148031.024, 522816.64], + [148212.3756, 522602.2091], + [148253.7644, 522642.5265], + [148216.9575, 522501.3158], + [147482.8551, 521860.6983], + [147459.7137, 521886.4866], + [148162.037, 522552.5561], + [147951.1153, 522729.2664], + [147868.345, 522650.3508], + [147753.2632, 522682.5946], + [147716.0765, 522730.8958], + [147356.0396, 522374.3773], + [147148.766, 522251.7711], + [147046.4674, 522225.8993], + [146832.7089, 522279.7394], + [146475.0763, 522140.2083], + [146347.8926, 522171.5673], + [146177.181, 522150.446], + [146152.6613, 522072.4544], + [146010.892, 522144.489], + [145484.2296, 522018.1061], + [145431.988, 521959.865], + [145401.9418, 521644.8993], + [145304.193, 521589.63], + [145262.925, 521143.9149], + [145223.3959, 520585.3591], + [144918.439, 519775.866], + [144754.227, 518854.6551], + [144405.506, 518376.8961], + [142808.7687, 517468.7694], + [142420.305, 517077.0631], + [142227.297, 516550.979], + [141657.445, 516596.99], + [141340.8962, 516505.2703], + [140818.8888, 516320.0915], + [140603.955, 516189.077], + [140353.555, 515930.6221], + [139900.643, 515509.562], + [139568.2858, 515097.5668], + [138914.486, 515150.603], + [138737.0464, 515043.3105], + [138662.99, 515094.4621], + [138410.4408, 515012.431], + [137439.1064, 514737.2761], + [137271.818, 514963.0211], + [137331.8508, 515127.242], + [137452.359, 515230.2381], + [137495.738, 515428.4621], + [137404.2938, 515510.7128], + [137272.805, 515819.557], + [136979.544, 516156.3473], + [136721.8798, 516187.4888], + [136341.821, 516121.2931], + [136165.389, 516022.14], + [135998.8488, 516043.9175], + [135642.059, 516279.268], + [135608.0079, 516397.3962], + [135098.9632, 516973.1479], + [135046.9574, 517072.9194], + [134848.1293, 517004.6334], + [134792.6399, 517265.6879], + [134439.636, 517164.279], + [134496.006, 517083.687], + [134766.5015, 516958.7306], + [134770.7943, 516922.8624], + [134630.4853, 516995.4055], + [134606.7439, 516966.3358], + [134774.706, 516802.125], + [134729.4664, 516743.5219], + [134590.8808, 516949.4025], + [134511.351, 517042.2515], + [134318.8922, 517131.8656], + [134301.8123, 517160.2075], + [134170.3538, 517060.072], + [134104.977, 517154.1921], + [133995.429, 517137.4181], + [133883.499, 517042.944], + [133892.9285, 516939.0531], + [133395.7428, 516417.8748], + [133148.1725, 516657.7408], + [133326.099, 516690.152], + [133321.4798, 516814.7998], + [133234.8985, 516809.4699], + [133105.2839, 516703.5678], + [133091.756, 516730.912], + [133235.9878, 516886.404], + [133425.3011, 516909.2214], + [133414.506, 517014.9491], + [133324.6534, 516998.6971], + [133289.662, 517078.279], + [133278.457, 517073.0848], + [133272.875, 517059.768], + [133286.779, 517060.5501], + [133295.008, 517034.919], + [133274.0265, 517027.095], + [133266.8959, 516911.0715], + [133168.0096, 516885.9563], + [133052.3109, 516758.8045], + [133053.146, 516684.492], + [133083.722, 516716.172], + [133092.172, 516694.3801], + [133063.559, 516655.7304], + [133049.7958, 516269.1333], + [132970.7243, 516280.6241], + [132972.0219, 516602.8928], + [132730.954, 516644.345], + [132698.5888, 516393.8209], + [132880.135, 516309.153], + [132877.8907, 516226.7415], + [132547.044, 516322.963], + [132547.9971, 516532.5229], + [132661.61, 516718.0341], + [132643.6091, 516774.0932], + [132325.586, 517155.3543], + [131882.043, 517181.32], + [131494.3603, 516782.8724], + [131428.197, 516624.5749], + [131148.5675, 516608.21], + [130804.4432, 516507.7869], + [130639.188, 516341.1505], + [130350.4915, 516204.1587], + [130064.2298, 515886.3409], + [129927.2744, 515287.3281], + [129942.114, 514637.2], + [130105.5147, 513942.7172], + [130050.895, 513941.207], + [130037.1824, 513899.6751], + [129225.964, 513732.0141], + [129309.671, 513428.905], + [129095.827, 512292.155], + [125365.699, 512058.721], + [125328.438, 512531.578], + [125550.771, 512712.522], + [125850.77, 512827.74], + [125968.974, 512942.861], + [126013.286, 513100.275], + [125835.6, 513767.633], + [125649.0791, 514044.0571], + [125613.942, 514071.927], + [125451.731, 514152.474], + [125286.407, 514091.679], + [124550.49, 513409.437], + [123956.374, 513166.833], + [123820.477, 513338.117], + [123450.044, 513520.33], + [123039.519, 513559.586], + [122072.896, 512929.817], + [121549.1867, 512367.2327], + [121345.158, 512010.393], + [120946.159, 510857.919], + [120373.84, 510149.112], + [119847.111, 509943.142], + [119644.767, 509700.336], + [119545.8358, 509464.1624], + [119461.807, 509142.498], + [119452.53, 508733.308], + [119341.929, 508425.907], + [119159.4755, 508113.2427], + [118828.888, 507816.736], + [118690.732, 507602.172], + [118447.982, 507074.38], + [118193.395, 506768.832], + [118033.544, 506345.445], + [117571.0677, 506034.3481], + [117462.057, 505845.364], + [117065.557, 506149.762], + [116818.9871, 506255.3111], + [116584.635, 505772.701], + [116452.144, 505827.107], + [116311.42, 505485.741], + [116812.8669, 505276.6569], + [116524.274, 504992.641], + [115942.488, 504881.364], + [115468.5512, 504347.6695], + [115031.845, 504239.963], + [114630.958, 503727.458], + [114455.483, 503674.455], + [114123.7943, 503697.6495], + [114123.7761, 503697.6511], + [114069.693, 503703.8401], + [113954.594, 503717.011], + [113651.702, 505075.907], + [113645.9396, 505295.6698], + [113440.59, 505386.9], + [112987.65, 505400.25], + [112611.06, 505723.52], + [112410.67, 505710.59], + [112124.08, 505530.23], + [111797.8746, 505773.4384], + [110783, 506442], + [109994.5398, 506765.9265], + [109725.77, 506455.194], + [109664.6752, 507320.1803], + [108786.973, 506950.086], + [108821.138, 506735.174], + [108634.452, 506636.949], + [108011.9303, 506508.4353], + [108075.153, 505582.618], + [108204.3288, 504843.3409], + [108194.9583, 504834.8582], + [108074.887, 504564.939], + [106303.526, 505006.606], + [105653.3104, 505147.6423], + [105397.289, 505125.498], + [105181.206, 505038.1458], + [105165.2933, 505038.4893], + [101468.2853, 505123.5133], + [101673.6894, 506034.9293], + [102310.5404, 509855.2369], + [102697.629, 512353.1919], + [102798.6439, 513422.8215], + [102821.4996, 513755.7839], + [102932.5111, 514616.4407], + [103007.0821, 515422.769], + [103082.1572, 515806.0688], + [103171.0776, 516164.1893], + [103215.9825, 516749.7098], + [103322.9408, 517193.5958], + [103452.1586, 518962.7147], + [103556.132, 519971.1608], + [103615.4854, 520176.9489], + [103803.4944, 521181.3018], + [103964.9179, 521861.5905], + [104100.6328, 523217.0391], + [104336.8224, 524722.1468], + [104331.153, 525218.571], + [104272.3283, 525314.9289], + [104224.7185, 526142.7614], + [104295.4411, 527074.1159], + [104745.9618, 529517.2975], + [104934.8017, 530182.8613], + [104945.814, 530180.0204], + [105205.3049, 530949.5822], + [105582.4048, 531884.6524], + [105948.8487, 532567.9705], + [106445.352, 533512.3166], + [107034.8712, 535100.9746], + [107338.0029, 536121.6864], + [107750.8238, 538151.5183], + [108139.3656, 539517.5712], + [108874.9565, 542170.3201], + [109160.0738, 543294.9863], + [109350.3437, 544267.9417], + [109521.6584, 545355.4379], + [109596.4727, 546259.923], + [109677.0869, 547848.8987], + [109692.4313, 549681.1369], + [109776.82, 550348.8834], + [109967.9693, 551365.7773], + [110118.311, 551773.985], + [110816.6347, 552924.1673], + [110897.4133, 553039.8843], + [111493.1164, 553171.1909], + [112072.185, 553230.014], + [112555.867, 553164.543], + [112809.8664, 553248.8636], + [113075.149, 553333.246], + [114173.419, 553306.697], + [114055.5034, 553166.785], + [114047.5332, 553060.3547], + [114085.549, 553031.457], + [114291.7249, 553253.3268], + [114360.866, 553218.093], + [114488.838, 553400.5764], + [114537.6734, 553366.6983], + [114425.484, 553173.2245], + [114518.3888, 553057.0358], + [114441.9169, 552978.8383], + [114277.7169, 553095.8058], + [114145.7075, 552911.71], + [114047.553, 552827.834], + [113848.5799, 552795.1434], + [114139.0039, 552117.0971], + [114728.309, 551515.965], + [114892.663, 551571.759], + [114224.0006, 552231.3052], + [114078.7441, 552658.3435], + [114091.268, 552662.255], + [114150.9755, 552537.2964], + [114265.771, 552587.064], + [114378.6499, 552315.4428], + [114537.1819, 552377.4495], + [114566.28, 552087.799], + [114683.198, 552098.373], + [114643.819, 552386.767], + [114684.148, 552392.288], + [114727.8943, 552105.1513], + [115004.663, 552163.231], + [114926.415, 552445.039], + [114966.749, 552456.3015], + [115053.147, 552179.8314], + [115160.859, 552215.283], + [115091.7008, 552408.0913], + [115117.616, 552411.219], + [115146.5781, 552340.8909], + [115302.756, 552391.978], + [115239.5762, 552583.449], + [115083.605, 552536.562], + [115069.9488, 552561.7196], + [115417.444, 552672.2974], + [115313.456, 552924.2124], + [115160.446, 552877.9], + [115193.237, 552738.975], + [115096.129, 552707.314], + [114982.341, 552962.8996], + [114852.5196, 553026.6443], + [115269.055, 553213.954], + [115635.1889, 553216.0059], + [115771.17, 552620.579], + [115649.885, 551944.045], + [115046.356, 550950.744], + [114935.8077, 550073.216], + [114982.5408, 549953.8959], + [114987.993, 549708.011], + [115126.22, 549691.36], + [115160.276, 549304.8851], + [115723.4438, 547970.0519], + [115839.7788, 547823.8485], + [115977.2166, 547807.1333], + [116095.8824, 547729.7425], + [116172.629, 547628.5631], + [116041.5968, 547542.7934], + [115924.829, 547588.8516], + [115951.6384, 547447.9631], + [116083.219, 547283.58], + [118312.9921, 545915.0321], + [118596.647, 545960.934], + [118816.645, 545916.049], + [118883.456, 545828.721], + [118916.932, 545648.9731], + [119610.234, 545160.4621], + [120435.9833, 544720.3192], + [120520.8589, 544695.4193], + [121056.934, 544761.426], + [122794.924, 545342.48], + [122917.9516, 545482.747], + [123007.374, 545501.9819], + [123620.8165, 545962.5383], + [124582.6314, 546358.9308], + [124691.1524, 546480.7882], + [124629.367, 546662.0311], + [124703.936, 546833.2981], + [124792.5191, 546816.8979], + [125101.2184, 547125.6705], + [125294.2623, 547086.6815], + [125901.079, 547820.721], + [126056.357, 548199.137], + [126163.73, 548759.22], + [126844.5305, 549333.4659], + [126960.476, 549372.059], + [127104.1134, 549403.8892], + [128074.796, 549491.577], + [128345.4591, 549614.6825], + [128756.416, 549812.741], + [129165.623, 549914.008], + [129314.185, 549918.41], + [129775.572, 549720.843], + [130130.5107, 549771.9711], + [130378.335, 549821.0878], + [130692.5589, 550095.1523], + [130800.217, 550530.8447], + [130598.6773, 550675.1738], + [130621.516, 550694.131], + [130907.7835, 550500], + [131030.388, 550703.5908], + [131326.091, 550518.665], + [131473.2475, 550364.5537], + [131455.4944, 550346.3275], + [131107.847, 550629.4665], + [130993.159, 550602.367], + [130928.76, 550489.29], + [131255.7808, 550197.7339], + [131228.3177, 550177.508], + [131186.9723, 550216.1213], + [131077.503, 550066.437], + [131162.7123, 549997.4991], + [131201.6748, 550038.943], + [131523.1204, 549651.6401], + [131620.1119, 549724.5793], + [131317.3442, 550101.9108], + [131345.152, 550118.366], + [131608.865, 549796.904], + [131731.4843, 549753.4666], + [131789.6132, 549799.1403], + [131788.2198, 549900.302], + [131624.227, 550154.643], + [131642.1498, 550162.2253], + [131851.0028, 549909.614], + [131916.325, 549906.3811], + [131978.2402, 549953.628], + [131982.5223, 549989.392], + [132008.44, 550009.477], + [132055.968, 550013.199], + [132115.9381, 550058.7041], + [132123.637, 550094.152], + [132166.8065, 550120.4653], + [132194.9252, 550118.9785], + [132255.536, 550165.23], + [132299.0148, 550257.6755], + [132214.295, 550409.992], + [132271.2659, 550467.7273], + [132610.238, 550506.07], + [140141.4435, 557012.2504], + [140200.273, 556944.3978], + [132647.5344, 550417.4585] + ], + [ + [135834.842, 531445.7455], + [136205.601, 531406.83], + [136147.804, 531490.7031], + [135833.404, 531556.5541], + [135834.842, 531445.7455] + ] + ], + [ + [ + [120986.4151, 574592.4037], + [121141.766, 574381.595], + [121506.282, 574487.378], + [121960.942, 573990.709], + [122912.3873, 572175.9339], + [122949.594, 571914.602], + [122786.644, 571719.451], + [122688.1708, 571819.9323], + [122748.459, 571610.9784], + [122700.2477, 571464.7113], + [122530.969, 571337.682], + [122584.61, 571113.8809], + [122401.9062, 571026.4617], + [122255.4201, 568260.0582], + [122384.131, 566891.314], + [122334.963, 566396.133], + [122160.164, 565858.89], + [121518.985, 565198.038], + [121043.0783, 565011.8658], + [120919.591, 564569.466], + [120782.3763, 564429.6258], + [120543.673, 564345.307], + [120532.748, 563287.908], + [119752.625, 562486.349], + [119765.355, 562369.655], + [119643.34, 562064.535], + [119390.3, 561687.273], + [119180.019, 561599.508], + [119144.401, 561615.547], + [119239.734, 561670.3664], + [119308.889, 561803.197], + [119410.704, 561771.778], + [119541.875, 561953.397], + [119675.4449, 562336.064], + [119633.7073, 562352.0513], + [119425.6583, 562116.797], + [119507.3543, 562040.794], + [119431.4589, 561989.1239], + [119383.348, 561878.8415], + [119347.893, 561895.259], + [119371.53, 561955.3459], + [119192.088, 561960.864], + [119056.7198, 561595.903], + [119025.406, 561573.558], + [118983.828, 561627.926], + [118942.505, 561596.786], + [118978.216, 561536.674], + [118927.965, 561492.515], + [118990.205, 561459.077], + [119062.648, 561515.488], + [119174.0454, 561466.8955], + [118773.131, 560923.558], + [118190.653, 560573.097], + [117657.9473, 560456.0634], + [116912.0406, 560383.0238], + [115093.893, 558104.372], + [115170.6488, 557974.778], + [115379.924, 557988.084], + [115370.2951, 557941.3896], + [115153.4049, 557927.2208], + [115115.436, 557839.47], + [115407.971, 557726.001], + [115117.2766, 557433.8531], + [115058.467, 557398.352], + [114572.1633, 557368.0098], + [114402.316, 557635.657], + [114279.1564, 557529.07], + [114388.0824, 557326.9458], + [113759.1518, 557842.9009], + [113527.8185, 557837.693], + [112565.845, 558322.089], + [112195.2836, 558369.8838], + [111997.525, 558327.0051], + [112481.061, 557674.5721], + [113056.171, 557320.028], + [113085.2505, 557366.7405], + [113154.349, 557356.814], + [113133.4688, 557438.1063], + [113479.164, 557188.932], + [113568.971, 557194.46], + [113698.152, 557015.188], + [113761.207, 557016.319], + [113806.521, 556770.624], + [112884.319, 556463.624], + [112355.3264, 556165.1265], + [111311.0131, 555979.2896], + [110895.6253, 555395.8068], + [110220.908, 556239.181], + [109768.908, 556919.1668], + [109535.069, 558676.798], + [109467.627, 559709.188], + [109581.993, 560921.3293], + [110000, 562954.6175], + [110513.983, 564734.778], + [111314.17, 566362.831], + [112145.0901, 567764.8017], + [112870.897, 568971.949], + [113072.5901, 569246.3308], + [114062.765, 570754.424], + [115538.9188, 572846.2423], + [116403.752, 574409.161], + [117105.3895, 575437.114], + [117816.071, 576267.957], + [118278.07, 577043.992], + [118475.973, 577543.422], + [118746.377, 577709.051], + [119384.5292, 577761.5268], + [119735.4246, 577554.1186], + [119830.229, 577500.153], + [120621.972, 576304.119], + [120731.156, 575693.11], + [121056.387, 575375.577], + [120864.9074, 575107.8446], + [120911.232, 574688.746], + [120986.4151, 574592.4037] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD16", + "od_naam": "Omgevingsdienst Noord-Holland Noord", + "naam_alt": "ODNHN" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6021", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [129127.4998, 484123.7993], + [128964.195, 484096.9829], + [128574.6966, 484330.9874], + [128503.6984, 484576.8671], + [128953.8907, 484316.5308], + [129127.4998, 484123.7993] + ] + ], + [ + [ + [129496.563, 486667.0023], + [128763.4985, 486558.0329], + [128733.6279, 486618.6038], + [129617.8661, 486741.7801], + [129496.563, 486667.0023] + ] + ], + [ + [ + [129609.5378, 487166.2308], + [129588.718, 487152.18], + [129530.9943, 487153.6643], + [129485.129, 487234.152], + [129515.2108, 487301.8464], + [129532.9139, 487311.6044], + [129623.2822, 487296.4345], + [129632.448, 487269.9771], + [129609.5378, 487166.2308] + ] + ], + [ + [ + [111916.734, 503918.252], + [112511.387, 503614.983], + [112674.834, 503741.913], + [112905.307, 503646.378], + [112918.1159, 503744.8021], + [113485.3978, 503703.2184], + [113954.594, 503717.011], + [114069.693, 503703.8401], + [114123.7761, 503697.6511], + [114123.7943, 503697.6495], + [114455.483, 503674.455], + [114402.698, 503581.756], + [114373.0206, 502770.4668], + [114439.044, 502583.034], + [114680.838, 502311.548], + [114721.7205, 501897.6328], + [114761.0212, 501605.0157], + [114785.424, 501089.696], + [114547.98, 500659.163], + [114599.332, 500546.029], + [114686.3528, 500517.5393], + [115039.685, 500539.496], + [115899.0394, 499936.3205], + [115951.7493, 499737.9394], + [116254.879, 499579.028], + [117616.5938, 499269.736], + [117656.487, 498959.857], + [117924.1234, 498504.7521], + [117981.9775, 498402.9167], + [118258.12, 498246.589], + [118667.215, 498203.792], + [118390.798, 497004.295], + [118140.559, 496662.667], + [118103.7785, 496266.7876], + [118079.2874, 496248.2902], + [118002.892, 496194.042], + [118673.8216, 495153.8113], + [118743.7235, 494999.8623], + [118951.2106, 494429.5874], + [118983.454, 494362.329], + [119020.1689, 494272.177], + [119141.3833, 493974.9049], + [119260.056, 493682.832], + [119325.855, 493700.781], + [119428.79, 493735.963], + [119430.192, 493748.236], + [119485.237, 493767.276], + [119501.778, 493766.499], + [119550.408, 493781.205], + [119792.79, 493686.867], + [119923.4008, 493714.29], + [120041.6399, 493652.0192], + [120069.0097, 493531.164], + [120268.033, 493280.861], + [120432.213, 493220.556], + [120612.7242, 493215.7115], + [120967.3241, 493201.9247], + [121023.271, 493204.113], + [121054.4595, 493207.5222], + [121774.384, 493073.907], + [121774.494, 493077.069], + [122245.5197, 492811.3335], + [122364.7075, 492713.3782], + [122406.839, 492695.903], + [122399.055, 492670.539], + [122514.1119, 492600.3002], + [122828.5046, 492403.2578], + [123245.505, 492190.267], + [123400.898, 492069.3931], + [123940.387, 491629.557], + [124241.859, 491675.756], + [124753.7001, 491875.1209], + [124899.614, 492003.099], + [125108.725, 492729.975], + [125177.9481, 492718.663], + [125237.8645, 492776.0713], + [125360.171, 492769.348], + [125376.9264, 492833.4796], + [125351.439, 492913.913], + [125418.907, 492946.338], + [125501.732, 492804.871], + [125652.717, 492823.475], + [125667.9249, 492770.9109], + [126846.259, 492857.17], + [127045.5566, 492992.7469], + [127482.463, 493294.751], + [127783.753, 492856.84], + [127919.993, 492907.808], + [128012.833, 493153.677], + [128682.585, 493137.3649], + [129897.361, 492424.79], + [130098.5303, 492645.779], + [130588.197, 492461.029], + [130680.49, 492270.349], + [130700.924, 492040.667], + [130897.9476, 492130.8671], + [131055.652, 492329.061], + [131386.5269, 492222.4576], + [132002.304, 491977.208], + [133107.918, 492206.968], + [133301.5406, 492130.3002], + [133232.3854, 491781.6727], + [132577.511, 491939.751], + [132207.677, 491759.474], + [131898.2218, 491244.4343], + [131799.0808, 491043.967], + [131571.304, 490969.0577], + [131200.5405, 490770.727], + [130778.944, 490375.6166], + [130641.387, 490133.233], + [130334.013, 488960.8561], + [129928.7694, 488802.0951], + [129828.7804, 488583.0558], + [129738.6067, 488551.4277], + [129605.1212, 488589.0052], + [129521.422, 488552.371], + [129527.6054, 488467.7947], + [129376.3527, 488422.0484], + [129401.781, 488321.6638], + [129522.162, 488338.618], + [129555.79, 488284.567], + [129558.694, 487933.524], + [129427.37, 487372.6483], + [129208.9731, 487255.7494], + [128723.4473, 487553.567], + [128629.6273, 487897.2947], + [128548.512, 487943.092], + [128232.694, 487822.8748], + [128197.1668, 487898.6568], + [128492.138, 488028.7031], + [128500.5135, 488029.7273], + [128506.1643, 488020.4511], + [128528.574, 488030.854], + [128518.728, 488063.122], + [128081.7446, 487864.7193], + [128044.168, 487838.23], + [128069.9169, 487804.6103], + [128074.452, 487782.797], + [128072.8995, 487776.8825], + [128049.8995, 487778.3285], + [127930.442, 487821.7898], + [127526.5651, 487427.4176], + [127382.138, 487364.7733], + [127280.0063, 487391.814], + [127169.159, 487622.22], + [126906.6907, 487978.588], + [126862.7073, 488033.034], + [126872.6753, 487954.1395], + [126886.0299, 487440.0862], + [126865.1638, 487197.9445], + [127288.699, 486874.2812], + [127180.2631, 486839.5851], + [126835.1935, 486823.7933], + [126808.9675, 486711.4083], + [127050.6503, 486454.6655], + [127326.0215, 486234.0944], + [127506.2129, 486354.1138], + [127503.8585, 486391.8969], + [127527.532, 486394.6802], + [127531.696, 486371.0875], + [127587.2946, 486408.1199], + [127552.3939, 486446.4651], + [127584.4892, 486496.9107], + [127997.7982, 486283.025], + [127987.3785, 486269.6839], + [127961.2125, 486285.0114], + [127881.8516, 486193.9303], + [127903.0012, 486174.4446], + [127712.1731, 485955.8703], + [127657.3838, 486003.15], + [127629.692, 485967.4826], + [127690.5783, 485912.8698], + [127682.0485, 485900.6214], + [127712.9653, 485874.2748], + [127743.905, 485849.4664], + [127764.8893, 485860.8261], + [127785.6699, 485840.7629], + [128085.1269, 486047.4287], + [128429.0258, 485790.3716], + [129011.4879, 485278.8932], + [129038.7208, 485307.8578], + [129069.4933, 485281.2099], + [129045.9079, 485251.8206], + [129268.1764, 485106.1791], + [129543.9325, 485248.2732], + [129559.7719, 485312.752], + [129577.0228, 485318.5728], + [129602.0472, 485278.2191], + [129659.7559, 485307.9558], + [129971.9877, 485444.1925], + [130012.7935, 485460.2338], + [130018.6764, 485418.5364], + [130060.36, 485348.29], + [130068.1851, 485196.2594], + [130023.3804, 485170.5402], + [129864.0731, 485161.7129], + [129790.6878, 485187.3617], + [129744.3144, 485150.4413], + [129919.6579, 484783.1289], + [129899.2451, 484728.0218], + [129649.1633, 484587.5508], + [129673.6118, 484513.8208], + [129648.7549, 484500.3963], + [129658.5871, 484478.663], + [129756.8408, 484285.1653], + [129914.5811, 484504.4909], + [130228.3721, 484519.2271], + [130447.2963, 484601.3769], + [130995.765, 484126.5796], + [130929.1149, 483694.0248], + [130395.5753, 483410.0228], + [130391.8542, 483346.3942], + [130479.1531, 483384.0409], + [130483.8393, 483371.3451], + [130337.423, 483297.518], + [129866.767, 482968.92], + [129628.9263, 482714.4499], + [129591.7713, 482676.2383], + [129478.172, 482540.646], + [129702.588, 481905.8], + [129737.142, 481735.918], + [129824.496, 481758.331], + [129858.63, 481885.731], + [129783.501, 482536.774], + [130077.949, 482610.454], + [130579.959, 482597.636], + [131318.058, 482400.137], + [131600.904, 482280.1], + [131658.528, 482225.646], + [131630.658, 482189.686], + [131712.246, 482146.901], + [131949.023, 482170.694], + [132571.316, 481925.86], + [132795.889, 481797.763], + [132767.502, 481623.292], + [132795.331, 481589.252], + [132699.976, 481508.547], + [132468.506, 481345.807], + [132627.523, 481061.679], + [132555.196, 481020.944], + [132575.82, 480980.131], + [132862.6, 481126.235], + [133049.046, 481296.696], + [133081.148, 481441.209], + [133011.4061, 481611.1221], + [133340.023, 481586.019], + [133740.006, 481289.636], + [134846.566, 480784.17], + [134943.411, 480728.849], + [134913.769, 480687.007], + [134876.773, 480603.73], + [135047.785, 480536.614], + [135452.4761, 480298.0091], + [135172.613, 479964.906], + [135122.493, 479572.249], + [135190.765, 479202.011], + [135336.638, 479007.825], + [135542.818, 478907.714], + [135835.997, 478965.747], + [135931.597, 478849.168], + [135820.686, 478557.737], + [135605.953, 478536.234], + [135362.034, 478352.03], + [135301.451, 478222.386], + [135317.454, 478104.11], + [135719.855, 477525.172], + [135695.185, 477288.337], + [135593.702, 477191.749], + [135543.683, 477116.305], + [135541.394, 476914.605], + [134562.145, 477118.169], + [134350.319, 476865.653], + [133835.524, 476708.62], + [133002.6647, 476744.3766], + [132930.246, 476779.383], + [133034.031, 476899.34], + [132935.925, 476934.971], + [132972.255, 477019.586], + [133070.839, 476996.865], + [133071.4662, 477063.905], + [133046.728, 477515.556], + [133000.297, 477502.676], + [132908.066, 477722.786], + [132644.09, 477975.988], + [132178.544, 477665.249], + [132020.014, 477817.719], + [131819.811, 477502.29], + [131496.869, 477221.145], + [131358.645, 477376.115], + [131275.008, 477308.452], + [130846.135, 477643.742], + [130664.216, 477892.651], + [130240.858, 477101.463], + [130135.178, 477190.224], + [130070, 477246.5], + [130059, 479450], + [129797.1711, 479480.1043], + [129563.2417, 479588.2762], + [129392.887, 479557.547], + [129131.445, 479353.703], + [128946.308, 479003.552], + [128843.978, 478998.268], + [128807.4034, 478782.141], + [128806.7868, 478740.0448], + [128711.971, 478725.064], + [128703.765, 478379.494], + [128409.416, 477974.482], + [127457.081, 478118.749], + [126658.092, 477455.69], + [126657.3, 477454.846], + [126512.084, 477317.393], + [126363.3247, 476922.5695], + [126242.92, 477044.24], + [126026.4, 477005.72], + [125917.281, 476770.797], + [125611.7242, 476827.2833], + [125520.654, 476787.686], + [125419.769, 476757.662], + [124936.057, 476867.603], + [124664.172, 476779.405], + [124056.195, 477084.9], + [123702.633, 476944.204], + [123553.6258, 476956.0507], + [123524.016, 476774.77], + [123634.922, 476298.962], + [123565.468, 476147.689], + [123658.018, 476068.923], + [123744.494, 475869.897], + [123749.546, 475691.285], + [123429.2993, 475535.757], + [123318.869, 475100.96], + [122973.151, 474952.081], + [123002.798, 474609.307], + [122916.161, 474413.047], + [122480.738, 473955.804], + [122315.274, 473956.935], + [121932.143, 474015.021], + [121632.594, 473766.731], + [121169.404, 474029.726], + [120882.659, 473778.181], + [120552.429, 474083.364], + [120211.005, 473986.122], + [119944.711, 473757.293], + [119838.308, 473806.939], + [119691.903, 474041.651], + [119599.001, 473866.09], + [119416.397, 473788.392], + [119039.099, 473482.747], + [118827.058, 473429.353], + [118758.4907, 473268.8189], + [118672.949, 473189.357], + [118646.052, 472810.099], + [118448.925, 472796.848], + [118395.542, 472783.524], + [118454.033, 472532.857], + [118359.987, 472418.436], + [118124.188, 472550.896], + [118031.541, 472315.303], + [117825.95, 472220.283], + [117814.455, 472059.842], + [117595.0376, 472066.3953], + [116838.22, 471538.2891], + [116385.3653, 471386.169], + [116056, 471292.0001], + [115843.685, 471165.098], + [115440.416, 471162.276], + [115241.462, 471259.444], + [115012.839, 471144.235], + [114509.342, 471127.011], + [114157.457, 471257.236], + [113984.275, 471259.517], + [113852.509, 471343.328], + [113582.7, 471358.378], + [113268.14, 471208.74], + [113145.964, 470899.345], + [112910.4441, 470697.7241], + [112280.524, 470188.781], + [112127.842, 470129.595], + [111680.166, 470120.28], + [111498.757, 469927.457], + [111313.591, 469834.213], + [111016.803, 469828.484], + [110377.036, 468917.6743], + [110271.13, 468964.96], + [109995.97, 469284.2], + [110050.868, 469334.032], + [109723.5367, 469594.2867], + [109711.8732, 469665.5437], + [109660.992, 470038.846], + [109629.166, 470014.682], + [109654.836, 470223.753], + [109605.55, 470461.086], + [109703.719, 471796.228], + [108357.67, 471972.361], + [108071.025, 471890.212], + [107796.777, 471784.868], + [107105.458, 471182.216], + [106929.0035, 471152.8331], + [106679.579, 471200.776], + [106454.836, 471109.775], + [106026.23, 471651.45], + [105888.1438, 471522.034], + [105715.6948, 471347.4963], + [105209.817, 471141.35], + [104432.4907, 470604.8465], + [104216.23, 470545.336], + [103841.5067, 470308.3413], + [103432.928, 470056.394], + [102967.8952, 469962.9993], + [102737.773, 469923.3041], + [102460.6984, 469876.4981], + [101389.522, 469897.146], + [101077.6618, 470010.3413], + [100082.136, 470391.693], + [99411.1048, 470219.3762], + [99304.1381, 470191.7298], + [98365.5, 470402.59], + [98241.889, 470456.803], + [98062.411, 470785.15], + [97831.574, 471292.901], + [98052.457, 471756.391], + [98190.0958, 471875.6623], + [98544.199, 471987.437], + [98646.904, 472073.446], + [98783.493, 472604.3624], + [98846.5337, 472915.4211], + [98867.686, 473017.2355], + [98929.8776, 473313.1471], + [99047.9192, 473949.8186], + [99117.7139, 474496.8889], + [99175.81, 474962.382], + [99107.5541, 475502.2924], + [99095.1445, 475597.2852], + [99081.8237, 475704.1968], + [99104.686, 475930.487], + [99409.279, 476226.003], + [99710.9547, 476507.7631], + [99715.7162, 476512.2098], + [100195.2433, 476960.0093], + [100246.1772, 477006.4067], + [100475.3693, 477214.7359], + [100521.8354, 477311.6503], + [100569.0094, 477464.4173], + [100695.9405, 477849.4098], + [100863.0876, 478152.7809], + [100992.805, 478385.4777], + [101045.7138, 478500.4307], + [101056.9147, 478789.9048], + [101181.4651, 479154.6401], + [101292.118, 479390.8945], + [101467.3566, 479765.0453], + [101634.691, 480100.336], + [101777.3718, 480289.7982], + [101830.2269, 480359.9831], + [102017.5599, 480608.7379], + [102105.222, 480758.59], + [102116.54, 480905.328], + [102112.2811, 481436.697], + [102110.7469, 481559.7307], + [102108.4868, 481740.9722], + [102107.1622, 481847.1927], + [102106.911, 481867.34], + [102107.1244, 481873.0535], + [102129.692, 482224.866], + [102255.9017, 482517.7891], + [102471.046, 482894.8167], + [102715.463, 483142.4999], + [103433.709, 483559.084], + [104052.992, 483705.297], + [104598.179, 483829.082], + [104874.4463, 483992.1652], + [105200.7594, 484220.2347], + [105394.3442, 484355.0711], + [105502.9451, 484428.4738], + [106234.8611, 484934.0514], + [106520.658, 485235.289], + [106581.054, 485602.0502], + [106501.3616, 485968.6944], + [106296.15, 486937.5666], + [106249.9513, 487184.6365], + [106249.9092, 487185.3179], + [106345.21, 487612.148], + [106666.268, 487927.606], + [106872.237, 488235.384], + [107259.606, 488637.2611], + [107258.446, 488692.9261], + [107326.835, 489073.465], + [107033.226, 489162.256], + [106956.3869, 489352.1427], + [106939.792, 489393.5631], + [106702.708, 489334.78], + [106487.882, 489467.486], + [106417.577, 489819.362], + [106568.927, 490171.94], + [106770.394, 490310.773], + [106779.296, 490417.81], + [106099.411, 490638.366], + [106112.779, 490945.724], + [106493.88, 491198.612], + [106332.677, 491531.544], + [106574.0589, 491548.9912], + [106959.61, 491844.744], + [107052.819, 492014.267], + [107671.106, 492560.7891], + [108293.904, 493300.256], + [108984.35, 493536.315], + [109760.585, 494157.082], + [109014.315, 494482.023], + [107655.3939, 495683.5878], + [106579.438, 496655.843], + [107139.5857, 497274.8008], + [107245.2462, 497391.5729], + [107281.781, 497431.949], + [107228.247, 497539.763], + [107856.23, 497958.74], + [108157.2, 498366.809], + [108121.649, 498475.759], + [108260.11, 498755.162], + [108225.916, 499045.273], + [108364.658, 499388.885], + [108688.565, 499566.029], + [108736.235, 499674.988], + [108720.773, 499853.578], + [108862.85, 500062.476], + [108897.584, 500317.328], + [109323.438, 500821.805], + [109713.817, 501013.911], + [109782.3765, 501033.8614], + [110476.489, 501160.229], + [111036.0442, 501743.9986], + [111477.2034, 502221.4062], + [111630.731, 502410.661], + [111785.028, 502479.328], + [111929.416, 502734.096], + [111894.9938, 502788.6629], + [111641.205, 503225.139], + [111621.769, 503455.977], + [111732.391, 503791.012], + [111916.734, 503918.252] + ], + [ + [125992.637, 488300.7313], + [126015.591, 488283.943], + [126012.109, 488278.654], + [126003.084, 488285.1193], + [125993.7103, 488274.0503], + [126024.448, 488249.7548], + [126023.5203, 488246.6624], + [125996.1753, 488265.3758], + [125991.5476, 488257.4642], + [125986.526, 488248.5201], + [126008.5515, 488229.9324], + [126006.3503, 488228.1714], + [125973.1153, 488250.9213], + [125963.4775, 488237.6293], + [125970.6833, 488232.091], + [125970.249, 488229.0519], + [125933.291, 488255.113], + [125926.5728, 488246.3259], + [125938.5089, 488237.7607], + [125910.4593, 488208.3499], + [125885.0493, 488204.5294], + [125844.2205, 488219.8965], + [125835.473, 488207.764], + [125854.0675, 488194.6501], + [125827.9875, 488168.8769], + [126039.153, 488075.775], + [126030.553, 488056.456], + [125833.0908, 488143.104], + [125824.115, 488119.2585], + [126022.927, 488031.8264], + [126006.109, 487995.178], + [125989.812, 488003.026], + [125997.0542, 488020.532], + [125909.538, 488060.984], + [125902.295, 488041.665], + [126235.8454, 487747.0306], + [126741.503, 487307.7579], + [126835.3826, 487224.7903], + [126857.7369, 487464.8833], + [126827.3132, 487914.1038], + [126786.241, 488076.128], + [126550.8535, 488015.3428], + [126497.555, 488021.6459], + [126483.2829, 488039.2285], + [126476.333, 488048.778], + [126138.863, 488498.27], + [125992.637, 488300.7313] + ], + [ + [126528.542, 486830.5721], + [126067.3294, 486826.9623], + [126061.3883, 486827.6077], + [126059.2319, 486827.7953], + [125768.938, 486813.685], + [125779.3459, 486640.2299], + [125882.4232, 486670.1703], + [125873.0465, 486594.4403], + [125782.04, 486562.449], + [125783.402, 486552.036], + [125784.4586, 486544.9223], + [125787.858, 486522.12], + [125976.3898, 486541.6983], + [126058.8734, 486397.4305], + [126056.4704, 486341.9399], + [125991.7401, 486284.4899], + [126468.233, 485978.2602], + [126564.8187, 486263.8754], + [126597.9153, 486414.726], + [126477.5287, 486621.2459], + [126577.819, 486785.3853], + [126528.542, 486830.5721] + ], + [ + [126606.8057, 486235.8179], + [126506.6341, 485959.1943], + [126860.3339, 485946.081], + [126862.069, 485652.6964], + [126930.6968, 485559.2949], + [127558.7879, 485655.6742], + [127651.218, 485601.2402], + [127607.9453, 485350.5598], + [128035.336, 485020.2233], + [128236.107, 484752.8285], + [128331.0177, 484727.8947], + [128412.626, 484603.2854], + [128506.3503, 484341.4489], + [128787.2035, 484091.737], + [129010.198, 484028.257], + [129339.4151, 484087.2612], + [129452.6542, 484058.3209], + [129468.7911, 484068.7086], + [129525.5174, 484048.5958], + [129622.43, 484137.9092], + [129668.338, 484039.8241], + [129658.14, 483992.2041], + [129689.4436, 483980.9497], + [129718.9358, 484044.9271], + [129706.9623, 484215.8131], + [129742.8371, 484265.6942], + [129646.5075, 484456.4442], + [129623.4992, 484501.9071], + [129592.9663, 484498.405], + [129581.262, 484471.343], + [129608.9648, 484416.1496], + [129234.2056, 484191.9295], + [128863.71, 484502.2282], + [128536.197, 484836.5721], + [128563.491, 484867.574], + [128556.159, 484874.0907], + [128551.359, 484878.2284], + [128454.3777, 484782.2307], + [128381.81, 484826.2213], + [128066.1626, 485071.0509], + [127892.7617, 485276.1842], + [127953.1204, 485299.5743], + [127717.1975, 485491.0624], + [127704.6142, 485642.8941], + [127762.3136, 485660.4465], + [127874.7788, 485563.7113], + [127902.4759, 485572.0719], + [127934.139, 485544.3811], + [127942.8923, 485553.7946], + [127814.4265, 485668.6118], + [127818.9154, 485713.1387], + [127676.7118, 485842.1793], + [127582.8258, 485902.2013], + [127291.9378, 485707.7738], + [127222.3284, 485809.7372], + [127243.0563, 485827.5849], + [127154.3153, 485959.6573], + [127068.7307, 485903.5519], + [127003.3708, 485989.9188], + [126948.1522, 485955.0074], + [126868.5352, 486073.451], + [127106.6162, 486342.5259], + [127018.4412, 486424.7311], + [126880.6917, 486516.27], + [126695.803, 486415.718], + [126606.8057, 486235.8179] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD18", + "od_naam": "Omgevingsdienst Noordzeekanaalgebied", + "naam_alt": "ODNZKG" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6020", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [202310.333, 455264.14], + [202328.334, 455253.893], + [202493.895, 455280.73], + [202537.599, 455290.055], + [202580.741, 455119.4321], + [202802.0917, 455054.7987], + [202849.2619, 455040.8442], + [203730.841, 454782.287], + [204097.958, 454672.134], + [204066.399, 454608.097], + [204499.303, 454314.469], + [204828.293, 453949.461], + [204919.067, 453681.661], + [204950.51, 453577.699], + [205312.478, 453621.815], + [205243.853, 453417.17], + [205440.942, 453026.147], + [205847.834, 453146.876], + [205856.315, 452982.432], + [206080.14, 452979.869], + [206116.092, 452880.539], + [206332.477, 452904.963], + [206380.61, 452720.058], + [206307.88, 452646.096], + [206453.609, 452586.049], + [206087.523, 452198.575], + [205473.1372, 451837.5158], + [204976.7176, 451409.9144], + [204695.922, 450956.846], + [204649.8316, 450613.4116], + [204710.155, 450350.877], + [204820.138, 450175.994], + [205065.488, 449979.426], + [205386.262, 449842.021], + [205833.362, 449779.046], + [206318.15, 449863.47], + [206790.642, 450088.125], + [207069.114, 450535.059], + [207206.75, 450647.297], + [207473.638, 450694.283], + [207706.7225, 450595.2662], + [207963.7918, 450180.0878], + [208518.414, 450135.988], + [209086.5456, 450409.541], + [209088.0916, 450409.0489], + [209118.354, 450010.282], + [209064.526, 449556.111], + [209199.142, 449532.36], + [208944.049, 449117.922], + [209087.065, 449060.365], + [209044.293, 448876.925], + [209193.114, 448844.059], + [209039.471, 448556.791], + [209225.985, 448429.682], + [209231.878, 448293.589], + [209181.262, 448294.947], + [209181.835, 448169.582], + [208936.845, 448089.685], + [208979.867, 447983.264], + [208722.218, 447865.088], + [208542.866, 447844.83], + [208359.349, 447903.846], + [208377.516, 447623.829], + [208133.703, 447557.417], + [208026.6628, 446760.1134], + [207831.932, 446723.826], + [207649.9914, 446377.6888], + [207876.183, 446476.229], + [207985.609, 446458.28], + [207961.202, 446218.641], + [208010.3548, 446093.6543], + [208017.669, 445988.644], + [208280.541, 445972.27], + [208366.497, 445908.528], + [208066.881, 445778.573], + [208043.708, 445575.597], + [208206.568, 445268.408], + [208188.638, 444990.6214], + [208124.493, 443908.775], + [207040.014, 443837.641], + [205979.39, 443572.32], + [205426.83, 443030.871], + [205514.484, 442818.782], + [205237.8788, 442710.4448], + [204831.8753, 442520.7513], + [204590.835, 442329.832], + [204342.422, 442274.459], + [203323.634, 442392.119], + [203267.877, 441909.238], + [203396.07, 441844.483], + [203399.8161, 439551.8449], + [203426.1202, 439152.7463], + [203613.09, 439166.45], + [203652.512, 438932.324], + [204897.7468, 437952.5186], + [205718.066, 437347.596], + [206685, 436605], + [206813.855, 436600.2444], + [206891, 436651], + [206993, 436934], + [207045, 436887], + [206970.675, 436596.895], + [207024.031, 436396.912], + [207665.417, 435874.125], + [207814.4138, 436142.2844], + [207941.55, 436139.5], + [207985.3, 435710.5], + [208183.451, 435421.766], + [208380.19, 435223.04], + [208552.906, 435157.678], + [208652.043, 435014.374], + [208730.57, 435003.51], + [208576.53, 434740.89], + [208393.95, 435021.99], + [208343.73, 434999.18], + [208001.24, 435458.41], + [207921.23, 435473.64], + [207789.792, 435467.119], + [207772.505, 435395.189], + [206160.33, 434855.89], + [205826.724, 434668.223], + [205287.174, 435047.496], + [205080.408, 434607.191], + [204905.989, 434741.623], + [204853.469, 434704.462], + [204702.91, 434393.11], + [204763.768, 434294.985], + [204305.196, 434016.804], + [204502.72, 433926.39], + [204967.57, 434032.65], + [205321.01, 433974.53], + [205523.41, 433871.2], + [205603.64, 433765.46], + [205747.96, 433771.92], + [206143.57, 433566.73], + [206374.98, 433369.33], + [206629.32, 433296.93], + [206695.53, 433052.15], + [207086.69, 432238.93], + [207066.5, 432097.28], + [207156.685, 431724.2101], + [207158.21, 431515.72], + [207427.61, 431350.13], + [207592.34, 431124.36], + [207959.94, 431048.57], + [208335.25, 430776.25], + [208709.12, 430630.61], + [208731.73, 430555.5], + [208536.78, 430320.76], + [208490.74, 429716.21], + [208634.66, 429357.75], + [208709.37, 428302.93], + [207390, 428810], + [206580.234, 428997.953], + [204612.404, 429081.5192], + [204080, 429220], + [203390, 429570], + [202532.499, 430301.106], + [201580.569, 430983.026], + [200952.0277, 431383.9667], + [200390.332, 431579.801], + [200238.976, 431611.129], + [199642.4565, 431810.6889], + [198705.082, 432497.315], + [198358.043, 432682.49], + [197832.223, 432746.659], + [197335.215, 432595.4712], + [196690.479, 431994.155], + [196427.3632, 431607.4021], + [196224.524, 431192.6691], + [195916.685, 430321.1731], + [195682.834, 430016.898], + [195450.1007, 429862.9757], + [195174.163, 429737.357], + [194892.917, 429701.187], + [194404.75, 429800.166], + [194135.748, 429970.994], + [192885.417, 431572.763], + [192609.2281, 431767.3601], + [191940.506, 431923.072], + [191277.669, 431868.8431], + [190563.557, 431681.541], + [190038.587, 431454.392], + [189408.926, 430856.945], + [189241.201, 431057.5525], + [189130.813, 430959.73], + [189116.145, 430975.412], + [189147.783, 431018.944], + [189075.956, 431065.6605], + [188958.3443, 431300.2907], + [188724.6027, 432109.6055], + [188668.2401, 432119.6768], + [188644.759, 432594.0803], + [188338.773, 433458.659], + [188147.428, 433407.4026], + [187921.9108, 433443.0988], + [187926.1665, 433492.6594], + [187830.7601, 433462.8872], + [187638.5941, 433467.6236], + [187513.4156, 433455.4441], + [187385.278, 433423.068], + [187346.087, 434116.192], + [185951.0811, 434010.4273], + [185942.429, 434010.0003], + [185496.1141, 433999.999], + [185494.73, 433782.43], + [185784.15, 433630.25], + [185892.43, 433386.781], + [185889.3, 433151.56], + [185956.15, 432887.43], + [186022.918, 432863.167], + [185683.806, 432304.902], + [185845.519, 432215.102], + [185779.3745, 431992.6278], + [185671.3546, 431749.0272], + [185605.248, 431614.276], + [185425.128, 431631.329], + [185360.415, 431743.816], + [184605.467, 431389.46], + [184138.199, 431665.673], + [183312.566, 431985.072], + [181589.695, 432304.421], + [180739.81, 432575.646], + [180068.494, 432837.563], + [179339.815, 433001.81], + [179042.545, 433045.091], + [178335.689, 433234.847], + [176989.891, 433912.03], + [177207.8031, 434170.5976], + [177287.129, 434300.784], + [177163.354, 434427.219], + [176969.775, 434426.861], + [177065.8025, 434804.9877], + [177049.725, 434975.811], + [176892.302, 435107.007], + [176957.3864, 435362.3445], + [176946.327, 435547.014], + [176589.119, 436130.785], + [176211.6172, 436535.9811], + [175982.54, 436700.656], + [176260.726, 436967.365], + [176164.0665, 437032.7356], + [175226.881, 436689.151], + [174963.094, 436962.155], + [174869.942, 437215.559], + [174972.857, 437360.84], + [174860.328, 437545.272], + [175022.923, 437836.965], + [175438.296, 437964.844], + [175819.7763, 438280.3379], + [176260.365, 438132.163], + [176032.0588, 438510.2085], + [175739.675, 438562.754], + [174514.381, 438046.507], + [173787.052, 437939.9081], + [173758.8971, 438374.5599], + [173733.576, 438770.767], + [174289.543, 438976.092], + [174155.4558, 439245.2338], + [173974.048, 439175.522], + [173835.744, 439497.155], + [173369.158, 439251.087], + [173296.533, 439413.954], + [172865.747, 439128.591], + [172817.64, 439213.447], + [173096.756, 439922.29], + [173185.652, 439986.825], + [173398.408, 439822.304], + [174164.93, 440521.105], + [174419.476, 440635.745], + [174889.016, 441055.227], + [175257.097, 441232.949], + [176954.068, 441634.745], + [177975.511, 441768.633], + [178051.19, 441789.34], + [177931.56, 442106.37], + [177711.51, 442096.19], + [177432.9763, 442241.3559], + [177432.9025, 442241.7466], + [177763.094, 442948.814], + [177714.061, 443048.114], + [177942.919, 443666.106], + [177632.37, 443721.759], + [177890.244, 444787.7738], + [178153.007, 445868.291], + [178730.762, 445874.535], + [178943.289, 446051.351], + [178821.183, 446506.756], + [179056.26, 446590.11], + [179141.365, 446700.041], + [179172.6, 446925.69], + [179095.748, 447161.048], + [179297.956, 447623.659], + [179569.1622, 447995.7114], + [179721.2678, 448024.398], + [180353.024, 448143.516], + [181266.532, 448201.544], + [181307.2467, 448158.9715], + [181335.567, 448206.523], + [181800.148, 448241.932], + [183205.77, 448264.947], + [183583.632, 448118.736], + [183623.832, 448169.633], + [183500.33, 448304.722], + [184250.157, 448499.627], + [184608.6838, 449116.3064], + [184986.1313, 449702.6313], + [185919.16, 451019.893], + [186746.3377, 451577.2428], + [187407.29, 451628.565], + [188945.387, 451348.795], + [190134.273, 451417.947], + [190036.183, 452908.593], + [190833.953, 452773.426], + [193313.786, 454549.236], + [193991.488, 454048.033], + [194586.332, 454384.703], + [195434.381, 454612.657], + [196354.706, 454715.296], + [197618.775, 454152.955], + [197630.529, 453891.469], + [197436.575, 453298.53], + [197680.915, 453261.993], + [198646.101, 453412.858], + [198938.419, 453608.762], + [199935.545, 454612.164], + [201018.414, 455441.61], + [201233.9316, 455573.8805], + [201636.2743, 455768.5468], + [201663.4524, 455772.5391], + [202215.2, 455694.75], + [202287.096, 455293.279], + [202299.76, 455289.031], + [202310.333, 455264.14] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD10", + "od_naam": "Omgevingsdienst Regio Arnhem", + "naam_alt": "ODRA" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-601f", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [167693.478, 434820.312], + [169583.22, 434533.502], + [171318.511, 434569.4346], + [171424.295, 434569.9277], + [172878.0837, 434409.1053], + [173410.5177, 434287.5229], + [174360.458, 434157.25], + [175498.841, 434167.919], + [176334.613, 434104.096], + [176989.891, 433912.03], + [178335.689, 433234.847], + [179042.545, 433045.091], + [179339.815, 433001.81], + [180068.494, 432837.563], + [180739.81, 432575.646], + [181589.695, 432304.421], + [183312.566, 431985.072], + [184138.199, 431665.673], + [184605.467, 431389.46], + [185360.415, 431743.816], + [185425.128, 431631.329], + [185605.248, 431614.276], + [185671.3546, 431749.0272], + [185779.3745, 431992.6278], + [185845.519, 432215.102], + [185683.806, 432304.902], + [186022.918, 432863.167], + [185956.15, 432887.43], + [185889.3, 433151.56], + [185892.43, 433386.781], + [185784.15, 433630.25], + [185494.73, 433782.43], + [185496.1141, 433999.999], + [185942.429, 434010.0003], + [185951.0811, 434010.4273], + [187346.087, 434116.192], + [187385.278, 433423.068], + [187513.4156, 433455.4441], + [187638.5941, 433467.6236], + [187830.7601, 433462.8872], + [187926.1665, 433492.6594], + [187921.9108, 433443.0988], + [188147.428, 433407.4026], + [188338.773, 433458.659], + [188644.759, 432594.0803], + [188668.2401, 432119.6768], + [188724.6027, 432109.6055], + [188958.3443, 431300.2907], + [189075.956, 431065.6605], + [189147.783, 431018.944], + [189116.145, 430975.412], + [189130.813, 430959.73], + [189241.201, 431057.5525], + [189408.926, 430856.945], + [190038.587, 431454.392], + [190563.557, 431681.541], + [191277.669, 431868.8431], + [191940.506, 431923.072], + [192609.2281, 431767.3601], + [192885.417, 431572.763], + [194135.748, 429970.994], + [194404.75, 429800.166], + [194892.917, 429701.187], + [195174.163, 429737.357], + [195450.1007, 429862.9757], + [195682.834, 430016.898], + [195916.685, 430321.1731], + [196224.524, 431192.6691], + [196427.3632, 431607.4021], + [196690.479, 431994.155], + [197335.215, 432595.4712], + [197832.223, 432746.659], + [198358.043, 432682.49], + [198705.082, 432497.315], + [199642.4565, 431810.6889], + [200238.976, 431611.129], + [200390.332, 431579.801], + [200952.0277, 431383.9667], + [201580.569, 430983.026], + [201457.914, 430506.698], + [201374.708, 430518.346], + [201321.135, 430113.168], + [200959.921, 430082.079], + [200758.726, 429997.457], + [201030.492, 429520.733], + [200097.405, 428917.865], + [199772.594, 428588.925], + [199687.423, 428427.546], + [199531.377, 428505.715], + [199481.782, 428393.837], + [199235.86, 428700.04], + [198621.203, 428306.991], + [198459.673, 428296.77], + [198339.124, 427926.639], + [198248.178, 427842.849], + [197935.403, 427576.55], + [197394.398, 427278.599], + [196856.127, 427098.793], + [196326.365, 427067.11], + [195616.254, 427314.591], + [195315.701, 427365.9411], + [195098.063, 427435.965], + [194683.152, 427748.5411], + [194678.0209, 427742.4931], + [193458.586, 426251.46], + [194367.907, 425522.792], + [194298.755, 425456.341], + [194198.556, 425358.819], + [194136.983, 425407.04], + [194004.051, 425281.665], + [193852.85, 425441.581], + [193781.522, 425352.862], + [193673.792, 425463.416], + [193526.6, 425313.746], + [193603.134, 425233.663], + [193572.348, 425132.61], + [193769.903, 425018.775], + [193671.246, 424898.777], + [193890.3185, 424810.2247], + [194251.733, 424760.887], + [194716.422, 424427.177], + [195562.019, 423567.268], + [195827.441, 423389.312], + [195506.889, 423161.125], + [195672.987, 423012.613], + [195548.6334, 422787.4349], + [195390.944, 422486.205], + [195555.624, 422403.256], + [195485.556, 422359.776], + [195527.175, 421986.268], + [195870.683, 422090.868], + [195962.202, 422041.853], + [196026, 421887.377], + [196226.163, 421991.424], + [196234.643, 421921.515], + [196449.582, 421752.009], + [196577.15, 421845.967], + [196624.512, 421787.81], + [196145.914, 421286.26], + [196223.513, 421183.263], + [196189.744, 420911.249], + [196076.508, 420726.277], + [196384.412, 420565.244], + [196659.277, 420284.399], + [196749.656, 420347.864], + [196645.239, 419905.453], + [195808.271, 419167.909], + [195481.5042, 419084.786], + [194437.891, 418239.155], + [194333.117, 418291.489], + [194001.733, 417956.344], + [194092.285, 417854.105], + [194003.224, 417446.929], + [193453.565, 417158.556], + [193062.602, 417130.694], + [192896.767, 417066.631], + [192680.259, 417166.229], + [192483.523, 417441.792], + [192536.324, 417676.576], + [192713.539, 417851.844], + [191963.0818, 418126.294], + [191453.8436, 418336.3063], + [191326.87, 418666.76], + [191328.475, 419054.617], + [191168.427, 419432.255], + [190769.654, 419794.119], + [190470.318, 420325.484], + [189934.186, 421142.144], + [189448.152, 421220.84], + [188252.2964, 420895.1171], + [188175.014, 420870.764], + [188145.579, 420747.775], + [188147.3864, 419989.6793], + [188277.624, 419462.863], + [188134.1976, 419195.0836], + [187990.7184, 418947.9934], + [187951.709, 418884.539], + [187100, 419061], + [186428.343, 419000.534], + [184984.8772, 418839.6397], + [184155.0512, 418733.3588], + [182849.696, 418389.412], + [182100, 418241], + [181384.0761, 418252.229], + [180600.0001, 418453], + [180167.4778, 418657.1874], + [179719.0001, 419000], + [179408.9103, 419455.0157], + [179053.98, 420083.6979], + [178800.0001, 420414], + [178642.166, 420519.748], + [178100, 420737], + [177363.164, 420756.736], + [177000, 420891], + [176746, 421100], + [176341.6805, 421912.9972], + [176148.4738, 422165.2067], + [175600, 422547], + [174793.186, 422683.5451], + [174400, 422734], + [174050.4988, 422912.6108], + [173645, 423300], + [173396.7716, 423646.3938], + [173118, 424200], + [172885.8317, 424966.0986], + [172722, 425300], + [172520.5267, 425505.6838], + [172100, 425688], + [171457.6575, 425650.9189], + [171200, 425648], + [170900, 425741], + [170100, 426322], + [169529.764, 426626.201], + [169637.503, 426745.466], + [169880.785, 426653.041], + [170286.037, 426955.475], + [170208.914, 427192.432], + [170346.767, 427283.988], + [170123.807, 427477.935], + [170344.438, 427543.643], + [169562.234, 427716.797], + [169546.232, 427905.108], + [168632.787, 427853.849], + [168599.853, 428123.9341], + [168355.167, 429192.666], + [168605.467, 429869.899], + [168192.533, 430088.732], + [168124.833, 430216.099], + [168091.9421, 430687.0181], + [166425.5792, 430465.7332], + [166472.429, 431327.087], + [166874.275, 431381.064], + [166917.023, 431848.15], + [167479.881, 432016.14], + [167545.002, 432363.439], + [167466.2271, 432451.038], + [167376.153, 432539.807], + [167340.265, 432839.409], + [167578.122, 432924.444], + [167686.062, 432836.218], + [168064.531, 433785.624], + [167163.384, 433571.271], + [166646.2749, 433371.9956], + [166253.116, 433292.947], + [166023.6818, 433315.8557], + [165733.9116, 433331.4047], + [165510.304, 433639.645], + [165277.681, 433695.44], + [164897.597, 433662.298], + [164922.985, 434036.153], + [165822.668, 434511.069], + [166618.1081, 434738.751], + [167693.478, 434820.312] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD11", + "od_naam": "Omgevingsdienst Regio Nijmegen", + "naam_alt": "ODRN" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-601e", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [130059, 479450], + [130070, 477246.5], + [130135.178, 477190.224], + [130240.858, 477101.463], + [130664.216, 477892.651], + [130846.135, 477643.742], + [131275.008, 477308.452], + [131358.645, 477376.115], + [131496.869, 477221.145], + [131819.811, 477502.29], + [132020.014, 477817.719], + [132178.544, 477665.249], + [132644.09, 477975.988], + [132908.066, 477722.786], + [133000.297, 477502.676], + [133046.728, 477515.556], + [133071.4661, 477063.9045], + [133070.839, 476996.865], + [132972.255, 477019.586], + [132867.93, 477182.725], + [132868.247, 477469.635], + [132700.52, 477510.979], + [132040.71, 477144.008], + [131965.676, 476965.006], + [131965.462, 476718.332], + [131866.4995, 476604.3669], + [131476.943, 476714.114], + [130830.455, 476423.444], + [130683.091, 476114.07], + [130606.438, 476063.336], + [130502.7989, 476062.5829], + [130190.4994, 476194.9891], + [130133.897, 476114.636], + [130162.219, 476001.956], + [130367.4148, 475688.2102], + [130454.82, 475589.447], + [130469.529, 475419.005], + [130379.403, 475191.603], + [130712.519, 474868.08], + [130788.173, 474719.641], + [130782.8953, 474582.6869], + [130659.3174, 474377.0614], + [130754.5332, 474123.828], + [130967.3811, 473903.1971], + [131100.35, 473991.156], + [131310.744, 474338.979], + [131421.733, 474336.623], + [131526.9101, 474212.4619], + [131577.0352, 473784.4952], + [131648.9535, 473591.0249], + [131729.2692, 473463.4299], + [131695.8855, 472851.131], + [132437.3354, 472102.4333], + [132492.1237, 471970.9205], + [132471.2831, 471960.4383], + [132427.283, 471999.059], + [132360.68, 471957.167], + [132390.256, 471930.893], + [131437.6382, 471440.5428], + [131388.101, 471480.449], + [131376.9547, 471390.3387], + [131316.489, 471364.3801], + [131326.661, 471333.7891], + [131364.8739, 471326.7802], + [131357.1459, 471306.494], + [131448.396, 471245.581], + [131393.542, 471185.1621], + [131190.003, 470846.215], + [131078.802, 470864.801], + [131069.1519, 470803.3525], + [131267.654, 470757.712], + [131407.952, 470723.814], + [131411.843, 470750.273], + [131467.154, 470718.062], + [131455.914, 470698.76], + [131407.51, 470720.872], + [131406.4215, 470713.1822], + [131232.7999, 470760.0781], + [131222.2249, 470708.6616], + [131048.472, 470755.743], + [130988.995, 469995.989], + [131075.277, 469891.801], + [131060.18, 469731.571], + [130976.384, 469728.52], + [130951.843, 469654.939], + [131082.461, 469623.86], + [131047.948, 469565.585], + [130846.08, 469572.198], + [130841.777, 469506.467], + [130884.431, 469505.639], + [130817.502, 469140.885], + [131025.3516, 469109.5939], + [131025.423, 469109.5832], + [130945.9524, 468628.0456], + [131089.685, 468597.523], + [131035.454, 468283.297], + [130281.0783, 468492.1497], + [130270.7901, 468414.036], + [130242.0535, 468413.9915], + [130239.185, 468365.749], + [130124.374, 468389.349], + [130132.859, 468475.819], + [130077.427, 468488.678], + [130066.6325, 468347.6928], + [130109.5793, 468356.3463], + [130104.043, 468276.868], + [130080.944, 468298.9019], + [130007.112, 468333.322], + [130005.902, 468325.9], + [130036.266, 468315.509], + [130064.9135, 468297.8178], + [130097.6701, 468240.2393], + [129991.82, 468277.169], + [129985.488, 468260.415], + [130086.203, 468220.793], + [130311.175, 468201.841], + [130438.9909, 468043.7585], + [130645.469, 467909.805], + [131065.72, 467828.611], + [131070.5088, 467694.5024], + [131133.182, 467506.788], + [131030.691, 467348.191], + [130956.602, 467041.609], + [130912.827, 466577.672], + [130829.563, 466506.953], + [130742.179, 466279.257], + [131363.5457, 466235.9946], + [131687.4162, 464251.5], + [133893.27, 465026.7636], + [136403.5677, 465776.712], + [136821.345, 465901.6101], + [137005.823, 465886.99], + [138312.8493, 465790.2655], + [138321.1076, 465823.5894], + [139920.832, 465671.2691], + [140123.546, 465651.399], + [140788.6531, 465583.8835], + [141113.733, 465554.1781], + [141688.276, 465539.062], + [143262.586, 468476.898], + [143316.961, 468339.7], + [143166.156, 467908.24], + [143105.225, 466898.294], + [143227.442, 466750.2431], + [143292.658, 466672.993], + [143020.959, 465373.337], + [143161.6718, 465406.3864], + [143631.541, 465581.801], + [143639.6486, 465371.7011], + [143645.912, 465171.306], + [143747.374, 465183.964], + [143826.28, 464148.217], + [143902.277, 464183.654], + [144676.967, 464377.652], + [144655.207, 464782.807], + [144786.268, 464799.401], + [144816.881, 464412.573], + [144863.472, 464395.517], + [145146.657, 464667.998], + [145588.518, 463407.5641], + [145678.9235, 463138.6033], + [145937.517, 462378.918], + [146045.431, 461784.1381], + [146047.843, 461771.2387], + [145967.768, 461196.089], + [146029.9751, 460917.0151], + [146569.967, 459659.067], + [147106.808, 459876.864], + [147262.157, 459508.8631], + [147462.3568, 459031.6349], + [147490.5441, 458960.9801], + [147808.1401, 458211.0741], + [148378.42, 458447.2241], + [148465.428, 458483.374], + [148656.8109, 458364.6778], + [148955.667, 458178.028], + [149468.744, 458007.4], + [149774.127, 457797.115], + [150564.22, 457075.002], + [148908.0211, 456469.7731], + [150868.577, 455386.812], + [151233.398, 455100.986], + [154816.554, 454443.703], + [155078.0239, 454072.5154], + [155179.58, 454154.47], + [155264.145, 454088.339], + [155500.751, 454076.167], + [156117.496, 454155.682], + [156281.369, 454104.759], + [156361.482, 453810.65], + [156245.251, 453635.148], + [155845.672, 453436.011], + [155910.414, 453266.525], + [155805.908, 453183.189], + [155913.856, 452939.232], + [156007.561, 452889.537], + [156518.813, 453411.015], + [157410.059, 453859.894], + [157527.742, 453802.408], + [158166.018, 453780.084], + [158309.126, 453842.066], + [158446.116, 453749.204], + [158504.34, 453555.409], + [158377.312, 452591.379], + [158296.272, 452367.502], + [157977.797, 452306.119], + [157847.05, 452116.17], + [157821.077, 452000.949], + [157926.4658, 451618.3951], + [158289.1309, 451064.4092], + [158731.867, 450820.82], + [159013.229, 450772.73], + [159213.054, 450547.9362], + [159574.569, 451274.87], + [160071.909, 450996.235], + [160137.683, 451188.68], + [160395.244, 451389.713], + [161172.617, 451620.067], + [161733.5168, 451996.8221], + [162148.226, 452118.378], + [162590.454, 452085.232], + [162430.308, 453636.526], + [162468.123, 453716.071], + [162725.592, 453678.333], + [162876.756, 453902.201], + [163047.606, 453902.966], + [163070.3311, 454196.6542], + [163075.713, 454280.479], + [163201.3972, 454281.355], + [163357.406, 454307.06], + [163442.744, 454427.138], + [163412.522, 454537.809], + [163723.153, 454509.99], + [164063.125, 454556.384], + [164127.973, 454456.464], + [164285.608, 454371.578], + [164575.727, 454721.236], + [164866.425, 454899.778], + [164877.292, 455084.458], + [164556.858, 455191.103], + [164845.161, 455733.609], + [165274.611, 455608.691], + [165354.234, 456059.003], + [165133.886, 456079.12], + [165390.145, 456475.907], + [165412.403, 456629.216], + [164977.267, 456869.776], + [164889.492, 457123.615], + [165574.065, 457288.592], + [165743.908, 457090.002], + [165900.658, 457145.388], + [165830.958, 457361.792], + [166176.74, 457477.1], + [166364.285, 456980.691], + [166444.815, 456891.558], + [166192.622, 456504.372], + [166459.293, 456362.073], + [166460.174, 456148.091], + [166558.913, 455964.843], + [166480.087, 455928.929], + [166495.71, 455373.99], + [166562.875, 455441.727], + [166641.31, 455414.05], + [166666.526, 455337.434], + [166616.6, 455259.95], + [166895.6686, 455119.0798], + [166893.459, 454807.79], + [167033.825, 454459.343], + [166945.858, 453903.759], + [166868.7107, 453777.4505], + [166793.362, 453652.773], + [166898.435, 453260.033], + [166709.536, 451186.12], + [167598.0877, 451091.703], + [167538.549, 450828.9343], + [167541.3077, 450701.9421], + [167551.018, 450695.814], + [167543.9524, 450580.2033], + [167524.01, 450581.715], + [167449.019, 450468.225], + [167363.3212, 450270.9051], + [167426.106, 450231.4806], + [168042.3854, 450016.9534], + [168913.0859, 449583.6931], + [168917.367, 449571.6666], + [168909.929, 449392.462], + [168899.584, 449392.978], + [168888.548, 449223.719], + [168691.078, 449235.837], + [168735.9581, 448787.9683], + [168742.8985, 448718.7084], + [168727.9067, 448029.6987], + [168936.785, 448010.039], + [168895.644, 447490.133], + [168710.302, 447502.788], + [168699.574, 447121.447], + [168649.1957, 447064.6075], + [168746.0862, 446969.7927], + [168888.427, 446807.065], + [169000.597, 446567.723], + [168981.02, 446091.853], + [169063.215, 445910.454], + [169376.958, 445667.61], + [169787.548, 445201.114], + [170028.343, 445109.103], + [170300.154, 445057.325], + [170565.091, 444685.569], + [170653.417, 443837.409], + [170986.902, 443281.443], + [171412.554, 442877.815], + [171330.835, 442474.604], + [171016.292, 442043.457], + [171220.8438, 441597.13], + [171448.294, 441019.446], + [171506.003, 440475.315], + [171349.501, 440379.288], + [171240.697, 440415.729], + [171015.098, 440365.218], + [171035.1218, 440012.2253], + [170759.115, 440125.804], + [170040.14, 439430.59], + [169900.4064, 439514.5583], + [169130.402, 440101.904], + [168709.153, 440283.902], + [167949.456, 440504.121], + [166964.465, 440688.045], + [166667.274, 440821.877], + [166159.609, 441208.544], + [165514.844, 442106.616], + [165329.912, 442217.912], + [164614.2922, 442431.6237], + [164044.799, 442581.2614], + [164003.0351, 442594.5119], + [163504.976, 442810.571], + [162801.3, 443360.013], + [161801.744, 443940.914], + [161214.47, 443900.787], + [160872.567, 443845.2933], + [159795.676, 443922.736], + [158792.25, 444173.699], + [158368.848, 444106.741], + [157967.532, 443874.6984], + [157484.411, 443372.699], + [157126.695, 443133.361], + [155833.819, 442743.249], + [155259.285, 442479.218], + [154697.3281, 442316.0881], + [154230.927, 442310.207], + [153337.974, 442503.95], + [152830.965, 442437.806], + [152323.463, 442141.27], + [151743.6566, 441412.956], + [151734.6075, 441400.8338], + [151282.371, 440975.357], + [150616.839, 440741.833], + [150146.773, 440756.044], + [149753.1184, 440955.8954], + [149067.932, 441463.424], + [147811.368, 441642.411], + [146970.92, 441895.588], + [146403.142, 442205.756], + [146002.834, 442510.796], + [146712.97, 443101.624], + [147035.18, 443633.776], + [147044.7619, 443644.2411], + [145859.547, 444194.303], + [145804.79, 444891.359], + [145997.671, 445032.93], + [145260.229, 445298.337], + [145133.9285, 445479.9472], + [145166.876, 445561.869], + [145052.717, 445596.723], + [145110.122, 445611.19], + [144166.645, 446992.744], + [143478.767, 447441.807], + [142298.026, 447692.928], + [142392.263, 447985.23], + [142168.546, 448294.16], + [142090.082, 448558.182], + [142215.9698, 449274.8414], + [142116.319, 449503.619], + [141841.443, 449805.821], + [141639.873, 449581.815], + [141437.386, 449869.38], + [141399.616, 450027.044], + [141571.7209, 450542.7909], + [141436.416, 450573.165], + [141290.4081, 450663.611], + [140712.318, 450911.893], + [140705.658, 450842.908], + [139464.377, 450823.756], + [138939.286, 452076.265], + [139263.883, 452251.524], + [139206.378, 452817.462], + [139344.4813, 452977.0303], + [139305.523, 453019.976], + [139378.9638, 453221.4159], + [139174.751, 453444.071], + [139124.699, 453706.614], + [139454.857, 454414.545], + [139437.801, 454693.605], + [139474.852, 454723.143], + [139589.224, 454505.521], + [139898.419, 454289.99], + [140220.528, 454510.849], + [140734.099, 454424.804], + [140901.6797, 454240.064], + [141662.141, 454422.141], + [141834.432, 454358.491], + [141672.304, 455330.236], + [141467.154, 455359.453], + [141223.282, 456093.724], + [141117.0764, 456118.4338], + [140985.361, 456247.921], + [140849.137, 456281.777], + [140839.176, 456117.52], + [140581.825, 456143.344], + [140527.351, 456224.311], + [140517.225, 456149.288], + [140253.301, 456191.9101], + [139849.204, 456186.485], + [139520.893, 456260.815], + [139247.4, 456701.673], + [139185.2187, 456680.6633], + [139176.1674, 456708.8841], + [139566.03, 457688.2351], + [139247.766, 457792.022], + [138777.179, 458097.959], + [138660.2864, 458584.3652], + [138706.61, 458945.53], + [138530.743, 459159.9], + [138249.573, 459208.868], + [138220.425, 459136.372], + [138179.293, 459245.8571], + [138080.945, 459180.243], + [138097.104, 459225.914], + [137150.095, 459630.396], + [135821.462, 460593.572], + [135717.057, 460446.4791], + [135566.983, 460220.413], + [135490.274, 460273.735], + [135408.6, 460220.618], + [135347.8372, 460261.8642], + [134458.151, 460872.754], + [134361.7815, 460748.4187], + [134345.8355, 460727.9737], + [133700.526, 459916.611], + [133441.6299, 459729.706], + [133292.482, 459933.103], + [133260.253, 459847.922], + [133072.147, 459800.945], + [132985.3414, 459720.1589], + [132674.287, 459421.846], + [131743.4429, 460250.63], + [131566.326, 460118.724], + [131596.356, 460083.316], + [131284.0304, 459755.1667], + [130776.9178, 458785.081], + [130706.1243, 458794.0804], + [129316.3694, 460231.3319], + [128678.73, 461526.383], + [128706.674, 461609.5948], + [128115.998, 461230.0961], + [127557.665, 460858.415], + [127477.909, 460546.646], + [126702.491, 460243.483], + [126434.772, 459440.414], + [126983.614, 458369.689], + [127002.211, 458404.16], + [127121.819, 458296.95], + [127077.502, 458226.501], + [127078.779, 457910.327], + [127016.996, 457841.467], + [126848.441, 457828.106], + [126816.259, 457577.36], + [126624.572, 457252.151], + [126650.365, 457079.132], + [126801.512, 456918.007], + [127738.57, 457020.232], + [128020.999, 456069.6972], + [128067.429, 455864.614], + [128805.706, 455645.6296], + [128677.751, 454478.581], + [128567.346, 454500], + [128414.897, 453164.283], + [129682.0699, 452722.376], + [129617.275, 452602.978], + [129641.348, 452585.963], + [129925.349, 452007.845], + [130198.533, 452011.87], + [130302.972, 451960.089], + [130291.677, 451875.219], + [130378.516, 451769.36], + [130338.836, 451548.271], + [130384.124, 451444.03], + [131046.25, 450707.66], + [131558.534, 449659.6245], + [131956.7366, 449138.3818], + [131995.464, 449225.259], + [132225.45, 449096.293], + [132195.503, 448999.328], + [132613.595, 448709.995], + [132736.046, 448769.662], + [132740.4879, 448649.4799], + [132744.9268, 448595.3947], + [132946.746, 447877.69], + [133086.676, 447386.339], + [133150.718, 447359.94], + [133319.8072, 446880.0762], + [133467.2481, 446439.5948], + [133552.582, 446177.115], + [133391.331, 445815.788], + [133609.236, 445883.801], + [133733.335, 445497.476], + [134606.5334, 445953.5336], + [135374.6427, 446111.72], + [135754.879, 446094.254], + [136233.673, 445956.9411], + [136620.641, 445761.073], + [137214.037, 445517.366], + [137601.724, 445397.426], + [137999.609, 445090.76], + [138149.758, 444732.762], + [138265.1514, 444007.8759], + [138266.1361, 444000.209], + [138488.254, 443183.731], + [138681.805, 442899.826], + [139016.903, 442620.02], + [139452.785, 442474.443], + [140261.202, 442377.119], + [140776.226, 442134.309], + [140345.408, 441344.872], + [139585.58, 439812.89], + [139008.96, 438856.07], + [138787.62, 438376.18], + [138647.999, 438366.813], + [138546.11, 438214.5], + [138617.31, 438034.62], + [138579.29, 437917.36], + [138163.053, 437412.678], + [137695.6, 436667.31], + [137755.959, 436274.428], + [137697.22, 436219.23], + [137467.41, 436294.02], + [136586.5352, 434448.6242], + [136404.53, 434441.59], + [136401.03, 434300.83], + [136504.965, 434241.151], + [136440.223, 433795.101], + [136288.759, 433581.089], + [136211.244, 433450.993], + [136141.212, 433338.816], + [136104.756, 433285.668], + [135624.848, 433402.626], + [135089.919, 433296.356], + [134872.105, 433398.097], + [134564.9741, 433389.4339], + [134432.386, 433267.174], + [134365.24, 432905.944], + [134301.3768, 432552.7574], + [134256.0713, 432461.1016], + [134098.618, 432246.117], + [133933.4623, 431984.7356], + [133365.3805, 431769.3987], + [133275.7374, 431776.0117], + [132700.772, 431812.562], + [132147.415, 431662.763], + [131935.693, 431323.682], + [131926.285, 430951.962], + [132063.312, 430779.56], + [132652.893, 430435.164], + [132710.2136, 430275.956], + [132622.397, 430138.747], + [132403.236, 430005.38], + [131976.68, 429919.006], + [131536.958, 430088.879], + [131339.414, 430129.94], + [130179.931, 430066.325], + [130215.816, 430637.043], + [129835.067, 431237.117], + [129929.709, 431560.534], + [129935.931, 431973.726], + [130109.9662, 432575.4408], + [130216.419, 432616.175], + [130196.08, 432659.71], + [129974.6876, 432564.9527], + [128421.406, 431868.618], + [128423.24, 431898.237], + [128075.831, 431691.703], + [127989.595, 432119.075], + [128303.798, 432932.6], + [128115.906, 433581.355], + [128094.317, 434313.958], + [128005.874, 434937.825], + [127965.179, 434932.142], + [127962.722, 434943.949], + [127763.351, 434870.271], + [126893.3018, 434500.3888], + [126583.979, 434367.24], + [126519.085, 434385.07], + [126548.384, 435543.923], + [126140.597, 435816.25], + [125888.85, 435878.221], + [125892.105, 436059.493], + [125832.789, 436117.442], + [125935.922, 436198.479], + [125890.4105, 436224.8619], + [125343.667, 436432.495], + [124902.9, 438212.491], + [124769.826, 438451.875], + [124652.945, 438405.751], + [124399.722, 438059.851], + [124188.55, 437924.454], + [123712.5811, 439998.364], + [123532.177, 440293.183], + [123314.48, 440376.501], + [123821.203, 441350.099], + [124252.444, 441762.724], + [124492.29, 441817.199], + [124862.123, 441762.545], + [125454.449, 441482.224], + [125901.419, 441307.168], + [126193.502, 441294.602], + [126748.805, 441748.56], + [126939.0187, 442027.0509], + [127286.8752, 442540.8876], + [127501.207, 442841.635], + [127836.64, 443123.004], + [128264.608, 443345.28], + [128547.111, 443382.052], + [129088, 443082], + [129500.09, 442701.156], + [129929.744, 442430.454], + [130430.906, 442369.742], + [130649.452, 442429.07], + [130875.6, 442604.02], + [131062.821, 442915.495], + [131172.585, 443282.951], + [131490.525, 443783.814], + [132707.178, 444810.062], + [132243.4881, 445128.966], + [132066.024, 445285.859], + [132132.964, 445378.482], + [132021.8116, 445527.5813], + [131329.5569, 446422.4504], + [130887.6745, 446267.7598], + [130747.1881, 446232.6142], + [130485.5457, 446926.7422], + [130431.9956, 447072.498], + [130294.085, 447441.1915], + [130063.3276, 448015.599], + [129822.164, 448643.597], + [129778.7646, 448640.1849], + [128093.137, 448224.815], + [127884.573, 448149.41], + [126861.144, 448098.797], + [125132.129, 447690.315], + [122926.633, 446952.908], + [122707.762, 446968.868], + [122504.72, 447073.974], + [122219.534, 447071.816], + [121301.4733, 446574.4801], + [120968.743, 446391.633], + [120021.103, 445921.558], + [118326.554, 444949.946], + [117082.618, 444337.983], + [116521.5, 445060.101], + [115898.439, 445862.938], + [118360.706, 446404.063], + [118603.654, 446531.47], + [118553.499, 446629.5851], + [118026.7729, 447665.8438], + [117932.252, 447873.202], + [117911.306, 447896.434], + [117448.947, 447735.809], + [116978.949, 447707.771], + [116407.111, 447802.695], + [116165.0573, 447657.8952], + [115777.218, 447450.834], + [115555.5704, 447442.7733], + [115257.386, 447467.55], + [115058.9595, 447467.9878], + [114922.7261, 447470.3737], + [114606.718, 448377.175], + [115381.697, 448870.836], + [115363.578, 448953.4711], + [115297.5867, 449192.9861], + [115165.782, 449584.948], + [115517.547, 449655.272], + [115888.79, 449997.992], + [116734.229, 451365.346], + [116743.566, 451424.676], + [117405.945, 451904.071], + [118023.452, 452344.197], + [118590.504, 452449.847], + [119411.391, 452921.735], + [119756.743, 453508.865], + [118524.7529, 453525.3204], + [117506.267, 453540.287], + [116779.878, 453316.979], + [117074.76, 453972.561], + [116989.5077, 453997.1542], + [117008.653, 454205.725], + [116544.401, 454188.889], + [116563.468, 454732.107], + [116504.5355, 454762.0646], + [116505.1805, 454794.2305], + [116362.578, 456210.578], + [116350.072, 457589.409], + [116441.618, 457612.094], + [116506.511, 457806.082], + [114243.54, 459508.243], + [114341.68, 459694.96], + [114676.16, 459839.98], + [114923.86, 459788.68], + [115029.14, 459961.194], + [115226.4, 460068.72], + [115344.15, 460240.43], + [115326.134, 460341.795], + [115400.219, 460558.846], + [115317.8, 460937.5], + [115403.38, 460988.3], + [115437.92, 461224.76], + [115699.54, 461486.58], + [115942.187, 461397.178], + [116209.44, 461711.28], + [116615.882, 461702.289], + [116988.6513, 461928.1315], + [117068.536, 461980.281], + [117140.049, 461785.916], + [117316.938, 461775.207], + [117370.906, 461525.992], + [117595.641, 461616.98], + [117716.584, 461399.813], + [117951.795, 461398.72], + [118046.658, 461331.904], + [118329.441, 461404.434], + [118396.54, 461260.82], + [118581, 461134.88], + [119243.595, 461150.263], + [119629.683, 461253.093], + [119771.3223, 461310.2315], + [119902.18, 461305.82], + [119854.49, 463225.58], + [120812.146, 463650.116], + [121128.562, 463852.646], + [119423.0783, 465161.8842], + [118630.532, 465779.59], + [117851.4915, 465908.6381], + [117779.1917, 465992.5398], + [117465.8149, 466266.766], + [117403.6954, 466323.1044], + [117254.591, 466595.209], + [116451.837, 467390.042], + [116373.824, 467703.261], + [115855.319, 468049.446], + [115755.116, 468266.41], + [115786.858, 468348.045], + [115104.382, 468267.176], + [115035.9447, 468342.863], + [114961.826, 469041.426], + [115018.654, 470110.679], + [114669.395, 470415.536], + [114602.306, 470730.763], + [114496.372, 470759.129], + [114509.342, 471127.011], + [115012.839, 471144.235], + [115241.462, 471259.444], + [115440.416, 471162.276], + [115843.685, 471165.098], + [116056, 471292.0001], + [116385.3653, 471386.169], + [116838.22, 471538.2891], + [117595.0376, 472066.3953], + [117814.455, 472059.842], + [117825.95, 472220.283], + [118031.541, 472315.303], + [118124.188, 472550.896], + [118359.987, 472418.436], + [118454.033, 472532.857], + [118395.542, 472783.524], + [118448.925, 472796.848], + [118646.052, 472810.099], + [118672.949, 473189.357], + [118758.4907, 473268.8189], + [118827.058, 473429.353], + [119039.099, 473482.747], + [119416.397, 473788.392], + [119599.001, 473866.09], + [119691.903, 474041.651], + [119838.308, 473806.939], + [119944.711, 473757.293], + [120211.005, 473986.122], + [120552.429, 474083.364], + [120882.659, 473778.181], + [121169.404, 474029.726], + [121632.594, 473766.731], + [121932.143, 474015.021], + [122315.274, 473956.935], + [122480.738, 473955.804], + [122916.161, 474413.047], + [123002.798, 474609.307], + [122973.151, 474952.081], + [123318.869, 475100.96], + [123429.2993, 475535.757], + [123749.546, 475691.285], + [123744.494, 475869.897], + [123658.018, 476068.923], + [123565.468, 476147.689], + [123634.922, 476298.962], + [123524.016, 476774.77], + [123553.6258, 476956.0507], + [123702.633, 476944.204], + [124056.195, 477084.9], + [124664.172, 476779.405], + [124936.057, 476867.603], + [125419.769, 476757.662], + [125520.654, 476787.686], + [125611.7242, 476827.2833], + [125917.281, 476770.797], + [126026.4, 477005.72], + [126242.92, 477044.24], + [126363.3247, 476922.5695], + [126512.084, 477317.393], + [126657.3, 477454.846], + [126658.092, 477455.69], + [127457.081, 478118.749], + [128409.416, 477974.482], + [128703.765, 478379.494], + [128711.971, 478725.064], + [128806.7868, 478740.0448], + [128807.4034, 478782.141], + [128843.978, 478998.268], + [128946.308, 479003.552], + [129131.445, 479353.703], + [129392.887, 479557.547], + [129563.2417, 479588.2762], + [129797.1711, 479480.1043], + [130059, 479450] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD14", + "od_naam": "Omgevingsdienst Regio Utrecht", + "naam_alt": "ODRU" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-601d", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [159795.676, 443922.736], + [160872.567, 443845.2933], + [161214.47, 443900.787], + [161801.744, 443940.914], + [162801.3, 443360.013], + [163504.976, 442810.571], + [164003.0351, 442594.5119], + [164044.799, 442581.2614], + [164614.2922, 442431.6237], + [165329.912, 442217.912], + [165514.844, 442106.616], + [166159.609, 441208.544], + [166667.274, 440821.877], + [166964.465, 440688.045], + [167949.456, 440504.121], + [168709.153, 440283.902], + [169130.402, 440101.904], + [169900.4064, 439514.5583], + [170040.14, 439430.59], + [170862.302, 439235.802], + [171198.412, 439060.46], + [171549.8558, 438775.5009], + [171716.851, 438688.797], + [172125.457, 438721.653], + [172358.228, 438896.764], + [172427.3961, 439043.7585], + [172731.275, 439634.669], + [172745.409, 439835.115], + [173040.891, 440207.809], + [172806.814, 440269.661], + [172671.322, 440465.459], + [172991.233, 440650.448], + [173323.845, 440641.554], + [173903.876, 440502.727], + [174164.93, 440521.105], + [173398.408, 439822.304], + [173185.652, 439986.825], + [173096.756, 439922.29], + [172817.64, 439213.447], + [172865.747, 439128.591], + [173296.533, 439413.954], + [173369.158, 439251.087], + [173835.744, 439497.155], + [173974.048, 439175.522], + [174155.4558, 439245.2338], + [174289.543, 438976.092], + [173733.576, 438770.767], + [173758.8971, 438374.5599], + [173787.052, 437939.9081], + [174514.381, 438046.507], + [175739.675, 438562.754], + [176032.0588, 438510.2085], + [176260.365, 438132.163], + [175819.7763, 438280.3379], + [175438.296, 437964.844], + [175022.923, 437836.965], + [174860.328, 437545.272], + [174972.857, 437360.84], + [174869.942, 437215.559], + [174963.094, 436962.155], + [175226.881, 436689.151], + [176164.0665, 437032.7356], + [176260.726, 436967.365], + [175982.54, 436700.656], + [176211.6172, 436535.9811], + [176589.119, 436130.785], + [176946.327, 435547.014], + [176957.3864, 435362.3445], + [176892.302, 435107.007], + [177049.725, 434975.811], + [177065.8025, 434804.9877], + [176969.775, 434426.861], + [177163.354, 434427.219], + [177287.129, 434300.784], + [177207.8031, 434170.5976], + [176989.891, 433912.03], + [176334.613, 434104.096], + [175498.841, 434167.919], + [174360.458, 434157.25], + [173410.5177, 434287.5229], + [172878.0837, 434409.1053], + [171424.295, 434569.9277], + [171318.511, 434569.4346], + [169583.22, 434533.502], + [167693.478, 434820.312], + [166618.1081, 434738.751], + [165822.668, 434511.069], + [164922.985, 434036.153], + [164897.597, 433662.298], + [165277.681, 433695.44], + [165510.304, 433639.645], + [165733.9116, 433331.4047], + [166023.6818, 433315.8557], + [166253.116, 433292.947], + [166646.2749, 433371.9956], + [167163.384, 433571.271], + [168064.531, 433785.624], + [167686.062, 432836.218], + [167578.122, 432924.444], + [167340.265, 432839.409], + [167376.153, 432539.807], + [167466.2271, 432451.038], + [167545.002, 432363.439], + [167479.881, 432016.14], + [166917.023, 431848.15], + [166874.275, 431381.064], + [166472.429, 431327.087], + [166425.5792, 430465.7332], + [168091.9421, 430687.0181], + [168124.833, 430216.099], + [168192.533, 430088.732], + [168605.467, 429869.899], + [168355.167, 429192.666], + [168599.853, 428123.9341], + [168632.787, 427853.849], + [169546.232, 427905.108], + [169562.234, 427716.797], + [170344.438, 427543.643], + [170123.807, 427477.935], + [170346.767, 427283.988], + [170208.914, 427192.432], + [170286.037, 426955.475], + [169880.785, 426653.041], + [169637.503, 426745.466], + [169529.764, 426626.201], + [168900, 426808], + [168069.3627, 426633.5659], + [167455.1106, 426591], + [166785.027, 426560.833], + [166555.437, 426452.765], + [166371.2867, 426275.1202], + [166310.6504, 426181.9286], + [166130, 425700], + [165900, 425436], + [165600, 425310], + [165234.77, 425338.92], + [164700, 425550], + [164000, 425638], + [163757, 425800], + [163333, 426400], + [163000, 426691], + [162500, 426895], + [162099.1125, 426883.7516], + [161800, 426761], + [161524, 426500], + [161375, 426200], + [161284.3227, 425719.5453], + [161187, 425400], + [161000, 425117], + [160536.3747, 424800.6412], + [160329.1799, 424731.8786], + [159300, 424563], + [158600, 424566], + [157900, 424750], + [157419.6639, 425104.7624], + [157142.2193, 425549.5939], + [156908.632, 425853.477], + [156600, 425993], + [156300, 425979], + [156000, 425809], + [155886.1113, 425644.8416], + [155771.0631, 425393.1699], + [155497, 424900], + [154744, 424000], + [154199.8469, 423057.3438], + [153826.5763, 422494.097], + [153746.8486, 422351.6322], + [153298, 421200], + [153152.0036, 420000.3571], + [153117, 419100], + [152954, 418800], + [152673.992, 418531.655], + [150500, 417537], + [149278.0165, 416677.1719], + [149000, 416511], + [148700, 416448], + [148400, 416509], + [147822.4281, 416789.4958], + [147300, 416834], + [146803.8461, 416776.6538], + [146500, 416686], + [145900, 416250], + [145500, 416104], + [145154.7058, 416198.1761], + [144218.6259, 416965.8243], + [143600, 417199], + [143200, 417207], + [142889.2578, 417128.1329], + [142518.943, 416989.029], + [141760.933, 416857.017], + [141082.863, 417041.791], + [140500.279, 417154.713], + [139918.5779, 417173.7925], + [139549.6301, 417133.5786], + [137099.797, 416574.837], + [136999.997, 416610.998], + [136957.608, 416800.308], + [136931.898, 417200.63], + [136984.031, 417400.132], + [137799.523, 418031.964], + [138118.927, 418529.741], + [137770.382, 418799.941], + [137649.775, 419099.798], + [137682.877, 419499.836], + [137845.5787, 419892.7195], + [137912.996, 420200.282], + [137771.261, 420499.583], + [136466.361, 421050.2013], + [136290.336, 421174.456], + [135801.1189, 421694.1392], + [135518.299, 421934.091], + [135202.872, 422093.913], + [134900.385, 422150.415], + [134592.8539, 422072.1586], + [134299.733, 421868.919], + [133935.545, 421382.818], + [133699.394, 421255.992], + [133403.074, 421202.333], + [133100.093, 421256.905], + [132901.238, 421369.521], + [132494.892, 421897.515], + [132226.85, 422500.912], + [131915.9861, 423013.5854], + [131611.633, 423329.099], + [131359.342, 423465.147], + [130954.4715, 423649.4892], + [130099.526, 423987.342], + [129966.7325, 424077.6423], + [129397.858, 424464.48], + [129154.8602, 424735.6594], + [129010.079, 424999.236], + [128998.028, 425399.593], + [128946.2449, 425500.4], + [128329.078, 425884.292], + [129199.89, 425856.637], + [130119.678, 425644.05], + [130215.297, 426165.7152], + [130257.158, 426455.9451], + [130480.876, 428115.295], + [129782.231, 428212.3186], + [128959.356, 428304.466], + [128555.692, 428534.967], + [128516.9512, 428411.9983], + [128313.3378, 428494.2528], + [128269.513, 428517.677], + [128285.272, 428577.396], + [128242.247, 428589.742], + [128319.893, 428848.507], + [128231.921, 429372.037], + [128207.315, 429659.692], + [127912.33, 430369.011], + [128050.275, 430437.895], + [128412.679, 430125.552], + [128687.423, 429998.909], + [128981.819, 430009.907], + [129403.21, 430133.687], + [130179.931, 430066.325], + [131339.414, 430129.94], + [131536.958, 430088.879], + [131976.68, 429919.006], + [132403.236, 430005.38], + [132622.397, 430138.747], + [132710.2136, 430275.956], + [132652.893, 430435.164], + [132063.312, 430779.56], + [131926.285, 430951.962], + [131935.693, 431323.682], + [132147.415, 431662.763], + [132700.772, 431812.562], + [133275.7374, 431776.0117], + [133365.3805, 431769.3987], + [133933.4623, 431984.7356], + [134098.618, 432246.117], + [134256.0713, 432461.1016], + [134301.3768, 432552.7574], + [134365.24, 432905.944], + [134432.386, 433267.174], + [134564.9741, 433389.4339], + [134872.105, 433398.097], + [135089.919, 433296.356], + [135624.848, 433402.626], + [136104.756, 433285.668], + [136141.212, 433338.816], + [136211.244, 433450.993], + [136288.759, 433581.089], + [136440.223, 433795.101], + [136504.965, 434241.151], + [136401.03, 434300.83], + [136404.53, 434441.59], + [136586.5352, 434448.6242], + [137467.41, 436294.02], + [137697.22, 436219.23], + [137755.959, 436274.428], + [137695.6, 436667.31], + [138163.053, 437412.678], + [138579.29, 437917.36], + [138617.31, 438034.62], + [138546.11, 438214.5], + [138647.999, 438366.813], + [138787.62, 438376.18], + [139008.96, 438856.07], + [139585.58, 439812.89], + [140345.408, 441344.872], + [140776.226, 442134.309], + [141427.3, 441628.044], + [142053.653, 441324.157], + [142544.423, 441237.766], + [143056.5845, 441372.3373], + [143058.978, 441373.753], + [143443.7761, 441680.0945], + [143781.532, 442167.351], + [144192.697, 443038.134], + [144405.742, 443249.23], + [144671.254, 443382.968], + [145042.479, 443379.126], + [145334.439, 443241.541], + [146002.834, 442510.796], + [146403.142, 442205.756], + [146970.92, 441895.588], + [147811.368, 441642.411], + [149067.932, 441463.424], + [149753.1184, 440955.8954], + [150146.773, 440756.044], + [150616.839, 440741.833], + [151282.371, 440975.357], + [151734.6075, 441400.8338], + [151743.6566, 441412.956], + [152323.463, 442141.27], + [152830.965, 442437.806], + [153337.974, 442503.95], + [154230.927, 442310.207], + [154697.3281, 442316.0881], + [155259.285, 442479.218], + [155833.819, 442743.249], + [157126.695, 443133.361], + [157484.411, 443372.699], + [157967.532, 443874.6984], + [158368.848, 444106.741], + [158792.25, 444173.699], + [159795.676, 443922.736] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD12", + "od_naam": "Omgevingsdienst Rivierenland", + "naam_alt": "ODR" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-601c", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [242326.91, 501433.666], + [243726.76, 500646.288], + [244005.232, 500648.109], + [245388.583, 499764.464], + [245577.52, 499661.97], + [245802.85, 499648.11], + [247797.45, 498248.93], + [248098.7359, 498153.4976], + [249291.95, 497775.4], + [252543.9741, 497863.5779], + [253178.43, 497891.55], + [254059.89, 497823.21], + [254708.68, 497893.95], + [254611.4, 496802.11], + [254707.1473, 496828.5722], + [255238.53, 496975.58], + [257101.54, 496478.22], + [258268.37, 496023.75], + [260703.34, 495316.68], + [261084.15, 495457.95], + [261498.129, 495835.331], + [262001.973, 496297.753], + [262052.056, 496258.339], + [262078.569, 496298.842], + [262066.53, 496378.977], + [262872.356, 498065.892], + [263068.723, 498735.466], + [263744.21, 499205.14], + [264181.706, 498738.303], + [264235.309, 498365.696], + [264624.137, 497548.913], + [264989.766, 496516.104], + [265238.27, 495495.7886], + [265419.009, 494720.191], + [266196.579, 494052.906], + [266636.2678, 493019.8039], + [267205.942, 491813.945], + [267566.173, 491811.651], + [267957.329, 491622.821], + [268198.683, 491624.157], + [268273.161, 491533.636], + [268519.627, 491662.718], + [268755.728, 491487.477], + [268749.666, 491129.071], + [269117.646, 490523.8586], + [269741.627, 488548.779], + [269795.186, 487882.456], + [269789.562, 486222.339], + [268808.923, 484746.8561], + [268743.327, 484646.899], + [268745.344, 484313.252], + [268666.106, 484113.474], + [268707.857, 484002.181], + [268162.8, 483052.02], + [268174.62, 482776.12], + [268235.89, 482631.22], + [268088.04, 482238.58], + [268125.07, 482258.38], + [268200.99, 482102.6], + [267931.317, 481952.756], + [267942.89, 481903.58], + [267612.47, 481774.58], + [267789.99, 481630.87], + [267679.73, 481247.06], + [267307.004, 480668.462], + [266830.005, 479484.903], + [266827.069, 478968.027], + [267067.378, 478328.121], + [267075.332, 478178.447], + [266937.943, 477931.192], + [267021.555, 477447.927], + [267263.883, 477234.929], + [267781.23, 476048.5901], + [268008.4, 475524.5], + [269643.89, 473902.73], + [269352.94, 473169.88], + [268487.4865, 472698.6276], + [268368.3465, 472631.0953], + [268102.027, 472480.197], + [267937.594, 472387.552], + [267777.475, 472320.7401], + [266992.88, 472114.63], + [266585.99, 472130.43], + [266509.347, 472035.638], + [266069.595, 472266.0091], + [266051.17, 472214.93], + [265951.41, 472300.1], + [265687.727, 472350.2001], + [265582.849, 472370.116], + [265419.879, 472399.321], + [264981.217, 472219.233], + [264443.114, 472183.248], + [264308.107, 472023.843], + [264166.838, 471974.366], + [264196.792, 471812.841], + [264027.739, 471680.229], + [263910.579, 471491.924], + [263821.211, 471200.274], + [263826.965, 470866.6941], + [263753.355, 470537.388], + [263587.952, 470232.63], + [263468.62, 469775.59], + [263257.05, 469501.2801], + [263029.71, 468930.27], + [262696.27, 468522.9], + [262690.8907, 468424.2546], + [262709.28, 468198.23], + [261966.04, 467033.47], + [261848.39, 466969.36], + [261056.1, 466836.89], + [260775.26, 466717.5], + [259538.54, 466598.43], + [259125.65, 466460.17], + [258936.99, 466302.44], + [258880.59, 466167.95], + [258878.81, 465727.76], + [257806.527, 464736.151], + [257182.712, 464144.957], + [257285.569, 464143.397], + [256745.499, 461572.323], + [256762.41, 461273.277], + [256331.31, 461018.249], + [255553.254, 460155.613], + [254715.488, 459997.947], + [253314.201, 459881.793], + [249267.2513, 459843.306], + [249058.1, 459841.215], + [247615.896, 459789.251], + [247615.957, 459738.991], + [246025.401, 459728.033], + [245681.2668, 459881.7486], + [244750.43, 460292.781], + [243367.993, 460535.667], + [243013.6521, 460686.4349], + [242354.4346, 460967.5565], + [242711.538, 461709.831], + [242994.008, 462014.765], + [243109.135, 462402.346], + [243054.004, 463014.775], + [242882.808, 463253.394], + [242976.438, 463260.532], + [243051.342, 463439.498], + [242954.346, 463541.057], + [242996.545, 463733.39], + [242823.235, 463915.832], + [243044.579, 464186.174], + [243023.781, 464302.422], + [242989.515, 464330.365], + [243050.226, 464456.588], + [242962.227, 464470.118], + [243000.494, 464677.854], + [242899.7538, 464863.8627], + [242854.854, 464947.194], + [241327.1944, 465721.0927], + [241039.354, 465862.515], + [240726.79, 465101.596], + [240345.61, 465626.08], + [240083.812, 465728.968], + [239953.23, 465603.252], + [239729.262, 465651.345], + [239692.002, 465614.285], + [239780.778, 465536.232], + [239675.87, 465222.062], + [239473.725, 465187.806], + [239162.6265, 464839.5463], + [238810.224, 464597.152], + [238609.697, 464813.771], + [238479.607, 464754.564], + [238163.142, 465248.945], + [238182.97, 465427.384], + [238386.647, 465614.118], + [238393.48, 465693.61], + [237682.481, 466433.168], + [237333.459, 466697.5956], + [237256.205, 466721.263], + [237122.273, 466665.9402], + [236915.7003, 466609.0218], + [234899.138, 466100.488], + [232313.2046, 466505.9024], + [232012.29, 466497.16], + [230829.165, 466024.343], + [230593.624, 466045.952], + [230469.43, 466321.266], + [229670.469, 466613.698], + [229622.2728, 466749.5813], + [229226.74, 467323.76], + [229035.99, 467727.07], + [228990.16, 468348.6], + [229043.374, 468471.5499], + [228826.27, 468581.32], + [228153.275, 468634.695], + [228073.1828, 468716.3674], + [227888.55, 468987.75], + [227833.8268, 469243.409], + [227383.73, 469940.5], + [226943.34, 470408.82], + [226363.04, 470865.24], + [226207.55, 471073.49], + [225688.63, 472155.45], + [225328.996, 472617.757], + [225297.0585, 472884.2351], + [225294.73, 473178.106], + [224350.293, 473287.788], + [223480.256, 473196.391], + [223213.02, 473253.913], + [223037.353, 473352.372], + [222927.658, 473584.211], + [222877.8721, 473638.138], + [222882.891, 473726.48], + [222604.458, 474014.3], + [222557.132, 474161.85], + [222542.252, 474255.509], + [222603.342, 474501.543], + [222437.914, 474581.572], + [222431.34, 474710.78], + [222595.536, 474752.044], + [222588.35, 474978.14], + [222297.03, 475222.3], + [222150.29, 475119.63], + [221739.54, 475495.4], + [221720.113, 475464.357], + [221617.72, 475557.962], + [221646.518, 475580.415], + [221178.529, 476010.295], + [221088.225, 475913.106], + [220913.7, 476031.49], + [221051.74, 476128], + [220955.3231, 476217.6531], + [220861.14, 476306.359], + [220775.07, 476130.175], + [220639.343, 476199.357], + [220751.77, 476374.1], + [219257.0481, 477428.7299], + [219174.506, 478433.5529], + [219174.031, 478438.0072], + [219069.67, 479710.62], + [220058.922, 480552.208], + [221056.087, 481582.537], + [220973.9459, 481712.8109], + [220649.3846, 482227.4014], + [220315.5436, 482794.1862], + [220105.023, 483233.548], + [219664.245, 484712.946], + [219472.883, 485253.722], + [219631.939, 485791.087], + [220098.22, 487335.431], + [221053.457, 488126.918], + [222764.624, 488552.821], + [223185.521, 488521.153], + [223563.454, 489849.9789], + [224010.6945, 491427.5601], + [224255.201, 492456.333], + [223225.234, 493844.412], + [225899.525, 495124.119], + [226470.42, 495657.649], + [226411.677, 495746.183], + [226486.333, 495865.16], + [226450.663, 496087.131], + [226739.86, 496334.341], + [226859.332, 496841.839], + [226681.571, 496909.855], + [226707.132, 497028.347], + [226758.918, 497097.914], + [226965.801, 497165.405], + [226866.79, 497334.133], + [226933.775, 497544.392], + [227054.533, 497632.87], + [227237.021, 497586.389], + [227323.482, 497617.553], + [227225.3527, 497661.7396], + [227056.3865, 497994.2548], + [227111.418, 498164.578], + [227248.704, 498213.622], + [227329.658, 497975.614], + [227385.072, 497951.373], + [227444.218, 498171.763], + [227269.299, 498330.208], + [227264.1731, 498426.2906], + [227396.558, 498505.005], + [227382.862, 498673.072], + [227461.5691, 498709.1722], + [227413.867, 498567.319], + [227506.632, 498487.588], + [227806.033, 498564.967], + [227991.744, 498722.186], + [227940.774, 498787.26], + [228001.953, 498822.073], + [227992.216, 498942.307], + [228257.443, 499143.756], + [228731.435, 499214.59], + [229133.306, 499433.871], + [229825.505, 499361.75], + [230088.285, 499632.44], + [230311.488, 499635.582], + [230241.891, 499828.807], + [230419.2776, 499863.8393], + [230849.583, 499918.224], + [230948.874, 500948.132], + [231242.684, 500919.723], + [232914.5171, 500758.0643], + [232917.353, 500757.7901], + [234282.284, 500625.808], + [235021.0456, 500421.9716], + [235546.658, 500276.6953], + [237061.735, 499860.135], + [237460.46, 499774.096], + [238189.7084, 498383.5611], + [238299.457, 498245.01], + [238501.186, 498607.479], + [238941.0185, 498909.4024], + [239222.821, 499176.415], + [239525.029, 498974.751], + [239824.854, 498943.704], + [240159.292, 499111.734], + [240227.883, 498905.781], + [240768.812, 499120.628], + [240869.737, 499352.412], + [240615.712, 499732.739], + [241091.291, 500197.464], + [241018.895, 500765.657], + [241663.3961, 501294.9592], + [242067.166, 501579.679], + [242326.91, 501433.666] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD05", + "od_naam": "Omgevingsdienst Twente", + "naam_alt": "OD Twente" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-601b", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [169902.6416, 486169.9909], + [169760.8926, 486005.7156], + [169593.7745, 485911.6782], + [169623.268, 485980.462], + [169559.427, 486010.252], + [169448.0543, 485987.9238], + [169200.827, 485998.648], + [169064.4874, 486040.8685], + [169040.3548, 486124.0772], + [169125.469, 486177.834], + [169389.6258, 486202.1909], + [169902.6416, 486169.9909] + ] + ], + [ + [ + [191251.2655, 499559.5004], + [191578.085, 498616.425], + [192244.534, 498992.456], + [192269.3987, 498974.1478], + [192309.3069, 498903.1151], + [192345.17, 498893.856], + [192968.3148, 499515.1347], + [193328.536, 499750.839], + [193793.866, 499746.728], + [194276.678, 498902.8226], + [194713.9363, 499441.3008], + [195478.0941, 500306.9553], + [196054.966, 500859.545], + [196664.763, 501560.136], + [197124.044, 502021.519], + [197445.446, 502211.195], + [197593.285, 502194.076], + [197629.615, 502215.351], + [197919.754, 502091.548], + [198157.836, 502149.759], + [198326.021, 502289.38], + [198493.513, 502628.339], + [199355.771, 502263.449], + [199743.7145, 502000.2353], + [200293.2961, 501551.9897], + [200580.856, 501133.593], + [200815.9733, 500512.0937], + [200930.8918, 500252.2305], + [201133.647, 499933.391], + [201480.175, 499595.79], + [201821.546, 499389.375], + [202697.913, 499018.121], + [203039.104, 498720.973], + [203376.211, 498301.3803], + [203554.128, 497862.129], + [203693.118, 496485.535], + [203593.852, 495798.688], + [203617.067, 495573.249], + [203806.115, 495220.677], + [204118.188, 494995.02], + [204428.793, 494717.245], + [204800.5156, 494155.6376], + [204592.464, 493850.174], + [204715.779, 493655.288], + [204722.945, 493455.847], + [204433.103, 492697.318], + [204416.023, 492369.159], + [204498.486, 492075.106], + [204237.9846, 491355.5591], + [204514.505, 491266.287], + [204611.4216, 491032.4491], + [204805.702, 490785.907], + [205120.817, 490708.349], + [205237.736, 490516.055], + [205388.569, 490455.279], + [205590.5219, 490497.449], + [205552.4714, 490344.1284], + [205235.147, 489675.9], + [205309.8599, 488946.5749], + [205287.176, 488722.975], + [205141.8901, 488416.5697], + [204953.4882, 488217.0139], + [204446.609, 487952.291], + [203208.446, 487565.303], + [202347.553, 487359.808], + [202160.951, 487201.746], + [202060.65, 487020.675], + [202041.291, 486492.051], + [202250.56, 486242.472], + [202769.552, 486148.388], + [202921.903, 486071.808], + [203115.18, 485876.466], + [203202.6608, 485683.6353], + [202692.424, 485340.295], + [202065.122, 485171.42], + [202071.9, 485096.862], + [201934.931, 484963.646], + [201944.279, 484418.4], + [201890.86, 484293.96], + [201994.84, 483637.92], + [201918.243, 483202.235], + [201814.46, 483176.98], + [201923.369, 483041.876], + [201837.129, 482958.232], + [201793.217, 482736.77], + [201599.554, 481768.296], + [201373.83, 481713.985], + [201286.366, 481584.112], + [201318.787, 481312.476], + [201682.026, 481246.458], + [201813.232, 481309.551], + [202216.852, 481302.332], + [202311.339, 480664.649], + [202544.213, 480616.771], + [202448.578, 480133.835], + [202532.3891, 479529.9731], + [202679.669, 479554.973], + [202810.558, 479386.934], + [203000.13, 479345.729], + [203565.57, 479366.705], + [203533.575, 479481.173], + [203709.398, 479490.12], + [204029.068, 478512.232], + [204406.028, 478048.967], + [204410.634, 477215.577], + [204488.222, 476947.571], + [205092.0552, 476254.9331], + [205222.9962, 475948.0271], + [205291.52, 475420.35], + [205536.32, 475111.0771], + [205716.5062, 475000.1382], + [205384.715, 474566.576], + [205285.351, 474216.46], + [205303.4, 473971.095], + [206184.1142, 473708.5943], + [206334.1687, 473559.6384], + [206650.144, 473420.8901], + [206718.144, 473500.67], + [207052.3299, 473598.6896], + [207093.06, 473637.416], + [207321.037, 473499.486], + [207381.318, 473368.142], + [207358.97, 473194.057], + [207178.1127, 472994.7943], + [206572.951, 472534.841], + [206541.742, 472057.864], + [206638.438, 471774.712], + [206945.589, 471350.634], + [207562.8767, 471125.3021], + [207812.406, 471075.5], + [207951.671, 470959.375], + [208078.531, 470680.312], + [207988.843, 470314.156], + [208089.218, 470212.5], + [208218.281, 470248.937], + [208399.835, 470578.411], + [208165.288, 470814.356], + [208195.004, 470888.228], + [207969.524, 471376.912], + [208337.989, 471205.247], + [208375.84, 471310.294], + [208004.905, 471444.63], + [208223.336, 471724.221], + [208458.346, 471556.775], + [208755.934, 471167.577], + [209226.79, 470860.741], + [209810.522, 470211.98], + [209914.056, 469889.929], + [209941.5261, 469469.8537], + [209845.684, 469151.301], + [209469.845, 468765.127], + [209083.361, 468649.926], + [208658.9, 468412.653], + [207928.353, 468391.843], + [207709.323, 468239.247], + [207596.0991, 468014.7438], + [207589.898, 467554.538], + [207777.491, 467166.132], + [207942.783, 467086.301], + [208213.099, 467141.294], + [208496.661, 467062.261], + [209299.825, 466211.542], + [209833.38, 466031.854], + [210014.9549, 465893.8748], + [210159.414, 465673.923], + [210212.795, 465437.657], + [210111.432, 464933.744], + [210026.131, 464691.859], + [209704.078, 464338.254], + [209566.385, 463973.174], + [209366.4702, 463023.3038], + [209208.941, 462972.251], + [208686.356, 463026.396], + [207824.372, 463562.935], + [207020.988, 463586.784], + [206810.927, 463466.808], + [206658.776, 463271.468], + [206563.556, 462938.174], + [206550.906, 462508.888], + [206722.87, 462210.966], + [207254.131, 462029.479], + [208130.7704, 462275.2276], + [208477.706, 462292.695], + [208813.996, 462156.53], + [208730.169, 461979.795], + [208779.139, 461867.134], + [208931.312, 461768.518], + [208871.018, 461540.962], + [209198.009, 461447.404], + [209213.11, 461374.371], + [209110.62, 461261.177], + [209268.187, 461146.951], + [209237.139, 461116.309], + [209521.85, 460971.758], + [209447.051, 460781.103], + [209531.921, 460637.746], + [209560.151, 460401.191], + [209461.046, 460079.433], + [209622.3901, 459907.6337], + [209694.7734, 459810.0203], + [209701.504, 459205.143], + [209925.337, 458838.542], + [210138.402, 458748.921], + [211099.252, 458686.341], + [211366.191, 458592.718], + [211584.876, 458417.057], + [211731.524, 458182.921], + [211896.454, 457690.783], + [211920.071, 456951.665], + [211747.254, 456616.404], + [211422.31, 456341.862], + [211168.474, 456335.517], + [210907.529, 456462.552], + [210673.433, 456482.404], + [209987.406, 456198.547], + [209214.556, 456188.819], + [209040.301, 456075.676], + [208923.9217, 455878.7842], + [208710.159, 454804.312], + [208512.334, 454472.786], + [208173.146, 454263.2901], + [207386.918, 453570.927], + [207161.507, 453206.04], + [206576.8908, 452813.2809], + [206453.609, 452586.049], + [206307.88, 452646.096], + [206380.61, 452720.058], + [206332.477, 452904.963], + [206116.092, 452880.539], + [206080.14, 452979.869], + [205856.315, 452982.432], + [205847.834, 453146.876], + [205440.942, 453026.147], + [205243.853, 453417.17], + [205312.478, 453621.815], + [204950.51, 453577.699], + [204919.067, 453681.661], + [204828.293, 453949.461], + [204499.303, 454314.469], + [204066.399, 454608.097], + [204097.958, 454672.134], + [203730.841, 454782.287], + [202849.2619, 455040.8442], + [202802.0917, 455054.7987], + [202580.741, 455119.4321], + [202537.599, 455290.055], + [202493.895, 455280.73], + [202328.334, 455253.893], + [202310.333, 455264.14], + [202299.76, 455289.031], + [202287.096, 455293.279], + [202215.2, 455694.75], + [201663.4524, 455772.5391], + [201636.2743, 455768.5468], + [201233.9316, 455573.8805], + [201018.414, 455441.61], + [199935.545, 454612.164], + [198938.419, 453608.762], + [198646.101, 453412.858], + [197680.915, 453261.993], + [197436.575, 453298.53], + [197630.529, 453891.469], + [197618.775, 454152.955], + [196354.706, 454715.296], + [195434.381, 454612.657], + [194586.332, 454384.703], + [193991.488, 454048.033], + [193313.786, 454549.236], + [193447.461, 455990.383], + [193662.201, 457000.0002], + [193301.042, 456931.199], + [192003.747, 457028.835], + [190921.6462, 457025.7917], + [190140.146, 457406.863], + [189706.487, 457514.038], + [188997.15, 457683.465], + [188499.134, 458583.401], + [188354.2712, 458828.9278], + [187702.856, 459811.261], + [187673.772, 459972.278], + [187663.552, 460034.889], + [187528.803, 460838.606], + [187440.3874, 462003.3039], + [187328.8231, 462390.692], + [186383.387, 462702.844], + [183925.32, 462666.24], + [183901.958, 464365.875], + [183369.23, 465550.2], + [184046.497, 466390.2], + [183200.84, 467472.76], + [182967.52, 467659.29], + [182677.58, 467729.58], + [179846.123, 467352.322], + [179191.457, 468255.732], + [178483.091, 469000], + [178331.078, 469772.357], + [178249.948, 470189.309], + [179222.5892, 470258.8691], + [179313.24, 470660.8], + [178979.877, 471559.149], + [178648.101, 471579.125], + [178481.259, 471555.643], + [178384.358, 472373.332], + [178166.355, 472770.76], + [177648.4261, 472655.84], + [177416.1468, 472508.5781], + [177158.718, 472454.978], + [177116.5704, 472445.2807], + [176824.2333, 472419.402], + [175936.771, 472450.87], + [175671.5711, 472530.4789], + [175247.619, 472548.096], + [175092.5, 470847.654], + [174382.032, 470692.271], + [174017.392, 470550.233], + [173482.043, 470155.264], + [172711.7579, 469585.3176], + [171819.145, 468924.76], + [170090.9404, 468577.2286], + [170074.3759, 468573.8709], + [166123.4, 468260], + [166098.0482, 468406.0371], + [165535.6745, 469364.9482], + [165432.609, 469347.858], + [165416.281, 469464.219], + [165471.215, 469473.313], + [165183.7871, 469956.5171], + [165071.915, 470144.764], + [164973.042, 470123.141], + [164548.281, 470560.653], + [164279.097, 471034.144], + [164311.224, 471056.117], + [164031.243, 471402.754], + [163902.278, 471440.11], + [163913.854, 471490.566], + [163722.441, 471460.141], + [163769.31, 471792.475], + [163731.1427, 471816.5882], + [163577.37, 471854.709], + [163591.466, 471970.626], + [163405.225, 471925.604], + [163456.873, 471756.406], + [163411.597, 471648.332], + [163262.652, 471611.148], + [163146.06, 471509.413], + [162822.155, 471660.968], + [162773.384, 471789.91], + [162663.292, 471763.502], + [162526.9048, 472040.137], + [162437.428, 472029.6332], + [162022.94, 471978.926], + [161877.202, 472063.942], + [161590.529, 472358.265], + [161428.37, 472819.636], + [160939.444, 474274.086], + [161236.381, 474381.443], + [161241.5621, 474424.6355], + [161909.195, 474950.711], + [162830.0791, 475168.197], + [163078.67, 475199.274], + [164573.58, 475082.006], + [164625.667, 475146.607], + [164480.5431, 475206.4593], + [164662.683, 475211.402], + [164804.001, 475346.716], + [164856.0455, 475529.0039], + [164788.507, 475692.857], + [164817.445, 475959.3166], + [164826.702, 475959.317], + [164856.4793, 475686.9709], + [164973.3928, 475676.2114], + [165075.4224, 475849.5185], + [164959.3854, 475924.3688], + [164857.74, 475941.9353], + [164857.74, 475950.61], + [164986.523, 475980.659], + [165059.491, 475925.5193], + [165140.558, 475945.494], + [165496.1664, 476807.156], + [165975.5974, 478214.8674], + [166736.705, 480364.804], + [166714.901, 480636.2854], + [166809.2763, 480789.6788], + [166769.369, 480902.3117], + [166741.4743, 480995.9828], + [166830.4249, 481154.5613], + [166858.119, 481142.201], + [166780.333, 480989.5887], + [166809.72, 480914.676], + [166913.811, 480830.557], + [167011.231, 480866.253], + [167079.727, 480960.7064], + [167052.495, 480984.051], + [167061.182, 481009.193], + [167045.359, 481020.678], + [167054.4365, 481032.3548], + [166968.647, 481088.102], + [166954.8601, 481073.676], + [166911.7325, 481102.2386], + [166913.7289, 481130.5538], + [166945.0411, 481129.6868], + [166964.5828, 481120.175], + [167112.0431, 481109.921], + [167196.485, 481111.462], + [167258.832, 481202.715], + [167232.405, 481221.455], + [167167.488, 481130.0004], + [167146.838, 481128.789], + [167149.147, 481211.701], + [167128.621, 481212.727], + [167124.772, 481133.666], + [167083.464, 481135.719], + [167087.056, 481214.268], + [167063.194, 481214.781], + [167061.142, 481137.259], + [166961.3918, 481139.9124], + [167046.9043, 481260.2693], + [167064.7114, 481262.0758], + [167244.2233, 481258.0453], + [167315.097, 481400.122], + [167853.6216, 482089.9109], + [168260.145, 482464.667], + [169094.697, 482948.254], + [169385.739, 483265.8739], + [169718.9187, 483567.8242], + [170011.7537, 483889.0539], + [170274.8331, 484207.457], + [170335.9431, 484414.65], + [170356.6039, 484656.2718], + [170498.7661, 484783.6218], + [170371.9214, 484821.8133], + [170316.9221, 484889.769], + [170530.124, 484890.034], + [170515.522, 484922.933], + [170410.9188, 484928.1235], + [170408.018, 484955.2121], + [170557.1497, 485090.3155], + [170469.6704, 485458.1007], + [170856.8123, 485216.7791], + [170904.4459, 485122.1068], + [170905.0103, 485098.3954], + [170932.2431, 485078.8584], + [170937.4821, 485086.4551], + [170944.0348, 485081.2129], + [170941.5436, 485060.648], + [170960.9462, 485038.4209], + [170951.9447, 485019.0051], + [171015.333, 484953.313], + [171111.3779, 484921.2344], + [171122.5449, 484907.1826], + [171122.0571, 484874.8701], + [171095.5557, 484834.8106], + [171145.457, 484800.2651], + [171189.1351, 484863.511], + [170939.7391, 485095.6628], + [170954.1263, 485118.5469], + [170884.9334, 485255.1943], + [170893.7721, 485281.9537], + [171041.1543, 485307.8883], + [171118.9186, 485302.8797], + [171129.592, 485289.6564], + [171189.3936, 485215.5681], + [171232.8785, 485254.9818], + [171142.5249, 485320.9096], + [171026.1032, 485324.4172], + [170994.0132, 485333.8533], + [170917.467, 485313.4287], + [170689.5908, 485423.3692], + [170564.5724, 485444.1707], + [170548.8014, 485486.7081], + [170650.3189, 485545.9073], + [170799.927, 485641.8666], + [170815.674, 485817.1599], + [170796.4717, 485833.9162], + [170789.17, 485662.4572], + [170781.6801, 485664.0084], + [170791.2765, 485778.6219], + [170748.2794, 485763.659], + [170740.6594, 485698.0423], + [170729.6528, 485701.4289], + [170710.3783, 485738.2241], + [170566.8621, 485658.6868], + [170577.5701, 485636.2413], + [170542.3069, 485616.728], + [170579.2068, 485557.5156], + [170517.0245, 485506.3291], + [170478.4682, 485571.5658], + [170472.8505, 485602.8232], + [170477.1718, 485607.1445], + [170485.6704, 485584.2416], + [170501.8033, 485588.8509], + [170513.8687, 485609.47], + [170512.2961, 485634.4723], + [170494.6929, 485647.8166], + [170478.274, 485626.9537], + [170476.4425, 485637.53], + [170782.7785, 485852.8297], + [170687.0474, 485928.0085], + [170636.6676, 485886.148], + [170450.8045, 486064.2378], + [170511.494, 486092.6741], + [170538.1891, 486104.9732], + [171210.6555, 485621.2701], + [171341.7444, 485482.441], + [171365.626, 485499.983], + [171346.2454, 485584.4677], + [171202.9119, 485723.3796], + [171235.7054, 485780.1234], + [171331.1383, 485688.0068], + [171309.0303, 485646.0016], + [171377.0169, 485580.5943], + [171438.281, 485649.071], + [171442.362, 485878.24], + [171340.022, 485880.154], + [171338.8374, 485927.5063], + [171360.501, 485926.211], + [171362.641, 485893.182], + [171406.649, 485892.065], + [171409.813, 485933.096], + [171369.784, 485944.052], + [171409.282, 485978.678], + [171414.719, 486311.111], + [171466.565, 486342.374], + [171518.408, 486289.251], + [171488.507, 486260.042], + [171485.3661, 486019.2244], + [171526.0121, 485986.5753], + [171603.524, 486061.9243], + [171555.5184, 486106.799], + [171522.0653, 486108.0503], + [171522.838, 486224.313], + [171562.1275, 486252.0372], + [171754.632, 486018.0333], + [172142.0553, 486088.86], + [172253.0959, 486195.6709], + [172216.2949, 486233.1049], + [171817.305, 486131.586], + [171548.9058, 486424.545], + [171581.949, 486468.842], + [172306.2763, 486493.848], + [172503.8728, 486664.729], + [172815.306, 486656.333], + [173127.1002, 486361.5603], + [174532.857, 487509.1628], + [174748.635, 487721.338], + [174772.7447, 487908.3308], + [174863.261, 487926.03], + [175172.872, 487859.751], + [175626.575, 487943.6859], + [175932.2383, 488136.1685], + [176289.399, 488199.908], + [176524.0429, 488471.2582], + [176501.8901, 488559.8673], + [176518.8764, 488576.1004], + [176574.8135, 488520.9855], + [176621.7156, 488541.1937], + [176551.0895, 488606.8849], + [176583.1774, 488625.45], + [176664.499, 488540.914], + [176747.383, 488569.218], + [176791.785, 488653.1418], + [176777.971, 488709.915], + [176750.672, 488731.966], + [176742.1209, 488776.5614], + [176811.0693, 488724.1775], + [176832.733, 488776.889], + [176796.6169, 488819.9142], + [176815.8564, 488828.4348], + [176851.0996, 488810.5662], + [176944.6169, 488820.6658], + [176966.0345, 488895.0519], + [177075.7717, 488943.7211], + [177163.7823, 488926.6165], + [177384.7611, 488925.462], + [177822.5911, 489266.3537], + [177927.8805, 489274.2138], + [178082.3663, 489407.9309], + [178185.1428, 489622.2889], + [178395.4395, 489763.2676], + [178444.1875, 489707.8048], + [178699.191, 489861.079], + [178659.4915, 489940.2828], + [178855.3488, 490071.5816], + [179009.534, 490037.8251], + [179711.309, 490722.899], + [180047.7553, 490890.4614], + [180157.7653, 491068.6388], + [180792.9133, 491549.1923], + [181965.882, 492581.4234], + [182238.446, 492751.838], + [182499.512, 493021.867], + [182913.2487, 493457.2231], + [183353.3303, 493800.1339], + [183577.0353, 494059.6545], + [183826.2586, 494297.5154], + [183920.2888, 494484.4704], + [184554.879, 495449.8751], + [184474.961, 495507.739], + [184414.5334, 495592.5989], + [184475.3831, 495687.369], + [184586.083, 495859.778], + [184562.2603, 495891.0414], + [184627.1725, 496092.9193], + [184643.0732, 496215.2664], + [184461.878, 496382.5873], + [184161.6875, 496549.8356], + [184238.9111, 496697.7257], + [184241.6287, 496702.9296], + [184315.5192, 496798.5362], + [184369.2579, 496911.6048], + [184638.7023, 497434.0763], + [184952.6625, 498045.9859], + [185021.0252, 498011.1949], + [185016.6641, 497900.7138], + [184916.0688, 497817.4064], + [184746.211, 497575.7511], + [184618.849, 497263.851], + [184671.2829, 497155.8098], + [184647.5706, 497037.5871], + [184629.789, 496943.937], + [184749.016, 496924.7082], + [184852.3961, 496919.4668], + [184907.6366, 496877.3095], + [184910.581, 496744.934], + [185188.2882, 496914.6969], + [185209.4145, 497035.228], + [185528.258, 497748.36], + [185559.7554, 497763.6318], + [185601.753, 497714.498], + [185685.205, 497678.4201], + [185747.0655, 497674.0221], + [185772.033, 497697.0921], + [185827.9043, 497813.4111], + [185927.9122, 498187.4028], + [186450.8126, 499866.0523], + [186506.7606, 500511.1394], + [186577.3033, 500890.7429], + [186984.0235, 501501.0323], + [187402.234, 503233.437], + [187528.96, 503450.302], + [187485.0878, 503550.4198], + [188188.734, 503929.772], + [188372.544, 503891.88], + [188944.075, 503365.354], + [189923.9081, 502122.9699], + [190517.861, 501183.144], + [191251.2655, 499559.5004] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD06", + "od_naam": "Omgevingsdienst Veluwe", + "naam_alt": "OD Veluwe" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-601a", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [97728.934, 481002.808], + [98840.257, 480467.231], + [99171.429, 481169.3616], + [99215.3506, 481262.4816], + [99497.933, 481133.839], + [100196.8047, 481462.8451], + [100357.29, 481440.484], + [100366.3376, 481370.6376], + [100376.51, 481342.11], + [100411.6025, 481307.9196], + [100430.5672, 481305.9332], + [100469.835, 481279.654], + [100505.6289, 481298.8631], + [100486.03, 481403.85], + [100714.1382, 481391.1244], + [100869.5445, 481388.165], + [100870.0997, 481388.1544], + [100990.4134, 481375.5344], + [101091.7113, 481377.7508], + [101287.5565, 481308.2899], + [101287.6789, 481308.2308], + [101423.305, 481242.3039], + [101519.9095, 481166.1814], + [102116.54, 480905.328], + [102105.222, 480758.59], + [102017.5599, 480608.7379], + [101830.2269, 480359.9831], + [101777.3718, 480289.7982], + [101634.691, 480100.336], + [101467.3566, 479765.0453], + [101292.118, 479390.8945], + [101181.4651, 479154.6401], + [101056.9147, 478789.9048], + [101045.7138, 478500.4307], + [100992.805, 478385.4777], + [100863.0876, 478152.7809], + [100695.9405, 477849.4098], + [100569.0094, 477464.4173], + [100521.8354, 477311.6503], + [100475.3693, 477214.7359], + [100246.1772, 477006.4067], + [100195.2433, 476960.0093], + [99715.7162, 476512.2098], + [99710.9547, 476507.7631], + [99409.279, 476226.003], + [99104.686, 475930.487], + [99081.8237, 475704.1968], + [99095.1445, 475597.2852], + [99107.5541, 475502.2924], + [99175.81, 474962.382], + [99117.7139, 474496.8889], + [99047.9192, 473949.8186], + [98929.8776, 473313.1471], + [98867.686, 473017.2355], + [98846.5337, 472915.4211], + [98783.493, 472604.3624], + [98646.904, 472073.446], + [98544.199, 471987.437], + [98190.0958, 471875.6623], + [98052.457, 471756.391], + [97831.574, 471292.901], + [98062.411, 470785.15], + [98241.889, 470456.803], + [98365.5, 470402.59], + [99304.1381, 470191.7298], + [99411.1048, 470219.3762], + [100082.136, 470391.693], + [101077.6618, 470010.3413], + [101389.522, 469897.146], + [102460.6984, 469876.4981], + [102737.773, 469923.3041], + [102967.8952, 469962.9993], + [103432.928, 470056.394], + [103841.5067, 470308.3413], + [104216.23, 470545.336], + [104432.4907, 470604.8465], + [105209.817, 471141.35], + [105715.6948, 471347.4963], + [105888.1438, 471522.034], + [106026.23, 471651.45], + [106454.836, 471109.775], + [106679.579, 471200.776], + [106929.0035, 471152.8331], + [107105.458, 471182.216], + [107796.777, 471784.868], + [108071.025, 471890.212], + [108357.67, 471972.361], + [109703.719, 471796.228], + [109605.55, 470461.086], + [109654.836, 470223.753], + [109629.166, 470014.682], + [109660.992, 470038.846], + [109711.8732, 469665.5437], + [109723.5367, 469594.2867], + [110050.868, 469334.032], + [109995.97, 469284.2], + [110271.13, 468964.96], + [110377.036, 468917.6743], + [111016.803, 469828.484], + [111313.591, 469834.213], + [111498.757, 469927.457], + [111680.166, 470120.28], + [112127.842, 470129.595], + [112280.524, 470188.781], + [112910.4441, 470697.7241], + [113145.964, 470899.345], + [113268.14, 471208.74], + [113582.7, 471358.378], + [113852.509, 471343.328], + [113984.275, 471259.517], + [114157.457, 471257.236], + [114509.342, 471127.011], + [114496.372, 470759.129], + [114602.306, 470730.763], + [114669.395, 470415.536], + [115018.654, 470110.679], + [114961.826, 469041.426], + [115035.9447, 468342.863], + [115104.382, 468267.176], + [115786.858, 468348.045], + [115755.116, 468266.41], + [115855.319, 468049.446], + [116373.824, 467703.261], + [116451.837, 467390.042], + [117254.591, 466595.209], + [117403.6954, 466323.1044], + [117465.8149, 466266.766], + [117779.1917, 465992.5398], + [117851.4915, 465908.6381], + [118630.532, 465779.59], + [119423.0783, 465161.8842], + [121128.562, 463852.646], + [120812.146, 463650.116], + [119854.49, 463225.58], + [119902.18, 461305.82], + [119771.3223, 461310.2315], + [119629.683, 461253.093], + [119243.595, 461150.263], + [118581, 461134.88], + [118396.54, 461260.82], + [118329.441, 461404.434], + [118046.658, 461331.904], + [117951.795, 461398.72], + [117716.584, 461399.813], + [117595.641, 461616.98], + [117370.906, 461525.992], + [117316.938, 461775.207], + [117140.049, 461785.916], + [117068.536, 461980.281], + [116988.6513, 461928.1315], + [116615.882, 461702.289], + [116209.44, 461711.28], + [115942.187, 461397.178], + [115699.54, 461486.58], + [115437.92, 461224.76], + [115403.38, 460988.3], + [115317.8, 460937.5], + [115400.219, 460558.846], + [115326.134, 460341.795], + [115344.15, 460240.43], + [115226.4, 460068.72], + [115029.14, 459961.194], + [114923.86, 459788.68], + [114676.16, 459839.98], + [114341.68, 459694.96], + [114243.54, 459508.243], + [114229.06, 459305.091], + [113928.319, 459255.586], + [113782.676, 459331.195], + [113693.52, 459342.4], + [113640.888, 459300.263], + [113620.686, 459232.495], + [113716.293, 459039.566], + [113683.593, 458973.215], + [113627.462, 458960.638], + [113443.062, 459033.5125], + [113380.6051, 458999.7879], + [113291.019, 458798.908], + [113171.212, 458818.034], + [113132.715, 458793.419], + [113061.957, 458689.741], + [112783.64, 458724.9], + [112669.471, 458522.699], + [112495.068, 458505.669], + [112291.7762, 458552.6534], + [112211.823, 458571.132], + [112109.4171, 458475.7168], + [112052.9603, 458364.8059], + [111989.128, 458198.425], + [111842.4145, 458125.1893], + [111696.686, 458050.548], + [110582.964, 457783.841], + [110713.5896, 457958.8149], + [111490.162, 459168.344], + [111580.91, 459214.19], + [111818.036, 459695.96], + [111958.1463, 460206.5514], + [111964.2509, 460223.0723], + [112059.962, 460493.974], + [112009.1335, 460802.315], + [111992.729, 460952.942], + [110842.821, 464030.852], + [109961.075, 463689.0393], + [109810.911, 463630.897], + [109757.848, 463344.093], + [109638.797, 463311.5734], + [109610.9044, 463308.1711], + [108303.381, 462060.994], + [108237.3115, 462048.7168], + [108249.89, 462432.793], + [108340.7551, 462709.5338], + [108357.322, 462883.428], + [107956.3411, 463433.4159], + [107854.512, 463578.357], + [106699.747, 464606.96], + [106600.978, 464078.422], + [105608.1694, 464053.4863], + [104251.6524, 464019.7756], + [103975.6128, 464001.2402], + [103863.1898, 463979.1227], + [102435.6695, 463671.5347], + [101856.8787, 463551.2575], + [101536.5405, 463483.8497], + [99259.792, 462987.404], + [99174.929, 463084.128], + [99094.963, 462006.985], + [98784.567, 461102.928], + [98457.3309, 460769.0921], + [98377.4507, 460736.8963], + [97736.177, 461461.645], + [97626.1204, 461375.31], + [97704.666, 461281.52], + [97427.576, 460980.177], + [97409.675, 460906.441], + [97515.292, 460788.762], + [97344.8928, 460445.1426], + [97342.7848, 460441.1014], + [97023.478, 459598.575], + [97181.106, 459560.302], + [97106.3061, 459274.6975], + [96657.803, 459477.141], + [96714.49, 457420.777], + [96734.354, 455416.415], + [96558.071, 455368.439], + [96278.886, 455039.532], + [95173.237, 455951.36], + [95095.401, 455936.498], + [94891.413, 456115.088], + [94506.762, 456482.741], + [94197.368, 456304.572], + [94121.764, 456057.65], + [94151.955, 455949.581], + [94044.066, 455881.659], + [93664.149, 456128.029], + [93551.22, 457002.741], + [93164.0161, 457645.0893], + [92236.971, 459227.849], + [92385.937, 459364.337], + [92339.887, 459440.92], + [92347.449, 459866.321], + [92390.269, 459892.996], + [92068.938, 460436.457], + [92022.86, 460411.714], + [91980.242, 460485.325], + [91919.581, 460364.854], + [91948.831, 460302.515], + [91863.706, 460223.476], + [91816.786, 460301.719], + [91727.7167, 460193.2142], + [91225.3141, 459626.7462], + [90884.0023, 459223.3078], + [90560.739, 458767.373], + [90332.1694, 458570.3469], + [90045.579, 458390.431], + [89819.306, 458112.128], + [89666.205, 457753.222], + [89273.387, 457459.3271], + [88988.8605, 457698.9461], + [88792.5832, 457816.4558], + [88820.4256, 457856.2356], + [88340.713, 458143.613], + [88265.179, 458047.238], + [88149.957, 458121.499], + [88196.876, 458197.05], + [87456.846, 458640.875], + [88320.013, 459712.511], + [88298.6956, 459777.6925], + [88649.926, 460023.039], + [89286.517, 460994.599], + [90370.465, 462327.07], + [90436.547, 462403.598], + [90265.8145, 462790.5151], + [90099.753, 463211.734], + [90126.987, 463371.943], + [90213.604, 463476.022], + [89606.542, 463785.992], + [89226.364, 463887.005], + [88806.588, 464239.147], + [88669.473, 464144.525], + [88464.1531, 464256.0021], + [88358.697, 464406.099], + [88248.862, 464372.893], + [88101.942, 465027.255], + [87810.3136, 464839.6549], + [87744.332, 464927.8301], + [87684.1664, 464990.0881], + [87472.9795, 465262.6965], + [87136.628, 465626.061], + [86944.948, 465681.121], + [85742.7102, 467010.4591], + [86387.5351, 468068.7809], + [86935.4716, 469184.2298], + [87327.2573, 469819.2176], + [87510.5938, 469628.7486], + [87539.2354, 469657.6013], + [87557.68, 469676.527], + [87406.4316, 469836.9627], + [87518.6711, 470098.5685], + [87914.0721, 470635.5537], + [88812.131, 472183.5681], + [89949.0423, 474399.0629], + [90838.6814, 475885.1338], + [94110.5467, 482626.3236], + [94175.3299, 482597.7565], + [97460.781, 481116.3071], + [97728.934, 481002.808] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD20", + "od_naam": "Omgevingsdienst West-Holland", + "naam_alt": "ODWH" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6019", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [97460.999, 412337.999], + [96725.9414, 412154.2352], + [97019.7248, 412315.0988], + [98199.5239, 412650.0085], + [98666.2261, 412682.4373], + [97460.999, 412337.999] + ] + ], + [ + [ + [80701.9089, 418149.805], + [82277.0033, 417391.3041], + [83582.2291, 416943.1509], + [83849.1428, 416719.1089], + [83884.9993, 416580.1353], + [83842.7724, 416401.8551], + [83383.485, 416302.8175], + [82824.3063, 416084.2081], + [82450.2738, 415844.2251], + [81535.1194, 415837.4421], + [80642.004, 415985.1861], + [80137.1041, 416258.2835], + [79976.3743, 416265.7638], + [79268.468, 416735.0955], + [79240.3918, 416766.9069], + [79289.095, 416797.5205], + [79154.7203, 416854.0238], + [78455.914, 417459.3585], + [78331.1348, 417485.1068], + [78311.3788, 417580.0024], + [77690.227, 417996.936], + [77330.1969, 418143.6353], + [77453.6104, 418052.613], + [77318.7219, 418150.6495], + [77043.455, 418376.0949], + [77050.8924, 418532.9575], + [77314.3488, 418924.2788], + [77420.9313, 418959.8804], + [78517.183, 418802.5714], + [79819.6065, 418402.8887], + [80701.9089, 418149.805] + ] + ], + [ + [ + [123712.5811, 439998.364], + [124188.55, 437924.454], + [124399.722, 438059.851], + [124652.945, 438405.751], + [124769.826, 438451.875], + [124902.9, 438212.491], + [125343.667, 436432.495], + [125890.4105, 436224.8619], + [125935.922, 436198.479], + [125832.789, 436117.442], + [125892.105, 436059.493], + [125888.85, 435878.221], + [126140.597, 435816.25], + [126548.384, 435543.923], + [126519.085, 434385.07], + [126583.979, 434367.24], + [126893.3018, 434500.3888], + [127763.351, 434870.271], + [127962.722, 434943.949], + [127965.179, 434932.142], + [128005.874, 434937.825], + [128094.317, 434313.958], + [128115.906, 433581.355], + [128303.798, 432932.6], + [127989.595, 432119.075], + [128075.831, 431691.703], + [128423.24, 431898.237], + [128421.406, 431868.618], + [129974.6876, 432564.9527], + [130196.08, 432659.71], + [130216.419, 432616.175], + [130109.9662, 432575.4408], + [129935.931, 431973.726], + [129929.709, 431560.534], + [129835.067, 431237.117], + [130215.816, 430637.043], + [130179.931, 430066.325], + [129403.21, 430133.687], + [128981.819, 430009.907], + [128687.423, 429998.909], + [128412.679, 430125.552], + [128050.275, 430437.895], + [127912.33, 430369.011], + [128207.315, 429659.692], + [128231.921, 429372.037], + [128319.893, 428848.507], + [128242.247, 428589.742], + [128285.272, 428577.396], + [128269.513, 428517.677], + [128313.3378, 428494.2528], + [128516.9512, 428411.9983], + [128555.692, 428534.967], + [128959.356, 428304.466], + [129782.231, 428212.3186], + [130480.876, 428115.295], + [130257.158, 426455.9451], + [130215.297, 426165.7152], + [130119.678, 425644.05], + [129199.89, 425856.637], + [128329.078, 425884.292], + [128254.49, 425877.39], + [127459.961, 425903.005], + [126657.2433, 426082.5601], + [126212.0702, 426198.7255], + [125584.4167, 426356.7633], + [124339.6188, 426609.1059], + [123901, 426731], + [123275.244, 426733.97], + [122696.466, 426646.014], + [122041.9291, 426416.1029], + [120677.158, 425704.034], + [120387.7319, 425469.563], + [120347.21, 425436.655], + [118614, 423915], + [118250, 423695], + [117667, 423485], + [116985, 423388], + [116486, 423412], + [114970.74, 423681.498], + [114302.434, 423623.865], + [112664.729, 422920.275], + [112139.9663, 422513.8831], + [112087.2221, 422467.2368], + [111391, 421628], + [111063, 420980], + [110652, 419618], + [110370, 419101], + [110081, 418742], + [109242, 417897], + [107791, 416689], + [107062, 416179], + [106252, 415757], + [105882.508, 415371.731], + [105807, 415293], + [103722.475, 414741.711], + [103678.3625, 414729.7495], + [103480.883, 415223.5624], + [103444.7023, 415228.1917], + [103646.037, 414719.7644], + [103633.4583, 414715.879], + [103432.4448, 415222.1646], + [103358.827, 415205.8761], + [103025.468, 415074.1465], + [103020.3946, 415042.5863], + [102980.518, 415024.4321], + [103148.297, 414566.0163], + [103118.9198, 414556.8849], + [102950.0069, 415011.7118], + [102909.8981, 415004.5004], + [102873.8464, 415023.2625], + [102552.6255, 414896.54], + [102520.6183, 415259.8981], + [102598.4676, 415471.8182], + [102536.5113, 415470.8499], + [102479.9753, 415313.8078], + [102435.8398, 415110.8974], + [102430.8071, 414948.4174], + [102501.5365, 414918.3833], + [102521.4219, 414855.2694], + [102446.7838, 414853.5523], + [102416.5271, 414876.993], + [102399.7723, 414918.4222], + [102378.7556, 414921.7319], + [102236.8241, 415016.1548], + [101892.2665, 415223.5278], + [101010.7488, 414547.4579], + [100283.7176, 414301.8213], + [99781.0584, 413987.5118], + [99546.5934, 413948.7171], + [99261.8056, 414003.3034], + [98635.1166, 413812.4456], + [98618.9048, 413704.3991], + [98337.9516, 413480.7158], + [97680.8084, 413181.0115], + [97230.538, 413178.5631], + [96088.0542, 412916.2955], + [95769.3868, 412836.7998], + [94792.344, 413087.301], + [94495.456, 413222.2304], + [94279.3955, 413454.9578], + [93896.461, 413462.4936], + [93199.5951, 413720.3685], + [92960.2184, 413945.5411], + [91966.5773, 414199.9984], + [91424.9706, 414437.7381], + [91072.7024, 414420.3133], + [90789.4193, 414516.0693], + [90369.4056, 414501.9636], + [90348.1733, 414764.0724], + [90222.0632, 414723.9938], + [90158.9871, 414762.7931], + [90100.9789, 414747.5965], + [90115.1096, 414654.3085], + [90165.4209, 414686.1106], + [90252.5115, 414670.5369], + [90325.8264, 414621.8099], + [90341.2355, 414441.1421], + [89970.362, 414501.1824], + [89882.7323, 414675.7846], + [90008.1662, 414682.9073], + [90000.8105, 414740.0229], + [89821.0395, 414728.938], + [89906.5176, 414499.7026], + [89758.7676, 414505.887], + [89712.3589, 414634.5448], + [89472.5655, 414517.8666], + [89282.0225, 414586.2865], + [89225.0143, 414668.1459], + [88272.6696, 414948.7231], + [88036.438, 414894.0073], + [88135.6485, 415121.4335], + [88059.6204, 415137.1775], + [87952.4994, 414922.6968], + [87634.6514, 415140.5819], + [87442.8704, 415161.9649], + [87304.114, 415286.247], + [87213.5533, 415270.6021], + [87132.7271, 415080.9918], + [87063.9923, 415070.3291], + [86649.9602, 414084.3351], + [86637.2458, 414089.3939], + [86627.162, 414093.4061], + [87025.0073, 415081.6188], + [86811.4826, 415202.7921], + [86805.4151, 415232.0341], + [86943.1848, 415178.9895], + [87027.1561, 415241.849], + [87083.438, 415416.8725], + [85728.2378, 416239.8813], + [85669.8171, 416369.9204], + [84815.4233, 416756.83], + [83332.9338, 417690.7859], + [81100.4552, 418683.269], + [79259.1556, 419321.8212], + [79278.634, 419353.2839], + [79653.8438, 419218.8513], + [79686.2621, 419304.6961], + [79256.7698, 419444.9133], + [79226.5319, 419353.7663], + [78804.035, 419447.647], + [77679.0788, 419746.5463], + [76998.638, 420105.5862], + [76412.2823, 420301.5335], + [75719.1243, 421063.5644], + [75551.8485, 421392.2299], + [75205.2131, 421805.8605], + [75174.3833, 421941.1261], + [75303.7159, 422040.431], + [75763.1494, 421904.6914], + [76361.9145, 422315.9824], + [76301.9596, 422470.2676], + [77557, 424460], + [77851, 424616], + [78059, 424648], + [78945.62, 424468.58], + [79722, 424284], + [79949.2372, 424497.5816], + [80427, 424995], + [81217.94, 425282.8501], + [82153.4615, 425456.908], + [82593, 425836], + [82783.1873, 425876.6851], + [83286.375, 425987.2188], + [83784.1274, 426122.29], + [84000, 426104], + [84800, 425865], + [85505.7499, 426468.9337], + [85710.6452, 426642.0898], + [86720.6179, 427402.1498], + [86894, 427442.7], + [87816.5, 427263.6], + [88025.984, 427232.568], + [88261.2872, 427220.7124], + [88487, 427288.5], + [88918.6711, 427726.1267], + [89200.597, 428037.879], + [89981.739, 427625.39], + [90406.603, 427480.023], + [90990.279, 427413.779], + [91580.518, 427439.481], + [92400.364, 427681.775], + [93099.89, 427804.55], + [93799.401, 427779.008], + [94639.7846, 427484.1095], + [95600.164, 427157.738], + [96000.038, 427191.378], + [96347.4227, 427296.1386], + [96799.778, 427367.801], + [97200.038, 427351.423], + [97539.25, 427139.884], + [97795.279, 427582.077], + [97912.836, 427841.648], + [97894.555, 427907.844], + [97991.978, 428124.342], + [98257.9393, 428360.8171], + [98621.3341, 428791.2672], + [98763.549, 429041.958], + [99743.467, 428519.008], + [100383.1482, 428263.7025], + [100758.289, 428086.832], + [101097.742, 429157.358], + [101241.4119, 429171.4262], + [101331.542, 429269.394], + [101623.172, 429396.845], + [102052.103, 429464.661], + [102379.325, 429738.571], + [102560.756, 429823.695], + [102747.6143, 429803.1896], + [103065.536, 429346.974], + [103276.712, 429276.575], + [103693.3358, 429744.6017], + [104027.867, 430109.333], + [103786.996, 430344.04], + [103533.352, 430704.937], + [103225.5833, 431441.7458], + [103213.307, 431507.917], + [102615.19, 432732.098], + [102470.0474, 433083.8905], + [102204.0248, 433512.604], + [102132.582, 433603.304], + [102156.109, 433723.271], + [102258.7715, 433708.7078], + [102558.7223, 433703.511], + [103096.4959, 433820.3466], + [103515.582, 433843.7951], + [104571.112, 433716.0791], + [105501.353, 433696.037], + [105860.059, 433763.959], + [106041.8959, 433863.9575], + [106366.174, 434068.049], + [107075.7221, 434265.0992], + [108086.267, 434520.402], + [108787.743, 434372.651], + [109351.581, 434605.748], + [110728.0839, 435389.8197], + [111967.956, 436376.798], + [112343.236, 436561.224], + [113060.9771, 436684.4267], + [113964.235, 436965.5177], + [114690.277, 437179.1611], + [115384.22, 437498.76], + [115585.9808, 437683.7337], + [116842.1158, 439054.4371], + [117179.994, 439250.163], + [117834.3855, 439351.5771], + [118693.066, 439284.5822], + [118973.343, 439192.96], + [119590.71, 439002.57], + [119969.662, 438963.878], + [122463.442, 439437.151], + [122821, 439689.956], + [123314.48, 440376.501], + [123532.177, 440293.183], + [123712.5811, 439998.364] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD23", + "od_naam": "Omgevingsdienst Zuid-Holland Zuid", + "naam_alt": "OZHZ" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6018", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [182796.063, 400664.148], + [183654.282, 398936.772], + [184280.6878, 398435.1997], + [185021.54, 397837.948], + [185199.925, 397796.4754], + [186272.6, 397594.21], + [186956.5647, 393023.7636], + [187198.09, 391417.5362], + [187310.786, 390672.889], + [187884.785, 389323.277], + [188678.346, 384670.451], + [188908.344, 384276.56], + [188936.353, 384229.2634], + [189022.6431, 384083.5304], + [189027.516, 384075.3], + [189256.5033, 383688.1141], + [190874.344, 380958.8281], + [192078.7009, 378884.265], + [192874.97, 377428.54], + [192179.3872, 376801.5889], + [192028.7561, 376665.8173], + [190422.6033, 375218.1278], + [190333.6025, 375138.9759], + [189196.8367, 374117.9064], + [188948.3, 373902.94], + [188657.448, 373814.476], + [188511.3549, 373769.2834], + [187830.594, 373559.8329], + [186559.985, 373171.552], + [182947.139, 372071.854], + [181751.139, 371702.553], + [181708.529, 371689.387], + [180987.954, 371466.853], + [180081.32, 371186.9022], + [180000, 371161.9771], + [177755.6371, 370469.4146], + [176925.8358, 370213.4511], + [174863.534, 369576.444], + [173459.8142, 367640.6815], + [172913.072, 366841.483], + [171661.94, 364948.87], + [171496.897, 362223.4848], + [171496.0148, 362211.148], + [171175.767, 360032.65], + [170018.4249, 359632.0258], + [169475.4, 359444.04], + [169468.25, 359654.65], + [167494.51, 359074.9], + [167103.28, 359231.7], + [166799.782, 361234.5842], + [166707.497, 361697.193], + [166827.166, 362404.277], + [166783.124, 362797.881], + [166879.076, 363108.822], + [166827.8172, 363141.3064], + [166836.332, 363428.877], + [166873.7708, 363428.0826], + [166916.777, 363696.465], + [166830.377, 363770.114], + [166863.7204, 363900.5288], + [166795.939, 364161.226], + [165983.448, 364664.926], + [164871.33, 365838.41], + [164194.48, 366695.85], + [163968.3368, 367332.2217], + [163967.869, 367332.605], + [161810.896, 367862.974], + [161682.35, 367881.13], + [161695.32, 367712.14], + [161442.3807, 367511.9225], + [161306.287, 367302.534], + [161256.11, 366904.55], + [160792.186, 366543.385], + [160416.282, 366144.19], + [158808.073, 365869.114], + [158726.628, 365477.565], + [158570.618, 365192.576], + [158525.1068, 365192.6964], + [158216.572, 365226.489], + [157108.72, 363663.129], + [155610.296, 364184.032], + [152134.89, 365162.99], + [152107.29, 364766.91], + [151996.31, 364543.83], + [151887.91, 364049.58], + [151663.31, 363861.44], + [151459.52, 363750.85], + [149970.1746, 363795.2697], + [148644.919, 363577.18], + [146340.14, 364172.44], + [144579.75, 363569.57], + [143747.87, 364339.7], + [144888.07, 368449], + [144813.267, 368498.815], + [141968.58, 370396.14], + [141710.67, 370140.71], + [141291.73, 370109.66], + [140070.84, 369634.88], + [139342.31, 369030.19], + [137372.01, 369613.34], + [137199.9666, 373093.2186], + [136823.1468, 373478.8016], + [136346.007, 374082.541], + [136151.0419, 374692.7336], + [133005.4, 378306.54], + [134707.7958, 381527.2309], + [135167.153, 382239.882], + [136379.648, 382163.208], + [138677.737, 382232.472], + [138727.014, 382163.98], + [139056.599, 382215.949], + [139099.837, 382587.772], + [139948.281, 382313.6], + [140135.055, 382146.966], + [140462.23, 382370.836], + [140936.556, 382202.956], + [141298.713, 382351.974], + [141356.988, 382363.323], + [141357.33, 382364.343], + [142667.7324, 386297.9682], + [143413.438, 387104.614], + [143602.1982, 388071.4403], + [143752.2277, 388827.6761], + [143814.852, 388909.474], + [144079.736, 388977.421], + [144124.422, 389112.15], + [143976.135, 389975.934], + [145272.369, 389993.145], + [145328.205, 390822.7], + [145541.81, 390808.16], + [145480.196, 391007.63], + [145562.0049, 391188.8077], + [144500.337, 391666.916], + [144250.693, 391112.314], + [143845.672, 390952.306], + [143702.325, 392028.963], + [144148.076, 392449.509], + [144424.394, 393567.79], + [145062.704, 392983.12], + [145444.836, 393637.103], + [145712.729, 394604.169], + [146266.017, 394642.673], + [146409.847, 395036.545], + [146728.943, 394924.236], + [146860.65, 395255.963], + [147347.536, 395105.461], + [147390.005, 395536.336], + [147004.906, 395656], + [147098.255, 395991.145], + [148881.6145, 395435.5301], + [149533.537, 395226.858], + [150681.8734, 395807.4343], + [151250.101, 395795.856], + [151531.166, 395272.144], + [151998.463, 395056.923], + [152478.086, 395030.502], + [152898.799, 395083.806], + [153471.8, 395115.47], + [153704.08, 394950.771], + [154686.011, 394973.452], + [155066.924, 395040.627], + [156181.391, 395481.251], + [156259.558, 395488.123], + [156646.509, 394811.358], + [156723.45, 394859.317], + [157296.558, 394399.546], + [157425.318, 394215.548], + [157482.358, 393885.149], + [157542.36, 393897.91], + [157958.051, 393999.937], + [158078.74, 393819.42], + [158276.537, 393928.701], + [158483.88, 393889.318], + [159843.2203, 394339.7797], + [160625.065, 394633.746], + [161628.4784, 394737.7993], + [161933.414, 394769.052], + [161988.909, 394715.088], + [162050.576, 393816.546], + [162373.158, 393082.782], + [162428.91, 393140.806], + [162581.524, 393123.493], + [162707.503, 393288.44], + [162959.363, 393167.287], + [162956.724, 393088.264], + [163006.113, 393151.345], + [163086.308, 393062.836], + [163059.902, 392984.108], + [162822.738, 392918.582], + [162836.2358, 392492.9042], + [163207.111, 392525.776], + [163284.01, 392678.253], + [163407.13, 392766.458], + [163448.311, 392639.623], + [163732.483, 392819.149], + [163838.236, 392702.822], + [164201.391, 392616.2056], + [164290.3454, 392665.0665], + [164327.814, 392614.643], + [164397.725, 392724.048], + [164566.993, 392550.611], + [164969.927, 392905.135], + [166117.01, 394318.58], + [165811.58, 394570.31], + [165961.34, 394758.234], + [165455.4673, 395828.7182], + [165116.649, 396549.488], + [165959.617, 396583.8191], + [166659.751, 396633.029], + [168669.8095, 397106.0855], + [170270.8772, 396772.6489], + [170744.8137, 396208.0174], + [171019.52, 396346.48], + [171092.41, 396141.4], + [171270.31, 396061.03], + [171538.37, 396265.58], + [172551.824, 397305.76], + [173392.192, 397893.973], + [173522.8719, 398069.8548], + [173640.7379, 398339.8414], + [173667.6432, 398405.6607], + [173669.604, 398464.198], + [173511.3342, 398642.252], + [173401.67, 398855.086], + [173308.831, 399304.546], + [173772.656, 399394.271], + [173921.604, 399375.532], + [175676.6958, 399466.7828], + [175785.6905, 399475.0715], + [176636.88, 399513.119], + [177103.4246, 399845.5914], + [177306.036, 399675.77], + [177356.993, 399707.528], + [177329.411, 399754.443], + [177369.5262, 399764.6027], + [178719.5835, 400156.0701], + [178936.9994, 400219.8228], + [180736.3, 400625.989], + [182678.3092, 401110.4108], + [182796.063, 400664.148] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD26", + "od_naam": "Omgevingsdienst Zuidoost-Brabant", + "naam_alt": "ODZOB" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6017", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [228989.5815, 579630.0322], + [229126.0069, 579624.9522], + [229818.63, 579859.128], + [229963.8542, 579747.3716], + [230019.104, 579735.878], + [230016.7449, 579710.2048], + [230257.9006, 579512.9674], + [230261.301, 579508.955], + [230414.56, 579663.97], + [231153.5242, 579402.2081], + [231406.842, 579373.649], + [231343.127, 579332.083], + [231405.3904, 579072.7893], + [231676.1937, 578098.3778], + [231703.291, 578068.353], + [231895.0151, 577943.9628], + [232036.607, 577797.57], + [232130.1803, 577640.142], + [232189.004, 577499.584], + [232253.403, 577507.523], + [232487.5105, 577690.0703], + [232615.37, 577783.294], + [232628.404, 577759.917], + [232641.7974, 577736.1121], + [233138.9164, 576923.4965], + [233380.762, 576487.087], + [233471.3695, 576130.8224], + [233626.5774, 575497.6986], + [233658.1178, 575305.7377], + [233694.105, 575189.612], + [233764.0218, 575229.8551], + [234874.4266, 575864.8897], + [234849.497, 575762.355], + [235014.636, 575310.318], + [235261.959, 575058.256], + [235101.853, 574841.796], + [235295.8128, 574219.2583], + [235328.271, 573909.092], + [236178.369, 573747.133], + [236593.534, 573198.164], + [236705.3538, 573153.3888], + [236773.276, 573099.892], + [236870.6291, 573050.3522], + [237127.89, 572789.063], + [237082.509, 572469.653], + [237277.866, 572503.962], + [237441.702, 572351.846], + [237445.0359, 572162.5933], + [237604.767, 571990.464], + [237638.156, 571773.052], + [237711.699, 571665.483], + [238017.8589, 571388.0478], + [238112.142, 571017.884], + [238241.365, 571008.118], + [238068.998, 570759.582], + [238080.203, 570614.574], + [238200.487, 570484.049], + [238471.345, 570435.274], + [238601.408, 570347.718], + [238699.031, 569820.968], + [238551.9777, 569546.0928], + [239127.5049, 569829.9366], + [239685.577, 570117.656], + [239801.0958, 570171.4671], + [241214.087, 570853.225], + [241470.323, 570922.754], + [242525.1419, 571270.0986], + [242575.08, 571284.16], + [244140.5552, 571209.5215], + [244214.7235, 571207.6244], + [244318.6, 571199.7291], + [244444.3225, 571193.3841], + [245395.75, 571145.367], + [245733.288, 570807.634], + [245790.261, 570830.702], + [245810.1049, 570760.7404], + [245891.8532, 570685.6491], + [248063.379, 568446.544], + [248973.6829, 567523.2575], + [250623.177, 565848.522], + [250663.5922, 565807.7439], + [252212.6596, 564239.1295], + [252630.4988, 563815.185], + [253864.356, 562563.468], + [256318.373, 560073.7416], + [256835.0214, 559548.4216], + [257007.252, 559373.303], + [257010.9529, 559369.5386], + [258039.3721, 558323.8578], + [258898.084, 557450.734], + [258967.082, 557380.577], + [259030.6523, 557315.9356], + [259155.2808, 557146.3436], + [259467.747, 556721.148], + [259847.326, 556204.621], + [260417.728, 555428.4371], + [260422.605, 555421.8001], + [260877.6921, 554802.5274], + [261313.623, 554211.664], + [261366.7139, 554139.5603], + [261367.3865, 554138.647], + [261935.6219, 553367.0601], + [262025.5277, 553245.1919], + [262452.5606, 552666.2992], + [262581.3675, 552491.5263], + [263076.6149, 551819.57], + [263622.815, 551077.828], + [264084.788, 550451.276], + [264510.771, 549873.4001], + [265126.592, 549336.802], + [265275.541, 549247.459], + [266539.4832, 548928.8636], + [266160.5819, 547990.1079], + [266157.9907, 547983.7372], + [266157.9889, 547983.7328], + [264692.9011, 544381.9065], + [264580.41, 544105.58], + [264834.7445, 544110.032], + [266296.5783, 544125.8383], + [266531.4, 543285.26], + [266728.179, 543360.69], + [266829.3881, 543212.8151], + [267078.72, 542848.52], + [267134.45, 542884.71], + [267862.356, 541785.362], + [267930.437, 541822.685], + [267967.42, 541740.47], + [268076.81, 541809.66], + [268303.53, 541394.35], + [268366.35, 541387.99], + [268776.036, 541646.5441], + [268784.777, 541503.889], + [268516.179, 541104.015], + [268494.3949, 540443.0928], + [268546.079, 540359.222], + [269918.65, 540356.08], + [269070.76, 538490.58], + [268563.24, 537232.45], + [268474.2751, 533880.052], + [268289.625, 527517.432], + [268033.4821, 522334.753], + [267916.4821, 519961.014], + [267871.197, 519034.839], + [267857.179, 518738.33], + [267917.25, 518732.69], + [267924.9097, 518637.1329], + [267005.77, 517415.04], + [266793.7, 517428.09], + [266576.21, 517643.92], + [266122.94, 517609.82], + [265016.31, 517822.55], + [264613.03, 518007.77], + [264464.58, 518266.58], + [264285.13, 518378.55], + [264105.58, 518400.57], + [263649.2, 518299.1], + [263089.39, 518543.2], + [262927.24, 518692.77], + [262522.25, 518822.09], + [262451.21, 518804.19], + [262014.3, 518318.5], + [261399.62, 518294], + [261022.19, 517980.8], + [260471.04, 518008.06], + [260012.67, 517836.03], + [259743.74, 517879.04], + [259324.9, 518077.27], + [258698.69, 518026.17], + [258497.73, 518187.51], + [258358.67, 518757.62], + [257573.81, 518976.2], + [257177.714, 519277.056], + [256792.917, 519285.911], + [256013.83, 519161.28], + [255524.52, 519454.192], + [254986.537, 519063.446], + [254792.759, 519040.782], + [254225.97, 519010.75], + [254048.39, 518905.93], + [253135.69, 519257.964], + [252747.263, 519200.619], + [252497.945, 518937.845], + [252074.6584, 518763.7756], + [251846.532, 518763.068], + [251701.271, 518859.034], + [251180.752, 518894.017], + [251099.867, 518936.699], + [250968.285, 519151.503], + [250818.459, 519203.882], + [250217.503, 519057.121], + [249915.681, 519288.84], + [249720.372, 519238.9401], + [249504.835, 519252.046], + [249074.602, 519146.738], + [248857.44, 518979.898], + [248716.6, 518960.71], + [248438.528, 518599.231], + [247823.239, 518807.262], + [247600.2957, 518628.8065], + [247464.4, 518464.44], + [247357.374, 518598.671], + [247452.428, 518661.576], + [247465.431, 518709.718], + [247401.812, 518719.743], + [247261.73, 518580.86], + [246689.356, 518397.169], + [246276.16, 517837.68], + [245941.36, 517514.21], + [245700.9637, 517110.1293], + [245659.57, 517029.9], + [245283.37, 516823.93], + [245108.602, 516806.764], + [244895.11, 516686.94], + [244564.14, 516408.73], + [244426.221, 516427.003], + [244370.161, 516287.751], + [244220.765, 516345.041], + [244020.368, 516337.24], + [243940.781, 516453.008], + [243942.012, 516573.291], + [244071.731, 516717.478], + [244178.953, 516993.694], + [244091.455, 517126.986], + [244105.823, 517215.545], + [244105.4401, 517224.4436], + [244105.323, 517225.308], + [244101.925, 517323.908], + [244301.523, 517708.521], + [244242.774, 517857.492], + [244003.635, 517874.657], + [243934.663, 517938.48], + [243993.774, 518028.362], + [244216.54, 518127.522], + [244221.652, 518387.07], + [244386.387, 518620.311], + [244405.1901, 518736.1957], + [243934.0267, 518890.4303], + [242889.8926, 519228.7195], + [240814.2881, 520149.3009], + [240206.3821, 520428.6851], + [239027.427, 520970.177], + [238009.613, 521438.145], + [237905.41, 521412.8955], + [237286.9538, 521263.0036], + [235753.945, 520891.056], + [233851.61, 520428.424], + [233511.1839, 520242.2548], + [232285.477, 519169.476], + [232279.017, 519163.3027], + [231249.669, 518239.141], + [231261.7485, 518125.6192], + [231568.2861, 515197.4872], + [231580.475, 515094.253], + [231598.3643, 514925.3311], + [231626.698, 514660.868], + [231182.015, 514605.167], + [230676.88, 514971.89], + [230360.78, 515073.23], + [229784.83, 515198.01], + [229267.68, 515179.71], + [229044.8, 515073.75], + [228870.302, 515124.147], + [228608.371, 515355.429], + [228477.942, 515780.176], + [228314.5249, 515822.9556], + [227914.87, 515693.47], + [227700.92, 514924.15], + [227216.25, 514579.14], + [226505.29, 514817.97], + [226459.3673, 514773.6835], + [226190.821, 514911.21], + [225951.87, 515153.8], + [225918.64, 515283.2], + [225994.51, 515328.87], + [225995.92, 515408.68], + [225863.79, 515945.29], + [225806.71, 516095.35], + [225692.94, 516160.98], + [225479.99, 516137.76], + [225337.7971, 515949.2056], + [225398.33, 515741.51], + [225043.58, 515559.06], + [224860.3, 515108.91], + [224680.85, 515066.79], + [224401.242, 515196.455], + [224339.8117, 515301.9112], + [224225.845, 515401.49], + [224010.093, 515268.339], + [223986.247, 515061.533], + [224053.019, 514959.221], + [223842.901, 514786.355], + [223667.037, 514784.485], + [223320.079, 514949.716], + [223172.658, 514885.955], + [223019.514, 514581.792], + [222699.612, 514477.268], + [222519.262, 514322.336], + [222376.175, 514698.215], + [222255.528, 514627.106], + [222002.052, 514831.948], + [221967.191, 514933.45], + [222043.85, 515179.74], + [221793.621, 515545.001], + [221920.1358, 515861.5898], + [221894.911, 516000.616], + [221820.125, 516177.835], + [221693.388, 516230.545], + [221602.475, 516469.819], + [221481.342, 516527.301], + [221438.597, 516675.207], + [221515.929, 516840.529], + [221284.114, 517110.188], + [221113.447, 517210.558], + [221119.498, 517740.983], + [220800.446, 518001.205], + [220395.68, 518080.575], + [220274.21, 518304.183], + [219719.844, 518614.34], + [219589.1379, 518893.9166], + [219065.515, 518999.792], + [218872.338, 519271.278], + [218639.873, 519438.692], + [218540.877, 519466.942], + [218508.905, 519550.057], + [218598.56, 519633.354], + [218505.9841, 519710.9095], + [218502.64, 519895.073], + [218620.6, 519997.636], + [218678.839, 520183.175], + [218731.121, 520186.121], + [218643.088, 520266.568], + [218690.035, 520334.715], + [218566.511, 520607.804], + [218266.522, 520740.89], + [218067.5761, 520733.886], + [218026.165, 520658.042], + [217875.731, 520675.474], + [217881.452, 520630.833], + [217755.792, 520621.55], + [217747.602, 520546.464], + [217683.668, 520538.703], + [217699.986, 520468.775], + [217563.167, 520466.721], + [217535.7252, 520386.6077], + [217401.992, 520319.711], + [217142.657, 520259.244], + [216924.357, 520379.664], + [216875.308, 520340.164], + [216903.08, 520277.068], + [216726.3, 520282.647], + [216728.094, 520208.531], + [216583.532, 520266.658], + [216427.293, 519953.998], + [216452.871, 519814.625], + [216209.104, 519824.377], + [216012.4184, 519912.2644], + [215958.326, 519982.614], + [215905.977, 519933.577], + [215887.329, 520014.364], + [215738.606, 520147.58], + [215766.041, 520325.689], + [215700.889, 520342.8224], + [215575.904, 520459.931], + [215327.968, 520549.449], + [215250.812, 520491.532], + [215212.738, 520534.591], + [215140.785, 520353.717], + [215023.609, 520306.078], + [214946.879, 520083.928], + [214725.708, 520068.308], + [214440.821, 520285.864], + [214412.516, 520419.889], + [214410.107, 520547.986], + [214073.25, 520692.882], + [213914.581, 520617.581], + [213862.615, 520682.524], + [213761.694, 520591.623], + [213704.752, 520643.283], + [213682.174, 520588.125], + [213648.914, 520656.62], + [213496.833, 520619.577], + [213378.095, 520753.297], + [213400.238, 520839.408], + [213305.376, 520785.933], + [213177.546, 520937.845], + [213286.166, 521064.389], + [213243.268, 521254.803], + [212909.988, 521603.466], + [212708.826, 521483.479], + [212477.146, 521460.605], + [212458.471, 521513.932], + [212188.949, 521631.016], + [212193.509, 521715.772], + [212269.826, 521757.532], + [212172.854, 521895.355], + [212038.825, 521860.306], + [211904.913, 521910.3], + [211874.252, 521869.606], + [211837.651, 521918.057], + [211803.343, 521865.028], + [211647.87, 521994.373], + [211499.8103, 522020.65], + [211382.863, 522035.428], + [211393.961, 522107.701], + [211226.755, 522206.08], + [211298.9, 522354.603], + [211203.5394, 522386.899], + [211138.142, 522331.828], + [211080.137, 522428.692], + [210911.959, 522418.168], + [210888.994, 522344.153], + [210779.229, 522304.569], + [210806.176, 522229.709], + [210648.66, 522293.711], + [210397.737, 522250.167], + [210298.642, 522171.428], + [210227.1261, 522226.919], + [210074.6996, 522220.0037], + [209727.4938, 521798.2935], + [209594.601, 521569.714], + [209580.756, 521325.245], + [209433.912, 521301.005], + [209389.0545, 521622.485], + [209146.437, 521652.497], + [209008.208, 521972.545], + [208649.4135, 521866.6999], + [208902.278, 521382.065], + [208748.826, 521342.581], + [208833.135, 521142.654], + [207949.4618, 521452.6895], + [207464.317, 521684.015], + [207861.8862, 522297.1722], + [207907.049, 522363.034], + [207806.223, 522586.187], + [207680.612, 522674.891], + [207584.171, 522667.658], + [207423.0386, 522907.5894], + [207178.092, 523026.601], + [207165.985, 523062.753], + [207018.141, 523002.992], + [206823.434, 523599.5725], + [206657.477, 524047.342], + [206694.337, 524072.266], + [206654.819, 524214.926], + [206134.3405, 525476.0799], + [206046.0319, 525704.5517], + [205858.0979, 526151.7398], + [205375.2819, 527374.5936], + [205109.102, 528109.8701], + [204967.8189, 528357.2006], + [204502.9072, 529462.8989], + [204580.865, 529905.224], + [204897.417, 530200.481], + [205309.646, 530408.766], + [205663.024, 530449.846], + [206926.94, 530868.864], + [207171.408, 531094.9791], + [207424.82, 531296.98], + [207733.523, 531371.992], + [208021.959, 532038.456], + [208267.549, 532279.893], + [208816.3658, 532854.0055], + [209415.869, 533539.303], + [209941.203, 534356.831], + [209761.3305, 534592.0878], + [208804.263, 535849.6051], + [208485.1733, 536270.1021], + [208264.082, 536581.15], + [207937.576, 536776.5657], + [207869.8983, 536733.1437], + [206930.343, 537811.402], + [206527.9278, 538070.1591], + [206404.472, 538149.504], + [206357.184, 538180.002], + [206381.766, 538186.5548], + [206542.911, 538229.514], + [206428.8231, 538351.9037], + [205509.016, 539341.247], + [205075.957, 539888.24], + [204953.067, 540324.863], + [204347.983, 541031.753], + [204426.6261, 541080.9398], + [205731.023, 542076.843], + [205778.2318, 542113.1183], + [207063.5311, 543097.2553], + [209083.403, 544450.095], + [209760.5099, 544891.6716], + [210167.271, 545159.501], + [211614.7769, 547352.7925], + [211846.523, 547704.491], + [212516.1984, 548258.4821], + [212681.797, 548398.645], + [212840.18, 548819.03], + [212859.512, 548857.571], + [213462.157, 549304.34], + [215250.338, 549160.001], + [216585.467, 549045.953], + [218649.879, 547000.746], + [221031.022, 548770.89], + [222655.72, 550002.79], + [223260.1468, 551184.1189], + [224891.16, 554371.89], + [224548.2161, 554898.7], + [223906.541, 555883.385], + [223179.3, 557000.572], + [221216.6342, 560012.0547], + [220425.074, 561226.96], + [220463.8851, 561816.626], + [220559.062, 563233.1058], + [220729.325, 564947.41], + [219645.8219, 565330.2945], + [218343.1891, 565788.9122], + [218321.224, 565796.659], + [216518.087, 566431.144], + [217161.923, 567871.029], + [218686.246, 567293.8986], + [218901.9474, 567213.9135], + [219133.8258, 567128.6148], + [219919.845, 569357.738], + [220383.8273, 569416.9494], + [220485.8954, 570750.2572], + [220501.5019, 570946.6371], + [220528.0351, 571088.1864], + [221521.6542, 573904.28], + [221595.085, 574109.268], + [221523.74, 574110.752], + [221519.405, 574510.6183], + [221512.7959, 574538.3702], + [221991.1989, 575054.6179], + [222149.521, 575213.087], + [222408.358, 575674.148], + [222575.3934, 575786.0089], + [222640.3969, 575825.8083], + [222910.743, 576068.194], + [223005.29, 576243.907], + [222997.256, 576731.591], + [223082.2085, 577103.2057], + [223090.18, 577124.6736], + [223246.462, 577313.158], + [224345.068, 577721.706], + [225243.116, 578176.989], + [225563.824, 578414.18], + [225745.297, 578781.372], + [225873.429, 579387.095], + [226022.4217, 579417.7985], + [226919.886, 579805.279], + [228120.117, 580212.4], + [228400.62, 580246.48], + [228874.18, 579910.359], + [228890.888, 579752.601], + [228930.078, 579661.963], + [228989.5815, 579630.0322] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD03", + "od_naam": "RUD Drenthe", + "naam_alt": "RUD Drenthe" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6016", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [192680.259, 417166.229], + [192896.767, 417066.631], + [193062.602, 417130.694], + [193453.565, 417158.556], + [194003.224, 417446.929], + [194092.285, 417854.105], + [194028.285, 417259.477], + [194229.836, 416752.989], + [194346.917, 416813.642], + [194506.928, 416774.168], + [194640.575, 416830.085], + [195168.099, 416808.095], + [195486.337, 416895.132], + [195645.5729, 416873.117], + [195962.866, 416839.101], + [196324.411, 416897.735], + [196926.306, 416796.109], + [197809.2943, 416180.863], + [199340.13, 415419.852], + [199569.614, 415206.652], + [199618.8808, 414946.5972], + [199763.943, 414919.98], + [199750.5109, 414781.0908], + [199794.283, 414536.129], + [199998.631, 414575.726], + [199961.89, 414777.446], + [200452.644, 414446.253], + [200253.746, 414047.4], + [199958.9132, 414080.5474], + [199958.056, 413977.894], + [199576.35, 414023.201], + [199314.482, 413865.709], + [199299.463, 413754.668], + [199195.519, 413642.425], + [199155.641, 413519.556], + [199226.491, 413348.875], + [199214.162, 413037.792], + [199304.485, 412825.673], + [199281.918, 412615.14], + [199482.27, 412371.773], + [199567.37, 411725.825], + [199465.943, 411457.718], + [199326.2739, 411398.4103], + [199599.134, 410875.952], + [199611.338, 410767.821], + [199478.9786, 410658.67], + [199446.209, 410118.853], + [199594.86, 409904.966], + [199685.96, 409900.47], + [199784.53, 409793.24], + [199758.06, 409740.82], + [199568.45, 409728.67], + [199624.93, 409670.53], + [199810.608, 409657.345], + [199923.1, 409529.04], + [202404.786, 408559.257], + [202631.24, 408668.74], + [202837.907, 408514.743], + [202908.735, 408522.051], + [202863.592, 408353.305], + [202902.574, 408314.088], + [203154.288, 408344.951], + [203302.442, 408464.862], + [203385.316, 408424.024], + [203441.68, 408171.825], + [203510.794, 408126.705], + [203976.308, 408114.103], + [204297.685, 407940.658], + [204454.87, 408219.505], + [205491.869, 407776.489], + [205575.511, 407714.905], + [205418.279, 407407.856], + [205504.435, 407115.8611], + [205460.948, 407068.342], + [205205.5012, 406875.7954], + [204985.26, 406695.833], + [205144.766, 406459.702], + [204895.762, 406145.967], + [204326.9268, 404093.3334], + [204170.271, 403796.954], + [203940.716, 403936.076], + [203977.411, 403162.26], + [203784.435, 402120.423], + [205575.408, 400802.835], + [205728.02, 400784.307], + [205881.713, 400682.5681], + [206523.617, 399392.76], + [207674.276, 398236.754], + [208375.501, 397797.382], + [208684.5212, 397118.0613], + [209786.892, 394695.003], + [210609.792, 394139.153], + [211398.254, 393469.469], + [211951.077, 392548.435], + [212255.149, 391922.504], + [212355.029, 391303.548], + [212412.1, 390800.493], + [212334.35, 389466.45], + [212704.2647, 388771.6426], + [212742.59, 388695.97], + [212777.7, 388767.78], + [213104.76, 387656.87], + [213092.7445, 387345.543], + [213065.6971, 387040.4513], + [213121.02, 386961.67], + [213028.34, 386676.61], + [213009.696, 386055.835], + [212890.943, 385490.92], + [212934.92, 384504.17], + [212484.2099, 384485.8515], + [212545.634, 383079.437], + [212032.308, 379897.4743], + [211927.64, 379249.49], + [212350.74, 379410.63], + [213416.61, 379349.63], + [213373.34, 379267.2], + [213424.8, 379250.28], + [213257.398, 378995.885], + [212578.07, 378156.93], + [212714.3, 378069.27], + [212602.87, 377921.5], + [212715.5007, 377543.3673], + [213042.2372, 376368.8442], + [213448.38, 374907.16], + [213336.4633, 374802.6653], + [211439.6801, 373032.5025], + [211117.2212, 372731.0039], + [210931.26, 372556.31], + [211240.33, 372049.88], + [210826.68, 372066.37], + [210150.5522, 371865.8352], + [209484.4224, 371823.2526], + [209426.0998, 371745.6647], + [209506.7822, 371458.9061], + [209157.41, 370989.56], + [208843.86, 370334.17], + [208836.81, 369883.58], + [208796.1444, 369828.5856], + [208480.93, 369376.11], + [208456.22, 368967.93], + [207861.83, 367923.44], + [206750.67, 366530.91], + [206463.142, 365620.976], + [206448.6115, 365309.8915], + [204398.4379, 362982.3613], + [203764.012, 362265.128], + [202864.899, 361693.021], + [203819.056, 359489.189], + [203649.904, 359417.702], + [202927.53, 359454.703], + [202748.709, 359414.009], + [202561.214, 359241.505], + [202602.254, 358440.877], + [202674.122, 358426.292], + [202790.9909, 357016.3625], + [202960.702, 355047.983], + [203342.347, 354424.883], + [203605.222, 353808.982], + [204152.548, 353671.991], + [204411.626, 353680.055], + [204560.193, 353760.769], + [204830.724, 353620.444], + [204997.6702, 353841.3618], + [205373.497, 353944.807], + [205735.395, 354189.071], + [205931.522, 354526.665], + [206406.875, 354912.194], + [209381.43, 356401.75], + [210478.38, 355517.3], + [207562.39, 354037.95], + [208061.429, 353726.2055], + [210141.17, 352410.15], + [209773.67, 352047.1], + [209268.45, 351756.31], + [209307.5, 351314.616], + [208889.75, 351330.183], + [208749.385, 351252.466], + [208552.803, 351232.055], + [208212.344, 351293.099], + [208010.517, 351115.413], + [207802.57, 351053.202], + [207222.49, 350900.157], + [206697.21, 350865.871], + [206394.906, 350621.166], + [206386.762, 350438.422], + [206273.7322, 350379.8009], + [206263.141, 350365.41], + [206229.4307, 350348.7833], + [205566.328, 350049.435], + [205129.167, 349905.475], + [204920.349, 349903.999], + [204632.049, 349716.322], + [204313.373, 349730.28], + [204139.118, 349200.377], + [204005.984, 349108.327], + [204116.872, 348961.639], + [203978.4607, 348911.8312], + [203809.89, 348735.99], + [203951.87, 348696.9], + [203991.18, 348579.32], + [203757.167, 348501.991], + [203575.809, 348717.321], + [203502.726, 348536.507], + [203542.85, 348302.11], + [203198.594, 348154.124], + [203241.3056, 348006.9212], + [203207.347, 347962.547], + [202897.44, 347832.38], + [202730.9532, 347844.044], + [202277.601, 347701.886], + [202130.975, 347597.418], + [201943.082, 347332.1113], + [201929.102, 347305.035], + [201879.1925, 347207.2437], + [201782.269, 347017.446], + [201895.118, 346885.785], + [201052.8063, 345960.3677], + [201032.998, 345940.058], + [200930.8367, 345948.3825], + [200481.554, 345424.684], + [200030.056, 345212.126], + [199744.252, 345163.147], + [199379.201, 345004.127], + [199160.316, 345195.185], + [198918.869, 344846.715], + [198599.837, 344775.575], + [198204.402, 344321.398], + [197784.175, 344034.579], + [197395.893, 343542.842], + [197138.427, 342957.639], + [196896.155, 342841.273], + [196872.3189, 342839.7926], + [196671.04, 342793.921], + [196568.776, 342697.457], + [196519.69, 342588.75], + [196671.97, 342382.42], + [196458.631, 342183.1357], + [196446.43, 342042.39], + [196190.71, 341675.43], + [196077.3, 341646.51], + [195972.5248, 341532.2637], + [195857.46, 341378.8301], + [195900.09, 341347.91], + [195914.66, 341101.3], + [195729.9, 340826.66], + [195885.22, 340674.73], + [195741.91, 340327.07], + [195818.61, 340113.28], + [195760.2039, 339985.849], + [195762.0223, 339969.5002], + [195813.71, 339849.4], + [195654.92, 339554.97], + [195440.67, 339503.01], + [195293.31, 339313.29], + [195045.79, 339215.17], + [195138.79, 338894.68], + [195050.6172, 338672.1433], + [195012.43, 338501.56], + [194877.41, 338535.9], + [194757.24, 338701.53], + [194159.3, 338731.4501], + [193644.79, 338535.93], + [193392.64, 339214.05], + [192804.6211, 339991.3172], + [192801.4374, 340002.2494], + [192260.825, 341733.746], + [191871.1572, 342056.8179], + [191345.09, 341492.759], + [190698.72, 340964.819], + [190395.28, 340516.199], + [190059.33, 340408.35], + [189217.69, 340324.05], + [188761.919, 340344.739], + [188625.03, 340331.01], + [188600.8689, 340280.7058], + [188667.34, 339742.7], + [189186.159, 338951.589], + [189427.21, 338780.25], + [189359.258, 338163.264], + [189206.04, 338090.946], + [189171.232, 338131.625], + [189067.711, 338106.696], + [189091.194, 338051.072], + [188541.55, 337838.169], + [188292.701, 337876.982], + [188297.185, 337806.108], + [187940.2184, 337764.0497], + [187650.52, 337849.079], + [187540.5782, 338191.6811], + [187400.105, 338650.695], + [187653.1515, 338828.6881], + [187355.634, 339734.587], + [187050.9703, 339670.261], + [186915.983, 339743.297], + [186841.121, 339672.517], + [186624.108, 339766.965], + [186420.78, 340023.217], + [185859.152, 339867.2358], + [185819.884, 340791.5441], + [185595.689, 341998.739], + [185611.659, 342641.759], + [185372.008, 342649.0421], + [185307.599, 342650.9991], + [184884.352, 341862.457], + [184595.788, 341148.749], + [184491.467, 341155.701], + [184427.887, 340972.88], + [184380.358, 341031.174], + [184168.399, 340973.92], + [184147.634, 341080.918], + [183978.2608, 341163.0011], + [183893.796, 341247.943], + [184001, 341475.5], + [184011.87, 341687.81], + [183812.94, 342148.99], + [183770.79, 342451.86], + [183695.87, 342554.33], + [183878.07, 342909.41], + [184223.28, 343124.81], + [184270.91, 343236.77], + [184243.09, 343526.13], + [184123.7879, 343773.9317], + [183843.26, 344108.13], + [183722.68, 344151.64], + [183578.77, 344533.77], + [183641.76, 344740.58], + [183922.77, 345045.11], + [184291.46, 345238.28], + [184600.07, 345283.56], + [184897.65, 345204.59], + [185413.91, 344883.23], + [185611.251, 344848.95], + [185949.209, 345081.443], + [186185.747, 345405.905], + [186262.385, 345654.485], + [186252.39, 346121.19], + [185933.68, 346485.15], + [185561.949, 346628.689], + [184873.9808, 346550.3856], + [184670.23, 346680.939], + [184493.309, 346939.979], + [184454.869, 347254.689], + [184593.16, 347743.54], + [185018.95, 348163.4], + [185228.9871, 348508.7395], + [185559.5, 348898.91], + [185822.77, 349050.58], + [186703.71, 349137.99], + [186857.709, 349290.899], + [186949.7678, 349556.6828], + [186936.55, 349860.83], + [187097.5, 350243.65], + [187779.0732, 350686.1465], + [187140.9069, 351153.3082], + [187103.48, 351128.98], + [186701, 351528.4], + [186424.78, 351677.54], + [186465.3942, 351836.2881], + [186580.3, 352056.94], + [186384.64, 352113.76], + [186337.57, 352200.17], + [186178.15, 352271.5], + [186212.21, 352516.2], + [186072.3646, 352729.33], + [185978.39, 352828.86], + [185845.85, 352853.21], + [185799.75, 353063.31], + [185720.741, 353136.156], + [185572.752, 353247.285], + [185432.8506, 353066.1571], + [185000, 352734.25], + [184975.25, 352549.25], + [184904.25, 352489.75], + [184929.34, 352242.99], + [184847.55, 352231.15], + [184504.056, 352517.238], + [184317.612, 352680.331], + [184280.86, 352632.71], + [184221.327, 352686.478], + [184067.805, 352500.6111], + [184016.513, 352370.485], + [184058.08, 352308.25], + [183788.14, 352103.32], + [183306.54, 352026.54], + [182936.71, 351774.61], + [182838.23, 351592.58], + [182318.75, 351389.03], + [182248.445, 351733.617], + [182114.76, 351763.79], + [182281.18, 352068.38], + [182231.14, 352101.12], + [182442.41, 352288.52], + [182434.45, 352726.06], + [182367.31, 352723.52], + [182324.18, 352639.14], + [182194.09, 352695.12], + [182251.457, 352716.782], + [182220.865, 352948.915], + [182058.03, 352943.82], + [182088.39, 352793.22], + [181987.22, 352855.19], + [181789.42, 352823.6], + [181742.97, 353363.98], + [181804.15, 353468.11], + [181955.8, 353411.2], + [182288.4002, 353549.0102], + [182452.71, 353669.89], + [182427.07, 353710.38], + [182041.54, 353767.15], + [181977.35, 353842.09], + [182238.41, 354412.61], + [181566.34, 354988.2], + [180783.02, 355069.8], + [180845.77, 355175.1], + [180584.76, 355251.12], + [180300.13, 355536.61], + [180058.58, 355626.71], + [179894.33, 355488.11], + [179880.25, 355407.31], + [179817.626, 355420.7952], + [179672.66, 355296.91], + [179641.19, 355097.02], + [179561.5215, 355279.161], + [179236.68, 355256.5], + [179210.67, 355157.51], + [178962.93, 355118.1], + [178934.713, 355179.0585], + [178725.55, 355173.63], + [178741.091, 355115.256], + [178648.11, 355082.601], + [178631.05, 355149.24], + [178113.63, 355047.93], + [177883.03, 354950.08], + [177525.18, 354604.93], + [177431, 354786.3], + [176961.23, 354831.39], + [176983.2, 354977.74], + [176621.29, 354992.22], + [176542.14, 354838.57], + [176294.82, 354957.88], + [176149.31, 355150.4], + [176021.8, 355152.5], + [175976.28, 355081.84], + [175670.3674, 354987.417], + [175552.77, 355044.33], + [175506.8598, 354936.9487], + [175230.8, 354851.74], + [175217.36, 355041.17], + [174944.86, 355170.41], + [174387.04, 355245.5], + [173936.63, 355071.44], + [173352.51, 356056.4], + [173655.86, 356126.9201], + [173560.15, 356506.97], + [173121.26, 356759.39], + [168690.349, 358592.7643], + [167494.51, 359074.9], + [169468.25, 359654.65], + [169475.4, 359444.04], + [170018.4249, 359632.0258], + [171175.767, 360032.65], + [171496.0148, 362211.148], + [171496.897, 362223.4848], + [171661.94, 364948.87], + [172913.072, 366841.483], + [173459.8142, 367640.6815], + [174863.534, 369576.444], + [176925.8358, 370213.4511], + [177755.6371, 370469.4146], + [180000, 371161.9771], + [180081.32, 371186.9022], + [180987.954, 371466.853], + [181708.529, 371689.387], + [181751.139, 371702.553], + [182947.139, 372071.854], + [186559.985, 373171.552], + [187830.594, 373559.8329], + [188511.3549, 373769.2834], + [188657.448, 373814.476], + [188948.3, 373902.94], + [189196.8367, 374117.9064], + [190333.6025, 375138.9759], + [190422.6033, 375218.1278], + [192028.7561, 376665.8173], + [192179.3872, 376801.5889], + [192874.97, 377428.54], + [192078.7009, 378884.265], + [190874.344, 380958.8281], + [189256.5033, 383688.1141], + [189027.516, 384075.3], + [189022.6431, 384083.5304], + [188936.353, 384229.2634], + [188908.344, 384276.56], + [188678.346, 384670.451], + [187884.785, 389323.277], + [187310.786, 390672.889], + [187198.09, 391417.5362], + [186956.5647, 393023.7636], + [186272.6, 397594.21], + [188539.42, 397189.28], + [189967.8782, 396927.5604], + [191028.14, 396025.63], + [191802.9142, 396099.1194], + [193023.05, 396214.85], + [194194.7371, 396599.088], + [195647.7597, 397065.6147], + [196883.1651, 397634.4446], + [197696.569, 398060.2669], + [197779.408, 398104.585], + [197838.4685, 398058.5226], + [198286.61, 397709.0063], + [198286.615, 397709.0024], + [198753.823, 397344.275], + [199697.7214, 396129.168], + [199834.668, 396476.243], + [199767.391, 396613.354], + [199876.533, 396704.67], + [200083.044, 396779.05], + [200334.553, 396612.32], + [200570.544, 396705.35], + [200467.938, 396843.175], + [200586.599, 396879.922], + [200715.794, 396728.19], + [200832.554, 396820.65], + [200364.983, 397393.29], + [200110.855, 398032.251], + [200102.564, 398555.511], + [200207.8945, 399114.2925], + [200226.773, 399391.191], + [200150.97, 399670.319], + [199786.4297, 400276.7367], + [199593.6346, 400487.2792], + [199281.863, 400936.072], + [199101.56, 401764.32], + [199093.61, 403220.6101], + [199008.3, 403523.17], + [198819.76, 403863.05], + [197736.4701, 404950.2501], + [197146.413, 405511.994], + [196179.424, 406132.536], + [195796.551, 406269.986], + [195484.7518, 406488.7264], + [195159.221, 406876.973], + [194975.28, 407259.074], + [194876.174, 407769.099], + [194869.247, 408399.3027], + [194912.6641, 408901.3281], + [194936.5, 409800], + [194848.7185, 410476.2688], + [194740.829, 410942.6961], + [194705.6432, 411080.5589], + [194705.6417, 411080.5649], + [194347.68, 412472.19], + [194333.21, 413247.87], + [194273.08, 413528.39], + [194022.95, 413812.27], + [193670.6485, 414002.2065], + [192772.13, 414296.682], + [191781.625, 414459.684], + [191265.42, 414478.75], + [190404.31, 414729.99], + [190003.18, 414935.65], + [189598.393, 415280.913], + [189419.492, 415627.031], + [189315.634, 416418.8213], + [189301.1758, 416540.253], + [189147.323, 417097.3061], + [189066.0392, 417691.5488], + [188999.51, 418027.263], + [188415.9899, 418604.6267], + [188390.4706, 418626.4075], + [187951.709, 418884.539], + [187990.7184, 418947.9934], + [188134.1976, 419195.0836], + [188277.624, 419462.863], + [188147.3864, 419989.6793], + [188145.579, 420747.775], + [188175.014, 420870.764], + [188252.2964, 420895.1171], + [189448.152, 421220.84], + [189934.186, 421142.144], + [190470.318, 420325.484], + [190769.654, 419794.119], + [191168.427, 419432.255], + [191328.475, 419054.617], + [191326.87, 418666.76], + [191453.8436, 418336.3063], + [191963.0818, 418126.294], + [192713.539, 417851.844], + [192536.324, 417676.576], + [192483.523, 417441.792], + [192680.259, 417166.229] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD27", + "od_naam": "RUD Limburg Noord", + "naam_alt": "RUD LN" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6015", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [130431.9956, 447072.498], + [130485.5457, 446926.7422], + [130747.1881, 446232.6142], + [130887.6745, 446267.7598], + [131329.5569, 446422.4504], + [132021.8116, 445527.5813], + [132132.964, 445378.482], + [132066.024, 445285.859], + [132243.4881, 445128.966], + [132707.178, 444810.062], + [131490.525, 443783.814], + [131172.585, 443282.951], + [131062.821, 442915.495], + [130875.6, 442604.02], + [130649.452, 442429.07], + [130430.906, 442369.742], + [129929.744, 442430.454], + [129500.09, 442701.156], + [129088, 443082], + [128547.111, 443382.052], + [128264.608, 443345.28], + [127836.64, 443123.004], + [127501.207, 442841.635], + [127286.8752, 442540.8876], + [126939.0187, 442027.0509], + [126748.805, 441748.56], + [126193.502, 441294.602], + [125901.419, 441307.168], + [125454.449, 441482.224], + [124862.123, 441762.545], + [124492.29, 441817.199], + [124252.444, 441762.724], + [123821.203, 441350.099], + [123314.48, 440376.501], + [122821, 439689.956], + [122463.442, 439437.151], + [119969.662, 438963.878], + [119837.7523, 439577.0572], + [119633.4377, 440402.6184], + [119556.0361, 440711.3596], + [119376.8453, 441045.9756], + [119154.1797, 441462.1934], + [119062.426, 441792.631], + [118796.5834, 442308.1474], + [118071.8374, 442963.2824], + [117920.86, 443107.13], + [117783.0284, 443115.2321], + [117698.1411, 443243.9613], + [117006.341, 444275.948], + [117082.618, 444337.983], + [118326.554, 444949.946], + [120021.103, 445921.558], + [120968.743, 446391.633], + [121301.4733, 446574.4801], + [122219.534, 447071.816], + [122504.72, 447073.974], + [122707.762, 446968.868], + [122926.633, 446952.908], + [125132.129, 447690.315], + [126861.144, 448098.797], + [127884.573, 448149.41], + [128093.137, 448224.815], + [129778.7646, 448640.1849], + [129822.164, 448643.597], + [130063.3276, 448015.599], + [130294.085, 447441.1915], + [130431.9956, 447072.498] + ] + ], + [ + [ + [130706.1243, 458794.0804], + [130776.9178, 458785.081], + [131284.0304, 459755.1667], + [131596.356, 460083.316], + [131566.326, 460118.724], + [131743.4429, 460250.63], + [132674.287, 459421.846], + [132985.3414, 459720.1589], + [133072.147, 459800.945], + [133260.253, 459847.922], + [133292.482, 459933.103], + [133441.6299, 459729.706], + [133700.526, 459916.611], + [134345.8355, 460727.9737], + [134361.7815, 460748.4187], + [134458.151, 460872.754], + [135347.8372, 460261.8642], + [135408.6, 460220.618], + [135490.274, 460273.735], + [135566.983, 460220.413], + [135717.057, 460446.4791], + [135821.462, 460593.572], + [137150.095, 459630.396], + [138097.104, 459225.914], + [138080.945, 459180.243], + [138179.293, 459245.8571], + [138220.425, 459136.372], + [138249.573, 459208.868], + [138530.743, 459159.9], + [138706.61, 458945.53], + [138660.2864, 458584.3652], + [138777.179, 458097.959], + [139247.766, 457792.022], + [139566.03, 457688.2351], + [139176.1674, 456708.8841], + [139185.2187, 456680.6633], + [139247.4, 456701.673], + [139520.893, 456260.815], + [139849.204, 456186.485], + [140253.301, 456191.9101], + [140517.225, 456149.288], + [140527.351, 456224.311], + [140581.825, 456143.344], + [140839.176, 456117.52], + [140849.137, 456281.777], + [140985.361, 456247.921], + [141117.0764, 456118.4338], + [141223.282, 456093.724], + [141467.154, 455359.453], + [141672.304, 455330.236], + [141834.432, 454358.491], + [141662.141, 454422.141], + [140901.6797, 454240.064], + [140734.099, 454424.804], + [140220.528, 454510.849], + [139898.419, 454289.99], + [139589.224, 454505.521], + [139474.852, 454723.143], + [139437.801, 454693.605], + [139454.857, 454414.545], + [139124.699, 453706.614], + [139174.751, 453444.071], + [139378.9638, 453221.4159], + [139305.523, 453019.976], + [139344.4813, 452977.0303], + [139206.378, 452817.462], + [139263.883, 452251.524], + [138939.286, 452076.265], + [139464.377, 450823.756], + [140705.658, 450842.908], + [140712.318, 450911.893], + [141290.4081, 450663.611], + [141436.416, 450573.165], + [141571.7209, 450542.7909], + [141399.616, 450027.044], + [141437.386, 449869.38], + [141639.873, 449581.815], + [141841.443, 449805.821], + [142116.319, 449503.619], + [142215.9698, 449274.8414], + [142090.082, 448558.182], + [142168.546, 448294.16], + [142392.263, 447985.23], + [142298.026, 447692.928], + [143478.767, 447441.807], + [144166.645, 446992.744], + [145110.122, 445611.19], + [145052.717, 445596.723], + [145166.876, 445561.869], + [145133.9285, 445479.9472], + [145260.229, 445298.337], + [145997.671, 445032.93], + [145804.79, 444891.359], + [145859.547, 444194.303], + [147044.7619, 443644.2411], + [147035.18, 443633.776], + [146712.97, 443101.624], + [146002.834, 442510.796], + [145334.439, 443241.541], + [145042.479, 443379.126], + [144671.254, 443382.968], + [144405.742, 443249.23], + [144192.697, 443038.134], + [143781.532, 442167.351], + [143443.7761, 441680.0945], + [143058.978, 441373.753], + [143056.5845, 441372.3373], + [142544.423, 441237.766], + [142053.653, 441324.157], + [141427.3, 441628.044], + [140776.226, 442134.309], + [140261.202, 442377.119], + [139452.785, 442474.443], + [139016.903, 442620.02], + [138681.805, 442899.826], + [138488.254, 443183.731], + [138266.1361, 444000.209], + [138265.1514, 444007.8759], + [138149.758, 444732.762], + [137999.609, 445090.76], + [137601.724, 445397.426], + [137214.037, 445517.366], + [136620.641, 445761.073], + [136233.673, 445956.9411], + [135754.879, 446094.254], + [135374.6427, 446111.72], + [134606.5334, 445953.5336], + [133733.335, 445497.476], + [133609.236, 445883.801], + [133391.331, 445815.788], + [133552.582, 446177.115], + [133467.2481, 446439.5948], + [133319.8072, 446880.0762], + [133150.718, 447359.94], + [133086.676, 447386.339], + [132946.746, 447877.69], + [132744.9268, 448595.3947], + [132740.4879, 448649.4799], + [132736.046, 448769.662], + [132613.595, 448709.995], + [132195.503, 448999.328], + [132225.45, 449096.293], + [131995.464, 449225.259], + [131956.7366, 449138.3818], + [131558.534, 449659.6245], + [131046.25, 450707.66], + [130384.124, 451444.03], + [130338.836, 451548.271], + [130378.516, 451769.36], + [130291.677, 451875.219], + [130302.972, 451960.089], + [130198.533, 452011.87], + [129925.349, 452007.845], + [129641.348, 452585.963], + [129617.275, 452602.978], + [129682.0699, 452722.376], + [128414.897, 453164.283], + [128567.346, 454500], + [128677.751, 454478.581], + [128805.706, 455645.6296], + [128067.429, 455864.614], + [128020.999, 456069.6972], + [127738.57, 457020.232], + [126801.512, 456918.007], + [126650.365, 457079.132], + [126624.572, 457252.151], + [126816.259, 457577.36], + [126848.441, 457828.106], + [127016.996, 457841.467], + [127078.779, 457910.327], + [127077.502, 458226.501], + [127121.819, 458296.95], + [127002.211, 458404.16], + [126983.614, 458369.689], + [126434.772, 459440.414], + [126702.491, 460243.483], + [127477.909, 460546.646], + [127557.665, 460858.415], + [128115.998, 461230.0961], + [128706.674, 461609.5948], + [128678.73, 461526.383], + [129316.3694, 460231.3319], + [130706.1243, 458794.0804] + ] + ], + [ + [ + [147593.0251, 476946.6217], + [149446.194, 476594.514], + [149489.8871, 476625.1815], + [149654.091, 476489.273], + [149776.4073, 476257.0979], + [150102.676, 476234.6518], + [150484.9358, 476044.6045], + [150921.5365, 476188.5199], + [151180.3791, 476179.0981], + [151755.6609, 475799.6583], + [151838.1049, 475854.6215], + [152461.9551, 475644.9999], + [152933.3149, 475757.9618], + [153218.1451, 475586.0531], + [153369.2053, 475606.6555], + [153599.4873, 475437.108], + [153922.8529, 475018.0863], + [153829.6719, 475015.724], + [153845.357, 474915.2561], + [153990.261, 474757.196], + [154047.4911, 474807.0578], + [153913.563, 474961.9381], + [153921.673, 474968.5801], + [154113.9227, 474848.9265], + [154112.1563, 474847.1563], + [154147.98, 474666.0901], + [154334.701, 474554.2226], + [154623.9279, 474442.8675], + [154652.452, 474582.711], + [154680.406, 474572.5764], + [154784.3808, 474347.3889], + [155106.9526, 473990.8623], + [155120.8649, 473865.1343], + [155932.0522, 473267.6605], + [156122.5747, 473227.9654], + [155641.4676, 471302.1333], + [155516.8468, 470752.4925], + [155410.52, 470284.63], + [155568.461, 470118.683], + [156368.135, 469479.177], + [156535.27, 470054.995], + [158247.629, 468642.383], + [158556.921, 468500.81], + [158596.687, 468654.636], + [158647.79, 468638.307], + [158621.862, 468504.088], + [158685.5647, 468469.8432], + [158571.601, 468233.086], + [158594.0384, 467684.8039], + [158593.934, 467681.3875], + [158590.0351, 467552.9559], + [158616.807, 466882.09], + [158479.813, 466273.684], + [158545.284, 466222.789], + [158617.9793, 465026.9451], + [158537.495, 464975.558], + [158603.269, 464784.283], + [158857.881, 464521.053], + [159059.305, 464431.48], + [159817.2728, 464327.1208], + [160639.58, 464231.2129], + [161343.622, 464188.13], + [161277.128, 464068.618], + [161041.793, 464027.873], + [160888.5237, 463903.8139], + [160831.625, 463857.759], + [160861.347, 463746.259], + [161042.906, 463781.333], + [161294.603, 463692.533], + [161494.59, 463518.662], + [161487.5895, 463491.0277], + [161452.344, 463351.897], + [161645.47, 463326.178], + [161629.195, 463023.777], + [161608.423, 462871.879], + [161442.949, 462484.461], + [161610.983, 462369.435], + [162000, 462231.347], + [162650.991, 462136.871], + [162537.11, 461478.266], + [162721.752, 461433.988], + [162900.045, 461266.559], + [163241.691, 461192.591], + [163232.057, 461155.396], + [163522.523, 461040.392], + [163686.394, 460865.94], + [163574.7265, 460688.4718], + [163569.462, 460676.681], + [163536.223, 460664.515], + [163544.3132, 460651.5167], + [163547.1704, 460611.3256], + [163522.013, 460434.794], + [163353.29, 460422.798], + [163248.941, 460331.339], + [163064.864, 460326.897], + [162825.415, 460198.708], + [162661.633, 460265.506], + [162580.547, 460236.601], + [162502.451, 459628.045], + [162361.782, 459617.081], + [162386.567, 459314.027], + [162514.198, 459043.192], + [162728.261, 459003.748], + [162956.2035, 459055.1966], + [163091.952, 459065.569], + [162983.077, 458713.276], + [163243.2179, 458605.821], + [163253.854, 458414.578], + [163157.846, 458460.425], + [162991.244, 458397.278], + [162904.869, 458547.016], + [162651.703, 458649.559], + [162426.388, 458601.17], + [161909.604, 458657.759], + [161797.72, 458575.118], + [162169.527, 458478.332], + [162310.135, 458287.054], + [162306.286, 458101.599], + [161652.238, 457482.616], + [161719.3483, 456765.9791], + [161683.567, 456490.48], + [161776.056, 456160.426], + [161139.325, 455795.015], + [160997.917, 455777.164], + [160876.3621, 455653.4141], + [160800.267, 455674.706], + [160776.8638, 455552.1191], + [160531.225, 455302.0447], + [160267.685, 454979.183], + [160220.628, 455022.078], + [160078.9299, 454933.3531], + [159967.887, 454861.744], + [160000.2, 454744.809], + [159938.2832, 454663.9029], + [160377.915, 454448.819], + [160432.091, 454205.476], + [160496.206, 454137.853], + [160738.351, 454048.478], + [160927.574, 453876.084], + [161112.601, 453822.058], + [161629.868, 453489.968], + [161930.381, 453572.286], + [162095.766, 453685.775], + [162326.786, 453741.49], + [162468.123, 453716.071], + [162430.308, 453636.526], + [162590.454, 452085.232], + [162148.226, 452118.378], + [161733.5168, 451996.8221], + [161172.617, 451620.067], + [160395.244, 451389.713], + [160137.683, 451188.68], + [160071.909, 450996.235], + [159574.569, 451274.87], + [159213.054, 450547.9362], + [159013.229, 450772.73], + [158731.867, 450820.82], + [158289.1309, 451064.4092], + [157926.4658, 451618.3951], + [157821.077, 452000.949], + [157847.05, 452116.17], + [157977.797, 452306.119], + [158296.272, 452367.502], + [158377.312, 452591.379], + [158504.34, 453555.409], + [158446.116, 453749.204], + [158309.126, 453842.066], + [158166.018, 453780.084], + [157527.742, 453802.408], + [157410.059, 453859.894], + [156518.813, 453411.015], + [156007.561, 452889.537], + [155913.856, 452939.232], + [155805.908, 453183.189], + [155910.414, 453266.525], + [155845.672, 453436.011], + [156245.251, 453635.148], + [156361.482, 453810.65], + [156281.369, 454104.759], + [156117.496, 454155.682], + [155500.751, 454076.167], + [155264.145, 454088.339], + [155179.58, 454154.47], + [155078.0239, 454072.5154], + [154816.554, 454443.703], + [151233.398, 455100.986], + [150868.577, 455386.812], + [148908.0211, 456469.7731], + [150564.22, 457075.002], + [149774.127, 457797.115], + [149468.744, 458007.4], + [148955.667, 458178.028], + [148656.8109, 458364.6778], + [148465.428, 458483.374], + [148378.42, 458447.2241], + [147808.1401, 458211.0741], + [147490.5441, 458960.9801], + [147462.3568, 459031.6349], + [147262.157, 459508.8631], + [147106.808, 459876.864], + [146569.967, 459659.067], + [146029.9751, 460917.0151], + [145967.768, 461196.089], + [146047.843, 461771.2387], + [146045.431, 461784.1381], + [145937.517, 462378.918], + [145678.9235, 463138.6033], + [145588.518, 463407.5641], + [145146.657, 464667.998], + [144863.472, 464395.517], + [144816.881, 464412.573], + [144786.268, 464799.401], + [144655.207, 464782.807], + [144676.967, 464377.652], + [143902.277, 464183.654], + [143826.28, 464148.217], + [143747.374, 465183.964], + [143645.912, 465171.306], + [143639.6486, 465371.7011], + [143631.541, 465581.801], + [143161.6718, 465406.3864], + [143020.959, 465373.337], + [143292.658, 466672.993], + [143227.442, 466750.2431], + [143105.225, 466898.294], + [143166.156, 467908.24], + [143316.961, 468339.7], + [143262.586, 468476.898], + [143333.206, 468607.721], + [143380.219, 468694.623], + [143330.525, 468709.651], + [143501.105, 469350.333], + [143612.615, 469777.617], + [143898.714, 470803.441], + [143773.761, 470810.827], + [144390.037, 472124.2233], + [144766.646, 472924.398], + [144837.917, 473078.212], + [145296.409, 474053.149], + [145227.359, 474079.066], + [146393.6503, 476432.6705], + [146706.019, 477062.952], + [146713.272, 477078.4331], + [146947.892, 477066.8951], + [147488.3364, 476965.1815], + [147593.0251, 476946.6217] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD13", + "od_naam": "RUD Utrecht", + "naam_alt": "RUD Utrecht" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6014", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [25054.8275, 381480.8853], + [26873.6686, 381191.45], + [27012.8538, 381172.4814], + [27166.3129, 381278.2885], + [27246.105, 381253.8232], + [27049.2767, 380980.0649], + [26927.9319, 380991.474], + [26981.9912, 380805.624], + [26964.4393, 380781.0012], + [27008.0033, 380743.855], + [27031.512, 380765.9338], + [27225.4659, 380673.9472], + [27422.7171, 380996.1345], + [27385.7538, 381097.7659], + [27401.6567, 381110.1541], + [27450.2284, 381006.4703], + [27345.1736, 380743.1597], + [27757.3279, 380599.9943], + [28404.2888, 380630.9601], + [28033.3561, 380202.9255], + [28037.132, 380133.3005], + [28289.5787, 380394.3208], + [28336.9131, 380315.0873], + [28156.8369, 380091.7928], + [28168.0475, 380047.2733], + [28276.2017, 380045.4875], + [28381.455, 380171.283], + [28433.1274, 380176.7845], + [28440.1038, 380026.152], + [28544.016, 380014.9189], + [28563.2905, 380085.8554], + [28590.2175, 380084.268], + [28682.1019, 379988.4255], + [28780.051, 379986.223], + [28844.4975, 380068.6665], + [28429.956, 380410.369], + [28427.2005, 380478.2008], + [29113.5734, 379861.8412], + [29097.766, 379720.6608], + [29549.0963, 379187.0975], + [29848.7388, 379048.8507], + [31081.3853, 378847.2], + [31134.0153, 378687.1013], + [31578, 378534.766], + [31683.2368, 378314.5823], + [32208.5387, 378134.2706], + [33409.9825, 377758.2293], + [34202.5603, 377606.0366], + [34913.3564, 377478.0345], + [35155.242, 377577.56], + [35336.2466, 377529.5321], + [35588.5659, 377356.4683], + [36644.8954, 377164.8285], + [36884.8463, 376748.9364], + [36879.4703, 376562.3783], + [37023.0821, 376491.5094], + [37058.7833, 376345.831], + [37268.427, 376148.1763], + [37851.5243, 375750.4763], + [38473.2989, 375162.5711], + [38601.1815, 375143.4293], + [39036.376, 374701.296], + [39660.2239, 374585.8811], + [40403.0191, 374580.678], + [41511.4405, 374450.7368], + [41538.6725, 374264.0149], + [41339.159, 374015.8861], + [41275.0445, 373698.7284], + [41525.8776, 373536.1148], + [42182.216, 373151.6166], + [42376.8148, 373140.0033], + [42313.322, 374510.8828], + [42466.3509, 374696.2411], + [43665.3293, 374591.0235], + [43890.8573, 374292.8861], + [44301.9853, 374096.2663], + [44428.7799, 373991.785], + [45105.7986, 373885.5889], + [44903.5686, 373568.4379], + [44903.2048, 373322.4318], + [45411.9219, 372372.4385], + [45456.0048, 372392.7187], + [45479.9339, 372337.2191], + [45515.0229, 372354.032], + [45490.1274, 372408.4166], + [45532.4208, 372427.8736], + [45332.1148, 373142.7059], + [45412.877, 373182.448], + [45460.2534, 373030.2774], + [45533.2165, 373034.0565], + [45501.3572, 373154.0667], + [45517.6291, 373157.2417], + [45568.0214, 373013.143], + [45584.7591, 373016.1428], + [45568.3305, 373167.7471], + [45604.1836, 373177.2503], + [45566.1495, 373415.198], + [45389.5355, 373803.8761], + [45653.3445, 373804.1465], + [45610.2078, 373558.2253], + [45734.797, 373067.6791], + [45789.8339, 373075.1216], + [45845.1554, 373367.8894], + [45922.2144, 373452.5785], + [45924.1075, 373511.1256], + [45821.4478, 373602.1129], + [45797.2762, 373767.1815], + [45825.2134, 373780.8606], + [45911.326, 373603.5477], + [46070.069, 373586.1084], + [46321.0801, 373828.2944], + [46339.7408, 373790.3926], + [46143.5585, 373589.8689], + [46448.0654, 373432.8744], + [46404.4611, 373735.6113], + [46445.8211, 373749.5495], + [46508.6744, 373401.6262], + [46820.6754, 373331.9405], + [46890.017, 373162.0469], + [47328.2538, 372983.1765], + [47757.1384, 372952.98], + [48304.5276, 372968.9606], + [48388.1963, 372913.4255], + [48479.5541, 372978.2995], + [49057.9852, 373008.1233], + [49299.3336, 373449.6718], + [49562.3435, 373608.2495], + [49636.6958, 374033.9421], + [49690.1153, 374100.5975], + [50257.2403, 374214.0322], + [50337.2765, 374235.0214], + [50341.3642, 374427.2707], + [50431.8409, 374376.9603], + [50386.8281, 374248.0162], + [50781.7486, 374351.5829], + [51204.343, 374832.1883], + [51766.2043, 375272.5669], + [52638.1263, 375703.6514], + [53980.5381, 375936.3505], + [54342.6235, 376132.2685], + [54804.9616, 376327.386], + [55247.2731, 376346.6787], + [55292.7273, 376164.2098], + [55473.0559, 376088.492], + [55551.2808, 376359.9388], + [55592.3248, 376507.0308], + [55565.3431, 376762.3074], + [55820.7878, 377211.9913], + [55871.6328, 377883.3349], + [56182.2084, 378221.0471], + [56223.5421, 378345.3036], + [56058.6023, 378729.9378], + [56044.8786, 379605.7591], + [55958.5263, 379797.7358], + [55955.989, 379880.1021], + [56342.3395, 380251.3096], + [56452.8141, 380574.4836], + [56696.648, 380679.707], + [57906.4361, 380551.0575], + [58007.9393, 380509.2225], + [58009.5607, 380362.0318], + [59715.5814, 380004.0611], + [59800.3713, 380032.8576], + [59824.1918, 380007.8171], + [59606.7388, 379771.9375], + [59680.5433, 379683.3236], + [59661.6275, 379595.6641], + [59743.8223, 379541.8943], + [59983.295, 379657.8521], + [59983.3718, 379926.207], + [60014.9408, 379938.7645], + [60015.5544, 379678.4365], + [60191.6545, 379230.8546], + [60482.0307, 379141.5124], + [60691.7578, 378225.2503], + [60716.8022, 378179.1341], + [60749.8023, 378197.3344], + [60767.3801, 378170.7235], + [60730.7954, 378153.3672], + [60861.452, 377912.779], + [60847.8234, 377899.5328], + [60753.5593, 378049.3233], + [60705.3705, 378008.2423], + [60810.98, 377857.0185], + [60750.6799, 377747.03], + [60813.5338, 377703.2124], + [60901.867, 377846.445], + [60996.7268, 377657.1751], + [60978.132, 377572.174], + [61165.346, 377333.617], + [61477.341, 376609.207], + [61843.2403, 376162.58], + [62099.245, 376027.098], + [64380.82, 375805.815], + [64820.2594, 375495.0886], + [65002.997, 375524.048], + [65090.868, 375483.492], + [65251.9921, 375222.5771], + [66101.951, 374685.328], + [66101.2346, 374674.6373], + [66075.4978, 374637.898], + [66064.56, 374425.3038], + [66118.4066, 374418.7881], + [66144.6596, 374585.1511], + [66113.597, 374628.764], + [66126.042, 374645.355], + [66142.023, 374650.541], + [66409.606, 374462.589], + [66665.053, 374096.397], + [67229.78, 373478.117], + [67677.456, 372677.698], + [67761.442, 372876.113], + [67692.74, 373472.181], + [67314.384, 374040.859], + [66229.7638, 375377.9989], + [66396.106, 375643.242], + [66639.8688, 375721.9579], + [67511.776, 375786.904], + [68085.316, 375412.176], + [68834.24, 374093.348], + [69364.1073, 373840.1541], + [68954.9776, 375973.3126], + [69238.668, 376234.903], + [70446.9473, 376722.7736], + [70449.2113, 375309.8453], + [70707.746, 375498.5388], + [70734.216, 376046.566], + [71327.299, 376875.904], + [71745.8449, 377042.351], + [72789.4243, 376808.6434], + [73231.4848, 376124.8442], + [73189.0933, 375866.8734], + [73399.209, 375643.464], + [73391.404, 375376.996], + [73467.509, 375219.178], + [73720.0012, 375369.1851], + [73975.1983, 374974.4346], + [73967.023, 374643.283], + [74709.1258, 373839.1625], + [69967.874, 367951.139], + [69830.12, 367780.07], + [69381.7519, 367489.7987], + [68155.615, 366637.733], + [64779.2775, 364291.7268], + [64637.251, 364229.444], + [64628.74, 364177.38], + [64529.17, 364199.72], + [64533.15, 364117.7], + [64475.4888, 364125.06], + [64460.81, 364066.19], + [63669.933, 363530.015], + [63473.8636, 363355.4994], + [63085.3362, 363201.8097], + [63138.94, 363150.37], + [62773.07, 362941.3566], + [62622.3848, 362854.9089], + [62459.25, 362531.96], + [62182.02, 362408.84], + [61083.414, 362215.605], + [60919.09, 362212.48], + [60694.37, 362687.32], + [60400.301, 362428.593], + [60045.802, 362345.317], + [59844.63, 362238.14], + [59686.5778, 362556.4216], + [59604.36, 362672.79], + [59221.86, 362583.41], + [59180.18, 362649.78], + [58532.934, 362304.639], + [58135.2414, 362005.8957], + [58106.8766, 361844.164], + [57599.25, 361708.85], + [57287.14, 361365.09], + [57155.78, 361472.23], + [56912.9268, 361020.974], + [56628.09, 360503.89], + [56548.43, 360469.56], + [56463.3147, 360509.2558], + [56153.457, 360438.05], + [55602.9775, 360366.1567], + [55185.47, 359468.22], + [54810.24, 359549.6], + [54351.87, 359451.29], + [54069.2, 359368.1], + [54103.1, 359245.63], + [53599.2, 359063.9], + [53293.6675, 359670.4243], + [53159.35, 360003.8], + [52875.1, 359658.5], + [52628.046, 359657.278], + [52468.61, 359662.7], + [52397.06, 359430.66], + [52209.74, 359396.74], + [52377.68, 358628.82], + [52148.63, 358678.65], + [51877.65, 358380.86], + [51102.51, 358056.06], + [50853.28, 358090.26], + [50693.53, 358188.19], + [50585.7865, 358144.0391], + [50592.06, 358117.98], + [50246.7442, 357924.7122], + [50213.15, 357932.84], + [50177.15, 357912.62], + [50104.89, 357829.15], + [50012.647, 358029.3108], + [50005.66, 358102.09], + [49983.66, 358186.87], + [49637.7536, 358517.6988], + [49513.28, 358715], + [49899.24, 358958.86], + [50408.59, 359362.35], + [50635.96, 359876.99], + [50437.713, 360181.4751], + [50333.069, 360338.6074], + [50317.95, 360361.31], + [50314.44, 360366.11], + [49011.468, 359643.843], + [48623.667, 359339.9021], + [48440.3, 359225.32], + [48258.53, 359054.65], + [48017.24, 359085.36], + [47763.69, 359330.44], + [47058.33, 359228.02], + [46593.71, 359348.74], + [46492.91, 359225.42], + [45974.03, 358939.19], + [45570.41, 358930.79], + [44839.72, 359342.84], + [44539.65, 359333.31], + [44523.54, 359417.78], + [44406.55, 359403.73], + [44443.213, 359056.88], + [44046.89, 359148.25], + [43907.96, 359377.568], + [43485.404, 359510.817], + [43378.291, 359744.059], + [43351.1119, 360597.8343], + [43327.58, 360889.8], + [43404.7602, 362348.8207], + [43444.419, 363047.67], + [43889.72, 364180.51], + [43194.88, 364464.35], + [42698.6514, 364911.8052], + [42395.32, 365094.91], + [42340.6, 364866.21], + [42069.75, 364644.36], + [41603.42, 364868.27], + [41147.71, 365720.13], + [40919.62, 365827.9], + [40868.94, 365705.93], + [38884.167, 366216.23], + [38610.95, 366133.5], + [38585.457, 366021.913], + [38250.578, 366100.953], + [38153.45, 366094.98], + [37947.05, 366153.6], + [36854.182, 366562.986], + [36586.85, 367077.78], + [36074.64, 367143.36], + [35747.893, 367088.757], + [35674.14, 367372.38], + [34391.55, 368195.43], + [33436.27, 368209.51], + [33352.42, 368053.65], + [33180.801, 367990.422], + [32141.02, 368599.8], + [31826.9, 368543.6], + [31690.16, 368711.86], + [31649.87, 368897.77], + [31386.196, 369105.604], + [31245.595, 369133.659], + [29739.04, 369891.3], + [29807.74, 369992.38], + [29677.3477, 370049.4978], + [29382.74, 369594.96], + [29044.64, 369230.07], + [29505.15, 368622.06], + [29186.4, 368551.33], + [29127.47, 368386.39], + [29211.62, 368175.68], + [29062, 367959.9], + [28928.96, 368169.57], + [28785.26, 368179.17], + [28670.77, 368091.42], + [28356.3, 368435.38], + [28387.52, 368538.78], + [28011.93, 368751.61], + [27994.21, 368844.95], + [27754.39, 368987.82], + [27547.68, 368948.3], + [27418.62, 368480.29], + [27288.8467, 368387.9672], + [27248.26, 368326.37], + [27100.84, 368305.54], + [26841.96, 368481.55], + [26396.79, 368503.47], + [26309.91, 368150.46], + [25997.31, 367674.22], + [25694.27, 367663.28], + [25392.78, 368255.81], + [24431.71, 368103.06], + [24566.7434, 367368.6917], + [25194.9525, 363552.5895], + [25164.66, 363508.82], + [22160.07, 363277.86], + [19761.82, 363156.7459], + [19522.37, 363162.59], + [19346.29, 363221.77], + [19353.86, 363287.6], + [19079.4921, 363380.9106], + [18512.09, 363634.7], + [18171.73, 363537.82], + [18043.0891, 364233.2338], + [17986.54, 364635.75], + [17770.85, 364879.81], + [17571.95, 364981.76], + [17495.29, 365239.05], + [17415.2598, 365260.1538], + [17097.69, 364932.56], + [16807.38, 364944.24], + [16528.06, 365564.12], + [16089.501, 365758.593], + [15934.917, 365909.218], + [15560.99, 366568.625], + [15493.47, 366792.98], + [15397.94, 366866.28], + [15109.96, 366895.6], + [14838.18, 367008.65], + [14663.5, 367241.91], + [14635.57, 367401.58], + [14679.91, 367509.28], + [14945.34, 367593.98], + [15087.58, 367736.13], + [15007.69, 368037.84], + [15042.25, 368331.52], + [14917, 368508.16], + [14324.61, 368905.49], + [14093.07, 369324.12], + [14050.32, 369617.71], + [14146.3, 369765.47], + [14452.2, 369809.08], + [14900.82, 370081.67], + [14813.72, 370061.57], + [13871.5493, 371139.695], + [13565.4, 371491.15], + [13886.751, 371834.1319], + [15501.0937, 373583.3428], + [15397.42, 374359.36], + [14762.08, 375189.7], + [14754.25, 375827.18], + [14857.96, 376342.34], + [14683.1888, 376692.8742], + [14742.1882, 376991.3189], + [14513.8766, 377244.8286], + [14581.5604, 377699.5179], + [14559.0747, 377861.5093], + [14684.094, 377984.4138], + [15160.4028, 378396.3083], + [15296.2382, 378490.4321], + [15287.2955, 378673.3652], + [15317.3282, 378690.2237], + [15326.1833, 378466.0857], + [15448.0411, 378433.8083], + [15456.9221, 378681.2717], + [15405.7594, 378708.7306], + [15407.0306, 378731.4652], + [15494.3433, 378690.4547], + [15494.3146, 378596.4501], + [15633.9782, 378600.9669], + [16832.025, 379008.1185], + [17505.6916, 379339.585], + [18174.0771, 379675.1293], + [18837.097, 379866.336], + [18979.5633, 379747.0073], + [19237.5299, 379514.7088], + [19477, 379512.2493], + [20061.4684, 379796.8734], + [20584.0021, 380054.4137], + [20723.4029, 380090.7338], + [21790.9523, 380322.6874], + [22832.387, 380649.905], + [23304.649, 380911.3], + [23707.3245, 381147.3049], + [23798.7093, 381305.6151], + [23986.8367, 381413.7147], + [24072.295, 381409.1947], + [25054.8275, 381480.8853] + ] + ], + [ + [ + [37362.5151, 394734.4969], + [37299.1979, 394510.193], + [37222.494, 394610.0941], + [37250.9668, 394812.4841], + [37311.325, 394879.8771], + [37362.5151, 394734.4969] + ] + ], + [ + [ + [39087.0904, 394087.733], + [38973.6553, 394083.7151], + [38846.0365, 394214.4168], + [39154.5826, 394630.3504], + [39363.9862, 394866.203], + [39344.5865, 394973.2483], + [39364.2588, 394974.538], + [39387.339, 394836.2624], + [39379.0032, 394693.1434], + [39206.5818, 394594.3384], + [39014.0394, 394234.5585], + [39044.7833, 394165.8303], + [39139.8449, 394150.4793], + [39087.0904, 394087.733] + ] + ], + [ + [ + [43415.6334, 396750.8505], + [43351.0943, 396652.2824], + [42890.8156, 396945.0146], + [42961.072, 397063.3854], + [43025.2133, 397134.1368], + [43496.4148, 396864.729], + [43415.6334, 396750.8505] + ] + ], + [ + [ + [42962.8951, 396682.6031], + [42891.7998, 396558.683], + [42652.944, 396641.0701], + [42196.731, 396663.851], + [41931.8707, 396748.6517], + [41888.814, 396873.9159], + [41961.6728, 396955.679], + [42776.5136, 397180.7814], + [42843.0244, 396861.0609], + [42962.8951, 396682.6031] + ] + ], + [ + [ + [37638.0295, 396152.5084], + [37247.0469, 395588.4711], + [37109.4749, 395612.4049], + [37044.3029, 396266.5543], + [36766.8565, 396868.2161], + [36720.6003, 397240.8624], + [36858.5419, 397369.7616], + [37191.4019, 397212.5479], + [37582.9534, 396683.538], + [37638.0295, 396152.5084] + ] + ], + [ + [ + [36299.1808, 397739.9333], + [36271.6873, 397536.5354], + [36182.4678, 397619.6029], + [36093.7476, 397855.4326], + [35943.8633, 398013.7828], + [36106.8073, 398070.896], + [36194.8107, 397983.9735], + [36299.1808, 397739.9333] + ] + ], + [ + [ + [36091.3948, 398334.7681], + [36095.387, 398215.3658], + [35892.4011, 398265.6738], + [35754.5478, 398220.5334], + [35638.7638, 398232.1274], + [35727.5614, 398369.7261], + [36022.8134, 398394.8629], + [36091.3948, 398334.7681] + ] + ], + [ + [ + [54624.822, 417338.4208], + [54426.8263, 417244.3433], + [53242.937, 417247.4303], + [53147.2364, 417178.7758], + [53050.69, 417319.9074], + [53050.2021, 417523.4914], + [53283.0359, 417765.321], + [53599.2525, 417767.2015], + [54104.8123, 417643.2425], + [54605.4608, 417398.4975], + [54624.822, 417338.4208] + ] + ], + [ + [ + [55927.999, 418536.7701], + [56105.8481, 418448.6418], + [56431.661, 418508.9625], + [56594.0001, 418446.4723], + [56428.4293, 418251.895], + [55777.5758, 417932.5438], + [55753.3329, 417857.7658], + [55682.3048, 417938.4113], + [55685.6773, 417816.6866], + [55640.4565, 417796.755], + [55591.845, 417850.612], + [55176.7368, 417765.0334], + [54922.5456, 417801.1798], + [54839.9408, 418180.9161], + [54854.0869, 418452.8276], + [55249.5171, 418566.7398], + [55927.999, 418536.7701] + ] + ], + [ + [ + [60247.6339, 416175.4003], + [60059.185, 416062.4885], + [59606.3354, 416081.8259], + [59369.9883, 416224.1181], + [59006.1528, 416854.2903], + [58827.7781, 417619.9911], + [58564.585, 418280.4671], + [57965.471, 419027.06], + [57698.0751, 419151.0823], + [57831.628, 419387.4406], + [58008.9229, 419564.876], + [58691.9685, 419769.6685], + [58913.6463, 419775.132], + [59044.2503, 419712.609], + [58944.364, 419389.758], + [58947.4128, 418925.7194], + [59382.252, 417654.1461], + [59733.5014, 417025.2655], + [60299.3448, 416490.6635], + [60247.6339, 416175.4003] + ] + ], + [ + [ + [48350.0529, 419755.2781], + [48174.574, 419630.056], + [48308.9774, 419427.9486], + [48278.1789, 419305.892], + [48003.1845, 419076.087], + [47976.3835, 418987.22], + [47845.9016, 419050.5829], + [48197.2418, 419335.2676], + [48210.5111, 419427.3133], + [48001.1071, 419648.5855], + [47553.6274, 419339.7323], + [47471.0681, 419216.8561], + [47607.3562, 419116.209], + [47526.525, 418991.1645], + [47297.5115, 418958.5451], + [47267.4913, 418817.6439], + [47310.4058, 418783.2345], + [47175.9275, 418008.2357], + [47223.5924, 417917.5165], + [47164.7074, 417909.0514], + [47156.6684, 417837.9881], + [47456.0465, 417900.6192], + [47503.9955, 417964.7508], + [47856.7903, 417822.9645], + [48056.7483, 417864.3303], + [48280.4696, 417804.2663], + [48575.8665, 417988.3541], + [48627.7658, 417950.7284], + [48474.4908, 417900.0294], + [48467.7461, 417844.8083], + [48574.3644, 417805.7704], + [48638.2729, 417841.0879], + [48615.1531, 417784.0845], + [48824.8629, 417653.3609], + [48926.931, 417773.2121], + [48637.4486, 417906.0193], + [48672.7403, 417948.6291], + [49153.0124, 417754.6664], + [50441.6275, 418066.6299], + [51432.1033, 418347.1874], + [51582.9633, 418262.6583], + [51709.2838, 418295.0397], + [51563.5114, 418202.4416], + [51669.3784, 417884.9056], + [51861.9566, 417907.5154], + [51908.7667, 417984.8874], + [52202.968, 417864.7889], + [52534.349, 417594.7009], + [52509.3508, 417508.9789], + [52740.77, 417084.8861], + [52881.6753, 417054.7368], + [53034.701, 416940.2173], + [53156.284, 416696.5033], + [53145.4436, 416645.5223], + [53106.6514, 416687.9933], + [53071.6365, 416658.406], + [53204.7016, 416450.2594], + [53316.915, 416540.1606], + [53290.3687, 416569.0182], + [53186.3671, 416699.1344], + [53223.3664, 416876.69], + [53571.6541, 416942.3025], + [53694.0599, 416879.6674], + [53770.2943, 416918.6259], + [54120.4875, 416889.084], + [55257.0945, 417165.6345], + [55321.2446, 417057.9766], + [56476.426, 417044.8915], + [56737.9723, 417110.3428], + [57194.0964, 417050.6364], + [57332.8814, 416964.8833], + [57103.5149, 416282.775], + [57213.17, 416258.8503], + [57426.064, 416848.4396], + [57701.1528, 416670.3794], + [57729.0773, 416586.8486], + [57595.1075, 416568.937], + [57747.0184, 416330.2169], + [57966.878, 416150.6371], + [57977.234, 415872.7768], + [58095.0374, 415514.0513], + [57930.6148, 415269.5021], + [58545.8053, 414831.1108], + [59600.4431, 413610.1715], + [59879.8543, 412983.733], + [60106.0321, 411772.589], + [60520.808, 411547.6361], + [60614.3875, 411579.6891], + [60943.7253, 411501.4733], + [61013.75, 411332.0551], + [61138.1285, 411292.1412], + [61868.6813, 411509.4896], + [62131.9881, 411506.5733], + [62753.6131, 411104.5371], + [62897.848, 410899.5648], + [63514.2024, 410695.7043], + [63794.4375, 410425.9095], + [63985.4986, 410397.0263], + [64326.8529, 410496.5533], + [64443.4229, 410411.5281], + [64193.1735, 410299.7718], + [64190.272, 410240.7099], + [64630.7476, 409937.4041], + [64789.9645, 410037.911], + [64856.575, 410002.9909], + [64795.3531, 409885.5734], + [65031.7764, 409732.2282], + [65151.2628, 409910.813], + [65185.1233, 409895.7056], + [65082.7233, 409699.1839], + [65379.007, 409494.3201], + [66601.7472, 410645.2525], + [66957.0938, 410824.7041], + [67000.8832, 410762.177], + [67399.7131, 410852.2353], + [67482.7793, 410823.7528], + [67439.7401, 410686.2869], + [67533.0046, 410615.4723], + [67698.792, 410632.8034], + [67747.7096, 410741.196], + [67982.6463, 410842.1118], + [67929.5858, 410724.6705], + [68069.4063, 410657.967], + [68162.5066, 410756.9031], + [68497.426, 410721.8591], + [68539.5029, 410828.9038], + [69054.226, 410774.498], + [69347.8774, 410833.1101], + [69821.3321, 411234.8787], + [69948.6729, 411129.6066], + [69874.8173, 410983.448], + [69832.6709, 410359.8769], + [70331.266, 409478.246], + [70909.6064, 409530.3348], + [71055.6567, 409409.6845], + [70534.7756, 409423.6295], + [70505.6978, 409257.0809], + [70225.2649, 409212.0635], + [70231.0123, 409140.4948], + [71124.9713, 409216.0846], + [71491.6381, 409075.7456], + [71691.556, 408929.345], + [71299.2735, 409112.0078], + [70389.1861, 409089.919], + [70348.7313, 408945.2636], + [70234.785, 408926.9], + [70242.99, 408662.643], + [71501.79, 408656.2075], + [71664.8868, 408698.3428], + [71711.5781, 408545.1553], + [71662.9551, 408531.9671], + [71551.1456, 408597.4116], + [71338.947, 408526.0369], + [71096.136, 408531.4179], + [70829.4779, 408615.2035], + [70565.169, 408529.3844], + [70506.7763, 408442.2665], + [70530.7603, 408222.0698], + [70717.0424, 407992.8668], + [71137.7299, 407901.8364], + [71492.421, 407949.2911], + [71629.5968, 407884.6949], + [71524.0881, 407416.1929], + [71953.9, 407152.18], + [72233.935, 406864.297], + [72371.949, 406601.9234], + [72413.5325, 406252.4627], + [72507.2555, 405766.0585], + [72896.373, 405771.6863], + [72524.2248, 406134.461], + [72857.106, 406267.0959], + [73615.6625, 406178.7845], + [73802.514, 406102.7959], + [74025.4209, 405812.9233], + [74856.4144, 405645.6454], + [75075.0448, 405768.0264], + [75394.0364, 405646.3905], + [74731, 405324], + [73800.36, 404965.19], + [73138.97, 404519.38], + [72619.24, 403914.35], + [72189.5913, 402952.0962], + [72106.62, 402588.3601], + [72068.806, 402021.278], + [72107.64, 401623.47], + [72199.28, 401234.41], + [72431.88, 400682.43], + [72646.34, 400345.13], + [74632.53, 397836.34], + [74924.01, 397313.03], + [75130.74, 396605.3141], + [75163.574, 396342.405], + [75119.02, 395550.39], + [74927.575, 394913.672], + [73975.7164, 392292.9427], + [73888.58, 391755.62], + [73890.109, 391299.06], + [74290.3415, 390361.8322], + [74653.4, 389511.66], + [77007.031, 383997.815], + [77706.646, 382359.108], + [77043.92, 381805.13], + [76849.06, 381415.31], + [77192.259, 379618.428], + [77141.667, 378259.405], + [76979.946, 378085.437], + [77116.343, 377750.124], + [77485.685, 377700.41], + [77543.422, 377533.3726], + [77733.07, 376905.01], + [75347.9534, 376805.5934], + [75412.0648, 377241.052], + [75374.732, 377840.113], + [74577.724, 379053.157], + [73566.563, 379573.018], + [73193.597, 379680.919], + [72855.026, 379610.478], + [72642.087, 380132.432], + [72441.741, 380353.448], + [72307.556, 380405.197], + [72223.2064, 380421.1748], + [72015.1475, 380290.6595], + [71666.822, 380292.786], + [71610.75, 380147.536], + [71344.4134, 380120.5869], + [71167.0975, 379992.9568], + [70531.8875, 379889.7075], + [70545.1287, 379854.6388], + [69366.0643, 379130.1833], + [69165.7174, 379105.356], + [69093.025, 379170.725], + [68122.151, 379342.056], + [67749.865, 379631.26], + [66905.3027, 379835.719], + [66851.676, 379777.672], + [66653.4841, 379917.1249], + [66625.451, 379878.778], + [66438.622, 379989.143], + [65914.078, 380045.359], + [65154.722, 380380.057], + [64096.996, 380706.904], + [64002.01, 380631.266], + [63567.623, 381122.307], + [63244.2363, 381227.1262], + [63228.2589, 381178.7993], + [63098.4917, 381320.4836], + [62801.6424, 381346.3194], + [62083.478, 382059.1], + [62123.51, 382296.436], + [61770.1593, 382753.9238], + [61914.8495, 382993.9365], + [62063.251, 383124.585], + [62033.7235, 383155.8806], + [61223.837, 383422.204], + [60826.4514, 383472.5045], + [60903.767, 383614.721], + [60903.0636, 383852.718], + [60896.635, 383912.22], + [60792.675, 383966.496], + [60681.8076, 383966.9363], + [60646.7983, 383849.953], + [60669.109, 383561.312], + [60615.134, 383572.16], + [60599.389, 383831.96], + [59714.3607, 384302.7682], + [59614.5628, 384311.2793], + [59466.1294, 384225.6945], + [59428.1135, 384268.1174], + [59553.5544, 384370.7709], + [59706.8849, 384760.8163], + [59415.1564, 385952.1738], + [59276.2414, 385940.5155], + [59242.4911, 385772.7125], + [59324.7, 385347.5964], + [59330.349, 384761.6445], + [59232.4503, 384342.9116], + [58996.2101, 384395.5565], + [59040.7298, 384554.8956], + [58974.5913, 384797.3213], + [58793.7758, 384793.0018], + [58795.9546, 384919.0501], + [58523.7544, 385104.5362], + [58092.0483, 385621.7502], + [57779.5729, 385869.7759], + [57672.4186, 385883.1986], + [57306.4408, 386560.9623], + [57112.9819, 386625.5776], + [57074.1852, 386735.6261], + [56893.3703, 386871.6047], + [55926.119, 386179.6108], + [55141.3565, 386171.9683], + [54000.2231, 385379.9251], + [53937.9299, 385392.4558], + [53693.1571, 385546.7523], + [53408.3046, 385728.6807], + [53396.3816, 385734.3965], + [53296.9471, 385714.8518], + [53199.6484, 385591.5624], + [53311.2139, 385434.5703], + [53377.637, 385060.2845], + [53088.1878, 384960.9278], + [53218.7874, 384432.703], + [53363.5271, 384218.9855], + [53382.6178, 383838.2506], + [52892.0739, 382995.7], + [52699.9506, 382094.0946], + [52643.601, 382066.2253], + [52700.8446, 382342.0268], + [52582.5381, 382296.0101], + [52534.7439, 381977.3525], + [52333.4708, 381736.8755], + [52359.1558, 381583.2726], + [52099.5718, 380990.6793], + [51543.9179, 379481.3553], + [51038.0479, 379351.5655], + [50410.46, 379555.9691], + [50201.2588, 379634.6006], + [49831.2844, 379776.8678], + [49516.6634, 379787.0406], + [49206.4871, 379683.6881], + [49022.4391, 379587.055], + [48826.9156, 379393.791], + [48770.93, 379230.8249], + [48580.429, 379122.7013], + [47865.949, 379026.9605], + [47082, 378843.0831], + [46073.286, 378701.9093], + [45819.472, 378619.801], + [45777.979, 378508.734], + [45766.244, 378512.506], + [45737.6604, 378609.135], + [45706.7103, 378598.3049], + [45724.684, 378493.9869], + [45706.204, 378491.471], + [45682.192, 378579.661], + [45421.6778, 378549.9959], + [45377.8165, 378561.9613], + [44420.5848, 379600.95], + [43869.925, 380015.592], + [43824.2148, 380180.4654], + [42829.7358, 380822.665], + [43017.3804, 381221.4723], + [42990.1732, 381311.1032], + [42900.661, 381361.867], + [42156.197, 381387.97], + [41456.8269, 381900.7499], + [41130.5643, 381811.902], + [40749.214, 381631.6564], + [40708.0774, 381544.6144], + [40046.2629, 381525.3333], + [39516.9096, 381853.8028], + [39401.4573, 381973.343], + [39100.1845, 383210.4485], + [39001.1673, 383287.343], + [38901.8013, 383330.2264], + [38827.0198, 383204.2192], + [38754.5092, 383296.6084], + [38572.9479, 383835.1738], + [38446.5019, 383861.3544], + [38346.009, 384060.317], + [38279.5881, 384187.5329], + [37151.972, 385255.6454], + [36690.7715, 385594.0165], + [36310.92, 385812.257], + [36215.9045, 385785.543], + [36024.9268, 385581.3818], + [35973.9314, 385592.3424], + [36182.6103, 385856.1645], + [36271.3751, 386076.0066], + [36801.9189, 386734.773], + [37096.4338, 386664.5455], + [38048.8362, 385929.2379], + [38186.7605, 385663.4796], + [37822.5154, 385151.757], + [37950.5513, 384978.064], + [38430.8733, 385504.7671], + [38966.2371, 385039.7863], + [39042.6308, 385054.1021], + [39256.5638, 385302.3833], + [38598.1959, 385978.7645], + [39641.7358, 386570.6188], + [39521.3524, 386783.6076], + [38736.4999, 386358.9949], + [38422.223, 386272.0406], + [38425.3847, 386286.2833], + [38451.201, 386400.2546], + [38407.6195, 386421.3219], + [38098.9828, 386249.6738], + [37240.7996, 386888.5288], + [37284.0614, 386992.2623], + [38390.7796, 387624.2936], + [38536.5565, 387605.2535], + [38679.8489, 387372.3525], + [38794.0621, 387395.7656], + [38933.3534, 387492.6986], + [38851.3203, 387703.4161], + [38985.89, 388055.985], + [39266.7104, 388448.725], + [39168.8345, 388644.4743], + [39084.9543, 388656.3181], + [38796.3976, 388173.1034], + [38730.0236, 388187.536], + [38512.3733, 388314.7648], + [38185.1509, 388891.3048], + [38104.041, 389036.7981], + [37840.357, 388890.334], + [37971.5126, 388658.5079], + [38163.5896, 388318.527], + [38216.4692, 388223.8248], + [38247.7644, 388166.8659], + [38003.7405, 387832.777], + [36790.3985, 387140.8351], + [36741.82, 387183.233], + [36648.8025, 387326.2367], + [36475.673, 387327.669], + [36268.331, 387133.972], + [36288.8138, 387079.6255], + [36231.6666, 387053.4103], + [36116.8065, 387291.6186], + [35868.8755, 387168.1705], + [36049.862, 386785.4028], + [35875.0621, 386740.6278], + [35755.2848, 386968.2836], + [35665.954, 386942.6101], + [35634.4415, 387003.2063], + [35277.409, 386830.9431], + [35155.0835, 386953.2979], + [35117.032, 386915.1794], + [34857.248, 386736.5361], + [34686.1991, 386324.0146], + [34716.2753, 386273.6824], + [34930.2638, 386256.756], + [35447.9365, 385965.3148], + [35413.1748, 385903.1744], + [34977.361, 386167.547], + [34693.652, 386203.371], + [34345.0073, 385927.343], + [34232.0748, 386016.2724], + [34030.5759, 385958.823], + [33661.7008, 385726.981], + [33638.453, 385449.8813], + [33539.6696, 385280.5946], + [32995.8073, 385074.0628], + [32789.7857, 385068.6691], + [32574.3695, 385162.829], + [32368.049, 385038.9846], + [32356.583, 385078.8999], + [32324.2321, 385077.3493], + [32320.9328, 385034.5693], + [32044.2994, 385104.2844], + [31727.3197, 385038.6494], + [31381.19, 384965.9553], + [30889.8079, 385302.6816], + [30816.3669, 386274.0805], + [30561.3766, 386259.23], + [30582.2353, 385629.6064], + [30561.8743, 385471.9937], + [30566.4273, 385384.8331], + [30668.7966, 385322.4909], + [30665.501, 385316.442], + [30558.01, 385374.789], + [30551.2691, 385363.8898], + [30591.93, 385335.2092], + [30620.0645, 385310.8041], + [30618.6022, 385307.0449], + [30583.6728, 385317.8038], + [30561.1273, 385252.5718], + [30545.0454, 385237.3224], + [30501.2406, 385237.0122], + [30546.4, 385189.621], + [30504.0686, 385136.7779], + [30780.8043, 384981.7865], + [30811.2793, 384923.845], + [30667.7874, 384964.5726], + [30578.6273, 385044.3193], + [30397.5699, 384979.7583], + [30244.3397, 385093.9196], + [30050.7943, 385136.9831], + [29564.0258, 385033.4531], + [29511.2289, 384948.6841], + [29475.7559, 384941.3479], + [29355.7036, 385062.892], + [29098.9759, 384980.2397], + [29069.0859, 385035.7698], + [29022.7593, 384991.4653], + [29068.7114, 384951.3371], + [29078.6015, 384800.3768], + [29057.6398, 384796.3584], + [29007.999, 384893.3569], + [28602.372, 385067.6461], + [28525.1927, 385370.2616], + [27944.4755, 385964.2923], + [27708.0761, 386104.7909], + [27641.6506, 386130.0221], + [27417.8283, 386029.2614], + [27387.214, 386082.2953], + [27422.9221, 386093.8246], + [27335.827, 386238.6815], + [27174.1215, 386372.038], + [27144.1831, 386336.8538], + [26771.9516, 386654.9433], + [26199.2956, 387107.4459], + [25712.5268, 387633.5253], + [25016.6661, 388733.2334], + [24671.7718, 389475.6646], + [24107.0627, 390491.5956], + [23662.6445, 391110.2515], + [22939.794, 391691.4801], + [22625.9748, 391849.5539], + [21237.2871, 392956.4755], + [20614.7935, 393543.7341], + [20128.6461, 394239.1271], + [19997.8765, 394336.8224], + [19854.584, 394360.6863], + [19683.8671, 394809.2466], + [19612.2447, 394757.0717], + [19549.0092, 394757.8654], + [19451.3896, 394870.0323], + [19420.9453, 395086.9004], + [19559.9965, 395922.5191], + [19659.937, 396398.312], + [19812.7819, 396638.5053], + [20784.4622, 397242.2199], + [21302.4235, 397503.3945], + [23350.8712, 398891.2753], + [23790.8544, 399185.0621], + [24360.2222, 399482.9683], + [25171.0282, 399925.2279], + [26411.6949, 400607.5772], + [27856.3893, 401676.7275], + [29449.2731, 402138.6276], + [29950.334, 402189.0186], + [31065.7999, 402120.0135], + [31715.6148, 401964.8728], + [32335.7651, 401666.6951], + [33202.1094, 401614.1553], + [33220.505, 401372.3621], + [33485.02, 401516.8621], + [35797.7343, 402110.7735], + [36778.4112, 402629.528], + [36789.6858, 402695.0523], + [36857.8528, 402728.2903], + [36888.6851, 402862.2101], + [37028.191, 404267.1433], + [36937.7919, 404428.5266], + [36534.0188, 404659.5629], + [36373.439, 404876.5319], + [36435.444, 404910.8059], + [36574.2425, 404733.3171], + [36892.927, 404539.1355], + [36974.9115, 404920.0395], + [36805.3668, 404950.8844], + [36745.0912, 404833.8051], + [36697.9463, 404846.5534], + [36688.8182, 405038.1457], + [36570.5105, 405126.724], + [36273.952, 405124.586], + [35969.566, 405015.9051], + [35927.0841, 405072.5523], + [36321.9614, 405215.7733], + [36961.7608, 405219.5129], + [37284.4543, 405835.5508], + [38076.5678, 406914.9045], + [38025.9113, 407003.4964], + [38022.5038, 407150.8808], + [38114.1649, 407330.3501], + [38332.3008, 407468.9299], + [38493.4376, 407486.7244], + [38461.4766, 407341.0185], + [38337.7215, 407377.856], + [38104.614, 407091.8805], + [38317.6916, 406781.2619], + [38428.9763, 406769.192], + [38719.7038, 407073.448], + [38584.2225, 407239.8228], + [38599.5746, 407313.457], + [38795.0798, 407408.7798], + [39171.0713, 407282.0153], + [39568.9175, 407980.2305], + [39552.7197, 408155.7889], + [39564.7163, 408223.7785], + [39363.3681, 408406.336], + [39291.8185, 408551.4504], + [39418.6571, 408700.176], + [39714.7683, 408708.7799], + [39817.9774, 408777.9045], + [39823.2166, 409583.7986], + [39626.518, 409783.8191], + [39235.1031, 409901.451], + [38988.8553, 409966.371], + [38249.5706, 410545.6904], + [37585.8623, 411292.4209], + [37087.5539, 412373.0871], + [36911.0088, 413569.5908], + [36954.6689, 414536.5238], + [37134.3885, 415105.7648], + [37644.0805, 415938.1108], + [39586.8441, 417694.7183], + [40148.8203, 418049.2606], + [40249.3621, 417891.5686], + [39141.8141, 417099.4046], + [39853.0377, 417265.3391], + [41018.2261, 417665.2512], + [40461.5584, 417671.964], + [40322.3873, 417819.6018], + [41377.815, 417788.6681], + [42634.3633, 418232.7878], + [42880.7405, 418344.6339], + [43401.8383, 418424.093], + [44657.2278, 418477.742], + [45298.7218, 418424.2909], + [46302.4059, 418044.4981], + [46751.3252, 418122.4179], + [47001.9153, 418445.1648], + [47039.7746, 418696.0543], + [46924.2515, 418807.6364], + [46982.0359, 419091.8095], + [47159.3313, 419196.6648], + [47280.8157, 419403.2164], + [47572.9144, 419695.2515], + [48127.9427, 419974.2928], + [48350.0529, 419755.2781] + ], + [ + [45788.434, 413243.7583], + [45285.9736, 413142.592], + [45161.7183, 413200.3585], + [44810.5724, 413083.107], + [44540.1088, 412840.6846], + [44306.5041, 412347.2593], + [44397.6665, 412240.453], + [44775.0703, 412419.1333], + [45551.0888, 412554.3393], + [45672.8079, 412454.4578], + [45649.8944, 412427.615], + [45531.1934, 412514.6236], + [44777.3506, 412378.5695], + [43999.4684, 412018.0766], + [43185.379, 411459.1683], + [42061.3568, 410885.7373], + [42116.2393, 410757.7425], + [42341.5442, 410871.1221], + [42260.2618, 410694.046], + [41734.3784, 410563.0201], + [41488.2559, 410688.7898], + [40756.9066, 410489.0884], + [39989.2914, 410171.411], + [40020.9793, 409905.6251], + [39912.2051, 409872.4429], + [39907.2405, 409613.6499], + [39846.033, 409595.3751], + [39858.4873, 408776.617], + [39944.9684, 408712.6164], + [40287.7771, 408671.6975], + [40273.005, 408605.3588], + [40209.6468, 408594.7803], + [40139.4241, 408142.0606], + [39779.5353, 408151.3129], + [39700.1481, 408029.7031], + [39611.7571, 408021.2761], + [39213.7371, 407262.9179], + [39376.09, 407100.889], + [39372.044, 407088.986], + [39252.56, 407150.59], + [39133.4793, 406905.4449], + [39224.2333, 406827.1828], + [39227.1691, 406845.7833], + [39253.7537, 406851.2001], + [39283.2543, 406806.1284], + [39417.923, 406882.5801], + [39457.747, 407015.966], + [39416.1743, 407061.2108], + [39482.3301, 407080.3858], + [39486.257, 407074.647], + [39484.603, 406977.082], + [39535.866, 406925.819], + [39333.8546, 406642.8681], + [39208.0269, 406667.2735], + [39153.7389, 406606.2674], + [39225.0052, 406536.6959], + [39164.0088, 406439.5458], + [39473.7195, 406205.6428], + [39614.4823, 406395.0471], + [39649.7249, 406362.8738], + [39489.8685, 406129.8427], + [39089.326, 406416.7296], + [38975.2391, 406364.2579], + [38856.2608, 406177.021], + [39214.1774, 405894.8503], + [39365.5851, 406051.9773], + [39413.8444, 406014.6701], + [39371.71, 405949.8881], + [39862.0195, 405598.3181], + [40058.9793, 405854.5632], + [39777.6691, 406088.4462], + [39822.4449, 406133.0644], + [40108.5601, 405919.0679], + [40324.184, 406199.595], + [39744.8896, 406651.0698], + [39802.2881, 406716.881], + [40361.4243, 406277.5638], + [40386.4719, 406125.8049], + [39715.9945, 405321.8475], + [38783.4944, 406041.7298], + [38475.091, 405777.0681], + [38662.8798, 405296.0739], + [38423.341, 405016.1253], + [38374.3083, 405076.6476], + [38537.0868, 405237.5938], + [38492.7539, 405398.9143], + [38013.5751, 405798.5519], + [37801.8666, 405448.0871], + [37485.5526, 405165.6463], + [37915.5323, 404747.7444], + [38088.9618, 404773.0671], + [38175.7068, 404856.6108], + [38229.2508, 404803.8721], + [38092.453, 404680.8039], + [37932.8486, 404662.0418], + [37497.3668, 404971.9346], + [37290.3854, 405024.5718], + [37210.8043, 404806.9218], + [37195.3003, 404463.5758], + [37739.4571, 404433.8773], + [37570.2398, 404383.3223], + [37227.0729, 404405.196], + [37060.923, 404264.6361], + [36892.49, 402724.1031], + [36944.5232, 402699.6622], + [37041.54, 402365.0729], + [37277.9383, 402440.1069], + [37305.7139, 402624.7623], + [37406.3318, 402605.6855], + [37385.6064, 402378.459], + [37615.3951, 402349.5838], + [38060.2898, 402524.3791], + [38123.299, 402381.7134], + [38683.1406, 402010.5305], + [38840.4164, 401987.6989], + [39437.7944, 402073.6135], + [39460.4514, 402041.0944], + [39016.705, 401936.3014], + [39112.024, 401662.7963], + [39249.811, 401604.8229], + [39515.2104, 401639.4294], + [39510.2375, 401774.6109], + [39916.7886, 401691.7928], + [40174.6461, 401725.4159], + [40649.5817, 401972.3541], + [40987.448, 401899.3093], + [41211.1225, 402175.5172], + [41470.7711, 402225.365], + [42209.8178, 402170.3793], + [42371.7528, 402377.3639], + [42349.9244, 402448.0791], + [43262.3795, 402158.0429], + [43402.7369, 402261.0724], + [43579.113, 402596.426], + [43697.1588, 402676.685], + [44212.1218, 402666.7983], + [44684.4963, 402743.9706], + [44809.632, 402908.5765], + [44914.1399, 402909.9856], + [45011.8628, 402980.1572], + [45000.0633, 403028.6228], + [45085.5404, 403033.0626], + [45591.6515, 403034.2874], + [45727.4799, 402975.2923], + [45928.8293, 403021.509], + [46443.4091, 402677.8871], + [47465.027, 403014.803], + [47485.1928, 402943.8104], + [47746.942, 402936.0853], + [47749.264, 403025.3751], + [47827.7401, 402863.951], + [47896.9107, 402770.305], + [48282.5552, 402757.3299], + [48431.1476, 402837.4265], + [48532.3276, 402812.3081], + [48531.7691, 402777.0166], + [48430.0905, 402791.7581], + [48295.3003, 402712.3808], + [48010.6001, 402719.9405], + [47922.7559, 402675.9428], + [47970.3296, 402587.668], + [48020.001, 402608.9649], + [48185.3535, 402603.6721], + [48254.7441, 402646.3338], + [48545.9784, 402626.98], + [48579.0868, 402770.8894], + [48615.1571, 402745.6507], + [48605.9953, 402590.1245], + [48913.8961, 402461.8865], + [49329.594, 402360.7031], + [49789.0643, 401854.9553], + [49918.8428, 402002.9392], + [53014.9308, 405518.5459], + [51830.3548, 405877.1635], + [51728.434, 405998.1186], + [52573.3008, 406724.9975], + [53419.4628, 407432.4243], + [53789.4506, 407440.1543], + [53899.5781, 407501.8851], + [54071.5371, 407540.6991], + [54190.1349, 407540.461], + [54399.8966, 407622.5496], + [54379.5989, 407638.1518], + [54347.2664, 407662.8505], + [54300.2236, 407618.8179], + [53961.5896, 407537.9706], + [53895.4574, 407555.4194], + [53880.5161, 407531.7606], + [53799.3345, 407491.8218], + [53374.4043, 407480.8741], + [53251.9041, 407389.6813], + [52831.912, 407037.237], + [52833.0341, 406980.6645], + [52813.1683, 406963.9158], + [52760.2164, 406977.0722], + [52543.5907, 406795.2867], + [51975.2599, 406331.6388], + [51906.7486, 406373.226], + [51597.9423, 406023.8208], + [51373.1314, 405948.0666], + [51353.5218, 405797.3305], + [51321.2511, 405815.3941], + [51419.365, 407104.121], + [51078.6082, 407707.9806], + [51196.517, 407851.843], + [51052.8677, 408580.798], + [50770.2303, 408701.9624], + [50426.532, 409346.5241], + [50516.0185, 409779.0035], + [49890.3553, 410483.1418], + [49200.1605, 411049.3828], + [48607.0305, 410837.1635], + [48452.4724, 410889.0375], + [48170.8, 411103.4094], + [46935.7139, 411685.8875], + [46653.5273, 411793.9585], + [46488.593, 411785.351], + [46068.4893, 412110.2171], + [46088.3019, 412131.3393], + [46498.7243, 411826.1163], + [46665.7811, 411829.4463], + [46865.155, 411763.033], + [47018.4235, 412143.0458], + [46962.095, 412509.224], + [46484.372, 413080.1681], + [46187.664, 413230.8901], + [45788.434, 413243.7583] + ], + [ + [65721.6312, 409432.799], + [65638.0553, 409347.6083], + [65584.0988, 409391.9121], + [65547.5336, 409351.0961], + [65826.2758, 409160.3618], + [65973.7238, 409044.9173], + [65960.9373, 409026.6012], + [65842.8509, 409110.0923], + [65818.1114, 409074.6328], + [65958.2438, 408975.5369], + [66059.6746, 408780.9188], + [66301.5924, 408479.5405], + [66057.9619, 408024.6136], + [66111.7633, 408198.3308], + [65968.6941, 408266.8139], + [65761.499, 407904.6378], + [65714.1931, 407800.4896], + [65845.1543, 407695.5934], + [66000.4108, 407925.0004], + [65676.762, 407314.6371], + [65253.7521, 406924.4047], + [64787.4619, 406775.2011], + [63879.3028, 405671.7141], + [63304.2728, 405318.9345], + [62910.9158, 405195.7064], + [62409.4049, 405558.5732], + [61636.7399, 405138.6778], + [61346.481, 404879.5811], + [60970.225, 404847.5561], + [60051.2783, 404420.3363], + [59643.538, 404129.8281], + [59408.144, 404086.1793], + [58358.618, 404180.981], + [57949.567, 403820.6033], + [56711.7575, 403787.7623], + [56307.2859, 404035.8464], + [56276.057, 404142.0155], + [55386.4851, 405029.4485], + [55250.9618, 404995.4], + [54816.6248, 406054.5816], + [54634.5138, 406088.0263], + [54689.8174, 406217.6943], + [54500.4193, 406244.7302], + [54100.91, 405540.6258], + [53988.8499, 405440.2581], + [53797.2781, 405395.6901], + [53860.4616, 405647.5998], + [53375.7813, 405671.6989], + [53265.679, 405443.9361], + [53027.5541, 405514.7243], + [49931.3456, 401997.8817], + [49800.966, 401840.469], + [50095.0665, 401470.8904], + [50270.0346, 401123], + [50608.8383, 400193.7215], + [51087.8963, 399524.452], + [51144.8659, 399454.4591], + [51247.2795, 399481.0483], + [51312.3175, 399658.43], + [51335.2149, 399658.2731], + [51389.2069, 399469.1495], + [51512.5448, 399465.6913], + [51505.6119, 399439.2724], + [51362.2951, 399433.2411], + [51127.2445, 399363.7531], + [51162.8361, 399209.7414], + [51407.3683, 399255.0378], + [51468.3895, 399315.1488], + [51484.2458, 399149.5059], + [51453.1754, 399138.8976], + [51423.4326, 399227.246], + [51375.0504, 399205.516], + [51429.7574, 398775.4999], + [51648.2344, 398316.2649], + [51719.8386, 398236.1653], + [51804.481, 398311.7416], + [51856.2951, 398196.3702], + [51668.5711, 398135.1405], + [51659.8286, 397837.7173], + [51314.8264, 397623.6243], + [49968.5043, 397346.351], + [49884.8879, 397151.7205], + [49876.9182, 396994.5476], + [49392.816, 396418.968], + [49447.4094, 396199.6917], + [49621.3823, 396206.295], + [49830.4461, 396169.8213], + [49829.3603, 396147.2259], + [49620.0353, 396182.1058], + [49485.4329, 396164.701], + [49426.174, 396122.9194], + [49474.9901, 396088.9128], + [49652.8453, 396086.4883], + [49651.5853, 396073.4709], + [49494.7109, 396032.1046], + [49534.7555, 395848.8628], + [49596.8816, 395662.3645], + [49760.2187, 395706.5996], + [49738.1243, 395816.9493], + [49775.0133, 395827.7429], + [49798.4578, 395716.9555], + [50620.1199, 395939.4786], + [50910.2821, 395943.2185], + [51232.5081, 395770.4201], + [51712.4043, 395739.242], + [51911.4663, 396005.4059], + [52324.6863, 396012.0369], + [52708.7198, 396228.454], + [53113.1996, 396030.6239], + [53597.6624, 396071.4003], + [53706.7786, 396040.8791], + [53977.101, 395381.7354], + [53656.781, 395335.897], + [53656.9423, 395268.0033], + [53779.4471, 395263.2946], + [54132.5253, 394620.6835], + [54603.8501, 393939.9723], + [54834.8548, 394018.8916], + [55229.7444, 394301.6135], + [55766.68, 394501.7773], + [56761.942, 394229.7213], + [58020.4963, 393729.0688], + [58278.1223, 393554.6364], + [58295.4331, 393490.3979], + [58425.2198, 393454.424], + [58523.0415, 393489.5871], + [58694.844, 393349.8483], + [58945.073, 393435.5485], + [58955.717, 393244.5528], + [58900.6309, 393144.5549], + [58893.053, 392783.2851], + [58961.9361, 392643.7663], + [59019.3358, 392644.6493], + [59020.2189, 392838.4744], + [58907.2791, 392849.617], + [58907.8067, 393055.9508], + [59066.5075, 393075.8083], + [59082.675, 392790.0543], + [59121.7149, 392751.1214], + [59121.553, 392579.9705], + [59108.3039, 392579.5693], + [59109.3178, 392537.0808], + [59149.4275, 392536.3356], + [59151.8509, 392579.505], + [59137.3071, 392582.3531], + [59139.0544, 392752.4716], + [59180.011, 392799.8183], + [59178.8665, 393130.3254], + [59032.726, 393409.8925], + [59109.7687, 393407.9592], + [59165.0208, 393276.6221], + [59253.976, 393266.7355], + [59618.8751, 393037.8348], + [59668.0356, 393201.9754], + [59945.46, 393095.0376], + [60182.146, 392381.021], + [60423.073, 392292.217], + [60442.109, 392219.193], + [61351.485, 391587.4669], + [61649.633, 391263.5886], + [61969.284, 391206.95], + [62269.265, 391329.2323], + [62414.021, 391265.685], + [62625.56, 390981.888], + [62691.075, 390818.727], + [62664.4353, 390782.0891], + [62522.943, 390902.21], + [62530.2883, 391045.0268], + [62402.748, 391216.516], + [62345.96, 391174.704], + [62425.7375, 390794.266], + [62517.9944, 390783.5438], + [62574.8433, 390748.1718], + [62693.5946, 390635.5156], + [62654.144, 390594.4688], + [62628.4685, 390619.2263], + [62649.276, 390646.084], + [62561.2433, 390730.096], + [62499.9755, 390758.2549], + [62438.7538, 390760.956], + [62441.252, 390714.53], + [62418.0753, 390711.3708], + [62425.9965, 390612.3168], + [62512.3755, 390527.7053], + [62596.1899, 390595.5998], + [62607.3389, 390585.7911], + [62492.5685, 390484.422], + [62397.3138, 390607.1729], + [62386.591, 390599.804], + [62376.059, 390610.752], + [62288.7923, 390520.2758], + [62312.4333, 390495.6565], + [62344.9154, 390524.8718], + [62403.2496, 390449.1493], + [62455.7517, 390489.8297], + [62459.575, 390475.026], + [62404.1222, 390432.2781], + [62350.792, 390504.822], + [62339.6593, 390494.4793], + [62402.3973, 390399.144], + [62466.087, 390173.646], + [62462.9776, 390116.7129], + [62453.6609, 389999.0091], + [62426.6705, 389932.6159], + [62434.0683, 389920.1595], + [62508.1701, 389922.3929], + [62631.2726, 389773.2634], + [62699.8654, 389654.1595], + [62712.051, 389480.707], + [62679.934, 389264.4341], + [62665.7094, 389202.157], + [62640.55, 389139.589], + [62653.647, 389132.445], + [62636.312, 389105.24], + [62624.6553, 389111.989], + [62570.265, 389035.666], + [62528.3163, 389021.876], + [62560.1578, 388981.5637], + [62549.198, 388961.808], + [62452.7705, 388900.5458], + [62595.309, 388684.153], + [62723.083, 388199.644], + [62822.2806, 388126.9443], + [62962.76, 388016.996], + [63564.228, 387122.4689], + [63895.8346, 386618.0529], + [64171.2346, 386316.8616], + [64441.224, 386280.259], + [65049.256, 384934.717], + [65607.4365, 384782.8958], + [67163.7144, 383743.1278], + [67403.298, 383809.444], + [67546.5706, 383675.734], + [67792.556, 383226.659], + [68200.992, 383175.292], + [68304.361, 383267.567], + [68562.0563, 383269.2097], + [68740.828, 383243.091], + [69207.357, 383379.813], + [69578.465, 383680.8298], + [69948.5983, 383827.9957], + [71176.449, 384570.401], + [71946.074, 384314.09], + [72488.732, 384293.446], + [72769.908, 383931.438], + [73260.8904, 383861.3483], + [73482.201, 383742.4275], + [73958.542, 383771.572], + [74058.9865, 383931.5863], + [73847.3025, 385940.736], + [74061.859, 386708.737], + [73768.2167, 389389.142], + [73693.868, 389677.246], + [73507.982, 389875.112], + [70952.153, 391015.121], + [70688.578, 391329.793], + [70654.2414, 391747.8094], + [70208.1483, 391983.1063], + [69985.315, 392169.8663], + [69860.134, 392454.0523], + [69889.479, 392478.344], + [70019.2909, 392197.3889], + [70469.8139, 391952.8379], + [70714.6448, 391925.5868], + [70744.008, 391987.6023], + [70555.302, 392088.194], + [70528.8003, 392166.1365], + [70219.252, 392271.7599], + [70376.976, 392339.6276], + [70786.071, 392151.1519], + [70937.146, 392486.997], + [70417.1889, 392937.1989], + [70105.997, 393360.2727], + [69335.864, 393410.3645], + [69155.453, 393514.167], + [68918.247, 393290.968], + [68719.0024, 393223.5115], + [68534.437, 393231.202], + [68086.7161, 393762.715], + [67486.8608, 393529.0838], + [66919.948, 393519.794], + [66247.688, 393627.887], + [65842.6899, 393612.7043], + [65743.4923, 393749.4208], + [65589.763, 393689.5733], + [65211.978, 393676.412], + [65142.261, 393696.085], + [65116.868, 393873.708], + [64269.67, 393967.126], + [64252.1788, 393749.9998], + [64076.384, 393713.7254], + [63690.539, 394231.2648], + [63817.437, 394419.202], + [63612.5953, 394501.7871], + [63471.1545, 394653.022], + [63330.9949, 394637.4843], + [63218.912, 394761.676], + [62915.597, 395514.842], + [63016.0889, 395753.7425], + [62988.2175, 395845.772], + [62667.47, 396126.068], + [62408.655, 396211.277], + [62195.9911, 396811.3578], + [61100.123, 397022.8842], + [61009.2188, 397146.2384], + [60710.0823, 397265.5076], + [60922.395, 397803.185], + [60902.872, 397976.328], + [60671.8244, 398245.8147], + [60428.273, 398489.29], + [59731.9471, 398836.341], + [59219.4073, 399437.7768], + [58138.3223, 399533.6265], + [57735.0603, 400043.0838], + [57807.6938, 400729.884], + [58031.0404, 401165.9495], + [58185.3644, 401342.8849], + [58515.994, 401500.845], + [58553.7925, 401472.9068], + [58456.099, 401399.0061], + [59196.557, 401440.303], + [59198.656, 401459.987], + [59014.1266, 401544.6145], + [59487.8918, 401708.4558], + [59714.679, 401580.759], + [60326.987, 401894.5011], + [60534.3755, 401770.9083], + [61496.4129, 402431.2101], + [61582.2573, 402585.0761], + [61648.659, 402535.7054], + [61895.3553, 402553.6416], + [61948.9794, 402593.3855], + [62075.9305, 402526.0968], + [62624.2444, 403079.7224], + [63206.5683, 403155.9511], + [63332.8008, 403359.6253], + [63691.0081, 403405.7923], + [64085.2678, 403551.553], + [64698.7233, 403350.7264], + [64813.2383, 403433.435], + [65944.0805, 403155.6461], + [66104.5693, 403042.9854], + [66136.645, 402753.5404], + [66212.5201, 402750.2326], + [66464.7518, 402512.6155], + [66447.6695, 402494.4778], + [66165.4082, 402714.9204], + [66138.3406, 402679.8542], + [66321.02, 402367.7381], + [66398.0303, 402299.5061], + [66519.9302, 402481.5604], + [66609.7762, 402382.3723], + [66974.44, 402247.45], + [67755.491, 402199.825], + [68610.1237, 402323.3873], + [68938.0786, 402402.4216], + [69246.9074, 402378.7993], + [69372.852, 402300.9911], + [69720.4334, 402364.0301], + [70105.8681, 402533.371], + [70750.3413, 402599.2579], + [70921.7423, 402542.8159], + [70995.854, 402780.4713], + [70967.523, 402863.5151], + [70602.8739, 402937.7753], + [70949.7182, 403198.9563], + [71029.9023, 403529.2119], + [71134.9016, 403494.9665], + [71218.932, 403758.3751], + [70995.222, 403878.3343], + [70667.9198, 403790.4498], + [70761.5999, 404017.75], + [70598.1255, 403638.6526], + [70303.6518, 403457.2391], + [70119.7511, 403637.7533], + [70037.4819, 403602.1587], + [69881.2388, 403395.8734], + [69590.338, 403349.9016], + [68769.6463, 403469.8314], + [68331.0176, 403417.5669], + [67665.588, 403448.79], + [67088.0528, 404740.794], + [66845.8251, 404708.2574], + [66479.6979, 405312.915], + [66204.9729, 405369.3448], + [66135.3633, 405316.0674], + [65915.135, 405467.5429], + [65843.754, 405673.3274], + [65793.372, 406340.4601], + [65922.671, 406598.6888], + [65749.3489, 406756.432], + [65898.4306, 406709.6241], + [65945.2536, 406784.9168], + [65804.4428, 406848.7063], + [65875.8335, 406848.3538], + [66267.8978, 406617.4225], + [66179.2329, 406870.2526], + [66411.156, 407166.788], + [67080.8765, 407814.6548], + [67327.8345, 407959.1099], + [67598.5388, 407952.7343], + [68495.6001, 407812.3334], + [69291.3854, 407534.0061], + [70651.265, 406794.6958], + [72320.0461, 405770.9101], + [72346.5402, 406223.8216], + [72177.6844, 406756.0325], + [71786.2724, 407169.001], + [71261.6416, 407450.7781], + [71093.2218, 407203.4344], + [70941.136, 407179.813], + [69834.695, 407940.7841], + [69797.8295, 408009.4999], + [70046.0565, 408391.86], + [69930.7444, 408527.2999], + [69864.9024, 408523.4603], + [69536.1339, 408098.7306], + [68548.6396, 408361.4783], + [68607.3893, 408557.0488], + [69168.3306, 408576.4183], + [69901.3269, 408690.2671], + [69894.2951, 408878.8591], + [69814.8364, 408884.4859], + [69752.16, 409044.6628], + [69569.26, 409071.5503], + [68923.8713, 409049.8655], + [68552.484, 408849.3798], + [68542.2744, 408871.6091], + [68925.642, 409074.5059], + [70102.911, 409139.0179], + [70101.2925, 409198.5235], + [70048.91, 409199.9568], + [70043.3543, 409243.1269], + [69804.9473, 409245.8098], + [70121.704, 409430.1221], + [70078.9593, 409683.2724], + [69840.3874, 410157.4234], + [69690.4393, 410383.7904], + [69563.4534, 410434.8609], + [69428.3893, 410680.2671], + [68943.9805, 410341.2204], + [68659.6538, 410513.2728], + [66580.0271, 410216.7539], + [66313.8893, 410117.992], + [66287.303, 410025.7141], + [66114.8103, 409914.0418], + [66004.6829, 409937.1278], + [65630.9716, 409532.692], + [65721.6312, 409432.799] + ], + [ + [38414.808, 393321.461], + [38731.6529, 393432.4333], + [38945.7436, 393612.492], + [39339.732, 393915.584], + [39536.7247, 394004.7566], + [39727.2251, 394065.0817], + [39928.382, 394022.0671], + [39868.101, 394104.179], + [39870.2286, 394140.9065], + [39903.1541, 394243.5314], + [39854.7104, 394256.6425], + [39804.9029, 394119.2103], + [39722.3677, 394175.172], + [39658.8885, 394285.4154], + [39773.1533, 394754.745], + [40118.0333, 395301.1694], + [40197.1753, 395686.8293], + [40343.0471, 395878.328], + [41177.9818, 396361.6421], + [41409.6365, 396299.4839], + [41468.3783, 396509.593], + [41696.6583, 396669.6014], + [42391.441, 396428.5114], + [42655.0191, 396475.5545], + [42833.7108, 396232.0788], + [42831.5628, 396093.413], + [43578.3981, 396091.3318], + [44373.2449, 395889.9753], + [44798.2001, 396004.0623], + [44980.157, 396001.1694], + [45094.2878, 396081.2178], + [45159.96, 396200.122], + [45266.1963, 396326.2035], + [45808.6545, 396542.8506], + [45903.2216, 396513.6793], + [45871.2163, 396614.8355], + [45895.943, 396634.1261], + [45941.3323, 396562.11], + [45951.428, 396491.8571], + [45992.3004, 396492.8888], + [45961.167, 396611.3479], + [45999.588, 396618.209], + [46077.9876, 396456.8685], + [46108.7513, 396475.4928], + [46047.6138, 396637.0479], + [46060.146, 396718.68], + [46078.275, 396713.69], + [46089.775, 396637.471], + [46148.5976, 396637.8944], + [46153.262, 396589.0988], + [46310.301, 396601.7581], + [46316.4013, 396422.7923], + [46349.818, 396416.5231], + [46346.9763, 396539.2374], + [46359.1268, 396539.2381], + [46358.4131, 396489.8938], + [46376.1663, 396487.3245], + [46386.638, 396640.8741], + [46340.1351, 396640.4055], + [46346.3996, 396758.2606], + [46471.7261, 396657.8215], + [46968.3226, 396651.766], + [47388.9313, 396527.4815], + [48048.6521, 396103.0059], + [48083.6816, 395834.5191], + [48305.3008, 395639.4194], + [49068.5978, 395503.4299], + [49461.138, 395608.1571], + [49413.2721, 395825.7035], + [49379.1283, 395996.0979], + [49178.2729, 396005.3952], + [49174.5698, 396036.2292], + [49215.6036, 396049.0851], + [49206.013, 396124.2176], + [49001.0133, 396098.3385], + [48986.3216, 396158.5611], + [48631.0188, 396169.3233], + [48160.32, 396709.473], + [48007.2619, 396774.9714], + [48008.5454, 396971.8613], + [47483.5226, 397473.6039], + [47212.569, 397522.1791], + [46703.9819, 397448.0349], + [46686.1769, 397467.0034], + [46677.3149, 397467.2435], + [46649.024, 397398.3087], + [46146.033, 397281.111], + [46115.3131, 397297.637], + [46021.561, 397258.407], + [45980.1082, 397247.3463], + [45965.2406, 397237.5313], + [45972.8412, 397220.6578], + [45918.383, 397198.339], + [45850.4931, 397139.8398], + [45860.9571, 397056.6388], + [45828.7589, 397011.6199], + [45674.797, 397348.8853], + [45563.389, 397307.2024], + [45718.3984, 396938.4284], + [45622.7713, 396922.8811], + [45446.3753, 397182.5074], + [45441.704, 397230.049], + [45425.207, 397242.596], + [45414.882, 397324.109], + [45436.52, 397351.681], + [45430.625, 397367.7959], + [45323.4924, 397372.4115], + [45311.6927, 397380.7384], + [45300.6253, 397412.7764], + [45283.5864, 397413.3618], + [45281.0831, 397398.2629], + [45274.0675, 397398.2621], + [45273.7185, 397380.5306], + [45286.408, 397377.92], + [45290.149, 397362.959], + [45280.827, 397355.766], + [45618.3243, 396833.2452], + [45531.9169, 396840.5502], + [45458.3986, 396777.6351], + [45323.5098, 396641.6628], + [45157.9131, 396617.1713], + [44685.4789, 396795.2024], + [44044.6664, 396948.8478], + [44018.7474, 396893.5129], + [43200.8974, 397398.4251], + [42284.7183, 397486.3766], + [42284.3211, 397426.5539], + [42181.2856, 397496.3059], + [40500.5588, 396613.136], + [40041.3189, 396104.7896], + [38970.2379, 395388.8115], + [38766.1593, 395163.6661], + [38328.9058, 394422.6866], + [38232.8779, 394351.989], + [38127.4616, 394366.4505], + [37953.2701, 394548.8679], + [37829.7958, 395304.4873], + [38079.153, 396109.4574], + [37900.4048, 396728.3311], + [37198.0153, 397722.0863], + [37434.1191, 397899.0044], + [37736.1688, 398378.3276], + [38070.3671, 398844.6955], + [38039.1462, 398871.1539], + [37877.2209, 398719.4812], + [37690.2291, 398383.3552], + [37450.0445, 397996.5135], + [37398.258, 398028.2301], + [37227.9675, 397913.9792], + [37267.128, 397832.3371], + [37054.266, 397816.619], + [36473.1484, 398240.7656], + [36070.7913, 398702.0746], + [35515.0638, 398997.8196], + [34915.4424, 399246.9848], + [34796.0739, 399329.3289], + [34663.8668, 399544.3791], + [34579.5344, 399861.8012], + [34590.1469, 400040.595], + [34304.5479, 400611.6936], + [34189.1208, 401007.3973], + [34219.6275, 401186.2089], + [34369.4789, 401259.8479], + [34323.0884, 401453.4616], + [33984.9763, 401397.839], + [33567.7014, 401236.0828], + [33214.7599, 401072.0253], + [33072.5806, 400932.8071], + [33087.775, 400460.9618], + [33065.0657, 400208.6496], + [33059.13, 399878.5661], + [33205.8583, 399539.1064], + [33829.19, 398859.4795], + [33790.3478, 398736.4984], + [33917.0013, 398580.253], + [34107.2908, 398391.6206], + [34560.356, 398105.5673], + [34748.0426, 398070.1701], + [34755.733, 398041.51], + [34539.6413, 398092.2628], + [34307.988, 398180.313], + [34179.802, 398273.321], + [34122.0681, 398202.963], + [34424.0265, 397973.7643], + [34555.299, 397952.8611], + [34572.7149, 398003.7435], + [34761.4126, 397958.045], + [34755.176, 397916.4291], + [34787.4648, 397914.7409], + [34777.7331, 397956.2628], + [34792.3144, 397959.3913], + [34804.5071, 397923.4784], + [34801.8126, 397901.3903], + [34992.7381, 397826.9119], + [35192.5948, 397512.7379], + [35494.308, 397222.061], + [35585.8323, 397180.6764], + [35817.3282, 397119.203], + [35454.2609, 396922.9268], + [35502.8386, 396899.1258], + [35883.6012, 397107.675], + [36008.9448, 396864.5721], + [35737.5889, 396524.0061], + [35657.1698, 396242.9417], + [35753.8933, 396213.806], + [35794.7273, 396415.3973], + [35843.9053, 396515.1494], + [36066.8805, 396764.9147], + [36385.7038, 396010.5574], + [36569.2026, 395333.4561], + [36735.2776, 394786.143], + [37041.3885, 394162.3513], + [37739.7673, 393207.3315], + [38414.808, 393321.461] + ] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD24", + "od_naam": "RUD Zeeland", + "naam_alt": "RUD Zeeland" + } + }, + { + "type": "Feature", + "id": "omgevingsdiensten_2024_alo.fid--1acf8eae_190c5dfd568_-6013", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [185595.689, 341998.739], + [185819.884, 340791.5441], + [185859.152, 339867.2358], + [186420.78, 340023.217], + [186624.108, 339766.965], + [186841.121, 339672.517], + [186915.983, 339743.297], + [187050.9703, 339670.261], + [187355.634, 339734.587], + [187653.1515, 338828.6881], + [187400.105, 338650.695], + [187540.5782, 338191.6811], + [187650.52, 337849.079], + [187940.2184, 337764.0497], + [188297.185, 337806.108], + [188292.701, 337876.982], + [188541.55, 337838.169], + [189091.194, 338051.072], + [189067.711, 338106.696], + [189171.232, 338131.625], + [189206.04, 338090.946], + [189359.258, 338163.264], + [189193.459, 337843.74], + [189341.432, 337251.369], + [189500.731, 336896.15], + [189486.097, 336625.149], + [189711.6806, 336311.1575], + [189882.741, 336090.794], + [189965.508, 336139.69], + [190169.159, 336102.847], + [190690.056, 335833.51], + [190676.9038, 335132.0012], + [191036.3462, 334979.3843], + [191383.25, 334854.11], + [191263.9917, 333181.8216], + [190711.859, 332535.574], + [190577.166, 332503.807], + [190504.7882, 332404.6215], + [190791.029, 331992.316], + [190812.569, 331812.11], + [191356.63, 331782.59], + [192109.88, 332150.58], + [192395.102, 332193.659], + [192958.2963, 332657.0004], + [193388.57, 332997.57], + [194527.91, 333212.48], + [194881.5, 333349.81], + [195039.44, 332971.47], + [195671.37, 332393.93], + [195792.53, 332351.54], + [196021.7902, 332421.9962], + [196723.869, 332785.96], + [196926.059, 332664.929], + [199252.14, 332827.65], + [199345.63, 332874.83], + [199894.679, 332818.799], + [199916.989, 332600.64], + [199530.92, 331450.63], + [199120.809, 330486.01], + [198967.66, 330265.9], + [198693.14, 330161.979], + [198482.288, 329943.317], + [198422.9206, 329858.3896], + [199245.75, 329405.49], + [199125.62, 328874.91], + [199183.0772, 328512.8597], + [199357.75, 327410.4], + [200784.1309, 326998.9105], + [201187.129, 326842.05], + [201289.12, 326690.77], + [201659.1, 326897.19], + [202033.78, 326594.33], + [202004.0877, 326482.3287], + [201888.46, 326047.27], + [202437.629, 325939.84], + [202517.56, 326029.42], + [202885.87, 325879.08], + [203135.78, 326157.36], + [203381.0085, 326117.4189], + [203865.379, 325987.106], + [204382.5, 325656.5], + [204432.4, 325773.39], + [204681.27, 325960.38], + [204711.58, 325901.88], + [204574.2, 325545.61], + [204349.93, 325366.88], + [204197.96, 325140.83], + [204150.36, 324930.36], + [203836.074, 324636.73], + [203719.27, 324231.11], + [203729.03, 323913.73], + [203599.8091, 323620.9679], + [203501.286, 322989.675], + [203406.89, 322802.12], + [203437.8272, 322755.6207], + [203482.925, 322638.189], + [203426.096, 322531.557], + [203495.715, 322358.296], + [203582.187, 322199.613], + [203610.662, 322257.157], + [203705.908, 322111.34], + [203637.697, 321904.938], + [203730.394, 321773.405], + [203731.648, 321612.267], + [203778.837, 321664.886], + [203850.561, 321605.958], + [203940.56, 321641.479], + [203919.603, 321547.717], + [204205.419, 321354.898], + [204268.476, 321199.437], + [204120.484, 320963.776], + [204337.85, 320527.34], + [204209.7774, 320430.9604], + [204238.12, 320212.55], + [204108.8241, 319898.0656], + [204014.64, 319679.86], + [203848.134, 319645.685], + [203851.17, 319425.38], + [203601.751, 319244.524], + [203571.0902, 319100.5018], + [203509.8685, 318650.3758], + [203384.25, 317637.97], + [202617.688, 318040.334], + [202149.096, 318128.833], + [202167.0179, 318322.8893], + [202174.042, 318621.087], + [202099.3019, 318814.0325], + [202095.2466, 318814.2805], + [201948.679, 318780.938], + [201832.18, 318629.9], + [201694.672, 318570.239], + [201679.914, 318477.444], + [201329.705, 318270.288], + [201286.86, 318304.75], + [201123.734, 318139.997], + [200570.873, 318061.489], + [200120.051, 317729.891], + [199993.199, 317685.102], + [199965.595, 317738.75], + [199709.303, 317587.705], + [199495.01, 317571.53], + [199427.863, 317298.356], + [199290.624, 316739.87], + [199468.673, 316578.178], + [199321.607, 316193.597], + [199498.44, 315729.12], + [199957.99, 315520.67], + [199781.541, 315387.855], + [199868.111, 315221.959], + [199924.07, 314831.65], + [200043.96, 314668.79], + [199992.89, 314563.98], + [199858.42, 314475.94], + [199745.68, 314297.72], + [199914.84, 314200.58], + [199848.37, 314058.28], + [199935.76, 313974.33], + [199357.681, 313512.265], + [198904.591, 312864.029], + [198462.696, 312580.26], + [197588.98, 313304.28], + [197135.9921, 313568.1392], + [197032.938, 313487.177], + [196882.5, 313359.71], + [196799.53, 313194.81], + [196802.61, 313047.52], + [196697.92, 312921.58], + [196640.96, 312964.6], + [196556.7, 312775.77], + [196491.41, 312662.07], + [196437.085, 312178.929], + [196600.286, 312032.77], + [196737.375, 311992.225], + [196789.845, 311868.9], + [197045.8923, 311833.3056], + [197151.501, 311830.139], + [197206.459, 311721.16], + [197382.16, 311745.57], + [197921.754, 311307.296], + [197919.98, 311016.77], + [198036.828, 310918.41], + [198110.734, 310965.366], + [198268.9234, 310770.5756], + [198370.77, 310655.165], + [198609.375, 310566.229], + [198683.025, 310406.404], + [198930.055, 310243.23], + [199451.896, 310039.803], + [199466.358, 309980.757], + [199650.589, 309879.092], + [199659.883, 309810.941], + [200066.264, 309708.807], + [200193.721, 309520.234], + [199533.358, 308348.91], + [199727.513, 307342.381], + [199470.11, 307420.22], + [199231.0922, 307422.7522], + [198550.997, 307276.016], + [198427.042, 307311.202], + [198196.51, 307188.189], + [198099.7399, 307257.5682], + [198002.035, 307273.317], + [197779.954, 307155.141], + [197154.88, 307220.828], + [197061.37, 307155.903], + [196787.673, 307355.336], + [196587.513, 307322.645], + [196421.001, 307418.52], + [196487.166, 307715.175], + [196308.4351, 307917.5117], + [196067.519, 308013.64], + [195485.2017, 308113.2979], + [195463.165, 308217.346], + [195346.428, 308204.377], + [194965.578, 307953.835], + [194832.838, 307998.08], + [194465.567, 307914.055], + [194296.712, 307757.955], + [193936.28, 307700.917], + [193710.442, 307592.49], + [193529.197, 307543.789], + [193382.171, 307585.896], + [192705.377, 306959.591], + [192337.026, 306856.01], + [192256.661, 306846.198], + [192274.46, 307330.581], + [192175.834, 307285.82], + [192155.141, 307444.041], + [191947.136, 307385.872], + [191825.126, 307271.577], + [191767.617, 307435.229], + [191687.388, 307370.296], + [191600.8, 307412.772], + [191530.78, 307381.302], + [191401.795, 307212.168], + [191438.755, 307183.814], + [191306.532, 306954.364], + [191263.626, 306964.497], + [190463.51, 307496.68], + [190423.77, 307632.17], + [190494.27, 307920.04], + [190452.81, 308374.78], + [190236.3595, 308995.8418], + [190205.4017, 309021.2275], + [189503.218, 308523.562], + [189108.0858, 308442.9798], + [188603.484, 308283.156], + [188357.437, 308094.812], + [187820.703, 307578.125], + [187585.093, 307152.875], + [187385.3767, 308070.9843], + [187302.781, 308482.031], + [187177.0404, 308426.8923], + [186787.156, 308230.187], + [186294.218, 307715.781], + [185731.875, 307744.093], + [185148.328, 307444.625], + [184751.406, 307416.187], + [184648.156, 307443.125], + [183644.5247, 308996.7289], + [183297.359, 308752.531], + [183030.687, 308657.156], + [182688.644, 309449.659], + [182488.2339, 310379.2426], + [182517.906, 310410.656], + [182250.296, 310441.468], + [181703.109, 310360.812], + [181265.046, 309848], + [181212.953, 309874.875], + [180999.609, 309519.843], + [180913.56, 309538.36], + [180622.9855, 309203.6047], + [180389.25, 309012.375], + [180179.0588, 308708.0254], + [179932.296, 308184.875], + [179994.984, 308098.281], + [179926.438, 308004.863], + [180005.062, 307973.312], + [179838.421, 307517.687], + [179217.859, 307552.812], + [179205.703, 307648.125], + [178935.718, 307773.875], + [178766.187, 307938.968], + [178808.765, 307998.557], + [178645.656, 308147.093], + [178678.265, 308186.343], + [178624.578, 308226.281], + [178682.149, 308257.932], + [178633.4033, 308295.354], + [178499.953, 308361.531], + [178175.437, 307821.937], + [178029.125, 307851.75], + [178036.421, 307910.937], + [177939.203, 307941.312], + [177929.875, 307887.781], + [177821.796, 307921.468], + [177794.578, 307812.843], + [177700.14, 307826.156], + [177685.187, 307723.343], + [177595.375, 307723.125], + [177570.328, 307642.281], + [177282.911, 307698.9763], + [177032.735, 307319.779], + [176728.546, 307246.812], + [176261, 307350.406], + [176214.093, 307569.187], + [175807.62, 307551.34], + [175860.31, 307965.76], + [176626.48, 309045.85], + [176879.33, 309533.14], + [176974.5, 310013.04], + [176970.17, 310405.6601], + [176630.28, 311904.7], + [176612.477, 313441.327], + [176613.8513, 313514.0202], + [176614.72, 313559.96], + [176461.04, 313626.76], + [176256.437, 313570.779], + [176060.241, 313636.439], + [175944.55, 313769.04], + [175680.3, 313613.51], + [175595.81, 313911.28], + [175527.68, 313950.44], + [175514.87, 314106.43], + [175154.957, 314052.404], + [175124.72, 314158.4], + [174907.65, 314190.59], + [174892.036, 314257.728], + [174794.986, 314244.787], + [174765.332, 314111.963], + [174677.088, 314143.339], + [174697.615, 314191.181], + [174527.138, 314182.55], + [174450.056, 314280.042], + [174155.72, 314325.18], + [173814.74, 314489.994], + [173883.74, 314600.58], + [173825.435, 314634.011], + [173973.83, 314844.73], + [173906.657, 314915.535], + [173953.76, 314970.58], + [173649.5148, 315324.8437], + [173466.558, 315199.222], + [173437.287, 315242.913], + [173611.282, 315808.318], + [173512.2853, 316035.046], + [173397.522, 315961.87], + [173331.965, 316263.589], + [173071.415, 316485.593], + [173184.542, 316648.303], + [172938.023, 316802.976], + [173003.914, 316878.194], + [172892.461, 317036.281], + [172965.5577, 317062.476], + [172750.301, 317418.731], + [172724.939, 317567.79], + [172858.742, 317570.753], + [172824.319, 317767.39], + [172994.621, 317836.401], + [172928.663, 318093.653], + [172825.429, 318241.259], + [173048.71, 318582.33], + [172919.688, 318667.658], + [173067.3955, 318815.4468], + [172927.218, 318856.041], + [173054.511, 318993.881], + [172959.959, 319096.41], + [173080.942, 319265.151], + [172915.663, 319402.65], + [173463.6708, 319869.8299], + [173088.484, 320202.957], + [173350.014, 320466.216], + [173397.915, 320425.189], + [173591.286, 320621.031], + [173735.605, 320500.247], + [173951.001, 320786.65], + [174054.072, 320797.428], + [174102.767, 320744.5], + [174266.9956, 320876.9031], + [174318.618, 321021.247], + [174613.1025, 321141.3935], + [174877.494, 321374.421], + [175133.7321, 321289.2264], + [175306.6042, 321275.2958], + [175560.2775, 321234.8984], + [175543.14, 321560.4], + [175780.82, 322123.79], + [176049.03, 322421.78], + [176485.5497, 322728.4426], + [176742.28, 323248.24], + [176806.29, 323656.34], + [176706.21, 324049.88], + [176757.86, 324362.35], + [176878.76, 324534.74], + [177240.54, 324709.76], + [177452.04, 324742.82], + [177652.16, 324698.15], + [178046.473, 324351.071], + [178333.16, 324280.56], + [178435.44, 324309.77], + [178725.9, 324593.22], + [178882.0435, 324945.7428], + [178915.23, 325171.63], + [178817.35, 325771.99], + [178887.93, 326066.33], + [179279.33, 326778], + [179862.62, 327337.39], + [180050.43, 327686.58], + [180094.07, 327999.84], + [180217.589, 328249.848], + [180207.81, 328592.98], + [180257.33, 328683.08], + [180606.84, 328900.49], + [180893.96, 328968.58], + [181064.97, 329070.59], + [181139.66, 329270.29], + [181055.4138, 329599.611], + [180916.31, 329845.57], + [180689.84, 330059.54], + [180526.43, 330179.35], + [180224.1, 330278.42], + [179930.29, 330156.31], + [179789.39, 330003.85], + [179719.58, 329807.55], + [179379.56, 329585.27], + [179174.77, 329520.37], + [178758.66, 329594.29], + [178525.16, 329768.59], + [178375.74, 330040.79], + [178390.05, 330356.12], + [178679.34, 330779.02], + [178777.05, 330832.29], + [178977.54, 331187.89], + [179300.7714, 331406.4309], + [179455.9, 331690.66], + [179523.46, 332085.09], + [179587.51, 332171.74], + [179761.34, 332295.77], + [180243.09, 332394.46], + [180469.5, 332603.87], + [180581.83, 332782.93], + [180661.12, 333070.46], + [180834.44, 333322.56], + [180825.83, 333448.8], + [181113.3519, 333789.6757], + [181598.6177, 334295.1959], + [181708.226, 334625.737], + [181689.616, 335037.4], + [181592.06, 335321.41], + [181586.4476, 335553.3196], + [181688.3, 336027.54], + [182099.926, 336668.744], + [182255.72, 336856.42], + [182310.33, 337053.59], + [182242.57, 337349.9], + [182056.27, 337606.42], + [181656.1209, 337796.7371], + [181210.38, 337888.67], + [181032.65, 338115.4], + [181010.75, 338294.77], + [181122.15, 338637.35], + [181595.24, 339283.53], + [181896.54, 340026.55], + [182018.95, 340817.61], + [181954.1, 341217.29], + [182015.98, 341409.38], + [182161.63, 341561.65], + [182470.08, 341550.3], + [182845.48, 341395.08], + [183088.24, 341202.25], + [183462.93, 341073.6], + [183762.21, 341145.43], + [183893.796, 341247.943], + [183978.2608, 341163.0011], + [184147.634, 341080.918], + [184168.399, 340973.92], + [184380.358, 341031.174], + [184427.887, 340972.88], + [184491.467, 341155.701], + [184595.788, 341148.749], + [184884.352, 341862.457], + [185307.599, 342650.9991], + [185372.008, 342649.0421], + [185611.659, 342641.759], + [185595.689, 341998.739] + ] + ] + }, + "geometry_name": "geometry", + "properties": { + "od_code": "OD28", + "od_naam": "RUD Zuid-Limburg", + "naam_alt": "RUD ZL" + } + } + ], + "totalFeatures": 28, + "numberMatched": 28, + "numberReturned": 28, + "timeStamp": "2024-07-18T12:45:36.346Z", + "crs": { + "type": "name", + "properties": { + "name": "urn:ogc:def:crs:EPSG::28992" + } + } +} diff --git a/frontend/static/geojson/provinciegrenzen.json b/frontend/static/geojson/provinciegrenzen.json new file mode 100644 index 00000000..98ba843f --- /dev/null +++ b/frontend/static/geojson/provinciegrenzen.json @@ -0,0 +1,12779 @@ +{ + "type": "FeatureCollection", + "name": "provinciegrenzen", + "crs": { + "type": "name", + "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } + }, + "features": [ + { + "type": "Feature", + "properties": { + "id": 1, + "statcode": "PV20", + "jrstatcode": "2021PV20", + "statnaam": "Groningen", + "rubriek": "provincie" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [7.208053046812533, 53.239197568013367], + [7.206457309828465, 53.237644854123829], + [7.205136186371367, 53.239410876148376], + [7.206725740439841, 53.239472385713718], + [7.206872523645804, 53.24158014182877], + [7.208948102633437, 53.243072862523896], + [7.209672839184751, 53.239638756144387], + [7.208053046812533, 53.239197568013367] + ] + ], + [ + [ + [6.212612898156964, 53.364214162359616], + [6.212177816274532, 53.362928157588712], + [6.209455795454871, 53.363762995446017], + [6.211016737801469, 53.364917982074935], + [6.212612898156964, 53.364214162359616] + ] + ], + [ + [ + [6.209670054015572, 53.37235894217249], + [6.209761572266843, 53.370357357690082], + [6.208049847636851, 53.370537769662086], + [6.206702229509446, 53.372062017845842], + [6.207103438013132, 53.372592859758086], + [6.208481560050766, 53.372868092250037], + [6.209670054015572, 53.37235894217249] + ] + ], + [ + [ + [6.207046362247985, 53.370279105292063], + [6.206018030689202, 53.366521804353681], + [6.208433377411779, 53.365022860932363], + [6.207372138769641, 53.363651954548018], + [6.196303997766438, 53.364016483268649], + [6.18184059502492, 53.370464527274962], + [6.183102945213159, 53.373878052704654], + [6.187664723360672, 53.372836794483575], + [6.190218112302972, 53.36948831698097], + [6.19106696843679, 53.370225584114401], + [6.190778336579402, 53.373365927705379], + [6.192118286622373, 53.374854612000455], + [6.194399138404776, 53.374898471212049], + [6.19710171816953, 53.373346624498211], + [6.205396286888187, 53.372225673051226], + [6.207046362247985, 53.370279105292063] + ] + ], + [ + [ + [6.18900939797769, 53.385906207569917], + [6.18422278714332, 53.383811241427679], + [6.183533482351973, 53.386721427962421], + [6.186210862995135, 53.387618684223796], + [6.187985196430221, 53.387112468705908], + [6.18900939797769, 53.385906207569917] + ] + ], + [ + [ + [6.227350502059324, 53.390160351666701], + [6.223530351232248, 53.389794246554601], + [6.219067671116972, 53.390888138553557], + [6.222698053818355, 53.392637044517066], + [6.228020879910181, 53.39344554578576], + [6.229411007708215, 53.393064713054585], + [6.231265705431166, 53.391538242452185], + [6.227350502059324, 53.390160351666701] + ] + ], + [ + [ + [6.778756857110698, 53.460749531682438], + [6.793126471623557, 53.455720549749827], + [6.796871487783973, 53.455139322384497], + [6.798364501079871, 53.455010598607757], + [6.813694232480123, 53.463266478861826], + [6.828898752423484, 53.459654000953357], + [6.830188613568197, 53.459756547302383], + [6.832533938109017, 53.462393501761937], + [6.834731420623714, 53.462501828831698], + [6.834667743769447, 53.462136832117856], + [6.832776109123574, 53.462020613020989], + [6.830779593947427, 53.459640560655757], + [6.833531916693352, 53.458290264143287], + [6.834355142270056, 53.456151826078418], + [6.832053236279859, 53.456041861731478], + [6.8244719868241, 53.457782909982186], + [6.823921993371304, 53.456523162929074], + [6.834457250367985, 53.454614750654606], + [6.832149671764396, 53.450727955902231], + [6.814775698295174, 53.453498606331657], + [6.813642678421718, 53.453062985832304], + [6.812739915233584, 53.451016057270323], + [6.829406903520757, 53.44820412752788], + [6.828482691128558, 53.445843630407516], + [6.81979567669369, 53.447140116977081], + [6.819017912180525, 53.445068475133276], + [6.833476767247447, 53.442908305343003], + [6.837276564452758, 53.443531893740186], + [6.847851438051551, 53.442019255861901], + [6.848252255787973, 53.442409431950615], + [6.855489302586102, 53.441635158672369], + [6.856394353230998, 53.443687745498231], + [6.838372116218589, 53.446856184543947], + [6.842581117355446, 53.457210468689162], + [6.842534758107715, 53.458415584582035], + [6.840996394216052, 53.460336218298771], + [6.841573426011194, 53.460383821780397], + [6.84316052061617, 53.458366416096261], + [6.842947076155267, 53.456184597671275], + [6.856882698558897, 53.452761353235012], + [6.863157368012362, 53.450619719612682], + [6.879695467895266, 53.441465761000522], + [6.880573605658084, 53.442120555753647], + [6.883470603077429, 53.440823492201588], + [6.882459875065139, 53.440024264489182], + [6.88334097893941, 53.435753854571288], + [6.875323364710721, 53.421895157155738], + [6.874210819837127, 53.408033808572029], + [6.878962900557838, 53.405153884977068], + [6.88805820568875, 53.395958888359722], + [6.885423441280638, 53.393516088541539], + [6.885257588960096, 53.392449016297334], + [6.889170474219663, 53.39126918769751], + [6.890576422152411, 53.388867824887598], + [6.888661285190227, 53.383699840956062], + [6.889001043097158, 53.380280191111389], + [6.893202956434442, 53.371311589912629], + [6.895590428093513, 53.369669724991418], + [6.894513308524491, 53.36513939151952], + [6.895024902507565, 53.363268691088265], + [6.896448642209166, 53.361893012747551], + [6.896172414352674, 53.359072089066601], + [6.897126174990542, 53.35558343729484], + [6.90208601974672, 53.347509881882324], + [6.908526362288156, 53.347248039436899], + [6.913039056384056, 53.344601529095264], + [6.918880556992185, 53.342177323596147], + [6.929942037838717, 53.335483413263205], + [6.930484592490458, 53.334862093533765], + [6.932177545263734, 53.334577921260262], + [6.93394939708461, 53.334974070959333], + [6.93611860871527, 53.334854446626352], + [6.945363447522511, 53.332354066704646], + [6.950792387524187, 53.329854069990262], + [6.949058182720012, 53.326608854635793], + [6.970271075974719, 53.321776967305368], + [6.98888069112868, 53.317319391918893], + [6.996464561221397, 53.316715299343699], + [7.004973020959423, 53.317117107422256], + [7.003603837845629, 53.31612246544195], + [6.99291283055322, 53.315756519323173], + [6.987633204344602, 53.31640005917648], + [6.970371328459437, 53.320801642884106], + [6.952159390466884, 53.32329767440271], + [6.946087287709322, 53.324860658347269], + [6.940522498707943, 53.32830536517762], + [6.939683958601337, 53.32816761759041], + [6.934314222464291, 53.333074923045046], + [6.931165694281288, 53.332122024927045], + [6.928693524758788, 53.329092705179264], + [6.928121718442028, 53.327689979270943], + [6.930475564812309, 53.327155216021346], + [6.931804349719619, 53.326226752033179], + [6.935927249067258, 53.326329964510485], + [6.949875278030713, 53.322065798185939], + [6.958122673117772, 53.320604737539377], + [6.962911308634098, 53.318858782380012], + [6.968314900421626, 53.319004839535829], + [6.975046276461282, 53.316960622750834], + [6.979354814797463, 53.31633294275008], + [6.996277547895997, 53.311665208167952], + [7.000589765148753, 53.309424454827003], + [7.010671324438834, 53.313797470257612], + [7.009225537529188, 53.315425973658279], + [7.010233910429034, 53.315788784219031], + [7.012914263846227, 53.311244540739722], + [7.009785141195587, 53.306526542956718], + [7.010293066136038, 53.306123749337928], + [7.026995036130241, 53.302459259954276], + [7.030987650114982, 53.302591326181187], + [7.037585306629499, 53.304268014720137], + [7.039185295647417, 53.302399710312358], + [7.044784018365968, 53.301350046986855], + [7.047502989232455, 53.299567359860511], + [7.068193538077137, 53.299757077484522], + [7.0702036448576, 53.30024434282678], + [7.076718340618957, 53.300277693150285], + [7.080605319083251, 53.303686237935992], + [7.086251168071885, 53.304158455651184], + [7.092235214101634, 53.305487443108419], + [7.092207225375829, 53.307202355749382], + [7.094288961172198, 53.307862690528104], + [7.098378870193641, 53.308725816830801], + [7.099966340476265, 53.307900501601011], + [7.098375731480943, 53.305050553516921], + [7.095629853850881, 53.304737468956503], + [7.090353676707691, 53.300533741611531], + [7.085498064827914, 53.29775023683144], + [7.084896938674484, 53.29801088307434], + [7.084168182700564, 53.297559575978148], + [7.082503846261681, 53.291234350655735], + [7.085242611952986, 53.282508295068666], + [7.082020972192681, 53.279336218682737], + [7.08216540337677, 53.278129564494527], + [7.080905594050614, 53.277397496780637], + [7.078322854352265, 53.270748163977913], + [7.078331460285034, 53.266581311169183], + [7.084620779249797, 53.261564516891561], + [7.093249754510063, 53.257144315493541], + [7.096022310023306, 53.255815097766764], + [7.09772183905372, 53.256122213787592], + [7.103613020699979, 53.252277363920506], + [7.105277062521345, 53.252744992200633], + [7.106550740132575, 53.251903111488694], + [7.108266081594881, 53.25266240285454], + [7.111828105372473, 53.250691708582941], + [7.115105848974656, 53.252230656994975], + [7.116611336890717, 53.250646835953276], + [7.119241078422307, 53.251190323775575], + [7.120935133440402, 53.249882866806814], + [7.123996761996503, 53.250415417162301], + [7.134008118211005, 53.250154988815581], + [7.135452001316197, 53.248401779706008], + [7.139681582196486, 53.24750857934503], + [7.143043679122341, 53.245698682326562], + [7.147089257164521, 53.246348601313407], + [7.150120192536471, 53.245192523729237], + [7.155864394967708, 53.243391893065308], + [7.156157041464429, 53.244918193861373], + [7.158640128516652, 53.245024946172144], + [7.159369401273119, 53.246093449564022], + [7.163137283475183, 53.245373647449966], + [7.16654543887626, 53.243880723323201], + [7.167750353713148, 53.242756126694253], + [7.170403684185024, 53.242682844889515], + [7.173066134370075, 53.240498221832809], + [7.173758246333814, 53.241508199967981], + [7.177485212190978, 53.241233188771041], + [7.183217527254265, 53.239129217707877], + [7.183580034607526, 53.239875949162837], + [7.18622098429783, 53.238735778735638], + [7.187477915172694, 53.239123204479732], + [7.189597645774595, 53.237950261386935], + [7.194556472731149, 53.238025451043718], + [7.20486176063363, 53.236721871686896], + [7.207027739628224, 53.232383628241386], + [7.208949673922383, 53.231811121682419], + [7.206576741870273, 53.236819814263413], + [7.208070841576646, 53.238873810489686], + [7.209806289584691, 53.239407894039601], + [7.212504643720152, 53.228188680978626], + [7.210491794340231, 53.228397145643626], + [7.217025445444611, 53.214766615018057], + [7.21762284154699, 53.197817347649739], + [7.216551763669195, 53.195548038741279], + [7.211453335963415, 53.192508601002551], + [7.20819047161653, 53.188651032912624], + [7.21824445846846, 53.184243510629749], + [7.22749845130861, 53.180278524541748], + [7.214002363884859, 53.177204129174797], + [7.205994942905232, 53.176497056961551], + [7.203654946683272, 53.176564225296325], + [7.200771167568558, 53.173279629464751], + [7.190900503843272, 53.161839756942058], + [7.191179419767711, 53.159571827233407], + [7.189323543455591, 53.157322890173788], + [7.189244301200478, 53.154882974649155], + [7.18960133820388, 53.147961588153315], + [7.185865280620102, 53.14466810269402], + [7.183123480945051, 53.140149145788001], + [7.180263739426449, 53.138032499520428], + [7.178961642906851, 53.138545503921478], + [7.180076706027203, 53.13131980790164], + [7.181018614811419, 53.127678655710923], + [7.183641272156179, 53.124867901409814], + [7.185872893096622, 53.124225760993141], + [7.183101150829343, 53.12167999644398], + [7.202793583674274, 53.1134105878184], + [7.19921940211168, 53.081386198487273], + [7.200513681256421, 53.074678725808781], + [7.204243317606521, 53.05557410598886], + [7.212932132072899, 53.011060848231566], + [7.217445436425481, 53.007037154179514], + [7.216102744062691, 53.005922045254941], + [7.216487811114587, 53.005649924104532], + [7.209562413957399, 53.000506686557266], + [7.200509216841811, 52.981483748892117], + [7.181515571559211, 52.941584253543084], + [7.150260661798498, 52.910126796260116], + [7.104370773871798, 52.863931200175578], + [7.087257994943095, 52.849887152830462], + [7.087821016214803, 52.848687225473086], + [7.092739745839721, 52.838196147568752], + [7.07237873507868, 52.838513911533461], + [7.071641023452733, 52.839278191089527], + [7.072193037229215, 52.845210946521163], + [7.076317142026071, 52.848746777089737], + [7.076236962648689, 52.850030135821697], + [7.07006817844323, 52.847793397077503], + [7.069138235326217, 52.847863682604277], + [7.065917384658401, 52.8516419787655], + [7.064270225375976, 52.851043257455615], + [7.063749751626792, 52.851789544185593], + [7.062726595931494, 52.851468455791689], + [7.052301021039904, 52.861495647241064], + [7.051461433282563, 52.861182082445701], + [7.047885001847459, 52.864506282928446], + [7.046433097686815, 52.86585561371772], + [7.043486303370146, 52.865218590005256], + [7.040286273537864, 52.872818227143576], + [7.018576993907993, 52.872975006608961], + [7.014799354237953, 52.872986590603844], + [7.016562138375007, 52.875446175672003], + [7.035661824812069, 52.902096966076833], + [7.039580651783275, 52.907560440523532], + [7.045531200389489, 52.915915508029663], + [7.029408055120653, 52.918610600212602], + [7.026854454451576, 52.919037023685014], + [7.022649485865437, 52.92086237823397], + [7.015697759972679, 52.924815667964751], + [7.013808641401015, 52.926446025763681], + [7.003831622120449, 52.935012023537531], + [7.002899299104572, 52.935814849455127], + [7.001023496987225, 52.937425462377476], + [6.988488328147293, 52.948205389989866], + [6.985586005261275, 52.950690233715925], + [6.980119967083349, 52.955382939393161], + [6.978563596938856, 52.956716862037226], + [6.97035273872457, 52.963769024688034], + [6.96958635972533, 52.964427227295751], + [6.956650520112806, 52.975533884065563], + [6.95286799068507, 52.978786543181421], + [6.94839549066657, 52.982631701168017], + [6.943151080138985, 52.987139493940795], + [6.939546412767319, 52.990237182476605], + [6.937064395951216, 52.992369765058072], + [6.935684881494103, 52.993352558029571], + [6.934680003200977, 52.993996116370994], + [6.922171340342012, 53.002004677557977], + [6.907184532557824, 53.011594259747632], + [6.907130589092307, 53.011628778121654], + [6.904620079860092, 53.01323454661312], + [6.897088075825417, 53.018051205602362], + [6.861287523113588, 53.040874030108377], + [6.843273105803446, 53.052344229473029], + [6.83717048095745, 53.056228449143063], + [6.814535610103802, 53.070598070850345], + [6.813944822016775, 53.070971595793942], + [6.789826927052185, 53.086307739025067], + [6.776509451119421, 53.094760676210598], + [6.744730019404909, 53.115248006837717], + [6.743253845067893, 53.116568312497186], + [6.742396646889584, 53.116370702554988], + [6.737451031232, 53.119461741725544], + [6.723256576505558, 53.120052424472391], + [6.72138087823072, 53.12013035191692], + [6.719831835414042, 53.120218548861807], + [6.718724775752073, 53.120247908458012], + [6.695367002833698, 53.121176027735324], + [6.694617426365979, 53.121057843012053], + [6.678771952296657, 53.118108199883871], + [6.67060255522676, 53.116516320431408], + [6.653648316482914, 53.111624773898491], + [6.651909436441342, 53.111159556510778], + [6.643502192887691, 53.108662352335244], + [6.634836332060067, 53.106202088834721], + [6.635671051373069, 53.107848089032672], + [6.637086433085573, 53.108300901378968], + [6.63659731799583, 53.112842885206106], + [6.633527843144274, 53.114381391343954], + [6.629660693976612, 53.114738692646938], + [6.628179595582314, 53.115991427109158], + [6.627937818508311, 53.117179125529866], + [6.630575763937219, 53.119385309565487], + [6.629471884785141, 53.119811968988714], + [6.627335665234265, 53.122833234982863], + [6.62283429343049, 53.125372988017645], + [6.621763407419588, 53.126350722841401], + [6.621320322195159, 53.128309111841709], + [6.618978424281383, 53.129880091216002], + [6.618976946858979, 53.1315808676693], + [6.617081158776983, 53.132163027865843], + [6.616651775843063, 53.132938359752067], + [6.613641349060896, 53.132694299687934], + [6.614400516914316, 53.135556969848835], + [6.610623525849829, 53.137943718992354], + [6.609165344084336, 53.138455613800964], + [6.609165308432202, 53.138455727396796], + [6.608217975949283, 53.138788278397207], + [6.606927131103308, 53.139241395475459], + [6.603270670200061, 53.14198145716886], + [6.599984548870764, 53.144723538832054], + [6.598547996001496, 53.14434332938071], + [6.588185516902842, 53.145322860733785], + [6.587386511486412, 53.148683248626362], + [6.584642623230098, 53.154305199200742], + [6.587089404098023, 53.156225970433397], + [6.583452738192077, 53.158635427235517], + [6.580972236211612, 53.162174529160261], + [6.581266719881016, 53.163543298758441], + [6.5647424119484, 53.157989675960238], + [6.563687534971404, 53.157638386942814], + [6.560893891502351, 53.165161993902245], + [6.56058742943369, 53.166127005250019], + [6.559319506419098, 53.169340990363409], + [6.548572227162428, 53.180669933632686], + [6.548377667107329, 53.180885739940607], + [6.548188376869989, 53.181097649571257], + [6.546253782714326, 53.180278612208014], + [6.543488632088939, 53.179015998121947], + [6.541496020117435, 53.179068167616407], + [6.540647892572659, 53.180158358933532], + [6.53803259929242, 53.18231164593022], + [6.534281932341783, 53.184085147789986], + [6.530398902998334, 53.19285652502365], + [6.529528999942909, 53.195194932840572], + [6.530492052047485, 53.195559285888947], + [6.5210950539001, 53.196939663039835], + [6.515715270695292, 53.198308162223128], + [6.513386061502077, 53.196937030339598], + [6.513336127350567, 53.196973556111566], + [6.506844779224921, 53.20014505107347], + [6.496427821252458, 53.198137445791872], + [6.493504978176614, 53.198497031158062], + [6.492695273506859, 53.200576863881622], + [6.485716901544651, 53.203821270304026], + [6.481511903694388, 53.203553449640431], + [6.463461492891275, 53.200058243338596], + [6.449947985302076, 53.196696718756868], + [6.447712146679175, 53.196440597365118], + [6.445662013973423, 53.191015499440788], + [6.442866855764631, 53.187740435314332], + [6.43801797845088, 53.185651548262662], + [6.424487602476855, 53.181678034042264], + [6.407970349477097, 53.178148442370521], + [6.405593347947791, 53.176474877774091], + [6.405469603195683, 53.17628301180023], + [6.404120771616492, 53.172955017800561], + [6.404137966416722, 53.168572391886201], + [6.402687322870413, 53.167005675046525], + [6.398594531467642, 53.1648621178472], + [6.397614373554847, 53.164512732858832], + [6.395093790018603, 53.163528733222797], + [6.391128201053242, 53.159418766167526], + [6.38872862277824, 53.158014783675554], + [6.381471031288155, 53.153436032608369], + [6.381564088328505, 53.153185872812109], + [6.381546401911922, 53.14959268551975], + [6.382612343229254, 53.149570501479808], + [6.381472649369485, 53.147737868464567], + [6.366051963518452, 53.122558360289126], + [6.365626968406228, 53.121289813046069], + [6.365354072139272, 53.119527291892481], + [6.363559957585637, 53.107560258732072], + [6.356620549439637, 53.107084529221602], + [6.344442931805554, 53.087150580191128], + [6.340999315198234, 53.087944597328075], + [6.337795954386153, 53.088688856793418], + [6.315157520479405, 53.094052795761073], + [6.296427005389894, 53.098443349571113], + [6.293172693972333, 53.099210026595287], + [6.290565672904171, 53.099829061893324], + [6.283050376969637, 53.106863149093542], + [6.274138896114069, 53.111161176566895], + [6.261684662553052, 53.114292705827779], + [6.255594914171581, 53.114199726897724], + [6.254381516736233, 53.114131505177724], + [6.251264774304385, 53.113936970558946], + [6.239364030296112, 53.113388836749778], + [6.225961881676192, 53.114300151035998], + [6.222606836227472, 53.114914157153549], + [6.212860607792623, 53.115232549497584], + [6.206271387691421, 53.115444495455918], + [6.206205460674664, 53.115447774218957], + [6.205609884652384, 53.115466465585726], + [6.20238159760095, 53.117220602139469], + [6.192941256253373, 53.123356605010287], + [6.18571676603592, 53.129213451339531], + [6.179069352448493, 53.133992035591149], + [6.175677646843077, 53.135076387623876], + [6.176303946553691, 53.15278530491679], + [6.176750429951674, 53.159504524474805], + [6.177337071780763, 53.1669827758301], + [6.181223946744884, 53.170348276032662], + [6.183016871329787, 53.173984372403787], + [6.18579116789778, 53.178832372702878], + [6.188034275501855, 53.182486727829584], + [6.193097496915122, 53.189277743759902], + [6.195276866740893, 53.191498513396326], + [6.197037217948592, 53.192015880304986], + [6.199830670560211, 53.195322709769798], + [6.19962149171507, 53.198355331193781], + [6.204114632652998, 53.199758486386152], + [6.209578244825125, 53.199960988961294], + [6.219242429120151, 53.206129822936937], + [6.224839690460797, 53.212003835637695], + [6.224750207135433, 53.21457858500203], + [6.228934171183216, 53.216805489611914], + [6.229988488866629, 53.217818461500016], + [6.230173390514749, 53.22244044328172], + [6.225339527537963, 53.225455393286559], + [6.224632166776003, 53.230073806670276], + [6.221680562047064, 53.231667708912894], + [6.214584005911955, 53.233710709161976], + [6.214806021069684, 53.235648539850885], + [6.215542592870596, 53.236985166601251], + [6.220239124123794, 53.237347772478948], + [6.224972126621878, 53.238592850932456], + [6.224615989124095, 53.239700953052825], + [6.222823513827016, 53.239497684647105], + [6.218449585222227, 53.241691315120121], + [6.217978307973344, 53.241932142319889], + [6.219453559965274, 53.242866762366198], + [6.225111599886265, 53.244590432397118], + [6.227743402939055, 53.245239684771185], + [6.229707282889536, 53.244751911591948], + [6.231094935600611, 53.245105374255509], + [6.232075325580595, 53.24712467566949], + [6.229601638346954, 53.248913209128098], + [6.230318549130547, 53.250426430715798], + [6.233665253406248, 53.250399010266072], + [6.235100749244839, 53.253354855644488], + [6.232625335974498, 53.254563928674656], + [6.231749154748194, 53.255946639913269], + [6.232173118714244, 53.256747424350166], + [6.234944895137296, 53.256703911403008], + [6.237584256581087, 53.257547170909454], + [6.238763097499461, 53.259681045504053], + [6.237973516470986, 53.261582748103038], + [6.239415730849003, 53.263143247772241], + [6.241623586756216, 53.263951695254384], + [6.243484569222636, 53.265459836807452], + [6.243625084558496, 53.266459539824538], + [6.246863242240255, 53.268295843038757], + [6.249977359557612, 53.267220009393412], + [6.25347420830628, 53.267724640746565], + [6.254943534038439, 53.268524559864339], + [6.255763363691479, 53.270836501829855], + [6.252965007021565, 53.273467875237401], + [6.251408793910344, 53.27725498116088], + [6.252941206113961, 53.284459259630324], + [6.254266127056684, 53.288642850561374], + [6.259903726075851, 53.291075722192758], + [6.267456638884205, 53.290854865669452], + [6.26926793213365, 53.290278476171324], + [6.27075499232094, 53.292060152166918], + [6.270286749651254, 53.293159743114991], + [6.27437501617544, 53.296488719699632], + [6.274488074828056, 53.299147398535126], + [6.278307245155682, 53.302730948147463], + [6.279478703586023, 53.303324393120874], + [6.290250241262453, 53.305377696377526], + [6.29401651372434, 53.308368589799528], + [6.293579296993696, 53.308615238217953], + [6.292779403238588, 53.309892168839163], + [6.286763368586267, 53.312010377229953], + [6.284027849174904, 53.311792178745947], + [6.280503486315414, 53.312581497236707], + [6.286901118202813, 53.341026278562353], + [6.288469872099269, 53.340557225849238], + [6.289077306537269, 53.340308212407145], + [6.290521713286271, 53.339420328379077], + [6.292241660411123, 53.338472367126755], + [6.295030342616805, 53.33814198752539], + [6.296714123277924, 53.337239934456221], + [6.297114074359774, 53.337531253180089], + [6.294848482658183, 53.339749186460516], + [6.297209699368912, 53.340238453093072], + [6.296703630085472, 53.34116058310007], + [6.291765786172608, 53.340120833242054], + [6.287135506347654, 53.341949403243355], + [6.279615503675903, 53.343323015426471], + [6.27366337806759, 53.345787999298629], + [6.259939149747173, 53.347991941836504], + [6.260032197735683, 53.348873034225683], + [6.25715662441743, 53.348559246088037], + [6.253088456641199, 53.349388526344114], + [6.248888049013082, 53.349033746446523], + [6.240281011870962, 53.344422910557924], + [6.234845309678714, 53.343763351088207], + [6.233016931701926, 53.344153082267596], + [6.232085654788272, 53.34528868707681], + [6.233570217638899, 53.34707276761668], + [6.231940673031572, 53.351387122607171], + [6.232384799689351, 53.352281686479124], + [6.23612224575905, 53.352457187172845], + [6.24608425316579, 53.354330670176033], + [6.252201110092125, 53.358278627046545], + [6.25363698901177, 53.358356260211558], + [6.256908867221361, 53.357240349245842], + [6.256332385295209, 53.358688026882596], + [6.254074120764595, 53.360307299910772], + [6.251526611856883, 53.361268525772367], + [6.248462048442014, 53.361494768803276], + [6.244339786995285, 53.359378077485488], + [6.240222873764619, 53.358510221689251], + [6.237994294460234, 53.35869036201813], + [6.233119041558155, 53.360447221274583], + [6.237625639806443, 53.363397289954065], + [6.241210304385491, 53.364805578763914], + [6.239914146284839, 53.365749674454797], + [6.238256072540192, 53.369088751459834], + [6.237277645460946, 53.36932553462114], + [6.232402062144694, 53.366894767199952], + [6.226218952223459, 53.365553257944228], + [6.220504280383614, 53.36568350351402], + [6.217272767965062, 53.364076472642139], + [6.209547257811599, 53.367356953214326], + [6.209848294282017, 53.368986233894439], + [6.21235435701997, 53.369712973056913], + [6.21353822071386, 53.371913852043143], + [6.23198097236987, 53.372551391948797], + [6.23370775158067, 53.373218665540747], + [6.22595806285294, 53.374392764460637], + [6.221724660013433, 53.373909223909202], + [6.211312480447597, 53.375687470148797], + [6.200696760313979, 53.375659560247527], + [6.191906946347444, 53.377821472712199], + [6.185759772483342, 53.378005429759185], + [6.184454521420494, 53.378534934397251], + [6.183454955961536, 53.381241004050743], + [6.185157765154289, 53.382923080290304], + [6.191321941895439, 53.382363391909358], + [6.20061789654815, 53.382627108451636], + [6.201599125095202, 53.38304923631015], + [6.201839626125839, 53.384459857522664], + [6.20165290467514, 53.385513774074333], + [6.19672531386028, 53.390699849866763], + [6.193687766332721, 53.39078795980366], + [6.192499999538066, 53.390302013474049], + [6.191484411965705, 53.390548230784404], + [6.191585858640189, 53.391116185059602], + [6.193381341362608, 53.391852761840568], + [6.187854195453987, 53.393639038453472], + [6.180974174721572, 53.393944571945674], + [6.179391437618172, 53.394580042364915], + [6.179886560245588, 53.395805137342791], + [6.17893520008453, 53.396109858186129], + [6.182307052095524, 53.397876212243702], + [6.182467646761963, 53.399116686859259], + [6.18157653511227, 53.399986136613578], + [6.182349256998714, 53.401897567908996], + [6.18474689294941, 53.403141541432639], + [6.197518874570838, 53.403007541155759], + [6.200881961781047, 53.401073051511673], + [6.202581369085707, 53.399153566697116], + [6.211125598147764, 53.395599335280089], + [6.215989978018944, 53.390509523188847], + [6.221221163354118, 53.388287429925938], + [6.22429635347165, 53.387865208618926], + [6.225690986673647, 53.388562833008855], + [6.233687173181083, 53.389055085371915], + [6.236695814421194, 53.391105014146149], + [6.234896643769982, 53.392468968867639], + [6.233500515883204, 53.392656263222122], + [6.23459457956212, 53.393300973742882], + [6.234084942369665, 53.393906413221416], + [6.233212857472788, 53.393747270816235], + [6.23272693920057, 53.395519603430607], + [6.230672532684356, 53.396110093533146], + [6.228695227602239, 53.395744630150539], + [6.22390514215686, 53.39650009139968], + [6.22292607234024, 53.397281120058338], + [6.221113302173417, 53.396739726665238], + [6.221624788864839, 53.395953041164312], + [6.218941041912939, 53.397210396698426], + [6.218059004550827, 53.398928439598016], + [6.216859425248939, 53.398571193166205], + [6.213970335545485, 53.399532127455686], + [6.212420231208453, 53.400998680325053], + [6.211524447820008, 53.400539519281331], + [6.21075624524876, 53.401953337128994], + [6.209625347332445, 53.40214510868784], + [6.209250298182026, 53.401319002453654], + [6.209591911616443, 53.403066310385711], + [6.210662094318376, 53.404319671354045], + [6.209691776282231, 53.405146853285444], + [6.203873007283181, 53.404016413987485], + [6.202431370470006, 53.404505756987781], + [6.202375671897733, 53.405198265651443], + [6.20698748654982, 53.405277670504532], + [6.206942983591998, 53.406576422735391], + [6.201927425731764, 53.406375467931824], + [6.20073074103867, 53.405120897832546], + [6.196420745386702, 53.406866856121631], + [6.196117996697859, 53.407539895067117], + [6.196277228513462, 53.407877851329545], + [6.194770392600643, 53.40765482718939], + [6.192568133711599, 53.408569208880394], + [6.192169846364582, 53.410168182645862], + [6.191013246883452, 53.41069218132926], + [6.191470948757873, 53.411087458673975], + [6.193974124074603, 53.41036951454636], + [6.197036377241195, 53.411613244027386], + [6.199862914539397, 53.411510964255434], + [6.197541218374303, 53.411075640967852], + [6.196705875384596, 53.408879787129948], + [6.199072201834463, 53.408776881995784], + [6.199082453311948, 53.407877387673807], + [6.208107000883271, 53.408725296105366], + [6.21231232304375, 53.409622499990526], + [6.211591787780782, 53.411062722629559], + [6.207028922411719, 53.410322228305503], + [6.202409690739424, 53.40940437116808], + [6.19971262655239, 53.409422579356445], + [6.201586595209952, 53.409737006832408], + [6.201309838583816, 53.411114480541528], + [6.202489055825112, 53.409888415674466], + [6.206736409309006, 53.410600904438141], + [6.212874382798658, 53.41165053126759], + [6.214725676629104, 53.409215599960433], + [6.244304941970751, 53.41510802806215], + [6.249335358805276, 53.415513919639388], + [6.255062230633203, 53.415163242391088], + [6.260658701826292, 53.413916216866326], + [6.292202592848029, 53.403116786053481], + [6.296680160085605, 53.401034519895219], + [6.30037894839413, 53.398207185669065], + [6.304581578087195, 53.395990514093747], + [6.307768081991005, 53.396634726431991], + [6.312367628416543, 53.396515531181706], + [6.31319458095971, 53.397605880271556], + [6.327640340752207, 53.402634328378433], + [6.329169404475657, 53.40404630293105], + [6.339139828357464, 53.406428467625766], + [6.338401209244461, 53.410590896393579], + [6.33930421073276, 53.410820862572322], + [6.345269648561819, 53.410241105041507], + [6.3483839579556, 53.410503774205075], + [6.349769880249306, 53.412158798056431], + [6.354590526435947, 53.412247345394057], + [6.357252710338343, 53.413048510535226], + [6.357455798967941, 53.414149404465959], + [6.367585504679938, 53.416386320745424], + [6.386054868528281, 53.419500530177373], + [6.39551913163853, 53.420608192552244], + [6.410671389755423, 53.421236722273434], + [6.41430345329852, 53.42276770702378], + [6.425951775272702, 53.422175237857466], + [6.476610380815981, 53.426632605831934], + [6.478209893205368, 53.427595489938241], + [6.499187863044155, 53.430286678354051], + [6.502428085133275, 53.429700007354178], + [6.529978545211412, 53.432179887591268], + [6.53635751508889, 53.43163544763943], + [6.545359741699869, 53.432965853318471], + [6.546234359487039, 53.430765644077063], + [6.545583220181503, 53.4330039777197], + [6.563300501879994, 53.43587029114736], + [6.565162874651105, 53.435469083443834], + [6.567023630111287, 53.435164925363914], + [6.588726382849051, 53.43962152280433], + [6.59294743699671, 53.439833742045543], + [6.592772957946897, 53.441751563430735], + [6.621541980819607, 53.448837204750113], + [6.62381509439837, 53.448862802971519], + [6.624708119079631, 53.449683341953694], + [6.636902004158141, 53.453219044162623], + [6.638809408055971, 53.452347702823815], + [6.63860605145904, 53.453566345332938], + [6.646276816242542, 53.455369340626142], + [6.667414132747446, 53.45852932741797], + [6.668678133021782, 53.457856501746797], + [6.674055753909212, 53.458224409539419], + [6.674105405010207, 53.459639595087907], + [6.67996118111745, 53.461335104167105], + [6.690421154345686, 53.461564005585821], + [6.727772408313284, 53.46472967313624], + [6.744086709514921, 53.465985370976242], + [6.755440835655893, 53.465391394593915], + [6.778756857110698, 53.460749531682438] + ], + [ + [6.239342888405144, 53.369470307563212], + [6.242992492861957, 53.366402410539955], + [6.244890654371756, 53.36806080234124], + [6.254163757944173, 53.367635209982367], + [6.252472175456482, 53.368567032843053], + [6.242463067232251, 53.368976994624887], + [6.240739116989434, 53.373152854207852], + [6.240127344247989, 53.372500940862935], + [6.239066033887771, 53.371030051863173], + [6.239342888405144, 53.369470307563212] + ] + ], + [ + [ + [6.598775535020136, 53.520548016396319], + [6.596487688578269, 53.519700249094377], + [6.592232922586943, 53.519783542009066], + [6.584245762276369, 53.523309894370698], + [6.586597389485291, 53.525768463488987], + [6.590190990494547, 53.526106792796561], + [6.592916184068797, 53.525818993592729], + [6.596450436960727, 53.524414477203152], + [6.599321391399393, 53.520982353112757], + [6.598775535020136, 53.520548016396319] + ] + ], + [ + [ + [6.61112929617039, 53.53991588870845], + [6.616438076047738, 53.537126920431739], + [6.618394546610154, 53.533738604250438], + [6.61705694389243, 53.533435565114509], + [6.615601164606576, 53.534875763493439], + [6.607858713450709, 53.536272049765003], + [6.604315869451828, 53.537489941875421], + [6.600529062892312, 53.536120692909527], + [6.585178228693536, 53.536624911361052], + [6.582823919800609, 53.534960241485742], + [6.573861914972606, 53.539420012552014], + [6.564768909670944, 53.539900964018962], + [6.56382049083332, 53.539303013194996], + [6.561407375844659, 53.532022657669806], + [6.558975467712307, 53.531473801929813], + [6.558025999700314, 53.53295766768656], + [6.561974315047043, 53.541433294200345], + [6.565026638785935, 53.542289971500601], + [6.574049995566626, 53.542702228973369], + [6.595706694124085, 53.543270471690256], + [6.603245402634164, 53.54225558422025], + [6.61112929617039, 53.53991588870845] + ] + ], + [ + [ + [6.498805254652988, 53.549852899339378], + [6.506873042859683, 53.541786167082115], + [6.510183496431696, 53.539751732133965], + [6.523531921719498, 53.537172804927557], + [6.527829525913159, 53.535353708357299], + [6.529254935184709, 53.533539164527276], + [6.525277416525403, 53.533325382415939], + [6.508876377145889, 53.537475310031937], + [6.497547302460827, 53.542748347675342], + [6.487648923846922, 53.548864668956305], + [6.480195619260797, 53.548852904327724], + [6.476962092196536, 53.549529626582057], + [6.475737420659535, 53.547856716396851], + [6.476599636976302, 53.547275300072975], + [6.488114572186466, 53.545773641001524], + [6.506145716193472, 53.536290780146949], + [6.509092390830318, 53.535576710125227], + [6.509780749435735, 53.533886764413033], + [6.508603826736831, 53.532730671463646], + [6.505257487920841, 53.533107992112903], + [6.503428229128259, 53.535391071808036], + [6.50139293615255, 53.534288897616342], + [6.495611941789754, 53.532940477391463], + [6.487995554049086, 53.533235168405703], + [6.484703360530808, 53.532244537038842], + [6.483838727479562, 53.531394809058177], + [6.484236629143495, 53.529640146394776], + [6.485224703398524, 53.527352385160448], + [6.486728844860864, 53.526355214085363], + [6.485638649079353, 53.52437614122892], + [6.481191032617231, 53.521827555492557], + [6.478989330313516, 53.518448019222163], + [6.476023529498342, 53.517686864776827], + [6.474860223445257, 53.51799003214132], + [6.472741429283859, 53.523817513371014], + [6.469792905949261, 53.528234073846875], + [6.462849599937953, 53.536108208569935], + [6.459104044724295, 53.538955660411816], + [6.459090471147091, 53.541432207765986], + [6.460780226645348, 53.544006165876461], + [6.462639902210189, 53.545813152697271], + [6.472715825181292, 53.551126018269009], + [6.478449964702031, 53.55361825238387], + [6.484578036211978, 53.555228635933943], + [6.489640742072655, 53.555092440680994], + [6.498805254652988, 53.549852899339378] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 2, + "statcode": "PV21", + "jrstatcode": "2021PV21", + "statnaam": "Fryslân", + "rubriek": "provincie" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.373002234419411, 53.072256913807223], + [5.376507142254898, 53.071291040433273], + [5.378172398365107, 53.07139745229663], + [5.378344285129566, 53.072317132688688], + [5.381019458273864, 53.072581106795909], + [5.385993300266381, 53.069104193948682], + [5.390870038290659, 53.059611813992547], + [5.394497367822152, 53.057665491538842], + [5.395457728618968, 53.055373847935456], + [5.375348080099835, 53.056049120616663], + [5.365733697273217, 53.068798652333548], + [5.364069567505143, 53.075059213233132], + [5.36464090438231, 53.075740546170486], + [5.367522604969406, 53.076312835321829], + [5.373002234419411, 53.072256913807223] + ] + ], + [ + [ + [5.260339221230778, 53.250253577213392], + [5.251316426539629, 53.249298699745516], + [5.249379163818421, 53.25010461662113], + [5.24625558216994, 53.253874132361496], + [5.247800708566141, 53.255390337287487], + [5.249743358201631, 53.255418508653044], + [5.252896647222116, 53.255473403437698], + [5.255022769488422, 53.254427326908591], + [5.267376752902631, 53.252648927950354], + [5.260339221230778, 53.250253577213392] + ] + ], + [ + [ + [5.15975779161058, 53.296161738251342], + [5.159775851268581, 53.296026614111277], + [5.159725035170377, 53.296040247590618], + [5.15975779161058, 53.296161738251342] + ] + ], + [ + [ + [5.15975779161058, 53.296161738251342], + [5.156938176718597, 53.292315551747464], + [5.154155881225587, 53.2918334381853], + [5.148868958492903, 53.293014964062259], + [5.144051763870691, 53.292189063679665], + [5.141213906452235, 53.290512590863159], + [5.121575556473712, 53.284939639907726], + [5.119705258168501, 53.283310198991849], + [5.118838782817021, 53.283091558358969], + [5.117097574262151, 53.283976160751841], + [5.115016637771649, 53.287113708762135], + [5.115333642731763, 53.288457999901894], + [5.116878239019874, 53.290130119475464], + [5.121779518623071, 53.292936546375884], + [5.13038634765097, 53.300913400423859], + [5.134863033615127, 53.300997655754166], + [5.141999780072925, 53.298895535825629], + [5.152203885504132, 53.298287465642268], + [5.157744340780551, 53.297149623658726], + [5.15975779161058, 53.296161738251342] + ] + ], + [ + [ + [5.100412546138891, 53.300856443839805], + [5.093411020535997, 53.295733922768932], + [5.092590357272965, 53.295534028431874], + [5.091371725699918, 53.295023215280075], + [5.0909787463047, 53.29657011659495], + [5.087598221534565, 53.297896692980814], + [5.086825960664159, 53.297696203449], + [5.086275692296659, 53.297008348288855], + [5.08896004923358, 53.296588663481835], + [5.091406099827773, 53.294586590683068], + [5.08742483455194, 53.296456485399517], + [5.078345924551236, 53.296398473028937], + [5.062962765825623, 53.293995746213284], + [5.061851296844766, 53.293024298937148], + [5.059797000297445, 53.291189461294429], + [5.046491289959412, 53.285295249249799], + [5.033328977875916, 53.281037570076236], + [4.987624624844079, 53.270921200392401], + [4.972038833367892, 53.264835045641298], + [4.97161035184864, 53.261997872826818], + [4.974476005378353, 53.256687407068682], + [4.976247181345848, 53.255165184986403], + [4.979190849674506, 53.255912812524016], + [4.980352273469661, 53.254824547802542], + [4.979493067869853, 53.25222311201977], + [4.978577730188327, 53.25176353751872], + [4.972459228124852, 53.251552371587145], + [4.969210783774321, 53.250227596209726], + [4.971871795688155, 53.246867711883183], + [4.966796701048492, 53.242962944836101], + [4.96888769481086, 53.241900397063972], + [4.968834803796129, 53.241222645660187], + [4.964750902199494, 53.239389606375816], + [4.958516563968566, 53.238654284848813], + [4.95644535881172, 53.237719678741236], + [4.937709035410271, 53.227451753403514], + [4.927511832162995, 53.219567533379163], + [4.919407901961672, 53.216219673234001], + [4.908062185996235, 53.216032279596142], + [4.883080515446009, 53.217601870800465], + [4.875188397868596, 53.215059680165091], + [4.868802071956909, 53.208584558399018], + [4.865736707808425, 53.206631251164872], + [4.863011384398091, 53.206048785439833], + [4.858139031873504, 53.206184325670328], + [4.853802531809145, 53.207177933969049], + [4.852196942485099, 53.208283456814137], + [4.84981712490748, 53.212409634842672], + [4.851917416812576, 53.220286186398042], + [4.853567798382905, 53.222010382486694], + [4.933093443706022, 53.255479629865007], + [4.960510183856885, 53.271128620957697], + [5.001059909426596, 53.28935977057025], + [5.036252856789418, 53.301994488075501], + [5.044600612696061, 53.304397579027977], + [5.063990513744679, 53.307844248645601], + [5.073603325337251, 53.307675464664761], + [5.094678975408851, 53.305594885625013], + [5.098616613977754, 53.304728086507609], + [5.100743650788319, 53.30305110137482], + [5.100412546138891, 53.300856443839805] + ] + ], + [ + [ + [6.178241140871792, 53.342638861402165], + [6.177537228388855, 53.341993736679164], + [6.174909087935423, 53.343347942631077], + [6.174530802999572, 53.345144418263814], + [6.175818882841579, 53.34599092277508], + [6.178241140871792, 53.342638861402165] + ] + ], + [ + [ + [6.168511643744099, 53.359455274210724], + [6.168964132635854, 53.359017220883608], + [6.165114396937283, 53.359551482256748], + [6.166246135186839, 53.362447890272982], + [6.165272686818841, 53.364759916632316], + [6.1661177509669, 53.364565885460038], + [6.168748233903627, 53.360761789267066], + [6.168511643744099, 53.359455274210724] + ] + ], + [ + [ + [6.183547553213528, 53.412684979339708], + [6.185028007385124, 53.411405828002579], + [6.182048571657385, 53.412137751012423], + [6.180789227970196, 53.413237748740514], + [6.183547553213528, 53.412684979339708] + ] + ], + [ + [ + [6.183482565933025, 53.414291616799979], + [6.189408500293053, 53.412442619040235], + [6.191470948757873, 53.411087458673975], + [6.191013246883452, 53.41069218132926], + [6.182955561270791, 53.413409993362663], + [6.178388290580847, 53.413773419681227], + [6.158950456769563, 53.408239708232223], + [6.159871249731797, 53.407830030522668], + [6.162205344779427, 53.408322989481633], + [6.156452903164983, 53.400522787775053], + [6.15494118573857, 53.392312497256675], + [6.157755916951571, 53.386111638243193], + [6.160484660954857, 53.384490378549494], + [6.160836615495342, 53.382626683087842], + [6.157210036396659, 53.384281757531923], + [6.155604359972804, 53.382550868859035], + [6.157525084395017, 53.382504209750877], + [6.159944521795482, 53.381485034831293], + [6.16404162647367, 53.378180308732809], + [6.159785034983007, 53.378271078923319], + [6.157259788222524, 53.379744828635971], + [6.155173607881238, 53.379565210508467], + [6.15786865227249, 53.378668951914626], + [6.157817638659816, 53.378155325723675], + [6.153505803232803, 53.378137829424006], + [6.153950512902734, 53.377396003593795], + [6.157236143988216, 53.377098163661401], + [6.159226965792596, 53.377950560159846], + [6.163234447967167, 53.377775833240548], + [6.163887392912343, 53.376417102513372], + [6.163225231944997, 53.371984450209176], + [6.161923987615872, 53.36880817343075], + [6.16325112873802, 53.36747182994884], + [6.163138790910542, 53.365467353483766], + [6.162242623996527, 53.365090915026776], + [6.164410077644288, 53.360378150146396], + [6.163748671623711, 53.359112847352819], + [6.159723082579124, 53.358011530364507], + [6.165392717791526, 53.359182451537485], + [6.167741564833809, 53.358686008830183], + [6.166273142007111, 53.354395277117405], + [6.167781115559851, 53.349595821539744], + [6.165249038457624, 53.345953284475101], + [6.165475289605176, 53.345838659333481], + [6.166756214788318, 53.346139065689847], + [6.167934220691957, 53.349487582821361], + [6.168931251494214, 53.349033080552431], + [6.168216584101434, 53.349055644176069], + [6.167957373362965, 53.348374846149049], + [6.170770406947794, 53.344344387901991], + [6.178249471976661, 53.340284709090604], + [6.178718434471599, 53.339127505687792], + [6.178330242710445, 53.33791030638023], + [6.174083207020949, 53.334076369080087], + [6.176501297823746, 53.325464119001929], + [6.178973072280768, 53.322408546674865], + [6.178201866668744, 53.320540144552517], + [6.174635785104014, 53.319360030317597], + [6.170806412446932, 53.319752707365438], + [6.168956934867165, 53.318934692136274], + [6.159495817456895, 53.318865726897059], + [6.159432198319855, 53.31839596324626], + [6.161501304111349, 53.317975853947218], + [6.159226573643945, 53.316877529430087], + [6.160169773134867, 53.316944155138032], + [6.164862565360074, 53.318044043392483], + [6.164406372817893, 53.317260978211195], + [6.171917888582332, 53.317656040442515], + [6.171740992124061, 53.318499587587823], + [6.176419222982332, 53.31887839323899], + [6.180953060099945, 53.320681094861044], + [6.180715202548973, 53.322484543823002], + [6.177815588034155, 53.325266460658597], + [6.175255957761687, 53.332566641499092], + [6.176018112299889, 53.334651001782944], + [6.181100440169891, 53.338499305393988], + [6.182576716481958, 53.33873633660788], + [6.184933950191922, 53.336728300467684], + [6.192448792054207, 53.333255813784767], + [6.195386634546321, 53.332647634287419], + [6.199117597886062, 53.333125314761183], + [6.200754092420869, 53.333934642370664], + [6.195790438504649, 53.332924064461807], + [6.191907457254024, 53.333896068138998], + [6.191001562011306, 53.335207058585013], + [6.192133191985372, 53.336357917081742], + [6.188626000927595, 53.337966679610787], + [6.188103453247937, 53.339266187607834], + [6.175011660953164, 53.349811458732532], + [6.174318392565558, 53.350845648809305], + [6.175432922269516, 53.354927698597045], + [6.180790571155739, 53.357294901044014], + [6.19679440053847, 53.352685289469576], + [6.197785279612223, 53.349300315197858], + [6.196163878654469, 53.345158652999558], + [6.196552568298958, 53.3411572303879], + [6.198016752016081, 53.340191752855326], + [6.197305479808961, 53.344133245137989], + [6.198867043136864, 53.344391885641429], + [6.200156312115094, 53.342946942413242], + [6.201116331229972, 53.343458828543859], + [6.201015766413108, 53.346036534491418], + [6.200247259466948, 53.346774626470108], + [6.201448266292897, 53.347591126491565], + [6.204086552786844, 53.353436230535607], + [6.206687357187467, 53.354731646361671], + [6.20791992463811, 53.35400465973369], + [6.217588212957486, 53.353719563146193], + [6.218891295413685, 53.350356008181883], + [6.217558967921543, 53.348339725875896], + [6.218098491504278, 53.345998942372432], + [6.221420059616595, 53.34224643351115], + [6.22441493437954, 53.340486028093494], + [6.228334012123503, 53.339159631709535], + [6.229789195980622, 53.336726652431793], + [6.229445268736126, 53.331975147592225], + [6.230934484628151, 53.328972014989532], + [6.229972285450966, 53.333536301009545], + [6.230613493743592, 53.334977698781643], + [6.233142197764373, 53.336795200326115], + [6.237887528167117, 53.335077496924065], + [6.238202579655768, 53.335785329448711], + [6.236019101967024, 53.336603765305881], + [6.230927413706188, 53.340592581817731], + [6.228207357712156, 53.341712041962289], + [6.222949496287062, 53.345935000347424], + [6.220686945601797, 53.3485932327659], + [6.222731057274506, 53.351522089302861], + [6.224296006938062, 53.350854010905564], + [6.228195137026031, 53.344505262917664], + [6.230647608408504, 53.342867416385694], + [6.235963473798754, 53.341431058785076], + [6.242823784862768, 53.343210494812837], + [6.249695705250756, 53.347426475466989], + [6.253635268382442, 53.347978278158443], + [6.264440793092639, 53.345760127297794], + [6.273025249155861, 53.344981721618574], + [6.278605271895095, 53.342531113541071], + [6.286901118202813, 53.341026278562353], + [6.280503486315414, 53.312581497236707], + [6.284027849174904, 53.311792178745947], + [6.286763368586267, 53.312010377229953], + [6.292779403238588, 53.309892168839163], + [6.293579296993696, 53.308615238217953], + [6.29401651372434, 53.308368589799528], + [6.290250241262453, 53.305377696377526], + [6.279478703586023, 53.303324393120874], + [6.278307245155682, 53.302730948147463], + [6.274488074828056, 53.299147398535126], + [6.27437501617544, 53.296488719699632], + [6.270286749651254, 53.293159743114991], + [6.27075499232094, 53.292060152166918], + [6.26926793213365, 53.290278476171324], + [6.267456638884205, 53.290854865669452], + [6.259903726075851, 53.291075722192758], + [6.254266127056684, 53.288642850561374], + [6.252941206113961, 53.284459259630324], + [6.251408793910344, 53.27725498116088], + [6.252965007021565, 53.273467875237401], + [6.255763363691479, 53.270836501829855], + [6.254943534038439, 53.268524559864339], + [6.25347420830628, 53.267724640746565], + [6.249977359557612, 53.267220009393412], + [6.246863242240255, 53.268295843038757], + [6.243625084558496, 53.266459539824538], + [6.243484569222636, 53.265459836807452], + [6.241623586756216, 53.263951695254384], + [6.239415730849003, 53.263143247772241], + [6.237973516470986, 53.261582748103038], + [6.238763097499461, 53.259681045504053], + [6.237584256581087, 53.257547170909454], + [6.234944895137296, 53.256703911403008], + [6.232173118714244, 53.256747424350166], + [6.231749154748194, 53.255946639913269], + [6.232625335974498, 53.254563928674656], + [6.235100749244839, 53.253354855644488], + [6.233665253406248, 53.250399010266072], + [6.230318549130547, 53.250426430715798], + [6.229601638346954, 53.248913209128098], + [6.232075325580595, 53.24712467566949], + [6.231094935600611, 53.245105374255509], + [6.229707282889536, 53.244751911591948], + [6.227743402939055, 53.245239684771185], + [6.225111599886265, 53.244590432397118], + [6.219453559965274, 53.242866762366198], + [6.217978307973344, 53.241932142319889], + [6.218449585222227, 53.241691315120121], + [6.222823513827016, 53.239497684647105], + [6.224615989124095, 53.239700953052825], + [6.224972126621878, 53.238592850932456], + [6.220239124123794, 53.237347772478948], + [6.215542592870596, 53.236985166601251], + [6.214806021069684, 53.235648539850885], + [6.214584005911955, 53.233710709161976], + [6.221680562047064, 53.231667708912894], + [6.224632166776003, 53.230073806670276], + [6.225339527537963, 53.225455393286559], + [6.230173390514749, 53.22244044328172], + [6.229988488866629, 53.217818461500016], + [6.228934171183216, 53.216805489611914], + [6.224750207135433, 53.21457858500203], + [6.224839690460797, 53.212003835637695], + [6.219242429120151, 53.206129822936937], + [6.209578244825125, 53.199960988961294], + [6.204114632652998, 53.199758486386152], + [6.19962149171507, 53.198355331193781], + [6.199830670560211, 53.195322709769798], + [6.197037217948592, 53.192015880304986], + [6.195276866740893, 53.191498513396326], + [6.193097496915122, 53.189277743759902], + [6.188034275501855, 53.182486727829584], + [6.18579116789778, 53.178832372702878], + [6.183016871329787, 53.173984372403787], + [6.181223946744884, 53.170348276032662], + [6.177337071780763, 53.1669827758301], + [6.176750429951674, 53.159504524474805], + [6.176303946553691, 53.15278530491679], + [6.175677646843077, 53.135076387623876], + [6.179069352448493, 53.133992035591149], + [6.18571676603592, 53.129213451339531], + [6.192941256253373, 53.123356605010287], + [6.20238159760095, 53.117220602139469], + [6.205609884652384, 53.115466465585726], + [6.206205460674664, 53.115447774218957], + [6.206271387691421, 53.115444495455918], + [6.212860607792623, 53.115232549497584], + [6.222606836227472, 53.114914157153549], + [6.225961881676192, 53.114300151035998], + [6.239364030296112, 53.113388836749778], + [6.251264774304385, 53.113936970558946], + [6.254381516736233, 53.114131505177724], + [6.255594914171581, 53.114199726897724], + [6.261684662553052, 53.114292705827779], + [6.274138896114069, 53.111161176566895], + [6.283050376969637, 53.106863149093542], + [6.290565672904171, 53.099829061893324], + [6.293172693972333, 53.099210026595287], + [6.296427005389894, 53.098443349571113], + [6.315157520479405, 53.094052795761073], + [6.305273833255009, 53.081189559531879], + [6.332055420876506, 53.075279389701997], + [6.332381614929978, 53.075207197934589], + [6.351724654395621, 53.070931523018828], + [6.367810592797741, 53.067360006499406], + [6.364924039471481, 53.051977897884406], + [6.363218901193229, 53.039262464912042], + [6.362521445096553, 53.033969039947593], + [6.374072010977171, 53.022956351664291], + [6.402686536566359, 52.995653351973559], + [6.413279911346295, 52.985522938008188], + [6.422623028951781, 52.976593142630591], + [6.427614782917281, 52.971815410697282], + [6.402671230076606, 52.943381820391508], + [6.393435844343447, 52.932843457593968], + [6.369026260985946, 52.921975636245911], + [6.333280618345186, 52.906356075041522], + [6.302985328578489, 52.924972376618115], + [6.283155315859685, 52.926147746958954], + [6.256593136483444, 52.92764124267174], + [6.247553019645345, 52.923691695840155], + [6.24725876259368, 52.923347455340597], + [6.244829665865406, 52.919587008988465], + [6.242343088865058, 52.918345227158568], + [6.232291126322971, 52.913438189439496], + [6.228785365628013, 52.910302305683835], + [6.206900080074474, 52.890743870497104], + [6.200812023581668, 52.888378591909969], + [6.190679824540435, 52.884478864738604], + [6.160459620813812, 52.872520785146804], + [6.141219166016294, 52.863799661505212], + [6.140512593995468, 52.863478125147608], + [6.120994817124883, 52.85464976390125], + [6.119819962534488, 52.854214951975131], + [6.093193170673051, 52.84457942655073], + [6.087480492563278, 52.843113871265672], + [6.083297856981359, 52.839486984779818], + [6.081000340339167, 52.838732331827288], + [6.061513021804995, 52.839296299649781], + [6.054547067843517, 52.837631321838252], + [6.052607420382017, 52.837339128112205], + [6.054979297890518, 52.831347295160164], + [6.059300143667815, 52.826805569607892], + [6.059951106252544, 52.826118545057554], + [6.057816472255563, 52.825452666128896], + [6.052935931019826, 52.824123373686746], + [6.046957515416836, 52.820526393002986], + [6.038209087211102, 52.817714117474537], + [6.031168452057453, 52.814990716886214], + [6.026616571293874, 52.821077610190102], + [6.024559034845885, 52.822544670862911], + [6.017899666686065, 52.821900345099834], + [6.007483470046802, 52.820046477059712], + [5.999078457544251, 52.816910015703876], + [5.996507928704347, 52.81656151777424], + [5.994209580267947, 52.819116251471669], + [5.990574727466213, 52.821596568929586], + [5.988904209870975, 52.822063961650009], + [5.986473146477343, 52.821703129686661], + [5.986394372567146, 52.821853992119294], + [5.98177668117295, 52.82928327360333], + [5.976175056507842, 52.834748180170727], + [5.97287079966318, 52.840713578282148], + [5.972438159722887, 52.841916703221855], + [5.973127867067815, 52.842469722606957], + [5.969976339943783, 52.842375331281715], + [5.958731390608437, 52.839765969450603], + [5.955792409750702, 52.837441854276157], + [5.956853431928814, 52.834442712344547], + [5.955783745481338, 52.833234577185252], + [5.946247359584803, 52.83742472352538], + [5.941975828533031, 52.836019915567348], + [5.93801956586292, 52.835381777743891], + [5.930157818862098, 52.835012914917755], + [5.92673222920024, 52.833291776484323], + [5.930653870093269, 52.832247568227231], + [5.930115193728405, 52.831356549771513], + [5.926983337088105, 52.83157679309592], + [5.923097708187821, 52.831034511286369], + [5.922747329713064, 52.82987258884868], + [5.926409645495119, 52.82818345291598], + [5.922946240771526, 52.827525843029875], + [5.924202090384524, 52.823589851224057], + [5.91632130189195, 52.820280344989264], + [5.913860015934286, 52.818622122043848], + [5.911965791882634, 52.816115956648979], + [5.908583674903347, 52.813712086938942], + [5.900657245017001, 52.81182487322814], + [5.897881549639862, 52.807803319882936], + [5.892782001281196, 52.806050900121477], + [5.882578018328498, 52.803919608324726], + [5.879580889345576, 52.801202685466762], + [5.876292314449033, 52.800854879479893], + [5.868679712319216, 52.802726236938135], + [5.865636209932971, 52.804650462912917], + [5.859640029018048, 52.804536251972692], + [5.857026842891868, 52.807228868441307], + [5.854802574637691, 52.805518204361277], + [5.849951893859179, 52.806161694818783], + [5.843593714504014, 52.805032550126654], + [5.842202039162829, 52.807584272919648], + [5.838444490348564, 52.80594703631234], + [5.836101933714859, 52.805954617346181], + [5.837365416913884, 52.808261822028626], + [5.833411225902751, 52.811760626366457], + [5.8287206466135, 52.813426940983092], + [5.824154564575789, 52.813297061987548], + [5.822354395953925, 52.815109435638803], + [5.820306103889765, 52.815950201353346], + [5.81989692765772, 52.816903311808723], + [5.819744269126772, 52.817278396124834], + [5.810015612248555, 52.813883558573366], + [5.795177104753978, 52.806521844764909], + [5.789806743631398, 52.803691492857887], + [5.787375562664476, 52.808969018782399], + [5.784382212596454, 52.817475752114063], + [5.74880742689633, 52.839679590136122], + [5.745718989964205, 52.840236235237512], + [5.724682056336879, 52.843982248713871], + [5.724823950259122, 52.843623313962489], + [5.727247360452667, 52.836916202543215], + [5.729574063858867, 52.833726562659024], + [5.728663508300948, 52.833398016538808], + [5.72269914010015, 52.836074640525823], + [5.713081435685073, 52.838027248621152], + [5.712053330570114, 52.840074628895003], + [5.712701362207304, 52.840999265484001], + [5.710654886122695, 52.840402771488101], + [5.710200477034834, 52.838949397604139], + [5.708841080470259, 52.8384856095266], + [5.710025900954331, 52.840714860125281], + [5.716629880120237, 52.84256575510868], + [5.715263722054559, 52.843283850984946], + [5.714605550723404, 52.842535266751973], + [5.711366318164791, 52.84164442242114], + [5.709753281794252, 52.841876737146492], + [5.707939676851321, 52.838145582130217], + [5.70616400973217, 52.838785620413383], + [5.707783852645187, 52.841751282606999], + [5.702351262115219, 52.843488812752625], + [5.705672588817051, 52.841705493170132], + [5.706056413344031, 52.840754401532685], + [5.703305166671777, 52.837758901860219], + [5.699349692958837, 52.84085839474826], + [5.70019496883814, 52.842916919424326], + [5.698004965344176, 52.844240211587127], + [5.685150124277889, 52.845944192679021], + [5.683701169992545, 52.844782596880684], + [5.680317477583701, 52.845251830054004], + [5.68040773411759, 52.845945917401828], + [5.679686169532582, 52.846170510864489], + [5.678530566286799, 52.84513685924874], + [5.673564698237652, 52.845119123403421], + [5.657598602113397, 52.843695722338182], + [5.653903695166678, 52.847247063643955], + [5.65454546891161, 52.847781550244235], + [5.656382513050823, 52.847677201466958], + [5.657249039378502, 52.853997795234264], + [5.643796812726344, 52.861016817881421], + [5.634625141957168, 52.858368275831928], + [5.618465925552419, 52.850966193250976], + [5.616605627116738, 52.850709094663891], + [5.607885006252131, 52.851806190086123], + [5.60137579314615, 52.851984711728726], + [5.585257369282962, 52.849378370211426], + [5.582704529116289, 52.847338887212082], + [5.582981779240419, 52.845097747515297], + [5.579995613526265, 52.839732330152373], + [5.573091563136752, 52.836169609561225], + [5.567341607040711, 52.834230365915367], + [5.558891038639376, 52.833012542709675], + [5.552766910507888, 52.832590028328468], + [5.544853697969398, 52.833065986290912], + [5.526952915553372, 52.837450964217233], + [5.500010162740908, 52.845773492409037], + [5.486178962362544, 52.849183905829186], + [5.453665691187268, 52.854706457104477], + [5.450422643989906, 52.854088167156526], + [5.449016623298996, 52.852132614113252], + [5.447329377383812, 52.851523167179444], + [5.441004630129392, 52.850916188113921], + [5.438533780639587, 52.85110275523401], + [5.430793509751573, 52.850039296081711], + [5.426126300775532, 52.848135046497625], + [5.414882143657682, 52.85025458066518], + [5.398080976612366, 52.857100523008974], + [5.38986106007875, 52.861942657765155], + [5.384202639848765, 52.866520575095464], + [5.379276636802498, 52.868505547518396], + [5.373745065055144, 52.871180851171324], + [5.369192555257483, 52.872390413003721], + [5.365093751676282, 52.872784051021547], + [5.366403396493452, 52.873548408747801], + [5.363421982383413, 52.876563988687096], + [5.362679845518538, 52.87912333509292], + [5.359722632375798, 52.878971573022248], + [5.356444425968598, 52.884261097572043], + [5.355084485745688, 52.884973140426929], + [5.354300857419878, 52.886317768240779], + [5.358186499354784, 52.885953894939767], + [5.356762739927664, 52.886580415322591], + [5.361367727791883, 52.887027900862527], + [5.36131764614329, 52.887558780520415], + [5.353944567610911, 52.88735508877037], + [5.357631193664623, 52.88910888136364], + [5.360351937219225, 52.892324698856029], + [5.364282473771468, 52.894247252041801], + [5.36881320746934, 52.898004719454676], + [5.371372743217528, 52.899400264385761], + [5.383368566867667, 52.902588382382952], + [5.38879328075937, 52.905436971862457], + [5.39090605252346, 52.905637758280101], + [5.393444387879485, 52.90470719188577], + [5.401018599698282, 52.906050773231172], + [5.406790218571174, 52.910114027132202], + [5.407219704737348, 52.913229574014224], + [5.407926386984056, 52.913765736225074], + [5.407154657762193, 52.917398647936785], + [5.409288956418786, 52.921508842381932], + [5.405893495765129, 52.926214371565813], + [5.402208352670915, 52.936710133996478], + [5.401025366079479, 52.939182352723968], + [5.39590494998019, 52.943028970371998], + [5.402192579606322, 52.945139564411356], + [5.401724923151355, 52.94448536818819], + [5.403085364352322, 52.943898894687855], + [5.402837804692679, 52.944687143857209], + [5.403660813108839, 52.944755525765679], + [5.403742187417267, 52.943986102984752], + [5.40482171287306, 52.943969111359834], + [5.404862224727188, 52.945088387485072], + [5.406373511932956, 52.945115998329108], + [5.406390914002976, 52.946921043833321], + [5.404080861934073, 52.946970598283137], + [5.402349343946915, 52.946432210457317], + [5.403948953240223, 52.947202327668826], + [5.406597250148493, 52.947190861406291], + [5.407867753350842, 52.946422222483946], + [5.409115221957209, 52.947888001538871], + [5.408810119293179, 52.950642295059623], + [5.409578461548141, 52.951445900041314], + [5.408939913042164, 52.953957818184207], + [5.407727961840815, 52.953593564327193], + [5.406809325956595, 52.956259531521411], + [5.408346026816726, 52.956921394476581], + [5.408057058409945, 52.959557993700685], + [5.406112498790321, 52.959007020876058], + [5.404533063833816, 52.95977497668374], + [5.410842858652522, 52.960539752927552], + [5.432228610486316, 52.971031634075352], + [5.431975435187686, 52.971201978151178], + [5.421824361598422, 52.9663308110473], + [5.418317116654172, 52.968918691167516], + [5.417474425769059, 52.968869268749977], + [5.418075587765898, 52.966612422528073], + [5.419452844283201, 52.965192516248749], + [5.411333670949063, 52.9612946147126], + [5.412784610009947, 52.963525973054516], + [5.410296650379063, 52.970394730430506], + [5.408135893649426, 52.974269461877263], + [5.405871033201422, 52.976371737254183], + [5.402894894249741, 52.984424003533384], + [5.399472242358218, 52.990007067021459], + [5.398623192756124, 52.996639585875215], + [5.396796789202103, 53.00281965138339], + [5.401147575637308, 53.005299495770196], + [5.40536904968146, 53.0117473566565], + [5.406887252774149, 53.011349568339249], + [5.407902136847352, 53.013317045832864], + [5.405711071046669, 53.012592915633064], + [5.404700595119072, 53.013348387359471], + [5.406551342358656, 53.014455537871882], + [5.408385677653891, 53.018467587705942], + [5.408094151308249, 53.020297256217511], + [5.397670237525345, 53.023432912516036], + [5.396771974945787, 53.02507469141463], + [5.398385552226037, 53.027894131804835], + [5.396108410029949, 53.028629890352398], + [5.396605045437424, 53.030141609379093], + [5.401185448279568, 53.030332397999175], + [5.402877160971217, 53.031638472951499], + [5.400952719498713, 53.035292970896677], + [5.401063646216954, 53.037696691519855], + [5.402224365151999, 53.037790004790203], + [5.403679145728778, 53.036880800292387], + [5.404994958615958, 53.034138478843253], + [5.406820869464688, 53.033092653594373], + [5.403126360431421, 53.039588138082145], + [5.404397373304004, 53.042124564797753], + [5.40458564302651, 53.047241331340963], + [5.403505284294535, 53.048521409071363], + [5.403211613852051, 53.044091553196445], + [5.401302885459628, 53.041212813265616], + [5.400067031399786, 53.03363552897158], + [5.39869535894604, 53.032476288523426], + [5.394287458280117, 53.032127424714169], + [5.392870421607786, 53.033593860663125], + [5.393612101751941, 53.034446591318357], + [5.38920238421462, 53.040628221002621], + [5.384927810763093, 53.044589689545795], + [5.384067466187545, 53.045007804788959], + [5.376188317382854, 53.042819508277447], + [5.374237803743993, 53.044306982340359], + [5.37362647376715, 53.045705982899648], + [5.37992764988235, 53.047101918536519], + [5.380173469294392, 53.0478676778446], + [5.378036587494483, 53.05338276523797], + [5.37606553835575, 53.054749596921276], + [5.392935158272064, 53.054838700734351], + [5.39596522302087, 53.051685367742337], + [5.395031079921647, 53.05022018318121], + [5.400425077884613, 53.049896115021731], + [5.400888098188621, 53.050464928434792], + [5.396745469475804, 53.050644322208996], + [5.396606412605658, 53.0516200887458], + [5.397535855719712, 53.051873330139593], + [5.396639725480564, 53.052079280291593], + [5.394840457207574, 53.054809934471841], + [5.397089139040912, 53.054800871564105], + [5.39916010285453, 53.051792829156355], + [5.400227856567861, 53.051751668165686], + [5.398277520632223, 53.054762907859299], + [5.401206070457254, 53.053908072896817], + [5.402670467120679, 53.051679584850241], + [5.403753645833699, 53.051744479254609], + [5.402106345738395, 53.05444433316493], + [5.40104214333014, 53.054760199144951], + [5.397083718508212, 53.059288614217031], + [5.394835118203261, 53.060855559147988], + [5.392629399861388, 53.06316668172083], + [5.391186350811884, 53.066770713496041], + [5.389931705787281, 53.069516373161441], + [5.391185209135918, 53.072957308872745], + [5.389397793307801, 53.075407999577642], + [5.389427099829621, 53.076787000141927], + [5.38274941846476, 53.084934617482602], + [5.379409270260854, 53.091650182651335], + [5.37459947019348, 53.091025158685149], + [5.350809946548255, 53.077326232506351], + [5.343728926588366, 53.074533368339438], + [5.342898549563841, 53.073744173974845], + [5.33806905811545, 53.07272958430007], + [5.339052184651511, 53.068007571487627], + [5.338188738567959, 53.069164343512021], + [5.337555906735422, 53.069118906665338], + [5.336243022327296, 53.073248777817248], + [5.335058639079544, 53.073706473143559], + [5.334533687377108, 53.071986825420588], + [5.335360476576511, 53.069881407811906], + [5.336493769024362, 53.069986387637549], + [5.337198876952271, 53.068385177444448], + [5.336004908752508, 53.068240217776527], + [5.337390537083721, 53.064819046948649], + [5.333554324001499, 53.072382007685526], + [5.331176745645497, 53.073284405905845], + [5.327424818535786, 53.072678582989894], + [5.326640336567069, 53.071363326557083], + [5.326351946287198, 53.071838211813557], + [5.322907356084633, 53.071880429418862], + [5.301680037506839, 53.068517945361371], + [5.297125030128496, 53.06724262846663], + [5.221807979915577, 53.028095889195846], + [5.213385540607861, 53.02321768067673], + [5.212708963038119, 53.02126423030299], + [5.210963146562138, 53.020279913239364], + [5.207916817960266, 53.018926059873444], + [5.206564425256842, 53.019527633809915], + [5.204699341152399, 53.018649506782218], + [5.207226267105897, 53.017069453921039], + [5.202528814417827, 53.017510957704403], + [5.166762501938457, 52.999259082829681], + [5.165883135336642, 52.999867195636575], + [5.201905610991891, 53.018764168435474], + [5.201614696756277, 53.020844154756197], + [5.203528849019309, 53.019615056639815], + [5.293235727455601, 53.066552459561706], + [5.301157221422162, 53.069286680596498], + [5.323648848234757, 53.072844163963047], + [5.324918965367329, 53.074360242668945], + [5.323508371027731, 53.079110357762147], + [5.327134961049594, 53.079541568029939], + [5.32368289126929, 53.078728055356045], + [5.325831724707937, 53.073704770529986], + [5.327360725697706, 53.073017047547765], + [5.330979703333136, 53.07362678201325], + [5.332331275559273, 53.074686316379768], + [5.331460805136862, 53.077537524929106], + [5.333294300164386, 53.079333357528839], + [5.333098380551717, 53.080174730536918], + [5.334218432571656, 53.079600076917629], + [5.331966288131603, 53.077372318296518], + [5.332937921364333, 53.075139510901522], + [5.334875794546039, 53.07419143918483], + [5.335489677020077, 53.075468102727406], + [5.33492419257615, 53.077075095097037], + [5.336567653067432, 53.077262444403466], + [5.338370413937096, 53.075117158029045], + [5.343711153755462, 53.076078567672027], + [5.348536901799222, 53.07770487546852], + [5.377868939429979, 53.09493783207278], + [5.380652733826013, 53.09820292757778], + [5.382386105985614, 53.104603412411429], + [5.379189413149477, 53.107119664372178], + [5.379019370772635, 53.108061415886382], + [5.387415291173631, 53.11118139988897], + [5.39605820684779, 53.114484257734709], + [5.39902788829495, 53.116108938427438], + [5.400927673625276, 53.117522413042643], + [5.40439961802063, 53.121525946364429], + [5.406173553673384, 53.126723029661406], + [5.409707134087991, 53.137411048082967], + [5.411598391383442, 53.151939013229452], + [5.412374916354812, 53.156312336181152], + [5.415803158390279, 53.164584577445076], + [5.415014986877138, 53.168724271388989], + [5.411208065124401, 53.169793058051091], + [5.407683907827538, 53.172641619447298], + [5.404438170545657, 53.173341775592085], + [5.402748902224046, 53.17598780201682], + [5.404575780393063, 53.173585429822161], + [5.408086212327554, 53.172716974350045], + [5.411190956888108, 53.170085967690319], + [5.41513450555951, 53.169423627838526], + [5.413971007649877, 53.17073164624756], + [5.413424808974857, 53.170156645627337], + [5.409396367955609, 53.17462937187311], + [5.411180325864652, 53.173550934677735], + [5.411031939884294, 53.175296512822577], + [5.413881156397208, 53.175583592224626], + [5.413891717629102, 53.176130117612338], + [5.411786770916744, 53.175488328268969], + [5.410860470745043, 53.175982599665552], + [5.41922762299165, 53.179088687938382], + [5.415020438390676, 53.178688172537917], + [5.414620972792206, 53.179547722990158], + [5.418269244590224, 53.180298176341651], + [5.41968898105629, 53.182294813341684], + [5.426009514004351, 53.183858669098157], + [5.434957694030262, 53.189065978116297], + [5.437998900174162, 53.193090127556907], + [5.438981410265288, 53.193833177539226], + [5.43554033069482, 53.195260857863801], + [5.434662767412241, 53.194525857837448], + [5.432334414392816, 53.192515218913563], + [5.4348084331782, 53.19149414927918], + [5.434345800706187, 53.190727634681146], + [5.432952346563018, 53.189725290885647], + [5.431392177337687, 53.189912035688465], + [5.427537581520757, 53.185475227187325], + [5.413828706986429, 53.182279435194694], + [5.411869975189599, 53.177975273013104], + [5.408854699485691, 53.175578341603632], + [5.40588013200412, 53.175199919421004], + [5.408443676124321, 53.175880828131682], + [5.411102574236703, 53.178068519922007], + [5.411924602732986, 53.181472404282879], + [5.413245567176316, 53.182775257002127], + [5.422001053035251, 53.185036120755662], + [5.425612070514479, 53.191210322327585], + [5.42872835102578, 53.196705207889828], + [5.437989345580211, 53.20983813289125], + [5.448775464173932, 53.220299212582994], + [5.45267777851894, 53.222694458976768], + [5.461666540630104, 53.226473227594262], + [5.473255142700914, 53.234743549727334], + [5.480126619691761, 53.237924983549995], + [5.482719362615295, 53.240623477479645], + [5.489694600941426, 53.242036597315895], + [5.504440647414735, 53.248709507315354], + [5.515272472862877, 53.252005927446106], + [5.516182965131835, 53.253274910477238], + [5.519280161681141, 53.254353759895743], + [5.524365590436846, 53.255781593692483], + [5.527288696638237, 53.257344233095537], + [5.536384898745951, 53.264080694948312], + [5.538119516995848, 53.265616535158948], + [5.54635288973329, 53.271745188818983], + [5.552850876741779, 53.274774351740014], + [5.561746265172704, 53.285050503499349], + [5.578509438852818, 53.29602020506006], + [5.587016479780637, 53.300467140126344], + [5.617433004204958, 53.309762551794272], + [5.625673828992907, 53.310733801355198], + [5.628335247313273, 53.312720911690853], + [5.634126967119803, 53.31453441009382], + [5.643445568215834, 53.319037257878414], + [5.680347487021077, 53.328109113977568], + [5.71736900759722, 53.338914859054206], + [5.732394930322369, 53.343015178253744], + [5.759968595785566, 53.352211375681186], + [5.763501170157321, 53.350572520586844], + [5.765933876292638, 53.351538032661004], + [5.767860303318568, 53.354055611253614], + [5.774010836431238, 53.356049508885391], + [5.779115973034908, 53.355602313180881], + [5.783049547514556, 53.35647778518922], + [5.783237261000767, 53.357335853055758], + [5.788450942754778, 53.359793975416949], + [5.790911133448613, 53.359399422417582], + [5.793159330955334, 53.360127641524542], + [5.794053436427404, 53.360752237263092], + [5.79167237855927, 53.362411538744752], + [5.813878340909633, 53.367425188611357], + [5.819283920740336, 53.370019888953543], + [5.824412037744414, 53.370613774431419], + [5.825251332068498, 53.370319587093235], + [5.827031281866073, 53.37090445881347], + [5.830816594313148, 53.370938628164872], + [5.831057389670749, 53.372323019533184], + [5.834238684692341, 53.373989309538871], + [5.837690692415122, 53.373570022833448], + [5.842375562486207, 53.375033806026899], + [5.843250737717438, 53.376459359736081], + [5.842550480253121, 53.37775126412663], + [5.844844715272559, 53.377772175776634], + [5.846855624696449, 53.376450120772347], + [5.847656897886435, 53.376920730833255], + [5.846442662321426, 53.37822955132021], + [5.847641120476585, 53.379871171691633], + [5.851382096938167, 53.381063331182268], + [5.85351967851981, 53.380954704567436], + [5.862226096643932, 53.383205845945099], + [5.875194977831549, 53.385124673040643], + [5.878099647090778, 53.38660084557543], + [5.885390364103355, 53.388725672381575], + [5.878394346969377, 53.395572219876783], + [5.881523463042755, 53.395134312146517], + [5.88419690628797, 53.392786442809481], + [5.88533067318129, 53.392840018866721], + [5.887873356070001, 53.39086673031106], + [5.907342497798007, 53.38842996085684], + [5.916761025328571, 53.388425714950358], + [5.92015823240813, 53.389073804088937], + [5.920461945911446, 53.388699829253355], + [5.93313094456438, 53.388308157622241], + [5.947160910171361, 53.390841872840177], + [5.958715149488364, 53.393588344955582], + [5.969860140047172, 53.395018753310659], + [5.971855730544831, 53.397481393283449], + [5.974475213029501, 53.395850583960183], + [5.977555847343472, 53.396121338971845], + [6.006304585927557, 53.400978779086515], + [6.015649225134982, 53.402926737792946], + [6.018894973825613, 53.403078102933002], + [6.020671488876351, 53.402622550089312], + [6.022835218735923, 53.403151225607083], + [6.03370122812046, 53.403325694334235], + [6.060761264418834, 53.406433235575172], + [6.069149312794536, 53.407308783609949], + [6.077202128426937, 53.405528683239069], + [6.079490436647907, 53.405934619229718], + [6.086119292232866, 53.404730964854643], + [6.092576343801164, 53.409621710288093], + [6.091853188942959, 53.407627892838661], + [6.094823913937176, 53.408069991075337], + [6.113491762306714, 53.406325316098865], + [6.118111052659779, 53.404803265565327], + [6.124044189291191, 53.405446725167074], + [6.132806649108304, 53.404658508809575], + [6.137385741806438, 53.40357956973439], + [6.139072696695293, 53.403524058486873], + [6.176870982415878, 53.414654766513188], + [6.183482565933025, 53.414291616799979] + ] + ], + [ + [ + [5.469784612553642, 53.406515016008235], + [5.458697627337918, 53.404579890906753], + [5.427969034428659, 53.40413734987419], + [5.404471970054293, 53.404611840595621], + [5.392142449352289, 53.403311109097665], + [5.38391659607744, 53.401970260960979], + [5.377709355706308, 53.400026390458983], + [5.371535640043366, 53.396534298405491], + [5.367874951454776, 53.395178240881506], + [5.356792789459524, 53.38776944776987], + [5.349588962001217, 53.38505324833001], + [5.344667414696239, 53.383198154076503], + [5.337064434923458, 53.381537390409953], + [5.332816452692788, 53.381443499657863], + [5.329449033673408, 53.380224159647575], + [5.324887566958506, 53.378217081449613], + [5.32215793611941, 53.378253611494465], + [5.313214531287623, 53.380318081578409], + [5.310774163456362, 53.377919663860339], + [5.308065796980039, 53.376700081110222], + [5.305398373995685, 53.375881399436899], + [5.300192018186977, 53.375859220115601], + [5.296539755732618, 53.376134565972336], + [5.295816789312751, 53.375562520049293], + [5.295507042446179, 53.371176763855225], + [5.293497933508537, 53.370439314145983], + [5.282974453725679, 53.372039683913549], + [5.278181596217784, 53.373366240049634], + [5.274546307412096, 53.373377254518388], + [5.267969240728348, 53.371432809797675], + [5.259728012346088, 53.372971826737746], + [5.256812423405404, 53.372727957854742], + [5.252866191817768, 53.369814319298904], + [5.243339177463465, 53.365996000042529], + [5.243556655073332, 53.365464835978081], + [5.237864486282811, 53.367200197832361], + [5.235746208891835, 53.366407493326363], + [5.233838612990156, 53.366586842562228], + [5.233163319203728, 53.366110399559695], + [5.226582112835387, 53.365686354791066], + [5.226038302618048, 53.3644027963322], + [5.222645130008337, 53.363992714309937], + [5.225911226821583, 53.364539146798194], + [5.226044807194975, 53.365716441526175], + [5.221255046267029, 53.36514559689892], + [5.22146570951566, 53.364411375315939], + [5.217755158321879, 53.360719095878189], + [5.21659602636315, 53.358535780735465], + [5.217627059002696, 53.357144722901424], + [5.216201048570325, 53.356230659610652], + [5.215197996678851, 53.357052621243596], + [5.212681636704059, 53.355908193892638], + [5.211343340354599, 53.356433703712831], + [5.209368543069073, 53.356819488401555], + [5.204397416061415, 53.355238728165808], + [5.198460871994452, 53.352436877272439], + [5.195714894056858, 53.349768927967581], + [5.18511503943998, 53.348788067390956], + [5.173690052819132, 53.34918227311077], + [5.165351846290669, 53.352180116806409], + [5.16180591359161, 53.35155167539822], + [5.155262158065823, 53.355180083861832], + [5.154538672175375, 53.358993055519996], + [5.165247687895015, 53.369801077637931], + [5.179370848929808, 53.381113790323724], + [5.181423800858019, 53.384325115685819], + [5.187988263646512, 53.387540443677352], + [5.193541399725064, 53.39254944466331], + [5.201438799890428, 53.394636638544775], + [5.251225948425164, 53.404089566398788], + [5.297268721157837, 53.411344308434757], + [5.314412361873794, 53.414009076345117], + [5.36401512534189, 53.421743152355468], + [5.376049526092452, 53.4231231767262], + [5.472747134410184, 53.441160133524853], + [5.494726662657246, 53.444207563320447], + [5.511056869173296, 53.445274622974289], + [5.526920848740771, 53.444587185869068], + [5.534015359114692, 53.443620685576512], + [5.540366735389495, 53.442035649586025], + [5.546183408683286, 53.439507673252798], + [5.544134682379573, 53.435872622362112], + [5.540956597829571, 53.433274308865322], + [5.528834135951755, 53.430274840844255], + [5.510819626079948, 53.427657672049122], + [5.476335018883563, 53.417473933431886], + [5.474345919012986, 53.413831041323768], + [5.474944612670577, 53.410753255284966], + [5.477987924137883, 53.40997917812863], + [5.476157465358524, 53.408359985054574], + [5.469784612553642, 53.406515016008235] + ] + ], + [ + [ + [5.731096486096011, 53.461633806188196], + [5.750284682365249, 53.460457551899061], + [5.771454877358262, 53.460494827296351], + [5.784580947591116, 53.461194597722951], + [5.883610246432203, 53.466789532510326], + [5.930623919162789, 53.468281256506465], + [5.959808279390691, 53.467977813603184], + [5.967844389885224, 53.46575523457566], + [5.969713584711872, 53.463392166104647], + [5.968555651178841, 53.458175307136983], + [5.966515812700407, 53.456246018596261], + [5.963352146354159, 53.454705043124946], + [5.963576242837853, 53.455511938438505], + [5.966055140195709, 53.456822176934061], + [5.967420401681916, 53.460588641184344], + [5.967400810433591, 53.461496857034184], + [5.965194409968073, 53.462120804668032], + [5.946493202508923, 53.459484705956946], + [5.944518279917385, 53.458319486266262], + [5.936561663384398, 53.457296624317713], + [5.930863837016996, 53.457750302404207], + [5.910218171783994, 53.457701784631112], + [5.901859947312381, 53.455754761190597], + [5.894799177864882, 53.453312043087777], + [5.890922405406429, 53.451197496903475], + [5.865129161542773, 53.448086458743084], + [5.865395446632631, 53.447470947147032], + [5.864057379189123, 53.447096350217208], + [5.833671312326207, 53.442840982832706], + [5.804972670112458, 53.43754345666607], + [5.788421707925973, 53.438164573054856], + [5.7800162088411, 53.437675670768087], + [5.775595663596088, 53.435874686943791], + [5.775286295524228, 53.433514981374465], + [5.773189427837147, 53.432676281952851], + [5.774432301367675, 53.434835914216663], + [5.77448704879255, 53.438108057211572], + [5.7724850033731, 53.439547380507385], + [5.752218418202464, 53.440353360136768], + [5.741067567312667, 53.442410760305513], + [5.730006874734261, 53.443024759808829], + [5.721954107992317, 53.441714742005253], + [5.715669442729461, 53.435706719473096], + [5.703655020129183, 53.430438673804751], + [5.703281258986751, 53.429779806187589], + [5.68931085593847, 53.427517580887354], + [5.680362958888001, 53.42465445973037], + [5.671768072426734, 53.424987440750044], + [5.670285529582656, 53.423197535621284], + [5.653085837377518, 53.426034260518371], + [5.651348915845492, 53.426060610090587], + [5.650048215330248, 53.424544859427868], + [5.642567566680805, 53.426275864113805], + [5.629730279559388, 53.430348290254386], + [5.61642957514101, 53.439516419660428], + [5.613529810655809, 53.44638119329381], + [5.61416770199539, 53.450633878929921], + [5.61566396453934, 53.453435729610391], + [5.620992219386338, 53.457130028376866], + [5.645491595284899, 53.469274796749666], + [5.650870591883689, 53.470727716978892], + [5.660151950012099, 53.471479913948038], + [5.669339004751964, 53.468244921266141], + [5.686517531431469, 53.464958423471401], + [5.731096486096011, 53.461633806188196] + ] + ], + [ + [ + [6.391841470184137, 53.514308452095371], + [6.384891426816449, 53.511457082703402], + [6.38070657711593, 53.511580786284689], + [6.37616913789986, 53.50938931997257], + [6.370658264961368, 53.510281108525426], + [6.364518879015917, 53.508053014852592], + [6.356101870041241, 53.506038619064284], + [6.347430751593031, 53.505964177129272], + [6.344420495889458, 53.506640386054741], + [6.337000364324737, 53.505795676754879], + [6.334079000358222, 53.504297830637704], + [6.335449829646715, 53.503344627281052], + [6.334779377968012, 53.50259866436155], + [6.330410322613908, 53.500913633919495], + [6.318955757579436, 53.499745568899705], + [6.307971372500462, 53.49558001687933], + [6.288934443093123, 53.491470238737705], + [6.282522623868038, 53.490837747298059], + [6.27593982243171, 53.489425832351856], + [6.273809051225832, 53.488580079609875], + [6.273988465225834, 53.487073644057226], + [6.271171098137902, 53.484866131641283], + [6.260010433602244, 53.482918625411472], + [6.262418678873287, 53.480795807306606], + [6.252231833161998, 53.477975918294547], + [6.241070629271584, 53.476575585422978], + [6.237168570119677, 53.47714040230985], + [6.227468233182141, 53.477038617339929], + [6.197467961554673, 53.47287200833712], + [6.196820426213142, 53.472403544361349], + [6.198714357044852, 53.470555668577148], + [6.20295373843143, 53.468532427364849], + [6.201995120843174, 53.468238467531172], + [6.195133097900972, 53.472404446459663], + [6.169391271669068, 53.472493456663955], + [6.167465060570105, 53.470067450238766], + [6.167867000938566, 53.46814877461248], + [6.166566888664422, 53.467924719567058], + [6.165841487602211, 53.471964414376593], + [6.160576245494155, 53.471923724716888], + [6.157068343977857, 53.470385662400389], + [6.155896036870052, 53.466671775715184], + [6.150294506708912, 53.465680965746301], + [6.152165920236352, 53.462086607071107], + [6.150098876732952, 53.460152592150521], + [6.145233515497917, 53.460848155414581], + [6.143727116210658, 53.462139892002533], + [6.145917359995061, 53.462098193210963], + [6.146502329207315, 53.462583694392357], + [6.145490396324666, 53.465977791210726], + [6.136336011613392, 53.469187785276738], + [6.131604567153812, 53.472650508273112], + [6.130388916409383, 53.474472629228039], + [6.131164048577699, 53.482066550055379], + [6.135275947859064, 53.487668089819039], + [6.139184852166118, 53.491456924285465], + [6.148969578505296, 53.498177867524447], + [6.154930609170841, 53.500058982894082], + [6.229096582843409, 53.505319029918489], + [6.289260315590098, 53.508540083367741], + [6.32005955207871, 53.511836064413245], + [6.345151666583166, 53.515507560547697], + [6.366921159423286, 53.517355031980287], + [6.382648662120669, 53.51702819290503], + [6.390816323109274, 53.515574396444713], + [6.391841470184137, 53.514308452095371] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 3, + "statcode": "PV22", + "jrstatcode": "2021PV22", + "statnaam": "Drenthe", + "rubriek": "provincie" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.493504978176614, 53.198497031158062], + [6.496427821252458, 53.198137445791872], + [6.506844779224921, 53.20014505107347], + [6.513336127350567, 53.196973556111566], + [6.513386061502077, 53.196937030339598], + [6.515715270695292, 53.198308162223128], + [6.5210950539001, 53.196939663039835], + [6.530492052047485, 53.195559285888947], + [6.529528999942909, 53.195194932840572], + [6.530398902998334, 53.19285652502365], + [6.534281932341783, 53.184085147789986], + [6.53803259929242, 53.18231164593022], + [6.540647892572659, 53.180158358933532], + [6.541496020117435, 53.179068167616407], + [6.543488632088939, 53.179015998121947], + [6.546253782738384, 53.180278613106402], + [6.548188376869989, 53.181097649571257], + [6.548377667107329, 53.180885739940607], + [6.548572227162428, 53.180669933632686], + [6.559319506419098, 53.169340990363409], + [6.56058742943369, 53.166127005250019], + [6.560893891502351, 53.165161993902245], + [6.563687534971404, 53.157638386942814], + [6.5647424119484, 53.157989675960238], + [6.581266719881016, 53.163543298758441], + [6.580972236211612, 53.162174529160261], + [6.583452738192077, 53.158635427235517], + [6.587089404098023, 53.156225970433397], + [6.584642623230098, 53.154305199200742], + [6.587386511486412, 53.148683248626362], + [6.588185516902842, 53.145322860733785], + [6.598547996001496, 53.14434332938071], + [6.599984548870764, 53.144723538832054], + [6.603270670200061, 53.14198145716886], + [6.606927131103308, 53.139241395475459], + [6.608217975949283, 53.138788278397207], + [6.609165308432202, 53.138455727396796], + [6.609165323598774, 53.138455629287229], + [6.610623525849829, 53.137943718992354], + [6.614400516914316, 53.135556969848835], + [6.613641349060896, 53.132694299687934], + [6.616651775843063, 53.132938359752067], + [6.617081158776983, 53.132163027865843], + [6.618976946858979, 53.1315808676693], + [6.618978424281383, 53.129880091216002], + [6.621320322195159, 53.128309111841709], + [6.621763407419588, 53.126350722841401], + [6.62283429343049, 53.125372988017645], + [6.627335665234265, 53.122833234982863], + [6.629471884785141, 53.119811968988714], + [6.630575763937219, 53.119385309565487], + [6.627937818508311, 53.117179125529866], + [6.628179595582314, 53.115991427109158], + [6.629660693976612, 53.114738692646938], + [6.633527843144274, 53.114381391343954], + [6.63659731799583, 53.112842885206106], + [6.637086433085573, 53.108300901378968], + [6.635671051373069, 53.107848089032672], + [6.634836332060067, 53.106202088834721], + [6.643502192887691, 53.108662352335244], + [6.651909436441342, 53.111159556510778], + [6.653648316482914, 53.111624773898491], + [6.67060255522676, 53.116516320431408], + [6.678771952296657, 53.118108199883871], + [6.694617426365979, 53.121057843012053], + [6.695367002833698, 53.121176027735324], + [6.718724775752073, 53.120247908458012], + [6.719831835414042, 53.120218548861807], + [6.72138087823072, 53.12013035191692], + [6.723256576505558, 53.120052424472391], + [6.737451031232, 53.119461741725544], + [6.742396646889584, 53.116370702554988], + [6.743253845067893, 53.116568312497186], + [6.744730019404909, 53.115248006837717], + [6.776509451119421, 53.094760676210598], + [6.789826927052185, 53.086307739025067], + [6.813944822016775, 53.070971595793942], + [6.814535610103802, 53.070598070850345], + [6.83717048095745, 53.056228449143063], + [6.843273105803446, 53.052344229473029], + [6.861287523113588, 53.040874030108377], + [6.897088075825417, 53.018051205602362], + [6.904620079860092, 53.01323454661312], + [6.907130589092307, 53.011628778121654], + [6.907184532557824, 53.011594259747632], + [6.922171340342012, 53.002004677557977], + [6.934680003200977, 52.993996116370994], + [6.935684881494103, 52.993352558029571], + [6.937064395951216, 52.992369765058072], + [6.939546412767319, 52.990237182476605], + [6.943151080138985, 52.987139493940795], + [6.94839549066657, 52.982631701168017], + [6.95286799068507, 52.978786543181421], + [6.956650520112806, 52.975533884065563], + [6.96958635972533, 52.964427227295751], + [6.97035273872457, 52.963769024688034], + [6.978563596938856, 52.956716862037226], + [6.980119967083349, 52.955382939393161], + [6.985586005261275, 52.950690233715925], + [6.988488328147293, 52.948205389989866], + [7.001023496987225, 52.937425462377476], + [7.002899299104572, 52.935814849455127], + [7.003831622120449, 52.935012023537531], + [7.013808641401015, 52.926446025763681], + [7.015697759972679, 52.924815667964751], + [7.022649485865437, 52.92086237823397], + [7.026854454451576, 52.919037023685014], + [7.029408055120653, 52.918610600212602], + [7.045531200389489, 52.915915508029663], + [7.039580651783275, 52.907560440523532], + [7.035661824812069, 52.902096966076833], + [7.016562138375007, 52.875446175672003], + [7.014799354237953, 52.872986590603844], + [7.018576993907993, 52.872975006608961], + [7.040286273537864, 52.872818227143576], + [7.043486303370146, 52.865218590005256], + [7.046433097686815, 52.86585561371772], + [7.047885001847459, 52.864506282928446], + [7.051461433282563, 52.861182082445701], + [7.052301021039904, 52.861495647241064], + [7.062726595931494, 52.851468455791689], + [7.063749751626792, 52.851789544185593], + [7.064270225375976, 52.851043257455615], + [7.065917384658401, 52.8516419787655], + [7.069138235326217, 52.847863682604277], + [7.07006817844323, 52.847793397077503], + [7.076236962648689, 52.850030135821697], + [7.076317142026071, 52.848746777089737], + [7.072193037229215, 52.845210946521163], + [7.071641023452733, 52.839278191089527], + [7.07237873507868, 52.838513911533461], + [7.092739745839721, 52.838196147568752], + [7.079512679459967, 52.821616901823987], + [7.071551265905011, 52.810421165493693], + [7.069074846315587, 52.780323488586596], + [7.064150968942356, 52.723202639403645], + [7.058587467649219, 52.676695963384823], + [7.056048105145718, 52.655394911411463], + [7.055063404294301, 52.647083637731065], + [7.05475532654192, 52.644422731635331], + [7.055640636658172, 52.6443596107434], + [7.055721194685782, 52.64349954571653], + [7.041732892053974, 52.632710093863075], + [7.038605888605382, 52.632870894006011], + [7.03546709222774, 52.634854499950158], + [7.028762366790605, 52.63464079372028], + [7.012491713920595, 52.636776592019572], + [7.006597560524087, 52.638521928466147], + [7.004490743987271, 52.64087695979628], + [7.001877405051151, 52.641918947363067], + [6.99923284173172, 52.64215277576416], + [6.992459132468821, 52.641332387933623], + [6.98427087438232, 52.643636811396199], + [6.981924664509467, 52.645012733286912], + [6.975984777487698, 52.646254680534405], + [6.974929651134003, 52.64610788506684], + [6.968319236277884, 52.641830366595066], + [6.959232896108735, 52.641730681292401], + [6.953558249916012, 52.638990404283575], + [6.945427238164811, 52.639342318746813], + [6.938603184842277, 52.637885307089704], + [6.934645155224218, 52.638323504950542], + [6.928521959423823, 52.640184859859588], + [6.91925740660582, 52.639845340921433], + [6.916339825090159, 52.641333110488681], + [6.914463855437996, 52.646481624718817], + [6.902938141679656, 52.648593847762569], + [6.897179818181854, 52.651371346802136], + [6.891497927968475, 52.651522979446192], + [6.879950358626917, 52.650548326536843], + [6.87281078279157, 52.653270562463362], + [6.864744743105194, 52.649858943391578], + [6.861875294764333, 52.649690865528981], + [6.853493316880952, 52.649524621352185], + [6.850838645453124, 52.648615185111844], + [6.837460219186323, 52.651943345800433], + [6.831704852712389, 52.651497991643943], + [6.827944211297718, 52.649181750629005], + [6.821640121531471, 52.647693414191231], + [6.818269991214711, 52.647727677064573], + [6.816152187106992, 52.648615721489939], + [6.808472961886862, 52.649022225442451], + [6.807290459146498, 52.649419994114133], + [6.805408872326061, 52.651373163871504], + [6.803210576071288, 52.651870164389358], + [6.794290030875347, 52.650656975160516], + [6.789897539533558, 52.652791623608266], + [6.786997759546383, 52.652377295981324], + [6.783817171995009, 52.652532504942563], + [6.77743098562105, 52.651660837478296], + [6.774175402512559, 52.650199282259706], + [6.772089306750182, 52.650051139922297], + [6.767879299166779, 52.64685108339247], + [6.758848434787202, 52.648825453921333], + [6.755505024175526, 52.647260004857579], + [6.753451637487888, 52.645806275705688], + [6.751908091343881, 52.647030494864815], + [6.753329816074106, 52.647579561858677], + [6.753535343295662, 52.648009906436748], + [6.752598320934751, 52.648110779763925], + [6.750490247806172, 52.646886677531803], + [6.741984122024043, 52.645332896625149], + [6.735726316928043, 52.640375305644604], + [6.730692485815065, 52.637524928079827], + [6.727031425387219, 52.633934332513043], + [6.726398176629472, 52.633220359455699], + [6.720786423768367, 52.63143218456041], + [6.718200919067435, 52.631306881856347], + [6.715015745481594, 52.630265523539641], + [6.710053190936475, 52.627820290039011], + [6.708021599286418, 52.628007129360867], + [6.707156273448319, 52.626765132972544], + [6.704965750457144, 52.627304374588498], + [6.702004610281781, 52.627267060375267], + [6.700860492729878, 52.628320248386565], + [6.700910940536847, 52.62940080549302], + [6.702865194145698, 52.630675150599529], + [6.704522860342877, 52.633139440902823], + [6.703266531124513, 52.634351400902759], + [6.703502532146316, 52.635144762908425], + [6.70349926983801, 52.635224780405402], + [6.70349777284995, 52.635232566285879], + [6.703474099458887, 52.636119053454152], + [6.706525586538685, 52.639542150186351], + [6.705697989431991, 52.640890297091623], + [6.702170403804108, 52.64108365874597], + [6.70116878236167, 52.641668381786822], + [6.702066040568925, 52.642466324265989], + [6.705383220870823, 52.643320837676477], + [6.705528641262629, 52.645652059617582], + [6.708025061937792, 52.647720730230034], + [6.708334119320393, 52.648758874611168], + [6.701414985955656, 52.650221843536094], + [6.68607907548071, 52.653430956960129], + [6.655650895814659, 52.662033678712092], + [6.646739297040324, 52.664639508014119], + [6.629453293898668, 52.669688244236845], + [6.614526879552949, 52.674049280336334], + [6.612980217746535, 52.673838294258992], + [6.603800904935882, 52.672585354035419], + [6.581049663762065, 52.669472945824268], + [6.552821467354362, 52.665594970813501], + [6.547745974423838, 52.66397137016488], + [6.529380751137911, 52.654507320282718], + [6.529283858260104, 52.65445276689745], + [6.513861541408605, 52.646293776227161], + [6.514013855060841, 52.645272023296023], + [6.517865837676498, 52.618917931804198], + [6.518021958752598, 52.617988592921321], + [6.518247061774791, 52.616468205732296], + [6.518604268518106, 52.614087849036345], + [6.512026919941861, 52.613649674107705], + [6.504653665949141, 52.617015302027994], + [6.500009990539272, 52.617969713830185], + [6.49153496227146, 52.619170290625398], + [6.483895584117513, 52.619076575178894], + [6.480581299190947, 52.618154774923397], + [6.478016263431915, 52.618631310520357], + [6.474200441801535, 52.620744995575507], + [6.472368808428336, 52.624579269234779], + [6.469965246847363, 52.624985689120386], + [6.464035396045955, 52.623875790968121], + [6.460707604499761, 52.616991435722802], + [6.453477052710062, 52.613955679527223], + [6.443032940809952, 52.616195504446353], + [6.442345429160807, 52.615803576371761], + [6.438410341009662, 52.617074513066783], + [6.434934447306289, 52.619285552049732], + [6.434471496634622, 52.620452646262649], + [6.435601476626049, 52.620853150562397], + [6.435639380887396, 52.621570126932262], + [6.43380314144565, 52.626409217854061], + [6.432992302652315, 52.627765053441649], + [6.431326228602897, 52.628369568165468], + [6.428176562017729, 52.628188507282466], + [6.426036737440593, 52.626512561992271], + [6.426886517733594, 52.624638421711843], + [6.421609657581848, 52.623044669424651], + [6.418808572780421, 52.619023204070892], + [6.416150258101887, 52.618667693381276], + [6.412049184693425, 52.619868530516136], + [6.411164235144903, 52.620823969520835], + [6.409502303742949, 52.621733264912606], + [6.406288950170842, 52.620564148739277], + [6.405893849230393, 52.618708827144026], + [6.406858390550336, 52.61778100342017], + [6.40372033172786, 52.616254226033284], + [6.401123577364213, 52.616259608847329], + [6.396035290242454, 52.617787969927932], + [6.393845656499664, 52.617233478527893], + [6.391522291463983, 52.614519419268895], + [6.386778259523643, 52.613620000285536], + [6.384084280839053, 52.612250156534806], + [6.382048336179398, 52.615645503969468], + [6.38025276338424, 52.615021421558325], + [6.376552028681396, 52.616893349805636], + [6.376057840419328, 52.617809730174486], + [6.377239427428369, 52.62001346169744], + [6.373618401752093, 52.623326419117504], + [6.375550411662928, 52.626155753495361], + [6.37520597132301, 52.627408136086487], + [6.374137302464429, 52.62900979756715], + [6.372276270602718, 52.629498977956004], + [6.370981741103674, 52.631660208782002], + [6.369204284293778, 52.632191536952305], + [6.368602634707742, 52.633525830682473], + [6.369777964313365, 52.635001970435113], + [6.366408017752482, 52.637453376209208], + [6.363907166547609, 52.63837604121327], + [6.36410240980315, 52.643141685152507], + [6.359440855188301, 52.645518675718023], + [6.353476721391882, 52.646280654131324], + [6.351726226694075, 52.648304564722174], + [6.343596390115258, 52.651157808615245], + [6.341719692589828, 52.653685601534292], + [6.33400297310972, 52.654698870880765], + [6.331200848273551, 52.65716114368761], + [6.327797788064362, 52.658692753946305], + [6.326340247623222, 52.658958173975833], + [6.325883711120338, 52.659708776916098], + [6.327224671162959, 52.660446815081215], + [6.325871411414389, 52.66115453819905], + [6.325857330092132, 52.66280982086348], + [6.327620426583861, 52.663717674487053], + [6.328516889232753, 52.66537811384088], + [6.329290197652231, 52.665398466355782], + [6.328004521919627, 52.666131664091367], + [6.328711541137609, 52.666738539207351], + [6.326938242675988, 52.669206954644942], + [6.322529392523943, 52.670437825497231], + [6.319587242413336, 52.670397983257082], + [6.318960653489064, 52.669721247915085], + [6.316740289087574, 52.669895295613777], + [6.316816369666864, 52.669493490583889], + [6.314957142570479, 52.669424580549823], + [6.314821837932747, 52.668750802016653], + [6.31387533104975, 52.668688430330384], + [6.314103280263882, 52.668058176875519], + [6.312080541782718, 52.668055467218778], + [6.31165977474351, 52.667338722440242], + [6.309670449596806, 52.666752939605992], + [6.305825915939792, 52.666239258157972], + [6.302621844797975, 52.66734624101791], + [6.301889463612754, 52.666996872064097], + [6.3022881523486, 52.666426730724829], + [6.299676261013925, 52.666496944610387], + [6.299688949262159, 52.66583073172206], + [6.297563069313475, 52.666369442152778], + [6.295195700618996, 52.663577521680359], + [6.295547853662511, 52.662322220456417], + [6.291946940687863, 52.662437322584459], + [6.289056251533069, 52.663249169817142], + [6.288269743913371, 52.663887397692477], + [6.287487005361559, 52.66345260883822], + [6.287226258669158, 52.664180653193284], + [6.285052588620274, 52.665394360860738], + [6.285490802308643, 52.666991797934436], + [6.284530938085008, 52.66715303128931], + [6.282704978417112, 52.668219305018887], + [6.279056469777534, 52.669051264844576], + [6.277905427454417, 52.668539366863769], + [6.277350474889131, 52.668930512909014], + [6.276254010178185, 52.667313121398053], + [6.274513378708348, 52.666897970707915], + [6.273338984812816, 52.664910168031525], + [6.270067194133647, 52.664794123357076], + [6.265895576179585, 52.666780296735197], + [6.265501271631879, 52.667987750695247], + [6.265488669000072, 52.669139106635463], + [6.260535213225829, 52.670477832865046], + [6.258176324505223, 52.66981837273579], + [6.257419721069453, 52.670407582173532], + [6.255911739954723, 52.669601643328967], + [6.255079196556352, 52.670072012696004], + [6.254735661480199, 52.669578791658303], + [6.254256159812904, 52.670197882088189], + [6.252001528572697, 52.6698813801938], + [6.250269941447285, 52.671095757580481], + [6.250612473454157, 52.671867185647088], + [6.249200730633222, 52.671396826259048], + [6.247337799944895, 52.672775610651044], + [6.248965832058087, 52.673901125343789], + [6.248365191352314, 52.675616803064294], + [6.243499053910718, 52.678785511663087], + [6.240503921136164, 52.677728670697284], + [6.237074624611824, 52.677547649902444], + [6.23680778856606, 52.6780288265279], + [6.232843207215853, 52.679109361571996], + [6.232925289998566, 52.679870511586472], + [6.234060904200659, 52.680237743169705], + [6.232650954389995, 52.681486440850307], + [6.23066315561793, 52.681185556859013], + [6.228691752972464, 52.681648836129604], + [6.228231396560721, 52.681286360728635], + [6.227698547207699, 52.68172557433671], + [6.227182154229918, 52.681252631811937], + [6.224905507005419, 52.68243115945976], + [6.222720738644473, 52.682682688615671], + [6.220994027332521, 52.682827621570041], + [6.221170458047817, 52.683475927439844], + [6.218714769280505, 52.684377287702247], + [6.219806876364304, 52.685704475116786], + [6.218402228805155, 52.686004555009767], + [6.217425807152677, 52.685516432752578], + [6.216584501071459, 52.686392852154057], + [6.21409575638333, 52.686315597719172], + [6.213743641142563, 52.685652847346148], + [6.212113816301283, 52.685308407601056], + [6.212499650570083, 52.684632938744791], + [6.21018122020313, 52.685224211251771], + [6.2064634429824, 52.684858533625196], + [6.204984931481007, 52.684161055152593], + [6.203936700041517, 52.684666974067305], + [6.201681594632608, 52.68462028841256], + [6.196477591023297, 52.680865763801158], + [6.194474905432786, 52.678825054591982], + [6.194229847680538, 52.676629592453814], + [6.192054846284774, 52.676426479658659], + [6.191444538347507, 52.679319856880177], + [6.187862259767994, 52.679613755976838], + [6.185870763873446, 52.682503521223303], + [6.180548277447583, 52.681587881311806], + [6.184208158078675, 52.677207840206087], + [6.181932998573883, 52.676868210836176], + [6.183146922921162, 52.675063282134253], + [6.170132341897943, 52.67793606722752], + [6.16299618810647, 52.680061826882955], + [6.1689725837013, 52.685533319692333], + [6.16965097364441, 52.686120778192198], + [6.168195643407945, 52.688135884343289], + [6.166352196860908, 52.688945182662067], + [6.164924809308016, 52.68888951927233], + [6.162579939874787, 52.691061158851248], + [6.158976116126046, 52.692154185959389], + [6.158802764403004, 52.69248021839406], + [6.156495005970032, 52.692130399547615], + [6.153820681361228, 52.697336968122684], + [6.151435957029855, 52.701376527820692], + [6.151985125739683, 52.701596996825657], + [6.151422852734139, 52.702882729946438], + [6.143918543854288, 52.714264966037433], + [6.142647159357383, 52.716326367107882], + [6.13993504774946, 52.720362520398972], + [6.132976462647238, 52.731396327986864], + [6.129147943880476, 52.738028292813397], + [6.127093698176949, 52.740263871501803], + [6.120376297109194, 52.750242470801005], + [6.121597402126805, 52.754210164939281], + [6.126330535877529, 52.756834381062248], + [6.132468167862601, 52.758668002433382], + [6.140858880557305, 52.75960240766409], + [6.156496493104036, 52.762650146542754], + [6.160153777379797, 52.764658585424733], + [6.163940060005045, 52.76644935438005], + [6.16852546265716, 52.767093500909077], + [6.172906047834221, 52.77305426389119], + [6.176584058979851, 52.775199763017376], + [6.184810222901959, 52.780304567849903], + [6.193807938585087, 52.786402814857574], + [6.201730816111677, 52.79369610340737], + [6.199103597851665, 52.795828304759659], + [6.185121311683626, 52.807224121129551], + [6.180458152549146, 52.811034266586461], + [6.17722985610588, 52.813851100225314], + [6.172419004650643, 52.81563909243949], + [6.171408251217942, 52.815255513593456], + [6.15764397755343, 52.825035557553761], + [6.151714906295828, 52.82739916715061], + [6.149895808982042, 52.828123887502713], + [6.149199030074708, 52.828402427058933], + [6.149564751584484, 52.828458978522931], + [6.151962228451089, 52.82882969486333], + [6.15028880942038, 52.829940327186577], + [6.136820811756089, 52.838825441333015], + [6.130451746019845, 52.843872559307357], + [6.128694466080729, 52.847807379060924], + [6.119819962534488, 52.854214951975131], + [6.120994817124883, 52.85464976390125], + [6.140512593995468, 52.863478125147608], + [6.141219166016294, 52.863799661505212], + [6.160459620813812, 52.872520785146804], + [6.190679824540435, 52.884478864738604], + [6.200812023581668, 52.888378591909969], + [6.206900080074474, 52.890743870497104], + [6.228785365628013, 52.910302305683835], + [6.232291126322971, 52.913438189439496], + [6.242343088865058, 52.918345227158568], + [6.244829665865406, 52.919587008988465], + [6.24725876259368, 52.923347455340597], + [6.247553019645345, 52.923691695840155], + [6.256593136483444, 52.92764124267174], + [6.283155315859685, 52.926147746958954], + [6.302985328578489, 52.924972376618115], + [6.333280618345186, 52.906356075041522], + [6.369026260985946, 52.921975636245911], + [6.393435844343447, 52.932843457593968], + [6.402671230076606, 52.943381820391508], + [6.427614782917281, 52.971815410697282], + [6.422623028951781, 52.976593142630591], + [6.413279911346295, 52.985522938008188], + [6.402686536566359, 52.995653351973559], + [6.374072010977171, 53.022956351664291], + [6.362521445096553, 53.033969039947593], + [6.363218901193229, 53.039262464912042], + [6.364924039471481, 53.051977897884406], + [6.367810592797741, 53.067360006499406], + [6.351724654395621, 53.070931523018828], + [6.332381614929978, 53.075207197934589], + [6.332055420876506, 53.075279389701997], + [6.305273833255009, 53.081189559531879], + [6.315157520479405, 53.094052795761073], + [6.337795954386153, 53.088688856793418], + [6.340999315198234, 53.087944597328075], + [6.344442931805554, 53.087150580191128], + [6.356620549439637, 53.107084529221602], + [6.363559957585637, 53.107560258732072], + [6.365354072139272, 53.119527291892481], + [6.365626968406228, 53.121289813046069], + [6.366051963518452, 53.122558360289126], + [6.381472649369485, 53.147737868464567], + [6.382612343229254, 53.149570501479808], + [6.381546401911922, 53.14959268551975], + [6.381564088328505, 53.153185872812109], + [6.381471031288155, 53.153436032608369], + [6.38872862277824, 53.158014783675554], + [6.391128201053242, 53.159418766167526], + [6.395093790018603, 53.163528733222797], + [6.397614373554847, 53.164512732858832], + [6.398594531467642, 53.1648621178472], + [6.402687322870413, 53.167005675046525], + [6.404137966416722, 53.168572391886201], + [6.404120771616492, 53.172955017800561], + [6.405469603195683, 53.17628301180023], + [6.405593347947791, 53.176474877774091], + [6.407970349477097, 53.178148442370521], + [6.424487602476855, 53.181678034042264], + [6.43801797845088, 53.185651548262662], + [6.442866855764631, 53.187740435314332], + [6.445662013973423, 53.191015499440788], + [6.447712146679175, 53.196440597365118], + [6.449947985302076, 53.196696718756868], + [6.463461492891275, 53.200058243338596], + [6.481511903694388, 53.203553449640431], + [6.485716901544651, 53.203821270304026], + [6.492695273506859, 53.200576863881622], + [6.493504978176614, 53.198497031158062] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 4, + "statcode": "PV23", + "jrstatcode": "2021PV23", + "statnaam": "Overijssel", + "rubriek": "provincie" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.796300022227, 52.59228537622009], + [5.797763372697165, 52.590747109803438], + [5.792390162818944, 52.591165000542851], + [5.7889959677649, 52.592257217470205], + [5.787683975452794, 52.59200332997343], + [5.788362333774445, 52.590497225016243], + [5.790772586529495, 52.589428750685897], + [5.79150357944425, 52.588028579693926], + [5.790331119474018, 52.587389924987967], + [5.785195421529783, 52.591905971658356], + [5.786838762528332, 52.593184239394418], + [5.793692107043854, 52.593473184781615], + [5.796300022227, 52.59228537622009] + ] + ], + [ + [ + [5.806702132445813, 52.590599058223617], + [5.808490562473536, 52.590201902554874], + [5.809970215483429, 52.59076279913306], + [5.81182045290812, 52.593571638127649], + [5.817598140898915, 52.591697101725295], + [5.807967029303858, 52.589085857490524], + [5.802320284166076, 52.592137524462373], + [5.800416446309763, 52.5957396058581], + [5.800664687347004, 52.596833097186853], + [5.801725449055673, 52.597307033105189], + [5.806147445921233, 52.59608397485497], + [5.807274151077285, 52.594705999851477], + [5.806702132445813, 52.590599058223617] + ] + ], + [ + [ + [5.833901558119222, 52.607343365707266], + [5.834100341413416, 52.605514455603419], + [5.827656331228665, 52.60139852717306], + [5.829358856524182, 52.593325922908789], + [5.823792366789191, 52.59354056342805], + [5.815499832410387, 52.597575878944852], + [5.809876873019872, 52.597905271140924], + [5.802084224917541, 52.603125400138751], + [5.801936657775735, 52.604834060357049], + [5.803562976495473, 52.6060387021843], + [5.808117799902833, 52.607289975086921], + [5.810751792965191, 52.606850254190618], + [5.833901558119222, 52.607343365707266] + ] + ], + [ + [ + [6.136820811756089, 52.838825441333015], + [6.15028880942038, 52.829940327186577], + [6.151962228451089, 52.82882969486333], + [6.149564751584484, 52.828458978522931], + [6.149199030074708, 52.828402427058933], + [6.149895808982042, 52.828123887502713], + [6.151714906295828, 52.82739916715061], + [6.15764397755343, 52.825035557553761], + [6.171408251217942, 52.815255513593456], + [6.172419004650643, 52.81563909243949], + [6.17722985610588, 52.813851100225314], + [6.180458152549146, 52.811034266586461], + [6.185121311683626, 52.807224121129551], + [6.199103597851665, 52.795828304759659], + [6.201730816111677, 52.79369610340737], + [6.193807938585087, 52.786402814857574], + [6.184810222901959, 52.780304567849903], + [6.176584058979851, 52.775199763017376], + [6.172906047834221, 52.77305426389119], + [6.16852546265716, 52.767093500909077], + [6.163940060005045, 52.76644935438005], + [6.160153777379797, 52.764658585424733], + [6.156496493104036, 52.762650146542754], + [6.140858880557305, 52.75960240766409], + [6.132468167862601, 52.758668002433382], + [6.126330535877529, 52.756834381062248], + [6.121597402126805, 52.754210164939281], + [6.120376297109194, 52.750242470801005], + [6.127093698176949, 52.740263871501803], + [6.129147943880476, 52.738028292813397], + [6.132976462647238, 52.731396327986864], + [6.13993504774946, 52.720362520398972], + [6.142647159357383, 52.716326367107882], + [6.143918543854288, 52.714264966037433], + [6.151422852734139, 52.702882729946438], + [6.151985125739683, 52.701596996825657], + [6.151435957029855, 52.701376527820692], + [6.153820681361228, 52.697336968122684], + [6.156495005970032, 52.692130399547615], + [6.158802764403004, 52.69248021839406], + [6.158976116126046, 52.692154185959389], + [6.162579939874787, 52.691061158851248], + [6.164924809308016, 52.68888951927233], + [6.166352196860908, 52.688945182662067], + [6.168195643407945, 52.688135884343289], + [6.16965097364441, 52.686120778192198], + [6.1689725837013, 52.685533319692333], + [6.16299618810647, 52.680061826882955], + [6.170132341897943, 52.67793606722752], + [6.183146922921162, 52.675063282134253], + [6.181932998573883, 52.676868210836176], + [6.184208158078675, 52.677207840206087], + [6.180548277447583, 52.681587881311806], + [6.185870763873446, 52.682503521223303], + [6.187862259767994, 52.679613755976838], + [6.191444538347507, 52.679319856880177], + [6.192054846284774, 52.676426479658659], + [6.194229847680538, 52.676629592453814], + [6.194474905432786, 52.678825054591982], + [6.196477591023297, 52.680865763801158], + [6.201681594632608, 52.68462028841256], + [6.203936700041517, 52.684666974067305], + [6.204984931481007, 52.684161055152593], + [6.2064634429824, 52.684858533625196], + [6.21018122020313, 52.685224211251771], + [6.212499650570083, 52.684632938744791], + [6.212113816301283, 52.685308407601056], + [6.213743641142563, 52.685652847346148], + [6.21409575638333, 52.686315597719172], + [6.216584501071459, 52.686392852154057], + [6.217425807152677, 52.685516432752578], + [6.218402228805155, 52.686004555009767], + [6.219806876364304, 52.685704475116786], + [6.218714769280505, 52.684377287702247], + [6.221170458047817, 52.683475927439844], + [6.220994027332521, 52.682827621570041], + [6.222720738644473, 52.682682688615671], + [6.224905507005419, 52.68243115945976], + [6.227182154229918, 52.681252631811937], + [6.227698547207699, 52.68172557433671], + [6.228231396560721, 52.681286360728635], + [6.228691752972464, 52.681648836129604], + [6.23066315561793, 52.681185556859013], + [6.232650954389995, 52.681486440850307], + [6.234060904200659, 52.680237743169705], + [6.232925289998566, 52.679870511586472], + [6.232843207215853, 52.679109361571996], + [6.23680778856606, 52.6780288265279], + [6.237074624611824, 52.677547649902444], + [6.240503921136164, 52.677728670697284], + [6.243499053910718, 52.678785511663087], + [6.248365191352314, 52.675616803064294], + [6.248965832058087, 52.673901125343789], + [6.247337799944895, 52.672775610651044], + [6.249200730633222, 52.671396826259048], + [6.250612473454157, 52.671867185647088], + [6.250269941447285, 52.671095757580481], + [6.252001528572697, 52.6698813801938], + [6.254256159812904, 52.670197882088189], + [6.254735661480199, 52.669578791658303], + [6.255079196556352, 52.670072012696004], + [6.255911739954723, 52.669601643328967], + [6.257419721069453, 52.670407582173532], + [6.258176324505223, 52.66981837273579], + [6.260535213225829, 52.670477832865046], + [6.265488669000072, 52.669139106635463], + [6.265501271631879, 52.667987750695247], + [6.265895576179585, 52.666780296735197], + [6.270067194133647, 52.664794123357076], + [6.273338984812816, 52.664910168031525], + [6.274513378708348, 52.666897970707915], + [6.276254010178185, 52.667313121398053], + [6.277350474889131, 52.668930512909014], + [6.277905427454417, 52.668539366863769], + [6.279056469777534, 52.669051264844576], + [6.282704978417112, 52.668219305018887], + [6.284530938085008, 52.66715303128931], + [6.285490802308643, 52.666991797934436], + [6.285052588620274, 52.665394360860738], + [6.287226258669158, 52.664180653193284], + [6.287487005361559, 52.66345260883822], + [6.288269743913371, 52.663887397692477], + [6.289056251533069, 52.663249169817142], + [6.291946940687863, 52.662437322584459], + [6.295547853662511, 52.662322220456417], + [6.295195700618996, 52.663577521680359], + [6.297563069313475, 52.666369442152778], + [6.299688949262159, 52.66583073172206], + [6.299676261013925, 52.666496944610387], + [6.3022881523486, 52.666426730724829], + [6.301889463612754, 52.666996872064097], + [6.302621844797975, 52.66734624101791], + [6.305825915939792, 52.666239258157972], + [6.309670449596806, 52.666752939605992], + [6.31165977474351, 52.667338722440242], + [6.312080541782718, 52.668055467218778], + [6.314103280263882, 52.668058176875519], + [6.31387533104975, 52.668688430330384], + [6.314821837932747, 52.668750802016653], + [6.314957142570479, 52.669424580549823], + [6.316816369666864, 52.669493490583889], + [6.316740289087574, 52.669895295613777], + [6.318960653489064, 52.669721247915085], + [6.319587242413336, 52.670397983257082], + [6.322529392523943, 52.670437825497231], + [6.326938242675988, 52.669206954644942], + [6.328711541137609, 52.666738539207351], + [6.328004521919627, 52.666131664091367], + [6.329290197652231, 52.665398466355782], + [6.328516889232753, 52.66537811384088], + [6.327620426583861, 52.663717674487053], + [6.325857330092132, 52.66280982086348], + [6.325871411414389, 52.66115453819905], + [6.327224671162959, 52.660446815081215], + [6.325883711120338, 52.659708776916098], + [6.326340247623222, 52.658958173975833], + [6.327797788064362, 52.658692753946305], + [6.331200848273551, 52.65716114368761], + [6.33400297310972, 52.654698870880765], + [6.341719692589828, 52.653685601534292], + [6.343596390115258, 52.651157808615245], + [6.351726226694075, 52.648304564722174], + [6.353476721391882, 52.646280654131324], + [6.359440855188301, 52.645518675718023], + [6.36410240980315, 52.643141685152507], + [6.363907166547609, 52.63837604121327], + [6.366408017752482, 52.637453376209208], + [6.369777964313365, 52.635001970435113], + [6.368602634707742, 52.633525830682473], + [6.369204284293778, 52.632191536952305], + [6.370981741103674, 52.631660208782002], + [6.372276270602718, 52.629498977956004], + [6.374137302464429, 52.62900979756715], + [6.37520597132301, 52.627408136086487], + [6.375550411662928, 52.626155753495361], + [6.373618401752093, 52.623326419117504], + [6.377239427428369, 52.62001346169744], + [6.376057840419328, 52.617809730174486], + [6.376552028681396, 52.616893349805636], + [6.38025276338424, 52.615021421558325], + [6.382048336179398, 52.615645503969468], + [6.384084280839053, 52.612250156534806], + [6.386778259523643, 52.613620000285536], + [6.391522291463983, 52.614519419268895], + [6.393845656499664, 52.617233478527893], + [6.396035290242454, 52.617787969927932], + [6.401123577364213, 52.616259608847329], + [6.40372033172786, 52.616254226033284], + [6.406858390550336, 52.61778100342017], + [6.405893849230393, 52.618708827144026], + [6.406288950170842, 52.620564148739277], + [6.409502303742949, 52.621733264912606], + [6.411164235144903, 52.620823969520835], + [6.412049184693425, 52.619868530516136], + [6.416150258101887, 52.618667693381276], + [6.418808572780421, 52.619023204070892], + [6.421609657581848, 52.623044669424651], + [6.426886517733594, 52.624638421711843], + [6.426036737440593, 52.626512561992271], + [6.428176562017729, 52.628188507282466], + [6.431326228602897, 52.628369568165468], + [6.432992302652315, 52.627765053441649], + [6.43380314144565, 52.626409217854061], + [6.435639380887396, 52.621570126932262], + [6.435601476626049, 52.620853150562397], + [6.434471496634622, 52.620452646262649], + [6.434934447306289, 52.619285552049732], + [6.438410341009662, 52.617074513066783], + [6.442345429160807, 52.615803576371761], + [6.443032940809952, 52.616195504446353], + [6.453477052710062, 52.613955679527223], + [6.460707604499761, 52.616991435722802], + [6.464035396045955, 52.623875790968121], + [6.469965246847363, 52.624985689120386], + [6.472368808428336, 52.624579269234779], + [6.474200441801535, 52.620744995575507], + [6.478016263431915, 52.618631310520357], + [6.480581299190947, 52.618154774923397], + [6.483895584117513, 52.619076575178894], + [6.49153496227146, 52.619170290625398], + [6.500009990539272, 52.617969713830185], + [6.504653665949141, 52.617015302027994], + [6.512026919941861, 52.613649674107705], + [6.518604268518106, 52.614087849036345], + [6.518247061774791, 52.616468205732296], + [6.518021958752598, 52.617988592921321], + [6.517865837676498, 52.618917931804198], + [6.514013855060841, 52.645272023296023], + [6.513861541408605, 52.646293776227161], + [6.529283858260104, 52.65445276689745], + [6.529380751137911, 52.654507320282718], + [6.547745974423838, 52.66397137016488], + [6.552821467354362, 52.665594970813501], + [6.581049663762065, 52.669472945824268], + [6.603800904935882, 52.672585354035419], + [6.612980217746535, 52.673838294258992], + [6.614526879552949, 52.674049280336334], + [6.629453293898668, 52.669688244236845], + [6.646739297040324, 52.664639508014119], + [6.655650895814659, 52.662033678712092], + [6.68607907548071, 52.653430956960129], + [6.701414985955656, 52.650221843536094], + [6.708334119320393, 52.648758874611168], + [6.708025061937792, 52.647720730230034], + [6.705528641262629, 52.645652059617582], + [6.705383220870823, 52.643320837676477], + [6.702066040568925, 52.642466324265989], + [6.70116878236167, 52.641668381786822], + [6.702170403804108, 52.64108365874597], + [6.705697989431991, 52.640890297091623], + [6.706525586538685, 52.639542150186351], + [6.703474099458887, 52.636119053454152], + [6.70349777284995, 52.635232566285879], + [6.70349926983801, 52.635224780405402], + [6.703502532146316, 52.635144762908425], + [6.703266531124513, 52.634351400902759], + [6.704522860342877, 52.633139440902823], + [6.702865194145698, 52.630675150599529], + [6.700910940536847, 52.62940080549302], + [6.700860492729878, 52.628320248386565], + [6.702004610281781, 52.627267060375267], + [6.704965750457144, 52.627304374588498], + [6.707156273448319, 52.626765132972544], + [6.708021599286418, 52.628007129360867], + [6.710053190936475, 52.627820290039011], + [6.710145395495153, 52.62731493163696], + [6.712004751777006, 52.626831876247607], + [6.714242067015451, 52.626767282136292], + [6.718250680929184, 52.623381827895642], + [6.718657102567198, 52.621946542963478], + [6.72290968018713, 52.620372193374173], + [6.727288854184243, 52.614927890998523], + [6.724353536629943, 52.608329657188364], + [6.723754742018142, 52.603128779971527], + [6.720973480049467, 52.598351616204297], + [6.720706002317416, 52.596452772247844], + [6.721573944756245, 52.594874259904486], + [6.719949172407659, 52.593261955233515], + [6.718772715104633, 52.588640252506885], + [6.766659984095257, 52.563532738351455], + [6.766692103537026, 52.561636904152373], + [6.7640456466674, 52.561584300424045], + [6.752533593107755, 52.559040851289588], + [6.74010331470991, 52.562053482213443], + [6.734371399888182, 52.561762459652797], + [6.725917612258601, 52.563161017466399], + [6.72098171441145, 52.553013588176377], + [6.71999617609434, 52.551669765927208], + [6.716241064284011, 52.550202268395431], + [6.716264264106131, 52.548524821817665], + [6.69755775844629, 52.551057272522193], + [6.683975734179633, 52.552899281477565], + [6.680879985258969, 52.553317446833908], + [6.694922565612078, 52.534771904018633], + [6.705332558437738, 52.521007565789652], + [6.697584701216636, 52.486298246465573], + [6.717706766424717, 52.478131558127721], + [6.720459375608219, 52.477179369994332], + [6.723771485795458, 52.477017490770855], + [6.752734516009835, 52.464110849227218], + [6.757140203046704, 52.463202207687978], + [6.774586673467162, 52.459600697695407], + [6.822447474534144, 52.459823294147064], + [6.831788105319738, 52.459961228554008], + [6.844733530467582, 52.459188426621324], + [6.854297669387803, 52.45970626460312], + [6.852541663147007, 52.449913770810795], + [6.853957599162253, 52.450134111885646], + [6.861816122372143, 52.451357980085184], + [6.889062206839443, 52.446545098918975], + [6.90607966850325, 52.442243008952204], + [6.941657573376866, 52.43542574495369], + [6.94730045547607, 52.43662142282637], + [6.953506368360512, 52.439931772314978], + [6.961061686567305, 52.443988310456049], + [6.961785469309796, 52.443624403659115], + [6.962188252049001, 52.443983127796152], + [6.962036870307408, 52.444705467198581], + [6.97442920042962, 52.459703644835081], + [6.977533838660211, 52.465680762240545], + [6.987623298114955, 52.469766803143969], + [6.993907167070214, 52.465485414566189], + [6.994573965572545, 52.4621270291779], + [7.000025607476294, 52.454710924975203], + [7.005063319013212, 52.445358337042379], + [7.0083812466972, 52.436141351160508], + [7.010782500784297, 52.429136589846927], + [7.021989819219524, 52.422984160033046], + [7.028107399004024, 52.413612902944088], + [7.03607407080832, 52.402662614203408], + [7.041364792799054, 52.402568188749797], + [7.047046941481272, 52.400791237028521], + [7.050592516949994, 52.400753482546712], + [7.051655922532437, 52.399924827360856], + [7.055319732984176, 52.40103360010233], + [7.058728289493489, 52.399410248757242], + [7.058517752306456, 52.396191440803669], + [7.063716448910845, 52.390677546973578], + [7.072204791916255, 52.372802534193283], + [7.072763362145617, 52.36680482101351], + [7.072114031200115, 52.351890799099003], + [7.057226772031917, 52.338838375271095], + [7.056230834523864, 52.337953890594306], + [7.05614767731051, 52.334955812443461], + [7.054918068659721, 52.333177294706339], + [7.055492805129734, 52.332168741909342], + [7.047179831520116, 52.323744448325193], + [7.047260454310707, 52.321263167932507], + [7.048110103097239, 52.319948685043933], + [7.045810575969907, 52.316451404225283], + [7.046360105645703, 52.316621681958708], + [7.047420811402198, 52.315206436371803], + [7.043417133027781, 52.313915597824298], + [7.043570310490128, 52.313471393508735], + [7.038683358721674, 52.3123801421008], + [7.041237586410098, 52.31105257943257], + [7.039493002174655, 52.307626789096645], + [7.033836942653971, 52.302504517170462], + [7.026453583324046, 52.291967770755804], + [7.026239267343027, 52.287324381432967], + [7.02954759362991, 52.281526122064371], + [7.02961442299832, 52.280179723081289], + [7.027519866021989, 52.277986160451057], + [7.028584297077787, 52.273627143229582], + [7.032062771578055, 52.271664051778224], + [7.039243746516599, 52.260899403957637], + [7.042394805870688, 52.256144036726553], + [7.065789588741601, 52.241235035275771], + [7.061283627584696, 52.234711068598664], + [7.048460840059976, 52.230655876211458], + [7.046694921848803, 52.230073632065483], + [7.042747664324407, 52.228772555505493], + [7.040310808131397, 52.227973874409173], + [7.037945764411732, 52.227406364795932], + [7.026397855654689, 52.225714454991461], + [7.0204499027729, 52.225938923525938], + [7.019297319792821, 52.225102739234039], + [7.012939008896089, 52.227261366161201], + [7.012652668425233, 52.226806138806268], + [7.011220964439638, 52.227591468091582], + [7.007379247532527, 52.228094620051579], + [7.00585120440171, 52.228294611143966], + [7.003476181074513, 52.228589683627966], + [6.996999183415435, 52.227059299523923], + [6.989114291005554, 52.226843067817946], + [6.987087473633717, 52.225437605183885], + [6.985004612617243, 52.225021047554037], + [6.985390770399644, 52.223563816922088], + [6.982874756305091, 52.222405756870636], + [6.981100137294576, 52.220736992952929], + [6.979699012720771, 52.218134161603423], + [6.979676006118607, 52.215135807356653], + [6.978493545348996, 52.212191507428756], + [6.975976569368725, 52.209485838571631], + [6.974084945159417, 52.205402794862763], + [6.970903219966053, 52.202979665975022], + [6.967396690558655, 52.197893661731946], + [6.96239170919555, 52.194298587024335], + [6.962281731652475, 52.193413297343753], + [6.962478808200812, 52.191378852387949], + [6.951245366169982, 52.181057867461348], + [6.94950553108727, 52.180504613484338], + [6.937883605501046, 52.179467131260225], + [6.933741576634293, 52.178448268552899], + [6.915629039008094, 52.17761396970532], + [6.909551929926197, 52.176449691592012], + [6.90674629357476, 52.175067986554566], + [6.905880853219275, 52.173870164123294], + [6.905720146331606, 52.169915243514843], + [6.889750344425811, 52.161205923773473], + [6.880458260303336, 52.156009547578591], + [6.881960409636655, 52.155976494199102], + [6.873301133699783, 52.132973882141052], + [6.873458601961588, 52.130283689260366], + [6.867088382237517, 52.128071317009272], + [6.855474030397739, 52.120462098553325], + [6.843198647820566, 52.119197079509235], + [6.822710406463041, 52.118404264782846], + [6.763626028142848, 52.118763113828805], + [6.760572414170975, 52.118779938837228], + [6.739505904415614, 52.118556420876679], + [6.739493120773589, 52.118104776828311], + [6.716272444648101, 52.118270410536439], + [6.711289949760966, 52.11970824365028], + [6.697810103716001, 52.123553674878501], + [6.677690678348077, 52.125958956672406], + [6.672556286737227, 52.127370300687552], + [6.663003534939993, 52.130001060586309], + [6.668409141986257, 52.136614694042933], + [6.672613102167933, 52.139309966484291], + [6.674394897723963, 52.142774467864918], + [6.67374831874724, 52.148286604938569], + [6.671309301828582, 52.150458117302932], + [6.672678901401082, 52.150507358107049], + [6.67381947388309, 52.152103630151174], + [6.672428785989877, 52.153031700211606], + [6.673095075874108, 52.154753301688196], + [6.670610268592018, 52.156420323788183], + [6.67391416715321, 52.158814402898273], + [6.673640415172573, 52.159862331715637], + [6.673146988558115, 52.160118889752432], + [6.674066769415978, 52.161243464139872], + [6.672784468952997, 52.161379068133925], + [6.673397435967614, 52.163239703784122], + [6.671973540146309, 52.16492723579379], + [6.671338987298403, 52.165683202267701], + [6.649211872397508, 52.172878488220427], + [6.645040782946962, 52.174194260422254], + [6.640280212908499, 52.167405145952294], + [6.634841581528966, 52.172177296303609], + [6.631041100592435, 52.173142272857675], + [6.629101094540376, 52.1720326740733], + [6.62583973297393, 52.172499263244802], + [6.625285914021708, 52.172171951643911], + [6.626563915010959, 52.171456927304249], + [6.624952311965485, 52.168649831657632], + [6.621989594527449, 52.168372962099809], + [6.617356830496, 52.165290926919013], + [6.612147289956656, 52.163166308487938], + [6.609270420886395, 52.165143297013387], + [6.607354841409903, 52.164630928646119], + [6.602851419501564, 52.169121316313287], + [6.603184915298303, 52.170721828902565], + [6.606207520337403, 52.172369144412066], + [6.606326916948099, 52.173082447146086], + [6.596115271302147, 52.179835252055142], + [6.591077418740971, 52.182263641046383], + [6.589953792870036, 52.182487841292563], + [6.587982461015061, 52.182010638584181], + [6.584948879006024, 52.181529849526761], + [6.555349553874113, 52.177255568968206], + [6.517642077455977, 52.181267041733165], + [6.513241072518237, 52.181230545707848], + [6.495839444445418, 52.177145373633309], + [6.492401221285889, 52.177371868813189], + [6.490647026196958, 52.179862981502957], + [6.47903176509752, 52.182599599965876], + [6.478357053083218, 52.183827241683005], + [6.472700073458714, 52.189040474879846], + [6.469999059298614, 52.192690472523637], + [6.469464534738656, 52.198282037920521], + [6.470269622866285, 52.19937979440008], + [6.467118393176568, 52.200395346719084], + [6.457287139991562, 52.20096466150617], + [6.456133357503919, 52.201709232756912], + [6.45349132402628, 52.20417246368919], + [6.452745858855111, 52.206477193936998], + [6.446311060135706, 52.212800921413681], + [6.439967863262162, 52.217067156930376], + [6.43157373800415, 52.221244239145364], + [6.429342362224461, 52.223135806637636], + [6.42197500405639, 52.232925755341093], + [6.416807434674314, 52.237126344089113], + [6.416395321740435, 52.239525155902427], + [6.416422308387167, 52.24216635698965], + [6.402618944390948, 52.243271715045999], + [6.389863387768307, 52.24255918843091], + [6.383410907280121, 52.244015811699512], + [6.381851547321522, 52.246112811199673], + [6.377348539943778, 52.244749953013731], + [6.366851389192007, 52.241532144065211], + [6.350891912788705, 52.241680085986353], + [6.349651626240348, 52.241241232879851], + [6.348641039941391, 52.238701008278845], + [6.346622933745659, 52.239029443192429], + [6.342019555589381, 52.237593430055782], + [6.341476119705459, 52.236255953354494], + [6.338056958767287, 52.236222953776128], + [6.338708390076066, 52.227152868500973], + [6.325434113433649, 52.226996640714148], + [6.320429270345445, 52.225669090657235], + [6.297942366641769, 52.225529834389548], + [6.296951883755783, 52.22900122487777], + [6.293035140057562, 52.229512463021194], + [6.292829291547158, 52.230827232533571], + [6.291812093389204, 52.230885364553892], + [6.286333273318201, 52.230362029189521], + [6.277803563753237, 52.228365212558785], + [6.271007142177211, 52.227909928193647], + [6.271290999366949, 52.226413636206729], + [6.269400525530225, 52.226457393610225], + [6.264718522807542, 52.227247812692255], + [6.260835442413385, 52.229070975079786], + [6.25729482781786, 52.227276221735316], + [6.250871145540168, 52.226931318535122], + [6.238053646246633, 52.227717468355593], + [6.235203569386489, 52.228158407063042], + [6.23392009768996, 52.229035423935727], + [6.220539775252, 52.229518175041449], + [6.216480345136886, 52.231474720636868], + [6.214501290227937, 52.231427287009012], + [6.216948594415596, 52.22647365061421], + [6.20311018911134, 52.229269227189825], + [6.189135699845983, 52.229166515616235], + [6.182531018334297, 52.233825032161192], + [6.174214304378189, 52.232781333232289], + [6.166268915961862, 52.231013776545673], + [6.163028088187494, 52.228522104615912], + [6.167597939899479, 52.227687383967471], + [6.168435736530316, 52.227279011153108], + [6.167865228481721, 52.226338603639874], + [6.162499669302331, 52.2279169147278], + [6.165722849381035, 52.223503326479886], + [6.165276387312595, 52.222842294814711], + [6.168671456501666, 52.220699152376859], + [6.167525137030508, 52.220104481489628], + [6.167647891908746, 52.218875379935433], + [6.166684870914146, 52.218801972520424], + [6.165962998656803, 52.217755675859102], + [6.164068834923951, 52.21744065383492], + [6.162627575911196, 52.218394725592375], + [6.163985797349535, 52.221645981740345], + [6.162173066162692, 52.224166163638976], + [6.16015316141294, 52.225223157294884], + [6.156509161892096, 52.225694588192198], + [6.147509945720228, 52.227778204336119], + [6.143079388282268, 52.231618329704887], + [6.141707216296005, 52.234172117165102], + [6.142236750008593, 52.238455868067483], + [6.151166579672632, 52.242532558479944], + [6.15384521497651, 52.244306200322868], + [6.154199373404856, 52.245868600360275], + [6.153337106042334, 52.247054734515409], + [6.150020390671044, 52.248315936147534], + [6.144509911635333, 52.247122309136998], + [6.143502087630417, 52.246411695741863], + [6.136722264028014, 52.249040836836329], + [6.123865551869699, 52.251481110892946], + [6.123637758401231, 52.25368789564925], + [6.12514503347756, 52.256825363403195], + [6.130069170077681, 52.260691393522116], + [6.127446717916467, 52.261704985433653], + [6.123907276430031, 52.264506881223085], + [6.122982031960827, 52.269255446331023], + [6.12110939237768, 52.272025584768414], + [6.112364764052743, 52.278305044612729], + [6.111267170094957, 52.280720624330328], + [6.111321692275891, 52.288210826199467], + [6.10586453805399, 52.292407971908027], + [6.104770706737716, 52.294762034937989], + [6.104994431299287, 52.296250169070163], + [6.101320455781886, 52.301224775657744], + [6.09874166169367, 52.301159911681928], + [6.09919420937699, 52.300128348936894], + [6.090902256655403, 52.299989473451504], + [6.088129109474843, 52.300376300704237], + [6.08623411604796, 52.301897854309885], + [6.084071479340558, 52.301685925349801], + [6.082927815411703, 52.307120157241251], + [6.084398110556786, 52.311452107533611], + [6.080990181383662, 52.311902481778397], + [6.079694061103889, 52.317641545891632], + [6.073775918360352, 52.317740944385044], + [6.071843015270089, 52.317185076646481], + [6.066525187855703, 52.317809116470258], + [6.066087052090017, 52.320253079620294], + [6.067387682512689, 52.321412894386434], + [6.07070575553554, 52.321881903967999], + [6.073680707822327, 52.330569244283289], + [6.074355684187668, 52.332555806744949], + [6.075632490946044, 52.333300166400591], + [6.074053552080066, 52.334523650463602], + [6.075579643845689, 52.334741767252517], + [6.076764221258427, 52.338650764906397], + [6.075330048026688, 52.34455554135041], + [6.076131285927614, 52.345669331232955], + [6.076070195733232, 52.350570298884648], + [6.078099002061147, 52.35175579757599], + [6.078009960516522, 52.352426436377336], + [6.087240580344242, 52.353890004046605], + [6.094778588203538, 52.356931064722517], + [6.093522136598326, 52.358671713537845], + [6.090712936704411, 52.360444162297213], + [6.088487420581742, 52.361145666356109], + [6.080882100040967, 52.362036115508943], + [6.07784500418196, 52.364297065321438], + [6.078203240460818, 52.369046172199788], + [6.079701290348717, 52.370664854652816], + [6.082463380987451, 52.372069296670475], + [6.095133444649045, 52.373841138588439], + [6.113371149244817, 52.377208830985651], + [6.120853909060656, 52.379541976860132], + [6.123650482321586, 52.381318190347578], + [6.125830054005711, 52.384058539608418], + [6.126196721289612, 52.386065937131711], + [6.125208525407367, 52.392627173794899], + [6.129970640979344, 52.398603326578105], + [6.130552793139139, 52.399977694518654], + [6.127579316081886, 52.399617309875914], + [6.125372358960085, 52.400177336023447], + [6.123683280004704, 52.401916162410529], + [6.119064838768469, 52.402641880022152], + [6.116246714978538, 52.40487514394755], + [6.114857158379318, 52.406985384773847], + [6.110806905214452, 52.407812567625221], + [6.114741181324479, 52.414255609159937], + [6.113572574082331, 52.416905672733137], + [6.113872019949022, 52.419853261432863], + [6.118244942874296, 52.426643847527558], + [6.118169195768229, 52.428436847159553], + [6.11638510859934, 52.430199435924969], + [6.119489370211191, 52.432925722908706], + [6.114106757969484, 52.438006470803586], + [6.109580092951922, 52.440530733582492], + [6.105023722142703, 52.442586576781004], + [6.102294711870784, 52.445771904753649], + [6.101986014357795, 52.447799952620187], + [6.103546004864549, 52.453963722482229], + [6.101701308348638, 52.466347280798615], + [6.099146945259086, 52.47031050599962], + [6.094246493607733, 52.47411100366395], + [6.089267611008094, 52.476811265235426], + [6.076421352672764, 52.480223355938442], + [6.07142541491093, 52.482107481353509], + [6.066371259676631, 52.485170778229318], + [6.063430410338269, 52.488053198408885], + [6.061774273919342, 52.490398183581284], + [6.058397625942073, 52.496003137305046], + [6.054220273712411, 52.499787089160378], + [6.046187441604212, 52.503860644980378], + [6.040509189203387, 52.506257714021871], + [6.027857570858755, 52.509606204048268], + [6.025346558885514, 52.506573331576661], + [6.02285147374382, 52.505331880840849], + [6.019337619320309, 52.504827489436451], + [6.015080448221828, 52.505962791480975], + [6.012367518947599, 52.505939772141133], + [6.007610029811737, 52.504260036172148], + [6.000788474381069, 52.500148829914281], + [5.991722490124118, 52.493898802927298], + [5.983161728595332, 52.488975714811552], + [5.971808693274635, 52.481252124648847], + [5.965309092551217, 52.476444394527434], + [5.958301047254488, 52.484063013899586], + [5.952881580089618, 52.484438479580199], + [5.949889747501603, 52.483808563432568], + [5.946122090665267, 52.482039607667751], + [5.936879960830484, 52.476499056024352], + [5.935409779657468, 52.477392036935349], + [5.925559519113716, 52.47405759138362], + [5.920851946656406, 52.482554802734562], + [5.909559928272562, 52.497954583665475], + [5.901581196759049, 52.505679148906431], + [5.887276735751916, 52.516906197290062], + [5.883318754468668, 52.519230756115967], + [5.88260447092825, 52.5189612249047], + [5.879022647582031, 52.52166164595095], + [5.877762758700204, 52.521148504876969], + [5.876205472580023, 52.522025025579843], + [5.86580137667306, 52.518658066484221], + [5.86285603110382, 52.521764432288094], + [5.862818280773642, 52.52611730918813], + [5.86188739416145, 52.528095381237172], + [5.862302912642583, 52.531586288768537], + [5.860005937411027, 52.536036717346995], + [5.860584787782341, 52.537389620619102], + [5.862558282892987, 52.538134040845229], + [5.860745614811751, 52.53853332184908], + [5.860406286435699, 52.537900112997178], + [5.859347862183226, 52.542275551583536], + [5.856950377979727, 52.544027188535857], + [5.857721294417069, 52.54518140875863], + [5.856508287295278, 52.545850096392854], + [5.858578450944394, 52.547082513586155], + [5.858237541613881, 52.547520655640817], + [5.857350433326301, 52.547390425803037], + [5.856063197697368, 52.551899853721793], + [5.85541184065073, 52.551231268394012], + [5.854397153369848, 52.551572913253359], + [5.854558933971625, 52.552402347442154], + [5.852741187095799, 52.552847476255636], + [5.85282980325211, 52.554419499872701], + [5.851008096382249, 52.557425416308739], + [5.847748734507215, 52.558267685032057], + [5.848499568287727, 52.559210729290356], + [5.842022701915266, 52.562509673395638], + [5.840752315739509, 52.564640152351245], + [5.839917906950488, 52.569711989768237], + [5.832161430627031, 52.576735020934315], + [5.823981641423154, 52.579837087263748], + [5.819325988657207, 52.58011455785325], + [5.814075788769685, 52.582566673703781], + [5.828214447737926, 52.582462485668152], + [5.838425123117589, 52.581705780385981], + [5.839720860438071, 52.582258691527826], + [5.838513972934445, 52.583082661419603], + [5.829841792187207, 52.58375852907924], + [5.80680093365721, 52.5840967627026], + [5.815114308554641, 52.588359048268728], + [5.820161826407364, 52.588985765741839], + [5.819839001262686, 52.587920820873805], + [5.814144001362498, 52.586864430598574], + [5.814375191550641, 52.584938053087534], + [5.817431081955831, 52.5847943525361], + [5.820550639037306, 52.58660521761356], + [5.827850523578513, 52.587325039058953], + [5.832158348045445, 52.586358180599966], + [5.839866602808434, 52.582756970078925], + [5.841625640185, 52.58381185940106], + [5.836035311688582, 52.586886706316328], + [5.8312570880855, 52.591272380079268], + [5.835687324268316, 52.596082474992663], + [5.835284998089195, 52.597175961597898], + [5.832147948498859, 52.597847779829884], + [5.831891591388594, 52.600314810247824], + [5.840646393625854, 52.610429745441429], + [5.843008799986341, 52.610750618601486], + [5.88808447553552, 52.616862930397332], + [5.896298447466716, 52.617974697766407], + [5.905911412880116, 52.618287470932884], + [5.907801238911865, 52.615846106762248], + [5.917696460910022, 52.612641045952159], + [5.926608301869793, 52.613306477989859], + [5.931419242407282, 52.613875024969481], + [5.941626189940422, 52.617588157437019], + [5.950921164802508, 52.619987198517322], + [5.955100624273051, 52.621384297538668], + [5.955745413282266, 52.622894977573239], + [5.958420529457266, 52.6247865778003], + [5.968643926313145, 52.623090188370277], + [5.975216146045645, 52.622973920020037], + [5.986401638808956, 52.62501769308669], + [5.987174980688176, 52.626930114752618], + [5.990400596487904, 52.625834378195997], + [6.010786577624382, 52.637144291550058], + [6.011984002841988, 52.63683147350303], + [6.012861705856276, 52.639744058021975], + [6.017841647598508, 52.639067148361576], + [6.02033912644013, 52.637893678980603], + [6.020353360049984, 52.638661900832318], + [6.022226841945135, 52.639512192625347], + [6.018647850846444, 52.643240040555938], + [6.017504849106214, 52.643399504047856], + [6.015973237081689, 52.643981457612483], + [6.014503516180427, 52.645885397775153], + [6.005665976563045, 52.65185309791444], + [6.002016661186308, 52.653508216803353], + [5.996819876748957, 52.655074003529016], + [5.984108343588891, 52.657176929475717], + [5.979546494341811, 52.660495577036592], + [5.970814073697066, 52.665188824322328], + [5.966851740946256, 52.666580190257875], + [5.96305436547943, 52.666398319081409], + [5.961795030582303, 52.66729649339171], + [5.958172582342074, 52.66780948150722], + [5.954017399559601, 52.66767406501684], + [5.941593592479424, 52.670516683165239], + [5.940101205657999, 52.670426571100101], + [5.939725938724258, 52.668835254021985], + [5.935147925570988, 52.669233810400378], + [5.934593539864443, 52.669781622963967], + [5.933084089134751, 52.67126352302229], + [5.932750662929404, 52.673188929459634], + [5.933870371563879, 52.675510465396442], + [5.94016061188768, 52.679223216047845], + [5.945377042615794, 52.682301426780327], + [5.944707638220505, 52.68271258206105], + [5.946847951719645, 52.684002779516874], + [5.949519185893843, 52.68571346557416], + [5.951508878236877, 52.684951909457823], + [5.952740352630801, 52.685240028574547], + [5.959400222770259, 52.689950316380681], + [5.962104873158463, 52.69035068130475], + [5.965155502238773, 52.693569729917094], + [5.964825099825906, 52.69810443041775], + [5.95901174150731, 52.703863430690099], + [5.954839083092365, 52.703767632812792], + [5.955315583790052, 52.707261780232642], + [5.952091811271565, 52.71087622937771], + [5.951161443859662, 52.711919228914233], + [5.942555103928553, 52.715002006790833], + [5.941169826728221, 52.717550655828028], + [5.935559491090758, 52.730251729990506], + [5.930150601847197, 52.739586134135912], + [5.921829556260407, 52.751169708780381], + [5.906009518326877, 52.761325564808914], + [5.900054199161473, 52.761195260534656], + [5.897761940378975, 52.762134876165305], + [5.896085488964112, 52.762822022447857], + [5.894382893559832, 52.765133707704969], + [5.892550406170786, 52.765959701393228], + [5.885136622526339, 52.76930085679345], + [5.87993860682462, 52.773091572998077], + [5.862083366675103, 52.781022560816815], + [5.850296562070461, 52.784530806827583], + [5.84339001387818, 52.784463625366293], + [5.841618494286534, 52.785138387212541], + [5.837310646240352, 52.785023895250376], + [5.836054380949812, 52.785635103008836], + [5.828146591768479, 52.785545346636383], + [5.818791834629835, 52.78469665500733], + [5.818656564309417, 52.787635740728369], + [5.81272555145175, 52.791186420883996], + [5.803474481104645, 52.796858709321363], + [5.795177104753978, 52.806521844764909], + [5.810015612248555, 52.813883558573366], + [5.819744269126772, 52.817278396124834], + [5.81989692765772, 52.816903311808723], + [5.820306103889765, 52.815950201353346], + [5.822354395953925, 52.815109435638803], + [5.824154564575789, 52.813297061987548], + [5.8287206466135, 52.813426940983092], + [5.833411225902751, 52.811760626366457], + [5.837365416913884, 52.808261822028626], + [5.836101933714859, 52.805954617346181], + [5.838444490348564, 52.80594703631234], + [5.842202039162829, 52.807584272919648], + [5.843593714504014, 52.805032550126654], + [5.849951893859179, 52.806161694818783], + [5.854802574637691, 52.805518204361277], + [5.857026842891868, 52.807228868441307], + [5.859640029018048, 52.804536251972692], + [5.865636209932971, 52.804650462912917], + [5.868679712319216, 52.802726236938135], + [5.876292314449033, 52.800854879479893], + [5.879580889345576, 52.801202685466762], + [5.882578018328498, 52.803919608324726], + [5.892782001281196, 52.806050900121477], + [5.897881549639862, 52.807803319882936], + [5.900657245017001, 52.81182487322814], + [5.908583674903347, 52.813712086938942], + [5.911965791882634, 52.816115956648979], + [5.913860015934286, 52.818622122043848], + [5.91632130189195, 52.820280344989264], + [5.924202090384524, 52.823589851224057], + [5.922946240771526, 52.827525843029875], + [5.926409645495119, 52.82818345291598], + [5.922747329713064, 52.82987258884868], + [5.923097708187821, 52.831034511286369], + [5.926983337088105, 52.83157679309592], + [5.930115193728405, 52.831356549771513], + [5.930653870093269, 52.832247568227231], + [5.92673222920024, 52.833291776484323], + [5.930157818862098, 52.835012914917755], + [5.93801956586292, 52.835381777743891], + [5.941975828533031, 52.836019915567348], + [5.946247359584803, 52.83742472352538], + [5.955783745481338, 52.833234577185252], + [5.956853431928814, 52.834442712344547], + [5.955792409750702, 52.837441854276157], + [5.958731390608437, 52.839765969450603], + [5.969976339943783, 52.842375331281715], + [5.973127867067815, 52.842469722606957], + [5.972438159722887, 52.841916703221855], + [5.97287079966318, 52.840713578282148], + [5.976175056507842, 52.834748180170727], + [5.98177668117295, 52.82928327360333], + [5.986394372567146, 52.821853992119294], + [5.986473146477343, 52.821703129686661], + [5.988904209870975, 52.822063961650009], + [5.990574727466213, 52.821596568929586], + [5.994209580267947, 52.819116251471669], + [5.996507928704347, 52.81656151777424], + [5.999078457544251, 52.816910015703876], + [6.007483470046802, 52.820046477059712], + [6.017899666686065, 52.821900345099834], + [6.024559034845885, 52.822544670862911], + [6.026616571293874, 52.821077610190102], + [6.031168452057453, 52.814990716886214], + [6.038209087211102, 52.817714117474537], + [6.046957515416836, 52.820526393002986], + [6.052935931019826, 52.824123373686746], + [6.057816472255563, 52.825452666128896], + [6.059951106252544, 52.826118545057554], + [6.059300143667815, 52.826805569607892], + [6.054979297890518, 52.831347295160164], + [6.052607420382017, 52.837339128112205], + [6.054547067843517, 52.837631321838252], + [6.061513021804995, 52.839296299649781], + [6.081000340339167, 52.838732331827288], + [6.083297856981359, 52.839486984779818], + [6.087480492563278, 52.843113871265672], + [6.093193170673051, 52.84457942655073], + [6.119819962534488, 52.854214951975131], + [6.128694466080729, 52.847807379060924], + [6.130451746019845, 52.843872559307357], + [6.136820811756089, 52.838825441333015] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 5, + "statcode": "PV24", + "jrstatcode": "2021PV24", + "statnaam": "Flevoland", + "rubriek": "provincie" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.53344494051274, 52.57771609212741], + [5.52943174235689, 52.575102945583552], + [5.525598118904015, 52.57731889163734], + [5.529603748850137, 52.579840159422211], + [5.53344494051274, 52.57771609212741] + ] + ], + [ + [ + [5.757927089204117, 52.590754015480329], + [5.756613903203506, 52.588340198226234], + [5.746399507418019, 52.58954356681209], + [5.739592142192066, 52.59102904707504], + [5.735415396169155, 52.593958919888102], + [5.734126700590461, 52.596748535989612], + [5.734835936067062, 52.602282461102689], + [5.741525479454788, 52.604779334021877], + [5.750190178146156, 52.604046701363409], + [5.754922403559817, 52.602018198226325], + [5.757927089204117, 52.590754015480329] + ] + ], + [ + [ + [5.88808447553552, 52.616862930397332], + [5.843008799986341, 52.610750618601486], + [5.864963681565966, 52.615615480749895], + [5.86783336784164, 52.616069999650527], + [5.869963813844351, 52.615624375134367], + [5.870431502632496, 52.616421454456166], + [5.886481155691595, 52.6198398145441], + [5.887907531074018, 52.620371384711056], + [5.892888375985222, 52.6196898256051], + [5.893977782056702, 52.618504890862617], + [5.896298447466716, 52.617974697766407], + [5.88808447553552, 52.616862930397332] + ] + ], + [ + [ + [6.010562669337982, 52.642440059135005], + [6.00876373177603, 52.642274382159485], + [6.003912159607199, 52.643538772254701], + [5.999268334657897, 52.64570115040366], + [5.999151106913028, 52.647772710326109], + [6.002668475778894, 52.648711504786561], + [6.007986712336316, 52.647970037193183], + [6.010206434812631, 52.647029463904197], + [6.011579315108033, 52.644989331584448], + [6.010562669337982, 52.642440059135005] + ] + ], + [ + [ + [5.74880742689633, 52.839679590136122], + [5.784382212596454, 52.817475752114063], + [5.787375562664476, 52.808969018782399], + [5.789806743631398, 52.803691492857887], + [5.795177104753978, 52.806521844764909], + [5.803474481104645, 52.796858709321363], + [5.81272555145175, 52.791186420883996], + [5.818656564309417, 52.787635740728369], + [5.818791834629835, 52.78469665500733], + [5.828146591768479, 52.785545346636383], + [5.836054380949812, 52.785635103008836], + [5.837310646240352, 52.785023895250376], + [5.841618494286534, 52.785138387212541], + [5.84339001387818, 52.784463625366293], + [5.850296562070461, 52.784530806827583], + [5.862083366675103, 52.781022560816815], + [5.87993860682462, 52.773091572998077], + [5.885136622526339, 52.76930085679345], + [5.892550406170786, 52.765959701393228], + [5.894382893559832, 52.765133707704969], + [5.896085488964112, 52.762822022447857], + [5.897761940378975, 52.762134876165305], + [5.900054199161473, 52.761195260534656], + [5.906009518326877, 52.761325564808914], + [5.921829556260407, 52.751169708780381], + [5.930150601847197, 52.739586134135912], + [5.935559491090758, 52.730251729990506], + [5.941169826728221, 52.717550655828028], + [5.942555103928553, 52.715002006790833], + [5.951161443859662, 52.711919228914233], + [5.952091811271565, 52.71087622937771], + [5.955315583790052, 52.707261780232642], + [5.954839083092365, 52.703767632812792], + [5.95901174150731, 52.703863430690099], + [5.964825099825906, 52.69810443041775], + [5.965155502238773, 52.693569729917094], + [5.962104873158463, 52.69035068130475], + [5.959400222770259, 52.689950316380681], + [5.952740352630801, 52.685240028574547], + [5.951508878236877, 52.684951909457823], + [5.949519185893843, 52.68571346557416], + [5.946847951719645, 52.684002779516874], + [5.944707638220505, 52.68271258206105], + [5.945377042615794, 52.682301426780327], + [5.94016061188768, 52.679223216047845], + [5.933870371563879, 52.675510465396442], + [5.932750662929404, 52.673188929459634], + [5.933084089134751, 52.67126352302229], + [5.934593539864443, 52.669781622963967], + [5.935147925570988, 52.669233810400378], + [5.939725938724258, 52.668835254021985], + [5.940101205657999, 52.670426571100101], + [5.941593592479424, 52.670516683165239], + [5.954017399559601, 52.66767406501684], + [5.958172582342074, 52.66780948150722], + [5.961795030582303, 52.66729649339171], + [5.96305436547943, 52.666398319081409], + [5.966851740946256, 52.666580190257875], + [5.970814073697066, 52.665188824322328], + [5.979546494341811, 52.660495577036592], + [5.984108343588891, 52.657176929475717], + [5.981864535702621, 52.658314075355442], + [5.981238136421005, 52.658091442346972], + [5.983828085234062, 52.656325872107274], + [5.9837367912406, 52.655607955863928], + [5.968255712791417, 52.641221235836099], + [5.963731376424867, 52.638740192161229], + [5.884884364262589, 52.622804160112658], + [5.831786118464935, 52.612538818406264], + [5.771562476029572, 52.612761678067841], + [5.750119513748307, 52.612807909965468], + [5.748594208520342, 52.61226405257765], + [5.745704745606919, 52.612344180926044], + [5.745764387092576, 52.611228290117317], + [5.74988895738066, 52.611130622073937], + [5.750200402230483, 52.610744309772535], + [5.745435146675114, 52.610832724887629], + [5.743302199949071, 52.612410131573633], + [5.741597852782411, 52.612118601737706], + [5.739907120051507, 52.612846530467031], + [5.663326429196364, 52.613045908127617], + [5.65830290590591, 52.613720229062437], + [5.653561199602, 52.615459910952247], + [5.651209404852752, 52.614766336312179], + [5.641975601633492, 52.609845819977039], + [5.639967823383775, 52.60786683932357], + [5.650806495791279, 52.599318181222706], + [5.654765478937483, 52.597336598785816], + [5.725553676048971, 52.586435672299423], + [5.755708779022545, 52.581894146558319], + [5.756763779031427, 52.581283806259897], + [5.756931913793355, 52.57957582811266], + [5.759877594424877, 52.579612975940954], + [5.760893677250917, 52.581553604593772], + [5.763959558304553, 52.581206074887191], + [5.761430830098082, 52.581082176587572], + [5.761030737884366, 52.579333163298898], + [5.767411548434414, 52.579296764210845], + [5.784356037626239, 52.579850755616732], + [5.803995493953636, 52.579681532615609], + [5.809013924250082, 52.578936531206949], + [5.812823180742374, 52.57746327699256], + [5.85172783955806, 52.551218488268219], + [5.854955739305583, 52.545081457193618], + [5.85593106352859, 52.546205746584832], + [5.856270260266256, 52.545136653030539], + [5.856508287295278, 52.545850096392854], + [5.857721294417069, 52.54518140875863], + [5.856950377979727, 52.544027188535857], + [5.856154932826118, 52.544788454110275], + [5.855615176009524, 52.544217794643352], + [5.856599476941892, 52.543811468613853], + [5.855283577472544, 52.543800631892339], + [5.854980062699124, 52.543041005419681], + [5.856995012117367, 52.518196102603135], + [5.855466042700454, 52.516845903031161], + [5.852771130851068, 52.508886536748648], + [5.852980088487378, 52.505979979508396], + [5.847548032406213, 52.493451677609407], + [5.81949062418733, 52.461532401292892], + [5.816111627027206, 52.458851107252784], + [5.816385013670974, 52.457708775129014], + [5.817417744871256, 52.45730193436065], + [5.817377308659267, 52.457255311949261], + [5.814450438610283, 52.456732212117693], + [5.812331737163669, 52.456624071409024], + [5.803778280640362, 52.445857153543663], + [5.8027171735101, 52.446202855762245], + [5.799843652317226, 52.441455464324847], + [5.797273214497993, 52.439620419790565], + [5.79705866596677, 52.438832135516151], + [5.781333331640513, 52.430887946413485], + [5.777910609013749, 52.428335506018342], + [5.775780896560306, 52.427907696529147], + [5.757255117092609, 52.41898319948529], + [5.747011261540916, 52.414582543306906], + [5.745211623796447, 52.414660415282334], + [5.744600242764626, 52.41405070827777], + [5.744846937150369, 52.415156024801647], + [5.742338864557346, 52.415304713451071], + [5.74201657014779, 52.414544455901691], + [5.74381518549666, 52.413747169498969], + [5.741781604796698, 52.413595789333733], + [5.739775881254175, 52.415308580921483], + [5.72650687685288, 52.416972129101474], + [5.720112792681295, 52.416135401747283], + [5.661469715818098, 52.397937438028208], + [5.645253261191814, 52.390730543112724], + [5.644483075414396, 52.389923644512621], + [5.645162979855638, 52.389237704914535], + [5.643837165440538, 52.389246918750672], + [5.644758685303897, 52.388539922277083], + [5.63930489932067, 52.387316577756167], + [5.637354330204069, 52.385742931902804], + [5.636709366542555, 52.386186886041912], + [5.635421668632732, 52.385009789150168], + [5.636216822739407, 52.384152555655319], + [5.63570003316913, 52.383950625396636], + [5.634543284316385, 52.38478214621491], + [5.632643224056136, 52.384048612214968], + [5.634392987652181, 52.382568657775778], + [5.632304018256261, 52.383917653695555], + [5.625200848296433, 52.380315356360285], + [5.623335247647075, 52.376612594779829], + [5.620798537767923, 52.375921031995361], + [5.616132525308786, 52.371721345720012], + [5.616775961736006, 52.370778280255465], + [5.615189469328813, 52.370840468393588], + [5.616377749920854, 52.369461304212962], + [5.616203416188591, 52.368737266420879], + [5.61567475169206, 52.368440121536935], + [5.616292997054939, 52.369313886611415], + [5.61473418821988, 52.37056507532256], + [5.614669358735163, 52.370525861300742], + [5.615435542291261, 52.369824681929927], + [5.612765625040166, 52.368662459278504], + [5.610101801907321, 52.366470085774488], + [5.61144975081083, 52.365904832726308], + [5.614784451144817, 52.367908885755405], + [5.613096754130533, 52.365554354426543], + [5.615318761057392, 52.362614072972534], + [5.614034013617015, 52.362250430118671], + [5.608164603804736, 52.365296029246657], + [5.60704771223569, 52.364512665847236], + [5.601104812675448, 52.365557692995758], + [5.588592734010492, 52.363207432825511], + [5.582382723274527, 52.36307278575736], + [5.563816315799475, 52.3675725054444], + [5.542580103543603, 52.353346440443794], + [5.538348708671596, 52.350125669760338], + [5.537219451476696, 52.347229577138116], + [5.541544143859211, 52.337811134921637], + [5.545156370038746, 52.335083188153931], + [5.548017364781705, 52.335578431466558], + [5.552836049945379, 52.334152426248707], + [5.552129922604409, 52.331697973316835], + [5.552041567697961, 52.333977337829275], + [5.54932865276149, 52.334737967528966], + [5.545490452606793, 52.333808545424525], + [5.545464854398922, 52.333272150134789], + [5.546734446025107, 52.333515915477143], + [5.548846982467937, 52.332839505797438], + [5.548622215369111, 52.332408803069931], + [5.545409091877193, 52.332103679360706], + [5.545540382404809, 52.331695638519626], + [5.548124727953591, 52.332288744168238], + [5.549023183121175, 52.331948849096008], + [5.549036364528752, 52.3313529272396], + [5.545863804406268, 52.330690435516978], + [5.54660157354005, 52.329338697013974], + [5.549212478199624, 52.329973612218247], + [5.55002999942145, 52.331496236545092], + [5.55114012417561, 52.331353749253886], + [5.549737450439643, 52.328953484392869], + [5.548433608046436, 52.327296561416695], + [5.552517600972775, 52.320926329602841], + [5.552503115076907, 52.319786101809711], + [5.550627392414086, 52.318967597263345], + [5.548651972459076, 52.314499491483197], + [5.549018974237958, 52.313549240224532], + [5.549094910002156, 52.312071379187131], + [5.546726791639447, 52.311967800071528], + [5.547060441149245, 52.310881414433211], + [5.542480871204843, 52.300326064619064], + [5.538221568610097, 52.292764671708674], + [5.535557331169003, 52.290512373956531], + [5.538137544239682, 52.289112172927254], + [5.535166908351631, 52.288745740030102], + [5.528698423275225, 52.274925811178292], + [5.526064624225414, 52.273397045536143], + [5.518029428594513, 52.272557565626776], + [5.493293335103297, 52.268287427684214], + [5.488608603051381, 52.266908361549731], + [5.485713569102218, 52.266658634234112], + [5.48727904810139, 52.266389957006368], + [5.471447258221102, 52.26354072551613], + [5.469813492470257, 52.263247292226993], + [5.433533320212405, 52.256401631801467], + [5.433048072929081, 52.255816028736568], + [5.417353185577759, 52.253459831389961], + [5.409645480243459, 52.252612517913008], + [5.402651103647379, 52.2534899488478], + [5.396013915031738, 52.256476315812158], + [5.396414439336033, 52.256859441232791], + [5.394842901673722, 52.257856969011009], + [5.393549046136215, 52.257042137609538], + [5.393961448884901, 52.257964671279446], + [5.392621117590746, 52.258883675290662], + [5.391595134637433, 52.258114568187821], + [5.391997694780618, 52.25931110979036], + [5.385096221016774, 52.264042164331713], + [5.317172405015141, 52.303564771221737], + [5.31390330082398, 52.303100866642929], + [5.313412826341458, 52.303373307156662], + [5.315454383129241, 52.304408751597101], + [5.298218017481115, 52.312129013751573], + [5.284350309039748, 52.31738027524105], + [5.268451450465678, 52.322424921576733], + [5.239766869409346, 52.329269174053969], + [5.223461189987719, 52.332084655136342], + [5.223393502907551, 52.331916409742036], + [5.222958532581645, 52.331977634156409], + [5.221265798671486, 52.331359336748882], + [5.220856648066982, 52.331451543097778], + [5.220886366212447, 52.33180828321899], + [5.220551459762633, 52.332097926563307], + [5.220254793254595, 52.332539814368729], + [5.221259712415287, 52.332353966552517], + [5.22159013291226, 52.333093722757653], + [5.220913790104392, 52.333815659626076], + [5.220141438355549, 52.333970403023464], + [5.219365360307892, 52.333706466231895], + [5.219053302711396, 52.333080612471761], + [5.220265949784637, 52.331808915582158], + [5.219055127204917, 52.331230540973614], + [5.218352628640099, 52.33223424046934], + [5.215723887141893, 52.331293827774992], + [5.216764970020317, 52.33015670197193], + [5.217844473584174, 52.330616483010495], + [5.218585824210074, 52.330366487102083], + [5.21973183190426, 52.330498505571242], + [5.216025808530986, 52.329517438297025], + [5.212604079723387, 52.330082741087651], + [5.213020181535017, 52.332853710487946], + [5.210376791835525, 52.333812877651368], + [5.208654796115843, 52.332466730163304], + [5.20636132130428, 52.333271765234329], + [5.20601300905566, 52.334346908188813], + [5.204784792860884, 52.335498743619411], + [5.195178930420117, 52.336494797308141], + [5.184233089275234, 52.33531796199572], + [5.166858650080579, 52.331862942196381], + [5.156698666420389, 52.329082017039518], + [5.149129786317087, 52.329111671338531], + [5.144803893834546, 52.327072844757176], + [5.144664593842166, 52.32386575250726], + [5.140476445059112, 52.326352040195744], + [5.138822634135851, 52.325518524578086], + [5.138324408296685, 52.325901704150979], + [5.139746983436519, 52.326890180902048], + [5.13696013454626, 52.329380542762202], + [5.139217238004354, 52.32803550025703], + [5.141319650775694, 52.32826616472461], + [5.143611408671504, 52.329639892753789], + [5.144957990796776, 52.331598037841687], + [5.142954416843301, 52.332955797179181], + [5.138742630571008, 52.335368673632487], + [5.136135509155801, 52.337531055236404], + [5.134160402454625, 52.337993301451355], + [5.131773989229697, 52.33731101866065], + [5.130813471536564, 52.338137925764279], + [5.132359821768464, 52.338091838952629], + [5.134617140605373, 52.341100196639587], + [5.131181281520173, 52.342716973790687], + [5.130969802333856, 52.343340300890475], + [5.133738338953686, 52.344077053845595], + [5.133212641608152, 52.347257903131805], + [5.134238878947345, 52.347526517432925], + [5.132818739934849, 52.357066820418261], + [5.131205799785356, 52.365512176992837], + [5.12252763463973, 52.375076598448452], + [5.122191388613683, 52.377240392827922], + [5.123015306211746, 52.379195812784623], + [5.124677043004475, 52.380786634891876], + [5.128941925013755, 52.382886684159807], + [5.156543210101787, 52.393006806350776], + [5.158376892164023, 52.394895377293388], + [5.161485733904527, 52.399425080301647], + [5.161822175315927, 52.39962194748378], + [5.161680565023302, 52.399830008430627], + [5.169642960672413, 52.402770180887238], + [5.205981397828138, 52.416045643708053], + [5.219323492119968, 52.420860996417616], + [5.220008524679728, 52.420345421777157], + [5.208964475914288, 52.416373361862789], + [5.216968080450694, 52.416433244627839], + [5.2205187151789, 52.417749655055651], + [5.219979752362189, 52.418348138309497], + [5.224594939274666, 52.418025865762793], + [5.224387271294695, 52.419124726968235], + [5.228473997656445, 52.4206294774593], + [5.232342008801737, 52.424909642315157], + [5.229925925237237, 52.424777626273993], + [5.258424262981301, 52.435425483950404], + [5.377911083540685, 52.486898796275632], + [5.386467680314088, 52.490267205754719], + [5.394798377623861, 52.490771035166269], + [5.400236054638771, 52.493632396366898], + [5.416746372037112, 52.503048287571104], + [5.417160669781092, 52.503455398265658], + [5.418587552642705, 52.503056729383566], + [5.419099222443881, 52.503377608253331], + [5.418516173042233, 52.504020255705825], + [5.419703190141095, 52.503350692738529], + [5.420175802256939, 52.503534848310075], + [5.419640607739397, 52.504627368430789], + [5.424255464859513, 52.507017877383788], + [5.424347050471133, 52.506930889236486], + [5.434574069215046, 52.511193899108314], + [5.440582559329987, 52.517811145128576], + [5.439416525260449, 52.518821641351195], + [5.436596297462239, 52.518283667033785], + [5.43694874147342, 52.517204769147881], + [5.436716323286316, 52.517113714035283], + [5.436039354396907, 52.518255383498314], + [5.43610837371399, 52.518699513729949], + [5.436694580526683, 52.518576126085058], + [5.43727978107613, 52.519011033198595], + [5.436042117578002, 52.52074503285521], + [5.435735233272542, 52.522048501430405], + [5.43548277668727, 52.52447281141513], + [5.434060590870873, 52.526351606035412], + [5.432976354007692, 52.524717300354247], + [5.431939781582141, 52.524734470063628], + [5.429782651397909, 52.52489597888264], + [5.429519226756537, 52.526641442399921], + [5.429013884976355, 52.526769805818667], + [5.429058057788547, 52.527347609379248], + [5.427066738889439, 52.52742531865627], + [5.427004736116958, 52.526732498644677], + [5.426272255745356, 52.526825277774584], + [5.425519965771838, 52.52082880883016], + [5.424993704591665, 52.520828978337917], + [5.425194118550962, 52.526961831354065], + [5.422709198055294, 52.527276522329451], + [5.423102056290777, 52.529011106324816], + [5.424758287015885, 52.529609292230489], + [5.425537976749641, 52.529667682820474], + [5.42628149522195, 52.535517356555147], + [5.427184221545241, 52.537952812249671], + [5.431069804510521, 52.543544736400953], + [5.438492759724897, 52.554922131357642], + [5.440567107237386, 52.557206215203308], + [5.443526433048157, 52.559495063679343], + [5.44614507429793, 52.561081116043908], + [5.448888456338487, 52.562236040045228], + [5.451643102367513, 52.56330068173029], + [5.464189932160056, 52.566182308713415], + [5.466240805918599, 52.567470195555089], + [5.467352323505376, 52.569253912706401], + [5.466799362370711, 52.571771360644306], + [5.457384310924922, 52.5899771570704], + [5.455458804656794, 52.593558389049797], + [5.40721157608515, 52.640844110976133], + [5.406283892368119, 52.640617607491606], + [5.398974637067202, 52.648833839524521], + [5.360342403745846, 52.67417949009193], + [5.352631768861685, 52.677430410052814], + [5.305494382755875, 52.689886278618062], + [5.299204751564597, 52.683218689784631], + [5.293237781819537, 52.681306983899013], + [5.287130122532592, 52.681579339978448], + [5.281432135906519, 52.684389665379157], + [5.288299042114055, 52.684198260340565], + [5.292413295593038, 52.685072995959352], + [5.295124372242639, 52.686778142928524], + [5.296550953213298, 52.68982850095064], + [5.286883502639623, 52.689895479885465], + [5.287425002785362, 52.691164983848992], + [5.297173512075918, 52.692185935963138], + [5.302143801324427, 52.691594580513993], + [5.353661570457856, 52.677738054278116], + [5.361210313234126, 52.674419073445357], + [5.399548909326608, 52.649383240702143], + [5.413217478875503, 52.636005794078244], + [5.415819135888509, 52.63709313615017], + [5.416096546319523, 52.636303617899344], + [5.414237590503622, 52.635634793187869], + [5.415745921131365, 52.634233667493739], + [5.41706307223917, 52.634572090592215], + [5.415831470853998, 52.633661942514721], + [5.456439210267072, 52.593640402159103], + [5.467912768349987, 52.571370787845602], + [5.468555889889502, 52.569640049154046], + [5.466997885375067, 52.567214413436794], + [5.464381553430279, 52.565719005027255], + [5.4532409484614, 52.563308842689167], + [5.448431038058796, 52.561597259977169], + [5.443568636579672, 52.55885040065737], + [5.439835409257465, 52.555512351967529], + [5.428045757238458, 52.538094104542644], + [5.426890737885011, 52.535034464565442], + [5.426258069985103, 52.528031069677183], + [5.42716377194597, 52.527983212577809], + [5.427076409928556, 52.527493581760801], + [5.429066728359074, 52.527415837627437], + [5.429112401087097, 52.527868354493663], + [5.429744070991377, 52.5279251979807], + [5.430317240723595, 52.529410801465005], + [5.432398603770501, 52.529354215048066], + [5.432675684070849, 52.532288296852393], + [5.433093306490097, 52.532425576718268], + [5.432789834862355, 52.53059674232891], + [5.433592953495477, 52.530529704082369], + [5.434607263467443, 52.529784073743855], + [5.434894768587665, 52.527620319516764], + [5.435198216751963, 52.529683890758143], + [5.436272094225095, 52.531048423410667], + [5.439421317948375, 52.532875649312061], + [5.43976840315882, 52.532672060099451], + [5.43679959071854, 52.531000633838481], + [5.438569000899199, 52.529877801363291], + [5.44156843397062, 52.531619340424989], + [5.440428837658071, 52.532319646839653], + [5.441813304435128, 52.533138875574032], + [5.442980729223674, 52.532405467081695], + [5.445558619313764, 52.5338822390327], + [5.445767651633915, 52.534143606416514], + [5.446252298226089, 52.534749583605084], + [5.445429157198353, 52.535269603732793], + [5.444439144698443, 52.534725986842169], + [5.443900676389228, 52.535175377625805], + [5.444800868091871, 52.535666514028577], + [5.443992519576113, 52.536177158449632], + [5.443076231065478, 52.535667792938341], + [5.443195594685038, 52.535274148005364], + [5.442349491245626, 52.534918264676222], + [5.442042430099509, 52.535329428495558], + [5.442154519172797, 52.535979568030179], + [5.444431608544886, 52.536849263151787], + [5.447578552719686, 52.5352172814681], + [5.454511098508148, 52.54601283313611], + [5.454621374587116, 52.54663418331576], + [5.453813148029433, 52.546790255468707], + [5.455940898403072, 52.550327811860605], + [5.454457221039241, 52.551294956969812], + [5.456921076732726, 52.553542321379972], + [5.458888447024432, 52.554206959261286], + [5.459727157624997, 52.554172353903631], + [5.457117009288103, 52.553272478022656], + [5.455209832848811, 52.551433885656607], + [5.457793032035307, 52.550101312100729], + [5.458970989986817, 52.551383332925518], + [5.460159610228239, 52.551856991637791], + [5.462095470673663, 52.552151324496435], + [5.493321753312043, 52.553268960022919], + [5.497449514171303, 52.5543667110299], + [5.500714513708008, 52.556104376686882], + [5.518992022155664, 52.56740043505463], + [5.517702346702577, 52.568261050198991], + [5.521901444338807, 52.570838716003642], + [5.52331764661988, 52.570072540314221], + [5.541182616560024, 52.581103301711437], + [5.558708954121727, 52.592260326511607], + [5.565123476276981, 52.594638287098981], + [5.572888548256995, 52.596157423438072], + [5.628315286520804, 52.605359001797702], + [5.641547156351877, 52.610548264866885], + [5.649320418747912, 52.614662006554084], + [5.650037169257779, 52.61559374673832], + [5.651644709391975, 52.616973329169738], + [5.629891128034862, 52.637716695316065], + [5.615913947495264, 52.650628952786278], + [5.60151526331734, 52.656905870310439], + [5.602063325883883, 52.660224168517693], + [5.600125608845218, 52.660153048983247], + [5.600177873099479, 52.658900900184065], + [5.5973531534985, 52.658800404020539], + [5.596626544473307, 52.659230421251053], + [5.598399987995996, 52.659397999644909], + [5.598337053813891, 52.660394469832113], + [5.599233366392589, 52.660877433596248], + [5.59321010576394, 52.660623133928937], + [5.595640250652879, 52.660294825330162], + [5.597550524841125, 52.656782488911588], + [5.594804805689745, 52.659670638392186], + [5.591471992819383, 52.660987277449458], + [5.592727550483403, 52.663074713043351], + [5.593114784182764, 52.669885405021269], + [5.593319621139949, 52.676280556584373], + [5.593846574330433, 52.702182590775884], + [5.594877913138616, 52.748000560459552], + [5.595172030894834, 52.762625834249803], + [5.596582941475934, 52.766058112662179], + [5.633593072429914, 52.802222058819794], + [5.659721463411301, 52.827668149025151], + [5.663405254636841, 52.83008662699735], + [5.669587300637404, 52.831733829942479], + [5.709815031976373, 52.834664437134769], + [5.712028611778686, 52.835693749078253], + [5.713081435685073, 52.838027248621152], + [5.72269914010015, 52.836074640525823], + [5.728663508300948, 52.833398016538808], + [5.729574063858867, 52.833726562659024], + [5.727247360452667, 52.836916202543215], + [5.724823950259122, 52.843623313962489], + [5.724682056336879, 52.843982248713871], + [5.745718989964205, 52.840236235237512], + [5.74880742689633, 52.839679590136122] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 6, + "statcode": "PV25", + "jrstatcode": "2021PV25", + "statnaam": "Gelderland", + "rubriek": "provincie" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.60592911448403, 52.36322652549439], + [5.601765481894241, 52.360975808390052], + [5.594840619500391, 52.362098899314688], + [5.593210143696429, 52.361929547481537], + [5.593469320340597, 52.362935703169683], + [5.595149900933668, 52.363371003672121], + [5.60008130090897, 52.363469660121226], + [5.60592911448403, 52.36322652549439] + ] + ], + [ + [ + [5.876205472580023, 52.522025025579843], + [5.877762758700204, 52.521148504876969], + [5.879022647582031, 52.52166164595095], + [5.88260447092825, 52.5189612249047], + [5.883318754468668, 52.519230756115967], + [5.887276735751916, 52.516906197290062], + [5.901581196759049, 52.505679148906431], + [5.909559928272562, 52.497954583665475], + [5.920851946656406, 52.482554802734562], + [5.925559519113716, 52.47405759138362], + [5.935409779657468, 52.477392036935349], + [5.936879960830484, 52.476499056024352], + [5.946122090665267, 52.482039607667751], + [5.949889747501603, 52.483808563432568], + [5.952881580089618, 52.484438479580199], + [5.958301047254488, 52.484063013899586], + [5.965309092551217, 52.476444394527434], + [5.971808693274635, 52.481252124648847], + [5.983161728595332, 52.488975714811552], + [5.991722490124118, 52.493898802927298], + [6.000788474381069, 52.500148829914281], + [6.007610029811737, 52.504260036172148], + [6.012367518947599, 52.505939772141133], + [6.015080448221828, 52.505962791480975], + [6.019337619320309, 52.504827489436451], + [6.02285147374382, 52.505331880840849], + [6.025346558885514, 52.506573331576661], + [6.027857570858755, 52.509606204048268], + [6.040509189203387, 52.506257714021871], + [6.046187441604212, 52.503860644980378], + [6.054220273712411, 52.499787089160378], + [6.058397625942073, 52.496003137305046], + [6.061774273919342, 52.490398183581284], + [6.063430410338269, 52.488053198408885], + [6.066371259676631, 52.485170778229318], + [6.07142541491093, 52.482107481353509], + [6.076421352672764, 52.480223355938442], + [6.089267611008094, 52.476811265235426], + [6.094246493607733, 52.47411100366395], + [6.099146945259086, 52.47031050599962], + [6.101701308348638, 52.466347280798615], + [6.103546004864549, 52.453963722482229], + [6.101986014357795, 52.447799952620187], + [6.102294711870784, 52.445771904753649], + [6.105023722142703, 52.442586576781004], + [6.109580092951922, 52.440530733582492], + [6.114106757969484, 52.438006470803586], + [6.119489370211191, 52.432925722908706], + [6.11638510859934, 52.430199435924969], + [6.118169195768229, 52.428436847159553], + [6.118244942874296, 52.426643847527558], + [6.113872019949022, 52.419853261432863], + [6.113572574082331, 52.416905672733137], + [6.114741181324479, 52.414255609159937], + [6.110806905214452, 52.407812567625221], + [6.114857158379318, 52.406985384773847], + [6.116246714978538, 52.40487514394755], + [6.119064838768469, 52.402641880022152], + [6.123683280004704, 52.401916162410529], + [6.125372358960085, 52.400177336023447], + [6.127579316081886, 52.399617309875914], + [6.130552793139139, 52.399977694518654], + [6.129970640979344, 52.398603326578105], + [6.125208525407367, 52.392627173794899], + [6.126196721289612, 52.386065937131711], + [6.125830054005711, 52.384058539608418], + [6.123650482321586, 52.381318190347578], + [6.120853909060656, 52.379541976860132], + [6.113371149244817, 52.377208830985651], + [6.095133444649045, 52.373841138588439], + [6.082463380987451, 52.372069296670475], + [6.079701290348717, 52.370664854652816], + [6.078203240460818, 52.369046172199788], + [6.07784500418196, 52.364297065321438], + [6.080882100040967, 52.362036115508943], + [6.088487420581742, 52.361145666356109], + [6.090712936704411, 52.360444162297213], + [6.093522136598326, 52.358671713537845], + [6.094778588203538, 52.356931064722517], + [6.087240580344242, 52.353890004046605], + [6.078009960516522, 52.352426436377336], + [6.078099002061147, 52.35175579757599], + [6.076070195733232, 52.350570298884648], + [6.076131285927614, 52.345669331232955], + [6.075330048026688, 52.34455554135041], + [6.076764221258427, 52.338650764906397], + [6.075579643845689, 52.334741767252517], + [6.074053552080066, 52.334523650463602], + [6.075632490946044, 52.333300166400591], + [6.074355684187668, 52.332555806744949], + [6.073680707822327, 52.330569244283289], + [6.07070575553554, 52.321881903967999], + [6.067387682512689, 52.321412894386434], + [6.066087052090017, 52.320253079620294], + [6.066525187855703, 52.317809116470258], + [6.071843015270089, 52.317185076646481], + [6.073775918360352, 52.317740944385044], + [6.079694061103889, 52.317641545891632], + [6.080990181383662, 52.311902481778397], + [6.084398110556786, 52.311452107533611], + [6.082927815411703, 52.307120157241251], + [6.084071479340558, 52.301685925349801], + [6.08623411604796, 52.301897854309885], + [6.088129109474843, 52.300376300704237], + [6.090902256655403, 52.299989473451504], + [6.09919420937699, 52.300128348936894], + [6.09874166169367, 52.301159911681928], + [6.101320455781886, 52.301224775657744], + [6.104994431299287, 52.296250169070163], + [6.104770706737716, 52.294762034937989], + [6.10586453805399, 52.292407971908027], + [6.111321692275891, 52.288210826199467], + [6.111267170094957, 52.280720624330328], + [6.112364764052743, 52.278305044612729], + [6.12110939237768, 52.272025584768414], + [6.122982031960827, 52.269255446331023], + [6.123907276430031, 52.264506881223085], + [6.127446717916467, 52.261704985433653], + [6.130069170077681, 52.260691393522116], + [6.12514503347756, 52.256825363403195], + [6.123637758401231, 52.25368789564925], + [6.123865551869699, 52.251481110892946], + [6.136722264028014, 52.249040836836329], + [6.143502087630417, 52.246411695741863], + [6.144509911635333, 52.247122309136998], + [6.150020390671044, 52.248315936147534], + [6.153337106042334, 52.247054734515409], + [6.154199373404856, 52.245868600360275], + [6.15384521497651, 52.244306200322868], + [6.151166579672632, 52.242532558479944], + [6.142236750008593, 52.238455868067483], + [6.141707216296005, 52.234172117165102], + [6.143079388282268, 52.231618329704887], + [6.147509945720228, 52.227778204336119], + [6.156509161892096, 52.225694588192198], + [6.16015316141294, 52.225223157294884], + [6.162173066162692, 52.224166163638976], + [6.163985797349535, 52.221645981740345], + [6.162627575911196, 52.218394725592375], + [6.164068834923951, 52.21744065383492], + [6.165962998656803, 52.217755675859102], + [6.166684870914146, 52.218801972520424], + [6.167647891908746, 52.218875379935433], + [6.167525137030508, 52.220104481489628], + [6.168671456501666, 52.220699152376859], + [6.165276387312595, 52.222842294814711], + [6.165722849381035, 52.223503326479886], + [6.162499669302331, 52.2279169147278], + [6.167865228481721, 52.226338603639874], + [6.168435736530316, 52.227279011153108], + [6.167597939899479, 52.227687383967471], + [6.163028088187494, 52.228522104615912], + [6.166268915961862, 52.231013776545673], + [6.174214304378189, 52.232781333232289], + [6.182531018334297, 52.233825032161192], + [6.189135699845983, 52.229166515616235], + [6.20311018911134, 52.229269227189825], + [6.216948594415596, 52.22647365061421], + [6.214501290227937, 52.231427287009012], + [6.216480345136886, 52.231474720636868], + [6.220539775252, 52.229518175041449], + [6.23392009768996, 52.229035423935727], + [6.235203569386489, 52.228158407063042], + [6.238053646246633, 52.227717468355593], + [6.250871145540168, 52.226931318535122], + [6.25729482781786, 52.227276221735316], + [6.260835442413385, 52.229070975079786], + [6.264718522807542, 52.227247812692255], + [6.269400525530225, 52.226457393610225], + [6.271290999366949, 52.226413636206729], + [6.271007142177211, 52.227909928193647], + [6.277803563753237, 52.228365212558785], + [6.286333273318201, 52.230362029189521], + [6.291812093389204, 52.230885364553892], + [6.292829291547158, 52.230827232533571], + [6.293035140057562, 52.229512463021194], + [6.296951883755783, 52.22900122487777], + [6.297942366641769, 52.225529834389548], + [6.320429270345445, 52.225669090657235], + [6.325434113433649, 52.226996640714148], + [6.338708390076066, 52.227152868500973], + [6.338056958767287, 52.236222953776128], + [6.341476119705459, 52.236255953354494], + [6.342019555589381, 52.237593430055782], + [6.346622933745659, 52.239029443192429], + [6.348641039941391, 52.238701008278845], + [6.349651626240348, 52.241241232879851], + [6.350891912788705, 52.241680085986353], + [6.366851389192007, 52.241532144065211], + [6.377348539943778, 52.244749953013731], + [6.381851547321522, 52.246112811199673], + [6.383410907280121, 52.244015811699512], + [6.389863387768307, 52.24255918843091], + [6.402618944390948, 52.243271715045999], + [6.416422308387167, 52.24216635698965], + [6.416395321740435, 52.239525155902427], + [6.416807434674314, 52.237126344089113], + [6.42197500405639, 52.232925755341093], + [6.429342362224461, 52.223135806637636], + [6.43157373800415, 52.221244239145364], + [6.439967863262162, 52.217067156930376], + [6.446311060135706, 52.212800921413681], + [6.452745858855111, 52.206477193936998], + [6.45349132402628, 52.20417246368919], + [6.456133357503919, 52.201709232756912], + [6.457287139991562, 52.20096466150617], + [6.467118393176568, 52.200395346719084], + [6.470269622866285, 52.19937979440008], + [6.469464534738656, 52.198282037920521], + [6.469999059298614, 52.192690472523637], + [6.472700073458714, 52.189040474879846], + [6.478357053083218, 52.183827241683005], + [6.47903176509752, 52.182599599965876], + [6.490647026196958, 52.179862981502957], + [6.492401221285889, 52.177371868813189], + [6.495839444445418, 52.177145373633309], + [6.513241072518237, 52.181230545707848], + [6.517642077455977, 52.181267041733165], + [6.555349553874113, 52.177255568968206], + [6.584948879006024, 52.181529849526761], + [6.587982461015061, 52.182010638584181], + [6.589953792870036, 52.182487841292563], + [6.591077418740971, 52.182263641046383], + [6.596115271302147, 52.179835252055142], + [6.606326916948099, 52.173082447146086], + [6.606207520337403, 52.172369144412066], + [6.603184915298303, 52.170721828902565], + [6.602851419501564, 52.169121316313287], + [6.607354841409903, 52.164630928646119], + [6.609270420886395, 52.165143297013387], + [6.612147289956656, 52.163166308487938], + [6.617356830496, 52.165290926919013], + [6.621989594527449, 52.168372962099809], + [6.624952311965485, 52.168649831657632], + [6.626563915010959, 52.171456927304249], + [6.625285914021708, 52.172171951643911], + [6.62583973297393, 52.172499263244802], + [6.629101094540376, 52.1720326740733], + [6.631041100592435, 52.173142272857675], + [6.634841581528966, 52.172177296303609], + [6.640280212908499, 52.167405145952294], + [6.645040782946962, 52.174194260422254], + [6.649211872397508, 52.172878488220427], + [6.671338987298403, 52.165683202267701], + [6.671973540146309, 52.16492723579379], + [6.673397435967614, 52.163239703784122], + [6.672784468952997, 52.161379068133925], + [6.674066769415978, 52.161243464139872], + [6.673146988558115, 52.160118889752432], + [6.673640415172573, 52.159862331715637], + [6.67391416715321, 52.158814402898273], + [6.670610268592018, 52.156420323788183], + [6.673095075874108, 52.154753301688196], + [6.672428785989877, 52.153031700211606], + [6.67381947388309, 52.152103630151174], + [6.672678901401082, 52.150507358107049], + [6.671309301828582, 52.150458117302932], + [6.67374831874724, 52.148286604938569], + [6.674394897723963, 52.142774467864918], + [6.672613102167933, 52.139309966484291], + [6.668409141986257, 52.136614694042933], + [6.663003534939993, 52.130001060586309], + [6.672556286737227, 52.127370300687552], + [6.677690678348077, 52.125958956672406], + [6.697810103716001, 52.123553674878501], + [6.711289949760966, 52.11970824365028], + [6.716272444648101, 52.118270410536439], + [6.739493120773589, 52.118104776828311], + [6.739505904415614, 52.118556420876679], + [6.760572414170975, 52.118779938837228], + [6.759705487272342, 52.112661921649128], + [6.759574274831843, 52.109302939371211], + [6.758535078441501, 52.105301253614037], + [6.758014734849551, 52.10382570574216], + [6.75762666736536, 52.099288621659632], + [6.7561931837165, 52.097666738603607], + [6.755467463453226, 52.097128081256137], + [6.756304890835179, 52.096929437736797], + [6.755002582261754, 52.094862717284599], + [6.753297401105362, 52.095880788549877], + [6.750284287152436, 52.095778161782157], + [6.744776403919712, 52.093123500679873], + [6.745064167074292, 52.091170570667309], + [6.745496191810387, 52.090067443549444], + [6.750264938669265, 52.087507633842804], + [6.751086981028651, 52.085476840477796], + [6.747612152665999, 52.081924908640659], + [6.744028361043814, 52.080337143142508], + [6.73547068195025, 52.074633962162828], + [6.713867488601705, 52.072901488264677], + [6.69597311166091, 52.070142284750496], + [6.694662883098839, 52.069800447963011], + [6.696867774797196, 52.067343721754632], + [6.695873896778615, 52.064265017866234], + [6.695226537960435, 52.064167969139703], + [6.689570706276882, 52.056453023500552], + [6.687385853983096, 52.056394586500353], + [6.686806856547922, 52.05551876354729], + [6.686742572519954, 52.052540069937201], + [6.688199478446771, 52.05234959236963], + [6.687981260831585, 52.044365441274991], + [6.687853004707305, 52.039856156720049], + [6.714134317273385, 52.040064713554393], + [6.752977324157369, 52.02840557129187], + [6.764088356207426, 52.022310904580173], + [6.766307214419916, 52.01878220808355], + [6.771677990082549, 52.017969042406172], + [6.811410595959856, 51.998096474189524], + [6.807798755844134, 51.994967444850907], + [6.826607494812667, 51.993527386356632], + [6.830351844616898, 51.986192275836167], + [6.829629008181783, 51.979388540545557], + [6.830233926307013, 51.976407314294228], + [6.832307847310982, 51.974345294431444], + [6.832801702827645, 51.971806634538069], + [6.83242704377682, 51.970044278621359], + [6.828528969465169, 51.964105438635684], + [6.813837374190493, 51.963633068751491], + [6.812461051247733, 51.96183327262915], + [6.798867790085764, 51.958715617917662], + [6.796244315950498, 51.943975538246931], + [6.797270910630223, 51.942552520747071], + [6.793990841424436, 51.935293512681177], + [6.785977266776887, 51.931189320394267], + [6.788944760358366, 51.929656596808982], + [6.770035830918389, 51.916198885138257], + [6.765993298764967, 51.916064990279487], + [6.760481788876281, 51.914120956404574], + [6.757273205523163, 51.913824213670324], + [6.754026463141551, 51.912623276487984], + [6.754399125176183, 51.910066589485531], + [6.752056908659354, 51.908550800260109], + [6.751264366390755, 51.907239872346864], + [6.745541805755145, 51.905722032445965], + [6.737132529854145, 51.904681242990861], + [6.732497876093595, 51.898722655108628], + [6.721969583570798, 51.896063339984792], + [6.703221081258688, 51.90639547104837], + [6.70380263629222, 51.909407899652336], + [6.70272244564642, 51.909809443566509], + [6.699824162056795, 51.909058797584102], + [6.697667291941195, 51.909870122630288], + [6.695346227965883, 51.915868238042442], + [6.692650170970196, 51.9147169733303], + [6.684248674201736, 51.916096962734898], + [6.68422458083838, 51.917590756503181], + [6.67478943407473, 51.915937777132299], + [6.668733473314519, 51.913863393665139], + [6.654632075125144, 51.908940211919813], + [6.637717137745214, 51.904454675141039], + [6.634173806597795, 51.901005381473873], + [6.627695531442064, 51.900857525205318], + [6.625310003041758, 51.901941880028645], + [6.619635294568146, 51.900663656516194], + [6.604321400373144, 51.897258548254136], + [6.585780027388927, 51.894081979450441], + [6.569130212247788, 51.888109369261599], + [6.563870080327644, 51.885489071426804], + [6.562778516225515, 51.88441135063718], + [6.560864851381067, 51.884015644819733], + [6.560976956402707, 51.882482753369104], + [6.560337178907455, 51.882195454458028], + [6.558812545677783, 51.882526571139095], + [6.557279751879639, 51.881777762266672], + [6.555862957191862, 51.881804689466271], + [6.555328960302579, 51.883437668170892], + [6.55271731138424, 51.884051289310435], + [6.55242562687279, 51.886191421939373], + [6.548363090363864, 51.885346658395022], + [6.549897738675489, 51.883390001177133], + [6.549250591498866, 51.883142941459091], + [6.547505327847006, 51.883320636281468], + [6.545291930436852, 51.884631879906095], + [6.544150716688394, 51.884609797161929], + [6.539898693977211, 51.880916190088747], + [6.529205563890052, 51.876815961498849], + [6.529886021153074, 51.875987946919587], + [6.524476805590876, 51.874050976469242], + [6.524572573217296, 51.873692247921255], + [6.518288687697487, 51.873117154933418], + [6.515609172033794, 51.873521385730839], + [6.514577763552579, 51.873125779352968], + [6.51154761229602, 51.870859786164345], + [6.504470733175722, 51.868555592880107], + [6.503193196338077, 51.86763361079489], + [6.501060770022235, 51.868000101686917], + [6.50220798273426, 51.864705243136548], + [6.500291066067566, 51.862272390109837], + [6.48792269232129, 51.859061451710154], + [6.483977909786621, 51.857560082962145], + [6.482409627033149, 51.856881122157056], + [6.477053647799882, 51.856659602856908], + [6.473895229612206, 51.855474468260759], + [6.472507887146605, 51.853823022487546], + [6.464735091582124, 51.855162377773965], + [6.464383808536606, 51.85528729073345], + [6.458314951863683, 51.858684632205978], + [6.451089159832885, 51.865245999704833], + [6.448470285786255, 51.865505557096583], + [6.446672700115735, 51.865005556339547], + [6.443674057974448, 51.862667121896401], + [6.441377380524361, 51.861858463447369], + [6.438733104458188, 51.862099694348252], + [6.432362841661017, 51.859382929714016], + [6.429436217454238, 51.86071453432691], + [6.42860570833061, 51.865083634922634], + [6.427360731215181, 51.865861762501652], + [6.426125531842544, 51.866250226867756], + [6.424325166239648, 51.865973294356287], + [6.421794145533757, 51.866988482491593], + [6.420218155263061, 51.866781205303404], + [6.418574479770192, 51.867247530660663], + [6.415182654523644, 51.868730493099704], + [6.412253439963284, 51.871096417326804], + [6.410170290641251, 51.869554566796523], + [6.408751845729979, 51.869463724415141], + [6.406754100846745, 51.870767694191144], + [6.404314476647251, 51.870242182224466], + [6.402475049965648, 51.869137355690356], + [6.401312500244815, 51.869450356702544], + [6.400604553860279, 51.870437133326426], + [6.399127571338829, 51.870300593739259], + [6.398372022352357, 51.870976651472944], + [6.396745995027838, 51.870333887488826], + [6.392284329197184, 51.874031127129641], + [6.390566171928679, 51.873968068292442], + [6.391154479019873, 51.872949747618463], + [6.388392286122141, 51.867200888895759], + [6.386967316862691, 51.864955378267361], + [6.388034559798779, 51.861899123911499], + [6.391388052311737, 51.86139806415855], + [6.392000659807859, 51.860336372894899], + [6.395502830707062, 51.859062282250058], + [6.4004327396169, 51.855832937323648], + [6.407710452101496, 51.854364496453158], + [6.408953291409735, 51.853346158602776], + [6.409055543063527, 51.852485709590937], + [6.405033490505494, 51.848908899226387], + [6.405185536367463, 51.847386893679392], + [6.402377484042419, 51.844540992177308], + [6.402437248343383, 51.843222920300093], + [6.406665421067898, 51.838550420189108], + [6.408089288903646, 51.835880698176965], + [6.402953656603312, 51.836544334826151], + [6.407491225386033, 51.828089473023219], + [6.401818442812526, 51.827262655286034], + [6.400214411916911, 51.828533028417347], + [6.392682965413742, 51.83113283959193], + [6.392278288576069, 51.831951516188774], + [6.389543824721286, 51.833295147293931], + [6.38222431603286, 51.834781776419632], + [6.373704822795476, 51.834759433705123], + [6.368723001001203, 51.83325739074531], + [6.363330644269031, 51.835155877378192], + [6.362849200835627, 51.835823559483948], + [6.364061293738215, 51.838440582956366], + [6.362516390178493, 51.842772556413962], + [6.360257581245745, 51.845799072738785], + [6.357747116967442, 51.847484409702048], + [6.34871467968247, 51.85009284696158], + [6.345179660885186, 51.850957470209124], + [6.339422220700518, 51.850739985176411], + [6.333140874066902, 51.851591324757678], + [6.320503743556945, 51.851683771353642], + [6.317763401167402, 51.851223386004825], + [6.31250879804753, 51.850277082369416], + [6.308281577813853, 51.849809982340886], + [6.306203083154032, 51.849078202368148], + [6.303758821492357, 51.853573634285205], + [6.300683543793685, 51.862037449704921], + [6.300504182884922, 51.86450946446827], + [6.298222484963875, 51.865943343372848], + [6.299006398807806, 51.867826218684591], + [6.295716546987808, 51.868243895555537], + [6.288290054661893, 51.871421030860759], + [6.283381462824748, 51.872203752739942], + [6.27990691918518, 51.874069703350926], + [6.272261624385206, 51.874654348345508], + [6.269366178484447, 51.873915197161686], + [6.265330315377464, 51.869992534515688], + [6.26222314756973, 51.868243149308491], + [6.252844502324548, 51.868901768566772], + [6.246295359165494, 51.86995024334125], + [6.241826662545895, 51.868966967628673], + [6.234804547312732, 51.870003526645874], + [6.230135697740939, 51.869653342276415], + [6.224632915295532, 51.868543454942476], + [6.215057033109341, 51.867626205725664], + [6.202651436771625, 51.871719817278162], + [6.192760165122156, 51.876439311462285], + [6.18354945933755, 51.882531204357562], + [6.18201015126818, 51.885777642913176], + [6.185990203799224, 51.88685121028773], + [6.191423366310008, 51.88737214355681], + [6.189604402575207, 51.88878861782306], + [6.191085143562505, 51.891657103150244], + [6.187036857235404, 51.89230571578296], + [6.182558180393599, 51.893906809133846], + [6.169769332537366, 51.90128706192656], + [6.167911852217089, 51.900941944428176], + [6.165632961354039, 51.898596474364986], + [6.16302403491802, 51.901140439690465], + [6.16229086018845, 51.900940249353731], + [6.157385608792724, 51.905100359742434], + [6.156225392676737, 51.905244857635623], + [6.154314570084236, 51.905198736770572], + [6.154052355970616, 51.90455389767861], + [6.130547209940334, 51.899857450415347], + [6.12567268893525, 51.898201334958188], + [6.117889497651105, 51.901659141460826], + [6.114821300642093, 51.897720467604856], + [6.112306849012264, 51.89894437126167], + [6.111538441220595, 51.898615087607183], + [6.109306139241884, 51.895830218648484], + [6.110176058122422, 51.894942861771398], + [6.103474539583962, 51.8924834693061], + [6.106330818994864, 51.891653320295759], + [6.113098619237613, 51.892566812599576], + [6.118224271924515, 51.892012602942359], + [6.121149180025504, 51.891065568275259], + [6.122299040835905, 51.890107921601818], + [6.124396299267467, 51.890152841849805], + [6.130112224457945, 51.888272449360201], + [6.13344396223544, 51.886476972218098], + [6.137127195353687, 51.885802732798282], + [6.138052094557875, 51.883596587053923], + [6.143610079407803, 51.876251178890591], + [6.14329550330678, 51.874979964107162], + [6.144548579856925, 51.871618495530541], + [6.144539177146457, 51.869744512247479], + [6.148425352166472, 51.868230948332879], + [6.150782509914065, 51.86618627191644], + [6.156107539136981, 51.86547026505167], + [6.161513929261297, 51.862986935898434], + [6.166918546444426, 51.861642051844576], + [6.167235054150227, 51.86096480949746], + [6.164368746577773, 51.858873818791807], + [6.163606730373444, 51.853444754476897], + [6.165639791656544, 51.850209203709078], + [6.166559886041127, 51.840721642057574], + [6.147493561837422, 51.845404607829188], + [6.135771175361435, 51.847169410781277], + [6.107226847794052, 51.848099150191807], + [6.099520340421478, 51.849390929773001], + [6.08955589618419, 51.852597001046689], + [6.077211358009206, 51.859241846209265], + [6.063485633386717, 51.865451225411526], + [6.061640806236476, 51.86118032376168], + [6.060434534984052, 51.861291947242172], + [6.059602441218248, 51.857654738398317], + [6.054355239125349, 51.857405233273333], + [6.051423661746978, 51.856661227097838], + [6.055304683137767, 51.852354124092031], + [6.041683609055747, 51.847011938905538], + [6.036927375038868, 51.844081661372947], + [6.035670586495869, 51.842638043584486], + [6.033416393259873, 51.843353107124152], + [6.032682326521227, 51.842351522077067], + [6.029153180040127, 51.845123211653146], + [6.020184134108726, 51.841638980332206], + [6.017839042086791, 51.841559734159176], + [6.016043413589891, 51.838242419493945], + [6.014713388414818, 51.83749638669147], + [6.010142315327774, 51.835127093912718], + [6.002256858297212, 51.832490538685079], + [5.994426298972519, 51.830915126756167], + [5.986737439318014, 51.830669883349941], + [5.976465254640405, 51.832946420947778], + [5.972111027136577, 51.833429771135002], + [5.968961775520677, 51.834074841452974], + [5.962978285581698, 51.836913960102727], + [5.962903145394597, 51.836859966090763], + [5.945044788568487, 51.823544020658019], + [5.958150881626151, 51.816931293148365], + [5.957140470047052, 51.816338908066996], + [5.955676323401327, 51.815469430636348], + [5.95478886718491, 51.815907165562123], + [5.952846956106418, 51.814789605518264], + [5.950672284047463, 51.816237486389419], + [5.949627931926932, 51.815445042819356], + [5.948078027556236, 51.81644618479352], + [5.945926757039297, 51.815111134745052], + [5.947027682919475, 51.814386055051529], + [5.946569967453004, 51.813479918213545], + [5.949421969263347, 51.812443069982216], + [5.947977943855136, 51.811371373697021], + [5.951144629453673, 51.810560232929859], + [5.956379596945228, 51.810091470492473], + [5.963079258304528, 51.807059190584624], + [5.975238729853094, 51.799269489332545], + [5.979065415781473, 51.79765066416293], + [5.97439199066184, 51.795623078520798], + [5.976782177937426, 51.794276171024599], + [5.974953303459437, 51.792261317152601], + [5.972632562467223, 51.789565292635707], + [5.975009612419467, 51.788807804663925], + [5.973989022530696, 51.788422092341904], + [5.974548481933788, 51.785061976028175], + [5.979538919096442, 51.785977078052092], + [5.980859432070735, 51.785529822619893], + [5.981765691983958, 51.784136705858209], + [5.984678764584243, 51.785057134958649], + [5.984793329998705, 51.78442816618918], + [5.987887868613384, 51.782888728168302], + [5.989747763583599, 51.783723736674887], + [5.990427116894944, 51.783197492261486], + [5.983432014056878, 51.778725034676171], + [5.984544154205482, 51.777793572458037], + [5.984022508761458, 51.775351198834841], + [5.982359922572063, 51.773697008372601], + [5.986801676399798, 51.772226907596924], + [5.990750089149953, 51.769682232626103], + [5.992067052235931, 51.770245907743771], + [5.990501179950885, 51.766277307406803], + [5.978290125050086, 51.759710013697202], + [5.973547597825883, 51.758986674798223], + [5.958336158348669, 51.751460733375801], + [5.956824842930425, 51.751938500384547], + [5.951988271119639, 51.748949418621706], + [5.953287975954929, 51.748024158715729], + [5.951952585590878, 51.744370648842676], + [5.943962151965956, 51.741816813041616], + [5.93829868587325, 51.741593147798348], + [5.935890720901523, 51.741028611202083], + [5.932766959696337, 51.741938447223475], + [5.929948351661657, 51.744428468183912], + [5.930738259772284, 51.746535189487489], + [5.933323325542355, 51.74809858593634], + [5.922485829739209, 51.750615518522487], + [5.915133633437815, 51.752536589854358], + [5.913329470318833, 51.755515018849309], + [5.913393355654983, 51.759001020546457], + [5.911114673577293, 51.762405661831089], + [5.905375878645053, 51.765683819124888], + [5.90109413635638, 51.770478884640603], + [5.893409337849454, 51.777852925046652], + [5.886374639856965, 51.778590454631392], + [5.869015365097441, 51.775735312957799], + [5.867893277531397, 51.775521020724312], + [5.867455022810729, 51.774417324598168], + [5.867408676686455, 51.767603332181849], + [5.869244778740394, 51.762860475991566], + [5.867141648878071, 51.760462156063767], + [5.865039946883536, 51.758249758762254], + [5.864468921821121, 51.757681721862099], + [5.85214965002547, 51.759317376352719], + [5.84241595166262, 51.758812088827924], + [5.82149520166704, 51.757445283342498], + [5.80946759813799, 51.756533932124043], + [5.790534392359923, 51.753509054383727], + [5.779665592616143, 51.75221195800912], + [5.769298626237355, 51.752347156118667], + [5.757958622469768, 51.754188221247098], + [5.751709486853597, 51.756043168926162], + [5.745238631392996, 51.759144492800083], + [5.740779337336003, 51.763247941599815], + [5.735681702421438, 51.768914116750473], + [5.732024952250011, 51.771893849086482], + [5.729745453380015, 51.772851047821192], + [5.721904814757056, 51.774826466642118], + [5.71123002358922, 51.77503386190299], + [5.705976619218562, 51.776255096441993], + [5.702309402220872, 51.778143603218453], + [5.696500871638297, 51.785466669340224], + [5.69371623384527, 51.787740957818592], + [5.685789797724367, 51.791193146073127], + [5.674103353068956, 51.792449658464818], + [5.668407039860848, 51.792916972335732], + [5.663350879950012, 51.794534424312467], + [5.657493871237826, 51.798030097128468], + [5.653913833690632, 51.801151832520027], + [5.649901325722949, 51.806136938855374], + [5.646574712714716, 51.813030357788641], + [5.644216044575057, 51.816036793988459], + [5.641304630629166, 51.817891908641741], + [5.635214760805262, 51.819543678345404], + [5.625896762531876, 51.81922971611727], + [5.622159708226214, 51.819211027478858], + [5.617812960464265, 51.820055577583396], + [5.606235394764126, 51.825300030260145], + [5.597976692088245, 51.828049440964442], + [5.588848469322524, 51.829699571339496], + [5.576791948636152, 51.828151804853171], + [5.567879862140896, 51.82778327798399], + [5.558158446060816, 51.827526703310383], + [5.554824362126821, 51.826560161900844], + [5.552147256475513, 51.824967220945062], + [5.551264654253695, 51.824130818312938], + [5.548628776017416, 51.819802721171314], + [5.545284600185918, 51.817434346204273], + [5.540929860603062, 51.816307602231447], + [5.535633951685767, 51.816574372520584], + [5.527884304552705, 51.818481197793446], + [5.517734318401968, 51.819283919118163], + [5.514214072690573, 51.820743903781626], + [5.508078866163164, 51.826143414280729], + [5.503255204412167, 51.828763904370469], + [5.49600635090518, 51.830604484456202], + [5.490190375755639, 51.830508635673468], + [5.485848688376993, 51.829409035855655], + [5.481839878258899, 51.827066380377055], + [5.479672935147903, 51.824371601837669], + [5.478348894830252, 51.820054136351601], + [5.476931618807398, 51.817183039015006], + [5.474214664556845, 51.814641379367387], + [5.467486076430513, 51.811802633929481], + [5.464480456198078, 51.811186592094934], + [5.449554281455572, 51.809677550187814], + [5.439403997337187, 51.809709484792243], + [5.429255222290944, 51.811367436695136], + [5.422292363766073, 51.81455847216688], + [5.418271626083672, 51.818557920911381], + [5.414885524437891, 51.821290185585077], + [5.410409717308696, 51.822545245710863], + [5.40605828557287, 51.822420194606103], + [5.401706421582189, 51.820892797584868], + [5.400054146445503, 51.81941747696191], + [5.398384965092689, 51.817155532781122], + [5.394409540974377, 51.81272305634441], + [5.383490596774634, 51.804633695299394], + [5.375603160564277, 51.796160234375492], + [5.370194080234045, 51.791096898977315], + [5.369038979575945, 51.789816197376908], + [5.362538958917996, 51.779463686486729], + [5.360429721307097, 51.768680341093152], + [5.359927475303396, 51.760587436037639], + [5.357568232099948, 51.757890338333418], + [5.353514438136326, 51.755477248754438], + [5.322041295639219, 51.746523628282318], + [5.304360923043796, 51.738783970405414], + [5.300338755694263, 51.737287435631252], + [5.295996737103852, 51.736717870350638], + [5.29165247481246, 51.737262710678507], + [5.283285067820778, 51.739776825167368], + [5.275720373232468, 51.740169908042681], + [5.268538353189977, 51.739647412579131], + [5.264141503374875, 51.738828046683295], + [5.255466311268855, 51.73489966002537], + [5.249679734986312, 51.73358070475124], + [5.24467859224679, 51.734421234475953], + [5.231103847187587, 51.741303934808286], + [5.222139449654626, 51.743387555308182], + [5.216347530918341, 51.743451170981167], + [5.211851002181382, 51.742735642285687], + [5.206494248095394, 51.741477182592007], + [5.195524437207119, 51.740273184967791], + [5.185699869743087, 51.741917554182827], + [5.177260143467649, 51.742917747766057], + [5.168836903037678, 51.743073864073061], + [5.16349670422619, 51.7427023388015], + [5.128054773473107, 51.737607140141343], + [5.126608075599803, 51.7379289668946], + [5.125984564187506, 51.739629190235057], + [5.12559151266587, 51.743226602400888], + [5.126335995886939, 51.745021480958258], + [5.138112677240911, 51.750726290383319], + [5.142713891041363, 51.755210224385145], + [5.137652551927465, 51.757628249818609], + [5.135890732681708, 51.760319742688893], + [5.13635023119001, 51.763916452333966], + [5.138687640862639, 51.767452843521191], + [5.1396491480289, 51.77021938755815], + [5.137580868977278, 51.772905258048304], + [5.118645374903825, 51.777812651957881], + [5.116088051480324, 51.778923628303353], + [5.108970296133415, 51.783578113353968], + [5.104858201403258, 51.785725085680852], + [5.100277709484641, 51.787150527177069], + [5.095890468599021, 51.787647583470722], + [5.091437962756312, 51.786933042149613], + [5.087201908525367, 51.785095479366959], + [5.081953502525086, 51.780712645215424], + [5.078539238572392, 51.779563742435421], + [5.074248726851816, 51.779070064852419], + [5.069854951047441, 51.77954878156153], + [5.06696624433402, 51.78055317789606], + [5.061043632600819, 51.78528271960198], + [5.057119390857519, 51.790695357143242], + [5.052579511978157, 51.795290642970997], + [5.048146413120365, 51.798113899120551], + [5.044479780528901, 51.799326110220953], + [5.038597605987878, 51.800965737257641], + [5.026178797010285, 51.803964968336658], + [5.015970456464022, 51.808221858869388], + [5.012426798179455, 51.810648082033353], + [5.010307597287421, 51.813010443302389], + [5.010102750300609, 51.816608375770912], + [5.009344176562808, 51.817512035284942], + [5.000363980164164, 51.820933380857191], + [5.012996147859744, 51.820725751402051], + [5.026351839479497, 51.818856738050911], + [5.027701232889732, 51.823549834117479], + [5.028287645172576, 51.826160340947482], + [5.031415074191839, 51.841084800726357], + [5.021270423842562, 51.841925716281551], + [5.009323081392411, 51.842716139618368], + [5.00344793593045, 51.844768928578922], + [5.002895177233013, 51.843661826061258], + [4.99993416216099, 51.84439143729589], + [4.999296391872098, 51.844599879085813], + [4.999520458618981, 51.845137398794641], + [4.998895140505743, 51.845246303942936], + [5.000001921778989, 51.847575847818014], + [4.998684655005992, 51.852277205293731], + [4.998305202811187, 51.854861512484625], + [4.993967910298264, 51.86122272404004], + [4.995965048719621, 51.861848550328368], + [5.001250126156752, 51.859058567705446], + [5.005247991095467, 51.857933316625278], + [5.009520538046213, 51.858045986616354], + [5.015628179874134, 51.859178050512121], + [5.026908033036403, 51.858607713457424], + [5.043850904424825, 51.859226057554054], + [5.053508613764007, 51.857363172458768], + [5.05918555655561, 51.858154482056534], + [5.06235822516182, 51.859362052146459], + [5.063624134051069, 51.860598832805515], + [5.062455848227939, 51.862194749856116], + [5.054199813580674, 51.865099081327131], + [5.052603583742403, 51.86620923990499], + [5.051811042871668, 51.868266262478315], + [5.05297830547793, 51.87111395118739], + [5.055745416424337, 51.873199173370928], + [5.061803865856855, 51.874235496532314], + [5.071739214375774, 51.874103961335393], + [5.073041339864465, 51.874048009956439], + [5.08127731824545, 51.87600526662002], + [5.083549673247508, 51.8781944671289], + [5.085933483131406, 51.880299042235109], + [5.086920772768576, 51.881709732497221], + [5.088159485694416, 51.887094357087534], + [5.090364668163319, 51.888654488821125], + [5.093891333870973, 51.888868902454952], + [5.097629355801568, 51.887851896547204], + [5.105759408000027, 51.88881093568407], + [5.112736879166156, 51.887776178781444], + [5.114274658269611, 51.889265755564615], + [5.114480742216765, 51.889496895143338], + [5.11747542415617, 51.892179762659872], + [5.118426400526934, 51.896002733515729], + [5.116845246449484, 51.897737053438874], + [5.119672823488253, 51.898245198154015], + [5.131760504060067, 51.914232979289835], + [5.13237701004257, 51.914860401990381], + [5.136435825895757, 51.914508427302444], + [5.13567481824698, 51.918222741551041], + [5.142432947972013, 51.924936580830035], + [5.148459920607606, 51.929485189834196], + [5.149007109200237, 51.930540263892901], + [5.147963302743986, 51.932154955516545], + [5.149437514550636, 51.933526974633004], + [5.15146720700264, 51.933615252768831], + [5.155208457311286, 51.93849862519231], + [5.163428745696477, 51.946857461664976], + [5.173503990836791, 51.959795793704082], + [5.180226728909326, 51.967448325137433], + [5.189720736351424, 51.96291421676041], + [5.198845548031916, 51.960197769470554], + [5.205988892948787, 51.959432482636345], + [5.213410205859938, 51.960645428512201], + [5.213470301762911, 51.960666044515257], + [5.219243315891551, 51.963547469209459], + [5.224372718858477, 51.968284127342315], + [5.229912592882783, 51.975648958705243], + [5.233006741095894, 51.977550422792881], + [5.236867150301398, 51.978757477082205], + [5.242270456632046, 51.978729718256204], + [5.246523817886049, 51.977498235878116], + [5.256271211025635, 51.970941398996139], + [5.262104333188391, 51.968205979786802], + [5.270373677227304, 51.965426621143472], + [5.282608108379772, 51.963162515147147], + [5.30089421082828, 51.961568559896833], + [5.310871067205241, 51.957013673854036], + [5.316600780288496, 51.955220939500478], + [5.323439217656765, 51.955097105518384], + [5.333118457144281, 51.957200904296741], + [5.339693597904557, 51.961028007168757], + [5.33982514157946, 51.96113701681621], + [5.348255297328778, 51.967686327912695], + [5.355638340196963, 51.97035385254221], + [5.363016194979978, 51.970950105457504], + [5.376011362165271, 51.969210643253653], + [5.382798417397321, 51.969263944200939], + [5.39097614226727, 51.970730196894898], + [5.399337684015051, 51.973102779337275], + [5.418155654031554, 51.976605704069385], + [5.423363729824188, 51.978755423764639], + [5.430399953532706, 51.983265098846331], + [5.436244012791574, 51.985348438148932], + [5.442408308478698, 51.985947528283376], + [5.457012066402346, 51.983684050252762], + [5.47268667838548, 51.982977614295741], + [5.477664574427481, 51.983472671974148], + [5.486214079519819, 51.983826443728276], + [5.500751080214902, 51.978592047269686], + [5.510979438504617, 51.973643226622215], + [5.518222208044777, 51.971693390698221], + [5.518829638050156, 51.971573613565994], + [5.527113110419505, 51.970219067126145], + [5.537520559924186, 51.968285328186106], + [5.540208209104296, 51.967281507552407], + [5.549561149681053, 51.959196893561831], + [5.556933852143888, 51.955711024831949], + [5.561252584877839, 51.954501793754972], + [5.575574454275385, 51.952826551851864], + [5.586616662930271, 51.950828948412628], + [5.592736633932947, 51.949182560037279], + [5.603911160687895, 51.943883272593816], + [5.605939723325347, 51.94312478509547], + [5.616428009758018, 51.94935354545504], + [5.620437345247164, 51.948324781757442], + [5.620162570736883, 51.951498111876738], + [5.623446556069569, 51.951945560276613], + [5.625027513551076, 51.951614830446182], + [5.627308638218593, 51.952473305488759], + [5.626495264337723, 51.957365745177754], + [5.62321362988898, 51.962564740491629], + [5.620258303741895, 51.966582326674981], + [5.624855765155734, 51.970448365594308], + [5.626064269382898, 51.974070064501035], + [5.619888389175976, 51.977710346559547], + [5.615060033970794, 51.982716941735156], + [5.613812880849686, 51.990342781523054], + [5.609972341118296, 51.993691534387743], + [5.606017089425119, 51.994164352233099], + [5.602515089566629, 51.99499782937901], + [5.596556381207062, 51.999201540016571], + [5.591997747623924, 52.001392292476574], + [5.590808206263111, 52.003024803460313], + [5.591112775959735, 52.007301474511642], + [5.589488818311499, 52.009455523991598], + [5.587422167605625, 52.010921683340634], + [5.586015030149923, 52.011776446423717], + [5.586750770656342, 52.0122859171992], + [5.586922321347206, 52.015713177537329], + [5.589621685356767, 52.015594817389157], + [5.590242176065977, 52.020266740551953], + [5.587199686671841, 52.020449927769654], + [5.587484571612912, 52.026954906564455], + [5.586502621600983, 52.029171044110797], + [5.586711698806897, 52.031290423736067], + [5.589588753532103, 52.031176590862877], + [5.589970886559505, 52.033707506015681], + [5.590022878214706, 52.034303240259739], + [5.568292738740274, 52.040277520752362], + [5.567404377459861, 52.04062922808447], + [5.570045059869027, 52.043400834343117], + [5.570853010422187, 52.047996989936202], + [5.557903360850994, 52.048865120605278], + [5.560729422994116, 52.067501497823471], + [5.559210634147882, 52.071033702715098], + [5.560313937947891, 52.0721526949741], + [5.561443588073174, 52.07328629729502], + [5.562746268480117, 52.078277985643446], + [5.560710854361453, 52.081412865049771], + [5.560753956432392, 52.084210690626925], + [5.556687334192379, 52.08548276415047], + [5.557418395482904, 52.086178139210709], + [5.557053112730297, 52.086867295003991], + [5.555909669600281, 52.087117701399741], + [5.554927427278507, 52.086510281730746], + [5.554718189705043, 52.09149839501216], + [5.555869615070582, 52.09181954743309], + [5.554434999920138, 52.093468633896812], + [5.55442934494609, 52.095391919561536], + [5.550542495944182, 52.09667636417187], + [5.554235866426061, 52.100151221160196], + [5.553063543676653, 52.100954008101198], + [5.550342662107805, 52.105419544088249], + [5.545291866643606, 52.104390043328515], + [5.546302271926579, 52.102443638889461], + [5.544012711277916, 52.101948899910532], + [5.541539999797252, 52.103737098143391], + [5.531543367914438, 52.102266961918602], + [5.532817024292076, 52.099983883231438], + [5.539160255972838, 52.097813707223587], + [5.538830748585565, 52.096436186527413], + [5.535079264613216, 52.092874624984816], + [5.538294009203724, 52.092689730378858], + [5.537118555216773, 52.088643812394942], + [5.530856148910043, 52.089774389658295], + [5.526634248613917, 52.084903401157668], + [5.531306152692635, 52.08393924359229], + [5.531142262504533, 52.082279531689025], + [5.526896331834878, 52.080679903979672], + [5.522654487781256, 52.07754211887854], + [5.520357311667868, 52.078307700521755], + [5.519414003905658, 52.079206850212337], + [5.514453397664335, 52.078795327666192], + [5.509922725777102, 52.079050178785735], + [5.510360851925767, 52.078055004544176], + [5.509113050858325, 52.076977036834769], + [5.506836731367684, 52.076748335585776], + [5.50500336416884, 52.076742312017707], + [5.504922873194179, 52.075988970906096], + [5.50458445285629, 52.073349623479103], + [5.502092447585428, 52.073345207708037], + [5.499882520955956, 52.071335206839009], + [5.496128119693643, 52.071677934641009], + [5.494067226614681, 52.071908292456939], + [5.490696557369936, 52.071410536948825], + [5.488282076541003, 52.070392591044971], + [5.48389753340837, 52.069656398655077], + [5.476359346497467, 52.072647199053968], + [5.473661556438901, 52.073134802179162], + [5.470904499561408, 52.074686283314371], + [5.467373949989637, 52.075492050625591], + [5.46643981332483, 52.076100482703879], + [5.465653406555284, 52.078288188262718], + [5.459243422058326, 52.080225474318468], + [5.460147857840637, 52.080952103930599], + [5.459678172620103, 52.082003410865283], + [5.461299208182574, 52.082646025700356], + [5.463367783940187, 52.083442166569078], + [5.464053640514554, 52.083056178398067], + [5.467903672570996, 52.085955491645713], + [5.471491773853908, 52.088200651516615], + [5.471835331827538, 52.089302219580297], + [5.472945270470289, 52.089110043404098], + [5.474721055777173, 52.090221003179501], + [5.476784709218734, 52.090379894886652], + [5.486082770610116, 52.093656770788293], + [5.484739612086588, 52.096624424817911], + [5.485267224646867, 52.099100177314874], + [5.484301816824572, 52.105542119151309], + [5.493861815363689, 52.111097264705855], + [5.493921990647805, 52.112764079557707], + [5.491873331668488, 52.114485125265709], + [5.486447162291558, 52.115359737835412], + [5.488082296960123, 52.116101124381821], + [5.495625993059862, 52.115585795622493], + [5.498916593056378, 52.116017638729758], + [5.502610369012573, 52.115092419414466], + [5.503867877059627, 52.113745335207007], + [5.506301615369074, 52.114310463210273], + [5.507702141459303, 52.113896965248621], + [5.507551500588739, 52.115616010840185], + [5.503756066158175, 52.116585634655216], + [5.505354019159927, 52.119750448262927], + [5.503371716870468, 52.119659193955982], + [5.500042372496405, 52.11920001274504], + [5.496917755372039, 52.119557488576177], + [5.495060112871267, 52.121993466561214], + [5.494704774682168, 52.12471763562327], + [5.496759149135575, 52.124814285956035], + [5.497913133050713, 52.130282893513595], + [5.499097998384063, 52.130541570779918], + [5.501488413530411, 52.129938896214149], + [5.504988441101002, 52.131087606348757], + [5.507676933339356, 52.131124811006636], + [5.509203166217782, 52.131945270609428], + [5.511667658380196, 52.132050511307554], + [5.512039523060309, 52.133636778534147], + [5.511998803059575, 52.133998058061039], + [5.511880967265003, 52.134115011187035], + [5.512366751720355, 52.134223843518321], + [5.512443941021178, 52.134329736795515], + [5.514079464360311, 52.135923064559755], + [5.511690300284649, 52.137493582650031], + [5.507450318310349, 52.138531639770484], + [5.507591945816194, 52.138865802294461], + [5.50260316863909, 52.139535617919542], + [5.500002571884882, 52.14104298242431], + [5.497306316726193, 52.141443502935779], + [5.498984740790092, 52.147361431419867], + [5.489475708326857, 52.148219218491825], + [5.483794748635326, 52.149465142603795], + [5.481341839256809, 52.150500976125272], + [5.482634496109717, 52.151545556465521], + [5.483247936073485, 52.15401725261296], + [5.483767131868849, 52.1539811009633], + [5.484317369392071, 52.158063856933012], + [5.481495609767747, 52.158297310624427], + [5.482116168981343, 52.159795683747468], + [5.479196770754021, 52.161360739899536], + [5.47551990430698, 52.162161682389836], + [5.472865839279124, 52.161848400746329], + [5.472433377570189, 52.162850867750919], + [5.473392919341734, 52.162995297243157], + [5.473017786349163, 52.163788557377003], + [5.475508031649689, 52.164377573031111], + [5.478882809048755, 52.16440149945592], + [5.479922436183206, 52.165814556851615], + [5.469632837629757, 52.166209434378985], + [5.457615206274591, 52.167079247229829], + [5.446537640825123, 52.168023324846139], + [5.443594490403355, 52.168829846320619], + [5.439875616606578, 52.171197456902611], + [5.438916143181967, 52.172917043823098], + [5.440093243287581, 52.173378382619426], + [5.439247812873356, 52.18431309633656], + [5.438086278598615, 52.184584822851868], + [5.440095940993167, 52.190052216168063], + [5.439711554082495, 52.196082041285372], + [5.439769943447352, 52.197236342835794], + [5.439771506768473, 52.197267049173369], + [5.439449123487559, 52.202195075308389], + [5.441118765670623, 52.204322261403824], + [5.44018724575519, 52.20463047165579], + [5.440567990099131, 52.205836639992732], + [5.439820568623176, 52.205983739124385], + [5.439237202958397, 52.20460143337025], + [5.434713999098482, 52.205875783661867], + [5.409669999363222, 52.218579569171794], + [5.407221905265559, 52.213404657435518], + [5.395522428598543, 52.219153849883519], + [5.39321139540261, 52.220645496005609], + [5.394768117313406, 52.224850468804007], + [5.396593056884027, 52.229790404346069], + [5.403502068188644, 52.246745441953991], + [5.411863095098259, 52.246316755622125], + [5.41465049264789, 52.245433015352837], + [5.425032529619232, 52.249527949586188], + [5.435309665506854, 52.252333686349068], + [5.452585960470415, 52.2537490727386], + [5.45433974504187, 52.253513585836671], + [5.45995902694984, 52.255289792342168], + [5.46242187514123, 52.255395256818332], + [5.464325429652714, 52.259272958744297], + [5.465166029169283, 52.255648627903568], + [5.466530578704465, 52.255924702811612], + [5.465217003929522, 52.259354277692154], + [5.466441616765132, 52.258485417315669], + [5.471284911060562, 52.259341388899692], + [5.468283827399636, 52.259569566118465], + [5.470760259265919, 52.260080340339904], + [5.469458139462999, 52.261708968298876], + [5.467585093281984, 52.261650582111088], + [5.470843459703845, 52.262632041696357], + [5.469813492470257, 52.263247292226993], + [5.471447258221102, 52.26354072551613], + [5.470659386702717, 52.263203752231441], + [5.470950877907948, 52.262658958400735], + [5.476136808776461, 52.263109256710067], + [5.47290737562151, 52.262223027865822], + [5.474291599707679, 52.261719519802448], + [5.472221234964606, 52.261268502978027], + [5.473657259169199, 52.257615037987122], + [5.474810078149542, 52.257058365628893], + [5.478619645659005, 52.257819681722303], + [5.488408744767235, 52.262539931868758], + [5.501902728149751, 52.264482297322488], + [5.505544943262887, 52.264758013359284], + [5.527439851281239, 52.263680049748615], + [5.528204673183028, 52.264259757121501], + [5.526080526646566, 52.264800213975462], + [5.52874875220204, 52.26484146805555], + [5.530822787671821, 52.266055132723885], + [5.53159050926716, 52.267692556100009], + [5.530605857744527, 52.269166428451662], + [5.53103755231376, 52.271560776723632], + [5.531601478549297, 52.269112311862415], + [5.53331393862478, 52.269013500817778], + [5.534813839907458, 52.27056927670376], + [5.531848220188348, 52.271495859864352], + [5.535770989626518, 52.271430680175754], + [5.541007719637987, 52.279168374525305], + [5.548078773563876, 52.291811084571584], + [5.554353541090717, 52.303452716026754], + [5.560135732624435, 52.311838873967837], + [5.559530036087646, 52.317127109488737], + [5.561117317917519, 52.318102603701263], + [5.560227324032731, 52.316243110110761], + [5.561923073508184, 52.315300458081374], + [5.563216180812974, 52.31553288361939], + [5.56430178496964, 52.316621977776883], + [5.561717520719148, 52.317832478427036], + [5.563904093733952, 52.319165773686798], + [5.56683631332648, 52.319164405423422], + [5.571283286137523, 52.323624402405457], + [5.575753643189796, 52.326597862202426], + [5.583042417404851, 52.330756744303997], + [5.593332540974572, 52.333926576254164], + [5.598185546993318, 52.337186226511264], + [5.603190641647917, 52.339828028982701], + [5.607491297223298, 52.34271305287767], + [5.611360629545411, 52.345580713350508], + [5.612272027367748, 52.347433761238385], + [5.612196476647765, 52.349254976459719], + [5.614764119029766, 52.35083333159853], + [5.611819604717945, 52.35170602558005], + [5.615552676897711, 52.353561684767506], + [5.614283518871378, 52.356801299844768], + [5.619331255295003, 52.35486079081528], + [5.62226859442533, 52.352249849939263], + [5.623734704129987, 52.351938322479079], + [5.624171039156271, 52.350870493474147], + [5.624815338506075, 52.35143757769454], + [5.619782268923512, 52.355109073995166], + [5.62266464504831, 52.355426635890296], + [5.625899487361252, 52.353903728075046], + [5.626817821827022, 52.353302632152236], + [5.627442436036866, 52.353655045232941], + [5.623773407349141, 52.356064670064264], + [5.620725696094035, 52.355505018742946], + [5.61613781843709, 52.35683599292139], + [5.616032329454879, 52.357291047187807], + [5.618979472329658, 52.358359975534157], + [5.622973435570173, 52.357458529903099], + [5.623250986548437, 52.357847931227553], + [5.619287451687059, 52.359547175369023], + [5.619109843135577, 52.360171091037074], + [5.618997504950538, 52.358626175085519], + [5.619031753766028, 52.359668371628899], + [5.618272115890466, 52.358951000697743], + [5.617811357369952, 52.359303336673406], + [5.61571003526995, 52.35861355079345], + [5.615991060548065, 52.357677033044268], + [5.614895217919972, 52.357260625118705], + [5.614371290991776, 52.358155760818335], + [5.615012869651315, 52.35829720597971], + [5.614392235092877, 52.358452968131665], + [5.618858246807431, 52.360374521848037], + [5.617572295129688, 52.361043971582859], + [5.616754316419612, 52.360644578759072], + [5.614034013617015, 52.362250430118671], + [5.615318761057392, 52.362614072972534], + [5.626028541837757, 52.357680238464077], + [5.627004767917258, 52.356973882987056], + [5.627184776595764, 52.357580915922753], + [5.627630117935157, 52.357251049901222], + [5.629370748303331, 52.358335060224825], + [5.627978842910593, 52.359211839851817], + [5.628439726727753, 52.360504456543055], + [5.626946835521221, 52.360859497810665], + [5.628115900597257, 52.361561001856202], + [5.628287308109079, 52.364509347986356], + [5.629065444609155, 52.364736044648957], + [5.629741265453633, 52.364227423197235], + [5.629235953491589, 52.361815536159369], + [5.629855710659926, 52.361500373653968], + [5.630962641744871, 52.362192467244498], + [5.62973750676023, 52.362613511425977], + [5.630332736057031, 52.363959770995905], + [5.633578275462928, 52.361877079681882], + [5.638826083519346, 52.362399934516525], + [5.640531303775608, 52.36335321427115], + [5.639146891887625, 52.364069150982473], + [5.63771156570044, 52.363215165765659], + [5.634057898348983, 52.362794810071058], + [5.630027961696432, 52.36540620740432], + [5.630718681617965, 52.365864567422975], + [5.633232192273454, 52.365465931219909], + [5.640883181172508, 52.366271241277879], + [5.641560367672801, 52.365944873036518], + [5.643916698952003, 52.367573189339076], + [5.648920021987156, 52.367493547673504], + [5.652748842560248, 52.36508569520565], + [5.674500307638476, 52.37533423456599], + [5.677226211071722, 52.377005740473237], + [5.677591287156873, 52.378685462180769], + [5.678921660210269, 52.37884126280062], + [5.683464650804328, 52.378234284783545], + [5.690132834288363, 52.378971773439901], + [5.694633843396431, 52.380690121580464], + [5.699883390589856, 52.381249230842691], + [5.703833373839918, 52.384176193078765], + [5.706633664964258, 52.384550412505867], + [5.708172763589745, 52.386715388992563], + [5.712773318564452, 52.387745834697853], + [5.7160191986975, 52.387726483911003], + [5.722473663361593, 52.390772171575087], + [5.724020900844548, 52.390838421544224], + [5.72629949850165, 52.392033710008619], + [5.727824141398693, 52.393955894584593], + [5.730923450583212, 52.395213993278965], + [5.731635753281395, 52.394713445419399], + [5.73539291111335, 52.39608001793944], + [5.734815243304516, 52.396793567358493], + [5.737702111463609, 52.397965113460884], + [5.739965038816378, 52.397655001042097], + [5.750326167610321, 52.403780830803278], + [5.755282516443216, 52.405271504300963], + [5.756912456913996, 52.406867809160993], + [5.769664185628181, 52.412810864291359], + [5.783286817569917, 52.420253299555064], + [5.787625382821498, 52.421895798518925], + [5.810468063423192, 52.435265189292217], + [5.815710067260763, 52.440324579968951], + [5.821731022064262, 52.445939829275055], + [5.819863865771172, 52.447313902361685], + [5.822411153223504, 52.449706230460698], + [5.823132639602659, 52.45292168221831], + [5.816598857737219, 52.455859731275154], + [5.817377308659267, 52.457255311949261], + [5.817417744871256, 52.45730193436065], + [5.828064109322187, 52.469391692629983], + [5.82835107190309, 52.467958032774106], + [5.824918787561675, 52.465118954346977], + [5.823017078348244, 52.462322759941223], + [5.823778985388155, 52.461349187372534], + [5.82307826317761, 52.459346860806178], + [5.826819208893333, 52.459232234297211], + [5.827162032958026, 52.457644072693363], + [5.831384008525097, 52.45917120791718], + [5.83644200101013, 52.466627153097512], + [5.84002443431476, 52.466152747339727], + [5.842363548130957, 52.470550456645917], + [5.850216760454909, 52.485606883652061], + [5.851101266509624, 52.491401127650427], + [5.852175796519904, 52.494808590611001], + [5.858222989475555, 52.500269670149216], + [5.864549938552972, 52.51581425153892], + [5.866437945727663, 52.517755695209111], + [5.86580137667306, 52.518658066484221], + [5.876205472580023, 52.522025025579843] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 7, + "statcode": "PV26", + "jrstatcode": "2021PV26", + "statnaam": "Utrecht", + "rubriek": "provincie" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.021543265703737, 52.302456851569005], + [5.021867278437303, 52.282653270318512], + [5.022826554493976, 52.282150432611068], + [5.024381702153778, 52.281357448168919], + [5.03052848731051, 52.288487182775086], + [5.033212526904999, 52.286258105833284], + [5.039521401096041, 52.283263305960034], + [5.040742318027147, 52.283875030214723], + [5.042778727086573, 52.282488140812674], + [5.047491884733201, 52.285028646072824], + [5.050404400283385, 52.287871983947909], + [5.052738117687785, 52.286508240033321], + [5.059540368958504, 52.289320134709818], + [5.063425891819062, 52.287055113077756], + [5.064791944003756, 52.285080545283535], + [5.065471556358812, 52.285198158699899], + [5.065863421557196, 52.281139878807473], + [5.065858584626162, 52.280537328974852], + [5.064412494913163, 52.280737602035543], + [5.062873064096943, 52.282199648398233], + [5.062858907447069, 52.284778294331915], + [5.060398143578195, 52.28514311067034], + [5.050753525374211, 52.281817807885886], + [5.049666186308366, 52.280205876468251], + [5.049679871609342, 52.277988860073812], + [5.048237606532411, 52.276960439085208], + [5.04252203869448, 52.277930301466647], + [5.033070054056077, 52.275289885563318], + [5.03093317143786, 52.272502870781281], + [5.029813799773301, 52.272043504680482], + [5.023710330901697, 52.273208171661935], + [5.022886956463761, 52.272483438460746], + [5.023310180989038, 52.271471994420274], + [5.026339279358733, 52.268661387751294], + [5.027626904637559, 52.267777644845395], + [5.02785475174314, 52.266246434762301], + [5.026551075560731, 52.2641986146985], + [5.031453851364475, 52.261305700298927], + [5.032572600383069, 52.259974916746081], + [5.031190601167964, 52.255988269341806], + [5.035255439144927, 52.25264486793742], + [5.037196467830109, 52.253441192583992], + [5.040253245365991, 52.256576382087466], + [5.041878916201433, 52.25655996715998], + [5.04342792106815, 52.255448542562284], + [5.044095410307069, 52.252124748296993], + [5.046651980984688, 52.248457892957362], + [5.045996388557466, 52.243220551028656], + [5.056902069380775, 52.236522345383101], + [5.057712862910777, 52.23534258968661], + [5.042313503380655, 52.230531678790626], + [5.041585640494061, 52.230888224076352], + [5.040545558621461, 52.229841963810713], + [5.040696583222404, 52.229567458534504], + [5.042484524903418, 52.22877988449001], + [5.041685865052615, 52.228234513661668], + [5.038730628432685, 52.225179416336736], + [5.037101853302344, 52.225341649931693], + [5.037398896524329, 52.224739927700504], + [5.039873276800595, 52.224387325874581], + [5.041928908456491, 52.224088679799472], + [5.041984010693461, 52.224326651393802], + [5.042795727629247, 52.22403951153953], + [5.041922644697644, 52.224062219121592], + [5.041907250127776, 52.223993059053164], + [5.036665673747447, 52.224360155200429], + [5.03584906884601, 52.217529138423373], + [5.03711897271773, 52.216596476980186], + [5.036909384746683, 52.21515572361524], + [5.035683495589341, 52.215124659885952], + [5.035329632380896, 52.214462267102419], + [5.037243002338148, 52.214188616004726], + [5.036742136405985, 52.213663360700252], + [5.033788026245274, 52.213713996258882], + [5.033729751814254, 52.213123037547852], + [5.034353896696371, 52.21311746162057], + [5.033400656940726, 52.209836232811497], + [5.036444813432595, 52.20956397403495], + [5.035316307409746, 52.205232596249296], + [5.037421091081344, 52.204964513655881], + [5.036649969235884, 52.202137987680153], + [5.025599931765786, 52.203981825138143], + [5.024996331685905, 52.202843894858219], + [5.023315148668049, 52.203050842046558], + [5.023432926531322, 52.20382839125898], + [5.022621105955336, 52.203941463776751], + [5.023026003706553, 52.202038979165998], + [5.021603965212921, 52.202541990349772], + [5.023011815613342, 52.201746935430485], + [5.021293029989728, 52.201885744105908], + [5.026061332139805, 52.201373962376415], + [5.027942406413159, 52.199958864656537], + [5.030972186700759, 52.198764077395616], + [5.037124779079941, 52.198052709961331], + [5.037204282618782, 52.196847586297793], + [5.038134148577678, 52.195163173450048], + [5.03664637487166, 52.193733306015631], + [5.03558454837247, 52.190974607434271], + [5.034977308024128, 52.186802955565206], + [5.033764798060847, 52.186163713217788], + [5.03250329748329, 52.184113408670719], + [5.041591838429384, 52.1837515220396], + [5.046463611283425, 52.165929111788422], + [5.078656044591026, 52.172985690410833], + [5.115311211660083, 52.179816287901872], + [5.121412649250523, 52.180952755181409], + [5.124110658780968, 52.180827392925899], + [5.166740277880533, 52.178975792607375], + [5.169704886396921, 52.178802699056099], + [5.17943173918157, 52.178213388898648], + [5.184185639438032, 52.17795466720532], + [5.192586036356817, 52.177832946761832], + [5.215500798059552, 52.204273426917034], + [5.216529372603552, 52.205450736774182], + [5.218960393739491, 52.212128715903518], + [5.220577570830265, 52.215971372204848], + [5.224730312641928, 52.2251970959544], + [5.222901318114247, 52.225260952084426], + [5.231879714347626, 52.237077661766911], + [5.237368871418962, 52.244276559272919], + [5.238407789648459, 52.245660320180335], + [5.245093194539217, 52.254431069951167], + [5.244081200098236, 52.254662786078057], + [5.261101908830187, 52.275835788308648], + [5.265663331368413, 52.281505365228199], + [5.265769237726992, 52.281644613914501], + [5.269207658078841, 52.281544391270948], + [5.277129629357333, 52.280637848775548], + [5.278664120563695, 52.280472455228669], + [5.305825735462439, 52.27732958975951], + [5.306465457650885, 52.277605658949604], + [5.308873649398103, 52.276385766619583], + [5.310669458510054, 52.274300211857671], + [5.3154501738072, 52.274101464766638], + [5.321053438962745, 52.272396630383945], + [5.327448374968957, 52.273693502160711], + [5.33124091410563, 52.273610672940933], + [5.339673273928153, 52.270204046711299], + [5.340880595070042, 52.270698519588137], + [5.350021892072253, 52.268817711239556], + [5.356926578623143, 52.269834945098488], + [5.361100309193889, 52.268290863384593], + [5.363313201126495, 52.26847649753519], + [5.366687480970433, 52.266953276799995], + [5.370630149518051, 52.263358852490178], + [5.370291062763299, 52.262263566960939], + [5.372234276461702, 52.260898810795965], + [5.371538918070606, 52.262698340168704], + [5.374225115826816, 52.261667904793036], + [5.374199246991985, 52.261651991857377], + [5.374724426605876, 52.260024668506418], + [5.37745954670298, 52.259019483615248], + [5.381769621514515, 52.257901452133396], + [5.381165479604597, 52.25637630337215], + [5.382135729212511, 52.256467844875665], + [5.384518558702138, 52.254805909063982], + [5.385048976662498, 52.255116184134316], + [5.381912860592543, 52.256925603868559], + [5.382522958810634, 52.259184745221077], + [5.384045985758314, 52.257160861799562], + [5.388770268131766, 52.253956508991699], + [5.38897396475426, 52.25282649139718], + [5.40103267172207, 52.247343636482832], + [5.403502068188644, 52.246745441953991], + [5.396593056884027, 52.229790404346069], + [5.394768117313406, 52.224850468804007], + [5.39321139540261, 52.220645496005609], + [5.395522428598543, 52.219153849883519], + [5.407221905265559, 52.213404657435518], + [5.409669999363222, 52.218579569171794], + [5.434713999098482, 52.205875783661867], + [5.439237202958397, 52.20460143337025], + [5.439820568623176, 52.205983739124385], + [5.440567990099131, 52.205836639992732], + [5.44018724575519, 52.20463047165579], + [5.441118765670623, 52.204322261403824], + [5.439449123487559, 52.202195075308389], + [5.439771506768473, 52.197267049173369], + [5.439769943447352, 52.197236342835794], + [5.439711554082495, 52.196082041285372], + [5.440095940993167, 52.190052216168063], + [5.438086278598615, 52.184584822851868], + [5.439247812873356, 52.18431309633656], + [5.440093243287581, 52.173378382619426], + [5.438916143181967, 52.172917043823098], + [5.439875616606578, 52.171197456902611], + [5.443594490403355, 52.168829846320619], + [5.446537640825123, 52.168023324846139], + [5.457615206274591, 52.167079247229829], + [5.469632837629757, 52.166209434378985], + [5.479922436183206, 52.165814556851615], + [5.478882809048755, 52.16440149945592], + [5.475508031649689, 52.164377573031111], + [5.473017786349163, 52.163788557377003], + [5.473392919341734, 52.162995297243157], + [5.472433377570189, 52.162850867750919], + [5.472865839279124, 52.161848400746329], + [5.47551990430698, 52.162161682389836], + [5.479196770754021, 52.161360739899536], + [5.482116168981343, 52.159795683747468], + [5.481495609767747, 52.158297310624427], + [5.484317369392071, 52.158063856933012], + [5.483767131868849, 52.1539811009633], + [5.483247936073485, 52.15401725261296], + [5.482634496109717, 52.151545556465521], + [5.481341839256809, 52.150500976125272], + [5.483794748635326, 52.149465142603795], + [5.489475708326857, 52.148219218491825], + [5.498984740790092, 52.147361431419867], + [5.497306316726193, 52.141443502935779], + [5.500002571884882, 52.14104298242431], + [5.50260316863909, 52.139535617919542], + [5.507591945816194, 52.138865802294461], + [5.507450318310349, 52.138531639770484], + [5.511690300284649, 52.137493582650031], + [5.514079464360311, 52.135923064559755], + [5.512443941021178, 52.134329736795515], + [5.512366751720355, 52.134223843518321], + [5.511880967265003, 52.134115011187035], + [5.511998803059575, 52.133998058061039], + [5.512039523060309, 52.133636778534147], + [5.511667658380196, 52.132050511307554], + [5.509203166217782, 52.131945270609428], + [5.507676933339356, 52.131124811006636], + [5.504988441101002, 52.131087606348757], + [5.501488413530411, 52.129938896214149], + [5.499097998384063, 52.130541570779918], + [5.497913133050713, 52.130282893513595], + [5.496759149135575, 52.124814285956035], + [5.494704774682168, 52.12471763562327], + [5.495060112871267, 52.121993466561214], + [5.496917755372039, 52.119557488576177], + [5.500042372496405, 52.11920001274504], + [5.503371716870468, 52.119659193955982], + [5.505354019159927, 52.119750448262927], + [5.503756066158175, 52.116585634655216], + [5.507551500588739, 52.115616010840185], + [5.507702141459303, 52.113896965248621], + [5.506301615369074, 52.114310463210273], + [5.503867877059627, 52.113745335207007], + [5.502610369012573, 52.115092419414466], + [5.498916593056378, 52.116017638729758], + [5.495625993059862, 52.115585795622493], + [5.488082296960123, 52.116101124381821], + [5.486447162291558, 52.115359737835412], + [5.491873331668488, 52.114485125265709], + [5.493921990647805, 52.112764079557707], + [5.493861815363689, 52.111097264705855], + [5.484301816824572, 52.105542119151309], + [5.485267224646867, 52.099100177314874], + [5.484739612086588, 52.096624424817911], + [5.486082770610116, 52.093656770788293], + [5.476784709218734, 52.090379894886652], + [5.474721055777173, 52.090221003179501], + [5.472945270470289, 52.089110043404098], + [5.471835331827538, 52.089302219580297], + [5.471491773853908, 52.088200651516615], + [5.467903672570996, 52.085955491645713], + [5.464053640514554, 52.083056178398067], + [5.463367783940187, 52.083442166569078], + [5.461299208182574, 52.082646025700356], + [5.459678172620103, 52.082003410865283], + [5.460147857840637, 52.080952103930599], + [5.459243422058326, 52.080225474318468], + [5.465653406555284, 52.078288188262718], + [5.46643981332483, 52.076100482703879], + [5.467373949989637, 52.075492050625591], + [5.470904499561408, 52.074686283314371], + [5.473661556438901, 52.073134802179162], + [5.476359346497467, 52.072647199053968], + [5.48389753340837, 52.069656398655077], + [5.488282076541003, 52.070392591044971], + [5.490696557369936, 52.071410536948825], + [5.494067226614681, 52.071908292456939], + [5.496128119693643, 52.071677934641009], + [5.499882520955956, 52.071335206839009], + [5.502092447585428, 52.073345207708037], + [5.50458445285629, 52.073349623479103], + [5.504922873194179, 52.075988970906096], + [5.50500336416884, 52.076742312017707], + [5.506836731367684, 52.076748335585776], + [5.509113050858325, 52.076977036834769], + [5.510360851925767, 52.078055004544176], + [5.509922725777102, 52.079050178785735], + [5.514453397664335, 52.078795327666192], + [5.519414003905658, 52.079206850212337], + [5.520357311667868, 52.078307700521755], + [5.522654487781256, 52.07754211887854], + [5.526896331834878, 52.080679903979672], + [5.531142262504533, 52.082279531689025], + [5.531306152692635, 52.08393924359229], + [5.526634248613917, 52.084903401157668], + [5.530856148910043, 52.089774389658295], + [5.537118555216773, 52.088643812394942], + [5.538294009203724, 52.092689730378858], + [5.535079264613216, 52.092874624984816], + [5.538830748585565, 52.096436186527413], + [5.539160255972838, 52.097813707223587], + [5.532817024292076, 52.099983883231438], + [5.531543367914438, 52.102266961918602], + [5.541539999797252, 52.103737098143391], + [5.544012711277916, 52.101948899910532], + [5.546302271926579, 52.102443638889461], + [5.545291866643606, 52.104390043328515], + [5.550342662107805, 52.105419544088249], + [5.553063543676653, 52.100954008101198], + [5.554235866426061, 52.100151221160196], + [5.550542495944182, 52.09667636417187], + [5.55442934494609, 52.095391919561536], + [5.554434999920138, 52.093468633896812], + [5.555869615070582, 52.09181954743309], + [5.554718189705043, 52.09149839501216], + [5.554927427278507, 52.086510281730746], + [5.555909669600281, 52.087117701399741], + [5.557053112730297, 52.086867295003991], + [5.557418395482904, 52.086178139210709], + [5.556687334192379, 52.08548276415047], + [5.560753956432392, 52.084210690626925], + [5.560710854361453, 52.081412865049771], + [5.562746268480117, 52.078277985643446], + [5.561443588073174, 52.07328629729502], + [5.560313937947891, 52.0721526949741], + [5.559210634147882, 52.071033702715098], + [5.560729422994116, 52.067501497823471], + [5.557903360850994, 52.048865120605278], + [5.570853010422187, 52.047996989936202], + [5.570045059869027, 52.043400834343117], + [5.567404377459861, 52.04062922808447], + [5.568292738740274, 52.040277520752362], + [5.590022878214706, 52.034303240259739], + [5.589970886559505, 52.033707506015681], + [5.589588753532103, 52.031176590862877], + [5.586711698806897, 52.031290423736067], + [5.586502621600983, 52.029171044110797], + [5.587484571612912, 52.026954906564455], + [5.587199686671841, 52.020449927769654], + [5.590242176065977, 52.020266740551953], + [5.589621685356767, 52.015594817389157], + [5.586922321347206, 52.015713177537329], + [5.586750770656342, 52.0122859171992], + [5.586015030149923, 52.011776446423717], + [5.587422167605625, 52.010921683340634], + [5.589488818311499, 52.009455523991598], + [5.591112775959735, 52.007301474511642], + [5.590808206263111, 52.003024803460313], + [5.591997747623924, 52.001392292476574], + [5.596556381207062, 51.999201540016571], + [5.602515089566629, 51.99499782937901], + [5.606017089425119, 51.994164352233099], + [5.609972341118296, 51.993691534387743], + [5.613812880849686, 51.990342781523054], + [5.615060033970794, 51.982716941735156], + [5.619888389175976, 51.977710346559547], + [5.626064269382898, 51.974070064501035], + [5.624855765155734, 51.970448365594308], + [5.620258303741895, 51.966582326674981], + [5.62321362988898, 51.962564740491629], + [5.626495264337723, 51.957365745177754], + [5.627308638218593, 51.952473305488759], + [5.625027513551076, 51.951614830446182], + [5.623446556069569, 51.951945560276613], + [5.620162570736883, 51.951498111876738], + [5.620437345247164, 51.948324781757442], + [5.616428009758018, 51.94935354545504], + [5.605939723325347, 51.94312478509547], + [5.603911160687895, 51.943883272593816], + [5.592736633932947, 51.949182560037279], + [5.586616662930271, 51.950828948412628], + [5.575574454275385, 51.952826551851864], + [5.561252584877839, 51.954501793754972], + [5.556933852143888, 51.955711024831949], + [5.549561149681053, 51.959196893561831], + [5.540208209104296, 51.967281507552407], + [5.537520559924186, 51.968285328186106], + [5.527113110419505, 51.970219067126145], + [5.518829638050156, 51.971573613565994], + [5.518222208044777, 51.971693390698221], + [5.510979438504617, 51.973643226622215], + [5.500751080214902, 51.978592047269686], + [5.486214079519819, 51.983826443728276], + [5.477664574427481, 51.983472671974148], + [5.47268667838548, 51.982977614295741], + [5.457012066402346, 51.983684050252762], + [5.442408308478698, 51.985947528283376], + [5.436244012791574, 51.985348438148932], + [5.430399953532706, 51.983265098846331], + [5.423363729824188, 51.978755423764639], + [5.418155654031554, 51.976605704069385], + [5.399337684015051, 51.973102779337275], + [5.39097614226727, 51.970730196894898], + [5.382798417397321, 51.969263944200939], + [5.376011362165271, 51.969210643253653], + [5.363016194979978, 51.970950105457504], + [5.355638340196963, 51.97035385254221], + [5.348255297328778, 51.967686327912695], + [5.33982514157946, 51.96113701681621], + [5.339693597904557, 51.961028007168757], + [5.333118457144281, 51.957200904296741], + [5.323439217656765, 51.955097105518384], + [5.316600780288496, 51.955220939500478], + [5.310871067205241, 51.957013673854036], + [5.30089421082828, 51.961568559896833], + [5.282608108379772, 51.963162515147147], + [5.270373677227304, 51.965426621143472], + [5.262104333188391, 51.968205979786802], + [5.256271211025635, 51.970941398996139], + [5.246523817886049, 51.977498235878116], + [5.242270456632046, 51.978729718256204], + [5.236867150301398, 51.978757477082205], + [5.233006741095894, 51.977550422792881], + [5.229912592882783, 51.975648958705243], + [5.224372718858477, 51.968284127342315], + [5.219243315891551, 51.963547469209459], + [5.213470301766386, 51.960666043616463], + [5.213410205859938, 51.960645428512201], + [5.205988892948787, 51.959432482636345], + [5.198845548031916, 51.960197769470554], + [5.189720736351424, 51.96291421676041], + [5.180226728909326, 51.967448325137433], + [5.173503990836791, 51.959795793704082], + [5.163428745696477, 51.946857461664976], + [5.155208457311286, 51.93849862519231], + [5.15146720700264, 51.933615252768831], + [5.149437514550636, 51.933526974633004], + [5.147963302743986, 51.932154955516545], + [5.149007109200237, 51.930540263892901], + [5.148459920607606, 51.929485189834196], + [5.142432947972013, 51.924936580830035], + [5.13567481824698, 51.918222741551041], + [5.136435825895757, 51.914508427302444], + [5.13237701004257, 51.914860401990381], + [5.131760504060067, 51.914232979289835], + [5.119672823488253, 51.898245198154015], + [5.116845246449484, 51.897737053438874], + [5.118426400526934, 51.896002733515729], + [5.11747542415617, 51.892179762659872], + [5.114480742216765, 51.889496895143338], + [5.114274658269611, 51.889265755564615], + [5.112736879166156, 51.887776178781444], + [5.105759408000027, 51.88881093568407], + [5.097629355801568, 51.887851896547204], + [5.093891333870973, 51.888868902454952], + [5.090364668163319, 51.888654488821125], + [5.088159485694416, 51.887094357087534], + [5.086920772768576, 51.881709732497221], + [5.085933483131406, 51.880299042235109], + [5.083549673247508, 51.8781944671289], + [5.08127731824545, 51.87600526662002], + [5.073041339864465, 51.874048009956439], + [5.071739214375774, 51.874103961335393], + [5.061803865856855, 51.874235496532314], + [5.055745416424337, 51.873199173370928], + [5.05297830547793, 51.87111395118739], + [5.051811042871668, 51.868266262478315], + [5.052603583742403, 51.86620923990499], + [5.054199813580674, 51.865099081327131], + [5.062455848227939, 51.862194749856116], + [5.063624134051069, 51.860598832805515], + [5.06235822516182, 51.859362052146459], + [5.05918555655561, 51.858154482056534], + [5.053508613764007, 51.857363172458768], + [5.043850904424825, 51.859226057554054], + [5.026908033036403, 51.858607713457424], + [5.027387954766978, 51.863739023499534], + [5.021748959226807, 51.86881960762647], + [5.023167252012377, 51.872026716868369], + [5.023227570507081, 51.875740831532283], + [5.025467046742523, 51.880630557320785], + [5.027254503836668, 51.881527809722407], + [5.026955980759235, 51.88191820368521], + [5.023514673060847, 51.880995769555184], + [5.001266878580054, 51.874992224866325], + [4.996238197141456, 51.873119190019068], + [4.994952524871212, 51.876956292529933], + [4.995680797478776, 51.879065483371448], + [4.998928755180629, 51.882425711042572], + [4.999452345548449, 51.884283504956187], + [4.995961756152987, 51.891962975701617], + [4.996301941462412, 51.896689231355971], + [4.994968155799671, 51.902292103050321], + [4.978333785063916, 51.89816908860324], + [4.97435504687961, 51.897093106115811], + [4.973410771258112, 51.897250048123034], + [4.973740696720521, 51.907667411077178], + [4.967607154674357, 51.910139122000892], + [4.964128254442127, 51.910638000980903], + [4.964160229463962, 51.912267455136693], + [4.963293266431856, 51.912785198806986], + [4.964785295385019, 51.91351895962574], + [4.964121616907574, 51.913753712069408], + [4.960380305503837, 51.914826828128838], + [4.959693487848561, 51.91404599405621], + [4.958557794499982, 51.915285219065694], + [4.956157524286122, 51.915591062522132], + [4.94960789525194, 51.931534319785072], + [4.948545471142396, 51.931230713084368], + [4.947639692232716, 51.933710434846006], + [4.945944298417404, 51.933289505748874], + [4.942293221581516, 51.930166677382587], + [4.939235128885787, 51.928938070150451], + [4.932126452645204, 51.947551801719349], + [4.931021583201852, 51.948885381857281], + [4.930130954892938, 51.948645423069109], + [4.929475545186937, 51.950191448014095], + [4.926301362332162, 51.950927943088793], + [4.919187672397542, 51.944728949551504], + [4.914011411932603, 51.94243593667602], + [4.877792991018096, 51.938030674196085], + [4.875812102453414, 51.94353356356936], + [4.872755733309952, 51.95094068550118], + [4.871598021969133, 51.953710695411402], + [4.868956717610599, 51.956706738315198], + [4.865674051272326, 51.960433346431465], + [4.864304568297046, 51.963397358924404], + [4.860382289772506, 51.968013505003761], + [4.849765950537314, 51.97385407411339], + [4.847553234956446, 51.975136899278446], + [4.845546440806383, 51.97520050253349], + [4.844297045050443, 51.976351807935963], + [4.834114433901896, 51.98558024601477], + [4.835217918422517, 51.986143019352369], + [4.826968719085352, 51.992594684873524], + [4.81780597554551, 51.999766887949292], + [4.853602106112066, 52.004798409902534], + [4.857126626640623, 52.005959507028713], + [4.856385758864162, 52.006838057263437], + [4.848602800903459, 52.016116914743691], + [4.846895847756869, 52.018181707279687], + [4.840178124124504, 52.016706941794901], + [4.833334846289931, 52.016422933524353], + [4.824994326804837, 52.017236607954601], + [4.821484756885672, 52.01591829049989], + [4.815858994310813, 52.014029991072995], + [4.812631417301358, 52.013941831138958], + [4.808285216261424, 52.014143240607545], + [4.805394892369923, 52.014132927444471], + [4.803410243635695, 52.014144547997638], + [4.798700277785303, 52.02227172706754], + [4.809933489389651, 52.026764516221263], + [4.809659921142163, 52.027505924666819], + [4.808796420255963, 52.02941402364111], + [4.806870557963898, 52.033193208462137], + [4.811822297801317, 52.033824510193242], + [4.817192999962862, 52.036931095865931], + [4.829567877806025, 52.049846260911181], + [4.83909352931027, 52.054167399623154], + [4.848048569851859, 52.058164684137886], + [4.856305146290132, 52.059151786700511], + [4.868225108698196, 52.063446332196051], + [4.873200481755081, 52.068745392672582], + [4.855231579387519, 52.068813545694809], + [4.840376509583757, 52.068880067711611], + [4.829824668034837, 52.066852257073151], + [4.834035458184063, 52.072735849744163], + [4.832665931040339, 52.072843716229208], + [4.833045329185131, 52.07482692929679], + [4.830897914059026, 52.074353063785075], + [4.830623475058717, 52.074970616541421], + [4.826275757242141, 52.074643575021526], + [4.826492680756543, 52.079527175413759], + [4.825629635493395, 52.079792331776503], + [4.823394773215648, 52.09280121612121], + [4.823057243815632, 52.105142068550705], + [4.824389563365422, 52.105403075191624], + [4.825314810440191, 52.107151089049587], + [4.79208024863196, 52.122287379066151], + [4.793490910429028, 52.123972736483161], + [4.798357724566951, 52.125300603157001], + [4.801980725747629, 52.124857543598772], + [4.803497772695167, 52.126415647810298], + [4.8063657098408, 52.127396269236257], + [4.808065193891086, 52.128947985036454], + [4.80779028309821, 52.129857720258428], + [4.808846941546584, 52.131813796291233], + [4.807599109143593, 52.135211073695366], + [4.808843130944375, 52.135673778377736], + [4.809320111503218, 52.137801455066644], + [4.81311116358973, 52.140173243520131], + [4.816665793431256, 52.139386931160956], + [4.820533692987106, 52.142228768097667], + [4.826471920631752, 52.142176331126606], + [4.83189200733631, 52.144231871119366], + [4.833053182004029, 52.144706057505637], + [4.834119523862975, 52.142964084320433], + [4.836704711286931, 52.14287992237464], + [4.837520647159666, 52.14064375084223], + [4.840793409798992, 52.141476767072049], + [4.842583895048945, 52.139533122354436], + [4.846019725126832, 52.139539110869094], + [4.847412641141668, 52.138944942336018], + [4.851535363155351, 52.139615643973606], + [4.852530929046452, 52.138329340370667], + [4.855238736207004, 52.13720961844389], + [4.864915119000597, 52.137391122870582], + [4.870543736574762, 52.138340157374714], + [4.872606687191045, 52.138862741763234], + [4.874518550279857, 52.138831415279881], + [4.873623533670298, 52.156082509490702], + [4.8875745036175, 52.15995816545017], + [4.892178325553068, 52.161797920565171], + [4.867116808411768, 52.173457654614189], + [4.855465151197942, 52.178957716120877], + [4.844061580013381, 52.180065687324991], + [4.842995342703992, 52.180814890300091], + [4.838383312263568, 52.183258300215741], + [4.837468807589551, 52.183760418053865], + [4.83525842933285, 52.186195796962238], + [4.823430115773635, 52.193283910195227], + [4.822253547785355, 52.196093515936383], + [4.814630246909834, 52.199168323088792], + [4.813139527745962, 52.201111168811579], + [4.813594378742086, 52.201847118875108], + [4.803621134220891, 52.201071393623479], + [4.802611180780731, 52.201746676908627], + [4.801444529823992, 52.208019617240666], + [4.802149732501293, 52.217633602945334], + [4.797002929581448, 52.220348060969243], + [4.795983599218271, 52.223176233053763], + [4.794429942317065, 52.223423400660479], + [4.794575765984295, 52.226730665582004], + [4.801942628514984, 52.226922204986941], + [4.805275114423919, 52.227974169353367], + [4.808198327973042, 52.227115186544246], + [4.814100079316089, 52.227169331316425], + [4.817192844178992, 52.22832489267072], + [4.822002695356184, 52.229194394158441], + [4.828613666340082, 52.230593094402693], + [4.839632687275599, 52.235391292943788], + [4.842845318992076, 52.235347238261895], + [4.842995966281818, 52.236789972126253], + [4.845995199503882, 52.237657786292033], + [4.847325799873051, 52.239781376485929], + [4.850792196331862, 52.238606618852032], + [4.852156621163256, 52.239641217514702], + [4.85127321151525, 52.241890199410818], + [4.852053327157702, 52.24201349084845], + [4.854937954277108, 52.242145620002788], + [4.855291023403851, 52.245555963875432], + [4.856534989922273, 52.246275756702907], + [4.857521784930882, 52.247723056435241], + [4.860620909515029, 52.248216809814856], + [4.866113389716387, 52.250988276231489], + [4.868779226946676, 52.251698345679635], + [4.870121334892413, 52.253282155994867], + [4.872289736482482, 52.251182048538105], + [4.873853006869189, 52.250742634810337], + [4.877728940158628, 52.252816106885462], + [4.882718906702444, 52.253711517049666], + [4.88758573767429, 52.25098923128391], + [4.891759551337413, 52.253267669447304], + [4.898568613459193, 52.250932241741936], + [4.902930809731757, 52.253181806723362], + [4.908547123012469, 52.252682615523007], + [4.910970316038973, 52.252682239729282], + [4.917303351554879, 52.256817244452066], + [4.918553625610746, 52.258586172860092], + [4.918086939870508, 52.261665136738209], + [4.923136772024992, 52.263023178148281], + [4.924713698765119, 52.266937261504218], + [4.929390579296145, 52.268353332764988], + [4.92930005027506, 52.269958323462326], + [4.928014724784848, 52.271742157093705], + [4.926651494611056, 52.272444792390388], + [4.927655001569303, 52.273808318599613], + [4.92598576481894, 52.278078313851836], + [4.926402746232604, 52.279709264327735], + [4.928587262668176, 52.279611281616852], + [4.933755145321523, 52.280895768577672], + [4.942691588407182, 52.278183961160217], + [4.946667569567724, 52.278991552410353], + [4.953764986978904, 52.278029651728033], + [4.955240593948767, 52.278304902941791], + [4.956571572156471, 52.278665652275805], + [4.961053703350038, 52.278174202302068], + [4.962548085852902, 52.280285275936002], + [4.96551381258999, 52.280493262933462], + [4.967576563930379, 52.279561638336844], + [4.969723047777802, 52.283117842309316], + [4.971839549684173, 52.284360699143349], + [4.971851085374246, 52.284368325385167], + [4.983506033154731, 52.290368129289973], + [4.997475436529625, 52.289118356364149], + [5.001757959609062, 52.292772557170238], + [5.001851323015003, 52.295878772050116], + [5.003246373033227, 52.296389680996015], + [5.003765178895788, 52.298340490868533], + [5.005264864059733, 52.298392834536138], + [5.007952013812411, 52.3015485605412], + [5.011769394890067, 52.303392841755013], + [5.013874812517066, 52.303600215718518], + [5.021543265703737, 52.302456851569005] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 8, + "statcode": "PV27", + "jrstatcode": "2021PV27", + "statnaam": "Noord-Holland", + "rubriek": "provincie" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.326332037729994, 52.290790867993103], + [5.327100459141624, 52.290325667065105], + [5.315650527522013, 52.292703546758261], + [5.315469000734395, 52.294919461826488], + [5.324202601103489, 52.294877574456066], + [5.328666146566585, 52.292444353752835], + [5.326332037729994, 52.290790867993103] + ] + ], + [ + [ + [5.039981754918077, 52.334951381383391], + [5.037621401818707, 52.334596332082484], + [5.036981664975361, 52.337671984392145], + [5.039081185286797, 52.337626758777958], + [5.041771514961128, 52.33630281800648], + [5.039981754918077, 52.334951381383391] + ] + ], + [ + [ + [5.08283463298206, 52.346011969464257], + [5.079636098130156, 52.34446457412983], + [5.080772659846326, 52.34567205890707], + [5.08283463298206, 52.346011969464257] + ] + ], + [ + [ + [5.105784367699445, 52.345966930008622], + [5.109798582774528, 52.343682990881071], + [5.107477970997695, 52.343953431726632], + [5.100328746868274, 52.347202650124736], + [5.105784367699445, 52.345966930008622] + ] + ], + [ + [ + [5.007527967239407, 52.344419575444185], + [5.005088307471879, 52.344183005676008], + [4.999443706782944, 52.346191815864316], + [4.998396705304613, 52.348401034208102], + [5.004966949403673, 52.346142825752395], + [5.007527967239407, 52.344419575444185] + ] + ], + [ + [ + [5.070137097366601, 52.365110471643284], + [5.069273202003409, 52.364157096986709], + [5.067698826544135, 52.364578108663963], + [5.068096887411574, 52.365392992857807], + [5.070137097366601, 52.365110471643284] + ] + ], + [ + [ + [5.012751032864592, 52.367293700159237], + [5.003172145580541, 52.366390698014122], + [5.002701555729798, 52.366932658318952], + [5.014531807005161, 52.367977670449214], + [5.012751032864592, 52.367293700159237] + ] + ], + [ + [ + [5.014564031712442, 52.372956538890179], + [5.014146309178964, 52.371686770154241], + [5.012966777137057, 52.371916446778577], + [5.012959742395158, 52.372952945600872], + [5.014564031712442, 52.372956538890179] + ] + ], + [ + [ + [4.57789067461571, 52.464210624181909], + [4.57369751388119, 52.46397063392336], + [4.573901491006416, 52.465506312254014], + [4.577962749291602, 52.46608700274367], + [4.578777362203773, 52.464442200337174], + [4.57789067461571, 52.464210624181909] + ] + ], + [ + [ + [5.146568370822117, 52.745594158805829], + [5.148911741658348, 52.74364570455203], + [5.142562956583641, 52.745852524425231], + [5.141527430051699, 52.747654534514425], + [5.146568370822117, 52.745594158805829] + ] + ], + [ + [ + [5.23782340070299, 52.795259540173404], + [5.235165815445177, 52.793475410875438], + [5.233071273781639, 52.793741043344042], + [5.220528224514089, 52.798257140319869], + [5.221327315168098, 52.799661484408816], + [5.218127531694775, 52.801789579259534], + [5.221790693776174, 52.805491769914241], + [5.23782340070299, 52.795259540173404] + ] + ], + [ + [ + [4.674449028941566, 52.976740279468281], + [4.677808803463301, 52.976496408367105], + [4.679131210352288, 52.978009030979628], + [4.680810254222472, 52.978613600499152], + [4.685509397443734, 52.978956787536994], + [4.69681828798646, 52.976694039476712], + [4.703124442861717, 52.976055161985329], + [4.708714089462078, 52.974691415610913], + [4.702429211784418, 52.973435898784956], + [4.690054229874116, 52.968812918101001], + [4.683743362441363, 52.964833273748468], + [4.677335883753125, 52.959255270203833], + [4.671310513421031, 52.95925620500919], + [4.663292193783071, 52.961592570081969], + [4.659606798658767, 52.964077770548251], + [4.657445150301934, 52.968831247286673], + [4.65754621993634, 52.97420706267431], + [4.658787192368855, 52.97731622660185], + [4.663061405348122, 52.982635937126858], + [4.66504066370777, 52.984028541725522], + [4.670413871995777, 52.985813070369453], + [4.676831825120811, 52.985818658901543], + [4.679685426166486, 52.984735297519293], + [4.679113002214181, 52.984076595637916], + [4.674407542183845, 52.98285938205867], + [4.669159504872296, 52.979199504862486], + [4.669884321282852, 52.977917506705978], + [4.674449028941566, 52.976740279468281] + ] + ], + [ + [ + [5.054712554211769, 52.94034714373781], + [5.053663879555362, 52.93685405953827], + [5.050494368966893, 52.937962067555553], + [5.049212152141777, 52.937783806928465], + [5.044116139243195, 52.935306284114944], + [5.044129579806432, 52.934482276554526], + [5.048718837003537, 52.930540838425685], + [5.046644032923616, 52.929724403886894], + [5.04712087922557, 52.928805590509832], + [5.042057818680217, 52.932401984116233], + [5.038861590732681, 52.931265363845583], + [5.038422731466574, 52.930188943604044], + [5.039599554637126, 52.92906607877854], + [5.038313845950227, 52.928456015871376], + [5.039118357192392, 52.925788172195951], + [5.038004232890515, 52.922680407232953], + [5.03742994362136, 52.922661447458566], + [5.03738789442103, 52.922484395935712], + [5.037973543127666, 52.921538165567966], + [5.039224915390777, 52.921514090761079], + [5.048461140284046, 52.92418460530282], + [5.073900823391431, 52.893819719025842], + [5.076823731417068, 52.892911547543015], + [5.079483782547991, 52.890035483267418], + [5.079151265909861, 52.887527679515614], + [5.101902174953657, 52.860339265357723], + [5.105304948430771, 52.856908369765691], + [5.106903078130111, 52.8572762428361], + [5.109333494108792, 52.85669729763837], + [5.111329981601033, 52.854286891765327], + [5.107845494267923, 52.853264445850527], + [5.113936271423511, 52.845829600515813], + [5.104148357112931, 52.774452279119444], + [5.11222396581941, 52.774643335665033], + [5.11264967265057, 52.773893467117141], + [5.108255028818766, 52.770957333229433], + [5.108772700486052, 52.770654503808551], + [5.111737917709935, 52.772339104155236], + [5.112109359664258, 52.77158261246047], + [5.108991772287635, 52.770060602009579], + [5.109391132758537, 52.769479676378921], + [5.11291873661326, 52.77092393170529], + [5.11224030031177, 52.772670162097675], + [5.112911168052436, 52.773519230994786], + [5.11364292469183, 52.774109499022472], + [5.116513065094805, 52.770749534934957], + [5.115398462394273, 52.770673641419464], + [5.117704265483097, 52.769675099836391], + [5.118133349758116, 52.767923004024759], + [5.120401873773233, 52.768021332957858], + [5.11845458202016, 52.767302211959283], + [5.119242517601028, 52.766094505145517], + [5.117908931389323, 52.765825598691151], + [5.118462164514328, 52.764563983671763], + [5.119552466960129, 52.764480783899039], + [5.119870067841937, 52.76529141461873], + [5.120188237031208, 52.764688582425961], + [5.123496443285437, 52.76517450459658], + [5.123867239935533, 52.764867899938125], + [5.120485432340888, 52.76412547250262], + [5.120100793444717, 52.76107030797435], + [5.121646371943733, 52.761212365909536], + [5.119903559656491, 52.759987915681648], + [5.121066139903641, 52.758624744977546], + [5.123897035230376, 52.757993313289241], + [5.12317786022492, 52.757303530888954], + [5.123541560511938, 52.755687093991632], + [5.130001973594595, 52.751689004601658], + [5.132390704132142, 52.750864228999127], + [5.145556884047297, 52.741895764870833], + [5.148924908759633, 52.743107658938612], + [5.147935783481618, 52.740767991744221], + [5.148446645049591, 52.739620435996201], + [5.149997688681932, 52.740491482401794], + [5.152850170351994, 52.741019158387758], + [5.151720909992411, 52.740044516204598], + [5.154407478944425, 52.73850610041702], + [5.155120751551959, 52.739436621084174], + [5.161763748938998, 52.740159293012056], + [5.163065438840677, 52.738907134597127], + [5.164500003131375, 52.739403064964826], + [5.165130536712519, 52.741102990888827], + [5.16959246774685, 52.740976395048492], + [5.168486386040106, 52.739710264618729], + [5.16988614238703, 52.738637668002788], + [5.17140501020074, 52.738663486770889], + [5.172901468951541, 52.739470483692998], + [5.172726354005467, 52.740092904714238], + [5.170742573581439, 52.740457994244643], + [5.170874232947587, 52.740896446350945], + [5.174787784714999, 52.739542052276946], + [5.176037291840752, 52.739583079071188], + [5.180282929351321, 52.741378500934864], + [5.18463070457094, 52.746582454894373], + [5.182684303171307, 52.746960583967628], + [5.183630286430076, 52.747199792341384], + [5.185753118307713, 52.746602655417952], + [5.186508011088868, 52.747551931343189], + [5.192860685446486, 52.755030244815167], + [5.203798400035232, 52.755010394025604], + [5.213792099197088, 52.754620989964934], + [5.222892393057499, 52.753659851686244], + [5.22571406526366, 52.75245713672571], + [5.229537457836403, 52.752572915043679], + [5.258268418938877, 52.753463529784398], + [5.261129258830478, 52.752639022043802], + [5.26998755232443, 52.747529861828497], + [5.2590779464224, 52.746485099963735], + [5.258371837856346, 52.745679149944024], + [5.266558265942403, 52.745416555235074], + [5.271965796422265, 52.746327012233039], + [5.277541846813479, 52.743269195477076], + [5.280598886228496, 52.742591491195618], + [5.282730160462126, 52.742272994124853], + [5.282848932811021, 52.740493167052179], + [5.286804326255405, 52.735933192413626], + [5.287224536840551, 52.733103584069248], + [5.284355719478525, 52.732233691116669], + [5.28360922948085, 52.730892992143374], + [5.287538897212904, 52.728413334553473], + [5.284867182411052, 52.727230622819143], + [5.284787424532967, 52.721799798489172], + [5.286095330070069, 52.719794086046441], + [5.288577734743965, 52.719004647190609], + [5.287998546232613, 52.714803941683272], + [5.295651365664021, 52.710279144589094], + [5.301727486119272, 52.70830993759995], + [5.304639400720029, 52.708238873917914], + [5.307030753000676, 52.70885235920106], + [5.307771055429622, 52.708318811189194], + [5.307332613321519, 52.706621165413509], + [5.306061097511417, 52.705857598332535], + [5.305170059256801, 52.706528588349691], + [5.299761210587891, 52.707816877412448], + [5.297932680734277, 52.706608844791745], + [5.299310287718153, 52.705978638587922], + [5.298540836422386, 52.705886789088922], + [5.298373122756561, 52.705310453926906], + [5.299113325798917, 52.705686361062739], + [5.299108738322334, 52.705241317219141], + [5.297908845647685, 52.703714914755558], + [5.299341741226268, 52.702741728519783], + [5.294045562993813, 52.699695044000165], + [5.289696145009811, 52.700616784618823], + [5.289193365582959, 52.700109830241281], + [5.292978863975344, 52.699233992746649], + [5.289708172545371, 52.699441296403371], + [5.289826542784761, 52.698695607096454], + [5.290792022558934, 52.698786359819984], + [5.290834710650044, 52.697983654556971], + [5.286496649939626, 52.695580017662948], + [5.285959679150754, 52.696010064406835], + [5.289753747392725, 52.698009148647778], + [5.289234930787845, 52.699442418171159], + [5.28369042626061, 52.69878283829501], + [5.28381937637535, 52.698191895088691], + [5.285793452157722, 52.697987537620797], + [5.288960036126125, 52.6986165293469], + [5.283999241258743, 52.696780608071634], + [5.279644352072135, 52.695960036831238], + [5.279431449728438, 52.694739888423967], + [5.28412688737893, 52.69272692048844], + [5.286841657843294, 52.690782087997015], + [5.287425002783326, 52.691164984747665], + [5.286883502639623, 52.689895479885465], + [5.282198225596393, 52.687716681267609], + [5.286070394392826, 52.690383790791302], + [5.282946813932449, 52.691940674629649], + [5.281466157178938, 52.691150731022965], + [5.279470367825742, 52.691952225643753], + [5.276303282838798, 52.690050753990491], + [5.271090761304873, 52.687638497095996], + [5.266415795510596, 52.687885198173689], + [5.261130210829519, 52.686625765316741], + [5.259248470493342, 52.686905580146991], + [5.256724366182159, 52.686713026389477], + [5.256363828639914, 52.686011725535941], + [5.254265276330301, 52.686656772195143], + [5.246480100415064, 52.68551203378609], + [5.245709203375342, 52.684987711285153], + [5.245274000664627, 52.682156614871069], + [5.243830160904744, 52.681658183242426], + [5.243233027915503, 52.677651842888174], + [5.242665043780317, 52.67263143528065], + [5.238181116483197, 52.665351012829021], + [5.235782248936577, 52.657069069296966], + [5.230643759530614, 52.652768797728775], + [5.206872698401662, 52.644513499763612], + [5.201356621634045, 52.641045027610382], + [5.198525452148047, 52.636312627145045], + [5.189784983067658, 52.636684214095631], + [5.177730273185052, 52.634202829291539], + [5.17456110328024, 52.633019770368669], + [5.164203467792079, 52.62689394952703], + [5.159314091585419, 52.623182043781291], + [5.149656466696776, 52.623639787550957], + [5.147041340620058, 52.622670287153269], + [5.145945200291043, 52.623127773027228], + [5.142333057075958, 52.622408030640244], + [5.127890321266619, 52.619879706032663], + [5.125408003825745, 52.621903062066806], + [5.126285774060598, 52.623380861765263], + [5.128059950147062, 52.624310377618137], + [5.128690112615783, 52.626093207870156], + [5.127335251912614, 52.626829450085069], + [5.125376817393423, 52.629600766376704], + [5.121027135877824, 52.63261787546876], + [5.117219529750035, 52.632889164609921], + [5.111609472598299, 52.632281390918266], + [5.109009093748119, 52.631384238943717], + [5.106547995597222, 52.631574173114245], + [5.101264341952791, 52.633676703924515], + [5.100754463334612, 52.634737105622719], + [5.093200592851088, 52.639893002015242], + [5.092747936127192, 52.64027768051205], + [5.092426298493056, 52.640787739912824], + [5.089836005224603, 52.640233156897303], + [5.088657401210722, 52.642510765265214], + [5.083448403214557, 52.64158620753031], + [5.088342899961045, 52.638342240665153], + [5.087756000648985, 52.637815751597131], + [5.085696078854255, 52.639660813901038], + [5.081666591465705, 52.64129034209774], + [5.081412490098163, 52.641544400031783], + [5.079476654305685, 52.640639481619289], + [5.078504885065451, 52.641482828552491], + [5.076887521915363, 52.641327870670658], + [5.075239928887633, 52.640474514179154], + [5.075385848359485, 52.639541220425798], + [5.068074878420321, 52.634837950372066], + [5.064402105282145, 52.636983737691601], + [5.06702834307809, 52.637282119199689], + [5.066951957185066, 52.638402134948173], + [5.063921380866941, 52.637473484181946], + [5.063688491607825, 52.637816876917626], + [5.065473345825439, 52.63880161720234], + [5.068479525972518, 52.639254813784355], + [5.068313167053976, 52.64020455208049], + [5.066986816598721, 52.640054930438552], + [5.066299474917823, 52.640721606748386], + [5.066139299043716, 52.639265146551061], + [5.064680114411085, 52.639035486029698], + [5.062979334173862, 52.637888136714466], + [5.062982270481553, 52.637273088580031], + [5.063572436985691, 52.637310763866196], + [5.062974594282732, 52.6334873999824], + [5.06180586841595, 52.633587476950702], + [5.061969488306516, 52.636499029082145], + [5.058239795780486, 52.636846463176482], + [5.057778543324845, 52.634593700943597], + [5.060465870990916, 52.633840195195056], + [5.060438217669109, 52.633099478384381], + [5.05554482247207, 52.633950685180032], + [5.055544712093126, 52.635834021529782], + [5.057210475365278, 52.637505862832228], + [5.056940780473855, 52.63800892281688], + [5.052216715763111, 52.641422140582691], + [5.045662172319233, 52.641636855501503], + [5.03996292481001, 52.638039464691062], + [5.038996783739177, 52.636614003569072], + [5.034867278376612, 52.636454767975493], + [5.029791228311264, 52.635537107418614], + [5.027362384606101, 52.634032202313733], + [5.023108201949177, 52.632788091614124], + [5.01890381814679, 52.629918875473635], + [5.016926302045576, 52.624529323928357], + [5.017194547665163, 52.618687360741106], + [5.019659400593364, 52.612453577480743], + [5.019495890862485, 52.606418955346278], + [5.022264220186006, 52.604514820412795], + [5.021086340939408, 52.602206373064725], + [5.02436588733995, 52.599648202545019], + [5.020564901934043, 52.596026717422639], + [5.023241117532765, 52.591401591860439], + [5.028583530495492, 52.585210824298542], + [5.029284188236959, 52.580807683420318], + [5.032578986824996, 52.573583525308742], + [5.031001871662829, 52.570371639295992], + [5.031129463296241, 52.567565023493756], + [5.0346601699129, 52.564927997362943], + [5.042670406985814, 52.560960220761444], + [5.04308230790449, 52.557966627370135], + [5.054754706637334, 52.544603927459001], + [5.054805529453034, 52.53840121102192], + [5.057575519859021, 52.53724252670127], + [5.063010611775818, 52.529779927432095], + [5.064773589463684, 52.528975145761812], + [5.065775396461778, 52.526200277881316], + [5.066402727692018, 52.52288083379667], + [5.069825298949316, 52.521019067625815], + [5.071686687125456, 52.518899800888811], + [5.073820494803924, 52.519366925262148], + [5.075005829201611, 52.519061647983897], + [5.074564338076336, 52.517152790649156], + [5.074859660542102, 52.515085602306506], + [5.080636271415898, 52.513041880779198], + [5.08376450172374, 52.506618552384275], + [5.085692682880295, 52.5037576064015], + [5.081003626637065, 52.499763871717043], + [5.077935200180933, 52.495498704549348], + [5.077860078408151, 52.493743186555037], + [5.076895360122032, 52.494330181966419], + [5.075499406194832, 52.493111632986846], + [5.073583124450828, 52.492562884137214], + [5.074073884222711, 52.491919454261641], + [5.071815884162969, 52.491905023155731], + [5.07156298075449, 52.49090870443063], + [5.069945538208428, 52.489675867179407], + [5.067465951695934, 52.489653184846972], + [5.065879124832078, 52.49000184234324], + [5.065200830397369, 52.490729854135814], + [5.064220247007987, 52.490624649896631], + [5.062808854347264, 52.488223466235965], + [5.06156033440084, 52.488274161047904], + [5.059481503568841, 52.485614540439094], + [5.059062038690091, 52.48179666072474], + [5.060571145129679, 52.476706519348767], + [5.067652291882762, 52.472304412005599], + [5.069089013434672, 52.470711741045868], + [5.068475071431582, 52.468766683904796], + [5.061904921970025, 52.467704969320792], + [5.057838914952316, 52.46792578865243], + [5.051066892533257, 52.46933277178627], + [5.041424204508605, 52.465497498869759], + [5.038824190551477, 52.465027151713898], + [5.03822801537128, 52.466296361569285], + [5.033605320260577, 52.467389825691399], + [5.033415960949253, 52.465965732654411], + [5.034098824569064, 52.464397985959536], + [5.03851690163323, 52.464001066806915], + [5.038750649295149, 52.463424525863054], + [5.03644922917793, 52.463170986231312], + [5.03879919995773, 52.460463279162795], + [5.039871197613388, 52.460852582922222], + [5.041671786684224, 52.460137834250382], + [5.040653387126619, 52.459041878268252], + [5.042292405920016, 52.457776279189332], + [5.04346071901591, 52.457594035248938], + [5.046074135522137, 52.461181326861933], + [5.049257792622182, 52.462765314944356], + [5.054036070406926, 52.462083600590859], + [5.054952953403755, 52.461368964429766], + [5.049801498976713, 52.455514014836616], + [5.048465035089763, 52.455100301166176], + [5.048178580968825, 52.453883545990941], + [5.048165572559785, 52.450567686879019], + [5.047726781532684, 52.448379898791877], + [5.048224010236593, 52.447674417516424], + [5.049125477909183, 52.447326250917826], + [5.050305032617293, 52.445001101735777], + [5.047951930166842, 52.442253726106607], + [5.049416281756251, 52.439359041924661], + [5.057489080707776, 52.439127557937589], + [5.063833083422169, 52.437325196372406], + [5.064842854983696, 52.437343198216674], + [5.065663160659256, 52.43858305897583], + [5.067196733046357, 52.438895587525138], + [5.071705695711825, 52.437732904750611], + [5.078061233313948, 52.43655797107634], + [5.086927457717774, 52.43702394991606], + [5.087187606918254, 52.43506145310149], + [5.088846478264699, 52.434843287929539], + [5.093002600789879, 52.440115645459151], + [5.094391170833648, 52.448543676958906], + [5.092997097557396, 52.450367441069702], + [5.092636636031108, 52.451662157068242], + [5.094686783996654, 52.454146280823828], + [5.098957262197104, 52.457617218258306], + [5.100276701312251, 52.457175021192064], + [5.100962095197578, 52.458318366899249], + [5.100064087058795, 52.458756758254651], + [5.10153557746237, 52.462055194057569], + [5.100521995294241, 52.464172126466863], + [5.103257743489497, 52.468173658763682], + [5.106345053966717, 52.467545639842861], + [5.111763207818311, 52.463977758123811], + [5.113644667403101, 52.461788952870791], + [5.120098433159919, 52.461792962623349], + [5.132080482041722, 52.463098013568413], + [5.134744283166835, 52.462881088969972], + [5.136524057085154, 52.462404795508377], + [5.137596331317448, 52.460386707919739], + [5.139381720212204, 52.459687983821809], + [5.1362997217988, 52.460237593897354], + [5.13341689307255, 52.45981851044629], + [5.124315489433673, 52.457067971206307], + [5.121922339882556, 52.455645091062877], + [5.111085832074654, 52.45404570080607], + [5.106176914778194, 52.450193537493192], + [5.099122943537087, 52.450268485129897], + [5.094939013339602, 52.448452484514796], + [5.093871271915751, 52.441010255291822], + [5.091921463166014, 52.437365755756119], + [5.086756402099678, 52.432091832810869], + [5.08821244339531, 52.434231747525651], + [5.085922560155955, 52.435046406574365], + [5.081698493737922, 52.43105830141792], + [5.076369953705898, 52.428861068195872], + [5.076970637956628, 52.427604447866038], + [5.075443427622088, 52.427836322876793], + [5.07563226028541, 52.428581462161944], + [5.074879190596071, 52.428721878552949], + [5.073838718467723, 52.427432438034018], + [5.076018945567575, 52.42665165339028], + [5.075085958306635, 52.426416794736099], + [5.073917483895827, 52.424411026811825], + [5.073263757685296, 52.420582182509719], + [5.068263592928625, 52.416558102057174], + [5.067269733472689, 52.413422118555822], + [5.05763414297348, 52.41481644902229], + [5.052210583813173, 52.413180992671137], + [5.046004329366633, 52.406669828583993], + [5.038371640393293, 52.404872055314186], + [5.033866059001507, 52.402477944076914], + [5.029426235647823, 52.398714700022076], + [5.024847867291701, 52.38797751828865], + [5.019262309021335, 52.38668804575569], + [5.017482648337687, 52.384527766030089], + [5.0110586512046, 52.383183934893026], + [5.01356210373833, 52.381792040398295], + [5.013784568014396, 52.380665437001838], + [5.011812534945593, 52.373692817515611], + [5.008483334589708, 52.372571565100884], + [5.001696992671901, 52.374947818939653], + [5.000771920459019, 52.377135704354352], + [4.99862065814346, 52.378781205134445], + [4.994449784878503, 52.377747025180177], + [4.993663768982326, 52.378538241492237], + [4.991463933940937, 52.377829783741767], + [4.991767080239086, 52.377200420747414], + [4.989354937283398, 52.377525275695675], + [4.983763088447972, 52.374031683941986], + [4.981657354770102, 52.373460925383476], + [4.980119653379984, 52.373715463558419], + [4.974616229254901, 52.378955364698413], + [4.973979641151746, 52.379433095723428], + [4.973749654909269, 52.378569118780362], + [4.972839488511477, 52.379825504272731], + [4.968590114327576, 52.379325365013109], + [4.963295672571297, 52.383585793057762], + [4.961152580606426, 52.381413621647027], + [4.960212586630881, 52.381322056588026], + [4.959015946841981, 52.380589254129688], + [4.961867602966773, 52.379783433893124], + [4.961482617168003, 52.379183776278175], + [4.959860440018629, 52.379531990853685], + [4.964810499227744, 52.376825294548091], + [4.972189629631931, 52.372875654117045], + [4.980208978575741, 52.368990774865338], + [4.973660166617858, 52.368571879552242], + [4.973287721069282, 52.367561430498199], + [4.976730017966201, 52.36519032652258], + [4.980911850745431, 52.363295161088999], + [4.984740009239983, 52.364875056363587], + [4.984691586017719, 52.365672913540415], + [4.99077679683817, 52.363771108676467], + [4.986625472769653, 52.360808701778019], + [4.985596134418957, 52.361081801469986], + [4.986528110467377, 52.360027808402094], + [4.987698651224495, 52.359785852137335], + [4.992077720332336, 52.361657991808357], + [4.997146558609068, 52.359364456458465], + [5.005773085486867, 52.354802639592364], + [5.006466332241868, 52.354882632594581], + [5.006243648501281, 52.354553754371906], + [5.009522044962335, 52.353249816610997], + [5.01524944992143, 52.355086918252965], + [5.019810552019075, 52.356313616807149], + [5.020513661598008, 52.35590785155415], + [5.021262029992434, 52.354103100743927], + [5.020093327358515, 52.354017980347258], + [5.016487723735588, 52.353690268568975], + [5.019163783289032, 52.350408972450921], + [5.015180155584893, 52.348795807763459], + [5.015119142170762, 52.347433391389295], + [5.01432972783127, 52.347807905944826], + [5.014572029413098, 52.347069815109201], + [5.009088615061127, 52.345036904879471], + [4.998652337188209, 52.350878326789612], + [4.997581269188412, 52.35030206017737], + [4.991877492421814, 52.352881950871563], + [4.989278708427111, 52.354708046810998], + [4.99023853598037, 52.354941525748202], + [4.986721546591152, 52.356639553934713], + [4.986524521734082, 52.358003502994393], + [4.988190839678567, 52.358643595710568], + [4.986345554591209, 52.359927602426495], + [4.984775029347228, 52.360352530060581], + [4.98043700540384, 52.358555809275188], + [4.978428346621087, 52.360815648134931], + [4.977112286554213, 52.360291244628371], + [4.975394358389201, 52.360770488024293], + [4.974215676239459, 52.361830915197977], + [4.977454863800973, 52.364149193471526], + [4.976613088573825, 52.365120189299013], + [4.97580689770196, 52.365553195218048], + [4.972408849260022, 52.365231236791317], + [4.970361075167316, 52.363278928218733], + [4.96891254130839, 52.360785394125749], + [4.974059091561419, 52.36039770930126], + [4.974106645693032, 52.357920216458837], + [4.975272465990142, 52.357152334871571], + [4.984793613527965, 52.358024021806152], + [4.985807893638047, 52.357556337761345], + [4.985129317199654, 52.355371363175919], + [4.991429112300191, 52.352423629816045], + [4.994397139066315, 52.350030253023313], + [4.995724143598109, 52.349834273763726], + [4.998800167469449, 52.346019401597623], + [5.00248844890943, 52.344121065836752], + [5.005813987927086, 52.343555358603602], + [5.010193455561622, 52.344226975857381], + [5.012304445706008, 52.343846299334089], + [5.01352698832005, 52.343813368659362], + [5.019049702556825, 52.34787750999854], + [5.023653737638803, 52.34802418378149], + [5.026860634211934, 52.34877232574506], + [5.034943855464152, 52.344529327260261], + [5.033996713747743, 52.340638835721627], + [5.026188643665523, 52.338062752889215], + [5.026138695392533, 52.337490725536071], + [5.027541106441721, 52.337736211120266], + [5.030116951113392, 52.336517912685089], + [5.029417929825553, 52.335169011904682], + [5.032149512905082, 52.333536294095921], + [5.036387050579763, 52.33347853939172], + [5.043083335644638, 52.335623835792667], + [5.044581285438242, 52.335321812547868], + [5.055503510412881, 52.33777949728222], + [5.060479811766744, 52.337752725804371], + [5.067094551044073, 52.336683852548617], + [5.06846282584245, 52.337194646684807], + [5.068552123717312, 52.334084537016743], + [5.069825164352336, 52.333285974959928], + [5.070775153827618, 52.333638769019608], + [5.06985496689436, 52.334598610299402], + [5.070192018385429, 52.335492387565033], + [5.069820533103895, 52.337478068309046], + [5.070968560410366, 52.337332291549522], + [5.077594979036543, 52.339801227138047], + [5.093639158925858, 52.338760866029098], + [5.099481198262725, 52.336099315982892], + [5.107571877726655, 52.331186134358589], + [5.109004172338603, 52.332037710449001], + [5.109917460550156, 52.331129404004486], + [5.111082702063345, 52.329964041987928], + [5.12346645356952, 52.32932642191556], + [5.12937169270039, 52.325401962868007], + [5.133435316033832, 52.327645306670739], + [5.137017205830094, 52.325439098711577], + [5.138324408296685, 52.325901704150979], + [5.138822634135851, 52.325518524578086], + [5.137709305693838, 52.324947494374044], + [5.144577931305318, 52.317393253718137], + [5.151304036258399, 52.312451637063255], + [5.149496769046613, 52.311959614317544], + [5.146110671254238, 52.312764262086205], + [5.143619228205843, 52.310881893093494], + [5.146560573584202, 52.309322710755282], + [5.149901243175533, 52.310087946277989], + [5.150175822642863, 52.311433088062302], + [5.152613623893941, 52.31183000036792], + [5.15961329145361, 52.308276228956075], + [5.161504811439533, 52.306417953448737], + [5.165580545059762, 52.304957750919272], + [5.173803116979903, 52.303996001046507], + [5.181180187876222, 52.30506268346619], + [5.183531269321791, 52.305901638537193], + [5.184696954606737, 52.30729106924727], + [5.196490997745639, 52.308994198551595], + [5.228488521636555, 52.311253977106844], + [5.230944575976742, 52.311833071307277], + [5.240183797647697, 52.31171173291586], + [5.242503778908701, 52.311284509011131], + [5.243743018099143, 52.312109222507033], + [5.244244622068115, 52.311863194661584], + [5.242829119649893, 52.310599844179443], + [5.244023433959327, 52.310090137075626], + [5.245161608075954, 52.31079500395564], + [5.245240977912283, 52.309721155170344], + [5.244008447744111, 52.308977977116747], + [5.24137304570538, 52.305900441048081], + [5.242188161534357, 52.305730860460081], + [5.244226992332938, 52.308638481465891], + [5.245296698389314, 52.308404601176719], + [5.2449781262565, 52.3091667065111], + [5.247233430341359, 52.312133236365433], + [5.246311093468761, 52.310323655827752], + [5.251621264781662, 52.309041143310687], + [5.251308012610882, 52.3101016951248], + [5.248159703735315, 52.312586276097235], + [5.247870461791729, 52.313853116297956], + [5.249118818304537, 52.315833848700684], + [5.249956466703145, 52.315913549272572], + [5.249608000121763, 52.313678990705341], + [5.252121695541152, 52.312063687574998], + [5.252722194476239, 52.310136590404831], + [5.256358087612271, 52.306833030135678], + [5.25988125348985, 52.306113677786634], + [5.264274137711172, 52.306765764669414], + [5.264733391379573, 52.306453628986553], + [5.274064537684731, 52.304144944983896], + [5.27800204157974, 52.302359263796909], + [5.278819819968071, 52.302387068084826], + [5.281126696949484, 52.300593567290704], + [5.287809986072916, 52.297603055123425], + [5.291361619548076, 52.296593396717846], + [5.298719207241274, 52.298055040725089], + [5.302321127091388, 52.30210577885898], + [5.307331193423276, 52.302729237067425], + [5.309012554324916, 52.304926935329377], + [5.3122740687626, 52.303470799253269], + [5.313412826341458, 52.303373307156662], + [5.31390330082398, 52.303100866642929], + [5.317183681425413, 52.300588700828506], + [5.314825284039394, 52.30160250762107], + [5.311073176668434, 52.299919663485582], + [5.308255728770205, 52.299805405146245], + [5.304318161949817, 52.297342775571643], + [5.303115484644495, 52.295219447005856], + [5.299720298740054, 52.29452309860006], + [5.297231972874378, 52.29316055408065], + [5.295532593845014, 52.289955911977373], + [5.295883264358624, 52.288584896653369], + [5.296553568815514, 52.286688227545689], + [5.306465457650885, 52.277605658949604], + [5.305825735462439, 52.27732958975951], + [5.278664120563695, 52.280472455228669], + [5.277129629357333, 52.280637848775548], + [5.269207658078841, 52.281544391270948], + [5.265769237726992, 52.281644613914501], + [5.265663331368413, 52.281505365228199], + [5.261101908830187, 52.275835788308648], + [5.244081200098236, 52.254662786078057], + [5.245093194539217, 52.254431069951167], + [5.238407789648459, 52.245660320180335], + [5.237368871418962, 52.244276559272919], + [5.231879714347626, 52.237077661766911], + [5.222901318114247, 52.225260952084426], + [5.224730312641928, 52.2251970959544], + [5.220577570830265, 52.215971372204848], + [5.218960393739491, 52.212128715903518], + [5.216529372603552, 52.205450736774182], + [5.215500798059552, 52.204273426917034], + [5.192586036356817, 52.177832946761832], + [5.184185639438032, 52.17795466720532], + [5.17943173918157, 52.178213388898648], + [5.169704886396921, 52.178802699056099], + [5.166740277880533, 52.178975792607375], + [5.124110658780968, 52.180827392925899], + [5.121412649250523, 52.180952755181409], + [5.115311211660083, 52.179816287901872], + [5.078656044591026, 52.172985690410833], + [5.046463611283425, 52.165929111788422], + [5.041591838429384, 52.1837515220396], + [5.03250329748329, 52.184113408670719], + [5.033764798060847, 52.186163713217788], + [5.034977308024128, 52.186802955565206], + [5.03558454837247, 52.190974607434271], + [5.03664637487166, 52.193733306015631], + [5.038134148577678, 52.195163173450048], + [5.037204282618782, 52.196847586297793], + [5.037124779079941, 52.198052709961331], + [5.030972186700759, 52.198764077395616], + [5.027942406413159, 52.199958864656537], + [5.026061332139805, 52.201373962376415], + [5.021293029989728, 52.201885744105908], + [5.023011815613342, 52.201746935430485], + [5.021603965212921, 52.202541990349772], + [5.023026003706553, 52.202038979165998], + [5.022621105955336, 52.203941463776751], + [5.023432926531322, 52.20382839125898], + [5.023315148668049, 52.203050842046558], + [5.024996331685905, 52.202843894858219], + [5.025599931765786, 52.203981825138143], + [5.036649969235884, 52.202137987680153], + [5.037421091081344, 52.204964513655881], + [5.035316307409746, 52.205232596249296], + [5.036444813432595, 52.20956397403495], + [5.036443768108387, 52.209564063506221], + [5.033400656940726, 52.209836232811497], + [5.034353896696371, 52.21311746162057], + [5.033729751814254, 52.213123037547852], + [5.033788026245274, 52.213713996258882], + [5.036742136405985, 52.213663360700252], + [5.037243002338148, 52.214188616004726], + [5.035329632380896, 52.214462267102419], + [5.035683495589341, 52.215124659885952], + [5.036909384746683, 52.21515572361524], + [5.03711897271773, 52.216596476980186], + [5.03584906884601, 52.217529138423373], + [5.036665673747447, 52.224360155200429], + [5.041907250127776, 52.223993059053164], + [5.041922644697644, 52.224062219121592], + [5.042795727629247, 52.22403951153953], + [5.041984010693461, 52.224326651393802], + [5.041928908456491, 52.224088679799472], + [5.039873276800595, 52.224387325874581], + [5.037398896524329, 52.224739927700504], + [5.037101853302344, 52.225341649931693], + [5.038730628432685, 52.225179416336736], + [5.041685865052615, 52.228234513661668], + [5.042484524903418, 52.22877988449001], + [5.040696583222404, 52.229567458534504], + [5.040545558621461, 52.229841963810713], + [5.041585640494061, 52.230888224076352], + [5.042313503380655, 52.230531678790626], + [5.057712862910777, 52.23534258968661], + [5.056902069380775, 52.236522345383101], + [5.045996388557466, 52.243220551028656], + [5.046651980984688, 52.248457892957362], + [5.044095410307069, 52.252124748296993], + [5.04342792106815, 52.255448542562284], + [5.041878916201433, 52.25655996715998], + [5.040253245365991, 52.256576382087466], + [5.037196467830109, 52.253441192583992], + [5.035255439144927, 52.25264486793742], + [5.031190601167964, 52.255988269341806], + [5.032572600383069, 52.259974916746081], + [5.031453851364475, 52.261305700298927], + [5.026551075560731, 52.2641986146985], + [5.02785475174314, 52.266246434762301], + [5.027626904637559, 52.267777644845395], + [5.026339279358733, 52.268661387751294], + [5.023310180989038, 52.271471994420274], + [5.022886956463761, 52.272483438460746], + [5.023710330901697, 52.273208171661935], + [5.029813799773301, 52.272043504680482], + [5.03093317143786, 52.272502870781281], + [5.033070054056077, 52.275289885563318], + [5.04252203869448, 52.277930301466647], + [5.048237606532411, 52.276960439085208], + [5.049679871609342, 52.277988860073812], + [5.049666186308366, 52.280205876468251], + [5.050753525374211, 52.281817807885886], + [5.060398143578195, 52.28514311067034], + [5.062858907447069, 52.284778294331915], + [5.062873064096943, 52.282199648398233], + [5.064412494913163, 52.280737602035543], + [5.065858584626162, 52.280537328974852], + [5.065863421557196, 52.281139878807473], + [5.065471556358812, 52.285198158699899], + [5.064791944003756, 52.285080545283535], + [5.063425891819062, 52.287055113077756], + [5.059540368958504, 52.289320134709818], + [5.052738117687785, 52.286508240033321], + [5.050404400283385, 52.287871983947909], + [5.047491884733201, 52.285028646072824], + [5.042778727086573, 52.282488140812674], + [5.040742318027147, 52.283875030214723], + [5.039521401096041, 52.283263305960034], + [5.033212526904999, 52.286258105833284], + [5.03052848731051, 52.288487182775086], + [5.024381702153778, 52.281357448168919], + [5.022826554493976, 52.282150432611068], + [5.021867278437303, 52.282653270318512], + [5.021543265703737, 52.302456851569005], + [5.013874812517066, 52.303600215718518], + [5.011769394890067, 52.303392841755013], + [5.007952013812411, 52.3015485605412], + [5.005264864059733, 52.298392834536138], + [5.003765178895788, 52.298340490868533], + [5.003246373033227, 52.296389680996015], + [5.001851323015003, 52.295878772050116], + [5.001757959609062, 52.292772557170238], + [4.997475436529625, 52.289118356364149], + [4.983506033154731, 52.290368129289973], + [4.971851085374246, 52.284368325385167], + [4.971839549684173, 52.284360699143349], + [4.969723047777802, 52.283117842309316], + [4.967576563930379, 52.279561638336844], + [4.96551381258999, 52.280493262933462], + [4.962548085852902, 52.280285275936002], + [4.961053703350038, 52.278174202302068], + [4.956571572156471, 52.278665652275805], + [4.955240593948767, 52.278304902941791], + [4.953764986978904, 52.278029651728033], + [4.946667569567724, 52.278991552410353], + [4.942691588407182, 52.278183961160217], + [4.933755145321523, 52.280895768577672], + [4.928587262668176, 52.279611281616852], + [4.926402746232604, 52.279709264327735], + [4.92598576481894, 52.278078313851836], + [4.927655001569303, 52.273808318599613], + [4.926651494611056, 52.272444792390388], + [4.928014724784848, 52.271742157093705], + [4.92930005027506, 52.269958323462326], + [4.929390579296145, 52.268353332764988], + [4.924713698765119, 52.266937261504218], + [4.923136772024992, 52.263023178148281], + [4.918086939870508, 52.261665136738209], + [4.918553625610746, 52.258586172860092], + [4.917303351554879, 52.256817244452066], + [4.910970316038973, 52.252682239729282], + [4.908547123012469, 52.252682615523007], + [4.902930809731757, 52.253181806723362], + [4.898568613459193, 52.250932241741936], + [4.891759551337413, 52.253267669447304], + [4.88758573767429, 52.25098923128391], + [4.882718906702444, 52.253711517049666], + [4.877728940158628, 52.252816106885462], + [4.873853006869189, 52.250742634810337], + [4.872289736482482, 52.251182048538105], + [4.870121334892413, 52.253282155994867], + [4.868779226946676, 52.251698345679635], + [4.866113389716387, 52.250988276231489], + [4.860620909515029, 52.248216809814856], + [4.857521784930882, 52.247723056435241], + [4.856534989922273, 52.246275756702907], + [4.855291023403851, 52.245555963875432], + [4.854937954277108, 52.242145620002788], + [4.852053327157702, 52.24201349084845], + [4.85127321151525, 52.241890199410818], + [4.852156621163256, 52.239641217514702], + [4.850792196331862, 52.238606618852032], + [4.847325799873051, 52.239781376485929], + [4.845995199503882, 52.237657786292033], + [4.842995966281818, 52.236789972126253], + [4.842845318992076, 52.235347238261895], + [4.839632687275599, 52.235391292943788], + [4.828613666340082, 52.230593094402693], + [4.822002695356184, 52.229194394158441], + [4.817192844178992, 52.22832489267072], + [4.814100079316089, 52.227169331316425], + [4.808198327973042, 52.227115186544246], + [4.805275114423919, 52.227974169353367], + [4.801942628514984, 52.226922204986941], + [4.794575765984295, 52.226730665582004], + [4.789410078432875, 52.227875102086195], + [4.786875148705923, 52.227882748155835], + [4.784936466302949, 52.228626175257922], + [4.780985697349092, 52.228741236104092], + [4.776400226273156, 52.227372663210346], + [4.774650347452643, 52.224582747380126], + [4.771228649087026, 52.222752775286416], + [4.762074555382037, 52.218130271432855], + [4.7598479231861, 52.217586497428634], + [4.753298573812546, 52.217467802631255], + [4.750668904262687, 52.215720551895672], + [4.747971633425271, 52.214867899197174], + [4.743629950620169, 52.214792826462904], + [4.734389209560932, 52.206555664011013], + [4.732833708010208, 52.206972062917941], + [4.728766065680575, 52.209818813407963], + [4.729562598899792, 52.210271146999389], + [4.724739019677875, 52.212583381305521], + [4.724558852444313, 52.213222835429001], + [4.723764467822264, 52.21657365226487], + [4.723302028225241, 52.21635386526831], + [4.723649645072515, 52.218234968327003], + [4.722896666244462, 52.22036390566609], + [4.72415459907673, 52.232371333713701], + [4.704428116926917, 52.233842061797141], + [4.700243728354258, 52.233079440644914], + [4.696244173192801, 52.232109273071067], + [4.686210631378756, 52.226633459837821], + [4.683632368495539, 52.226354033695536], + [4.679975193191053, 52.226763109022158], + [4.676699090873211, 52.225925520323557], + [4.6703481545459, 52.230755785531663], + [4.668345836915038, 52.229580411023335], + [4.665847270319638, 52.22799641295628], + [4.658473801898813, 52.226098282814085], + [4.647177846704704, 52.221205878383046], + [4.638574623483159, 52.218486622588614], + [4.632634519958351, 52.21618427414861], + [4.625844715762934, 52.215301247263625], + [4.622483865062758, 52.214922743998976], + [4.618437214882826, 52.214475769073488], + [4.60276165218789, 52.214558268932059], + [4.598180832795426, 52.215545173539269], + [4.58355326198575, 52.21887420568612], + [4.573762822407199, 52.217258354467795], + [4.572202258498106, 52.216999102821838], + [4.558433212891105, 52.218798537328453], + [4.556615428529615, 52.219273045989304], + [4.55393404985865, 52.22220541828154], + [4.550470428510734, 52.226744715716627], + [4.553625049478045, 52.230932974392829], + [4.555619540819569, 52.232019069443361], + [4.560783750121058, 52.233059967693102], + [4.562272714322671, 52.23384344234745], + [4.564183804442624, 52.238628757434725], + [4.565055021680457, 52.24143068039416], + [4.565347793186775, 52.242347844910611], + [4.566209234199426, 52.245013543783102], + [4.567832145945991, 52.250747328485346], + [4.568763723694648, 52.255670946170213], + [4.569537639333149, 52.259860231488545], + [4.568448698672069, 52.264705490809909], + [4.568251216787607, 52.265557932192621], + [4.568038407790607, 52.266517394869162], + [4.568335860386409, 52.268553385829627], + [4.572749101075439, 52.271240018878743], + [4.577122386933023, 52.27380256958439], + [4.584144013134635, 52.277915325438265], + [4.584882760572701, 52.278337366960635], + [4.58887242786941, 52.281107940711017], + [4.589539032286551, 52.282485526067724], + [4.591337060870617, 52.285957994414453], + [4.59373784824614, 52.288700858349308], + [4.595601662989631, 52.290804850450201], + [4.596476608678175, 52.294445727470347], + [4.59824399304735, 52.297735800080282], + [4.60233781151912, 52.303249401661851], + [4.604737902594912, 52.306278915903327], + [4.610271317295981, 52.310884932602924], + [4.611533167578034, 52.31224009036405], + [4.611676105741519, 52.313559913071998], + [4.599456067389887, 52.317100994259199], + [4.596301725194547, 52.317762989610557], + [4.591033729704528, 52.317789120877144], + [4.587686489080679, 52.317880921475847], + [4.587469084963558, 52.316763172670015], + [4.586090393761318, 52.317315200341739], + [4.585792588032104, 52.318197372893401], + [4.583435432544993, 52.318382361621879], + [4.573240624327248, 52.315355520387328], + [4.569075535119969, 52.316483031936272], + [4.563707498587185, 52.309298008420143], + [4.547322326245436, 52.31399659853119], + [4.543370888223373, 52.314988612488555], + [4.494926595302219, 52.327948528724228], + [4.493971193991, 52.328198083230433], + [4.526146908511107, 52.377346378683427], + [4.541564823658558, 52.401336360594478], + [4.554777132014513, 52.422609776634225], + [4.56044279784397, 52.438005808102886], + [4.562258523510748, 52.446454143023992], + [4.558426694319883, 52.447183324455594], + [4.554829796611291, 52.456276767369452], + [4.551694864985867, 52.460704331823798], + [4.540326472218616, 52.458100624288107], + [4.538003174688937, 52.458064148492944], + [4.533566843219668, 52.460932743935288], + [4.532077963328782, 52.463836558642022], + [4.533600427026455, 52.463846301304777], + [4.535345038251558, 52.460718335527972], + [4.538037272117411, 52.459004951587865], + [4.540605442508845, 52.459131612977615], + [4.55485587962566, 52.462470058602094], + [4.558346349438881, 52.461016057908687], + [4.559927292533941, 52.456995173733546], + [4.56509337338797, 52.45798320918157], + [4.564651192336681, 52.459087127894144], + [4.562281674067557, 52.459883697915785], + [4.564320366779153, 52.462329812823917], + [4.568750747768758, 52.462627259007903], + [4.569454377480146, 52.462256689684196], + [4.567630386592029, 52.459648267088745], + [4.569246557289323, 52.459223340888592], + [4.571359778510066, 52.462200783479609], + [4.578614549068515, 52.462841937752074], + [4.578791226112493, 52.462434088699943], + [4.577041122792898, 52.461597385084083], + [4.579340696691448, 52.459907807816201], + [4.579306367393883, 52.458783975932405], + [4.580582462139408, 52.458748568572034], + [4.586445124388915, 52.456543092867065], + [4.587216088734311, 52.45724499457031], + [4.581705518080592, 52.459357146131296], + [4.580272027381048, 52.461186316264872], + [4.581554109281874, 52.462454127177729], + [4.594293475950945, 52.457665177207431], + [4.595816776666015, 52.457979060155651], + [4.596213246029644, 52.458366186185721], + [4.585814156569121, 52.462260935656268], + [4.582195476072826, 52.46327525834748], + [4.590360645827859, 52.463665138727244], + [4.590443841127818, 52.464497642825656], + [4.586936181683341, 52.464772493749514], + [4.596572901982486, 52.465341117453711], + [4.596484839965918, 52.466329148986418], + [4.591512062849396, 52.466406794595578], + [4.591461497207179, 52.467296600797738], + [4.600139423585135, 52.4668000308789], + [4.605058314102112, 52.467100944611133], + [4.605095411034363, 52.468395921504118], + [4.592075035055082, 52.469762301074702], + [4.593598131220821, 52.470149614170467], + [4.601360317799493, 52.469793625987087], + [4.601491888908611, 52.471485024135042], + [4.600103754392264, 52.471790874401073], + [4.597812968806923, 52.47122128000651], + [4.594828389610503, 52.471324608768228], + [4.598388415836467, 52.472361900684447], + [4.608883116790358, 52.472138047762442], + [4.609102591311982, 52.472950991852493], + [4.599753816970617, 52.474270074664979], + [4.596188906179063, 52.473284622109816], + [4.595580441536598, 52.473798616316195], + [4.586387035984498, 52.471673169835114], + [4.585611500258328, 52.4722276828562], + [4.583996063667664, 52.47189311007179], + [4.582432907051636, 52.470587167583339], + [4.579156049600485, 52.469657234782076], + [4.56718447270277, 52.467680487831878], + [4.557297788959717, 52.467100906592336], + [4.548052976923914, 52.468389502537086], + [4.542250007190164, 52.467411806400399], + [4.542975634079437, 52.468330794828915], + [4.548024434215061, 52.469623303484589], + [4.557851980052108, 52.468058209836293], + [4.564838819929252, 52.468925651009009], + [4.57518043297161, 52.479201618791684], + [4.577359165491909, 52.484951024720829], + [4.580512196670352, 52.489508591561268], + [4.586563347713076, 52.499161304879223], + [4.593024421717521, 52.513487726182092], + [4.598302737910066, 52.531140668460893], + [4.601183676638467, 52.539351242982129], + [4.609965216985959, 52.573744339979086], + [4.615281718796841, 52.596229392107752], + [4.616604324013661, 52.605851240099142], + [4.616889361402398, 52.60884557275196], + [4.618393074361783, 52.616590413522033], + [4.619367708062222, 52.623843529268271], + [4.620416332028211, 52.627295171785043], + [4.621673538353723, 52.630521848317706], + [4.622245290543905, 52.635787832534554], + [4.623755953108504, 52.639786916252255], + [4.625389517937851, 52.65569710255054], + [4.626769295280446, 52.664769172044707], + [4.627614626625287, 52.666624056458097], + [4.630238235488512, 52.67566720600685], + [4.632519800604003, 52.681795649569573], + [4.634317843541347, 52.693988813838651], + [4.637580391454388, 52.707536160403478], + [4.637420341618, 52.711996621318669], + [4.63653513546789, 52.712857030726688], + [4.635703327545585, 52.720291676202578], + [4.636606857842518, 52.72866762475018], + [4.642903151440464, 52.750664357013051], + [4.645598657500138, 52.756662659733131], + [4.652500666337314, 52.769190277559424], + [4.660007397549739, 52.778258030586755], + [4.666556997800942, 52.785023026169156], + [4.675928942027521, 52.801086940515198], + [4.691835216252283, 52.840815012437538], + [4.702181253417822, 52.864748939276517], + [4.706030817090297, 52.873613848126176], + [4.708981630332256, 52.883626970040929], + [4.711436012723409, 52.893408365501365], + [4.71198139473502, 52.901561615382228], + [4.712901765005499, 52.915865920095577], + [4.713373543331773, 52.932292885555782], + [4.714535990810597, 52.938300205344255], + [4.717238670255351, 52.947453784406591], + [4.719419063682757, 52.951134370322507], + [4.729652753132156, 52.961527263097985], + [4.730839195206705, 52.962573676455868], + [4.739686810581961, 52.963801918735129], + [4.748296910651418, 52.964376861848322], + [4.755503823124973, 52.963826809246733], + [4.759272999749087, 52.964604414031363], + [4.763210229425764, 52.96538333196451], + [4.779558965898036, 52.965228970303443], + [4.777821630045961, 52.963962811318659], + [4.77824170912196, 52.96288971758883], + [4.781326359572692, 52.964758331420171], + [4.782359757795407, 52.9644469371135], + [4.784241621397948, 52.966096324833948], + [4.784972652092298, 52.965795565483887], + [4.783327026103983, 52.964048617909896], + [4.784690641893851, 52.962917735136585], + [4.783595780678693, 52.962303129157171], + [4.781137568429141, 52.96334181646219], + [4.777745903312616, 52.960916449535588], + [4.77478904488208, 52.960607563467747], + [4.779195908876009, 52.954536804238948], + [4.788038533313945, 52.949179387234565], + [4.790476825868593, 52.949692979557305], + [4.780446304866471, 52.955569489046894], + [4.778231349040399, 52.959395800045428], + [4.779321382179353, 52.958313560353552], + [4.781023372905445, 52.95876943980371], + [4.782736929622115, 52.956337197191793], + [4.785088157041561, 52.956906287226957], + [4.785557061308965, 52.954305707059369], + [4.794388296397268, 52.955495468498924], + [4.793751730253822, 52.956540121812658], + [4.796478141078692, 52.957093681575302], + [4.7953743433155, 52.959059458868794], + [4.798150667847723, 52.959621018735142], + [4.796572552920742, 52.961877057677739], + [4.794301163878763, 52.961449628270444], + [4.794806113261382, 52.960203686456637], + [4.79336491216763, 52.959912014581278], + [4.791640246705163, 52.962200246707333], + [4.789700416288285, 52.962763406037162], + [4.79587646460728, 52.964477368413199], + [4.801325245354295, 52.964522636472161], + [4.803420674001928, 52.959182107246022], + [4.801697517600231, 52.953094021803494], + [4.792839474130736, 52.944123997012682], + [4.791302752644723, 52.936230415779953], + [4.792156366133405, 52.935280500067229], + [4.792123675598747, 52.932952577802581], + [4.794181399210821, 52.932813173847521], + [4.794735041350397, 52.929342845666724], + [4.803270243146843, 52.917389307568804], + [4.809089223955057, 52.915442535543413], + [4.809988670372443, 52.914353147053085], + [4.808051034599569, 52.91357299131338], + [4.806076883956049, 52.914106242680035], + [4.806725112772216, 52.912714354340523], + [4.808700632583533, 52.911246696115896], + [4.841998766609527, 52.899104768140056], + [4.847599042715948, 52.89949009934751], + [4.850395657547518, 52.89856643552362], + [4.851002926301629, 52.89675457377222], + [4.865650408686813, 52.89091410365883], + [4.874936676543416, 52.888290358270048], + [4.882894769192617, 52.888917500106707], + [4.908658986969749, 52.894245223841537], + [4.91928996214885, 52.899434258880156], + [4.933785945913903, 52.90314437166316], + [4.936138824552704, 52.903991812103008], + [4.936352988521183, 52.906475933177326], + [4.942764985516019, 52.910401719972313], + [4.946065147117722, 52.910011488403711], + [4.954129137081089, 52.916237706167351], + [4.956513282899194, 52.919396841691366], + [4.957372491317916, 52.922172294263845], + [4.958563355694269, 52.925257667329113], + [4.967382645219763, 52.930086029191401], + [4.975249441270271, 52.931350539414957], + [4.986543468775937, 52.931800520388073], + [4.99688181091705, 52.934738030921103], + [5.002801652884783, 52.935655483647928], + [5.00516909647432, 52.935714396756104], + [5.012046650470087, 52.933960767025681], + [5.015139721697085, 52.934180122405493], + [5.021003731440456, 52.93488939081444], + [5.026011494756719, 52.93685764364389], + [5.027323151656489, 52.93908839499224], + [5.027165098315563, 52.941561746768315], + [5.029319243870373, 52.941771660078672], + [5.030636840845929, 52.942849037602521], + [5.035049027186729, 52.941200305159981], + [5.037175509783671, 52.939810517004531], + [5.031794519912877, 52.942186376460015], + [5.030090483627951, 52.941937770726923], + [5.029140869704087, 52.940918776216726], + [5.033851859613039, 52.938473335004012], + [5.031384413955986, 52.937125554580589], + [5.033436383690449, 52.936769409161585], + [5.038042220030343, 52.933417661634294], + [5.039479494693811, 52.934077313123701], + [5.035166452243689, 52.937508489573453], + [5.039307040950423, 52.93472674979084], + [5.041314240948885, 52.934425798385512], + [5.041999860908314, 52.934600507427781], + [5.041967209278578, 52.935663639383243], + [5.03951299876415, 52.937934691815698], + [5.042900332548084, 52.935750012593182], + [5.043872112866918, 52.935723756163156], + [5.048899235201145, 52.93806420893101], + [5.049539509554355, 52.938896770306883], + [5.04826872679451, 52.940261947476145], + [5.049112134577748, 52.940783167477676], + [5.054151697839168, 52.941141878459412], + [5.165883135336642, 52.999867195636575], + [5.166762501938457, 52.999259082829681], + [5.054712554211769, 52.94034714373781] + ], + [ + [5.10391773220196, 52.769855719458405], + [5.108728161612608, 52.769644833236185], + [5.107866988152925, 52.770396567206447], + [5.103204646512892, 52.770977338547112], + [5.10391773220196, 52.769855719458405] + ], + [ + [4.958008931979156, 52.368426263492637], + [4.95817682086344, 52.366867912662677], + [4.959687603354595, 52.367142472128499], + [4.959321614780828, 52.366088316688668], + [4.961085630116144, 52.365991189767975], + [4.962296075600055, 52.364724475585831], + [4.961304528252517, 52.363695202212718], + [4.968327850397024, 52.360920381066805], + [4.96974185571124, 52.363528506789201], + [4.969809367775275, 52.365697733024973], + [4.96842912211115, 52.366733995615142], + [4.969887700478318, 52.368214377236981], + [4.96912539293949, 52.368628002556171], + [4.962316393753656, 52.368567751293817], + [4.958008931979156, 52.368426263492637] + ] + ], + [ + [ + [4.878723720050741, 53.156968269859988], + [4.881068165323353, 53.155083886045432], + [4.886506048876197, 53.156057265307389], + [4.893353427638224, 53.151622651713694], + [4.907755132869677, 53.135373714701345], + [4.90833698919371, 53.133027732072769], + [4.90592187220463, 53.131264447734225], + [4.90444062690686, 53.132161409981038], + [4.905362216674176, 53.130287472022111], + [4.904656578477431, 53.128970286721788], + [4.902140448663793, 53.127818654011996], + [4.902964237134185, 53.125810919920632], + [4.900243798559308, 53.125014354566446], + [4.898335763066796, 53.100147715817691], + [4.900395262671631, 53.087856510566823], + [4.899711380118675, 53.083404001366667], + [4.897157231678491, 53.078565871741034], + [4.887657933921106, 53.07258814812522], + [4.880577006194532, 53.070885438660007], + [4.878781194941346, 53.0669023691433], + [4.876749009645762, 53.065637101466244], + [4.873197138273635, 53.06486420782862], + [4.873146575717779, 53.055362043903223], + [4.861599031543768, 53.048108952348578], + [4.860015407818997, 53.044311485056468], + [4.856283963809133, 53.040904837934136], + [4.853840458045957, 53.040540363579062], + [4.855057468168105, 53.041941109323304], + [4.856578898075318, 53.041665525674468], + [4.858514702504908, 53.043306157595019], + [4.860464533472067, 53.046753475770096], + [4.85984044565064, 53.046894393069543], + [4.856764031863979, 53.044766758551539], + [4.857990449790747, 53.044089208375155], + [4.856864514411289, 53.043619907149584], + [4.856159293508222, 53.042625760015433], + [4.85597469401007, 53.04331242541398], + [4.853298657523115, 53.043350106253563], + [4.851342766466314, 53.039789771441285], + [4.849617897110873, 53.04006194875759], + [4.849412714573258, 53.039124024677832], + [4.853084174948392, 53.038910241983395], + [4.847167902347502, 53.034001137987502], + [4.838524932704861, 53.030812497062399], + [4.830598212126544, 53.029724198465658], + [4.819489053805788, 53.029015659937919], + [4.792669994711874, 53.008408735529045], + [4.793023431247039, 53.006029989857147], + [4.796138937314268, 53.005051120459136], + [4.793100599600622, 53.002385355100763], + [4.784989027327096, 53.001753099880979], + [4.782425684280909, 53.00414534309035], + [4.780604430030763, 53.003178291328588], + [4.782252211883208, 53.001370273396496], + [4.772818749832648, 53.005958756141695], + [4.769373304922491, 53.005894210466643], + [4.754979871897294, 53.010171968258618], + [4.748560333830222, 53.011005592081553], + [4.749862618849591, 53.010381466532586], + [4.746512322910311, 53.01017109674379], + [4.753801431574199, 53.004346903159281], + [4.762414089904286, 53.001206129706503], + [4.763871726508949, 53.001544307899934], + [4.763550246317672, 53.002273156024373], + [4.768731348133445, 53.000060881732303], + [4.770068293105227, 53.00011746395738], + [4.772015174203899, 52.998516485892807], + [4.772954183803775, 52.998531475498318], + [4.773660213572748, 52.996327188456156], + [4.754157534238405, 52.996566299218344], + [4.759965221913734, 52.993497324703135], + [4.747661027527271, 52.99090477451638], + [4.746464551956485, 52.989841835703835], + [4.727064175854281, 52.985779717867175], + [4.721938093263271, 52.983591242340644], + [4.720162126858818, 52.984551401486229], + [4.720331643034839, 52.991265948311622], + [4.717539328951743, 52.995321886880603], + [4.712781463688554, 52.999851544316563], + [4.709777634175007, 53.013112095980432], + [4.708628145271959, 53.022383036184976], + [4.71016293099826, 53.033284465304874], + [4.716111767558908, 53.051589736139505], + [4.723532155361958, 53.067628089441541], + [4.735249630316511, 53.08232248314723], + [4.747463745090996, 53.094986678893164], + [4.758140849045293, 53.105890790069637], + [4.761116758755679, 53.108371998640784], + [4.775710968000702, 53.121999187078245], + [4.797504173012789, 53.140905478342304], + [4.810240607217453, 53.155011750019753], + [4.820607950560426, 53.164298269212267], + [4.831137726041147, 53.171813399539879], + [4.837957982525262, 53.178818154043256], + [4.840861262865281, 53.183319203422549], + [4.844887295034277, 53.184825780892353], + [4.851893334842337, 53.185432604507163], + [4.854929748256685, 53.185150183333455], + [4.859698866877922, 53.18349962077194], + [4.861122841976973, 53.183020948259106], + [4.873093215920335, 53.172325493076087], + [4.87479092451273, 53.166842327222319], + [4.879687293889677, 53.164009840172476], + [4.876852767812093, 53.161592007398241], + [4.877589637168589, 53.15782917601728], + [4.878723720050741, 53.156968269859988] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 9, + "statcode": "PV28", + "jrstatcode": "2021PV28", + "statnaam": "Zuid-Holland", + "rubriek": "provincie" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.554929715841261, 51.696854651380306], + [4.54432934831355, 51.695127019357422], + [4.548551375495034, 51.696603311173234], + [4.565560110344851, 51.699734315613824], + [4.572305241532084, 51.700072930297495], + [4.554929715841261, 51.696854651380306] + ] + ], + [ + [ + [4.346149873822723, 51.704486401154135], + [4.337140647734268, 51.703883188764699], + [4.336055347560334, 51.704702863110541], + [4.339987082969919, 51.705639834763467], + [4.346149873822723, 51.704486401154135] + ] + ], + [ + [ + [4.367892029797795, 51.706737750420828], + [4.367097219586977, 51.70470679368777], + [4.362563264476676, 51.70692683051309], + [4.366401421534939, 51.709763358035012], + [4.367892029797795, 51.706737750420828] + ] + ], + [ + [ + [4.311311557169843, 51.747113430811659], + [4.334275273381224, 51.740503716420328], + [4.353262330420489, 51.736644263675295], + [4.357171840711468, 51.73466475765909], + [4.357719303136789, 51.733420323798853], + [4.357144633880038, 51.731812699835771], + [4.350517538692974, 51.73086400635875], + [4.342469851860788, 51.728827437705341], + [4.337106770804803, 51.726622269768598], + [4.323864288957513, 51.726441879465789], + [4.310907789600191, 51.727651683592924], + [4.303542006579562, 51.730038712278379], + [4.301214182999725, 51.730084404752922], + [4.290866485713606, 51.73420695256268], + [4.290453168849063, 51.734489043055561], + [4.291151433017134, 51.734770766033108], + [4.289194118695896, 51.735260361458664], + [4.27894588683772, 51.740605354817518], + [4.277133887288018, 51.740819663030294], + [4.276826933573509, 51.741669788138189], + [4.267742041981439, 51.745331260629563], + [4.262496864585337, 51.746599755847697], + [4.264303975862235, 51.745798865400843], + [4.262329160281064, 51.746661198515177], + [4.258293219486608, 51.748648969002019], + [4.258365666342592, 51.750059733893856], + [4.262092646465978, 51.753613222370632], + [4.263628020344922, 51.753947977177113], + [4.27953681260578, 51.752685298512148], + [4.298482533845355, 51.749269981046965], + [4.311311557169843, 51.747113430811659] + ] + ], + [ + [ + [3.884950961354902, 51.759921045081335], + [3.885071059518584, 51.758372808663502], + [3.881828956952795, 51.757461953130928], + [3.882172461866782, 51.756995063930226], + [3.879523400521933, 51.756786132691317], + [3.877406162820697, 51.758672450012483], + [3.878019491587719, 51.759251102741516], + [3.880348909549177, 51.758865368642333], + [3.881648855501743, 51.759917018514905], + [3.883776517511808, 51.760313173622656], + [3.884950961354902, 51.759921045081335] + ] + ], + [ + [ + [3.956211303266996, 51.77804277177632], + [3.963278076014769, 51.77588107569062], + [3.965654265223562, 51.774388218857332], + [3.954179603079806, 51.776253517980805], + [3.941817888822381, 51.776571917963956], + [3.926327543477464, 51.775086915771951], + [3.913120899929037, 51.770825397059753], + [3.908948074930739, 51.770209395112019], + [3.904584271872596, 51.771120488193922], + [3.921706607475004, 51.781276429627617], + [3.926449862773375, 51.78663274435678], + [3.928718675234652, 51.788064399359669], + [3.934298918534339, 51.789929298549943], + [3.939439412458223, 51.785388826336231], + [3.956211303266996, 51.77804277177632] + ] + ], + [ + [ + [4.148512698802262, 51.79877625986488], + [4.147353342511228, 51.798635081303601], + [4.142726736228237, 51.799115403317131], + [4.140620661528614, 51.800548980442642], + [4.144873590783958, 51.801737005350084], + [4.148900923469672, 51.80131368681343], + [4.147469915427536, 51.799551450243335], + [4.148512698802262, 51.79877625986488] + ] + ], + [ + [ + [3.96804257373283, 51.798138803177032], + [3.967277204593985, 51.797486187416567], + [3.95939796505226, 51.798835633336672], + [3.95701106031184, 51.799839054738328], + [3.957279398094145, 51.80095832077118], + [3.961768319695552, 51.802180287176164], + [3.965569521997273, 51.802012376160739], + [3.963630241482419, 51.801318105206839], + [3.963285352769058, 51.800577557646285], + [3.96526937209143, 51.798628086612482], + [3.96804257373283, 51.798138803177032] + ] + ], + [ + [ + [4.547322326245436, 52.31399659853119], + [4.563707498587185, 52.309298008420143], + [4.569075535119969, 52.316483031936272], + [4.573240624327248, 52.315355520387328], + [4.583435432544993, 52.318382361621879], + [4.585792588032104, 52.318197372893401], + [4.586090393761318, 52.317315200341739], + [4.587469084963558, 52.316763172670015], + [4.587686489080679, 52.317880921475847], + [4.591033729704528, 52.317789120877144], + [4.596301725194547, 52.317762989610557], + [4.599456067389887, 52.317100994259199], + [4.611676105741519, 52.313559913071998], + [4.611533167578034, 52.31224009036405], + [4.610271317295981, 52.310884932602924], + [4.604737902594912, 52.306278915903327], + [4.60233781151912, 52.303249401661851], + [4.59824399304735, 52.297735800080282], + [4.596476608678175, 52.294445727470347], + [4.595601662989631, 52.290804850450201], + [4.59373784824614, 52.288700858349308], + [4.591337060870617, 52.285957994414453], + [4.589539032286551, 52.282485526067724], + [4.58887242786941, 52.281107940711017], + [4.584882760572701, 52.278337366960635], + [4.584144013134635, 52.277915325438265], + [4.577122386933023, 52.27380256958439], + [4.572749101075439, 52.271240018878743], + [4.568335860386409, 52.268553385829627], + [4.568038407790607, 52.266517394869162], + [4.568251216787607, 52.265557932192621], + [4.568448698672069, 52.264705490809909], + [4.569537639333149, 52.259860231488545], + [4.568763723694648, 52.255670946170213], + [4.567832145945991, 52.250747328485346], + [4.566209234199426, 52.245013543783102], + [4.565347793186775, 52.242347844910611], + [4.565055021680457, 52.24143068039416], + [4.564183804442624, 52.238628757434725], + [4.562272714322671, 52.23384344234745], + [4.560783750121058, 52.233059967693102], + [4.555619540819569, 52.232019069443361], + [4.553625049478045, 52.230932974392829], + [4.550470428510734, 52.226744715716627], + [4.55393404985865, 52.22220541828154], + [4.556615428529615, 52.219273045989304], + [4.558433212891105, 52.218798537328453], + [4.572202258498106, 52.216999102821838], + [4.573762822407199, 52.217258354467795], + [4.58355326198575, 52.21887420568612], + [4.598180832795426, 52.215545173539269], + [4.60276165218789, 52.214558268932059], + [4.618437214882826, 52.214475769073488], + [4.622483865062758, 52.214922743998976], + [4.625844715762934, 52.215301247263625], + [4.632634519958351, 52.21618427414861], + [4.638574623483159, 52.218486622588614], + [4.647177846704704, 52.221205878383046], + [4.658473801898813, 52.226098282814085], + [4.665847270319638, 52.22799641295628], + [4.668345836915038, 52.229580411023335], + [4.6703481545459, 52.230755785531663], + [4.676699090873211, 52.225925520323557], + [4.679975193191053, 52.226763109022158], + [4.683632368495539, 52.226354033695536], + [4.686210631378756, 52.226633459837821], + [4.696244173192801, 52.232109273071067], + [4.700243728354258, 52.233079440644914], + [4.704428116926917, 52.233842061797141], + [4.72415459907673, 52.232371333713701], + [4.722896666244462, 52.22036390566609], + [4.723649645072515, 52.218234968327003], + [4.723302028225241, 52.21635386526831], + [4.723764467822264, 52.21657365226487], + [4.724558852444313, 52.213222835429001], + [4.724739019677875, 52.212583381305521], + [4.729562598899792, 52.210271146999389], + [4.728766065680575, 52.209818813407963], + [4.732833708010208, 52.206972062917941], + [4.734389209560932, 52.206555664011013], + [4.743629950620169, 52.214792826462904], + [4.747971633425271, 52.214867899197174], + [4.750668904262687, 52.215720551895672], + [4.753298573812546, 52.217467802631255], + [4.7598479231861, 52.217586497428634], + [4.762074555382037, 52.218130271432855], + [4.771228649087026, 52.222752775286416], + [4.774650347452643, 52.224582747380126], + [4.776400226273156, 52.227372663210346], + [4.780985697349092, 52.228741236104092], + [4.784936466302949, 52.228626175257922], + [4.786875148705923, 52.227882748155835], + [4.789410078432875, 52.227875102086195], + [4.794575765984295, 52.226730665582004], + [4.794429942317065, 52.223423400660479], + [4.795983599218271, 52.223176233053763], + [4.797002929581448, 52.220348060969243], + [4.802149732501293, 52.217633602945334], + [4.801444529823992, 52.208019617240666], + [4.802611180780731, 52.201746676908627], + [4.803621134220891, 52.201071393623479], + [4.813594378742086, 52.201847118875108], + [4.813139527745962, 52.201111168811579], + [4.814630246909834, 52.199168323088792], + [4.822253547785355, 52.196093515936383], + [4.823430115773635, 52.193283910195227], + [4.83525842933285, 52.186195796962238], + [4.837468807589551, 52.183760418053865], + [4.838383312263568, 52.183258300215741], + [4.842995342703992, 52.180814890300091], + [4.844061580013381, 52.180065687324991], + [4.855465151197942, 52.178957716120877], + [4.867116808411768, 52.173457654614189], + [4.892178325553068, 52.161797920565171], + [4.8875745036175, 52.15995816545017], + [4.873623533670298, 52.156082509490702], + [4.874518550279857, 52.138831415279881], + [4.872606687191045, 52.138862741763234], + [4.870543736574762, 52.138340157374714], + [4.864915119000597, 52.137391122870582], + [4.855238736207004, 52.13720961844389], + [4.852530929046452, 52.138329340370667], + [4.851535363155351, 52.139615643973606], + [4.847412641141668, 52.138944942336018], + [4.846019725126832, 52.139539110869094], + [4.842583895048945, 52.139533122354436], + [4.840793409798992, 52.141476767072049], + [4.837520647159666, 52.14064375084223], + [4.836704711286931, 52.14287992237464], + [4.834119523862975, 52.142964084320433], + [4.833053182004029, 52.144706057505637], + [4.83189200733631, 52.144231871119366], + [4.826471920631752, 52.142176331126606], + [4.820533692987106, 52.142228768097667], + [4.816665793431256, 52.139386931160956], + [4.81311116358973, 52.140173243520131], + [4.809320111503218, 52.137801455066644], + [4.808843130944375, 52.135673778377736], + [4.807599109143593, 52.135211073695366], + [4.808846941546584, 52.131813796291233], + [4.80779028309821, 52.129857720258428], + [4.808065193891086, 52.128947985036454], + [4.8063657098408, 52.127396269236257], + [4.803497772695167, 52.126415647810298], + [4.801980725747629, 52.124857543598772], + [4.798357724566951, 52.125300603157001], + [4.793490910429028, 52.123972736483161], + [4.79208024863196, 52.122287379066151], + [4.825314810440191, 52.107151089049587], + [4.824389563365422, 52.105403075191624], + [4.823057243815632, 52.105142068550705], + [4.823394773215648, 52.09280121612121], + [4.825629635493395, 52.079792331776503], + [4.826492680756543, 52.079527175413759], + [4.826275757242141, 52.074643575021526], + [4.830623475058717, 52.074970616541421], + [4.830897914059026, 52.074353063785075], + [4.833045329185131, 52.07482692929679], + [4.832665931040339, 52.072843716229208], + [4.834035458184063, 52.072735849744163], + [4.829824668034837, 52.066852257073151], + [4.840376509583757, 52.068880067711611], + [4.855231579387519, 52.068813545694809], + [4.873200481755081, 52.068745392672582], + [4.868225108698196, 52.063446332196051], + [4.856305146290132, 52.059151786700511], + [4.848048569851859, 52.058164684137886], + [4.83909352931027, 52.054167399623154], + [4.829567877806025, 52.049846260911181], + [4.817192999962862, 52.036931095865931], + [4.811822297801317, 52.033824510193242], + [4.806870557963898, 52.033193208462137], + [4.808796420255963, 52.02941402364111], + [4.809659921142163, 52.027505924666819], + [4.809933489389651, 52.026764516221263], + [4.798700277785303, 52.02227172706754], + [4.803410243635695, 52.014144547997638], + [4.805394892369923, 52.014132927444471], + [4.808285216261424, 52.014143240607545], + [4.812631417301358, 52.013941831138958], + [4.815858994310813, 52.014029991072995], + [4.821484756885672, 52.01591829049989], + [4.824994326804837, 52.017236607954601], + [4.833334846289931, 52.016422933524353], + [4.840178124124504, 52.016706941794901], + [4.846895847756869, 52.018181707279687], + [4.848602800903459, 52.016116914743691], + [4.856385758864162, 52.006838057263437], + [4.857126626640623, 52.005959507028713], + [4.853602106112066, 52.004798409902534], + [4.81780597554551, 51.999766887949292], + [4.826968719085352, 51.992594684873524], + [4.835217918422517, 51.986143019352369], + [4.834114433901896, 51.98558024601477], + [4.844297045050443, 51.976351807935963], + [4.845546440806383, 51.97520050253349], + [4.847553234956446, 51.975136899278446], + [4.849765950537314, 51.97385407411339], + [4.860382289772506, 51.968013505003761], + [4.864304568297046, 51.963397358924404], + [4.865674051272326, 51.960433346431465], + [4.868956717610599, 51.956706738315198], + [4.871598021969133, 51.953710695411402], + [4.872755733309952, 51.95094068550118], + [4.875812102453414, 51.94353356356936], + [4.877792991018096, 51.938030674196085], + [4.914011411932603, 51.94243593667602], + [4.919187672397542, 51.944728949551504], + [4.926301362332162, 51.950927943088793], + [4.929475545186937, 51.950191448014095], + [4.930130954892938, 51.948645423069109], + [4.931021583201852, 51.948885381857281], + [4.932126452645204, 51.947551801719349], + [4.939235128885787, 51.928938070150451], + [4.942293221581516, 51.930166677382587], + [4.945944298417404, 51.933289505748874], + [4.947639692232716, 51.933710434846006], + [4.948545471142396, 51.931230713084368], + [4.94960789525194, 51.931534319785072], + [4.956157524286122, 51.915591062522132], + [4.958557794499982, 51.915285219065694], + [4.959693487848561, 51.91404599405621], + [4.960380305503837, 51.914826828128838], + [4.964121616907574, 51.913753712069408], + [4.964785295385019, 51.91351895962574], + [4.963293266431856, 51.912785198806986], + [4.964160229463962, 51.912267455136693], + [4.964128254442127, 51.910638000980903], + [4.967607154674357, 51.910139122000892], + [4.973740696720521, 51.907667411077178], + [4.973410771258112, 51.897250048123034], + [4.97435504687961, 51.897093106115811], + [4.978333785063916, 51.89816908860324], + [4.994968155799671, 51.902292103050321], + [4.996301941462412, 51.896689231355971], + [4.995961756152987, 51.891962975701617], + [4.999452345548449, 51.884283504956187], + [4.998928755180629, 51.882425711042572], + [4.995680797478776, 51.879065483371448], + [4.994952524871212, 51.876956292529933], + [4.996238197141456, 51.873119190019068], + [5.001266878580054, 51.874992224866325], + [5.023514673060847, 51.880995769555184], + [5.026955980759235, 51.88191820368521], + [5.027254503836668, 51.881527809722407], + [5.025467046742523, 51.880630557320785], + [5.023227570507081, 51.875740831532283], + [5.023167252012377, 51.872026716868369], + [5.021748959226807, 51.86881960762647], + [5.027387954766978, 51.863739023499534], + [5.026908033036403, 51.858607713457424], + [5.015628179874134, 51.859178050512121], + [5.009520538046213, 51.858045986616354], + [5.005247991095467, 51.857933316625278], + [5.001250126156752, 51.859058567705446], + [4.995965048719621, 51.861848550328368], + [4.993967910298264, 51.86122272404004], + [4.998305202811187, 51.854861512484625], + [4.998684655005992, 51.852277205293731], + [5.000001921778989, 51.847575847818014], + [4.998895140505743, 51.845246303942936], + [4.999520458618981, 51.845137398794641], + [4.999296391872098, 51.844599879085813], + [4.99993416216099, 51.84439143729589], + [5.002895177233013, 51.843661826061258], + [5.00344793593045, 51.844768928578922], + [5.009323081392411, 51.842716139618368], + [5.021270423842562, 51.841925716281551], + [5.031415074191839, 51.841084800726357], + [5.028287645172576, 51.826160340947482], + [5.027701232889732, 51.823549834117479], + [5.026351839479497, 51.818856738050911], + [5.012996147859744, 51.820725751402051], + [5.000363980164164, 51.820933380857191], + [4.99928270391278, 51.820867774517581], + [4.987756996173707, 51.821059361610757], + [4.976099808584748, 51.822633041208711], + [4.969633205620593, 51.823654365036461], + [4.960515880732184, 51.82504209914557], + [4.942437646772281, 51.827243174443545], + [4.936064188275933, 51.828314497535423], + [4.926986651733357, 51.828305959307272], + [4.91859908335321, 51.827482188008922], + [4.909126435278887, 51.825377440045415], + [4.889401019847329, 51.818895013133591], + [4.885226947088542, 51.816769690378806], + [4.884642583979464, 51.816471395640605], + [4.859667338778124, 51.80268434367877], + [4.854413534329106, 51.800683125951089], + [4.845984407529088, 51.798756953392591], + [4.836108512446036, 51.797839094204001], + [4.828872292119624, 51.798020609952339], + [4.806875752586437, 51.800336283937895], + [4.79719420937894, 51.799769962068041], + [4.773539088856928, 51.793324333108863], + [4.765983208945538, 51.789631665114442], + [4.765224550190147, 51.789208359269985], + [4.755239742186366, 51.781611402724209], + [4.750568952030301, 51.775761502698934], + [4.744788276793007, 51.763487428681508], + [4.740770070895793, 51.758818204104962], + [4.736630865025864, 51.755568376451137], + [4.724591650112153, 51.747905513037161], + [4.703745748683892, 51.736927468610958], + [4.693262965219605, 51.732281622834108], + [4.681597659934821, 51.728418724659598], + [4.676304294289313, 51.724923647168936], + [4.67522266251005, 51.724209386981968], + [4.645136655552001, 51.7190673215161], + [4.643852366730713, 51.718826983091098], + [4.640860399417917, 51.723371240111327], + [4.634404274978656, 51.721615530778081], + [4.63685429460552, 51.717435294485121], + [4.636430573873429, 51.717350501003118], + [4.633903342610128, 51.72144718031867], + [4.628111612670165, 51.720487881305267], + [4.627667076474075, 51.723612555767261], + [4.628761769619318, 51.72552526751187], + [4.62786762287877, 51.725515018040767], + [4.626560511739501, 51.722779628515788], + [4.626414507261615, 51.72080530930802], + [4.627775722161295, 51.719982173753799], + [4.626664984668349, 51.719952705709773], + [4.62359711138238, 51.721395861613424], + [4.618579302486874, 51.723227093307038], + [4.605927334122055, 51.717066353521318], + [4.595446132083907, 51.714788013151697], + [4.58822314268419, 51.711913702899544], + [4.584837104626228, 51.711541843997026], + [4.5807080984554, 51.712004163402256], + [4.571672143769677, 51.710226022054407], + [4.571455120727369, 51.709253295721048], + [4.567427006580808, 51.707214519657398], + [4.557969930204176, 51.704453957242691], + [4.551456970115227, 51.704385666854769], + [4.534974917120646, 51.701909425602032], + [4.530379063168413, 51.701161320774681], + [4.516203467150914, 51.703308515482107], + [4.511885520630075, 51.704489202545993], + [4.508719501987898, 51.706557474635488], + [4.503178654899686, 51.706583533695074], + [4.493051994374596, 51.708824704525263], + [4.489548837525883, 51.710821980448394], + [4.475127442538977, 51.712997905584658], + [4.467248040083761, 51.715073336601222], + [4.462154426241634, 51.714876601308177], + [4.458038058313289, 51.715704777911384], + [4.451963611171749, 51.715529652643156], + [4.451607656273993, 51.717882902327197], + [4.448033971852468, 51.717706210760504], + [4.448255848522294, 51.716869424457471], + [4.448977875929724, 51.717161076893468], + [4.451310779562942, 51.716601736283287], + [4.451567339952258, 51.714979765384122], + [4.446190128648839, 51.715476403487202], + [4.445047572592216, 51.716695753208135], + [4.446703126943532, 51.717114045524646], + [4.446586015265134, 51.717626516858154], + [4.44398692823174, 51.717505981073664], + [4.445266663844789, 51.715455681203068], + [4.443127762946196, 51.715494057919955], + [4.442432127596222, 51.716644954862588], + [4.438984552467296, 51.715568285050701], + [4.436214718450952, 51.716160862760347], + [4.435374386498077, 51.716889873419703], + [4.421541025052812, 51.719298792714937], + [4.418133348866676, 51.718778817878537], + [4.419525131010394, 51.72083465810654], + [4.418421951378614, 51.720967065491998], + [4.416913255976372, 51.719026611182606], + [4.412271866354636, 51.720946658633473], + [4.409492586013998, 51.721115713568558], + [4.40746052571518, 51.722215915697333], + [4.406153103796956, 51.722064344315449], + [4.40402801618854, 51.720246272498521], + [4.398230841885109, 51.711334342794707], + [4.398169863644376, 51.710498857786241], + [4.400933961924757, 51.709391907692314], + [4.398880818825194, 51.708918438740056], + [4.39776285278148, 51.707975333552504], + [4.397546106438632, 51.706419461832532], + [4.398759262920288, 51.704527367102685], + [4.402160201034024, 51.704276766579355], + [4.398878682623369, 51.702211589680445], + [4.401936986300194, 51.69912161119052], + [4.403637676190279, 51.698712996862625], + [4.394487887746589, 51.693764988857126], + [4.39503696829986, 51.695754678136623], + [4.391380972456728, 51.697120422313972], + [4.389835108878961, 51.696829917153735], + [4.38841675229708, 51.695538526120004], + [4.383669671307485, 51.695944181544583], + [4.37834959704186, 51.693647669776098], + [4.372205210360447, 51.693659706177534], + [4.371461237256967, 51.695254921790372], + [4.363358304555228, 51.694955213374413], + [4.367390067584505, 51.68775427196362], + [4.36796580690028, 51.685267804962884], + [4.367244949801385, 51.683121613972503], + [4.366041580985405, 51.682566336225293], + [4.363702934782129, 51.68249594280875], + [4.363733142734021, 51.682332732582722], + [4.365740064568745, 51.681819105127929], + [4.36451829635526, 51.677772605262888], + [4.357139905283781, 51.671218092746884], + [4.338617781867931, 51.664978147836159], + [4.329256083945922, 51.662908033541889], + [4.309008448804081, 51.659772383260623], + [4.300589218078555, 51.659228298419464], + [4.299298603458048, 51.659561094207064], + [4.280631054296867, 51.654528127841076], + [4.271839001741118, 51.654617223457187], + [4.257492682275696, 51.656364229915766], + [4.250619559969391, 51.657879107571745], + [4.245860710981437, 51.658138639589176], + [4.232463961974704, 51.661404824749241], + [4.22278026961258, 51.668137428940952], + [4.219584696552859, 51.672617886878214], + [4.220150507300094, 51.673784067549221], + [4.210672749933753, 51.67631392150151], + [4.207599993759429, 51.676231991657311], + [4.206972097166835, 51.674894901809679], + [4.205485225797876, 51.67617555755885], + [4.20537393147524, 51.677642701085716], + [4.194453240628898, 51.67929179246287], + [4.189117164957453, 51.682983291706527], + [4.183848970977837, 51.682551929698683], + [4.168378697639418, 51.68343933628401], + [4.164960659314512, 51.686506083116775], + [4.164166553693053, 51.687233459177982], + [4.157346533881037, 51.682492008425598], + [4.155479818183841, 51.683418719562923], + [4.162513230279255, 51.687781299300966], + [4.160861142524723, 51.69084931717061], + [4.155228597176961, 51.696588133484461], + [4.152295218160784, 51.697824177003881], + [4.134954432704251, 51.701988135189282], + [4.131756772583496, 51.703834765314447], + [4.12888902613481, 51.703343740344259], + [4.122708168677584, 51.706382145729982], + [4.116048022540229, 51.707235156631519], + [4.111019685385997, 51.707846769258822], + [4.099511353820111, 51.707416237365003], + [4.096246997256075, 51.707165201495009], + [4.095185648496361, 51.706485187577663], + [4.091347881539586, 51.706448414779089], + [4.086592161565902, 51.707535989354831], + [4.085886741257226, 51.70872613680033], + [4.085865975722398, 51.70811970112328], + [4.082565560008591, 51.707679416982515], + [4.082770375918821, 51.70651391001136], + [4.080766713384025, 51.707977735509743], + [4.076483822197874, 51.708638325503614], + [4.069915627431336, 51.707847608290955], + [4.058901057515823, 51.711641799430481], + [4.050714121675098, 51.711695091459525], + [4.049816655130503, 51.714705139041598], + [4.050586839445989, 51.717550913170193], + [4.043145740508563, 51.725019453914626], + [4.040686296249798, 51.72724024218109], + [4.040240867171767, 51.7310066583074], + [4.037957512863459, 51.735288205856918], + [4.033222453014273, 51.738434242333184], + [4.032777768676546, 51.739643220292912], + [4.034776405844455, 51.743807422821803], + [4.031456165053295, 51.745533506816614], + [4.02982361589078, 51.74268777588911], + [4.025914707151171, 51.741619493122293], + [4.024020416620662, 51.74187192497444], + [4.022381689972904, 51.743298842880662], + [4.01891180979277, 51.751707605059742], + [4.018573462303467, 51.755202225686752], + [4.019610531968416, 51.755650820489357], + [4.023331351385706, 51.755315314705349], + [4.02631000712032, 51.756637465829883], + [4.029931872306599, 51.75695319613839], + [4.029732727397796, 51.761008521338269], + [4.026601088582622, 51.766889647020875], + [4.027225338703531, 51.769034371544578], + [4.024705345142289, 51.77162143327218], + [4.022463619554505, 51.775851510656274], + [4.022115754130095, 51.77944338798266], + [4.008794146490525, 51.789639168859658], + [4.004981843018319, 51.793761522897171], + [4.005367764774197, 51.795266335862308], + [4.004112090443273, 51.796629351477634], + [3.995392395657427, 51.800194820736309], + [3.99217025350168, 51.801835859561713], + [3.989107676942305, 51.802472240542791], + [3.983182007294118, 51.801156096729947], + [3.970614102597179, 51.800809691616884], + [3.968247953011121, 51.803116031183983], + [3.956983784263364, 51.804081933101983], + [3.949428759037534, 51.803379663972116], + [3.945000844299352, 51.800799565467784], + [3.935791163708628, 51.797612838683264], + [3.936917853118969, 51.798593642274845], + [3.934678348379074, 51.798203706279843], + [3.935585485088697, 51.797477054588768], + [3.93511760758175, 51.797301129268185], + [3.933749656255547, 51.798235354520919], + [3.925755661270093, 51.797587403377356], + [3.92505982693195, 51.796894498087887], + [3.921161643095757, 51.796907015391788], + [3.912101609164379, 51.795143138956171], + [3.912613183400941, 51.793809018997813], + [3.907643169791647, 51.792181050917115], + [3.903160696629828, 51.792306279874062], + [3.896980613037107, 51.793589995253846], + [3.89067253709802, 51.792079041542991], + [3.889705237836007, 51.789486125163585], + [3.892116358402582, 51.786896564561303], + [3.895728639282419, 51.784910919162492], + [3.892472281008162, 51.782392158511115], + [3.889023392046382, 51.781223783496479], + [3.885517363668471, 51.77998503259726], + [3.880065902359493, 51.77928897917981], + [3.877365388962904, 51.779672646436048], + [3.871727510930021, 51.781936720824348], + [3.869498542167946, 51.781177625136429], + [3.867117559360375, 51.776287666135424], + [3.868514004928614, 51.775727148021339], + [3.865538379758378, 51.774978230468236], + [3.859472836731809, 51.765318903153087], + [3.86124692080068, 51.762937247486335], + [3.8605660151476, 51.762187542395537], + [3.858701242558084, 51.762593543910697], + [3.855426142702983, 51.757864336043767], + [3.859062141098243, 51.756700453760253], + [3.858716716233608, 51.757847893764605], + [3.859688211265972, 51.758021109669443], + [3.86009158259803, 51.756904389457652], + [3.860614845806183, 51.757020610134667], + [3.863205106392806, 51.760913292819254], + [3.864914733718138, 51.758731707257553], + [3.869229405934457, 51.757447466756055], + [3.874287589606269, 51.754893717466182], + [3.874414628625491, 51.753754937093582], + [3.871050044378904, 51.750827228117686], + [3.864763745879769, 51.750936065556253], + [3.862063138130242, 51.752639478323211], + [3.861680828361929, 51.752113965732271], + [3.857421396675639, 51.753164265933009], + [3.856212910079013, 51.752411134112286], + [3.853389510773143, 51.752803927150694], + [3.853112014995691, 51.754473920096117], + [3.852067748785715, 51.752914499300005], + [3.851376869708798, 51.753879833129929], + [3.852141519714449, 51.755116433878591], + [3.850520506599797, 51.75583256083997], + [3.849947229865047, 51.75535330856566], + [3.848896275164204, 51.755761288569417], + [3.848698921385473, 51.756605342933348], + [3.846112333683323, 51.757161937999726], + [3.842477315227267, 51.756305011939972], + [3.839193895328422, 51.758230603836687], + [3.849401527478501, 51.761979450953632], + [3.856660758789199, 51.767055672971274], + [3.864435383241891, 51.77812544432588], + [3.865490499993492, 51.782193595240692], + [3.865100565674076, 51.785046722326086], + [3.863122589387481, 51.789852683108251], + [3.855392504845349, 51.802509720159279], + [3.854669840144935, 51.8052593929309], + [3.855382319871016, 51.808391418138548], + [3.857439538590016, 51.811539765429785], + [3.859575653546179, 51.813898568887105], + [3.865262421360348, 51.817731658862606], + [3.869330673382358, 51.819603027423881], + [3.877779850893406, 51.821205561382776], + [3.892389773878852, 51.825773827124429], + [3.903611772663512, 51.825941806562767], + [3.909282302794609, 51.826788159564202], + [3.925943223284572, 51.831477912661533], + [3.936745674307321, 51.83542584232142], + [3.939600397545787, 51.834583416202427], + [3.950857135965014, 51.838254590142185], + [3.960468657015991, 51.84106406015524], + [3.968768947421682, 51.842567958398988], + [3.98441373975361, 51.844259164856098], + [4.000221523412164, 51.84929789802414], + [4.008888670936861, 51.849927991649942], + [4.012303082789961, 51.849292553793944], + [4.012449928998407, 51.84768999861663], + [4.008507213176324, 51.845466549339882], + [4.008280006060971, 51.842733211730277], + [4.014922321256091, 51.840479888485653], + [4.013733014984076, 51.836530579097335], + [4.019868361107188, 51.832255277689725], + [4.02665873695283, 51.829259927767232], + [4.028433038648583, 51.828992642895422], + [4.03181159913728, 51.831014086110798], + [4.03234357810027, 51.8305380614092], + [4.028518200386492, 51.827335706588464], + [4.036014202851043, 51.823635954725155], + [4.038195129070703, 51.825231679127313], + [4.033075481628621, 51.827917125535379], + [4.033262530258127, 51.829625706931623], + [4.039501457073722, 51.82807701284883], + [4.041657526980796, 51.828334181669518], + [4.043733796558501, 51.82967207056722], + [4.044723594495368, 51.829178960421494], + [4.048596508148885, 51.832055246105881], + [4.054146115685799, 51.836199792667088], + [4.053347762845457, 51.836925423236366], + [4.056319113128525, 51.839151616251868], + [4.060907443267558, 51.841706377137911], + [4.06667528627619, 51.843726828160527], + [4.067524237700387, 51.845431151081172], + [4.06772493022624, 51.849477384620592], + [4.064696032818524, 51.853801475139512], + [4.048681129881202, 51.869529870757752], + [4.033716888874642, 51.882273317910574], + [4.030195492476937, 51.884344741670901], + [4.028806853865809, 51.88641934181593], + [4.028935836230527, 51.889403410070528], + [4.03017743630018, 51.891822363244586], + [4.042612984905239, 51.903035496630309], + [4.048095633536982, 51.906465124795972], + [4.050473538446463, 51.907295191828084], + [4.051157633295936, 51.912765958226252], + [4.05408953333938, 51.914933191626929], + [4.052465122376267, 51.918035503303749], + [4.047811404794663, 51.921297092118181], + [4.039192464772591, 51.924075533455621], + [4.019084597409365, 51.919619042727881], + [4.015818698625457, 51.918389535122962], + [4.006794340231192, 51.916913740901386], + [4.000390172544749, 51.914802068806843], + [3.996676324481807, 51.914813592551113], + [3.994440633503609, 51.916061143187278], + [3.985494157558068, 51.917686777377448], + [3.968255021644788, 51.946663491175691], + [3.963448917691411, 51.95219896661871], + [3.96171375557148, 51.956085950097631], + [3.961187391690296, 51.960536787031074], + [3.963416796731558, 51.96584116047206], + [3.977433760805596, 51.980818185356412], + [3.980843433438661, 51.983713122340724], + [3.98397886777055, 51.985143373492896], + [3.997995565895525, 51.988285614026516], + [4.004095440549097, 51.989037730832543], + [4.008464240752645, 51.988856910770281], + [4.023865543249345, 51.985768323973197], + [4.028523811251599, 51.987092042693405], + [4.032728691058163, 51.987496964984018], + [4.041695522414543, 51.985968051701555], + [4.045602040461766, 51.991917873595476], + [4.047698850572642, 51.994526816758899], + [4.095019040698354, 51.984600141505389], + [4.115883869982047, 51.995877823064504], + [4.12503185957437, 52.001757176263851], + [4.138173080627252, 52.010672110195038], + [4.152264079505705, 52.022434678127972], + [4.173918292658168, 52.039625174467531], + [4.187478882727315, 52.052063369456455], + [4.193348771741751, 52.053642559778211], + [4.196199948989451, 52.055742643775588], + [4.204823700807798, 52.060658027368355], + [4.211944813807643, 52.065841831800732], + [4.230730834288374, 52.078726780619888], + [4.243606556012343, 52.088256718991012], + [4.25523288705797, 52.098065720363294], + [4.256255300104073, 52.099549045087755], + [4.253827787409571, 52.101214635618284], + [4.252462162122834, 52.103947764439454], + [4.254216269059294, 52.101423157205396], + [4.2582714137914, 52.098590593962022], + [4.259899542325828, 52.099004541857674], + [4.260544520232616, 52.098666299084492], + [4.26071154305722, 52.098280619070231], + [4.259024527259852, 52.097840204831755], + [4.259394301687538, 52.097014188252331], + [4.261036795832989, 52.097293709055677], + [4.263751971497479, 52.09689401640513], + [4.264653304691029, 52.097494390633081], + [4.263581405256506, 52.098265729664256], + [4.264170855898151, 52.098630571858799], + [4.266911752895486, 52.09734890071649], + [4.263177722335276, 52.09483665921497], + [4.264192360772274, 52.094252444008404], + [4.271725339542883, 52.099564732904078], + [4.270776129373611, 52.100053187588934], + [4.267196328337064, 52.097485978312513], + [4.265411827117039, 52.098743148386653], + [4.268732805056551, 52.101106336115329], + [4.26721407782509, 52.101903463336342], + [4.263167477998451, 52.09906429141548], + [4.261236050188847, 52.099212032042864], + [4.260659946879435, 52.099570700513141], + [4.261034877718329, 52.100592006598241], + [4.258808226006638, 52.101456151530982], + [4.257749963177005, 52.103446160319251], + [4.255915831121685, 52.103863520355894], + [4.25617604158315, 52.104186415691672], + [4.258184385022829, 52.103651514089421], + [4.258868926378269, 52.102426716405958], + [4.261592491347243, 52.102875633288846], + [4.264895835722006, 52.105617155231734], + [4.269126896681469, 52.107912986582683], + [4.280093356313458, 52.115423370518862], + [4.281517081213155, 52.116304216343295], + [4.281705167757522, 52.116400988168216], + [4.286934177480462, 52.119065594573989], + [4.302904675805457, 52.128324099057323], + [4.331611476663991, 52.149980405784923], + [4.349897039273807, 52.165796654054915], + [4.357573161930658, 52.171726868464269], + [4.374433549050099, 52.18687382541993], + [4.383983829938722, 52.19635021727251], + [4.395966979087879, 52.211558067622107], + [4.397648558917801, 52.212375608647854], + [4.405464146114658, 52.21971990251572], + [4.415945227852611, 52.230981043241691], + [4.426203941007357, 52.243813484526768], + [4.431383628411568, 52.250138747184174], + [4.444446737069121, 52.264061216802098], + [4.465416826744527, 52.290129277940189], + [4.493971193991, 52.328198083230433], + [4.494926595302219, 52.327948528724228], + [4.543370888223373, 52.314988612488555], + [4.547322326245436, 52.31399659853119] + ], + [ + [4.057650695710984, 51.837450481832676], + [4.055428874065821, 51.83590851751628], + [4.054676527277774, 51.836274167400241], + [4.048791305619047, 51.831880093222452], + [4.044977700508573, 51.829054019405078], + [4.045653026243219, 51.828660561474969], + [4.044607705861072, 51.825359889400922], + [4.044914343653008, 51.823220552675572], + [4.046716635029523, 51.821670605444169], + [4.041227418137221, 51.823199196934404], + [4.038690061335735, 51.821213255033562], + [4.043832252820809, 51.818584932829701], + [4.042598364076834, 51.817695668044912], + [4.043688673055508, 51.817076801491041], + [4.049025516300823, 51.821016597545835], + [4.049765192848399, 51.820163362291133], + [4.053257144348243, 51.819705800072249], + [4.054491091333787, 51.820981535323277], + [4.054780439425213, 51.818490373709672], + [4.063284190243589, 51.813471963707357], + [4.083738826111508, 51.807084438571671], + [4.093435964892941, 51.804475620357316], + [4.111834206404535, 51.796997808653138], + [4.125313623295805, 51.792843330786759], + [4.144320317497358, 51.787624700199089], + [4.164667842927729, 51.779424048422463], + [4.181200758669556, 51.775578243282737], + [4.188853952676329, 51.775115889791984], + [4.191718828395634, 51.773840820299363], + [4.190112129760831, 51.772986020977811], + [4.190816654309593, 51.772613489691032], + [4.193504175512862, 51.774134906215401], + [4.193146893329938, 51.773039594105725], + [4.193980003926166, 51.771619383929362], + [4.216526161054826, 51.757337536242972], + [4.217323848815829, 51.757468159887821], + [4.216972871779968, 51.757054432325575], + [4.219066001132826, 51.756624587213864], + [4.228144734363845, 51.751469461554464], + [4.242602988209692, 51.745218023670795], + [4.244656245153795, 51.743982204995646], + [4.243168976031578, 51.742786564847748], + [4.245178614560591, 51.741746397962288], + [4.246305050836314, 51.741930416757754], + [4.243412101146132, 51.740156747412613], + [4.244373206071599, 51.740101156033738], + [4.245452342956871, 51.740898910972327], + [4.24657498721955, 51.74171543502689], + [4.246752678676114, 51.741016288935732], + [4.260276576130654, 51.730168733354247], + [4.262834197863921, 51.727539752822771], + [4.273367403238037, 51.722202231509655], + [4.279715914499626, 51.720809742368679], + [4.280123239533307, 51.721249787376046], + [4.281736045248182, 51.720962914379044], + [4.279708239923986, 51.718942679647263], + [4.280529648386834, 51.718236922492302], + [4.281334700933485, 51.719836764615351], + [4.282611749935827, 51.720435819690131], + [4.288396435657928, 51.718288013767094], + [4.29500811506528, 51.717661442389279], + [4.298578200240325, 51.716784528390853], + [4.318763486971669, 51.705872061756672], + [4.329449807922308, 51.702624365361316], + [4.341216729784502, 51.70294237919201], + [4.351590312629322, 51.70210271726247], + [4.365584799850389, 51.703102540435452], + [4.383713333975774, 51.70208925444684], + [4.386751294794251, 51.702569271615943], + [4.389712235311762, 51.704642213383757], + [4.391066043975588, 51.704310359169227], + [4.393897394974681, 51.706451684216262], + [4.395749483254378, 51.709401491575193], + [4.39438926998105, 51.710293811877989], + [4.394801382335946, 51.710969770080013], + [4.397134733991161, 51.710722755711281], + [4.397899232980693, 51.711413082735653], + [4.403461693977373, 51.720343002748464], + [4.400254667785232, 51.721668122657654], + [4.40225864939756, 51.721208164913818], + [4.403461446840048, 51.72178331524708], + [4.404241667080611, 51.723363154544145], + [4.384466507910845, 51.730593667677937], + [4.383595012834465, 51.731755135148447], + [4.371150666623492, 51.735125858197271], + [4.349499427640874, 51.74333155766746], + [4.316968228234086, 51.751960580903614], + [4.290311585616355, 51.757531034953352], + [4.295905266343535, 51.756580813257308], + [4.296356085964778, 51.757356678935352], + [4.290105774147071, 51.758558786907521], + [4.28978795098375, 51.758029501979948], + [4.283548731686278, 51.758521817572841], + [4.26719071857756, 51.761053540620942], + [4.257255435954114, 51.764185680774105], + [4.2487185257941, 51.765864503846053], + [4.238504531481634, 51.772614926108666], + [4.236006001396259, 51.7755448614597], + [4.230889010140238, 51.779212723792163], + [4.230411174878369, 51.780423940186651], + [4.232262188010607, 51.781334854314416], + [4.238949957322246, 51.780180335936556], + [4.247531892517269, 51.783961211931626], + [4.246628100927923, 51.785339321620803], + [4.239869311972615, 51.78536820273559], + [4.23005372652444, 51.788045947767408], + [4.221891327930545, 51.794372663523177], + [4.221746397456249, 51.796271463944073], + [4.217583415705171, 51.7967331450185], + [4.211629877809782, 51.800131469450974], + [4.204331883850516, 51.801571726009399], + [4.201102989993922, 51.803195839231414], + [4.194242644202212, 51.80430484560884], + [4.185309502144538, 51.804275537436972], + [4.181948057710827, 51.804942769951559], + [4.173863897284395, 51.810868257060058], + [4.166466172815356, 51.817537447101067], + [4.162846439685931, 51.819424338838019], + [4.159883121021344, 51.820013153880097], + [4.158917729209624, 51.821143112220973], + [4.158596761921845, 51.821826010632442], + [4.156281327065991, 51.822506994392477], + [4.147468802915956, 51.821553281743554], + [4.143042569645868, 51.822850803682606], + [4.139987340686774, 51.822593149314301], + [4.138684050104289, 51.821490871908054], + [4.138714873551071, 51.819951833760726], + [4.137110350598024, 51.819661466458584], + [4.136279028696435, 51.820626093104956], + [4.131906978409752, 51.819654532661552], + [4.136910629014315, 51.821855657394693], + [4.136105020755581, 51.822311564689763], + [4.134054869964761, 51.820979160887923], + [4.13338272768393, 51.821112209577294], + [4.133249000326482, 51.822159745362043], + [4.130835540648644, 51.819628123112416], + [4.128459272700128, 51.819516378707753], + [4.128607343307592, 51.820833238799096], + [4.13038891045576, 51.828674740345775], + [4.128952704064683, 51.828329883921946], + [4.128047382748156, 51.826629517781711], + [4.128571666788623, 51.824515107982677], + [4.128089288879407, 51.820844617113138], + [4.127929541479052, 51.819597502078402], + [4.124586750729491, 51.820595919515704], + [4.124512976918564, 51.821544590286372], + [4.122988460105232, 51.821692428760294], + [4.122538183948325, 51.820816028698758], + [4.121326349012551, 51.820485512896184], + [4.123568987075736, 51.825676173359504], + [4.119709245757062, 51.826528819187956], + [4.117953583500896, 51.822612219061767], + [4.119571009819793, 51.821560433514598], + [4.119242319077917, 51.820648845136823], + [4.116506908974419, 51.821933224359924], + [4.117436465804376, 51.825224128686358], + [4.115179363447534, 51.82692377498163], + [4.112381924650557, 51.827458398841138], + [4.106446945467363, 51.827617223835169], + [4.102527401805277, 51.826581309676001], + [4.094354624428955, 51.828856196281933], + [4.073893163152849, 51.842562579592801], + [4.071743158729691, 51.842512166519164], + [4.057650695710984, 51.837450481832676] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 10, + "statcode": "PV29", + "jrstatcode": "2021PV29", + "statnaam": "Zeeland", + "rubriek": "provincie" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [3.516315737765055, 51.407366113010532], + [3.545692530676297, 51.405002433509978], + [3.550997892660489, 51.405951819941045], + [3.546522183479849, 51.403522545349986], + [3.547545555056019, 51.401293719627191], + [3.551168181763198, 51.400961787443585], + [3.55362818845597, 51.40367642846352], + [3.55328445461509, 51.404696132430345], + [3.554013087064116, 51.403717234993842], + [3.552543929051737, 51.401807424064692], + [3.55468447789195, 51.401074766069001], + [3.567859684486803, 51.400616250197075], + [3.562685318613851, 51.39668707593578], + [3.563021912809873, 51.396136861871412], + [3.566296829875319, 51.398464312337659], + [3.567005135886683, 51.397763015565062], + [3.564498787557325, 51.395716293172519], + [3.566229812080646, 51.39532703426881], + [3.56812169230976, 51.396836800693578], + [3.571610429888352, 51.395127972427112], + [3.573487644282405, 51.394907366403949], + [3.574190487066627, 51.395477874471624], + [3.568307418278083, 51.398639985310616], + [3.568243534353988, 51.399248838753849], + [3.578322224364794, 51.39386422395156], + [3.578145496695124, 51.392592183810464], + [3.584816885960876, 51.387898484889654], + [3.589168855531274, 51.386722783987928], + [3.606940653172975, 51.385182646491465], + [3.60775250494558, 51.383755669571876], + [3.614181025213022, 51.382484069139814], + [3.615768914362765, 51.380528646747202], + [3.623374029216423, 51.379022902659401], + [3.640753694709048, 51.375903859435894], + [3.652184817530048, 51.374706331969001], + [3.662433045574052, 51.373707670968393], + [3.665871959922837, 51.374653297681903], + [3.668486863540278, 51.374260102807675], + [3.672167772396985, 51.372758418049543], + [3.687396930030971, 51.371258644954999], + [3.690980495920121, 51.367571833963417], + [3.690965604697656, 51.365894387548678], + [3.693050670925209, 51.365287584501758], + [3.693611681550278, 51.363986035682579], + [3.69668659053016, 51.362253700372655], + [3.710345724025467, 51.356982340732316], + [3.714304814859913, 51.353647069409227], + [3.716146290279686, 51.353501407403435], + [3.722536349207359, 51.349617968381793], + [3.731525747550694, 51.348708466566428], + [3.742185889361684, 51.348812717241969], + [3.75813253622588, 51.34786861377097], + [3.758903890642348, 51.346614263475928], + [3.755800019778546, 51.343926544739915], + [3.755260805223467, 51.340305654076033], + [3.758632677217426, 51.339652912163629], + [3.758800872589677, 51.339080969144952], + [3.768171208453159, 51.33632915824063], + [3.770966498011538, 51.336263576145761], + [3.769619608529909, 51.348569420825051], + [3.770138482861699, 51.349671720856477], + [3.771756557876157, 51.350265490711131], + [3.788994826663397, 51.349557337719496], + [3.792324615374318, 51.346922658253533], + [3.800137203567189, 51.344322406986464], + [3.809884101203914, 51.343500079000755], + [3.80708109406259, 51.340610845186049], + [3.807152316736416, 51.338400172987036], + [3.814926076175871, 51.329555343348119], + [3.816455552107273, 51.330483785129537], + [3.813361189586743, 51.336868407818855], + [3.814449160924819, 51.337187195808689], + [3.815501236327988, 51.335823390979357], + [3.817009492295668, 51.336032051614083], + [3.817253598627429, 51.337231563087123], + [3.816634474990994, 51.339362403950361], + [3.813980412790277, 51.342820865389164], + [3.817765383424375, 51.34287435601307], + [3.817222403696958, 51.340656168343529], + [3.819161158811895, 51.3362721980263], + [3.819948406095257, 51.336349703465068], + [3.820564752538967, 51.338873501658114], + [3.821796233684547, 51.340157874591334], + [3.820664020743248, 51.340796970928132], + [3.820052373320366, 51.342687590024987], + [3.82381148630245, 51.34099546900822], + [3.827338493652163, 51.343220041974433], + [3.82761786104084, 51.342883040380599], + [3.824864697546364, 51.341043408201372], + [3.829305853769825, 51.339693847265821], + [3.828563247050376, 51.342403203152429], + [3.829152394446799, 51.342536391473409], + [3.830160736529842, 51.339421997550133], + [3.834658207426656, 51.3388555499346], + [3.835704856153006, 51.337342131806892], + [3.842046201847978, 51.335818365958851], + [3.848207978571136, 51.335628479725656], + [3.856055824318567, 51.335875582242103], + [3.857272821168336, 51.335392309537461], + [3.858565576933096, 51.335992533789586], + [3.866853060834154, 51.336369101267401], + [3.870183719466231, 51.340382079689782], + [3.873909993516617, 51.341856173953211], + [3.875596856701944, 51.346304311384053], + [3.884830833642708, 51.347715234798116], + [3.885081394265508, 51.349295139908982], + [3.886029194311664, 51.349003001660151], + [3.885526175476695, 51.34770224051401], + [3.891187056149874, 51.348761937757772], + [3.897110411361389, 51.353158503621223], + [3.905045507803011, 51.357218728123989], + [3.917435328695109, 51.361251123662875], + [3.936638048434526, 51.363583719869247], + [3.941780015298646, 51.36540890769755], + [3.948361856514536, 51.367244456442663], + [3.959066958427665, 51.367668793561265], + [3.959614868000826, 51.368997849418797], + [3.959155748088529, 51.371287134695827], + [3.962697183518718, 51.375373087743682], + [3.963239055954551, 51.381415013670356], + [3.967604721544386, 51.384504260244938], + [3.968163619254404, 51.385628116508585], + [3.965687093368348, 51.389055755645018], + [3.965244710596239, 51.39692388677021], + [3.969647849444803, 51.401803089971814], + [3.969337588623145, 51.402777150470463], + [3.970834636799641, 51.405700636653961], + [3.974308824645868, 51.406688731320287], + [3.991727277844612, 51.405741963022507], + [3.994835291651309, 51.403748290283396], + [4.016314389767876, 51.401312548448047], + [4.018405497989793, 51.400595716047413], + [4.016368539901191, 51.39903014755437], + [4.017424704043051, 51.397244860222955], + [4.018399969732005, 51.396985975761531], + [4.021808997915769, 51.398068387131531], + [4.021941895098172, 51.400657857534583], + [4.022266906346724, 51.398258798377334], + [4.024916908141446, 51.394266130826786], + [4.02911205417459, 51.393511912016706], + [4.032369232737928, 51.385312825164839], + [4.034889620783268, 51.382533047963072], + [4.033303739909172, 51.383742139810245], + [4.032622625082666, 51.383364917432004], + [4.034179631998633, 51.38202353426297], + [4.033342973343805, 51.38102504738864], + [4.034257280180353, 51.380641753831384], + [4.035487688416356, 51.38194365789888], + [4.036740245780668, 51.380161306807643], + [4.036655873977899, 51.379491566798144], + [4.039407640380738, 51.377378848947984], + [4.04407935227165, 51.370920508190451], + [4.049450437570576, 51.36696722082992], + [4.053161341227211, 51.365791813145776], + [4.085972916061026, 51.364173556636338], + [4.092360601570932, 51.361451377198044], + [4.094976429021104, 51.361740751912649], + [4.096248125360901, 51.361390262281979], + [4.098627214870027, 51.359071053962019], + [4.11095508138553, 51.354280939943102], + [4.110491326755312, 51.352034433787765], + [4.111265772936135, 51.351984343864558], + [4.111229097944831, 51.35394054223557], + [4.115434131275146, 51.352423674979192], + [4.119191715267244, 51.349172691430084], + [4.127449466180533, 51.343704158724982], + [4.134070694329381, 51.336580095644607], + [4.128341586895182, 51.348608142599865], + [4.112623452656938, 51.360622186738127], + [4.114944855680557, 51.363032001039187], + [4.118424554300642, 51.363777569809955], + [4.130925467531469, 51.364496853704736], + [4.136784493771799, 51.363316238758358], + [4.150323192635731, 51.349479957822844], + [4.157988795631574, 51.347284977069535], + [4.151598978050798, 51.366393635549301], + [4.15560845284594, 51.368787671093401], + [4.172839841620418, 51.373354248708701], + [4.175227831632196, 51.360637035495976], + [4.183384302255271, 51.371891451280312], + [4.191415644303126, 51.376419174621134], + [4.206455927429797, 51.374471593138026], + [4.234695818715649, 51.348060151377759], + [4.168065329359727, 51.294450990478772], + [4.166131754358722, 51.292892880463832], + [4.159774933428933, 51.290216595742898], + [4.14240919930034, 51.282372409326008], + [4.094620991997224, 51.260761533165443], + [4.092602512531073, 51.260179185226548], + [4.092493833924594, 51.25970993470434], + [4.091062006358527, 51.259894822591839], + [4.091139870035695, 51.259158352393378], + [4.090312123089446, 51.259215292708383], + [4.090116862425647, 51.258683890457327], + [4.078927011974491, 51.253738518304409], + [4.076163963424291, 51.25213855989621], + [4.070639713663029, 51.25069453621434], + [4.071420604277437, 51.250240940879323], + [4.066235512134174, 51.248303193473703], + [4.064100231216687, 51.247501780194042], + [4.061848239249564, 51.244572904065009], + [4.057910911733314, 51.243421151493656], + [4.042232326097661, 51.241503765703662], + [4.039880504958591, 51.241448453047035], + [4.036537394019765, 51.245678403765361], + [4.032395546704148, 51.243304324918178], + [4.027342171285302, 51.242496716231209], + [4.024490561795606, 51.241499837669842], + [4.022142518847141, 51.24433360451075], + [4.020934149669714, 51.245365550382928], + [4.015481478981667, 51.244497861578495], + [4.014866844060439, 51.245087267880201], + [4.005693038140837, 51.24187589792605], + [4.000178650846709, 51.239471920103412], + [3.999646056088048, 51.237810980302832], + [3.992700324506085, 51.236453049619762], + [3.98877167042317, 51.233452515530026], + [3.988114787840038, 51.233219327854897], + [3.986205035535305, 51.23415951456473], + [3.982852949297746, 51.230062334700051], + [3.981119587578913, 51.228742212012307], + [3.978918763300329, 51.225366216275766], + [3.964286054190682, 51.223949861601731], + [3.96355284016777, 51.220785267458687], + [3.961564073424211, 51.220219794786367], + [3.958562438499748, 51.215807273404714], + [3.953170524608619, 51.216472494877173], + [3.949203562176829, 51.215509667209233], + [3.946639528882795, 51.21550795173647], + [3.942618486291416, 51.214710182306597], + [3.9431381924136, 51.213615636349594], + [3.935980115513534, 51.211892753199756], + [3.931435747535387, 51.217288587301248], + [3.929418556195029, 51.220260359060141], + [3.925449881784814, 51.217106283206043], + [3.919632244596192, 51.217070751819698], + [3.918675220373236, 51.214972623944412], + [3.916004782514726, 51.21463392016345], + [3.918628671534613, 51.207763479734503], + [3.915337519340344, 51.20816982814415], + [3.911546950185997, 51.205444630667166], + [3.90537070130729, 51.20397376179664], + [3.900065381523819, 51.201849095956852], + [3.89880615998907, 51.201719434108583], + [3.894664270020658, 51.203496969566096], + [3.89313597221287, 51.203080416314712], + [3.886349630677691, 51.200162112753745], + [3.88425940547751, 51.20360086940682], + [3.87946463435499, 51.206263120095812], + [3.877625651909617, 51.208013008396172], + [3.890286068370636, 51.214059153001145], + [3.893346533077458, 51.218662458114501], + [3.890420452013282, 51.221362165669994], + [3.888876844863001, 51.222754913896985], + [3.888653816193925, 51.222956137550156], + [3.888602176202775, 51.222998624311877], + [3.870170751291661, 51.216266352578558], + [3.864712635361961, 51.213462541161718], + [3.859573838263681, 51.210830678402779], + [3.85611258207491, 51.211061229731904], + [3.852411426076973, 51.213215726160392], + [3.849642761981768, 51.21173343705815], + [3.845699214510098, 51.212988828774868], + [3.842227380084748, 51.212128323107187], + [3.838855019354479, 51.213463534904605], + [3.836365498508616, 51.21379571134996], + [3.834262013575273, 51.212030552014284], + [3.826925988150879, 51.209359063347243], + [3.825795242720976, 51.209718052186453], + [3.825116440786794, 51.208930832352557], + [3.820819699881998, 51.209228021519941], + [3.810573955452847, 51.212767331060917], + [3.806283821640907, 51.212623391550892], + [3.806027167153975, 51.213379304607486], + [3.804357734050286, 51.213230273771146], + [3.804989805979831, 51.210120620610013], + [3.799291549039598, 51.210864360477558], + [3.797232535723568, 51.212897839115314], + [3.791145395222818, 51.214012367084699], + [3.789539884497815, 51.216087216879174], + [3.788883593633845, 51.2237538466944], + [3.789102819687685, 51.239498654736458], + [3.789451584907471, 51.245786270015671], + [3.795473379395513, 51.256053325192198], + [3.785433831056698, 51.258467309117378], + [3.778186052678701, 51.262390025127296], + [3.773783692083795, 51.263975215069266], + [3.773072388821747, 51.26190927471017], + [3.76926368143963, 51.259861875640837], + [3.762513801579343, 51.26178081832046], + [3.759610419321595, 51.265010767842234], + [3.759907311930768, 51.265475268711995], + [3.758750773059362, 51.26596700362105], + [3.755714428056637, 51.269344137756988], + [3.752412617929742, 51.270266676575844], + [3.751725797741783, 51.269160476958604], + [3.723129042364217, 51.273342763259599], + [3.71924219179757, 51.272543336728447], + [3.718913540061897, 51.27153541694495], + [3.712701125186397, 51.272103075122253], + [3.69393377140392, 51.276039034905295], + [3.689932447467099, 51.280608952896017], + [3.682571847583589, 51.281090954061909], + [3.67790868645384, 51.28053164584427], + [3.67675676021046, 51.283064616806769], + [3.658100317768114, 51.290188517862433], + [3.644406143681608, 51.290110841811249], + [3.643257935824794, 51.288692380847969], + [3.64082036913995, 51.288087375860258], + [3.62571011949503, 51.293338288418703], + [3.621227945153793, 51.292765095764508], + [3.619209923396395, 51.294247209158705], + [3.618567938516358, 51.295908890218044], + [3.614716662251122, 51.297718849192947], + [3.612691740509329, 51.297940225778852], + [3.590832011290717, 51.304416562377924], + [3.591781126465654, 51.305339976418708], + [3.589891837129183, 51.305824345323991], + [3.585829574257765, 51.30167497475508], + [3.581112907957867, 51.29832129199049], + [3.587927985414878, 51.292960453868204], + [3.583385136620606, 51.292254226283802], + [3.58259909663913, 51.29075912542379], + [3.583879583227512, 51.288884557399641], + [3.581812116155889, 51.286912502674141], + [3.579831408559115, 51.28876682555412], + [3.577768872811112, 51.288821085569666], + [3.57615951295799, 51.288007122480465], + [3.571530823711601, 51.291027425378068], + [3.571941346681581, 51.291963463303432], + [3.566482944583646, 51.293791682174145], + [3.566195620922072, 51.294626375994802], + [3.562707549722435, 51.295856246507256], + [3.559759283025123, 51.295454680643658], + [3.558077812184931, 51.291220535956363], + [3.556251361162845, 51.29036176987065], + [3.555691920348463, 51.28979916552111], + [3.553586965871137, 51.289578743216396], + [3.549813863782782, 51.291101687755329], + [3.543426710700567, 51.291197749292536], + [3.542309624282233, 51.288006231669634], + [3.538003352848571, 51.283656137988487], + [3.533665544401829, 51.283488765370272], + [3.529129827658445, 51.288743719046927], + [3.515414868103355, 51.287150591619501], + [3.517619264435845, 51.28058348645343], + [3.528011939216391, 51.246440346831108], + [3.527594242204527, 51.246040147476357], + [3.484668535239925, 51.24326931718074], + [3.450385295673905, 51.241614463989045], + [3.446955651408569, 51.241609836099371], + [3.444412748752173, 51.24209946517135], + [3.444496025950212, 51.24269273056796], + [3.440533098809178, 51.243465411734483], + [3.432313895313227, 51.245609350331051], + [3.427478931617773, 51.244656928928464], + [3.425369940702383, 51.250873829326814], + [3.424405389008699, 51.25447657512597], + [3.421223109108772, 51.256617172280478], + [3.418335838564085, 51.257484967915445], + [3.417138742642999, 51.25977799484744], + [3.415984613848353, 51.259948186561594], + [3.411564244916415, 51.256927790392702], + [3.407402982016406, 51.256962050870506], + [3.403162338424563, 51.262463158340815], + [3.396806271706886, 51.264103091476322], + [3.394533674483275, 51.265418462241854], + [3.388920185866997, 51.271250943994787], + [3.387865090590423, 51.273250008208798], + [3.386468012474377, 51.273885036813915], + [3.3823316337769, 51.274077449294182], + [3.378394248869791, 51.275025975292138], + [3.375800098780665, 51.277078419421713], + [3.375336964743989, 51.278506020689903], + [3.375929602867018, 51.279484607822106], + [3.379698531414972, 51.28031124147703], + [3.381680205207887, 51.281623497542249], + [3.380416854628967, 51.284314415971984], + [3.380796293542875, 51.286961460676032], + [3.378932130466122, 51.288517489177003], + [3.370287093103359, 51.291940409807822], + [3.366803283188622, 51.295643928899544], + [3.366074134099165, 51.298270969823356], + [3.367390993429297, 51.299622357299612], + [3.371757684385541, 51.300090157387089], + [3.37807951772279, 51.302650337378985], + [3.376839110044713, 51.302448198641962], + [3.362907036762723, 51.311900276956663], + [3.358378253017111, 51.314981412416763], + [3.362848729069701, 51.31814302630395], + [3.38530569968234, 51.334258608285069], + [3.383513059440607, 51.341204994724109], + [3.374070757247216, 51.348507812782472], + [3.37370594744547, 51.354233139692987], + [3.374990096247442, 51.358887171416214], + [3.372343177115186, 51.361993100648625], + [3.371750730858649, 51.36736619505055], + [3.369536008627968, 51.368825006231525], + [3.369345706219617, 51.370389364965106], + [3.369428313505729, 51.371778151779068], + [3.371843969215393, 51.373596797292912], + [3.378518330187288, 51.377415416466228], + [3.380340740787005, 51.378081342856667], + [3.380823763916894, 51.380157994435507], + [3.381086647334922, 51.377975242341655], + [3.382632817238091, 51.37782343439082], + [3.382738166529677, 51.379752144857008], + [3.381926568310428, 51.380487530454488], + [3.383196279371542, 51.380140645633858], + [3.383373849827284, 51.379126725733968], + [3.385687732605257, 51.379301766194864], + [3.40227698122132, 51.383323333910994], + [3.411820487008041, 51.386465701533687], + [3.421287899810103, 51.389642651534608], + [3.430160797069147, 51.391356421685664], + [3.432951274258366, 51.390077466891753], + [3.436405050066134, 51.388074255090395], + [3.448344565310255, 51.391190481778757], + [3.455750533545365, 51.393628957640445], + [3.457795928124526, 51.39420790963527], + [3.473058545519125, 51.396653193050298], + [3.48781823572673, 51.399509876087599], + [3.494504134674775, 51.401968771220972], + [3.499814489022602, 51.404793596313198], + [3.503098038499415, 51.406187748234942], + [3.516315737765055, 51.407366113010532] + ] + ], + [ + [ + [3.704787528414927, 51.515314902023647], + [3.708200771495047, 51.513212073432399], + [3.702906908622245, 51.513266346300576], + [3.700125004299945, 51.515650819595088], + [3.70072654429157, 51.515896965987729], + [3.704787528414927, 51.515314902023647] + ] + ], + [ + [ + [3.694155231345508, 51.524565825750834], + [3.694218764407153, 51.523558048586317], + [3.692136661432808, 51.524993122359945], + [3.694155231345508, 51.524565825750834] + ] + ], + [ + [ + [3.717629698850806, 51.524401761872205], + [3.715257906602837, 51.523767606826553], + [3.713376411022511, 51.524915700593304], + [3.717683594919688, 51.528716694183714], + [3.718444566383642, 51.528403811496325], + [3.715789762942878, 51.525131339982089], + [3.716255322211042, 51.524520117176387], + [3.717629698850806, 51.524401761872205] + ] + ], + [ + [ + [3.691832802955749, 51.529280651786799], + [3.690995896823861, 51.527251941572509], + [3.689857439547565, 51.528133544753764], + [3.690199692971602, 51.529958065377429], + [3.691046611117155, 51.530576249925055], + [3.691832802955749, 51.529280651786799] + ] + ], + [ + [ + [3.77839408785664, 51.548632209562079], + [3.777495312394675, 51.547733691632558], + [3.77076810677051, 51.550272520573046], + [3.771742873434714, 51.551350170382626], + [3.776220824485883, 51.550880566540535], + [3.779522124922034, 51.549671517128836], + [3.77839408785664, 51.548632209562079] + ] + ], + [ + [ + [3.771890846777291, 51.547928932762218], + [3.770905833433371, 51.546801252537918], + [3.767437090368542, 51.547493888261641], + [3.760854824428277, 51.547607256850355], + [3.757010308820421, 51.548316052615768], + [3.756349350100316, 51.549432974513863], + [3.757373068324938, 51.550182321897687], + [3.769045200016182, 51.552368249190927], + [3.770106156403232, 51.549508606227128], + [3.771890846777291, 51.547928932762218] + ] + ], + [ + [ + [3.695327421665294, 51.542079655881828], + [3.689882783339817, 51.536929818234654], + [3.687892574430734, 51.537116056857123], + [3.686733559887601, 51.54298019353952], + [3.682532650873922, 51.548328098907866], + [3.681740282946759, 51.551666740501538], + [3.683684968553854, 51.552853951373457], + [3.68853540386489, 51.551511167651327], + [3.694355964777028, 51.546839691504765], + [3.695327421665294, 51.542079655881828] + ] + ], + [ + [ + [3.675497422193675, 51.556062259484634], + [3.675170032059714, 51.554228851693473], + [3.673855895741542, 51.554956393599234], + [3.673467018112122, 51.556924525625263], + [3.670282776160759, 51.558447753368185], + [3.672612224079161, 51.558995421320176], + [3.675497422193675, 51.556062259484634] + ] + ], + [ + [ + [3.66638636457195, 51.562115449506678], + [3.667043637109027, 51.561600165385592], + [3.671291431277651, 51.561888601222748], + [3.672398572310848, 51.560291116026868], + [3.669455326123374, 51.560700175286151], + [3.665426314682581, 51.559779110393656], + [3.66638636457195, 51.562115449506678] + ] + ], + [ + [ + [3.934031707720043, 51.735748961969776], + [3.931193375777599, 51.734868002239637], + [3.914058548187081, 51.734681599402009], + [3.91269365758271, 51.734047247510723], + [3.911254977859411, 51.735297870937742], + [3.911188144402898, 51.737127194576175], + [3.914487168078494, 51.739342681772079], + [3.919063543674928, 51.739417007781007], + [3.926417078900894, 51.738394545210568], + [3.933734124845754, 51.736285342441334], + [3.934031707720043, 51.735748961969776] + ] + ], + [ + [ + [3.95255063879862, 51.74674989126013], + [3.955150397538126, 51.745989442335038], + [3.959849850564019, 51.746589029109899], + [3.96221768159605, 51.746056076951056], + [3.959876075112495, 51.744278404345607], + [3.950545752249252, 51.741293546542941], + [3.950216218802478, 51.740617277678304], + [3.949165044607911, 51.741329359720368], + [3.949248683548767, 51.740236122098914], + [3.948599841219142, 51.740048980723948], + [3.947880797634187, 51.740524308305623], + [3.941896911467747, 51.739681340671787], + [3.938207269578254, 51.739960723845194], + [3.936902058061252, 51.743358287248959], + [3.937028374371068, 51.745804247374927], + [3.942719965433806, 51.746898564572753], + [3.95255063879862, 51.74674989126013] + ] + ], + [ + [ + [4.015729708875604, 51.726278526787219], + [4.013033649169179, 51.725231910146562], + [4.006475628587204, 51.725328648567029], + [4.003016528222696, 51.726566983200968], + [3.997577558575963, 51.732167595213149], + [3.994784037224298, 51.739017770918579], + [3.990791024055424, 51.744907669665665], + [3.981909411191709, 51.751513085623564], + [3.978003211634774, 51.75258110042796], + [3.979870668237016, 51.754728302464905], + [3.982388159924881, 51.756353571741656], + [3.992221691511759, 51.7583120012997], + [3.995430181201246, 51.758399251944113], + [3.997338692982066, 51.757859840250042], + [3.995981705346058, 51.754941452407891], + [3.996154320268595, 51.750771992415828], + [4.002800273965029, 51.739419779426314], + [4.008056970754493, 51.733828393206259], + [4.016392040349263, 51.729120355783422], + [4.015729708875604, 51.726278526787219] + ] + ], + [ + [ + [3.842477315227267, 51.756305011939972], + [3.839975112203229, 51.755146284438418], + [3.841983250128016, 51.753355861294899], + [3.841574891465997, 51.752253208002337], + [3.837664463875647, 51.750135665481139], + [3.83730387348665, 51.749331996766102], + [3.83539535042142, 51.749876366800123], + [3.840394062855335, 51.752501712953837], + [3.840557841700983, 51.753331350391768], + [3.837457830817963, 51.755279607478265], + [3.831074579606125, 51.752418493565152], + [3.829917389374191, 51.751298484747387], + [3.83192163488835, 51.750420293347531], + [3.83079016303871, 51.749281141186238], + [3.82748492452196, 51.748943959336586], + [3.827094076080803, 51.747672073962498], + [3.827725992301713, 51.747371147752602], + [3.826020016239718, 51.740381292621414], + [3.826738073791829, 51.739575301644848], + [3.825888425616015, 51.739487884550563], + [3.825794146240102, 51.738847777803279], + [3.830107758493283, 51.739468218743916], + [3.830781895431267, 51.740053708954626], + [3.835931931937275, 51.738847355136109], + [3.838813267946763, 51.73925733399301], + [3.84206977785019, 51.738760349924171], + [3.846288757333983, 51.74047082209276], + [3.847051476033651, 51.740142599334455], + [3.844848548365948, 51.73965785089316], + [3.844767871846822, 51.739160359869594], + [3.846322985724701, 51.738829873324278], + [3.847237144012644, 51.739159388576184], + [3.846919984494604, 51.738642768777567], + [3.849995178205696, 51.737507963928579], + [3.851435802019326, 51.738604295299261], + [3.847205321171844, 51.739742693399968], + [3.847703075097744, 51.740132288660966], + [3.85471363081602, 51.738480483298879], + [3.873270433245476, 51.741526172116288], + [3.887523411763759, 51.744231573902987], + [3.889732359986448, 51.743499922291988], + [3.891551239398284, 51.743814249463554], + [3.889468733765187, 51.742955219728039], + [3.891095678611214, 51.740121427323302], + [3.893876364587981, 51.740360150021637], + [3.894530928107056, 51.741064044391159], + [3.898824895732654, 51.740039001720071], + [3.903701067158834, 51.737672807869565], + [3.903364560994614, 51.736897928675084], + [3.906838814551682, 51.733129384891392], + [3.9088868576518, 51.732884206162396], + [3.911135053103399, 51.731883047515474], + [3.912966013620169, 51.729715173705003], + [3.912824092122716, 51.729255082358264], + [3.912250281457575, 51.729629663793695], + [3.911752267355479, 51.729357411826932], + [3.913738819896255, 51.727511227214343], + [3.91533625666503, 51.728339492475527], + [3.914943669802353, 51.728593982360472], + [3.913400572163098, 51.729744293239818], + [3.913883959337786, 51.731346549456077], + [3.918905028509372, 51.731999412217704], + [3.920694714943636, 51.731458752228896], + [3.921786586991434, 51.73182263814077], + [3.926863040818317, 51.731620440720214], + [3.943232210141384, 51.734309399374524], + [3.944191525431233, 51.733353406741521], + [3.960913379595722, 51.733440500893686], + [3.964680053683924, 51.734074670386697], + [3.97129816995563, 51.733618084064446], + [3.973330846882686, 51.7328717385017], + [3.970203647586025, 51.726702059225474], + [3.971797117690435, 51.726506244654978], + [3.974712121266547, 51.731841610929834], + [3.97874306547345, 51.730289437010846], + [3.979170564497218, 51.72954366444921], + [3.977236885743915, 51.729359394017798], + [3.979502040738145, 51.727240625027299], + [3.982733669294017, 51.725665051296822], + [3.982961110721, 51.723169918718305], + [3.984765664271393, 51.719966726861855], + [3.982455076591824, 51.717740639427198], + [3.991476972689393, 51.713907500756505], + [4.007068658242738, 51.70311647520321], + [4.011281039128725, 51.697534605161934], + [4.014882061809309, 51.686689158173138], + [4.020939810258765, 51.684737758768918], + [4.022284006024768, 51.685041578326192], + [4.027066435579946, 51.684394098676869], + [4.028124514852814, 51.682883385090328], + [4.029933354211012, 51.682545556737139], + [4.040436419481018, 51.684620698172061], + [4.044243860278081, 51.684638210601193], + [4.053337320522745, 51.681128026202643], + [4.055476603111241, 51.679309769460396], + [4.064439887782641, 51.67757876226775], + [4.068561335101823, 51.675199924330691], + [4.071330528520802, 51.674971433923972], + [4.076238625794039, 51.675921192829144], + [4.077945694309092, 51.675175959288808], + [4.074357656017242, 51.674131145709246], + [4.074331114618269, 51.673599910008576], + [4.080776334264387, 51.670945436304329], + [4.083051464333013, 51.671874310021302], + [4.084023238423411, 51.671571216558007], + [4.083168789609197, 51.670506176854524], + [4.086625372040829, 51.669166130309364], + [4.088306185665648, 51.670790179249657], + [4.08879946373446, 51.670659843029789], + [4.087370204864366, 51.668877350719399], + [4.091704886152756, 51.667083776005605], + [4.109083680999969, 51.677621073924364], + [4.114174931220099, 51.679289711496125], + [4.114823740222071, 51.678734679277284], + [4.120566417329595, 51.679606517063995], + [4.121774371781308, 51.679363536207802], + [4.121186766722361, 51.678121442282105], + [4.122552729475195, 51.677499620059251], + [4.124944881808978, 51.677681230083792], + [4.12562484490928, 51.67866294700935], + [4.128995787103652, 51.67960639455503], + [4.128258110822327, 51.678542734738016], + [4.13029594928954, 51.677965001464685], + [4.131617084221534, 51.678868555093239], + [4.136467292099316, 51.678605439606464], + [4.137048965216266, 51.679573921342843], + [4.14450322264607, 51.679164195495694], + [4.14873379533053, 51.6797359066098], + [4.155479818183841, 51.683418719562923], + [4.157346533881037, 51.682492008425598], + [4.156314536271223, 51.681167288262941], + [4.155857736033429, 51.675556959528137], + [4.163279084645886, 51.667709449997574], + [4.171624872892351, 51.668264650286964], + [4.173764730769542, 51.667202278289359], + [4.16623350435154, 51.667249331094446], + [4.165853650004739, 51.6657481986257], + [4.161811881598309, 51.66530128213261], + [4.161912348241942, 51.664658974331992], + [4.174813074236539, 51.66547279736956], + [4.180145638733132, 51.664266342836505], + [4.183069700013424, 51.662980407647282], + [4.177357021364887, 51.664563530583024], + [4.164210445964398, 51.664228359681303], + [4.163660960483735, 51.662922253300586], + [4.162018816778905, 51.662740000198916], + [4.162201641048068, 51.660366402022397], + [4.180392849790183, 51.660497507554091], + [4.182739536022302, 51.660900447020232], + [4.183450835455678, 51.659530704672527], + [4.182751397600478, 51.659404956264304], + [4.181120116252867, 51.65997646480038], + [4.178071000797334, 51.659303394737009], + [4.174561171168022, 51.659315459006045], + [4.170687827491899, 51.660028450096824], + [4.166889389667855, 51.659217451404679], + [4.166066753876719, 51.658425735193163], + [4.166466656432103, 51.656450471090132], + [4.169213597139888, 51.654418691177689], + [4.175313621594998, 51.65366370172584], + [4.18042678933569, 51.654143120047955], + [4.182424154423697, 51.653583016756258], + [4.181011920755988, 51.649356929182986], + [4.18728406894784, 51.647048091043992], + [4.191397703457162, 51.644502307907501], + [4.193453454962964, 51.64216472229981], + [4.194136807879952, 51.639030259313799], + [4.195605443498334, 51.634672755404992], + [4.199535169207899, 51.634613248691167], + [4.19576345515384, 51.637986071429637], + [4.20054002502108, 51.639226910707549], + [4.211516754413076, 51.638543844997962], + [4.214233167546555, 51.637888017356865], + [4.217519865822551, 51.635315152664454], + [4.229559670339391, 51.633931168477169], + [4.232689064710461, 51.635062209193912], + [4.237323740227381, 51.634014421685158], + [4.227822422095417, 51.631022591457082], + [4.214466676859818, 51.627664021746192], + [4.205020912823038, 51.623561411823317], + [4.19765956212209, 51.618047949812286], + [4.191684955679976, 51.609336964072668], + [4.190573628652456, 51.606055830044454], + [4.190162390591905, 51.600953891130821], + [4.19081711104971, 51.597384532361659], + [4.192231585802609, 51.593901575190841], + [4.19571803470012, 51.588975177868484], + [4.19889151562108, 51.585975345387126], + [4.228121187136598, 51.563716301094594], + [4.232443779679804, 51.559054854191857], + [4.235585704620065, 51.552723929037249], + [4.236118919907085, 51.550365792459857], + [4.23565711137825, 51.543241516113305], + [4.233043186668071, 51.537492019387827], + [4.219930847528164, 51.513802922984254], + [4.218799854347014, 51.508961389557712], + [4.218927281516851, 51.504858449022855], + [4.224906179176474, 51.496492966881142], + [4.230327839339865, 51.488904248660873], + [4.265431821536806, 51.439680671456337], + [4.275851707976691, 51.425049402545874], + [4.266446940828138, 51.419979475204499], + [4.263732326876873, 51.416449100869343], + [4.269061105275799, 51.400347382987015], + [4.268633666125523, 51.388126442763962], + [4.26634909199562, 51.386540625260899], + [4.268382119786371, 51.383545881398817], + [4.273697757709778, 51.383149879690606], + [4.274563603580568, 51.381656577041525], + [4.277424647993365, 51.376035233299518], + [4.243196273019994, 51.374810594437108], + [4.244018900986266, 51.378733207761336], + [4.243347850368083, 51.384111863967895], + [4.231624638767893, 51.394900870998327], + [4.216978442803311, 51.399428068602724], + [4.211594892776032, 51.400343886923366], + [4.206746789979905, 51.399661673406435], + [4.203565687780619, 51.404321534626959], + [4.200635261959762, 51.406278577239291], + [4.198694968426836, 51.406724015236883], + [4.197479147662544, 51.406855249320515], + [4.194520077251566, 51.405651750267687], + [4.189514384582401, 51.40561955817175], + [4.188742969118476, 51.404305902623747], + [4.184922402688308, 51.404024311166715], + [4.182404891163299, 51.402850989617114], + [4.17330266911405, 51.401828416640157], + [4.173501304273405, 51.401515232506839], + [4.156736292627827, 51.394826960619021], + [4.153864194833634, 51.394573424802516], + [4.152804027919616, 51.395149844701059], + [4.138814545063455, 51.396541081299908], + [4.13339479029766, 51.399082753320158], + [4.12121003227384, 51.400789092334456], + [4.120454038940533, 51.400259059967091], + [4.11757168063089, 51.401481338730186], + [4.117178505214838, 51.401132331963993], + [4.114466559419832, 51.402094901341258], + [4.106915830929797, 51.402517595886124], + [4.095920334359413, 51.405405163156772], + [4.080638004747459, 51.408173169948107], + [4.079292587697193, 51.407478124473691], + [4.072923562438701, 51.411820821058186], + [4.068249025687516, 51.412710335738268], + [4.068031978555229, 51.412273436038873], + [4.066130229839168, 51.41352560726606], + [4.061857400257916, 51.413709379932392], + [4.051348849707574, 51.419997177414189], + [4.051861766733823, 51.422136636874129], + [4.046661863175182, 51.42618967689819], + [4.048678466419332, 51.428370485902832], + [4.050777435787929, 51.429569048163579], + [4.050344693348853, 51.429845427964572], + [4.038630753975846, 51.432104761501073], + [4.032904139106464, 51.432490602551901], + [4.033977760614167, 51.433781553117988], + [4.033904135355121, 51.43592023165148], + [4.033795823185238, 51.436453882912303], + [4.032286553627103, 51.436924290144091], + [4.03069233656886, 51.43690972080578], + [4.029831865896847, 51.436120441250914], + [4.030134988009313, 51.433245116646859], + [4.02744234338186, 51.436442849419606], + [4.016691262220765, 51.43976512012722], + [4.01525394003461, 51.439824738315885], + [4.013142770757104, 51.439030502694152], + [4.012584638821576, 51.43940529976264], + [4.014360576004581, 51.440349044638744], + [4.016459932850415, 51.443880149485061], + [4.011941530807572, 51.454537007959907], + [4.009946560780763, 51.454408672317712], + [4.009506715476649, 51.452894968608732], + [4.01080460122128, 51.44908858809081], + [4.011044921037795, 51.443823846179164], + [4.009750856465278, 51.440044257348546], + [4.006339550608835, 51.440477194665455], + [4.006936341819895, 51.441916681623304], + [4.005919230558282, 51.444083998707249], + [4.003320181852368, 51.444014366373708], + [4.003317106544807, 51.445147477651275], + [3.999351850217896, 51.446767857204613], + [3.993001080760544, 51.45134179115437], + [3.988438370252837, 51.453516885256015], + [3.986893412774549, 51.453619021801828], + [3.981441395409608, 51.4596464371729], + [3.978640460786845, 51.460193541418732], + [3.978051747405265, 51.461175750248984], + [3.97541269200827, 51.462366276381708], + [3.961692362310346, 51.4559785600118], + [3.950406462744467, 51.455771431853307], + [3.934219573736957, 51.448450600922179], + [3.933320103486622, 51.448552045500378], + [3.929755517734355, 51.449894682846875], + [3.92560631002136, 51.451478299304355], + [3.92543317909736, 51.451527514926482], + [3.924008703781699, 51.451333954485271], + [3.922644934611389, 51.450208481928826], + [3.924294788591868, 51.448817834043005], + [3.925358000541339, 51.445466361843451], + [3.921482174659369, 51.444673282834373], + [3.920997786218121, 51.444037819439551], + [3.923254874949424, 51.439798080100552], + [3.925397674717329, 51.437903647463642], + [3.925781896123233, 51.43448568414825], + [3.919028316749035, 51.427415906479439], + [3.917948230755058, 51.424166254407083], + [3.917789771856016, 51.423957949648404], + [3.917077070983895, 51.421596360499571], + [3.916472937411658, 51.41868881827115], + [3.915671158487287, 51.41842816021471], + [3.915764430909977, 51.420483767889387], + [3.914726870622804, 51.420481994886714], + [3.914132466601207, 51.417609771820707], + [3.911834969902976, 51.41605806164393], + [3.900623896357792, 51.394999382078126], + [3.893395501056162, 51.393740170151602], + [3.876188966268731, 51.397335808854109], + [3.871412282532482, 51.397371331476606], + [3.866987508428609, 51.396384571370461], + [3.864372680829963, 51.395481706929992], + [3.861622157019346, 51.39370828993394], + [3.860866975381866, 51.392233329759939], + [3.858163282071856, 51.391225858622718], + [3.853396340663096, 51.391290140145777], + [3.84915902900352, 51.390416702332061], + [3.837800503046802, 51.388941757316807], + [3.836394768820544, 51.388327249413081], + [3.819839038516813, 51.386385901374851], + [3.818663128092346, 51.386179884727532], + [3.817873806341698, 51.385295100214478], + [3.817050365999332, 51.385964917164799], + [3.817257880553084, 51.384961810246658], + [3.816586170231408, 51.385920368559525], + [3.812396568422208, 51.385682035998755], + [3.797761737297869, 51.395228092405283], + [3.79096638381632, 51.397956768934478], + [3.789513208419097, 51.399816880494299], + [3.775586223326328, 51.405360088277725], + [3.777611573363632, 51.4092684248224], + [3.776083506938743, 51.410327888697466], + [3.764749379726318, 51.410511422426545], + [3.754956404573399, 51.414801685965649], + [3.744875144089806, 51.412240910438349], + [3.74431222742446, 51.411450449786344], + [3.734809007054783, 51.411142818055893], + [3.725397291445978, 51.415036798939248], + [3.72066170642694, 51.426091168739255], + [3.718188837182352, 51.427155381146015], + [3.716021274690561, 51.426857317345856], + [3.713951242834133, 51.430506988092091], + [3.708543675387566, 51.434701678572537], + [3.691976104709706, 51.444064768312188], + [3.685230994149281, 51.447008631820324], + [3.679695330504638, 51.448889802647301], + [3.678337985361839, 51.448629759414715], + [3.675660620426394, 51.446755023909297], + [3.674923625003496, 51.446842748842393], + [3.677835393770419, 51.449257310159787], + [3.679037786112159, 51.451251383843612], + [3.686446536501768, 51.457282166644084], + [3.690706056855923, 51.456712808306435], + [3.704648488417482, 51.450304048766256], + [3.706902323192272, 51.448078748315517], + [3.701996514258807, 51.443586227707954], + [3.703907713573345, 51.442166595641986], + [3.704763443925158, 51.442607254252657], + [3.704276092517168, 51.442945589499679], + [3.705226276193469, 51.442939502407164], + [3.710494547119304, 51.446778766751819], + [3.718134466429505, 51.442501328886706], + [3.719228185049721, 51.442645675978817], + [3.722375042966034, 51.444855671706122], + [3.712532433446901, 51.450862743372923], + [3.727345972340385, 51.456395372079193], + [3.725544671414021, 51.458284561129716], + [3.714395917136385, 51.454307863101157], + [3.711911274063579, 51.453722308460378], + [3.710279040929042, 51.454619702120603], + [3.709645266130177, 51.454799992863236], + [3.705263315729863, 51.453193735231821], + [3.692707558402644, 51.458755579402762], + [3.69329514078896, 51.459696710409581], + [3.709004728623989, 51.465605866844378], + [3.711108139516329, 51.465464921341578], + [3.713246451743427, 51.463401765720256], + [3.714881691867726, 51.463635703032729], + [3.716853467530219, 51.464535400245673], + [3.715603865971588, 51.466411918300942], + [3.717252185580766, 51.469658998919279], + [3.72133464058673, 51.473194402245397], + [3.719861949463639, 51.474933212659778], + [3.717963754510074, 51.474939640951582], + [3.714658693529339, 51.470621001263368], + [3.713698978679616, 51.470736996277928], + [3.711209871395369, 51.472093544151491], + [3.710525450507285, 51.47183526993107], + [3.705626086559416, 51.476948049744813], + [3.704410632551794, 51.478238560885202], + [3.700665069491242, 51.476867739392119], + [3.702629405130529, 51.474811919230973], + [3.705506004367201, 51.471796871572828], + [3.706298243319242, 51.4709568831437], + [3.706767394878563, 51.470451561578479], + [3.703367604161287, 51.467398993103899], + [3.686239904813447, 51.460942030170827], + [3.68408376839585, 51.462698537120211], + [3.681708424448781, 51.462633100884524], + [3.678310603704869, 51.461147857484299], + [3.678950330376332, 51.460273007852564], + [3.67813717295002, 51.460025415979231], + [3.676404628934309, 51.462141607375585], + [3.672880043255518, 51.460980033127704], + [3.675612653607634, 51.457578923875239], + [3.673113649762658, 51.45713969406475], + [3.671313830909759, 51.459159952150543], + [3.670037642097657, 51.4589103630572], + [3.669563846703431, 51.459448172556769], + [3.664487013517844, 51.457824612465089], + [3.662685967944577, 51.45889802531341], + [3.662151635320881, 51.458547426092885], + [3.65847604314322, 51.456886949747343], + [3.656156801605227, 51.453143824086432], + [3.656606527836422, 51.452697988492893], + [3.659689746294255, 51.452591507147524], + [3.667233493699475, 51.450082791873683], + [3.666754690474137, 51.449517065096401], + [3.660397459716222, 51.451799958780825], + [3.656305184835419, 51.452061389381505], + [3.651385806407351, 51.449506691229296], + [3.649731320342676, 51.45028157616369], + [3.645423417944889, 51.449855744648225], + [3.641628670783065, 51.447559762954356], + [3.641389803651319, 51.445064937545112], + [3.640027752558229, 51.443522581339025], + [3.632279414619862, 51.441549453461036], + [3.629319172801513, 51.441456388260043], + [3.626189295124773, 51.442255721934245], + [3.623265933619578, 51.441098130441148], + [3.623087193566445, 51.441454285499773], + [3.622590057568904, 51.44104821215381], + [3.618588456439995, 51.441614381466287], + [3.614054001924529, 51.440955449705356], + [3.609103062090409, 51.440226527244214], + [3.601919856880013, 51.443144156322219], + [3.600521591652091, 51.451856142405354], + [3.59673160612831, 51.451511121758884], + [3.597145056125621, 51.444593189512538], + [3.597779242943787, 51.443586863442306], + [3.597211785540247, 51.442621491559869], + [3.595442307215908, 51.442913564244392], + [3.596985947483768, 51.44248092542847], + [3.596356242106509, 51.442468470697015], + [3.59643230495848, 51.441568477451639], + [3.600924242934413, 51.439722970517877], + [3.597536906341811, 51.440754177121974], + [3.594956626807165, 51.440134121032095], + [3.592713233624388, 51.441126002803522], + [3.589915309719846, 51.441470090650988], + [3.582953703726763, 51.440431824151652], + [3.582224817372139, 51.439658425370361], + [3.579948160159599, 51.440649968549096], + [3.576286690684228, 51.439850088550827], + [3.575837130906371, 51.44034235645443], + [3.575186928568123, 51.439933934010561], + [3.57586190884242, 51.439583641508506], + [3.575758100879766, 51.438188679484249], + [3.575009785948424, 51.439049129496361], + [3.56911579437458, 51.440524373943397], + [3.567897609357794, 51.443226076620235], + [3.560310193849581, 51.448396573467654], + [3.556061509711916, 51.44998982689966], + [3.551737656785087, 51.448897746517112], + [3.551278231273533, 51.449367325677933], + [3.552224176297278, 51.449678747684629], + [3.55136347183311, 51.450420760367216], + [3.54810892139757, 51.451922378581003], + [3.547691163049577, 51.451599463657288], + [3.544013538587993, 51.454004950344185], + [3.53375802004933, 51.458541468830646], + [3.526842785350236, 51.463040021933352], + [3.515819358364227, 51.473137471708263], + [3.511580560755901, 51.479322093582773], + [3.496944297465497, 51.493935012481266], + [3.485222689817904, 51.49873993154344], + [3.480645793854963, 51.50008647975028], + [3.460234118197516, 51.509703472998034], + [3.451046729586453, 51.514831426974553], + [3.443779284311455, 51.52096286531107], + [3.441858430990934, 51.521809246346066], + [3.439785573759823, 51.521989255501467], + [3.437154019412088, 51.525978280659558], + [3.435663247514996, 51.525559203011163], + [3.4337821511204, 51.526468447414238], + [3.433343689970872, 51.527449129649312], + [3.434940197182474, 51.535950559224894], + [3.436196387399539, 51.540249325654507], + [3.43830593480645, 51.542444077154542], + [3.455271196568482, 51.549131084098036], + [3.459668629570504, 51.550233749734431], + [3.48853484748515, 51.563325828072919], + [3.502768396064768, 51.569075344823659], + [3.514294053870973, 51.573236815890539], + [3.534827911356428, 51.580530896752123], + [3.553083484377182, 51.588766978519935], + [3.575383595939643, 51.593537612371293], + [3.582398009061147, 51.594660865394111], + [3.584219643631653, 51.594155325543213], + [3.607942988554533, 51.593037227010527], + [3.621352744447081, 51.589319057536002], + [3.62966219879374, 51.588993027167994], + [3.633623457731396, 51.589397428033806], + [3.6667812963753, 51.595229509270411], + [3.680753818464153, 51.600098013314742], + [3.682266273893295, 51.602211950565504], + [3.683804978928566, 51.614865092650028], + [3.68244572143456, 51.616296166199156], + [3.67653957781, 51.618287011455969], + [3.674148092913933, 51.620202621099814], + [3.67503147540566, 51.620523687864583], + [3.677095162910677, 51.618958205848116], + [3.681760776480477, 51.617280583645062], + [3.682815421376081, 51.620720381278254], + [3.680357643226644, 51.620961846265509], + [3.679527210912273, 51.619897151922736], + [3.678842379883243, 51.62000176227928], + [3.678645724282125, 51.62172135510626], + [3.676907908360645, 51.622492300953468], + [3.67262772415505, 51.622410419265663], + [3.668270874729357, 51.621369403324955], + [3.667638340676634, 51.621869380680515], + [3.673289767428679, 51.623239920290608], + [3.682524384649038, 51.623408482268736], + [3.68697501353886, 51.629011587166858], + [3.697481414355175, 51.636879191380842], + [3.698449603856393, 51.638594619693556], + [3.697288409133961, 51.639661107808266], + [3.697189793791433, 51.640984700342251], + [3.698453382137695, 51.642616410771062], + [3.701557334828018, 51.64390702786482], + [3.703878579744606, 51.644100420198477], + [3.70419316501441, 51.643545310240867], + [3.701666075702213, 51.643089821741398], + [3.69839534075307, 51.640471681772681], + [3.70157629663482, 51.637725026637241], + [3.703187316464576, 51.637639714647939], + [3.707284135604376, 51.640433929282572], + [3.705272112702036, 51.641900766023149], + [3.705469257666458, 51.642565585410338], + [3.708260976903685, 51.643462646250342], + [3.713733213879726, 51.642401401669581], + [3.714554675571559, 51.642869480535033], + [3.719247844253928, 51.648757210789441], + [3.718955773880762, 51.650331345712011], + [3.719106554533233, 51.650944732463287], + [3.716137621640417, 51.652543597070562], + [3.715055927605296, 51.653832748842987], + [3.716838882926793, 51.655195277571011], + [3.721113663351246, 51.65533356221507], + [3.722581793692803, 51.655975893861537], + [3.722391216436258, 51.663218288907181], + [3.719482990027668, 51.664975101781451], + [3.713788324438272, 51.665951355549602], + [3.710208583967406, 51.666483765016672], + [3.699332182905712, 51.671535622862784], + [3.689489200625616, 51.678106541487658], + [3.681921139622364, 51.687711962607089], + [3.678962971379133, 51.698425655717976], + [3.679266128830596, 51.707122994065003], + [3.681672340585922, 51.712275638822042], + [3.688763535190946, 51.719861602828722], + [3.69813481406361, 51.726022692589858], + [3.716505380897585, 51.735840177919563], + [3.724289970000457, 51.737336549484198], + [3.738388440397955, 51.737950663227522], + [3.741309161427254, 51.737056974092049], + [3.760214907488774, 51.741504883731743], + [3.763744810739257, 51.74255933325999], + [3.771261755439701, 51.743377559827188], + [3.789415951002031, 51.744108775820806], + [3.798718395709292, 51.743754709812507], + [3.816642620859516, 51.740646960389618], + [3.819838795629301, 51.741325269981978], + [3.82336545695498, 51.744273840351269], + [3.823835433225876, 51.746535576824598], + [3.822128395615245, 51.747515903647489], + [3.824554297226178, 51.748637059158227], + [3.822876433502056, 51.750080571563544], + [3.825410542566013, 51.751057001608899], + [3.827105178857499, 51.752936441386382], + [3.831243723527149, 51.755616805856711], + [3.839193895328422, 51.758230603836687], + [3.842477315227267, 51.756305011939972] + ], + [ + [3.807434928167713, 51.697299895855011], + [3.800201290217532, 51.696292613026877], + [3.798386374484465, 51.696787323354251], + [3.793346035257565, 51.695664744756733], + [3.789512263569663, 51.69343312927225], + [3.786291598612058, 51.68895325216107], + [3.787643486408366, 51.68801153877267], + [3.793042995344476, 51.689691507431142], + [3.803892062321069, 51.691070038124813], + [3.806017600101633, 51.690033171819962], + [3.803944611418892, 51.690697868272622], + [3.793088807909906, 51.68932746311858], + [3.781957704167261, 51.685934564382258], + [3.770368616485162, 51.680750505379571], + [3.754307529826442, 51.675372421226044], + [3.755142206715314, 51.674233378063818], + [3.758361712354038, 51.675297507127134], + [3.757477367372815, 51.673886486429659], + [3.749686765845635, 51.672406625571512], + [3.746088907430965, 51.673486923771968], + [3.735584977919429, 51.671543863723706], + [3.724596836449362, 51.668532355455639], + [3.725142434278681, 51.666150652520017], + [3.723581657260123, 51.665830167638809], + [3.723595385538581, 51.663503777503799], + [3.722717056261901, 51.663326997396759], + [3.723167435949184, 51.655972647389767], + [3.72443788504811, 51.655415329501075], + [3.728513790088962, 51.655166349299179], + [3.729212034268134, 51.654518800904881], + [3.728300254318095, 51.654410777967222], + [3.72689070686515, 51.651015869885171], + [3.727434942418104, 51.650328494595641], + [3.722233482670403, 51.650337785581442], + [3.721126979327738, 51.6492287463183], + [3.719853038517731, 51.649134841838716], + [3.714355726259042, 51.642238614202462], + [3.716547029930931, 51.640998203834208], + [3.714607154957182, 51.641259705485744], + [3.713292504867547, 51.639067933184982], + [3.715515598350693, 51.63814841133064], + [3.71743053163827, 51.638863231451545], + [3.718066233214282, 51.640524560437953], + [3.718134692850449, 51.639672507417373], + [3.719059313526747, 51.639200409520733], + [3.716193652177997, 51.63659833399705], + [3.709554497001309, 51.632407455164817], + [3.714583203041199, 51.629978104117399], + [3.717072152679554, 51.630473050692714], + [3.724267249213005, 51.627414873977173], + [3.730742115897444, 51.632912307690233], + [3.722786125828673, 51.636542868885584], + [3.724664943694809, 51.636606479932404], + [3.731254221569719, 51.633620508486828], + [3.731665716388207, 51.632261996917478], + [3.722250336328917, 51.624900667230385], + [3.708548886016085, 51.63117673610337], + [3.704184411412744, 51.628734666531301], + [3.707055860351062, 51.624451706626097], + [3.703691295908834, 51.621886535576316], + [3.70296328547766, 51.622420163914008], + [3.70525939962912, 51.623900141895497], + [3.704565593287718, 51.625340468901349], + [3.697514104461029, 51.628831656760511], + [3.690103805430903, 51.623034418654285], + [3.696450910149913, 51.619369299269124], + [3.698945796250096, 51.619632992684522], + [3.700169980615982, 51.620401731857712], + [3.70096050801164, 51.619938998359217], + [3.699027067982987, 51.618804698862931], + [3.696729582407053, 51.61860284114357], + [3.690339519724599, 51.621296323777813], + [3.687334002504661, 51.62172590623031], + [3.68625863461822, 51.619753546149667], + [3.686150625857355, 51.616665208964832], + [3.69401471685179, 51.616512320030544], + [3.6915893095865, 51.616022682153663], + [3.686628896363666, 51.616147314724344], + [3.684278244200344, 51.614849443987843], + [3.682367827362814, 51.600971811933547], + [3.683126841228435, 51.600763145215502], + [3.684639512860645, 51.597777132363646], + [3.688024895148843, 51.598500952266441], + [3.688363483002022, 51.600165972035278], + [3.689821643393231, 51.600015642271181], + [3.689599039409805, 51.597969585979826], + [3.692924034557165, 51.597758216497084], + [3.69928433589333, 51.599421654702667], + [3.700241124152643, 51.598152863678528], + [3.708441839340921, 51.594933872190303], + [3.710718401653816, 51.594761275128619], + [3.719308235629238, 51.595656512181606], + [3.719757834431746, 51.594820941087072], + [3.713398240651431, 51.594092471418818], + [3.71474445476482, 51.59189798906646], + [3.71675132913313, 51.591405486030204], + [3.720568474138648, 51.591771080054301], + [3.720452104314598, 51.592984730128634], + [3.726344349883963, 51.592324027148898], + [3.730053175090398, 51.592678930251466], + [3.736823955122758, 51.594994714189838], + [3.741722148471798, 51.594407064323477], + [3.745451481915085, 51.59621967223088], + [3.745308868301905, 51.597150630682457], + [3.74680158112616, 51.59687581101538], + [3.748141993572074, 51.597527207644326], + [3.749118983923569, 51.596940795656884], + [3.759269690538083, 51.597089646742504], + [3.761539382223396, 51.598982040098512], + [3.761201653195299, 51.599613082323373], + [3.774459787957237, 51.597189235283174], + [3.77645196577937, 51.598142939572291], + [3.778889891161053, 51.601191353846488], + [3.780567642499454, 51.601935951688965], + [3.788001397923213, 51.601948966025617], + [3.794793162938121, 51.602735432215226], + [3.796546955924934, 51.604239115779066], + [3.79805458458308, 51.604272280508013], + [3.799442671629967, 51.604921980575099], + [3.799257148765963, 51.605355169368835], + [3.800489237983976, 51.605411806725598], + [3.807792365811102, 51.605521677661713], + [3.809770905875515, 51.605018014634055], + [3.812662068666179, 51.6054724654851], + [3.820194537546945, 51.602484475770318], + [3.834832706722387, 51.605708575631319], + [3.835145552367944, 51.605074506188359], + [3.838925151029667, 51.605055157587302], + [3.838931263871844, 51.60585795103286], + [3.840113240411798, 51.60442239587141], + [3.841140098489064, 51.60359410145638], + [3.846696369508291, 51.603458761151622], + [3.84879806588601, 51.604222931544335], + [3.850183409545695, 51.604010406817466], + [3.846851226886059, 51.603188602198166], + [3.842687095607592, 51.603239536876252], + [3.841427803902258, 51.602808307016076], + [3.842064409079527, 51.601888074615438], + [3.84630847374867, 51.602502857587268], + [3.850277547567735, 51.602159687360789], + [3.85107366380832, 51.603569465604608], + [3.851026461498719, 51.602007580915078], + [3.855909119314195, 51.601015758266975], + [3.861938032212774, 51.600184917673573], + [3.868720037772642, 51.595726547742615], + [3.870548006686297, 51.597080634931494], + [3.914193999965438, 51.629243286656681], + [3.89698423777053, 51.632249255750125], + [3.895476750595554, 51.633317412753939], + [3.907463366309205, 51.640004138680048], + [3.918872504328327, 51.646349083097412], + [3.924819896593006, 51.646651450216694], + [3.933287156247149, 51.648536905879581], + [3.926317695277631, 51.647706365855797], + [3.924947674193305, 51.647117526612753], + [3.91881294048819, 51.646942293306765], + [3.917070088435027, 51.646100606636104], + [3.907013648529772, 51.64063033798255], + [3.898942481563207, 51.636359842006158], + [3.897940825432617, 51.636720959286606], + [3.893584835564296, 51.633524334715943], + [3.890361041634494, 51.632802115994885], + [3.889651302863204, 51.631600326747325], + [3.890685523321596, 51.643199024103723], + [3.885584041636843, 51.648562280245194], + [3.887244399088607, 51.649876874416762], + [3.884952058977602, 51.656400666666279], + [3.880832488296582, 51.657436968394045], + [3.87567350762325, 51.663164976323117], + [3.876836876249219, 51.667067920025524], + [3.867583218014798, 51.673278267273425], + [3.857436136534951, 51.678236552496486], + [3.848668666958526, 51.676332900332064], + [3.850092261798057, 51.67716470219149], + [3.846885021977221, 51.678314006324456], + [3.844637096217027, 51.67794559905871], + [3.846748233715681, 51.676783083515502], + [3.842541113508425, 51.678526678195759], + [3.824508334424692, 51.683523816211071], + [3.820395518483411, 51.684440404442796], + [3.818013925925749, 51.684331130326854], + [3.811839322992584, 51.68716874846104], + [3.818147678484932, 51.684699400517466], + [3.823464400062924, 51.684203411777901], + [3.825562160308961, 51.68764769697205], + [3.824634163584639, 51.690927232558714], + [3.817549217333315, 51.69596522952466], + [3.813211813015875, 51.697261995736909], + [3.807434928167713, 51.697299895855011] + ], + [ + [4.096672178547453, 51.666585596829371], + [4.095486216724115, 51.66580669560377], + [4.094695103789057, 51.666196232384955], + [4.094177159089449, 51.665823597409684], + [4.100414415042359, 51.663139933768797], + [4.098506559187691, 51.663704836070096], + [4.098158129091703, 51.663382236893376], + [4.10020844510075, 51.662513975112347], + [4.101723814718452, 51.660781108915351], + [4.105296163856929, 51.658111049657315], + [4.101892008399, 51.653984157129152], + [4.102625026779676, 51.655553833833736], + [4.100540458083504, 51.656146565658908], + [4.097639530319667, 51.652858858804585], + [4.096982755498483, 51.651915380104789], + [4.098901562154955, 51.650993552461706], + [4.101085955498038, 51.653079830303554], + [4.096566419502043, 51.647543216151263], + [4.090556212192581, 51.643968779583659], + [4.083859530131866, 51.642553117926774], + [4.071030334144944, 51.632489672084127], + [4.06281921565174, 51.629225679464682], + [4.057171826727993, 51.628053846896428], + [4.049834216130829, 51.631232226012067], + [4.038789151487494, 51.627330758279598], + [4.034667645085032, 51.624954002115928], + [4.029243870324151, 51.624603278022519], + [4.016092385170895, 51.620609322891141], + [4.010285320506402, 51.617929543785465], + [4.006899189664338, 51.617497248322849], + [3.991722549117367, 51.618169417057736], + [3.985917736078056, 51.614860333656928], + [3.968059780161747, 51.614349800404], + [3.962151427297923, 51.616508179600274], + [3.961670635898867, 51.617456754436205], + [3.948576349062761, 51.625274257127877], + [3.94662942659542, 51.624944210922507], + [3.940054716435587, 51.63438486656414], + [3.937415311205796, 51.634652851597551], + [3.938176666275357, 51.635827968763735], + [3.935433777768439, 51.636037014593086], + [3.929867954815636, 51.629638074154556], + [3.92827895452654, 51.628715985117267], + [3.925525822561978, 51.628280963093239], + [3.926365128022879, 51.630556063141611], + [3.919359683844907, 51.630685027638691], + [3.917836251964945, 51.628618360043546], + [3.914377381685989, 51.629211239914362], + [3.870729920939014, 51.597037527749549], + [3.868896111803593, 51.595598603421635], + [3.873250207752166, 51.592332578282665], + [3.875878599855744, 51.589239076721242], + [3.881043376486742, 51.580951594839163], + [3.888151649463265, 51.575026292362168], + [3.888993995247965, 51.574407862229435], + [3.890463047617263, 51.574665715864363], + [3.8914550008229, 51.576300886978629], + [3.892513352095563, 51.574584981487753], + [3.894293070013874, 51.574576635814893], + [3.888766782991528, 51.573589511747507], + [3.889325721940045, 51.572212125267711], + [3.892838612381238, 51.572664298168441], + [3.89370080756561, 51.573215709112652], + [3.893978438825916, 51.571730143808459], + [3.893078491955418, 51.572417519218433], + [3.892387221144581, 51.572213330672703], + [3.893303306288342, 51.568359241613578], + [3.896589111172359, 51.564272717669589], + [3.897645121098458, 51.563566094145351], + [3.899143241488189, 51.563549337983169], + [3.899245738635271, 51.563075879564444], + [3.896935753317962, 51.56264884869907], + [3.89689743677084, 51.559974556088441], + [3.891987004967043, 51.557987158580893], + [3.872661596766082, 51.555245630127864], + [3.87151463536506, 51.553481041544082], + [3.864642431265103, 51.546804285640889], + [3.865495261517855, 51.54484410971282], + [3.869415702126154, 51.544798399114541], + [3.865697241199971, 51.544379845436232], + [3.865926084870547, 51.543853821651538], + [3.868489960797736, 51.543865379966064], + [3.866093187517431, 51.54346970752848], + [3.866859583055322, 51.541707931860465], + [3.867810916439716, 51.540043694815907], + [3.882473597721924, 51.542724700089117], + [3.88665406358635, 51.542812086502167], + [3.891348863052677, 51.541318844065117], + [3.898273724537126, 51.541127010713311], + [3.901064112958731, 51.543555325476056], + [3.907017306873596, 51.543690507684104], + [3.912488713851621, 51.545705258413719], + [3.918375673385427, 51.544000944096091], + [3.925107466115692, 51.544056296651647], + [3.927247340091766, 51.54356982723305], + [3.931012962372137, 51.538325715051236], + [3.926410399177483, 51.53785617652855], + [3.928198948884811, 51.537225840820639], + [3.933471446625082, 51.531514588051799], + [3.940456983250519, 51.525481821884377], + [3.943762314387819, 51.526232185783847], + [3.948653874402358, 51.527986145348386], + [3.954459567011883, 51.529194636729386], + [3.954361343051716, 51.529859300762048], + [3.957049922046328, 51.530736681337203], + [3.97105484335811, 51.527721718890085], + [3.973820407293221, 51.527043606197125], + [3.973708988423524, 51.527870532263385], + [3.9897361617786, 51.524185803321551], + [3.993762608458826, 51.522088311811444], + [3.995642106533094, 51.52178732202934], + [3.997041574083666, 51.522120094150694], + [3.999554760303381, 51.520893761215163], + [4.003135821354583, 51.521706673586941], + [4.003341401005035, 51.519992106753172], + [4.002575280921205, 51.51908407131836], + [4.002565008784971, 51.515836224854134], + [4.00359530447841, 51.514594196075784], + [4.004421782758595, 51.514611922305484], + [4.004381526207429, 51.516353884268526], + [4.002928851736688, 51.516423989611837], + [4.002666746627497, 51.517927164603236], + [4.004983397652378, 51.518494579964234], + [4.005723977479219, 51.513823488623913], + [4.006139652037265, 51.513947208795344], + [4.006586949821219, 51.51900364050794], + [4.004405485856624, 51.521491070792891], + [4.005515817578301, 51.521486830549705], + [4.00634757917828, 51.520315980245016], + [4.007631646986201, 51.520242275862643], + [4.012950087514586, 51.518247216803111], + [4.01361363064967, 51.519730601893905], + [4.017638754909306, 51.518816527411367], + [4.021240836774808, 51.512439900196824], + [4.024734645485363, 51.511682389209632], + [4.025028461520708, 51.511029351548636], + [4.038293595354762, 51.505504295146046], + [4.042673020928142, 51.502643234502763], + [4.04729075881643, 51.502187149780639], + [4.051577961495133, 51.503335544543582], + [4.053679123359769, 51.502788288772997], + [4.056799751367672, 51.500272642407936], + [4.057420986353775, 51.498587565805259], + [4.055343179533013, 51.499539758237304], + [4.055451365196555, 51.50040890940214], + [4.053176920129058, 51.50217613407095], + [4.052723078130934, 51.501959476928484], + [4.053972015100197, 51.498553728455462], + [4.056130965416642, 51.498163987887544], + [4.057870321653532, 51.497171060743121], + [4.057352503881222, 51.496810187149229], + [4.0541887852856, 51.498078446909432], + [4.054023666155403, 51.496918653269212], + [4.055289571127004, 51.496172470411381], + [4.053612062219353, 51.496867710819593], + [4.052713454706537, 51.496507116849685], + [4.054686561994331, 51.492470899883379], + [4.054322128771315, 51.490699787340816], + [4.055388276495969, 51.490732031760224], + [4.057199580926561, 51.489412053687232], + [4.058439175797953, 51.486796180849026], + [4.057554511333779, 51.48366164748294], + [4.056231413762842, 51.482106293401081], + [4.054859667913407, 51.481539917086856], + [4.056968014208427, 51.479618658655923], + [4.058934013885141, 51.475285463608238], + [4.060380579114708, 51.474648368885838], + [4.062430903005426, 51.473683257716161], + [4.071318537637716, 51.465742291411793], + [4.076220125035704, 51.461262923952482], + [4.080259808038572, 51.458600627970455], + [4.084153158564352, 51.458315122880748], + [4.093243540784638, 51.446320330509927], + [4.101309648232792, 51.44504469160551], + [4.12395021099344, 51.435944924187297], + [4.127378604165474, 51.436578156077225], + [4.129471853615632, 51.435398743807276], + [4.133119793137531, 51.431401014789351], + [4.139004595264473, 51.431002366031898], + [4.140468054624225, 51.431847530963367], + [4.144172627372372, 51.431901833725902], + [4.146749284262604, 51.431694466578215], + [4.153423468917739, 51.432994321442081], + [4.158686254250834, 51.435755873801583], + [4.16397277783207, 51.437134382251919], + [4.181451715446562, 51.443990218479613], + [4.187525279110121, 51.443046649146382], + [4.189440145867131, 51.443512894420735], + [4.191373595223062, 51.441770003672062], + [4.196514944422274, 51.441227825194687], + [4.200389037312422, 51.44169470501685], + [4.204516994100091, 51.438482356236506], + [4.210297208730105, 51.437783422733112], + [4.21338720854316, 51.438751669119455], + [4.214803286369393, 51.436887076077014], + [4.217383024606648, 51.437538285643356], + [4.219065095436489, 51.436898486488232], + [4.221646022427369, 51.437217636639787], + [4.223053615265068, 51.438670134721768], + [4.219546929574307, 51.456696273850895], + [4.222456923691236, 51.463629266059733], + [4.217613310886774, 51.487676201591803], + [4.216476424175679, 51.49025470245433], + [4.213754530256729, 51.492006083978978], + [4.176686901471503, 51.501875763884691], + [4.172816022523957, 51.504664316500275], + [4.17222120244851, 51.508415886922116], + [4.165739929520683, 51.510463481429483], + [4.16169441066701, 51.512858737955113], + [4.161030355413192, 51.514866074404637], + [4.16296810713397, 51.512360753872031], + [4.169515802312747, 51.510230813477243], + [4.173048457106676, 51.51002261941121], + [4.173456475901605, 51.5105843484913], + [4.170714481377549, 51.511460088556291], + [4.170314042113737, 51.512156580787781], + [4.165830173154791, 51.513059277802007], + [4.168085538954013, 51.513692938268619], + [4.174023069973551, 51.512060463371739], + [4.176118592447062, 51.51510128731374], + [4.168520799990449, 51.519069346061741], + [4.163935770453422, 51.52282463998263], + [4.15282888728751, 51.52315809891622], + [4.150204455906491, 51.52406347079355], + [4.146841876298018, 51.522021361255618], + [4.143988165228576, 51.521384621417781], + [4.141327486822791, 51.5214254067455], + [4.134746179294727, 51.526133082413239], + [4.126162261358679, 51.523940493062305], + [4.117997444197382, 51.523768552782428], + [4.108285361157261, 51.524634333017325], + [4.102454610398477, 51.524433863170103], + [4.100990760578163, 51.525646779171225], + [4.098791257525333, 51.525084535467663], + [4.093352024638452, 51.524906100597377], + [4.092342607295429, 51.5250717680374], + [4.091931293077709, 51.526663968202996], + [4.079701520996266, 51.527367513669162], + [4.079505661119512, 51.525413438858017], + [4.073822706719158, 51.527315106155747], + [4.071289121872736, 51.529647562902632], + [4.073068626182175, 51.531357080230698], + [4.070095657967135, 51.532066009334748], + [4.068018227195894, 51.533402115902597], + [4.066002711231322, 51.533239661317083], + [4.064355213622925, 51.534337456634972], + [4.059786910294475, 51.541056334932918], + [4.061172489011041, 51.543219697671887], + [4.06074665291781, 51.544042176192406], + [4.056050087759235, 51.546508526772691], + [4.052297230835715, 51.547231712866108], + [4.049073153377607, 51.552589354655488], + [4.033219487091019, 51.554308296603459], + [4.031875967771879, 51.555401637103898], + [4.027531552380968, 51.556423364560445], + [4.030447942490817, 51.561290804569673], + [4.030119959290497, 51.562843495936285], + [4.026716086092874, 51.565226522361939], + [4.023138577065107, 51.567373591650068], + [4.01300339734596, 51.570374756983647], + [4.005447764395213, 51.575692417796887], + [3.989829645853855, 51.576368430640414], + [3.983872096148027, 51.580876952557063], + [3.984728997762216, 51.587061385488774], + [3.987830080595263, 51.591018650865671], + [3.990007549094865, 51.592635289794906], + [3.994734160170731, 51.594111687983556], + [3.995287222588952, 51.593867116460892], + [3.994350576442201, 51.593185363226958], + [4.003884861411171, 51.593700230996689], + [4.002898203148391, 51.594430857089236], + [4.008700110373407, 51.596143520171815], + [4.012007162818739, 51.595034505143644], + [4.019941410182149, 51.597801136105076], + [4.023782773558847, 51.596881775111349], + [4.03748756318165, 51.602976632470892], + [4.038685275066812, 51.604373647676027], + [4.039656736846388, 51.603941020789499], + [4.043212134976526, 51.604143172620347], + [4.043975431081068, 51.604509224428526], + [4.045825425044312, 51.603925557572246], + [4.053592081192478, 51.60899125487785], + [4.061976800195691, 51.609771822970103], + [4.063745335211059, 51.611622794497961], + [4.068903626930598, 51.612096067956365], + [4.074556507259915, 51.613469968819132], + [4.083463406817975, 51.611764241893439], + [4.085094981458521, 51.612525929684878], + [4.101488809342111, 51.610210087205012], + [4.103833910833032, 51.609223075479129], + [4.104370461170728, 51.606626987999725], + [4.105466372971691, 51.606609267562014], + [4.109166905866907, 51.604513698807736], + [4.108371154573696, 51.604062820183174], + [4.105752444137689, 51.60543702352399], + [4.105214283876472, 51.60506155739693], + [4.107129334194896, 51.603189036208889], + [4.108257998460801, 51.602588011032786], + [4.11017300614438, 51.603970026324269], + [4.111292815358911, 51.603366086813992], + [4.116589455956996, 51.60221086540961], + [4.127872879433252, 51.601904784704615], + [4.140175725454247, 51.603147375128792], + [4.144889190913656, 51.603908014304459], + [4.149351967137936, 51.603742981593051], + [4.151188637166111, 51.603062952720613], + [4.156189431617197, 51.603682382338199], + [4.161710850474911, 51.605262648483233], + [4.17099627126912, 51.605951858528542], + [4.173483616321835, 51.605470315535484], + [4.174496118672871, 51.607617203615256], + [4.174067246736472, 51.608359272118321], + [4.168786191408475, 51.608971935376367], + [4.173729590231942, 51.611371192530527], + [4.177481390482471, 51.616438902380551], + [4.17366876276408, 51.617269396550803], + [4.169519253241112, 51.616644624769613], + [4.164341450341956, 51.613595236798695], + [4.160464043231052, 51.614857383182574], + [4.158258861546335, 51.612979846400769], + [4.154071003791092, 51.612522511186057], + [4.142195048412529, 51.613474813949693], + [4.135876460679067, 51.612937560018487], + [4.126263404254102, 51.613115006376148], + [4.117601719317128, 51.62463578083883], + [4.116941278469362, 51.625018893410228], + [4.114112568674265, 51.62430537643008], + [4.112375969432985, 51.625698097158825], + [4.112553245621123, 51.626783155617716], + [4.108673064194057, 51.629681629974577], + [4.10469171173423, 51.630145331761014], + [4.10370010730144, 51.629655520276891], + [4.100481387872534, 51.630981857504196], + [4.099398069845614, 51.632819841707274], + [4.098499998372099, 51.638807152233028], + [4.100301516834763, 51.641148327392784], + [4.097757786187252, 51.642538359766341], + [4.099923071099635, 51.642141418551851], + [4.100580157564303, 51.64282548897048], + [4.098529970507359, 51.643376366264988], + [4.099561244608433, 51.643384549316984], + [4.105283052992374, 51.64137141103226], + [4.103938048136296, 51.643629485474584], + [4.107212725036372, 51.646331051797844], + [4.116723696019424, 51.652258671930362], + [4.120255220282948, 51.653595527686512], + [4.124167847012872, 51.653580501642089], + [4.137163106197947, 51.65245788792366], + [4.148728494571285, 51.65007883485098], + [4.168552997862296, 51.643640976879951], + [4.192900639474309, 51.634688792471209], + [4.193176004004201, 51.638762994022969], + [4.190610865139339, 51.643521035418019], + [4.184858543722966, 51.647174407937236], + [4.177212186378654, 51.649628607196199], + [4.174838599364707, 51.647380574650057], + [4.172647284569804, 51.647145512035188], + [4.156478145057642, 51.653817279623908], + [4.155928728752434, 51.654429216002022], + [4.159421954733743, 51.657903101642702], + [4.157722745522388, 51.659102790513423], + [4.156772298599745, 51.659058287923983], + [4.152125880273264, 51.655191282015721], + [4.137793231291345, 51.65740112101463], + [4.138593634684947, 51.65916773025512], + [4.146694176351248, 51.659427978453877], + [4.157506232668553, 51.660800405791136], + [4.161666042973225, 51.660350959563253], + [4.161351249123204, 51.662718142049556], + [4.155960644382788, 51.662295159855574], + [4.155015760935035, 51.66372511320413], + [4.152366088558543, 51.663938895902575], + [4.143044934082342, 51.663645266814463], + [4.137574741522098, 51.66198457677104], + [4.143064436954072, 51.663866977107766], + [4.161380500794476, 51.664899161228853], + [4.159266239982245, 51.665165775889619], + [4.159175428092134, 51.66555289658718], + [4.155729418001328, 51.665540814798959], + [4.160262159446569, 51.667245265522119], + [4.159582711645762, 51.669513811075845], + [4.15601877134513, 51.67373871821399], + [4.153795956934673, 51.675750226134944], + [4.1519478737179, 51.676189836427326], + [4.14993523645531, 51.678374640920602], + [4.143016585089139, 51.67525349675411], + [4.138864110797908, 51.676755948080313], + [4.108878487040239, 51.673766860667932], + [4.105056884941229, 51.672837254902994], + [4.104696114017381, 51.672003773662688], + [4.10223150193019, 51.670972873421825], + [4.100633928321648, 51.67116285917951], + [4.095336381558201, 51.667468850840422], + [4.096672178547453, 51.666585596829371] + ], + [ + [3.707316355606824, 51.509163905457292], + [3.703354930006198, 51.512511281325061], + [3.711213789161334, 51.51280838096438], + [3.711793855999878, 51.513102146657431], + [3.713123829560978, 51.513354306354536], + [3.713164109920747, 51.513238125369767], + [3.712317785146777, 51.51250106320343], + [3.712463243060051, 51.51102125692104], + [3.714114155693853, 51.510934377759305], + [3.713836773089795, 51.512707549098259], + [3.713398704804001, 51.513028327935181], + [3.713312770004081, 51.513394404385586], + [3.713915079236985, 51.513566632149136], + [3.713949054495484, 51.513831520915701], + [3.713298636961948, 51.514214535896464], + [3.711206249006211, 51.513341360852884], + [3.708686227911142, 51.513509586476999], + [3.704882569258245, 51.516316824998711], + [3.711987752724611, 51.517865552087756], + [3.715011639933989, 51.51952766314453], + [3.720586353203201, 51.522332221315494], + [3.723394463140342, 51.523173941508688], + [3.726118633780659, 51.523755053505496], + [3.729030252832608, 51.523409714782012], + [3.728153624113485, 51.524465659823846], + [3.72601251121823, 51.524743282057251], + [3.72506189380887, 51.525720872330673], + [3.726553769104131, 51.529961475667577], + [3.731343283220306, 51.53494194539774], + [3.732357333457523, 51.538423480909984], + [3.734396592694159, 51.540173963522463], + [3.746270773190891, 51.544686432688188], + [3.749629290530016, 51.544174740792819], + [3.750407780821434, 51.546074567483885], + [3.753645927011985, 51.547558388571545], + [3.763736576997085, 51.545531594967258], + [3.767520032448304, 51.546007029206592], + [3.770173144195878, 51.543854897652515], + [3.770186544154162, 51.542608458172346], + [3.780949506819405, 51.542738215987455], + [3.792467282138055, 51.54108578225366], + [3.801178108655617, 51.542204003926877], + [3.805533731047135, 51.545366108630908], + [3.812948569880134, 51.547232942172414], + [3.814320567396361, 51.546989167873782], + [3.814187685154911, 51.54805234808606], + [3.815157855914018, 51.546826796839795], + [3.815125308327675, 51.547878044128012], + [3.816255180253037, 51.547062105847466], + [3.816964476413185, 51.547214199923914], + [3.816581344202604, 51.548813043475221], + [3.817900771193664, 51.547715333246771], + [3.820160153707798, 51.547859464385894], + [3.820303551423045, 51.546252477052498], + [3.820843863466929, 51.546296470277994], + [3.821233796657308, 51.548108198362947], + [3.820578157556838, 51.548212511450778], + [3.820631918083005, 51.549272754577956], + [3.822469329292816, 51.5483944230795], + [3.829628468688835, 51.548435636488861], + [3.835728724586395, 51.547399475495332], + [3.845366375915831, 51.543711013256647], + [3.845953051092859, 51.541305057382871], + [3.849206050137567, 51.539593979840483], + [3.860246252156555, 51.538516252961152], + [3.865871134294201, 51.539531129141508], + [3.865115890904134, 51.541477027175461], + [3.864572536885685, 51.543001787274086], + [3.861531314870544, 51.543101392993734], + [3.862039097337297, 51.544120536029695], + [3.859092574004436, 51.543849383618877], + [3.858862639310993, 51.544387775838018], + [3.853738920131141, 51.544417393343835], + [3.846790848469728, 51.549181939489713], + [3.844564832903763, 51.549741402876087], + [3.844523237716989, 51.551510893440742], + [3.836801803954158, 51.555919369755316], + [3.832881049167958, 51.556303977837914], + [3.825310081854248, 51.555707001355991], + [3.824795763040124, 51.55508255854793], + [3.81500959470483, 51.553479014343758], + [3.815259307536786, 51.553152414734662], + [3.813365675353509, 51.552605526858898], + [3.813092335959248, 51.551449141215379], + [3.810768004971668, 51.554449841890083], + [3.809175133584981, 51.554053610642185], + [3.811278713568734, 51.55107977298794], + [3.810151018599862, 51.550611713912119], + [3.807527435565242, 51.552910332214005], + [3.807242485984818, 51.554572235151625], + [3.80552408740488, 51.554665342563844], + [3.804976772938653, 51.554656065053422], + [3.810114892001351, 51.549805394145729], + [3.808867221771018, 51.549854220028195], + [3.807827261955377, 51.549274557054986], + [3.805925674255235, 51.548026437880615], + [3.803546702141146, 51.547774037934602], + [3.796681827241869, 51.54928130663825], + [3.787397352141949, 51.550535843585635], + [3.787041297761819, 51.550033501680332], + [3.775092678168201, 51.554408482801236], + [3.761858410013463, 51.555015850525898], + [3.761871924508156, 51.554478223573312], + [3.760364296589879, 51.55508432505686], + [3.736426332609168, 51.546808735540658], + [3.729974613416463, 51.542147259207617], + [3.71477715375438, 51.53549387370078], + [3.71191140442428, 51.533428695812724], + [3.705858167171342, 51.526680118678755], + [3.704498400813014, 51.526024946106816], + [3.702975080686822, 51.526133003214234], + [3.700405040855927, 51.527735900312564], + [3.698374031238538, 51.534499787176557], + [3.70169832607005, 51.541784702840374], + [3.69891592575663, 51.547308373524444], + [3.688459460244489, 51.556090962305262], + [3.691803377219238, 51.557730069780767], + [3.695996957457156, 51.562100082461711], + [3.70065917419589, 51.566360227263807], + [3.700200208137078, 51.566591471087172], + [3.69791633782221, 51.565194904558936], + [3.695332996564482, 51.562135671580371], + [3.69200022804335, 51.558609559849948], + [3.691243075605207, 51.558883714994195], + [3.688826708552885, 51.557821473091529], + [3.689418630624113, 51.557096088550708], + [3.68635560209288, 51.556910235618766], + [3.67783561744758, 51.560599124138733], + [3.671878786357495, 51.56465915483632], + [3.663766056038834, 51.567198645392239], + [3.655035514736227, 51.569309658288198], + [3.653286164046786, 51.570024021298643], + [3.651306038401105, 51.571928006232874], + [3.649980874212663, 51.574762055128332], + [3.650072413386491, 51.576370835127889], + [3.645757024873122, 51.581441004897471], + [3.643955726659764, 51.584971675853396], + [3.644334010219179, 51.586584896495857], + [3.646470035561443, 51.587278761845347], + [3.645734122038624, 51.589008457637988], + [3.640876279900414, 51.588435928516638], + [3.634913549489901, 51.586892459778028], + [3.62987992321454, 51.585341963048961], + [3.627877749848433, 51.584060222543386], + [3.628261256035819, 51.579823918342683], + [3.627504446265947, 51.577652846475871], + [3.628604969449215, 51.576003932447421], + [3.628051021478339, 51.574584785660335], + [3.630284891760075, 51.571566507576726], + [3.639507781721374, 51.565594676502783], + [3.638990349036264, 51.564481290237083], + [3.640870274489365, 51.563104691238792], + [3.638665008280665, 51.563385341787686], + [3.638779755800653, 51.56285309531988], + [3.641448945296403, 51.562575711364509], + [3.65030822866875, 51.558977746121172], + [3.653025875434021, 51.558699874237952], + [3.650014200874709, 51.558853763201689], + [3.644764721287472, 51.560403388272796], + [3.64395673842798, 51.5597587931316], + [3.648388398970545, 51.557764237655668], + [3.650287821729595, 51.557604558295353], + [3.650521376954802, 51.558065480935305], + [3.653647464222527, 51.557311732799185], + [3.653702051750433, 51.557713965715728], + [3.653858859360702, 51.557194841998125], + [3.656636448676383, 51.55656642275197], + [3.659624636757071, 51.553786104970904], + [3.665405657522984, 51.550886087423187], + [3.668762995083769, 51.550382846182998], + [3.6635972835852, 51.548542167845937], + [3.664305485472487, 51.54833863386375], + [3.669722062484662, 51.550293306957307], + [3.671611072068076, 51.548135483503188], + [3.667816233902121, 51.545017897490816], + [3.666752998758897, 51.542475380524102], + [3.66815667595238, 51.542234103147308], + [3.669440694566535, 51.5450573594456], + [3.672479828811516, 51.547252283895489], + [3.677329688913014, 51.540541446691989], + [3.680202384432286, 51.534496100013747], + [3.68277956938274, 51.529613213343367], + [3.687399019532244, 51.524072446904015], + [3.697777558191683, 51.515637120167241], + [3.700777804617999, 51.514074416589544], + [3.702108036086076, 51.512568418983591], + [3.701429902978003, 51.512495692274619], + [3.70071602631655, 51.511700418718121], + [3.702073691470384, 51.510100941507218], + [3.703507154973914, 51.510630918759063], + [3.703202994151066, 51.512019607834475], + [3.706430048080632, 51.508822236556085], + [3.707316355606824, 51.509163905457292] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 11, + "statcode": "PV30", + "jrstatcode": "2021PV30", + "statnaam": "Noord-Brabant", + "rubriek": "provincie" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [4.872202048498835, 51.412924782895381], + [4.873107442353534, 51.412418839543207], + [4.871936388916538, 51.412163153365846], + [4.872380836288886, 51.411500929989359], + [4.869747386666706, 51.411159116944454], + [4.869233451310627, 51.411785695688096], + [4.870577958937361, 51.412740880485778], + [4.871487527483301, 51.412413666409272], + [4.872202048498835, 51.412924782895381] + ] + ], + [ + [ + [4.595965752177372, 51.701084317568281], + [4.569524441936701, 51.696397529878162], + [4.567226970044233, 51.69533428471081], + [4.554902180943417, 51.693215524429178], + [4.545346142482303, 51.693315344827987], + [4.545140924409411, 51.692001235770938], + [4.543927803974684, 51.691805972021868], + [4.54306949238262, 51.693811609627936], + [4.54432934831355, 51.695127019357422], + [4.554929715841261, 51.696854651380306], + [4.572305241532084, 51.700072930297495], + [4.579641085495622, 51.700035317958552], + [4.589802979972217, 51.702347190989798], + [4.599473924320542, 51.703048652054036], + [4.600467264800496, 51.702696623707403], + [4.595965752177372, 51.701084317568281] + ] + ], + [ + [ + [5.535633951685767, 51.816574372520584], + [5.540929860603062, 51.816307602231447], + [5.545284600185918, 51.817434346204273], + [5.548628776017416, 51.819802721171314], + [5.551264654253695, 51.824130818312938], + [5.552147256475513, 51.824967220945062], + [5.554824362126821, 51.826560161900844], + [5.558158446060816, 51.827526703310383], + [5.567879862140896, 51.82778327798399], + [5.576791948636152, 51.828151804853171], + [5.588848469322524, 51.829699571339496], + [5.597976692088245, 51.828049440964442], + [5.606235394764126, 51.825300030260145], + [5.617812960464265, 51.820055577583396], + [5.622159708226214, 51.819211027478858], + [5.625896762531876, 51.81922971611727], + [5.635214760805262, 51.819543678345404], + [5.641304630629166, 51.817891908641741], + [5.644216044575057, 51.816036793988459], + [5.646574712714716, 51.813030357788641], + [5.649901325722949, 51.806136938855374], + [5.653913833690632, 51.801151832520027], + [5.657493871237826, 51.798030097128468], + [5.663350879950012, 51.794534424312467], + [5.668407039860848, 51.792916972335732], + [5.674103353068956, 51.792449658464818], + [5.685789797724367, 51.791193146073127], + [5.69371623384527, 51.787740957818592], + [5.696500871638297, 51.785466669340224], + [5.702309402220872, 51.778143603218453], + [5.705976619218562, 51.776255096441993], + [5.71123002358922, 51.77503386190299], + [5.721904814757056, 51.774826466642118], + [5.729745453380015, 51.772851047821192], + [5.732024952250011, 51.771893849086482], + [5.735681702421438, 51.768914116750473], + [5.740779337336003, 51.763247941599815], + [5.745238631392996, 51.759144492800083], + [5.751709486853597, 51.756043168926162], + [5.757958622469768, 51.754188221247098], + [5.769298626237355, 51.752347156118667], + [5.779665592616143, 51.75221195800912], + [5.790534392359923, 51.753509054383727], + [5.80946759813799, 51.756533932124043], + [5.82149520166704, 51.757445283342498], + [5.84241595166262, 51.758812088827924], + [5.85214965002547, 51.759317376352719], + [5.864468921821121, 51.757681721862099], + [5.870798793399125, 51.755335538942852], + [5.871166279613224, 51.755138243585193], + [5.879560505515812, 51.749913597116318], + [5.880490931117045, 51.746892089410004], + [5.881609418502382, 51.741545973447046], + [5.883781858440673, 51.736529662429078], + [5.883979156845077, 51.735437325516472], + [5.885404117649372, 51.728314187689357], + [5.887959024370979, 51.725192174760942], + [5.893782660189146, 51.722063697280213], + [5.89956679817331, 51.720189938057686], + [5.912001905602455, 51.717876576285228], + [5.919469627269011, 51.717671498730155], + [5.933784909390821, 51.716140398780276], + [5.946753594609254, 51.713432217740646], + [5.951829717890186, 51.71170058000061], + [5.955416630461113, 51.709131529289706], + [5.956254824465302, 51.70660595829731], + [5.956376371456865, 51.699633034715092], + [5.961395304072582, 51.687099597717634], + [5.961888365367649, 51.685857972249899], + [5.963395057780081, 51.68165799373719], + [5.96458668960619, 51.675573345208939], + [5.964138907584315, 51.667496503324287], + [5.963454073503478, 51.662988469883175], + [5.963482065513631, 51.657323610922006], + [5.964855751888707, 51.652732365727623], + [5.967469602354984, 51.649284831082959], + [5.972127375384033, 51.645772231936789], + [5.97660701868218, 51.643783110859111], + [5.98212203628463, 51.642519692944965], + [5.9960164299997, 51.636870310318919], + [6.004475470400639, 51.631774187932791], + [6.019979894169951, 51.621921141657566], + [6.022659502797508, 51.618851502870967], + [6.023853060154561, 51.616125363044041], + [6.024047087282631, 51.600760469013373], + [6.026281488542442, 51.595576852570417], + [6.030723494222655, 51.591518368976637], + [6.033478344412656, 51.589610806678358], + [6.038660328715386, 51.584130893288155], + [6.039717894333351, 51.581615959589044], + [6.039409759169988, 51.579128685057015], + [6.037818242490852, 51.574114761005454], + [6.037870396661875, 51.56941097115142], + [6.041452863566222, 51.563647447677212], + [6.048120780938238, 51.55846254527134], + [6.046425104816427, 51.557641015367409], + [6.044581972474964, 51.559015296896355], + [6.042866160624913, 51.558694624744362], + [6.044327753570236, 51.557447524903736], + [6.040912939290031, 51.55663044817112], + [6.037307932509262, 51.558149273823034], + [6.034320654226921, 51.557497267068207], + [6.032735252097308, 51.556685211977246], + [6.033687760859497, 51.555447475594562], + [6.031668914402318, 51.55233882993096], + [6.018212040092686, 51.563334678842871], + [6.011519443407857, 51.566649134828943], + [6.005099077822031, 51.569824999143911], + [6.00425287174482, 51.570243516868445], + [6.003052659736832, 51.569851481099903], + [5.991108131473628, 51.566039893958539], + [5.973386866380563, 51.561063332424688], + [5.952381460508784, 51.556973319301676], + [5.935445013985715, 51.553600192569768], + [5.917840793306254, 51.552641204959237], + [5.906662667982995, 51.552030865633412], + [5.891466194122831, 51.56020467920542], + [5.870892475539412, 51.56264419296317], + [5.838238544727385, 51.566414614417333], + [5.847686124542141, 51.525295239991948], + [5.851018956588637, 51.510844066390256], + [5.852573783724675, 51.504144422511139], + [5.860714493836522, 51.49198032931303], + [5.871695277412893, 51.450111962744892], + [5.874965974912467, 51.44655771938735], + [5.875364308078457, 51.446130912599344], + [5.876591443554864, 51.444815803226646], + [5.876660739111927, 51.44474153090146], + [5.879916780113952, 51.441247477745215], + [5.902907788937689, 51.416614969159134], + [5.920002210633142, 51.397890140652351], + [5.93128759817866, 51.384752673623936], + [5.921229770779012, 51.379163618705334], + [5.919052034072652, 51.377953146048796], + [5.895838392810621, 51.365043717358311], + [5.894552559399289, 51.364337839052041], + [5.878131726649579, 51.355229953914446], + [5.874543225211783, 51.353312722140672], + [5.87035964709519, 51.352534962694868], + [5.868258244392013, 51.35213743179326], + [5.858466768011888, 51.350294745248831], + [5.84019376976774, 51.346877060292606], + [5.78825162697093, 51.33718254661423], + [5.771061098314791, 51.333920914205009], + [5.770448694285633, 51.333804585054828], + [5.760092848187906, 51.331837899172235], + [5.747064295106205, 51.329362478626614], + [5.745895788606013, 51.329142038124239], + [5.713650142901218, 51.32301163103832], + [5.701730252567009, 51.320743650063491], + [5.672110862804169, 51.31509400880806], + [5.651876216089847, 51.29774164704434], + [5.643996789033954, 51.290575485414742], + [5.625972275701415, 51.273601596863799], + [5.623480663082685, 51.249108777749925], + [5.623467455437837, 51.248997911673918], + [5.618781643490283, 51.229425273722178], + [5.602195694343737, 51.22585601620829], + [5.594414455882214, 51.224180388431733], + [5.59432066365995, 51.226073684886892], + [5.566045354191217, 51.220909401802416], + [5.560450682651049, 51.222327321724492], + [5.556172741547481, 51.240337109912382], + [5.554866457445475, 51.244497289638957], + [5.556603782139145, 51.25085058964811], + [5.555986007392147, 51.254389506085495], + [5.55737084512383, 51.257182464952358], + [5.556637635141202, 51.257475531052989], + [5.556769190338794, 51.26006024593886], + [5.557305514724797, 51.260052321583572], + [5.557930625653756, 51.262463833279085], + [5.556695240459947, 51.263127655299307], + [5.557177307397214, 51.264299220147748], + [5.556214832952288, 51.266643970867619], + [5.544588927433281, 51.271187935850179], + [5.528685389928694, 51.281756550044662], + [5.519006400561942, 51.289475247712375], + [5.515780662363492, 51.295199049117066], + [5.515773965164616, 51.295202501912975], + [5.484859405698999, 51.299999939722767], + [5.483016576921514, 51.300164673353663], + [5.483199356544554, 51.298645514112756], + [5.47956902540616, 51.296848751810089], + [5.477614038892383, 51.294968148943504], + [5.476887624668019, 51.29139133367832], + [5.470230946311599, 51.288149860066937], + [5.464836298669559, 51.284565326842575], + [5.441781616606639, 51.282105865164347], + [5.440610144817073, 51.278586874071358], + [5.438371350064828, 51.276026187895326], + [5.437719125062866, 51.276027556023891], + [5.433297784229505, 51.27633315088336], + [5.417411598147265, 51.262285724733502], + [5.395944859708893, 51.266971617538537], + [5.346140398069619, 51.275764382589998], + [5.345748072448319, 51.272203979194252], + [5.3441596158714, 51.270198193721654], + [5.342610631221595, 51.265754920926597], + [5.339394344233649, 51.264062503995497], + [5.33647566694915, 51.263067205738245], + [5.315137106684183, 51.26345525374682], + [5.296153833372722, 51.261481618149141], + [5.263119842538126, 51.266801775043255], + [5.237914279270399, 51.261353143091135], + [5.22597202034752, 51.268259744121231], + [5.242192693095431, 51.305218572265595], + [5.241118572759492, 51.30566500564133], + [5.200255133362725, 51.322661210418715], + [5.196564806734727, 51.32035923538421], + [5.19055633510987, 51.320070151565155], + [5.173062832338516, 51.315771636965856], + [5.1626398450283, 51.310316600025992], + [5.134353329492355, 51.315500450717792], + [5.131710979541545, 51.346774505184854], + [5.126282633963443, 51.350228394810351], + [5.119401849543118, 51.355639660458458], + [5.116570459611695, 51.361117996965518], + [5.071181770690747, 51.393487462930267], + [5.095456504549808, 51.422500668187638], + [5.102020631798306, 51.428922723590325], + [5.104572693607661, 51.431348886151852], + [5.080307355622696, 51.469262633783934], + [5.078564348123164, 51.471444511351827], + [5.049740895967802, 51.471108145014604], + [5.045931860213251, 51.471114746847675], + [5.043427234248034, 51.474685802762863], + [5.042488061074199, 51.474827977375412], + [5.043144094546962, 51.475175528539786], + [5.037888533646679, 51.479349840450801], + [5.039172503841847, 51.479774975344753], + [5.040093810491141, 51.485099579574367], + [5.040210298502679, 51.486533087084574], + [5.03870265295434, 51.486544238670739], + [5.038788108002668, 51.487000599203611], + [5.033155702867635, 51.487194267308226], + [5.032058614341558, 51.485732390568913], + [5.022278792624832, 51.481778573278056], + [5.016522556930994, 51.4754391538779], + [5.010836084596661, 51.472307427240743], + [5.007953273509488, 51.466729034290836], + [5.007685401204192, 51.462779767455316], + [5.007864070425073, 51.462216034581289], + [5.008829539233328, 51.462191931660108], + [5.01055869256384, 51.459432943914074], + [5.010462704675879, 51.458244393627623], + [5.009787873825626, 51.457123222553925], + [5.010977030372398, 51.456011467319037], + [5.010517578373499, 51.453928820362002], + [5.007519169275299, 51.451405837668439], + [5.006403231452802, 51.451575159672174], + [5.005492942134101, 51.45099647480739], + [5.004426106568093, 51.444581390834379], + [5.005072410013542, 51.444498447982333], + [5.004013605567728, 51.443591228835494], + [5.000838769954421, 51.442715558111885], + [4.998364465759339, 51.440580752474951], + [4.963218730112141, 51.422293017181502], + [4.928978719501236, 51.396050867743973], + [4.92789763711512, 51.399734674492485], + [4.92442809360769, 51.39878354189247], + [4.925235771140778, 51.396650918740328], + [4.92785382452089, 51.395438744148628], + [4.920959459649512, 51.393686977228612], + [4.913848975759333, 51.395076796782611], + [4.917805646123728, 51.396842384005019], + [4.9245868538537, 51.39688384464479], + [4.924275599659754, 51.397820359592856], + [4.923268490595507, 51.398550115350332], + [4.918125995397634, 51.398229111823937], + [4.916143747948137, 51.398747489978028], + [4.91781599085361, 51.400511215126862], + [4.910161668493137, 51.402260243123713], + [4.908576911191925, 51.404609713582147], + [4.909604319031825, 51.406997060979926], + [4.906060866679704, 51.409138729113764], + [4.905696279996457, 51.409902461533036], + [4.900035997644445, 51.410614406829204], + [4.900252154766219, 51.412525876134211], + [4.902558697177284, 51.412485450137126], + [4.90318725844792, 51.413552373020934], + [4.899993724562588, 51.414670745040901], + [4.897561557095993, 51.413484957461527], + [4.898604439950189, 51.411929867188668], + [4.897132839452607, 51.41169319327598], + [4.896491046695808, 51.412846871448373], + [4.894698031097818, 51.412889078018402], + [4.888774563548292, 51.415431896080257], + [4.886960258459815, 51.415055144534591], + [4.885881345068267, 51.415334649928866], + [4.886070506597298, 51.416598609813938], + [4.883028302458196, 51.4163710366402], + [4.883072138396142, 51.41528585994665], + [4.881331138517166, 51.415466234642629], + [4.879796094531724, 51.414367163035706], + [4.878442957694682, 51.414102264857014], + [4.877724462641746, 51.415466041355721], + [4.873553395959858, 51.414754137265234], + [4.873835221211788, 51.414279895037637], + [4.872884909409484, 51.413617725518272], + [4.87118336445095, 51.413838747697959], + [4.868721456574046, 51.412887781854401], + [4.866255114718536, 51.411444411097179], + [4.866497111886097, 51.410707929556061], + [4.868381828924246, 51.409956158902361], + [4.867366474891159, 51.409113580766508], + [4.86601947935748, 51.409986634426396], + [4.860513745119446, 51.410448344318468], + [4.859685647669528, 51.411113198515352], + [4.85981503003017, 51.413010722833313], + [4.857607771514661, 51.412781349410288], + [4.849753577168894, 51.414214898829911], + [4.848631899359318, 51.412748575488564], + [4.847004993362017, 51.413437131833618], + [4.846276219980162, 51.412856337089799], + [4.839330698649629, 51.414617568488957], + [4.821600198558994, 51.413186512624435], + [4.795997753842258, 51.41027203379231], + [4.793067569102861, 51.409489178112615], + [4.792213680868064, 51.410542306309239], + [4.789334372367022, 51.408987011173231], + [4.787417038094834, 51.40933611200407], + [4.780311490301844, 51.412030994598268], + [4.777752956107975, 51.413824460387822], + [4.775306601810112, 51.414112799071397], + [4.773366634305134, 51.413440644769253], + [4.771375281469077, 51.415066795059985], + [4.7685772583931, 51.419646284715597], + [4.770161722507607, 51.424941412709991], + [4.766569763011821, 51.430488793717522], + [4.767655198983977, 51.430840905150156], + [4.768544992815299, 51.430445095520589], + [4.774121585613728, 51.431623362436753], + [4.786572299778776, 51.432518695671583], + [4.787745562270936, 51.432101739362686], + [4.7890680931025, 51.430006205324268], + [4.79426409926354, 51.428497362859154], + [4.796388739951964, 51.428309513966866], + [4.800260868841372, 51.429115944994884], + [4.8048755646787, 51.428445154507749], + [4.808192275021692, 51.426937885166666], + [4.816877555115189, 51.425040471638823], + [4.820485996911851, 51.423769636036248], + [4.821060334852346, 51.422791028551465], + [4.825691744078731, 51.423114071946038], + [4.826933749961752, 51.42222868012469], + [4.826505221546154, 51.421103578949449], + [4.833503506389885, 51.419775209790856], + [4.83303352578832, 51.419113545916403], + [4.834737722167728, 51.418399598593759], + [4.835411588059529, 51.419211219568176], + [4.837717648616565, 51.418553602837619], + [4.839706207642132, 51.419816012643224], + [4.84100975510893, 51.422570814132619], + [4.838302403912885, 51.421741253549833], + [4.837646483671512, 51.420845661398673], + [4.833226139124409, 51.420591843784678], + [4.830155397013732, 51.421251781816359], + [4.829339103999818, 51.422369391570108], + [4.828211648678791, 51.42230398863132], + [4.828553394354809, 51.423445072427995], + [4.826353178179326, 51.430665473638278], + [4.824870664458675, 51.435318309805645], + [4.824983694733143, 51.435933467961021], + [4.825917338961782, 51.436044390904009], + [4.823363009230409, 51.44861887095972], + [4.828583909241895, 51.450877159046094], + [4.833401536020886, 51.457402344404663], + [4.835149532636978, 51.458699903577667], + [4.838471436841706, 51.456049800372597], + [4.841350044161422, 51.456769245357847], + [4.844020760435929, 51.459065552300672], + [4.838403142765171, 51.461372580964024], + [4.83610897743183, 51.461245483959779], + [4.837180185698744, 51.468938851163351], + [4.83968724045473, 51.472810413709126], + [4.840327203375717, 51.478534641333106], + [4.84187828403335, 51.480735762668552], + [4.837649966440802, 51.481955201483387], + [4.829251103574883, 51.481790041465317], + [4.82114304026021, 51.483070225669309], + [4.820168058949766, 51.486029087824456], + [4.817419186814622, 51.488991731550428], + [4.81821771949017, 51.491051443512028], + [4.817569805520956, 51.492925261424219], + [4.815205432335169, 51.494819059310473], + [4.805589573350606, 51.497394888540732], + [4.802252022206459, 51.497600010887652], + [4.801881357100051, 51.498387929599744], + [4.797257675253553, 51.499625901584615], + [4.793463731017174, 51.499426926494934], + [4.792494118950062, 51.498357992533542], + [4.790817183923701, 51.49818237484552], + [4.78775939662335, 51.499038144786525], + [4.786161551471769, 51.498837176029475], + [4.785067348140832, 51.499746829791931], + [4.78306105495929, 51.499564215772494], + [4.780756257999382, 51.504080018531546], + [4.773757623335484, 51.505114458703815], + [4.760023354068398, 51.502372761139277], + [4.758795512242978, 51.500953129197988], + [4.758359852894295, 51.500157345774653], + [4.755377964000778, 51.500363853103273], + [4.755260102111056, 51.50054183333458], + [4.752699583285763, 51.499807519712967], + [4.748944563397291, 51.496684503013043], + [4.750003301237364, 51.495431391779697], + [4.749699140082809, 51.494363920295889], + [4.748133849324945, 51.491939886081958], + [4.746829844637717, 51.490704128450929], + [4.746561484674322, 51.489504617848951], + [4.733996672551137, 51.485548201543232], + [4.729151926195597, 51.483907185464197], + [4.724746002753321, 51.478778626081457], + [4.720603348605856, 51.473454909549076], + [4.715989719770953, 51.471065935209829], + [4.716898177142991, 51.468864617646979], + [4.703248851381976, 51.466968313807442], + [4.702750928904577, 51.466083059567367], + [4.704056201460949, 51.46546532767757], + [4.699345769795401, 51.460860929330444], + [4.699314395658154, 51.459972277585102], + [4.693096968966053, 51.451729926429401], + [4.686440631422754, 51.451270812954306], + [4.666616407315217, 51.444237475807313], + [4.669689695682885, 51.426362597589389], + [4.66447240307149, 51.426158612181673], + [4.656418684478289, 51.424993443995575], + [4.651716642801885, 51.426885354897976], + [4.646650056863328, 51.42339516939083], + [4.641290450501446, 51.422014440799614], + [4.637473834689447, 51.423015107120847], + [4.633936214902925, 51.425074981789955], + [4.630094537537985, 51.425916922898367], + [4.597054958786634, 51.430120460967842], + [4.588248296924496, 51.431357644684162], + [4.582488052369952, 51.431377570783752], + [4.582219211583552, 51.431933722657554], + [4.57472826219946, 51.432848512807311], + [4.535408853373547, 51.423029629518958], + [4.52989653524393, 51.449520504085612], + [4.548160864263059, 51.473312588943159], + [4.538184619120212, 51.482397718290457], + [4.486681639148586, 51.477352815942567], + [4.48024228669339, 51.478281640185998], + [4.476492355306676, 51.478267090424993], + [4.471646492306232, 51.476250649715631], + [4.467341845621371, 51.472983909040941], + [4.466715626010567, 51.471990901373282], + [4.464905746798832, 51.471134907033139], + [4.464721455488526, 51.471013409604993], + [4.46456038211562, 51.471153257306582], + [4.457049957050659, 51.469816678764573], + [4.447010889113595, 51.468972951354694], + [4.442560016680834, 51.46868945366338], + [4.442446264277083, 51.468638648459304], + [4.391083290222355, 51.451487256446839], + [4.384838686251581, 51.449315932511837], + [4.38270938356154, 51.450232379101351], + [4.381488265364202, 51.448325189939709], + [4.379806177990649, 51.447756159216645], + [4.379328292787713, 51.4467889226583], + [4.386640129831237, 51.4452432596389], + [4.392034275937825, 51.446376290216548], + [4.396526336979305, 51.442151231197677], + [4.397047527243639, 51.440911112180551], + [4.395485055595722, 51.439770140378705], + [4.395415266619352, 51.435512660530129], + [4.39881831058131, 51.435243646376769], + [4.397205596365653, 51.431597829341598], + [4.392513238324971, 51.432513459935443], + [4.392305757018129, 51.431462017775239], + [4.394605258017593, 51.431522911917881], + [4.394229063801073, 51.429720924333729], + [4.395201507778721, 51.426902517397082], + [4.391330531618386, 51.427352724293172], + [4.390526970686682, 51.424266778099167], + [4.389723226248909, 51.424459703010385], + [4.383660067565603, 51.421076460681832], + [4.391515043985032, 51.408327689879123], + [4.391611061416701, 51.408171805101013], + [4.431691742906637, 51.375049009856752], + [4.42508100382016, 51.371289530389973], + [4.427754441510915, 51.369679013601178], + [4.429815753296988, 51.367374896247959], + [4.431351683022994, 51.363853075956605], + [4.421853792685886, 51.365230524810052], + [4.407397500604635, 51.360075626530488], + [4.397393547115975, 51.356503508547263], + [4.389099365563184, 51.355248996550785], + [4.384543411230347, 51.354351886111566], + [4.384039149484606, 51.355230547184938], + [4.378758682801702, 51.354920905474565], + [4.369800890919172, 51.356703230459644], + [4.36824020851099, 51.356103624228453], + [4.366526868485207, 51.35730558102189], + [4.350964758744783, 51.358259205498221], + [4.35088969009332, 51.358682816861858], + [4.341353837520022, 51.357563242401582], + [4.337292271212024, 51.369644132137658], + [4.335164806073307, 51.375648729043185], + [4.334505197784125, 51.377641238977525], + [4.277424647993365, 51.376035233299518], + [4.274563603580568, 51.381656577041525], + [4.273697757709778, 51.383149879690606], + [4.268382119786371, 51.383545881398817], + [4.26634909199562, 51.386540625260899], + [4.268633666125523, 51.388126442763962], + [4.269061105275799, 51.400347382987015], + [4.263732326876873, 51.416449100869343], + [4.266446940828138, 51.419979475204499], + [4.275851707976691, 51.425049402545874], + [4.265431821536806, 51.439680671456337], + [4.230327839339865, 51.488904248660873], + [4.224906179176474, 51.496492966881142], + [4.218927281516851, 51.504858449022855], + [4.218799854347014, 51.508961389557712], + [4.219930847528164, 51.513802922984254], + [4.233043186668071, 51.537492019387827], + [4.23565711137825, 51.543241516113305], + [4.236118919907085, 51.550365792459857], + [4.235585704620065, 51.552723929037249], + [4.232443779679804, 51.559054854191857], + [4.228121187136598, 51.563716301094594], + [4.19889151562108, 51.585975345387126], + [4.19571803470012, 51.588975177868484], + [4.192231585802609, 51.593901575190841], + [4.19081711104971, 51.597384532361659], + [4.190162390591905, 51.600953891130821], + [4.190573628652456, 51.606055830044454], + [4.191684955679976, 51.609336964072668], + [4.19765956212209, 51.618047949812286], + [4.205020912823038, 51.623561411823317], + [4.214466676859818, 51.627664021746192], + [4.227822422095417, 51.631022591457082], + [4.237323740227381, 51.634014421685158], + [4.240418088489894, 51.633211479639918], + [4.238276323931175, 51.632491033979832], + [4.240971936634584, 51.632051669450206], + [4.252923132366183, 51.632326449042139], + [4.253254920016166, 51.630772288933045], + [4.258694418009763, 51.631470263387719], + [4.259266646766227, 51.633139567023008], + [4.26440651956895, 51.635921529978496], + [4.271575427683278, 51.637942764246219], + [4.27443412849138, 51.638148082854769], + [4.276204180534616, 51.637278173378363], + [4.282432382805428, 51.639808462683852], + [4.290189018077639, 51.640514849321114], + [4.292903280295218, 51.641391716879106], + [4.292177749880142, 51.638911835083825], + [4.295317344955683, 51.638963187707681], + [4.294937307876518, 51.642005514158953], + [4.295662798093928, 51.642350181231997], + [4.298795182963936, 51.641878284861768], + [4.309282859246329, 51.645265675331636], + [4.317445835358239, 51.646277581048423], + [4.332119890306302, 51.644743716114867], + [4.337118256812301, 51.64519883387829], + [4.350269001151837, 51.648118475781793], + [4.361060410652597, 51.652473500507476], + [4.367847058249073, 51.656694889640583], + [4.368435655188549, 51.658292173034788], + [4.376397131834243, 51.651933257230418], + [4.374877677575949, 51.653677847014727], + [4.377534812069558, 51.652720800118402], + [4.378010686063384, 51.653050205968384], + [4.372876222878886, 51.656947291251633], + [4.377143029838281, 51.659299324728636], + [4.375710910248942, 51.660529997944465], + [4.378187220239315, 51.661325756246818], + [4.383470095423371, 51.665407088035167], + [4.385612611453083, 51.668324895563764], + [4.387792483844028, 51.668834277190157], + [4.393535712390363, 51.677820035370431], + [4.392249091205854, 51.678789075007352], + [4.392178092843396, 51.680078117579917], + [4.393985767770276, 51.680498472197442], + [4.399725002175522, 51.683600221192094], + [4.407209020360388, 51.687904814707373], + [4.407693370590851, 51.68854745381055], + [4.406046655582492, 51.689703895200566], + [4.404369227018927, 51.689361577940574], + [4.398025373235097, 51.686025971552418], + [4.396751061381335, 51.685938449790633], + [4.389654373109297, 51.681648321625453], + [4.391541420099871, 51.684242899265634], + [4.401604124294212, 51.688909716322385], + [4.401443440414847, 51.69007735938937], + [4.403288139770048, 51.691852812418055], + [4.401897831461213, 51.69284855015767], + [4.395021484243548, 51.69048349577205], + [4.391966454542895, 51.690539897947204], + [4.391988634942522, 51.690925849836788], + [4.395518004179013, 51.690900186949477], + [4.400575113201142, 51.693662131163876], + [4.398779538953733, 51.693390294036945], + [4.397200829605861, 51.69429921796808], + [4.394180547493403, 51.692783553016909], + [4.393674988368972, 51.691992246392267], + [4.393321800515502, 51.692556583353564], + [4.394487887746589, 51.693764988857126], + [4.403637676190279, 51.698712996862625], + [4.404122937335968, 51.698233427130134], + [4.400965974062399, 51.696312901540978], + [4.402879477708322, 51.694598007268297], + [4.406650345354582, 51.696950766247838], + [4.40745387882119, 51.698657455208348], + [4.407025372152403, 51.696953220174677], + [4.40235845230487, 51.693101928166897], + [4.403743298966811, 51.692110678611478], + [4.413158461530486, 51.695097170428589], + [4.422838327185606, 51.700207217148609], + [4.429536248793531, 51.700773579256776], + [4.423525811267417, 51.699786739273307], + [4.411415826117633, 51.693271756214784], + [4.410398028234175, 51.692481757095393], + [4.412059947139452, 51.690922492238911], + [4.425741258829077, 51.696993938811389], + [4.43135428096569, 51.69662804576172], + [4.437361224473889, 51.697402757945824], + [4.435012190330762, 51.697054559294521], + [4.43613429525386, 51.696271874426792], + [4.439912096368468, 51.69679081349269], + [4.443579878676071, 51.696178265374535], + [4.440573826071695, 51.694839525485186], + [4.442849817370625, 51.694564748115347], + [4.442348469555908, 51.693201587601465], + [4.443528746338214, 51.693202482467804], + [4.443811441306822, 51.694892038671206], + [4.442294653001101, 51.695367022083644], + [4.443292711999195, 51.695665278678973], + [4.445445524942306, 51.694752490540189], + [4.451365625519792, 51.691789204770814], + [4.462284895122138, 51.688417368770125], + [4.490224178955457, 51.68297988755819], + [4.493053936004037, 51.683338633464054], + [4.503227638480418, 51.682450150765085], + [4.519583589493982, 51.683710079569003], + [4.524623398621331, 51.684506972210187], + [4.526213565826001, 51.685814217791823], + [4.527064952028655, 51.682837714054692], + [4.525980777581096, 51.680295884654328], + [4.527774771872933, 51.682818940117976], + [4.527138662348683, 51.685065038753635], + [4.529912228187918, 51.684684795312116], + [4.530032563541225, 51.685648802974157], + [4.527043131166284, 51.685849628183043], + [4.526543412283358, 51.686528383109128], + [4.532168508498182, 51.686123642705404], + [4.532676879286996, 51.685280439869629], + [4.534503396039428, 51.684779824447396], + [4.537617939184853, 51.685245987469479], + [4.537557075477708, 51.687123913852808], + [4.549374413669857, 51.688480834479272], + [4.568748240438736, 51.692230077547116], + [4.574101561410949, 51.692342260145374], + [4.601655042368488, 51.696946808537561], + [4.619370153957265, 51.705581491579977], + [4.621252935266313, 51.704825909881336], + [4.622909334585936, 51.703904799716646], + [4.623266912945609, 51.704259901030802], + [4.62065536125503, 51.705934118542039], + [4.619241674408666, 51.706233677703175], + [4.626570781238803, 51.70908723911829], + [4.638654450257246, 51.712398133745133], + [4.638913631114818, 51.713240232278871], + [4.636430573873429, 51.717350501003118], + [4.63685429460552, 51.717435294485121], + [4.639353148247467, 51.713364214574725], + [4.640387765149793, 51.712824005968045], + [4.643004599964864, 51.713335565578348], + [4.647334083095946, 51.712880971470085], + [4.643852366730713, 51.718826983091098], + [4.645136655552001, 51.7190673215161], + [4.67522266251005, 51.724209386981968], + [4.676304294289313, 51.724923647168936], + [4.681597659934821, 51.728418724659598], + [4.693262965219605, 51.732281622834108], + [4.703745748683892, 51.736927468610958], + [4.724591650112153, 51.747905513037161], + [4.736630865025864, 51.755568376451137], + [4.740770070895793, 51.758818204104962], + [4.744788276793007, 51.763487428681508], + [4.750568952030301, 51.775761502698934], + [4.755239742186366, 51.781611402724209], + [4.765224550190147, 51.789208359269985], + [4.765983208945538, 51.789631665114442], + [4.773539088856928, 51.793324333108863], + [4.79719420937894, 51.799769962068041], + [4.806875752586437, 51.800336283937895], + [4.828872292119624, 51.798020609952339], + [4.836108512446036, 51.797839094204001], + [4.845984407529088, 51.798756953392591], + [4.854413534329106, 51.800683125951089], + [4.859667338778124, 51.80268434367877], + [4.884642583979464, 51.816471395640605], + [4.885226947088542, 51.816769690378806], + [4.889401019847329, 51.818895013133591], + [4.909126435278887, 51.825377440045415], + [4.91859908335321, 51.827482188008922], + [4.926986651733357, 51.828305959307272], + [4.936064188275933, 51.828314497535423], + [4.942437646772281, 51.827243174443545], + [4.960515880732184, 51.82504209914557], + [4.969633205620593, 51.823654365036461], + [4.976099808584748, 51.822633041208711], + [4.987756996173707, 51.821059361610757], + [4.99928270391278, 51.820867774517581], + [5.000363980164164, 51.820933380857191], + [5.009344176562808, 51.817512035284942], + [5.010102750300609, 51.816608375770912], + [5.010307597287421, 51.813010443302389], + [5.012426798179455, 51.810648082033353], + [5.015970456464022, 51.808221858869388], + [5.026178797010285, 51.803964968336658], + [5.038597605987878, 51.800965737257641], + [5.044479780528901, 51.799326110220953], + [5.048146413120365, 51.798113899120551], + [5.052579511978157, 51.795290642970997], + [5.057119390857519, 51.790695357143242], + [5.061043632600819, 51.78528271960198], + [5.06696624433402, 51.78055317789606], + [5.069854951047441, 51.77954878156153], + [5.074248726851816, 51.779070064852419], + [5.078539238572392, 51.779563742435421], + [5.081953502525086, 51.780712645215424], + [5.087201908525367, 51.785095479366959], + [5.091437962756312, 51.786933042149613], + [5.095890468599021, 51.787647583470722], + [5.100277709484641, 51.787150527177069], + [5.104858201403258, 51.785725085680852], + [5.108970296133415, 51.783578113353968], + [5.116088051480324, 51.778923628303353], + [5.118645374903825, 51.777812651957881], + [5.137580868977278, 51.772905258048304], + [5.1396491480289, 51.77021938755815], + [5.138687640862639, 51.767452843521191], + [5.13635023119001, 51.763916452333966], + [5.135890732681708, 51.760319742688893], + [5.137652551927465, 51.757628249818609], + [5.142713891041363, 51.755210224385145], + [5.138112677240911, 51.750726290383319], + [5.126335995886939, 51.745021480958258], + [5.12559151266587, 51.743226602400888], + [5.125984564187506, 51.739629190235057], + [5.126608075599803, 51.7379289668946], + [5.128054773473107, 51.737607140141343], + [5.16349670422619, 51.7427023388015], + [5.168836903037678, 51.743073864073061], + [5.177260143467649, 51.742917747766057], + [5.185699869743087, 51.741917554182827], + [5.195524437207119, 51.740273184967791], + [5.206494248095394, 51.741477182592007], + [5.211851002181382, 51.742735642285687], + [5.216347530918341, 51.743451170981167], + [5.222139449654626, 51.743387555308182], + [5.231103847187587, 51.741303934808286], + [5.24467859224679, 51.734421234475953], + [5.249679734986312, 51.73358070475124], + [5.255466311268855, 51.73489966002537], + [5.264141503374875, 51.738828046683295], + [5.268538353189977, 51.739647412579131], + [5.275720373232468, 51.740169908042681], + [5.283285067820778, 51.739776825167368], + [5.29165247481246, 51.737262710678507], + [5.295996737103852, 51.736717870350638], + [5.300338755694263, 51.737287435631252], + [5.304360923043796, 51.738783970405414], + [5.322041295639219, 51.746523628282318], + [5.353514438136326, 51.755477248754438], + [5.357568232099948, 51.757890338333418], + [5.359927475303396, 51.760587436037639], + [5.360429721307097, 51.768680341093152], + [5.362538958917996, 51.779463686486729], + [5.369038979575945, 51.789816197376908], + [5.370194080234045, 51.791096898977315], + [5.375603160564277, 51.796160234375492], + [5.383490596774634, 51.804633695299394], + [5.394409540974377, 51.81272305634441], + [5.398384965092689, 51.817155532781122], + [5.400054146445503, 51.81941747696191], + [5.401706421582189, 51.820892797584868], + [5.40605828557287, 51.822420194606103], + [5.410409717308696, 51.822545245710863], + [5.414885524437891, 51.821290185585077], + [5.418271626083672, 51.818557920911381], + [5.422292363766073, 51.81455847216688], + [5.429255222290944, 51.811367436695136], + [5.439403997337187, 51.809709484792243], + [5.449554281455572, 51.809677550187814], + [5.464480456198078, 51.811186592094934], + [5.467486076430513, 51.811802633929481], + [5.474214664556845, 51.814641379367387], + [5.476931618807398, 51.817183039015006], + [5.478348894830252, 51.820054136351601], + [5.479672935147903, 51.824371601837669], + [5.481839878258899, 51.827066380377055], + [5.485848688376993, 51.829409035855655], + [5.490190375755639, 51.830508635673468], + [5.49600635090518, 51.830604484456202], + [5.503255204412167, 51.828763904370469], + [5.508078866163164, 51.826143414280729], + [5.514214072690573, 51.820743903781626], + [5.517734318401968, 51.819283919118163], + [5.527884304552705, 51.818481197793446], + [5.535633951685767, 51.816574372520584] + ], + [ + [4.948344106465139, 51.450969424028258], + [4.943112118799472, 51.45036167874914], + [4.94304011821612, 51.450826394631328], + [4.941049862498357, 51.450788421981812], + [4.933113466449503, 51.449536199882672], + [4.934697108735114, 51.447521440045982], + [4.936728110385018, 51.446842373272844], + [4.938908888860561, 51.44713373704225], + [4.940148244421421, 51.445164639884936], + [4.939722477508004, 51.446565711516854], + [4.941487519681337, 51.446504141579723], + [4.941484554526165, 51.447132365635362], + [4.94348847906703, 51.447478698644574], + [4.943533044842629, 51.448663679967723], + [4.945994432203737, 51.44909305619786], + [4.946370987626497, 51.448281623239765], + [4.9447614816728, 51.447784116244428], + [4.94795288908758, 51.44733342781322], + [4.948486890536167, 51.449064249006504], + [4.952400655841393, 51.450150716429199], + [4.95275796094243, 51.45163411691447], + [4.951469338381943, 51.45371264297323], + [4.949432333015985, 51.453525245615083], + [4.950622427645877, 51.451649070320634], + [4.948344106465139, 51.450969424028258] + ], + [ + [4.938117641286069, 51.444717294927656], + [4.935545829150173, 51.446346566637558], + [4.928701966539752, 51.441597437425543], + [4.929700019612455, 51.440093663267], + [4.928300250327577, 51.438553419782679], + [4.922095084446123, 51.445701736921293], + [4.923620515350241, 51.446143298906925], + [4.921469917658596, 51.446438529431724], + [4.920550019106793, 51.445955435560862], + [4.921540443502569, 51.442193174097937], + [4.920200077024032, 51.441291956394686], + [4.921200730215667, 51.44040394541647], + [4.921205810481249, 51.436896354866356], + [4.918056118772764, 51.435281030442248], + [4.917076982504869, 51.435885721941858], + [4.915012105689045, 51.435355314758922], + [4.917215793795145, 51.434585600666679], + [4.919127243030264, 51.434806284232359], + [4.926603375832556, 51.433148419745237], + [4.928813012805008, 51.430512435220997], + [4.930888321431468, 51.430216348931758], + [4.933096332225226, 51.430917706464335], + [4.936152789008506, 51.429465079065658], + [4.939697458014774, 51.43074255254971], + [4.93993685583525, 51.434116875983868], + [4.936248775496276, 51.434226187717378], + [4.938171060036569, 51.435966460710361], + [4.939704181762291, 51.436107286173794], + [4.940096831789709, 51.437729331514838], + [4.942226588173844, 51.438109148531524], + [4.941855287420675, 51.43902273729163], + [4.943053245190911, 51.440157076950989], + [4.938949696071225, 51.439325828742959], + [4.939038804226504, 51.437989309020821], + [4.937152895553828, 51.437819203876785], + [4.934660337138443, 51.438548773523138], + [4.934896054406333, 51.440416539751148], + [4.933740667569485, 51.440882380388715], + [4.934269678505521, 51.442112753526629], + [4.93952548396955, 51.441827593836372], + [4.938117641286069, 51.444717294927656] + ], + [ + [4.932416020769594, 51.406061424552945], + [4.928495188507597, 51.405114470157038], + [4.936394869496464, 51.405342304548462], + [4.935795063296971, 51.409300185835363], + [4.935135665884066, 51.40922616215034], + [4.929429169936489, 51.408084179145078], + [4.932416020769594, 51.406061424552945] + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 12, + "statcode": "PV31", + "jrstatcode": "2021PV31", + "statnaam": "Limburg", + "rubriek": "provincie" + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [5.932766959696337, 51.741938447223475], + [5.935890720901523, 51.741028611202083], + [5.93829868587325, 51.741593147798348], + [5.943962151965956, 51.741816813041616], + [5.951952585590878, 51.744370648842676], + [5.953287975954929, 51.748024158715729], + [5.952294355419549, 51.742684064175258], + [5.955155225742239, 51.738117595043406], + [5.956857072353485, 51.738654520461552], + [5.959169068786294, 51.738288438575161], + [5.961110256286474, 51.738781563499444], + [5.968744723526551, 51.738546256824293], + [5.973362010352015, 51.739305592170204], + [5.975664728587903, 51.739096163814629], + [5.980254218376814, 51.738767264236778], + [5.985495305237211, 51.739267658200845], + [5.994196777393829, 51.738309418398671], + [6.006903794049934, 51.732712648147839], + [6.028965486760682, 51.725753370337749], + [6.032259396873486, 51.723818885720661], + [6.032938986968492, 51.721477584539684], + [6.035034809970679, 51.721226757313204], + [6.034822537302563, 51.719979496197922], + [6.035424374446286, 51.717774275506301], + [6.038386460965279, 51.718113770681171], + [6.037880914356478, 51.719929783980476], + [6.044939227493769, 51.716913358929034], + [6.042009243568556, 51.713344597566376], + [6.037747658690034, 51.713666299569319], + [6.037721975291436, 51.712743719480976], + [6.032205032251111, 51.713181485317456], + [6.028396044510538, 51.711786750349482], + [6.028164590887571, 51.710789901393113], + [6.026646456426079, 51.709789280103905], + [6.026053905098521, 51.70868807957023], + [6.027057198456248, 51.707148398755422], + [6.026839271681699, 51.704353351505652], + [6.028118848065475, 51.702439676232139], + [6.02776559719822, 51.700549186166256], + [6.030632501032265, 51.698345907766225], + [6.031780620184863, 51.692533339213], + [6.030279499570803, 51.690131651252564], + [6.028252134731923, 51.689609668624186], + [6.032131058220299, 51.68489212296749], + [6.032293663346892, 51.683919265298478], + [6.030365876781933, 51.68294874254893], + [6.029823129995993, 51.678099446303534], + [6.031944859367671, 51.676165202212601], + [6.033261307023171, 51.67611752999148], + [6.034672530284311, 51.675145868257452], + [6.034283126070494, 51.67467683126322], + [6.031540485327237, 51.67458274824228], + [6.032349532013639, 51.674055685636041], + [6.035032039961423, 51.673922352353863], + [6.036641692763596, 51.672760129766289], + [6.072384317318346, 51.663839173263447], + [6.075672197647099, 51.66480399722051], + [6.078638046220761, 51.663402264272456], + [6.079662708819334, 51.663461895899594], + [6.078987086469647, 51.661949067890589], + [6.079545072848763, 51.661593254314013], + [6.083187144314199, 51.66184907174636], + [6.085344921834263, 51.662914075313942], + [6.086536991297081, 51.662539872970854], + [6.087316525439512, 51.660268244037297], + [6.088309059037033, 51.659856726728961], + [6.095034690037107, 51.659702961421502], + [6.099654531842563, 51.658115860372511], + [6.101965583585794, 51.660608272561454], + [6.116887839009778, 51.656533980922426], + [6.118087565781771, 51.65597292506002], + [6.115771107850747, 51.653227357821407], + [6.116973705807443, 51.650595168432858], + [6.11633850399727, 51.650171986921286], + [6.112619974947152, 51.648464330387853], + [6.109412157217044, 51.646866522542169], + [6.111682643542002, 51.644729941531175], + [6.108040473270314, 51.641932325338331], + [6.099533017943032, 51.623533639639149], + [6.097229172333639, 51.620883539623783], + [6.093934099210226, 51.622154044010109], + [6.094355422995066, 51.615195783417988], + [6.091423874392421, 51.605848556094912], + [6.117084653030179, 51.593847546973215], + [6.119284226301029, 51.593667247248426], + [6.121487272070065, 51.59273891062135], + [6.13055999575761, 51.581087611429624], + [6.146985790574481, 51.57059073849581], + [6.157032549237648, 51.566575499213116], + [6.16138499627831, 51.560440366854792], + [6.176902020331392, 51.538555723086361], + [6.18867409373785, 51.533479010480605], + [6.199929000567498, 51.527381442551864], + [6.207745206733837, 51.519047595789637], + [6.212023713343268, 51.513390942039372], + [6.21336134780212, 51.507817669794306], + [6.21410110343861, 51.503290453263276], + [6.212763707353201, 51.491308152541762], + [6.217975557899236, 51.485025514530051], + [6.218514848219622, 51.484341449472879], + [6.219032072941302, 51.484983268156583], + [6.223556763491342, 51.474964893936857], + [6.223332420160278, 51.472167963039013], + [6.222892814761922, 51.469428622767715], + [6.223675938123168, 51.468714840950511], + [6.222295220820536, 51.466162307320985], + [6.221924627907025, 51.46058476958801], + [6.220123128380225, 51.455519583935718], + [6.220593478017892, 51.446646254849881], + [6.214107679573941, 51.446527747889895], + [6.214761502693261, 51.433880744697333], + [6.206865661542315, 51.405333593432843], + [6.205257044437457, 51.399520106523681], + [6.211362612462578, 51.400925598156228], + [6.226668110860304, 51.400268039172374], + [6.226032742393749, 51.399531641175443], + [6.226769353796731, 51.39937424205975], + [6.224322052076024, 51.397105060202612], + [6.214424764835687, 51.389634273749003], + [6.216367466135624, 51.388832483353411], + [6.214742647042635, 51.387515712626168], + [6.216298814120795, 51.384105577307672], + [6.220799140407697, 51.37351555124517], + [6.226389998823363, 51.360336157346559], + [6.224766057819622, 51.359408528797012], + [6.197253390801438, 51.343690922947779], + [6.192577946307302, 51.341013147761153], + [6.189881749249589, 51.339461421632826], + [6.194236454635506, 51.334878971670875], + [6.188303824099206, 51.335068167399477], + [6.178571175017057, 51.333332091754201], + [6.169006996401732, 51.33301392073119], + [6.168158270750972, 51.332322171982192], + [6.169271764915075, 51.329737001068963], + [6.164187638099408, 51.325552048277338], + [6.159590030580565, 51.319691286644648], + [6.159420491748019, 51.315642021081892], + [6.158828903378191, 51.315151594745338], + [6.154239760110649, 51.31111458476115], + [6.153823880202485, 51.307448161885262], + [6.14514475848322, 51.298116003203042], + [6.129011010725736, 51.285702416814715], + [6.124757988605968, 51.27754999794827], + [6.124504713090296, 51.27475524424375], + [6.094802675835376, 51.254017418457138], + [6.085617249245968, 51.247625701815743], + [6.072663740487615, 51.242560088135512], + [6.086024933496271, 51.222670208533337], + [6.083594000641639, 51.222042196768669], + [6.073259342912815, 51.222436252829944], + [6.070694327237668, 51.222085562821796], + [6.067987601645634, 51.220550801609001], + [6.068468061484767, 51.213351111973914], + [6.069494592809305, 51.213213985422271], + [6.07097808234145, 51.20053135270711], + [6.073141519986269, 51.18282474738831], + [6.078515123552395, 51.177191816626383], + [6.082190258239611, 51.171633518126498], + [6.089996887897375, 51.170355126568097], + [6.093702106344797, 51.170405136998184], + [6.095837405983629, 51.17111767345196], + [6.099685740306198, 51.169832740660667], + [6.102103502859987, 51.171803731698887], + [6.107491538354273, 51.172700322858212], + [6.112700630675141, 51.174863614608391], + [6.115553120517509, 51.177880425465034], + [6.122405948373641, 51.181302812659851], + [6.16517049387489, 51.194414116891856], + [6.180724338681026, 51.186358496603809], + [6.138801761368271, 51.173339225859237], + [6.145890733581219, 51.170490835773805], + [6.175421882678052, 51.158463990480989], + [6.170113448500596, 51.155236391751338], + [6.162848521915123, 51.152671192898822], + [6.16333952416923, 51.148697467134767], + [6.157372079502345, 51.148877133697788], + [6.155354525888092, 51.148191889961772], + [6.152542273440278, 51.148026982713503], + [6.147686142948958, 51.148607619876856], + [6.144775626277013, 51.1470294050524], + [6.141794906565262, 51.146489592162993], + [6.133483380041639, 51.145167570885413], + [6.125972526396144, 51.144907401626625], + [6.121617665986474, 51.142735351448003], + [6.121475048987342, 51.141093550158395], + [6.119851668508868, 51.14057685478776], + [6.119698280200541, 51.140448461449942], + [6.11921425058593, 51.140302055195498], + [6.109697626500527, 51.137670797998304], + [6.103431714613833, 51.136415554156407], + [6.100448194136865, 51.13642065402211], + [6.096303312126083, 51.134759001609332], + [6.091752572982523, 51.134912177846353], + [6.089190368820117, 51.130164363829707], + [6.087275978487556, 51.129348480877447], + [6.088839831502628, 51.12802045037639], + [6.086855936135915, 51.127584699014392], + [6.084424102862034, 51.126018682565217], + [6.086446726342118, 51.125655133385344], + [6.086992116088404, 51.124594911930402], + [6.083639168101918, 51.123919961991291], + [6.081078076052465, 51.125870915360167], + [6.080009703471626, 51.12425194825326], + [6.080551014650267, 51.12214170637106], + [6.075614328693013, 51.120840835409695], + [6.076204501658531, 51.119514118557028], + [6.075713549289084, 51.119118149547766], + [6.071270244186086, 51.117974343834319], + [6.068894197036308, 51.11809317203231], + [6.062401076128267, 51.116853261737326], + [6.060293408652709, 51.115926436143326], + [6.057575450752918, 51.113557312659282], + [6.057372273803259, 51.113315095950007], + [6.056646789007369, 51.112440232469453], + [6.055238001979559, 51.11074225012468], + [6.056832118475108, 51.109549555838122], + [6.044686283733403, 51.101300393017887], + [6.04440089412146, 51.101119445090532], + [6.04294352126887, 51.101202519531064], + [6.036463169404557, 51.096531417886105], + [6.029991585961858, 51.094656761488352], + [6.025905940810795, 51.094239051499187], + [6.020675607515787, 51.092838292675019], + [6.017574916934048, 51.094572605402135], + [6.014085851295752, 51.091459107133289], + [6.009523681412421, 51.090844190337748], + [6.003825027106411, 51.086792017306607], + [5.997793546585394, 51.084245702385324], + [5.992194373476352, 51.079854814008769], + [5.988451780498125, 51.074613884016422], + [5.984981518900372, 51.073585807599677], + [5.984641266005357, 51.073574253446694], + [5.98176420499671, 51.073176698049004], + [5.980294000214851, 51.072317111037393], + [5.979581113869264, 51.071343587721515], + [5.981729704703382, 51.069477894175947], + [5.978663159414106, 51.067702208241663], + [5.978472857902224, 51.06643801640331], + [5.974782855830346, 51.063158170642438], + [5.973161840882678, 51.062906411169514], + [5.971654276654126, 51.061887060176495], + [5.969995555333528, 51.060516195412163], + [5.970600084162265, 51.06023521517556], + [5.970779810697374, 51.058017536281348], + [5.968113504422077, 51.05556218900071], + [5.970311371839984, 51.054185459960557], + [5.968228140377685, 51.051070806419652], + [5.969297637213835, 51.049143686183335], + [5.968450318941329, 51.048002461459383], + [5.968474394283156, 51.047855381595419], + [5.969197797198047, 51.046772173193943], + [5.966900280991983, 51.044137056451675], + [5.963839580237348, 51.043685252884657], + [5.961717222445592, 51.041990400058637], + [5.958177223412629, 51.041125890652665], + [5.959467387255547, 51.038238650208349], + [5.958185561126406, 51.036244592864762], + [5.957622187214533, 51.03471399653403], + [5.955701221478557, 51.035032115237783], + [5.954006440656782, 51.036529259225169], + [5.945485436656083, 51.036839562034245], + [5.93812948852532, 51.035117232200044], + [5.934607335778803, 51.041229516478381], + [5.926305380851075, 51.048255245611671], + [5.926261132084617, 51.048353720471248], + [5.918731722116568, 51.063952830431361], + [5.913206441758504, 51.066882102093871], + [5.905644728968531, 51.061845857937328], + [5.89637245040652, 51.05714132066749], + [5.892000428729484, 51.053127818881293], + [5.887198823287381, 51.052179176987494], + [5.875188150355521, 51.051472584107188], + [5.868690429133078, 51.051685722685477], + [5.866736986241989, 51.051570409786876], + [5.866387724318119, 51.051119673150566], + [5.867285245601964, 51.046279865931183], + [5.874607953901126, 51.039138068928793], + [5.878028208218896, 51.037583482590954], + [5.877000500897793, 51.032041784822724], + [5.874606695446322, 51.029179696977806], + [5.876659343966531, 51.023846264472709], + [5.878895656360763, 51.020643758449729], + [5.87866113532104, 51.018208743587714], + [5.881845535565862, 51.0153727458407], + [5.884261729033383, 51.013381573448484], + [5.885445825764637, 51.01381601108104], + [5.888344077652122, 51.013472333437711], + [5.895739649441616, 51.011019058051609], + [5.895482753003654, 51.004714363411097], + [5.900588209684653, 51.003319988385456], + [5.905517501038557, 51.002171956980938], + [5.903650313082699, 50.987148184815894], + [5.895723439764406, 50.981374175204252], + [5.893802396612813, 50.981097042170994], + [5.892762041098515, 50.980210015642307], + [5.896796834091063, 50.976486143103678], + [5.897085619536353, 50.974865010884869], + [5.904828488736583, 50.974565308222779], + [5.915590353172488, 50.977824551145254], + [5.91965580302907, 50.978193167080796], + [5.927723375610324, 50.982320753677818], + [5.933886447308827, 50.985353196154044], + [5.950134485401938, 50.987207190912009], + [5.955185082694711, 50.988416992081824], + [5.957392312124127, 50.985005257769089], + [5.966325914641017, 50.979769437935552], + [5.968046253749667, 50.979379780106029], + [5.971318555388288, 50.979996653188834], + [5.981357233343259, 50.983217259822773], + [5.984222246805435, 50.982114580621491], + [6.017363528485005, 50.983401717746517], + [6.01870058099985, 50.983818537967878], + [6.026511844641982, 50.983272024122599], + [6.026802351752255, 50.98130938308887], + [6.021163203317563, 50.971002919193715], + [6.015207062406838, 50.962364384763447], + [6.013000479916365, 50.960397758823291], + [6.009080818220821, 50.959484729426798], + [6.006053605982816, 50.957535393418773], + [6.005198501896706, 50.956776547411323], + [6.016852931066899, 50.952642632746766], + [6.015078656475194, 50.947882876271564], + [6.015851907700426, 50.944624203873161], + [6.018201745132624, 50.934701390020521], + [6.038439110726361, 50.930890403751853], + [6.044151018088166, 50.929448099122304], + [6.045582249388103, 50.928080104995971], + [6.050870883261183, 50.929905416761457], + [6.056160533633339, 50.927152542250603], + [6.055723688665673, 50.926148281863448], + [6.054022851636727, 50.92224733319248], + [6.061818252743532, 50.921236459837765], + [6.062966659554354, 50.922034998486708], + [6.068184300830326, 50.920652999180618], + [6.071775066879408, 50.923133287834929], + [6.07525706934326, 50.922753605360221], + [6.082127535448529, 50.921541162452257], + [6.089436005775818, 50.918525204724389], + [6.090161523926618, 50.919571532113039], + [6.093726052740388, 50.921230691172582], + [6.094149026191302, 50.920702247303183], + [6.092146657916163, 50.917511925753111], + [6.088933375174906, 50.915924839786605], + [6.086741845063364, 50.913906130540148], + [6.086036483762124, 50.912018464043541], + [6.081528541403999, 50.909406144043658], + [6.079813392992382, 50.905770281310389], + [6.079909414794372, 50.902916758895962], + [6.078033296834994, 50.900296321530398], + [6.076548362385158, 50.894630452463616], + [6.075181736904212, 50.892952646314015], + [6.075615183623476, 50.892532082914343], + [6.076240368809473, 50.891472760738239], + [6.075418513439166, 50.890519132655882], + [6.076384660163363, 50.888955927941566], + [6.077592174522499, 50.887522316967036], + [6.078004520540943, 50.888037121202551], + [6.079338365029584, 50.886718390354702], + [6.078341408802925, 50.884868992935679], + [6.079640855793116, 50.883678863479631], + [6.079637005493292, 50.882230408207882], + [6.080314559523712, 50.882699344894014], + [6.081325697074694, 50.882163573943259], + [6.082609217235998, 50.882475164101606], + [6.082298798000439, 50.881634198151076], + [6.086333501637823, 50.87987661795465], + [6.087208252038203, 50.878473878525348], + [6.085073788452653, 50.876368407597418], + [6.088102386510661, 50.872426942857473], + [6.086270009841879, 50.871571672444119], + [6.086642958555978, 50.869606113578662], + [6.084763812034042, 50.866790546609593], + [6.083396583520804, 50.864837324449553], + [6.081027115951247, 50.86454436568642], + [6.081040567741597, 50.862563951900356], + [6.077474041595906, 50.860959575339891], + [6.077019325163613, 50.859667666666098], + [6.07608972064881, 50.855627005585163], + [6.074170977228479, 50.846537862814813], + [6.063340632258489, 50.850218581332676], + [6.056698843000222, 50.851052756905212], + [6.056978528652937, 50.852795514805621], + [6.057117026541346, 50.855475220691794], + [6.056080754503657, 50.857215613727263], + [6.056023198968083, 50.857218175972704], + [6.053937535368167, 50.856930505754015], + [6.05226369567495, 50.855582461665584], + [6.050303388991735, 50.855057427429607], + [6.050081890128215, 50.854224561003853], + [6.045082578227383, 50.852390987950848], + [6.044478610357086, 50.852704202992818], + [6.042141406179653, 50.851236499488145], + [6.034281574314956, 50.850575051407183], + [6.027839301420108, 50.847630194934894], + [6.026032739028174, 50.847237584067578], + [6.025647472752708, 50.847721954716491], + [6.021990095368192, 50.846384352473088], + [6.018945715625513, 50.846255633330799], + [6.017958980650013, 50.843805460780025], + [6.015942540468159, 50.838796217401374], + [6.018450158516165, 50.837329100326869], + [6.016315690767073, 50.833883741068639], + [6.018768690385312, 50.829695180253026], + [6.0252649489779, 50.8277857390012], + [6.022744476756306, 50.826605753918116], + [6.023952537047857, 50.825107864845201], + [6.024698402056478, 50.821595265521069], + [6.026379433299011, 50.820122030841475], + [6.025641813322868, 50.819183971741651], + [6.023722950808757, 50.818403166700342], + [6.02210137204009, 50.81681006937692], + [6.024489466804087, 50.815923731495616], + [6.023528836926806, 50.81464989181157], + [6.024758321499124, 50.81388848788238], + [6.016500509494211, 50.809780262152778], + [6.0099946525321, 50.80398853308261], + [6.003692726404434, 50.801471542018625], + [5.991384969916757, 50.808044763127668], + [5.984989581693466, 50.810449853505986], + [5.983518253271972, 50.809729690568801], + [5.981369426957799, 50.808594965418678], + [5.980173474541156, 50.807118829994444], + [5.980200240113478, 50.805794708329366], + [5.978700773553913, 50.804670325691028], + [5.977897737404184, 50.805061139656729], + [5.976680955696413, 50.803369969678052], + [5.975741896562428, 50.802352713112107], + [5.974916334406725, 50.798013982517041], + [5.977214252364927, 50.79668845099993], + [5.979153833718685, 50.796314070200992], + [5.979883810666877, 50.795201763607508], + [5.983510908112939, 50.794863138925713], + [5.985008250550982, 50.794826934687947], + [5.985775010367143, 50.793843355631161], + [5.988269532556439, 50.79404982216986], + [5.995870063975846, 50.790070389297981], + [5.99581066116092, 50.78745917350988], + [5.997455869956253, 50.786566337333852], + [5.998509351226287, 50.786982852082687], + [6.000729211777347, 50.785220115993148], + [6.002159519677122, 50.784175086370425], + [6.005531901535976, 50.783357636639217], + [6.006556951180571, 50.78191548128882], + [6.01003958244731, 50.780429984286833], + [6.017413006353232, 50.778561380637306], + [6.017610821572972, 50.778029537642766], + [6.020210105885662, 50.777101454019338], + [6.020333505118967, 50.776488169475897], + [6.026081722400428, 50.775538429482161], + [6.027865123459628, 50.773833468875019], + [6.018361234380514, 50.76335680264625], + [6.020989336407523, 50.754294741454444], + [6.017351624898261, 50.755014348420914], + [6.013965179596827, 50.755055545994502], + [6.004311056935524, 50.753788551462499], + [6.002558914559047, 50.754114190310176], + [5.999277888767421, 50.75302587483219], + [5.997914962436909, 50.753656740005283], + [5.996532430570858, 50.753805611152551], + [5.993371874888079, 50.75275997205965], + [5.984522898775231, 50.753396557052419], + [5.983190465869053, 50.752819836606228], + [5.97933534020378, 50.754632368137514], + [5.976495461504176, 50.754353042621915], + [5.974146985080501, 50.755226822066945], + [5.975118265264256, 50.757888494251972], + [5.972608494995945, 50.75972004112176], + [5.969205303450788, 50.760601339308607], + [5.960964193627145, 50.761538409034962], + [5.960663447097292, 50.762475184875676], + [5.959007632882222, 50.762366820181128], + [5.953582829867662, 50.760141456305121], + [5.951706585105238, 50.760548361034999], + [5.946492788712619, 50.759818442888353], + [5.94408311014222, 50.758426920836975], + [5.938969463587527, 50.757938765066122], + [5.935757714083859, 50.756979429949425], + [5.933184286818618, 50.75655386064804], + [5.931105346193356, 50.756942170671309], + [5.92145026982617, 50.751357460064455], + [5.916220672389919, 50.750450466374666], + [5.915081037662539, 50.750367484696426], + [5.915382719136419, 50.754720176317882], + [5.913980668626849, 50.754324230684489], + [5.913703579711524, 50.755747727994432], + [5.910750279090976, 50.755238284659399], + [5.909009888917437, 50.754218778605107], + [5.908211518270257, 50.755693436144547], + [5.90706815092774, 50.755114914765493], + [5.905845487576769, 50.755502227007291], + [5.904850164185491, 50.755223814001674], + [5.903005598480606, 50.753711742903278], + [5.903526462273887, 50.753454543130545], + [5.901630127952025, 50.751400507924103], + [5.90102321826613, 50.751494295580251], + [5.88973842166571, 50.756327710680537], + [5.889188463647873, 50.757548008094894], + [5.890215504870425, 50.760131169251643], + [5.889672186829152, 50.764221143687223], + [5.886664581735123, 50.769816851349916], + [5.886228231389635, 50.77004692743737], + [5.876228148280295, 50.765616257518559], + [5.870620411999141, 50.764915530636308], + [5.863454075549386, 50.763508679097939], + [5.859949778853617, 50.761830081557314], + [5.852296757894683, 50.757216735448765], + [5.848920062532622, 50.753407775616793], + [5.846171768381659, 50.761671497202698], + [5.845037663440409, 50.765370844702318], + [5.843250682141742, 50.764882283104242], + [5.837707776103146, 50.763135888956448], + [5.830677567184963, 50.758539186579704], + [5.822711055618786, 50.758824009573082], + [5.814416859360124, 50.756163130850972], + [5.808790082365243, 50.755928194023824], + [5.807329208453211, 50.756175661925163], + [5.793229632339474, 50.770191218147005], + [5.788289772530091, 50.768013429159488], + [5.784502672647387, 50.767169213697819], + [5.779714921139451, 50.774309272242725], + [5.776944110221979, 50.782674536326049], + [5.77736718449829, 50.782955477629308], + [5.773575206613624, 50.783245192168906], + [5.765810997957068, 50.782545907098346], + [5.759563025514476, 50.777956643350969], + [5.758826442343572, 50.778200591321095], + [5.755776527563659, 50.775019045446186], + [5.754558013314107, 50.775189375084587], + [5.750415265205816, 50.772193424962055], + [5.747088702187765, 50.770484912532631], + [5.744088287255837, 50.767758482502295], + [5.740554928946545, 50.763066847389929], + [5.741437429048009, 50.762285764825066], + [5.740459597266018, 50.761449044041036], + [5.741571683332497, 50.76116202910363], + [5.739179037852947, 50.757073820219482], + [5.730387657879036, 50.757416026569238], + [5.730221727309595, 50.758273270496794], + [5.72640404374873, 50.759414895961541], + [5.724012334773507, 50.760905889539792], + [5.724619631205427, 50.761439750166574], + [5.722317701569559, 50.762781618228288], + [5.722782396385208, 50.763133079038759], + [5.722024110202233, 50.76349427619094], + [5.72284209360271, 50.76377640550605], + [5.722153665953336, 50.764114784500457], + [5.720266578711473, 50.764715097434241], + [5.715632933358678, 50.759878067089197], + [5.713561365148157, 50.760151926327588], + [5.713668500910426, 50.760683643876384], + [5.712292669389751, 50.760960562077635], + [5.712157107795712, 50.760479763996535], + [5.710627561667904, 50.760786865928758], + [5.710235043279384, 50.759811556096594], + [5.708897551332117, 50.759934959549554], + [5.708679247488698, 50.759011401784768], + [5.707406491788186, 50.759012980164911], + [5.707046540979899, 50.758287287323832], + [5.702977029975797, 50.75880811569089], + [5.699408837661524, 50.755409293795367], + [5.695094101871157, 50.754764999421063], + [5.688475059473524, 50.755713653223332], + [5.687823108391533, 50.75768193112787], + [5.68206204094292, 50.757536370268532], + [5.682832413633897, 50.761259536259828], + [5.693754585201315, 50.770939759240591], + [5.697367958638173, 50.775310262284172], + [5.698746058933025, 50.779620280306482], + [5.698708359052937, 50.783149569053293], + [5.693978290721825, 50.796636818462666], + [5.693817100629092, 50.810449700967482], + [5.693840918857925, 50.811103063554931], + [5.693855974217841, 50.811515968013609], + [5.691679623018513, 50.81212217830052], + [5.688773560834917, 50.8116265992848], + [5.685993877764176, 50.812224028757335], + [5.684360155609975, 50.813420168975981], + [5.680602174957432, 50.812031745729257], + [5.679420350604527, 50.814711340255108], + [5.678455918148285, 50.815065777956043], + [5.678282969198663, 50.816468378748858], + [5.6731732515022, 50.815995512354128], + [5.672750098674656, 50.816949337168666], + [5.669671873166584, 50.817246255416727], + [5.66945400038711, 50.817850278715682], + [5.668076234096032, 50.81773731285508], + [5.667648245724876, 50.816544423140698], + [5.666397867980312, 50.816829485027881], + [5.666691715954311, 50.817258817000024], + [5.664272350901018, 50.817187063158812], + [5.663183851773504, 50.818066005844344], + [5.659009817715787, 50.818481639907148], + [5.654180048036239, 50.819974384877227], + [5.655164894819992, 50.820966140583195], + [5.654339269311754, 50.821268557648203], + [5.656456035037714, 50.823157755518629], + [5.655506478637841, 50.823796417368655], + [5.656177790079853, 50.824289645145917], + [5.651878377103748, 50.827483983816094], + [5.649275438843822, 50.826360728939335], + [5.648862247537362, 50.826754395491477], + [5.651360543683051, 50.831831026512873], + [5.649966992182406, 50.833872218872166], + [5.648334321234826, 50.833218155591709], + [5.647419042061935, 50.835932314781047], + [5.64373164869693, 50.837936111976248], + [5.645345677467928, 50.839395086104957], + [5.641853782124132, 50.84079316070622], + [5.642792917253286, 50.841467207261907], + [5.641218472686274, 50.842891692919586], + [5.642257514708436, 50.84312486588712], + [5.639218947294598, 50.846333840867175], + [5.638866139452899, 50.847674472563817], + [5.640766067400351, 50.847696952999925], + [5.640286976061271, 50.84946553572702], + [5.642708499403604, 50.850080533764739], + [5.641784667738517, 50.852394962071365], + [5.640326018183281, 50.853724968523359], + [5.643513623716354, 50.856783765730476], + [5.641685579430124, 50.857554802761072], + [5.643790591226229, 50.858878594296904], + [5.64180182711766, 50.859247886065141], + [5.643616491063802, 50.860482892271762], + [5.642278715118887, 50.861407466392777], + [5.644005396718168, 50.862920424168131], + [5.641664728769762, 50.864161553802091], + [5.649472093256122, 50.868343496138792], + [5.644159306472103, 50.871349846184465], + [5.647887826358613, 50.873707884952289], + [5.648566240939616, 50.873337568922345], + [5.651323356283426, 50.875091690589791], + [5.653367415586791, 50.87400129702749], + [5.656442396023046, 50.876568601318368], + [5.657907312546347, 50.876662061931398], + [5.658596343225333, 50.876184686181567], + [5.660936590794627, 50.877369316573606], + [5.661677708291324, 50.878665041074832], + [5.665868197738555, 50.8797349923639], + [5.669637497819984, 50.881820489427533], + [5.673273597326839, 50.881045750695876], + [5.675729078727192, 50.880914429482786], + [5.67933110542134, 50.880542259440119], + [5.679106065738733, 50.883468705847406], + [5.682515650729909, 50.888524265088009], + [5.686344458511511, 50.89119300578669], + [5.692566318774146, 50.893933283204525], + [5.696246310115282, 50.898595881819375], + [5.697180727816715, 50.902261725987756], + [5.695781689412682, 50.90580293436507], + [5.696534741109143, 50.90860966541797], + [5.698263999839875, 50.910154614219408], + [5.703418352414527, 50.911713866087091], + [5.706427497979488, 50.912002772460241], + [5.709270011869472, 50.911593361841774], + [5.714854203395803, 50.908457840362985], + [5.71892546365159, 50.907812424297624], + [5.72038144182869, 50.908070804068949], + [5.724529439185456, 50.910606671798412], + [5.726772691875845, 50.913768883633438], + [5.72725948966399, 50.915797920246007], + [5.725907253777238, 50.921198434004047], + [5.726930404912388, 50.923841213115651], + [5.732544549156497, 50.930221691555758], + [5.74087950817747, 50.935224794794948], + [5.743575336656456, 50.938355344908821], + [5.744217921154117, 50.94116921522248], + [5.745992672282361, 50.943411014583006], + [5.745877487292999, 50.946495738117576], + [5.746588388052428, 50.94730342958163], + [5.751576922848345, 50.949242102417962], + [5.755667357412849, 50.949841205851072], + [5.758108125340972, 50.950750365160218], + [5.759185412155031, 50.952541985456556], + [5.758010318469993, 50.955505978927263], + [5.756048341372477, 50.957723139930096], + [5.752840440452269, 50.959656664185943], + [5.750523158836678, 50.960740915832993], + [5.746227027266728, 50.961644845420018], + [5.742036718034053, 50.960560134298134], + [5.740020826929674, 50.959195853575558], + [5.739013811905489, 50.957434404733156], + [5.734159644557197, 50.955451011411249], + [5.731240857188905, 50.954876346008689], + [5.725323979541603, 50.955558236331477], + [5.722012304687557, 50.957134619507848], + [5.719903403144377, 50.959587465865148], + [5.720127509451554, 50.962421277001795], + [5.724272877311638, 50.966210668979009], + [5.725667259221273, 50.966685437396777], + [5.728544834673261, 50.969873427275914], + [5.733161017355074, 50.971824159850215], + [5.735388763199281, 50.974372378131292], + [5.736377449909893, 50.977914877710582], + [5.737295320275114, 50.978690991275499], + [5.739778919334123, 50.979798344814192], + [5.746645395668851, 50.980664346532109], + [5.749884067038332, 50.982536607614463], + [5.751496317680871, 50.984141094032353], + [5.752645890621909, 50.986722041781533], + [5.755132206583084, 50.988980264013009], + [5.755018632146691, 50.990115379742583], + [5.75913822585138, 50.993166311986286], + [5.766087162925244, 50.997687847860654], + [5.767672968556198, 51.000653843079157], + [5.76743837012052, 51.004355001096997], + [5.766069520633732, 51.006912416431064], + [5.766006683373438, 51.008997228480986], + [5.767493014679893, 51.013255067794638], + [5.773406611511594, 51.018999212382546], + [5.775641033245599, 51.020678740664671], + [5.776434268994828, 51.022448416473502], + [5.775490991210655, 51.025115076097144], + [5.772854986296024, 51.027429705676873], + [5.76716555274045, 51.029159236229525], + [5.760818628669696, 51.030006244972775], + [5.75830161664799, 51.032052379204792], + [5.758002406576181, 51.033665670953795], + [5.759615353685961, 51.036739907445252], + [5.766407723930636, 51.042526315472813], + [5.770759326601365, 51.049190913732247], + [5.77256441795833, 51.056295669378066], + [5.771669492570092, 51.059891315185666], + [5.772566572923732, 51.061615010606218], + [5.77465565666062, 51.062976785069097], + [5.779054677874232, 51.062859978273991], + [5.784397524009019, 51.061446544680628], + [5.787845177662448, 51.059701356407444], + [5.793179365682894, 51.058526381449013], + [5.797453781714805, 51.059157007833711], + [5.799338879987455, 51.06007180059153], + [5.800886369772885, 51.062111774791724], + [5.801058575193443, 51.064019591737335], + [5.798257887591991, 51.068175050000157], + [5.797680846340295, 51.070899558872853], + [5.796620159224352, 51.071824399874856], + [5.799248218852973, 51.075006866798105], + [5.804191287320664, 51.076925406398743], + [5.804880043226182, 51.077929324327769], + [5.804506660582472, 51.080531694103435], + [5.802824346220415, 51.082765197211224], + [5.798847913191781, 51.08578344928916], + [5.79713053342466, 51.08618063791149], + [5.795107146952608, 51.089622694322777], + [5.79602270608494, 51.091478462846112], + [5.800058216544826, 51.094201556681142], + [5.805336737399646, 51.095919034969455], + [5.809745785379182, 51.096310076806247], + [5.813987093216409, 51.095584698331677], + [5.821329216954303, 51.092668783038704], + [5.824143066893117, 51.092350079227899], + [5.828986994035136, 51.094421590254896], + [5.832391605059525, 51.097325132848738], + [5.833507298300289, 51.099555308094793], + [5.833405308707409, 51.103750866912755], + [5.828886480250001, 51.107039757576416], + [5.82359110849197, 51.108350051536547], + [5.813761405012534, 51.107682742749525], + [5.810862995999325, 51.108866892227809], + [5.808358120596007, 51.111204493257539], + [5.807835098671733, 51.114035284013653], + [5.80985033115555, 51.118422189860595], + [5.815966518037233, 51.122173830574241], + [5.818995599633233, 51.125266820582482], + [5.823749881314472, 51.128756237782447], + [5.827523715479311, 51.130105328801051], + [5.840115906570712, 51.13084259723567], + [5.842329467420939, 51.132208423467695], + [5.843668341020151, 51.134592271630346], + [5.843506652006012, 51.137326857670047], + [5.845840571221178, 51.140758793121471], + [5.855619807527325, 51.144697308479437], + [5.846542546941947, 51.148932849257712], + [5.846005491372314, 51.14871628885664], + [5.84028905329621, 51.152329084180529], + [5.836354382954594, 51.153684975653867], + [5.836948839011789, 51.15510964524973], + [5.838610686430408, 51.157086614325372], + [5.835818981885447, 51.157608182545687], + [5.835153749353472, 51.158387481297709], + [5.832881214570197, 51.159037403568554], + [5.833389450146859, 51.161235034676679], + [5.831408902749865, 51.163158430659536], + [5.83007411476168, 51.164058193266079], + [5.828181448472107, 51.164284275173074], + [5.827540521025519, 51.166175273375202], + [5.826417234493931, 51.16683433179638], + [5.824310992123774, 51.167841204698924], + [5.822295389163291, 51.166220634824583], + [5.816079262479565, 51.163260281907924], + [5.815709926049005, 51.161598701316308], + [5.814689995755147, 51.161067621697136], + [5.815027987680446, 51.158848279281671], + [5.813857874098023, 51.158746156056814], + [5.808971523272869, 51.161335618763147], + [5.806319686626236, 51.162811243846086], + [5.805790396837728, 51.1623850933913], + [5.804943749864636, 51.162871456308764], + [5.80273395608911, 51.161208649267088], + [5.801990171263722, 51.160041620497694], + [5.802579294683775, 51.159480091653073], + [5.798704143899366, 51.157651797953207], + [5.791814127853756, 51.156985845003241], + [5.786508202239583, 51.154739645806629], + [5.785086451834778, 51.153108281906704], + [5.777646233049746, 51.151303855691403], + [5.776667706231245, 51.154404589931687], + [5.774759249053145, 51.154682196966235], + [5.777161137296799, 51.157412074669509], + [5.77644836866974, 51.157708761824779], + [5.779482636376319, 51.159383064765805], + [5.779402447682852, 51.163316325607077], + [5.778442442043294, 51.163296732251439], + [5.777819416836987, 51.162540348922931], + [5.775963985440084, 51.163049772270014], + [5.776785732652825, 51.163241735152091], + [5.776366087709906, 51.165329755060618], + [5.774037763886303, 51.165291736079759], + [5.774460379770825, 51.163936604197445], + [5.773018748184604, 51.164498442899806], + [5.770188621447231, 51.164223853014747], + [5.769565030796394, 51.169083310368265], + [5.770447565105865, 51.17001641171899], + [5.772611525318498, 51.169497694197119], + [5.777377437424897, 51.170720537593034], + [5.77973602628722, 51.171799162250657], + [5.779372527427075, 51.172164349500477], + [5.773864353765332, 51.172693116297999], + [5.772952188560944, 51.173369775063122], + [5.776728557825308, 51.178485498432956], + [5.767160524726247, 51.183691090215049], + [5.755963345597118, 51.184460667685691], + [5.756868439889481, 51.185404317226272], + [5.753140774016575, 51.186099452934734], + [5.749090010160777, 51.188678370456337], + [5.745641301441176, 51.189498958368318], + [5.743282220722334, 51.188260359201124], + [5.743075193556795, 51.18753469467287], + [5.742180404312754, 51.187658648917711], + [5.740098346323856, 51.186551407656459], + [5.739634429576847, 51.184756035392553], + [5.738507515640153, 51.186396686712165], + [5.733859796991116, 51.186206953861344], + [5.733481063637342, 51.185318277754327], + [5.729935095775078, 51.184974544353572], + [5.729535611427792, 51.185523668821453], + [5.726543665458133, 51.185483652181574], + [5.726762059160325, 51.184958299263783], + [5.725430036790861, 51.184668654946783], + [5.725190450953644, 51.185268359781816], + [5.717783448343694, 51.184379017348533], + [5.714479062073043, 51.183508817189981], + [5.709339293044409, 51.180420688960659], + [5.708003815810871, 51.18205469057721], + [5.701288129143646, 51.182478352025235], + [5.701611353171578, 51.183792993266735], + [5.696436141460917, 51.183937045401628], + [5.695294848095412, 51.182558944506518], + [5.691764854929786, 51.183640712032123], + [5.689695165942293, 51.185376650136128], + [5.687871559099727, 51.185400261689495], + [5.687216348482925, 51.184766805387795], + [5.682835575526682, 51.183929286609072], + [5.681156951556527, 51.18444512827984], + [5.680494156262227, 51.183481572076005], + [5.676541099548308, 51.182725561249249], + [5.676359615040848, 51.184428766249063], + [5.672469443827008, 51.185600101722045], + [5.664495169443674, 51.186294384401094], + [5.658043734043749, 51.184745014301832], + [5.649740037714924, 51.193617704930894], + [5.654083224221438, 51.194241699173659], + [5.652733830106493, 51.197660989619706], + [5.646467671787422, 51.199944100213969], + [5.583143847134441, 51.216548004503473], + [5.566045354191217, 51.220909401802416], + [5.59432066365995, 51.226073684886892], + [5.594414455882214, 51.224180388431733], + [5.602195694343737, 51.22585601620829], + [5.618781643490283, 51.229425273722178], + [5.623467455437837, 51.248997911673918], + [5.623480663082685, 51.249108777749925], + [5.625972275701415, 51.273601596863799], + [5.643996789033954, 51.290575485414742], + [5.651876216089847, 51.29774164704434], + [5.672110862804169, 51.31509400880806], + [5.701730252567009, 51.320743650063491], + [5.713650142901218, 51.32301163103832], + [5.745895788606013, 51.329142038124239], + [5.747064295106205, 51.329362478626614], + [5.760092848187906, 51.331837899172235], + [5.770448694285633, 51.333804585054828], + [5.771061098314791, 51.333920914205009], + [5.78825162697093, 51.33718254661423], + [5.84019376976774, 51.346877060292606], + [5.858466768011888, 51.350294745248831], + [5.868258244392013, 51.35213743179326], + [5.87035964709519, 51.352534962694868], + [5.874543225211783, 51.353312722140672], + [5.878131726649579, 51.355229953914446], + [5.894552559399289, 51.364337839052041], + [5.895838392810621, 51.365043717358311], + [5.919052034072652, 51.377953146048796], + [5.921229770779012, 51.379163618705334], + [5.93128759817866, 51.384752673623936], + [5.920002210633142, 51.397890140652351], + [5.902907788937689, 51.416614969159134], + [5.879916780113952, 51.441247477745215], + [5.876660739111927, 51.44474153090146], + [5.876591443554864, 51.444815803226646], + [5.875364308078457, 51.446130912599344], + [5.874965974912467, 51.44655771938735], + [5.871695277412893, 51.450111962744892], + [5.860714493836522, 51.49198032931303], + [5.852573783724675, 51.504144422511139], + [5.851018956588637, 51.510844066390256], + [5.847686124542141, 51.525295239991948], + [5.838238544727385, 51.566414614417333], + [5.870892475539412, 51.56264419296317], + [5.891466194122831, 51.56020467920542], + [5.906662667982995, 51.552030865633412], + [5.917840793306254, 51.552641204959237], + [5.935445013985715, 51.553600192569768], + [5.952381460508784, 51.556973319301676], + [5.973386866380563, 51.561063332424688], + [5.991108131473628, 51.566039893958539], + [6.003052659736832, 51.569851481099903], + [6.00425287174482, 51.570243516868445], + [6.005099077822031, 51.569824999143911], + [6.011519443407857, 51.566649134828943], + [6.018212040092686, 51.563334678842871], + [6.031668914402318, 51.55233882993096], + [6.033687760859497, 51.555447475594562], + [6.032735252097308, 51.556685211977246], + [6.034320654226921, 51.557497267068207], + [6.037307932509262, 51.558149273823034], + [6.040912939290031, 51.55663044817112], + [6.044327753570236, 51.557447524903736], + [6.042866160624913, 51.558694624744362], + [6.044581972474964, 51.559015296896355], + [6.046425104816427, 51.557641015367409], + [6.048120780938238, 51.55846254527134], + [6.041452863566222, 51.563647447677212], + [6.037870396661875, 51.56941097115142], + [6.037818242490852, 51.574114761005454], + [6.039409759169988, 51.579128685057015], + [6.039717894333351, 51.581615959589044], + [6.038660328715386, 51.584130893288155], + [6.033478344412656, 51.589610806678358], + [6.030723494222655, 51.591518368976637], + [6.026281488542442, 51.595576852570417], + [6.024047087282631, 51.600760469013373], + [6.023853060154561, 51.616125363044041], + [6.022659502797508, 51.618851502870967], + [6.019979894169951, 51.621921141657566], + [6.004475470400639, 51.631774187932791], + [5.9960164299997, 51.636870310318919], + [5.98212203628463, 51.642519692944965], + [5.97660701868218, 51.643783110859111], + [5.972127375384033, 51.645772231936789], + [5.967469602354984, 51.649284831082959], + [5.964855751888707, 51.652732365727623], + [5.963482065513631, 51.657323610922006], + [5.963454073503478, 51.662988469883175], + [5.964138907584315, 51.667496503324287], + [5.96458668960619, 51.675573345208939], + [5.963395057780081, 51.68165799373719], + [5.961888365367649, 51.685857972249899], + [5.961395304072582, 51.687099597717634], + [5.956376371456865, 51.699633034715092], + [5.956254824465302, 51.70660595829731], + [5.955416630461113, 51.709131529289706], + [5.951829717890186, 51.71170058000061], + [5.946753594609254, 51.713432217740646], + [5.933784909390821, 51.716140398780276], + [5.919469627269011, 51.717671498730155], + [5.912001905602455, 51.717876576285228], + [5.89956679817331, 51.720189938057686], + [5.893782660189146, 51.722063697280213], + [5.887959024370979, 51.725192174760942], + [5.885404117649372, 51.728314187689357], + [5.883979156845077, 51.735437325516472], + [5.883781858440673, 51.736529662429078], + [5.881609418502382, 51.741545973447046], + [5.880490931117045, 51.746892089410004], + [5.879560505515812, 51.749913597116318], + [5.871166279613224, 51.755138243585193], + [5.870798793399125, 51.755335538942852], + [5.864468921821121, 51.757681721862099], + [5.865039946883536, 51.758249758762254], + [5.867141648878071, 51.760462156063767], + [5.869244778740394, 51.762860475991566], + [5.867408676686455, 51.767603332181849], + [5.867455022810729, 51.774417324598168], + [5.867893277531397, 51.775521020724312], + [5.869015365097441, 51.775735312957799], + [5.886374639856965, 51.778590454631392], + [5.893409337849454, 51.777852925046652], + [5.90109413635638, 51.770478884640603], + [5.905375878645053, 51.765683819124888], + [5.911114673577293, 51.762405661831089], + [5.913393355654983, 51.759001020546457], + [5.913329470318833, 51.755515018849309], + [5.915133633437815, 51.752536589854358], + [5.922485829739209, 51.750615518522487], + [5.933323325542355, 51.74809858593634], + [5.930738259772284, 51.746535189487489], + [5.929948351661657, 51.744428468183912], + [5.932766959696337, 51.741938447223475] + ] + ] + ] + } + } + ] +} diff --git a/frontend/static/geojson/waterschapsgrenzen.json b/frontend/static/geojson/waterschapsgrenzen.json new file mode 100644 index 00000000..e636620c --- /dev/null +++ b/frontend/static/geojson/waterschapsgrenzen.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","name":"waterschapsgrenzen","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[{"type":"Feature","properties":{"id":2,"statcode":"WS38","geometry_g":"polygon","gag_id":"38","hierarchie":"0","hierarch_1":"Aa en Maas","inspire_id":"NL.38.38_Aa en Maas_p","sde_id":null,"land_code":null,"inspire__1":"NL.38.38_Aa en Maas_v","inspire__2":"NL.38.38_Aa en Maas_l","wbh_code_o":"38","einde_leve":"1899/12/29","laatste_wi":"1899/12/29","admin_code":null,"waterschap":"Aa en Maas","publiceren":"38","Aangemeld":1,"Actief":1,"KVK":17251019,"tnostatus":2,"CPT":355,"GMW":588,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.538029170393707,51.816257440466806],[5.539479301898298,51.816219611913795],[5.540929860603062,51.81630760223145],[5.542380920617961,51.81653938807783],[5.543832402034952,51.81688800439513],[5.545284600185918,51.81743434620427],[5.546378615731343,51.81800812212213],[5.546483595835553,51.818063177169485],[5.546506771418391,51.81807533392077],[5.546737597917252,51.81819639010846],[5.547697337082956,51.81890516210043],[5.548628776017416,51.819802721171314],[5.549255669007079,51.82070069418911],[5.54972304031155,51.82159888504966],[5.550219439330419,51.822497033608045],[5.550562165255434,51.82315562029186],[5.550686848510922,51.823395220419926],[5.550830931144552,51.82359975551961],[5.550985169070532,51.82380142805959],[5.551149411186016,51.8240000404672],[5.551323510037652,51.82419540415123],[5.551507285542239,51.824387335058894],[5.55170057210723,51.82457564799212],[5.551903176928124,51.82476015666626],[5.55211490723863,51.8249406882784],[5.552335568452272,51.82511707115078],[5.552564936960397,51.825289133646116],[5.552791648445817,51.82545264475847],[5.553026620296751,51.82561161360693],[5.553269628905098,51.82576587754457],[5.553520418034251,51.825915279588806],[5.553778736908563,51.826059671738044],[5.554044329309433,51.82619890824635],[5.554316926339142,51.82633285012815],[5.554596248200738,51.82646135616736],[5.554882015152658,51.82658430312629],[5.555173945612339,51.82670156327695],[5.555471734460375,51.82681302128625],[5.555717225626336,51.82689991883516],[5.555966054667745,51.82698308987914],[5.556263270791393,51.82707621941031],[5.556564676698204,51.82716402439004],[5.556870021822156,51.82724643773599],[5.557179059208743,51.82732339011557],[5.557474185385667,51.8273910139771],[5.557772169448028,51.82745366124489],[5.558072773596019,51.8275112861784],[5.558375789029375,51.82756384074981],[5.558694642810171,51.82761079745851],[5.559015072841235,51.82765343657207],[5.559388839428622,51.82769749081025],[5.559764290551607,51.82773567534181],[5.560141181145688,51.827767956805666],[5.560519264394968,51.82779431869944],[5.560898307987659,51.82781474450251],[5.561278063295001,51.827829218845004],[5.562728652438105,51.827818067820694],[5.56417924084125,51.827806898866775],[5.565629828503109,51.82779571198325],[5.566456706656848,51.82778932737052],[5.56708041542235,51.8277845071701],[5.568531037803616,51.82778227274691],[5.569981587027653,51.8277620437551],[5.571432171711054,51.827750785153306],[5.572883015165344,51.82780242684632],[5.574333974013367,51.82788101555234],[5.575785201473005,51.82802250453024],[5.576713372663386,51.828141712989314],[5.577236627739599,51.82820891713296],[5.578688218925305,51.828431265033366],[5.580139978506952,51.82868954822082],[5.581591677085675,51.82892983680734],[5.583043469331632,51.82918808404559],[5.584495238805568,51.829437324996704],[5.58562883630976,51.829582830635005],[5.585946746542305,51.82962362980216],[5.58739778659529,51.829702056932234],[5.588848469322524,51.829699571339496],[5.590298746358089,51.829607184733085],[5.591748649863648,51.82943388543748],[5.593198130905209,51.829170685158196],[5.594647429319177,51.82887151374943],[5.596096583345335,51.82854535952246],[5.5975454644009,51.82816525756121],[5.597976692088266,51.828049440964435],[5.598994278705914,51.82777614940234],[5.599895499299763,51.82750609818439],[5.60044285510798,51.82734208182311],[5.601891274999814,51.82688103143913],[5.603339449489544,51.82637502164142],[5.604787504562191,51.82585101734972],[5.606235394764126,51.825300030260145],[5.607683073489924,51.824713072069095],[5.609130404382521,51.82406317786232],[5.610470440621243,51.82344474064692],[5.610577604337992,51.82339528916806],[5.612024626754497,51.822700417681915],[5.61264734378966,51.82239361679575],[5.613471514207103,51.821987551710194],[5.614918401324536,51.821283656170344],[5.615168890958762,51.82116646415416],[5.616365380448669,51.82060670767459],[5.617812960464265,51.820055577583396],[5.619261153466745,51.81963026589161],[5.620710204581522,51.81937571411091],[5.622159708226214,51.81921102747886],[5.6236109476291,51.8191413987031],[5.625060202712891,51.81916922619454],[5.626511116540324,51.81927413489178],[5.627962133193599,51.81939700224451],[5.62941315772933,51.819519851647506],[5.630395531017967,51.81959693429321],[5.630864141516973,51.819633694801595],[5.632314741255573,51.819675613622984],[5.633765048414665,51.81966358472613],[5.635214760805262,51.819543678345404],[5.63666391780907,51.819324882801126],[5.638112610045765,51.81902517470343],[5.639560577913937,51.81859961258973],[5.641007758660529,51.818039208180416],[5.64213584072048,51.817479479998504],[5.643031954165216,51.81693822401907],[5.644216044575057,51.81603679398846],[5.645168054157602,51.81513586263853],[5.645327048779199,51.81493701271994],[5.645887996871334,51.81423543560871],[5.646433892703718,51.813335388935215],[5.646574802955751,51.81303016343936],[5.646849255765219,51.812435628714645],[5.647264602274248,51.81153586693885],[5.647650930946962,51.810636168031614],[5.648095245639344,51.809736338722495],[5.648496042434775,51.80883660459733],[5.648940322580959,51.807936771920126],[5.649213359737852,51.80740119839704],[5.649399084504246,51.80703690505278],[5.649901325722949,51.806136938855374],[5.650461542532568,51.805236840215954],[5.651050734228191,51.804336673567605],[5.651741390686945,51.80343627492753],[5.652562501882139,51.80253557688087],[5.653427073522163,51.80163477425729],[5.653816521709292,51.80124838462823],[5.654219857270385,51.80084820076734],[5.654335102995002,51.80073386609737],[5.655286587688138,51.7998328513937],[5.656354009340579,51.79893156269781],[5.657493871237826,51.79803009712847],[5.658793146749133,51.79712825110467],[5.659900899871597,51.79642209193056],[5.660208338278042,51.79622612061988],[5.661826413066305,51.79532349776431],[5.662621040456712,51.794890188619654],[5.663959776946273,51.79423760316014],[5.664066290355249,51.79418568610943],[5.665512438547652,51.793633966977396],[5.666959388116629,51.79321705459643],[5.668407039860848,51.79291697233573],[5.669855292288416,51.79271574356351],[5.671304041611177,51.7925953916494],[5.672753067862002,51.79251996336034],[5.674103353063226,51.792449657565996],[5.674202089231173,51.792444517173166],[5.675650990685056,51.79235107648526],[5.677099943904983,51.79226660620333],[5.678104720539449,51.79220178223981],[5.678548833568773,51.792173129725654],[5.679997775573224,51.792088623652624],[5.681446418759943,51.79195915819379],[5.682894640883259,51.79176675676715],[5.684342435888278,51.79151141938864],[5.685789797724367,51.79119314607313],[5.68723654087844,51.79078497194815],[5.688682716831736,51.790295885325364],[5.690128317826118,51.78972588621795],[5.691572972010889,51.78902104487127],[5.692021591227121,51.78876224316197],[5.693247706310292,51.78805491997186],[5.694459633404035,51.78724278867965],[5.695699272472304,51.78625080265698],[5.696500634102808,51.78546690186919],[5.696620640301895,51.78534952846926],[5.697339080910686,51.7844487839764],[5.69791257402259,51.783548419252355],[5.698500535870089,51.78264801316338],[5.699073982976921,51.78174764261225],[5.699661898242659,51.78084723055385],[5.699930352481472,51.780488288370776],[5.700207503263245,51.78011770923107],[5.701199919330382,51.779045427434944],[5.702309402220872,51.77814360321845],[5.70308821834257,51.77762017566096],[5.70381878966618,51.77724068870212],[5.704531966308474,51.77687023271921],[5.705976619218562,51.77625509644199],[5.707422317605922,51.77579274340635],[5.708868691485979,51.77542924380742],[5.710315685950936,51.77515560932845],[5.711230023589208,51.77503386190299],[5.711763244951001,51.774962851652475],[5.713211636133859,51.77488692393179],[5.714660609715333,51.77489187295835],[5.714929672322477,51.77490113405579],[5.716109911303135,51.774941745537554],[5.717559216053969,51.774991600200856],[5.719008259473157,51.775005483790906],[5.72005155564735,51.77497015801959],[5.720456838860284,51.77495643145573],[5.721904814757056,51.77482646664212],[5.723352313357507,51.774633565948704],[5.724799328613761,51.774377729394324],[5.726245651793799,51.77403199214182],[5.727691342124932,51.77360534249814],[5.729136459991673,51.77310676876538],[5.72974545338,51.77285104782119],[5.730580724815995,51.77250031782573],[5.732024950801176,51.77189384909074],[5.733596285082034,51.770864527972805],[5.73464696915096,51.769962569068056],[5.735552739372181,51.76906103140481],[5.735612797069428,51.76899252237777],[5.735626842086093,51.768976499088076],[5.736340890489173,51.768164511061514],[5.736344925135136,51.7681598250265],[5.737957718689677,51.76628936666088],[5.738589158275635,51.76554116939157],[5.738926918118519,51.765144743286875],[5.739078950493541,51.764966305699225],[5.739429190030743,51.764555198372],[5.740248687696839,51.763761744701725],[5.741068156573661,51.762968285259966],[5.741887596662724,51.762174820047264],[5.74270700796554,51.761381349064024],[5.74348161268257,51.76063123416448],[5.743931487620187,51.76024348576778],[5.744375281780675,51.75986620777457],[5.745238629944573,51.75914449280454],[5.746405823294545,51.75838588630275],[5.747491244325468,51.75779408548897],[5.747847948484981,51.757599456645174],[5.7492913215349,51.75697479834225],[5.750735089044635,51.756404051964424],[5.752178388747745,51.75586950385187],[5.753623536149489,51.75538834181475],[5.755068297027952,51.75495236630733],[5.756513324171581,51.75455232612255],[5.757958621021506,51.75418822125169],[5.759404042772195,51.75384207512741],[5.760849814378026,51.75354085257948],[5.762295716050208,51.75325758876339],[5.763741899482294,51.753010260226496],[5.765188292848188,51.75278987868241],[5.766634974294321,51.75260543239672],[5.768081947270307,51.752456921357314],[5.768972315116666,51.75237659654929],[5.769298624789188,51.7523471561234],[5.769529062955019,51.75232636900751],[5.770976475921741,51.75223175188271],[5.772424189623986,51.75217306996938],[5.772735579932528,51.752162383119874],[5.773871976516395,51.75212335844811],[5.77531999203838,51.75210059384987],[5.776768393935412,51.75212275269577],[5.778216875071055,51.75215388190785],[5.779665592616143,51.75221195800912],[5.781114627608001,51.75230596924961],[5.782563904778118,51.75242692735223],[5.784013347704262,51.75256584404508],[5.78546303742686,51.7527317075773],[5.78691297654521,51.75292451793561],[5.788363167659696,51.75314427510645],[5.789813533195579,51.75338199082266],[5.790534392359943,51.75350905438373],[5.791264074887332,51.75363766507469],[5.792417262668015,51.75386944288876],[5.792714955979898,51.753929274353105],[5.794166179946248,51.754256818638375],[5.794260855806528,51.7542746735749],[5.795616936918567,51.75453041544166],[5.797067874673766,51.75482197075377],[5.798518667295496,51.75509553158986],[5.799969313046094,51.75535109795901],[5.801419645204833,51.75557069338918],[5.802869908642243,51.75578128261579],[5.804319936349556,51.75596488916809],[5.805769809082718,51.75613050129558],[5.805936772960821,51.75615068626925],[5.80721977605043,51.756305083710515],[5.807430710601979,51.75632655609761],[5.808669502370271,51.7564526834762],[5.810119238118212,51.75660026530033],[5.811568898778082,51.75673884095277],[5.813018483481859,51.75686841043787],[5.814467991361618,51.75698897375981],[5.815917421549524,51.75710053092293],[5.817366773177844,51.7572030819315],[5.818816131337999,51.75730561501237],[5.820265237285275,51.757381165502196],[5.821597477143639,51.75745061467541],[5.821714348029422,51.75745669807291],[5.823163463569141,51.75753221272443],[5.82461258390313,51.75760770945658],[5.826061621627645,51.757674200054126],[5.827510751257599,51.75774966094875],[5.827659490127247,51.75775739840989],[5.828959885677925,51.757825103923686],[5.830409113155832,51.757909517189496],[5.831858345998937,51.757993912532434],[5.833307673051958,51.758087278159934],[5.834757095179937,51.758189614067305],[5.836206523824352,51.758291932045225],[5.837656048696447,51.758403220296536],[5.839105670661551,51.758523478816365],[5.839945962018988,51.75859317750103],[5.840555300294751,51.75864371940001],[5.842005028174086,51.758772930245534],[5.842367556513619,51.75880747692203],[5.842415951662641,51.758812088827895],[5.843454855165186,51.758911111348006],[5.844904782133825,51.75905826270233],[5.844946766842065,51.75906199974661],[5.846354535606713,51.75918741972319],[5.847803838643294,51.75927161784443],[5.849252870958241,51.759328833470065],[5.850701445328075,51.75934109023622],[5.85214965002547,51.75931737635272],[5.853597295813077,51.7592397154654],[5.855044657034287,51.75913507215363],[5.856491637632994,51.75899445824689],[5.857938327907164,51.7588268619437],[5.85845889724826,51.75874387268963],[5.859384349111981,51.75859633053423],[5.860830072517415,51.758338816763036],[5.862275873990394,51.75809027335405],[5.863721659491119,51.75784171212704],[5.864184679064825,51.75774250927165],[5.864468921821136,51.75768172186205],[5.86451286691039,51.75767220376275],[5.864948574759006,51.757559088081734],[5.865166472387765,51.7575028019187],[5.865329004751082,51.75745283549972],[5.865746094106813,51.75732291227881],[5.866533605404354,51.757079699079924],[5.866996099071866,51.75691870881359],[5.867307110260204,51.75681406653029],[5.868425959099081,51.75640499184432],[5.869188334343693,51.756116471653925],[5.870183120480728,51.755666075458656],[5.871282707006749,51.75507573526389],[5.87149522722994,51.754964549429204],[5.871651707995134,51.75487733370589],[5.872083061329628,51.754692991779535],[5.87227345110893,51.7546063719662],[5.872764627392832,51.75435597453234],[5.873073527163932,51.75418990667177],[5.873334129042259,51.754049808598346],[5.874052462930957,51.75365914923882],[5.87458856935503,51.75336145727495],[5.874975316680208,51.753139367327385],[5.875194126786727,51.75301151966659],[5.875394269719021,51.75289456261897],[5.876222109079261,51.75239938179162],[5.876733592732118,51.75209341428339],[5.877007612929511,51.751897468782445],[5.877573681139302,51.75149269166116],[5.878241506549302,51.7510189834308],[5.879560505515788,51.74991359711632],[5.879567476620467,51.74990215232819],[5.879710170396843,51.74966791249372],[5.879829673599695,51.749471746727195],[5.880025538121108,51.749157751974636],[5.880326914888325,51.748549934574136],[5.880332250078864,51.748473608054105],[5.880493112102146,51.74697136132695],[5.880469481858979,51.74611271852824],[5.880450551605893,51.74542441650246],[5.880485699104043,51.7451703589981],[5.880598211721695,51.74435709244591],[5.881376444699251,51.742193665283544],[5.881609418492556,51.741545972548195],[5.882057458568967,51.74066943730008],[5.883337809036514,51.738164339878075],[5.883565801664695,51.73755688675889],[5.883723524586051,51.7368752335116],[5.883842983489507,51.73616758539701],[5.883867420715668,51.73602277439973],[5.884002522084027,51.73531489793106],[5.884034551764771,51.734685191808055],[5.884065429498876,51.734044281736324],[5.88406884707852,51.73397332922968],[5.884081369651771,51.733919425427565],[5.884255995982516,51.733168154655154],[5.884508053516562,51.73200324107419],[5.88454664370362,51.73170725343233],[5.884552953220449,51.731670274509675],[5.884618180909445,51.731287811261275],[5.884667687348631,51.731085420440586],[5.884696311205636,51.730944016053606],[5.884826236503713,51.730530905380945],[5.885012006127699,51.72993011791534],[5.885158964048126,51.72960510362693],[5.885259428207029,51.72914633867443],[5.885317409370404,51.728744220676774],[5.885355152300115,51.72848238395035],[5.885404117649392,51.72831418768936],[5.88600059023747,51.72721217213764],[5.886027680180441,51.727169702468636],[5.886334559548821,51.72669524398652],[5.886467930710874,51.72650469240914],[5.8865481569133,51.72638917941596],[5.886634682132209,51.72626610705542],[5.886825374490913,51.72608929690447],[5.887271388666044,51.72571815060647],[5.887647358982731,51.72539807850556],[5.887959024370989,51.72519217476094],[5.888969820740195,51.72452805817037],[5.890033181164529,51.72386508233727],[5.890395368255041,51.72366335054497],[5.89162557147722,51.72304289638023],[5.892056633921406,51.72282547424668],[5.892459148178324,51.72264783142563],[5.89373686403281,51.722083912989504],[5.89378266018915,51.722063697280234],[5.897059864092576,51.720886709650244],[5.898238209765152,51.72054288304294],[5.899566798173329,51.720189938057715],[5.900763668908433,51.71993858766459],[5.902501043762285,51.719562405181996],[5.904689568383501,51.719088511447524],[5.906056453961771,51.71876426668431],[5.906765520032452,51.71863248708147],[5.907436834367409,51.71850772020145],[5.908167054980247,51.71840652529075],[5.909074552466548,51.71828075211598],[5.910572217819986,51.7180739822281],[5.91200190560243,51.71787657628523],[5.913465648583697,51.71779989691384],[5.913891479971329,51.71779003675293],[5.914539326637959,51.71777503297653],[5.917367480291273,51.71770949145542],[5.918321885466272,51.71769225056835],[5.919471110275781,51.71767147401308],[5.920691698584966,51.71760226294769],[5.921103335264668,51.717571983085556],[5.922627644891213,51.71749166814677],[5.923049649225618,51.7174694328024],[5.92549877859637,51.71726575507675],[5.926424463491983,51.71720262122895],[5.927706363030512,51.717098196758705],[5.928461042094487,51.71701489233659],[5.928550331200964,51.7170018596038],[5.929207597211292,51.71690600301254],[5.930802811424842,51.716635961603636],[5.931637575910124,51.716510827283386],[5.933784909390837,51.716140398780276],[5.934024911752574,51.716098991340836],[5.935718999410667,51.7157295459848],[5.937074092022233,51.71546146010465],[5.937174709213399,51.71544155419657],[5.937676172441091,51.71535146906274],[5.940192309195542,51.71498573240734],[5.940792430547987,51.71487153909639],[5.941296281986936,51.71477566315572],[5.942956755841019,51.71444681058151],[5.94313885810335,51.71440522769618],[5.944172242441975,51.7141290401495],[5.944976262017164,51.713900704021604],[5.945013046057085,51.71389025479347],[5.946061266919675,51.71361047424902],[5.946832082161188,51.713412009240606],[5.946890945956434,51.71339685171623],[5.948927124761243,51.712872547296676],[5.949417703078157,51.7127025547446],[5.950000078854151,51.712491220613245],[5.950746444595152,51.712203140376445],[5.951211161618093,51.711991017996276],[5.951499582406501,51.711855589690416],[5.951829717890197,51.71170058000061],[5.952163416911514,51.711518298558545],[5.952948906415493,51.711075320538406],[5.953203318429569,51.71091714916627],[5.953698189471734,51.710561591777996],[5.954100065415185,51.710279020986924],[5.954764554291217,51.70976677436251],[5.955291052661617,51.70930490069458],[5.95541663046114,51.70913152928971],[5.955557837514808,51.708875655824514],[5.955697288577872,51.70862293673485],[5.955940298472584,51.70813538001929],[5.955942556692377,51.70813087471836],[5.956178991686274,51.70724784802333],[5.956254824465288,51.70660595829729],[5.956297501166358,51.70570940084275],[5.956288529502027,51.705330032706954],[5.9562672692492,51.704377876323576],[5.95625736122331,51.70393442346309],[5.956235353119117,51.703484737314376],[5.956090238275237,51.70188572848222],[5.956078340241209,51.70152650903629],[5.956078784912465,51.701272720680564],[5.956079006423978,51.701142599570474],[5.956124173985383,51.700777439975],[5.956204777481395,51.70033147974251],[5.956314890218971,51.699883308607276],[5.956376371456869,51.6996330347151],[5.956567709799124,51.698940695544984],[5.956779269597752,51.69838425629946],[5.956898816058235,51.69811160543298],[5.957065136551503,51.697753711881305],[5.95785726982707,51.69606278675953],[5.958172083615863,51.695379928002474],[5.958224103507701,51.69526709108733],[5.958458751863808,51.69462464003199],[5.958731094551545,51.69385013149188],[5.95887348749369,51.69329515821015],[5.958904611309241,51.693173775873674],[5.958943033579526,51.69306226341345],[5.95906700650435,51.69253790535629],[5.959135083711663,51.69231597480044],[5.959197819386926,51.69214975518986],[5.959296966732194,51.691907627957626],[5.95938146437906,51.69171940545958],[5.959498588214875,51.69150021919037],[5.95955931082128,51.69140253893521],[5.959785329203569,51.69087770802227],[5.960173160211257,51.68997708580888],[5.960944405386613,51.68817672169018],[5.961383827590158,51.687128769271894],[5.961680726835546,51.68637406044892],[5.961846769398362,51.685961364593275],[5.961995727714564,51.68559111718756],[5.962404295607868,51.68457554657449],[5.96302990206603,51.68277934333993],[5.963325487583703,51.68187164869831],[5.963710839944037,51.680688223288016],[5.963737315101899,51.68057590496608],[5.963950208050046,51.67967262468006],[5.964067371076007,51.679173803791834],[5.964392770353629,51.67737204184275],[5.96458668960619,51.67557334520894],[5.964673807463206,51.6737730984894],[5.964658473720895,51.67287638014474],[5.96465210722058,51.67250440503378],[5.964643099703051,51.67197758552996],[5.96455832224408,51.670930576890036],[5.964532311536133,51.67060934997144],[5.964497594270938,51.670180562179844],[5.964281851426742,51.66838388473379],[5.964228244049399,51.66805122528792],[5.964224302633022,51.668026669592834],[5.964139094281027,51.66749765475634],[5.96413834111662,51.66749300231825],[5.964050500611395,51.66689795133899],[5.964049757795836,51.66689297525555],[5.9639008940333,51.66588524763605],[5.963753543492664,51.66506384826627],[5.963580557931482,51.66389298597128],[5.963540603796398,51.66362260455893],[5.963364692341485,51.662333428820155],[5.963276189949273,51.66142926743827],[5.963256410791583,51.660982419009535],[5.963243099896792,51.6601386780002],[5.963272795339539,51.659400144860385],[5.963281216704608,51.65919084611484],[5.963303483053372,51.65896107481827],[5.96337087795374,51.65826531302512],[5.96348206551365,51.657323610922006],[5.963677161936589,51.656281468798724],[5.96383816884809,51.655636049524325],[5.964024676507769,51.65490208223216],[5.964034336830112,51.65486406625811],[5.964256179082405,51.654154562402184],[5.964513738177738,51.65352223876272],[5.964855751888689,51.65273236572757],[5.965105473351566,51.6522503168453],[5.965204846399178,51.652096235679544],[5.965611173819872,51.651466221568],[5.965974801332547,51.65098498395689],[5.966244195940622,51.65062845147312],[5.966431682971667,51.650395830072505],[5.966449135818955,51.65037417971709],[5.966620857324033,51.65017777971576],[5.966907588818199,51.649866814645414],[5.967469602354972,51.64928483108292],[5.967931579633647,51.648864724932],[5.968484415802436,51.64841061060574],[5.968543157835162,51.648361590845134],[5.968800869542458,51.648146549079996],[5.969393664565207,51.6477123664737],[5.969591678349887,51.647574671369085],[5.971665516802314,51.646132514636136],[5.971997204617757,51.64587377940256],[5.97238613325719,51.645570379535236],[5.972673659333389,51.64537757086883],[5.973072086109188,51.64512107828925],[5.973787991511347,51.644717591167584],[5.973931245792022,51.64461076978261],[5.974163005756862,51.64449604355212],[5.974752099432691,51.64424186030324],[5.974936392597129,51.64416705617284],[5.975082732594818,51.64412799292427],[5.975527097441853,51.64402308976467],[5.976607018682194,51.643783110859076],[5.979352502418022,51.64317297850003],[5.979537909627503,51.64313565346873],[5.980605101303348,51.64292082548163],[5.980989939440755,51.64283072921242],[5.98185044092318,51.64261310053116],[5.982122036284649,51.64251969294499],[5.982920728683878,51.64221804725617],[5.983877440640665,51.641863293699565],[5.984664329593434,51.641584186051176],[5.985083612233797,51.64142465102806],[5.985358477316313,51.64131185740279],[5.985510443569435,51.64124949838679],[5.985789956417278,51.64112015865293],[5.986204887139027,51.6409140172169],[5.986377973042223,51.64084081635703],[5.986735452032051,51.64069092221247],[5.988467738456054,51.63996404626276],[5.989555395864642,51.63950763922875],[5.99010733940397,51.639276023212766],[5.991401136047453,51.63873307796223],[5.993912799810376,51.637719396315454],[5.996016429999719,51.63687031031892],[5.99618803101607,51.63679105310364],[5.996256116114584,51.63676125146302],[5.996352334172236,51.63671914149683],[5.996792841577419,51.636455759302294],[5.997320806733715,51.63612887214861],[5.999296871218981,51.63486325043944],[6.001563019114557,51.63330829632486],[6.003633419239365,51.63222822604067],[6.00380899585871,51.63213663093019],[6.004470664844592,51.63177661958579],[6.004859124216987,51.63158005202816],[6.00543968776073,51.63126750160521],[6.006496909532514,51.63067170625156],[6.007227939040309,51.63021057470111],[6.007462855207226,51.63002559872489],[6.007671152350873,51.62984813426903],[6.008189816828442,51.629366109437086],[6.00824332567877,51.62931638709091],[6.008326897256477,51.62923872078505],[6.009730915279325,51.62824087343468],[6.010537500360242,51.62769725115588],[6.010678380651369,51.62760229790125],[6.010849730655999,51.62749136176622],[6.011528551886041,51.62709484086506],[6.012500620082712,51.62657863602465],[6.013611702205812,51.625986352587056],[6.014006917843739,51.62576888204929],[6.014286063291247,51.62561527759184],[6.014872109614037,51.6252683468447],[6.015207119879087,51.625070020033654],[6.015637045187924,51.62479894619681],[6.017954604832092,51.62329217511802],[6.018152282841266,51.623162029900676],[6.018950138300129,51.62263673287839],[6.019802071957643,51.62205154216902],[6.019979894169928,51.621921141657566],[6.02005599254716,51.621858797156115],[6.020207009660009,51.6217117323076],[6.020630165691335,51.62129137269296],[6.020947473368443,51.6209231807816],[6.022020519946127,51.61966414408214],[6.022541856943755,51.6190087178156],[6.022589818073492,51.618948421112506],[6.022659502797497,51.61885150287092],[6.02271538916825,51.61875915396597],[6.022771845854421,51.61864262208555],[6.022939361256268,51.61829681164179],[6.022960114055405,51.61825380431079],[6.023097778418673,51.6179685785547],[6.023413811508457,51.617245239425145],[6.023853060141944,51.61612536214522],[6.023918098957002,51.61578046757052],[6.024066369552915,51.61480320741903],[6.024106754374261,51.614378896114864],[6.024105360130441,51.61414097029383],[6.024101260489873,51.613443372181486],[6.024118111295135,51.61262871567174],[6.024121578529934,51.611550041128645],[6.024120289064504,51.61061575249423],[6.024106131357858,51.610179432432844],[6.024088857500545,51.60964666153611],[6.024086160458323,51.609563619722756],[6.024051152785439,51.60905404659943],[6.024021913427165,51.60862823562208],[6.023955906770171,51.60738238782955],[6.023932665374089,51.60677603999609],[6.023933535546598,51.60574852534858],[6.023870005766687,51.605153453043954],[6.023854912714745,51.60501205147825],[6.023788872465887,51.60425654263622],[6.02374716824827,51.603877082648495],[6.023766879364697,51.603245332106766],[6.02378399667941,51.60303544022641],[6.023836847486421,51.60238921698191],[6.024047087282631,51.60076046901337],[6.024075842918935,51.6006579298731],[6.024425491042743,51.59941107493488],[6.024943469380397,51.59806370461938],[6.025285493156683,51.59737251355236],[6.025573028562708,51.59679140828114],[6.025945238095925,51.59615332698328],[6.026281488542417,51.59557685257042],[6.026947118863723,51.594687544187984],[6.027244145452762,51.594297961168245],[6.02771112920158,51.59386843482704],[6.02835498609146,51.59325976932629],[6.028785101953196,51.592855519575075],[6.029846719521993,51.592092290551065],[6.03054733061713,51.591633683583524],[6.032059932568028,51.5906435184199],[6.032758547337135,51.590140045785354],[6.033389723887026,51.58968291054619],[6.034156235665223,51.589059251024686],[6.034640910118898,51.588678443714386],[6.034956989783972,51.58842188641409],[6.035263706216461,51.5881646970009],[6.035420246306505,51.58802357639155],[6.035578177651946,51.58788294223546],[6.035874185669721,51.58759587779253],[6.036358815159016,51.58710714360803],[6.036460547728897,51.587004555409315],[6.036522204550573,51.58693795628597],[6.036594930708663,51.58685940341552],[6.036892816242631,51.58653508517967],[6.037144483835323,51.58625432233816],[6.037384795545416,51.58596974791908],[6.037632218881441,51.58567316928478],[6.03774912601193,51.58551733555923],[6.037968151857167,51.5852260468522],[6.038071842629714,51.585074439209876],[6.038186057516922,51.584900129998765],[6.038472942498425,51.58445247020949],[6.038572354842071,51.584285506051906],[6.038660328715404,51.58413089328816],[6.038961609300607,51.58357715571198],[6.039334200960029,51.582846694544266],[6.039419254288225,51.58259569224889],[6.039536570035827,51.5822495068624],[6.03957698686551,51.58210829145422],[6.039717894333378,51.58161595958907],[6.039784658600972,51.58087015193391],[6.039592173115174,51.57972497049268],[6.039313758952619,51.57881486772676],[6.039043878932504,51.57810336092874],[6.03871228127557,51.57721639393274],[6.038637867073304,51.57698312599625],[6.038436895165162,51.576353121946454],[6.038199463141983,51.57563084349935],[6.037960904496527,51.57482947806153],[6.037818242490861,51.574114761005454],[6.037762666578599,51.57361609108552],[6.037736955468373,51.57338531099159],[6.037657290945575,51.5726289842219],[6.037623033738763,51.57204064872504],[6.037595485266864,51.57156757568357],[6.037585507613349,51.57156384691291],[6.037568129780605,51.57123801733997],[6.037559562381839,51.57097235495449],[6.037554573898627,51.570714852488884],[6.037554744253993,51.570424781710734],[6.03758970519819,51.57018800089452],[6.037658985504351,51.5699585796641],[6.03776571891148,51.569677443834735],[6.037870396661869,51.56941097115144],[6.038005463986763,51.56912535368003],[6.038007829260544,51.569120306756716],[6.038135915366072,51.568846871924784],[6.038270188102979,51.568564413630824],[6.038406560196596,51.56826855009718],[6.038585443390358,51.5678686283092],[6.038745830180587,51.56751575807596],[6.039308171026851,51.56654802856619],[6.039731852081618,51.56583284810389],[6.040123082897758,51.56521188863284],[6.04017695525597,51.565134939719876],[6.040589033510899,51.56461148096882],[6.040705259096222,51.564463845407175],[6.04071200096077,51.564455286275944],[6.040809456912445,51.564348349206846],[6.04142216030153,51.56368058168775],[6.041452863566234,51.56364744767721],[6.042081424861847,51.563038527673015],[6.042854504712853,51.56226384797135],[6.043500533610263,51.561692665160244],[6.043791659761493,51.56143026303585],[6.044343722819446,51.560982490013856],[6.04485171027789,51.56056901218531],[6.045456249999529,51.56008973810853],[6.046273731222327,51.55944161775548],[6.046841202323908,51.55913360334467],[6.047563839506026,51.55874974221112],[6.048120780938219,51.55846254527134],[6.047220809211703,51.55806593870223],[6.047080217600116,51.55800397263498],[6.046765669520032,51.55786534280664],[6.046425104816429,51.55764101536741],[6.045588482164121,51.55833113293026],[6.045516668504637,51.55830034625728],[6.044655197304401,51.559028979405475],[6.04458197247497,51.55901529689638],[6.044515225616471,51.5590028183597],[6.043769763642106,51.558863502768084],[6.042959743660402,51.55871211320549],[6.042866160624899,51.55869462474434],[6.042782235697606,51.558678870798886],[6.04291623134628,51.55854202766107],[6.043478511021926,51.55811351822597],[6.04438268987871,51.557487036533004],[6.04432775357024,51.55744752490372],[6.042394466935609,51.55681055574022],[6.042217043075936,51.55676660630568],[6.04091293929004,51.55663044817112],[6.040136805335236,51.556667058164365],[6.039968661396556,51.55673478487976],[6.039774169797769,51.55685856916629],[6.038795058214218,51.557362645276754],[6.038195699935429,51.55763843835419],[6.038014784783286,51.557737155025194],[6.03746881472929,51.55803502916284],[6.037307932509265,51.558149273823034],[6.037203768443625,51.55811971375864],[6.036869630454972,51.55802487915793],[6.036104528918596,51.55773856648011],[6.035970916595063,51.557688566434955],[6.034812312160279,51.55757202675396],[6.034433873020718,51.55752899977648],[6.034320654226923,51.55749726706821],[6.033957940090656,51.557169205047266],[6.033845172532936,51.55710933429705],[6.032727785772525,51.556866971723835],[6.032597778746562,51.556852049362874],[6.03261516942498,51.55683582730767],[6.0326311796023,51.556820889292105],[6.032666460427968,51.55677489621991],[6.032735252097324,51.556685211977246],[6.032987424099376,51.55635641768833],[6.033209466160207,51.55606690889189],[6.033230421478303,51.556002289062505],[6.033300788531434,51.55578534965389],[6.033405847938567,51.555662583228695],[6.03353171438406,51.55551551261468],[6.033687760859476,51.555447475594534],[6.033528824826031,51.5552335304988],[6.033455585325733,51.55517965199744],[6.033422137878635,51.55514257823601],[6.033386595400366,51.55510317895233],[6.033363283469325,51.55506802666172],[6.033335300165099,51.55502581699005],[6.03332163595469,51.554954260437626],[6.033373283377853,51.55487704824576],[6.033514216398951,51.5547472247997],[6.033490343291089,51.55467669553547],[6.033444653832927,51.55461224654958],[6.033277991045924,51.5545167089944],[6.033162517842085,51.55443741867613],[6.033034664377545,51.55432404805246],[6.032972077919513,51.55425969228829],[6.032689262773486,51.55396885697598],[6.032270322327322,51.55353805227414],[6.032211751385293,51.55342125996763],[6.032130699443546,51.55325964749961],[6.031716604109404,51.55243391604496],[6.031709348025009,51.552419448075376],[6.031668898096588,51.55233879855995],[6.030837854930821,51.55301639291465],[6.030673319565437,51.55315054093334],[6.029115545449546,51.55442824547158],[6.02867660253734,51.554787073011994],[6.028665213140344,51.55479639405496],[6.028618557107038,51.55483452020852],[6.028560568720859,51.554881931107076],[6.02853063372956,51.554906410255796],[6.027566307447763,51.5556947358319],[6.027374572920192,51.555851473318015],[6.025336063744022,51.557512886369146],[6.023631238358907,51.55890727527552],[6.023628316365482,51.558909718177794],[6.022032739218442,51.560219352603134],[6.021722438154971,51.56047402889278],[6.020586325389075,51.56140647444225],[6.02057543322795,51.56140515819483],[6.020231447593271,51.56168611659899],[6.020221794103843,51.56169399817188],[6.018212040092702,51.563334678842864],[6.018011153135441,51.56343418222307],[6.018005151566311,51.56343715397033],[6.017944620296087,51.56346713488485],[6.017938948154221,51.563469943051466],[6.01779856295003,51.56353948328735],[6.017788779912665,51.56354432712991],[6.017207883297299,51.563832073896506],[6.016577045800321,51.56414453636044],[6.016551835606103,51.56415702279657],[6.016396191135953,51.564234122219396],[6.01535493749219,51.564749858347945],[6.014799579109774,51.56502491629994],[6.014736049753108,51.56505637681444],[6.012912628231427,51.56595944657382],[6.012036123572041,51.566393523870055],[6.011860707665755,51.566480304988374],[6.009800677522991,51.56749940446827],[6.009612975553004,51.56759226115449],[6.008340415282864,51.56822175982647],[6.008280875508316,51.568251210179255],[6.008249727581924,51.56826661963843],[6.007413386476283,51.56868031344451],[6.006174162028446,51.56929326066181],[6.005543297272528,51.569605285489715],[6.005060529262504,51.56984406509773],[6.005056574795627,51.569846018601346],[6.004386923521505,51.57017721757213],[6.004344727929737,51.570198087727434],[6.004284436152655,51.57022790740998],[6.004252871744821,51.570243516868445],[6.003487664076373,51.56997583206973],[6.003182703074189,51.56987770010364],[6.003083506764145,51.56985952621449],[6.002899220912231,51.5698114633458],[6.002814265105896,51.56978930406378],[6.001015755739835,51.569320470194185],[6.000679082147184,51.569232700602036],[5.99987770909649,51.569023789200514],[5.998980854456328,51.56879001480944],[5.998871136057282,51.56876137553547],[5.998644234114792,51.568674562551614],[5.998415889072401,51.56858763083463],[5.997777615005906,51.56834463823325],[5.99675633268922,51.5679558197203],[5.996679625644378,51.567926619675816],[5.996416785723972,51.5678266863905],[5.996332119317252,51.567794408497846],[5.994675523235959,51.56716389190901],[5.99419026256521,51.56697918569055],[5.99405822393539,51.56692893190935],[5.993902960743998,51.56686978278975],[5.993451092073992,51.5666977451503],[5.993243653116176,51.566639544502166],[5.993108072511774,51.566601478871256],[5.992961322846456,51.56656027546345],[5.99121190031438,51.56606906831981],[5.991119478589245,51.56604308296993],[5.990663075759271,51.5659147796029],[5.987365442707646,51.56498865793701],[5.987252238017161,51.564956879631005],[5.987044778217514,51.564898618698294],[5.986695840984288,51.56480062697535],[5.985066083474402,51.56431239852747],[5.984693059436405,51.564198008288024],[5.983912983846431,51.56395878450072],[5.983531710409867,51.56384189898076],[5.978645120884372,51.56234331378009],[5.978505827466805,51.56230060286905],[5.97848266010893,51.56229349311263],[5.97791383259981,51.56211902121548],[5.976346230868999,51.561638160887426],[5.975596907155771,51.561494879990434],[5.975478481313753,51.56147175486133],[5.972405625659653,51.56087171377971],[5.970717719763651,51.560543075711884],[5.970492186810021,51.56049925785719],[5.970435890160615,51.560488302893475],[5.9693249984139,51.56027213425058],[5.967968362970923,51.560008133981896],[5.964022153770911,51.55924009360566],[5.963528321359113,51.559143968478864],[5.959785036141074,51.55841531479046],[5.959472899604877,51.55835423715373],[5.959199708653645,51.558300788271765],[5.9588510379617,51.55823328107508],[5.957319451172482,51.55793505603322],[5.95568987599886,51.55761769225158],[5.952975172402383,51.55708893589634],[5.952398704950299,51.556976759484634],[5.952275107032023,51.55695209885328],[5.952184325645682,51.556934110878956],[5.949566410523458,51.556412888404964],[5.949008315174593,51.556301761943324],[5.948013484848242,51.55610368715329],[5.947906356927459,51.55608235859326],[5.947898825722812,51.556080857655225],[5.945977030035851,51.5556981630061],[5.945687062665765,51.55564040330855],[5.944589067935075,51.5554217363444],[5.944493954902618,51.555402774314054],[5.943812914900266,51.555267046540244],[5.943013399474773,51.55510770318515],[5.941668211367572,51.554839589011564],[5.940498567966157,51.554607111365456],[5.940452890818832,51.554597889463786],[5.938204833741977,51.55415008601135],[5.938049018867436,51.55411900051406],[5.935445013985705,51.55360019256977],[5.935112439799031,51.55358209435894],[5.934227115482183,51.553533901527445],[5.932549680553256,51.55344268764257],[5.929500417373662,51.5532766571356],[5.929492914646988,51.55327624252426],[5.928041874933351,51.5531972162449],[5.926618541895665,51.553119662014616],[5.925180641960251,51.55304134855599],[5.923070259223501,51.55292637366225],[5.922294901018716,51.5528840849263],[5.921384498809229,51.55283440862209],[5.92068431388173,51.552796286800536],[5.920540756585862,51.5527884658698],[5.920128840755074,51.55276598612334],[5.919790940545535,51.5527475720131],[5.918245432241076,51.55266328179787],[5.918123805894762,51.5526566436002],[5.91616163072857,51.55254958950245],[5.914412388036599,51.55245411701173],[5.912409573003831,51.552344765386266],[5.910950859080365,51.552265121119945],[5.908968605541204,51.552156858833335],[5.906662667982987,51.55203086563341],[5.906259415097197,51.552247822066235],[5.905956998032156,51.55241052937835],[5.905500319520206,51.55265622712604],[5.904892281953783,51.55298335342854],[5.900200127948219,51.55550751095765],[5.900133481847281,51.55554330917621],[5.900024269745353,51.555602125652435],[5.898670909784919,51.55633012521691],[5.897788525776763,51.55680475295404],[5.897029376013855,51.55721302059255],[5.894938246981963,51.55833759539429],[5.894853532337869,51.55838317694237],[5.893096412866204,51.5593281455244],[5.892953782212929,51.55940489774368],[5.891926678771764,51.55995712271466],[5.891466230123556,51.560204674555656],[5.890777820743851,51.56028692449979],[5.890646039525806,51.5603023238579],[5.890474540031259,51.560322676176646],[5.886476460155512,51.56079697937778],[5.885774387316075,51.560880246942496],[5.877526338959369,51.56185813455173],[5.872886488342088,51.56240796442563],[5.871964973972458,51.56251714169699],[5.871385882317412,51.56258574385022],[5.870892475539386,51.56264419296317],[5.867393742930301,51.563068511064245],[5.863122882804197,51.5635756648643],[5.86235047726999,51.563667365530065],[5.860216709419062,51.56392066068397],[5.857028134063172,51.56429211317707],[5.85586151000077,51.5644279979356],[5.852997350072852,51.56475977353866],[5.84871780715906,51.56523981902054],[5.848664245330883,51.56524582830069],[5.848565736453171,51.565256877943774],[5.848538897878526,51.565259887274046],[5.846064994676507,51.565537313201204],[5.845866706552065,51.56555954783316],[5.838835935381473,51.56635032064281],[5.83877840845327,51.56635670924891],[5.838761932515478,51.56635765381912],[5.838594073381679,51.56637592030789],[5.838560605289928,51.56637956418722],[5.838495815781616,51.56638661890785],[5.838338560186218,51.56640372947245],[5.838238544727365,51.5664146144173],[5.838436523094383,51.56556702328],[5.838612623664466,51.564813061811726],[5.838814412011875,51.56390624649796],[5.839120820707842,51.5625531408428],[5.839462965165411,51.56106869653328],[5.839627739509824,51.560353761085885],[5.83977955212181,51.55969889324074],[5.839798521327977,51.559617049378204],[5.839956896032191,51.5589338323731],[5.840439671938239,51.55679552128974],[5.840490502952109,51.55657035434808],[5.840516684876086,51.55645439712234],[5.841092085562774,51.553950358662455],[5.841172756142181,51.55359819058333],[5.841522380135859,51.55207198409124],[5.841627496364207,51.55161311426309],[5.842028215921011,51.54985381821918],[5.842279021675447,51.54884222974658],[5.842468667317513,51.54807730501709],[5.84250590269304,51.547914445915524],[5.842583867281689,51.54757348714034],[5.842690777994305,51.54710589007275],[5.842752263462376,51.54683696817508],[5.842794759009283,51.546651131228906],[5.842898483480102,51.54620118224234],[5.843499651449813,51.54359303802268],[5.843619011316902,51.54307508133661],[5.843779364093203,51.5423791761051],[5.844267270576839,51.54024006136412],[5.844551812561728,51.53899452893098],[5.844648777289426,51.538576685300114],[5.844664290622446,51.53850980226918],[5.84466716396057,51.53849741352423],[5.844680522536907,51.538439851261806],[5.844682829450208,51.53842990068272],[5.844722172287719,51.5382603178684],[5.844724824577914,51.53824888279378],[5.844734052510186,51.53820911642669],[5.844811963497953,51.53787327960764],[5.845129131371182,51.53649568091941],[5.845397995284955,51.535322261146646],[5.845434661733256,51.5351622166016],[5.845682217577791,51.534078263651146],[5.845916290821711,51.53305328421176],[5.845960500583034,51.532858486326774],[5.846366756792615,51.53106800420203],[5.846710468562952,51.52957985117931],[5.846942758605374,51.52857403123881],[5.847148411805803,51.52768534012926],[5.847333669409793,51.526892279316336],[5.84748093950977,51.52626176757251],[5.847496624793085,51.52619134183609],[5.847601166975954,51.5257217261026],[5.847661879624422,51.52544905576233],[5.847665821240329,51.5254313323872],[5.847668302418763,51.52542022150018],[5.847681898405441,51.525317518638815],[5.84768608346295,51.52529911340513],[5.84773559231177,51.5250814399051],[5.848285724420005,51.52270392916521],[5.848700977381018,51.520909149849636],[5.848776449535388,51.52058295536706],[5.849165303355454,51.51890211193269],[5.849813543783169,51.516084474396735],[5.850848316673915,51.511585991383946],[5.851188473902334,51.51010701386556],[5.851201163113948,51.510051817393794],[5.851216666471455,51.50998442996603],[5.851373902441519,51.509300776011024],[5.851852532051748,51.50721950190656],[5.851857152178768,51.50719942060114],[5.851882886219334,51.507087497973366],[5.851887699607714,51.50706659791986],[5.851889340671901,51.507059454310635],[5.852202084759144,51.505699404744036],[5.852218784909046,51.505626798904096],[5.852424682132995,51.50473135388906],[5.85243892679615,51.50466940049263],[5.852524352229715,51.50429782405932],[5.852552220738668,51.50417664330498],[5.852573783724697,51.504144422511146],[5.852873944889923,51.50369597940004],[5.85308076363911,51.50338698560005],[5.853415130095587,51.502887420248],[5.85361673190063,51.5025862013542],[5.853980394468645,51.50204285095719],[5.854825194954054,51.50078054791123],[5.855625172022757,51.49958516899448],[5.856632568875726,51.498079727687625],[5.857594887170701,51.496641560204644],[5.857871978010889,51.496227472017566],[5.858595660967726,51.495145979671626],[5.859604937381859,51.49363795129606],[5.85964828471354,51.49357317351495],[5.859710958978535,51.49347953541791],[5.859715368854041,51.49347294677031],[5.860334044464102,51.49254869544603],[5.860714493836519,51.49198032931305],[5.860723724298076,51.491966548024514],[5.860728717477283,51.49194824459517],[5.860801376523755,51.491671706701744],[5.861305104953875,51.48975451264432],[5.861460255301106,51.489164011678945],[5.86147252542472,51.48911731904522],[5.861484601358782,51.489071337312666],[5.861663925917034,51.488388764604245],[5.862310289635332,51.48592835086933],[5.862335947742539,51.48583067319116],[5.86233920179169,51.48581829138002],[5.862448631830457,51.48540171016953],[5.862666544466594,51.48457213777217],[5.862791669800711,51.484095797735634],[5.862803954275259,51.484049016115186],[5.862932053555262,51.48356134690504],[5.863685514157316,51.48069288113339],[5.863848356047658,51.48007292474975],[5.863938060900885,51.479731442876314],[5.864270149915066,51.478467116253505],[5.864309780567105,51.47831622125694],[5.864320190120156,51.47827660106639],[5.864422068222338,51.4778886688652],[5.864614262206441,51.47715687853906],[5.864798463920923,51.476455520637245],[5.864987504256074,51.47573571556604],[5.865030050544476,51.475573698201856],[5.865175237794096,51.47502087730145],[5.865266970612172,51.47467153871292],[5.865453228339402,51.47396227902165],[5.865492505259307,51.47381270635743],[5.865639591092506,51.473252605067856],[5.865750899297671,51.47282871363501],[5.865826459984659,51.4725409691335],[5.866012437710219,51.47183273426983],[5.866199890223855,51.47111884804375],[5.866211541649325,51.471074458497746],[5.866293822031192,51.47076113091862],[5.866951993884124,51.46825432836268],[5.867389490802438,51.46657521939655],[5.867494593078698,51.46617181006173],[5.867726204076063,51.46528168461473],[5.868041679094611,51.46406915338888],[5.868467819545518,51.46243237991661],[5.868560600335744,51.462075994626915],[5.868588301529256,51.46196958777638],[5.868859964209329,51.460926080342134],[5.869284271422686,51.45929614131857],[5.869518487614967,51.45839635596382],[5.869734450966688,51.457576744780845],[5.869836807369663,51.45718830170607],[5.870212412379829,51.45576277683689],[5.870219424726645,51.4557361679085],[5.870915539931265,51.453088839951086],[5.870918497631187,51.45307743886919],[5.871261283881139,51.45175810507631],[5.871611621305061,51.45042695442123],[5.871695277412881,51.45011196274487],[5.87171996294134,51.45006860606045],[5.871816756329466,51.44989865704461],[5.872097981085448,51.44958859684611],[5.873050740464531,51.448574173040576],[5.87423248106828,51.447315880695434],[5.874768881673809,51.44676148387825],[5.874965206920276,51.44655854058104],[5.875006378795187,51.446514422089514],[5.875150416012228,51.44636010190369],[5.87531976634024,51.446178637253],[5.875440264919427,51.446049529951594],[5.875503507647441,51.445981777186475],[5.875536927954379,51.44594597414712],[5.875604592904255,51.445873452222614],[5.87565239074992,51.44582224054389],[5.875699413475125,51.445771863556814],[5.875774906740123,51.44569095813571],[5.875926560604436,51.445528407264405],[5.876269442058105,51.44516091852105],[5.876367906979706,51.445055390399716],[5.876660739111943,51.44474153090145],[5.877294006556006,51.44406201382371],[5.878486644824664,51.442782211209824],[5.878741067267073,51.44250920951508],[5.881206414474816,51.439863397094214],[5.8814985364046,51.439549860751555],[5.882566843908307,51.438403226281366],[5.882570668116559,51.438399120123606],[5.882574449863202,51.43839507706781],[5.882687148520981,51.43827459753272],[5.885714371881066,51.435037504110724],[5.886655723949159,51.43403079060472],[5.886888823802268,51.4337814936531],[5.889936031130515,51.430524966283436],[5.890113115662314,51.43033569791699],[5.890190285000823,51.43025297345044],[5.890209854360542,51.430231990004785],[5.890272669761727,51.430164662344936],[5.890285076435988,51.43015135928254],[5.89048572865392,51.42993625363297],[5.891426476786812,51.42892773249457],[5.891441582913415,51.4289115412069],[5.89153071281754,51.4288159819905],[5.891666339679693,51.42867057623405],[5.891780337072644,51.42854834723626],[5.891954486962931,51.42836164153341],[5.892324779897614,51.42796464623605],[5.89303959844237,51.42719826065667],[5.893769511532519,51.42641565207635],[5.894145669578087,51.42601232420238],[5.894411461460696,51.425727336844496],[5.895711642203653,51.424333159206796],[5.895821327272125,51.4242155382654],[5.895853195546333,51.42418136750759],[5.89604440398879,51.423976324801146],[5.896560124017636,51.42342328195076],[5.898145140053765,51.421723460790105],[5.898353929325395,51.421499532505564],[5.899242024753228,51.420547043246025],[5.900246592254644,51.41946958406402],[5.900259959128936,51.41945525096118],[5.90040244802552,51.41930240678219],[5.902129200919768,51.41745019247363],[5.902480653443496,51.41707317562017],[5.902561371411363,51.416986588846335],[5.902907788927514,51.41661496826028],[5.904692424621296,51.41470040001777],[5.906767981711602,51.41247349335983],[5.907503430698772,51.411684353997856],[5.909401711919653,51.40964734277565],[5.910973760479424,51.40796024611871],[5.912179371839718,51.406666297265],[5.912183815524482,51.40666153113598],[5.91284900332902,51.405947559800886],[5.913455597393317,51.40529646550831],[5.914901366679133,51.40374454783313],[5.915048639012787,51.40358645798706],[5.91517869359742,51.40344684726075],[5.915798862322798,51.40278110804533],[5.916257308776401,51.40224773249831],[5.916271303986478,51.402231444080094],[5.916498757527773,51.40196679510259],[5.917961241017848,51.400265132919074],[5.918369290674282,51.39979033401749],[5.918606913880244,51.39951382310145],[5.918886443582609,51.39918854470909],[5.918965228992249,51.399096867416105],[5.919087596061591,51.39895448276574],[5.919104708336974,51.39893456625],[5.920034152602747,51.39785296949291],[5.92088683093678,51.39686064351677],[5.921627158257519,51.39599903010987],[5.921888514628208,51.39569486160201],[5.922072852503379,51.39548031442574],[5.922260052084233,51.39526243691984],[5.922659393841641,51.39479764020938],[5.922934698615607,51.39447721625401],[5.922981815543178,51.39442237430271],[5.92366698293861,51.3936248760538],[5.924803867332889,51.39230151828661],[5.925866364640342,51.391064678287464],[5.925990545146177,51.39092011149141],[5.926136678241443,51.39075000453212],[5.92615059553132,51.39073379615545],[5.926586677493834,51.390226127548615],[5.926858171467096,51.38991005333547],[5.927123454480618,51.38960120733633],[5.92749126495584,51.389172989581844],[5.92754008571613,51.38911615129668],[5.928606558484121,51.387874476129134],[5.928969254055779,51.38745218303673],[5.929340572595045,51.38701984404923],[5.929463597595055,51.38687660019165],[5.929760770103869,51.386530574445494],[5.93071694306745,51.38541717880179],[5.930733747612042,51.3853976035446],[5.930794519148307,51.38532684726575],[5.931287598178677,51.384752673623936],[5.931170577251294,51.38468766408266],[5.930034021755086,51.384056201223316],[5.928594724923634,51.38325649628787],[5.928588145350813,51.383252832429775],[5.928442066789141,51.3831716673286],[5.92542332221487,51.38149424052581],[5.925061249135035,51.381293033527555],[5.924412457818741,51.380932480535684],[5.923309604113347,51.38031957494536],[5.922545217681552,51.37989476062353],[5.922524166388102,51.37988305495164],[5.922390789185536,51.37980892517505],[5.922384225181467,51.37980527887556],[5.921318697923519,51.37921304630288],[5.919871277441251,51.37840851653427],[5.919241940524745,51.37805869559164],[5.919128206765785,51.37799548377645],[5.918636308469849,51.37772207567527],[5.918248142998997,51.37750631480789],[5.918152628319735,51.377453302276045],[5.916392300634721,51.37647474626373],[5.908373795530371,51.3720164565455],[5.90686118712013,51.3711752844583],[5.906775424593669,51.37112758552034],[5.905549864536125,51.37044701449496],[5.904181977116388,51.36968607266354],[5.900356209847763,51.36755761484966],[5.898270582904207,51.36639714324095],[5.895778599051016,51.365010442770036],[5.895682239749056,51.36495682236984],[5.895306283105035,51.36474761104402],[5.895273397880183,51.364729309329874],[5.895127610983009,51.364648182387455],[5.894743120500746,51.36444068738475],[5.894711021968249,51.3644233618715],[5.89457211164704,51.36434838861763],[5.894545704905574,51.3643341394262],[5.892662193966645,51.363285965316976],[5.89254544186441,51.36322099699335],[5.892324941399496,51.3630982845886],[5.891177121174599,51.36245946495552],[5.890798547637828,51.36224877633113],[5.890778711741505,51.36223773387413],[5.890732929786314,51.36221233150607],[5.889732833727776,51.36165748921481],[5.889295022189842,51.36141459250565],[5.889224278706897,51.36137533743875],[5.889176750556374,51.361348971192],[5.888069370574324,51.36073427072665],[5.887273799243237,51.360292650426096],[5.887238711107019,51.36027319635376],[5.885673356640338,51.359404192929276],[5.885318370927366,51.359207129638776],[5.885207491828334,51.35914558061779],[5.884769539438111,51.35890245188551],[5.884293905843777,51.35863840345864],[5.883343926232075,51.358111005453466],[5.883319919922998,51.358097678351065],[5.882213394066399,51.3574836021097],[5.882186442010326,51.35746865132196],[5.881372715486835,51.35701704556587],[5.881152178181595,51.356894653889384],[5.88058534794346,51.35657991142803],[5.879440821052531,51.35594437875294],[5.878843843663343,51.35561287420184],[5.87881287855526,51.355595674385896],[5.878717975939975,51.355542968741425],[5.878699460558376,51.355532691710685],[5.878603493586652,51.35548244442371],[5.878536393550593,51.35544652937106],[5.878501349111861,51.35542777363121],[5.877823034860529,51.35506474144757],[5.877683480478061,51.35499004753522],[5.876319885826633,51.35426020573678],[5.876166164905617,51.354177928981386],[5.876010077994807,51.35409987772913],[5.875847360020321,51.35401317984174],[5.875715930053294,51.353943159662435],[5.87552347085934,51.35384061286793],[5.875335748185233,51.35374058975284],[5.875288126339965,51.353714703668324],[5.875262930146355,51.35370109225951],[5.874760990838023,51.35343023892258],[5.874657248042917,51.353374250109795],[5.874620934531156,51.35335465356899],[5.874543225211772,51.35331272214067],[5.874481288533808,51.353301331732816],[5.874421782569573,51.353290371577664],[5.873680415923038,51.35315410738276],[5.873629569601719,51.35314476460195],[5.873611433619321,51.35314160435822],[5.873461139333623,51.353115400214435],[5.873430663439973,51.35311008919269],[5.873402989146808,51.35310499118877],[5.872963638987475,51.35302405509069],[5.872832690018812,51.352999926775475],[5.872262551695191,51.35289488587438],[5.870519080735261,51.35256511496593],[5.870359647095207,51.35253496269487],[5.868329273415962,51.352150869758496],[5.86740742834143,51.35197646135791],[5.867305059046213,51.35195708994888],[5.865947944672528,51.3517003278794],[5.865794960838008,51.35167138332568],[5.865654131269712,51.35164473473073],[5.864398438436083,51.351407142641385],[5.864382113272266,51.35140405444433],[5.864349621130891,51.3513979043619],[5.864127613403931,51.35135589195011],[5.863495680943497,51.35123628811223],[5.862330233529064,51.351018952069026],[5.860937537293614,51.3507591892682],[5.860903277340277,51.35075273979707],[5.860242905879271,51.35062851038968],[5.859863446236673,51.35055711553461],[5.859527193417008,51.35049385890809],[5.859518736391754,51.350492266224876],[5.859024146231725,51.35039921394985],[5.85881821621799,51.3503604701599],[5.8587833240768,51.350353905771925],[5.858603947021,51.35032038446819],[5.858433400937886,51.35028850807137],[5.855649901083287,51.34976828103385],[5.854766100100793,51.34960308507581],[5.851050178476254,51.34890784386455],[5.85093249482887,51.34888584042453],[5.850926066270925,51.34888463455095],[5.850913942740543,51.348882372692074],[5.850025444497143,51.34871626067581],[5.848223458440516,51.348379333228316],[5.847474677241607,51.34823931851579],[5.84652144517577,51.348060940054935],[5.846286143937601,51.348016906814],[5.84595577094681,51.347955081203445],[5.845822445646141,51.347930130832886],[5.844579238452626,51.34769747202507],[5.843830277239303,51.34755729981836],[5.840193769767748,51.346877060292606],[5.840183689254177,51.34687517589267],[5.834683753911631,51.345881033787784],[5.834120412779444,51.345779178332144],[5.833970860953911,51.34575214747232],[5.83214183435324,51.3454218891307],[5.831839040823266,51.34536720702117],[5.830656055342996,51.34515357691237],[5.824033202838962,51.34395585842875],[5.820114844715136,51.34321397362911],[5.818149581958882,51.34284191678213],[5.817763765319273,51.34276887155205],[5.817591892250045,51.34273632916893],[5.812767972102939,51.34182288837474],[5.809330276742299,51.341172736284356],[5.808209648864084,51.34096062119584],[5.805896987633574,51.34052283566192],[5.803386759931596,51.34004803848134],[5.802469278793414,51.339874486086195],[5.799032867197002,51.3392241610136],[5.795597862741875,51.338574143328515],[5.792165829070266,51.337924382769515],[5.790886950542986,51.33768201778882],[5.789011472521372,51.33732657041912],[5.788277759558593,51.33718749932416],[5.78825162697095,51.33718254661423],[5.788076446836947,51.33714935193757],[5.788071228953444,51.33714836315509],[5.786134647915311,51.33678136749074],[5.785831139073455,51.336723844882584],[5.785821220958484,51.33672196422136],[5.785299601618958,51.33662311011328],[5.784904273679676,51.33654814609321],[5.784249584254639,51.33642399778747],[5.784203458490893,51.336415256147845],[5.7818654249088,51.335971876478894],[5.780240081417563,51.33566346724838],[5.780231155504002,51.33566177152776],[5.778315250728554,51.335298189827085],[5.777366537318941,51.33511814499571],[5.777207441722751,51.33508794528818],[5.777198904157033,51.33508632893406],[5.777028899672513,51.335054062142014],[5.77702103761288,51.335052569356506],[5.774655832913748,51.33460363508002],[5.774637866967436,51.334600225186044],[5.771061098314813,51.33392091420501],[5.771055766147665,51.33391989807218],[5.770448694285646,51.33380458505483],[5.769691162933635,51.33366067549438],[5.767393489692187,51.33322414525432],[5.765782153532863,51.332918302428055],[5.765617094776384,51.33288697372118],[5.763759412346418,51.33253434363738],[5.761635228486726,51.33213090071682],[5.760267399005377,51.33187108393643],[5.760258086576732,51.33186931601633],[5.760205359230908,51.33185930064657],[5.760192497108029,51.33185685195614],[5.760181920046983,51.33185484538386],[5.760092848187907,51.331837899172235],[5.760082299832336,51.331835892498944],[5.760067885678115,51.331833152135154],[5.756631722316437,51.33118031041891],[5.753200928853357,51.33052813266273],[5.752477133183604,51.33039065700666],[5.750809105946925,51.33007381895178],[5.7497675077065,51.32987595210827],[5.749040513342574,51.32973778194801],[5.747319739060699,51.32941072981369],[5.747053719288137,51.32936048254599],[5.746637153032208,51.32928180059505],[5.746342468153204,51.32922614355569],[5.746233736107048,51.32920560695125],[5.746219625613906,51.329202953828336],[5.746212843395341,51.32920168035704],[5.745895788598955,51.32914203722536],[5.745377064892843,51.32904445643168],[5.74395440837926,51.328776837297966],[5.74183210021216,51.32836273595091],[5.738389653236762,51.3277089447137],[5.737915424813954,51.32761886844307],[5.734446412038493,51.326956600410384],[5.732716478628766,51.32664272657109],[5.732342978140204,51.32657495792744],[5.732161581789438,51.326540866279096],[5.731527401552509,51.32642131423036],[5.726577130996739,51.32548800129194],[5.72637536320421,51.32544996451834],[5.724242899674017,51.32504783352564],[5.72298506012616,51.3248034679453],[5.720287826351938,51.32427944036964],[5.720096612648381,51.32424322321529],[5.719591312283296,51.32414743545607],[5.719447909747693,51.32412024028053],[5.718051173985633,51.32385543578943],[5.717160632935214,51.323686556340796],[5.71710881821949,51.32367662340236],[5.717056087242147,51.32366645258724],[5.71540985436145,51.323349181491984],[5.715064343247002,51.3232825819747],[5.714311457288331,51.323137400894375],[5.714140472536426,51.32310501826167],[5.709934780365963,51.322303916996425],[5.709859579433576,51.322289599598896],[5.709765459794058,51.322271676145725],[5.708029732794111,51.32194112861349],[5.707036496432711,51.32175196944341],[5.706186238959225,51.32159003260902],[5.704073470430976,51.32118760476713],[5.703977035145622,51.32117022115156],[5.703825584954518,51.32114292417855],[5.705265174496909,51.32238798046671],[5.705630536014254,51.32266649694493],[5.705807389745152,51.32279331111751],[5.705974822257673,51.32291336653489],[5.70637254937106,51.3231969695927],[5.706525897554942,51.32330632011197],[5.706706640549961,51.32343519978896],[5.706693022144809,51.323438733811216],[5.706548876218654,51.32347617220178],[5.706687600508748,51.323590740175675],[5.706660000311704,51.32361766545252],[5.706644958122387,51.323651486616555],[5.705931367532901,51.325105689974755],[5.705917311249923,51.325124685824505],[5.705911597819783,51.32513241385146],[5.705850291393372,51.32519775942377],[5.704490233808539,51.326505901046154],[5.70388342517392,51.32708951475104],[5.703777041224125,51.32717864932901],[5.703573789260997,51.32725195720078],[5.702577053700246,51.32755095049355],[5.702067019921368,51.327703010325976],[5.701890075975921,51.327755470991484],[5.701767473614722,51.32780079126767],[5.6999729434873,51.329339770364484],[5.699912365090004,51.32939196022047],[5.699777452893432,51.32958301070317],[5.699181874886853,51.33102964577571],[5.699098725442735,51.33117673637064],[5.699082267608595,51.331204043454335],[5.699047724491371,51.33126618558824],[5.698516205202126,51.33129465554362],[5.698392267690607,51.33137123880293],[5.698359366456845,51.331392306579325],[5.697018776010173,51.332242230343525],[5.696949775569063,51.33232098493451],[5.695299532435018,51.33420447859614],[5.695136699259317,51.33439031208811],[5.694896220372893,51.334652997958216],[5.694896325844387,51.33465800443161],[5.694352280407168,51.33464805237579],[5.693782876441227,51.33463764321697],[5.693731139878484,51.334636700805326],[5.693719555158614,51.33477287541056],[5.693725361877906,51.334810639974116],[5.693752504163129,51.33498703628112],[5.693920094117325,51.33601280816523],[5.693910515841864,51.33601393003245],[5.693929121860625,51.33613485204017],[5.69393664952834,51.33613394231661],[5.694035349807587,51.33678131496541],[5.694041714867312,51.33682307804692],[5.694053363752291,51.33689945198829],[5.694199659546864,51.33787063897329],[5.694243710252877,51.33818734813123],[5.694259412238574,51.33829869569534],[5.694264626291084,51.33833568875541],[5.694288164376808,51.33850260226941],[5.694455326628165,51.33841576104455],[5.694581564347028,51.33845965260992],[5.702735931390003,51.34129422985554],[5.702936633874605,51.34136398701096],[5.703745779920733,51.34164520507386],[5.703937677335637,51.34171189567777],[5.704264929299939,51.341825629894366],[5.704657080992159,51.341961916638326],[5.704637614651271,51.341983884369114],[5.705013389357623,51.34210955611763],[5.705449065386381,51.34226115737381],[5.706267639982186,51.34254598276303],[5.705407135798686,51.3432941281386],[5.705419740121885,51.34329867796908],[5.705102685010929,51.34356283454414],[5.702223813215332,51.34615768472924],[5.702971554608387,51.34641461702637],[5.705429972662313,51.34725930526075],[5.705467496602378,51.34727220047664],[5.705347720618584,51.347342883003925],[5.705430387505338,51.34735796499241],[5.704418876304003,51.34795304086738],[5.704448109159187,51.34797080395233],[5.704466163806885,51.347982853657726],[5.704528057210422,51.34802415024125],[5.703682661242241,51.348519009341196],[5.704862321290081,51.34892686293978],[5.707619696506899,51.34988011863265],[5.708830734977835,51.34862928072891],[5.70886524116712,51.348594529160366],[5.710786545008967,51.34926842956638],[5.711641774327482,51.349568387472054],[5.711652280189244,51.34956211998371],[5.711703108646226,51.34959645032626],[5.711716479203006,51.34960547375706],[5.711857966644156,51.34966362329541],[5.712737268126818,51.35025547971058],[5.712808694455614,51.35030355875633],[5.714671005014798,51.35136021723739],[5.71550895635015,51.3519114319298],[5.7155642119634,51.351947797555056],[5.716041942661548,51.352262054605546],[5.716117994501571,51.352309651151316],[5.717319206255161,51.351339040861596],[5.717387164176926,51.351384987612526],[5.71743176411885,51.35141467693582],[5.71902181121093,51.35260747078714],[5.719405047073136,51.35289494505989],[5.721280454984387,51.354301674050134],[5.721415985610891,51.35440334381383],[5.721420734694958,51.35440689873129],[5.721106226265692,51.35456962604225],[5.720801955656632,51.35472704675425],[5.720124186287621,51.355077706263685],[5.718961256326199,51.35567936348463],[5.718905119221168,51.355708404358154],[5.718714074776213,51.35577871031447],[5.717494851580175,51.35640499848623],[5.714263593660838,51.35809450793691],[5.714388071129383,51.35819102137491],[5.71343092989618,51.358666642196184],[5.71226582127265,51.35924557752357],[5.711433993542513,51.35965889031229],[5.711362258388415,51.35969453276067],[5.709033877334672,51.35766588627785],[5.708959582540773,51.357702801744416],[5.706794954292741,51.35877252124287],[5.706013408949329,51.35816220414328],[5.705978345829771,51.358180223749336],[5.703549097915325,51.35942898903622],[5.703958653898161,51.35966449630867],[5.703246458219097,51.36015261613081],[5.703067435160266,51.36027530422255],[5.702310692180563,51.36079393013536],[5.702252459629376,51.36083384503251],[5.698333289232724,51.35858153867234],[5.697677649749525,51.359036322691495],[5.697422855479918,51.35921222885727],[5.697958660557877,51.36261252942331],[5.698038229127663,51.36311745909117],[5.698096241335673,51.363485583205694],[5.698352069244233,51.36510892827244],[5.698639131883979,51.36565941535287],[5.698727609000021,51.365829066494584],[5.699545825302169,51.367283685121],[5.699674611831896,51.367513375791034],[5.69945204452593,51.36758849409412],[5.696933192421813,51.368432083162176],[5.696811965332449,51.36848313808889],[5.696758502376233,51.368567837542415],[5.696402566911515,51.3698624375466],[5.696310449724571,51.37007750461677],[5.696348074293016,51.37010922499773],[5.696563307767359,51.3703097052964],[5.696785314282732,51.370236063708326],[5.697618331592339,51.370807015409646],[5.695243280183291,51.37179703358008],[5.694636002389724,51.371998024609894],[5.694483138278805,51.37204861451469],[5.693722973628154,51.37230019053252],[5.69407161794177,51.372655650124365],[5.694166522369061,51.37277784502193],[5.694761820052561,51.37354433774305],[5.694550110205809,51.37357809207298],[5.69457039860939,51.373637067761095],[5.694463350644952,51.37366129626268],[5.694363791636163,51.37368436334406],[5.694237461541473,51.37371589641747],[5.694162817857006,51.37373648865937],[5.694028868624939,51.37377765057475],[5.693849031660314,51.37383572416281],[5.693661542986094,51.37389861760486],[5.693401358079608,51.37398571085954],[5.693097163811886,51.37408731012733],[5.692771917273433,51.37419376382799],[5.692429518724713,51.374317061565115],[5.692056810311279,51.37449564661366],[5.691580940230174,51.374730904576786],[5.691397503402016,51.37482738377272],[5.691181830210313,51.374976746807505],[5.690988971925572,51.3750972589301],[5.690893426369775,51.375147908073224],[5.690229677113343,51.37539085017268],[5.689944536430874,51.37547679610139],[5.689655518676275,51.375554355892746],[5.689192237172954,51.375668348906224],[5.688732661306568,51.37576314846163],[5.687819302571559,51.375958713689286],[5.687189319950623,51.37609234679664],[5.686528300153594,51.37623318433953],[5.686260608925022,51.37628793931899],[5.685927299762713,51.37633919456618],[5.685285551040653,51.37643443855944],[5.684371773251106,51.37656997780789],[5.684268344463544,51.37658943263191],[5.684099996216289,51.37664866631969],[5.68401587393859,51.376688485182946],[5.6836260742561,51.37689949118477],[5.683393007250779,51.37702545478606],[5.683159824465514,51.37715148113365],[5.682284669730386,51.37763011465215],[5.68191210272662,51.37783867122861],[5.681507192662705,51.37809050830201],[5.681253278143811,51.3782663494499],[5.680953627151907,51.378484318843455],[5.680680711047058,51.37868781112581],[5.680558570794076,51.378778132211465],[5.68024192700385,51.37904174252008],[5.679647238411627,51.37960486360268],[5.679586292955395,51.37966981654509],[5.679262496342012,51.38001384654651],[5.67918825040257,51.380099237102556],[5.678792547984966,51.38059705485919],[5.678682325991153,51.38075333957159],[5.678319609198629,51.38131226859748],[5.678275949039272,51.381383173143426],[5.678150849442268,51.38161269894338],[5.678050494440322,51.38181455835625],[5.678016214034677,51.38196217639089],[5.677957049323251,51.38220820250256],[5.677943284026119,51.382288695211024],[5.677776117113155,51.38296414986375],[5.677588068138612,51.383724591043176],[5.677453509085283,51.38447148739632],[5.677371253974381,51.38492935473276],[5.67733620449857,51.385124462038206],[5.677263762160246,51.38552921725954],[5.677250392658023,51.38567229757506],[5.677233820495302,51.385808752160926],[5.677155140970453,51.38579764016219],[5.677034562367746,51.385780609893025],[5.676463831401925,51.38553854105292],[5.676471354965771,51.385528850472824],[5.676275288939727,51.38544650578808],[5.676226558605213,51.385426855933105],[5.67598800995729,51.385723811213744],[5.675976437634789,51.38572028035356],[5.675678349422376,51.38562920775033],[5.675275698178192,51.386120846216066],[5.675121093183952,51.38630961469894],[5.674818023709205,51.38667963925787],[5.674854633376604,51.386719198256074],[5.67513990494141,51.3870275088622],[5.675130583900152,51.387030183581494],[5.674976299059002,51.38707446586118],[5.674894612404635,51.387115260818405],[5.674887136814307,51.38711670849058],[5.674882229648307,51.38711766442729],[5.674846430060516,51.38712460225339],[5.674619462983064,51.387334726195135],[5.674523336755852,51.38746432942809],[5.674447153335764,51.38756704299708],[5.6745241495158,51.38759334298032],[5.674598799028129,51.387618839714165],[5.674727481509194,51.38766280078612],[5.674791729144673,51.387749662311535],[5.674525863447037,51.387865401305525],[5.674327038595821,51.38795173856748],[5.67385140742288,51.38784007852189],[5.673461355408398,51.3877565523167],[5.673290994654148,51.38771673714359],[5.671854916477876,51.387408551947885],[5.67076176982936,51.38720340687235],[5.669968880545311,51.387072003943175],[5.669944693470294,51.387068233440175],[5.669377146883416,51.38697977592835],[5.66935736388209,51.38700748222933],[5.669243109333928,51.38716753393357],[5.670074944703942,51.38748655032756],[5.669707595859498,51.388063153188185],[5.671151264885443,51.38838508114706],[5.670853005474133,51.38879900258681],[5.670844587451379,51.38881068149106],[5.67078735770323,51.388881085871645],[5.670779895826342,51.3888917377262],[5.671324527562117,51.38902205100692],[5.673056608409753,51.38943569200707],[5.672279708108692,51.39045133787425],[5.672136388717419,51.390640723006044],[5.672003652047477,51.39081612031314],[5.671998849882756,51.390822460131744],[5.672055052210409,51.3908312935039],[5.672162682304977,51.39084820780147],[5.672360569951835,51.39140545754623],[5.672627487189284,51.39220877564672],[5.672745014015629,51.39256660841313],[5.672733388871446,51.392564057132894],[5.671424867037138,51.39227745038427],[5.671044646663056,51.3927678056759],[5.673464004150829,51.39330548102862],[5.673575076646619,51.39333187769138],[5.67349746992258,51.393669775703756],[5.673496212454221,51.393673167551874],[5.6730647835916,51.39483567200996],[5.672960699986914,51.395303683783816],[5.672640959691333,51.39674138167978],[5.672277915461091,51.39665951110395],[5.671463344194535,51.39647696228283],[5.671409399971238,51.39658253187343],[5.671537018281236,51.396611272142266],[5.671431677813155,51.39673098959835],[5.670225563341315,51.398080331795384],[5.667750494917789,51.39869601503945],[5.666354090703488,51.39905529616764],[5.665537945119582,51.399265266105154],[5.665477514724236,51.399283280064786],[5.665377892090716,51.39932865941319],[5.665369774113232,51.39933235968399],[5.665062829843729,51.39954761289756],[5.664980195158354,51.39962188615488],[5.664956214833358,51.39966722860673],[5.66488118608923,51.39976348810376],[5.66475745554058,51.399838290589564],[5.664706542935832,51.399869072455694],[5.664673016507106,51.39989251403965],[5.664638746037081,51.39991648772131],[5.664542635316194,51.400010397197974],[5.664408585131234,51.4001961719193],[5.664070309634788,51.40065736159232],[5.664037596721681,51.40069423023848],[5.663727534717114,51.40104362179962],[5.663488440903056,51.401306518644475],[5.663454776268162,51.401342409608006],[5.663441269554775,51.40135808878087],[5.663413252558601,51.40139458656634],[5.663341117656319,51.40145240233536],[5.662559134903222,51.4023123900002],[5.662371785095644,51.40245572658514],[5.662153732160125,51.40253141414773],[5.661924783537856,51.40261395843239],[5.661762508308255,51.40268578341529],[5.661667337744388,51.40273013334833],[5.661570295280647,51.40278106736861],[5.66016288249758,51.403519660652265],[5.655970859838611,51.40571935819222],[5.655577220717602,51.405742638413535],[5.652738651118375,51.405910489182034],[5.650885559947457,51.4066836115515],[5.649514631254341,51.40876789416398],[5.649522098134488,51.410065248137755],[5.649350462186481,51.410281858326364],[5.649048867497766,51.41044471109365],[5.64719352259648,51.410989429536706],[5.646718416094396,51.41104454677103],[5.641504437382954,51.41128120912156],[5.637940485673691,51.41144283700423],[5.637965085193595,51.410850966186594],[5.633670946436821,51.41109458957546],[5.633594488412431,51.41109901191977],[5.633479541021226,51.41019436870122],[5.6334162584736,51.410250825795465],[5.632724936221679,51.41071624658754],[5.632336037684272,51.410524733534025],[5.631546317881006,51.410135840928376],[5.629009038896388,51.40888628940838],[5.627647304287382,51.40821560890776],[5.627534788141068,51.4081598232817],[5.625063925484101,51.40693455235116],[5.622861099065332,51.40582260150039],[5.622831303783338,51.40580548430059],[5.622755006700547,51.405761665715424],[5.619820116093988,51.40431109162845],[5.61828248105164,51.405529211394565],[5.618278258308193,51.405532554586514],[5.617061566500161,51.404922622236974],[5.613531914785251,51.40449356095904],[5.609137306986414,51.403959194772355],[5.606620118658323,51.40459109674783],[5.604732393331962,51.40506493549744],[5.603984715212693,51.40502150229561],[5.601269581651952,51.4048637278311],[5.597861780667245,51.406293635875734],[5.596867377108,51.40662169317577],[5.596441387203145,51.40680042665092],[5.596442612789652,51.40706736245482],[5.596824192931946,51.40754124498356],[5.596501572918641,51.40809487390357],[5.596038047617204,51.40796461417241],[5.59585926673871,51.4079143639507],[5.592097714415749,51.406858779984134],[5.591430427446784,51.40759689165605],[5.59106476935223,51.40800317490265],[5.590203241693249,51.40896035960023],[5.590161937104303,51.40900624705006],[5.589588698845807,51.409643124008234],[5.589318006943575,51.409943852981364],[5.588429987228834,51.4109367735128],[5.586171647443494,51.41346167175542],[5.585564527152078,51.41414039748586],[5.585416937169126,51.41430409491851],[5.588449472355919,51.41534851774508],[5.589612918707135,51.41574917889982],[5.589455692971389,51.415786728104266],[5.58876837122145,51.41595087547544],[5.589309961598591,51.416137378981375],[5.590798083802601,51.416649814656836],[5.591612292689536,51.416923111241196],[5.592259026441488,51.4171302524151],[5.592903944185248,51.4173286831496],[5.593657807319485,51.41754962284052],[5.594217981410773,51.417707657332826],[5.594886983892778,51.41788783218019],[5.595091388094553,51.41794045616435],[5.595551507976193,51.41805891462354],[5.596229700165487,51.41822505194183],[5.596903126456348,51.41838224113836],[5.597589802019807,51.41853415312189],[5.598242457129841,51.41867117445203],[5.598102659998679,51.418766330383285],[5.597215798008676,51.41936762981098],[5.596655867276536,51.41974725227386],[5.593413867159419,51.421945103535634],[5.594357175754166,51.4224361197403],[5.594957567955867,51.42274863110743],[5.595223275898446,51.42255068412544],[5.595327415565227,51.42260541022291],[5.598117732301961,51.42404955361441],[5.598385781576502,51.423846246914955],[5.598396850241406,51.423851997609376],[5.59945887753657,51.42440353907404],[5.601068934501128,51.42524039289525],[5.600537335361347,51.425645706381864],[5.599978596433959,51.42606057703144],[5.599427727130847,51.42648170477061],[5.598826570651291,51.4269224446839],[5.598690380288579,51.4270222957883],[5.598357951488795,51.427286923907175],[5.598421599856275,51.427307311819376],[5.598465203314193,51.42732127315183],[5.598351783243547,51.42740793209684],[5.598264237694025,51.427372108868795],[5.598185941504676,51.42735571140931],[5.597242255113143,51.428076602525266],[5.597201118033718,51.4281080202811],[5.597610402880679,51.428264162031816],[5.598230300684778,51.428500647661245],[5.598414313504457,51.428570843112766],[5.603262793062963,51.43042027933982],[5.604041444978162,51.430642112855416],[5.608069501222769,51.43178954473517],[5.608297851319429,51.431915645869964],[5.610182620701463,51.43295645364779],[5.610786864453352,51.433768729397705],[5.610978416687861,51.43365474453554],[5.611510353049896,51.433338209437665],[5.611673450979511,51.43337765252613],[5.612017509507237,51.43321496795964],[5.612367849518433,51.433049303965355],[5.612486385534956,51.4331447147976],[5.612583627992593,51.43326409462874],[5.612610524875789,51.433297103092656],[5.612738715626972,51.43345433731947],[5.612520341077533,51.433555163528744],[5.612559996131745,51.43366420980015],[5.612859450054419,51.43416717796148],[5.612937525306443,51.43429803722507],[5.613062324729784,51.43450718745385],[5.613528716368131,51.435288902746876],[5.613580909245597,51.43537637838607],[5.613799422212397,51.43556219986235],[5.613904348267272,51.435492872678175],[5.614245212490372,51.43526767131505],[5.61437630174123,51.435196494999325],[5.614526019738979,51.4351408326745],[5.61468877054128,51.435103212028686],[5.614803453848422,51.43508752758205],[5.615229989570867,51.434740988213974],[5.615373092069907,51.434685787173535],[5.615492597717609,51.43458810209331],[5.615510235492323,51.4345836945419],[5.615528162660945,51.43457964147497],[5.615546104207234,51.43457558837712],[5.615564263266137,51.43457189439878],[5.615582436748024,51.43456820937807],[5.61560079907149,51.434564901510285],[5.615619175728053,51.43456158462282],[5.61563771251012,51.43455865393321],[5.615656249289796,51.43455572324061],[5.615674931814714,51.43455317877393],[5.615693599956692,51.43455063433245],[5.615712399463662,51.43454847614494],[5.615731170207153,51.43454631801083],[5.615750057980511,51.43454455514743],[5.615768902609863,51.43454279236562],[5.615787835508032,51.43454142491085],[5.615806912439131,51.434540102114106],[5.61582604860728,51.43453912076902],[5.615845199155443,51.434538139392565],[5.615864394560378,51.43453749949598],[5.615883604390752,51.434536868556656],[5.615902844697631,51.434536579125314],[5.615922085049405,51.434536298679426],[5.615941327116577,51.434536359797974],[5.615960569183798,51.43453642091332],[5.615979813057306,51.43453684157034],[5.615999028124316,51.434537253292056],[5.616018230572202,51.43453801559505],[5.616037418594712,51.43453876893448],[5.61605656528216,51.434539881900285],[5.616075668782826,51.43454098595907],[5.616094730903844,51.43454244065564],[5.616114469196985,51.43454394795349],[5.616134123149363,51.43454584192817],[5.616153791439025,51.434547726882684],[5.616173361052914,51.43455000753092],[5.616192959430454,51.43455228811942],[5.61621243032598,51.434554955469544],[5.616231901223784,51.434557622816456],[5.61625124459499,51.434560667936516],[5.616270573587927,51.43456371308161],[5.616289746338384,51.43456714504511],[5.616308919046502,51.4345705680168],[5.616327892324945,51.43457436890319],[5.616346851180461,51.434578160826106],[5.616365624942482,51.43458232164697],[5.616384355565344,51.434586482549626],[5.616402872288281,51.434591003418234],[5.616546175073943,51.4346330583828],[5.616778956826888,51.434737857947646],[5.616986387433633,51.43486293162233],[5.617190811882511,51.43499052769866],[5.617298984640731,51.43508119007955],[5.617369174403197,51.43514001744514],[5.617414982411367,51.43521334227408],[5.617800045835435,51.43539786095014],[5.618185250251861,51.4355826252674],[5.618459878952625,51.43571349570136],[5.618715729837865,51.43579963901038],[5.618995568873121,51.435867217320116],[5.61902777531835,51.43587272627481],[5.619143617367264,51.43589245077507],[5.619139785856805,51.43604373838489],[5.619133710561699,51.43626274690166],[5.619125714280683,51.43655639249199],[5.619081887288232,51.43659189519485],[5.619172599718495,51.43663570546139],[5.61917379079282,51.43658720001491],[5.619183309473819,51.43620005083375],[5.619189505973087,51.43594842204403],[5.619234235030186,51.435948971218075],[5.619236122780727,51.43592148897445],[5.619429362804129,51.435923683927776],[5.620317510680306,51.43593377630488],[5.620355670344208,51.43594613137382],[5.6204842623105,51.435947608926256],[5.620852808230195,51.43595183257444],[5.621572051885639,51.43596007855726],[5.621539402212059,51.436238812195676],[5.621516434993519,51.436372987897904],[5.621486534055157,51.43646770810345],[5.621445326397568,51.43659826204224],[5.621424419026156,51.43664578354245],[5.621293419109323,51.436943535900866],[5.621187394597265,51.43715301491435],[5.621183422340212,51.43716085205355],[5.621170229720658,51.43718237053747],[5.621051352690442,51.43737621688555],[5.620984290337089,51.43747433731753],[5.620934286052536,51.43754750680695],[5.620819807311782,51.43769637358062],[5.620780319210505,51.43773376484163],[5.620809514854015,51.43774781861245],[5.620880091243346,51.43768692247378],[5.621115243526145,51.437447477032485],[5.621404277399805,51.43714280865792],[5.621927208216946,51.43744571909818],[5.621923431010159,51.4374802163829],[5.622087900200642,51.437635884165616],[5.622216086240472,51.43773890608686],[5.62234437385815,51.43784199058347],[5.62251568635086,51.43802724378029],[5.62241017631488,51.4381129752935],[5.622310466317979,51.43819399391785],[5.622201861889358,51.43828223034256],[5.622096923543694,51.438367493004094],[5.622190388373258,51.438450117617364],[5.622042353426827,51.43855633887532],[5.621946577280729,51.438508001735066],[5.621929318149056,51.438524656611186],[5.621771605083007,51.43865360248955],[5.621720131865055,51.43869568332176],[5.621667527081843,51.438738683255224],[5.621613532449285,51.43878271966094],[5.621490087412768,51.4388830570925],[5.621451502698089,51.4389144243268],[5.621398710023848,51.43895734361693],[5.621345444392325,51.43900060540377],[5.621293424972104,51.43904290287174],[5.621240588945766,51.43908584015406],[5.621186144451418,51.43912925704206],[5.621177253232144,51.439137095064034],[5.621127302050639,51.43916770298494],[5.621062868132982,51.439204002824965],[5.620986301969944,51.43924720332195],[5.620845330115772,51.439326694442215],[5.620781154170079,51.43936290372154],[5.620716992366465,51.43939908597089],[5.62065271567835,51.43943532234703],[5.620519018043775,51.439508771574395],[5.62047526447246,51.439516836613095],[5.620228097691358,51.43964844023415],[5.62028564084844,51.439690266508634],[5.620340556696712,51.4397301834143],[5.620366210102967,51.43974882862089],[5.620014340058481,51.440019085230674],[5.620125939249004,51.440070412546504],[5.620161009391683,51.44008545248845],[5.620248374956551,51.44012292258027],[5.620384444428058,51.44017516252082],[5.6204509594812,51.440199406832306],[5.620536122044503,51.44022789240894],[5.620612617244274,51.44025181103643],[5.620629990731199,51.44025724138465],[5.620887907144555,51.4403365174261],[5.620968012640425,51.44036320609457],[5.621083387741692,51.44040163961174],[5.621144792509146,51.44042209605138],[5.621023309237855,51.44047139115154],[5.621004306562742,51.44046802254331],[5.620958955807193,51.44047051347175],[5.620867329957749,51.44057284483324],[5.620794909925174,51.440653726538315],[5.620716468867477,51.4407413258341],[5.620711663721024,51.44074669272868],[5.6205419525765,51.44093622685368],[5.620521418400962,51.4409287354153],[5.620466347538105,51.44098801828053],[5.62034948237203,51.4411138153101],[5.620317546870955,51.44114372168153],[5.620374311217361,51.44117351358944],[5.620164478122502,51.4412975368016],[5.620005177755794,51.441180777113686],[5.619936658525626,51.441136105217645],[5.619881877849095,51.44110038558002],[5.619736577751864,51.44119003222953],[5.619680512554381,51.441223851697345],[5.619482675499807,51.44141323361109],[5.619215970781064,51.44162818131442],[5.61925266212351,51.441650705895384],[5.619289699704508,51.44167342752712],[5.619351280065626,51.4417112192816],[5.619412846099935,51.44174900204347],[5.619597588056706,51.44186236802456],[5.619682701856886,51.44191460248487],[5.619743893284474,51.44195215211298],[5.619435914120717,51.44229270991564],[5.61929886884587,51.44234916224788],[5.61921897930223,51.442492358551036],[5.619175805840625,51.44256972037206],[5.619132931674088,51.442646569224884],[5.619089986086891,51.44272354404532],[5.61915655599732,51.44273819803669],[5.619126943286979,51.44278962740584],[5.61905549909541,51.44291373275622],[5.619029936241978,51.44295831364043],[5.618986037854878,51.44303469706053],[5.618963013049676,51.44320773946596],[5.618961052529417,51.443223842135296],[5.618950446072432,51.4433046806724],[5.619141701295085,51.44331488003769],[5.619193080972858,51.44332634627187],[5.619886968401387,51.443481205114296],[5.619858642336887,51.443533836585836],[5.619866348854318,51.443538836904146],[5.619720819510796,51.44365271751751],[5.619615272699915,51.44361084285585],[5.61952677662177,51.443575720594644],[5.61949446265818,51.44356290416929],[5.619334357354878,51.44351517843678],[5.619281292733906,51.443562618606634],[5.619064293709799,51.44386677873448],[5.619201005849626,51.44393029960364],[5.619250964582425,51.44395351687842],[5.619346484591336,51.44399789271802],[5.619420175749758,51.444032136746706],[5.619576432458826,51.444106090087075],[5.619520420314123,51.44422432229245],[5.619863833988923,51.44428518313337],[5.619756581484485,51.44440249298488],[5.619741740010384,51.444400248446],[5.619646213003153,51.44438573342221],[5.619455288809847,51.44435673883635],[5.619306470856397,51.44433413198603],[5.619172393779386,51.44431376975934],[5.619165346882342,51.44424909206944],[5.618842090024303,51.444140872582736],[5.618694878635445,51.444227519471596],[5.618668847862653,51.444256667594125],[5.618790589533223,51.44433769270741],[5.618758699828164,51.44446491925917],[5.619025462967088,51.444554375045435],[5.619008791052681,51.44459944160719],[5.61919749772537,51.44462783010501],[5.619346488184632,51.44465023900015],[5.619386909954811,51.444656315768576],[5.619533554166152,51.44467836954942],[5.619629138599221,51.44469274972091],[5.619767808079668,51.44471360563069],[5.619773593591853,51.44471420532155],[5.61994700066546,51.4447321692636],[5.619976130960324,51.44473261447355],[5.619984917001294,51.44473208457493],[5.620013447796366,51.444722184972946],[5.619978611388603,51.44482388083258],[5.619949676445637,51.4448011657164],[5.619920771248338,51.44479552008458],[5.619880505344246,51.44479183418543],[5.619751490507149,51.444780037744046],[5.619696342701053,51.44477184216872],[5.619675700014111,51.444768764251656],[5.619525846604168,51.444746483337845],[5.619379289810957,51.44472469004545],[5.619232833937662,51.444702914345676],[5.619137192895909,51.44468869575891],[5.618989326519347,51.44466670683081],[5.618967302053182,51.444663433784186],[5.618947292911151,51.444660462343315],[5.618799325937849,51.44463845539724],[5.618651834145592,51.444616519229875],[5.618506271460483,51.44459487567624],[5.618360838460783,51.44457324966137],[5.618212454643129,51.44455118886583],[5.618169946165094,51.44454486414115],[5.618052898659408,51.44452994999914],[5.618018638603675,51.44452769874694],[5.61793882252279,51.444738021643374],[5.617954798479072,51.44473705519859],[5.617927174915126,51.44486361689698],[5.617868623283459,51.44513179389956],[5.61735169375552,51.445510269166284],[5.617316209195727,51.44553625364335],[5.617224731592715,51.44560322922129],[5.617206296515166,51.44561861829801],[5.617073873959111,51.44571567881983],[5.616989800292711,51.44577913401899],[5.616845153630884,51.44587692847904],[5.616825445704987,51.44586530894782],[5.616804354501618,51.44583040240636],[5.616807824693805,51.44582824727203],[5.616402185192332,51.445652066847636],[5.616196529071249,51.44558895679154],[5.615971849553634,51.44549282325168],[5.615773271750511,51.445406407706436],[5.615656803907465,51.44535572509503],[5.615493328512006,51.44528180761523],[5.615480916866307,51.44527648363975],[5.615206924575978,51.44515898913974],[5.614766985896829,51.4449703308714],[5.614692574800357,51.44493842237605],[5.614532238337776,51.44487028615185],[5.614157410622491,51.444710990545566],[5.614170603333227,51.444607603759735],[5.614101106835068,51.44468709131214],[5.613939278584384,51.444872150977496],[5.61395804360122,51.44488096835391],[5.613974812127161,51.444888926695256],[5.613934516533751,51.44493407442778],[5.613793130750163,51.4450924605996],[5.613731664000279,51.445161325651135],[5.613713883036287,51.445178285927184],[5.613650890838107,51.44523838092496],[5.61351401178032,51.445186808861735],[5.613624937003371,51.445011898035986],[5.613624136320355,51.44500130190989],[5.613600086675172,51.44501015754421],[5.613464636699495,51.445046276436685],[5.613350939032122,51.445068609251535],[5.613205042264116,51.445083759484376],[5.613102795880518,51.44508322057451],[5.613012173351789,51.44507714898663],[5.612902452059052,51.4450601930299],[5.612807372994751,51.445045923224704],[5.612747277559883,51.44502603963764],[5.612708079102122,51.44504901868028],[5.612650731431568,51.445011772543076],[5.612519716938136,51.44491829162931],[5.612480034514546,51.444889981991494],[5.612454194822793,51.44487431966658],[5.612402125965807,51.44484276204565],[5.612205159904605,51.44472289148286],[5.61199059603516,51.444595773671004],[5.611961212979728,51.44457614506235],[5.611828801753456,51.44448765479667],[5.611731545180004,51.44440487641687],[5.61170979254993,51.44438075667493],[5.61166176197163,51.44444451614351],[5.611694187442114,51.44444526269254],[5.611943932356012,51.44460421863543],[5.611762232762525,51.44487565456108],[5.611348341105722,51.4454863974455],[5.611255073609798,51.445624013983974],[5.611200503436758,51.44566879269489],[5.61098306699485,51.44584722251875],[5.610973152873918,51.445855358346186],[5.610772757395137,51.446013034982734],[5.610702544042829,51.4460682793386],[5.610380378998292,51.44632175879559],[5.609737768466529,51.446827352191065],[5.609544086932718,51.446979738636756],[5.609348741555039,51.4477229282625],[5.609260246622202,51.44805961581595],[5.608694419239569,51.448006840838765],[5.608613955544375,51.44831001174595],[5.607661095433682,51.44822887869287],[5.605886109212047,51.44806165200476],[5.605628755041836,51.44803425149997],[5.605626776815591,51.44804469108623],[5.605625976919648,51.44804887233007],[5.603848329131063,51.44788153874577],[5.60371391535242,51.4479544351097],[5.603618689637726,51.4479462883799],[5.603558563748241,51.44794114158665],[5.603517765113924,51.44793765776783],[5.603475138768738,51.447934006539995],[5.603461582425473,51.4479328541675],[5.603451177654465,51.44793195662001],[5.603439787142735,51.44793098449597],[5.603414404163884,51.44801269839655],[5.603391244515322,51.44809460142529],[5.603292291697276,51.44816501357895],[5.603122582755499,51.448248716166816],[5.602742790927712,51.448451152295775],[5.602231605386173,51.448727995344726],[5.601810075820571,51.448955395098544],[5.601577578033964,51.449080882593044],[5.60153269310555,51.449104911008156],[5.601509332281787,51.449117421275716],[5.601418307279488,51.44915558378583],[5.601332316046269,51.449187408936275],[5.601241216816173,51.44921290636901],[5.601046343419121,51.44925758723792],[5.600823623957721,51.449309446843486],[5.600600903988686,51.44936130602402],[5.600114938791256,51.44946826114364],[5.599759359893145,51.449546707139994],[5.599398649340227,51.44962628497802],[5.59864188970396,51.44980022488253],[5.598560929606154,51.44982569284081],[5.598464793194231,51.449857534264055],[5.598378805868084,51.449890930246866],[5.598337079433463,51.44991101465806],[5.598259985283968,51.44994814273381],[5.59808304176171,51.450038700445106],[5.597875817619399,51.45015464275414],[5.597792427034167,51.45020226271667],[5.597486787339006,51.450405455555966],[5.597193789729741,51.45060229677709],[5.59694112522789,51.45075789647902],[5.596723752764674,51.450873854985076],[5.596641719550955,51.45090436619291],[5.596197643885489,51.45106952138543],[5.59600029842152,51.45113320033827],[5.595838406781271,51.45119206049682],[5.595694274611193,51.45125564369214],[5.595484477925994,51.45136525828973],[5.595373278898701,51.45142340700795],[5.595442573018587,51.451450671814506],[5.598474992169877,51.45264366092216],[5.597777709189587,51.45334265181035],[5.597440917206215,51.453680254733186],[5.597948413030835,51.45389014137767],[5.598224772262228,51.45400443613686],[5.598881152568835,51.45427588239728],[5.599355507009741,51.45447205241466],[5.6005445030846,51.454963748725895],[5.600365520643235,51.45517816879615],[5.600269424231971,51.45516230861065],[5.599511799730792,51.45592545543554],[5.599365558884441,51.45607274968518],[5.599054058348859,51.456386904614206],[5.598559332046559,51.456885865912774],[5.598115220410898,51.45733374068949],[5.59813406522172,51.45736087941674],[5.598172331098962,51.45744943869121],[5.598180824884093,51.45746908159233],[5.598221272462261,51.457562661581576],[5.598237380114877,51.457728653571095],[5.598229011014535,51.457853818275844],[5.598226526231594,51.4578702810677],[5.598205377331632,51.45795448945167],[5.598164573586703,51.45810382949946],[5.598148090720526,51.458164155464196],[5.5981238557662,51.45835247644065],[5.598123355191515,51.45838417147265],[5.598121336289585,51.45851047522926],[5.59812111188945,51.45852414743489],[5.598133220539468,51.45865001215489],[5.598170594510493,51.4587911389043],[5.598241232010806,51.45891913588473],[5.598311593153216,51.45903710194275],[5.598384177031624,51.45912856527067],[5.598478566710649,51.45921523402723],[5.599008477673885,51.45962973896018],[5.599259308099216,51.459828005050504],[5.599283927623363,51.45987431495431],[5.599355353402838,51.459938885620346],[5.599314168209069,51.45992879433667],[5.599222106665173,51.459863784768274],[5.599131265674586,51.459841433236264],[5.599067780738484,51.45982580940505],[5.599155345947138,51.459886296967866],[5.599120736763514,51.4599442110867],[5.599087834262174,51.45993604622715],[5.599084148843763,51.459941832652206],[5.599057088265043,51.46012837018915],[5.599094449723525,51.46013924153945],[5.599089220170853,51.46017805522037],[5.599083600986074,51.460219719023875],[5.599229021719482,51.46024849715177],[5.599183177663985,51.46028547907761],[5.599574148765966,51.46038203428634],[5.599589896175069,51.46038595051649],[5.599788061630137,51.460435226080726],[5.59974233345364,51.46038567276534],[5.599662007946368,51.46029862997164],[5.599691439622767,51.46030606392182],[5.600010557378088,51.46038518468309],[5.602601182834435,51.46102745196161],[5.603041338127063,51.4611365697692],[5.603234928685302,51.46118456257175],[5.603487819944437,51.46124725619396],[5.60420726355246,51.46142560349684],[5.604241435766486,51.46143407016699],[5.603935834971047,51.46255245418651],[5.603849602700733,51.46286801858445],[5.603802349122769,51.46304094090163],[5.603992492650828,51.46307598502921],[5.60368878971337,51.46370462496279],[5.60365555418225,51.46382684295191],[5.603649614031571,51.46384865155023],[5.603644716196832,51.463850593209344],[5.603055322557701,51.46408452868617],[5.602917837221712,51.46413910174145],[5.602922561315074,51.4641703107207],[5.602972608056277,51.464500462573355],[5.603039977109386,51.4649449094731],[5.603060032133996,51.46507722180745],[5.603102148007179,51.46535506511039],[5.603061362332994,51.46535759452475],[5.602990034129666,51.46536201413758],[5.602413336826542,51.465397731234454],[5.602419863642037,51.465438932325874],[5.60248014761793,51.46581934818776],[5.603063375535949,51.46578191981825],[5.603912578992886,51.465727419429946],[5.603895693629464,51.466046666103836],[5.603893191513003,51.46621022892757],[5.603965251940491,51.46636225552413],[5.604029436133007,51.46648609920476],[5.603066992774383,51.46654430668861],[5.601613676630712,51.466632191552684],[5.601522044073978,51.46712922766253],[5.601512690207711,51.46712932575074],[5.60124842123688,51.46713195939581],[5.599490073425709,51.46714886326023],[5.598345380057011,51.467171300789495],[5.597697919417818,51.46718757225508],[5.597511549614099,51.46719323992112],[5.597232829392217,51.46720171407848],[5.59714841046632,51.467204922242225],[5.59691204478175,51.46730416914747],[5.596103609402252,51.46746345247217],[5.595025082891914,51.46767594844719],[5.594176808370644,51.46784368482694],[5.594324821691154,51.46792516064202],[5.591465068760614,51.46849908962189],[5.590018787647231,51.46878931921738],[5.589973407721843,51.46879842277035],[5.589895042160562,51.468814073472466],[5.589849489485368,51.46882317727742],[5.588687026838066,51.46905537372145],[5.587001920979221,51.46939195087986],[5.586993005754047,51.46939372793578],[5.586846652224374,51.46942291315014],[5.586258189623398,51.469540682082894],[5.585938066931161,51.46960474659339],[5.585049817981975,51.46978169355299],[5.584342984245381,51.46992250280871],[5.585439518591567,51.470813336866435],[5.585959461244753,51.4712357299825],[5.58609717994397,51.47134760313602],[5.586208317035635,51.471437891353375],[5.586762855323585,51.47188838226215],[5.586968831118353,51.4720557044667],[5.587012409815672,51.472091112627304],[5.586854062309217,51.472131028397435],[5.586526349205012,51.47221261293951],[5.586573293747584,51.472247588548285],[5.587043089676505,51.47259759468072],[5.587472517262893,51.47291752021808],[5.588569503972237,51.47384460238348],[5.588708763286372,51.47396229333375],[5.588963748799122,51.474177778558094],[5.590202396421748,51.475332481219894],[5.590287509075346,51.47540056611003],[5.588928308979355,51.47601717983455],[5.58934595508739,51.47637708699617],[5.58961415307011,51.4766079275126],[5.590311963185714,51.47720852438375],[5.589958256828184,51.477355754145556],[5.588726071375947,51.477868653345574],[5.5885434966046,51.47794464658968],[5.588331651273632,51.47803282249453],[5.58811092370863,51.478124696424665],[5.585750043772329,51.479112693816404],[5.585911857056842,51.479169990715214],[5.585900969389995,51.47918202712415],[5.585834411148337,51.4792555869677],[5.585439450975348,51.47970099165149],[5.584394041388582,51.48087990272041],[5.58377476642575,51.48157822650469],[5.583365296391051,51.482039935982414],[5.582941863960325,51.48251737963294],[5.582716333490421,51.48277168791708],[5.582516416991224,51.48299710821794],[5.581545918338552,51.484091347391185],[5.580637170774356,51.4851159036541],[5.580477069108909,51.48529702111723],[5.580402143638604,51.48538091965917],[5.580396655698016,51.48538706801134],[5.580064250182838,51.48576181759567],[5.579929875786963,51.48591330891496],[5.577461713712936,51.488695641755065],[5.577384744569305,51.488782409046514],[5.577266502978089,51.48891569698034],[5.577235728317087,51.488948753510094],[5.577152932466666,51.48904370982648],[5.576409398952102,51.489881799161296],[5.576406160073043,51.489885444825084],[5.575979729743283,51.49036608560202],[5.57575717408289,51.490616923752306],[5.575107464999866,51.4913492001672],[5.575077123846065,51.49138340596967],[5.574390228317253,51.49215756247555],[5.574039175327643,51.49255319509503],[5.573961752300672,51.49264130911842],[5.573934587780205,51.4926710601439],[5.573888250781674,51.49272717863621],[5.573103007800066,51.49360938697399],[5.572999182610032,51.493726034239074],[5.572766673640274,51.49398724637517],[5.572711086989059,51.494049877909454],[5.572415893467681,51.49438254101709],[5.571996374030713,51.49485528195778],[5.571367100044509,51.49556436801517],[5.57022340034395,51.4968583241051],[5.570198528442144,51.49688645269109],[5.570156117347305,51.496936262465475],[5.573699675474232,51.498293044774535],[5.573747735515307,51.498311439633525],[5.57441662834036,51.498567533734175],[5.574602683258106,51.498638766778996],[5.575212922660614,51.498872397974544],[5.576729929934459,51.499453163659496],[5.576061193080016,51.499597842004526],[5.575213724604771,51.49978338849047],[5.574422350708337,51.499956659174664],[5.574365630534171,51.49996907363768],[5.573582638827521,51.50014050047557],[5.573572753729477,51.50014266455722],[5.57352114113249,51.50015396484471],[5.573399958617525,51.50018049509116],[5.574047297530966,51.500978192458916],[5.574055215530819,51.50098795045075],[5.574189162467552,51.50105478675054],[5.574427594033285,51.50122940906987],[5.574806483802702,51.50150690505074],[5.576319275940726,51.50244789886227],[5.576618859927374,51.50263421518077],[5.576996509344774,51.50286907735323],[5.577519041717917,51.50319402909374],[5.57779002908172,51.50336254656414],[5.578377728845133,51.503728016730875],[5.577296636607353,51.5040033799494],[5.576102097944824,51.504307617655456],[5.57540156061927,51.504487758884224],[5.575340124614867,51.504503498232026],[5.574853613078522,51.50462460390186],[5.574907867931775,51.504707868449316],[5.575375891295148,51.50542611724912],[5.575783858328788,51.50605218368535],[5.576210232465511,51.50670648818845],[5.576212494284993,51.506710053021095],[5.576266328850983,51.506794962535345],[5.57647582011638,51.50703062006151],[5.576559031674214,51.507158573399344],[5.576629791489689,51.507374635723814],[5.576932998602438,51.50785827208854],[5.576989500837775,51.5079483993365],[5.577038229703937,51.508025856210836],[5.577054244837401,51.508021848178906],[5.577218506036404,51.50827569008952],[5.577388055582515,51.50841599642663],[5.577844911307101,51.50840074318289],[5.577928473493301,51.50839795496902],[5.579648797881938,51.508340515189055],[5.579677233894198,51.508589193388566],[5.58048819184559,51.50853969162489],[5.58062413377221,51.50853139454318],[5.581369509335929,51.508485887441076],[5.581927872685653,51.50845400901218],[5.582043424860909,51.50844741619331],[5.582345899465571,51.508430146875526],[5.582322150686324,51.508481385979735],[5.582466809815814,51.5086480992979],[5.582460746711996,51.50867183050889],[5.582410176774099,51.508749864751344],[5.582083514222883,51.50925391936042],[5.581807731662223,51.50968286886232],[5.581540578739741,51.51009308894067],[5.581494282232655,51.510163996642305],[5.581387998498508,51.51043931630384],[5.581277873671536,51.51072623761519],[5.581242820265159,51.51083616424073],[5.581237698469045,51.510847786099866],[5.581086501709742,51.51120540835796],[5.580818571601859,51.51183913089985],[5.580846451283835,51.51184373177123],[5.580795946427441,51.51202303135796],[5.580767961696922,51.51210875763271],[5.58091533174269,51.51212606792123],[5.580921796705505,51.51212702796336],[5.580895033887739,51.51217325609419],[5.580769405924209,51.51234629839319],[5.580747694472623,51.512376203703134],[5.580739359302503,51.512387678061415],[5.580700934564711,51.51244061304631],[5.580395483713013,51.51272818529022],[5.580375546132726,51.51271969255959],[5.580226312140234,51.512884557710215],[5.580171223822233,51.512945430095584],[5.580103560432716,51.51293536681445],[5.580069116494591,51.51295578304845],[5.580018211327552,51.51297388942366],[5.579974095127037,51.51298272624868],[5.579847276137468,51.512991753553074],[5.579735827280331,51.512997195854034],[5.579649495229937,51.51300442132485],[5.579448270912741,51.51303063134608],[5.579370661260803,51.513032700730676],[5.578644030029147,51.513001203376376],[5.578123921690737,51.512966451458006],[5.577978939043676,51.51295545276605],[5.577836997080223,51.51294469162033],[5.577626005458307,51.51292292404075],[5.577209946095487,51.512879989321085],[5.576842108388482,51.51284857911149],[5.576559007624712,51.512824553769114],[5.576359835695047,51.51280764556042],[5.575936565491147,51.51277264598694],[5.574614102119478,51.512645736400835],[5.574474585673008,51.51263235157678],[5.573503362946371,51.51253923778567],[5.572480647089638,51.51244683589043],[5.572412491766987,51.5124391778955],[5.572312127939951,51.51242503621107],[5.572246080199031,51.51241136136753],[5.57218395026538,51.51239401290584],[5.572122940960408,51.51237237504824],[5.572091819267851,51.512360370583146],[5.571508214790407,51.51213524724175],[5.571476467970026,51.5121253109902],[5.571410624595543,51.51211212972771],[5.571344116155489,51.51210189775549],[5.570899689620417,51.512051371943286],[5.570287135978708,51.51200036230789],[5.57025251542679,51.51200288850428],[5.569842167049988,51.51196845781065],[5.56970257722042,51.51196462234062],[5.569257493094084,51.51198645894417],[5.569048358269516,51.51199815570564],[5.568947575610869,51.51200124302915],[5.568775394591332,51.51199950662307],[5.56839762377124,51.51197372117013],[5.567609146794902,51.511913433592106],[5.567438759184205,51.51189161179624],[5.567343515286199,51.5118746534764],[5.567259629152526,51.51185199672514],[5.567104958516256,51.51184843310423],[5.566985482314284,51.51184173194853],[5.566766702113107,51.51182218594586],[5.566558222324948,51.511806380956855],[5.566501216248658,51.51180538993177],[5.566438345830041,51.51180405732999],[5.56636586015662,51.51181194383766],[5.566288351022838,51.511824512109165],[5.566194932711859,51.51186857400253],[5.566168241551977,51.51191298292571],[5.566164291560709,51.51191955968803],[5.566152453129653,51.511971478315104],[5.566084497114899,51.511966423032035],[5.566101563449731,51.51190318867356],[5.566104459945896,51.51189246976062],[5.566097225456838,51.51189171681745],[5.566049010379297,51.51178557184286],[5.566040159159943,51.511776650690535],[5.566003380799487,51.5117543343033],[5.565524884243558,51.511704748104194],[5.564969959582982,51.51165292138648],[5.56495313706111,51.51163894269731],[5.564803021910105,51.51162127488418],[5.564661002651086,51.51160728890087],[5.564324880545541,51.51157711237529],[5.563954468180984,51.511552784512475],[5.563570338779297,51.51153124471469],[5.563099169537304,51.51150883716208],[5.562945723684063,51.51150496956235],[5.56269989280031,51.511503831734316],[5.56262465256525,51.51150348421214],[5.562434729639087,51.511498861799296],[5.562328476124562,51.511495120253564],[5.562210874296313,51.511488429378836],[5.561316694295086,51.51140574126449],[5.560063800505813,51.51128580800356],[5.559897806235143,51.511269919188244],[5.558476023511198,51.51113586388262],[5.557099170843998,51.51099966745694],[5.557002626321445,51.511323057817314],[5.556957113662327,51.51147551760626],[5.553665126895106,51.51116799522101],[5.553602514895483,51.51116214304006],[5.553306481405404,51.51143999053088],[5.553217371245545,51.511507244589794],[5.552366951430486,51.51238995930857],[5.552250489368025,51.51251084165637],[5.552177906619884,51.512742869397115],[5.551832932041852,51.513712800254225],[5.551722441325071,51.51402345093037],[5.551694703924274,51.51410144857052],[5.551679070670102,51.51414449027204],[5.551395813879166,51.514924681259174],[5.551078226117606,51.515799408368224],[5.550719199179844,51.51678823156072],[5.55068406906476,51.51688665251336],[5.549621021303,51.51986437580639],[5.549619895842883,51.51986794586397],[5.550109135598788,51.51992915963644],[5.55037754700452,51.5199627346928],[5.550660085002452,51.51999807808413],[5.55100505264114,51.520041225198455],[5.551236779885661,51.520070067814885],[5.55171012360758,51.52012897816019],[5.552658212955919,51.52024697088399],[5.553907992280164,51.52040249332452],[5.553739200559781,51.52089739732439],[5.553692334160399,51.521035970192266],[5.553591216884671,51.52133493284207],[5.553577034205696,51.52137688507974],[5.5534902124953,51.52163360759893],[5.553282654581955,51.52224731506333],[5.553223611940293,51.52242188658673],[5.553044015058318,51.52295285830347],[5.552832510610077,51.5235781928162],[5.552728374280431,51.52388609364438],[5.552582110482761,51.52431851079072],[5.552355695494526,51.524987873872064],[5.552352744471794,51.52499660601733],[5.552327468018393,51.52507132839092],[5.552321466096684,51.52508907146893],[5.552056179542015,51.52587336372146],[5.552022732869159,51.52597222307096],[5.551878209410889,51.52639948630699],[5.551871223381333,51.52642013407863],[5.551578147106388,51.527286467702936],[5.551576464726768,51.527291449777906],[5.551276476346882,51.528178214496165],[5.551229053329116,51.528318440976825],[5.551227827042719,51.5283220471438],[5.551201776971657,51.52839905345254],[5.549721064340638,51.52853894768341],[5.548239276535637,51.528678923494034],[5.548180672911259,51.528692487302834],[5.548156085146251,51.52870789178515],[5.547749436360774,51.52989612035546],[5.547588062326854,51.530373908425304],[5.547541339539416,51.53051224479676],[5.547511032288249,51.530601966040784],[5.547248702174774,51.53137860253674],[5.54724523639215,51.531388881298376],[5.547100639406457,51.53181698342065],[5.54695495938843,51.53225753608708],[5.546693124609595,51.53304930739878],[5.549501780079495,51.53340567274968],[5.549471900748211,51.53349360515136],[5.549411542559176,51.53367118759185],[5.549069594669673,51.53467733752054],[5.549005382363905,51.53486626873084],[5.548608087232728,51.53603520611746],[5.548585864098552,51.5361005841965],[5.548570045478646,51.536147140211455],[5.548564268556179,51.536164127722515],[5.548556708753454,51.5361863940245],[5.547914462098573,51.53807588125627],[5.54784479583618,51.53802566780352],[5.547804897826335,51.53799690516448],[5.547793640831191,51.53798878594404],[5.547437422482179,51.53773202994071],[5.547405439329411,51.53774855000373],[5.545753921789543,51.53860117447432],[5.544270341841333,51.539367052039],[5.543042862516669,51.540000687863945],[5.543015665227456,51.540014027343645],[5.54365809449385,51.54051068845802],[5.543679531701058,51.54049897450473],[5.545207423107812,51.54168695640324],[5.544765316745921,51.54227585065164],[5.544704133807854,51.5423573522019],[5.544700915763214,51.542360502563334],[5.543712711519482,51.543683420425346],[5.543577029651916,51.54386238602645],[5.543447365965345,51.544031096378696],[5.543027605718078,51.544587558986116],[5.543037944811216,51.5446010191305],[5.542410992238707,51.545428466295775],[5.542333423454314,51.545530841969956],[5.542329390743499,51.545536168594516],[5.542315240300311,51.545554838793],[5.542291187818137,51.54558669946843],[5.542259126560646,51.545628934660535],[5.54224245007375,51.54565089804165],[5.541217126091285,51.54700405438113],[5.540656682567257,51.547743657221005],[5.540188769874331,51.548361097571],[5.539929378247423,51.548703373370756],[5.539445319490325,51.549342125844284],[5.5393004627428,51.54953327791504],[5.539071429236349,51.549835503860066],[5.538584504244565,51.55047802264928],[5.53843655217069,51.55067323150667],[5.538114274427904,51.5510984597118],[5.538101599096446,51.55111518593999],[5.537839434296473,51.55146110097299],[5.537587877364377,51.55179401318608],[5.536788549982202,51.55285981387788],[5.536438664673785,51.55332632149669],[5.535989716207282,51.55392488027159],[5.53588330943767,51.55406675733543],[5.535145493854002,51.55505088749271],[5.534569488219518,51.55581258321427],[5.534567018876957,51.555815903130274],[5.533962286066985,51.55662712336426],[5.533950613456726,51.55664274227205],[5.53363895340541,51.55705981880425],[5.533415847447321,51.557358394581584],[5.533083128499178,51.55780363932023],[5.53261909954089,51.557962921214845],[5.532109848035698,51.55736002304152],[5.531396959217839,51.556516021088065],[5.531385669455991,51.556502650987476],[5.530797390793461,51.55673834745516],[5.530507994458959,51.55685429664935],[5.529706272566636,51.55717943445859],[5.529247607987316,51.55736354094656],[5.529099831595425,51.557422856753476],[5.529365098948073,51.557652795289],[5.52960387601625,51.557858676057165],[5.528440281993102,51.55835836440775],[5.528277278010336,51.55842836707117],[5.527787847525075,51.55799720753919],[5.52774674712013,51.55796356771287],[5.527676372051201,51.557905972498936],[5.52742480554325,51.55767902486903],[5.527296687847302,51.55756342335086],[5.527144717466134,51.55742819219466],[5.527070494662944,51.55736616984158],[5.527013157901912,51.557318257316375],[5.526942148126938,51.55725527824037],[5.526881569827648,51.557198857314944],[5.526648571526506,51.557000748222286],[5.526562050962798,51.556910848571135],[5.526506024674949,51.556852624293214],[5.5252294195074,51.55724981950129],[5.524848809490335,51.55736881074695],[5.524706807724534,51.557413202077804],[5.524162133041023,51.55758245529269],[5.525078358485376,51.558398059448734],[5.525223573561387,51.55852732384007],[5.525230600822224,51.5585335805929],[5.526099147072399,51.559306712459794],[5.526103890755401,51.559311210109364],[5.526108058256343,51.559315915182346],[5.526112254736606,51.55932066516383],[5.526115860559195,51.55932560460883],[5.52611948088557,51.559330571002256],[5.526122481658193,51.55933570891652],[5.526125482431498,51.5593408468307],[5.526127834727393,51.559346129334294],[5.526130172575889,51.55935140286647],[5.526131847388613,51.55935677606236],[5.526133522174201,51.55936214026972],[5.526134519365628,51.5593675592151],[5.526135516474695,51.55937295119471],[5.52613583590668,51.55937837094677],[5.526136140780642,51.55938374577305],[5.526135796735454,51.559389121371645],[5.526134479632494,51.55940637208294],[5.526132675551445,51.55942470650135],[5.526131549649191,51.55942905383455],[5.526129695418069,51.559433370574375],[5.526127794401087,51.55943653682771],[5.526125518218293,51.5594396271243],[5.526122910034585,51.55944260995262],[5.526119810963481,51.559445400109894],[5.526115243126325,51.55944888413792],[5.526111472237177,51.55945126161839],[5.526107513248653,51.559453432584455],[5.524194908057796,51.56043218839759],[5.523917648645208,51.56057407505356],[5.523906273712107,51.56057989501659],[5.523911204266812,51.56058422175217],[5.523989182371938,51.560652659563104],[5.52386476191878,51.56071105147791],[5.523755821790723,51.56076218932186],[5.523709689658393,51.5607910607581],[5.52354730138447,51.5608745210142],[5.523531125125633,51.560871070303655],[5.523317905217269,51.56098433289979],[5.523224346713234,51.56103403210963],[5.523234675463986,51.56104475247291],[5.523206135883702,51.561059041660734],[5.522945293785808,51.56120047541564],[5.522678058749365,51.561331327424],[5.522622835338086,51.56135861799568],[5.522569483808325,51.561384971555235],[5.521623920989719,51.56186687386331],[5.521538502991232,51.561910405146406],[5.521393790486741,51.56199008481597],[5.521295450232813,51.562033513922735],[5.521017567599068,51.562185614428394],[5.52089051960024,51.56225064875644],[5.520670585269975,51.5623556716362],[5.520618576396005,51.56238820692812],[5.520414210314952,51.562491310438745],[5.520329479927792,51.562534062534965],[5.521486062960138,51.56466066463011],[5.5216745147383,51.565009987622965],[5.521802185387791,51.56524663744311],[5.522261017864799,51.566097120587216],[5.522299994328362,51.56619130303602],[5.522750952277733,51.56843174721624],[5.522910148434739,51.5692004563803],[5.522923012704358,51.56926257064947],[5.523033613683134,51.56979662569273],[5.523081073578722,51.570188356677384],[5.523590701270672,51.57272018402366],[5.523602822448238,51.5727803844977],[5.523645408079185,51.572991944367516],[5.523892839953731,51.57426564515617],[5.52413189734491,51.57545579710825],[5.524352008498542,51.57655433196671],[5.524466047430986,51.577116551586535],[5.524476922949757,51.57717015578386],[5.524812523676904,51.578824606344064],[5.524819296904165,51.578855465200505],[5.524858275189251,51.57895438369818],[5.524965551518517,51.579106092545366],[5.525062555747002,51.57924326088411],[5.526340728654143,51.58014656386074],[5.526884936275526,51.58053114624108],[5.526929523272934,51.580562654102714],[5.527154112925483,51.580721365307596],[5.527257623693352,51.58079451623197],[5.527368440834592,51.58091620569598],[5.527598519858868,51.581221083107664],[5.527652266521793,51.581287731826684],[5.527609132923007,51.58138231674675],[5.527523628962817,51.58154789954754],[5.527206092170987,51.58216281400812],[5.527187117774375,51.58219955516123],[5.527098867826848,51.58237045206446],[5.527039376728888,51.58240145306974],[5.526962646034418,51.582447045188864],[5.526618934674714,51.58266824286634],[5.526470779221873,51.58276359087816],[5.526421043535557,51.582795595643276],[5.526740790198622,51.58301428400688],[5.526697450189068,51.5830288883186],[5.525798747638668,51.58333171445234],[5.525805573345583,51.58334626787143],[5.525711643512509,51.583383071878686],[5.525666204288474,51.58340087598885],[5.52513114280671,51.58361052205952],[5.52512750213054,51.58359947039083],[5.524344623968091,51.583930231066795],[5.524324216010923,51.58393885486758],[5.524039951923546,51.584058952311594],[5.523947041877943,51.58409996822769],[5.523784341552219,51.58418400422061],[5.523714178770538,51.584227887669975],[5.523469294348551,51.58433623453311],[5.523426124243338,51.58435533172625],[5.523291954896552,51.58440834108106],[5.523137626389818,51.58446539165018],[5.522975985159332,51.5845137765268],[5.522890765094052,51.58453601448024],[5.522820129264653,51.58456693639144],[5.52271476354732,51.58459771879534],[5.522651844846683,51.58461834870053],[5.522567290083263,51.58464606868668],[5.522384023678919,51.58468142637422],[5.522313634916296,51.58470345797591],[5.52207834465422,51.584745634784944],[5.52206725500569,51.58474761609445],[5.521947290136154,51.58477471136561],[5.521460926323959,51.5848845728249],[5.520842022158072,51.58502000374983],[5.520804531924329,51.58502820828877],[5.520572250765155,51.585079034633395],[5.520557473517677,51.58508315030705],[5.520449289557978,51.58511327771702],[5.520460019321622,51.58513115276853],[5.519996438700677,51.58523379125298],[5.519901234659562,51.58524243863968],[5.51928713123869,51.58538470517251],[5.519280456579176,51.585371859038105],[5.519266195932437,51.58537507510497],[5.518113729359541,51.585634749809344],[5.518103565499609,51.58562768718314],[5.518065498134707,51.585601267441426],[5.517060157230458,51.58542023599509],[5.516733466477294,51.5853614089767],[5.516649313560866,51.58537496720262],[5.515968805180618,51.58548458940085],[5.515202290952081,51.58561731273275],[5.514939093594713,51.58566288545975],[5.514703594748686,51.58570691726985],[5.514412258725548,51.585751998193],[5.513735481230698,51.58588918929587],[5.513554082650659,51.585925960291426],[5.513511424939066,51.58593421302407],[5.513348004498688,51.58596582277825],[5.51312216489677,51.5860080432464],[5.512821454550057,51.58605600665898],[5.512477606304819,51.58610590319005],[5.512434653141032,51.586111800836186],[5.512242416594183,51.586138163643554],[5.512208420366253,51.5861428291666],[5.511658306443945,51.58621830972093],[5.510529880674826,51.58633816536434],[5.509937136026748,51.586391552930415],[5.509556181864038,51.586440311345115],[5.508759313242279,51.58655540657252],[5.508483927703553,51.58659090123713],[5.508374299115515,51.58660853381402],[5.508164733885414,51.586642233593295],[5.508059951165503,51.58665908783636],[5.507955168367675,51.586675941985526],[5.507933404113577,51.58667944307492],[5.507800815598697,51.5867014762937],[5.507108520542822,51.58681649714858],[5.506996224264658,51.58682972676392],[5.506946397692852,51.586834218235936],[5.506755823650122,51.586869603841606],[5.506572789700966,51.58689172326182],[5.506417243404133,51.58691390421916],[5.50629690993238,51.58692725821987],[5.505639466571646,51.58700281087326],[5.505451366297159,51.58702470896125],[5.504627760436327,51.587108882346776],[5.504414481348224,51.58713125351499],[5.504055560662373,51.587162300313466],[5.503215343613022,51.58722472798956],[5.503031368896015,51.58724695964949],[5.502636198491778,51.58730012300196],[5.502537896165149,51.58731334348543],[5.502452701752781,51.587323297079806],[5.502234392758127,51.587348824228165],[5.501840258500836,51.587407314099615],[5.501630519527269,51.58743844058263],[5.50153736943006,51.587452266398536],[5.50153954134189,51.587455239493615],[5.501284597029104,51.58748159173399],[5.501250913147713,51.58748507625898],[5.501074582382624,51.5875037918225],[5.500991841761659,51.587517202564214],[5.500956634080282,51.587517236872486],[5.500908584252732,51.587517283677755],[5.500725624450179,51.58750206427009],[5.500649002771559,51.58749569393028],[5.500363134122407,51.58746950783115],[5.500126798778776,51.58744785956072],[5.500097529549554,51.587445281176564],[5.499080689788364,51.58735152030105],[5.497362258258758,51.58719302272648],[5.497149262838214,51.58717337671066],[5.495547141426798,51.58702561007276],[5.495524522688274,51.58702222438784],[5.495426669821161,51.58701279622767],[5.49516448551523,51.5869865586093],[5.495072785360775,51.586973466108674],[5.494887629776308,51.58695542616937],[5.494887275270154,51.58697018575391],[5.494561120024597,51.58695937625359],[5.494183678103862,51.58694630278671],[5.493955015529325,51.586932966307714],[5.49278060843237,51.586921441314004],[5.492640713928104,51.586920066655104],[5.492635721302514,51.58692001723279],[5.492614813523896,51.58695729379987],[5.492577308671637,51.587024121836734],[5.492507543000609,51.5870116097588],[5.49247041520938,51.587141438414356],[5.49223855496228,51.58795220188435],[5.492232886742182,51.587971990858605],[5.492231054642643,51.58797841035623],[5.491978058280418,51.58886303347609],[5.491898958185958,51.589139593274865],[5.491375293099462,51.59095791271834],[5.490879688775536,51.59271553167306],[5.490878013923774,51.59272146562364],[5.490867246378656,51.59275843622883],[5.490692385079288,51.59335847124391],[5.490650602115304,51.59350184916153],[5.490264505350518,51.594826711757456],[5.490249970612854,51.59487658423476],[5.490208100718039,51.59502104068011],[5.490206726082644,51.595025796851125],[5.489613158849108,51.59707368338435],[5.489389931937387,51.59785390767529],[5.488933072494728,51.599450614798066],[5.488239366097554,51.601874905315405],[5.488103603603594,51.60234931376489],[5.488040268791794,51.602570640176786],[5.488018964189713,51.60260965999115],[5.487955941465083,51.60272509170941],[5.487861836627634,51.60287733143107],[5.487772351356477,51.60301061918525],[5.487679370842794,51.60313668306486],[5.487675499650666,51.6031419357223],[5.487574880891439,51.60326714318669],[5.487467328271505,51.60339019926003],[5.487483059706231,51.60356520223398],[5.487487958132271,51.60361965079504],[5.487577568484763,51.60461618165257],[5.487581283076616,51.60465742701172],[5.487589778217399,51.60475192554355],[5.487613813084997,51.605019126099435],[5.487617054420983,51.60505523040058],[5.48816776027133,51.60544852680761],[5.488146154189991,51.60570249956646],[5.488144846189312,51.605717961038046],[5.48713509095945,51.6057415437166],[5.487175315518751,51.60587267049771],[5.487244665763672,51.606089738995045],[5.487303550751471,51.60627404409462],[5.487363434437482,51.606550678891445],[5.487367299304599,51.60656851788657],[5.487359912040018,51.60684423960034],[5.487359032255128,51.60687721941559],[5.487299148550453,51.60693373695748],[5.486258550708673,51.606886980460565],[5.486085538899426,51.606873091455476],[5.485867136562692,51.60693297828444],[5.485622426001466,51.607000077738334],[5.485501576011785,51.607181847505935],[5.485248477074454,51.60756251046269],[5.485061306971671,51.60779823987852],[5.485049658299919,51.60780541352952],[5.484956166144884,51.60786303665184],[5.484709055287411,51.60830657742091],[5.48470515817474,51.608313564792375],[5.484471480633267,51.6084539184264],[5.484237801645174,51.608594271592146],[5.484064951402521,51.608726106612444],[5.48304921708129,51.60869588931961],[5.482910462133214,51.60881447245491],[5.482840414301124,51.608874330789035],[5.482509690827983,51.60886536096792],[5.48134029245749,51.608833627232656],[5.481270833536724,51.60887222618979],[5.478679401081474,51.60879171635719],[5.478208077421605,51.6087789074596],[5.477247239943806,51.60875258790111],[5.476917327806476,51.60874406904754],[5.475802843000325,51.60871527587544],[5.47435856822277,51.60867268761098],[5.473818341669674,51.608643903809416],[5.473723760937022,51.60863885945192],[5.473830750633237,51.60886320213603],[5.473866549387136,51.60892570452618],[5.473873139908323,51.60893721398659],[5.47394725409083,51.608996744143774],[5.474014891083587,51.609051092667954],[5.47390316306929,51.60904806565559],[5.47381911079929,51.60904578203353],[5.473796704571694,51.609045178444894],[5.473781960561129,51.609284258269],[5.473762721207828,51.6095959600411],[5.473457072216791,51.609587952746026],[5.473436953044635,51.60963614632088],[5.47338755212326,51.6097425894405],[5.473170795699564,51.61021002881545],[5.473103105139008,51.61035600799607],[5.473035950448879,51.6105031193006],[5.472798811604904,51.61101384837861],[5.47314550259668,51.611023368729434],[5.473265493282932,51.61102637239938],[5.473255439375404,51.611349770376584],[5.473248528272738,51.61157217951132],[5.473220257208911,51.61248187893722],[5.473213936971921,51.6124836273751],[5.473151658035595,51.61250083240959],[5.472955629168557,51.61255499782953],[5.472913619220924,51.612663197048505],[5.472898115649254,51.612694857160406],[5.472169049979182,51.61287681520927],[5.471957029359855,51.61292743111944],[5.471800906784055,51.61292210627935],[5.471593073921978,51.612632905876595],[5.47145244550107,51.612628531146434],[5.471436114633308,51.612627365429304],[5.471419926918956,51.61262554344156],[5.471403969049867,51.612623101074924],[5.471388284305345,51.61262002032119],[5.47137294492303,51.61261632809404],[5.47135800868639,51.612612042329104],[5.471343547799473,51.61260717196311],[5.471329620062297,51.61260174392016],[5.471316268804007,51.612595767157885],[5.471303551841145,51.61258927758905],[5.471291512536076,51.6125823021483],[5.471280223109084,51.612574858760894],[5.471205087310812,51.61252622180496],[5.471196169557305,51.61252088901516],[5.47118654529362,51.61251605110392],[5.471176286806458,51.612511761950444],[5.471165466315691,51.61250803947976],[5.471154170511795,51.61250491958359],[5.471142471614462,51.612502420187084],[5.471130470717988,51.612500559194444],[5.47111826891661,51.61249935451009],[5.471105923992499,51.61249882406962],[5.471093565847822,51.61249894980237],[5.47108126670206,51.61249974963367],[5.471069127599376,51.612501214502394],[5.471057249567319,51.61250332635886],[5.471045690338114,51.612506076173084],[5.471034579797458,51.61250943688627],[5.471023961223718,51.61251339049031],[5.471013950048773,51.6125179009482],[5.471004589517883,51.612522932274864],[5.47099598064244,51.612528457432184],[5.470988166634627,51.612534422457976],[5.470981219614721,51.61254079134636],[5.470985346841776,51.61254758373796],[5.470951292901127,51.61254964857712],[5.470959513437096,51.61259951122662],[5.470918200052972,51.612602983480166],[5.470929701362901,51.61274837422477],[5.470872257953412,51.61275007829411],[5.470869922823515,51.61272867370539],[5.470865439182408,51.61272432645435],[5.470860122351892,51.61272224042378],[5.470853884485508,51.61272175501715],[5.470845997398972,51.612723360632664],[5.470841418464192,51.61272603801086],[5.4708390935344,51.61272967105592],[5.47083892029376,51.61273358120488],[5.47078112733022,51.612733622595805],[5.470771627356694,51.61282735314088],[5.470737162974011,51.612826182328774],[5.470703145742094,51.612840435560315],[5.470582340291886,51.612844378000844],[5.470578657769044,51.61293004163323],[5.470576319051522,51.612937962227214],[5.470573056086017,51.61294574865277],[5.47056888325988,51.612953373933905],[5.47056382934831,51.61296078411852],[5.470557908722204,51.61296794324206],[5.470551164627488,51.61297481531919],[5.470543640293619,51.61298135537615],[5.4705353645623,51.612987545415095],[5.47052622201621,51.61299343046098],[5.470516400077863,51.61299886656291],[5.470505956480756,51.61300384469091],[5.470494948892271,51.61300831986093],[5.470483435029528,51.61301227405441],[5.470471487030681,51.61301568025415],[5.470459162629545,51.61301852943021],[5.470446519526907,51.61302079457564],[5.470433658769212,51.61302246662977],[5.470420623669455,51.613023545561695],[5.468018191055556,51.61304793859859],[5.46785494422764,51.61295791420113],[5.467533307356719,51.6129914655755],[5.467566303944452,51.613052232509986],[5.467568722241924,51.613056302663736],[5.467587057265114,51.61305593948511],[5.467605407939464,51.61305625942353],[5.467623673219165,51.61305727153723],[5.467641824214033,51.613058966857565],[5.467659774299763,51.61306134544426],[5.467677451273556,51.61306439835869],[5.467694811791606,51.61306810765369],[5.46771176921346,51.613072464400574],[5.467680562243699,51.61311697930292],[5.467665959053429,51.61311314226533],[5.467650952797359,51.61310997065731],[5.467635615662576,51.61310746442894],[5.467620034321583,51.613105650486105],[5.467604295382912,51.613104519780464],[5.467588456643901,51.613104099237866],[5.467572619150562,51.6131043798001],[5.467556840636326,51.613105352438886],[5.467541222179166,51.61310702607322],[5.467525835950083,51.61310939166494],[5.467406653850967,51.61313376070983],[5.467345175797376,51.61314840934828],[5.467284059645094,51.613163623985535],[5.467223305392189,51.613179404622116],[5.467162941911893,51.613195751238834],[5.467102983639932,51.61321266382639],[5.467043430542795,51.61323012440834],[5.466984297056365,51.61324813297541],[5.466433589726358,51.61342968153052],[5.46638913370582,51.61344475855],[5.466344229192488,51.61345932350864],[5.466002238968073,51.61324903377292],[5.46595915438949,51.61322254659295],[5.466423091559806,51.612876092107385],[5.466268343344755,51.6128718915092],[5.464519191006154,51.61282443512162],[5.463921135014815,51.61280820091104],[5.46368437876969,51.61280177441602],[5.463416104195346,51.61279449164217],[5.463293539085441,51.61279116494544],[5.46328037273321,51.612688497183385],[5.463019735128706,51.612680523144604],[5.46302120653552,51.61266257203018],[5.462613389921849,51.61265202299867],[5.461936001273609,51.61263450855203],[5.461636831198654,51.612626771824466],[5.461212859094748,51.61261579676159],[5.461028355860796,51.61261102384016],[5.460776975864232,51.612604522060494],[5.460307942917153,51.61259219686624],[5.460201028776428,51.61258891105576],[5.460067953559928,51.61258528194183],[5.459837609475612,51.612579007698805],[5.459659993043115,51.61257415642407],[5.459388471775072,51.61256669339917],[5.459208978438489,51.612561752714974],[5.458975443692899,51.61255532593728],[5.458343521890221,51.612538257086],[5.458335547747254,51.61265460989065],[5.458155145819474,51.61265043217082],[5.457878614820033,51.6126431304809],[5.457870183647094,51.61302219221629],[5.457869972274202,51.613062479076476],[5.457869298927951,51.613102784193366],[5.457766385213088,51.61310094089303],[5.457624200269727,51.613098384145324],[5.457550508978333,51.61309706233054],[5.457348016761881,51.613093427005],[5.457350195456608,51.61304599305726],[5.456014075931412,51.61265797937997],[5.456023787026122,51.612645021135776],[5.456043958396759,51.61261808849543],[5.455861100240079,51.612564885071706],[5.45574432256169,51.612530905053],[5.455669489602809,51.61250912475783],[5.455594988924103,51.6124874430942],[5.455521427164077,51.612466039478804],[5.455445684474522,51.61244399890472],[5.455344853214486,51.61241465624628],[5.455242852162831,51.612384981606276],[5.455059230385947,51.61233156164843],[5.454943306139414,51.61229786796745],[5.454868589542083,51.61227615001216],[5.454793771915164,51.61225440510191],[5.454718766581725,51.612232597332486],[5.454644396840908,51.61221097790742],[5.454548419685367,51.61218307891493],[5.454441566841369,51.61215211202327],[5.454245020407491,51.612095165729315],[5.454128360673783,51.61206120200621],[5.454053688141661,51.61203946552779],[5.453979044568772,51.61201773797368],[5.453904545492257,51.61199604624359],[5.453829959837472,51.61197433653832],[5.453730141691835,51.611945279543],[5.453630525873525,51.61191627627867],[5.453545844601551,51.61189163287968],[5.453425142160651,51.61185674493176],[5.453393699184743,51.6118476573604],[5.453385221508427,51.611845558846],[5.453376643049139,51.61184364914795],[5.453368035716309,51.61184173946567],[5.453359342037515,51.611840018591465],[5.453350619471968,51.611838288744444],[5.453341810573478,51.6118367566941],[5.453333001675583,51.61183522464306],[5.453324106431461,51.61183388140014],[5.453315225638133,51.61183254713687],[5.453306258498438,51.611831401681684],[5.453297291359195,51.61183025622577],[5.453288281197963,51.61182930854194],[5.453279271050241,51.61182836984592],[5.453270217867241,51.61182761993343],[5.4532611791348,51.61182687900059],[5.453252111804058,51.61182632684304],[5.453255092982769,51.61181637931153],[5.453167057045098,51.611812613472594],[5.453103353297771,51.61181764711164],[5.453067509998337,51.61182047178253],[5.452964556595994,51.611838839556675],[5.452890063292561,51.61186034620583],[5.452764576635729,51.61172165136732],[5.452742105386529,51.61169681960684],[5.452701356416818,51.6116517828282],[5.452647635335554,51.61159144579104],[5.45220049094555,51.6117022280992],[5.452013626791012,51.6117492793117],[5.451831670318105,51.61166460911995],[5.45188254307144,51.61163184458503],[5.451949180925608,51.61158892319341],[5.45166999884651,51.61156998608805],[5.451670205834158,51.611573401627226],[5.451670441695935,51.6115768171505],[5.451670691994797,51.61158023266577],[5.451670985592039,51.611583639168536],[5.45167127920214,51.611587054659914],[5.451671601686391,51.61159047013526],[5.451671938594932,51.611593876614094],[5.451672318827507,51.611597292057596],[5.451672699047326,51.61160069851249],[5.451673122578375,51.61160410494348],[5.45167354610949,51.611607511374466],[5.451674012951847,51.611610917781476],[5.451674479794277,51.61161432418851],[5.45167498993515,51.61161772158304],[5.451675441815278,51.61162075946728],[5.451676053541133,51.61162452533673],[5.451635092011067,51.61163217026631],[5.45161404650173,51.61162466744939],[5.451600885236643,51.611638562043176],[5.451410698281784,51.61167409977875],[5.451409797427341,51.61167004643309],[5.451408954321371,51.61166599305564],[5.451408096765715,51.61166193069759],[5.451407296958512,51.61165786830772],[5.451406511588529,51.611653805909896],[5.451405769529904,51.611649743488265],[5.451405027471411,51.611645681066605],[5.451404328711504,51.61164160963256],[5.451403644388789,51.61163753819053],[5.451403003377401,51.61163346672468],[5.451402362366129,51.61162939525884],[5.451401779090472,51.61162531477266],[5.451401195827681,51.611621243275025],[5.451400670300483,51.61161716275706],[5.451400144773381,51.61161308223909],[5.451399662557554,51.611609001697246],[5.451338382588226,51.611673887875696],[5.451106287321343,51.61158891153101],[5.451092146118907,51.61158373287569],[5.451092441094946,51.61158814609809],[5.451092972143393,51.61159615461603],[5.451094202393307,51.611608567146426],[5.451095447080959,51.61162097966888],[5.451097110431559,51.61163338297343],[5.451098773783068,51.61164578627799],[5.451100855772582,51.61165816238752],[5.451102952213011,51.61167054747765],[5.451105452842121,51.611682896392075],[5.451107967909682,51.61169524529854],[5.451110887179064,51.61170756701783],[5.451113820874427,51.6117198797406],[5.451117158746641,51.611732147299],[5.451120511057768,51.611744414849426],[5.451124267546177,51.611756637235416],[5.451128024011202,51.61176884164426],[5.451132199091044,51.611781000880725],[5.451107312439415,51.61178309087299],[5.451082323887698,51.611784587670655],[5.451057277598554,51.61178609348316],[5.451032158272153,51.61178699709657],[5.451007010070513,51.61178790072044],[5.450981817719855,51.61178821111793],[5.450956596481943,51.61178851253721],[5.450931388844805,51.61178822069856],[5.450906181207992,51.61178792885446],[5.450881001597731,51.611787034756034],[5.450855836425577,51.61178614064426],[5.450830757042424,51.61178465323519],[5.450805706535145,51.61178316580506],[5.450780770692393,51.61178108506194],[5.450755878163274,51.61177900428994],[5.450731143623925,51.6117763391701],[5.450705456010867,51.61177351276968],[5.45067976840101,51.61177068636361],[5.450654080794352,51.611767859951925],[5.450628393203503,51.6117650425231],[5.450602705615844,51.61176222508865],[5.450577003594264,51.611759407656436],[5.450551316012986,51.61175659021073],[5.450525628447485,51.611753781747915],[5.450499926435475,51.61175096429873],[5.450474238876338,51.61174815582465],[5.450448536883279,51.61174534735274],[5.450422849343067,51.611742547855904],[5.450397147356365,51.61173973937268],[5.450371459835059,51.61173694885313],[5.450345757867257,51.61173414934717],[5.450320055902629,51.61173134983557],[5.450096405096616,51.61170660826067],[5.450144805840058,51.611535718583646],[5.450166039381124,51.61146072454132],[5.450186410864042,51.61138876909397],[5.450176491149887,51.61138769582163],[5.450162846117304,51.611386211085104],[5.450128854631305,51.6113813329057],[5.450131032765982,51.61137740822342],[5.450133214515783,51.61137348803345],[5.450135410699063,51.6113695655885],[5.450137610497466,51.61136564763587],[5.450139914738427,51.61136156783271],[5.450142543026013,51.61135692382242],[5.450144472883596,51.61135354757615],[5.450146402740894,51.61135017132983],[5.450148573832356,51.61134637473806],[5.450151241829239,51.61134173744754],[5.450153193347248,51.61133836568372],[5.449488081001631,51.61126466143159],[5.449537304450389,51.61109230642507],[5.449574703386817,51.61105576590673],[5.449550493871695,51.61104613412067],[5.449444425731996,51.61100396249511],[5.449409050467755,51.610989896286895],[5.449405936271988,51.61099292709297],[5.449278621480889,51.610943261194535],[5.449260095368369,51.61096166164995],[5.449241136720754,51.61098048928918],[5.449228860744588,51.610974477974466],[5.449214757168985,51.610978017977565],[5.449128152741761,51.611000823022785],[5.449051421302451,51.61102102619874],[5.449044174791954,51.61102293449214],[5.448986301307732,51.61093075149687],[5.448969057966932,51.610905412882246],[5.448977962290106,51.610903062152445],[5.448972971624235,51.61089577507108],[5.44890055650411,51.61079002700226],[5.448825512056748,51.61080981454076],[5.448708904403298,51.61084056303351],[5.448672398334948,51.61081213347586],[5.448620880304226,51.61085978201552],[5.44786510068213,51.61104494638264],[5.447710700487245,51.611089861523645],[5.447740266068541,51.610981129523694],[5.447862099204721,51.61094912987],[5.447859090118216,51.61094449333661],[5.447665916993929,51.61064703625628],[5.447633950906008,51.61052589598665],[5.447549270845895,51.6104761342008],[5.447125222128531,51.61036777097584],[5.446947807667745,51.61032243378729],[5.446969678271928,51.610288958163956],[5.447125912383912,51.610049809200156],[5.44709613635423,51.61004391001879],[5.446503187854739,51.60992650774919],[5.446504930053175,51.60992298334675],[5.446515283974658,51.60990320324351],[5.446553841088028,51.60982954033332],[5.446603687906325,51.609734281132305],[5.446651583294585,51.609642762146095],[5.446667639587155,51.60961208498364],[5.446655148723093,51.60960953859902],[5.446659179221051,51.60960063786696],[5.44663188737908,51.609595321557634],[5.446609938388057,51.60959104519414],[5.446637442949259,51.60953853797254],[5.446658338036396,51.60954279689099],[5.446681067047391,51.60954743239019],[5.446699355676292,51.6095127631626],[5.446743838960115,51.60942864346477],[5.446751876448111,51.60941496775664],[5.446769478264724,51.60938503584124],[5.446808315026127,51.60931060867281],[5.446834422160628,51.609260600938235],[5.446851721499867,51.60926410662112],[5.446916592174638,51.609139186326004],[5.446968459610843,51.60903926985269],[5.446926303989856,51.60902700407873],[5.44692833459564,51.60900143057511],[5.44660932921724,51.608940570127494],[5.446584172189111,51.60898858186836],[5.445475672923113,51.60866495043065],[5.444914290131696,51.60850277925241],[5.443509104296376,51.60809180788767],[5.44218625739068,51.607728644944956],[5.441782485888252,51.607620028059756],[5.441378716319739,51.60751140977935],[5.440242803857894,51.607186923503086],[5.439937152200826,51.60709723155285],[5.438970854414557,51.606813669777964],[5.437902346276659,51.60650151705545],[5.436947658874763,51.6062266805057],[5.435386259272666,51.6057669690339],[5.434445814120707,51.6054853647406],[5.433205044744359,51.60511802202433],[5.433037638753341,51.60507211147179],[5.432116935369821,51.60479968496808],[5.430886045587125,51.60444461018811],[5.43051186828291,51.60434053643652],[5.42878375927065,51.60384462863595],[5.428468683157718,51.60376811314508],[5.42838498081642,51.60374055685539],[5.42821266869477,51.60368544582399],[5.428192700503147,51.60367970016956],[5.427946801920783,51.60360891159137],[5.427602021231225,51.60353079519795],[5.427489545743694,51.60351249747866],[5.427452846301326,51.60353707592001],[5.427422970264621,51.60355707681318],[5.42684306111048,51.60343865350738],[5.426557915737078,51.60338104361019],[5.426451972859173,51.60335470690646],[5.425929918787853,51.603249463764804],[5.425380397282378,51.603125674898244],[5.425239446433139,51.60310943374028],[5.425162903883147,51.603267387841086],[5.425092436985965,51.603372873647665],[5.424965560889864,51.60354868628755],[5.42490212247672,51.60363659704919],[5.424623626291074,51.604006746168245],[5.424633971860144,51.60405406764509],[5.424634638380637,51.604057114554855],[5.424497720215238,51.60401565827845],[5.424029099023148,51.603873788087895],[5.423482613850863,51.603705379093995],[5.42262597635463,51.60344205318372],[5.42192688506973,51.60321545531778],[5.421498571888524,51.60308071784881],[5.42119826122334,51.60297966659566],[5.420543484309589,51.602774494223205],[5.419829660848615,51.60256627864037],[5.419480136834665,51.60246522777222],[5.419091208494158,51.60234273095478],[5.418310399368107,51.60211900117737],[5.418244841433395,51.60210021460569],[5.417500997746234,51.60328238933293],[5.41630683623436,51.605180099653694],[5.416031642062919,51.60533043903064],[5.416029323734687,51.605361962502904],[5.415816033245616,51.60529725256853],[5.415837784744671,51.60527116239846],[5.415413684620634,51.60513538592361],[5.415391758918862,51.605160190692445],[5.414748417211958,51.604944367645125],[5.414559710536224,51.60520827153501],[5.414528831317861,51.605251459864014],[5.414529069046203,51.60526262360594],[5.414403871734353,51.60523514795823],[5.414237659252408,51.60519866619164],[5.414161663291462,51.60518198308696],[5.41387574055181,51.60511923695428],[5.413786866631087,51.60509880832876],[5.412725395404779,51.60485482696488],[5.412491750552786,51.60480111743903],[5.411131473478733,51.6053637122313],[5.411082705833871,51.605379721912996],[5.410854477544445,51.60547138006395],[5.410494461894738,51.60560335102083],[5.410183842361092,51.605708929665596],[5.410139649746762,51.60572450659687],[5.409484983558048,51.60595526266345],[5.409433429545039,51.605973006984044],[5.408807287487056,51.606188410306885],[5.408272777543901,51.60637742122515],[5.40825584761977,51.606383410681325],[5.408090057341836,51.60622866206216],[5.408068928588643,51.606238593732414],[5.407452540075155,51.60652999533803],[5.407309225635449,51.60659617609497],[5.407334009973675,51.60662537564044],[5.407149935376212,51.6067054775643],[5.40700100363388,51.60680243575015],[5.405236388183635,51.607951138411636],[5.401422069040072,51.61034053276912],[5.40098352364521,51.612150083001495],[5.400911190559693,51.61244855446241],[5.400507083173257,51.61411584556452],[5.399625001913514,51.617912584090945],[5.399618555537341,51.61794101558269],[5.399463508593339,51.61862560944139],[5.394049364911643,51.621069147945704],[5.393967462152712,51.62107815036642],[5.393998183878966,51.62112809792609],[5.394041658228924,51.62119056576757],[5.396089565889152,51.624133079008615],[5.396130734539265,51.62419109690346],[5.396035814704316,51.62419789958574],[5.394592837771175,51.62431075403159],[5.393895369739562,51.62436921357493],[5.393394817118643,51.624411164437845],[5.393047367151829,51.62444119556702],[5.392403096194613,51.62449789968967],[5.392331671178795,51.62450666677885],[5.391381092179682,51.62462534578962],[5.390824505290981,51.62470136780463],[5.390857291773564,51.62475920355767],[5.390862188085839,51.6247678144277],[5.390865278977415,51.62477328835296],[5.390916899832012,51.624864313688285],[5.391361101973862,51.625647775969014],[5.391551806443823,51.62597742377067],[5.391996786138474,51.626803731934714],[5.39278899513588,51.6282688287981],[5.392780865006398,51.62827614587402],[5.392674943842638,51.628386036001444],[5.392391098482081,51.62867965119758],[5.392234054863944,51.62884209927639],[5.392194761290773,51.62888273822989],[5.39213120744475,51.628953067394775],[5.392095899721787,51.62899262751559],[5.392018221161798,51.62906735262691],[5.391872699482868,51.6292238043641],[5.391725181458399,51.629358557649766],[5.391678348093685,51.62940134499202],[5.391495562815418,51.629568287359405],[5.391207349046669,51.629796094680856],[5.391061717465313,51.62991129697069],[5.390976841440225,51.629967496240816],[5.390948867019978,51.62998496192167],[5.390400175003466,51.630300962272926],[5.390352009548181,51.63032862139842],[5.39021740637979,51.63041239836761],[5.390115702616717,51.63047493439026],[5.390016381180655,51.63052981202372],[5.389856182815379,51.630601247953294],[5.389823585574216,51.63061548658792],[5.389625040918665,51.630702095769614],[5.389401307157933,51.63079934756134],[5.389269487020093,51.63085565438956],[5.389217173973696,51.63086021256738],[5.389144986135292,51.63084463674276],[5.388673896828543,51.63056613423688],[5.388683880323291,51.63065722400411],[5.388684992812875,51.63066735407778],[5.388692245681719,51.630733464717714],[5.388727526192041,51.63101012260983],[5.388720268699238,51.63121110655421],[5.388535797236495,51.63116625622763],[5.388522509296644,51.631163020521235],[5.388515175002853,51.63125201618561],[5.38851075820258,51.63133993318689],[5.388501072946664,51.63153302520096],[5.388488145440028,51.631964052978496],[5.388487914589086,51.631971738185726],[5.38848699118712,51.632002559911435],[5.388483210946067,51.63212713217607],[5.388490943202823,51.63228085414135],[5.388473586301205,51.63287470938889],[5.388456775418468,51.63339192828652],[5.388449388599247,51.63366523397871],[5.388437562813767,51.63379240400817],[5.388433549207851,51.63385291491808],[5.388420295555978,51.634052280925374],[5.388395231690959,51.634429449397764],[5.38838977469474,51.63452879081651],[5.388371642284395,51.63485897608477],[5.388366979206835,51.634943800996325],[5.388351942580129,51.63544537970042],[5.388339480797659,51.63558327303473],[5.388312734327562,51.635765444070415],[5.388301454762574,51.63582983809294],[5.38827626717116,51.635980324496586],[5.388236444356674,51.636040368356916],[5.388229179176752,51.63606244428471],[5.388239871123048,51.636166162934884],[5.388288082448906,51.636482343295825],[5.38835106027102,51.63689991418377],[5.388367615603096,51.63694143205861],[5.388388230090166,51.63698419030252],[5.388457167056005,51.637134217189704],[5.388519820255818,51.63726774115686],[5.386042332301819,51.637871290705995],[5.385867928345522,51.638034583864695],[5.385803066745535,51.63808455946975],[5.385675915312286,51.63815488438015],[5.38559272197595,51.63820361024648],[5.385435739029437,51.63829553397937],[5.38524500981413,51.638405416087174],[5.384877675640213,51.638642761207926],[5.384750519650307,51.63874385287298],[5.384623362624379,51.63885373518854],[5.384609233739853,51.63887131647527],[5.384531525894879,51.638946036547686],[5.384475010530618,51.63900757084989],[5.384437102501418,51.639046876886894],[5.384323354746891,51.639071017514304],[5.384220880520521,51.639232494162314],[5.384135884450471,51.63940454167242],[5.384072455633093,51.63957579867549],[5.383874556548338,51.64004142665538],[5.383818737419003,51.64023477753843],[5.383757832790303,51.640427337257826],[5.383699461353149,51.64073986700299],[5.383685487956467,51.6409860985517],[5.383728996154219,51.64144248368927],[5.383720965724529,51.64161429931206],[5.383711733166507,51.641630127860324],[5.38369063840651,51.6416663240896],[5.383610665847003,51.64180348681895],[5.38359029335564,51.64183843364434],[5.383571265179083,51.64186289987424],[5.383397467081501,51.64209492463397],[5.383233794835909,51.64230084563235],[5.382887494677322,51.642736527223235],[5.382508430656408,51.64320982239856],[5.382443468099837,51.64329092340604],[5.382149138922432,51.64366578726063],[5.382141523892622,51.64367792146236],[5.382128836982973,51.643698145130955],[5.382014687663697,51.64383973665202],[5.381908080223695,51.643971980316294],[5.381014041162437,51.64510534673762],[5.380924837992315,51.64521983691082],[5.380309868442234,51.64600911423517],[5.380060650147898,51.64631786468107],[5.380073133520525,51.64631663399593],[5.380129221998135,51.646311109373926],[5.380096360035915,51.64635627479847],[5.380036167918732,51.646363785624644],[5.380024522489653,51.64636524106937],[5.379944275927426,51.64637526743337],[5.379163331113315,51.64733546222971],[5.379137722963351,51.64736693833698],[5.379049842802215,51.64747497450533],[5.378984333437477,51.647555525223034],[5.378808050962157,51.64777226237305],[5.378720704282959,51.647877817493494],[5.378499922291264,51.64814476991727],[5.378451286311117,51.648219981251295],[5.378281941656184,51.64848184164557],[5.37821253751411,51.648589159472614],[5.378167974315899,51.64867791782998],[5.378019103228882,51.64906209416114],[5.377975889227589,51.64917361936536],[5.377669236115245,51.64996491942326],[5.377655241721866,51.65000101623111],[5.376946587199711,51.65182955630806],[5.376885558926635,51.651987012037225],[5.376856150693698,51.65206289062231],[5.376899285063675,51.6521219220194],[5.376762414315508,51.652378999909146],[5.376652695739009,51.65256476508052],[5.375512941401318,51.65427194786642],[5.375349414820505,51.65450687370061],[5.374620191886925,51.65554313945226],[5.37416047278883,51.65620930113437],[5.374130054725797,51.65625335952277],[5.37397923793391,51.65646432139903],[5.373906955934999,51.6565511064866],[5.373869904079292,51.656595577533594],[5.373609759235198,51.65690496887279],[5.373398633548292,51.65710889402942],[5.373330780132812,51.65716748227831],[5.373051783310939,51.65747688812883],[5.37282260186533,51.65772791891861],[5.372655914966943,51.65791050037041],[5.372535265478803,51.65801831178627],[5.372361846996293,51.65818473061905],[5.372199781733872,51.65832155143227],[5.372056464976303,51.658442545635125],[5.37183402280536,51.65864886642698],[5.371855686230866,51.65864951641243],[5.371956213785915,51.658652522585946],[5.371889965718243,51.658738327438975],[5.37203837145393,51.658746777783286],[5.372405375318995,51.658768702297884],[5.373128705761354,51.65880682091875],[5.373685351648255,51.65882781101863],[5.374820049866461,51.658865021597165],[5.37514883412511,51.65887171594847],[5.375179039208302,51.65887125160953],[5.375739127044564,51.658889841344454],[5.375955415241822,51.65890020781019],[5.376375303089684,51.658920327168005],[5.377282136964316,51.65896509718755],[5.377595632120658,51.65897083060741],[5.377896902745979,51.65896703440194],[5.378700793688209,51.65894687923959],[5.378767057138519,51.65894522106437],[5.379124157304838,51.658934971874196],[5.379353670575901,51.65894322065158],[5.379640716120222,51.65896285209593],[5.379856831433315,51.658977626952215],[5.379926793629402,51.65898241086931],[5.380117213431124,51.65899542867226],[5.380439400196669,51.65906407463195],[5.380708622479554,51.659118991381796],[5.381529530521833,51.659291963033965],[5.382540823087672,51.659487200959596],[5.382553483087478,51.65948964632275],[5.382537566477774,51.65953584670435],[5.382532113196663,51.65958353958125],[5.382447477338021,51.66032413637388],[5.38238561540738,51.66093352855326],[5.38236201746101,51.66119734962277],[5.382354679557516,51.66127940551442],[5.382323469878808,51.66189084820968],[5.382314881649277,51.66205899606647],[5.382314867616873,51.66219350024473],[5.382328201870351,51.662251611548356],[5.382332506979123,51.66227036176917],[5.382381053136849,51.662432318819015],[5.382513956687482,51.662664326651914],[5.38251785840952,51.66267114908723],[5.382654670973975,51.66284957635581],[5.383241705054021,51.66325861033912],[5.384314271579632,51.66400253881558],[5.384420196769852,51.66411508644149],[5.384389288424063,51.66421939747343],[5.38418621093887,51.66469428295059],[5.384146485929169,51.66477938524013],[5.384058194086552,51.66488094426079],[5.384038780865968,51.664902489236134],[5.383996383945042,51.664949569985126],[5.383590259469733,51.66524876841901],[5.383449019423932,51.66535404664938],[5.383439652462417,51.66536206411707],[5.38353353255686,51.6653617703443],[5.383550761926629,51.66536234612378],[5.383902836673195,51.66537417598003],[5.385722388723333,51.66543528753095],[5.385650381728329,51.66577700306177],[5.385628364517212,51.665881449336915],[5.385631846254233,51.665938319709475],[5.385652606831732,51.66627751053028],[5.38565675437459,51.666306947962894],[5.385657534748894,51.666312493885286],[5.38575622930569,51.66634207620736],[5.386124804761814,51.66635873537977],[5.386262223893943,51.66636078575248],[5.386490663210951,51.666361056699195],[5.386642074290956,51.66636963235179],[5.386687432191406,51.66642245799316],[5.386806550540778,51.66672680037923],[5.386817015280964,51.666812946314366],[5.386914627559842,51.66685197458416],[5.38703968947237,51.66689060728068],[5.387133587286137,51.66694631804865],[5.387201799370701,51.66702838310118],[5.38720778365947,51.66703558289191],[5.387201799463368,51.66705401834146],[5.387183153023909,51.66711144597808],[5.387082316666937,51.66719831105229],[5.38692027824523,51.667272583086316],[5.386989516406772,51.66765404664116],[5.387139920137629,51.66769703866413],[5.387149272498242,51.667699717232445],[5.387201802125224,51.66779039328805],[5.38720842254993,51.66780181767837],[5.387201802176823,51.667804667046305],[5.387096828316369,51.66784979734489],[5.386464882952066,51.66812147487283],[5.385812212327509,51.668452328008044],[5.385703637203733,51.66852581689611],[5.385670445064231,51.66862383623737],[5.385695256535583,51.668899882714335],[5.385715056176863,51.66904252163266],[5.385705148968161,51.66922154570586],[5.385898965506217,51.669300529802776],[5.385902028982814,51.66934362974491],[5.385922973931995,51.66938577707623],[5.38592960867522,51.66939914305567],[5.38575842294497,51.66953178477094],[5.385403182610914,51.66980701754811],[5.385148321680666,51.670004482307924],[5.385081967949002,51.670053513544545],[5.384701392549294,51.67033473010024],[5.384619915606303,51.67041119370459],[5.384639068579196,51.67042981829238],[5.384543409149561,51.670524824848236],[5.384481073149836,51.67056645828328],[5.384338650486462,51.67062425120727],[5.38424292054675,51.67067373969833],[5.383948368769865,51.67086063038714],[5.383765912478641,51.67096560223842],[5.383641276465527,51.67091784273467],[5.383484746554638,51.67092486710312],[5.383426906248492,51.670948909597556],[5.38304100752072,51.671231648613926],[5.382105371025323,51.671854193052816],[5.381785354834172,51.67208199289597],[5.381656246153199,51.67219512539468],[5.381513598048003,51.672251800287505],[5.381355038742286,51.672263235069806],[5.381175025837774,51.672276214588464],[5.381033623767086,51.67230545602943],[5.380834243914119,51.6723879691333],[5.380750187240673,51.67243742841254],[5.380565663837344,51.67254599954154],[5.380541978166293,51.672587264472774],[5.380468689578023,51.67264595534429],[5.380418703532601,51.67271304275632],[5.380430341550981,51.67280869013215],[5.380459971572511,51.67284981422663],[5.380794837912443,51.673314628320156],[5.38077454624799,51.673378571481734],[5.380761846963252,51.67342359423764],[5.380598377810495,51.67356967557752],[5.380381656566847,51.67366075299332],[5.380424968558389,51.6736658968742],[5.379991092699079,51.673829893848996],[5.379757310233548,51.67391826353793],[5.379637873272746,51.6739683310243],[5.379581601364611,51.674001342241546],[5.379443190583887,51.674086247773246],[5.3794306656308,51.67411716742516],[5.379419196455267,51.67414551643121],[5.379395592600589,51.674204803086425],[5.379322683847533,51.674301029261954],[5.379183285848017,51.674484987765915],[5.379115255721318,51.67460048437202],[5.379097240352508,51.6746310631753],[5.379008660630523,51.67488943175909],[5.379002641490839,51.674906985899476],[5.378996040429942,51.675036473871124],[5.378993254901626,51.675091195706926],[5.379054496877614,51.67516864486997],[5.37912591195859,51.67519250521375],[5.379203384395924,51.67521838833336],[5.379543865072535,51.6752454300724],[5.379650022737226,51.67526229026867],[5.379824076217341,51.67543602198148],[5.379743939633236,51.675520032582504],[5.379800593902436,51.675638450676125],[5.379905075856143,51.67575634021918],[5.379963558884581,51.67582232951216],[5.380108954388249,51.67584878239124],[5.380062325279659,51.67587143065672],[5.380069104952049,51.6758774353823],[5.380047807294347,51.675888211330985],[5.380019516007878,51.67587418756957],[5.379996385689018,51.67586272583589],[5.379956239453628,51.67589352252927],[5.379971975083516,51.6759027142271],[5.379862633359441,51.67598821523122],[5.379804535459116,51.67603364855198],[5.379789934444397,51.67602630403991],[5.379722944134588,51.67607697706789],[5.379705910412197,51.676093245197436],[5.379695441982799,51.67610003985152],[5.379601052459781,51.67616134448987],[5.379156700181085,51.676388751572496],[5.378799528074619,51.6765936469256],[5.378607621918486,51.676703741327884],[5.378457694189141,51.67678975155238],[5.378365745040395,51.676850489093844],[5.378266498114336,51.67696669407929],[5.378138711896287,51.677076739687806],[5.377974581401167,51.67716823906296],[5.377832485935404,51.67725142557518],[5.377533987611464,51.677381366511426],[5.377475191478205,51.677427364889425],[5.377418597216674,51.677520849686836],[5.377381359556475,51.67755870620148],[5.377313755616739,51.67761600232064],[5.377252834174522,51.67765938475468],[5.377151627531942,51.67772420134447],[5.377057970827757,51.67777514023989],[5.376931479817036,51.67782407179413],[5.376614732554922,51.6779379014042],[5.376472424663556,51.67822867573519],[5.376463129914095,51.67828221042381],[5.376484949346492,51.67833645801168],[5.376423650624235,51.67843976633019],[5.376176577958115,51.67859276395319],[5.375855455071409,51.67877273749032],[5.375812898213208,51.67879499794047],[5.375483229369653,51.67896741030262],[5.374986430439318,51.679196108632446],[5.374452486902249,51.67940750698377],[5.374090823243601,51.67953783679206],[5.374005885365289,51.67956308506113],[5.373527173626105,51.67969908077387],[5.373194193848724,51.67977967997939],[5.372791685880093,51.6798771097575],[5.372742999950484,51.67988662264752],[5.372413939216459,51.679950903732724],[5.372391390788016,51.67988336130852],[5.371076102755716,51.68007645117616],[5.37093828771698,51.68009668340285],[5.370771739357846,51.68012113382794],[5.370419257043098,51.680172878325465],[5.370351831368054,51.68018277406535],[5.370221607042859,51.68020189195558],[5.370222823018967,51.68027587649007],[5.369762649124363,51.68035869247615],[5.369334060716235,51.680419363764656],[5.368816523945892,51.68050408189507],[5.368382232643643,51.68053787319116],[5.36811322116289,51.68050515681668],[5.368012962246739,51.68050493383362],[5.367932859218128,51.68050475899782],[5.36773975080977,51.68052323465474],[5.367671067509002,51.680529811886274],[5.367704083302189,51.680685489203675],[5.367705699464895,51.6806931117199],[5.367704301052279,51.68071730853538],[5.367696819541002,51.680731697890856],[5.367720760409608,51.68080746592274],[5.36737878056135,51.68085620757893],[5.367163331177451,51.680874327980035],[5.364880359390702,51.6811996615062],[5.358566749897762,51.68209858704519],[5.358348665686117,51.68212963515025],[5.358282722301339,51.68213902656408],[5.357435153663,51.682259764616646],[5.351225701673135,51.6831441254837],[5.351204692163448,51.68299716606893],[5.35118736405648,51.682876004771074],[5.348309283322684,51.6832833818508],[5.34816259838827,51.68330414162082],[5.347809140421328,51.68335326274229],[5.346908405564775,51.68347842798628],[5.346744105229857,51.68350125628442],[5.346699199212965,51.68328283825093],[5.346524186412894,51.68243167469813],[5.346450059661037,51.68216492424982],[5.346399122184224,51.681983815249495],[5.346305183368171,51.68170557051461],[5.346231583407596,51.68151479989632],[5.346171166932164,51.681372509943806],[5.346123051172802,51.681259191951405],[5.34608625330099,51.68117819268502],[5.345912342356473,51.680854473747466],[5.345663935767827,51.68047306699692],[5.345571396316482,51.68033284058492],[5.345363310660119,51.68005712527842],[5.34502617023078,51.67965459849747],[5.34469951063378,51.679322094962544],[5.344515203611591,51.679155390301396],[5.344346149340607,51.678991216679066],[5.34421369648558,51.67888212876705],[5.344098999881014,51.67878766252481],[5.343894861624349,51.67861952941918],[5.343826561110476,51.67857288086026],[5.343501185576395,51.67835065437992],[5.343088410727784,51.678100889391075],[5.342920316753165,51.677999175172225],[5.342424346970262,51.67774393840884],[5.342106143445956,51.67760665213864],[5.341827828946753,51.67748657542156],[5.341739395055686,51.67745330961256],[5.341240215989263,51.67726553542192],[5.340619689238652,51.67705742287123],[5.340103389161487,51.676910731361296],[5.339769316516007,51.67682195231937],[5.339617912506027,51.67678171247423],[5.339641529687515,51.676705526469796],[5.339650625484063,51.67667617369],[5.339429478022339,51.676621784408695],[5.339035091180732,51.67654645249879],[5.338781481064061,51.67649801704685],[5.338385938980416,51.67643685734753],[5.337902721127955,51.67636715642244],[5.337756040579422,51.676346978496056],[5.337592230335792,51.676324456141195],[5.337015993750349,51.67625510772898],[5.335834242324831,51.67610965832464],[5.335558082205877,51.67607566740703],[5.335252390103199,51.67603772693686],[5.334525472047114,51.67594101939981],[5.333803227405867,51.67584386903583],[5.333102041264753,51.67570592508197],[5.332378324443309,51.67560037896795],[5.332048596230382,51.67556178970996],[5.331727410516417,51.675572496535544],[5.331413796737904,51.67562144318955],[5.331097512494491,51.67568985683532],[5.331001918295662,51.675714143012385],[5.33077075635822,51.67577286193071],[5.330420105041549,51.67585237600878],[5.330047566967897,51.67591782035919],[5.329668416029701,51.67596413274004],[5.329488505247443,51.675975864333644],[5.329371432344936,51.67598349190392],[5.329278621278438,51.67598954036279],[5.329162885486532,51.67599163033995],[5.328886261717816,51.67599662683565],[5.328562265974533,51.67598604778611],[5.328504915084354,51.67598417648446],[5.328138754089619,51.67596792140416],[5.328133808611902,51.67596867395084],[5.326896667017277,51.6761573699412],[5.326524168983615,51.676111489424216],[5.326459024626141,51.676099357204926],[5.326354009696483,51.67598753971784],[5.326214981927412,51.67583950774947],[5.326103731490627,51.67572105327624],[5.325970006286071,51.67557670007193],[5.325959409939548,51.67556526116216],[5.325815725824087,51.675409235499586],[5.325643792216074,51.675221815964946],[5.325584296900054,51.675149705902264],[5.325555839403828,51.67508987243739],[5.32555583541198,51.67507152688924],[5.32557062001667,51.67493699465449],[5.32558979263333,51.674775598066276],[5.325603289190647,51.67457801974533],[5.325607180023189,51.674470141700894],[5.325621989347864,51.67428517493933],[5.325627312908083,51.67421877062492],[5.325632963471715,51.67412444817111],[5.325619977828274,51.674062924000964],[5.325565054535804,51.67399993965528],[5.325485996613674,51.674005246281716],[5.325398662007679,51.67400528123093],[5.325306423809302,51.674017879466],[5.325123138616518,51.67404934133919],[5.324996090722912,51.674070370115004],[5.324903522212668,51.674081188132725],[5.324723618884483,51.674092040522886],[5.324523504316134,51.67411355120731],[5.324349829578359,51.67411552570137],[5.324227484045123,51.67412298351158],[5.324090109817819,51.67412566920458],[5.32394513764603,51.674123721559695],[5.323841703815287,51.67411937825511],[5.323714099701014,51.67410340863428],[5.323559296946092,51.674080781622095],[5.32327834181506,51.67403823914237],[5.322717086191864,51.67395139975949],[5.322254945528676,51.673877367265476],[5.322184802096209,51.67390652311195],[5.322116806267082,51.674081231046316],[5.322087604439488,51.67415083984614],[5.322048376240251,51.674255911731905],[5.322039850701686,51.674283241056756],[5.322013693184165,51.674367008429314],[5.321989712714551,51.67446492491882],[5.321948283630522,51.674652429163764],[5.321920254388949,51.6747406178185],[5.321903566877971,51.67479355085481],[5.321827169212686,51.67495804298613],[5.32179705325159,51.675009197789855],[5.321748782202683,51.67506804561505],[5.321690885219199,51.675124973495464],[5.321658740250871,51.67514936833966],[5.321376375515832,51.67537751844498],[5.321201824963184,51.675520948928],[5.321059738498684,51.67567865322244],[5.320933985694198,51.675788502758834],[5.32091907185219,51.67580395457183],[5.320918784417346,51.675842362305445],[5.320989438381107,51.67586225779909],[5.32117555085807,51.67591175449437],[5.32144356854101,51.675979462583896],[5.321603264033836,51.67602165411537],[5.321710413572192,51.676048823290344],[5.32195308018903,51.67611233640809],[5.321976969687364,51.67611858771012],[5.322075762245901,51.67614639009019],[5.322128308732833,51.67616141206468],[5.322390472678883,51.67627049782829],[5.322527537064722,51.676327533602354],[5.322630607060053,51.676357333318826],[5.323544719349544,51.677124237679195],[5.323575972849695,51.677117225611035],[5.323587042762504,51.67711040034535],[5.323713257995684,51.67702843843862],[5.323737372243729,51.67701277889279],[5.324440207226977,51.676556367574],[5.32471115309299,51.67637284994801],[5.325505969318924,51.676211369359315],[5.325557725329094,51.67621318526103],[5.326296224346295,51.67638482875323],[5.326762738320252,51.676987911042474],[5.326855154017927,51.67720485124934],[5.326918894923043,51.67722991698665],[5.326970542752617,51.67723790731169],[5.326990730012626,51.677289457763244],[5.32698699088377,51.67733979148209],[5.326907948946474,51.67742673269291],[5.326809820288656,51.67754756867898],[5.326801742925394,51.67758747349174],[5.326777559537762,51.67765969268399],[5.326774267531132,51.67769977972738],[5.326771049102249,51.677738896049675],[5.326767889613778,51.67777717647102],[5.326765303075462,51.67780863491097],[5.326742259204426,51.6778284786562],[5.326711478322637,51.67782802236402],[5.326446031210883,51.67782407529203],[5.326319625775602,51.677822195253846],[5.32350317139517,51.6777802862414],[5.323063724360987,51.67777374601292],[5.321109194219797,51.67773527856143],[5.321088563028222,51.677734862459694],[5.320123032280527,51.67771544101551],[5.319962406952669,51.677712209870734],[5.319191346985815,51.67769728512268],[5.319073458432809,51.67769514939444],[5.318445991924496,51.67768379953081],[5.318127284415765,51.6773463186624],[5.317996329663274,51.67720960721642],[5.317887720975992,51.67709621602133],[5.317832220699389,51.677055896739176],[5.317735075756473,51.6770288827446],[5.317590659226775,51.67698871741913],[5.317418029451674,51.677018312926535],[5.316996770312374,51.67709195620105],[5.316677019443882,51.67714689998974],[5.316311926132688,51.677211990514756],[5.31609368053828,51.67725024839262],[5.315718348198459,51.677325191254816],[5.315156225680798,51.677439882416515],[5.315044564810027,51.677459951438315],[5.314911438275254,51.67748388342606],[5.314688907806982,51.677523879816185],[5.314016715505396,51.677644393901716],[5.313360469798367,51.677763179382076],[5.312699505474788,51.67788305478643],[5.312456119908859,51.67795083514271],[5.312378953361062,51.67798768378479],[5.312266885816209,51.678041210739394],[5.312248154265433,51.678054861306585],[5.312020378374482,51.678220796233816],[5.311634811093115,51.678615638378496],[5.311380530765658,51.67877109236085],[5.31106893403609,51.67896158176687],[5.310756263438293,51.67910138345513],[5.310459377502949,51.67923396787304],[5.310079489345018,51.67943054910574],[5.309846048655597,51.679645310616216],[5.309812505450791,51.67970500026531],[5.309791893268074,51.679741684490736],[5.309752316710715,51.6798121114059],[5.30974650435793,51.67995595961345],[5.309747922100931,51.680048623052805],[5.309759357512638,51.680523664116045],[5.309770250553665,51.68092695855355],[5.309776476803894,51.681065763150755],[5.309776741522283,51.68107162383043],[5.30977541781736,51.68109319536797],[5.309758316682151,51.68120083041254],[5.3096307976437,51.68159122478495],[5.309534018795405,51.68179505599211],[5.309412697604288,51.682052641201125],[5.30940504774517,51.68206888622067],[5.309201749906052,51.682352689097684],[5.309051893700021,51.68256039459717],[5.309003699744155,51.682627326838876],[5.308941023736176,51.68271652291325],[5.308889867713738,51.68278932262416],[5.308750363270051,51.68298786636534],[5.308698103964426,51.683112923285314],[5.308695561144065,51.683119006800524],[5.30863516119385,51.683263538576696],[5.308623196562891,51.68329218591162],[5.308594189642003,51.68339243323023],[5.308589985561745,51.683406937857],[5.308527898049842,51.683621514719505],[5.308522870561498,51.683777183220776],[5.308522625411659,51.6837851288924],[5.308522090998353,51.68380144266567],[5.308553681804527,51.68389574424362],[5.308610807640867,51.68395768633284],[5.308648405702053,51.68399845638872],[5.308651985148558,51.68401169884845],[5.30867422878161,51.684093984372],[5.308679088832451,51.68411194777487],[5.30867345387887,51.6841218583216],[5.308660405811911,51.68414141755745],[5.308662916704192,51.684145453951906],[5.308683640617518,51.68417640736814],[5.308889370291842,51.684483798805445],[5.30922367996578,51.68471833369735],[5.309184372660252,51.68475424359851],[5.309021321240015,51.68491118217307],[5.308892357028911,51.68498154805184],[5.308836829697827,51.68499775320398],[5.308230384114451,51.68497385967959],[5.308193103232978,51.684983173636205],[5.308089345846133,51.68500171891396],[5.308017221644175,51.6850155844648],[5.307999849763172,51.68501835018742],[5.307987902081723,51.68502024768469],[5.30790138655211,51.68501933534059],[5.30781053981482,51.6850185907837],[5.307668531370323,51.68501812608746],[5.307315792809687,51.68501206866143],[5.307284282491232,51.685004382259976],[5.30715014346685,51.68497363104508],[5.307065772143154,51.68495514477907],[5.306968836003449,51.68493390387415],[5.306912417810162,51.68492204540364],[5.306839781055676,51.684906778145674],[5.306772218064882,51.68489258395226],[5.306667934024112,51.68487363657031],[5.3066565418757,51.68487212654747],[5.306574396987206,51.684861240109825],[5.306535838841054,51.684856827219555],[5.306434925524395,51.68484528847247],[5.30640621494975,51.68484088231759],[5.306400637777587,51.68483934031977],[5.306375227038537,51.684832321899194],[5.306343275036744,51.68482110021177],[5.306240546120651,51.684781749622005],[5.306192209109877,51.68476323590014],[5.306005316908307,51.68469384132429],[5.305932641545137,51.6846682198458],[5.305510420850001,51.68451936355953],[5.30548563712633,51.68451062745467],[5.305217230676953,51.684418246274134],[5.305152591826387,51.68439599836673],[5.305161124962645,51.684384147375845],[5.305163362577693,51.68438021534721],[5.305164805552642,51.68437690858737],[5.305165776496837,51.68437374756063],[5.305166572913151,51.684369143757294],[5.305166629586653,51.68436379563818],[5.305165807083504,51.68435884239843],[5.305164532811269,51.68435482477063],[5.305162986201652,51.68435147434868],[5.305160863398099,51.68434789768768],[5.305158517550645,51.684344717488315],[5.305155542938528,51.6843413952803],[5.305151623536627,51.68433776904961],[5.30514782943227,51.684334822661874],[5.305143754676962,51.684332143485676],[5.305137938407302,51.68432894063461],[5.305131422121359,51.684326014813664],[5.305125070967655,51.68432373066213],[5.305119029741665,51.68432198154298],[5.305112373471289,51.68432049940114],[5.305106226099116,51.6843194737815],[5.305100231706081,51.68431881342644],[5.305094048841593,51.684318422594245],[5.305089174076302,51.684318338286275],[5.305083239643871,51.684318503791],[5.305077266764756,51.68431893892354],[5.305071803179871,51.68431961148401],[5.305064697259159,51.68432088849485],[5.305057301184323,51.684322688882396],[5.305052703882283,51.68432409685852],[5.305047863694756,51.68432587768722],[5.305041651665052,51.684328613707024],[5.30503595962542,51.6843316691825],[5.30503118392835,51.68433476687123],[5.305027225332861,51.68433781120104],[5.305023528152831,51.68434122873665],[5.305020159340239,51.68434497907673],[5.305017598860733,51.68434852774159],[5.30500939038214,51.684364735002355],[5.304779389855518,51.684346221382576],[5.30471871958906,51.6843434417481],[5.304640456144888,51.684337932928955],[5.304548285524278,51.68433144799734],[5.3045301528652,51.684330170090576],[5.304253568433382,51.68429218721596],[5.30421734054551,51.68428698422087],[5.304007794348778,51.68425687714672],[5.303818664013921,51.68422800664479],[5.303607036997217,51.684197403006536],[5.303591149303506,51.684195180513946],[5.303393182147669,51.68416747265551],[5.303353860526718,51.68416196943898],[5.303218822638348,51.68414306890796],[5.303303956759674,51.68386589743219],[5.3033061680696,51.68385867225726],[5.302780540978617,51.683696502166526],[5.302213020990896,51.683537526244436],[5.302131911160709,51.68365501910259],[5.302024538291361,51.683820329651375],[5.301926510478172,51.683960146509904],[5.301760617161187,51.684224404641114],[5.301787104783606,51.684249304103076],[5.301922401460579,51.68437646399647],[5.301957521259832,51.684409477322816],[5.301967784400395,51.68441912045385],[5.301869086829271,51.68457595200489],[5.301681145959973,51.68465243315087],[5.301491147478392,51.68473081805423],[5.30094436093955,51.684956379270346],[5.300557299186887,51.685090703610186],[5.300526796179393,51.68510128863459],[5.300460549671199,51.68512262444303],[5.300438724368025,51.68512868453154],[5.300416063810915,51.685136712480045],[5.300394068876903,51.68514450721565],[5.300284602019138,51.6850920411783],[5.299705155694725,51.684814324155234],[5.299211066514,51.68466061076567],[5.298731291804875,51.68451666759694],[5.29858192908528,51.68446588667331],[5.298436788337108,51.68442288380814],[5.298320443793414,51.684390906758004],[5.29829203017063,51.68438310006029],[5.29794651680132,51.68428814269057],[5.29795229937076,51.684238431680534],[5.297951999322839,51.68423384057442],[5.297950823079911,51.68422901734772],[5.297949240119318,51.68422512412161],[5.297947647906779,51.68422225782491],[5.29794567610934,51.68421939348655],[5.297943324669546,51.68421656031901],[5.297940579087429,51.68421377853544],[5.297937450141829,51.68421108185085],[5.29793297194784,51.68420788977184],[5.297927965523043,51.68420491750898],[5.297923004990306,51.68420250593871],[5.297915830964349,51.684199724154944],[5.297910131649668,51.684197978294605],[5.297904202075736,51.684196589551746],[5.297898148944022,51.68419552879483],[5.29789203544919,51.68419483090247],[5.297885935763865,51.684194463347794],[5.297880585562082,51.68419442107312],[5.297874070627143,51.68419472621586],[5.297867786408857,51.68419535961423],[5.297862987755401,51.6841961064999],[5.297856257237648,51.68419757548858],[5.297848111346908,51.684200000674345],[5.297841403798838,51.68420265391494],[5.297792887767956,51.68422380284996],[5.297296629501352,51.68401102524784],[5.297292313122035,51.68400921187989],[5.296916934405123,51.68385126860106],[5.296873736670036,51.683833094299686],[5.296563048618483,51.68370104050047],[5.296323165676609,51.68360967552681],[5.29605788322649,51.68350105936662],[5.296003832852969,51.68347893260462],[5.296093733594619,51.683254469635216],[5.296112938562023,51.6832039152261],[5.296268668143719,51.6827940029578],[5.295804831800933,51.682569428730105],[5.295511082065766,51.68242681258427],[5.295412037194312,51.682410636711204],[5.295107259393816,51.68246613441981],[5.295054436698444,51.682475758949856],[5.295000190647885,51.68248491830575],[5.294776045609092,51.682523059904796],[5.294705120362311,51.682523273654134],[5.294540710164512,51.68253910747934],[5.294453286611894,51.68254273715686],[5.294318755536139,51.68252235713467],[5.294317316627685,51.68251361916859],[5.294197798437549,51.68252496683366],[5.294181000985184,51.68252795342776],[5.294188675410925,51.68255969118258],[5.293477702590496,51.682701206554725],[5.293423815715937,51.68269897029052],[5.29327371357121,51.68271770807378],[5.293208811673771,51.68273478817496],[5.293140646275886,51.682735785188235],[5.293136995456151,51.68263462562744],[5.293186978622567,51.68234208087413],[5.293191969940204,51.682312872232956],[5.293230001203624,51.68209025743289],[5.293253580004349,51.68202278163377],[5.293297581105429,51.681896798021555],[5.293406080486028,51.68189906005063],[5.293455645612073,51.681893050410274],[5.293808096794319,51.681850465382354],[5.293944037890247,51.68183978733421],[5.293985977702203,51.681836225268675],[5.294003175650956,51.68191084352958],[5.294152958111291,51.68189142143133],[5.294604693689394,51.681831609849645],[5.294592769396337,51.68175142296735],[5.294590534676758,51.6816774727681],[5.294612412735947,51.681500038961346],[5.294647298918647,51.6813675849069],[5.294867760439751,51.680799631140616],[5.29497988230901,51.680563205900825],[5.294998743726002,51.68052343647505],[5.295031535627809,51.680417379892134],[5.295027544031894,51.680353828013544],[5.295005037578152,51.68027968211071],[5.294967842810697,51.680183278099676],[5.294899577702386,51.680064728914935],[5.294793937322087,51.67988207118298],[5.294725459459825,51.679769031679996],[5.294617114066726,51.6796018139055],[5.294498069652537,51.6794418502862],[5.294363256607183,51.67920182241319],[5.294274231834757,51.67907630830098],[5.294181471609036,51.67896058863061],[5.294059017796151,51.678793790582965],[5.29404078564087,51.6787586040708],[5.294034418443111,51.67874631172274],[5.293965639634939,51.67861351478037],[5.293869237100862,51.678350578168605],[5.29383369832528,51.67821725928933],[5.293852255584662,51.678080343117585],[5.293851211339702,51.67799064595657],[5.294087958618596,51.67744478221243],[5.293877248234494,51.67753443579614],[5.293825690637245,51.67755637279072],[5.293617877540635,51.677643656370925],[5.293615458614815,51.677640543293116],[5.293611654007028,51.67763631678159],[5.293608292523106,51.67763279959216],[5.293604974460426,51.677629259966004],[5.293602529313601,51.67762659292178],[5.293600113111116,51.67762391241782],[5.293597740301797,51.677621222959964],[5.293595381978705,51.67761852003081],[5.293593052590666,51.67761580813624],[5.293590781063162,51.67761308280498],[5.293588524012596,51.67761034849677],[5.293586000229893,51.67760725443524],[5.293583548812289,51.67760412447738],[5.293581097376461,51.67760100350793],[5.293578732763819,51.67759784665374],[5.293576368132943,51.67759469878795],[5.293574090325234,51.67759151503743],[5.293571812499279,51.677588340275314],[5.293569621477912,51.67758513861698],[5.293567430438287,51.67758194594706],[5.293565326221795,51.67757871739236],[5.293563221987033,51.67757549782616],[5.293561190080161,51.67757226034059],[5.293559172650233,51.67756901387806],[5.293557242006266,51.67756574950777],[5.293555311344008,51.67756249412594],[5.293553467486251,51.67755921184788],[5.293714912284186,51.6775425051618],[5.293756870042029,51.67739504614669],[5.293827749875426,51.677364722556824],[5.293872799379585,51.67734539379179],[5.293876498973026,51.677342691194205],[5.2938788151622,51.67733776958103],[5.293877693042008,51.67733329016335],[5.293873388979477,51.67732938123131],[5.29386598637545,51.67732679114428],[5.293858651199448,51.677326562841344],[5.29385329924082,51.67732776978363],[5.293677332936578,51.67719342441464],[5.293591952331025,51.677217409554316],[5.293455137775664,51.677013926260365],[5.293473053600769,51.677012745106985],[5.293527989102566,51.67698700994849],[5.293518121805098,51.67688544988295],[5.293496440274172,51.67679894512015],[5.293270474148712,51.676849774164864],[5.293194217996589,51.67686626091632],[5.293156543433224,51.676690730054936],[5.293118153194786,51.67651186386686],[5.293113656927281,51.676490917030996],[5.293003435172003,51.67634969995725],[5.292943465238293,51.67627287192059],[5.29288802274845,51.676229835304554],[5.292851013036021,51.67620110522361],[5.292811152004488,51.67615308349241],[5.29275273544743,51.67608733944011],[5.292699091943756,51.67603456962516],[5.292645434126326,51.67598179078526],[5.292592993434343,51.67593471161808],[5.292398136397172,51.67575382228307],[5.292359753906752,51.67571818775891],[5.292308471947767,51.67567728450692],[5.292188530538678,51.6755816215511],[5.291956464065556,51.675407217993715],[5.291493444498909,51.6750540240019],[5.291459582187922,51.675028199334555],[5.291426629280334,51.67500305852683],[5.291316884424853,51.674920813855856],[5.290162117196947,51.6756942153503],[5.289477454520462,51.674942216248496],[5.289361350904258,51.67481366461683],[5.289308533278736,51.67483622664868],[5.289091138923927,51.674903404892625],[5.289003455833431,51.67492333094533],[5.288670477885947,51.67508875488035],[5.288417605914869,51.67521432738855],[5.288386226342181,51.67522421528112],[5.288378458185587,51.67522630305875],[5.288371572749071,51.67522801406219],[5.288363675043421,51.67522984106279],[5.288357498838689,51.67523117514568],[5.288351308391857,51.67523241034255],[5.288346492117417,51.675233314122536],[5.28834140115328,51.675234217670784],[5.288332174114765,51.675235701985216],[5.288321848396003,51.67523714941849],[5.28829670156583,51.67523965398516],[5.288283818679957,51.67524028130387],[5.288276459068039,51.6752406526135],[5.28826953333326,51.6752409523806],[5.288257446797343,51.67524103206896],[5.288249394311694,51.67524090842417],[5.288243756320286,51.675240732885165],[5.288236513877706,51.67524041217574],[5.288227696094992,51.67523985643506],[5.288221307048096,51.675239347686166],[5.288212620284753,51.67523837858336],[5.28820445384872,51.67523747283876],[5.288195391470025,51.675236377578464],[5.288171675708719,51.67523235766672],[5.288161401153936,51.67523023668983],[5.288151734122637,51.675227972408955],[5.288144401166939,51.67522606963927],[5.288133297616193,51.675222896303765],[5.288125770489938,51.67522053495476],[5.288114590177135,51.675216103160956],[5.288109765965612,51.67521402273852],[5.28810329544577,51.675211104993124],[5.288096348660094,51.67520780932739],[5.288087597165462,51.67520338857204],[5.288080333676968,51.675199472430336],[5.288071511314087,51.67519440444095],[5.288064119127805,51.67518984101662],[5.288060250048582,51.67518732995097],[5.288056929758416,51.67518508900453],[5.288053537319571,51.67518278507741],[5.288048023271866,51.67517882547015],[5.288042624313528,51.675175126626854],[5.288030902389464,51.67516715289327],[5.288015776940279,51.67515533818542],[5.288010769593643,51.67515106440705],[5.288008042746887,51.67514850936319],[5.288003642766248,51.67514416419017],[5.287998984108792,51.6751391087057],[5.287993468970158,51.67513234917342],[5.28799044918344,51.675128225386],[5.287942729397734,51.675073633726285],[5.287847982386265,51.67496524192319],[5.28770530025009,51.67480203338833],[5.287540522406254,51.67462847809991],[5.287486503686768,51.67457895041888],[5.287426896823991,51.67453296842087],[5.287336373267534,51.674477252474645],[5.287277487234094,51.6744454369099],[5.287218037615947,51.6744135489268],[5.287092310300268,51.67435839601324],[5.286931825591521,51.67429801789019],[5.286815794167796,51.67425838714204],[5.286592601827954,51.674182153050886],[5.286369424677208,51.67410592753489],[5.286315130516167,51.67408358033684],[5.286266887366222,51.674057669882146],[5.286226479300304,51.6740255640801],[5.28619534792694,51.67398909783708],[5.286186484369286,51.67394432740601],[5.286199873263095,51.67390460970938],[5.286239169199127,51.673851800077735],[5.286294044741178,51.67380117007148],[5.286354894205751,51.673755533801824],[5.28641571497362,51.673709744671044],[5.28649202951718,51.673659186926336],[5.286567737422038,51.67360830502467],[5.28685798477239,51.67342017247208],[5.286899306082822,51.67339231646429],[5.286986349675581,51.6733206895079],[5.287084273521947,51.67321222785762],[5.287176211102408,51.673025471061706],[5.287215511341443,51.672825644965336],[5.287193627929996,51.67278456677188],[5.286888594618162,51.6724772046538],[5.286760383916293,51.67213615155729],[5.28608359635947,51.67189531589694],[5.286009283630534,51.6718532664384],[5.285780665590967,51.67169452949775],[5.285397449488125,51.67146085556453],[5.285364756144267,51.671348560615684],[5.285277372061119,51.671411431269256],[5.284844073985582,51.67115707434041],[5.284659696946421,51.671069526898734],[5.284502244500363,51.67098536445492],[5.284367686246978,51.67090963512941],[5.284054209048199,51.670718632468585],[5.283716524639112,51.6705133338373],[5.283470292791453,51.670370279747836],[5.282915890158266,51.67007824543324],[5.282632007435016,51.66991583975543],[5.282286224825691,51.66971723518652],[5.281664568415535,51.669378915762515],[5.281295896769178,51.66918029663707],[5.281091383063474,51.669068357486665],[5.280868023867779,51.66894885053223],[5.280578786867279,51.66877046239545],[5.280389069645268,51.66866862058395],[5.28016439969613,51.6685365091826],[5.27997873723471,51.66842627512752],[5.279635672774212,51.668231026878615],[5.278972380378447,51.66785735696235],[5.278340555172782,51.667506768042934],[5.27782492122225,51.66721264217215],[5.277537624363355,51.66704844116065],[5.274478397093446,51.66535425045567],[5.273618969045663,51.665386795316714],[5.273430429766779,51.665489809719595],[5.273036108868736,51.66550474281609],[5.271738559585757,51.66553485093782],[5.271568904623851,51.66553686792684],[5.270192908424243,51.665584391154724],[5.270018516569839,51.66561267462064],[5.26849156769014,51.66566659746951],[5.266717753962486,51.665729738811145],[5.264594647884786,51.66580809365455],[5.263988154256096,51.665830469460985],[5.263606216911474,51.66584456136349],[5.262327568607957,51.66589171948333],[5.26251923304653,51.666638195647856],[5.262580023434438,51.66673493185587],[5.262496365111274,51.66683810303371],[5.262101660012251,51.66690285823409],[5.261354577042749,51.667008986004305],[5.261064427240211,51.6670504168353],[5.260572213250815,51.66713337153218],[5.26050404722358,51.66715307262286],[5.260335078625887,51.667114086413875],[5.260249026204679,51.667017141912446],[5.258999058903615,51.66720366854764],[5.258713932105801,51.667292351713165],[5.25799772147365,51.667404711962526],[5.257229666345695,51.66751903277344],[5.256600935540286,51.66761935593148],[5.255771318306952,51.667735611997465],[5.254154140330938,51.667976234926044],[5.253983213340728,51.667950261697165],[5.253568072413689,51.667888685146124],[5.253496490932211,51.66799163895345],[5.253424583628994,51.66820976228851],[5.253375743568053,51.668296580608775],[5.253310856772009,51.668334905475746],[5.253093759280973,51.66835284106509],[5.253048476829032,51.668326524782486],[5.253045454187129,51.668253786195926],[5.253149454124621,51.66807460212924],[5.252836261779215,51.66812130742345],[5.252822263059405,51.66816726767027],[5.25277775600465,51.66819154856716],[5.252318564393574,51.66826292023442],[5.251740760176493,51.66834612579168],[5.250786936309682,51.6684850697369],[5.249988674875544,51.66860467404654],[5.248785096782982,51.668781177687855],[5.24735645952564,51.66899791192001],[5.246234383789496,51.66916226217254],[5.245118406935298,51.66931060050821],[5.244106699326749,51.669419524033415],[5.243474477590947,51.669477211800235],[5.24350016643479,51.669627216811165],[5.243488045069367,51.66968886321801],[5.243400585754417,51.66969432882854],[5.24338772720862,51.66962381606355],[5.243358845474121,51.66948702922695],[5.242492665394844,51.6695380514612],[5.241967261249859,51.669570362487384],[5.241296985946319,51.669583650949946],[5.240891060341441,51.66956083539286],[5.240687184525851,51.66955018996953],[5.239427929050457,51.66948442193766],[5.238803455198002,51.66945180452842],[5.238173172128508,51.669418879779144],[5.236917320449388,51.66935325984504],[5.236782922041916,51.6693462381708],[5.236520499130329,51.66933252389422],[5.236287126867161,51.66932032505365],[5.235775578526229,51.6692935895044],[5.235027291649305,51.669254481961815],[5.234938984237081,51.66924986401354],[5.229070762175474,51.66935607633985],[5.228574469591495,51.669361967243866],[5.227981790750898,51.66935460188094],[5.226843445537741,51.66933504572284],[5.226818292034165,51.669523168123796],[5.226795498124676,51.66957145924366],[5.226523849737498,51.66957123990878],[5.226484740443548,51.66948761995015],[5.225506583055507,51.66945347525752],[5.224581012541879,51.66945663484327],[5.224003769870715,51.669509943317856],[5.223523557506975,51.669485597799614],[5.223018611868532,51.669461350489364],[5.222680280786117,51.66944519100653],[5.222627246756639,51.66944825353461],[5.221943005273763,51.66942532263958],[5.221310122077573,51.66941107146959],[5.221262627520236,51.66947250372993],[5.221036593714596,51.669466502690476],[5.221035169616716,51.66937393681494],[5.221009308448689,51.66935824212645],[5.22101464498658,51.66927480919293],[5.22098337813508,51.669262891002376],[5.22050487895421,51.66924945658829],[5.219891277874749,51.669232474682815],[5.219178623504924,51.6692207137271],[5.21828514996376,51.669188535645894],[5.216771475139519,51.66915413803786],[5.216741757001628,51.66916122271501],[5.21671038972772,51.66914942008673],[5.215962586530916,51.6691440601478],[5.214842238185851,51.66911962269526],[5.21409306813389,51.669101413183554],[5.213424976674116,51.66908761566104],[5.212932722646837,51.6690847543355],[5.212432499602762,51.66907547023326],[5.212144713910526,51.66906984303836],[5.211840898456017,51.6690638990209],[5.21118763948953,51.6690500929482],[5.210540110771966,51.66903487168143],[5.210259159321492,51.669030178219884],[5.209797761684057,51.669021642585164],[5.209241645043497,51.66899658421554],[5.209237208683571,51.66896309520259],[5.208216183138908,51.66894801231132],[5.207980183374618,51.66891542770418],[5.207747099895666,51.66890210950836],[5.207202251185342,51.66859572667534],[5.207160674588494,51.66857107916732],[5.20705068532776,51.66851634074318],[5.206875812548236,51.6685291680434],[5.206817721125693,51.668575306644996],[5.206759949621485,51.66862093785828],[5.206401205706526,51.668658986112895],[5.206074622834957,51.66869738410307],[5.205304790193077,51.66877685465337],[5.20415714036111,51.668897994615655],[5.203805921211285,51.66893298608075],[5.202974551951001,51.66890382644136],[5.202477208777726,51.668898252542526],[5.202430973255925,51.66891066471317],[5.202431258537352,51.669039201166555],[5.202419555183191,51.66905911028561],[5.202339367454205,51.66905997254048],[5.202283102517224,51.66905751977471],[5.202267249103344,51.66903524813834],[5.202267425513569,51.66899203155628],[5.202258260383203,51.66897088505242],[5.202222927220724,51.6689506680011],[5.202184495549087,51.66893523693395],[5.202021469310927,51.668888886208606],[5.20200307006272,51.66887061040914],[5.202006215759037,51.668854292207115],[5.202015770625044,51.668776520553074],[5.200945219264759,51.66886894261766],[5.199009851941725,51.66882648038753],[5.196611050529516,51.66877362450002],[5.195339796365374,51.66862557595969],[5.195335063118755,51.66865438544761],[5.194588303170264,51.66864067515271],[5.194029428042875,51.66862823177976],[5.193731256268737,51.66862207478644],[5.193316195073026,51.66861349788072],[5.192700599305481,51.668600775642545],[5.191781335882082,51.66858276105415],[5.19087591099185,51.66856045692728],[5.190185314094478,51.668546390176324],[5.189341895863106,51.66852919403494],[5.188593870876532,51.668511443463395],[5.188094036777487,51.6684983976778],[5.187402299719043,51.668484321558346],[5.186789857643076,51.66847179720258],[5.186326782404223,51.66846240215586],[5.186246366810044,51.66845939691428],[5.18560404173288,51.668444675824325],[5.184984708824364,51.66843141108384],[5.184212540768387,51.668415020018195],[5.183689715717849,51.66840407283869],[5.183202505052419,51.66839390442304],[5.182615353729271,51.668379991057954],[5.181867320912078,51.66836506482939],[5.180959191941198,51.66835129926155],[5.18094835049579,51.66859260442002],[5.180742559116305,51.66858758589754],[5.180758045111418,51.668396301161756],[5.180744632556249,51.66838637215936],[5.180528011539949,51.66838215213118],[5.180398821594522,51.668348136254885],[5.179585282934811,51.668332360716],[5.178608595817244,51.66831198365502],[5.178130738623917,51.66830205347233],[5.177034110335188,51.66827089663383],[5.17550005164908,51.668231326621964],[5.174537701305561,51.66820928760676],[5.174303724524157,51.668201249367705],[5.172692284644457,51.66817546111614],[5.171207056052084,51.66813719161927],[5.170588521585107,51.6681309711024],[5.169963900958291,51.668115855354394],[5.16873702944828,51.668093277856926],[5.167652596482609,51.66806841076098],[5.167532633962606,51.66805042453204],[5.166757419530402,51.66803881136012],[5.165834133574056,51.66802001802549],[5.165462746755344,51.66801245630394],[5.1653840610441,51.66801085345114],[5.164557989039054,51.668000405781704],[5.163350318465586,51.66797804201431],[5.162655314777678,51.66796989864926],[5.162062582171937,51.667964437569445],[5.1611153876486,51.667952078882166],[5.160699381575353,51.667946951822806],[5.160659579152149,51.66791089372526],[5.158909107790019,51.6679034508207],[5.157158754099626,51.66789570332722],[5.155711665071557,51.66789987285336],[5.154264692877891,51.66790374607953],[5.151370921248033,51.66791144821467],[5.151243391191874,51.66792951905892],[5.150099206812166,51.667991620787504],[5.150027714162028,51.66799394791778],[5.149127032512254,51.66801572488474],[5.148579967320623,51.66802891260483],[5.147857689614876,51.668039690534634],[5.146734118252215,51.668056804832936],[5.145987260780648,51.66806854546071],[5.144975012521507,51.66809812343703],[5.144886631604383,51.66808772966712],[5.144279038345167,51.66809055209682],[5.143491122312271,51.66812466302075],[5.142611491559112,51.668160626575784],[5.141692486463614,51.6682067120009],[5.141689768195033,51.66834018623664],[5.141691848784028,51.66836969999879],[5.141675985101449,51.6684135308633],[5.141648435095765,51.6684132214388],[5.141584255134291,51.668415648627764],[5.141573165144417,51.66839484385315],[5.141569169328372,51.66834533554311],[5.141551634704354,51.668209481819474],[5.141247057607167,51.6682027125467],[5.141243913381301,51.668164154063376],[5.138455521331493,51.66826006954443],[5.138161779697366,51.66827016990441],[5.138061230646463,51.66829096234055],[5.138046441571373,51.66829910147735],[5.137328942259322,51.668333320686706],[5.136501710391246,51.668365260312726],[5.135024115936849,51.668434608412205],[5.134791471161781,51.66844794074093],[5.134527160630359,51.668460224558146],[5.134357534422264,51.66846687861575],[5.134168181221715,51.66848049189871],[5.134029433793821,51.66849187723328],[5.133494171826294,51.66853279459815],[5.132653327079288,51.66859116681305],[5.132301810645194,51.66861551646283],[5.131941886144053,51.66863635917893],[5.131440417140203,51.668664469185586],[5.131454830573065,51.6687973334496],[5.131446442726605,51.66884663531187],[5.131450006313361,51.66886065624174],[5.131361987563923,51.66886575829947],[5.131351256090166,51.6688360366918],[5.13133097051174,51.66880615938661],[5.131303129133554,51.66867061415215],[5.13110445348093,51.668676022535955],[5.13040526710243,51.668706032718646],[5.130305932465659,51.66870815194223],[5.129913580800658,51.66873700700283],[5.129447706957581,51.66876616640323],[5.128961129496194,51.66881865753241],[5.128277511261043,51.66884807810964],[5.12827712728888,51.66885455800624],[5.12813088755458,51.66886877815202],[5.127195645676467,51.66892792707504],[5.126021888800358,51.668999255782026],[5.12497637265052,51.669066338624155],[5.124567362384937,51.66909258573549],[5.123981623075302,51.66913803847094],[5.123576227958128,51.66916882047479],[5.123224095086252,51.66919066065259],[5.122427861608849,51.66923941526381],[5.1214186409172,51.669305029315026],[5.120294132157023,51.66937590000249],[5.119224804836549,51.669452737689994],[5.119256593177135,51.669626136679256],[5.119173583271559,51.669629533208976],[5.11912676150009,51.669470778101754],[5.118702729474556,51.669493788407735],[5.118220725062397,51.66952250663576],[5.117930117538287,51.66954062505557],[5.117600446004076,51.66957410417863],[5.117267211304715,51.66960868874393],[5.116829390696989,51.66965518353902],[5.116462436474625,51.669700734915494],[5.116142833563855,51.669739831953],[5.116081308531518,51.66974735793097],[5.115517530388237,51.66982560042556],[5.114833041190953,51.66994773834493],[5.11444107062526,51.67002747161453],[5.113983477061509,51.670120308651406],[5.113708447199707,51.670195898783426],[5.113563918863199,51.6702346198993],[5.113472608889459,51.670259086890255],[5.113291487286402,51.670307614059695],[5.112720158837478,51.670460942793575],[5.112446862666549,51.670543158593105],[5.112024476074387,51.67067142254108],[5.111321662039403,51.67088631272362],[5.111108685901148,51.67095430373758],[5.110897465029877,51.671021192912626],[5.11074664307085,51.67106171701644],[5.110262096719018,51.67121413295383],[5.109990542558279,51.67130076951523],[5.109697499201196,51.671423812120764],[5.109347581453966,51.671575437537825],[5.108988759950042,51.671735876513864],[5.108805384096055,51.67182277477511],[5.108738239307491,51.67185459533654],[5.10845038645819,51.67199752984654],[5.108173156289528,51.67213827776848],[5.107830135094006,51.67232085368874],[5.107652401251894,51.67241543870396],[5.107483541268081,51.672505622270414],[5.107318189050633,51.672603553119934],[5.107151044360951,51.67270368164685],[5.106999905842798,51.67279391586964],[5.106827378216462,51.6729039724003],[5.106574708948275,51.67306447036991],[5.106516941871063,51.67310116594296],[5.106483833615114,51.67312252543462],[5.106462524544352,51.67313648640152],[5.10645571414821,51.673141062107725],[5.106231584035998,51.673291587515074],[5.106199555717505,51.673314182072126],[5.106185175082163,51.673324328236774],[5.105789072635702,51.67360377643639],[5.105535642910388,51.673792341592524],[5.105522306058845,51.67380226659521],[5.105377573915618,51.67390995304781],[5.104974119517855,51.67423744147763],[5.104811191256171,51.67438236566453],[5.104796947851739,51.674395033278806],[5.10452286504502,51.67463882493354],[5.104167202699351,51.67497589870559],[5.104158025750568,51.67498459543002],[5.104131080259777,51.67501013084671],[5.104516305570494,51.675398071075705],[5.104526157851561,51.67540799349332],[5.104540454992271,51.67542239057505],[5.104569907864299,51.67545202948143],[5.104566251847675,51.67545638460328],[5.104339362692728,51.675705233370756],[5.104209971637569,51.67585086126577],[5.104175549811441,51.675889607533136],[5.1038517876267,51.67625400169329],[5.103531540758214,51.676700604898926],[5.103259719982446,51.6771244757025],[5.103136515332451,51.67732620371306],[5.102989679552781,51.67757485742351],[5.102738951560235,51.67807102814273],[5.102619557108271,51.67835875045268],[5.102586272013784,51.67843896319539],[5.102519649326021,51.67859963346149],[5.102441945386992,51.678855438539124],[5.10233739375879,51.6792440650103],[5.102263253555917,51.67958344517149],[5.102240107633572,51.679964377547776],[5.102216065884447,51.6801728624064],[5.102191205219262,51.680382774443345],[5.102184726282362,51.68044269432823],[5.102176653779731,51.680562240370726],[5.102174077159782,51.68060030959627],[5.102167617228901,51.68069595900772],[5.102135716559815,51.68118569438254],[5.102092992514473,51.681573212582954],[5.101948944476884,51.68276015023973],[5.101926992517159,51.68293944527317],[5.101911216144371,51.683068329588934],[5.101902818285356,51.68313691871874],[5.101817518539784,51.683833745803376],[5.101756681645293,51.68461623929266],[5.10167196198769,51.68524550968569],[5.101665804406182,51.6852912283972],[5.101641896088198,51.685468801756336],[5.101645247574866,51.68593241209704],[5.101686505179834,51.68638854643838],[5.101803899842238,51.68686559380381],[5.101892021467253,51.6873642141598],[5.101897247452752,51.68743906549526],[5.101908828485668,51.68760007849989],[5.101921922161603,51.68779902683415],[5.101924098221263,51.68783207401552],[5.101929100199315,51.687908066345386],[5.10189469420576,51.68825715149563],[5.10173388910125,51.68924881621995],[5.101695037995034,51.68947223063209],[5.101591185760785,51.68957318851234],[5.101420601080619,51.69026089034551],[5.101399875184538,51.69034444221151],[5.101337305548656,51.690596687799484],[5.101143971588762,51.69152824668642],[5.10080191744051,51.6930684332545],[5.100625834230474,51.69396295553445],[5.100582051871442,51.694148192097686],[5.100510506750337,51.694311680369594],[5.100437507378381,51.694560789842754],[5.100321363183711,51.69480971275131],[5.100123271671623,51.695073697347134],[5.099833181885042,51.695406928432895],[5.099456343965877,51.69570200520523],[5.098855752909433,51.69612247777696],[5.095328393174816,51.69852368862416],[5.089597847982549,51.70236906068832],[5.089378894708127,51.70251596361212],[5.085843983400573,51.70488751102461],[5.081066560170418,51.70809591817838],[5.080007317354977,51.708833416231116],[5.079575725983861,51.70913390224657],[5.078341454114507,51.7099683153259],[5.07686202469577,51.710972902546246],[5.075400306416454,51.711972008247486],[5.074694231018096,51.71247151697863],[5.074360138771572,51.71271970687709],[5.07420669165113,51.71286589114214],[5.074092521036447,51.712946240281674],[5.073936408788461,51.71304662051485],[5.073577090770096,51.713277653563104],[5.073405644925423,51.71337709320693],[5.072497237225249,51.71392655339328],[5.07177893488405,51.71441288848676],[5.070489849328076,51.7152577947131],[5.068954949612172,51.71621918621262],[5.069284211895527,51.716361863647045],[5.071004422278318,51.71711073978092],[5.07168025874069,51.71739631973053],[5.073005751686804,51.71798598595979],[5.075058349754123,51.718877136085545],[5.076316697449742,51.71954853414597],[5.07695001795719,51.71986299466771],[5.077598113852011,51.72018513100768],[5.078548473793833,51.720671390404995],[5.080013095761807,51.721438389925694],[5.080655208341182,51.721782928884906],[5.080817586719656,51.72187068583929],[5.080846252834929,51.7218861760673],[5.081582267067808,51.72223411023614],[5.081739551462939,51.72233303433839],[5.081760315134479,51.72234439599638],[5.081892597058501,51.72241681052375],[5.082285624080386,51.72263198489856],[5.083575961269222,51.72334496842138],[5.083607265679261,51.72336226250445],[5.085307230450788,51.72424677209382],[5.085762084401213,51.724484511262546],[5.08746727343699,51.72534252253083],[5.087837205808347,51.7255297816519],[5.088294049297185,51.72575952520561],[5.090035840306538,51.72661269338441],[5.090070293009811,51.72662957124644],[5.090467700217271,51.72681957020574],[5.092124495316032,51.72758374838824],[5.09439384284966,51.72853396848664],[5.095325993740511,51.72890264637399],[5.096449082444232,51.72934544228819],[5.097503811088414,51.729747987732694],[5.097705041204112,51.72982478819787],[5.098002526906606,51.72993831911213],[5.09924068368605,51.73039972642922],[5.100487790784989,51.730841556536184],[5.101478113157863,51.73118056653054],[5.102157667099732,51.731406366857904],[5.104268191976005,51.73208235352731],[5.104447321954308,51.732141147979384],[5.104920479020361,51.73227460328342],[5.10529692311466,51.73238771691029],[5.105452347372362,51.732434417220574],[5.106959162079947,51.73290037877023],[5.109504973272847,51.73367402656283],[5.11184799751491,51.734390955723086],[5.116567137477718,51.735415044833395],[5.117118651053159,51.73552000768657],[5.117924285506239,51.735674673893705],[5.118138654056136,51.73570929528212],[5.11840195095472,51.73575181248242],[5.118483321729722,51.73576453792988],[5.118747249243278,51.73580579740924],[5.118810729024366,51.73581572220115],[5.118875452986634,51.735828229503056],[5.118848032087347,51.73588462347519],[5.11888601144304,51.73591765321047],[5.118825858369633,51.735927708504036],[5.12805477347313,51.737607140141336],[5.129499236862907,51.7378640953134],[5.130951691339519,51.738118919840375],[5.132395573750832,51.73836659781669],[5.133846531129176,51.73861791359512],[5.135286969688698,51.73886314852158],[5.136724536097045,51.739099128406345],[5.13816947101617,51.73933533098876],[5.13927879810225,51.73950440879325],[5.139625460405665,51.739559647302904],[5.141070486987121,51.7397871403708],[5.14107547770492,51.73978791486596],[5.14208726470398,51.73994518413332],[5.142251690594104,51.73996962579973],[5.142984752147712,51.74007859394948],[5.143967996336443,51.74022062394777],[5.144896689817487,51.74035507255313],[5.14535654281894,51.740420999473024],[5.14684667723145,51.74063852802891],[5.148300909299211,51.740825107035775],[5.148826561126309,51.7408966822531],[5.149755281579055,51.74102861154317],[5.151204675935421,51.741220232160856],[5.152059161408116,51.74133035850359],[5.152402711010032,51.74137451507504],[5.15264535487794,51.741405705238456],[5.153246590357583,51.741481672284436],[5.154086063339759,51.741587736035406],[5.154911180764084,51.74168750935555],[5.155539675499385,51.74176292537234],[5.156993261070387,51.74194837942555],[5.157763282932891,51.74204003373426],[5.158432223423648,51.74211893794764],[5.159880419364598,51.74228378900027],[5.160624749617712,51.74236739292718],[5.161326809870385,51.74244406150796],[5.16278229708325,51.742626013753004],[5.164228737051316,51.742780542828164],[5.164727953041888,51.74282886904704],[5.165671582066381,51.742920198290456],[5.167120205949871,51.74301076976405],[5.16777473038668,51.74303823342746],[5.168581856518758,51.743070535125675],[5.170005092990115,51.74308910684786],[5.170015749526211,51.74308912658082],[5.171457842691098,51.743091743062905],[5.17169323858178,51.743089883748226],[5.172914394718313,51.743068112895735],[5.174361804846058,51.743033032683535],[5.174821337317546,51.74301872007896],[5.175816808625604,51.7429805645842],[5.177260143467661,51.7429177477661],[5.178690936079397,51.74281397537145],[5.180146449092836,51.74268242782299],[5.181601912274235,51.74249947504446],[5.18185069646051,51.74246280646085],[5.184776273394001,51.742046386582864],[5.185699855264436,51.74191755415792],[5.186319463136218,51.74180568582453],[5.187445929235309,51.74159399866097],[5.187691774049856,51.741545322064155],[5.188030130409526,51.74147833077279],[5.188538146551872,51.741368310550705],[5.190417463255723,51.740922657289886],[5.190749194391736,51.74085230332901],[5.191356198436472,51.74074260742808],[5.192772261406748,51.7405221031429],[5.193238696376107,51.740457403368644],[5.193390084270653,51.740436404868355],[5.194205102479588,51.74033954968871],[5.194683982433609,51.74030259406466],[5.195524437207143,51.74027318496779],[5.196195502228028,51.74025943068923],[5.196653266090936,51.740271608539196],[5.197201827543535,51.740299940169415],[5.197856321901113,51.74033981967597],[5.198261257139321,51.740372498533226],[5.198732899877883,51.740414244691635],[5.198985004075166,51.74043992505105],[5.199984523258194,51.74054175497995],[5.201146418636126,51.740682933867106],[5.202759995665076,51.74089340327885],[5.204178052482733,51.74109042239841],[5.204239782920512,51.74109899481932],[5.20484623481752,51.741201400935736],[5.206494248095395,51.741477182592035],[5.206947338353789,51.74156137353204],[5.207020307784969,51.741576604230914],[5.207140510699912,51.741601695832315],[5.209878036741463,51.74230826928123],[5.210485081531356,51.74245901398714],[5.211547756321044,51.74270230972515],[5.212838406064231,51.74297051831461],[5.213453141291609,51.743072865173254],[5.213868990618055,51.74314209824524],[5.215009939775276,51.74332219041316],[5.215415005558894,51.743372688190334],[5.216121836143171,51.74343777285026],[5.217112878638113,51.74350365215152],[5.217108429992626,51.74348534519724],[5.21779520898095,51.74351618959733],[5.219243091583157,51.74352725986375],[5.220691140433728,51.74349337018301],[5.222139449654626,51.74338755530818],[5.223588012324944,51.743209815224134],[5.225036789282655,51.742969138328654],[5.226485774467528,51.74266552460617],[5.227934961817482,51.74229897404006],[5.229384251151838,51.74189645186338],[5.230227646342471,51.7416099526392],[5.230833825505543,51.741404027558815],[5.231000585882127,51.74134221135246],[5.23213158113001,51.74092297088642],[5.232283522239402,51.74086664319226],[5.233035957431377,51.74054577556374],[5.233733459040825,51.740248345069325],[5.235183477024351,51.739594075267135],[5.23663372235705,51.73885889166177],[5.238084276144887,51.738015828951276],[5.239535010580404,51.73710084079035],[5.240986839219937,51.73618519781484],[5.24242969320643,51.73539109470371],[5.242435929149838,51.735387659817185],[5.243885722082073,51.734715305043835],[5.244621158350944,51.73444253835867],[5.244678595144865,51.73442123358064],[5.245335048993126,51.734177758716164],[5.246783783361804,51.73381996303117],[5.248232025343669,51.73361495274409],[5.249679734986312,51.73358070475124],[5.251126793510653,51.733762161239255],[5.252573489151118,51.73406943790744],[5.254019966306559,51.73445759260121],[5.255466311268855,51.73489966002537],[5.256912166757478,51.73552147822601],[5.256934703914104,51.73553257703232],[5.258005075761272,51.73604590495239],[5.258357857235691,51.73621518601285],[5.259803440226278,51.73696280651615],[5.261249171181588,51.73767445541939],[5.262695120880444,51.738323167432505],[5.264141503374875,51.738828046683295],[5.265588280701965,51.739198081606055],[5.266128317362795,51.739295913066876],[5.267035368283642,51.73946023749127],[5.268431464256541,51.739635063975214],[5.268482684988477,51.739641479627],[5.268656980163524,51.73966005518023],[5.269930083228187,51.73979573859525],[5.271377514381312,51.739940991256844],[5.272825000309531,51.74006824917904],[5.274272629038579,51.740141558632004],[5.275720373232468,51.74016990804268],[5.277168162981539,51.74018026270435],[5.278616061279121,51.74014565731561],[5.28006402122955,51.740084068737715],[5.281512040238079,51.73999549696724],[5.282960219258655,51.73983499982822],[5.283222727308519,51.739787989348436],[5.284075454654821,51.73963528175267],[5.284408612636094,51.73957561200403],[5.285857230986522,51.73920834503996],[5.287306024235917,51.73875117578513],[5.288754944616158,51.73822208109193],[5.290203811796297,51.73770195688489],[5.29165247481246,51.73726271067851],[5.293100791930296,51.73697625000926],[5.294548869864548,51.736797632707614],[5.295996737103852,51.73671787035064],[5.296493613334878,51.73674911266396],[5.297444260546101,51.73680887047498],[5.298891579371753,51.73700771400806],[5.300338755694263,51.73728743563125],[5.301785678544089,51.737710954427826],[5.30197228417291,51.73778413019285],[5.303232361729653,51.73827827039083],[5.304678933768709,51.73892646442742],[5.306125563426768,51.73956565213244],[5.306577339785923,51.73976526407986],[5.30757223402932,51.740204821945106],[5.309018930052068,51.74085296230304],[5.310466317854043,51.74151037924624],[5.310856661125005,51.741690096980285],[5.311912401812172,51.74217615464628],[5.313359135290241,51.74287817193959],[5.314805928117865,51.74357118289241],[5.316252779433214,51.74425518750497],[5.317699757370425,51.7448852435964],[5.319146856751371,51.74546135117262],[5.319505307823637,51.74559513551481],[5.320594045949352,51.74600148711015],[5.322041295639219,51.74652362828232],[5.323488667333625,51.746982832515144],[5.324936080826689,51.74743303042188],[5.326413961111442,51.747894237024205],[5.326919555473629,51.74805469841526],[5.327683135504199,51.7482861623986],[5.327831006184235,51.74832438412591],[5.329278505975971,51.74877452835637],[5.330726034629246,51.749224654693215],[5.332173624904479,51.74964779783504],[5.333003674952699,51.74987495273136],[5.333621274209319,51.75004395778335],[5.335068948918502,51.7504400998389],[5.33601163705123,51.75069219025121],[5.336516659087625,51.75082723556811],[5.337964394083879,51.75121435340383],[5.339412134946625,51.751619430210305],[5.340344760399595,51.75187457366118],[5.34085991097959,51.7520155006888],[5.342307748029578,51.75237559954347],[5.343755616791475,51.75272669207171],[5.344697125494929,51.75294914015874],[5.345203516400212,51.75306877827356],[5.346651429911721,51.753419835011854],[5.34710838856664,51.7535391332524],[5.348099342687055,51.75379783914782],[5.349547264782029,51.754193802247705],[5.35056980176478,51.75449246889199],[5.350995190749908,51.754616712739896],[5.35244310940976,51.75508454748151],[5.353514438136346,51.755477248754424],[5.35389101188593,51.75561528332623],[5.355338834812132,51.75630779298655],[5.356198513323713,51.756848892125845],[5.356424619927304,51.75699120228862],[5.357568232099948,51.75789033833342],[5.358509112324184,51.75878941396371],[5.359290701670333,51.759688444353145],[5.359927475303396,51.76058743603764],[5.360318029762705,51.76148636831061],[5.360439022674972,51.76192900386806],[5.360563747163914,51.76238526657301],[5.36066461885404,51.763284131734736],[5.360693065369087,51.7641829804669],[5.360634596256208,51.76508180956034],[5.360561638396788,51.76598063526385],[5.36052861545511,51.766488248870026],[5.360517826906693,51.76665410975411],[5.360503164331628,51.76687946411104],[5.360444687934309,51.767778292838514],[5.360429671045172,51.76867713131751],[5.360443628692018,51.769575976279626],[5.360472074748782,51.770474824432895],[5.360529498226944,51.77137367904308],[5.360615900857994,51.77227254006756],[5.360760261819518,51.77317141393991],[5.360804189593419,51.773399235122326],[5.360829541106328,51.77353066038607],[5.360933606551928,51.7740702939986],[5.361106958186977,51.77496917371022],[5.361323785491677,51.775868062615075],[5.361584091064441,51.77676696047193],[5.361873387337788,51.77766586388281],[5.362191676044615,51.778564772633096],[5.362538958917996,51.77946368648673],[5.362944219755907,51.780362611144355],[5.363335005418723,51.781261531382334],[5.363628628750964,51.78190360518045],[5.364015409504406,51.78260993664509],[5.364243617996543,51.7830266836294],[5.364261542440774,51.78305939591296],[5.364782807390583,51.783958336311265],[5.365318585588096,51.78485727698624],[5.36591235619658,51.7857562255789],[5.366549629629648,51.78665517867765],[5.367186928460048,51.787554128222105],[5.367911214479875,51.788453088426074],[5.368650023287668,51.7893520463388],[5.369269347299153,51.79009109586881],[5.36924451548256,51.790136258795464],[5.370243685233846,51.79114996458756],[5.371098542998888,51.792048923347224],[5.372011415145147,51.792947883226596],[5.37237229474295,51.79327324581643],[5.372430200580287,51.79332544864003],[5.372706979954086,51.79357379612207],[5.373011295872947,51.793846846341985],[5.373468647677194,51.79425214180175],[5.374025712114388,51.7947458024504],[5.375054664738739,51.79564475117506],[5.376011177221469,51.79654368398929],[5.376880748708716,51.797442601410964],[5.377735858052215,51.798341511144294],[5.377754670698527,51.79836197919309],[5.378562007287753,51.79924041245897],[5.379344697295026,51.80013930501713],[5.380170911538835,51.80103819481328],[5.380968162790606,51.80193707719943],[5.381736449318128,51.80283595276609],[5.382577259200205,51.80373482598585],[5.383490596774634,51.804633695299394],[5.38450546462466,51.80553255964268],[5.385607369411431,51.80643141620497],[5.386767316939314,51.80733026247071],[5.387830549867278,51.80809130604373],[5.387993343075027,51.808200810230694],[5.389279652296952,51.809104591956746],[5.389304840158614,51.80912229857389],[5.390623116356676,51.81000895997289],[5.391967243320247,51.810912979912025],[5.393238454451957,51.811817078116746],[5.394409540974377,51.81272305634441],[5.395395805223395,51.8136218274243],[5.395573660308558,51.8137967631563],[5.396275831242741,51.81448738650299],[5.396392668697234,51.814610896555976],[5.397136414876928,51.81541936461954],[5.397803735481924,51.81631814219176],[5.398427574059452,51.81721692010267],[5.398903473964378,51.81788694673288],[5.399065940689504,51.81811569311385],[5.399185145022453,51.81828742155376],[5.399689829322393,51.81901446411924],[5.400502291573295,51.81991321022742],[5.401706421582189,51.82089279758487],[5.403157085150895,51.82161167635045],[5.404607700384262,51.822087851350126],[5.40605828557287,51.8224201946061],[5.407508818660325,51.82259072941544],[5.408234057612294,51.822608577386156],[5.408959297138034,51.822626420874684],[5.409281609960071,51.82260838349928],[5.410409717308696,51.82254524571086],[5.411860053036021,51.82232023883962],[5.413310290434888,51.82195140025342],[5.414451144036498,51.821490260973235],[5.414760365859587,51.82135783467838],[5.414885524437903,51.82129018558508],[5.41577531109982,51.82080930032361],[5.416949541422448,51.81991017042357],[5.417877166125011,51.819011093738126],[5.418122703682358,51.818729009970355],[5.41865972214409,51.81811204879951],[5.419181437798083,51.817512652586345],[5.419442246945429,51.817212998548044],[5.420282750886021,51.81631392656281],[5.421239239692533,51.815414814703814],[5.422007345517979,51.81474944888444],[5.422432250678149,51.814464740665386],[5.423456769685312,51.813778263844505],[5.423756679562653,51.81361637967582],[5.424906289966619,51.812995816575],[5.426355877523182,51.81234817689658],[5.427805512841108,51.81179939135014],[5.429255222290944,51.811367436695136],[5.430704289177766,51.810981934237795],[5.432154683768303,51.8106293108041],[5.433321742556791,51.81039730666941],[5.433604462455353,51.81034111632122],[5.435054299190239,51.81012481089661],[5.436505563238548,51.80995330748495],[5.436993560973868,51.809910742992194],[5.437954083178594,51.80982697187678],[5.439403997337187,51.80970948479224],[5.44085395758167,51.80963692165089],[5.442303935189525,51.809582317334716],[5.443753943202188,51.80955466021521],[5.445201720747913,51.80953600162298],[5.44665403707146,51.809562210817205],[5.448104126973084,51.80959741853599],[5.449554281455572,51.809677550187814],[5.450508291208059,51.80973616351762],[5.451004453839306,51.80976665228458],[5.45245464499053,51.809864724825346],[5.453904855775511,51.809971767809046],[5.455355114303641,51.81010575797429],[5.456805339712029,51.81021276510042],[5.458255614596301,51.810346719405665],[5.459705927069013,51.810498632517735],[5.46115630842135,51.81068648117075],[5.462606731987862,51.810892288623414],[5.46405719950318,51.811116054872606],[5.465041719137044,51.811280125464],[5.465507712702096,51.81135777991516],[5.466958352998534,51.81166240557939],[5.467758512923557,51.811875026160635],[5.468409158919401,51.81204790858415],[5.469860105250099,51.81249631218077],[5.47116392907884,51.81301221622507],[5.471311315701542,51.81307053490165],[5.47239062242708,51.8135910805276],[5.472762802439524,51.8137705767088],[5.474214664556845,51.81464137936739],[5.475173257870792,51.815386698314576],[5.476146687502384,51.816284800459954],[5.476931618807398,51.817183039015006],[5.477484531090877,51.81808145131083],[5.477964948258645,51.818979917114795],[5.478150291067967,51.8194764796755],[5.478300347362991,51.81987849374123],[5.478548735780914,51.8207771372065],[5.478797134115906,51.82167578004673],[5.479045542368643,51.82257442226183],[5.479293960539799,51.823473063851594],[5.479672935147903,51.82437160183767],[5.480211484915162,51.82527001192337],[5.480953136620545,51.8261682570921],[5.481839878258899,51.827066380377055],[5.482987769090498,51.827964283663896],[5.484541890832777,51.82886183885271],[5.48467736071018,51.82891856861625],[5.485848688376993,51.829409035855655],[5.487300467282557,51.82990216436315],[5.488751973573829,51.83026044974625],[5.490203255955611,51.83051085706054],[5.491654366613007,51.83068035134976],[5.493105255403159,51.830750955946904],[5.494555934221633,51.83073165920573],[5.49600635090518,51.8306044844562],[5.496912517129702,51.83046884116739],[5.497456539096187,51.83038740838564],[5.498906534754253,51.830098407677106],[5.500356308333113,51.82972849399245],[5.501805852029322,51.82927766733107],[5.503255204412167,51.82876390437047],[5.505051877059485,51.82794417033515],[5.505339347277545,51.82778315996463],[5.506659690976798,51.827043706035575],[5.508078866163164,51.82614341428073],[5.509236886759504,51.82524337745453],[5.511040958639662,51.82347629520847],[5.511074128889183,51.823443776184256],[5.511999947223187,51.82254395691208],[5.512954737148972,51.82164409912695],[5.514214072690573,51.820743903781626],[5.514836750054227,51.82039268071511],[5.516285281390573,51.81974393123779],[5.516545516104009,51.819661310801145],[5.517734318401968,51.81928391911816],[5.519183747498383,51.818967702630765],[5.520633529255093,51.8187773050801],[5.522083648875698,51.81870373811148],[5.523533899856768,51.81867509494948],[5.524984148977279,51.818646433863876],[5.526434368435162,51.818608766510394],[5.526782600353567,51.818578133381855],[5.527884304552705,51.818481197793446],[5.529333920277939,51.818254739378766],[5.530313156697719,51.81802883832693],[5.530783177407982,51.817920402929886],[5.532232152415183,51.81750515348238],[5.53368112995287,51.81709887447559],[5.535129992753075,51.81666561253505],[5.535645083011738,51.81657232704917],[5.536579394301718,51.816403111222094],[5.538029170393707,51.816257440466806]]]]}},{"type":"Feature","properties":{"id":3,"statcode":"WS25","geometry_g":"polygon","gag_id":null,"hierarchie":"0","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.25.25_Brabantse Delta_p","sde_id":null,"land_code":"NL","inspire__1":"NL.25.25_Brabantse Delta_v","inspire__2":"NL.25.25_Brabantse Delta_l","wbh_code_o":"25","einde_leve":null,"laatste_wi":"2003/12/31","admin_code":"NL25","waterschap":"Brabantse Delta","publiceren":"25","Aangemeld":1,"Actief":1,"KVK":51181584,"tnostatus":2,"CPT":884,"GMW":447,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[4.676985166057649,51.72158637511604],[4.677286295188172,51.720110249717905],[4.680648560344285,51.72040377472577],[4.687793610871365,51.721039696869475],[4.69253184615422,51.72145646392169],[4.694942441472434,51.72166841821803],[4.695245907585498,51.7216956216553],[4.698553216360219,51.721992046617686],[4.701435648657919,51.721732006379796],[4.702625002913621,51.72162468637791],[4.706363343036932,51.72128740081135],[4.710186698539967,51.72095180869796],[4.715647622718057,51.721365457906394],[4.718989809233347,51.721823679992184],[4.71906360006874,51.72183383551182],[4.722524325593925,51.722310034406846],[4.725698970877116,51.72294098295138],[4.728957362739967,51.723599515355744],[4.733165113819705,51.72443842175976],[4.734539705567951,51.72456172470883],[4.734543179659345,51.724564701342054],[4.735903288944163,51.724668042559856],[4.736648080739063,51.72472461939306],[4.738456953327474,51.72487742309881],[4.739660677622903,51.724941392170216],[4.740446888878226,51.72501102751433],[4.743240932508217,51.725139913604785],[4.745663726633679,51.72516467960488],[4.747267915103858,51.72512421883168],[4.749183418788615,51.725049656282714],[4.750570508237518,51.724974314548795],[4.751960917477365,51.72486838586579],[4.753664364511163,51.72471012024787],[4.75585023858789,51.7244683720152],[4.757765038484412,51.72421568938595],[4.758985320190622,51.72401987445249],[4.760918595786631,51.72364173033383],[4.763779146705934,51.72304300945459],[4.764876275124572,51.72278850111596],[4.765837782339796,51.72256544306365],[4.767536095738254,51.722100165059],[4.768125915355133,51.72193856456242],[4.768372463926295,51.721865116771575],[4.768511129413247,51.72182258634665],[4.7708943808346,51.72107512344664],[4.771088762586053,51.72100586298813],[4.776072500227287,51.71922591563287],[4.777398326284147,51.71875536126078],[4.779412675240231,51.71806752202353],[4.780989463816235,51.71752906064196],[4.783077465672148,51.71687123829872],[4.787432136810117,51.71561929088565],[4.789601877467657,51.71506291173501],[4.79018688112227,51.714924259036415],[4.791787156801167,51.71455427442855],[4.792009340941441,51.71450642386028],[4.792161597894335,51.71447666257342],[4.793805539677805,51.71416742893921],[4.793948953827056,51.71414312162722],[4.7983909522437,51.71339854040839],[4.799214379846098,51.71327471235883],[4.801682287000421,51.712903550231815],[4.802360170608017,51.71281472073133],[4.803420601448801,51.71268772228459],[4.805820516821743,51.71236979679529],[4.808431249948783,51.712146588576104],[4.811112862458327,51.71191726182706],[4.812365758098724,51.711803074562845],[4.814200561096095,51.711634004688406],[4.81539273459882,51.71154101600267],[4.816923440474102,51.71144225660258],[4.818263045057847,51.71137566374494],[4.819762574574495,51.71132513783239],[4.821240120164278,51.71128746618329],[4.821722389835821,51.71128654064404],[4.82226052469882,51.71128563977951],[4.822642085009209,51.711280377717905],[4.823610483103352,51.71128814953702],[4.823872161100242,51.71129025278087],[4.824179068299825,51.71129131435746],[4.824475755399954,51.71129276649417],[4.824659675595355,51.71129606754813],[4.824768686138205,51.71129958405648],[4.825059336051631,51.711311801116786],[4.825498222371695,51.711329896616796],[4.826111438738285,51.7113557735926],[4.826758847454919,51.711380408667274],[4.827125732674182,51.71139645481609],[4.827518626444016,51.711422448646694],[4.828076989129864,51.71146379244969],[4.828941687642359,51.7115280673359],[4.829616197105349,51.71157415478474],[4.829767849732079,51.71158587843191],[4.829781226380581,51.71158648138522],[4.830325359288418,51.71166744965543],[4.831233386475477,51.711796407104025],[4.832397684444968,51.71195969432323],[4.833324549537936,51.71208025739832],[4.834277117519127,51.71221855216533],[4.835021805385736,51.712328597188346],[4.835597653317817,51.71242071942205],[4.836220769004209,51.71251101166639],[4.83690479143091,51.712611860657425],[4.837363586581156,51.71268858416777],[4.838292661502731,51.712843958206335],[4.840489130303558,51.71321121961743],[4.840723089460875,51.71326173949214],[4.841320509575702,51.71339074261693],[4.841735523329959,51.71348035942471],[4.842522013327597,51.71365018187857],[4.843814268382538,51.71392920239996],[4.847745300991137,51.71504437467046],[4.850316822781853,51.71562868867118],[4.852993902426982,51.71609295252045],[4.855982859276528,51.71661098188253],[4.85714498272468,51.71681237601125],[4.858873651745903,51.71711192618205],[4.861049800131203,51.71748896516072],[4.861830777854204,51.717621015300764],[4.86209916407773,51.7176730219071],[4.864985135403004,51.71833865373722],[4.865316013599388,51.71842230170355],[4.866234069608822,51.71865438290566],[4.867549527743662,51.71898690579313],[4.867834823325578,51.71906103226893],[4.868132523109708,51.719126242339684],[4.86924008143996,51.71932713955314],[4.86933558449526,51.7193444602168],[4.870795178922751,51.71962903577949],[4.871031063276557,51.71967140461797],[4.872021050640045,51.71982771332462],[4.872313318751538,51.7198727004124],[4.872575608283717,51.71991710570173],[4.87305499323091,51.71999826468709],[4.87431017367383,51.71998282999857],[4.874762339492865,51.71997726650129],[4.874829846223157,51.719978963877786],[4.875169955216277,51.71998751535991],[4.876187134674861,51.72001002211643],[4.877139673688046,51.72004365427499],[4.87722082897885,51.720046515273324],[4.877476485567203,51.72005462961286],[4.877808274292649,51.720063173199556],[4.879156423333874,51.720108170554205],[4.879968181791716,51.72013418518618],[4.880371336195957,51.72014758759029],[4.880414680721062,51.72014879074293],[4.880509701167647,51.72014513873859],[4.881033481836556,51.72012991023618],[4.883045577504078,51.7200713931692],[4.883591641567598,51.72005760637163],[4.883663288674678,51.7200553165151],[4.883711946235717,51.72005375480475],[4.883833331701506,51.72004771453466],[4.88415764404002,51.72003243314115],[4.88631463832253,51.71993078816383],[4.886971090082018,51.71990009135406],[4.887671735901631,51.71986827589603],[4.888650987928449,51.71982379030335],[4.888948390016715,51.71980884858792],[4.889081184852082,51.71980217724383],[4.889440692945068,51.71978785777431],[4.889790175431928,51.71977584067939],[4.890017247390178,51.71976977510719],[4.890622845046259,51.719714914420706],[4.890926085239162,51.71968743533671],[4.890958067992396,51.7196847932834],[4.891211554746053,51.719663817274345],[4.891230921084085,51.719662218362664],[4.891236518475762,51.71966119038285],[4.891249699746682,51.71965878328442],[4.893714130388722,51.71920806161653],[4.894423744376031,51.71907825875962],[4.894480934355011,51.71906780276817],[4.894797783999607,51.71903780914357],[4.895069029736152,51.71901212646494],[4.895173260154792,51.71900226315785],[4.896162846043046,51.71890858156049],[4.897668677204638,51.71877551276811],[4.898922785099687,51.71869715944589],[4.899103697249214,51.71869007498063],[4.900263617655484,51.71866702638961],[4.901550450522974,51.71867236596429],[4.902004575980851,51.71867946931417],[4.902972054532159,51.71868869308226],[4.903611176596034,51.718699170103505],[4.904027418990967,51.71870872497107],[4.906723892499192,51.71881473946526],[4.909979720860028,51.71904661803528],[4.91141232098797,51.71918826943999],[4.912723566123647,51.71931378987448],[4.913966999384658,51.719449430611505],[4.91594021338201,51.719673332593516],[4.917991224893485,51.71995936329059],[4.920211561571417,51.72028259840033],[4.920549109129755,51.720327151043506],[4.92056029523731,51.72032862476822],[4.921425556633436,51.720442824077004],[4.922397882434064,51.72059403418797],[4.922807944857443,51.72065779784232],[4.923891341648218,51.72082287351937],[4.924097436163965,51.72085427621824],[4.924911557883203,51.72097831486486],[4.926850680398553,51.72124614907194],[4.92881822350036,51.72151796331755],[4.930612655554008,51.72176547515997],[4.931762718994798,51.72192096697915],[4.931896710943446,51.721939087221145],[4.932451127576822,51.72201203373317],[4.93367199606374,51.72216391637909],[4.933763134852154,51.7221749564325],[4.934862325560722,51.722308109023864],[4.935952708538169,51.72242679069892],[4.937125360662687,51.722542488331875],[4.9377556900277,51.72260502274164],[4.938129151854564,51.722642075981256],[4.93856576272647,51.72267289798339],[4.938672713643177,51.7226804442449],[4.939342353864974,51.722729943275596],[4.939361341251797,51.72273148995353],[4.940630461669224,51.72283492801381],[4.941677631350871,51.722891523285256],[4.943234149903044,51.722975630115634],[4.945563483913441,51.723041597467294],[4.947230672697652,51.723061889684985],[4.948029899109845,51.723050712054395],[4.948040321005716,51.72305056234375],[4.948318383665065,51.72305245777904],[4.94951554055763,51.7230502019092],[4.950475854763146,51.7230383955662],[4.951038905132654,51.723030955279825],[4.951534923077432,51.723024404697085],[4.952044415676833,51.72300425738719],[4.952058372770474,51.72300370696967],[4.953021443819754,51.722965364721574],[4.95302677186648,51.722965150755265],[4.953548690791299,51.72294546540004],[4.953775967011087,51.722936886034034],[4.953997929666395,51.72292851130304],[4.954248174144642,51.72291689687465],[4.954702407687874,51.722892156446356],[4.95522898576364,51.72286181136666],[4.955817917185539,51.722827864295304],[4.956395811748186,51.72279472761444],[4.956397491470128,51.722794634913974],[4.956569692765397,51.72278048151353],[4.956642263286747,51.722772442677474],[4.956745229726591,51.72276102786487],[4.956889583772815,51.72275007052714],[4.958484310108781,51.7226289688171],[4.960894310138823,51.72241328753887],[4.962896853684986,51.72217776372748],[4.964210727459318,51.72199385160417],[4.965105051122769,51.7218686560064],[4.965403863297402,51.72182215522687],[4.968399705653339,51.72135584781015],[4.969381325005436,51.72120930501898],[4.969986856119091,51.72109967123215],[4.971337624664041,51.720855083888395],[4.974923543928362,51.72016414531466],[4.97841840233012,51.71941034507755],[4.978637994539485,51.719362356779676],[4.97947165496299,51.71918014935735],[4.981710925328554,51.71862368775519],[4.982006608065149,51.71854903563413],[4.982197831015822,51.7185007538387],[4.983104517648354,51.71826610895376],[4.984156383765987,51.71799581339566],[4.985170903627234,51.717736705905956],[4.986337694001552,51.71743637665807],[4.986682412393054,51.71734600666658],[4.988636994361365,51.71687135027615],[4.989456998737593,51.71667220791968],[4.989958409491596,51.71655043259627],[4.991176850373432,51.71625395158036],[4.99192489379365,51.71608024710658],[4.99407994711499,51.71557978563557],[4.995303729641168,51.71531529696026],[4.996738882845338,51.71500510996032],[4.996951934594071,51.71495906107962],[4.998242741596896,51.71471096230485],[5.000218312602744,51.71433121879566],[5.000451011043313,51.71428648683207],[5.001433511215723,51.714114870473665],[5.00252857322979,51.71392357989989],[5.003516330636113,51.713751244273574],[5.004903427856426,51.713505715470596],[5.005783461407981,51.71334973702505],[5.00586456810707,51.713335520390224],[5.006016536272473,51.713308869318915],[5.007736493519224,51.713054726472265],[5.008398375050541,51.712963269809265],[5.009258976369329,51.712844352189265],[5.009452483449929,51.71281935867024],[5.010723260316271,51.71265519093493],[5.010998625572937,51.71262250292027],[5.012435176588527,51.71245194544128],[5.014822838493603,51.712167832670794],[5.016221015313234,51.71201334021516],[5.01832677598533,51.71179421245035],[5.01955887558104,51.71168136760364],[5.019794174211355,51.71165981387726],[5.020890819653242,51.711559662590545],[5.021247037299345,51.71152712229916],[5.024256549513194,51.71129459009107],[5.026407558126766,51.711149271301345],[5.027089456550805,51.71109957652422],[5.027445599210209,51.71107361476492],[5.027654367935565,51.71106132989209],[5.028733665854085,51.71100265103184],[5.028770577509785,51.71100064262863],[5.029588042943065,51.71096030943265],[5.030387786043055,51.71093419938375],[5.032774665035244,51.7108635922113],[5.032792523776108,51.710863061962215],[5.032845688539785,51.71086227892386],[5.034168209124962,51.71084271120249],[5.035326535805149,51.71082315702949],[5.03590598818491,51.71081337202074],[5.036789893717794,51.710814804687814],[5.037936275498033,51.71081665364562],[5.038473743276389,51.71081751706501],[5.039951135076991,51.71084684697178],[5.041760756085584,51.710882746796564],[5.043597846030488,51.71094665356589],[5.044704858661907,51.710985146909806],[5.044988142457428,51.71099699436681],[5.046438549873749,51.71108712393139],[5.047287753779785,51.711149624397066],[5.047928078555997,51.711209249113],[5.048976594817304,51.71130688405252],[5.05013064901341,51.711406952442736],[5.051001367097246,51.71150614310089],[5.052351425141173,51.71166147389934],[5.052940665029211,51.711735909117905],[5.053629862500286,51.71181782571893],[5.054211635943459,51.71190072745321],[5.054231842668687,51.711903607262265],[5.05428007422862,51.71191462040701],[5.054585020291333,51.711976518394124],[5.055430074138037,51.71214698122734],[5.056723736988388,51.71241900681502],[5.05755423750239,51.71259527377484],[5.057873528441164,51.712663594373524],[5.059391183757364,51.713014932198696],[5.059535674357003,51.71304919604113],[5.060039320447335,51.71316861343745],[5.061416183880246,51.71355297820108],[5.062456688439046,51.71384289654959],[5.06322793995967,51.71408579772224],[5.063867271877125,51.71428895119738],[5.063914221527719,51.71430386683854],[5.06451161931916,51.71449368796952],[5.065644350793268,51.71488789199265],[5.066944752829061,51.71539267072348],[5.067902444442235,51.7157631031052],[5.068851341660637,51.71617429367158],[5.068954318442596,51.71621891371951],[5.068951056542369,51.71622182613483],[5.070489849328076,51.7152577947131],[5.07177893488405,51.71441288848676],[5.072497237225249,51.71392655339328],[5.073405644925423,51.71337709320693],[5.073577090770096,51.713277653563104],[5.073936408788461,51.71304662051485],[5.074092521036447,51.712946240281674],[5.07420669165113,51.71286589114214],[5.074360138771572,51.71271970687709],[5.074694231018096,51.71247151697863],[5.075400306416454,51.711972008247486],[5.07686202469577,51.710972902546246],[5.078341454114507,51.7099683153259],[5.079575725983861,51.70913390224657],[5.081066560170418,51.70809591817838],[5.085843983400573,51.70488751102461],[5.095328393174816,51.69852368862416],[5.098855752909433,51.69612247777696],[5.099456343965877,51.69570200520523],[5.099833181885042,51.695406928432895],[5.100123271671623,51.695073697347134],[5.100321363183711,51.69480971275131],[5.100437507378381,51.694560789842754],[5.100510506750337,51.694311680369594],[5.100582051871442,51.694148192097686],[5.100625834230474,51.69396295553445],[5.10080191744051,51.6930684332545],[5.101143971588762,51.69152824668642],[5.101337305548656,51.690596687799484],[5.101591185760785,51.68957318851234],[5.101695037995034,51.68947223063209],[5.10173388910125,51.68924881621995],[5.10189469420576,51.68825715149563],[5.101929100199315,51.687908066345386],[5.101908828485668,51.68760007849989],[5.101897247452752,51.68743906549526],[5.101892021467253,51.6873642141598],[5.101803899842238,51.68686559380381],[5.101686505179834,51.68638854643838],[5.101645247574866,51.68593241209704],[5.101641896088198,51.685468801756336],[5.101756681645293,51.68461623929266],[5.101817518539784,51.683833745803376],[5.101926992517159,51.68293944527317],[5.101948944476884,51.68276015023973],[5.102092992514473,51.681573212582954],[5.102135716559815,51.68118569438254],[5.102167617228901,51.68069595900772],[5.102184726282362,51.68044269432823],[5.102191205219262,51.680382774443345],[5.102216065884447,51.6801728624064],[5.102240107633572,51.679964377547776],[5.102263253555917,51.67958344517149],[5.10233739375879,51.6792440650103],[5.102441945386992,51.678855438539124],[5.102519649326021,51.67859963346149],[5.102586272013784,51.67843896319539],[5.102738951560235,51.67807102814273],[5.102989679552781,51.67757485742351],[5.103136515332451,51.67732620371306],[5.103259719982446,51.6771244757025],[5.103531540758214,51.676700604898926],[5.1038517876267,51.67625400169329],[5.104339362692728,51.675705233370756],[5.104566251847675,51.67545638460328],[5.104570094715046,51.67545220520896],[5.104569721013556,51.67545185375383],[5.104540454992271,51.67542239057505],[5.104131080259777,51.67501013084671],[5.10452286504502,51.67463882493354],[5.104974119517855,51.67423744147763],[5.105377573915618,51.67390995304781],[5.105789072635702,51.67360377643639],[5.106231584035998,51.673291587515074],[5.106462524544352,51.67313648640152],[5.106348021337332,51.673104760984906],[5.103294205695535,51.67267350834998],[5.101628222578116,51.67242401730224],[5.101598515695899,51.67241922588576],[5.101753309162643,51.67223458273609],[5.102311602071461,51.67194302275827],[5.102088247710032,51.67114444827655],[5.101768273556661,51.67071129244207],[5.101994347039438,51.66983731031089],[5.102330265860254,51.66894608516228],[5.102718035069053,51.668349656891905],[5.102520578565709,51.66709825720571],[5.102248021151039,51.66633727902859],[5.102187939887038,51.666042218138166],[5.10202013816047,51.6651215247407],[5.101932963709175,51.66464891853235],[5.101780679452038,51.66378584318429],[5.101703107312173,51.663359092824514],[5.101630120415122,51.66293202099621],[5.101619377644226,51.66288218916548],[5.101600797740669,51.66279621318126],[5.101599346588287,51.66181138647318],[5.10160620603006,51.66163578460084],[5.101625703965511,51.66134450373086],[5.101780044996788,51.660470930627426],[5.10186098986246,51.66001278285283],[5.102370796121046,51.65712693161973],[5.103257522764236,51.65210654083004],[5.104953470801817,51.64250147436936],[5.105167491209412,51.641289061910875],[5.106137047054621,51.63595584185983],[5.105986369151217,51.63592142228213],[5.105830358603307,51.635889767167235],[5.10538377805068,51.635455676883055],[5.105233335619427,51.63530943887684],[5.104499781859234,51.63483600274253],[5.103708937521021,51.634444210412646],[5.102889438009832,51.63450797466681],[5.101928437684145,51.634266522513094],[5.101545113379311,51.63417020992024],[5.099205985193341,51.63359242725947],[5.098818815905417,51.63336438643302],[5.098573187169857,51.633100064848605],[5.098468831680442,51.63284340796133],[5.098470557769105,51.632572370236566],[5.098481501352779,51.63235312053705],[5.099599810522338,51.63238703664995],[5.099251502840108,51.63207716166854],[5.099180831400502,51.63201100256838],[5.098232140843152,51.63112313553894],[5.098325004601925,51.63106983765875],[5.098220726043826,51.630969752981194],[5.098071881551673,51.630982041400394],[5.096943037618663,51.63098391303079],[5.096787163883392,51.6308510975026],[5.096008596190026,51.631274332923184],[5.094472580372531,51.63077357670555],[5.094400342968064,51.63086631114794],[5.094372627610567,51.63090189058833],[5.094228035528465,51.63083934572025],[5.092324979665936,51.62996367155927],[5.09245598124849,51.6299186809726],[5.092852295774947,51.62985652428076],[5.092450246197276,51.62976556378203],[5.091781630124139,51.6296495164675],[5.090619183859531,51.6294478662368],[5.090638725743585,51.629277725655086],[5.090836184518846,51.62906825210613],[5.091003758681047,51.62890314223395],[5.091217578445359,51.62871123720108],[5.091195708907953,51.62843522298101],[5.090051026242028,51.62844376535644],[5.090086483424644,51.62833564162922],[5.09024697444799,51.62784732981191],[5.091046002792864,51.6254161223756],[5.09124002796911,51.624756274598646],[5.091587882069026,51.62396453881402],[5.091603830588365,51.62392823817757],[5.092804701220962,51.62414488769909],[5.093117295105979,51.62340096793269],[5.093389251652724,51.62275373455858],[5.089585080744515,51.62205175865062],[5.089122376738445,51.621968614157986],[5.087299972080745,51.62163094916818],[5.087171278637489,51.62160710516745],[5.087215973718576,51.62149761268653],[5.087302750712835,51.62128500288503],[5.086723009905417,51.62106401430152],[5.083966401878783,51.620013678493315],[5.083303155566127,51.61976095143535],[5.08327769750099,51.61979554540057],[5.083137678533745,51.61972827054076],[5.08057878352063,51.61874360728327],[5.08050334551823,51.61871466405562],[5.080073474580729,51.61854973739031],[5.078208217406234,51.61783887140314],[5.07806578530638,51.61793273187429],[5.078002474107738,51.61796171469637],[5.077921730095452,51.618014668985765],[5.077717242009814,51.61819667812873],[5.07749646041174,51.61840258046933],[5.077301352415734,51.618614473869044],[5.077173644741072,51.61872304165364],[5.076970521852536,51.61886710319562],[5.076560378910977,51.61920292642129],[5.076239593343721,51.61946558466579],[5.075146429719843,51.62028747002468],[5.074428340065407,51.62082026768268],[5.074428259303901,51.62079219603954],[5.074426287240722,51.61983443641289],[5.074432942116188,51.61965463704763],[5.074412470836273,51.618441767052694],[5.07440759674119,51.61741911966521],[5.074407507173797,51.61740070175944],[5.074375860324983,51.61739601500619],[5.074332748558463,51.61734532983333],[5.074332707688589,51.6172068241968],[5.07433267240481,51.61708216103667],[5.074368512864839,51.61700425366273],[5.074366962675333,51.61691918128983],[5.074364412430368,51.61678022849868],[5.074367296230155,51.61653377743249],[5.074410004207079,51.616534035400235],[5.074400129959589,51.616238562288636],[5.074393752438507,51.6160474113719],[5.074393890930606,51.61602314248616],[5.074394029422529,51.61599887360038],[5.074395175841052,51.61580123503302],[5.074393846601143,51.61545801025783],[5.074392837970184,51.61520019613923],[5.07438437314139,51.6149034863289],[5.074103853686573,51.61491387308373],[5.073725185694408,51.614944777988946],[5.073361113625441,51.61495490318003],[5.072427664598171,51.61498242723294],[5.071865904174284,51.614996618066584],[5.071867611816611,51.61505005099546],[5.071800449430864,51.61504734421197],[5.071770141520664,51.61496043250685],[5.071254701215192,51.61503234428694],[5.070346636062294,51.6151584534665],[5.070230209899559,51.61517024585983],[5.070417803111899,51.61477175813022],[5.070603871295973,51.61433065093769],[5.07077836931702,51.613898078307436],[5.07107193476467,51.6130404408149],[5.071098538138216,51.61296037915573],[5.071380554912328,51.61208838178893],[5.071675398969247,51.61095640452139],[5.071801551444458,51.61028120496147],[5.071845666009834,51.60998689264817],[5.070639344305696,51.60992834661786],[5.070751739255699,51.60903758175549],[5.070719604096043,51.60863816640259],[5.070653370340868,51.60758924889259],[5.070395194812209,51.60758985356562],[5.070373125369779,51.607798203990384],[5.070165422371392,51.60803143549154],[5.070195683212244,51.60815290880077],[5.069235077464159,51.608122204148266],[5.067740915859717,51.608036284260145],[5.067595388610382,51.60799497067365],[5.067504824919443,51.60796107887479],[5.06689261977587,51.60786133884963],[5.065115424197611,51.60770646756235],[5.064405454507629,51.60764309198504],[5.063557256493884,51.60757053899225],[5.063367325898319,51.60755808562763],[5.06308820010063,51.607534976109406],[5.061791471355362,51.60743003050768],[5.061623168348731,51.607417346814294],[5.060266523159366,51.60730039752609],[5.060231337746059,51.60731316193841],[5.060155102295758,51.607337191217425],[5.060076392768252,51.60735597316175],[5.059324395776923,51.60748871586233],[5.059064715661687,51.60753571755993],[5.058987726210136,51.60733458787512],[5.058950341973189,51.60716836421338],[5.058931078958791,51.60684794654687],[5.05893030248405,51.60668193342662],[5.058961955526292,51.606427122747846],[5.059038042236933,51.60615809981747],[5.059129238441632,51.60589553707634],[5.059210206764969,51.605625907496396],[5.059296969280393,51.60535735475112],[5.059390804799065,51.60497880095027],[5.059443816365904,51.60456433101548],[5.059438622598184,51.60450199830924],[5.059455719001526,51.60439133326527],[5.059410579960899,51.60437351720256],[5.059350745347135,51.60436581709787],[5.059181100585578,51.60437866279693],[5.059163942047735,51.60433012104517],[5.058577427435565,51.604389597964584],[5.057002994591181,51.60454924401346],[5.05039727822097,51.60522096804752],[5.050224198182545,51.605238824509826],[5.049970186391306,51.60322830651937],[5.04996031546677,51.60315420274705],[5.048850660168961,51.601383654000024],[5.04828213498138,51.600475666495626],[5.048010389780239,51.600041644746874],[5.052192215909129,51.59924842845855],[5.055495895062611,51.59862478078037],[5.055445279229622,51.598583208653835],[5.057011490764458,51.59852800860855],[5.057161805778249,51.59852270696211],[5.059401088054447,51.598392581728945],[5.060097161236264,51.59843458319882],[5.060433101486866,51.598454856471335],[5.060541624396279,51.598400535593925],[5.060975037755529,51.59821098810771],[5.061406452088346,51.598066178864315],[5.061901613082694,51.597959666077244],[5.062855045009903,51.597899122978404],[5.063152192121983,51.59791262930988],[5.063924261871373,51.597957029671484],[5.064212261324658,51.59797430123453],[5.065417986072537,51.5979306309623],[5.065843839800173,51.59791443536777],[5.06623546589884,51.59789312867591],[5.066466236097574,51.59786394622971],[5.066657861353663,51.59784539750407],[5.066876844198974,51.59781145393465],[5.06753803269265,51.59792699540832],[5.067744432111827,51.59790298422526],[5.068114719843927,51.597859905436664],[5.069682935311065,51.597677424022635],[5.069684076418215,51.59767729228992],[5.070175772439788,51.59764810023853],[5.070172257976143,51.597469405752015],[5.070169724764344,51.59734032216811],[5.070167703224135,51.59723716317706],[5.070120751518739,51.59724784926461],[5.070118890925583,51.597165049954214],[5.070131115369387,51.59704522869394],[5.070153524411996,51.59693020799266],[5.070161122797126,51.59690236383001],[5.070122266286202,51.596911238173114],[5.069716437653848,51.592110711557936],[5.068868183584182,51.59211517496426],[5.068124166410577,51.59198793643834],[5.067421421229102,51.59173843471425],[5.066097261348135,51.591124506359584],[5.064952644182887,51.59145684193269],[5.064388821716299,51.59088039229608],[5.0643355398097,51.59089316193014],[5.064246932388625,51.59081661281757],[5.064128776152151,51.59084484347601],[5.063250765124682,51.59014298261948],[5.059575084916581,51.59054677207079],[5.05922393957928,51.59058793586828],[5.057667468641696,51.59075880436339],[5.056923687594519,51.590840454022924],[5.056119282695184,51.590460909042854],[5.055912499557026,51.590363336210544],[5.055305788342055,51.59007705410996],[5.054995626368481,51.589930701575184],[5.054479667366859,51.58968722506291],[5.053618717288618,51.58928095846372],[5.053423391518924,51.58918878008872],[5.052612027808734,51.58880590111319],[5.051814611757492,51.58842958221212],[5.051748019614458,51.58839815573603],[5.051711078360895,51.58838071969303],[5.051124062516361,51.58810368558448],[5.050919270836205,51.588007035411394],[5.050342531408807,51.587734844805894],[5.049476105200246,51.58732592501264],[5.048897715153575,51.5870529404525],[5.048641557875555,51.58693203015203],[5.048354257771862,51.58679643151833],[5.048264937838425,51.58675427667271],[5.047913756389174,51.58658851470326],[5.047387161434127,51.58633996914729],[5.047295125878298,51.58629652029022],[5.047133959740574,51.586220448358],[5.04682114667119,51.58607289775492],[5.045150893844197,51.58528250770258],[5.042239409943966,51.58390741333651],[5.041704467841604,51.583654745527795],[5.04140260319137,51.58351216540872],[5.041267155477902,51.583443397224386],[5.041290419884725,51.583425551643344],[5.042193005673614,51.58282938440374],[5.04229849892613,51.58275970088643],[5.04214860682534,51.58278432815764],[5.042262786889304,51.58270309291456],[5.042491118354985,51.5825442354481],[5.042757511701882,51.582356492236016],[5.04316452048608,51.582069190309774],[5.043260567385897,51.5819985702879],[5.04359400830969,51.58176776891503],[5.0439413892581,51.58152276947937],[5.044011086506745,51.581448664812875],[5.043954744023808,51.58142231554333],[5.043787308981896,51.58142653412877],[5.043148392943746,51.5815243316937],[5.042439216427739,51.58163288485487],[5.040961532896173,51.581860490185875],[5.040875819293705,51.58187353963596],[5.040162034912195,51.58091495041112],[5.039639810074324,51.580234037304564],[5.039446480242153,51.579982337627115],[5.039365406299252,51.579992793050096],[5.039355956579857,51.579964540571375],[5.039359133295725,51.579964181483916],[5.03934812618404,51.57993206823993],[5.039251079072144,51.57994472324148],[5.039056836748834,51.57937784198484],[5.03916682277833,51.57936341892848],[5.039158559858913,51.57933846879971],[5.039202403130641,51.57933283752699],[5.039131123088737,51.579129158220944],[5.039090656794528,51.579014243669],[5.03905833024701,51.57895728521617],[5.039007321145529,51.578870222061475],[5.038934132150494,51.57875199209288],[5.038913780009729,51.57871009828549],[5.039027686248298,51.57868468492119],[5.039024285648694,51.57868038720929],[5.038968141069287,51.57858579423055],[5.038964699326514,51.57858686262199],[5.03891984795265,51.57859423460187],[5.038858604793575,51.57849106019752],[5.03873957346926,51.5782857822431],[5.038625617121825,51.57809233038151],[5.038742615794509,51.57806606360183],[5.038684667138581,51.57796798649435],[5.038635849494221,51.57797905886096],[5.038538164304016,51.57781418539369],[5.03840890189864,51.57759278688852],[5.038279964033427,51.577376252065456],[5.038395851917241,51.57734976659308],[5.03856089091598,51.57731188609445],[5.03845325321176,51.57706062884509],[5.038305340225373,51.576715337856086],[5.038087747801437,51.57620735971172],[5.038050206893827,51.57611416110272],[5.037760796283798,51.57539037490859],[5.037557883324033,51.57509645054341],[5.037456040827813,51.57494822865737],[5.037350689607148,51.574794908602335],[5.037196253263047,51.57483198316896],[5.036886056580784,51.57490001543698],[5.036872258698533,51.57490280553484],[5.036688421616637,51.57493998012179],[5.036316705448108,51.57500524674563],[5.036307029273194,51.574986143778865],[5.036306872610288,51.57498588263772],[5.036258602761008,51.57490588255127],[5.036255625898753,51.57490095682165],[5.036060625462852,51.57457776850928],[5.03602696083286,51.57453058482769],[5.036149784216049,51.57451119648848],[5.036157373598691,51.57450165533439],[5.036168712223736,51.574488556935066],[5.036183521782811,51.574466848827015],[5.036198789792378,51.574451146518044],[5.036278691894203,51.57439514424787],[5.036306337659805,51.574381195898304],[5.03634100730587,51.574358073214746],[5.036355558369266,51.57435300231951],[5.036383445977286,51.574339486132914],[5.036471143624033,51.574305079899744],[5.036484094955599,51.57429794578792],[5.036489383412567,51.57429307181564],[5.03649065200849,51.574280104983146],[5.036503920665441,51.57427484146203],[5.036579226642853,51.57434881021964],[5.036713079306444,51.57429647496091],[5.036813589323734,51.57425793612895],[5.036829128620724,51.57425190634898],[5.03721578593025,51.57410196469821],[5.037240059293453,51.57409878343974],[5.037258161992828,51.574097039875575],[5.037276325733192,51.5740967346769],[5.0372943895566,51.57409816398779],[5.037307137254721,51.5741005841214],[5.037320155238475,51.57410536907985],[5.03733447829545,51.57411301633479],[5.037351976912244,51.574126021340014],[5.037375579984943,51.57413869404448],[5.037201584452764,51.57396250808073],[5.037186211787446,51.573946938658366],[5.037140666414286,51.5739008073671],[5.03709390437773,51.5738534589464],[5.037049217889289,51.573808211078635],[5.037004517134385,51.57376295416202],[5.036958957636107,51.57371683174486],[5.036913598651911,51.5736709076607],[5.036867581351639,51.57362431642564],[5.036823310441642,51.57357948319297],[5.036777221757807,51.573532819798494],[5.036684729897712,51.57343915943085],[5.036664376575925,51.57341855034936],[5.036386316640375,51.57313698273312],[5.036504726234157,51.57309277208229],[5.035827691288697,51.57264918091016],[5.036124393685244,51.572431018285606],[5.036221715309737,51.57231182411948],[5.037205427230186,51.57263292588713],[5.037696654309931,51.57312888814126],[5.037600227188265,51.57316589388483],[5.037695866379819,51.573268749344216],[5.037701832274966,51.57327515811053],[5.038749505866921,51.572882100116544],[5.040717439813274,51.57214373985935],[5.040606791413264,51.571226703455956],[5.041020824634962,51.57101703781905],[5.041885962508032,51.57057893543916],[5.042013738839675,51.570522926791696],[5.042134009810855,51.57048080131779],[5.04224365969211,51.570446895982506],[5.042337209631822,51.57042471821418],[5.042348263939364,51.570422099156715],[5.042442299093436,51.57040249349222],[5.042532409293769,51.57038879072324],[5.042572694102816,51.57038330052045],[5.042805057363725,51.57028930747441],[5.044018075833149,51.56979868583987],[5.04397721589868,51.56965897202947],[5.043796217296836,51.56900576502058],[5.043630685702729,51.56841167661229],[5.043582527744124,51.56819027920942],[5.043472610888069,51.56784865668879],[5.043340628779206,51.56738884915904],[5.042787770606663,51.56640245123992],[5.04276388198117,51.56635359041487],[5.04263902129676,51.56596418422694],[5.04239318569888,51.56562998017442],[5.042038935247665,51.56514838310268],[5.04025772115097,51.561918176135315],[5.04013854602377,51.56172900651661],[5.040102054371437,51.56167879536493],[5.040063813948547,51.56162909136389],[5.040006431516186,51.561559294773275],[5.039886853022833,51.56142880171713],[5.039774388706344,51.561320432809524],[5.040908174704892,51.56107930428091],[5.040841320004285,51.560958046885986],[5.044026957639909,51.56028685378378],[5.043956648906327,51.56015800160507],[5.043784098354343,51.55984205563966],[5.043743418215364,51.559767572906125],[5.043660539444935,51.55961923213981],[5.043645659571371,51.55959224039414],[5.043590638346249,51.55951492898019],[5.04354033772864,51.55947128498765],[5.043534603976075,51.55947435124865],[5.043531318323367,51.55947214835658],[5.0435024643968,51.55945286375115],[5.04325493331448,51.55928736461187],[5.043251905891768,51.55928534224479],[5.043194944722221,51.559245354874385],[5.043125966334334,51.55920412763241],[5.043055891137967,51.55915160735341],[5.042879173629883,51.559019573883376],[5.04290080807112,51.5590114668899],[5.042769243177977,51.558898280606144],[5.04263207165156,51.558741069126114],[5.04253831954269,51.55847755963263],[5.042460011888417,51.55825214463164],[5.042428165170506,51.558159943833765],[5.042627445880861,51.55813224393345],[5.042746407862069,51.558115713728235],[5.042656628569979,51.557887451604095],[5.042573710774858,51.5578991531808],[5.042408654475555,51.557922459580624],[5.042406508944971,51.55791825554499],[5.041975284919673,51.557977764514575],[5.041818063719069,51.55799275172891],[5.041792402410033,51.55799379052034],[5.041615090065375,51.557988421691626],[5.041560873993989,51.557931084505874],[5.041783439290806,51.55784883072653],[5.041855478586815,51.557818931477996],[5.041912080472414,51.55779196184777],[5.042059260120832,51.55771492304431],[5.042196719339087,51.557641792412184],[5.042605668745919,51.55744817793919],[5.042795928296751,51.5573508159428],[5.043060824110603,51.55720780415482],[5.043293657118259,51.557076993966504],[5.043215527287361,51.55715549589703],[5.042824452753705,51.55736959639331],[5.042768440743105,51.5574025906107],[5.042729564039155,51.55743309149166],[5.042772622206528,51.557457793362],[5.042934139001763,51.55740085840403],[5.042976715179264,51.557378799719025],[5.043027111760179,51.55735039107179],[5.043255224256709,51.5572260928389],[5.043351326231619,51.55717170640573],[5.043511603496321,51.55707634044279],[5.043795410776041,51.556897535766616],[5.044141034749681,51.55666123149928],[5.044291629951453,51.55655097778984],[5.045380931033721,51.55576378468139],[5.046428611395766,51.555022464161276],[5.047142761065706,51.55486112041361],[5.047602643438263,51.55415908463705],[5.048557456190002,51.55346553772533],[5.049931135119038,51.55246953681907],[5.050472572770778,51.55207664762755],[5.050155788122666,51.5518182992898],[5.050203509482698,51.551783677661405],[5.050208438213989,51.55178009639956],[5.050213221432897,51.55177669449149],[5.050228727178725,51.55176613255133],[5.050187162101575,51.551732754661955],[5.050340558758666,51.55162161137349],[5.050346444166551,51.55161734073455],[5.050399716760276,51.551578744050325],[5.05209401374577,51.550351113021385],[5.051893423847118,51.5504287932711],[5.054215830163505,51.54875046854724],[5.055270245954937,51.547990481588634],[5.055615009412882,51.54774197935676],[5.055730707501393,51.54765858696297],[5.05561607767963,51.547595565910676],[5.05559453887987,51.54758372066973],[5.055616278294374,51.54756807013228],[5.055757033609431,51.54746670851429],[5.055880458416883,51.547541475582754],[5.056468311899895,51.547114407415265],[5.056727935197025,51.54692893227635],[5.056961679630805,51.546753244035436],[5.057106377048359,51.54665222451278],[5.057386636048131,51.546473179146965],[5.057640969305891,51.5463322978396],[5.058035606953505,51.54605326870846],[5.058319869821283,51.54584584615711],[5.058340282654987,51.545895736779066],[5.058639603217256,51.54567901657873],[5.058892026515937,51.545496042224876],[5.05890491909095,51.54548743132825],[5.058926113959584,51.54547901452849],[5.058953161344028,51.54547664555681],[5.058972320732515,51.54547859596101],[5.058989700227594,51.545483471672135],[5.059049033290042,51.54551394803683],[5.059101448931981,51.54554011736084],[5.059119995684724,51.545543063763986],[5.059144733792741,51.54554506575039],[5.059166414269385,51.54554127044719],[5.059191242872931,51.54553073348031],[5.059209907879972,51.545517293851944],[5.059287666862272,51.545461593459315],[5.059379392970033,51.545400161454616],[5.05948664905631,51.54532816628063],[5.059626495773288,51.545244693912984],[5.059738351333203,51.54517849111256],[5.059845509648549,51.54512191989737],[5.059887445599951,51.545097938688805],[5.059934044776936,51.54507299974316],[5.059975980636451,51.54504901850266],[5.060017916955612,51.54502696981293],[5.060080039546079,51.54499436197328],[5.060213560532659,51.5449282283298],[5.060239965694721,51.54491287762215],[5.060329390789415,51.544954574460704],[5.060452150832118,51.54489731823046],[5.060505229088757,51.54486741744229],[5.060601090781658,51.54482389248411],[5.060738851007675,51.54476949131341],[5.060887474136901,51.54470995181637],[5.061065307771234,51.544645792549616],[5.061208805732526,51.54459522701864],[5.061337101065138,51.54455180987367],[5.061469358818337,51.54450862834566],[5.061594004698692,51.544471492820975],[5.061752227552947,51.54442592039391],[5.061894155501609,51.544389066365476],[5.062029935732992,51.54435511638341],[5.062138625710245,51.544329621169325],[5.062259223313965,51.54430206459247],[5.06225961126911,51.54429820953066],[5.062275861429775,51.54409404106434],[5.06229242032026,51.543905145204505],[5.062300350626954,51.54380810756487],[5.062320966949993,51.5435920322404],[5.062327651631596,51.54351597069605],[5.062337782317902,51.54342568965896],[5.062358595078603,51.54316392544604],[5.062326508282209,51.54316769242042],[5.062326643495328,51.543162892845075],[5.062172508078373,51.54318790233818],[5.061249270903791,51.54325849955786],[5.061162747816375,51.543262743625014],[5.061060395066995,51.54326719514931],[5.060910680508494,51.543272628994934],[5.060776633105796,51.54327638956075],[5.060650392741697,51.54327899426488],[5.060563588287414,51.54328025286315],[5.060421515980635,51.543281374894924],[5.060342604946181,51.54328149585465],[5.060240027324706,51.54328111911431],[5.059948921361292,51.54327917198663],[5.059548695800951,51.5432764868867],[5.059549729175246,51.54336310464],[5.058883351115379,51.54336625069683],[5.058885223464545,51.5432706883769],[5.058208102992432,51.543266447674355],[5.057415707577732,51.54326148240456],[5.057240549889113,51.54326088027774],[5.05616160720615,51.54325356028937],[5.055647779789091,51.54325007266258],[5.05510900063433,51.543246404031485],[5.054935548234271,51.54324522801826],[5.054255331876083,51.54324060504964],[5.05390907586097,51.54323825208075],[5.05381277193642,51.543233555042505],[5.05374178251175,51.54322479534669],[5.053651746527281,51.54320673191662],[5.053593282137989,51.54319039445878],[5.053509826063371,51.543159684652274],[5.053445802385381,51.54312893139247],[5.053394046697782,51.54309812324238],[5.05334308899351,51.54306073763731],[5.053309047528034,51.54303025868736],[5.053256023359184,51.5429680763729],[5.053099764077399,51.54274408150787],[5.052668311533938,51.542125595179755],[5.052158075976144,51.54139408251388],[5.05207921012568,51.54138655763994],[5.052005814007076,51.541380109061045],[5.051881283969539,51.541370358742796],[5.051790472686894,51.54136419265256],[5.051671053348108,51.54135729719627],[5.051545701242067,51.54135152614476],[5.051414472492675,51.541347086379844],[5.051254577912513,51.541343885424446],[5.05111749882732,51.541343068927176],[5.051020425580976,51.541343571810955],[5.050974769769246,51.54134411465205],[5.05088352582588,51.541345793728134],[5.050832228273936,51.54134708431941],[5.050752524506557,51.54134958750314],[5.050701337538507,51.541351516551394],[5.050688037206575,51.54128859347107],[5.050625992634214,51.54099506932544],[5.05067961713984,51.54088580452936],[5.0507217965661,51.540799850362895],[5.050697865303012,51.54079245570206],[5.050528696324417,51.54074943417032],[5.050286030065275,51.54070605676335],[5.050013657608264,51.540679914350946],[5.049798445307271,51.54066657438526],[5.049600912896477,51.5406502918548],[5.049603406265871,51.54064063622565],[5.049777915385537,51.53996216221601],[5.049741749546582,51.53991557735268],[5.049665477390604,51.5398173355866],[5.049434921420003,51.53969684152654],[5.049180632897981,51.539656879876524],[5.04874620416198,51.53969893028952],[5.048537006256187,51.53971866576921],[5.048459492096843,51.53967529550328],[5.048349979196744,51.53967048375677],[5.048276253814984,51.53967383852334],[5.048312801455751,51.539765655990635],[5.047812819305183,51.539816699301745],[5.047571539416252,51.539146988987504],[5.04749106934711,51.539009497993945],[5.047466156209397,51.53897938541647],[5.047405616466664,51.53890618540135],[5.047321876728645,51.538828270750614],[5.047290113050509,51.5387987045025],[5.047122982518013,51.53866381062592],[5.046944249315723,51.538494312263566],[5.04680731681715,51.538249861886165],[5.046762654956347,51.53818353017597],[5.046978045242325,51.53815599575422],[5.046943247621742,51.538061989705746],[5.047003036961319,51.538052240227955],[5.046910585570707,51.53781557776892],[5.046662889515022,51.537840087640326],[5.046591327047357,51.53753784142708],[5.046661605327277,51.537338083962474],[5.046661047021203,51.5371874949353],[5.046620770218341,51.537034309307586],[5.046601006500504,51.53697120509811],[5.046495629220977,51.536919347894504],[5.046207508083556,51.536009994524385],[5.046022628443781,51.535505189855826],[5.045848466516444,51.53505156178269],[5.045822496557736,51.53499755382909],[5.045662096787075,51.53512984811754],[5.045374712258459,51.53447894632966],[5.045146258722436,51.53396151846933],[5.044935272237551,51.533485075757525],[5.045155710817693,51.53351167140008],[5.044903039065726,51.53293855014398],[5.044598980071035,51.53224690566822],[5.044317449950082,51.53159808562733],[5.044165281360175,51.53119627622942],[5.044038524232783,51.53089931337812],[5.043689330396792,51.530211021453205],[5.043684686979349,51.53019043269705],[5.04365605589674,51.53012312213871],[5.043588760739218,51.52997936596102],[5.043466935416673,51.52971914473083],[5.043346375621882,51.52945945742157],[5.043321459110333,51.52940797779748],[5.043230463778838,51.52921990034672],[5.043173810701375,51.52911178842351],[5.043016607637406,51.528825404341475],[5.042897978310807,51.52861782966357],[5.042627118683539,51.5281473363767],[5.042430109451333,51.52778637178738],[5.042288263519845,51.52752648569854],[5.042242772336691,51.52745585312948],[5.041984499257941,51.52701859067177],[5.041957392099497,51.52696752673895],[5.041819754937165,51.52670820079775],[5.041778512575544,51.52663047054155],[5.041570260799952,51.52619387630195],[5.041390457083659,51.525751738928506],[5.041366022737217,51.52567910090836],[5.041298469465509,51.52547826437135],[5.041240301343712,51.525305338500196],[5.041120119647206,51.524855269351946],[5.041030117964167,51.52440275465024],[5.040970422830158,51.52394809146805],[5.040941024926074,51.52349238543538],[5.040939489434821,51.52323607725223],[5.040936530292764,51.52310240659581],[5.040947998777213,51.52283192580913],[5.040940207677172,51.52281434780338],[5.041012412958986,51.52280462921751],[5.041016659609747,51.52275026019399],[5.041028441593743,51.522599419852206],[5.040973671636006,51.5225920756296],[5.041017479561723,51.52247407598268],[5.04103678529435,51.522417567313646],[5.041053988316247,51.52234009976474],[5.04108828747889,51.52215753309276],[5.041124571410514,51.52193943098527],[5.041190898522536,51.52166809688093],[5.041253362601959,51.521427169045054],[5.041314802928799,51.5211995144463],[5.041380961500773,51.52098416132269],[5.041396355854343,51.520934076921385],[5.041402216268296,51.520919415722844],[5.041614276684666,51.52038873920137],[5.041731656605124,51.52013315112706],[5.041823285211814,51.51992726622642],[5.04186186574859,51.519850023526146],[5.041902833372649,51.519841695213536],[5.041884820645882,51.519804096201455],[5.041948667498779,51.51967627682798],[5.042484581756811,51.51868838323534],[5.042799038874546,51.51806487465383],[5.042908681439163,51.51785146450781],[5.043079953662031,51.51756620034646],[5.043276919493281,51.51722085020451],[5.043560077871444,51.5167022354154],[5.043671729672363,51.516496569723266],[5.043845969916846,51.51617561004698],[5.043897864380821,51.51608004187707],[5.043894713439408,51.51604894970146],[5.0442033358467,51.51549113652504],[5.044266790694622,51.51537542249524],[5.044320735846966,51.51527704669129],[5.043360291365889,51.51534008461565],[5.043241174490134,51.51528524454701],[5.043199541069992,51.515001186960845],[5.043138181347008,51.51460724734054],[5.043079802976797,51.51421925798521],[5.043006928122101,51.51373862429861],[5.042951438086316,51.51338234650401],[5.042827710996573,51.51347481721009],[5.042711777701839,51.5132704409567],[5.042491517467029,51.512891241223855],[5.042206155555868,51.51239695527599],[5.04194003139741,51.511940603836976],[5.041424781709,51.51105458289332],[5.041001905005973,51.51032531765266],[5.040955377323276,51.51025522070375],[5.040852115397644,51.51012179195284],[5.040372746233199,51.50950597408776],[5.039730730938939,51.50868494387049],[5.038798593627006,51.50749343864906],[5.036585510863081,51.504658611216804],[5.035462591251024,51.503209195144045],[5.034381970306753,51.50181925717734],[5.033968973155215,51.501288124596066],[5.033222692539728,51.50128495784178],[5.033069457439475,51.50110495288993],[5.032792823492206,51.50079593596836],[5.032439823071422,51.50059182746678],[5.031462038681572,51.50000149553889],[5.030738724504785,51.499578717713554],[5.029824526178383,51.4990393252241],[5.029170687103956,51.498656624058064],[5.028528480451552,51.4982739639026],[5.027579409229661,51.497711219749704],[5.02721719860949,51.497774436346646],[5.024865943051884,51.497323618604376],[5.025441069338396,51.496546744425146],[5.025728742542326,51.496143520171444],[5.025917269807718,51.49586653178474],[5.023890962144157,51.496228173326095],[5.022976136550938,51.49637948097169],[5.021960596668825,51.4957005200845],[5.023250492216637,51.494244337546924],[5.024328717351562,51.494218865279265],[5.024190504568071,51.494170409096405],[5.023499200685021,51.49395690685328],[5.023008866984713,51.49364796481273],[5.022872964241249,51.49331130888695],[5.022847854747079,51.492600339523634],[5.022796330676798,51.4913417037153],[5.021442497166173,51.48926243416687],[5.021291691043494,51.488868084878554],[5.021147768771729,51.48853653421146],[5.019784654084565,51.48846171061393],[5.017489090283486,51.48834317731007],[5.017398705673627,51.48833883725259],[5.017308321081185,51.4883344971252],[5.01734948648393,51.48727282507419],[5.017395664468411,51.48617340715821],[5.017408047917757,51.48605444459197],[5.017411218853574,51.48596184376209],[5.017412660264938,51.485919097932964],[5.017416447307993,51.485805591270044],[5.017430723333115,51.485338384370955],[5.017468474511697,51.48424791035886],[5.016803041561266,51.48420717725658],[5.015434343771298,51.4841222803784],[5.013047170539978,51.483983044016306],[5.011562748046464,51.48389507024412],[5.011330402216845,51.48387739690867],[5.010596034002536,51.483829754855044],[5.009876778064963,51.48395998111199],[5.009160969104119,51.48409243432037],[5.008604044330374,51.48389181742676],[5.007960640025972,51.48366403176723],[5.007669020153973,51.483358653976325],[5.007579356673474,51.483265670723746],[5.005668426839907,51.48128664064254],[5.004872686675252,51.48046149685315],[5.004899613302385,51.48042124355144],[5.005375361812889,51.47971011898719],[5.005922834417127,51.47890003595952],[5.006537844603202,51.47848917163085],[5.007617218803258,51.47778671864347],[5.007947975676672,51.47756095351942],[5.009856174021708,51.47591959845987],[5.009749148319609,51.47588549985342],[5.009741711879067,51.475883120766674],[5.006575767656666,51.47497531853169],[5.006671212732552,51.47489269948811],[5.005971676765748,51.474469286287174],[5.003717213198465,51.4731046400926],[5.00072883652598,51.47129553752703],[5.000182837692719,51.47096839941451],[4.997961906715095,51.46963763067197],[4.9963593616408,51.46867734869542],[4.995542701217716,51.468187961255396],[4.995553490746855,51.468180087348664],[4.9944129194118,51.46749750639867],[4.993487040199515,51.466943386487245],[4.992939823515609,51.46661599431799],[4.992086236987483,51.4661050645234],[4.990689351825502,51.46526891416354],[4.989023441109564,51.46427173100902],[4.989365513639408,51.46298197715191],[4.9893969279054,51.46239196342908],[4.989525679727842,51.459973132317096],[4.989549970942819,51.4599712105683],[4.989688673929948,51.45995894587167],[4.98984454222629,51.45994677539225],[4.989852219100008,51.45982383533102],[4.989740125333888,51.45983241554022],[4.988638652295201,51.459916741092165],[4.987422474404301,51.46000983204373],[4.985826679791557,51.46013196081509],[4.986144779909853,51.45930177366748],[4.986339016401786,51.4587963916536],[4.986612466451997,51.45808873744766],[4.984915101677842,51.457336806532155],[4.98487501141129,51.45731287512185],[4.984864836207095,51.45730829174049],[4.984825366731518,51.45729064559613],[4.984843381072466,51.457275957131635],[4.984971767860937,51.45717977039705],[4.985117393312239,51.45707682043022],[4.98519175415611,51.45702597542921],[4.985298401091915,51.456965434802946],[4.985392295870232,51.456911870409094],[4.985635200441995,51.456774315283276],[4.985861747571239,51.456642923640366],[4.98597178538876,51.45658598057463],[4.986380921155228,51.456394945717086],[4.9870223206741,51.45608727671941],[4.98712350790917,51.456036801104794],[4.985404866126526,51.45514221540555],[4.98516625063891,51.45501797814932],[4.984992012716017,51.4549272296426],[4.983476782790433,51.45485176081],[4.982576538599625,51.4540356191608],[4.981853479954919,51.45337725440674],[4.981593883867339,51.45314087400222],[4.982927159488288,51.452700654271645],[4.982686628935161,51.4526727917646],[4.982026256388973,51.452590645237855],[4.980131074384464,51.452353417748085],[4.979158759421437,51.452230049835194],[4.978852452969572,51.45119774243822],[4.978807316434959,51.45104437099315],[4.978796845652889,51.45100878378451],[4.978410440901647,51.45095302216279],[4.978442142033787,51.45093928149098],[4.978459486078432,51.45089822760562],[4.978363700884533,51.45077973480421],[4.978226259344227,51.45060932966369],[4.97811271967432,51.4504703609509],[4.978031348964098,51.45036973412505],[4.977851600336645,51.450148106039975],[4.977802729197119,51.45008585820693],[4.977765763249056,51.45007077123588],[4.977725799461353,51.45006751194385],[4.977700236205045,51.45007064024196],[4.977597534988345,51.450104203500466],[4.977384577491599,51.45017154591832],[4.977273309922937,51.45020579791705],[4.977263721999403,51.45020815525661],[4.977122914870879,51.44964025363467],[4.976869969507371,51.44849778203957],[4.976747181894044,51.448037008460304],[4.976638628426251,51.44762201966399],[4.976622620721149,51.44756739253267],[4.976257420628377,51.44616383213095],[4.976201754470099,51.44594179325409],[4.976025063791004,51.44523584900132],[4.975872280166039,51.444624496642895],[4.975755790523006,51.444158269890856],[4.975018554808372,51.44410323708345],[4.973890210569953,51.44401562419899],[4.972844140905483,51.4441265039669],[4.972575748117888,51.44415489914466],[4.971294127516862,51.44428982689292],[4.971085292408675,51.44430619714406],[4.970989092637426,51.44431861818208],[4.97092752983907,51.444258605295865],[4.970605016992059,51.44430483438602],[4.970090484936112,51.444392354077884],[4.969305640260449,51.444580495086264],[4.969284817437991,51.44455164745771],[4.969168592461629,51.44457832339813],[4.969087691281377,51.44461012353206],[4.968941740766665,51.444659542221],[4.968740456103323,51.44472277584753],[4.968683755238363,51.44473977705531],[4.968667699817277,51.44471655540717],[4.968512135156539,51.444752384009966],[4.968527837850232,51.44477484935721],[4.968095695040554,51.444877469292024],[4.968082586258453,51.444860766017605],[4.967945478169408,51.44489320845344],[4.967697734890754,51.44495116776387],[4.967706814522901,51.444963335245916],[4.9674753942768,51.445020013425754],[4.966995193898993,51.445137629513255],[4.966992886359624,51.44512268185953],[4.966944505787602,51.44464594971453],[4.966931929699825,51.44451693346647],[4.96688384714264,51.44444163212228],[4.96692274518046,51.444431938478566],[4.966644047678216,51.44274402874152],[4.966839411215389,51.44205578769994],[4.966938769701005,51.44190162843869],[4.967407207642585,51.441175591869175],[4.967820744782184,51.44054496079488],[4.966595326408913,51.44047963386365],[4.966419541863448,51.440466712541486],[4.966093080279276,51.440444573189495],[4.965834058597381,51.4404319978009],[4.965548254472008,51.44041958574992],[4.964493631672693,51.44038462452195],[4.964288726671662,51.440383666439374],[4.962834349321112,51.44037462971097],[4.962587477682867,51.44037028905885],[4.962578985059926,51.440636568768745],[4.962572915071686,51.44079717619465],[4.96255190633726,51.4408244346351],[4.962414193762577,51.440956571913866],[4.962025818667724,51.44131757630165],[4.96158675684697,51.44172718566798],[4.961632073278753,51.4417431891539],[4.961455596170402,51.44231989487258],[4.961379941381646,51.44251820798621],[4.961304744489623,51.442801367817154],[4.959380450882052,51.442051694618314],[4.959328734399652,51.44208470958534],[4.959026794093925,51.442294694766495],[4.95851982393773,51.44210277489584],[4.958382096320494,51.442049864322215],[4.958345024207972,51.44207953490262],[4.958322423342564,51.4420723597013],[4.958086706332506,51.44199601443775],[4.958068838894833,51.441990240863575],[4.957667612154869,51.44186051290898],[4.957676656233265,51.441851683255415],[4.957418472770997,51.44173281790448],[4.956933018124385,51.44151048037759],[4.956937205752146,51.44148130923769],[4.956010198746704,51.440999666648246],[4.955908294815662,51.44093271017531],[4.955791737239225,51.440857897180116],[4.9550870608965,51.44044876338043],[4.955013743733295,51.44025383076762],[4.954969242991134,51.44009760267768],[4.954924283127242,51.43992763800442],[4.954879782099068,51.439759373891334],[4.954867093758674,51.43972630209049],[4.954755764161789,51.43971947161463],[4.954755377540123,51.43973293538215],[4.954479275433853,51.439678015190154],[4.954247381493528,51.43966298879101],[4.953961947347271,51.43964424856761],[4.95342061619446,51.43960736121135],[4.953134054426005,51.43958929791686],[4.953064462648078,51.43958412218691],[4.95309212397914,51.43945690791844],[4.953181876360414,51.438948889928554],[4.953232601577056,51.43894908755729],[4.953288510046733,51.43862536655078],[4.951956672049112,51.43874722973123],[4.951330824622945,51.43880390528683],[4.951291710932822,51.438810734491526],[4.950978929587804,51.43884441527332],[4.950926913454423,51.43884987477451],[4.951064070673116,51.4385365888686],[4.951103731954988,51.43845596383988],[4.951240019440112,51.43819125887363],[4.95124716355796,51.437952552345216],[4.950999938531357,51.43761086356123],[4.950858571645176,51.43801109119989],[4.950838859914565,51.43806001537907],[4.949636555302987,51.43831105578237],[4.948525304981286,51.43854283956343],[4.947296415059481,51.4386682005574],[4.946103106201607,51.43855516556916],[4.94609708250819,51.43857422600243],[4.94605109454546,51.43857053754958],[4.945165880828456,51.43849850453274],[4.945171210214322,51.43847099205331],[4.945163353205633,51.4384254520448],[4.945068480706077,51.43818442675639],[4.94498241497281,51.438028990071444],[4.944920067571652,51.43792675798111],[4.944868841935943,51.43785819508067],[4.944801204676729,51.437767583358415],[4.94473140859314,51.437697898305565],[4.944672177277572,51.437649601653],[4.944241503477837,51.43736412862212],[4.94406583170318,51.43725714224201],[4.943992120179025,51.43719837224255],[4.94393149389732,51.437130986704915],[4.943919346005225,51.43712309334522],[4.943875383592654,51.43709910604275],[4.943861247414641,51.437091582652805],[4.943843017919797,51.437082012242605],[4.943819220299534,51.43706972403621],[4.943785244303402,51.43705258814641],[4.943705223935251,51.437014090684045],[4.943580666862628,51.436958938423416],[4.943431426113201,51.43689983597285],[4.943294791787645,51.436851774578464],[4.942760575590451,51.436682369896765],[4.942581455019505,51.43661553005351],[4.942189683746363,51.43645466540821],[4.942553234318105,51.43561622825096],[4.942578248073922,51.43549928946614],[4.942755006942792,51.435114613226034],[4.942891518944839,51.43513331740676],[4.943013535248415,51.43515344041312],[4.943057962925034,51.43516043201138],[4.943138752775732,51.435172694571726],[4.943243503573017,51.435187744875705],[4.943313632132361,51.435197548767974],[4.943495880899968,51.434898195951874],[4.940989601541249,51.43400818680791],[4.940782085759565,51.43398454358956],[4.940924096762378,51.43320748405476],[4.940568764984929,51.433176551412096],[4.940398762761217,51.43235711113597],[4.940172554513157,51.43234285144863],[4.940092089706074,51.43233616111591],[4.93993594344232,51.43231893343588],[4.939806325954494,51.43229470611454],[4.940084683100958,51.431595725528304],[4.939239949723998,51.431438867085554],[4.933598602085364,51.43102120656707],[4.932521768882499,51.430799117954706],[4.932340350384686,51.43076174556421],[4.931047700739133,51.43049521510011],[4.930943055607028,51.430473951939646],[4.930839629610849,51.4303337715933],[4.930723504402128,51.43008324886043],[4.930594462162175,51.429973979442764],[4.930578634066587,51.42993051057247],[4.930581361854644,51.42989361322171],[4.930584289012379,51.429854037987695],[4.930763674349599,51.42988572424836],[4.931078051547256,51.42993944821179],[4.931444454213803,51.430039307327476],[4.932030701825787,51.430199079521394],[4.932575372985122,51.43031932480888],[4.932674303715783,51.429840661015234],[4.932833344782417,51.42908721881313],[4.932926088686471,51.42852900675561],[4.933104962026052,51.428540992967996],[4.93320061244182,51.42854390901206],[4.933721625816675,51.4286831042213],[4.933829918233972,51.428711821798764],[4.933923969597889,51.428736771577775],[4.93418330599881,51.428794084605244],[4.934454433127701,51.428852943935134],[4.934488625386762,51.42886036652141],[4.934642069701095,51.42890358666852],[4.934733105088143,51.42893259602179],[4.93485150106669,51.42897934740671],[4.934966405561339,51.429021500849686],[4.935444769096848,51.42926197062576],[4.936164557552733,51.42840912924123],[4.93739767705703,51.42884319453615],[4.93744554313458,51.42880994071262],[4.937562081560878,51.42872888840969],[4.937621472420416,51.42867886088053],[4.937659850729586,51.42863656363454],[4.937764051888842,51.428507274640936],[4.937859432264836,51.42838878309004],[4.937864966213054,51.42838169426049],[4.937901184769587,51.428335262759134],[4.937916359748512,51.428311410984016],[4.93794053142021,51.428273436487515],[4.937954982013773,51.428225321146655],[4.937951949017229,51.42815224850117],[4.937960399339019,51.42815563385931],[4.938370978376636,51.4276212028058],[4.938416263020216,51.427562221699176],[4.939823336614118,51.4278792669411],[4.940294303338761,51.42683215979806],[4.940535449949406,51.426892184559605],[4.940663926991143,51.42692415509872],[4.940875085999876,51.4263637023917],[4.940913585217132,51.42626153015043],[4.941085352416597,51.42580577173708],[4.941175310420268,51.42556692369641],[4.94117768505663,51.42555640688938],[4.941245882747636,51.4252548596256],[4.93997685041795,51.42517113449919],[4.939975821921076,51.42515432149948],[4.93640429918176,51.42483878679292],[4.936646651679713,51.424760630450585],[4.936715381166818,51.42470653156132],[4.937149620877568,51.423741182996366],[4.937497525137448,51.42297361328592],[4.937871163921757,51.42214655486986],[4.937968389089085,51.4219313507999],[4.937979075064751,51.421907616560276],[4.938142522984733,51.42154463969294],[4.938308511408184,51.42117598245774],[4.938491002747182,51.42077068717175],[4.93849444195599,51.420763059915856],[4.939042174926124,51.420752167425256],[4.939093581973372,51.42075114240905],[4.939520511892449,51.42074264205611],[4.939605825923647,51.42074094691522],[4.940000315304659,51.42073309338022],[4.940416215863809,51.42072479915813],[4.941181957060508,51.42069626829374],[4.941291826806061,51.420643070067754],[4.941526906099883,51.42052925322309],[4.941986299733438,51.42030682649972],[4.942231962677437,51.4196928667211],[4.942266811828206,51.419604379028684],[4.942354200540787,51.41938679673587],[4.942406297096377,51.41925593862788],[4.942493901070237,51.419038258173266],[4.942903936506825,51.41800408564635],[4.942913973369582,51.417904950405976],[4.943627644892779,51.41728307913831],[4.944310952257566,51.416687650173635],[4.944373192701057,51.41663342328951],[4.94690129165553,51.41578907402414],[4.948271534782855,51.415491935219855],[4.949328354675512,51.41465582234579],[4.949055928041552,51.41423023140175],[4.949652805519602,51.41391740517263],[4.951232048330404,51.41308967843404],[4.951075826492458,51.41296954342835],[4.948736098159192,51.41116818955042],[4.947983343321066,51.41058910342815],[4.94749681229701,51.41021481038618],[4.947485169932074,51.41020584960588],[4.947012515022438,51.40984222259891],[4.946948468658466,51.409792946961375],[4.946927381465019,51.409776723478224],[4.946680984878761,51.40958715415601],[4.946293246143292,51.409288833909486],[4.945657469355685,51.4087996761966],[4.945005255397961,51.40829950428986],[4.942887780645736,51.406675566709225],[4.942726588111239,51.40655233624043],[4.942499316437718,51.406378597202625],[4.94167134611819,51.405742742232086],[4.941445873306736,51.40556958326668],[4.940113029397689,51.40456782061537],[4.938136941614156,51.40308387072458],[4.936982084328669,51.40219552158075],[4.936676537057519,51.40196042581595],[4.936650095170774,51.40193999996509],[4.935259021788934,51.40086520961477],[4.934641214289295,51.400387521345806],[4.93399071407265,51.39988368908322],[4.933768495726294,51.39971278389865],[4.93318663138831,51.39926528614973],[4.932646262564893,51.398849695696974],[4.931111911147239,51.39766568474341],[4.930100877591578,51.396900517220274],[4.928978719501233,51.39605086774397],[4.928927410228444,51.3960248682145],[4.928740572751484,51.395930209677395],[4.928683779059797,51.39589949631443],[4.92821928033174,51.3982277514684],[4.928055937228688,51.39904642156178],[4.928035612043694,51.39906130792919],[4.927997982735597,51.39924497216884],[4.927897637115138,51.399734674492485],[4.927554778133846,51.39967202898501],[4.927210836151805,51.399570079070315],[4.926944859355117,51.39948463369607],[4.926705369223309,51.39940187208689],[4.926241434210519,51.39923804281581],[4.926205908952367,51.39922549782655],[4.92572215498424,51.39907935004932],[4.925438052259343,51.399003519446566],[4.924578942293054,51.39881675180853],[4.924428093607705,51.398783541892406],[4.924485307578344,51.39857588439857],[4.924536615615632,51.398169739224855],[4.9245862829621,51.397776513441464],[4.924838503163433,51.39733058037222],[4.924922381356184,51.3971571229728],[4.925021387142244,51.39698676368705],[4.925062926686985,51.396921696410196],[4.925235771140794,51.39665091874033],[4.925243883060483,51.396647319388215],[4.925262620135761,51.396638836246545],[4.926945320607945,51.39585978520217],[4.927853824520884,51.39543874414865],[4.92514940286451,51.394750006629984],[4.924630129725956,51.3946173854146],[4.924387426870431,51.39455539734886],[4.923361633103585,51.394293387536294],[4.923195242111301,51.39425141297093],[4.922089559634775,51.39397247166835],[4.922065009846849,51.3939662703399],[4.920959459649487,51.39368697722858],[4.9209413773947,51.39369047349794],[4.919928251318547,51.39388607825466],[4.918757932749858,51.39411605439264],[4.918738510629818,51.39411986853679],[4.917298369318845,51.39440282264083],[4.917271589689892,51.394408090051336],[4.916456375727168,51.39456859663053],[4.914711216262083,51.39491271463369],[4.913848975759352,51.39507679678261],[4.915386929553502,51.39533260397349],[4.916886668193443,51.39626852921372],[4.91693085235721,51.3962964918599],[4.91698366402847,51.39632945110854],[4.917805646123733,51.39684238400502],[4.917977500813866,51.39683695418617],[4.918253595236423,51.39682822194111],[4.919195735969253,51.39679678832123],[4.919195980328521,51.396796780313046],[4.920122904440307,51.396767983775476],[4.920179939735289,51.396766207681644],[4.921298184929627,51.39675326902701],[4.921548382707298,51.39675037612572],[4.922414833963648,51.39674037620838],[4.922705313216282,51.39673702112556],[4.923503958148062,51.39673666669256],[4.923604485632537,51.396736625897525],[4.924586853853708,51.39688384464479],[4.924635971769014,51.39692883976892],[4.92430728707213,51.397742192715974],[4.924275599659762,51.397820359592856],[4.923365918946461,51.39847931139249],[4.923268490595517,51.39855011535033],[4.92300065720643,51.39850581337463],[4.921225468753644,51.39843014944283],[4.920826436822847,51.39840887789971],[4.919072475846994,51.398315369296796],[4.918920470010892,51.39829884883181],[4.918624736175151,51.398285346317934],[4.918416290202928,51.3981271682234],[4.918333576681772,51.39806439933145],[4.918309578830948,51.39804627126453],[4.918152117436278,51.39792732714795],[4.918125995397609,51.39822911182394],[4.917451779589403,51.398378875596315],[4.916697007067796,51.39855744330598],[4.916121034813506,51.398723281212845],[4.91656792704649,51.39919940788113],[4.916587997050473,51.39922078340015],[4.917039276845846,51.399665321212574],[4.917791296675318,51.40040421163864],[4.917833631937291,51.40046707009135],[4.917815990853604,51.40051121512692],[4.915620145929043,51.40100229761554],[4.914058566158962,51.40135170590219],[4.913015540308542,51.40159387166045],[4.912970249383894,51.401604384217],[4.912210066966604,51.401780878560764],[4.91153514635174,51.40193756277118],[4.911371956784537,51.40196454674363],[4.910455952654807,51.40217127947588],[4.91021859941194,51.402243028648705],[4.91016166849315,51.40226024312374],[4.91025953059598,51.402367889067676],[4.910425126960073,51.402574266474446],[4.910503909886131,51.40271038273216],[4.910536115108379,51.402799845332],[4.910548319412303,51.40287520361242],[4.910530709664903,51.402940345592704],[4.910448919501629,51.403023229865106],[4.90973486406991,51.40359800291337],[4.908823147680794,51.40432951726735],[4.908729652247337,51.40439332298341],[4.908640038097848,51.404436461255735],[4.908652543834826,51.40448008141857],[4.908663927112614,51.40451973290124],[4.908579516587246,51.40459562080169],[4.908570533578957,51.40459431651418],[4.909090607739564,51.40585013036439],[4.909373195170909,51.40647149048959],[4.909604319031846,51.40699706097992],[4.909736961746356,51.407269057599216],[4.909808717537913,51.40741114105485],[4.909804496266456,51.40743545653064],[4.90967710918445,51.407468670146116],[4.90966742389544,51.40747261254445],[4.909644939315374,51.40747865985758],[4.909567842906878,51.40749941398941],[4.909448343221028,51.40754387770909],[4.908773202566283,51.40784543614419],[4.908662482737657,51.40789540028099],[4.908156966098256,51.40807865686217],[4.907996255493464,51.40815333207629],[4.907895022155606,51.40820036814849],[4.907604702082153,51.40836061413543],[4.906848726238002,51.40879240978059],[4.906523313298482,51.408990917827445],[4.905931147390641,51.40859934969588],[4.905956240802579,51.408708523666505],[4.906059298838253,51.40899438005326],[4.906060866679687,51.409138729113764],[4.905951431080323,51.409417902100145],[4.905875765186886,51.40952737943166],[4.90577192502103,51.40969563523057],[4.905708100842523,51.40982019064744],[4.905696279996437,51.40990246153305],[4.905702922820505,51.40991994525688],[4.905511139652252,51.40994843903628],[4.905272007728893,51.409983972890686],[4.905031774227391,51.4097741965934],[4.90497235866359,51.409734400131455],[4.904892859626273,51.409728974775426],[4.90421546676967,51.40984362889892],[4.904088422898482,51.409865125412686],[4.903929033807461,51.409895233912685],[4.903701802229953,51.40995516458994],[4.903716117884213,51.409978244318005],[4.903747518771396,51.41002890067302],[4.904723309336036,51.41164681296925],[4.904866960995756,51.41188213228805],[4.904878038416429,51.411900272600406],[4.90434847339885,51.41218113988543],[4.903847897995309,51.41241420546892],[4.903839549038511,51.41240176629203],[4.903771003714081,51.41229955792735],[4.903722907779746,51.41223039630977],[4.903595943087638,51.41209191847144],[4.903481297950811,51.41194528477972],[4.903458564812729,51.41190806664921],[4.903409354147173,51.41182753839722],[4.903244974825586,51.41149408113088],[4.903209521838509,51.41141074243242],[4.902992207701566,51.41089981443778],[4.902722086321571,51.410264719728914],[4.902710810407742,51.4102450862364],[4.902033351728927,51.410428204344626],[4.901944613676593,51.41044266678691],[4.901482315080802,51.41048603737164],[4.900035997644428,51.410614406829225],[4.899893362460947,51.410627060567336],[4.900066610816188,51.410753295250544],[4.900126626534391,51.41082007220325],[4.900193770112389,51.41095028609031],[4.900461268579279,51.41180942234761],[4.900485998107743,51.411917957782386],[4.90048193903395,51.41206936666256],[4.900451859635159,51.41216988008227],[4.900415266866665,51.41223688292478],[4.900332572087946,51.41238372088946],[4.900238036005463,51.41249790688052],[4.900252154766193,51.41252587613421],[4.900339282347666,51.41253075220679],[4.900991181328732,51.4125672153037],[4.901361299875723,51.41257968783998],[4.901577274759782,51.41257544555952],[4.901795584965751,51.41255841250567],[4.902377274486853,51.412502233440726],[4.902558697177307,51.412485450137126],[4.902560518959733,51.412500684780355],[4.90259490221102,51.4127875172969],[4.902756466007954,51.412994913435995],[4.903187258447905,51.413552373020934],[4.902869603163873,51.413554362445005],[4.901846388472423,51.41393591905947],[4.900910330096744,51.41336778289124],[4.900890063172789,51.41335554550514],[4.900757735177999,51.41327569431562],[4.90066194755116,51.413286126370195],[4.900904446431353,51.41364731091961],[4.901164738710527,51.4140846325453],[4.90112098131996,51.41411573133973],[4.901128543368764,51.414142621467306],[4.901110899127183,51.414152669364746],[4.900828374688285,51.4143134254711],[4.900754999132485,51.414217001977256],[4.900637196248623,51.41430880795697],[4.899993724562586,51.4146707450409],[4.899355925095235,51.41437907066947],[4.898966205756818,51.414200836669536],[4.898812746419121,51.41411843188968],[4.899131019330619,51.413815950548745],[4.898355992729009,51.4136996617266],[4.898042556065067,51.413652630606634],[4.897874314218204,51.413624661864944],[4.897738740490282,51.41358380514446],[4.897623631091032,51.413530045296035],[4.897561557095995,51.41348495746153],[4.897440348003232,51.41335136899234],[4.898082063668618,51.41290669642164],[4.898281422146352,51.41280469996065],[4.898488748732786,51.41278670120481],[4.898509467018472,51.412784900349884],[4.898491431249386,51.4125940099065],[4.898486649052587,51.41248894640297],[4.898530785083176,51.41243191740487],[4.898530955902422,51.412430731594895],[4.898532212019735,51.41242216151318],[4.898604439950177,51.41192986718866],[4.898231680104549,51.411803639139315],[4.897989594280777,51.41175127989686],[4.897767388026796,51.41171501267126],[4.89756514827599,51.411686712038716],[4.89737408313174,51.41166991873956],[4.89713283945262,51.41169319327595],[4.897046108345954,51.41171982232148],[4.896985201357468,51.4117884567756],[4.896783250061254,51.412171880428886],[4.896696835408353,51.41235345103119],[4.896689555725376,51.41236874637714],[4.896639027635591,51.41239307340223],[4.896658351578188,51.41245008093486],[4.896652063095418,51.412504194219544],[4.896666900183707,51.4125360051654],[4.896637341960657,51.412579225005956],[4.896474761273089,51.41287393212993],[4.895857587159158,51.41289375227725],[4.895637765837087,51.41288924859452],[4.895257974676048,51.41288188568107],[4.894766141407549,51.41288331608281],[4.894698031097813,51.412889078018374],[4.894607092378666,51.41291498636481],[4.894524459051978,51.4129464848176],[4.894419437818995,51.4129959202343],[4.894259331408256,51.41308414330897],[4.893990959635602,51.4132318729543],[4.892714337993617,51.41400610565802],[4.891763565358277,51.41450389100331],[4.891636562546922,51.41458204876558],[4.890907836273008,51.4150939299264],[4.890863205630275,51.41512528185397],[4.890838561633071,51.41511122632615],[4.890714955919912,51.41504074921226],[4.890571822317303,51.41494979316775],[4.890444172601319,51.41485474105387],[4.890301346880766,51.414743543130925],[4.890082252580085,51.41496568553839],[4.889931710246939,51.41520238506146],[4.889833845977774,51.41528400892683],[4.88951046861091,51.41549699541533],[4.889072749251168,51.41550449346645],[4.888936023006806,51.41548117678112],[4.888840571159199,51.415450989027335],[4.888732227368762,51.415387694163954],[4.888629950869285,51.415311184577604],[4.888429209658738,51.41516198370685],[4.887838599430577,51.41510520931561],[4.887827738706799,51.41510458753736],[4.886960258459795,51.41505514453454],[4.886807970415071,51.41511664018462],[4.886173523683037,51.41529237228284],[4.885881345068271,51.415334649928866],[4.886073921831074,51.416621411182106],[4.885836837844797,51.41663606001271],[4.885562163783363,51.416641369122125],[4.884899488871335,51.4166367108493],[4.884294892581866,51.41658499096121],[4.884063737662212,51.4165638412362],[4.883578192464248,51.41651940862262],[4.883273202422107,51.41649205085448],[4.882934317413568,51.416478811057495],[4.882946955618011,51.416464312761484],[4.883028302458182,51.41637103664018],[4.883072138396131,51.41528585994665],[4.88252366053197,51.41525689935007],[4.882520250117985,51.415257217182386],[4.882131558159217,51.415293908257055],[4.881985204446947,51.41532771972445],[4.881454034656845,51.41545041682719],[4.88133113851717,51.41546623464265],[4.881170592411766,51.41537333080836],[4.881070236712127,51.41526995524731],[4.880947309528826,51.415108575542895],[4.880822439822438,51.415035493626775],[4.880701901798518,51.41498272718233],[4.880616406270185,51.414970445718666],[4.880504780123053,51.41497988458252],[4.88024297467978,51.41476200819431],[4.879796094531698,51.41436716303574],[4.879726786363023,51.41434971982091],[4.879353267816693,51.414277729629696],[4.878442957694704,51.414102264857014],[4.878403466711251,51.41414511320618],[4.878155656423118,51.414611748414536],[4.877883320677816,51.41515789018136],[4.877803314395071,51.41531830625008],[4.877794726995616,51.415335527324096],[4.87760905440163,51.41530753410927],[4.876956390899904,51.41526296391807],[4.876407098539427,51.41522878441628],[4.876012453049214,51.41519598124845],[4.875602892163865,51.41513578524999],[4.874906942188522,51.41504197060024],[4.874570220882739,51.41498190206559],[4.873963680762031,51.414847827107586],[4.873553395959859,51.414754137265234],[4.873563964847794,51.41473597240596],[4.873629634534251,51.41462318189474],[4.873835221211774,51.41427989503764],[4.873629620073398,51.414222306374064],[4.873525360120538,51.41417122213548],[4.873365817803863,51.41404971839509],[4.87330619793708,51.413876896918175],[4.873167663833972,51.41384421433025],[4.872847929158248,51.41379952363987],[4.872884909409478,51.41361772551827],[4.872160829489323,51.4135747281141],[4.872111589004868,51.4137688854726],[4.871254848518538,51.41371786280336],[4.871160729463547,51.41359917124016],[4.871093391371049,51.41352996483366],[4.870972334513993,51.41346341507427],[4.870647344354748,51.41337549468261],[4.870388596605402,51.41298531131558],[4.869921737111501,51.41304306270369],[4.868721456574043,51.41288778185442],[4.86884793577013,51.41266142950757],[4.868008156748583,51.41254056998633],[4.867946897334406,51.41237735645594],[4.867723709523645,51.41221828482655],[4.867559186215829,51.412079204644904],[4.866964034171394,51.411797457019794],[4.866767318074386,51.411717495603064],[4.866621495021032,51.411659460078866],[4.866424703267851,51.411532090550324],[4.866281993307674,51.411458311043376],[4.86625511471853,51.41144441109718],[4.866385556380781,51.411351383713054],[4.866381776803658,51.411317326063916],[4.866293367436648,51.41123764962531],[4.866263842488505,51.41118110374828],[4.866271501377309,51.41108187408557],[4.866243580796217,51.4110270792045],[4.866224912432639,51.410995337096494],[4.86623557409339,51.410961676528444],[4.866340192382816,51.41091708263603],[4.866400217549661,51.410895642586134],[4.86644328162124,51.41086035586542],[4.866491824830226,51.41075556483565],[4.866497111886116,51.410707929556054],[4.866590701774427,51.41069256289212],[4.866743478569822,51.410697685170916],[4.866828193691449,51.41068285400368],[4.866897803468111,51.410651514790395],[4.866977187650925,51.41063148215836],[4.867008150654648,51.410661544128686],[4.867066398435856,51.410763153160175],[4.867095688148601,51.410757189325416],[4.867134652694498,51.410746064076356],[4.867350563046593,51.41065623017222],[4.867482319785127,51.41061769783606],[4.867624606609489,51.41060489339977],[4.867745743471713,51.41062924439363],[4.867822005657899,51.410657404481604],[4.867886140901213,51.41063720445418],[4.867904741356943,51.410616918533506],[4.867936834716661,51.410523739179126],[4.868011640182023,51.41048666058131],[4.868106118517804,51.41048660466822],[4.868193739336163,51.41048161025439],[4.868207978420423,51.41046058577161],[4.868119348099111,51.410294086442384],[4.868082639614825,51.41025226874967],[4.868048654213031,51.410227568944926],[4.868040040335567,51.410181202077354],[4.868071234320845,51.41017205543317],[4.868342333850095,51.41009362946788],[4.868381179234226,51.410065100862795],[4.868381828924252,51.409956158902354],[4.868349336949225,51.40990884089417],[4.868284477254307,51.409834888744456],[4.868197766942494,51.40970816467707],[4.868200485507796,51.409680194485624],[4.868163501295181,51.409655067881964],[4.86736647489117,51.40911358076651],[4.866668607421343,51.40957773587263],[4.866462959400384,51.40971450915654],[4.866217201620021,51.40990221353857],[4.866166290891241,51.40997143399055],[4.866019479357489,51.40998663442639],[4.8656990182955,51.41001976422092],[4.865498753076492,51.410032315987316],[4.865148126552723,51.41007378583147],[4.864760926760012,51.410119585242015],[4.864643765586462,51.410119833456946],[4.864122398035325,51.41019611304654],[4.863998963040693,51.41020948316903],[4.863625899715243,51.410234407190416],[4.863598646665004,51.410239489400404],[4.863517968017177,51.41025451612193],[4.862766732074855,51.41030229645713],[4.862059221479283,51.410347356436354],[4.861972672223099,51.41035287242045],[4.861825654497981,51.410367023948425],[4.861738045352127,51.41036971248485],[4.861627099672307,51.41037311379179],[4.861537390037117,51.41038470066627],[4.861501301723931,51.41038936503738],[4.861184265442841,51.4104041696059],[4.860893235833813,51.41043473126741],[4.860675657815642,51.410447610127406],[4.860548516675764,51.410448186711754],[4.860513745119447,51.41044834431847],[4.86035695633069,51.41050075138156],[4.86025488855844,51.41057547309315],[4.860200645872622,51.41065853672792],[4.860082093671148,51.410800186725595],[4.859963078691362,51.41090222063384],[4.859764507345417,51.41109101468045],[4.859701685641671,51.411191163058746],[4.859766030863324,51.4113844087635],[4.859984083881651,51.41296128430212],[4.859989602468318,51.41300118379498],[4.859851938068162,51.41302362690181],[4.859815030030182,51.41301072283332],[4.859792799130333,51.41294304412518],[4.859700574059723,51.4129392293126],[4.859689984024408,51.41295256582341],[4.859663095912819,51.41307009032896],[4.859682218969546,51.41311191205537],[4.859879662204881,51.41322292723294],[4.859929281114771,51.4132554125248],[4.85993691938232,51.413294737325536],[4.859906660917517,51.41331464568907],[4.859730417012305,51.413329399571914],[4.859633952642472,51.41331920143153],[4.85949072368211,51.413278319446746],[4.859466559304937,51.41325354471252],[4.859461129464498,51.41322464795148],[4.859410736006049,51.41318086895542],[4.859328343594793,51.41315212730589],[4.859047992149547,51.413135307549275],[4.858985941836062,51.41312005115143],[4.858949809588424,51.41308733888927],[4.858962623874004,51.413037113275294],[4.859022585180123,51.412906282373754],[4.859010630499572,51.41288228193676],[4.858983942793187,51.4128731183014],[4.858891725523264,51.41288478168926],[4.858788147278426,51.412914263379456],[4.858578698192106,51.41298868591218],[4.85851338145412,51.4129762369586],[4.858377075996305,51.41280329377424],[4.858307102963465,51.41280442372988],[4.857844807763322,51.41293588307309],[4.857782297121833,51.412960345689115],[4.857778118963323,51.41299461021473],[4.857853281904671,51.413073954370134],[4.857864103719086,51.413117491554594],[4.857870696113688,51.41313778234696],[4.857857178331143,51.41317172583776],[4.857808562726174,51.41317678166624],[4.857765100573192,51.413172530434814],[4.857698053443911,51.41315435625981],[4.857546292992576,51.41305860114154],[4.857482628028931,51.41302647351982],[4.857464514826036,51.41296099734803],[4.857482097852365,51.41294834898082],[4.857607771514649,51.41278134941029],[4.857612325730687,51.41273079879355],[4.857467445441197,51.412708648574736],[4.857345361253699,51.41275222935329],[4.857133319983891,51.412833109495935],[4.857081958655567,51.412841918873454],[4.857029770019593,51.41284399181614],[4.856984817670877,51.41282823677451],[4.856900584279151,51.4128022446124],[4.856767738820656,51.412704399158045],[4.856707501711411,51.41268784640455],[4.856652330877908,51.41271522721903],[4.856661693151294,51.41280752241829],[4.856649097823038,51.412884436693304],[4.85659289574575,51.412907767805066],[4.856529158504703,51.41289922608586],[4.856416639087489,51.41283101007781],[4.856269388770605,51.4127827978834],[4.856167777485053,51.41279753549262],[4.855952685537211,51.412905653815855],[4.855844030378566,51.41290682184754],[4.855742950710122,51.412877129597916],[4.8555722228998,51.412804656497094],[4.855519495607723,51.41280731058456],[4.85547855136613,51.41284852661797],[4.855436797977956,51.41294311477198],[4.855443265307222,51.41297403895105],[4.855478811950354,51.41299510907097],[4.855612247683353,51.41302734004481],[4.855655268656109,51.41307065563416],[4.855657297965012,51.413097577514016],[4.85563497534475,51.41311477034758],[4.855594059578785,51.41312146035818],[4.855476300984138,51.413118029210544],[4.855369530293184,51.4131301268512],[4.855352646877178,51.41313819377543],[4.855156650798441,51.41323188969256],[4.855103327740331,51.41327078394126],[4.855087781187513,51.413308412282454],[4.855187505367524,51.41337795549999],[4.855213110637068,51.41340347478545],[4.855206477469943,51.413432379658786],[4.855179572461818,51.413441884013146],[4.855105577734424,51.41343279135721],[4.854896329846017,51.41340918474858],[4.854857904096446,51.41338846985542],[4.854837384056365,51.413265956981405],[4.854801509200557,51.413227446788],[4.85473386965491,51.41321455364855],[4.854708590587604,51.413222690021406],[4.854611364015341,51.413355443004356],[4.854573694099035,51.41347066993303],[4.854567112476563,51.41354067205466],[4.854551446494272,51.4136044843165],[4.854526933569168,51.41363931206144],[4.854463283886024,51.41366875651931],[4.854407449909824,51.413675162249135],[4.854316356036076,51.41366794157217],[4.854179490713178,51.41366833198363],[4.853951859880965,51.413585466040615],[4.853705854700269,51.41353862385012],[4.853604503727543,51.41350017336113],[4.853547026489002,51.413417284851846],[4.853465517386999,51.41338949590988],[4.853355960934092,51.41340738576492],[4.853163062230897,51.41341532984126],[4.853015371590351,51.41341834800173],[4.852981307722786,51.41344011582187],[4.852923967077777,51.41348311656552],[4.85286529908168,51.41351670885676],[4.852802340593967,51.413564375989914],[4.852709866002667,51.41359774140814],[4.852681719752995,51.41359044831602],[4.852661134625552,51.41356597620574],[4.852626895506177,51.413480020659314],[4.852567681818835,51.41346817162892],[4.85254218260034,51.413496270775944],[4.852534381400503,51.41353270281084],[4.852577985783752,51.41363273291395],[4.852565742638026,51.41368021886357],[4.852527912262905,51.41373263926841],[4.852483644127273,51.4137799694238],[4.852406769117664,51.413848570519676],[4.852332898409882,51.41390612005832],[4.852267320398189,51.41394539727898],[4.852124291106262,51.414026351104766],[4.852019232007423,51.414074858408675],[4.851926199576552,51.41410907459154],[4.851846771902883,51.414134175517354],[4.851764010416124,51.4141212112544],[4.851728016103643,51.41410773353005],[4.85155059329675,51.41406937247581],[4.85144356114936,51.414056943728006],[4.851345979854528,51.41406597874468],[4.851260457559997,51.41408858832742],[4.85107136933609,51.41415607966427],[4.850901743518117,51.414235840079925],[4.850829155305085,51.414261124570295],[4.850734545308198,51.41426192096825],[4.850699145458151,51.41422847241799],[4.850690421316424,51.41415991921884],[4.850652007319745,51.41409187665443],[4.8503769997294,51.413847948153304],[4.850282411072857,51.413816474279166],[4.850227738898487,51.413832798068356],[4.850060653688113,51.41404712317714],[4.850046777727511,51.41409509573818],[4.85010945215584,51.41412313293819],[4.850242233096431,51.41413524098822],[4.850308235386512,51.414189540864975],[4.850161999667121,51.41426043698358],[4.849828811171565,51.41429293434591],[4.849818376106973,51.41430382571376],[4.849792786371861,51.41426866026379],[4.849723455583073,51.414173598262465],[4.848631899359327,51.412748575488564],[4.84836081422611,51.41285439882798],[4.848321998860431,51.4128718197023],[4.847673679133358,51.413162830423886],[4.847077833929121,51.41340274517285],[4.847024493637397,51.41342792765741],[4.847004993362027,51.41343713183362],[4.846964640371869,51.41339131749343],[4.84690051362035,51.41334536605533],[4.846838062126856,51.41329512566679],[4.846709567065206,51.41320061472452],[4.846276219980165,51.4128563370898],[4.846258533815452,51.41286045286951],[4.845988080922261,51.41292336980887],[4.845654525428365,51.41300792599695],[4.844985194666426,51.41317119143167],[4.84431727071477,51.41333662590157],[4.843648890001034,51.413501380266545],[4.842622533829125,51.41375756675028],[4.841957766934694,51.41392801827969],[4.841291767461252,51.414096545637264],[4.840625283300151,51.41426432085858],[4.84035067144534,51.41433826158489],[4.839618811084645,51.414530524845425],[4.83939654472021,51.41459767975726],[4.839330698649606,51.414617568488936],[4.837129668074874,51.41444575190453],[4.836506882302865,51.41440000839631],[4.83574736701479,51.41434213645932],[4.835075643575899,51.41429352918295],[4.833898380438858,51.41420642184992],[4.832375919626661,51.41409262720142],[4.831203023505646,51.414003050443355],[4.829902768097423,51.4139055455052],[4.829380768842002,51.41386640275092],[4.827950485856944,51.41375966975549],[4.826597341994552,51.41365658887208],[4.826443892690659,51.41364489384665],[4.826434342517376,51.41364416478054],[4.825277771501741,51.41353345600621],[4.82486904943563,51.413493364498045],[4.82424845894646,51.41343248268622],[4.821844230415717,51.41319658207254],[4.820759959654572,51.41309255193325],[4.820686961601107,51.41308133885535],[4.820607421392484,51.4130691141658],[4.820089940018605,51.41302060327367],[4.819478840775693,51.412956937649],[4.819013784675912,51.41290847936821],[4.817874483912099,51.41278976308298],[4.81616726177245,51.412615680755955],[4.813970524620655,51.412388786035855],[4.813949292612084,51.41238659626958],[4.813926273197573,51.41238366062633],[4.812694895403695,51.41225411283541],[4.812023837068632,51.4121798564151],[4.811543786230416,51.41213168985526],[4.810507342823002,51.41202768338849],[4.810128376982048,51.41198723779257],[4.809391451079364,51.41191290097815],[4.809341062367863,51.41190781533343],[4.80826619448573,51.411795733266324],[4.806353260174814,51.4115995686329],[4.806312376389313,51.411595373965],[4.805645387628073,51.4115247864776],[4.804947438072636,51.411450921474014],[4.803519028103097,51.411293371145725],[4.801376621423904,51.41100139505747],[4.798889461854433,51.410662373044985],[4.797888470202845,51.41052591118455],[4.797058889745455,51.41041281630651],[4.79634594661772,51.41031703476069],[4.795881192261886,51.41025697079063],[4.795398688749036,51.410194612628224],[4.794772753807482,51.409963944026394],[4.794147627131705,51.4097545079243],[4.793673540077672,51.409604849259956],[4.793658795980686,51.40960019888135],[4.793244421698749,51.40951104995371],[4.793067569102879,51.40948917811259],[4.792875337719285,51.409775061446425],[4.792870978274026,51.40977980334848],[4.792782605228455,51.409757024578106],[4.792779760509706,51.40976134272928],[4.792752527993806,51.40975432743155],[4.792213680868076,51.41054230630923],[4.790958502161795,51.40982496462125],[4.790939325464914,51.409838349937495],[4.790913998410165,51.40985601847952],[4.790893864287963,51.40987007306109],[4.789334372367001,51.408987011173224],[4.787417038094859,51.40933611200407],[4.787251897223642,51.40939119161426],[4.786940897736138,51.40972679216585],[4.786761426515155,51.40991712525995],[4.786126252685801,51.41059952714714],[4.785477604321155,51.410494230472544],[4.784838075645974,51.4103777591254],[4.784819980250905,51.410382034278314],[4.784817379323645,51.410449464587536],[4.784772043000215,51.410495307552516],[4.784753067266588,51.410530320197736],[4.784746836307231,51.410578747191636],[4.784762755211053,51.41061738282143],[4.784753321144123,51.41065149192597],[4.784730106212411,51.410673358872465],[4.784642329510817,51.41068286514675],[4.784464935360751,51.410717167098895],[4.784305236612877,51.41073503864603],[4.784247152924494,51.41075020830059],[4.784150399972981,51.41076240042921],[4.784006891853684,51.41079394650071],[4.783832241225319,51.41082397397445],[4.783695082119564,51.410857979511114],[4.783478965760875,51.41088233563257],[4.783291245345355,51.41091369691658],[4.783125936499888,51.41095242801866],[4.782889059922986,51.41099333196848],[4.782813646147585,51.41100157056481],[4.782673473096955,51.411024287200206],[4.78258424862094,51.411067025394495],[4.782491535722794,51.41111917479622],[4.782365338542088,51.41117728991569],[4.782268366107386,51.41124819487508],[4.782214861100384,51.41130277664913],[4.782125841967745,51.411350549347205],[4.781985472481143,51.41145188110293],[4.781676602090144,51.41157871149275],[4.781402728790214,51.41166240530926],[4.781311262621887,51.41169841618153],[4.781182308399151,51.41175825056679],[4.78097858171648,51.41184064488464],[4.780311490301866,51.41203099459827],[4.780280076035329,51.412043379653575],[4.780243898706583,51.41206155573696],[4.780161346695457,51.41212103718743],[4.780078511444324,51.4121963825244],[4.780003618436663,51.41223549891399],[4.779944378694286,51.412289744180356],[4.779887465806472,51.41233007771719],[4.779858828776945,51.412357326792794],[4.779837757804627,51.412394979467955],[4.77977890381481,51.41243533880034],[4.779724297665513,51.41249456097348],[4.779649932757811,51.41252634494121],[4.779608508870492,51.41256497022869],[4.779489763852238,51.412642537114635],[4.7793819507236,51.41273030932289],[4.77931548783299,51.41274831830816],[4.779270316834266,51.41282107280225],[4.779145509918298,51.412891767188604],[4.779105651784729,51.412943353475434],[4.779026768876086,51.41298723952925],[4.778988313491898,51.41302524186443],[4.778980510388153,51.41303585302936],[4.778746261805979,51.41321270154328],[4.778676894679383,51.41328994089855],[4.778597518143032,51.41332442169349],[4.778563434764214,51.413330976541204],[4.778387754853594,51.413440344598115],[4.778125895411053,51.41360049918213],[4.778083445396774,51.41362968022363],[4.778049413862291,51.41366784917684],[4.777948983367394,51.41371801308811],[4.777922335684483,51.41373715510155],[4.777822593568795,51.41377881000605],[4.777782380025984,51.41381379147885],[4.777752956107967,51.41382446038787],[4.777704997645726,51.41383661448897],[4.77766692830523,51.413835912178314],[4.777597147425817,51.41381483706397],[4.777508236182572,51.413821545502785],[4.777328561829024,51.41384767179788],[4.777147419800974,51.413896460164196],[4.776849950710657,51.4139338708958],[4.776701301073966,51.4139242029362],[4.776588758542881,51.413902903397066],[4.776441368170071,51.41390870261857],[4.776358586148701,51.413901015079034],[4.77626204878866,51.41392006035725],[4.776232327329966,51.41393681281605],[4.77616351422504,51.41395620098463],[4.776045376054709,51.413964166457575],[4.775999181202276,51.41399162822077],[4.775944855840711,51.41399077724374],[4.775866371675674,51.414001332393795],[4.775801314553992,51.414037549292686],[4.775514953340315,51.41410189168395],[4.775306601810092,51.4141127990714],[4.775251225235435,51.414096004922875],[4.775115743286854,51.413988820435655],[4.774963294673372,51.413850957477806],[4.774906895507457,51.41376795448439],[4.774849957146492,51.4137444012741],[4.774798970504048,51.413698326112055],[4.774737919278954,51.4136556408325],[4.774695106811213,51.41357677206066],[4.774629218927504,51.41353353996797],[4.774530204096354,51.41362359217166],[4.774384260961903,51.41369076367485],[4.774274416450653,51.41376297870348],[4.774196927091539,51.41378080099609],[4.77415115744049,51.41376586358088],[4.774120259627393,51.413724639845675],[4.774051099757902,51.41372166054111],[4.773789255851653,51.413618601268894],[4.773703041856238,51.41361606241493],[4.773592982621849,51.41352679890254],[4.773492955648795,51.41350816898931],[4.773476663660062,51.413466914060926],[4.773366634305126,51.41344064476925],[4.773270050898822,51.413459885085715],[4.773275371609067,51.41354089418045],[4.773255859248188,51.41356589750362],[4.773151539764831,51.413558606685825],[4.773060545893174,51.413661257384966],[4.773035658967161,51.4136893335474],[4.773173433396333,51.4139610835256],[4.7731486480341,51.41408944951293],[4.773048427082571,51.41415774095933],[4.772669259212656,51.414074681934174],[4.772477270372063,51.41416203126653],[4.772408176485609,51.41434607460265],[4.772412783918839,51.41452575124401],[4.772353051008209,51.41459009362557],[4.771640127385544,51.41472503237972],[4.771569213964463,51.41475708112757],[4.771193726317874,51.41490905181173],[4.771164009225108,51.414982765737015],[4.771213652229735,51.415021725169126],[4.771375281469052,51.41506679506003],[4.771982807113901,51.41511239263105],[4.772086090247424,51.41521169848742],[4.772141602701897,51.41532822680832],[4.771854924665903,51.41558447181146],[4.771784881834896,51.41566484067655],[4.771795690353393,51.41632230161312],[4.771877341771251,51.41650356225458],[4.771900943917316,51.41655596625305],[4.77187529250194,51.416606438500956],[4.771804014289552,51.41666744773972],[4.771748370310544,51.41669590069591],[4.771598987296727,51.416842215927616],[4.771479546723947,51.4168885345959],[4.77139578077857,51.41688204287142],[4.771247228085469,51.41677196238249],[4.771057850828712,51.41665325244777],[4.771008790209134,51.41662639510833],[4.770962186466178,51.41660496205135],[4.770864866458802,51.416585589140126],[4.770830253467807,51.41658745571861],[4.770738597079922,51.416623421392735],[4.770661904532139,51.4167158265547],[4.770589180517455,51.41685918380997],[4.770513020550966,51.41722684110538],[4.770454297134695,51.417319188318366],[4.770305346847413,51.41733315148664],[4.770138854981421,51.41736645569597],[4.770101318719731,51.417377142695],[4.769897849077161,51.417508355899805],[4.769885343238705,51.41756136923327],[4.769867704597334,51.41766009097657],[4.769866255513492,51.41766624970003],[4.769838739775571,51.417783076764564],[4.769713115484269,51.41794177622027],[4.769731451825528,51.4180039147412],[4.770120118131397,51.418144553481596],[4.770192420266703,51.41817715219379],[4.770270851551427,51.418224273398806],[4.770292361121822,51.41824319195456],[4.770280523983477,51.418347751271135],[4.77026500660216,51.418375786513046],[4.770098268196579,51.41851839451351],[4.769955924292158,51.41862921174418],[4.769909525785193,51.41867853106873],[4.769868128057962,51.41894996582954],[4.769856347320174,51.418970622919964],[4.76979581501647,51.41900942228667],[4.769710639248057,51.41900697590228],[4.769674597898367,51.419006955901224],[4.76964628550411,51.41898717423879],[4.769566413968373,51.41890622871398],[4.769557684904942,51.41888731477387],[4.769726141931012,51.41873055011386],[4.769720734242922,51.418702044622634],[4.769674779500953,51.418687778655894],[4.769432083220298,51.41862909043139],[4.769313829037477,51.41860006814027],[4.769269282982298,51.41859856473801],[4.769031412795822,51.41861663057964],[4.768956118563528,51.41862235299266],[4.768931458049226,51.41863122018868],[4.768893992321265,51.41864614994271],[4.76888462914034,51.418703719228134],[4.768987555365852,51.41878809533111],[4.769027804342651,51.41888283601193],[4.769076914298997,51.41899842396974],[4.769111031915894,51.41904279423345],[4.769158434286211,51.419088160730894],[4.7691844857063,51.41911352163558],[4.769205359497555,51.41915813631606],[4.76917583441636,51.41919389957788],[4.76902249873032,51.419274238973735],[4.768924328853206,51.41932567459335],[4.768649246865452,51.41953145559954],[4.768577258393086,51.4196462847156],[4.768575977509379,51.41979475673924],[4.768599872873344,51.41982327043558],[4.768708519097678,51.41990369501762],[4.768721504123918,51.4199427038212],[4.768739405627502,51.42007714697758],[4.768742207509552,51.420190691762194],[4.76875931035481,51.420209119810906],[4.768778616794974,51.420234678755634],[4.768846030024793,51.420260088210966],[4.768903251245715,51.42023664281666],[4.768938387082468,51.420225053571116],[4.769009406286233,51.42024005490838],[4.769024573429497,51.42024326342483],[4.769060670442128,51.420259401032745],[4.769080579019175,51.420303129703306],[4.769093585675607,51.4203352710508],[4.769072609296564,51.420403196956734],[4.769055794078056,51.420439899460085],[4.769006235823312,51.420473929529756],[4.768984134049514,51.42048911152484],[4.768907887876916,51.420531944079414],[4.768880811672774,51.42056408872802],[4.768892104502132,51.42059326366243],[4.76894164025985,51.42067755453492],[4.768969280508165,51.420704550895685],[4.769002970280323,51.42071481499324],[4.76923645108199,51.42078594084174],[4.769259804500534,51.42102745271297],[4.768997091715065,51.421148444771475],[4.76895180870997,51.42116930175749],[4.768914115969997,51.42119127762492],[4.768888922453451,51.421237230229416],[4.768872645440918,51.421288281857706],[4.76887543943026,51.42137805092343],[4.768917359019624,51.42144940234562],[4.768962782157995,51.42151367108176],[4.768991794023272,51.421539218499916],[4.769034331562477,51.42157667597806],[4.769101221572308,51.42164084267773],[4.769150341113135,51.42175595421294],[4.769177389265712,51.421840485386305],[4.769216279220905,51.42188720901392],[4.769306830068359,51.421988876813586],[4.769505330149021,51.422185805341],[4.769549764639441,51.422230832341974],[4.769585001213664,51.42222570645615],[4.769655238430158,51.42220208689758],[4.769813088759912,51.42215317778916],[4.769965832182654,51.4221278283414],[4.770009934923119,51.42212197619261],[4.770030789620915,51.42213310692716],[4.770106703397974,51.42219782415854],[4.770148306613778,51.42224919110988],[4.770157133620105,51.42228749459046],[4.770048420111011,51.42236228251162],[4.770034296784618,51.42243061338049],[4.770103684285177,51.422479349761936],[4.770137537778958,51.42248931775704],[4.770179138107649,51.422493106393134],[4.77036203298287,51.42253145848245],[4.770482393964812,51.422569219031026],[4.770536658051501,51.42263276082988],[4.770563451273385,51.422660884926785],[4.770533405117243,51.422782930293714],[4.770593825364851,51.42289840655478],[4.770628772961061,51.42294764373375],[4.770786391712046,51.42307976866221],[4.770939137649238,51.42313208209781],[4.770974399339666,51.42321556856351],[4.770940280104298,51.423268827378855],[4.770798502789148,51.423293175365565],[4.770249119701473,51.42317273228049],[4.77016438300106,51.423190387774795],[4.7701188478091,51.42324676804378],[4.770146496076521,51.42334558552279],[4.770294050167887,51.42369770631487],[4.770280341469909,51.423716258835576],[4.770230859849885,51.423744429066794],[4.770171568735666,51.42374524808374],[4.769925465221408,51.423746103480156],[4.76983592652779,51.42374666339639],[4.769745067500986,51.42369607836318],[4.769735285560785,51.42367202620667],[4.769710092567848,51.42361385148617],[4.769677500701721,51.42358498637686],[4.769627628215901,51.42357830429079],[4.769592628432376,51.42359559343797],[4.769553767845031,51.423638911987226],[4.769554031263333,51.42380415646349],[4.769568730044128,51.423866446511006],[4.769725242135672,51.424101534935915],[4.769969981748159,51.42441294735562],[4.769976727891276,51.42443929357766],[4.769977109896221,51.424480114223286],[4.769965611090882,51.424503208808375],[4.769721218509416,51.42465240777856],[4.769717223374172,51.42470853134305],[4.770088558406388,51.42481235850733],[4.7701727892223,51.42486843638055],[4.77016172250759,51.42494141270999],[4.770007464086785,51.42498133443496],[4.769833317578561,51.42504162744011],[4.769640993201412,51.42514355945413],[4.769582932511826,51.42521156777848],[4.769520680458688,51.42531300160342],[4.769553650420576,51.42536604890931],[4.769614051925102,51.42542140775247],[4.769660926923786,51.42548075794877],[4.769753348324895,51.425597788303534],[4.769771879489152,51.42563939714829],[4.769699502866568,51.4257335414133],[4.769490157295785,51.42606531930854],[4.769467758386494,51.42610224398999],[4.769475566650063,51.42611917548895],[4.769540582978323,51.426139627910956],[4.769801314961919,51.42615313406778],[4.76992373939058,51.42618784085482],[4.769947432101099,51.42620614177988],[4.769981094628898,51.426309018125714],[4.770142128310031,51.42655182434317],[4.770151908056942,51.426582474303245],[4.770147778983308,51.42663789603167],[4.770133777130443,51.42666104031539],[4.770077709954074,51.426693220663154],[4.770049544073704,51.4266973054442],[4.769903987320503,51.42668031038798],[4.769594633855059,51.42668087540188],[4.769523418320104,51.42670190095839],[4.769485398317811,51.42673179451214],[4.769458300225207,51.42677061793593],[4.769425424354426,51.42682198623752],[4.769424852159615,51.426839808207454],[4.769416752627015,51.426868772516144],[4.769400598528182,51.427014639833295],[4.769402397736074,51.42705907253229],[4.769427344975118,51.42711427067268],[4.769514871965341,51.42739641944652],[4.769487500652037,51.4274935884144],[4.769399204420186,51.42752076176032],[4.769354106516584,51.42750840589208],[4.769115119208578,51.42743361974318],[4.769054689989225,51.42742469719539],[4.768945384286921,51.42742335393708],[4.768911938679393,51.42742865093482],[4.768761714269925,51.427452448344894],[4.768612418062869,51.42752969851799],[4.768522429084639,51.42763388816154],[4.768539373694683,51.427780739882735],[4.7686503372395,51.427864502595384],[4.76882256877817,51.42802582263678],[4.768874717439354,51.428089794416756],[4.768902192110545,51.428147352165844],[4.768916020431905,51.428176315792506],[4.768914967908637,51.42819879146673],[4.768940897980916,51.42823347324523],[4.768930857402594,51.42826874643381],[4.768926292764081,51.42829996767828],[4.768899942645633,51.42831322150233],[4.768897307632948,51.428314546884415],[4.768869456127119,51.42831657459092],[4.768810881539285,51.42831077191209],[4.768638276979387,51.42829345214788],[4.768566758616473,51.42828465033513],[4.76851876778253,51.4282851688969],[4.768397059316055,51.42830225852789],[4.768359389157343,51.428316818501834],[4.768303348988398,51.428344647518436],[4.768265368343539,51.428401139060036],[4.768242199286064,51.42851157968208],[4.76825713205238,51.428537546952334],[4.768315407847858,51.42861728207119],[4.768610813646515,51.42894407631087],[4.768651686668102,51.428982819464736],[4.768706246304025,51.429045087214746],[4.768667067531118,51.42912417064057],[4.768591459903839,51.4291813796645],[4.768433871056247,51.429288590617666],[4.768311361951323,51.42936128128879],[4.768298603233655,51.4293679283195],[4.767969968412112,51.429497233774654],[4.767878241751073,51.429545817326314],[4.767845847725619,51.42959530906452],[4.767824741463581,51.42971891132059],[4.767814530656645,51.42975074974874],[4.767717301460022,51.429866648841376],[4.767493526701633,51.43001868532756],[4.767438099339324,51.43003826537503],[4.76727801831129,51.43008722242482],[4.767199668716865,51.430105781670335],[4.767010276422457,51.43008530509117],[4.766928882196288,51.430103569314575],[4.766906227184898,51.43011885585239],[4.766861368503691,51.4301511302179],[4.766583388732458,51.4304596971997],[4.766569763011827,51.43048879371752],[4.766611176394886,51.43050260523421],[4.766766573998931,51.43054012442585],[4.766819190575522,51.43054646274135],[4.767021116961081,51.43055160825583],[4.767055956884048,51.430549708020656],[4.767155728622375,51.43056957343287],[4.767204770129736,51.430605115505294],[4.767326009415792,51.4307541575478],[4.767357914821406,51.43078618373613],[4.767386143303076,51.43080096764012],[4.767641126093572,51.430841576498985],[4.767655198983963,51.430840905150184],[4.767864533341996,51.43069885926749],[4.767952409817028,51.43060994903763],[4.768030148226011,51.430552787684874],[4.768242104189964,51.4304939024111],[4.768563141882519,51.430423684903424],[4.768706229275083,51.43035855485655],[4.768783345384803,51.430295223318744],[4.768874680638389,51.43017587632711],[4.768957363687433,51.43006782741365],[4.768946425361194,51.430020820403286],[4.768974446911762,51.42998724252188],[4.769027695011451,51.429979857132125],[4.769460354362736,51.43002455841073],[4.7695450382827,51.430038292360585],[4.769751015929036,51.43011152757124],[4.769847528790632,51.4301331352589],[4.770176848599773,51.43013909316172],[4.770209146682868,51.43016878352747],[4.770124968365716,51.430233462939405],[4.770120527297775,51.4302534757158],[4.770133530924536,51.43026910428387],[4.770244193208643,51.43034816264513],[4.77025565482483,51.43039379699264],[4.770224853523091,51.43042987737158],[4.77011458660951,51.43048201412662],[4.770120244686417,51.430525073932145],[4.770149513938344,51.4305395121023],[4.77020761253597,51.43056052080388],[4.770427399466538,51.4305529007393],[4.770526814816576,51.430565201711225],[4.770743323617525,51.43063942566124],[4.770852007279903,51.43065544279785],[4.771202832982805,51.43067921054689],[4.771465216526698,51.43068099108672],[4.771742600168749,51.43070714716656],[4.77189655234994,51.43073598657906],[4.772001626779311,51.430796793282425],[4.772032202091339,51.430822132412594],[4.772089777829348,51.43084148345711],[4.77219646215552,51.43084268407573],[4.772324538794406,51.43076858045617],[4.772351011313315,51.430784666278136],[4.772524627073804,51.43095175890587],[4.772629785326991,51.43104591430236],[4.772716124130802,51.43109391135744],[4.773393669985484,51.43136351335529],[4.773885659570488,51.43140650574367],[4.774069804342953,51.43152374501197],[4.774092008440985,51.431566451101986],[4.774121585613747,51.43162336243675],[4.774934042579833,51.431637660406714],[4.775727723440995,51.43162913037824],[4.77617142518915,51.431662727304534],[4.77662253287292,51.43170388500521],[4.777155161586914,51.43175166058157],[4.777740662456111,51.431804168410615],[4.777836209012872,51.431811472065476],[4.779019862369586,51.43201514308029],[4.779183433788761,51.43204367241431],[4.779672528107336,51.43212897194469],[4.780339975986106,51.4322506853817],[4.780910220291928,51.4323546671957],[4.781004876533902,51.432324147343536],[4.781105530158619,51.43231087230261],[4.781189285768845,51.43229981955354],[4.781423851375617,51.43228436325621],[4.78166205261171,51.43227450745974],[4.781974372147516,51.432275408856945],[4.782199420924021,51.432288944749665],[4.783022569963656,51.432338460252154],[4.784229987005275,51.432397588014666],[4.784265310353184,51.43239941552543],[4.784361968124899,51.432404418412276],[4.786218705178343,51.432500416226375],[4.7865722997788,51.432518695671604],[4.786627042357468,51.4325725242849],[4.78663283933181,51.43259641962771],[4.786653627888879,51.432719126105525],[4.786705439342867,51.432532612624044],[4.786818435887978,51.43212364230795],[4.786825276295574,51.43209888614702],[4.78774556227093,51.432101739362686],[4.787862635625497,51.431927695666324],[4.78791549368915,51.43184380420199],[4.788293587567663,51.43124366979017],[4.78836992759758,51.43112250487516],[4.788633483689636,51.43070005810138],[4.788850279961316,51.43035255401657],[4.788911033513345,51.430255165329285],[4.788975364690055,51.4301568870769],[4.788993986002016,51.43012844282907],[4.7890680931025,51.43000620532427],[4.789107569768018,51.429887520640925],[4.789117362383848,51.429766948924474],[4.789117797888353,51.42976444325663],[4.789121518711061,51.42974279011629],[4.789186120428131,51.42973342224772],[4.78924175941955,51.429724367963836],[4.789288990109314,51.4297117289405],[4.78948263707121,51.429585986817294],[4.789598272733882,51.42959631414331],[4.789822297376206,51.429647655371554],[4.78991549211654,51.42967621380165],[4.789967718840938,51.429701497239314],[4.790039457957437,51.429741127915804],[4.790120215187962,51.429758656075926],[4.790236960204115,51.429753491598646],[4.790389501254261,51.42970731403929],[4.790542223531442,51.4296483639967],[4.790743262315911,51.429608016085936],[4.790773218600349,51.429605562450135],[4.790866691342243,51.42965028356201],[4.790871982519143,51.429665717562095],[4.790864001289508,51.429729515857396],[4.790869805034236,51.42976293025511],[4.790900260637352,51.4297882727829],[4.790941683024665,51.42980190489438],[4.791250848955886,51.42984034793877],[4.791373178168358,51.42984472109163],[4.791423479040868,51.42984139139545],[4.791494915956552,51.429807418609634],[4.791525783706332,51.429746218059236],[4.791510366051097,51.42972220193195],[4.791390951234304,51.42958617456479],[4.791366043895356,51.42954669401176],[4.791354892689408,51.429502115096575],[4.79138471006978,51.42941125487419],[4.791423659727577,51.429332396500506],[4.791466797029088,51.4292807958296],[4.791562114014334,51.42918875986048],[4.79170051228087,51.42919686420164],[4.791750871001539,51.42921657318344],[4.791816995259348,51.4292545830751],[4.791921584619759,51.42931135124765],[4.791963069170472,51.4293114011041],[4.792096555474289,51.42926621176126],[4.792192828240622,51.4292407698408],[4.792430105524712,51.42914490868979],[4.79255177825085,51.42907379757294],[4.792651070085935,51.42899873402406],[4.792744225699838,51.428937688758346],[4.79280330733139,51.428902681424404],[4.79288346626846,51.4288094345589],[4.792803083057366,51.428691576245186],[4.792784213197798,51.4286676235978],[4.792790960146434,51.428647540840835],[4.792852839470712,51.42857327528403],[4.793025439155273,51.42856304416604],[4.79309565466951,51.4285894515377],[4.793188084316547,51.42864361280079],[4.79325837721729,51.42869610622008],[4.793354620608165,51.42879200419229],[4.793466190061578,51.4289344975719],[4.793523450652391,51.42896641186426],[4.793603364247801,51.42897252642265],[4.793919283587915,51.42874035934997],[4.794038600124455,51.42861577779787],[4.794072346821569,51.42855291029896],[4.794122009070351,51.42851896004759],[4.794153086017724,51.42849771548018],[4.794221711130805,51.428492769837945],[4.794264099263517,51.428497362859154],[4.794397343409084,51.42853679105019],[4.794567682502569,51.42859202121824],[4.79496654677405,51.42874410708097],[4.795077088884124,51.42877343259583],[4.795201646590334,51.42879313910387],[4.795330996752408,51.42880700004814],[4.795478108238173,51.42879628542767],[4.795590578607132,51.428766805951746],[4.795686758799729,51.42872166603825],[4.795692579498928,51.4286842118938],[4.795653787133776,51.42860194668113],[4.795546079706117,51.42846499417378],[4.795525611060461,51.42841898412816],[4.795539083116482,51.42838917339115],[4.795577338346376,51.42837650429169],[4.795625673525702,51.42836493799075],[4.795706190522658,51.428357732641395],[4.796388739951979,51.428309513966845],[4.79646952395705,51.42835271012611],[4.796502867881967,51.42838169731979],[4.796698431653476,51.428627778253315],[4.796773301534987,51.4286869085254],[4.796892382772249,51.42872981279108],[4.79701764547146,51.42879397096181],[4.797059963301018,51.428828477618985],[4.797087635516057,51.428867997893285],[4.797097556424446,51.428899176581524],[4.797097749663857,51.428944238839684],[4.797113478858503,51.428983276222674],[4.79717888735813,51.42906802164213],[4.797315300918444,51.42908730943221],[4.797416116079971,51.42903727461152],[4.797464873152924,51.42898755186496],[4.797505180707988,51.42886289999234],[4.797546325267296,51.42881916128813],[4.797651268177169,51.4287578750666],[4.797652835815994,51.42875674139974],[4.797791445332258,51.42865616396616],[4.797917533499298,51.428613150865836],[4.798010181871352,51.42865528226456],[4.798046234184001,51.428696210939606],[4.798169156073023,51.428860420308744],[4.798262987197835,51.42893906133379],[4.798357763451234,51.428947890388734],[4.798624673904849,51.42894134496062],[4.798682874336111,51.42890073014404],[4.798706337783505,51.42885535575642],[4.798704132505717,51.428811200223464],[4.798600249693088,51.42870025672773],[4.798599985471881,51.428622708291066],[4.798697292791303,51.42856797146419],[4.798830057148163,51.428600317905214],[4.79900090834052,51.42869541885051],[4.799267362569023,51.42880218352432],[4.799334890472541,51.4288221015858],[4.799475073070363,51.42884685310403],[4.79974110579907,51.42887711916802],[4.799816750798612,51.42889539689925],[4.799879390422888,51.42892421599449],[4.800197607327736,51.429106350198026],[4.800260868841397,51.429115944994905],[4.800317131319995,51.429111841448815],[4.800479398723828,51.42902737106526],[4.800630625916497,51.428952660812314],[4.800707087581619,51.42893208313089],[4.800802053147251,51.42892175584113],[4.801063070687643,51.428954106065476],[4.801256967174771,51.428957201393324],[4.801320934273592,51.42894545955265],[4.801319176713798,51.428857314737094],[4.801241371920754,51.428749713600496],[4.801213292694429,51.42868452902029],[4.801267186507679,51.42861405719159],[4.8013617199492,51.42857910672985],[4.801408520750611,51.42853241975805],[4.80143203541865,51.42850633522974],[4.801454869017558,51.428435887143216],[4.801500514704418,51.42837276265868],[4.801555107559223,51.428332883374296],[4.801615941279135,51.42832880215144],[4.801677989099031,51.42835782405447],[4.80173217020501,51.4283914267332],[4.801838968057732,51.428469617568055],[4.801892521642258,51.428479315585506],[4.801953234759318,51.428477921256906],[4.802011240601169,51.428470113233665],[4.802111571668732,51.428410229121404],[4.802175414835828,51.42831729861252],[4.802231244738931,51.428287420853486],[4.802298860178531,51.4282770181382],[4.802479744483017,51.42828317433875],[4.802617453935422,51.42826642599731],[4.802788581385584,51.42823616381612],[4.802983691416634,51.4281936977227],[4.803074590193583,51.428178521195605],[4.803222628352703,51.42816475422889],[4.803605518755702,51.42812432351094],[4.803641248424813,51.42811217847459],[4.803680185951002,51.42808420207428],[4.803764003217058,51.42800660675894],[4.803813728764364,51.42797945730644],[4.803872217667106,51.42796528664858],[4.803988975402555,51.427951892653894],[4.804033920045585,51.42794213965993],[4.804117094661915,51.42791247858226],[4.804220451293091,51.427852940377356],[4.804255211360591,51.42786936596089],[4.804374892013577,51.42792200052502],[4.804466521819527,51.42794292591258],[4.80455393737817,51.427976324725705],[4.804589363251385,51.42801380549178],[4.8047538089823,51.428255393728804],[4.804875564678682,51.42844515450775],[4.804913396190384,51.428469963869674],[4.805022946031802,51.42849298277072],[4.805174751723084,51.42850289085642],[4.805212166985959,51.42849386390078],[4.805369666033757,51.42858158989703],[4.805493748450942,51.4286208158655],[4.805672018987908,51.42862234278187],[4.805721273008094,51.42859717671079],[4.805769544633557,51.428530647889396],[4.805762844549801,51.42845392138022],[4.805787397574468,51.428433036729515],[4.805898408776486,51.42836966098168],[4.80592174248974,51.42835530514306],[4.805975055013062,51.42830614090084],[4.806023337084374,51.42829626893394],[4.806210417611803,51.42829466584315],[4.806312455870418,51.42828541200564],[4.806418147566646,51.428276068399434],[4.806610198978952,51.42829964029592],[4.806610918071915,51.42829511347943],[4.806679335458265,51.42826569175124],[4.806732133230977,51.42820945035687],[4.806733278980704,51.428163504908525],[4.806720366634583,51.42812960652451],[4.806695591829781,51.42810584250476],[4.806626713081827,51.42808795347595],[4.80655893106032,51.4280776654673],[4.80646197498775,51.42807404577471],[4.806431173877985,51.4280481483034],[4.806414180408957,51.42802761400988],[4.806333510164868,51.4279262672857],[4.80629096888809,51.42788624372816],[4.806190364160662,51.42782708133287],[4.806132860104259,51.427800151909416],[4.806096770485457,51.42778307306601],[4.806249003330464,51.42762838651701],[4.806425283458515,51.427513819995276],[4.806561516934877,51.42738007838542],[4.806628809268836,51.4273609883019],[4.806700520933038,51.42734940790545],[4.80701490068094,51.427433210985555],[4.807339987576564,51.42749716505303],[4.807420255100456,51.42748895262299],[4.807486543506975,51.427463987318575],[4.807552201575595,51.42740829485744],[4.807663587881454,51.42726637448396],[4.807681813842918,51.42723860848323],[4.807734520076737,51.42715656810326],[4.80780885869813,51.42710455012059],[4.808112665596878,51.4270200349175],[4.808167796217777,51.426993836302586],[4.808186243748833,51.42695538354707],[4.80819227502168,51.426937885166666],[4.808178567335289,51.426915605616905],[4.808154114814285,51.426860795918344],[4.808075746500065,51.42679995672195],[4.807962398270504,51.42673771232928],[4.807943896402716,51.42669215471878],[4.807955626481481,51.426664095745586],[4.807990913941929,51.42662545696204],[4.808359272126506,51.42643832094495],[4.808495107568502,51.42640774048405],[4.808687573741749,51.42641848391365],[4.808809401563339,51.42641417104108],[4.809083898968446,51.42634887904914],[4.809226327525526,51.42632784064295],[4.809475832140687,51.42632849216653],[4.809563118892901,51.42629719363394],[4.809569699376681,51.4262601291156],[4.809573093005167,51.42622265330773],[4.809533977637105,51.426117541451305],[4.809542044261225,51.426084610187736],[4.809574146770233,51.426046404603866],[4.809628737790062,51.4260399422084],[4.809686560746623,51.42603941046785],[4.809749276131972,51.42605107385524],[4.810045352770312,51.426148171617946],[4.810251392452805,51.4262349805779],[4.810434667886545,51.42634367241569],[4.810493210753211,51.42635446082954],[4.810546186706897,51.42634611134496],[4.810713312707433,51.42626969586849],[4.811312853038071,51.4260845915788],[4.811450365316318,51.42603484268868],[4.811642458810243,51.42596568626962],[4.811771958081912,51.425956086738566],[4.812021347390261,51.425997631642836],[4.812058776691098,51.42601229724876],[4.812095148387597,51.42603443637427],[4.812130626381554,51.42605333508759],[4.812168465889971,51.42612554946633],[4.812161618979681,51.426273975999486],[4.812162208793075,51.42633665834062],[4.812203179322632,51.42635786727726],[4.812247927752504,51.42637024976344],[4.812490672010791,51.4263391667434],[4.812900620545712,51.42629704110018],[4.812985286583499,51.42627955200481],[4.813058684546051,51.426246834173774],[4.813170550593455,51.42614630473263],[4.813301943780041,51.42597025682222],[4.813364980177944,51.42591534822883],[4.813437864776728,51.42588222313691],[4.813531035466635,51.42585381803457],[4.813611255250323,51.42580564557024],[4.813699432129195,51.4257055564662],[4.81370593790633,51.42569816363581],[4.813746375851618,51.42568398919869],[4.813815092981575,51.42566549525501],[4.813910286018988,51.425677459841665],[4.81396876714064,51.42570688014674],[4.814132380527798,51.42578917708419],[4.814217122168045,51.42580446090898],[4.814285245384463,51.42579318183828],[4.814553758978071,51.42576149298359],[4.814738786735706,51.425710661072834],[4.814757370274052,51.42570555668866],[4.814771624518733,51.42568796349019],[4.814746923998197,51.42562942359458],[4.81456958742106,51.42557390993286],[4.81454913111137,51.4255667083135],[4.814524340068028,51.42554745829778],[4.814537182211515,51.425508356806844],[4.8148225220589,51.4253548248318],[4.814976457864439,51.42528712968407],[4.815192279684327,51.42525936972792],[4.815351434727766,51.42518702546283],[4.815453019752545,51.42518798178576],[4.815563444910239,51.42520748942845],[4.815634254710749,51.42523069507104],[4.815692099273453,51.425266205849226],[4.815727057270635,51.42529568981309],[4.815766232091411,51.42535583749336],[4.815810177704526,51.42543687170317],[4.815840685350833,51.42551056808547],[4.81583912323919,51.425530812368685],[4.815849157304042,51.42554359874427],[4.81588062244418,51.42556269239399],[4.816116075825208,51.42566775657525],[4.816232055534083,51.4256743917352],[4.816347904514308,51.425632899709754],[4.81640937125624,51.425585892012286],[4.816432614571183,51.42550601374123],[4.816432789475583,51.42532434046715],[4.816420179776016,51.42529791440791],[4.816434375026982,51.425276931914276],[4.816571699780484,51.42524726622643],[4.816682898134585,51.425230308727926],[4.816745453390879,51.425192762473515],[4.816816757944832,51.42506037241068],[4.816874924209523,51.42500929435201],[4.816917139792043,51.424991963426876],[4.817022224757208,51.42494986081004],[4.817420467160074,51.42479726077588],[4.81764328754703,51.424678545099695],[4.817691814135946,51.42466009413045],[4.81776304311743,51.4246393898804],[4.817949668685893,51.424593513567906],[4.818037667891112,51.424579273078535],[4.818664126174689,51.42448434896207],[4.818758618420873,51.42446016192361],[4.818814606280857,51.42443365685851],[4.818939320236603,51.42435876685776],[4.81903227069508,51.42431289092777],[4.819113054794061,51.42427643894185],[4.819221040937745,51.42425391725737],[4.81946998957059,51.42424749745589],[4.819560359082613,51.42422870999773],[4.819646230932363,51.42419353185255],[4.819695671551242,51.424133879509185],[4.819715385384365,51.424062118359124],[4.819708380219629,51.42393297710849],[4.819732049743512,51.423880705094945],[4.819769025237903,51.423854484626396],[4.819799000946273,51.42382923685582],[4.819853902282693,51.423814834022174],[4.819920914561623,51.42381160030011],[4.820133450117433,51.42380564922257],[4.820246482268592,51.423800391777625],[4.82027206085749,51.42379920370588],[4.820485996911845,51.42376963603625],[4.820541126624036,51.42373220449928],[4.820558977486782,51.423617017908796],[4.82052196556925,51.42356639258128],[4.820477525723923,51.423479479036615],[4.82040857980474,51.42339078347428],[4.820407898788763,51.423356505595464],[4.820418074316432,51.423335997481075],[4.820500604394572,51.42328492812882],[4.820552947615652,51.423264579886414],[4.820642477101353,51.42317087425506],[4.820655265300231,51.42300718607243],[4.820699290518282,51.422934194488974],[4.820807372833,51.42287351405117],[4.820949849284018,51.42281487913644],[4.821060334852342,51.422791028551465],[4.821138130323155,51.422784187993145],[4.821270356594451,51.42271962423002],[4.821342426913422,51.42262147376655],[4.821439627340081,51.42257442102746],[4.821600066241372,51.422555809991636],[4.821953595536972,51.422615960115785],[4.822046680656014,51.42270137391235],[4.822015126680726,51.422763639771546],[4.821870459639753,51.42292719246588],[4.821874698706148,51.42296101116515],[4.821915887836049,51.42298094132866],[4.822392750160834,51.423102758046504],[4.822532332735006,51.42309658422262],[4.822573571330871,51.42308468479938],[4.822715216717738,51.42300594459635],[4.822833817244266,51.4229095464654],[4.822897532796994,51.422840307787794],[4.82296533175713,51.42281751634389],[4.822999636196394,51.42281405973874],[4.823064193288951,51.42282319900621],[4.823278552727389,51.42290420037975],[4.823434341924667,51.422932603103234],[4.823881716678637,51.42292311461323],[4.823970029157037,51.42292849387973],[4.824038627689527,51.422939881358026],[4.824091864434073,51.422955293572265],[4.824359075660874,51.42309941620359],[4.824414366338409,51.42311268983891],[4.824726709526887,51.4230809283876],[4.82488813219583,51.42299656398983],[4.824922499322574,51.42297286418704],[4.82497929347019,51.42287469180731],[4.825036606107125,51.42280091769074],[4.825157006297091,51.42275286802683],[4.825246910228178,51.42275159324202],[4.825321288435896,51.42276415838156],[4.825359925439601,51.42278712225931],[4.825663327383111,51.423083076381644],[4.825691744078709,51.42311407194606],[4.825848324224523,51.42314497414972],[4.826188705321086,51.42308497482548],[4.826222225736383,51.423076290969654],[4.826234220515397,51.42302922899753],[4.826240882575691,51.422966860305344],[4.826200245965073,51.42286213334446],[4.82614852856082,51.42282251338878],[4.82590917121201,51.42268118959063],[4.825857478822013,51.42264074264834],[4.825841345637313,51.422617518680205],[4.825840006184968,51.422600190684],[4.825848642653985,51.42258419609901],[4.825868801015745,51.422560742258746],[4.825892698787611,51.42254302332797],[4.825930693366233,51.422520068782006],[4.825979145969908,51.42250132638132],[4.826095733354758,51.42246737892429],[4.826449823780806,51.42237942648646],[4.826490352992569,51.42235960308003],[4.82663320284743,51.42228974493655],[4.826758544706001,51.42223008577698],[4.826838351608941,51.42221384872855],[4.826868735878037,51.4222064260442],[4.82693374996175,51.42222868012469],[4.82697268314916,51.42220883989773],[4.827010762679503,51.422189436013255],[4.826520316446643,51.42127087143823],[4.826504113016649,51.42124051005944],[4.826454097181479,51.42114682136937],[4.826505802559636,51.42110309634301],[4.826934796029696,51.421069291840716],[4.827532815939697,51.42100409866207],[4.828154292594245,51.4209334237575],[4.828796483243885,51.42085697496949],[4.829014251369118,51.4208310505493],[4.829483939994492,51.42076796588756],[4.829854246631023,51.42073139814002],[4.830006284971565,51.42076292927154],[4.830368729954552,51.420661359798274],[4.830922997458344,51.42050486521969],[4.831650255419753,51.42029535764787],[4.832694887165624,51.41999707039763],[4.833503506389898,51.41977520979081],[4.833401960684222,51.41960387639769],[4.833033525788331,51.4191135459164],[4.834657946640002,51.41843301889128],[4.834737722167723,51.41839959859376],[4.835411588059523,51.419211219568176],[4.836044388641751,51.41904032146553],[4.836075814985487,51.41903202040766],[4.836476064357871,51.418926233052666],[4.83675852879365,51.418848895678465],[4.835535425541163,51.41754265390871],[4.83557957085366,51.41752744676511],[4.835674601211708,51.417497235081825],[4.835744616759559,51.41747659506739],[4.835892910228102,51.41743085054031],[4.836491438020657,51.41725425994696],[4.83709034509787,51.417894432276825],[4.837681462705636,51.418526250059976],[4.837717648616554,51.41855360283762],[4.838042854465145,51.41879935264637],[4.838558515157892,51.419189028202794],[4.83936243355158,51.4197965073024],[4.839670939805727,51.41979894446302],[4.839714354271436,51.41979917518788],[4.839641615215184,51.41994951407943],[4.83953305130899,51.42008888912256],[4.839401974644742,51.42014074167271],[4.83936286630489,51.420145843472135],[4.839395290264571,51.42017059824923],[4.840409381528504,51.420944937181304],[4.840515709842427,51.42109513598754],[4.841469388263975,51.42244220421918],[4.841189064467723,51.4225256934539],[4.841079187066498,51.422554932267445],[4.84100975510891,51.4225708141326],[4.840910662585201,51.42258428288789],[4.840826312860315,51.42257325405355],[4.840567273553057,51.422507365733765],[4.840520468378092,51.42245275482209],[4.84037906183402,51.42231287263774],[4.840225903500095,51.42216872839277],[4.840171827991913,51.42211619563195],[4.840077565999641,51.42205425181265],[4.83989091351596,51.4219601707948],[4.839808590313716,51.421919370631954],[4.839640833384655,51.421864569301995],[4.839488474210235,51.42181819966217],[4.839364096126304,51.42178237032568],[4.839316757478273,51.42177952326633],[4.838976870486956,51.42182102811217],[4.83884771416117,51.4218286908461],[4.838727522301249,51.42182736177801],[4.838642450949258,51.42181194140042],[4.838302403912865,51.42174125354986],[4.838259360408844,51.42173274530942],[4.838146802292763,51.42148430280856],[4.838082811668617,51.42135520021973],[4.837947630935603,51.421082479976945],[4.837929538525825,51.42104598990115],[4.837891354441896,51.42104350896191],[4.837817504121494,51.421000203428044],[4.837646483671486,51.420845661398666],[4.837519429400267,51.420847319007095],[4.837010532435301,51.42098417549523],[4.836914063609808,51.421029410875036],[4.83674819132242,51.42113109237524],[4.836577004246217,51.421184694094585],[4.836250846666932,51.42119903751448],[4.83615310810004,51.42116721373592],[4.836118083951601,51.42112809954667],[4.836090759765844,51.420926512061456],[4.836014108951803,51.420885493298265],[4.835947598100835,51.42087505756903],[4.835896357164041,51.420883516645695],[4.835636418747912,51.42103954810901],[4.835436867835825,51.421147567464175],[4.835320124639598,51.42117267844894],[4.835192599221195,51.421147850103786],[4.835093834993607,51.42095974918071],[4.834997595928335,51.420915805547956],[4.834946433989297,51.420914161098594],[4.834843549348671,51.42093580458672],[4.834667829099411,51.421098812479016],[4.83459657122696,51.42115028677081],[4.834544243750045,51.42117598973879],[4.834484236738339,51.42119475285115],[4.834409137082163,51.42118952504873],[4.834328583071438,51.421124270678575],[4.834183616465615,51.42096805822365],[4.83415433540963,51.420902462501225],[4.834105496985337,51.420613229969035],[4.834011586800766,51.42049595640854],[4.833977324935485,51.42050441425561],[4.833564517678001,51.42056769705963],[4.833536367068701,51.42056421061177],[4.833507329249306,51.42055801429768],[4.83347089478077,51.420513319512786],[4.833391493826723,51.420395943526955],[4.833314543196769,51.420349105758],[4.833256623745497,51.420344003722484],[4.833185693491105,51.42036492555742],[4.833163395291257,51.42037319728207],[4.833108326575658,51.42041153392167],[4.833095873663222,51.42048156095802],[4.833112844157443,51.42050119234656],[4.833150702888615,51.42053631187828],[4.833226139124424,51.420591843784685],[4.833288994107559,51.420626210048205],[4.83330717411774,51.42067765874543],[4.833299374315849,51.420712606375474],[4.833262755039314,51.420735210283134],[4.833128532003982,51.420758923698315],[4.832975092273421,51.42075617233385],[4.832747466518102,51.4207369781292],[4.832443902307284,51.42069651428325],[4.832277874183998,51.420694493157036],[4.832177720067559,51.42074332961575],[4.832153721978742,51.420781382162836],[4.832115088905215,51.420848902483094],[4.832072689620591,51.42086794589211],[4.832008050563159,51.42089514421363],[4.831241779734624,51.42095136075514],[4.830676203764134,51.42111405916328],[4.830528266947146,51.421144481775926],[4.830272987072231,51.42118465708133],[4.830217097754788,51.421211033254316],[4.830155397013736,51.42125178181636],[4.830157649699572,51.421531094648444],[4.830071877279095,51.42167101025865],[4.830011243041147,51.421723251610985],[4.829885819039844,51.42178186215965],[4.829704821561881,51.42181855283088],[4.829655937152089,51.421838696972266],[4.829612399913696,51.421873042094255],[4.829576127991485,51.4219352065162],[4.829517296065242,51.422106864338986],[4.829477990777658,51.42218191325403],[4.829382314294938,51.422284962614164],[4.829345642059977,51.422309281920704],[4.829287856078881,51.42232718107054],[4.829237322057562,51.42232933042619],[4.829172481205066,51.42231866511254],[4.82886635808327,51.42222473193681],[4.828769589612751,51.422206677550506],[4.828651276090173,51.42219513573804],[4.828575663986637,51.422191753435925],[4.828471080464332,51.42218963459667],[4.828153281541255,51.42221093484006],[4.828170612635061,51.42223855978223],[4.82821164867878,51.42230398863132],[4.828282775674762,51.422536071418804],[4.828441101526137,51.4231132409644],[4.82848430511008,51.42324358870132],[4.828500624122699,51.42329284494674],[4.828553394354818,51.423445072428],[4.828608574891054,51.42374798280878],[4.828466174363287,51.42420581399853],[4.828206453932737,51.424991356338126],[4.828041073617458,51.425508592176215],[4.828034039238321,51.425529969940705],[4.82796235126801,51.42574780408603],[4.827953479906539,51.42577475512585],[4.827938694390895,51.42581966453566],[4.82737212381437,51.42754122743006],[4.826915924997231,51.42892861722752],[4.826652651750837,51.42974961804967],[4.826642072442261,51.42978202601253],[4.826556240356785,51.430045086215095],[4.826401794381245,51.430519090852435],[4.826389549300136,51.43055595825117],[4.826273831924105,51.430904385660185],[4.826083891835558,51.431492710390096],[4.825908571376944,51.4320343450658],[4.825881850679377,51.43211624889239],[4.825787788744637,51.432420968268296],[4.825528296960008,51.43321187201447],[4.825521241722428,51.433233582112834],[4.825190338405489,51.43425196405697],[4.825148403698504,51.43437321059731],[4.825042473138191,51.43470080278059],[4.825025865587813,51.43474955027102],[4.824945527736494,51.434985390497914],[4.824927797802732,51.43505982273636],[4.824920964699269,51.435135763678666],[4.824870664458664,51.435318309805645],[4.82489232633058,51.43535301233169],[4.824914030601229,51.43538777797989],[4.824954998079829,51.43583828145662],[4.824983694733156,51.43593346796102],[4.825917338961762,51.43604439090401],[4.825827875743946,51.436494715989554],[4.825810003428001,51.43657844215024],[4.82580696636463,51.436592656906356],[4.825624057426323,51.437477521187944],[4.825620387627835,51.437496389123716],[4.825616227059397,51.43751773562319],[4.825421885935558,51.43847068909586],[4.825223652064138,51.43945873395705],[4.82517033020907,51.439722731665235],[4.825040232259353,51.44036682199624],[4.82494905393987,51.44079737157936],[4.824864754333072,51.44122866435344],[4.824856678545003,51.441270010146354],[4.824856571324184,51.44127053997239],[4.824845072578804,51.44132701549771],[4.824786583322108,51.441614269258345],[4.824705515336801,51.44200839955832],[4.824690612429469,51.44205979793049],[4.824602500095156,51.4425059307025],[4.82451167006705,51.44295185254224],[4.824421556737197,51.443397831694185],[4.82435448905396,51.44373517471307],[4.824332864353596,51.44384391650108],[4.824265634734614,51.44418028788604],[4.824243740378557,51.44428986431893],[4.824155044484344,51.44473594896032],[4.824061141255622,51.4451912129902],[4.824060605502537,51.445193826162544],[4.823753661143449,51.44670089963968],[4.823375583353315,51.448557169274956],[4.823363009230384,51.44861887095976],[4.823421757479447,51.44865514615277],[4.823548291269817,51.448733286220424],[4.823809197606889,51.44888746443189],[4.82422458965413,51.449086315903905],[4.824504216728737,51.449218326441255],[4.825009187853391,51.44945281630221],[4.825451482138844,51.44965714131928],[4.825981487002281,51.44990977906518],[4.82625160549424,51.450018018064796],[4.826748983801528,51.45019522281273],[4.827371054066538,51.45041904653552],[4.827845370784535,51.450594643804045],[4.827851056805846,51.450588504702395],[4.828016924594468,51.450646450649515],[4.828037914748426,51.45065461421608],[4.828144441086612,51.45069600583682],[4.82851760692787,51.45082985695454],[4.828563871673603,51.45086286075227],[4.828583909241908,51.450877159046094],[4.828461186504869,51.451009112210265],[4.828345974410833,51.45116908350588],[4.828296238981862,51.451233699910304],[4.828236857715138,51.451288310449954],[4.828195068090713,51.451339643387755],[4.828475330992228,51.45143007391221],[4.829083748150707,51.451608995641536],[4.829148867508629,51.45169194152983],[4.829282506168414,51.451834011014334],[4.829447699578266,51.45199222230623],[4.829779178251179,51.45225495898491],[4.829756169136528,51.4526304392033],[4.829748851776097,51.452749920003065],[4.8297410511496,51.45287714688197],[4.829739728299291,51.45289472275397],[4.829739572482809,51.452906281670636],[4.83044461801097,51.45336114793728],[4.830573475226256,51.45344428916289],[4.830628883114914,51.45349587972202],[4.830654566906287,51.45351686531333],[4.830724638140342,51.45357413478733],[4.83089566341977,51.45375878101638],[4.830921823571734,51.45378201603023],[4.830945387192677,51.453809346567205],[4.831045997361847,51.45392605182897],[4.831107969290707,51.45402460420979],[4.831204634241254,51.454125128584415],[4.831449308798309,51.454431600085755],[4.831456098044255,51.45447301706794],[4.831491285656395,51.45454649764895],[4.831503292190235,51.454562411140486],[4.831526200769014,51.45459278565697],[4.831530207640093,51.454598099164265],[4.831933745298413,51.455382310011984],[4.832089829453255,51.455460994735695],[4.832302407288848,51.45562065869332],[4.832599080540853,51.45597916863027],[4.832793366917498,51.45626484928031],[4.833043771427644,51.45660124143972],[4.833317377762589,51.45696568946435],[4.833401536020871,51.45740234440466],[4.833554910800633,51.457424150840815],[4.833659126712629,51.457507009899395],[4.834401117863061,51.45809698546625],[4.834717452730843,51.45834848988676],[4.835149532636963,51.45869990357767],[4.835210163792359,51.458735813100624],[4.83525408290035,51.45874139611235],[4.835268585816737,51.45872010719908],[4.835410020798271,51.458543731635174],[4.835583675985659,51.458341997835696],[4.836088439550234,51.45775866915852],[4.836256204337302,51.457585446131915],[4.836314937792756,51.45752479696688],[4.83673419537442,51.457052757300275],[4.836909761215484,51.45685507553547],[4.836971083386978,51.45678603367961],[4.837837556666505,51.456107232660514],[4.838258375093875,51.45606566159906],[4.838412536702297,51.45605302011564],[4.838471436841719,51.456049800372604],[4.838546147457296,51.456055104430945],[4.839979281079444,51.456276593567615],[4.840120150743728,51.45632245879974],[4.840312259558999,51.45638486970595],[4.840412430441468,51.45642076402645],[4.840459116192216,51.45643665925718],[4.840592252488316,51.456481984316184],[4.841100697807362,51.45665507132621],[4.841350044161438,51.45676924535785],[4.841506016728919,51.45685899113957],[4.841940813577107,51.45713325007457],[4.841947582495443,51.45713752442694],[4.842001981434571,51.457173877709494],[4.842022825975455,51.45718985834906],[4.842152442089645,51.457289197085096],[4.842181043547127,51.45730144759354],[4.842204810333896,51.45730288891418],[4.842273502804138,51.45730631077708],[4.842309993330419,51.4573254296016],[4.842386184055493,51.4574129140693],[4.842391986257573,51.45741982660203],[4.842463130266174,51.45750462676592],[4.842719772483742,51.457701259538254],[4.842726402401415,51.457706342191884],[4.843123703607976,51.45802637268742],[4.843385439365512,51.45833317693249],[4.843729247407865,51.458730862343394],[4.843909744213623,51.45893932675293],[4.843962269884968,51.45903413378337],[4.843986180314057,51.459054982305844],[4.844020760435922,51.45906555230065],[4.844018227074263,51.45906683490436],[4.843713276556755,51.4592204459078],[4.842434679390564,51.45986451348564],[4.842383962083086,51.459825624776414],[4.84230108420282,51.459856573010455],[4.842240085524465,51.459880863727996],[4.841943245622702,51.45999906501203],[4.841045242016171,51.46035661363642],[4.841057859130301,51.460367612085335],[4.841089115922954,51.460408163150994],[4.84108513166057,51.46042123225905],[4.84103407926734,51.460445137418816],[4.840532647867384,51.46061933096501],[4.840455052982539,51.46064628462556],[4.840408394143306,51.46066255160152],[4.839681847229883,51.46091584026214],[4.839623728944159,51.46093609815238],[4.839064275643062,51.46113833705667],[4.839001999842272,51.4611608492923],[4.838970898053131,51.461172092084105],[4.838947182364672,51.46118059200734],[4.838403142765171,51.46137258096405],[4.838329234314889,51.461390741486746],[4.838282794728437,51.4613946579826],[4.838206168068022,51.46139478302235],[4.838190900919795,51.46139475616264],[4.836284345555409,51.46125845567912],[4.836260881888819,51.46125678087984],[4.836252672494564,51.46125619381378],[4.836185904666577,51.46125142019551],[4.836108977431811,51.46124548395976],[4.836179280107281,51.46176929895707],[4.836348272109793,51.46302835437924],[4.836352360853788,51.46305318287095],[4.836367685282375,51.46314609191934],[4.836368341884068,51.46315010404017],[4.836494391385143,51.46417322416721],[4.836604216264989,51.4650627922885],[4.83695266061502,51.467893087472966],[4.836948883594283,51.467971038837064],[4.836913817117089,51.46798123767775],[4.836900197780695,51.467985200478125],[4.83685506833632,51.468015900345755],[4.836996018347119,51.46839259471144],[4.837180185698721,51.46893885116335],[4.837207963690734,51.46899118020016],[4.83723380321107,51.469035994420416],[4.837272831187508,51.46908633597221],[4.837352742341204,51.46915735562745],[4.837360419077708,51.469169994130716],[4.837383054168269,51.46920726058035],[4.837545732166273,51.46940850460485],[4.837682574975574,51.46960279527743],[4.837751587234744,51.46970647372044],[4.838262010580671,51.47076794828897],[4.83840907619697,51.47106401276532],[4.838721849368965,51.47140303125579],[4.838530809923947,51.47142836301843],[4.838631303663492,51.47156075537097],[4.839233318425142,51.47228178125192],[4.839687240454739,51.47281041370913],[4.839686707610485,51.472817620253295],[4.83990490299038,51.474773758976184],[4.839938677479952,51.47508220720351],[4.840030963302034,51.47592496500369],[4.840071466324909,51.47629171927636],[4.840078098897929,51.476353081139195],[4.840125415484504,51.47679136445405],[4.840131748355922,51.4768501271355],[4.840193380217012,51.47742090988971],[4.840195421033217,51.47743795328089],[4.840248695346694,51.477881361083064],[4.840327203375724,51.478534641333106],[4.841196759744796,51.47977053967198],[4.841405224700169,51.48006682421184],[4.841873018456176,51.480728277351666],[4.841878284033323,51.48073576266855],[4.84173451479775,51.48083053449063],[4.841544522231396,51.48089267643474],[4.841377176339521,51.480910186550396],[4.841271479486538,51.48092959367907],[4.841041896806735,51.48098696539909],[4.840582001695029,51.481088005102315],[4.840485894003495,51.48111921379608],[4.840346494629222,51.48113269145796],[4.840270756883056,51.48116390548483],[4.84017552452522,51.48116896053962],[4.840000431009234,51.48114703436365],[4.839866196515855,51.481158369349586],[4.839685251092055,51.481232811446],[4.839646473110522,51.48124677802237],[4.839375818568467,51.48136366664505],[4.839240092906514,51.48142227514614],[4.839068472218506,51.48148730380476],[4.83894454773429,51.481548538165995],[4.838760684593248,51.48158409744978],[4.83860745368124,51.481630604935646],[4.838555763673113,51.481652771219366],[4.838458602006656,51.48171029258458],[4.838269639586625,51.48178064086138],[4.838152143625633,51.481807648186674],[4.838049799211039,51.481835274970884],[4.837649966440809,51.48195520148339],[4.837576073776675,51.48195733460851],[4.83747193444863,51.48194041279884],[4.837389034398528,51.481945739377046],[4.837227255573985,51.481933354954336],[4.837052702837774,51.481953512601905],[4.836984099877082,51.481947975838075],[4.83685311576843,51.48194978553824],[4.836693445427095,51.481966624004194],[4.836622352747122,51.48197530460454],[4.836446222802246,51.4819782403037],[4.836240892435637,51.48195184224534],[4.836071439477609,51.48200733959711],[4.835954323682233,51.48201706099311],[4.835844149774561,51.482040801667765],[4.835621726370036,51.48207420538473],[4.835424694467099,51.48211974673184],[4.835297826186629,51.48213825740403],[4.835081733194762,51.482151734815126],[4.834986064337708,51.48213914749796],[4.834904864989436,51.48209323504227],[4.834627150354775,51.48207516597169],[4.834503409433592,51.48206136675018],[4.834446677370697,51.482057520650066],[4.834305241379516,51.48207472082386],[4.834180837988149,51.48206450466628],[4.834006091673275,51.482034094680046],[4.833802561270989,51.482034990943944],[4.833686649224309,51.482045120268914],[4.833528317835995,51.48202749758299],[4.833464039250003,51.482019165750394],[4.832701931004389,51.481929409191906],[4.832233928182184,51.48187482586895],[4.831815564657425,51.481833204965085],[4.831720568397746,51.4818222541327],[4.831251027490236,51.4817782753544],[4.830797121355556,51.48177319195225],[4.830578107343899,51.4817700986663],[4.830326466047489,51.48176158191395],[4.830112612574524,51.481767357376754],[4.829863854545389,51.48176322195535],[4.82975594783755,51.48175325959177],[4.829632493600865,51.48175267914046],[4.829472514128387,51.481775780465156],[4.829278574789002,51.48178589224712],[4.829242993577968,51.481791268340224],[4.829233503392994,51.48179269716031],[4.829158759895647,51.48179728383214],[4.829157247175354,51.48179737547975],[4.829109320387345,51.48179871047704],[4.828711146782826,51.48180260449617],[4.827787346661919,51.48188798976016],[4.827515194263445,51.481889714827616],[4.827429379856911,51.481913025001774],[4.827342292281426,51.48193215818957],[4.827278900295078,51.481940798116796],[4.827074349572238,51.48194039235265],[4.826876949356885,51.481949701518],[4.826500566198309,51.4819971535807],[4.825850867436924,51.48209031139206],[4.825754661042684,51.482100509601864],[4.825580757007151,51.48211895434292],[4.82535702534103,51.48212589607009],[4.825052297968983,51.48218780969658],[4.824872879160639,51.48218064460908],[4.824833169387971,51.48217986909219],[4.824764383842434,51.48221017174045],[4.824692088992212,51.48225067774892],[4.824147482995579,51.482394490030806],[4.823918292241581,51.482456216603836],[4.823454667713032,51.482566950855556],[4.822962103463479,51.48268818621701],[4.822812354909583,51.48273436626001],[4.822630519619423,51.482767509973755],[4.822292384714778,51.4828653540582],[4.822018976221876,51.48291557300829],[4.821828968523853,51.48293779043899],[4.821794286302884,51.48294830124595],[4.82172033216144,51.48296909385902],[4.821654380744932,51.48297379921173],[4.82155765660455,51.48295707888483],[4.82151550286067,51.48297567033564],[4.821539452858535,51.48306303201448],[4.821143040260229,51.48307022566931],[4.821010400112367,51.48316550247653],[4.820960472943855,51.48322103611323],[4.82102573244625,51.48332755567091],[4.821018378596981,51.48337015406984],[4.820837848848561,51.48349129306278],[4.820755853824081,51.48358315676055],[4.820740655076447,51.483644135214206],[4.820761775789099,51.483718125914805],[4.820652867324748,51.483889068616826],[4.820626389199529,51.48398410496615],[4.820587644804039,51.48407104576834],[4.820503646917808,51.484160607418325],[4.820495139689651,51.48419519113244],[4.820469243899986,51.48426191543482],[4.820469743614283,51.484265720138254],[4.820476702589627,51.48431849142054],[4.820465581481185,51.484417314654095],[4.820422426396854,51.48468615007799],[4.82037204330818,51.48501858237272],[4.820346046442113,51.485177765330285],[4.820339542996471,51.48530229206983],[4.820341429067522,51.485361250016254],[4.820281284965787,51.48561377805335],[4.820279253512442,51.48562198398736],[4.82027748097167,51.48563020915599],[4.820275708318304,51.485638443312865],[4.820274180293124,51.48564668764628],[4.820272666551955,51.485654941037815],[4.820271397327204,51.48566321359411],[4.820270128101986,51.4856714861504],[4.820269117789889,51.48567977794139],[4.820268107589372,51.485688060744046],[4.820267356414113,51.48569635379313],[4.820266605126624,51.485704655830475],[4.820266112976536,51.48571295912596],[4.820265620938213,51.48572125343314],[4.820265387925531,51.485729557986716],[4.820265140516209,51.48573786247037],[4.820265166753162,51.4857461592938],[4.820265561394376,51.4857942335069],[4.820265300105185,51.48579787271709],[4.8202648084709,51.48580151080889],[4.8202643312331,51.48580514897064],[4.820263623762087,51.48580877702573],[4.820262916290961,51.485812405080814],[4.82026199309507,51.48581601411084],[4.820261069787078,51.485819632129186],[4.820259916469634,51.48582322206429],[4.820258777548584,51.4858268120693],[4.820257408618015,51.485830373991035],[4.820256039799186,51.48583392692447],[4.820254455367346,51.48583745184455],[4.820252885443796,51.4858409678462],[4.820251100019132,51.4858444468462],[4.82024931470615,51.4858479168579],[4.820247314003951,51.485851340879634],[4.820213605179349,51.48590832823359],[4.820209247742432,51.48599576845359],[4.820209429990642,51.485998474978246],[4.820208892519388,51.48600116901942],[4.820208339195905,51.486003979838486],[4.820207009573946,51.48600669699989],[4.820205635642282,51.48600950383448],[4.820203486755537,51.486012109151815],[4.82020130851545,51.48601475927081],[4.820198385233065,51.48601711812936],[4.820195476347012,51.48601947705766],[4.820191924090771,51.48602147330853],[4.820188429980603,51.48602342489747],[4.820184422629835,51.48602496949649],[4.820180559916984,51.48602646086464],[4.820176328377876,51.48602750998881],[4.820172298951357,51.48602851515003],[4.820168058949768,51.486029087824456],[4.819988567721001,51.486062391658486],[4.819754798663308,51.48642012622271],[4.819684467601512,51.486537798869385],[4.819409836249407,51.48681677172268],[4.819136124856051,51.48705521774796],[4.818812291543663,51.48733516334186],[4.818485820814631,51.48762767058308],[4.81829966509951,51.48787217704194],[4.818168141794231,51.488044661212],[4.818061303006128,51.48813944019849],[4.818007990817129,51.48831985596725],[4.817841142643586,51.48841895351448],[4.817755447526169,51.48861662265371],[4.817666820320952,51.48864697720872],[4.817595299560385,51.488671473517314],[4.817560092659921,51.48875108669492],[4.817512803614237,51.48892056523944],[4.817419186814621,51.48899173155038],[4.817403568162823,51.48907539534184],[4.817531240617416,51.48913396925271],[4.817562035587958,51.48917105460073],[4.817581220604639,51.48920507205001],[4.817545489511904,51.489458823384176],[4.817532626874501,51.48958228522146],[4.817605985238214,51.489724010473],[4.817607941309782,51.489729934667686],[4.817609335080022,51.48973591904155],[4.817610742798474,51.4897419394388],[4.817611588552781,51.48974799305039],[4.817612419572033,51.48975407355659],[4.817612703249631,51.489760169370804],[4.817612972416995,51.48976627410311],[4.817612665559269,51.48977238501468],[4.817612358701457,51.48977849592627],[4.817611476268196,51.48978457706394],[4.817610608232521,51.48979065827188],[4.817609164846078,51.48979669172937],[4.817607721684228,51.48980270721018],[4.817605717794127,51.48980865703419],[4.817603728751291,51.489814570975284],[4.817601193490251,51.48982041034144],[4.817573413097807,51.48989215855614],[4.81762481093316,51.490205553315405],[4.817620370406685,51.49039124099564],[4.817689478549153,51.490559759146855],[4.817834833143627,51.49067967784488],[4.818035039601392,51.49088207558941],[4.818217719490174,51.49105144351203],[4.818183134846728,51.491166448939836],[4.818088205953159,51.4912662568104],[4.818041823804436,51.491452971556676],[4.818075452874423,51.4915053875427],[4.818012906982248,51.49163858488298],[4.817979189711516,51.49180734770476],[4.817945539420236,51.49198800306963],[4.81784248673518,51.49222824864122],[4.817728727690012,51.492349330876046],[4.817699777534621,51.492560472245],[4.817617452757425,51.49268146495946],[4.817613081497157,51.492687870655956],[4.817609155134152,51.492694395377114],[4.817605228657516,51.49270092908639],[4.817601732792109,51.49270757276177],[4.817598251324423,51.49271421650727],[4.817595215091941,51.49272095231261],[4.817592178746056,51.49272769710614],[4.817589616658126,51.49273451612345],[4.817587040170668,51.492741335070455],[4.817584952452691,51.49274821932314],[4.81758285056033,51.49275508552912],[4.81758123743773,51.4927620170408],[4.817579610253385,51.492768921517374],[4.817578472064102,51.4927758733232],[4.817577334211984,51.492782798164136],[4.81757667118146,51.49278975228756],[4.81756980552097,51.49292526142419],[4.817427061576354,51.49313686336423],[4.817264347687851,51.49324122077794],[4.817218345983179,51.49333274529744],[4.81721215725199,51.493343987090185],[4.817205695613173,51.49335517361751],[4.817199219572215,51.49336636007427],[4.817192456449597,51.49337747321877],[4.81718569321108,51.493388595351185],[4.817178642778077,51.493399653159564],[4.817171592454226,51.49341070197923],[4.817164254935653,51.49342168647482],[4.817156917413531,51.49343267096999],[4.81714930732061,51.49344357323464],[4.817141697111444,51.493454484487124],[4.817133800044882,51.49346530445056],[4.81712590286196,51.49347613340173],[4.817117733107827,51.49348688012228],[4.817109563462425,51.49349761785399],[4.817101121245618,51.49350827335503],[4.816912280182884,51.49376115108063],[4.816762844620735,51.49390417069363],[4.816721204052881,51.49394173837428],[4.816703786274378,51.49396306469245],[4.816690673712066,51.49398442102818],[4.816675214514937,51.49402181096676],[4.816651376935257,51.49404177556767],[4.816634057443646,51.494056405674634],[4.816618952754555,51.49406436789648],[4.816565006587908,51.494092212404055],[4.816539155405279,51.49410279179004],[4.816500280174542,51.49412536155271],[4.816452837494431,51.49414788044419],[4.816394597763554,51.494177043226706],[4.816338486640898,51.49420755572142],[4.81631691190883,51.49421815596193],[4.81629094298332,51.49423811007132],[4.816275771077009,51.49425142027652],[4.816192424517265,51.49432361561021],[4.816130922342707,51.49435109038798],[4.816072751675645,51.49437356565648],[4.816033924000713,51.49439345682507],[4.815949750645039,51.49443854660934],[4.815876321305725,51.49448235854607],[4.815826629136416,51.49451424153407],[4.815757459451724,51.494559404583946],[4.815649375062719,51.494632494226494],[4.815619265883855,51.49464038288803],[4.815552611094642,51.49465611969456],[4.815485905781822,51.49467587422465],[4.815360911258605,51.49472746941747],[4.8152960293751,51.49477399252691],[4.815263639984565,51.49479257563254],[4.815246322081316,51.49480587519565],[4.81520543233515,51.49481905931046],[4.815175306121056,51.494828287110934],[4.815147291848723,51.49484019493223],[4.815123571025929,51.49485078444167],[4.815082496100684,51.49487869131691],[4.815034967737668,51.494907905897826],[4.814968057407936,51.49494506151229],[4.81492708579998,51.494963593485394],[4.814886246237773,51.494972768714916],[4.814853993627599,51.49497930734004],[4.814802443283642,51.494987090713096],[4.814753055289847,51.494993545326],[4.814735754009011,51.49500550555914],[4.814653824635355,51.49504258737447],[4.814606430641745,51.49506108775025],[4.814477309001853,51.49510061672994],[4.814423444470704,51.495121772962115],[4.814395429821249,51.49513368060212],[4.814341512173294,51.49516019388152],[4.814307010311301,51.495176087688954],[4.814242432476956,51.49519718229589],[4.814182181611423,51.49521429806604],[4.814109052693129,51.49523402029619],[4.813971347999713,51.49527350660103],[4.813921740465954,51.495297353181186],[4.813869951123273,51.495325207038775],[4.81380527150795,51.495354345912475],[4.813686895393842,51.495391248106095],[4.813605116406646,51.49541627590078],[4.813518699402697,51.49544023815123],[4.813386231696613,51.49546859434963],[4.813188802377891,51.49547874335235],[4.813092378739144,51.49546373444982],[4.812902150421769,51.49536542312441],[4.812833741234421,51.49533174711846],[4.812808049968196,51.49532496902803],[4.81279731944661,51.495326282555574],[4.812723663069764,51.495426505336326],[4.812706473863612,51.495431814083815],[4.812635741886817,51.49542357392909],[4.812601451189386,51.49541811978949],[4.812543476271075,51.49542598741383],[4.812504695191119,51.49544997655381],[4.812455011137347,51.49549804704897],[4.812364888499758,51.49550180128682],[4.812313663734093,51.49546549492789],[4.81226238324368,51.49543588495437],[4.812180959787178,51.49542359185862],[4.812133520739373,51.495456940569724],[4.812083739133748,51.49551839480428],[4.81200873286454,51.49550880287373],[4.811940224286003,51.49548985855558],[4.811837189090772,51.495498933095725],[4.811789749826382,51.49553227267822],[4.811768154973532,51.49555230127269],[4.811574290408842,51.49566422772441],[4.811503536247198,51.495660004784796],[4.811432962615758,51.495628995960644],[4.811274548212473,51.49558300102904],[4.811186414810601,51.49560819355354],[4.811181204471143,51.49573539584417],[4.811144450912964,51.495775466574294],[4.81114000106095,51.49579822233666],[4.811150219527613,51.4958692216225],[4.811096456974492,51.4958878150116],[4.810970192274554,51.495844594005916],[4.810914554754726,51.49582702496076],[4.810813742266077,51.495825394875475],[4.810688817698436,51.49589466647758],[4.810637278758228,51.495902546950525],[4.810540818555491,51.49589155377088],[4.810463649351684,51.49588329849473],[4.810384156056823,51.495900479085606],[4.810290176679665,51.49584261217878],[4.810268813163587,51.49583183689737],[4.810221609629325,51.495831702583196],[4.810180720439069,51.49585033218326],[4.810118296769289,51.4958796150024],[4.81005965030775,51.49598122265796],[4.810035989798163,51.495989186696725],[4.809798258235539,51.49593626287311],[4.809701795569813,51.495926608324424],[4.809658841502077,51.495933173501626],[4.809516492435305,51.49603855573539],[4.809464774056662,51.49607188220244],[4.80936972866895,51.49616266666937],[4.809244663634108,51.4962506867548],[4.809168964764927,51.49633751283205],[4.809040061637216,51.49636258285464],[4.808979701065098,51.49640392032401],[4.808858707200614,51.49652275591191],[4.808727534625544,51.49656656506806],[4.808637252319522,51.49659174503412],[4.808446214886454,51.49660724808161],[4.808269943650073,51.49665628046732],[4.80816138561709,51.49683541118322],[4.808133230852788,51.49687282695481],[4.807974539732053,51.49686432761208],[4.807936230314891,51.49682269906853],[4.807936545373244,51.496779850841634],[4.807875027809757,51.496684587626056],[4.807772366100095,51.496641435294535],[4.807714509719489,51.49663188973737],[4.807656535075314,51.4966384156071],[4.807400880100444,51.49669123254616],[4.807197464000843,51.49663840187253],[4.80713927207874,51.49667439181882],[4.807142413062482,51.4968324222077],[4.807129237673019,51.49687523352823],[4.807043067445085,51.496924531765174],[4.806922484739615,51.496985775919704],[4.806862397967364,51.496989621217764],[4.806789696809624,51.496957268666314],[4.8066464629879,51.496888547205955],[4.806592838526955,51.49688704916257],[4.806545430846406,51.49691636877519],[4.806523655109538,51.49696049458484],[4.806561404259845,51.4970797933638],[4.806533487978155,51.49708373550502],[4.806355660857657,51.49705240604833],[4.80631703606565,51.49705363418396],[4.806286897794379,51.49706693158468],[4.806206682765315,51.49718320769928],[4.806176538973863,51.49719918371825],[4.806137914052611,51.4972004117944],[4.805983493716303,51.49719460068148],[4.805901870644537,51.49720908895975],[4.805830921817924,51.49722896968651],[4.805745044216104,51.497239427654954],[4.805631252943543,51.49725247917359],[4.805534091378977,51.49733790164845],[4.805516568871247,51.49738605747779],[4.805641974465312,51.49754713276809],[4.805640331240698,51.497576545055196],[4.805639508765966,51.49759131861075],[4.805609389661447,51.49760194624832],[4.805446461902076,51.4975867346837],[4.805380233710408,51.497575249626884],[4.805375750483167,51.4975744722304],[4.805167681172927,51.497571179307364],[4.805011190817658,51.497555981237284],[4.804970380178614,51.4975625553811],[4.804956477240367,51.49757313784623],[4.804942341591077,51.49758389892638],[4.804905365133149,51.497652092678074],[4.804872995414439,51.497678771961205],[4.804817059782321,51.49770137863764],[4.804782788200207,51.497693243626536],[4.804734113173133,51.49760203383069],[4.804667772883253,51.497579069062155],[4.804618416428757,51.49758160042476],[4.804534149112233,51.497663041414874],[4.804443660521772,51.4977163432016],[4.804381389871828,51.497724194341124],[4.804276279387612,51.49772387651415],[4.804196621200568,51.49776248147991],[4.804155790337998,51.49777173391319],[4.804070198592624,51.4977406726304],[4.804005938761669,51.49772843257011],[4.803896280454679,51.49776158410921],[4.803829516061016,51.49779754758039],[4.803837740077019,51.49784577782907],[4.8037817865547,51.49786972325951],[4.803633741589636,51.49787195893816],[4.803628002746074,51.49777819463958],[4.803615268070781,51.497759416243085],[4.803570427845321,51.497729816648935],[4.803336486927233,51.49774385649409],[4.803237054503382,51.49784533776702],[4.803196237772883,51.49785458993629],[4.803017311869409,51.49767995879893],[4.803045713858722,51.497609071041296],[4.803050125173076,51.49759301206934],[4.803026756487522,51.49756350167703],[4.80302036525448,51.497555424696706],[4.802962708519924,51.49751910002846],[4.802892374888016,51.4974572914681],[4.80279595340572,51.49744092575184],[4.802697123349273,51.49746071899739],[4.802617521518075,51.49749262648508],[4.802584135941235,51.49756128692941],[4.802573958908727,51.497582224930134],[4.802556773439395,51.49758484454475],[4.802512177886602,51.49756092671309],[4.80245634048756,51.497530983989705],[4.802422109505595,51.497517491137685],[4.802366135734039,51.49754410547594],[4.802333629179187,51.49756003272099],[4.802252022206457,51.49760001088765],[4.802082294959576,51.49763432504004],[4.801996198146152,51.49767289625362],[4.801991520167093,51.49772645529639],[4.802050557596124,51.49786590734811],[4.802026448143896,51.49793546804939],[4.802043152901443,51.49799711631714],[4.801932684880323,51.4981400786324],[4.801895918408548,51.498181485751665],[4.801804881358577,51.49830843731999],[4.801772572258323,51.4983257496818],[4.801613917436585,51.498311884541],[4.801551625413358,51.498322412743036],[4.801556669411998,51.49834116179156],[4.801593390438334,51.49847787742451],[4.801531040791172,51.49849510201384],[4.801412890612105,51.49851751192722],[4.801322763958913,51.49851991830733],[4.801245896243123,51.49847013900474],[4.80120708990099,51.49847193982946],[4.801137446146287,51.49847515895251],[4.801082803183977,51.498477689263545],[4.800709514257139,51.498477909753404],[4.800713098620181,51.498573002729835],[4.800708626009437,51.49859709733208],[4.800674067102186,51.4986291308053],[4.800641224402788,51.498654269457205],[4.800583451279136,51.49869850102875],[4.800578296457343,51.49870736510201],[4.800529117508783,51.498792071621786],[4.800507636975596,51.49879602667692],[4.800387850006866,51.49878444951367],[4.800379004166113,51.498783587084304],[4.800219818538873,51.498842032618484],[4.800056317942282,51.49890448324596],[4.799987311182429,51.49894979064508],[4.799881687556526,51.49901912981601],[4.799867573651069,51.49899572380793],[4.799857703867119,51.49897935043781],[4.79982022711314,51.498917165923984],[4.7997945760171,51.4989050368132],[4.799770811293276,51.49892639163187],[4.799695914099747,51.49904083837199],[4.799671981562973,51.499077410436016],[4.799657980503564,51.49909880535826],[4.799632107271642,51.49911614051851],[4.799599333710479,51.49909124733321],[4.79954890401946,51.49905295282811],[4.799525153503669,51.49907430766873],[4.79950986775465,51.499110419832505],[4.799507799149333,51.499135659080856],[4.799504056306382,51.4991812496317],[4.79950043086328,51.4992255553686],[4.799480570723765,51.49929915494783],[4.799456947041168,51.49930175968872],[4.799388677552156,51.499252004454306],[4.799350091124496,51.49924787313537],[4.799261641001225,51.49931322624032],[4.799199121916434,51.499354547823124],[4.799186285844139,51.499379382292176],[4.799155576814471,51.4994387877488],[4.799140432174831,51.49945614985068],[4.79910828009637,51.49945337220872],[4.799087796185373,51.499428100307675],[4.799061514726869,51.49939565307923],[4.799039999273385,51.49940227737584],[4.799005377784931,51.499442355058115],[4.799008600274105,51.49944931067308],[4.799017805417177,51.49946917742758],[4.799026491912242,51.49948794493066],[4.798922852719114,51.499577356330136],[4.798794420409835,51.49953813824757],[4.798664926991528,51.49964220581107],[4.798542058564216,51.49971950189516],[4.798473896480236,51.49965368360606],[4.798424638741656,51.49964281948149],[4.798406093753743,51.49964246531682],[4.798255170384698,51.49963962795618],[4.798207855833287,51.49965555130052],[4.798166859856241,51.49968623021642],[4.798100024337297,51.49973156543618],[4.798065590300691,51.4997448480483],[4.798040053771606,51.49976391041452],[4.79800302885028,51.49979153512062],[4.797977192341055,51.49980484310061],[4.797891377686923,51.49980325058218],[4.797822865730249,51.499785628320176],[4.797707372428834,51.49973707200403],[4.797645280619425,51.49972081238954],[4.797604487291415,51.49972470538038],[4.797494427622724,51.49981142241325],[4.797449342599905,51.49981530267005],[4.797257675253578,51.499625901584615],[4.797225549433132,51.49961776620631],[4.797070750135616,51.49966282725937],[4.797025662253751,51.49966804667544],[4.796957220680211,51.499638379208875],[4.796921186858883,51.499580686480506],[4.796829444096593,51.49951211431242],[4.796736617172401,51.49948382458737],[4.796709576677365,51.49947558893156],[4.796632546503703,51.49944857450322],[4.796332130595622,51.49945704168678],[4.796239236913188,51.499445012045925],[4.796054636224756,51.49943271595636],[4.795833059587675,51.49944087973587],[4.795815588713221,51.49945429251862],[4.795800097795694,51.49947714462223],[4.795769409734587,51.49950800074007],[4.795754064125826,51.49952410295135],[4.795730252260644,51.499533402675446],[4.795695758305169,51.49954128199192],[4.79559705966993,51.499539298935716],[4.795571329043139,51.49953777532852],[4.79555213116812,51.49953225780648],[4.795509493794758,51.49951847764462],[4.795494605040566,51.49951162462766],[4.795473229640692,51.49950743539861],[4.795440980330935,51.49950993270529],[4.79542160526417,51.499512504223986],[4.795397921203965,51.4995164022325],[4.795382642472974,51.499528459754224],[4.795367395789134,51.49953916012084],[4.795352099504463,51.49955256587631],[4.795343353755399,51.499560611517914],[4.795338672517134,51.49957948234709],[4.795338364154341,51.499594330355706],[4.795342102654439,51.49962136077851],[4.795339436014227,51.49964700142771],[4.795336918038193,51.499664534892375],[4.7953301868698,51.499679350353],[4.795321345272922,51.4996914404873],[4.795308276079355,51.49970081254319],[4.795286560286431,51.49971281945309],[4.795251920692869,51.49972744852325],[4.795217199532152,51.499746131138664],[4.795166297470457,51.49976760815458],[4.795115688372231,51.499776529217684],[4.795074774569874,51.499783018491044],[4.795057495494783,51.49978830621815],[4.795042312543656,51.49979631021236],[4.795029179365343,51.499808378566236],[4.79501823827156,51.49981910970637],[4.79500058680228,51.49984194176176],[4.794980867755622,51.4998620756662],[4.794969880286131,51.49987415489337],[4.794959070231177,51.49987813607016],[4.794946164048049,51.49987940097452],[4.794926852699539,51.499879276081394],[4.794909704646737,51.499877813828824],[4.7948926845228,51.49987094992682],[4.794879941373336,51.499864116701566],[4.794860906598849,51.499850491955314],[4.794837466934845,51.49984223817221],[4.794769311173676,51.49981614842931],[4.794722481554356,51.49979693543116],[4.79470121952442,51.4997873533292],[4.794679876144703,51.499781806802034],[4.794643547946366,51.49977346961595],[4.794592100662037,51.499770440025024],[4.794564125035468,51.49977430710121],[4.794544700165069,51.49977958386452],[4.794527438592482,51.49978352327548],[4.794495135993318,51.4997911976261],[4.794386329395039,51.49975695522061],[4.794362825811981,51.499751406659676],[4.794343578574635,51.49974857635289],[4.794324334390144,51.4997444067205],[4.794294326616543,51.49974286112053],[4.794249252543063,51.499742569373815],[4.794199951058204,51.499739550503726],[4.794173341189176,51.49974028731363],[4.794105217196428,51.49975378421725],[4.793980052937757,51.4997867308844],[4.793962872853468,51.49978662564549],[4.79394573926808,51.49978516332459],[4.793935205986547,51.49977564456687],[4.793926900108076,51.499762083153136],[4.793918807000519,51.49973772721619],[4.793913232430019,51.49969583784568],[4.793909249906597,51.49968095905386],[4.793898734355037,51.49967008306703],[4.79388811944675,51.4996646178595],[4.793819882946107,51.4996425721296],[4.793770727243888,51.49963280319537],[4.793738609119809,51.49962854108708],[4.793661626689604,51.49961454078509],[4.793629604558462,51.499606234153994],[4.793604019631137,51.49959796023048],[4.793589081440471,51.499593812360985],[4.793578516169188,51.49958565072363],[4.79355515856785,51.49957334312924],[4.793529768937912,51.49955562290502],[4.793519285381915,51.49954340770812],[4.793504656295193,51.49952440283663],[4.793487980668728,51.49949999425242],[4.793477674936283,51.4994796720165],[4.793473660579629,51.499466141374135],[4.793463731017174,51.499426926494934],[4.793458384294065,51.49937423366554],[4.793454273967651,51.4993647475152],[4.793441627162205,51.499353869640515],[4.793416400990434,51.49932805127146],[4.793403771917098,51.49931581616696],[4.793393402153107,51.49929819924022],[4.793398052289468,51.499280667665865],[4.793400979284754,51.49924288444915],[4.793399550975376,51.49920776675431],[4.793397746370093,51.49919155068976],[4.793387376636573,51.49917393376236],[4.793383216632669,51.49916715299943],[4.793350139719668,51.49910617527708],[4.793317016378334,51.499046554624535],[4.793294131461943,51.499011300855074],[4.793262500575707,51.49898409256675],[4.793186709337849,51.498912039044754],[4.793146741097089,51.49887261742209],[4.79313843550036,51.498859064940305],[4.793113486852603,51.49881974666728],[4.793096744479233,51.49879938266583],[4.793077792417779,51.49878170407535],[4.793058744235299,51.49876807896256],[4.793029063866311,51.49875033679863],[4.793012284520263,51.49874163113086],[4.792880985121251,51.49874937663151],[4.792838040121846,51.49875044349756],[4.792827361529619,51.49874767452204],[4.792816714951974,51.4987435573814],[4.792801841258634,51.49873670409503],[4.792795567706215,51.498728564226916],[4.792779088284876,51.49869470026932],[4.792773205695521,51.49866765884464],[4.792769355023124,51.49864603005829],[4.792765795934967,51.49861090150762],[4.792760190545571,51.49857036024471],[4.792747705948273,51.498496390401],[4.792704362107346,51.498467378504635],[4.792655634267304,51.498436002084105],[4.792621890506807,51.498407434535494],[4.792598746957837,51.49838432324111],[4.792567248341029,51.498350364809305],[4.792554570008416,51.498340835002615],[4.792539582684523,51.49833938340072],[4.792526708893504,51.498339299874345],[4.792513738919285,51.49834326982695],[4.792502879370611,51.49834994717841],[4.792494118950064,51.49835799253354],[4.792487273361032,51.498378200559976],[4.792466920859341,51.4984280299696],[4.792458093029911,51.49844012894896],[4.792425289872824,51.49846961610903],[4.792383676435483,51.49850985399599],[4.792368329968185,51.49852595576206],[4.792326766083559,51.49856349722713],[4.792302723135995,51.4985849479982],[4.792285330363427,51.498595637033155],[4.792272310637037,51.49860230335993],[4.792257177370487,51.49860760160306],[4.792241994323039,51.498615605233695],[4.79222250561861,51.49862357793939],[4.792200967316991,51.49862749521895],[4.792181592445323,51.498630066200455],[4.792162313669222,51.498628592687076],[4.792143166494077,51.49862036022769],[4.792128392275933,51.49860811405334],[4.79210324896487,51.49857825083591],[4.792069768994358,51.498504209891635],[4.792064277648407,51.498490231218454],[4.792054104274277,51.498463158902304],[4.792043522022885,51.49845633637529],[4.792024424496649,51.4984454164836],[4.791984016719979,51.4984275924177],[4.791943576700944,51.49841113447818],[4.791911573488644,51.49840147015153],[4.791900877395349,51.49840004932867],[4.791853609315322,51.49840244212377],[4.791761318190662,51.49840184579364],[4.791727037807508,51.49839892043139],[4.791669123327384,51.498397195911004],[4.791611273066859,51.49839276604619],[4.791585461242279,51.498395304103006],[4.791555340535733,51.49839915951721],[4.791522945945061,51.49840839663498],[4.791455975626178,51.49842956536137],[4.791432227567851,51.4984361678818],[4.791367566494844,51.4984492493852],[4.791331058655424,51.49845035752474],[4.791292486912504,51.49844741014067],[4.791277581369881,51.49844191381238],[4.791220385924089,51.498405082297346],[4.791178160198619,51.498371050769954],[4.791144435195539,51.498341125570406],[4.791114805697116,51.49832067753204],[4.791078771401434,51.49829883947938],[4.791030173128837,51.498262069727815],[4.79093060655702,51.49819796534287],[4.790866560223805,51.49815866269727],[4.79085627882661,51.49815967088489],[4.790851955431603,51.49816099713679],[4.790836772287039,51.498169000584745],[4.790817183923676,51.4981823748455],[4.790799676949438,51.498198465375005],[4.790777583311559,51.49822937306841],[4.790759930218675,51.498252213471154],[4.790746778679868,51.49826562958065],[4.790735854624123,51.49827501208265],[4.790712024717282,51.49828565902064],[4.790683055436714,51.49829396058168],[4.790589613251703,51.49828890796541],[4.790540395431805,51.49828184298889],[4.790499628571717,51.49828157179371],[4.790478075884628,51.49828548868203],[4.790454392044198,51.4982893856885],[4.7904263528138,51.49829594810139],[4.79035951389865,51.498310366246194],[4.790243047439691,51.498337969033535],[4.790202084463535,51.49834715300134],[4.790174094943418,51.4983510189533],[4.790146233786979,51.49834949224538],[4.790122649573248,51.498347987395825],[4.790101275218515,51.49834379718466],[4.790062703765222,51.498340840406335],[4.790041297206248,51.49833800733569],[4.790019808880895,51.49833920983628],[4.789991769439512,51.49834578113291],[4.789965843563399,51.498353711558174],[4.789944191087139,51.498363030136204],[4.789922588635002,51.498369634333635],[4.789890158219221,51.498381576459934],[4.789833915313506,51.4984028170986],[4.789810020925002,51.49841616017834],[4.789792691838183,51.498424152514986],[4.789777444213591,51.49843485215096],[4.789768747502153,51.4984402009744],[4.789755677645684,51.49844956342015],[4.789738202297681,51.49846430562627],[4.789683498896943,51.498515253226195],[4.78966155378492,51.4985380715066],[4.789644110597544,51.49855145654707],[4.789618002753794,51.49856884223399],[4.78957240573559,51.49859420017766],[4.789522403257357,51.49862492886877],[4.789496395088256,51.49863691274038],[4.789472710981442,51.49864080954722],[4.789444671393555,51.498647371723635],[4.78942306861598,51.49865398481644],[4.789397224408448,51.49865787055206],[4.789375685967507,51.498661778321804],[4.789332658906941,51.4986668974496],[4.789304784912084,51.498670718841204],[4.78924336451963,51.49867603141757],[4.789213110765735,51.498679022618106],[4.789183184298784,51.498684505397904],[4.789170763173879,51.49869818574812],[4.789154063767525,51.49871194306728],[4.789081186464053,51.49877918399831],[4.78906010051552,51.49879029409577],[4.789043212847097,51.498798648136585],[4.789024070451918,51.49880432992756],[4.788996451592673,51.49881283574316],[4.78895167709203,51.498821595253865],[4.788926110225017,51.49882737895349],[4.788900449439867,51.4988304475339],[4.788859818935393,51.49883510235599],[4.78881696263213,51.4988370760719],[4.788780624682477,51.498841662970555],[4.788742140558936,51.498846274816124],[4.788714239210631,51.49884668915304],[4.788679725492512,51.49884178415407],[4.788653313639383,51.49883297456086],[4.788590310040154,51.49879987831481],[4.788575058176023,51.498793355137025],[4.788559954826477,51.49879086871201],[4.788542784804237,51.498791122279826],[4.788515071738362,51.49879693084405],[4.788481068201573,51.49880688697013],[4.788453394978702,51.49881404405151],[4.78843006857522,51.4988224818504],[4.78839611593145,51.498847170937744],[4.788391271013714,51.49885309671627],[4.788384737616094,51.49885709921245],[4.788373730778677,51.498870535042144],[4.788360464058158,51.49888935259358],[4.788346868941962,51.49892436636715],[4.788335290681948,51.49896480176829],[4.788323873371064,51.49899847837846],[4.788314751425107,51.49902407679266],[4.788307953772557,51.49904158817091],[4.788299874940973,51.499054679453785],[4.788278599842559,51.49905715914526],[4.788140923964107,51.49902294262652],[4.788051234571284,51.499000756506355],[4.787963723241568,51.498977224175654],[4.787933683920267,51.498977034092874],[4.787918682136076,51.498975581823956],[4.78790109911424,51.49897657026421],[4.787865975148348,51.49903329843894],[4.787859423800527,51.49903865813024],[4.787839948550102,51.49904663017659],[4.787824914466132,51.49904653504631],[4.787784196865474,51.49904356650317],[4.787759396623345,51.499038144786525],[4.787741758779085,51.49902033723565],[4.787701730721511,51.49898361907006],[4.78767224890435,51.49895642028647],[4.78764689408148,51.49893735062404],[4.787627911798823,51.49892102830315],[4.787606816119937,51.49890333781294],[4.787532818720341,51.498848845022714],[4.787480113704995,51.49880258744143],[4.787448486447509,51.498775377583506],[4.787435744725937,51.49876854354765],[4.787425098633446,51.49876442591616],[4.787412274798672,51.49876163643876],[4.787403724333704,51.4987602352114],[4.787352328758856,51.49875449704606],[4.787305561835935,51.49875050849197],[4.787283653616432,51.49875404543435],[4.787231929165157,51.498764512424536],[4.787201825628744,51.498767018478304],[4.787178141259484,51.49877091481929],[4.787124435602729,51.49877326364017],[4.787094332173263,51.49877576067796],[4.787075702883649,51.498777462725855],[4.787016484282661,51.49880361261328],[4.786992621045013,51.498815606952206],[4.786958093944586,51.49882483184846],[4.786930085952104,51.4988300542462],[4.786805248124579,51.49884678801317],[4.786770853242801,51.498849262906816],[4.786738897421588,51.49883824907592],[4.786711579641437,51.4988097218341],[4.786690598868571,51.49878662946805],[4.786673598192225,51.49877841613393],[4.786656483020503,51.49877560450813],[4.786613455550319,51.49878072263325],[4.786576850621778,51.498785882760245],[4.786550873786187,51.49879651781214],[4.786511743991439,51.498820568487915],[4.786492071876296,51.498837986580156],[4.786463720367441,51.49885940500937],[4.786441952526668,51.498874115658346],[4.786426736167227,51.498883466692895],[4.786405018309193,51.4988954809368],[4.786379188109944,51.49889936607778],[4.786342533049664,51.498907222529205],[4.786303911237282,51.49890696989531],[4.786269827600695,51.498894596660534],[4.78621474901781,51.498859130890644],[4.786189312513893,51.498844114460894],[4.786176538752702,51.49883862844991],[4.786161551471784,51.498837176029475],[4.786142176054819,51.49883975499634],[4.786120605038717,51.498845010326974],[4.786103160574759,51.49885840382457],[4.786050616143074,51.49890801252089],[4.78602229659781,51.498928082680465],[4.785985344324594,51.49895079606175],[4.785965721984073,51.498965517666825],[4.785952536490726,51.49898029038319],[4.785932831756226,51.49899906553067],[4.785923987797547,51.49901115495017],[4.785915043644512,51.49902864615291],[4.785908180512691,51.49904886270189],[4.785896861576481,51.49907713728769],[4.785885574726341,51.499104072698735],[4.785876630540129,51.499121563898356],[4.78586790102004,51.49912826059192],[4.785863577388178,51.49912958665862],[4.785850671168784,51.49913085055766],[4.785829182242405,51.499132061274445],[4.785803402021077,51.49913324090166],[4.785784058798708,51.4991344626588],[4.785756115046333,51.49913697946246],[4.785730302477942,51.499139516223565],[4.785712958118812,51.49914749889031],[4.785695595810829,51.49915683877861],[4.785680296810045,51.49917024326303],[4.785667079057808,51.49918635512019],[4.785658052375779,51.499207899850475],[4.78565565959747,51.499220040453885],[4.785652167579354,51.49928482309911],[4.785647450006008,51.499305050683624],[4.785640733682186,51.49931850835689],[4.785616819639887,51.49933320779906],[4.785588746725497,51.49934112619759],[4.785554269118843,51.49934764529146],[4.785507178831276,51.49934193748243],[4.785466561245731,51.49933357533582],[4.785430561220053,51.49931037839479],[4.785369224896121,51.49926677203976],[4.785354287569392,51.49926262311805],[4.785325120391921,51.499267254883534],[4.785258319523951,51.49933625961095],[4.785223333103455,51.49936708184015],[4.785199139469839,51.49939528101158],[4.78519016256088,51.4994097787031],[4.785205328328676,51.49945108873625],[4.785246501765858,51.49949146313919],[4.785261256576566,51.49950505841683],[4.78526946310948,51.49952266492775],[4.785255618246508,51.49956982998919],[4.785245100429655,51.499595205242485],[4.785139270455431,51.49969464274795],[4.785112916459913,51.49972283076528],[4.785093358108514,51.49973484691072],[4.785067348140807,51.49974682979194],[4.78505003555907,51.49975347318602],[4.785032787580872,51.499757411266245],[4.785019913405756,51.499757326911585],[4.785005691349761,51.499752444547894],[4.784971891700766,51.49972729924195],[4.784853129623857,51.49972652501035],[4.784810298130439,51.49972219620199],[4.784758934053926,51.499715108732865],[4.784715519170515,51.49970372063168],[4.784648874241471,51.49964012227409],[4.784621621927374,51.499608889235255],[4.784598463865295,51.49958713358663],[4.784575158816065,51.499572127802814],[4.784553866896557,51.49956388302974],[4.784513296069555,51.49955416347635],[4.784491889289743,51.4995513293882],[4.78445538040712,51.4995524353762],[4.784371601743769,51.499555940104436],[4.784313589286868,51.49955825641787],[4.784262028164739,51.49956062398468],[4.784225519269359,51.499561729900755],[4.784165343202305,51.49956538329837],[4.784079451040209,51.49956752857679],[4.784060190126729,51.499564696501736],[4.784045335243261,51.499556502854745],[4.784036949815284,51.49954699428835],[4.784034969171903,51.49953887611473],[4.784028761748143,51.499528030467815],[4.784022489659064,51.49951989013119],[4.78401613502968,51.49951580334042],[4.784005507066798,51.49951032817379],[4.783984114859622,51.499507485078794],[4.783949801757328,51.49950591458235],[4.783942969687223,51.49950633772556],[4.783815423843859,51.49956849296852],[4.783748383680789,51.499592353586046],[4.783672513052096,51.499628312474876],[4.78363569178646,51.499644275166204],[4.783607665024789,51.49965084500072],[4.783594776482253,51.499650760414596],[4.783549799571251,51.49964641106654],[4.783509296954552,51.499632646532596],[4.783475310530418,51.49961621901181],[4.783454101264054,51.49960392948103],[4.783428600674068,51.499591608773535],[4.783362629998937,51.49956416632649],[4.783347660344861,51.49956137429752],[4.783326318344903,51.49955583468564],[4.783307075378721,51.499551654250986],[4.783226140181255,51.4995362333465],[4.783202202495397,51.49953745788407],[4.7831828087156,51.49954138459442],[4.783171997712786,51.499545364678475],[4.783159008682815,51.49955068182512],[4.783152474606235,51.49955469301568],[4.783130935208634,51.49955859963172],[4.78310947831146,51.499558461686576],[4.783061054959314,51.499564215772494],[4.783054261616492,51.499569313267756],[4.783051200120546,51.49957427725606],[4.783046531686046,51.4995917993487],[4.783048264387599,51.49961206918665],[4.78305014794757,51.49962423185931],[4.783049900180232,51.49963638350714],[4.783040872169234,51.49965792803226],[4.783034155022318,51.499671385553896],[4.783026206202892,51.49968107037436],[4.783018725847217,51.499690182331015],[4.783016332338787,51.49970232287875],[4.783020063523472,51.499729353683854],[4.783028003551038,51.49976046023367],[4.783042233441868,51.49979835893678],[4.78305484195432,51.499811943392494],[4.78309084128067,51.49983513207564],[4.783109955019839,51.499844714177705],[4.783122728691827,51.49985020052366],[4.783137666006567,51.49985434973071],[4.783186686830099,51.499870873079395],[4.783199478536336,51.499875002193406],[4.783207946345241,51.49988046626234],[4.783216446574251,51.49988457318148],[4.783218477402051,51.49988998598407],[4.783218197379228,51.49990348579298],[4.783211512547095,51.49991559516374],[4.783207170984492,51.49991826037889],[4.783185451783366,51.49993027402092],[4.783159441202836,51.49994225647599],[4.783144141190921,51.49995566062572],[4.78312638319229,51.49998389265669],[4.783113113976828,51.50000270960639],[4.783094878206628,51.500053905680495],[4.783083474643213,51.500086233533594],[4.783072006337702,51.500121266695366],[4.783054050666136,51.50015895396605],[4.783043619250216,51.50017663501378],[4.783023450544336,51.500185753246896],[4.783019094424489,51.500188427368705],[4.783004056472589,51.50018967992691],[4.7830010407285,51.500189026117575],[4.782984813268333,51.50018549943895],[4.782961357572089,51.500178600498806],[4.78293800254861,51.50016629078532],[4.782918989140034,51.50015131586302],[4.782897894727447,51.500133624525695],[4.782881091834729,51.50011595538959],[4.782854222857143,51.50009604987417],[4.782834248920172,51.50009809485518],[4.782814822558795,51.50010336966459],[4.782803979078992,51.50010869787492],[4.782786583496094,51.50011938548921],[4.782773479290351,51.500130104298144],[4.782749398701915,51.500152901251695],[4.782736179625908,51.50016901277382],[4.782731607948233,51.50018249037068],[4.782724826004631,51.500198644195144],[4.782724610460223,51.500209447680966],[4.782728672027869,51.500220273302816],[4.782734828890159,51.5002338244022],[4.782745309704313,51.500246040562274],[4.78275805113202,51.50025287510886],[4.782817552968241,51.500281623758774],[4.782864345846936,51.500302180695904],[4.782896201200988,51.50031859736651],[4.782920390869799,51.50033313165293],[4.782927991962699,51.50033771034999],[4.78298181783627,51.50036659134851],[4.782997827683501,51.50038542491765],[4.783001821097992,51.50040030414961],[4.782990715379717,51.50041778394952],[4.782949271382194,51.500449920424764],[4.782909710883553,51.50049421955924],[4.782892150007256,51.500513005290514],[4.782878995495142,51.50052642050679],[4.782831274177837,51.50055622331426],[4.782833235876859,51.50056358634665],[4.782978789046532,51.5005783890036],[4.783006698026923,51.50057856933707],[4.783021653473876,51.50058137032381],[4.783034509974049,51.5005828031344],[4.7830493973136,51.500589648748914],[4.783062074155989,51.500599188572124],[4.783068281613522,51.50061002528124],[4.783068116354674,51.50061813237139],[4.783052949045155,51.50062477757876],[4.783026970336931,51.50063541184227],[4.782996700182377,51.50064601491104],[4.782981514828618,51.50065401733256],[4.782981349673482,51.500662115434345],[4.782983297870515,51.50067158178572],[4.783006391097441,51.50069603407413],[4.783044436222671,51.50072464463986],[4.783056947959494,51.500742282565426],[4.783047937752784,51.50076246986558],[4.783025952420521,51.5007879833585],[4.782991193135897,51.50080801048819],[4.782947901131763,51.50082527883017],[4.782904641403585,51.500841198995275],[4.782865755747159,51.50085309679336],[4.782826985033009,51.50085959287304],[4.782803299202332,51.50086348832367],[4.782755945560238,51.50086992198707],[4.782708609698767,51.50087501638432],[4.782687119866951,51.5008762265212],[4.782669986240731,51.50087476254578],[4.782661370894289,51.50087605729223],[4.782633558803064,51.500871823405845],[4.782621440927731,51.50086140552209],[4.782620899890953,51.50086093530114],[4.782598054684191,51.50082433129137],[4.782583645218473,51.50079453056341],[4.782564811415554,51.50077144856917],[4.782552217186097,51.500757864135814],[4.782537362186276,51.500749670297445],[4.782522474991239,51.50074281562955],[4.782488358693243,51.500731789452665],[4.782460629270795,51.50072351096888],[4.782437141174321,51.50071795109573],[4.782411359969107,51.50071912997232],[4.78238345090542,51.50071894949645],[4.782346710998596,51.50073085823345],[4.782316422697662,51.50074280936054],[4.782277536972401,51.500754706962724],[4.782232066638098,51.50077331208586],[4.782192965190748,51.500796013144],[4.782189683499687,51.50079802762555],[4.782186565836454,51.50080178679414],[4.782201182586442,51.500823561600036],[4.782226718436201,51.500824592756594],[4.782269716000053,51.50082082441316],[4.782295529712785,51.5008182884192],[4.782316969156713,51.500819783738194],[4.782327518168024,51.50082795530462],[4.7824068568074,51.50092896041247],[4.782348010972965,51.50103607247481],[4.782346471320845,51.501052217469834],[4.78234619103065,51.501065717275104],[4.782352463031374,51.50107385770073],[4.782383374062472,51.501095249443146],[4.782422847663928,51.50112257321316],[4.782471633656329,51.5011232572824],[4.782493058968016,51.50112474350646],[4.782514548922289,51.50112353340549],[4.782540312435702,51.50112370274166],[4.782563865511901,51.50112655728488],[4.782569932603632,51.50112736173421],[4.782582864688874,51.501141541178136],[4.782597554598979,51.501157833111506],[4.782610199186477,51.50116872114408],[4.782629130247299,51.50118774966064],[4.782656464680816,51.50121493860399],[4.782669008836634,51.50123121942165],[4.7826729194608,51.501233900362855],[4.782675728893008,51.501237078980104],[4.78267887894254,51.50124063689205],[4.782680425304464,51.50124457302419],[4.782682111142119,51.50124885145462],[4.782681807798491,51.501253254422224],[4.782681501827366,51.50125785513098],[4.782679038993066,51.50126219298842],[4.782676576038864,51.50126653983401],[4.782672191778392,51.50127023852663],[4.782667982483593,51.501273776325334],[4.78266235891653,51.501276443873856],[4.782657184658197,51.50127889801528],[4.782651158617917,51.501280421895885],[4.782645782670067,51.50128179633058],[4.782640028872676,51.501282341834795],[4.782638529097976,51.50128248688224],[4.782637057170533,51.50128270398463],[4.782635585243079,51.50128292108697],[4.782634126761487,51.50128321016973],[4.782632668399317,51.50128349026421],[4.782631237764952,51.501283851401915],[4.782629807250003,51.50128420355134],[4.782628433385066,51.501284627904795],[4.782627059520103,51.50128505225827],[4.782625728142638,51.50128553076475],[4.782624411047092,51.501286018333964],[4.782623150840427,51.501286560130794],[4.782621890633733,51.501287101927595],[4.782620715999253,51.50128770708931],[4.782619541603625,51.5012882942745],[4.78261843837882,51.501288944750115],[4.782577571686961,51.501292733243],[4.782549561794531,51.5012979455976],[4.782529987567864,51.5013099702238],[4.782505956471136,51.50133007072841],[4.782490821163423,51.50133536770138],[4.782469331108428,51.50133657779782],[4.782376609027603,51.501340870764004],[4.7823703813611,51.50134672621294],[4.782364455135614,51.50136457435186],[4.7823719988068,51.50137239776273],[4.78238888477474,51.501386004438416],[4.782407981093378,51.50139693489022],[4.782418512332261,51.501406454683426],[4.782431024012552,51.50142409267507],[4.782441307320761,51.50144576411083],[4.78244170429778,51.501477658614625],[4.782523841442325,51.50152967090082],[4.782526162770803,51.50154031673086],[4.782516327544471,51.50155427943328],[4.782468858135475,51.50156611468353],[4.782432652276606,51.50157897004375],[4.782412410250704,51.50159679799139],[4.782386118229955,51.5016222800758],[4.782364034722433,51.50165511885165],[4.782354287608868,51.501662448223804],[4.782328902017134,51.50167607869327],[4.782342826762106,51.5016957644813],[4.78234683183948,51.50170650892295],[4.782346445719305,51.50172255202476],[4.782344153499291,51.501729218871475],[4.782322004238294,51.50176374720312],[4.782291651786592,51.50178480370053],[4.782285000669537,51.50179542104359],[4.782252774305053,51.50180576210265],[4.782220515835109,51.501817433336676],[4.782196911198811,51.50182384596522],[4.782169204873136,51.50182353165793],[4.782126497611646,51.50182705877242],[4.78209449668742,51.50182802558277],[4.782070988433165,51.501830438645946],[4.782041150912808,51.501830095288895],[4.78197093049207,51.50182528195791],[4.781902891315337,51.50181781918838],[4.781849785375193,51.50181052366559],[4.78183276759382,51.50180898825819],[4.781805029057487,51.50181001303656],[4.781783684330895,51.50181110690581],[4.781741059323609,51.50181061628859],[4.781721827962333,51.501813078418515],[4.781711010762826,51.50181963813765],[4.781702602062988,51.50182811597854],[4.781682574670682,51.50185359442705],[4.781664912822627,51.50187880648178],[4.781664300992289,51.5019042147963],[4.781672085397957,51.5019350689408],[4.781699686677534,51.50202768934846],[4.781711493910707,51.50206794870674],[4.781724960670704,51.50212095387045],[4.781758405707599,51.502155428702714],[4.781781173482564,51.50218378070552],[4.781805897218337,51.502218839536816],[4.781828987037695,51.50223381778691],[4.781873228596678,51.502255728194754],[4.781904957903727,51.50226545677053],[4.781923946212221,51.50227369907334],[4.781953462195331,51.50228740721636],[4.781984998355157,51.50230516181434],[4.781999434430299,51.502325389623],[4.782011546120354,51.502353614453405],[4.78201132072121,51.502362979669435],[4.782008996321966,51.502370976692895],[4.782004540584981,51.502378953684],[4.781945869218795,51.50242510405169],[4.781937022148887,51.502438379684754],[4.78193240553501,51.50245303455656],[4.781886521696059,51.50249933206003],[4.781858235451191,51.50252308682108],[4.781827946722128,51.50254146485171],[4.781806279660421,51.5025559324676],[4.781777510336777,51.502599747823346],[4.781755939905305,51.50261019791394],[4.781715155464076,51.502621779870346],[4.781676631258963,51.50262802516325],[4.781648892339326,51.5026290409154],[4.781623381213503,51.50262607716117],[4.781587292450761,51.50262031695625],[4.781568239718269,51.502614743954275],[4.781536366913853,51.50261037189974],[4.781444896937098,51.502602634554705],[4.781385381833131,51.5025952696289],[4.781344933961456,51.502593468800704],[4.781310929966957,51.50258906765199],[4.781270532060266,51.502584597368006],[4.781221816741677,51.50257200293955],[4.781139161983533,51.502552328948696],[4.781090528947209,51.502535725863886],[4.781039811370696,51.502517754623696],[4.781016366147241,51.50251000141058],[4.781001641517728,51.502509295769855],[4.780982363291965,51.50251308788607],[4.780960921591915,51.502518190131106],[4.780934927201251,51.502535286837144],[4.780911064135521,51.50255240358965],[4.780880646123261,51.502576129072274],[4.780863305699206,51.50258797625154],[4.780847806709396,51.502611869061724],[4.780832146443707,51.502642457727944],[4.780818295223072,51.50268644018576],[4.780813516960841,51.50270779087054],[4.780817088321128,51.50273592654319],[4.780818413963186,51.5027693809464],[4.780818091678436,51.50278275468603],[4.780824163341242,51.502796197575925],[4.780844688457834,51.502828538157374],[4.78085899530502,51.50285411380393],[4.780877403633941,51.50288642541283],[4.780891663865328,51.50291334015219],[4.780901836920915,51.50293352798964],[4.78090358152216,51.502949600125135],[4.780909524352492,51.502968390708745],[4.780934344467464,51.5029994411956],[4.780967414251531,51.50304262450235],[4.781000920799396,51.503067086286634],[4.78103256826677,51.50308082370094],[4.781060081995679,51.50308916432083],[4.781091940687152,51.50309353643098],[4.781117452039938,51.503096500301616],[4.781140960878912,51.50309409641998],[4.781173059439986,51.503089112357415],[4.781282515163569,51.503058255196656],[4.781304053678016,51.50304914436608],[4.78134051151729,51.50304019182069],[4.781372513309662,51.50303922521844],[4.781385269039526,51.503040702629654],[4.781400123782695,51.50304354824299],[4.781408473555659,51.50305033318886],[4.781418775811209,51.50306516429444],[4.781426978938755,51.50307863618431],[4.781438335156274,51.50313762599561],[4.781442211327599,51.5031537181659],[4.78143943586385,51.5031804366175],[4.781436821330313,51.50320047718664],[4.781427684085884,51.503225787349294],[4.781418707887299,51.503244410640654],[4.781396814948695,51.50326823440489],[4.78137682771157,51.50330145241107],[4.781361346461736,51.503324015030046],[4.78133293059711,51.50335311735982],[4.781295860565442,51.5033874692235],[4.78126331080831,51.50341117475843],[4.781239415164394,51.50342963074812],[4.781204748362868,51.503453316294866],[4.781178850254912,51.50346639553829],[4.781159475028634,51.503474196209595],[4.781116397290638,51.50349243578854],[4.781075579769712,51.50350534770267],[4.781047679190413,51.50351305018096],[4.781032695449095,51.5035155522209],[4.780934668443769,51.503514441192976],[4.780904797577988,51.50351543671543],[4.780855615795497,51.50352156349607],[4.78080845089847,51.503533058083],[4.780737343402587,51.503564347633876],[4.780696300032964,51.50358662462737],[4.780691650644579,51.5036026186196],[4.780684579784599,51.50363062712197],[4.780684160682035,51.50364801837482],[4.780687957713011,51.503666788837364],[4.780693471920324,51.50369504246666],[4.780695548451583,51.50370566009485],[4.780707562926476,51.50373790257143],[4.780719853081911,51.50375811040506],[4.780731964355201,51.50378633536459],[4.780748434976956,51.50381060089573],[4.780760675062257,51.50383348714277],[4.780779262719697,51.50385777264992],[4.780795862288669,51.50387669047658],[4.780833438654414,51.50390922744626],[4.780870836204563,51.50394978153127],[4.780891655819445,51.503968712261596],[4.78094447118929,51.50404554446009],[4.780909003798518,51.504053603140335],[4.780905668418267,51.504046655422414],[4.780735404805831,51.50408467524919],[4.780546924760707,51.504121314810966],[4.780263987409964,51.50418496018162],[4.779970535789186,51.50424313891936],[4.779784153616473,51.504281136488274],[4.779517464323949,51.504332684656],[4.77948111616364,51.5042707870703],[4.779256845438096,51.50431255973373],[4.779020948429043,51.504342657833455],[4.778999015100072,51.50436398204129],[4.778914150514585,51.50435859624459],[4.778785999416443,51.50438262116765],[4.77879602901055,51.50441564452355],[4.77878721349628,51.504486772343476],[4.778690105045793,51.50449974975612],[4.778669964462938,51.50439457412315],[4.778502186671348,51.50440158312224],[4.778423211157423,51.504406025508736],[4.778136910813622,51.50443218267171],[4.777989472760768,51.50444654200983],[4.777765125560602,51.50446805054051],[4.777632509783847,51.50448660366012],[4.777495584517879,51.504506437518145],[4.777271042883524,51.50453596214423],[4.77707842478096,51.5045671991798],[4.776680561268239,51.5046228376918],[4.776569226142119,51.50464296602034],[4.775973832215457,51.504744697866094],[4.775630161200819,51.50480820297684],[4.775193952133483,51.5048798605412],[4.774844995322506,51.50493783447292],[4.774828803316853,51.50492410450062],[4.774746125767384,51.50484716686304],[4.774022802824732,51.50493959761057],[4.773888096559018,51.50495594223232],[4.773922658012835,51.505094291410785],[4.773757623335476,51.50511445870382],[4.773733343093627,51.505109872711],[4.772880108100465,51.504952676614046],[4.772721054694864,51.5049203160527],[4.771228397174408,51.50462277000245],[4.770946034470327,51.50456623282084],[4.770866297411446,51.50455026137295],[4.769909226285948,51.50435862550394],[4.769419231175779,51.50426050128477],[4.769060855790138,51.50418886067419],[4.768775567031501,51.504131817338994],[4.767927260191002,51.50396222435394],[4.767872187389695,51.503951262570396],[4.767826192940302,51.50394210172973],[4.767422211776475,51.50386169278179],[4.76692581289539,51.50376287687857],[4.766566485963892,51.50369081902933],[4.765981418821919,51.50357347827711],[4.765875343184165,51.50355214078976],[4.765169343397539,51.503410098385906],[4.764928423737307,51.503361623561744],[4.76402938441339,51.50317975867987],[4.763976958661548,51.503169159740345],[4.763159568000797,51.50300686106103],[4.763114267369913,51.502997657119444],[4.762928598257584,51.5029599274058],[4.762525088318572,51.50287792192415],[4.761274511222401,51.502624698121046],[4.760023354068378,51.50237276113928],[4.759943477507074,51.502358057872065],[4.759768077488208,51.502176592325064],[4.759370236696282,51.501699302864246],[4.759093654094061,51.50136729507456],[4.759061674491747,51.50132288886447],[4.758795512242954,51.50095312919799],[4.758688658684392,51.50080217044259],[4.758636588252995,51.50072235670196],[4.758584898762143,51.50064312926382],[4.758413000162567,51.500207097671684],[4.758410658070048,51.50020045127604],[4.758406597540021,51.50019413720572],[4.75840235389764,51.50018752551672],[4.758396345510159,51.500181470625286],[4.758390138243461,51.500175216907586],[4.758382263933627,51.50016974523483],[4.758374261259151,51.500164182981706],[4.758364775897291,51.50015961050969],[4.758355304814084,51.50015504710262],[4.758344666001215,51.50015161000506],[4.758334184731026,51.500148236676885],[4.758322923438582,51.50014607264527],[4.758312021177624,51.50014398245676],[4.758300699166129,51.500143085526815],[4.75828988069215,51.50014222726271],[4.758278989083796,51.50014249221259],[4.756508587318375,51.50026103681878],[4.756439489666656,51.50026805252164],[4.756025739693777,51.500310069499406],[4.755587713305423,51.500346443552836],[4.755509203348073,51.500352958361276],[4.755377964000799,51.50036385310325],[4.755260102111053,51.50054183333458],[4.752699583285755,51.49980751971297],[4.752653549330597,51.49976040162124],[4.752374997170968,51.49953054349039],[4.751462599876038,51.49878921184792],[4.751409328868314,51.49874588312081],[4.751314207555256,51.49866644292031],[4.751225022654892,51.49859608676606],[4.751169726500653,51.498545187254074],[4.751037691431715,51.49842891611529],[4.751004671875283,51.49839985498959],[4.750965272247726,51.49836566240469],[4.750958300642263,51.498359574911156],[4.750363444883695,51.4978401284997],[4.750312449893932,51.49783086154188],[4.750136051712826,51.49767529075143],[4.749680478877141,51.49729931688286],[4.749662614610177,51.497284387714714],[4.748944563397282,51.49668450301304],[4.748945042497545,51.496650347888306],[4.749100669730752,51.49648939846999],[4.749536537206869,51.49606121181408],[4.749656736454376,51.49591040542907],[4.749915148394522,51.49555630564438],[4.749979223921132,51.49548483413116],[4.750003301237343,51.4954313917797],[4.749991112021849,51.495324896936104],[4.749927968988909,51.49513443758346],[4.749818858918078,51.49481248967223],[4.749743530683108,51.49455652465273],[4.74969914008279,51.49436392029591],[4.749655900190765,51.49425366034813],[4.749602600060142,51.49414199712527],[4.749187989276641,51.49357106015367],[4.748802436521245,51.4930296561679],[4.748714610637149,51.49290557889175],[4.748592902098011,51.492733315633465],[4.74820390382228,51.49214295526422],[4.748069798677562,51.491930892738914],[4.747983313316198,51.491811109921706],[4.747920783739032,51.49172450131757],[4.74781387250899,51.49162683606052],[4.747624169622805,51.491446918450464],[4.747365660540997,51.49123480289864],[4.746912264360766,51.49076148003109],[4.746829844637725,51.490704128450986],[4.74682296713532,51.49064440453929],[4.746784720258283,51.490308999263696],[4.746749166675959,51.490062598704206],[4.746687859903963,51.48984545053081],[4.746603419853405,51.48964534419059],[4.74656148467431,51.48950461784897],[4.746464439096181,51.489443140756535],[4.746380056381375,51.48941292450803],[4.746174562393769,51.48935336887904],[4.745662339912441,51.48918417163907],[4.745045211573759,51.48900082206883],[4.744985676606451,51.488964898666964],[4.744630193308295,51.48885157076495],[4.744236183777779,51.48875438942628],[4.744071785094067,51.48869101133965],[4.743941112101271,51.48865586413935],[4.743586619099802,51.48855431393778],[4.743524255377174,51.48853527330283],[4.743125365840514,51.48841090585926],[4.742752150409395,51.488275370714774],[4.742694885688798,51.488257256663154],[4.741597404689638,51.48791006572067],[4.74136979314339,51.48784750284791],[4.741065206251053,51.48774055794422],[4.739304165929659,51.487204761205135],[4.739245818926062,51.48718700798952],[4.738535465180066,51.48697191497354],[4.738170899238115,51.4868414379124],[4.737828606372549,51.486744432368],[4.737374513605313,51.486602218775694],[4.736666785955686,51.48638596036926],[4.736646572096536,51.48637987912651],[4.735830742316709,51.48613524659731],[4.735034379168075,51.48587908542223],[4.734885245686244,51.485831114613696],[4.734747788369718,51.48579824728119],[4.734653018060808,51.485750445089366],[4.734530451137529,51.48571335503069],[4.733684210572409,51.48545152142886],[4.72981622221753,51.48425461804382],[4.729674636209782,51.484250009531664],[4.729492569833336,51.484116586590254],[4.729317494960953,51.483986600557216],[4.729308882865956,51.48398280366132],[4.729186311899825,51.48392470985232],[4.729151926195612,51.4839071854642],[4.729095624773042,51.48384310986324],[4.728381595165409,51.48299364090804],[4.726842381280562,51.48120805497212],[4.726727866457691,51.48106078919782],[4.726492340708019,51.480786490523734],[4.725537329274136,51.47966320386095],[4.72517844030372,51.47926076752047],[4.725095159903448,51.47916988483219],[4.725024205793114,51.47909261827763],[4.72494889932324,51.479010760625656],[4.724644127637839,51.47866206860218],[4.724445168120122,51.478421942246484],[4.724344665357575,51.47829309995289],[4.723312598538426,51.47709210627446],[4.723135269077152,51.47689374622829],[4.723016536241035,51.47675398539691],[4.722835947117748,51.47653849144863],[4.722640600508118,51.47631247708255],[4.722454229111468,51.47609298549894],[4.722193845500239,51.47579648651532],[4.721950021515204,51.475519497345175],[4.721764814118857,51.47530944961523],[4.721585158611672,51.47510374791366],[4.721388199723819,51.47487071083586],[4.721185241253579,51.47463467284615],[4.721032038023321,51.474451233895635],[4.720912236448606,51.474316525511036],[4.720835421845725,51.47422466982699],[4.720828251273949,51.474213033197984],[4.720814675038076,51.474196505991046],[4.720795085462901,51.474177787117746],[4.720775907949895,51.47416041893053],[4.720757229328431,51.47413846924131],[4.720733404893325,51.47411406316603],[4.720439525312738,51.47379660452129],[4.720388854717146,51.47371829132969],[4.720208494598341,51.47366961977392],[4.720219401492653,51.47361287213911],[4.720408835980836,51.47350384003681],[4.720603348605845,51.47345490954904],[4.720585623769846,51.47344255644891],[4.720447532556252,51.47335989681618],[4.720376315996859,51.47333610090141],[4.720150009087794,51.4732307164048],[4.719874024319803,51.47315623904841],[4.719749800408671,51.47308802213569],[4.719149781836444,51.4728689460292],[4.718775209782931,51.472754979847814],[4.718625509019905,51.47266737956859],[4.718525443574632,51.4726401093753],[4.718369769058426,51.47265548754679],[4.718334488388358,51.472617442070884],[4.71837372213312,51.47252355287931],[4.718497891203984,51.4723208449739],[4.718590981260657,51.47225066234137],[4.718533229473688,51.47221676694944],[4.718452248347003,51.472175924863365],[4.718342276945489,51.47212349171291],[4.718234439632223,51.47207668876061],[4.718097008202111,51.47201434504264],[4.717831781850602,51.47191076441756],[4.717539792426338,51.47178811698133],[4.716992781207885,51.471554448060054],[4.716604645262019,51.47138625670226],[4.716439825143083,51.471319241242114],[4.716281462719419,51.4712506266767],[4.716207818919346,51.47122098942326],[4.716170527383641,51.47120532312097],[4.716128103603204,51.471186319381644],[4.716097112343542,51.471168963399364],[4.716072368600273,51.47115349504297],[4.716050269272136,51.4711402441698],[4.716028739594615,51.471123499877365],[4.71601762451537,51.47110910763359],[4.716008145044377,51.47109799675973],[4.715997447999083,51.47108356197281],[4.715989719770971,51.47106593520983],[4.715984786215139,51.471050095332096],[4.71598075427084,51.47103265162139],[4.715977545317802,51.47101991384801],[4.715975637710542,51.47100677006655],[4.715974633566833,51.47099189661807],[4.715975204006963,51.470980537902136],[4.715978157895273,51.47096957042508],[4.715983331292889,51.470955469587174],[4.715985924176447,51.470947511322706],[4.715991599271583,51.47093647859101],[4.716371258378745,51.47013116814354],[4.716444859280729,51.469975031027225],[4.716909679546071,51.46889765505686],[4.716911866380402,51.46888695281933],[4.716910323302088,51.46887640894338],[4.716905385948908,51.46886962092452],[4.716898177142976,51.46886461764702],[4.716890369545768,51.46886118399198],[4.716882347642139,51.46885862103118],[4.716875105701679,51.46885782437712],[4.716476659986166,51.46880979110778],[4.715729081499983,51.46870571635289],[4.714800032763417,51.46857847891057],[4.714248718690909,51.46850123328946],[4.714078074981202,51.468470828696184],[4.712767690666626,51.46829007574498],[4.71155251132058,51.468125391977225],[4.710393786017771,51.46796069025499],[4.710277502548271,51.467945948332414],[4.709132226546386,51.467789096447426],[4.708289222558502,51.467679062157494],[4.707818377008723,51.46760782717369],[4.707048692216516,51.467498687000244],[4.706242436009259,51.467387998040664],[4.705803083320529,51.46732557697111],[4.705497708338423,51.467274417824754],[4.704878203832792,51.4671840551673],[4.703463161369752,51.466995816971895],[4.703305061259639,51.46699156491616],[4.703248851381957,51.46696831380744],[4.703173042794421,51.4668222488886],[4.702956194375866,51.466302855856696],[4.702918591468231,51.466200251475655],[4.702875938318147,51.46614642738613],[4.702795040008594,51.46607107527657],[4.702832838406582,51.4660361501552],[4.703192502486781,51.4658716034095],[4.703569337935646,51.465703830224484],[4.704056201460961,51.46546532767759],[4.70336194932715,51.46500014824401],[4.703009203940996,51.46476693074492],[4.702866596809449,51.46466974238626],[4.702847981889337,51.464654918365746],[4.702831497942773,51.46464289340585],[4.702818571055763,51.46462687124497],[4.702804963679228,51.464611123749734],[4.701880272729396,51.46359680725282],[4.701815912015729,51.46354557894819],[4.70180995779761,51.46353961128839],[4.700985550546862,51.46265342928898],[4.700513983304844,51.46215129354285],[4.699800403469723,51.461378278385354],[4.699492945936615,51.46104402035579],[4.699434462108747,51.46098042958149],[4.699398324792589,51.46094262489469],[4.699377791514021,51.460907312196944],[4.699354714371156,51.4608813240128],[4.699345769795411,51.460860929330444],[4.699338136337412,51.46083470855198],[4.699331796758454,51.46080475599912],[4.699329731216523,51.46077478368938],[4.699329801265678,51.46074156098005],[4.699331643527309,51.46070437560332],[4.699341799262757,51.46060169186903],[4.699353515678437,51.46051190747075],[4.69936436752913,51.46042219887653],[4.699375183368338,51.46033582496554],[4.699381797010961,51.460269489604755],[4.699385435969369,51.46023052601495],[4.69938351686093,51.460184185707796],[4.699379333522405,51.46014294676453],[4.699373561110041,51.46009830962608],[4.699373276467672,51.46009714837539],[4.699361146407234,51.46006187620206],[4.699341585294019,51.46002319837067],[4.699314395658136,51.4599722775851],[4.699181793857554,51.45980484106167],[4.699093682403503,51.459693757670436],[4.699075051160541,51.45966117977572],[4.699053420209887,51.45962333465082],[4.699040676911506,51.459601056834565],[4.69901060733662,51.45956078886752],[4.697230525512227,51.45717728859106],[4.696809631941947,51.456638069810765],[4.696058269653758,51.4556329734905],[4.696009261349757,51.45557245732702],[4.695940303525821,51.45545177682878],[4.695612892361248,51.45503086238867],[4.695152080523454,51.4544131970058],[4.695063551340461,51.45431199581512],[4.694832249530492,51.454015157161656],[4.694787790906578,51.453930037739454],[4.694447135320575,51.453492142098185],[4.694163142032161,51.45309404339773],[4.693784289674923,51.45264270516192],[4.693488292217515,51.45225891574671],[4.693312447625098,51.45201849463749],[4.693283795841152,51.45197931223758],[4.69318973799356,51.45190162774903],[4.693123460915596,51.45181359133515],[4.693096968966073,51.4517299264294],[4.69307380170573,51.45172833242908],[4.692010569424119,51.451655018098926],[4.690985554737518,51.45158433110346],[4.690121562436605,51.45152474552427],[4.689238443885529,51.4514638346324],[4.686440631422778,51.451270812954306],[4.686247846629011,51.451177518394125],[4.682812410304326,51.44975689305859],[4.682473383315815,51.44962306809009],[4.682336735384991,51.44959383770839],[4.682294615980688,51.449591767531295],[4.682115644448386,51.44958297382063],[4.681833910799991,51.44953992206762],[4.680916808198217,51.44935342744918],[4.680816954919572,51.449326485421764],[4.677902420098925,51.44832307747848],[4.677155475106956,51.4480669339537],[4.676613098358244,51.44787280583914],[4.676273523303043,51.44775126526164],[4.672703804237013,51.4465179302354],[4.671820800589987,51.44621813163409],[4.668603221828046,51.44510925810746],[4.666706705431251,51.444441566274676],[4.666666379920838,51.44442736639023],[4.666586344038872,51.44439918611339],[4.666759218234341,51.44346928326075],[4.666870743954966,51.44286931037482],[4.666895157839151,51.442738006285516],[4.667031644273948,51.442003703226966],[4.667104726927615,51.44161054492501],[4.667273729964706,51.44070126503065],[4.667307148742426,51.44052149390462],[4.667364979245516,51.440210364624306],[4.667621343600167,51.43888414799423],[4.66797587120346,51.437050002385035],[4.668117991045311,51.43631467197111],[4.668196623911495,51.435822848136795],[4.668347886875237,51.434876620381864],[4.668505540693895,51.4338904128299],[4.668765360160712,51.432138901111564],[4.668941608808489,51.430950645194784],[4.669237521271877,51.429135802358395],[4.6692727453603,51.42891978915551],[4.669301490884544,51.428743512321844],[4.669339245184649,51.42851197271541],[4.669689695682878,51.42636259758939],[4.668275833152636,51.426307330067246],[4.66796583003316,51.426295207723456],[4.667796048878068,51.426288578684535],[4.667655884308563,51.42628310288695],[4.667484350194509,51.42627639965876],[4.664501573886606,51.42615975472144],[4.664472403071486,51.42615861218167],[4.661484370029897,51.425710990678574],[4.661470800225459,51.4257089556497],[4.661463861099084,51.42557490460583],[4.661461011859067,51.42551994616814],[4.660983437724132,51.4256321230971],[4.660841831229538,51.42561263426231],[4.660618996476237,51.425565402717986],[4.660291119648494,51.42548704357208],[4.659821930359747,51.42535287972493],[4.65972903455198,51.42532650205172],[4.659662217659956,51.42530577023661],[4.659598099149949,51.42527813368893],[4.659553463569999,51.42526401223211],[4.659429230700554,51.42524615817058],[4.659250113426714,51.42522571425366],[4.657778961164002,51.42508744279473],[4.65776255383283,51.42508574016109],[4.657639577530527,51.42507299779391],[4.657493573371625,51.425058960663094],[4.657339617350497,51.42504766018647],[4.657226714860641,51.42504066145463],[4.657128629346823,51.42503321600469],[4.656723013036049,51.42501530562156],[4.656418684478286,51.424993443995625],[4.656410283881617,51.42499725663813],[4.656385395555379,51.42500707850673],[4.656342648055857,51.42501876606078],[4.655937591535443,51.425199063808286],[4.655773250926242,51.42527938392517],[4.655689508299114,51.425318949753304],[4.655600633040505,51.42535578663419],[4.655496654466326,51.42539297816571],[4.655053312685189,51.42549464867583],[4.654439760091893,51.42563893499998],[4.65371583943392,51.425832862603265],[4.652603295329673,51.42642050231463],[4.651873765327371,51.42680583092839],[4.651808962022419,51.42683863678752],[4.651716642801911,51.426885354897976],[4.651632210614037,51.426847832827555],[4.651556904504521,51.42683555541862],[4.651447550087746,51.42682320705014],[4.651372445338709,51.426810040880774],[4.651281953595675,51.42678627844691],[4.651237284177218,51.42676541184127],[4.651207247819778,51.42673771600966],[4.651169942572467,51.42668822093119],[4.651145910992998,51.426614566260945],[4.650975912949179,51.42650033101995],[4.650848397066562,51.426583357607406],[4.650798459442334,51.42660380697545],[4.65074387004859,51.42660067577745],[4.65069865212531,51.426587086590295],[4.650603593768234,51.4265434291065],[4.650551714388341,51.42649716773144],[4.650515592206669,51.426427904110234],[4.650491858887968,51.42640883238889],[4.650471730973104,51.4263926599119],[4.650411939870019,51.42638221461685],[4.650318968827109,51.42639627946005],[4.65018684917137,51.426394905494405],[4.650094570835988,51.42640169344546],[4.650015568896597,51.42642330718118],[4.649927482823032,51.426455380582695],[4.649845750453398,51.426476887057746],[4.649758730492592,51.426487483360525],[4.649676632771852,51.42646934591629],[4.649640249363141,51.42642253488966],[4.64963381236794,51.42641424228952],[4.649645552009186,51.426364068000154],[4.649711276424134,51.42631881939582],[4.649795853519436,51.4262992186877],[4.649874104368457,51.426288477044345],[4.64994798999637,51.42625424647052],[4.649991179304218,51.42620651814989],[4.649971151862883,51.42615569362385],[4.649713690880654,51.426036220482885],[4.649644335049099,51.425994882051754],[4.649572911647079,51.42593914810415],[4.649486306301611,51.42589752072638],[4.649414207928773,51.42590128959764],[4.64932945854454,51.42592268673745],[4.649260005966144,51.425931775759274],[4.64919834868502,51.425903429920716],[4.649172517533415,51.425855894466544],[4.649195813141426,51.425802467397205],[4.649367421996984,51.42557595141523],[4.649368021810236,51.42557442707877],[4.649394256691627,51.425508164289354],[4.64937750798636,51.425403174692484],[4.649330886708153,51.42535912135477],[4.64919483508564,51.42528550374397],[4.649131838588641,51.42525289759509],[4.649111134379773,51.4252421865446],[4.649026425394869,51.42521675101741],[4.648912738637712,51.425196075988175],[4.648812936555817,51.425179264114576],[4.648717275477462,51.42514647794637],[4.648704726854615,51.425138254471086],[4.64862878085977,51.42508847797617],[4.648523268154428,51.42502479699628],[4.648419014930513,51.42498988870314],[4.648084603906526,51.42490812781714],[4.648006221001871,51.424873922402035],[4.647949031577282,51.42481845741423],[4.64792840082716,51.42477841550077],[4.647938871297479,51.42477290867293],[4.647961175316158,51.42476118453197],[4.648021599037938,51.42475905050087],[4.648144848999236,51.42477421381153],[4.64814715930781,51.424774498118374],[4.648240894281424,51.42479298004503],[4.648327534963894,51.424787865775485],[4.648365821812319,51.42477561355929],[4.648380145048012,51.424771029993856],[4.648410576818655,51.42469427686603],[4.648415308892973,51.424615203613214],[4.648405842856106,51.42453388308054],[4.648376079098994,51.42441059018603],[4.648297945806934,51.424351262281554],[4.648211630414755,51.42429288925942],[4.648058713156383,51.42427900324623],[4.647867924115881,51.42429613177651],[4.647777542373744,51.42431919999411],[4.647653605618531,51.424372168579865],[4.647583374423319,51.42439392615375],[4.647456489660246,51.424398155441914],[4.647411017385059,51.42439157477427],[4.647355272287404,51.42435971478178],[4.647319130271746,51.42433903557179],[4.647255874311067,51.4242942286726],[4.647047396851304,51.42412553084147],[4.646958329116079,51.424076514949945],[4.646860058338745,51.424036429586636],[4.646696626553939,51.42398037954359],[4.646644147570421,51.42394489939226],[4.646643295310318,51.42390884807423],[4.646703801343088,51.423813049827544],[4.646790670947719,51.4237051938404],[4.646823256048167,51.4236376235652],[4.646807336745018,51.423520036238656],[4.64676812603197,51.42345552496783],[4.646765277156469,51.42345387987514],[4.646650056863314,51.42339516939083],[4.646528838084406,51.423351702012596],[4.646293302970665,51.42330013750517],[4.646289522030647,51.42329480098874],[4.646204349216944,51.42331503357502],[4.646132905778753,51.423358356184586],[4.646086265396347,51.42341487039001],[4.646058981112915,51.42343932691814],[4.646003959283359,51.423445359520834],[4.645947625784923,51.423425944877984],[4.645912827571117,51.423381947295326],[4.645824915796943,51.42321778871059],[4.645801009370713,51.42318482690151],[4.645771019422454,51.42315904459243],[4.645755339116683,51.42315514257899],[4.645700923599707,51.42313628833477],[4.645697571369396,51.42313553891664],[4.645492991763599,51.42314331720837],[4.64532426393355,51.42313028888221],[4.64517399707909,51.42309607379995],[4.645073967984619,51.42308474054823],[4.644913313562613,51.42307922386338],[4.644793127344225,51.423075807263466],[4.644149915990192,51.42305755419296],[4.644030053757323,51.42304573414826],[4.643905542292897,51.42301042304669],[4.643741383801036,51.42292002618804],[4.643673472871448,51.42289209597315],[4.64352501167888,51.42283104010023],[4.643373301474452,51.42281493532499],[4.643144184941613,51.42280214798082],[4.642837674457202,51.42278311338569],[4.642732699570508,51.42277625005344],[4.642545626899031,51.42277648525246],[4.642407051756409,51.42276607220801],[4.642355566239795,51.42276159953774],[4.642208058450668,51.42274880106548],[4.642003384236421,51.4227096499997],[4.641867174707661,51.42267767780248],[4.641751982789121,51.42263532261835],[4.641729660817206,51.42262436619046],[4.64164030189085,51.42258049503669],[4.641620682348268,51.42256166350974],[4.64159401342696,51.422536063142154],[4.641458379382677,51.4222307203792],[4.641427673693242,51.42220141765962],[4.641375365838132,51.422147059280086],[4.641328561019572,51.4220814998011],[4.641290450501451,51.422014440799614],[4.640149677077606,51.42217355413732],[4.639739775334091,51.422258481278405],[4.639598867585626,51.422287871260735],[4.639583982407754,51.4222925220594],[4.639581222133121,51.422293385291674],[4.638964873220769,51.422485879285524],[4.638740963663637,51.422558961741665],[4.638608242303946,51.42260368437984],[4.638386475326827,51.42268630826273],[4.638104184668411,51.42278598176067],[4.637639450377728,51.42295491131062],[4.637473834689467,51.42301510712085],[4.637414756644,51.423040435982095],[4.637365792601429,51.423071492905244],[4.637325170268729,51.42309452230935],[4.637197148904016,51.42316713051777],[4.636864499485249,51.423347288475554],[4.636850370394955,51.42335488319849],[4.636129748836179,51.42374239135839],[4.635599709953103,51.42403408679813],[4.634850345578221,51.42443340227161],[4.634489162314752,51.42468689963132],[4.63394924915065,51.42506583423621],[4.633936214902939,51.42507498178993],[4.632717373330142,51.42534211502336],[4.631823995360915,51.42553791223047],[4.63009453753796,51.42591692289837],[4.630066281152905,51.42592051489579],[4.626234496733893,51.42640748914164],[4.624736625530573,51.426597822302654],[4.6245029162276,51.426627513426084],[4.624021893879008,51.426688630047394],[4.623979616007166,51.42669399856042],[4.623760430845913,51.42672183260485],[4.623708901974475,51.426728371974185],[4.623669578028539,51.42673336419084],[4.620309330043771,51.427159919935434],[4.619868501077705,51.427215872301275],[4.617697685309079,51.42749137050155],[4.617142548571779,51.4275618129168],[4.612822693326768,51.42811033142309],[4.610725139742124,51.42837661318804],[4.609848966369437,51.42848782436189],[4.609805733941676,51.428493316226515],[4.608776289084042,51.428623570407424],[4.608052203963213,51.42871518897064],[4.605539356166788,51.429033076887364],[4.604537527538374,51.42915980228146],[4.604478341265834,51.429167279589144],[4.603468090448541,51.42929507193451],[4.603366170473287,51.42930819435009],[4.603202150234523,51.42932930411068],[4.601030354839204,51.42960885507456],[4.598339147976938,51.42995521187157],[4.596313665005908,51.43021584369567],[4.596255424857628,51.43022333224597],[4.59569723421969,51.43029515334997],[4.594764131045815,51.43041520489456],[4.593849413367238,51.43053288406052],[4.593754160974283,51.43054513554996],[4.593134653304688,51.43061729144796],[4.59161680572203,51.43079407534282],[4.590592090568216,51.43091341488576],[4.589971910140619,51.4309856303383],[4.5889329351968,51.431106610762626],[4.588456156483304,51.43116212684053],[4.588254748818375,51.431142140371],[4.58824765937362,51.43135791897861],[4.588117766701642,51.43135835973438],[4.588014623172134,51.43135872290722],[4.58793729447885,51.431358984189046],[4.587232362104444,51.43136137076241],[4.586350279877373,51.43136434394247],[4.585726026993114,51.43136644822635],[4.585122066191351,51.43136848193431],[4.583813561120706,51.43137287210908],[4.582488052369976,51.43137757078375],[4.582469911549793,51.43141380639193],[4.582198268593852,51.43195662429649],[4.581902119792056,51.431991992905644],[4.579908111405767,51.43223011224803],[4.574728262199446,51.43284851280731],[4.572470397580015,51.432289386800505],[4.572353824790751,51.43226051777282],[4.57119146776696,51.43197597060651],[4.569652008929726,51.431599085796904],[4.568901632035111,51.43141538286143],[4.568426068395206,51.43129837936989],[4.567537772094913,51.43107981974793],[4.56740873185416,51.431048071536786],[4.565834335606826,51.43066067891253],[4.565801778151151,51.43064872793063],[4.565788620728253,51.430643907036774],[4.564803594545075,51.43039929614907],[4.564367301864719,51.4302914969634],[4.563906607216187,51.43016941107814],[4.563541127246684,51.43006237817017],[4.562797369047555,51.42988039934811],[4.562085959250982,51.42971500467513],[4.56092843981517,51.42942527399197],[4.560085803511069,51.42921758774749],[4.559219272940895,51.42899579271143],[4.558317903064363,51.42876955474361],[4.557414513278353,51.428542594246686],[4.55481664515666,51.42788525020043],[4.554614068536965,51.427833987044785],[4.554229394083981,51.427738482551504],[4.553856788441074,51.427645966472134],[4.553482466577085,51.4275530234308],[4.553222990129355,51.427488595657955],[4.552685402279532,51.4273551105168],[4.552179952934007,51.427229601530044],[4.55171561646715,51.42711429976426],[4.551321721699091,51.427016490285595],[4.550626190350767,51.42684378595977],[4.550028499636046,51.426695358047205],[4.549438585114855,51.426548861617455],[4.548745401478124,51.426376711195154],[4.548005847064418,51.42619304960076],[4.547535167815711,51.42607506962325],[4.547143726408398,51.42597695796938],[4.546739748649414,51.425875707367474],[4.54580460274333,51.42564130816867],[4.545429198692715,51.425547216652866],[4.544736990572842,51.42537370092022],[4.544239077450954,51.425248885896416],[4.540942864454354,51.42442250861074],[4.540888838334705,51.42440891166272],[4.540846418840621,51.42439823945886],[4.54037166326012,51.42427875355229],[4.53952002009339,51.424064425128826],[4.539401407808717,51.42403457325777],[4.538910187446466,51.42391094356453],[4.538793322011546,51.42388152626209],[4.53803212568458,51.423689939921346],[4.537312351784285,51.423508772120826],[4.536325142462852,51.423260280574326],[4.535408853373526,51.42302962951896],[4.535200382412584,51.42400396457183],[4.535103256891253,51.42445787924783],[4.534614827453006,51.426740375214415],[4.534613113431268,51.42674821916647],[4.534386830085381,51.42778815088402],[4.534385539485841,51.42779411021577],[4.534375848963648,51.4278386253404],[4.534253768063657,51.4283996058749],[4.534180517490501,51.428736224680655],[4.534105236647232,51.42908215029516],[4.533730388378075,51.43080455277121],[4.533661739905254,51.43111999961013],[4.533658119781461,51.43113822999693],[4.533580138835318,51.43153038445482],[4.533650427840266,51.43153979795778],[4.533642143934018,51.43156363937945],[4.533616834881634,51.431636544616865],[4.533560606591431,51.43162885201971],[4.533484350356932,51.43201482553704],[4.533481336862735,51.43203290754252],[4.533477546992409,51.43205558628834],[4.533279537978039,51.43297902613475],[4.533274243028908,51.43300373438395],[4.53304092665176,51.43409177555613],[4.532962811317081,51.434456008441856],[4.532958162689555,51.43447767410229],[4.532827115166865,51.43484760493526],[4.532818128043737,51.43490737059888],[4.532817751145569,51.43490983085333],[4.532819279762023,51.43496638351347],[4.532781676727102,51.43520009451473],[4.532605720938521,51.43596296950798],[4.532576182547336,51.436080959853655],[4.532470951727908,51.43641593200179],[4.532326729720182,51.436950985486064],[4.532308764470982,51.43700397945191],[4.532302403500404,51.437059395611946],[4.532311061856345,51.43723420722805],[4.532306887703995,51.437261215865924],[4.53229337049327,51.43734849989473],[4.532290736580967,51.43736547000032],[4.532287988346525,51.43738316738557],[4.532051313363199,51.438561099909855],[4.531842438665358,51.43960056984282],[4.531751323954088,51.44005402231458],[4.531679880517252,51.44040959278921],[4.531665743727965,51.44047996369475],[4.531510718844092,51.441289616932764],[4.531383454748661,51.441954236655974],[4.531379643229323,51.441974137538125],[4.531261019086348,51.442593632276605],[4.531207998671144,51.44288999154238],[4.530919114439712,51.44450464266338],[4.530677853250042,51.44585299890783],[4.530576152301864,51.44642137924985],[4.53055871798871,51.4465009126658],[4.530548317638535,51.4465483347182],[4.530412007053143,51.44716998192349],[4.530245623648542,51.44792868065907],[4.52989653524391,51.44952050408561],[4.530478365346008,51.450272391454355],[4.530995365312811,51.45094048919132],[4.531482077503638,51.45156972730537],[4.531500216378232,51.451592872399836],[4.53217292425496,51.45246212270915],[4.533012440583583,51.45354685407818],[4.533026698719473,51.45356526922346],[4.533459106424506,51.454123276156025],[4.533461803820279,51.45412674770077],[4.533481541240738,51.45415222335353],[4.53442766258155,51.455373054675974],[4.534808319654586,51.455864221866165],[4.534905777424041,51.456000039671466],[4.535165027359627,51.456338502194185],[4.535719861821533,51.45706282931369],[4.535840943681868,51.457228302868295],[4.535983738254687,51.45740229450931],[4.536219054824054,51.45770488434854],[4.536796617364318,51.45844753878068],[4.536809020556706,51.45846373760017],[4.537386964978504,51.45921779891027],[4.537971572645626,51.45998055320886],[4.538670680345796,51.46089266357067],[4.539699802519413,51.46223526238884],[4.54150964802177,51.46461594279902],[4.541769586135242,51.464931895291215],[4.541826612985594,51.46499963653003],[4.542651536660037,51.46606173495854],[4.542944665174858,51.46643582350726],[4.543335560182031,51.46693970126357],[4.543598884796133,51.46728399856267],[4.543727558200612,51.46746219300665],[4.543795090699336,51.4675458299284],[4.544023184915041,51.46784222956441],[4.545023287563546,51.469157629382046],[4.546120277681974,51.4705995653625],[4.547439198067481,51.472342692941616],[4.548160864263044,51.47331258894313],[4.548088962003717,51.47338314867937],[4.548080103295142,51.47339130999834],[4.547455489007196,51.47396213680359],[4.546771327930972,51.474587355969426],[4.546758136111604,51.47459941421711],[4.546087219498522,51.47521259853864],[4.545796053295026,51.47547870714088],[4.545434578084718,51.47581033278892],[4.544934147352896,51.47626943563755],[4.544791111352433,51.476400632773036],[4.543921178090432,51.47719851421212],[4.543886447621511,51.47723011160703],[4.543857632349336,51.4772563313142],[4.543406305224125,51.477667034711715],[4.543250057775388,51.47780921802319],[4.543046264061674,51.477995517278536],[4.542702752640424,51.47830954704408],[4.542695328245901,51.47831633401995],[4.542397208097647,51.47858887409101],[4.542144316999135,51.47882100234519],[4.541478449399821,51.47942224170477],[4.541263817934993,51.47961615403452],[4.540384789387697,51.48041030308342],[4.540322457466823,51.48046661693364],[4.539228747024523,51.48145467628562],[4.538857210893286,51.4817903078499],[4.538630359379272,51.481995228126756],[4.538294251515785,51.482298844657194],[4.538210198322071,51.48237476642852],[4.538147669271726,51.48236881040427],[4.53782150060249,51.482337762816634],[4.534025784077917,51.481976412433674],[4.531357140337783,51.48171696190734],[4.525918746138314,51.481187594085924],[4.52578706108693,51.48117473897548],[4.522480415624135,51.48085121867809],[4.521560900290553,51.48076096776347],[4.520596472690593,51.480666160334174],[4.52003742058814,51.4806112028917],[4.518916676762294,51.4805010086266],[4.517650752489721,51.48037653534014],[4.517052153759946,51.48031744864195],[4.516600579917377,51.480272867072166],[4.515686830549184,51.48018265770329],[4.515251082616892,51.480140975657235],[4.513737639350449,51.47999619224962],[4.511789607196829,51.47980491166202],[4.510242535294194,51.47965227081771],[4.51014844972854,51.47964298843605],[4.510071118665531,51.479636070145],[4.508740514719354,51.47951696478533],[4.507844128608194,51.479442366668216],[4.507674850629559,51.47939602912105],[4.507655374277296,51.479423532874755],[4.506984336063307,51.47935156951908],[4.506910322312558,51.47934363140382],[4.505332967059731,51.479174489607104],[4.505143514910844,51.4791524014013],[4.505139009450865,51.47915535174407],[4.504738015691188,51.47910262058519],[4.504069228994013,51.479029345029495],[4.503728631691836,51.4789942004937],[4.503383037031606,51.47895918792173],[4.502990906972194,51.47891945317137],[4.50299074557809,51.4789203508599],[4.501845594489022,51.47880502517268],[4.500760162951258,51.47869630821807],[4.499083683088986,51.47852778526061],[4.496503548488112,51.47827109455197],[4.496406955615227,51.47826148529279],[4.496334169805405,51.478254241983265],[4.49619532219852,51.47824042679595],[4.495064918799026,51.47813233824887],[4.494260277220294,51.478054938725215],[4.493159906998958,51.47794928170592],[4.491660325662601,51.477805764674585],[4.489439337110611,51.47759558374026],[4.489320035693861,51.47758429278176],[4.488123257374158,51.477470439581225],[4.486792731195827,51.477342418447364],[4.486681639148603,51.47735281594256],[4.486085423121867,51.47740418162231],[4.485999091680881,51.477411614408325],[4.485779076624826,51.47744423624889],[4.485063115598139,51.47756184779998],[4.484975725196487,51.47757620226655],[4.484125084541315,51.47770215179988],[4.483298177897873,51.47782515969878],[4.482583310223852,51.47793347879483],[4.481896552703745,51.47803893723738],[4.48122582046014,51.47812671753801],[4.480846290115137,51.47817989972764],[4.480484857480026,51.47822712661845],[4.480357938520226,51.478251382279126],[4.480315654464186,51.47826244304491],[4.480242286693394,51.478281640186],[4.48010442783818,51.4782921201306],[4.479998222550845,51.47829331741451],[4.479871569746559,51.47829191962889],[4.479673033769434,51.47829011574],[4.479574242453917,51.47827758094065],[4.479433440782724,51.47827897616683],[4.479347575800398,51.478280924302354],[4.479283688960755,51.4782650200886],[4.479245573619115,51.4782431677106],[4.479210663225829,51.47820714640369],[4.479117136549774,51.47827781963671],[4.479011404022834,51.478331803899394],[4.478960642236873,51.47834783213968],[4.478926267807251,51.478326080673895],[4.478909973116122,51.47831159824906],[4.478864772415682,51.478283398225045],[4.478809284787691,51.4782823192618],[4.478685060430118,51.47830278268279],[4.478607687033583,51.478301209692724],[4.478391678374809,51.478289856010065],[4.478301730265362,51.478290818742025],[4.478213366749073,51.47828235515045],[4.478116822391568,51.47827194006848],[4.478042981201794,51.47827082568779],[4.477998588084637,51.47828078150701],[4.477922446779277,51.47828671459739],[4.477816569132042,51.478280154824006],[4.477545718140821,51.47828155043095],[4.47734458334499,51.47829453642771],[4.477281465820401,51.4782920309237],[4.477155829987752,51.47828297038368],[4.477116687036719,51.478288085694025],[4.477038669684268,51.478304323112575],[4.476987847467628,51.478302461644944],[4.476905418349035,51.47829383658079],[4.476817154209091,51.4782940921687],[4.476700657252162,51.47829306678062],[4.476619943483443,51.47828145252104],[4.476514357137154,51.478274012901984],[4.476492355306684,51.47826709042499],[4.476205490177422,51.47818895693989],[4.476139750737539,51.47817648837071],[4.476055488129462,51.478166706775],[4.475960561065719,51.47814457170285],[4.475866690776123,51.47810560814669],[4.475780806486142,51.47808048721124],[4.475619029552936,51.47801222803381],[4.475537283191243,51.477975300532854],[4.475476640462428,51.477934070188304],[4.475377240641993,51.47786648657639],[4.475258202845593,51.47780551829618],[4.475168416989543,51.47776752993629],[4.475089850177183,51.47771995684871],[4.474931610630127,51.47767786475993],[4.474894486354564,51.47766989792239],[4.47477890076118,51.4776593941871],[4.474225922277188,51.477477598322345],[4.474220015992493,51.477475655423234],[4.474150284956756,51.47743189027733],[4.474078395794283,51.477380179786486],[4.473853209234184,51.477252552251635],[4.47366552132253,51.477148697358345],[4.473480804378835,51.47704891052532],[4.473324127508524,51.47697720924418],[4.473233189033317,51.476947318558736],[4.472927068772751,51.476792906126505],[4.472815026638824,51.47674658847252],[4.47263377396806,51.476675880320705],[4.472164370341155,51.476501659915954],[4.471882872441836,51.47639805556754],[4.47178953133253,51.47637106637795],[4.471725537305121,51.47634643768652],[4.471652679894238,51.47631517737189],[4.471644986974693,51.476300446755495],[4.471646492306207,51.47625064971566],[4.471629898431551,51.47623616390951],[4.471363752288351,51.476051506721376],[4.471268679292185,51.47600046654997],[4.471134952778987,51.475912411317644],[4.470923878557989,51.47578885298953],[4.470795637290881,51.47570653953199],[4.470733479232084,51.47565370777362],[4.470683076844927,51.47559182631617],[4.470601537834614,51.47551498512974],[4.470568176158076,51.47546397045966],[4.470531417787865,51.47541436737041],[4.470494287130718,51.475383971149675],[4.470278260532742,51.475262080674646],[4.470145938080005,51.47520814013125],[4.470017816924437,51.47515931131271],[4.469971318491176,51.4751373630309],[4.469826001529499,51.475023982662194],[4.469701382208245,51.474892148262285],[4.469633113530006,51.474849084023084],[4.469462133071318,51.4746971447754],[4.469287771584189,51.47454660795833],[4.469234111197411,51.474487981273796],[4.469210395117234,51.474456997956665],[4.469186344061711,51.47443834511061],[4.469146115654365,51.47440389695061],[4.469048469375076,51.47433371477826],[4.468987349195221,51.47430027082988],[4.46892139051397,51.47427264072291],[4.468743156519155,51.474224324167196],[4.468616540899168,51.47418669711911],[4.468595418978667,51.47417484501599],[4.468505841838926,51.47409789412581],[4.468455384877824,51.47402040608281],[4.468403350670831,51.47394547649891],[4.468358392761855,51.47390078815159],[4.468332217250335,51.47388187569619],[4.468305785487211,51.47385925768831],[4.468260365419771,51.47379112196365],[4.468241358648125,51.473720847987934],[4.468217316653814,51.4736682699599],[4.468114923184405,51.473470466619496],[4.467981253628586,51.473343898617735],[4.467677485711242,51.47314849116292],[4.467536448682084,51.47308747640893],[4.467441053825381,51.47304647139777],[4.467373337661092,51.47300622376226],[4.467297857169699,51.47293564843111],[4.467262414216686,51.472877496968344],[4.467228787449273,51.47282278467402],[4.467183602388258,51.4727652305937],[4.467157878171267,51.47271335820843],[4.467122559283749,51.472600652521926],[4.467076327103173,51.47249664320099],[4.467052086622092,51.47245825722277],[4.4669478789062,51.47234276114609],[4.466812641655546,51.472162343374016],[4.466789187803727,51.47207865821691],[4.466756536256264,51.47202773789967],[4.466715626010547,51.471990901373246],[4.466663372564878,51.47196408817584],[4.466517658089946,51.47190614551861],[4.46639733779907,51.471853715585716],[4.466325836040248,51.471836377778985],[4.466266065811399,51.47181686721733],[4.466054074312674,51.47164276461058],[4.465967511286974,51.471571669454114],[4.465904719563316,51.47153434532526],[4.465840326457378,51.47150645612179],[4.465639153341351,51.47144512615539],[4.465186662185128,51.47128337978466],[4.464905746798823,51.47113490703311],[4.464721455488538,51.47101340960499],[4.464713164986998,51.47100772586538],[4.464560382115618,51.47115325730658],[4.464377529808893,51.47111845312374],[4.463656546590123,51.47098123968053],[4.463163216681523,51.47088698545959],[4.46265402249418,51.47079581261857],[4.462135423031122,51.470710019426726],[4.461425533016531,51.470588503194676],[4.460984646977324,51.470513299152785],[4.460653041218955,51.470454745884524],[4.460569057207018,51.47043991230053],[4.46054058923908,51.47043488609564],[4.460460348297607,51.47042072037817],[4.459856917426483,51.470316193242546],[4.459183048476668,51.4701947876604],[4.45875643012445,51.47011903238081],[4.458630716492998,51.470096710098076],[4.458418541160015,51.47006114188669],[4.458420056962709,51.470051041140806],[4.458214432447901,51.47000763219578],[4.457921012714799,51.46995358195391],[4.457570767913951,51.469892606222544],[4.457222631303415,51.469838388103284],[4.457049957050667,51.46981667876457],[4.456901708117013,51.4698026967588],[4.456630371246168,51.469778861037646],[4.456544435699087,51.46977090367333],[4.456408722993373,51.46975834239715],[4.455964670805219,51.46971909565402],[4.455621600339014,51.46968966032901],[4.45546303929362,51.46967605263793],[4.454844113387299,51.46962426802632],[4.45475771725489,51.469617042775575],[4.454421823085656,51.46959147264772],[4.454312909664673,51.46958318618649],[4.454141391287057,51.46957331151221],[4.454018087182145,51.469566330029444],[4.453908778517729,51.46955767147463],[4.453340280800694,51.46951326664451],[4.452780319947186,51.469469520664184],[4.45261780557639,51.469456461746674],[4.451557656746141,51.46937126408637],[4.451300836639796,51.469350750428625],[4.450257119861387,51.469267398597765],[4.450266068916235,51.469250768550914],[4.449546611473844,51.469190373149544],[4.449082371911692,51.46915069527976],[4.448744695368912,51.46912183137996],[4.448492059561513,51.469100239499035],[4.44719395768709,51.46898926691485],[4.44701088911362,51.468972951354644],[4.446850011335269,51.4689804648006],[4.446630352853091,51.46898315362201],[4.446607750694693,51.46898342993872],[4.446063300642839,51.46895095018984],[4.444466828533374,51.468834754453276],[4.442646296768538,51.468697244355205],[4.442605464644199,51.46869310251349],[4.442560016680822,51.46868945366341],[4.44242196172692,51.468627794181586],[4.439528924669009,51.46766759681186],[4.4346587377169,51.46605266126847],[4.433144834802336,51.46555087094476],[4.431214812326203,51.46491040181278],[4.429324820641174,51.46428232842298],[4.428240319757696,51.46392673654399],[4.42628569304069,51.46327889939138],[4.42564457785847,51.463067011447095],[4.42500207152517,51.46285449720907],[4.424696195213959,51.46275037015258],[4.422014229264729,51.46186211166861],[4.417053449266803,51.46021885167522],[4.416018583900235,51.45987601666238],[4.415578287453571,51.459730169475925],[4.414682753332971,51.45943369813645],[4.41339567017244,51.459007591944385],[4.412596595639549,51.45874303891708],[4.412379457652846,51.458671145440526],[4.410353870916155,51.45799883118218],[4.408769017111341,51.45747275540518],[4.408355330069933,51.457335553634685],[4.404681703579103,51.456117116030406],[4.403974386041541,51.45588249080589],[4.401980452991245,51.45523154686512],[4.399482387248592,51.45437417964453],[4.396215752968612,51.4532564858346],[4.394501564313113,51.45267358023909],[4.393975567637688,51.45249348159959],[4.393616975029832,51.452370692180146],[4.393003834486485,51.45211769940994],[4.392441414623564,51.45188387833885],[4.392167264908559,51.451761318803726],[4.391284403351347,51.45151186865747],[4.391153988063857,51.45149519515252],[4.391083290222357,51.45148725644688],[4.390956119850743,51.451445233771864],[4.390010941588161,51.45113288344213],[4.389583661330588,51.45099086876671],[4.3891435274067,51.45084202760199],[4.387646322360303,51.45034133861868],[4.386386379129676,51.44991499294496],[4.385441497717084,51.449595254529015],[4.384838686251601,51.44931593251184],[4.384766795160814,51.44934673238603],[4.38472373317002,51.44936517695674],[4.383443794379278,51.44991345847419],[4.382712878450972,51.45022655717904],[4.382711164678728,51.450227288534904],[4.381488265364212,51.44832518993974],[4.380578108937831,51.44801512275257],[4.379931416522712,51.44779809659708],[4.379806177990666,51.44775615921667],[4.379338183654006,51.44678856761849],[4.379513987227009,51.4467562594125],[4.380161520470693,51.44662533884481],[4.380869926500456,51.44648480882087],[4.381760672357363,51.44630747071333],[4.383224371350536,51.44600942327293],[4.38450715750205,51.445751764908714],[4.384651297002121,51.44572114554382],[4.384651242240053,51.44572101922365],[4.386125148876929,51.44540643812816],[4.386334880643535,51.44535890431931],[4.386642923273564,51.44524641185465],[4.386646236032902,51.44529142250255],[4.386732820834879,51.44526980866983],[4.387674325758668,51.44554765429293],[4.387841904518628,51.44529956596311],[4.389932518539903,51.445835045368774],[4.392034275937806,51.44637629021655],[4.39279153056953,51.44553343302224],[4.392867461383203,51.44544816985982],[4.393063739461707,51.44522773597436],[4.393211258584355,51.44526209118446],[4.393736965639914,51.444700066002454],[4.393894362561745,51.44453266886224],[4.394056699824977,51.444362949393536],[4.394174233944566,51.44425428991626],[4.39469052293367,51.44379005531812],[4.394872226029636,51.443635745236946],[4.395208486646504,51.44336403702515],[4.395551826302866,51.443106600029274],[4.395836952171207,51.44286682571025],[4.396526336979285,51.442151231197656],[4.396640556263064,51.4420165262624],[4.396970125551238,51.44131299375846],[4.397047527243627,51.44091111218055],[4.397020340279577,51.44089132085162],[4.396979588249545,51.440861652065685],[4.39602079831895,51.44016359489125],[4.395826098509024,51.44002026111023],[4.395688211247945,51.43991874239077],[4.395655919620021,51.43989497006321],[4.395485055595712,51.4397701403787],[4.395472200244622,51.439624576060346],[4.395540448320844,51.439491126456524],[4.395240055348993,51.43846010372876],[4.395179797053977,51.438249674395195],[4.39518323359425,51.43817109261922],[4.395212052781989,51.43751251547332],[4.395248786800568,51.43667263846062],[4.395594931669327,51.436665342302575],[4.395680993188026,51.436663520810214],[4.395415266619339,51.43551266053013],[4.39604757624514,51.43548233793338],[4.396298725358116,51.435464110735104],[4.396914782596329,51.43541389601801],[4.398818310581285,51.43524364637674],[4.398771828378334,51.435137512039084],[4.39869840814085,51.4349697438782],[4.398168473102427,51.43376296731672],[4.397403935719032,51.43205091661708],[4.397339964065945,51.43190478390463],[4.397205596365636,51.4315978293416],[4.39592875611831,51.43189280094111],[4.395812187457471,51.431919730980916],[4.395528849805347,51.4319852904866],[4.394668485215799,51.432187558037555],[4.39257517157011,51.43279642414605],[4.392562464165403,51.43280011825791],[4.392492464299576,51.432392487866494],[4.392402775955037,51.43191246983046],[4.39239237181104,51.431862697483176],[4.392320536912957,51.43151884806061],[4.392305757018145,51.431462017775246],[4.392330380740368,51.43144603812211],[4.392357047502424,51.431431990598796],[4.392391436440115,51.431419276407595],[4.392426857456015,51.431413303961236],[4.39248292938534,51.431410626867454],[4.392548562809674,51.43140803127207],[4.392779687763393,51.43141746278543],[4.39409594029536,51.43148215269593],[4.394576564453367,51.43151185369491],[4.394605258017577,51.43152291191788],[4.394634659443492,51.43153514475965],[4.394647624771771,51.43153873391572],[4.394665469258073,51.43153817559059],[4.394645299749119,51.43145464662217],[4.394537047990516,51.43100526956392],[4.394441263293748,51.4306062124609],[4.39436861978673,51.43030414852204],[4.394229063801089,51.42972092433372],[4.394243976357566,51.42971167547697],[4.394257940970705,51.42969643170482],[4.394268049857264,51.429668066754616],[4.394282907139645,51.42961910288836],[4.394309875187996,51.42950400027223],[4.394358375432067,51.42935697129152],[4.394369646787842,51.42933596943831],[4.394391844299312,51.42929462799581],[4.394469706717993,51.42918332945824],[4.394574622183899,51.429034847791606],[4.394653314866463,51.42891245446853],[4.394699095613889,51.42885194178145],[4.394663254843942,51.42865407095824],[4.394552338213424,51.42803614054148],[4.395013831614325,51.42785567015303],[4.395228337022962,51.427762370165745],[4.39533291398598,51.4277137735733],[4.395385548127142,51.42768382843397],[4.395414356207041,51.42766176203868],[4.395420910794553,51.427640728972946],[4.395242035976628,51.4270383301469],[4.395201507778697,51.42690251739708],[4.394227694518437,51.42701248550096],[4.393543210903086,51.42709257612386],[4.391371030359731,51.42735245876831],[4.391351148442669,51.42735485996325],[4.391346901998719,51.42733531701444],[4.391338745478413,51.427231466362876],[4.391332681150298,51.42721022690166],[4.391330560983564,51.42709466982939],[4.391314331127715,51.426994408877896],[4.391297266505222,51.426917881434875],[4.391246979177571,51.42671658704317],[4.391222227349286,51.42659702528225],[4.391185488791271,51.426439039942025],[4.391140887580899,51.42625132288388],[4.39109391732045,51.42608188771096],[4.39104239815624,51.4258738767016],[4.390986456286811,51.425630077596274],[4.390933770140468,51.425416294443714],[4.390908605429981,51.42531306256163],[4.390857680972276,51.42525095226263],[4.390823310824668,51.42508470790129],[4.390791975302699,51.42488357515267],[4.390757129281277,51.424702943879424],[4.390716052283703,51.42452715850972],[4.390675162893608,51.424284917101346],[4.39048311982618,51.42429224753362],[4.3903384705087,51.424305412213855],[4.390226695123117,51.42431771606371],[4.390142732884208,51.42433176775118],[4.390044626881298,51.42435742945706],[4.38995849609991,51.42440816563935],[4.389890204692913,51.4244518718664],[4.38979790195611,51.424515239012806],[4.38850681545873,51.4237830910338],[4.386799115793093,51.42282559977051],[4.386592428040527,51.42270970810057],[4.386583055413769,51.42271617188402],[4.385236999384895,51.42195934328995],[4.384860346215233,51.42174787963413],[4.383660067565623,51.42107646068183],[4.388114600708986,51.41384760565897],[4.38816994427502,51.41375777353407],[4.388756380454694,51.41280592363943],[4.391611316261177,51.40817139017456],[4.395538292125556,51.40497446740952],[4.395602436498589,51.40492224588552],[4.402330874129771,51.39944330317993],[4.402368350992242,51.39941277756647],[4.404858776830358,51.397384405287895],[4.406527230250146,51.396025376997876],[4.406840453755892,51.39577022612838],[4.410034079138645,51.393126813010866],[4.413813720500149,51.3899961815988],[4.41385002252635,51.38996611898921],[4.417279121637897,51.38712606628196],[4.418347975896141,51.38624073048743],[4.420016526481017,51.38485767428776],[4.421644870393711,51.38350701847844],[4.422117842497419,51.38311453624209],[4.42271127768403,51.382622000750544],[4.422934446549298,51.38243559419034],[4.424352637288238,51.381250749276845],[4.424439057610658,51.381178533318426],[4.427062790501656,51.37898636573837],[4.427974065069021,51.37822531497861],[4.428031275369934,51.37817754049249],[4.428526978321417,51.37776370855075],[4.428657439396965,51.377651813645635],[4.431112283738279,51.37554610054087],[4.431235565339147,51.375440355483235],[4.43169174290664,51.37504900985675],[4.428578834831924,51.37327890673667],[4.428542089098548,51.37325801014846],[4.425592477088606,51.37158053547048],[4.425081003820171,51.37128953038997],[4.425439631458737,51.371073512167776],[4.42708556130354,51.370081985761715],[4.42712762761649,51.37005664102028],[4.427754441510934,51.36967901360118],[4.428141329050562,51.36924654300898],[4.428149403031278,51.36923751233051],[4.428206022638947,51.36917423547833],[4.429270988737914,51.36798389100213],[4.429306855822679,51.36794379711662],[4.4293396788434,51.367907103104805],[4.429815753296986,51.36737489624794],[4.430025111597247,51.367029846730055],[4.430834497454669,51.36569485549477],[4.430835656123097,51.36569301321841],[4.430851191799631,51.36566842028031],[4.430853390508401,51.36566491453873],[4.431126640426366,51.365019166743835],[4.431126850592522,51.36501804481227],[4.431134452547046,51.36497868034404],[4.431351683023012,51.363853075956605],[4.431136162050083,51.36388457724563],[4.430987444927417,51.36390630663821],[4.430861715714364,51.36392468272515],[4.428443022237357,51.36427832153145],[4.428306530509214,51.36429830529732],[4.42817150800333,51.36431806727408],[4.427983824438344,51.36434553991976],[4.426221887262717,51.36460368626219],[4.422744309658097,51.36510279839541],[4.422638097678655,51.365118037095996],[4.422577501785607,51.36512673155575],[4.421853792685872,51.36523052481005],[4.42143496831266,51.36505743648079],[4.420645801766596,51.36473121798556],[4.419998401225616,51.36446351322027],[4.419844557110765,51.3644042465923],[4.419762489088512,51.364375204225084],[4.419585739434575,51.364312663783956],[4.418214933427649,51.363835594268],[4.418172469979321,51.3638208134208],[4.41648859517013,51.36323457900452],[4.414690624927602,51.36260640381046],[4.41248543287586,51.361837286347104],[4.410846251014284,51.36126346983276],[4.409913558205586,51.36093695499307],[4.407397504911374,51.3600756265667],[4.405977096282266,51.359589337751096],[4.40535603469255,51.35936407596606],[4.404628463732799,51.35909309224831],[4.403783067335961,51.35877666662722],[4.40298073339487,51.35847262618099],[4.402249654118365,51.35819851447577],[4.401700529547644,51.35799004868101],[4.40119064345384,51.3578018145707],[4.400921249829709,51.35770143467906],[4.400559401210026,51.35756351418139],[4.3999427542424,51.357324480007875],[4.399410058190819,51.35712411597171],[4.399154973910096,51.35703295939369],[4.398739677522373,51.35688667838303],[4.397839078323608,51.35662631041327],[4.397393547115982,51.35650350854723],[4.396928454308024,51.35638114100278],[4.396595253102515,51.35629500508132],[4.396289379562979,51.356215932456514],[4.395439671086485,51.355989445664115],[4.394949155255745,51.35592291997539],[4.394780034579498,51.35587506798952],[4.394580048865741,51.355818520874216],[4.394436221864344,51.35577812922057],[4.39424211256222,51.35573066582493],[4.394000566162101,51.355679327906444],[4.393833842024934,51.35565537951269],[4.393679053260098,51.35563650372536],[4.393377161779027,51.35560843562999],[4.392924123471915,51.35556768768343],[4.392141854808167,51.35550702927478],[4.391181078972344,51.35544350046399],[4.391011065074777,51.35543225772794],[4.390132903929448,51.355373903201674],[4.3899878202189,51.35536435552701],[4.389860956855764,51.355360006621616],[4.389761957147065,51.35535317234084],[4.389626871341761,51.35534206475741],[4.389484776247544,51.355326501233435],[4.38941572982491,51.355320111904696],[4.389014672499759,51.355229957155736],[4.388307631875742,51.355085175235885],[4.387313210217463,51.35488751127841],[4.386840066640364,51.35479251440134],[4.385331665292506,51.354487213452884],[4.384543411230321,51.354351886111566],[4.384519121161194,51.35440284420859],[4.384122269506516,51.355235415817305],[4.384039149484597,51.35523054718499],[4.382263743374887,51.35512628152134],[4.378760788018935,51.35492049220759],[4.3787586828017,51.354920905474565],[4.374660303122494,51.355738862809105],[4.373041665532384,51.356061202223266],[4.369800890919181,51.356703230459644],[4.369722070032038,51.356672239224324],[4.368240208510994,51.35610362422845],[4.368021879485591,51.35635518670452],[4.367589568887485,51.35691986243971],[4.367327085979909,51.35700795298838],[4.366922385389279,51.357113001163],[4.366756597857305,51.35730586262956],[4.366305408873417,51.35730530848964],[4.365919677412717,51.357232773489464],[4.365774623142987,51.357246891784904],[4.365629080652242,51.35727128041824],[4.365538869405517,51.35728551964733],[4.36527491686416,51.35733891190544],[4.364962521328919,51.35730311799986],[4.364926521514387,51.357302074040625],[4.364876453170529,51.35730928469222],[4.364813126006463,51.35732128716132],[4.36458884946499,51.35740130178357],[4.364292066725828,51.35737485715559],[4.364078503372198,51.357361125267566],[4.363773286749844,51.357349069088876],[4.363507597129702,51.3573357143244],[4.363501229103673,51.35733605390992],[4.363475296638825,51.357337453150386],[4.36342505192806,51.357339708510914],[4.363217749078755,51.35734902474696],[4.363061646267225,51.35735701972984],[4.36298354075526,51.357359587364265],[4.362955937028077,51.357366365396054],[4.362890754855209,51.357377829137164],[4.362832907562504,51.35739257550299],[4.36280261929029,51.35739997713031],[4.362740724061394,51.35742620319335],[4.362697627581986,51.35745094047135],[4.36266651082858,51.35746006971987],[4.362640810705938,51.357469669085376],[4.362614095810796,51.357475861556395],[4.362589023401844,51.35747859858323],[4.362564701228368,51.35747733296127],[4.362043931886594,51.35744804982102],[4.361429380284619,51.357421273854165],[4.361368563610275,51.357418616981754],[4.361212734917078,51.35741182445612],[4.36031753472361,51.357605434676366],[4.359818794331197,51.357658938688374],[4.359009356524787,51.357723704826526],[4.357438149539625,51.35783059289116],[4.354840321066302,51.358013812544414],[4.354841922083746,51.357960762670295],[4.353483947370119,51.35804317466841],[4.353033482915841,51.35807051446772],[4.353025876734432,51.35810714144587],[4.35206253964676,51.358153233913285],[4.351984836783952,51.35815694839854],[4.350974308622654,51.35820532740369],[4.350964758744789,51.35825920549822],[4.350955834670537,51.35830954735651],[4.35088969009333,51.35868281686186],[4.350304924578073,51.35867040538777],[4.349750769720723,51.35865866803337],[4.349042468590163,51.358643711998305],[4.34895159704269,51.35864179667508],[4.347302429915964,51.358211189756055],[4.347234918395912,51.358193561424144],[4.345920689658878,51.357998630803856],[4.344461544074797,51.357782333320365],[4.343741827560674,51.3576756772832],[4.341353837520034,51.35756324240158],[4.341023955690433,51.3582038649272],[4.340950506603738,51.358607906182435],[4.34090025295164,51.35888434503585],[4.340890544669842,51.3589377175508],[4.340710341722108,51.35949582145397],[4.340566639570553,51.35994087921087],[4.340371238411256,51.360545914359825],[4.340081976652916,51.36144181034642],[4.339040746664238,51.36449782821262],[4.338999021093307,51.36462026546145],[4.33769719249365,51.368458077871985],[4.337333260437886,51.3695308256193],[4.33703797153038,51.370347077334294],[4.336813831558808,51.37096685104518],[4.336570800131486,51.37163901479656],[4.336301218093703,51.37238488508661],[4.335728414027941,51.373970978290146],[4.33563382849032,51.37423314444544],[4.335364343266934,51.37498032597985],[4.335208787250846,51.37541614624441],[4.334810757250684,51.376549256822365],[4.334736393059926,51.376761237509825],[4.334702189503341,51.3768629398428],[4.334663358225321,51.37697845297051],[4.334528576467724,51.37737924866223],[4.334515284191144,51.377418735705874],[4.334460385171748,51.37758192701325],[4.334444657300851,51.37762861050194],[4.334219873128509,51.377623065201256],[4.333510538900803,51.377602937224175],[4.333284625425646,51.37759405384789],[4.333198758540385,51.377590265978945],[4.332943863290623,51.37757620268747],[4.332078847001814,51.37752153198175],[4.332075695391497,51.37757026172082],[4.332075587857389,51.37757180691666],[4.331138929812515,51.37753058498229],[4.330916571622892,51.37752079432925],[4.330698465435026,51.377511617111104],[4.330615631422866,51.377510237006845],[4.329980352986556,51.3775140232644],[4.329596789601793,51.37751593720959],[4.328919951230228,51.37751682356112],[4.328797036295281,51.37751815260711],[4.324317737941757,51.37740070410422],[4.322470941843801,51.377352224077065],[4.320870523613292,51.37732080147309],[4.319569866774402,51.37729498857065],[4.318293756964492,51.377274177593094],[4.317869939125011,51.37726721577557],[4.317711321562768,51.37726460982609],[4.317228462367443,51.377256663437926],[4.316703591823055,51.37724613580357],[4.314405035217085,51.3771621308045],[4.313488861929985,51.37714803140743],[4.31212219177936,51.37712301943546],[4.310049892326679,51.37708231236751],[4.307669818292596,51.37704595472678],[4.307550224525741,51.377044127855044],[4.306335194124619,51.377026007940664],[4.306101109178015,51.37701979173929],[4.306004844755396,51.37701726274784],[4.305770311526966,51.37701117656397],[4.305198465016821,51.37699200784033],[4.304670360024563,51.37697452805239],[4.304252209392014,51.376960746366144],[4.303761744798112,51.37694360318479],[4.30293747885983,51.376916764009756],[4.302213636796674,51.37689151907228],[4.301637190718659,51.37687561611404],[4.300808168301912,51.376846542128376],[4.300046845826203,51.37682159958056],[4.299194410814396,51.37679499254246],[4.29881178865675,51.37678346466347],[4.297910772726192,51.37675400339186],[4.297107824422277,51.376729156002014],[4.296529884124452,51.3767086022183],[4.296031278677802,51.37669453253548],[4.295606928597139,51.37668070670416],[4.294519732101902,51.37664526833642],[4.293970118480607,51.376627745122036],[4.293342765514203,51.37660974146844],[4.293037719780282,51.37659483245126],[4.292809976166064,51.37658668037531],[4.279823586186216,51.376121353767594],[4.277424647993361,51.3760352332995],[4.277098501855446,51.37667634565222],[4.276992305480506,51.37688502151223],[4.274686463936863,51.38141521857662],[4.274556693319396,51.38167015163719],[4.274435556569052,51.38166868963884],[4.274415068310864,51.38170299546912],[4.27436289529686,51.38170820566989],[4.274315260874127,51.381800063321236],[4.274285112047758,51.38185821574021],[4.273894258066431,51.38261200441953],[4.273979702965277,51.38262859691011],[4.27382157844902,51.38292898761443],[4.273697757709798,51.38314987969061],[4.272852798748314,51.383212839598926],[4.27223579430096,51.38325881754264],[4.27216026448604,51.38326444160844],[4.268382119786394,51.38354588139882],[4.268324783353662,51.38363033515415],[4.26800463564985,51.38410195783114],[4.267985199965791,51.38413059134934],[4.2676521229359,51.38462123644829],[4.266867119034146,51.385777574642916],[4.266349091995639,51.3865406252609],[4.266376878131481,51.38655991406903],[4.268633666125533,51.38812644276396],[4.268635402355578,51.38816815240734],[4.268635584341997,51.388172451101845],[4.268665259074388,51.388886191046076],[4.268710160989553,51.389965874962094],[4.268740230406402,51.3906888057889],[4.268740652896496,51.39069912071877],[4.268760356342965,51.391184334453854],[4.268771173460054,51.39145057929246],[4.268780036552908,51.39166171815412],[4.26878006488993,51.39166232071774],[4.268847081410701,51.39325691528615],[4.268854204188083,51.393427108553624],[4.26886186653006,51.3936110518311],[4.268863013427743,51.39363871431547],[4.268910849820082,51.394786628760066],[4.268921319149936,51.395037812894515],[4.268923041002354,51.39507895604302],[4.268924597659162,51.39511628608941],[4.268929412920801,51.39523172956189],[4.26896225516668,51.39602002183766],[4.268903661853526,51.39618270784025],[4.268918510271338,51.39657652425247],[4.268918375243208,51.39657675668245],[4.269055049149308,51.40018754686524],[4.269061105275806,51.40034738298701],[4.269016563759111,51.400483019773915],[4.268535195929766,51.401948739774966],[4.267938108632728,51.40376672144178],[4.267668439594459,51.40458772574264],[4.267498611204053,51.40510477590696],[4.266745653155424,51.40739702918319],[4.266492593719276,51.408167391238045],[4.266480543722969,51.40819624834422],[4.266415920309205,51.40835120721706],[4.26603419382084,51.40926631984704],[4.265638383382663,51.410215167979935],[4.265259939668761,51.411122354118326],[4.264591749838185,51.41272397901318],[4.264483040871583,51.41298454273741],[4.264160129541579,51.4137585243994],[4.264105743357818,51.41391334690604],[4.264073690642281,51.414050315731146],[4.263758405198787,51.41626589591553],[4.263732326876892,51.41644910086939],[4.265291246956936,51.41826864430084],[4.265320062677818,51.4183070366369],[4.266285116052893,51.41983058347835],[4.266303108456091,51.41985314005159],[4.26632455065806,51.41987572977607],[4.266367835283,51.41991632845517],[4.266403777861268,51.419945619789026],[4.266446940828112,51.41997947520451],[4.266490090303025,51.420002183594654],[4.266576427095274,51.42005191561069],[4.266728672788621,51.42013374372754],[4.269574472773595,51.42166317954359],[4.269619072067004,51.421687285015295],[4.269759242085618,51.42176302441633],[4.270117956128751,51.42195685636836],[4.270859450109678,51.42236146754304],[4.272828496897578,51.423416685993175],[4.273526131663951,51.4237922115779],[4.273701716404649,51.423886730547295],[4.274143122864516,51.424124326615114],[4.275049296448618,51.424612078835956],[4.275245293161417,51.42471889878832],[4.275488587342759,51.42485150135444],[4.275729030667851,51.424982548038074],[4.275760391740246,51.42499963908174],[4.275851707976668,51.42504940254587],[4.27584338710312,51.42506100948952],[4.275680000455321,51.42528911391366],[4.275500240405156,51.42554172898893],[4.275582429262739,51.426379794354986],[4.275633944039452,51.42683121173765],[4.275692687085506,51.427282275455575],[4.275734640133059,51.427599272997746],[4.275744585001053,51.427674420281384],[4.275750499066955,51.42771908204959],[4.275755696315389,51.42783855578509],[4.275824334405353,51.427838454666556],[4.275841964981791,51.42783842487926],[4.275816529608271,51.42812200493984],[4.275738427993481,51.42836571858268],[4.275767043647257,51.42837695831355],[4.276431159092264,51.42863790905974],[4.276456115047463,51.42864768445477],[4.276403518565013,51.4286981714887],[4.276294389143885,51.4286544145925],[4.27623663756694,51.42878188263825],[4.276188583399635,51.42890440895546],[4.276132864990006,51.42908531134037],[4.276091880161353,51.42927648509794],[4.276086093729546,51.42941121706433],[4.27611012263413,51.42967968068871],[4.2761732421966,51.429890759727236],[4.27624805597653,51.430061039336806],[4.276317140312838,51.43022273338915],[4.276398474607884,51.43038867917116],[4.276502552775199,51.43058147704407],[4.276632466515802,51.43078521817148],[4.276643189073401,51.43079961340045],[4.276657128846312,51.430818309222055],[4.276728514146418,51.43091399777138],[4.276754882515579,51.43094908270887],[4.276849673989588,51.43107514443617],[4.277798379675674,51.43233398485242],[4.27798314090749,51.43257316978983],[4.278084503716621,51.43272378005846],[4.278089515399627,51.432730587734596],[4.278397434877885,51.43314866323682],[4.278478174411119,51.433270409931175],[4.278547703484175,51.43336231310389],[4.278746681566798,51.43343593933312],[4.279016224248847,51.433618108321],[4.279039364013278,51.433632917925976],[4.279046694806224,51.43364254329111],[4.279070318572852,51.433673529409425],[4.279236266829304,51.43392214321866],[4.2792718263346,51.433976264495094],[4.279302770651354,51.434029739639755],[4.279348279664534,51.43409699899398],[4.279366181176323,51.43416047231442],[4.27937543752895,51.43423584639651],[4.279376186752632,51.43424880722897],[4.279376310356229,51.43429993108928],[4.279363499183009,51.43435482452248],[4.279337087550081,51.43438229699343],[4.279316125341322,51.43437255118173],[4.279169285924161,51.43449495850933],[4.278767060759368,51.434705552464784],[4.278878272953778,51.43477790399512],[4.279148869020936,51.43497092382396],[4.27930737570322,51.43508391572317],[4.279578448040113,51.4352894432978],[4.279640809311553,51.435336807188],[4.279866421037349,51.43551099692603],[4.280046837546695,51.43567779051982],[4.280315968336027,51.43592623124021],[4.280341506367897,51.43588558978909],[4.281110702400762,51.436925370826565],[4.281396416541932,51.43731187241375],[4.281951439879427,51.43806326926826],[4.281997465367826,51.438125570271005],[4.282040357066407,51.43818365251283],[4.282078667604418,51.438235515631995],[4.282253885329774,51.43847275119997],[4.282890042962539,51.43933406088944],[4.283137733445716,51.439669273162814],[4.279968337437452,51.439795598302666],[4.279079028014987,51.43983073544457],[4.277821555943941,51.439880407268646],[4.269220279509935,51.44022008381717],[4.268381019991788,51.44025473814467],[4.268272347243223,51.440264204555085],[4.268168246147267,51.44027025379318],[4.268081504176012,51.440274051305344],[4.2679783328704,51.440271524410356],[4.267918090603909,51.44026225371755],[4.267821337883611,51.44024202519513],[4.267689916032039,51.44021200706445],[4.267530199754356,51.44017736636935],[4.266638671634051,51.43996446860447],[4.26551889999745,51.43970115056148],[4.265431821536813,51.43968067145634],[4.251032819429687,51.43623624335899],[4.250677244193493,51.4361511557715],[4.248685675709527,51.4356745607838],[4.245023535856253,51.434804309350675],[4.244690262410721,51.435350228662216],[4.244515245492138,51.435636356323236],[4.244462328853882,51.43572195681535],[4.244411619818782,51.43581701782165],[4.244383474397197,51.435884073007514],[4.244358516629641,51.435955923817616],[4.244313223821996,51.43608160193709],[4.244247675859159,51.43626937841032],[4.244125546738626,51.43662569181623],[4.24313988095517,51.4394838409133],[4.240049413721185,51.44844293464492],[4.239988578452107,51.4486192486754],[4.239862310868745,51.44898297834577],[4.239719120666137,51.449395893482304],[4.239347687287061,51.45046792534655],[4.238989270142387,51.45044065784838],[4.238932332974917,51.45060132314003],[4.238082617509004,51.453022039507324],[4.237599474012445,51.45443791762853],[4.237405026804152,51.45495325413772],[4.237276306386122,51.45517665879196],[4.237118166778311,51.45539978235824],[4.236908593614838,51.4556077729116],[4.236685801596835,51.45580297564128],[4.236322119387563,51.45605877970478],[4.235748786739599,51.45637824496258],[4.235818530000192,51.45644087934298],[4.23550289183859,51.456581964246],[4.235264239665272,51.45672111145376],[4.233918443816738,51.45737194090044],[4.233334184989771,51.45765447474709],[4.232266905475607,51.45816733624636],[4.232458513401284,51.458324156458225],[4.231951752598167,51.46083433315404],[4.230769893591702,51.4665871976687],[4.230119754112748,51.469854294826895],[4.229568137012863,51.472563752753416],[4.228519792068128,51.47395559556761],[4.228245728688294,51.47529462949639],[4.227889115221489,51.47703683731881],[4.227365059410064,51.479593774293555],[4.227974955688822,51.4800553540998],[4.227255286658904,51.48356161878308],[4.227196279229011,51.48383128187588],[4.226978619459786,51.48490182825268],[4.226964484218132,51.48526368333341],[4.226301525941606,51.48851552028362],[4.226299313833665,51.488515309509765],[4.225762485170208,51.491156441722154],[4.225441060503066,51.492724866449706],[4.225310646200851,51.4932443265684],[4.225457202956735,51.49352517642619],[4.225687309587399,51.493926416687195],[4.226194483955539,51.494689917070666],[4.224906186651079,51.49649295616826],[4.224272298607463,51.49738004133971],[4.22083532524641,51.502189142005676],[4.22056911479185,51.50256159383336],[4.218927281516835,51.504858449022855],[4.218747777113867,51.507164420441796],[4.21879985434704,51.50896138955767],[4.21904369536204,51.51075227600583],[4.219061961211858,51.51082691814955],[4.21908353841927,51.51091510452197],[4.219143849003951,51.51116166750226],[4.219213313512954,51.51144561014004],[4.219291762126245,51.51176626549852],[4.219478375883397,51.51252906859846],[4.220101672271726,51.51428383214253],[4.220586811579206,51.51531770740067],[4.220911069251327,51.516008717566365],[4.221859987471555,51.517706042886005],[4.222817814021872,51.519401470931356],[4.22326463836649,51.52019222866534],[4.223775855639802,51.52109689256456],[4.224537497542701,51.52245100058093],[4.224733824221397,51.522792304913],[4.224838856933729,51.52299021827719],[4.224881982296105,51.523065906768664],[4.225691863829145,51.52448770941068],[4.227608158451214,51.52787840497524],[4.22837358797694,51.52923243344544],[4.228566555274705,51.52957378733863],[4.230099051842017,51.532284888760536],[4.231441739906836,51.53465988298179],[4.231744205795365,51.535195945919625],[4.232143322359984,51.53590511047766],[4.232400421056063,51.53635523389539],[4.23304318666808,51.537492019387855],[4.23335902919962,51.53805057551785],[4.233480998465772,51.53827237963935],[4.234041505483484,51.53929161061404],[4.234097656899636,51.53939370893799],[4.234294084846792,51.539750890024045],[4.23506840731982,51.54148215317723],[4.235330497626348,51.54226543848714],[4.235657111378258,51.543241516113305],[4.23605748280358,51.5450214938386],[4.236267831058304,51.546813981332235],[4.23627290238398,51.547289299938996],[4.236277437164008,51.54771352658458],[4.236287032303409,51.54861123782994],[4.23611891990707,51.55036579245986],[4.23611511783808,51.5504054431248],[4.235752993174946,51.552188425113634],[4.235585704642876,51.55272392813855],[4.235201836830661,51.55395264272087],[4.234464279109989,51.55569020871383],[4.234157477222805,51.55625782803562],[4.233543668148697,51.5573934218932],[4.232443779679782,51.559054854191835],[4.23126547038497,51.56054570052684],[4.231169545137436,51.56066708826758],[4.229726461599493,51.562223251148325],[4.228121187136582,51.563716301094594],[4.227538551465182,51.5641872829178],[4.226360371528794,51.565139645406525],[4.226320790928366,51.56516963643271],[4.22548600878843,51.56580227689103],[4.221706137896985,51.568666423689166],[4.218985159714228,51.57072783943342],[4.218814380437303,51.570857215910905],[4.215940926552048,51.57303387333365],[4.214609824900274,51.57404213782898],[4.213532805217803,51.57485790472689],[4.210807743829211,51.5769216372294],[4.206200239567317,51.58041043628105],[4.202894174254144,51.58291344385174],[4.20253336830927,51.583186581305235],[4.201728248026537,51.5837960557742],[4.200699741792745,51.584574641152805],[4.198891515621082,51.58597534538715],[4.197224162078182,51.58744217976885],[4.195718034700135,51.588975177868484],[4.194380103792385,51.590567584977364],[4.193502710038719,51.5918073503681],[4.193216200354057,51.592212184875955],[4.192231585802593,51.59390157519084],[4.19143065833785,51.59562834407546],[4.191252374588206,51.59613870151486],[4.190817111049702,51.59738453236166],[4.190393768260324,51.59916235095835],[4.190343086310066,51.59955466941835],[4.190187063675766,51.60076286706047],[4.19016239059188,51.60095389113077],[4.190124167488729,51.602751039603675],[4.190279247820807,51.60454574341787],[4.190573527409766,51.60605583709905],[4.190627030363016,51.60632992300816],[4.191165725560994,51.608095647528366],[4.191757206296568,51.60950968590053],[4.191865860815846,51.60976943930586],[4.191893283011021,51.60983498257118],[4.192806178588001,51.61153997782527],[4.19373249109475,51.61306258148029],[4.193828928951064,51.61322109550867],[4.194931701111697,51.61488207383412],[4.196210434370773,51.61649350318592],[4.197659562122114,51.618047949812286],[4.198502052110667,51.618826454283365],[4.199209540101617,51.619480175338886],[4.199272776475324,51.61953860122975],[4.199599212937706,51.61980045014922],[4.201042902495989,51.62095854593473],[4.202961734742534,51.62230149105827],[4.205020912823055,51.62356141182332],[4.207211050376878,51.624732722662515],[4.209522461665825,51.62581010494286],[4.211944581736605,51.626788591165884],[4.214466676859827,51.62766402174619],[4.215564600890212,51.627987940819864],[4.21732867115161,51.62849695959326],[4.21975399098324,51.62910530332357],[4.222438753810378,51.62973758292894],[4.224177465674773,51.630152342284035],[4.225152095313733,51.630384826715556],[4.227822422095417,51.63102259145708],[4.230431160178102,51.63181250439799],[4.233011106799791,51.632602074491324],[4.235547133517573,51.633418122715234],[4.238168308182484,51.634297876653385],[4.238392543417317,51.63491790497259],[4.239222204711949,51.63721176884734],[4.242485943790819,51.64623304485674],[4.242786270634194,51.64706299747808],[4.245212354487647,51.64654732868387],[4.246571499554268,51.64627293447897],[4.247463451431016,51.64609284898593],[4.249016824244621,51.64580233031472],[4.251103536395819,51.645561916192136],[4.25328909564043,51.64541231561477],[4.255345080292214,51.645243442665176],[4.257589064949667,51.64506735915962],[4.259789696258114,51.644890815105306],[4.260243316214491,51.644856062764525],[4.260252942974395,51.644855328451136],[4.261874301320302,51.64473109272824],[4.26410356801149,51.64456373237289],[4.26631431080232,51.64439687138129],[4.268344930503076,51.64424478708503],[4.270530814691428,51.644076889831574],[4.272688013793893,51.643899689415726],[4.275002768482334,51.64377788232158],[4.277076038591705,51.64407623412536],[4.279845284565921,51.644519975383616],[4.281249797054786,51.64474499817785],[4.285395662834407,51.64537739294539],[4.287453975557981,51.64570238680858],[4.289123789547243,51.645961377452466],[4.289613221529749,51.64603728012348],[4.291672029733384,51.646344225556845],[4.293744878301936,51.646669244219794],[4.294125980073177,51.646726739564905],[4.295904434421969,51.64699502549642],[4.297545159502455,51.6472513947512],[4.298106928283137,51.64733916270261],[4.299388767983544,51.64751288983797],[4.300996636281688,51.647950316533],[4.302576503212232,51.64835150455275],[4.303552212529972,51.64863919927313],[4.305202628923769,51.64911291841097],[4.307110584538098,51.649696870476625],[4.309106115126743,51.65024562296299],[4.31126189726351,51.65074189705545],[4.31337736731769,51.65111190344388],[4.314198919875088,51.651231506216],[4.315551924784025,51.651428468174416],[4.3176704481866,51.65167257569942],[4.317886735060515,51.65169277295722],[4.319804487182123,51.65187184024362],[4.321966806758207,51.652098299696725],[4.324085593607551,51.652333294877984],[4.326247536316523,51.65257764091314],[4.328320502020181,51.652920022978165],[4.330464272953065,51.65332594062543],[4.332549855914467,51.653749254852464],[4.334475721444369,51.65420706100053],[4.336645811177524,51.654729951579554],[4.337808604597477,51.65502942870185],[4.338743275371465,51.655270138419304],[4.340668022657189,51.65578176679008],[4.342011419376047,51.656153336327364],[4.342750305676323,51.65635769309802],[4.344775050445672,51.65692408046006],[4.346597755907909,51.65747964741274],[4.34665514191759,51.65749813585324],[4.348663681872789,51.65814521360438],[4.352392953349077,51.659391774954805],[4.354343242378278,51.66006520660312],[4.356220926135289,51.660755944232086],[4.358084216255792,51.66144652481147],[4.359960791240165,51.66219112673089],[4.361693319635242,51.66291645812258],[4.361821659220372,51.66297905898138],[4.363494708036868,51.66379518087353],[4.365037839940425,51.664590718671256],[4.366223230394005,51.66535614009837],[4.366519584219234,51.66554749583443],[4.36798594098632,51.66654907442443],[4.36943688484655,51.66759544577742],[4.370787730614682,51.66859599308376],[4.37219624983078,51.66960599548613],[4.373354684170821,51.67081159365984],[4.374455764638098,51.67199868758445],[4.375470158590007,51.673185039639186],[4.376484233497533,51.67438933993209],[4.376519368238777,51.67443458874208],[4.377411813942525,51.67558391396379],[4.378193065466649,51.67685810332178],[4.378843480262993,51.67816712583028],[4.379248936893143,51.67943807966781],[4.379492798543256,51.68082449958689],[4.379504549666129,51.68224488697697],[4.379438461937238,51.68344885707703],[4.379431553781012,51.683574635969926],[4.379431177079127,51.683591550204945],[4.392529601019307,51.69254985734],[4.393621224363813,51.693296217675176],[4.398830887660299,51.69611379931117],[4.398905870320605,51.69615435243136],[4.398914176308482,51.69615884513191],[4.403571205128217,51.69867704789192],[4.409123323036249,51.701678652710115],[4.41268992588995,51.70360649485011],[4.423549796722082,51.70947483779387],[4.43437834764047,51.70715565594285],[4.437816200750358,51.70641909648019],[4.456816299310142,51.70234608796595],[4.458070400530278,51.70207711338127],[4.461378993604229,51.701367425859594],[4.469588311516958,51.699606035116126],[4.475795657217529,51.698156061507326],[4.488801425549859,51.695116662717254],[4.490442112050649,51.69480459903316],[4.494774205472076,51.69398048977416],[4.497841553376236,51.69339685907395],[4.500430850450851,51.69290411182435],[4.507106386057936,51.692505014606866],[4.514917338932343,51.692473556315676],[4.515798571580267,51.69252862011691],[4.51941014447133,51.69275421498577],[4.530432891903445,51.69344202496769],[4.532271915905638,51.69365322763628],[4.541647250260672,51.69472946060831],[4.542469950527444,51.69482386544256],[4.548281490028546,51.69577126439316],[4.554929715841237,51.696854651380306],[4.569476289107461,51.69953888855982],[4.570528798908619,51.69973301983312],[4.577117102299272,51.70099346734574],[4.587788442483141,51.70303413991274],[4.587917311794792,51.70305877677708],[4.589299948036076,51.703323089994704],[4.597493466028851,51.7055089654281],[4.604213716778896,51.7084305001692],[4.60590957078655,51.709093188297686],[4.609265166277401,51.71040431761786],[4.613856349540806,51.71219795077178],[4.617063112835154,51.71345054106819],[4.634715388394369,51.71700527834881],[4.636648078127581,51.71739427746338],[4.642998483193764,51.718657203202135],[4.644450021106369,51.71894581140234],[4.64459555438062,51.71897462599259],[4.645136655551981,51.7190673215161],[4.659231642029751,51.721477434012996],[4.667367992639941,51.72286778560426],[4.67522266251005,51.72420938698197],[4.676304294289294,51.724923647168936],[4.676985166057649,51.72158637511604]]]]}},{"type":"Feature","properties":{"id":4,"statcode":"WS27","geometry_g":"polygon","gag_id":"1532684","hierarchie":"2","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.27.27_Waterschap De Dommel_p","sde_id":null,"land_code":"NL","inspire__1":"NL.27.27_Waterschap De Dommel_v","inspire__2":"NL.27.27_Waterschap De Dommel_l","wbh_code_o":"27","einde_leve":null,"laatste_wi":"2011/02/27","admin_code":"27","waterschap":"Waterschap De Dommel","publiceren":"27","Aangemeld":1,"Actief":1,"KVK":17277734,"tnostatus":null,"CPT":0,"GMW":729,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.29794651680132,51.68428814269057],[5.298436788337108,51.68442288380814],[5.29858192908528,51.68446588667331],[5.298731291804875,51.68451666759694],[5.299211066514,51.68466061076567],[5.299705155694725,51.684814324155234],[5.300284602019138,51.6850920411783],[5.300394068876903,51.68514450721565],[5.300416063810915,51.685136712480045],[5.300438724368025,51.68512868453154],[5.300459387991353,51.68512137418236],[5.300461711351109,51.68512387470364],[5.30094436093955,51.684956379270346],[5.301491147478392,51.68473081805423],[5.301681145959973,51.68465243315087],[5.301869086829271,51.68457595200489],[5.301967784400395,51.68441912045385],[5.301957521259832,51.684409477322816],[5.301922401460579,51.68437646399647],[5.301787104783606,51.684249304103076],[5.301760617161187,51.684224404641114],[5.301926510478172,51.683960146509904],[5.302024538291361,51.683820329651375],[5.302131911160709,51.68365501910259],[5.302213020990896,51.683537526244436],[5.302780540978617,51.683696502166526],[5.3033061680696,51.68385867225726],[5.303303956759674,51.68386589743219],[5.303218822638348,51.68414306890796],[5.303591149303506,51.684195180513946],[5.303607036997217,51.684197403006536],[5.303818664013921,51.68422800664479],[5.304007794348778,51.68425687714672],[5.30421734054551,51.68428698422087],[5.304253568433382,51.68429218721596],[5.3045301528652,51.684330170090576],[5.304640456144888,51.684337932928955],[5.304779011229136,51.68434768399529],[5.30477947720946,51.684345895610726],[5.304779681123845,51.684345086788774],[5.30500939038214,51.684364735002355],[5.305016647140162,51.684350052873185],[5.305016937274161,51.684349540731795],[5.305017256312378,51.684349037599155],[5.305017575366884,51.68434852547803],[5.305017908865347,51.68434802235551],[5.305018256840358,51.68434751025463],[5.305018604799064,51.68434700714222],[5.305018967234317,51.68434649505146],[5.305019358573785,51.684345991969444],[5.305019735469281,51.684345479888854],[5.30502014126899,51.68434497681693],[5.30502054706869,51.684344473745085],[5.305020967328639,51.68434397068332],[5.305021402048839,51.68434346763169],[5.305021851229284,51.68434296459016],[5.305022300409722,51.68434246154864],[5.305022778494371,51.68434196751589],[5.305023242118752,51.68434147347302],[5.305023749123893,51.6843409794605],[5.305024241668767,51.68434048543785],[5.305024763134144,51.68433999143548],[5.305025284599512,51.68433949743306],[5.305025820508829,51.684339012429305],[5.305026356418135,51.68433852742551],[5.305026921231652,51.68433805143048],[5.305027500521703,51.68433756645708],[5.305028079795449,51.68433709047218],[5.305028673529442,51.6843366144974],[5.305029281707383,51.68433614752122],[5.305029889885313,51.68433568054504],[5.305030526967448,51.68433522257763],[5.305031164065864,51.68433475562169],[5.305031815591937,51.684334306652886],[5.305032467134289,51.68433384869555],[5.305033147564555,51.684333408735476],[5.305033828011096,51.6843329597869],[5.3050345228853,51.68433252882542],[5.305035217775781,51.684332088875465],[5.305035941570465,51.684331657934216],[5.305036665348845,51.684331235981475],[5.305037403587466,51.68433081403883],[5.305038141809783,51.6843304010847],[5.305038908952592,51.684329988150814],[5.305039661618847,51.68432958419531],[5.305040443189302,51.68432918924852],[5.305041224759745,51.68432879430169],[5.305042035234389,51.68432840836367],[5.305042831248768,51.68432802241544],[5.305043641707098,51.68432764546585],[5.305044466609377,51.6843272775149],[5.305045305955606,51.684326918562505],[5.305046145301822,51.68432655961018],[5.305046984631736,51.6843262096463],[5.305047838421891,51.68432585969253],[5.305048721099957,51.684325527735986],[5.305049589317761,51.68432519576929],[5.305050471979516,51.68432487280124],[5.305051354641258,51.68432454983321],[5.305052251730666,51.684324244852235],[5.305053148820059,51.68432393987122],[5.305054060337118,51.68432365287736],[5.305054971870454,51.68432335689498],[5.305055897815166,51.68432308788821],[5.305056823776154,51.68432280989291],[5.305057764164811,51.684322549884754],[5.305058704553457,51.68432228987654],[5.305059644925805,51.68432203885682],[5.305060599742108,51.684321796835704],[5.305061554542116,51.68432156380311],[5.305062509325828,51.68432133975895],[5.305063478553496,51.68432112471345],[5.305064433320903,51.68432090965777],[5.305065416976234,51.68432071259932],[5.305066386171306,51.68432051553075],[5.305067369794049,51.68432033644929],[5.305068338972819,51.68432014836918],[5.305069337023228,51.6843199872748],[5.30507032061338,51.68431982617026],[5.305071304187244,51.68431967405424],[5.305072287761099,51.68431952193816],[5.305073285746348,51.68431939679771],[5.305074283747873,51.68431926266873],[5.305075281716829,51.68431914651676],[5.305076265225527,51.68431903035463],[5.305077263161906,51.68431893217963],[5.305078261098278,51.68431883400457],[5.305079259002087,51.68431875380652],[5.30508025690589,51.684318673608466],[5.305081254793405,51.68431860239887],[5.305082252664636,51.684318540177756],[5.305083236059336,51.68431848693502],[5.305084233898,51.68431844269088],[5.30508523172038,51.684318407435235],[5.305086215082509,51.684318372169436],[5.305087212872325,51.68431835489076],[5.305088196201893,51.684318337601944],[5.305089179515176,51.68431832930159],[5.305090148351931,51.684318329979625],[5.305091131632657,51.68431833965626],[5.305092114897101,51.68431835832136],[5.305093083685017,51.68431838596482],[5.305094052472935,51.68431841360831],[5.305095021228294,51.684318459228734],[5.305095975539686,51.68431849585056],[5.305096929818521,51.684318550449326],[5.30509788408108,51.684318614036634],[5.305098838327363,51.6843186866124],[5.305099778129678,51.68431875018953],[5.305100717883161,51.68431884073214],[5.305101643192676,51.68431892227614],[5.305102568469638,51.6843190217971],[5.305103493746604,51.68431912131806],[5.305104419007298,51.68431922982748],[5.305105329791468,51.68431934731529],[5.305106226099116,51.6843194737815],[5.305107136883294,51.684319591269244],[5.305108018714426,51.684319726713795],[5.305108915005812,51.68431986216845],[5.305109796804401,51.684320015589925],[5.305110664159019,51.68432016001282],[5.305111531481095,51.684320322412695],[5.305112398803174,51.68432048481254],[5.30511325166501,51.68432064720228],[5.305114090050326,51.684320818570384],[5.305114942879624,51.684320998937054],[5.305115766788425,51.68432117928353],[5.305116590664683,51.684321377606985],[5.305117414557226,51.68432156694191],[5.305118223973247,51.68432176525518],[5.305119033389277,51.684321963568536],[5.305119842772765,51.68432217985879],[5.30512065215626,51.68432239614904],[5.30512144706324,51.6843226214177],[5.305122256430478,51.68432284669644],[5.305123065765177,51.684323089952194],[5.305123875099883,51.68432333320793],[5.305124669958074,51.68432358544202],[5.305125479276526,51.68432383768622],[5.305126274102189,51.684324107897254],[5.305127083388114,51.68432437811844],[5.30512786373727,51.68432465730789],[5.305128673006943,51.68432493651753],[5.305129453323574,51.68432523368393],[5.305130248100471,51.684325530860455],[5.305131028400849,51.68432583701532],[5.305131823145222,51.68432615216881],[5.305132603413082,51.684326476300626],[5.305133383680952,51.68432680043248],[5.305134149456038,51.684327142531174],[5.305134929707659,51.68432747565151],[5.305135681006242,51.68432782672861],[5.305136446748821,51.68432818680428],[5.30513719803116,51.6843285468698],[5.305137963757491,51.684328915933996],[5.305138700547056,51.68432929396639],[5.305139451780621,51.684329680997415],[5.305140174093689,51.684330068008194],[5.305140910850751,51.68433046401757],[5.305141633115035,51.68433087799382],[5.305142355395603,51.68433128298155],[5.305143063183387,51.684331705936145],[5.305143770971185,51.68433212889079],[5.305144464282475,51.684332560823755],[5.305145157577506,51.684333001745216],[5.305145836412297,51.684333442656595],[5.305146515230832,51.68433389255642],[5.305147179572857,51.684334351434615],[5.305147843898626,51.68433481930132],[5.305148479303898,51.68433528714779],[5.305149129153172,51.68433576399286],[5.305149764525933,51.6843362498163],[5.305150385438453,51.68433673562962],[5.305150991874462,51.684337230421335],[5.305151612754473,51.68433773421163],[5.305151872648658,51.68433795011743],[5.305152204713984,51.684338237981734],[5.305152796657242,51.68433875074026],[5.305153359679998,51.68433926347862],[5.305153937146757,51.684339785215556],[5.305154485676749,51.68434031592075],[5.305155034206752,51.68434084662594],[5.305155568260247,51.684341386309534],[5.305156087853493,51.68434192598302],[5.305156592970228,51.68434247463483],[5.305157098070707,51.68434303227517],[5.305157588710944,51.68434358990535],[5.30515806489093,51.68434414752545],[5.305158526594406,51.68434471412391],[5.305158988297893,51.68434528072242],[5.305159421064606,51.68434585628916],[5.30515986829159,51.68434643186602],[5.305160272121544,51.68434701640103],[5.305160690411764,51.68434760094614],[5.305161079781477,51.68434818547102],[5.305161454674676,51.684348778974325],[5.305161815107623,51.68434937246749],[5.305162175540578,51.68434996596064],[5.305162521497018,51.684350568432144],[5.305162852993209,51.68435117089357],[5.305163155568883,51.68435177333478],[5.305163472604829,51.68435237578611],[5.305163746243733,51.68435298719555],[5.305164034342907,51.68435359861516],[5.305164293521563,51.684354210014504],[5.305164552700228,51.684354821413855],[5.305164782942112,51.68435544178153],[5.305164998740004,51.684356053150516],[5.305165214521635,51.68435667350801],[5.305165415843011,51.684357293855406],[5.305165588243868,51.684357914182634],[5.305165760660993,51.684358525521304],[5.30516591858533,51.68435915482686],[5.305166062081939,51.68435976614535],[5.305166191085758,51.68436039543069],[5.305166305661847,51.68436100672894],[5.305166405745145,51.68436163599408],[5.305166505860975,51.68436224728222],[5.305166562579751,51.68436286752849],[5.305166633758793,51.68436348778489],[5.305166676017306,51.68436410802107],[5.305166732752352,51.6843647192789],[5.305166746090337,51.68436533949486],[5.305166759444589,51.68436595072236],[5.305166758322309,51.68436657092819],[5.305166742772295,51.684367173146946],[5.305166712745748,51.68436778434413],[5.305166682719204,51.68436839554128],[5.305166623788388,51.68436899772969],[5.305166564857572,51.68436959991813],[5.305166491466488,51.68437020209648],[5.305166403615133,51.68437080426467],[5.305166301319775,51.6843713974343],[5.305166199024415,51.68437199060391],[5.305166067808516,51.684372583753294],[5.305165951069148,51.684373167924306],[5.305165790948972,51.684373752064985],[5.30516564528906,51.6843743362158],[5.305165470724873,51.68437491135784],[5.305165310620951,51.68437548651004],[5.305165107136219,51.68437606163191],[5.305164918128015,51.68437662777541],[5.30516470019927,51.68437719389865],[5.305164496747051,51.68437775104353],[5.305164264374293,51.684378308168206],[5.305164032001525,51.68437886529281],[5.305163770724478,51.68437941340875],[5.305163523923962,51.68437995254631],[5.305163248186634,51.68438050065215],[5.305162972481832,51.68438103078097],[5.305162682316751,51.684381560899745],[5.305162406611935,51.68438209102859],[5.305162087542565,51.684382612138585],[5.305161782933461,51.68438313325872],[5.305161463880342,51.68438364538026],[5.305161144827217,51.684384157501796],[5.305160811330079,51.68438466062473],[5.305160463372665,51.684385163737524],[5.305160115431507,51.684385657861874],[5.305152591826387,51.68439599836673],[5.30548563712633,51.68451062745467],[5.305510420850001,51.68451936355953],[5.306005316908307,51.68469384132429],[5.306192209109877,51.68476323590014],[5.306240546120651,51.684781749622005],[5.306343275036744,51.68482110021177],[5.306375227038537,51.684832321899194],[5.30640553564653,51.684840693091296],[5.306406894252977,51.684841071543865],[5.306434925524395,51.68484528847247],[5.306535838841054,51.684856827219555],[5.306574396987206,51.684861240109825],[5.306667934024112,51.68487363657031],[5.306772218064882,51.68489258395226],[5.306839781055676,51.684906778145674],[5.306968836003449,51.68493390387415],[5.30715014346685,51.68497363104508],[5.307284282491232,51.685004382259976],[5.307315504530741,51.68501154039069],[5.307316227538515,51.685011549871426],[5.307315646363763,51.685013113474966],[5.307668531370323,51.68501812608746],[5.307809144394757,51.68501858085105],[5.307811935234884,51.68501860071629],[5.30790138655211,51.68501933534059],[5.307987902081723,51.68502024768469],[5.307999849763172,51.68501835018742],[5.308017221644175,51.6850155844648],[5.308089345846133,51.68500171891396],[5.308193103232978,51.684983173636205],[5.308230384114451,51.68497385967959],[5.308836829697827,51.68499775320398],[5.308892357028911,51.68498154805184],[5.309021321240015,51.68491118217307],[5.309184372660252,51.68475424359851],[5.30922367996578,51.68471833369735],[5.308889370291842,51.684483798805445],[5.308683640617518,51.68417640736814],[5.308660535128416,51.68414189403461],[5.308660276495411,51.684140941080294],[5.30867345387887,51.6841218583216],[5.308679426482995,51.68411319740259],[5.308648405702053,51.68399845638872],[5.308610807640867,51.68395768633284],[5.308553681804527,51.68389574424362],[5.308522090998353,51.68380144266567],[5.308522625411659,51.6837851288924],[5.308522870561498,51.683777183220776],[5.308527898049842,51.683621514719505],[5.308589985561745,51.683406937857],[5.308594189642003,51.68339243323023],[5.308623196562891,51.68329218591162],[5.30863516119385,51.683263538576696],[5.308750363270051,51.68298786636534],[5.308889867713738,51.68278932262416],[5.309003699744155,51.682627326838876],[5.309051893700021,51.68256039459717],[5.309201749906052,51.682352689097684],[5.30940504774517,51.68206888622067],[5.309534018795405,51.68179505599211],[5.3096307976437,51.68159122478495],[5.309758316682151,51.68120083041254],[5.30977541781736,51.68109319536797],[5.309776741522283,51.68107162383043],[5.309776476803894,51.681065763150755],[5.309770250553665,51.68092695855355],[5.309759357512638,51.680523664116045],[5.309747922100931,51.680048623052805],[5.30974650435793,51.67995595961345],[5.309752316710715,51.6798121114059],[5.309846048655597,51.679645310616216],[5.310079489345018,51.67943054910574],[5.310459377502949,51.67923396787304],[5.310756263438293,51.67910138345513],[5.31106893403609,51.67896158176687],[5.311380530765658,51.67877109236085],[5.311634811093115,51.678615638378496],[5.312020378374482,51.678220796233816],[5.312248154265433,51.678054861306585],[5.312266885816209,51.678041210739394],[5.312378953361062,51.67798768378479],[5.312456119908859,51.67795083514271],[5.312699505474788,51.67788305478643],[5.313360469798367,51.677763179382076],[5.314016715505396,51.677644393901716],[5.314688907806982,51.677523879816185],[5.314911438275254,51.67748388342606],[5.315156225680798,51.677439882416515],[5.315718348198459,51.677325191254816],[5.31609368053828,51.67725024839262],[5.316311926132688,51.677211990514756],[5.316677019443882,51.67714689998974],[5.316996770312374,51.67709195620105],[5.317418029451674,51.677018312926535],[5.317590659226775,51.67698871741913],[5.317735075756473,51.6770288827446],[5.317832220699389,51.677055896739176],[5.317887720975992,51.67709621602133],[5.317996329663274,51.67720960721642],[5.318127284415765,51.6773463186624],[5.318445991924496,51.67768379953081],[5.319073458432809,51.67769514939444],[5.319191346985815,51.67769728512268],[5.319962406952669,51.677712209870734],[5.321088563028222,51.677734862459694],[5.321109194219797,51.67773527856143],[5.323063724360987,51.67777374601292],[5.32350317139517,51.6777802862414],[5.326711478322637,51.67782802236402],[5.326742259204426,51.6778284786562],[5.326765303075462,51.67780863491097],[5.326767889613778,51.67777717647102],[5.326771049102249,51.677738896049675],[5.326774267531132,51.67769977972738],[5.326777559537762,51.67765969268399],[5.326801742925394,51.67758747349174],[5.326809820288656,51.67754756867898],[5.326907948946474,51.67742673269291],[5.32698699088377,51.67733979148209],[5.326990730012626,51.677289457763244],[5.326970542752617,51.67723790731169],[5.326918894923043,51.67722991698665],[5.326855154017927,51.67720485124934],[5.326762738320252,51.676987911042474],[5.326296224346295,51.67638482875323],[5.325557725329094,51.67621318526103],[5.325505969318924,51.676211369359315],[5.32471115309299,51.67637284994801],[5.324440207226977,51.676556367574],[5.323587042762504,51.67711040034535],[5.323575972849695,51.677117225611035],[5.323544719349544,51.677124237679195],[5.322630607060053,51.676357333318826],[5.322527537064722,51.676327533602354],[5.322390472678883,51.67627049782829],[5.322128308732833,51.67616141206468],[5.322075762245901,51.67614639009019],[5.321976969687364,51.67611858771012],[5.32195308018903,51.67611233640809],[5.321710413572192,51.676048823290344],[5.321603264033836,51.67602165411537],[5.32144356854101,51.675979462583896],[5.32117555085807,51.67591175449437],[5.320989438381107,51.67586225779909],[5.320918784417346,51.675842362305445],[5.32091907185219,51.67580395457183],[5.320933985694198,51.675788502758834],[5.321059738498684,51.67567865322244],[5.321201824963184,51.675520948928],[5.321376375515832,51.67537751844498],[5.321658740250871,51.67514936833966],[5.321690885219199,51.675124973495464],[5.321748782202683,51.67506804561505],[5.32179705325159,51.675009197789855],[5.321827169212686,51.67495804298613],[5.321903566877971,51.67479355085481],[5.321920254388949,51.6747406178185],[5.321948283630522,51.674652429163764],[5.321989712714551,51.67446492491882],[5.322013693184165,51.674367008429314],[5.322039850701686,51.674283241056756],[5.322048376240251,51.674255911731905],[5.322087604439488,51.67415083984614],[5.322116806267082,51.674081231046316],[5.322184802096209,51.67390652311195],[5.322254945528676,51.673877367265476],[5.322717086191864,51.67395139975949],[5.32327834181506,51.67403823914237],[5.323559296946092,51.674080781622095],[5.323714099701014,51.67410340863428],[5.323841703815287,51.67411937825511],[5.32394513764603,51.674123721559695],[5.324090109817819,51.67412566920458],[5.324227484045123,51.67412298351158],[5.324349829578359,51.67411552570137],[5.324523504316134,51.67411355120731],[5.324723618884483,51.674092040522886],[5.324903522212668,51.674081188132725],[5.324996090722912,51.674070370115004],[5.325123138616518,51.67404934133919],[5.325306423809302,51.674017879466],[5.325398662007679,51.67400528123093],[5.325485996613674,51.674005246281716],[5.325565054535804,51.67399993965528],[5.325619977828274,51.674062924000964],[5.325632963471715,51.67412444817111],[5.325627312908083,51.67421877062492],[5.325621989347864,51.67428517493933],[5.325607180023189,51.674470141700894],[5.325603289190647,51.67457801974533],[5.32558979263333,51.674775598066276],[5.32557062001667,51.67493699465449],[5.32555583541198,51.67507152688924],[5.325555839403828,51.67508987243739],[5.325584296900054,51.675149705902264],[5.325643792216074,51.675221815964946],[5.325815725824087,51.675409235499586],[5.325959409939548,51.67556526116216],[5.325970006286071,51.67557670007193],[5.326103731490627,51.67572105327624],[5.326214981927412,51.67583950774947],[5.326354009696483,51.67598753971784],[5.326459024626141,51.676099357204926],[5.326524168983615,51.676111489424216],[5.326896667017277,51.6761573699412],[5.328133808611902,51.67596867395084],[5.328138754089619,51.67596792140416],[5.328504915084354,51.67598417648446],[5.328562265974533,51.67598604778611],[5.328886261717816,51.67599662683565],[5.329278621278438,51.67598954036279],[5.329371432344936,51.67598349190392],[5.329488505247443,51.675975864333644],[5.329668416029701,51.67596413274004],[5.330047566967897,51.67591782035919],[5.330420105041549,51.67585237600878],[5.33077075635822,51.67577286193071],[5.331001918295662,51.675714143012385],[5.331097512494491,51.67568985683532],[5.331413796737904,51.67562144318955],[5.331727410516417,51.675572496535544],[5.332048596230382,51.67556178970996],[5.332378324443309,51.67560037896795],[5.333102041264753,51.67570592508197],[5.333803227405867,51.67584386903583],[5.334525472047114,51.67594101939981],[5.335252390103199,51.67603772693686],[5.335558082205877,51.67607566740703],[5.337015993750349,51.67625510772898],[5.337592230335792,51.676324456141195],[5.337756040579422,51.676346978496056],[5.337902721127955,51.67636715642244],[5.338385938980416,51.67643685734753],[5.338781481064061,51.67649801704685],[5.339035091180732,51.67654645249879],[5.339429478022339,51.676621784408695],[5.339650625484063,51.67667617369],[5.339641529687515,51.676705526469796],[5.339617912506027,51.67678171247423],[5.339769316516007,51.67682195231937],[5.340103389161487,51.676910731361296],[5.340619689238652,51.67705742287123],[5.341240215989263,51.67726553542192],[5.341827828946753,51.67748657542156],[5.342106143445956,51.67760665213864],[5.342424346970262,51.67774393840884],[5.342920316753165,51.677999175172225],[5.343088410727784,51.678100889391075],[5.343501185576395,51.67835065437992],[5.343826561110476,51.67857288086026],[5.343894861624349,51.67861952941918],[5.344098999881014,51.67878766252481],[5.34421369648558,51.67888212876705],[5.344346149340607,51.678991216679066],[5.344515203611591,51.679155390301396],[5.34469951063378,51.679322094962544],[5.34502617023078,51.67965459849747],[5.345363310660119,51.68005712527842],[5.345571396316482,51.68033284058492],[5.345663935767827,51.68047306699692],[5.345912342356473,51.680854473747466],[5.34608625330099,51.68117819268502],[5.346123051172802,51.681259191951405],[5.346231583407596,51.68151479989632],[5.346305183368171,51.68170557051461],[5.346399122184224,51.681983815249495],[5.346450059661037,51.68216492424982],[5.346524186412894,51.68243167469813],[5.346699199212965,51.68328283825093],[5.346744105229857,51.68350125628442],[5.346908405564775,51.68347842798628],[5.347809140421328,51.68335326274229],[5.34816259838827,51.68330414162082],[5.348309283322684,51.6832833818508],[5.35118736405648,51.682876004771074],[5.351204692163448,51.68299716606893],[5.351225701673135,51.6831441254837],[5.357435153663,51.682259764616646],[5.358282722301339,51.68213902656408],[5.358348663880809,51.682129631779105],[5.364880359390702,51.6811996615062],[5.367163331177451,51.680874327980035],[5.36737878056135,51.68085620757893],[5.367720760409608,51.68080746592274],[5.367696819541002,51.680731697890856],[5.367704301052279,51.68071730853538],[5.367705699464895,51.6806931117199],[5.367704083302189,51.680685489203675],[5.367671067509002,51.680529811886274],[5.36773975080977,51.68052323465474],[5.367932859218128,51.68050475899782],[5.368012962246739,51.68050493383362],[5.36811322116289,51.68050515681668],[5.368382232643643,51.68053787319116],[5.368816523945892,51.68050408189507],[5.369334060716235,51.680419363764656],[5.369762649124363,51.68035869247615],[5.370222823018967,51.68027587649007],[5.370221607042859,51.68020189195558],[5.370351831368054,51.68018277406535],[5.370419257043098,51.680172878325465],[5.371076102755716,51.68007645117616],[5.372391390788016,51.67988336130852],[5.372413939216459,51.679950903732724],[5.372742999950484,51.67988662264752],[5.372791685880093,51.6798771097575],[5.373527173626105,51.67969908077387],[5.374005885365289,51.67956308506113],[5.374090823243601,51.67953783679206],[5.374452486902249,51.67940750698377],[5.374986430439318,51.679196108632446],[5.375483229369653,51.67896741030262],[5.375812898213208,51.67879499794047],[5.375855455071409,51.67877273749032],[5.376176577958115,51.67859276395319],[5.376423650624235,51.67843976633019],[5.376484949346492,51.67833645801168],[5.376463129914095,51.67828221042381],[5.376472424663556,51.67822867573519],[5.376614732554922,51.6779379014042],[5.376931479817036,51.67782407179413],[5.377057970827757,51.67777514023989],[5.377151627531942,51.67772420134447],[5.377252834174522,51.67765938475468],[5.377313755616739,51.67761600232064],[5.377381359556475,51.67755870620148],[5.377418597216674,51.677520849686836],[5.377475191478205,51.677427364889425],[5.377533987611464,51.677381366511426],[5.377832485935404,51.67725142557518],[5.377974581401167,51.67716823906296],[5.378138711896287,51.677076739687806],[5.378266498114336,51.67696669407929],[5.378365745040395,51.676850489093844],[5.378457694189141,51.67678975155238],[5.378799528074619,51.6765936469256],[5.379156700181085,51.676388751572496],[5.379601052459781,51.67616134448987],[5.379695441982799,51.67610003985152],[5.379705910412197,51.676093245197436],[5.379722944134588,51.67607697706789],[5.379789934444397,51.67602630403991],[5.379804535459116,51.67603364855198],[5.379862633359441,51.67598821523122],[5.379971975083516,51.6759027142271],[5.379955046561314,51.67589443479043],[5.379957432345898,51.675892610268114],[5.379996385689018,51.67586272583589],[5.380019516007878,51.67587418756957],[5.380047807294347,51.675888211330985],[5.380069104952049,51.6758774353823],[5.380062325279659,51.67587143065672],[5.380108954388249,51.67584878239124],[5.379963558884581,51.67582232951216],[5.379800593902436,51.675638450676125],[5.379743939633236,51.675520032582504],[5.379824076217341,51.67543602198148],[5.379650022737226,51.67526229026867],[5.379543865072535,51.6752454300724],[5.379203384395924,51.67521838833336],[5.37912591195859,51.67519250521375],[5.379054496877614,51.67516864486997],[5.378993254901626,51.675091195706926],[5.378996040429942,51.675036473871124],[5.379002641490839,51.674906985899476],[5.379097240352508,51.6746310631753],[5.379183285848017,51.674484987765915],[5.379322683847533,51.674301029261954],[5.379395592600589,51.674204803086425],[5.379419196455267,51.67414551643121],[5.3794306656308,51.67411716742516],[5.379443190583887,51.674086247773246],[5.379581601364611,51.674001342241546],[5.379637873272746,51.6739683310243],[5.379757310233548,51.67391826353793],[5.379991092699079,51.673829893848996],[5.380424968558389,51.6736658968742],[5.380381656566847,51.67366075299332],[5.380598377810495,51.67356967557752],[5.380761846963252,51.67342359423764],[5.38077454624799,51.673378571481734],[5.380794837912443,51.673314628320156],[5.380459971572511,51.67284981422663],[5.380430341550981,51.67280869013215],[5.380418703532601,51.67271304275632],[5.380468689578023,51.67264595534429],[5.380541978166293,51.672587264472774],[5.380565663837344,51.67254599954154],[5.380834243914119,51.6723879691333],[5.381033623767086,51.67230545602943],[5.381175025837774,51.672276214588464],[5.381355038742286,51.672263235069806],[5.381513598048003,51.672251800287505],[5.381656246153199,51.67219512539468],[5.381785354834172,51.67208199289597],[5.382105371025323,51.671854193052816],[5.38304100752072,51.671231648613926],[5.383426906248492,51.670948909597556],[5.383484746554638,51.67092486710312],[5.383641276465527,51.67091784273467],[5.383765912478641,51.67096560223842],[5.383948368769865,51.67086063038714],[5.38424292054675,51.67067373969833],[5.384338650486462,51.67062425120727],[5.384481073149836,51.67056645828328],[5.384543409149561,51.670524824848236],[5.384639068579196,51.67042981829238],[5.384619915606303,51.67041119370459],[5.384701392549294,51.67033473010024],[5.385148321680666,51.670004482307924],[5.385403182610914,51.66980701754811],[5.38575842294497,51.66953178477094],[5.38592960867522,51.66939914305567],[5.385922973931995,51.66938577707623],[5.385902028982814,51.66934362974491],[5.385898965506217,51.669300529802776],[5.385705148968161,51.66922154570586],[5.385715056176863,51.66904252163266],[5.385695256535583,51.668899882714335],[5.385670445064231,51.66862383623737],[5.385703637203733,51.66852581689611],[5.385812212327509,51.668452328008044],[5.386464882952066,51.66812147487283],[5.387201802176823,51.667804667046305],[5.38720842254993,51.66780181767837],[5.387201802125224,51.66779039328805],[5.387149272498242,51.667699717232445],[5.387139920137629,51.66769703866413],[5.386989516406772,51.66765404664116],[5.38692027824523,51.667272583086316],[5.387082316666937,51.66719831105229],[5.387183153023909,51.66711144597808],[5.387201799463368,51.66705401834146],[5.38720778365947,51.66703558289191],[5.387201799370701,51.66702838310118],[5.387133587286137,51.66694631804865],[5.38703968947237,51.66689060728068],[5.386914627559842,51.66685197458416],[5.386817015280964,51.666812946314366],[5.386806550540778,51.66672680037923],[5.386687432191406,51.66642245799316],[5.386642074290956,51.66636963235179],[5.386490663210951,51.666361056699195],[5.386262223893943,51.66636078575248],[5.386124804761814,51.66635873537977],[5.38575622930569,51.66634207620736],[5.385657534748894,51.666312493885286],[5.38565675437459,51.666306947962894],[5.385652606831732,51.66627751053028],[5.385631846254233,51.665938319709475],[5.385628364517212,51.665881449336915],[5.385650381728329,51.66577700306177],[5.385722388723333,51.66543528753095],[5.383902836673195,51.66537417598003],[5.383550761926629,51.66536234612378],[5.38353353255686,51.6653617703443],[5.383439652462417,51.66536206411707],[5.383449019423932,51.66535404664938],[5.383590259469733,51.66524876841901],[5.383996383945042,51.664949569985126],[5.384038780865968,51.664902489236134],[5.384058194086552,51.66488094426079],[5.384146485929169,51.66477938524013],[5.38418621093887,51.66469428295059],[5.384389288424063,51.66421939747343],[5.384420196769852,51.66411508644149],[5.384314271579632,51.66400253881558],[5.383241705054021,51.66325861033912],[5.382654670973975,51.66284957635581],[5.38251785840952,51.66267114908723],[5.382513956687482,51.662664326651914],[5.382381053136849,51.662432318819015],[5.382332506979123,51.66227036176917],[5.382328201870351,51.662251611548356],[5.382314867616873,51.66219350024473],[5.382314881649277,51.66205899606647],[5.382323469878808,51.66189084820968],[5.382354679557516,51.66127940551442],[5.38238561540738,51.66093352855326],[5.382447477338021,51.66032413637388],[5.382532113196663,51.65958353958125],[5.382537566477774,51.65953584670435],[5.382553483087478,51.65948964632275],[5.382540823087672,51.659487200959596],[5.381529530521833,51.659291963033965],[5.380708622479554,51.659118991381796],[5.380439400196669,51.65906407463195],[5.380117213431124,51.65899542867226],[5.379640716120222,51.65896285209593],[5.379353670575901,51.65894322065158],[5.379124157304838,51.658934971874196],[5.378767057138519,51.65894522106437],[5.378700793688209,51.65894687923959],[5.377896902745979,51.65896703440194],[5.377595632120658,51.65897083060741],[5.377282136964316,51.65896509718755],[5.376375303089684,51.658920327168005],[5.375955415241822,51.65890020781019],[5.375739127044564,51.658889841344454],[5.375179039208302,51.65887125160953],[5.37514883412511,51.65887171594847],[5.374820049866461,51.658865021597165],[5.373685351648255,51.65882781101863],[5.373128705761354,51.65880682091875],[5.372405375318995,51.658768702297884],[5.37203837145393,51.658746777783286],[5.371889965718243,51.658738327438975],[5.371956213785915,51.658652522585946],[5.371855686230866,51.65864951641243],[5.37183402280536,51.65864886642698],[5.372056464976303,51.658442545635125],[5.372199781733872,51.65832155143227],[5.372361846996293,51.65818473061905],[5.372535265478803,51.65801831178627],[5.372655914966943,51.65791050037041],[5.37282260186533,51.65772791891861],[5.373051783310939,51.65747688812883],[5.373330780132812,51.65716748227831],[5.373398633548292,51.65710889402942],[5.373609759235198,51.65690496887279],[5.373869904079292,51.656595577533594],[5.373906955934999,51.6565511064866],[5.37397923793391,51.65646432139903],[5.374130054725797,51.65625335952277],[5.37416047278883,51.65620930113437],[5.374620191886925,51.65554313945226],[5.375349414820505,51.65450687370061],[5.375512941401318,51.65427194786642],[5.376652695739009,51.65256476508052],[5.376762414315508,51.652378999909146],[5.376899285063675,51.6521219220194],[5.376856150693698,51.65206289062231],[5.376885558926635,51.651987012037225],[5.376946587199711,51.65182955630806],[5.377655241721866,51.65000101623111],[5.377669236115245,51.64996491942326],[5.378019103228882,51.64906209416114],[5.378167974315899,51.64867791782998],[5.37821253751411,51.648589159472614],[5.378281941656184,51.64848184164557],[5.378499517608723,51.64814539908482],[5.378500326973793,51.64814414074973],[5.378720704282959,51.647877817493494],[5.378808050962157,51.64777226237305],[5.378984333437477,51.647555525223034],[5.379049842802215,51.64747497450533],[5.379137722963351,51.64736693833698],[5.379163331113315,51.64733546222971],[5.379944275927426,51.64637526743337],[5.380024522489653,51.64636524106937],[5.380036167918732,51.646363785624644],[5.380096360035915,51.64635627479847],[5.380129221998135,51.646311109373926],[5.380073133520525,51.64631663399593],[5.380060650147898,51.64631786468107],[5.380309868442234,51.64600911423517],[5.381014041162437,51.64510534673762],[5.381908080223695,51.643971980316294],[5.382014687663697,51.64383973665202],[5.382128836982973,51.643698145130955],[5.382141523892622,51.64367792146236],[5.382149138922432,51.64366578726063],[5.382443468099837,51.64329092340604],[5.382508430656408,51.64320982239856],[5.382887494677322,51.642736527223235],[5.383397467081501,51.64209492463397],[5.383571265179083,51.64186289987424],[5.38359029335564,51.64183843364434],[5.383610665847003,51.64180348681895],[5.38369063840651,51.6416663240896],[5.383711733166507,51.641630127860324],[5.383720965724529,51.64161429931206],[5.383728996154219,51.64144248368927],[5.383685487956467,51.6409860985517],[5.383699461353149,51.64073986700299],[5.383757832790303,51.640427337257826],[5.383818737419003,51.64023477753843],[5.383874556548338,51.64004142665538],[5.384072455633093,51.63957579867549],[5.384135884450471,51.63940454167242],[5.384220880520521,51.639232494162314],[5.384323354746891,51.639071017514304],[5.384437102501418,51.639046876886894],[5.384475010530618,51.63900757084989],[5.384531525894879,51.638946036547686],[5.384609233739853,51.63887131647527],[5.384623362624379,51.63885373518854],[5.384750519650307,51.63874385287298],[5.384877675640213,51.638642761207926],[5.38524500981413,51.638405416087174],[5.385435739029437,51.63829553397937],[5.38559272197595,51.63820361024648],[5.385675915312286,51.63815488438015],[5.385803066745535,51.63808455946975],[5.385867928345522,51.638034583864695],[5.386042332301819,51.637871290705995],[5.388519820255818,51.63726774115686],[5.388457167056005,51.637134217189704],[5.388388230090166,51.63698419030252],[5.388367615603096,51.63694143205861],[5.388345961043921,51.636896525561646],[5.388275211971799,51.636482747916865],[5.388239871123048,51.636166162934884],[5.388239868781112,51.636077868509595],[5.388241024160653,51.63606997655985],[5.388242887209024,51.63605723977989],[5.388254022145882,51.63598093595057],[5.388289450449013,51.63580457143621],[5.388291977944564,51.6357922750865],[5.388331709981506,51.63559852667346],[5.388345803715382,51.63544941562378],[5.388366979206835,51.634943800996325],[5.388371642284395,51.63485897608477],[5.38838977469474,51.63452879081651],[5.388395231690959,51.634429449397764],[5.388420295555978,51.634052280925374],[5.388433549207851,51.63385291491808],[5.388437562813767,51.63379240400817],[5.388430511241473,51.63370016367789],[5.388438648159831,51.6333909667309],[5.388451675645333,51.63289563498225],[5.388479906834547,51.6322363070594],[5.388483210946067,51.63212713217607],[5.38848699118712,51.632002559911435],[5.388487914589086,51.631971738185726],[5.388488145440028,51.631964052978496],[5.388501072946664,51.63153302520096],[5.38851075820258,51.63133993318689],[5.388515175002853,51.63125201618561],[5.388522509296644,51.631163020521235],[5.388535797236495,51.63116625622763],[5.388720268699238,51.63121110655421],[5.388727526192041,51.63101012260983],[5.388692245681719,51.630733464717714],[5.388684992812875,51.63066735407778],[5.388683880323291,51.63065722400411],[5.388673896828543,51.63056613423688],[5.389143903031825,51.630847567027594],[5.389179217269286,51.63086075258077],[5.389221593830708,51.630865147195635],[5.389249844733203,51.63086514666501],[5.389405221482465,51.6308036080521],[5.389631222861925,51.63070690450388],[5.389836035761915,51.63061899182312],[5.389863520201003,51.63060576901405],[5.38992945101648,51.63057406480773],[5.38996701637499,51.63055599689945],[5.389991410011723,51.630544266235944],[5.3900902842137,51.63049591431856],[5.39021740637979,51.63041239836761],[5.390352009548181,51.63032862139842],[5.390393964618562,51.630302508480895],[5.390936719912403,51.62997786137672],[5.390937759749188,51.629977241132494],[5.390963293271477,51.629959254200564],[5.391196690103119,51.62979487261808],[5.391206120680099,51.6297882297478],[5.391368547748072,51.629665152691054],[5.391672195046405,51.62939702174561],[5.391713396197671,51.629358558121325],[5.391869925273364,51.62921240700315],[5.392018221161798,51.62906735262691],[5.392095899721787,51.62899262751559],[5.39213120744475,51.628953067394775],[5.392194761290773,51.62888273822989],[5.392234054863944,51.62884209927639],[5.392391098482081,51.62867965119758],[5.392674943842638,51.628386036001444],[5.392780865006398,51.62827614587402],[5.39278899513588,51.6282688287981],[5.391996786138474,51.626803731934714],[5.391551806443823,51.62597742377067],[5.391361101973862,51.625647775969014],[5.390916899832012,51.624864313688285],[5.390865278977415,51.62477328835296],[5.390862188085839,51.6247678144277],[5.390857291773564,51.62475920355767],[5.390824967478545,51.624702181253355],[5.390824043103433,51.624700554355904],[5.391381092179682,51.62462534578962],[5.392331671178795,51.62450666677885],[5.392403096194613,51.62449789968967],[5.393047367151829,51.62444119556702],[5.393394817118643,51.624411164437845],[5.393895369739562,51.62436921357493],[5.394592837771175,51.62431075403159],[5.396035814704316,51.62419789958574],[5.396130734539265,51.62419109690346],[5.396089565889152,51.624133079008615],[5.394041658228924,51.62119056576757],[5.393998183878966,51.62112809792609],[5.393967462152712,51.62107815036642],[5.394049364911643,51.621069147945704],[5.399463508593339,51.61862560944139],[5.399618555537341,51.61794101558269],[5.399625001913514,51.617912584090945],[5.400507083173257,51.61411584556452],[5.401422069040072,51.61034053276912],[5.405236388183635,51.607951138411636],[5.40700100363388,51.60680243575015],[5.407149935376212,51.6067054775643],[5.407334009973675,51.60662537564044],[5.407309225635449,51.60659617609497],[5.407452540075155,51.60652999533803],[5.408068928588643,51.606238593732414],[5.408090014016997,51.60622862162141],[5.408090100666673,51.606228702502904],[5.40825584761977,51.606383410681325],[5.408272777543901,51.60637742122515],[5.408807287487056,51.606188410306885],[5.409433429545039,51.605973006984044],[5.409484983558048,51.60595526266345],[5.410139649746762,51.60572450659687],[5.410183842361092,51.605708929665596],[5.410494461894738,51.60560335102083],[5.410854477544445,51.60547138006395],[5.411082705833871,51.605379721912996],[5.411131473478733,51.6053637122313],[5.412491750552786,51.60480111743903],[5.412725395404779,51.60485482696488],[5.413786866631087,51.60509880832876],[5.41387574055181,51.60511923695428],[5.414161663291462,51.60518198308696],[5.414237659252408,51.60519866619164],[5.414403871734353,51.60523514795823],[5.414529069046203,51.60526262360594],[5.414528831317861,51.605251459864014],[5.414559710536224,51.60520827153501],[5.414748417211958,51.604944367645125],[5.415391758918862,51.605160190692445],[5.415413684620634,51.60513538592361],[5.415837784744671,51.60527116239846],[5.415816033245616,51.60529725256853],[5.416029323734687,51.605361962502904],[5.416031642062919,51.60533043903064],[5.41630683623436,51.605180099653694],[5.417500997746234,51.60328238933293],[5.418244841433395,51.60210021460569],[5.418310399368107,51.60211900117737],[5.419091208494158,51.60234273095478],[5.419480136834665,51.60246522777222],[5.419829660848615,51.60256627864037],[5.420543484309589,51.602774494223205],[5.42119826122334,51.60297966659566],[5.421498571888524,51.60308071784881],[5.42192688506973,51.60321545531778],[5.42262597635463,51.60344205318372],[5.423482613850863,51.603705379093995],[5.424029099023148,51.603873788087895],[5.424497720215238,51.60401565827845],[5.424634638380637,51.604057114554855],[5.424633971860144,51.60405406764509],[5.424623626291074,51.604006746168245],[5.42490212247672,51.60363659704919],[5.424965560889864,51.60354868628755],[5.425092436985965,51.603372873647665],[5.425162903883147,51.603267387841086],[5.425239446433139,51.60310943374028],[5.425380397282378,51.603125674898244],[5.425929918787853,51.603249463764804],[5.426451972859173,51.60335470690646],[5.426557915737078,51.60338104361019],[5.42684306111048,51.60343865350738],[5.427422970264621,51.60355707681318],[5.427452846301326,51.60353707592001],[5.427489545743694,51.60351249747866],[5.427602021231225,51.60353079519795],[5.427946801920783,51.60360891159137],[5.428192700503147,51.60367970016956],[5.42821266869477,51.60368544582399],[5.42838498081642,51.60374055685539],[5.428468683157718,51.60376811314508],[5.42878375927065,51.60384462863595],[5.43051186828291,51.60434053643652],[5.430886045587125,51.60444461018811],[5.432116935369821,51.60479968496808],[5.433037638753341,51.60507211147179],[5.433205044744359,51.60511802202433],[5.434445814120707,51.6054853647406],[5.435386259272666,51.6057669690339],[5.436947658874763,51.6062266805057],[5.437902346276659,51.60650151705545],[5.438970854414557,51.606813669777964],[5.440242803857894,51.607186923503086],[5.441378716319739,51.60751140977935],[5.441782485888252,51.607620028059756],[5.44218625739068,51.607728644944956],[5.443509104296376,51.60809180788767],[5.444914290131696,51.60850277925241],[5.445475672923113,51.60866495043065],[5.446584172189111,51.60898858186836],[5.44660932921724,51.608940570127494],[5.44692833459564,51.60900143057511],[5.446926303989856,51.60902700407873],[5.446968459610843,51.60903926985269],[5.446916592174638,51.609139186326004],[5.446851721499867,51.60926410662112],[5.446834422160628,51.609260600938235],[5.446808315026127,51.60931060867281],[5.446769478264724,51.60938503584124],[5.446751876448111,51.60941496775664],[5.446743838960115,51.60942864346477],[5.446699355676292,51.6095127631626],[5.446681067047391,51.60954743239019],[5.446658338036396,51.60954279689099],[5.446637442949259,51.60953853797254],[5.446609938388057,51.60959104519414],[5.44663188737908,51.609595321557634],[5.446659179221051,51.60960063786696],[5.446655148723093,51.60960953859902],[5.446667639587155,51.60961208498364],[5.446651583294585,51.609642762146095],[5.446603687906325,51.609734281132305],[5.446554265902763,51.6098287311465],[5.446553416273277,51.60983034952018],[5.446515283974658,51.60990320324351],[5.446504930053175,51.60992298334675],[5.446503187854739,51.60992650774919],[5.44709613635423,51.61004391001879],[5.447125912383912,51.610049809200156],[5.446969678271928,51.610288958163956],[5.446947807667745,51.61032243378729],[5.447125222128531,51.61036777097584],[5.447549270845895,51.6104761342008],[5.447633950906008,51.61052589598665],[5.447665916993929,51.61064703625628],[5.447859090118216,51.61094449333661],[5.447862099204721,51.61094912987],[5.44803520817243,51.61090365647094],[5.448274630509308,51.61084076423645],[5.448325069308732,51.610827515643194],[5.448535353321648,51.61077227841659],[5.448582553528073,51.610755642726886],[5.448672398334948,51.61081213347586],[5.448708904403298,51.61084056303351],[5.448825512056748,51.61080981454076],[5.44890055650411,51.61079002700226],[5.448972971624235,51.61089577507108],[5.448977962290106,51.610903062152445],[5.448969057966932,51.610905412882246],[5.448986301307732,51.61093075149687],[5.449044174791954,51.61102293449214],[5.449128152741761,51.611000823022785],[5.449214757168985,51.610978017977565],[5.449228539401203,51.610974388259734],[5.449228727018714,51.61097434321716],[5.449229319423063,51.61097470244466],[5.449240329360222,51.61098129419488],[5.449241944081256,51.61097968438349],[5.449260095368369,51.61096166164995],[5.449278621480889,51.610943261194535],[5.449405936271988,51.61099292709297],[5.449409050467755,51.610989896286895],[5.449444425731996,51.61100396249511],[5.449550493871695,51.61104613412067],[5.449574703386817,51.61105576590673],[5.449537304450389,51.61109230642507],[5.449488454567179,51.61126335789063],[5.449487707436063,51.61126596497254],[5.450153683034453,51.611337524988926],[5.450152703660022,51.61133920637852],[5.45015172429803,51.611340896756644],[5.450150759360429,51.61134257813846],[5.450149779998292,51.611344268516575],[5.450148815060547,51.61134594989833],[5.450147850135242,51.61134764026864],[5.450146885209866,51.611349330638966],[5.450145920271906,51.6113510120207],[5.450144955346383,51.611352702390995],[5.450143990420791,51.61135439276131],[5.450143025495127,51.611356083131554],[5.450142060556879,51.611357764513286],[5.450141110068053,51.611359454875746],[5.450140159579154,51.61136114523821],[5.450139194653202,51.61136283560844],[5.450138244164163,51.611364525970885],[5.450137610500592,51.611365649882984],[5.450136976824483,51.61136676480655],[5.450136357597833,51.611367888710866],[5.450135723921663,51.611369003634394],[5.450135090257966,51.61137012754649],[5.450134471018717,51.61137124246229],[5.450133837354961,51.611372366374354],[5.450133218128157,51.6113734902786],[5.450132584451828,51.61137460520216],[5.450131965224963,51.611375729106456],[5.450131345985561,51.61137684402218],[5.450130726758635,51.61137796792649],[5.450130093094692,51.61137909183853],[5.450129473867705,51.61138021574283],[5.450128854628178,51.61138133065853],[5.450128235401129,51.611382454562765],[5.450162846117304,51.611386211085104],[5.450176491149887,51.61138769582163],[5.450186410864042,51.61138876909397],[5.450166039381124,51.61146072454132],[5.450144805840058,51.611535718583646],[5.450096405096616,51.61170660826067],[5.450320055902629,51.61173134983557],[5.450345757867257,51.61173414934717],[5.450371459835059,51.61173694885313],[5.450397147356365,51.61173973937268],[5.450422849343067,51.611742547855904],[5.450448536883279,51.61174534735274],[5.450474238876338,51.61174815582465],[5.450499926435475,51.61175096429873],[5.450525628447485,51.611753781747915],[5.450551316012986,51.61175659021073],[5.450577003594264,51.611759407656436],[5.450602705615844,51.61176222508865],[5.450628393203503,51.6117650425231],[5.450654080794352,51.611767859951925],[5.45067976840101,51.61177068636361],[5.450705456010867,51.61177351276968],[5.450731143623925,51.6117763391701],[5.450755878163274,51.61177900428994],[5.450780770692393,51.61178108506194],[5.450805706535145,51.61178316580506],[5.450830757042424,51.61178465323519],[5.450855836425577,51.61178614064426],[5.450881001597731,51.611787034756034],[5.450906181207992,51.61178792885446],[5.450931388844805,51.61178822069856],[5.450956596481943,51.61178851253721],[5.450981817719855,51.61178821111793],[5.451007010070513,51.61178790072044],[5.451032158272153,51.61178699709657],[5.451057277598554,51.61178609348316],[5.451082323887698,51.611784587670655],[5.451107312439415,51.61178309087299],[5.451132199091044,51.611781000880725],[5.451128024011202,51.61176884164426],[5.451124267546177,51.611756637235416],[5.451120511057768,51.611744414849426],[5.451117158746641,51.611732147299],[5.451113820874427,51.6117198797406],[5.451110887179064,51.61170756701783],[5.451107967909682,51.61169524529854],[5.451105452842121,51.611682896392075],[5.451102952213011,51.61167054747765],[5.451100855772582,51.61165816238752],[5.451098773783068,51.61164578627799],[5.451097110431559,51.61163338297343],[5.451095447080959,51.61162097966888],[5.451094202393307,51.611608567146426],[5.451092972143393,51.61159615461603],[5.451092441094946,51.61158814609809],[5.451092146118907,51.61158373287569],[5.451106287321343,51.61158891153101],[5.451338382588226,51.611673887875696],[5.451399662557554,51.611609001697246],[5.451400144773381,51.61161308223909],[5.451400670300483,51.61161716275706],[5.451401195827681,51.611621243275025],[5.451401779090472,51.61162531477266],[5.451402362366129,51.61162939525884],[5.451403003377401,51.61163346672468],[5.451403644388789,51.61163753819053],[5.451404328711504,51.61164160963256],[5.451405027471411,51.611645681066605],[5.451405769529904,51.611649743488265],[5.451406511588529,51.611653805909896],[5.451407296958512,51.61165786830772],[5.451408096765715,51.61166193069759],[5.451408954321371,51.61166599305564],[5.451409797427341,51.61167004643309],[5.451410698281784,51.61167409977875],[5.451600885236643,51.611638562043176],[5.45161404650173,51.61162466744939],[5.451635092011067,51.61163217026631],[5.451676053541133,51.61162452533673],[5.451675500088913,51.61162112796613],[5.451675383541642,51.61162039096846],[5.45167498993515,51.61161772158304],[5.451674479794277,51.61161432418851],[5.451674012951847,51.611610917781476],[5.45167354610949,51.611607511374466],[5.451673122578375,51.61160410494348],[5.451672699047326,51.61160069851249],[5.451672318827507,51.611597292057596],[5.451671938594932,51.611593876614094],[5.451671601686391,51.61159047013526],[5.45167127920214,51.611587054659914],[5.451670985592039,51.611583639168536],[5.451670691994797,51.61158023266577],[5.451670441695935,51.6115768171505],[5.451670205834158,51.611573401627226],[5.45166999884651,51.61156998608805],[5.451949180925608,51.61158892319341],[5.45188254307144,51.61163184458503],[5.451831670318105,51.61166460911995],[5.452013626791012,51.6117492793117],[5.45220049094555,51.6117022280992],[5.452647635335554,51.61159144579104],[5.452701356416818,51.6116517828282],[5.452742105386529,51.61169681960684],[5.452764576635729,51.61172165136732],[5.452890063292561,51.61186034620583],[5.452964556595994,51.611838839556675],[5.453067509998337,51.61182047178253],[5.453103353297771,51.61181764711164],[5.453167057045098,51.611812613472594],[5.453254782564881,51.611816366004426],[5.453255403400657,51.61181639261865],[5.453252111804058,51.61182632684304],[5.4532611791348,51.61182687900059],[5.453270217867241,51.61182761993343],[5.453279271050241,51.61182836984592],[5.453288281197963,51.61182930854194],[5.453297291359195,51.61183025622577],[5.453306258498438,51.611831401681684],[5.453315225638133,51.61183254713687],[5.453324106431461,51.61183388140014],[5.453333001675583,51.61183522464306],[5.453341810573478,51.6118367566941],[5.453350619471968,51.611838288744444],[5.453359342037515,51.611840018591465],[5.453368035716309,51.61184173946567],[5.453376643049139,51.61184364914795],[5.453385221508427,51.611845558846],[5.453393699184743,51.6118476573604],[5.453425142160651,51.61185674493176],[5.453545844601551,51.61189163287968],[5.453630525873525,51.61191627627867],[5.453730141691835,51.611945279543],[5.453829959837472,51.61197433653832],[5.453904545492257,51.61199604624359],[5.453979044568772,51.61201773797368],[5.454053688141661,51.61203946552779],[5.454128360673783,51.61206120200621],[5.454245020407491,51.612095165729315],[5.454441566841369,51.61215211202327],[5.454548419685367,51.61218307891493],[5.454644396840908,51.61221097790742],[5.454718766581725,51.612232597332486],[5.454793771915164,51.61225440510191],[5.454868589542083,51.61227615001216],[5.454943306139414,51.61229786796745],[5.455059230385947,51.61233156164843],[5.455242852162831,51.612384981606276],[5.455344853214486,51.61241465624628],[5.455445684474522,51.61244399890472],[5.455521427164077,51.612466039478804],[5.455594988924103,51.6124874430942],[5.455669489602809,51.61250912475783],[5.45574432256169,51.612530905053],[5.455861100240079,51.612564885071706],[5.456043958396759,51.61261808849543],[5.456023787026122,51.612645021135776],[5.456014075931412,51.61265797937997],[5.457350195456608,51.61304599305726],[5.457348016761881,51.613093427005],[5.457550508978333,51.61309706233054],[5.457624200269727,51.613098384145324],[5.457766385213088,51.61310094089303],[5.457869298927951,51.613102784193366],[5.457869972274202,51.613062479076476],[5.457870183647094,51.61302219221629],[5.457878614820033,51.6126431304809],[5.458155145819474,51.61265043217082],[5.458335547747254,51.61265460989065],[5.45842465865095,51.612656667851546],[5.458553922914133,51.612660579810594],[5.458873279201914,51.612670226591334],[5.459388663191606,51.61268664563868],[5.459398769888784,51.61268696297496],[5.459825541967573,51.61269725075178],[5.459829512426931,51.61269735614371],[5.46006134397606,51.61270351262296],[5.460315049234584,51.61271025717526],[5.461220720179744,51.6127348722452],[5.461580574780434,51.61274464773732],[5.462429736391292,51.61276771644721],[5.463269831716695,51.61279052423358],[5.463273282429459,51.612790620858775],[5.463416104195346,51.61279449164217],[5.463921135014815,51.61280820091104],[5.464283040999121,51.612818029661],[5.464519191006154,51.61282443512162],[5.466268343344755,51.6128718915092],[5.466424116666645,51.61287611837735],[5.467057288069793,51.61289328653827],[5.471728093415211,51.613019855709965],[5.472038631420809,51.6130282594763],[5.472150754404388,51.612982731770344],[5.472171602790529,51.61297537294233],[5.472545346147058,51.61284499986459],[5.472880109698201,51.61273166955329],[5.472913619220924,51.612663197048505],[5.472955629168557,51.61255499782953],[5.473151658035595,51.61250083240959],[5.473213936971921,51.6124836273751],[5.473220257208911,51.61248187893722],[5.473248528272738,51.61157217951132],[5.473255439375404,51.611349770376584],[5.473265493282932,51.61102637239938],[5.47314550259668,51.611023368729434],[5.472798437768052,51.611014653129246],[5.472799185441741,51.611013043628006],[5.473035950448879,51.6105031193006],[5.473103105139008,51.61035600799607],[5.473170795699564,51.61021002881545],[5.47338755212326,51.6097425894405],[5.473436953044635,51.60963614632088],[5.473457072216791,51.609587952746026],[5.473762721207828,51.6095959600411],[5.473781960561129,51.609284258269],[5.473796704571694,51.609045178444894],[5.47381911079929,51.60904578203353],[5.47390316306929,51.60904806565559],[5.474014891083587,51.609051092667954],[5.47394725409083,51.608996744143774],[5.473873139908323,51.60893721398659],[5.473866549387136,51.60892570452618],[5.47383148211204,51.608864482463915],[5.473830019154473,51.60886192180816],[5.473723760937022,51.60863885945192],[5.473818341669674,51.608643903809416],[5.47435856822277,51.60867268761098],[5.475802843000325,51.60871527587544],[5.476917327806476,51.60874406904754],[5.477247239943806,51.60875258790111],[5.478208077421605,51.6087789074596],[5.478679401081474,51.60879171635719],[5.481270833536724,51.60887222618979],[5.48134029245749,51.608833627232656],[5.482509690827983,51.60886536096792],[5.482840414301124,51.608874330789035],[5.482910462133214,51.60881447245491],[5.48304921708129,51.60869588931961],[5.484064951402521,51.608726106612444],[5.484237801645174,51.608594271592146],[5.484471480633267,51.6084539184264],[5.48470515817474,51.608313564792375],[5.484709055287411,51.60830657742091],[5.484956166144884,51.60786303665184],[5.485049658299919,51.60780541352952],[5.485061306971671,51.60779823987852],[5.485248477074454,51.60756251046269],[5.485501576011785,51.607181847505935],[5.485622426001466,51.607000077738334],[5.485867136562692,51.60693297828444],[5.48608517100907,51.60687319064128],[5.486085906789779,51.60687299226967],[5.486257157432616,51.60688686928541],[5.486259943984739,51.60688709163568],[5.487299148550453,51.60693373695748],[5.487359032255128,51.60687721941559],[5.487359912040018,51.60684423960034],[5.487367299304599,51.60656851788657],[5.487363434437482,51.606550678891445],[5.487303550751471,51.60627404409462],[5.487244665763672,51.606089738995045],[5.487175315518751,51.60587267049771],[5.487133438210545,51.60574158108539],[5.487136743708355,51.60574150634781],[5.488144846189312,51.605717961038046],[5.488146154189991,51.60570249956646],[5.48816776027133,51.60544852680761],[5.487617054420983,51.60505523040058],[5.487613813084997,51.605019126099435],[5.487589778217399,51.60475192554355],[5.487581283076616,51.60465742701172],[5.487577568484763,51.60461618165257],[5.487487958132271,51.60361965079504],[5.487483059706231,51.60356520223398],[5.487467328271505,51.60339019926003],[5.487574880891439,51.60326714318669],[5.487675499650666,51.6031419357223],[5.487679370842794,51.60313668306486],[5.487772351356477,51.60301061918525],[5.487861836627634,51.60287733143107],[5.487955941465083,51.60272509170941],[5.488018964189713,51.60260965999115],[5.488040268791794,51.602570640176786],[5.488103603603594,51.60234931376489],[5.488239366097554,51.601874905315405],[5.488933072494728,51.599450614798066],[5.489389931937387,51.59785390767529],[5.489613158849108,51.59707368338435],[5.490206726082644,51.595025796851125],[5.490208100718039,51.59502104068011],[5.490249970612854,51.59487658423476],[5.490264505350518,51.594826711757456],[5.490692385079288,51.59335847124391],[5.490867246378656,51.59275843622883],[5.490878013923774,51.59272146562364],[5.490879688775536,51.59271553167306],[5.491375293099462,51.59095791271834],[5.491898958185958,51.589139593274865],[5.491978058280418,51.58886303347609],[5.492231054642643,51.58797841035623],[5.492232886742182,51.587971990858605],[5.49223855496228,51.58795220188435],[5.49247041520938,51.587141438414356],[5.492507543000609,51.5870116097588],[5.492577308671637,51.587024121836734],[5.492614813523896,51.58695729379987],[5.492635721302514,51.58692001723279],[5.492640713928104,51.586920066655104],[5.49278060843237,51.586921441314004],[5.493955015529325,51.586932966307714],[5.494183678103862,51.58694630278671],[5.494561120024597,51.58695937625359],[5.494887262016054,51.58697068013835],[5.494887288524252,51.586969691369454],[5.494887629776308,51.58695542616937],[5.495072785360775,51.586973466108674],[5.49516448551523,51.5869865586093],[5.495426669821161,51.58701279622767],[5.495524522688274,51.58702222438784],[5.495547141426798,51.58702561007276],[5.497149262838214,51.58717337671066],[5.497362258258758,51.58719302272648],[5.499080689788364,51.58735152030105],[5.500097529549554,51.587445281176564],[5.500126798778776,51.58744785956072],[5.500649002771559,51.58749569393028],[5.500725624450179,51.58750206427009],[5.500908584252732,51.587517283677755],[5.500956634080282,51.587517236872486],[5.500991841761659,51.587517202564214],[5.501073653156493,51.58750437698689],[5.501075511608731,51.587503206658134],[5.501250913147713,51.58748507625898],[5.501284597029104,51.58748159173399],[5.50153954134189,51.587455239493615],[5.50153736943006,51.587452266398536],[5.501630519527269,51.58743844058263],[5.501840258500836,51.587407314099615],[5.502234392758127,51.587348824228165],[5.502452701752781,51.587323297079806],[5.502537896165149,51.58731334348543],[5.502636198491778,51.58730012300196],[5.503031368896015,51.58724695964949],[5.503215343613022,51.58722472798956],[5.504055560662373,51.587162300313466],[5.504414481348224,51.58713125351499],[5.504627760436327,51.587108882346776],[5.505451366297159,51.58702470896125],[5.505639466571646,51.58700281087326],[5.50629690993238,51.58692725821987],[5.506417243404133,51.58691390421916],[5.506572789700966,51.58689172326182],[5.506755823650122,51.586869603841606],[5.506946397692852,51.586834218235936],[5.506996224264658,51.58682972676392],[5.507108520542822,51.58681649714858],[5.507800815598697,51.5867014762937],[5.507933404113577,51.58667944307492],[5.507955168367675,51.586675941985526],[5.508059951165503,51.58665908783636],[5.508164733885414,51.586642233593295],[5.508374299115515,51.58660853381402],[5.508483927703553,51.58659090123713],[5.508759313242279,51.58655540657252],[5.509556181864038,51.586440311345115],[5.509937136026748,51.586391552930415],[5.510529880674826,51.58633816536434],[5.511658306443945,51.58621830972093],[5.512208420366253,51.5861428291666],[5.512242416594183,51.586138163643554],[5.512434653141032,51.586111800836186],[5.512477606304819,51.58610590319005],[5.512821454550057,51.58605600665898],[5.51312216489677,51.5860080432464],[5.513348004498688,51.58596582277825],[5.513511424939066,51.58593421302407],[5.513554082650659,51.585925960291426],[5.513735481230698,51.58588918929587],[5.514412258725548,51.585751998193],[5.514703594748686,51.58570691726985],[5.514939093594713,51.58566288545975],[5.515202290952081,51.58561731273275],[5.515968805180618,51.58548458940085],[5.516649313560866,51.58537496720262],[5.516733466477294,51.5853614089767],[5.517060157230458,51.58542023599509],[5.518065498134707,51.585601267441426],[5.518103565499609,51.58562768718314],[5.518113729359541,51.585634749809344],[5.519266195932437,51.58537507510497],[5.519280456579176,51.585371859038105],[5.51928713123869,51.58538470517251],[5.519901234659562,51.58524243863968],[5.519996438700677,51.58523379125298],[5.520460019321622,51.58513115276853],[5.520449289557978,51.58511327771702],[5.520557473517677,51.58508315030705],[5.520572250765155,51.585079034633395],[5.520804531924329,51.58502820828877],[5.520842022158072,51.58502000374983],[5.521460926323959,51.5848845728249],[5.521947290136154,51.58477471136561],[5.52206725500569,51.58474761609445],[5.52207834465422,51.584745634784944],[5.522313634916296,51.58470345797591],[5.522384023678919,51.58468142637422],[5.522567290083263,51.58464606868668],[5.522651844846683,51.58461834870053],[5.52271476354732,51.58459771879534],[5.522820129264653,51.58456693639144],[5.522890765094052,51.58453601448024],[5.522975985159332,51.5845137765268],[5.523137626389818,51.58446539165018],[5.523291954896552,51.58440834108106],[5.523426124243338,51.58435533172625],[5.523469294348551,51.58433623453311],[5.523714178770538,51.584227887669975],[5.523784341552219,51.58418400422061],[5.523947041877943,51.58409996822769],[5.524039951923546,51.584058952311594],[5.52512750213054,51.58359947039083],[5.52513114280671,51.58361052205952],[5.525805573345583,51.58334626787143],[5.525798747638668,51.58333171445234],[5.526697450189068,51.5830288883186],[5.526740790198622,51.58301428400688],[5.526421043535557,51.582795595643276],[5.526470779221873,51.58276359087816],[5.526618934674714,51.58266824286634],[5.526962646034418,51.582447045188864],[5.527039376728888,51.58240145306974],[5.527098867826848,51.58237045206446],[5.527523628962817,51.58154789954754],[5.527609132923007,51.58138231674675],[5.527652266521793,51.581287731826684],[5.527598519858868,51.581221083107664],[5.527368440834592,51.58091620569598],[5.527257623693352,51.58079451623197],[5.527154112925483,51.580721365307596],[5.526340728654143,51.58014656386074],[5.525062555747002,51.57924326088411],[5.524965551518517,51.579106092545366],[5.524858275189251,51.57895438369818],[5.524819296904165,51.578855465200505],[5.524812523676904,51.578824606344064],[5.524352008498542,51.57655433196671],[5.52413189734491,51.57545579710825],[5.523892839953731,51.57426564515617],[5.523645408079185,51.572991944367516],[5.523081073578722,51.570188356677384],[5.523033613683134,51.56979662569273],[5.522750952277733,51.56843174721624],[5.522299994328362,51.56619130303602],[5.522261017864799,51.566097120587216],[5.521486062960138,51.56466066463011],[5.520329479927792,51.562534062534965],[5.520412683902447,51.56249208070655],[5.520415736727403,51.562490540170955],[5.520618576396005,51.56238820692812],[5.520670585269975,51.5623556716362],[5.52089051960024,51.56225064875644],[5.521017567599068,51.562185614428394],[5.521295450232813,51.562033513922735],[5.521393790486741,51.56199008481597],[5.521538502991232,51.561910405146406],[5.521623920989719,51.56186687386331],[5.522569483808325,51.561384971555235],[5.522622835338086,51.56135861799568],[5.522678058749365,51.561331327424],[5.522945293785808,51.56120047541564],[5.523206135883702,51.561059041660734],[5.523234675463986,51.56104475247291],[5.523224346713234,51.56103403210963],[5.523317905217269,51.56098433289979],[5.523531125125633,51.560871070303655],[5.52354730138447,51.5608745210142],[5.523709689658393,51.5607910607581],[5.523755821790723,51.56076218932186],[5.52386476191878,51.56071105147791],[5.523989182371938,51.560652659563104],[5.523911204266812,51.56058422175217],[5.523906273712107,51.56057989501659],[5.523917648645208,51.56057407505356],[5.524194908057796,51.56043218839759],[5.526106116502326,51.55945409940368],[5.526108909994941,51.559452765765286],[5.526111472237177,51.55945126161839],[5.526114077657994,51.5594497304542],[5.526116408594613,51.55944803782165],[5.526118782737332,51.55944632716041],[5.526120839189587,51.55944447305939],[5.526122910034585,51.55944260995262],[5.526124648823759,51.55944062140038],[5.526126387612782,51.55943863284817],[5.526127794401087,51.55943653682771],[5.526129186796354,51.559434449812976],[5.52613020403976,51.55943229133579],[5.526131221338138,51.55943015083575],[5.526131877960228,51.55942795683334],[5.52613253469239,51.55942579878518],[5.526132816410493,51.55942361421755],[5.526134479632494,51.55940637208294],[5.526135796735454,51.559389121371645],[5.526136140780642,51.55938374577305],[5.52613583590668,51.55937837094677],[5.526135516474695,51.55937295119471],[5.526134519365628,51.5593675592151],[5.526133522174201,51.55936214026972],[5.526131847388613,51.55935677606236],[5.526130172575889,51.55935140286647],[5.526127834727393,51.559346129334294],[5.526125482431498,51.5593408468307],[5.526122481658193,51.55933570891652],[5.52611948088557,51.559330571002256],[5.526115860559195,51.55932560460883],[5.526112254736606,51.55932066516383],[5.526108058256343,51.559315915182346],[5.526103890755401,51.559311210109364],[5.526099147072399,51.559306712459794],[5.525230600822224,51.5585335805929],[5.525223573561387,51.55852732384007],[5.525078358485376,51.558398059448734],[5.524162234264995,51.55758254955432],[5.52416203181705,51.55758236103101],[5.524706807724534,51.557413202077804],[5.524848809490335,51.55736881074695],[5.5252294195074,51.55724981950129],[5.526506024674949,51.556852624293214],[5.526562050962798,51.556910848571135],[5.526648571526506,51.557000748222286],[5.526881569827648,51.557198857314944],[5.526942148126938,51.55725527824037],[5.527013157901912,51.557318257316375],[5.527070494662944,51.55736616984158],[5.527144717466134,51.55742819219466],[5.527296687847302,51.55756342335086],[5.52742480554325,51.55767902486903],[5.527676372051201,51.557905972498936],[5.52774674712013,51.55796356771287],[5.527787847525075,51.55799720753919],[5.528277278010336,51.55842836707117],[5.528440281993102,51.55835836440775],[5.52960387601625,51.557858676057165],[5.529365098948073,51.557652795289],[5.529099831595425,51.557422856753476],[5.529247607987316,51.55736354094656],[5.529706272566636,51.55717943445859],[5.530507994458959,51.55685429664935],[5.530797390793461,51.55673834745516],[5.531385669455991,51.556502650987476],[5.531396959217839,51.556516021088065],[5.532109848035698,51.55736002304152],[5.53261909954089,51.557962921214845],[5.533083128499178,51.55780363932023],[5.533415847447321,51.557358394581584],[5.53363895340541,51.55705981880425],[5.533950613456726,51.55664274227205],[5.533962286066985,51.55662712336426],[5.534567018876957,51.555815903130274],[5.534569488219518,51.55581258321427],[5.535145493854002,51.55505088749271],[5.53588330943767,51.55406675733543],[5.535989716207282,51.55392488027159],[5.536438664673785,51.55332632149669],[5.536788549982202,51.55285981387788],[5.537587877364377,51.55179401318608],[5.537839434296473,51.55146110097299],[5.538101599096446,51.55111518593999],[5.538114274427904,51.5510984597118],[5.53843655217069,51.55067323150667],[5.538584504244565,51.55047802264928],[5.539445319490325,51.549342125844284],[5.539929378247423,51.548703373370756],[5.540188769874331,51.548361097571],[5.540656015138287,51.54774452999469],[5.540657349996201,51.54774278444731],[5.541217126091285,51.54700405438113],[5.54224245007375,51.54565089804165],[5.542259126560646,51.545628934660535],[5.542291187818137,51.54558669946843],[5.542315240300311,51.545554838793],[5.542329390743499,51.545536168594516],[5.542333423454314,51.545530841969956],[5.542410992238707,51.545428466295775],[5.543037944811216,51.5446010191305],[5.543027605718078,51.544587558986116],[5.543447365965345,51.544031096378696],[5.543576957884198,51.543862476008826],[5.543577101419634,51.54386229604404],[5.543712711519482,51.543683420425346],[5.544700915763214,51.542360502563334],[5.544704133807854,51.5423573522019],[5.544765316745921,51.54227585065164],[5.545207423107812,51.54168695640324],[5.543679531701058,51.54049897450473],[5.54365809449385,51.54051068845802],[5.543015665227456,51.540014027343645],[5.543042862516669,51.540000687863945],[5.544270341841333,51.539367052039],[5.545753921789543,51.53860117447432],[5.547405439329411,51.53774855000373],[5.547437422482179,51.53773202994071],[5.547793640831191,51.53798878594404],[5.547804897826335,51.53799690516448],[5.54784479583618,51.53802566780352],[5.547914462098573,51.53807588125627],[5.548556708753454,51.5361863940245],[5.548564268556179,51.536164127722515],[5.548570045478646,51.536147140211455],[5.548585864098552,51.5361005841965],[5.548608087232728,51.53603520611746],[5.549005382363905,51.53486626873084],[5.549069594669673,51.53467733752054],[5.549411542559176,51.53367118759185],[5.549471900748211,51.53349360515136],[5.549501780079495,51.53340567274968],[5.546693124609595,51.53304930739878],[5.54695495938843,51.53225753608708],[5.547100639406457,51.53181698342065],[5.54724523639215,51.531388881298376],[5.547248702174774,51.53137860253674],[5.547511032288249,51.530601966040784],[5.547541339539416,51.53051224479676],[5.547588062326854,51.530373908425304],[5.547749436360774,51.52989612035546],[5.548156085146251,51.52870789178515],[5.548180672911259,51.528692487302834],[5.548239276535637,51.528678923494034],[5.549721064340638,51.52853894768341],[5.551201776971657,51.52839905345254],[5.551227827042719,51.5283220471438],[5.551229053329116,51.528318440976825],[5.551276476346882,51.528178214496165],[5.551576464726768,51.527291449777906],[5.551578147106388,51.527286467702936],[5.551871223381333,51.52642013407863],[5.551878209410889,51.52639948630699],[5.552022732869159,51.52597222307096],[5.552056179542015,51.52587336372146],[5.552321466096684,51.52508907146893],[5.552327468018393,51.52507132839092],[5.552352744471794,51.52499660601733],[5.552355695494526,51.524987873872064],[5.552582110482761,51.52431851079072],[5.552728374280431,51.52388609364438],[5.552832510610077,51.5235781928162],[5.553044015058318,51.52295285830347],[5.553223611940293,51.52242188658673],[5.553282654581955,51.52224731506333],[5.5534902124953,51.52163360759893],[5.553577034205696,51.52137688507974],[5.553591216884671,51.52133493284207],[5.553692334160399,51.521035970192266],[5.553738758684998,51.52089870130819],[5.553739642434542,51.52089609334059],[5.553907992280164,51.52040249332452],[5.552658212955919,51.52024697088399],[5.55171012360758,51.52012897816019],[5.551236779885661,51.520070067814885],[5.55100505264114,51.520041225198455],[5.550660085002452,51.51999807808413],[5.55037754700452,51.5199627346928],[5.550109135598788,51.51992915963644],[5.549619895842883,51.51986794586397],[5.549621021303,51.51986437580639],[5.55068406906476,51.51688665251336],[5.550719199179844,51.51678823156072],[5.551078226117606,51.515799408368224],[5.551395813879166,51.514924681259174],[5.551679070670102,51.51414449027204],[5.551694703924274,51.51410144857052],[5.551722441325071,51.51402345093037],[5.552177906619884,51.512742869397115],[5.552250489368025,51.51251084165637],[5.552366951430486,51.51238995930857],[5.553217371245545,51.511507244589794],[5.553306481405404,51.51143999053088],[5.553602514895483,51.51116214304006],[5.553665126895106,51.51116799522101],[5.556957113662327,51.51147551760626],[5.557002626321445,51.511323057817314],[5.557099170843998,51.51099966745694],[5.558476023511198,51.51113586388262],[5.559897806235143,51.511269919188244],[5.560063800505813,51.51128580800356],[5.561316694295086,51.51140574126449],[5.562210874296313,51.511488429378836],[5.562328476124562,51.511495120253564],[5.562434729639087,51.511498861799296],[5.56262465256525,51.51150348421214],[5.562699892791628,51.511503829487154],[5.562945723684063,51.51150496956235],[5.563099169537304,51.51150883716208],[5.563570338779297,51.51153124471469],[5.563954468180984,51.511552784512475],[5.564324880545541,51.51157711237529],[5.564661002651086,51.51160728890087],[5.564803021910105,51.51162127488418],[5.56495313706111,51.51163894269731],[5.564969959582982,51.51165292138648],[5.565524884243558,51.511704748104194],[5.566003380799487,51.5117543343033],[5.566040159159943,51.511776650690535],[5.566049010379297,51.51178557184286],[5.566097225456838,51.51189171681745],[5.566104459945896,51.51189246976062],[5.566101563449731,51.51190318867356],[5.566084497114899,51.511966423032035],[5.566152453129653,51.511971478315104],[5.566164291560709,51.51191955968803],[5.566168241551977,51.51191298292571],[5.566194932711859,51.51186857400253],[5.566288351022838,51.511824512109165],[5.56636586015662,51.51181194383766],[5.566438345830041,51.51180405732999],[5.566501216248658,51.51180538993177],[5.566558222324948,51.511806380956855],[5.566766702113107,51.51182218594586],[5.566985482314284,51.51184173194853],[5.567104958516256,51.51184843310423],[5.567259629152526,51.51185199672514],[5.567343515286199,51.5118746534764],[5.567438759184205,51.51189161179624],[5.567609146794902,51.511913433592106],[5.56839762377124,51.51197372117013],[5.568775394591332,51.51199950662307],[5.568947575610869,51.51200124302915],[5.569048358269516,51.51199815570564],[5.569257493094084,51.51198645894417],[5.56970257722042,51.51196462234062],[5.569842167049988,51.51196845781065],[5.57025251542679,51.51200288850428],[5.570287135978708,51.51200036230789],[5.570899689620417,51.512051371943286],[5.571344116155489,51.51210189775549],[5.571410624595543,51.51211212972771],[5.571476467970026,51.5121253109902],[5.571508214790407,51.51213524724175],[5.572091819267851,51.512360370583146],[5.572122940960408,51.51237237504824],[5.57218395026538,51.51239401290584],[5.572246080199031,51.51241136136753],[5.572312127939951,51.51242503621107],[5.572412491766987,51.5124391778955],[5.572480647089638,51.51244683589043],[5.573503362946371,51.51253923778567],[5.574474585673008,51.51263235157678],[5.574614102119478,51.512645736400835],[5.575936565491147,51.51277264598694],[5.576359835695047,51.51280764556042],[5.576559007624712,51.512824553769114],[5.576842108388482,51.51284857911149],[5.577209946095487,51.512879989321085],[5.577626005458307,51.51292292404075],[5.577836997080223,51.51294469162033],[5.577978939043676,51.51295545276605],[5.578123921690737,51.512966451458006],[5.578644030029147,51.513001203376376],[5.579370661260803,51.513032700730676],[5.579448270912741,51.51303063134608],[5.579649495229937,51.51300442132485],[5.579735827280331,51.512997195854034],[5.579847276137468,51.512991753553074],[5.579974095127037,51.51298272624868],[5.580018211327552,51.51297388942366],[5.580069116494591,51.51295578304845],[5.580103560432716,51.51293536681445],[5.580171223822233,51.512945430095584],[5.580226312140234,51.512884557710215],[5.580375546132726,51.51271969255959],[5.580394394122116,51.5127277241785],[5.580396573303931,51.51272864640194],[5.580700934564711,51.51244061304631],[5.580739359302503,51.512387678061415],[5.580747694472623,51.512376203703134],[5.580769405924209,51.51234629839319],[5.580895033887739,51.51217325609419],[5.580923649601285,51.51212744735402],[5.58091994380976,51.51212660857262],[5.58091533174269,51.51212606792123],[5.580767961696922,51.51210875763271],[5.580795946427441,51.51202303135796],[5.580846451283835,51.51184373177123],[5.580818571601859,51.51183913089985],[5.581086501709742,51.51120540835796],[5.581237698469045,51.510847786099866],[5.581242820265159,51.51083616424073],[5.581277873671536,51.51072623761519],[5.581387998498508,51.51043931630384],[5.581494282232655,51.510163996642305],[5.581540578739741,51.51009308894067],[5.581807731662223,51.50968286886232],[5.582083514222883,51.50925391936042],[5.582410176774099,51.508749864751344],[5.582460746711996,51.50867183050889],[5.582466809815814,51.5086480992979],[5.582322280980748,51.50848153856901],[5.582322020391898,51.50848123339043],[5.582345899465571,51.508430146875526],[5.582043424860909,51.50844741619331],[5.581927872685653,51.50845400901218],[5.581369509335929,51.508485887441076],[5.58062413377221,51.50853139454318],[5.58048819184559,51.50853969162489],[5.579677233894198,51.508589193388566],[5.579648797881938,51.508340515189055],[5.577928473493301,51.50839795496902],[5.577844911307101,51.50840074318289],[5.577388055582515,51.50841599642663],[5.577218506036404,51.50827569008952],[5.577054244837401,51.508021848178906],[5.577038229703937,51.508025856210836],[5.576990146137145,51.50794943198229],[5.576988855538434,51.50794736669066],[5.576932998602438,51.50785827208854],[5.576629791489689,51.507374635723814],[5.576559031674214,51.507158573399344],[5.57647582011638,51.50703062006151],[5.576266328850983,51.506794962535345],[5.576212494284993,51.506710053021095],[5.576210232465511,51.50670648818845],[5.575783858328788,51.50605218368535],[5.575375891295148,51.50542611724912],[5.574907867931775,51.504707868449316],[5.574853613078522,51.50462460390186],[5.575340124614867,51.504503498232026],[5.57540156061927,51.504487758884224],[5.576102097944824,51.504307617655456],[5.577296636607353,51.5040033799494],[5.578377728845133,51.503728016730875],[5.57779002908172,51.50336254656414],[5.577519041717917,51.50319402909374],[5.576996509344774,51.50286907735323],[5.576319275940726,51.50244789886227],[5.574807690028433,51.50150778849406],[5.574805277577017,51.501506021607405],[5.574427594033285,51.50122940906987],[5.574189227479521,51.50105483608397],[5.574189097455581,51.50105473741709],[5.574055215530819,51.50098795045075],[5.574047297530966,51.500978192458916],[5.573399958617525,51.50018049509116],[5.57352114113249,51.50015396484471],[5.573572753729477,51.50014266455722],[5.573582638827521,51.50014050047557],[5.574365630534171,51.49996907363768],[5.574422350708337,51.499956659174664],[5.575213724604771,51.49978338849047],[5.576061193080016,51.499597842004526],[5.576729929934459,51.499453163659496],[5.575212922660614,51.498872397974544],[5.574602683258106,51.498638766778996],[5.57441662834036,51.498567533734175],[5.573747735515307,51.498311439633525],[5.573699675474232,51.498293044774535],[5.570156117347305,51.496936262465475],[5.570198528442144,51.49688645269109],[5.57022340034395,51.4968583241051],[5.571367100044509,51.49556436801517],[5.571996374030713,51.49485528195778],[5.572415893467681,51.49438254101709],[5.572711086989059,51.494049877909454],[5.572766673640274,51.49398724637517],[5.573888250781674,51.49272717863621],[5.573934587780205,51.4926710601439],[5.573961752300672,51.49264130911842],[5.574039175327643,51.49255319509503],[5.574390228317253,51.49215756247555],[5.575077123846065,51.49138340596967],[5.575107464999866,51.4913492001672],[5.57575717408289,51.490616923752306],[5.575979729743283,51.49036608560202],[5.576406160073043,51.489885444825084],[5.576409398952102,51.489881799161296],[5.577152932466666,51.48904370982648],[5.577235728317087,51.488948753510094],[5.577266502978089,51.48891569698034],[5.577384744569305,51.488782409046514],[5.577461713712936,51.488695641755065],[5.580396655698016,51.48538706801134],[5.580402143638604,51.48538091965917],[5.580477069108909,51.48529702111723],[5.580637170774356,51.4851159036541],[5.581545918338552,51.484091347391185],[5.582516416991224,51.48299710821794],[5.582716333490421,51.48277168791708],[5.582941863960325,51.48251737963294],[5.583365296391051,51.482039935982414],[5.58377476642575,51.48157822650469],[5.584394041388582,51.48087990272041],[5.585439450975348,51.47970099165149],[5.585834411148337,51.4792555869677],[5.585900969389995,51.47918202712415],[5.585911857056842,51.479169990715214],[5.585751680150053,51.47911327529467],[5.585748407394648,51.47911211233811],[5.58811092370863,51.478124696424665],[5.588726071375947,51.477868653345574],[5.589958256828184,51.477355754145556],[5.590311963185714,51.47720852438375],[5.58961415307011,51.4766079275126],[5.58934595508739,51.47637708699617],[5.588927978575888,51.47601732871922],[5.588928639382817,51.47601703094989],[5.590287509075346,51.47540056611003],[5.590202396421748,51.475332481219894],[5.588963748799122,51.474177778558094],[5.588708763286372,51.47396229333375],[5.588569503972237,51.47384460238348],[5.587472517262893,51.47291752021808],[5.587043089676505,51.47259759468072],[5.586573293747584,51.472247588548285],[5.586526349205012,51.47221261293951],[5.586854062309217,51.472131028397435],[5.587012872021638,51.47209148486565],[5.587011947609709,51.47209074038896],[5.586968831118353,51.4720557044667],[5.586764314188306,51.471889566271635],[5.586761396458936,51.4718871982527],[5.586208317035635,51.471437891353375],[5.585439518591567,51.470813336866435],[5.584342984245381,51.46992250280871],[5.585049817981975,51.46978169355299],[5.585937858424693,51.46960478739779],[5.585938275437626,51.46960470578897],[5.586258189623398,51.469540682082894],[5.586846652224374,51.46942291315014],[5.586993005754047,51.46939372793578],[5.587001920979221,51.46939195087986],[5.588687026838066,51.46905537372145],[5.589849489485368,51.46882317727742],[5.589895042160562,51.468814073472466],[5.589973407721843,51.46879842277035],[5.590018787647231,51.46878931921738],[5.591464781191148,51.46849914855201],[5.591465356330075,51.46849903069175],[5.594323800822066,51.467925364700555],[5.594325842560234,51.4679249565834],[5.594177630724115,51.46784413280164],[5.594175986017189,51.46784323685221],[5.595025082891914,51.46767594844719],[5.596103609402252,51.46746345247217],[5.59691204478175,51.46730416914747],[5.597146773024656,51.467205608330254],[5.597150047907934,51.467204236154174],[5.597232829392217,51.46720171407848],[5.597697919417818,51.46718757225508],[5.598345380057011,51.467171300789495],[5.599490073425709,51.46714886326023],[5.60124842123688,51.46713195939581],[5.601512690207711,51.46712932575074],[5.601522044073978,51.46712922766253],[5.601613676630712,51.466632191552684],[5.603066992774383,51.46654430668861],[5.604029436133007,51.46648609920476],[5.603965251940491,51.46636225552413],[5.603893191513003,51.46621022892757],[5.603895693629464,51.466046666103836],[5.603912578992886,51.465727419429946],[5.603063375535949,51.46578191981825],[5.60248014761793,51.46581934818776],[5.602419863642037,51.465438932325874],[5.602413336826542,51.465397731234454],[5.602990034129666,51.46536201413758],[5.603061362332994,51.46535759452475],[5.603102148007179,51.46535506511039],[5.603060032133996,51.46507722180745],[5.603039977109386,51.4649449094731],[5.602972608056277,51.464500462573355],[5.602922561315074,51.4641703107207],[5.602917837221712,51.46413910174145],[5.603055322557701,51.46408452868617],[5.603644716196832,51.463850593209344],[5.603649614031571,51.46384865155023],[5.60365555418225,51.46382684295191],[5.60368878971337,51.46370462496279],[5.603992492650828,51.46307598502921],[5.603802349122769,51.46304094090163],[5.603849602700733,51.46286801858445],[5.603935834971047,51.46255245418651],[5.604241435766486,51.46143407016699],[5.60420726355246,51.46142560349684],[5.603487819944437,51.46124725619396],[5.603041338127063,51.4611365697692],[5.602601182834435,51.46102745196161],[5.599691439622767,51.46030606392182],[5.599662007946368,51.46029862997164],[5.599788061630137,51.460435226080726],[5.599574148765966,51.46038203428634],[5.599183177663985,51.46028547907761],[5.599229021719482,51.46024849715177],[5.599083600986074,51.460219719023875],[5.599089220170853,51.46017805522037],[5.599094449723525,51.46013924153945],[5.599056245594961,51.460129720023794],[5.599057930935074,51.460127020354534],[5.599084148843763,51.459941832652206],[5.599087834262174,51.45993604622715],[5.599120736763514,51.4599442110867],[5.599155345947138,51.459886296967866],[5.599067780738484,51.45982580940505],[5.599131265674586,51.459841433236264],[5.599222106665173,51.459863784768274],[5.599314168209069,51.45992879433667],[5.599355353402838,51.459938885620346],[5.599283927623363,51.45987431495431],[5.599259308099216,51.459828005050504],[5.599008477673885,51.45962973896018],[5.598478566710649,51.45921523402723],[5.598384177031624,51.45912856527067],[5.598311593153216,51.45903710194275],[5.598241232010806,51.45891913588473],[5.598170594510493,51.4587911389043],[5.598133220539468,51.45865001215489],[5.59812111188945,51.45852414743489],[5.598121336289585,51.45851047522926],[5.598123355191515,51.45838417147265],[5.5981238557662,51.45835247644065],[5.598148090720526,51.458164155464196],[5.598164573586703,51.45810382949946],[5.598205377331632,51.45795448945167],[5.598226526231594,51.4578702810677],[5.598229011014535,51.457853818275844],[5.598237380114877,51.457728653571095],[5.598221272462261,51.457562661581576],[5.598180824884093,51.45746908159233],[5.598172331098962,51.45744943869121],[5.59813406522172,51.45736087941674],[5.598115220410898,51.45733374068949],[5.598559332046559,51.456885865912774],[5.599054058348859,51.456386904614206],[5.599365558884441,51.45607274968518],[5.599511799730792,51.45592545543554],[5.600269424231971,51.45516230861065],[5.600365520643235,51.45517816879615],[5.6005445030846,51.454963748725895],[5.599355507009741,51.45447205241466],[5.598881152568835,51.45427588239728],[5.598224772262228,51.45400443613686],[5.597948413030835,51.45389014137767],[5.597440917206215,51.453680254733186],[5.597777709189587,51.45334265181035],[5.598474992169877,51.45264366092216],[5.595442573018587,51.451450671814506],[5.59537523895645,51.45142417653601],[5.595371318841018,51.45142263747992],[5.595484477925994,51.45136525828973],[5.595694274611193,51.45125564369214],[5.595838406781271,51.45119206049682],[5.59600029842152,51.45113320033827],[5.596197643885489,51.45106952138543],[5.596641719550955,51.45090436619291],[5.596723752764674,51.450873854985076],[5.59694112522789,51.45075789647902],[5.597193789729741,51.45060229677709],[5.597486787339006,51.450405455555966],[5.597792427034167,51.45020226271667],[5.597875817619399,51.45015464275414],[5.59808304176171,51.450038700445106],[5.598259985283968,51.44994814273381],[5.598337079433463,51.44991101465806],[5.598378805868084,51.449890930246866],[5.598464793194231,51.449857534264055],[5.598560929606154,51.44982569284081],[5.59864188970396,51.44980022488253],[5.599398649340227,51.44962628497802],[5.599759359893145,51.449546707139994],[5.600114938791256,51.44946826114364],[5.600600903988686,51.44936130602402],[5.600823623957721,51.449309446843486],[5.601046343419121,51.44925758723792],[5.601241216816173,51.44921290636901],[5.601332316046269,51.449187408936275],[5.601418307279488,51.44915558378583],[5.601509332281787,51.449117421275716],[5.60153269310555,51.449104911008156],[5.601577578033964,51.449080882593044],[5.601810075820571,51.448955395098544],[5.602231605386173,51.448727995344726],[5.602742790927712,51.448451152295775],[5.603122582755499,51.448248716166816],[5.603292291697276,51.44816501357895],[5.603391244515322,51.44809460142529],[5.603414404163884,51.44801269839655],[5.603437563729381,51.44793079536282],[5.603442010556106,51.44793117362912],[5.603451177654465,51.44793195662001],[5.603461582425473,51.4479328541675],[5.603475138768738,51.447934006539995],[5.603517765113924,51.44793765776783],[5.603558563748241,51.44794114158665],[5.603618689637726,51.4479462883799],[5.60371391535242,51.4479544351097],[5.603848329131063,51.44788153874577],[5.605625976919648,51.44804887233007],[5.605626776815591,51.44804469108623],[5.605628755041836,51.44803425149997],[5.605886109212047,51.44806165200476],[5.607661095433682,51.44822887869287],[5.608613955544375,51.44831001174595],[5.608694419239569,51.448006840838765],[5.609260246622202,51.44805961581595],[5.609348741555039,51.4477229282625],[5.609544086932718,51.446979738636756],[5.609737768466529,51.446827352191065],[5.610380378998292,51.44632175879559],[5.610973152873918,51.445855358346186],[5.61098306699485,51.44584722251875],[5.611200503436758,51.44566879269489],[5.611255073609798,51.445624013983974],[5.611348341105722,51.4454863974455],[5.611762232762525,51.44487565456108],[5.611945505162453,51.44460521784383],[5.611942359549642,51.444603219426995],[5.611694187442114,51.44444526269254],[5.61166176197163,51.44444451614351],[5.61170979254993,51.44438075667493],[5.611731545180004,51.44440487641687],[5.611828801753456,51.44448765479667],[5.611961212979728,51.44457614506235],[5.61199059603516,51.444595773671004],[5.612205159904605,51.44472289148286],[5.612402125965807,51.44484276204565],[5.612454194822793,51.44487431966658],[5.612480034514546,51.444889981991494],[5.612519716938136,51.44491829162931],[5.612650731431568,51.445011772543076],[5.612708079102122,51.44504901868028],[5.612747277559883,51.44502603963764],[5.612807372994751,51.445045923224704],[5.612902452059052,51.4450601930299],[5.613012173351789,51.44507714898663],[5.613102795880518,51.44508322057451],[5.613205042264116,51.445083759484376],[5.613350939032122,51.445068609251535],[5.613464636699495,51.445046276436685],[5.613600086675172,51.44501015754421],[5.613624136320355,51.44500130190989],[5.613624937003371,51.445011898035986],[5.61351401178032,51.445186808861735],[5.613650890838107,51.44523838092496],[5.613713883036287,51.445178285927184],[5.613731664000279,51.445161325651135],[5.613793130750163,51.4450924605996],[5.613934516533751,51.44493407442778],[5.613974812127161,51.444888926695256],[5.61395804360122,51.44488096835391],[5.613938656412217,51.444872862295036],[5.613939900756534,51.44487143965984],[5.614101106835068,51.44468709131214],[5.614170603333227,51.444607603759735],[5.614157410622491,51.444710990545566],[5.614532238337776,51.44487028615185],[5.614692574800357,51.44493842237605],[5.614766985896829,51.4449703308714],[5.615206924575978,51.44515898913974],[5.615480916866307,51.44527648363975],[5.615493328512006,51.44528180761523],[5.615656803907465,51.44535572509503],[5.615971849553634,51.44549282325168],[5.616196529071249,51.44558895679154],[5.616402185192332,51.445652066847636],[5.616807824693805,51.44582824727203],[5.616804354501618,51.44583040240636],[5.616825445704987,51.44586530894782],[5.616845153630884,51.44587692847904],[5.616989800292711,51.44577913401899],[5.617073873959111,51.44571567881983],[5.617206296515166,51.44561861829801],[5.617224731592715,51.44560322922129],[5.617316209195727,51.44553625364335],[5.61735169375552,51.445510269166284],[5.617868623283459,51.44513179389956],[5.617927174915126,51.44486361689698],[5.617954798479072,51.44473705519859],[5.61793882252279,51.444738021643374],[5.618018638603675,51.44452769874694],[5.618052898659408,51.44452994999914],[5.618169946165094,51.44454486414115],[5.618212454643129,51.44455118886583],[5.618360838460783,51.44457324966137],[5.618506271460483,51.44459487567624],[5.618651834145592,51.444616519229875],[5.618799325937849,51.44463845539724],[5.618947292911151,51.444660462343315],[5.618967302053182,51.444663433784186],[5.618989326519347,51.44466670683081],[5.619137192895909,51.44468869575891],[5.619232833937662,51.444702914345676],[5.619379289810957,51.44472469004545],[5.619525846604168,51.444746483337845],[5.619675700014111,51.444768764251656],[5.619696342701053,51.44477184216872],[5.619751490507149,51.444780037744046],[5.619880505344246,51.44479183418543],[5.619920771248338,51.44479552008458],[5.619948918225512,51.44480056948122],[5.619950434665784,51.44480176195161],[5.619978611388603,51.44482388083258],[5.620013447796366,51.444722184972946],[5.619984917001294,51.44473208457493],[5.619976130960324,51.44473261447355],[5.61994700066546,51.4447321692636],[5.619773593591853,51.44471420532155],[5.619767808079668,51.44471360563069],[5.619629138599221,51.44469274972091],[5.619533554166152,51.44467836954942],[5.619386909954811,51.444656315768576],[5.619346488184632,51.44465023900015],[5.61919749772537,51.44462783010501],[5.619008791052681,51.44459944160719],[5.619025462967088,51.444554375045435],[5.618758699828164,51.44446491925917],[5.618790589533223,51.44433769270741],[5.618668847862653,51.444256667594125],[5.618694878635445,51.444227519471596],[5.618842090024303,51.444140872582736],[5.619165346882342,51.44424909206944],[5.619172393779386,51.44431376975934],[5.619306470856397,51.44433413198603],[5.619455288809847,51.44435673883635],[5.619646213003153,51.44438573342221],[5.619741740010384,51.444400248446],[5.619756581484485,51.44440249298488],[5.619863833988923,51.44428518313337],[5.619520420314123,51.44422432229245],[5.619576432458826,51.444106090087075],[5.619420175749758,51.444032136746706],[5.619346484591336,51.44399789271802],[5.619250964582425,51.44395351687842],[5.619201005849626,51.44393029960364],[5.619064293709799,51.44386677873448],[5.619281292733906,51.443562618606634],[5.619334357354878,51.44351517843678],[5.61949446265818,51.44356290416929],[5.61952677662177,51.443575720594644],[5.619615272699915,51.44361084285585],[5.619720819510796,51.44365271751751],[5.619866348854318,51.443538836904146],[5.619858642336887,51.443533836585836],[5.619886968401387,51.443481205114296],[5.619193080972858,51.44332634627187],[5.619141701295085,51.44331488003769],[5.618950446072432,51.4433046806724],[5.618961052529417,51.443223842135296],[5.618963013049676,51.44320773946596],[5.618986037854878,51.44303469706053],[5.619029936241978,51.44295831364043],[5.61905549909541,51.44291373275622],[5.619126943286979,51.44278962740584],[5.61915655599732,51.44273819803669],[5.619089986086891,51.44272354404532],[5.619132931674088,51.442646569224884],[5.619175805840625,51.44256972037206],[5.61921897930223,51.442492358551036],[5.61929886884587,51.44234916224788],[5.619435914120717,51.44229270991564],[5.619743893284474,51.44195215211298],[5.619682701856886,51.44191460248487],[5.619597588056706,51.44186236802456],[5.619412846099935,51.44174900204347],[5.619351280065626,51.4417112192816],[5.619289699704508,51.44167342752712],[5.61925266212351,51.441650705895384],[5.619215970781064,51.44162818131442],[5.619482675499807,51.44141323361109],[5.619680512554381,51.441223851697345],[5.619736577751864,51.44119003222953],[5.619881877849095,51.44110038558002],[5.619936658525626,51.441136105217645],[5.620005177755794,51.441180777113686],[5.620164478122502,51.4412975368016],[5.620374311217361,51.44117351358944],[5.620317546870955,51.44114372168153],[5.62034948237203,51.4411138153101],[5.620466347538105,51.44098801828053],[5.620521275355401,51.440928888509625],[5.620521561446526,51.44092858232098],[5.6205419525765,51.44093622685368],[5.620711663721024,51.44074669272868],[5.620716468867477,51.4407413258341],[5.620794909925174,51.440653726538315],[5.620958955807193,51.44047051347175],[5.621004306562742,51.44046802254331],[5.621023309237855,51.44047139115154],[5.621144792509146,51.44042209605138],[5.621083517393684,51.440401679800836],[5.621083258089698,51.44040159942267],[5.620968012640425,51.44036320609457],[5.620887907144555,51.4403365174261],[5.620629990731199,51.44025724138465],[5.620612617244274,51.44025181103643],[5.620536122044503,51.44022789240894],[5.6204509594812,51.440199406832306],[5.620384444428058,51.44017516252082],[5.620248374956551,51.44012292258027],[5.620161009391683,51.44008545248845],[5.620125939249004,51.440070412546504],[5.620014340058481,51.440019085230674],[5.620366210102967,51.43974882862089],[5.620340556696712,51.4397301834143],[5.62028564084844,51.439690266508634],[5.620228097691358,51.43964844023415],[5.62047526447246,51.439516836613095],[5.620518903099636,51.439508794276186],[5.620519132987915,51.43950874887259],[5.62065271567835,51.43943532234703],[5.620716992366465,51.43939908597089],[5.620781154170079,51.43936290372154],[5.620845330115772,51.439326694442215],[5.620986301969944,51.43924720332195],[5.621062868132982,51.439204002824965],[5.621127302050639,51.43916770298494],[5.621177253232144,51.439137095064034],[5.621186144451418,51.43912925704206],[5.621240588945766,51.43908584015406],[5.621293424972104,51.43904290287174],[5.621345444392325,51.43900060540377],[5.621398710023848,51.43895734361693],[5.621451502698089,51.4389144243268],[5.621490087412768,51.4388830570925],[5.621613532449285,51.43878271966094],[5.621667527081843,51.438738683255224],[5.621720131865055,51.43869568332176],[5.621771605083007,51.43865360248955],[5.621929318149056,51.438524656611186],[5.621946577280729,51.438508001735066],[5.622042353426827,51.43855633887532],[5.622190388373258,51.438450117617364],[5.622096923543694,51.438367493004094],[5.622201861889358,51.43828223034256],[5.622310466317979,51.43819399391785],[5.62241017631488,51.4381129752935],[5.62251568635086,51.43802724378029],[5.62234437385815,51.43784199058347],[5.622216086240472,51.43773890608686],[5.622087900200642,51.437635884165616],[5.621923431010159,51.4374802163829],[5.621927208216946,51.43744571909818],[5.621404277399805,51.43714280865792],[5.621115243526145,51.437447477032485],[5.620880091243346,51.43768692247378],[5.620809514854015,51.43774781861245],[5.620780319210505,51.43773376484163],[5.620819807311782,51.43769637358062],[5.620934286052536,51.43754750680695],[5.620984290337089,51.43747433731753],[5.621051352690442,51.43737621688555],[5.621170229720658,51.43718237053747],[5.621183422340212,51.43716085205355],[5.621187394597265,51.43715301491435],[5.621293419109323,51.436943535900866],[5.621445326397568,51.43659826204224],[5.621486534055157,51.43646770810345],[5.621516434993519,51.436372987897904],[5.621539402212059,51.436238812195676],[5.621572051885639,51.43596007855726],[5.620852808230195,51.43595183257444],[5.6204842623105,51.435947608926256],[5.620355670344208,51.43594613137382],[5.620317510680306,51.43593377630488],[5.619429362804129,51.435923683927776],[5.619236122780727,51.43592148897445],[5.619234235030186,51.435948971218075],[5.619189505973087,51.43594842204403],[5.619183321313836,51.43619955193682],[5.619183297633801,51.43620054973072],[5.61917379079282,51.43658720001491],[5.619172599718495,51.43663570546139],[5.619081887288232,51.43659189519485],[5.619125714280683,51.43655639249199],[5.619133711179733,51.43626286824801],[5.619133709943664,51.43626262555532],[5.619139785856805,51.43604373838489],[5.619143617367264,51.43589245077507],[5.61902777531835,51.43587272627481],[5.61899593605284,51.43586730647709],[5.618995201693401,51.43586712816311],[5.618715729837865,51.43579963901038],[5.618459878952625,51.43571349570136],[5.618185250251861,51.4355826252674],[5.617800045835435,51.43539786095014],[5.617415119372212,51.4352134094189],[5.617414845450521,51.43521327512925],[5.617369174403197,51.43514001744514],[5.617298984640731,51.43508119007955],[5.617190811882511,51.43499052769866],[5.616986387433633,51.43486293162233],[5.616778956826888,51.434737857947646],[5.616546175073943,51.4346330583828],[5.616402872288281,51.434591003418234],[5.616384355565344,51.434586482549626],[5.616365624942482,51.43458232164697],[5.616346851180461,51.434578160826106],[5.616327892324945,51.43457436890319],[5.616308919046502,51.4345705680168],[5.616289746338384,51.43456714504511],[5.616270573587927,51.43456371308161],[5.61625124459499,51.434560667936516],[5.616231901223784,51.434557622816456],[5.61621243032598,51.434554955469544],[5.616192959430454,51.43455228811942],[5.616173361052914,51.43455000753092],[5.616153791439025,51.434547726882684],[5.616134123149363,51.43454584192817],[5.616114469196985,51.43454394795349],[5.616094730903844,51.43454244065564],[5.616075668782826,51.43454098595907],[5.61605656528216,51.434539881900285],[5.616037418594712,51.43453876893448],[5.616018230572202,51.43453801559505],[5.615999028124316,51.434537253292056],[5.615979813057306,51.43453684157034],[5.615960569183798,51.43453642091332],[5.615941327116577,51.434536359797974],[5.615922085049405,51.434536298679426],[5.615902844697631,51.434536579125314],[5.615883604390752,51.434536868556656],[5.615864394560378,51.43453749949598],[5.615845199155443,51.434538139392565],[5.61582604860728,51.43453912076902],[5.615806912439131,51.434540102114106],[5.615787835508032,51.43454142491085],[5.615768902609863,51.43454279236562],[5.615750057980511,51.43454455514743],[5.615731170207153,51.43454631801083],[5.615712399463662,51.43454847614494],[5.615693599956692,51.43455063433245],[5.615674931814714,51.43455317877393],[5.615656249289796,51.43455572324061],[5.61563771251012,51.43455865393321],[5.615619175728053,51.43456158462282],[5.61560079907149,51.434564901510285],[5.615582436748024,51.43456820937807],[5.615564263266137,51.43457189439878],[5.615546104207234,51.43457558837712],[5.615528162660945,51.43457964147497],[5.615510235492323,51.4345836945419],[5.615492655173466,51.434588088497726],[5.615492540261751,51.43458811568887],[5.615373092069907,51.434685787173535],[5.615229989570867,51.434740988213974],[5.614803453848422,51.43508752758205],[5.61468877054128,51.435103212028686],[5.614526019738979,51.4351408326745],[5.61437630174123,51.435196494999325],[5.614245212490372,51.43526767131505],[5.613904348267272,51.435492872678175],[5.613799422212397,51.43556219986235],[5.613580909245597,51.43537637838607],[5.613528716368131,51.435288902746876],[5.613062324729784,51.43450718745385],[5.612937525306443,51.43429803722507],[5.612859450054419,51.43416717796148],[5.612559996131745,51.43366420980015],[5.612520341077533,51.433555163528744],[5.612738715626972,51.43345433731947],[5.612610524875789,51.433297103092656],[5.612583627992593,51.43326409462874],[5.612486385534956,51.4331447147976],[5.612367849518433,51.433049303965355],[5.612017509507237,51.43321496795964],[5.611673450979511,51.43337765252613],[5.611510353049896,51.433338209437665],[5.610978416687861,51.43365474453554],[5.610786864453352,51.433768729397705],[5.610182620701463,51.43295645364779],[5.608297851319429,51.431915645869964],[5.608069501222769,51.43178954473517],[5.604041444978162,51.430642112855416],[5.603262793062963,51.43042027933982],[5.597610402880679,51.428264162031816],[5.597201118033718,51.4281080202811],[5.597242255113143,51.428076602525266],[5.598185941504676,51.42735571140931],[5.598264237694025,51.427372108868795],[5.598351783243547,51.42740793209684],[5.598465203314193,51.42732127315183],[5.598421599856275,51.427307311819376],[5.598357951488795,51.427286923907175],[5.598690380288579,51.4270222957883],[5.598826570651291,51.4269224446839],[5.599427727130847,51.42648170477061],[5.599978596433959,51.42606057703144],[5.600537335361347,51.425645706381864],[5.60106834711643,51.42524084340868],[5.601069521885813,51.425239942381815],[5.59945887753657,51.42440353907404],[5.598396850241406,51.423851997609376],[5.598385781576502,51.423846246914955],[5.598117732301961,51.42404955361441],[5.595327415565227,51.42260541022291],[5.595223275898446,51.42255068412544],[5.594957567955867,51.42274863110743],[5.594357175754166,51.4224361197403],[5.593413867159419,51.421945103535634],[5.598102659998679,51.418766330383285],[5.598242457129841,51.41867117445203],[5.597589802019807,51.41853415312189],[5.596903126456348,51.41838224113836],[5.596229700165487,51.41822505194183],[5.595551507976193,51.41805891462354],[5.595091388094553,51.41794045616435],[5.594886983892778,51.41788783218019],[5.594217981410773,51.417707657332826],[5.593657807319485,51.41754962284052],[5.592903944185248,51.4173286831496],[5.592259026441488,51.4171302524151],[5.591612292689536,51.416923111241196],[5.590798083802601,51.416649814656836],[5.589309961598591,51.416137378981375],[5.58876837122145,51.41595087547544],[5.589455692971389,51.415786728104266],[5.589612918707135,51.41574917889982],[5.588449472355919,51.41534851774508],[5.585416937169126,51.41430409491851],[5.585564312572603,51.414140636052046],[5.585564741731553,51.41414015891966],[5.586171647443494,51.41346167175542],[5.588429987228834,51.4109367735128],[5.589318006943575,51.409943852981364],[5.589588698845807,51.409643124008234],[5.590161937104303,51.40900624705006],[5.590203241693249,51.40896035960023],[5.59106476935223,51.40800317490265],[5.591430427446784,51.40759689165605],[5.592097714415749,51.406858779984134],[5.59585926673871,51.4079143639507],[5.596038047617204,51.40796461417241],[5.596501572918641,51.40809487390357],[5.596824192931946,51.40754124498356],[5.596442612789652,51.40706736245482],[5.596441387203145,51.40680042665092],[5.596867377108,51.40662169317577],[5.597861780667245,51.406293635875734],[5.601269581651952,51.4048637278311],[5.603984715212693,51.40502150229561],[5.604732393331962,51.40506493549744],[5.606620118658323,51.40459109674783],[5.609137306986414,51.403959194772355],[5.613531914785251,51.40449356095904],[5.617061566500161,51.404922622236974],[5.618278258308193,51.405532554586514],[5.61828248105164,51.405529211394565],[5.619820116093988,51.40431109162845],[5.622755006700547,51.405761665715424],[5.622831303783338,51.40580548430059],[5.622861099065332,51.40582260150039],[5.625063925484101,51.40693455235116],[5.627534788141068,51.4081598232817],[5.627647304287382,51.40821560890776],[5.629009038896388,51.40888628940838],[5.631546317881006,51.410135840928376],[5.632336037684272,51.410524733534025],[5.632724936221679,51.41071624658754],[5.6334162584736,51.410250825795465],[5.633479541021226,51.41019436870122],[5.633594488412431,51.41109901191977],[5.633670946436821,51.41109458957546],[5.637965085193595,51.410850966186594],[5.637940485673691,51.41144283700423],[5.641504437382954,51.41128120912156],[5.646718416094396,51.41104454677103],[5.64719352259648,51.410989429536706],[5.649048867497766,51.41044471109365],[5.649350462186481,51.410281858326364],[5.649522098134488,51.410065248137755],[5.649514631254341,51.40876789416398],[5.650885559947457,51.4066836115515],[5.652738651118375,51.405910489182034],[5.655577220717602,51.405742638413535],[5.655970859838611,51.40571935819222],[5.66016288249758,51.403519660652265],[5.661570295280647,51.40278106736861],[5.661667337744388,51.40273013334833],[5.661762508308255,51.40268578341529],[5.661924783537856,51.40261395843239],[5.662153732160125,51.40253141414773],[5.662371785095644,51.40245572658514],[5.662559134903222,51.4023123900002],[5.663341117656319,51.40145240233536],[5.663413252558601,51.40139458656634],[5.663441269554775,51.40135808878087],[5.663453616936933,51.401341996627316],[5.663488782947307,51.40130664142862],[5.663519135363301,51.401276124588335],[5.663521092219738,51.40127416040222],[5.663538118169898,51.4012570504057],[5.663549636494905,51.40124407031247],[5.663567492016743,51.40122394711573],[5.663587930944332,51.401200914425],[5.663727534717114,51.40104362179962],[5.664037596721681,51.40069423023848],[5.664070309634788,51.40065736159232],[5.664408585131234,51.4001961719193],[5.664542635316194,51.400010397197974],[5.664638746037081,51.39991648772131],[5.664673016507106,51.39989251403965],[5.664706542935832,51.399869072455694],[5.66475745554058,51.399838290589564],[5.66488118608923,51.39976348810376],[5.664956214833358,51.39966722860673],[5.664980195158354,51.39962188615488],[5.665062829843729,51.39954761289756],[5.665369666642101,51.39933240937862],[5.665369881584363,51.399332309989326],[5.665377892090716,51.39932865941319],[5.665477514724236,51.399283280064786],[5.665537945119582,51.399265266105154],[5.666354090703488,51.39905529616764],[5.667750494917789,51.39869601503945],[5.670225563341315,51.398080331795384],[5.671431677813155,51.39673098959835],[5.671537018281236,51.396611272142266],[5.671409399971238,51.39658253187343],[5.671463344194535,51.39647696228283],[5.672277915461091,51.39665951110395],[5.672640959691333,51.39674138167978],[5.672960699986914,51.395303683783816],[5.6730647835916,51.39483567200996],[5.673496212454221,51.393673167551874],[5.67349746992258,51.393669775703756],[5.673575076646619,51.39333187769138],[5.673464004150829,51.39330548102862],[5.671044646663056,51.3927678056759],[5.671424867037138,51.39227745038427],[5.672733388871446,51.392564057132894],[5.672745014015629,51.39256660841313],[5.672627487189284,51.39220877564672],[5.672360569951835,51.39140545754623],[5.672162682304977,51.39084820780147],[5.672055052210409,51.3908312935039],[5.671998849882756,51.390822460131744],[5.672003652047477,51.39081612031314],[5.672279708108692,51.39045133787425],[5.673056608409753,51.38943569200707],[5.671324527562117,51.38902205100692],[5.670779895826342,51.3888917377262],[5.67078735770323,51.388881085871645],[5.670844587451379,51.38881068149106],[5.670853005474133,51.38879900258681],[5.671151264885443,51.38838508114706],[5.669707595859498,51.388063153188185],[5.670074944703942,51.38748655032756],[5.669243109333928,51.38716753393357],[5.66935736388209,51.38700748222933],[5.669377146883416,51.38697977592835],[5.669944693470294,51.387068233440175],[5.669968880545311,51.387072003943175],[5.67076176982936,51.38720340687235],[5.671854916477876,51.387408551947885],[5.673290994654148,51.38771673714359],[5.673461355408398,51.3877565523167],[5.67385140742288,51.38784007852189],[5.674326714877371,51.387951662960944],[5.674327362314272,51.38795181417405],[5.674525863447037,51.387865401305525],[5.674791729144673,51.387749662311535],[5.674727481509194,51.38766280078612],[5.674598799028129,51.387618839714165],[5.6745241495158,51.38759334298032],[5.674447153335764,51.38756704299708],[5.674523336755852,51.38746432942809],[5.674619462983064,51.387334726195135],[5.674846430060516,51.38712460225339],[5.674882229648307,51.38711766442729],[5.674887136814307,51.38711670849058],[5.674894612404635,51.387115260818405],[5.674976299059002,51.38707446586118],[5.675130583900152,51.387030183581494],[5.67513990494141,51.3870275088622],[5.674854633376604,51.386719198256074],[5.674818023709205,51.38667963925787],[5.675121093183952,51.38630961469894],[5.675275698178192,51.386120846216066],[5.675678349422376,51.38562920775033],[5.675976437634789,51.38572028035356],[5.67598800995729,51.385723811213744],[5.676226066846634,51.38542746389401],[5.676227050363777,51.385426247972205],[5.676275288939727,51.38544650578808],[5.676471354965771,51.385528850472824],[5.676463831401925,51.38553854105292],[5.677034562367746,51.385780609893025],[5.677155140970453,51.38579764016219],[5.677233820495302,51.385808752160926],[5.677250392658023,51.38567229757506],[5.677263762160246,51.38552921725954],[5.67733620449857,51.385124462038206],[5.677453509085283,51.38447148739632],[5.677588068138612,51.383724591043176],[5.677776117113155,51.38296414986375],[5.677943284026119,51.382288695211024],[5.677957049323251,51.38220820250256],[5.678016214034677,51.38196217639089],[5.678050494440322,51.38181455835625],[5.678150849442268,51.38161269894338],[5.678275949039272,51.381383173143426],[5.678319609198629,51.38131226859748],[5.678682325991153,51.38075333957159],[5.678792547984966,51.38059705485919],[5.67918825040257,51.380099237102556],[5.679262496342012,51.38001384654651],[5.679586292955395,51.37966981654509],[5.679647238411627,51.37960486360268],[5.68024192700385,51.37904174252008],[5.680558570794076,51.378778132211465],[5.680680711047058,51.37868781112581],[5.680953627151907,51.378484318843455],[5.681253278143811,51.3782663494499],[5.681507192662705,51.37809050830201],[5.68191210272662,51.37783867122861],[5.682284669730386,51.37763011465215],[5.683159824465514,51.37715148113365],[5.683392950004385,51.37702548639228],[5.683393064497179,51.37702542317981],[5.6836260742561,51.37689949118477],[5.68401587393859,51.376688485182946],[5.684099996216289,51.37664866631969],[5.684268344463544,51.37658943263191],[5.684371773251106,51.37656997780789],[5.685285551040653,51.37643443855944],[5.685927299762713,51.37633919456618],[5.686260608925022,51.37628793931899],[5.686528300153594,51.37623318433953],[5.687189319950623,51.37609234679664],[5.687819302571559,51.375958713689286],[5.688732661306568,51.37576314846163],[5.689192237172954,51.375668348906224],[5.689655518676275,51.375554355892746],[5.689944536430874,51.37547679610139],[5.690229677113343,51.37539085017268],[5.690893426369775,51.375147908073224],[5.690988971925572,51.3750972589301],[5.691181830210313,51.374976746807505],[5.691397503402016,51.37482738377272],[5.691580940230174,51.374730904576786],[5.692056810311279,51.37449564661366],[5.692429518724713,51.374317061565115],[5.692771917273433,51.37419376382799],[5.693097163811886,51.37408731012733],[5.693401358079608,51.37398571085954],[5.693661542986094,51.37389861760486],[5.693849031660314,51.37383572416281],[5.694028868624939,51.37377765057475],[5.694162817857006,51.37373648865937],[5.694237461541473,51.37371589641747],[5.694363791636163,51.37368436334406],[5.694463350644952,51.37366129626268],[5.69457039860939,51.373637067761095],[5.694550110205809,51.37357809207298],[5.694761820052561,51.37354433774305],[5.694166522369061,51.37277784502193],[5.69407161794177,51.372655650124365],[5.693722973628154,51.37230019053252],[5.694483138278805,51.37204861451469],[5.695243280183291,51.37179703358008],[5.697618331592339,51.370807015409646],[5.696785314282732,51.370236063708326],[5.696563307767359,51.3703097052964],[5.696348074293016,51.37010922499773],[5.696310449724571,51.37007750461677],[5.696402566911515,51.3698624375466],[5.696758502376233,51.368567837542415],[5.696811965332449,51.36848313808889],[5.696933192421813,51.368432083162176],[5.69945204452593,51.36758849409412],[5.699674253671476,51.36751349810032],[5.699674969992312,51.36751325348175],[5.699545825302169,51.367283685121],[5.698727609000021,51.365829066494584],[5.698639131883979,51.36565941535287],[5.698352069244233,51.36510892827244],[5.697958660557877,51.36261252942331],[5.697422855479918,51.35921222885727],[5.697677649749525,51.359036322691495],[5.698333289232724,51.35858153867234],[5.702252459629376,51.36083384503251],[5.702310692180563,51.36079393013536],[5.703067435160266,51.36027530422255],[5.703246458219097,51.36015261613081],[5.703958653898161,51.35966449630867],[5.703549097915325,51.35942898903622],[5.705978345829771,51.358180223749336],[5.706013408949329,51.35816220414328],[5.706794954292741,51.35877252124287],[5.708959582540773,51.357702801744416],[5.709033877334672,51.35766588627785],[5.711362258388415,51.35969453276067],[5.711433993542513,51.35965889031229],[5.71226582127265,51.35924557752357],[5.71343092989618,51.358666642196184],[5.714388071129383,51.35819102137491],[5.714263593660838,51.35809450793691],[5.717494851580175,51.35640499848623],[5.718714074776213,51.35577871031447],[5.718905119221168,51.355708404358154],[5.718961256326199,51.35567936348463],[5.720124186287621,51.355077706263685],[5.720801955656632,51.35472704675425],[5.721106226265692,51.35456962604225],[5.721420734694958,51.35440689873129],[5.721415985610891,51.35440334381383],[5.721280454984387,51.354301674050134],[5.71743176411885,51.35141467693582],[5.717387164176926,51.351384987612526],[5.717319206255161,51.351339040861596],[5.716117994501571,51.352309651151316],[5.716041942661548,51.352262054605546],[5.7155642119634,51.351947797555056],[5.71550895635015,51.3519114319298],[5.714671005014798,51.35136021723739],[5.712804394005687,51.35029633481132],[5.71274325383293,51.350255462976264],[5.711857966644156,51.34966362329541],[5.711716479203006,51.34960547375706],[5.711703108646226,51.34959645032626],[5.711652280189244,51.34956211998371],[5.711641774327482,51.349568387472054],[5.710786545008967,51.34926842956638],[5.708866018197852,51.34859480117166],[5.708864464136399,51.348594257149045],[5.708830734977835,51.34862928072891],[5.707619696506899,51.34988011863265],[5.704862321290081,51.34892686293978],[5.703682661242241,51.348519009341196],[5.704528057210422,51.34802415024125],[5.704466163806885,51.347982853657726],[5.704448109159187,51.34797080395233],[5.704418876304003,51.34795304086738],[5.705430387505338,51.34735796499241],[5.705347720618584,51.347342883003925],[5.705467496602378,51.34727220047664],[5.705429972662313,51.34725930526075],[5.702971554608387,51.34641461702637],[5.702223813215332,51.34615768472924],[5.705102685010929,51.34356283454414],[5.705419740121885,51.34329867796908],[5.705407135798686,51.3432941281386],[5.706267639982186,51.34254598276303],[5.705449065386381,51.34226115737381],[5.705013389357623,51.34210955611763],[5.704637614651271,51.341983884369114],[5.704657080992159,51.341961916638326],[5.702936633874605,51.34136398701096],[5.702735931390003,51.34129422985554],[5.694581564347028,51.33845965260992],[5.694455326628165,51.33841576104455],[5.694288164376808,51.33850260226941],[5.694264626291084,51.33833568875541],[5.694259412238574,51.33829869569534],[5.694243710252877,51.33818734813123],[5.694199255598886,51.33787192318708],[5.694198864667359,51.33786927252749],[5.694201262322279,51.33786943699156],[5.694053363752291,51.33689945198829],[5.694041714867312,51.33682307804692],[5.694035349807587,51.33678131496541],[5.69393664952834,51.33613394231661],[5.693929121860625,51.33613485204017],[5.693910515841864,51.33601393003245],[5.693920094117325,51.33601280816523],[5.693752504163129,51.33498703628112],[5.693725361877906,51.334810639974116],[5.693719555158614,51.33477287541056],[5.693731139878484,51.334636700805326],[5.693782876441227,51.33463764321697],[5.694352280407168,51.33464805237579],[5.694896325844387,51.33465800443161],[5.694896220372893,51.334652997958216],[5.695136699259317,51.33439031208811],[5.695299532435018,51.33420447859614],[5.696949775569063,51.33232098493451],[5.697018776010173,51.332242230343525],[5.698359366456845,51.331392306579325],[5.698392267690607,51.33137123880293],[5.698516205202126,51.33129465554362],[5.699047724491371,51.33126618558824],[5.699082267608595,51.331204043454335],[5.699098725442735,51.33117673637064],[5.699181874886853,51.33102964577571],[5.699777452893432,51.32958301070317],[5.699912365090004,51.32939196022047],[5.6999729434873,51.329339770364484],[5.701767473614722,51.32780079126767],[5.701890075975921,51.327755470991484],[5.702067019921368,51.327703010325976],[5.702577053700246,51.32755095049355],[5.703573789260997,51.32725195720078],[5.703777041224125,51.32717864932901],[5.70388342517392,51.32708951475104],[5.704490233808539,51.326505901046154],[5.705850291393372,51.32519775942377],[5.705911597819783,51.32513241385146],[5.705917311249923,51.325124685824505],[5.705931367532901,51.325105689974755],[5.706644958122387,51.323651486616555],[5.706660000311704,51.32361766545252],[5.706687600508748,51.323590740175675],[5.706548876218654,51.32347617220178],[5.706693022144809,51.323438733811216],[5.706706640549961,51.32343519978896],[5.706525897554942,51.32330632011197],[5.70637254937106,51.3231969695927],[5.705974822257673,51.32291336653489],[5.705630536014254,51.32266649694493],[5.705265174496909,51.32238798046671],[5.703821060566369,51.32113952748723],[5.702795539831159,51.32094421775794],[5.700263592129939,51.3204619486641],[5.700159497329834,51.32044214765587],[5.698317176566482,51.32009169716137],[5.696150398643261,51.31967703641841],[5.691813743690936,51.3188513595948],[5.690875350228208,51.31867266983673],[5.690676813993892,51.31863483254414],[5.688432211956681,51.31820693689871],[5.687362729791494,51.31800303893438],[5.684000595766532,51.31736197030521],[5.6804944326851,51.316688035154584],[5.679672435628844,51.31653063381385],[5.6787217533113,51.31635330636175],[5.677345875166937,51.316092968912365],[5.676851216355571,51.31599562113823],[5.67563238381459,51.315767780428914],[5.674070613045434,51.315469815395296],[5.673238812382965,51.315311107474535],[5.672141982046316,51.315099946111864],[5.672110862804143,51.31509400880806],[5.672047906286974,51.31508199211264],[5.671270324973554,51.314408925102946],[5.671269603912641,51.314408297648235],[5.670244437128231,51.31358850176569],[5.669922857817374,51.31331558403941],[5.666750569117918,51.310623008729635],[5.665931054847625,51.30992744507634],[5.664143808646926,51.30841040593031],[5.660651353724424,51.30544558108156],[5.660522337843613,51.30533604129163],[5.65966229683576,51.304605984966834],[5.656099479860819,51.301581305512656],[5.655419761810844,51.30096336757884],[5.654618352380685,51.30023476590388],[5.652335672713298,51.29815931185018],[5.652321835179864,51.29814673212234],[5.651929054449235,51.29778969321634],[5.650489076450935,51.29648023914002],[5.649009835573986,51.295134990432835],[5.645559458035937,51.29199690016361],[5.645249395044904,51.29171488217468],[5.644107697992628,51.290676382308504],[5.643836975546576,51.29043010296693],[5.643713099601118,51.29031742315],[5.643496487387019,51.290120372104205],[5.643453116175948,51.290080917010336],[5.643134534552917,51.289791091930006],[5.643093181218716,51.28975347496325],[5.642572610253393,51.28927988538858],[5.64242660913007,51.28914706397122],[5.642378456187224,51.289103259410055],[5.642276761688469,51.28901071821406],[5.642108112189504,51.28885723590458],[5.642043217379826,51.28879817797218],[5.641925359293435,51.28869111005243],[5.641809085107004,51.28858520708861],[5.640631063940915,51.28751335041282],[5.639324676686857,51.28632463632066],[5.638549448345123,51.28561602046843],[5.636930191980619,51.28413348271717],[5.635725235952317,51.28302954441247],[5.634618576194478,51.282015614015016],[5.634504666166738,51.28191124481781],[5.634270742700357,51.28169735949409],[5.633693144543928,51.281169055832535],[5.632963053460207,51.28045266674418],[5.632149564922112,51.279654830611975],[5.631379468311327,51.27889896522142],[5.631018434948032,51.278545115160675],[5.630842220886905,51.27837240542613],[5.630607530199953,51.27814237950132],[5.629651518591359,51.27720819465357],[5.629062575034617,51.276627487119406],[5.628289996529203,51.27587079751503],[5.627517302628082,51.275114552474],[5.626745634106288,51.27435767098994],[5.626441386772942,51.274060229234486],[5.625972275701397,51.273601596863784],[5.625616284316568,51.272524482149656],[5.625260805081967,51.27145994957695],[5.625193555924662,51.270652804465804],[5.625114059601861,51.26966689741495],[5.625106168877772,51.269568576248204],[5.625041899579955,51.26876852604455],[5.624967457803172,51.26787168736313],[5.624932385866928,51.26742299393788],[5.624897314625088,51.26697430049424],[5.624825740967263,51.26607682659313],[5.624754743714794,51.265179441332876],[5.624746306563798,51.2650749189814],[5.624682316072334,51.264281969037796],[5.624612183160762,51.26338440209906],[5.624543202898283,51.262487551842995],[5.624471786132438,51.26158998739041],[5.624465604930132,51.26150307842703],[5.624450726030594,51.26131362514297],[5.624392503924016,51.26058124760794],[5.624035290491793,51.256087581487556],[5.62367813352452,51.25159391355042],[5.623481168905252,51.24911520550529],[5.623476923081764,51.24906125442086],[5.623474118032872,51.24902560158694],[5.623452236349856,51.2489346705034],[5.623446747633711,51.248911859117065],[5.623013038990707,51.24710086903755],[5.621937375988102,51.24260865012131],[5.621711167840043,51.241663836285525],[5.620861924549362,51.238116420462966],[5.619786670285377,51.23362418010869],[5.619753522653851,51.23348566619257],[5.618781643490269,51.229425273722214],[5.617847576181125,51.22922433518688],[5.616649838473937,51.228966660438694],[5.615931640875919,51.22881214767695],[5.61018897139261,51.22757647378192],[5.60990986063748,51.22751640660808],[5.605683462978002,51.2266068001461],[5.604732342753082,51.2264020760899],[5.601931666281782,51.2257990858306],[5.600537660751177,51.225498929094876],[5.596730906649239,51.22467924691513],[5.594559837077459,51.22421169769855],[5.594414455882235,51.224180388431726],[5.594389532564021,51.22468344562023],[5.594334109840275,51.225802262364574],[5.59432066365995,51.22607368488689],[5.592173059835541,51.22568319104098],[5.589506933920041,51.22519834332552],[5.587612074902003,51.22485371611823],[5.586749490147116,51.2246968183345],[5.586004831634833,51.22456136642785],[5.583129804470201,51.22403834777237],[5.578580569508509,51.223201676635576],[5.57451624917904,51.22245400662449],[5.573286252305524,51.222227704068914],[5.571731279037631,51.221941590404406],[5.566045354191194,51.220909401802416],[5.560611207338809,51.22228664167085],[5.560450682651032,51.22232732172451],[5.560320761244917,51.22287160650596],[5.560229235716553,51.223273721277145],[5.559893516002355,51.22473984197719],[5.559588168221567,51.22607320616725],[5.559565718541746,51.226171334064745],[5.559155436944751,51.22796413451139],[5.558996048045246,51.22866056946883],[5.558864403469033,51.22923575846273],[5.558716119739792,51.22988361919276],[5.558683890438899,51.23002445805448],[5.558680805469085,51.23003791881394],[5.558656471194341,51.23013847627264],[5.558478838378475,51.230872321722806],[5.557925573185292,51.23315793133756],[5.557786666623854,51.23373173641385],[5.557560835511782,51.234664563820374],[5.556787037485045,51.23780026300236],[5.556730141837673,51.23803081832201],[5.556681540903993,51.23822774348008],[5.556424802707888,51.23926802948207],[5.556337742983845,51.239637289417274],[5.555812746662669,51.241863898573165],[5.555636180723567,51.24261267711538],[5.55561000989379,51.242723690493094],[5.555301039569878,51.244033946515884],[5.555214582277162,51.24440057994042],[5.554866457445456,51.24449728963896],[5.555285103866743,51.245474205298166],[5.555292456592306,51.24549137221434],[5.55536867068259,51.24566922174054],[5.555374891847901,51.24614632799671],[5.555381113148463,51.24662343424488],[5.555304389471043,51.24713794594426],[5.555296296323004,51.24719223188052],[5.555292368409533,51.247218538720624],[5.555277635493043,51.24731729274512],[5.555275035713414,51.24733476169682],[5.555263738579121,51.247429214114966],[5.555262515756327,51.24743943612158],[5.555289105746477,51.24748451232972],[5.555643543596505,51.24808550102805],[5.555618400864181,51.24808751499981],[5.5564964169976,51.25002634058511],[5.556521356574191,51.25008141443274],[5.556594283848465,51.25024244993108],[5.556603782139129,51.25085058964811],[5.556580898125313,51.25171105550753],[5.556579489463429,51.25176390256765],[5.55655323586865,51.2527514116548],[5.556547404790448,51.2527510695894],[5.556424808564825,51.252743787482366],[5.556330823381383,51.252738198446025],[5.556236746294668,51.25381301519025],[5.556235687924709,51.2538250886532],[5.55620082040902,51.253905894507035],[5.556178518348833,51.25395653373305],[5.556138303625415,51.254047882185155],[5.556043692907449,51.25426560193503],[5.555986007392122,51.25438950608544],[5.556018954567286,51.25451795275447],[5.556052942173777,51.254652690043805],[5.556124969747537,51.25481681926205],[5.556177566622135,51.254936347425875],[5.556266206371555,51.25514558503479],[5.55632760951676,51.25528337449646],[5.556440204602916,51.255412091630454],[5.556492913462908,51.25547629358604],[5.556688803986677,51.25563488465802],[5.556760770063134,51.25569246064823],[5.556859316037324,51.25577130119024],[5.556909846283371,51.255811721842456],[5.556865904282558,51.25584826244115],[5.556743851244114,51.25594731706085],[5.556657676005307,51.256017797868374],[5.556609479483964,51.25605830862178],[5.556582664172557,51.256081772448475],[5.556569629717321,51.25609371055744],[5.556555426385787,51.25611107958728],[5.556532594340898,51.256142555583956],[5.55651053909924,51.25617492033311],[5.556490199704662,51.256198698300096],[5.556486142555396,51.25620558062123],[5.556480277484822,51.256215530747205],[5.556475929955983,51.25622911012709],[5.556471314883607,51.25625168765861],[5.55646986243842,51.25626565832775],[5.556475773157394,51.25628353737825],[5.556483208870392,51.256303184995645],[5.556505153729405,51.25632614631287],[5.556544559503263,51.25636812040796],[5.556560357222538,51.25638673111615],[5.556595635986951,51.256428297724106],[5.556658027285094,51.25649951471244],[5.556688267260281,51.256530409976115],[5.55671836839567,51.25655861779113],[5.556757778510759,51.25658619179287],[5.55682227064586,51.25663275841187],[5.556829969503587,51.25663832021521],[5.556890500222198,51.25668663640002],[5.556952010751438,51.256740317420046],[5.557001599047483,51.25678523379458],[5.557036321971315,51.25681965500628],[5.557089346990501,51.256875748355455],[5.557231661712607,51.257024583095586],[5.557292189521194,51.257087281113215],[5.557370845123812,51.25718246495236],[5.557435846616062,51.257261587822704],[5.557492847250641,51.257330978549454],[5.557500704411755,51.25734053109182],[5.55678800206353,51.257451442960495],[5.556481535586919,51.25750053696434],[5.556478357238685,51.257501044964776],[5.556480955245654,51.25751017377424],[5.556493669258122,51.257554775525065],[5.556553161840137,51.25776362389294],[5.556616042420282,51.25797426504559],[5.55672092360092,51.25826156408826],[5.556732426026713,51.25829995633738],[5.556763483725206,51.25841588417845],[5.556786593116459,51.25850923482249],[5.556804930605669,51.25859443960822],[5.556811452200953,51.25864173800231],[5.556815723552146,51.25869259923374],[5.556814890447755,51.25874611061321],[5.556807394109335,51.25885712390588],[5.556799955736566,51.25899151691045],[5.556798894728805,51.2590531185171],[5.556793055944745,51.25908183717629],[5.556787164880538,51.25911191321605],[5.556782346215282,51.25912984385914],[5.556784064770117,51.25914515822012],[5.556785115978284,51.25915821737284],[5.556796684117958,51.25917947691838],[5.556807575623933,51.25919983857289],[5.55680785291716,51.25923986517225],[5.55680590411584,51.259332497316514],[5.556806443713143,51.25944329213845],[5.556806520841676,51.25946023586191],[5.556810565607038,51.25946927266473],[5.556822685620136,51.259496392081836],[5.556852211568526,51.25956597602023],[5.55685894329979,51.259631260637],[5.556862332259134,51.259687516416534],[5.556855395681318,51.25972927040049],[5.556842925714149,51.259789396522166],[5.556829059394053,51.25984771793693],[5.556813362169885,51.25989521953988],[5.556798431889239,51.259940931255834],[5.556781444322656,51.2599920482235],[5.556781160999653,51.259992911558996],[5.556774274943903,51.2600328677094],[5.556769190338814,51.26006024593886],[5.556779382385864,51.260104428862384],[5.556791198733714,51.260142344240805],[5.55679516592872,51.26015362835015],[5.556802152068847,51.260160000184655],[5.556816250956181,51.260168249281556],[5.556839801511005,51.260171657611814],[5.5568634280273,51.26017236919473],[5.556872465034334,51.260171609934964],[5.556896482514797,51.260169579364955],[5.556930930031359,51.26016770434632],[5.556941728880533,51.26016687059824],[5.556966849865664,51.26016494626741],[5.556992739321729,51.260161636537646],[5.557036741398276,51.26015177448891],[5.557097334786932,51.26013849041713],[5.55711900213262,51.26013243626633],[5.557145999117004,51.26012260802339],[5.557161006987379,51.26011714787178],[5.557216763150332,51.26009752473759],[5.557260175303592,51.260083151103444],[5.557312362352619,51.260063038762794],[5.557371083264085,51.26003939323411],[5.557432304165138,51.26002926312795],[5.557468285490017,51.260023817161056],[5.557496198944259,51.26002546615649],[5.557546152704896,51.2600327637499],[5.557555209005815,51.26004874150301],[5.557600029057277,51.260127794978644],[5.557610969412277,51.26014572951765],[5.557678745050556,51.260256839222244],[5.557718415429814,51.26032248895668],[5.557731220828103,51.260375701679685],[5.557750226531423,51.26046270308743],[5.557749255360902,51.26052116748743],[5.557745416456846,51.260698126090844],[5.557744828398496,51.26072485057343],[5.557740333992609,51.26080666398368],[5.557738831450021,51.26088400558407],[5.55771282589756,51.26094083479909],[5.557674667393493,51.261046562775654],[5.557680143262111,51.26110508962821],[5.557685353455802,51.26117305508073],[5.55768717618833,51.261220072673865],[5.55768865025086,51.26125810200628],[5.557703952729486,51.26132393130398],[5.557720053747671,51.26141180888579],[5.557739205299682,51.26151861234322],[5.557759960346999,51.26164431683165],[5.557770686588398,51.261719995540076],[5.557781539342693,51.26179117068698],[5.557808963364299,51.26188411928258],[5.557842341463789,51.26199467712342],[5.557861816117244,51.26206504859254],[5.557875072885758,51.26212770783347],[5.557896791632515,51.26221969399749],[5.55791327451216,51.26229453727063],[5.557923099673872,51.26235131390007],[5.557927473842287,51.26239858841469],[5.557930625653773,51.262463833279085],[5.557925762859334,51.262508307875095],[5.557920278532495,51.262574356435664],[5.557912055213908,51.262635887666356],[5.557902203037086,51.26267940779008],[5.557881599890483,51.26275212125263],[5.557873482933522,51.2627807354424],[5.557802997762583,51.26278940521527],[5.557747733699657,51.262791958226266],[5.557648745122719,51.2627949169097],[5.557558467006482,51.26279393464989],[5.557486789426105,51.26279404866822],[5.557405862183413,51.2627918121402],[5.557221184861304,51.26278349814031],[5.557111577186605,51.262781851670425],[5.55702216547615,51.26277882727692],[5.55697409234845,51.262777198624235],[5.556785002937141,51.26277288139083],[5.556783419175341,51.26278624101571],[5.556782168464698,51.26279668779275],[5.556775280123651,51.26284000574264],[5.556771667822615,51.26286268968261],[5.556754135621589,51.262948845664894],[5.556740485149379,51.26299997572961],[5.556725324210186,51.26305332822203],[5.556712143764445,51.26308825983185],[5.556695240459942,51.263127655299314],[5.556675560220541,51.26316387278808],[5.556656044529236,51.263194238343495],[5.556635814123335,51.263225054375965],[5.556617477928807,51.263264433942965],[5.556637826600936,51.26330423352776],[5.556674874794845,51.26336175259643],[5.556724235678277,51.26344009865699],[5.556735778317672,51.26351218974431],[5.556747605222224,51.263599120876805],[5.556774148463291,51.26364798107184],[5.556793948710387,51.26368662187769],[5.556802651057878,51.2637036159353],[5.556836922862616,51.26375796596689],[5.556893833971331,51.26384763577641],[5.556927288315016,51.26390557349435],[5.556973041238892,51.2639843292117],[5.556994557491141,51.26403358321546],[5.557014489112773,51.264088223804066],[5.557030223649792,51.26413922108038],[5.557047378332734,51.264190674706704],[5.55705591772884,51.26421775438437],[5.557054992030793,51.26425013329001],[5.557053678992689,51.264270800393106],[5.557041752393729,51.26431159987387],[5.557024646375528,51.2643581867002],[5.557005802052834,51.26441510416101],[5.556996601708847,51.26446087044455],[5.556982822794421,51.264516045669204],[5.556981757749294,51.264553359612584],[5.55698189600957,51.26459833921982],[5.556986395986795,51.26464111020731],[5.556991637734294,51.26468299921146],[5.556998109758512,51.2647320954124],[5.55699890796693,51.26475414370113],[5.556989682229032,51.2648008088976],[5.556973818935443,51.26485416244458],[5.556947841318592,51.264934829656404],[5.556928984003678,51.26499219656077],[5.556910672643133,51.26503066826891],[5.556895621093242,51.26505569700314],[5.556873137794045,51.26508962647768],[5.556858726654173,51.26511735989218],[5.556841987291036,51.2651509034485],[5.556833244142477,51.26518094769055],[5.5568298389975,51.265193851545526],[5.556821982849711,51.26522354393023],[5.556813789826724,51.26525898961902],[5.556796080759997,51.265301523354005],[5.556772772609317,51.265364227066605],[5.556740257957238,51.26544797792555],[5.556700300382562,51.26554153738817],[5.55666784878753,51.26562304094148],[5.556629861236301,51.26572246717398],[5.556602869235884,51.26578873577359],[5.556593515418061,51.265824192126324],[5.556586775536852,51.265849730055635],[5.556555085005235,51.26590470660597],[5.556520054508687,51.26595154418676],[5.556491090232652,51.266011496526936],[5.556470413532868,51.26605759408553],[5.556460000322265,51.26612044075259],[5.556458178757913,51.26615865466712],[5.556461068255525,51.266207711167475],[5.556460031966396,51.26626841384145],[5.556459967077366,51.266320584757935],[5.556451299414512,51.26634792323981],[5.556444971029423,51.26636854370383],[5.556434331358012,51.266389565950114],[5.556420800600784,51.26641145532611],[5.556383752423229,51.26642813847802],[5.556363400912644,51.2664382624854],[5.556341399528285,51.26645556192843],[5.556311211688628,51.26648312047522],[5.556298625253259,51.26649691856999],[5.556289559358423,51.266513462105976],[5.556280287461876,51.26653629807993],[5.55627379430101,51.26656276147454],[5.556255698802035,51.26659405073501],[5.55623487516945,51.266619905753885],[5.556214832952299,51.26664397086762],[5.556191309857058,51.2666644005865],[5.556167526356238,51.26666864190437],[5.55613586366797,51.266673245230486],[5.556080683474713,51.26667264226434],[5.556063476240067,51.26667290097023],[5.556033885183471,51.266679775418],[5.556002759878433,51.26669022961659],[5.555975730481406,51.26670792280854],[5.555901721497849,51.266765207805825],[5.555894363437933,51.26677089938684],[5.555843087309439,51.266783827729626],[5.555830161755733,51.26678731614626],[5.55575495582976,51.26680759602061],[5.555703129580207,51.26681512284864],[5.555658417078737,51.266824535975],[5.555607091782866,51.266839711477346],[5.555503226422826,51.266874837209535],[5.555455085980862,51.266891122640835],[5.555416753343612,51.26688600957637],[5.555407249048613,51.266884746924504],[5.555356582766107,51.26687655056118],[5.555313133258469,51.26686707632239],[5.555239808711841,51.26684963626467],[5.555143558219153,51.26690614393914],[5.555100119471654,51.26692692580407],[5.55509850318673,51.266927692184076],[5.555065037980195,51.26694486412193],[5.555018023699423,51.26695963763262],[5.554964509049848,51.266975696911196],[5.554929877157257,51.26698341430826],[5.554894543136211,51.26699112371915],[5.554855460375224,51.267004186844055],[5.554806155484622,51.267023430991124],[5.554753295366955,51.26704219484829],[5.554711782554054,51.26706468165801],[5.554663759911842,51.26708979356326],[5.554615298130924,51.267104551018626],[5.554533486576014,51.26713288456433],[5.554466130722326,51.26715688264301],[5.554386918403879,51.26719469549703],[5.554322889286491,51.26722728197143],[5.554278524594037,51.26724972778231],[5.554251519574708,51.26726652166042],[5.554213856606363,51.267280049944844],[5.554161710759019,51.2672983720566],[5.554100316103303,51.26731479281681],[5.55402883867159,51.26733244149944],[5.553956264096848,51.26736358385477],[5.553928745487233,51.267373178390265],[5.55390382616693,51.26739224335443],[5.553892697073216,51.267405167186894],[5.553876990064397,51.26742793129608],[5.553831471264558,51.26744047296702],[5.553718863900785,51.267468023112876],[5.553649408541554,51.26749019900497],[5.553544185221573,51.267534915945824],[5.553441134847848,51.267578317323405],[5.55336434959611,51.2676062563396],[5.553296878163144,51.26763429885106],[5.553256849427918,51.26765545268157],[5.553217651355455,51.267672560365796],[5.553160201188144,51.26772590085857],[5.553052902042935,51.267767447281976],[5.552857202715753,51.26784266570447],[5.552815548497469,51.26787008687106],[5.552732339681985,51.267897063833715],[5.552611160277456,51.26794790602315],[5.552575224824954,51.26797584930288],[5.552516016152921,51.26799093577754],[5.552434867386757,51.268021082632586],[5.552334219965204,51.26805595825843],[5.552223851753626,51.268105112773526],[5.552110653991557,51.26815244647783],[5.551972087482103,51.26820984750005],[5.551865299214634,51.268258592104885],[5.551710062690344,51.26832255126197],[5.551569396620328,51.268378130054636],[5.551417765430126,51.26844078035113],[5.551171052481267,51.268544661259156],[5.550973784961145,51.26862389669711],[5.550788085668562,51.268700670575384],[5.550322161749234,51.26888756362347],[5.550254384633132,51.26891531715412],[5.550113039365962,51.26897833783412],[5.549953055188769,51.269038301292625],[5.549429319380882,51.26926912788357],[5.548982509847705,51.26943068549389],[5.548911929044495,51.26945620393934],[5.548507822085378,51.26962741716628],[5.548335742331359,51.269700321027244],[5.548272415929639,51.269727150376355],[5.547380286958168,51.27010510237474],[5.54602549714078,51.27065852108348],[5.545447761585389,51.270894518079984],[5.545430335226293,51.27088161595585],[5.545398600050357,51.27085812655886],[5.545380827826165,51.270865368723875],[5.544825778963722,51.27109146208566],[5.544795728977001,51.271103700585705],[5.544588927433296,51.27118793585018],[5.544505296419809,51.27125364008147],[5.544462580484861,51.27128719901072],[5.544569391582617,51.27159893767977],[5.544664117336297,51.27187542070189],[5.544657618896649,51.27196079581579],[5.54458330798419,51.27195773240386],[5.544504425195158,51.271954477378486],[5.54439886786254,51.27192009432359],[5.544215056465879,51.27183592924913],[5.544064498066176,51.271774748234634],[5.543825592528881,51.27174576700373],[5.543705490613951,51.271740454608434],[5.543340899327393,51.27195926405558],[5.543092924631055,51.272052837345264],[5.543049518771397,51.27211153825607],[5.542531437998447,51.27244154411978],[5.54220485037278,51.272706016063104],[5.542141591231651,51.2727169138836],[5.541861871131595,51.272912899897726],[5.541807359347146,51.27295110275481],[5.541090317631466,51.27338474641331],[5.540124170518919,51.27403697879198],[5.539873607182664,51.27420612613458],[5.539536107277872,51.27443395768451],[5.539254997774034,51.274623718995976],[5.538154558923467,51.27536654647921],[5.536271147011038,51.27663781285555],[5.535133273140583,51.277405810182884],[5.535133173052629,51.27740588222039],[5.53320222796964,51.278709078254494],[5.532421718773062,51.27923580859544],[5.530611501398341,51.280457138660054],[5.530525716336101,51.28051501522437],[5.529833606845234,51.28098194271416],[5.528685389928719,51.28175655004466],[5.528377562471981,51.282002856764265],[5.528331523620529,51.2820396047846],[5.528223432090686,51.282125875248305],[5.52763153794009,51.28259826795406],[5.527056703918311,51.28305703711457],[5.526863287944089,51.28321124709386],[5.526428994484862,51.2835575026895],[5.523660832369401,51.28576436121813],[5.523024968930881,51.286271253841925],[5.521282547649159,51.28766055641762],[5.521217676718393,51.287712271627996],[5.519006400561935,51.28947524771235],[5.518958178764357,51.2895605876899],[5.517460389012076,51.2922109201305],[5.516893785680712,51.29321344914464],[5.516453378163444,51.293992644354354],[5.516433734750555,51.294027407724876],[5.516232320018505,51.29438375687406],[5.515854675008564,51.29505188696507],[5.515774242849997,51.29519418700926],[5.515780708173883,51.29519902479673],[5.51577396516463,51.295202501912975],[5.51170435907889,51.29584640033836],[5.506708586865597,51.29663662211261],[5.506197991951424,51.29671737050765],[5.501902995698758,51.29739422615335],[5.501221965249246,51.297486878044516],[5.500825270735674,51.29754084842249],[5.500742472765396,51.29755368436308],[5.499296001808319,51.29777792834639],[5.498055248766049,51.297994578573835],[5.497570140415245,51.298079282762096],[5.497166163934429,51.298149813842464],[5.495206606580177,51.29848794724196],[5.495143500459215,51.298498450789644],[5.494720747478739,51.2985688200269],[5.493828884048338,51.29871038743846],[5.492979870782955,51.29884514049633],[5.491604720755038,51.29906078348434],[5.491134965733079,51.299141734692114],[5.490640140976328,51.29922700293853],[5.489555428182355,51.299406686519795],[5.488438446408924,51.299599835266356],[5.487570324888356,51.29973853851565],[5.487314512092134,51.299765329889645],[5.486951799825688,51.29980290910913],[5.485201262478852,51.29998424524623],[5.484956898845592,51.29999546226123],[5.484859405698976,51.299999939722795],[5.484761941210445,51.30000441707866],[5.484401173309182,51.30002098001401],[5.484294719276411,51.30002586899044],[5.484248424305785,51.300027993047564],[5.484220165597161,51.30002929304367],[5.483016576921494,51.300164673353684],[5.48313516661347,51.299179031303154],[5.483144383000145,51.299102430578394],[5.483197101749884,51.29866422155899],[5.483199356544551,51.29864551411273],[5.483003142462964,51.298565559324196],[5.482954106995956,51.29854558179645],[5.482952546395876,51.29853982129511],[5.482922318341805,51.29842884415327],[5.481888643692409,51.29799562435917],[5.481494083783751,51.2977979680127],[5.481099527283892,51.29760031032636],[5.480735502057568,51.297417943558436],[5.479441824393373,51.29676981928634],[5.479413293115178,51.296741707150225],[5.479410118173941,51.296738572596716],[5.479372406934704,51.296701407076895],[5.479340557126139,51.296670007673406],[5.479257520871355,51.29658815902646],[5.477699051645661,51.29505194778402],[5.477614038892376,51.294968148943504],[5.477069452911191,51.29366025009114],[5.47695637399308,51.29224925671778],[5.476887624668028,51.2913913336783],[5.474663767547556,51.290405821685894],[5.474232101323857,51.290214523690025],[5.473212841183352,51.28968860496532],[5.472968759462402,51.28956265528313],[5.472423045837481,51.289281070819946],[5.471577795697933,51.28884691097536],[5.471330519487338,51.2887172927683],[5.470412152383673,51.28824336621489],[5.47023094631159,51.28814986006694],[5.470120177623254,51.288085175244035],[5.469563856448735,51.28776035804858],[5.468952354251806,51.287403316418256],[5.467422799854888,51.286440141640604],[5.467122204024309,51.2862413828717],[5.466933662066058,51.28611672162837],[5.465607238521121,51.28523964840253],[5.464840921007883,51.284569359701756],[5.464836298669536,51.28456532684255],[5.463503160493617,51.284422677977645],[5.458868394402619,51.28392662026013],[5.458425025214865,51.28387915380182],[5.454104736161715,51.283416564734054],[5.45407736933582,51.28341363219109],[5.452794143733869,51.28327666561873],[5.451833102193451,51.2831740767061],[5.447399904406757,51.28270358924662],[5.446900351120745,51.2826504540944],[5.444532878811762,51.28239860545259],[5.442211504833814,51.282151612647525],[5.441781616606654,51.28210586516435],[5.44147829370147,51.281280148062805],[5.441354301710296,51.28094259752924],[5.441310977566724,51.280824658371564],[5.44123971526954,51.28032797323678],[5.441201690958776,51.27970999636074],[5.441073094250438,51.279497202524084],[5.440936353405093,51.27923174722512],[5.440764818051447,51.27890702701968],[5.440707551633779,51.278788491818815],[5.440610144817093,51.27858687407135],[5.440005827386977,51.27808113794192],[5.439756526648308,51.277857395285245],[5.439616301361557,51.27767922976478],[5.439476077166472,51.27750106407398],[5.439440729907668,51.277446113781814],[5.439346504464203,51.277299630537456],[5.439247185002825,51.27714705512819],[5.438371350064818,51.276026187895326],[5.4380465043591,51.27602422737051],[5.437712105758563,51.2760276273952],[5.437049288885524,51.276143401617055],[5.437004317826657,51.2761697669662],[5.437003845536092,51.27617035143787],[5.436963671690481,51.27621962703928],[5.436897791741035,51.27623323728841],[5.436802811646137,51.27625286443433],[5.4367585795168,51.276260469847784],[5.436524044045319,51.276295176512924],[5.436318951131064,51.27633600955784],[5.436123684589469,51.276399390874296],[5.434741285979866,51.27636475682625],[5.433297784229496,51.27633315088336],[5.432190843977462,51.27530446349297],[5.431099781637928,51.27429815051646],[5.430191335933133,51.27346023588836],[5.428626243035145,51.27201656494946],[5.428586974881812,51.27198021947306],[5.427155436482505,51.27065511449398],[5.427057272058155,51.27056425402636],[5.426237639355111,51.26980551373224],[5.425639072533786,51.26925139540357],[5.421795599817325,51.26599772531094],[5.420986592718102,51.26531278738113],[5.420918106076654,51.26525480291119],[5.417411598147282,51.2622857247335],[5.415854200563903,51.26262623741175],[5.403545317990806,51.265316569141675],[5.402848639879896,51.265468791570825],[5.402808926166193,51.26547747110828],[5.402676733268407,51.26550638779554],[5.401528265523904,51.26575761036794],[5.398377128066374,51.266446822268065],[5.396834778031144,51.26678413050162],[5.396504398397944,51.2668563824845],[5.396328369342262,51.26689487752657],[5.396116134015359,51.26694129422462],[5.396110145006453,51.26694235536465],[5.395944859708891,51.266971617538516],[5.393109201076024,51.267473642156],[5.390858708923443,51.267872011498085],[5.388556379700158,51.26827950652221],[5.387200370257811,51.26851948006675],[5.38637493073678,51.26866555451526],[5.386358409569864,51.26866847576468],[5.386178238442248,51.268700312735795],[5.384894880876994,51.268927109377806],[5.383594831459406,51.26915683968169],[5.382054853259981,51.2694289363889],[5.381937023131116,51.269449758223146],[5.380468142588302,51.2697092258036],[5.379886879256989,51.26981189702018],[5.379515055068769,51.26987757236767],[5.378000033863363,51.27014515859516],[5.376779976535413,51.27036062569676],[5.37632604710589,51.27044079143245],[5.375747115325998,51.270543028699684],[5.37287081781608,51.27105092013617],[5.369055694416558,51.27172445963046],[5.368081958213987,51.27189632282866],[5.360771544158794,51.273187889345536],[5.36076946606415,51.27318825741526],[5.359174440213026,51.27346998941005],[5.358539680801889,51.27358176362544],[5.35444942837692,51.27430192950173],[5.354045183086772,51.27437309639267],[5.352555319450555,51.27463536970482],[5.34977859520171,51.2751241220853],[5.349764849956225,51.275126544646426],[5.346974320605772,51.275617652657864],[5.346253760016159,51.275744440380315],[5.346201973875889,51.275753545802246],[5.34614039806961,51.27576438259],[5.346135960347857,51.275758897892025],[5.34610331621611,51.2757246392714],[5.346079983349672,51.275694788407236],[5.346067108284348,51.275669255821306],[5.346059390943702,51.27564534302549],[5.346038057883627,51.275622863633096],[5.346023876807275,51.27561548785986],[5.345978314990222,51.27560351675388],[5.345965424766111,51.2755949728913],[5.345951243952105,51.27558732744678],[5.345943513776345,51.27557779664086],[5.345946539981509,51.27555919099415],[5.345952719560874,51.275539957248064],[5.345973825341206,51.27549618947835],[5.345972860633403,51.27545331279378],[5.345975162854696,51.275442976542095],[5.346017750290045,51.275415575869864],[5.346046848988164,51.275407855797106],[5.346062189349962,51.27540084997354],[5.346054183105321,51.27537954381329],[5.346014667801463,51.275337102983315],[5.345975160955465,51.275285313841316],[5.345943374552149,51.27525393187817],[5.345906705119658,51.27523432344501],[5.345893248806263,51.27521795916041],[5.345900712404544,51.275205107884425],[5.345926755647051,51.27518462273438],[5.34592709982965,51.275184353193424],[5.345950756625955,51.2751722267338],[5.345991616467323,51.27515336477487],[5.346010690664757,51.27513755129852],[5.346022740808416,51.275123892643926],[5.346026475843297,51.27511382655861],[5.346008278428017,51.27511076396855],[5.345964434074523,51.27510184963779],[5.345908841289115,51.27508978507582],[5.345862996965914,51.27507385877378],[5.345828891319272,51.27507195906352],[5.345816423848461,51.275071577120336],[5.34576927674138,51.27507014018735],[5.345747351240911,51.275069413309716],[5.345740765308724,51.27506248963403],[5.345736756167632,51.275058623048075],[5.345741357027451,51.27504199549049],[5.345754557662186,51.275023932783625],[5.345761701994941,51.27501551285769],[5.345777224388897,51.27499724423043],[5.345794720427127,51.27498340775518],[5.345798169937531,51.274972173038186],[5.345792448960341,51.274959586758435],[5.345773820969464,51.27495733296672],[5.34572910763498,51.27495875530338],[5.345710015609904,51.27496254177777],[5.345702877597888,51.27496395946533],[5.345676504328196,51.27496907368289],[5.345629947000946,51.27494946164736],[5.34560273479202,51.27493147445811],[5.345561618910079,51.27491662837089],[5.345549588721586,51.27490817465601],[5.345523959554364,51.27488290712384],[5.345499626381002,51.274850808597414],[5.345487176496182,51.274831118786715],[5.345484049268952,51.27480298287743],[5.345500545840367,51.2747851011511],[5.34550843214323,51.27478025003993],[5.345534376786441,51.27477360761974],[5.345553148649598,51.27477514240102],[5.345587503080079,51.27481857031335],[5.345595376360978,51.27482810119425],[5.345622458045518,51.27483188611128],[5.345660585536175,51.274823360360266],[5.345707458251118,51.27481097253992],[5.345720200440648,51.27480857706808],[5.345740424536713,51.27480478200505],[5.345751036574752,51.27479669589408],[5.345754348934594,51.274778629678444],[5.345756819198303,51.274740877797804],[5.345744475255216,51.27471485997098],[5.34574380297683,51.27471345748717],[5.345741382567405,51.274695928562544],[5.345749824954272,51.27469415178535],[5.345764029366983,51.27469117255867],[5.345798153430717,51.27467230827816],[5.345792437268709,51.274654418636494],[5.345785144736297,51.274636528435664],[5.345766880532621,51.27462829725184],[5.345734434724352,51.274613679018806],[5.345668407032004,51.274573026407026],[5.345648646972316,51.27455504187719],[5.34564236115211,51.27453328686218],[5.345695117093775,51.27451209216268],[5.345755875367206,51.27451615867072],[5.345795718117356,51.274512217747294],[5.345800171870136,51.27449972496071],[5.345769689014245,51.274453781633184],[5.345737197907102,51.27441008477279],[5.345702721191619,51.2743435557684],[5.345678571270982,51.274299142753776],[5.345661803700378,51.274268305374434],[5.345627474246471,51.27419764157385],[5.345604746601016,51.27413363357069],[5.345581006360977,51.27408014204191],[5.345539345650156,51.274034823883134],[5.345521306346885,51.274015941069706],[5.345511148659667,51.27399724084134],[5.345514894312878,51.27397548939828],[5.345514340985509,51.27395355664615],[5.345554684769692,51.27387060485444],[5.345595149743568,51.273811922722054],[5.34561402155119,51.273797592382024],[5.3456228264854,51.27379089889577],[5.345626857619908,51.27377031608831],[5.345617692126698,51.27376371508237],[5.345596640145252,51.273748552551325],[5.345562405954234,51.27373146172599],[5.345557114538531,51.273719504799764],[5.345561560543435,51.273715551333616],[5.345631391582268,51.27366910435409],[5.34568948716775,51.27360539475946],[5.345697236436826,51.27359335258494],[5.345714156801514,51.273581673217144],[5.345736807998921,51.27357143408128],[5.345797863212777,51.273562646757846],[5.345866945092011,51.273551974604516],[5.345947505246146,51.273525666035205],[5.345978035787904,51.273517946485],[5.34601172793208,51.273500250526645],[5.346039116238987,51.27348084447487],[5.346043859006675,51.273465475379695],[5.346034848055234,51.27344632616306],[5.3460264097598,51.27342780636016],[5.346027570354446,51.273411986565506],[5.346038771409552,51.27338583324384],[5.346111636369932,51.27331080281298],[5.346151802212082,51.273264794521374],[5.34618042304803,51.273148669896045],[5.346188598408116,51.27314067277676],[5.346201071866269,51.2731337558156],[5.346241926020745,51.27311911847931],[5.346257547866483,51.27311696665441],[5.346281306162263,51.273118305313304],[5.346286493440633,51.27311859477003],[5.346314728742601,51.27311321140318],[5.346336373743052,51.273106027974194],[5.346354869207794,51.2730953378267],[5.3463640523529,51.27308203768363],[5.346357616064775,51.2730681927554],[5.346345019318695,51.2730526378098],[5.346303468629323,51.273012713212616],[5.346280445396114,51.272990592820534],[5.346235767161202,51.27295480192961],[5.346113440269065,51.272895882646274],[5.346107573270358,51.27288653228044],[5.346105145665967,51.272877003349116],[5.346095718565329,51.27284257311151],[5.346105922441612,51.27280958798028],[5.346111101448281,51.27278702803365],[5.34609551322633,51.27275169675355],[5.346079494965221,51.272716545095065],[5.346109224199235,51.2726427578986],[5.346117013845205,51.27258523262307],[5.346114126729559,51.272576782180515],[5.346104436278919,51.27254846420223],[5.346095676510362,51.272537045404995],[5.346049186830363,51.27247644484772],[5.346025300489768,51.27242645896811],[5.346010429036153,51.27239103804124],[5.345962031773319,51.272348594056126],[5.345943574033101,51.27231748645578],[5.345953236724523,51.272296725849536],[5.345977027316279,51.27224558824511],[5.345986666893674,51.27220262540922],[5.345966201637522,51.272173045191984],[5.345946433219271,51.27216539777336],[5.345904013706105,51.27216870862471],[5.345862145234154,51.27219664883751],[5.345848885920836,51.27220124638626],[5.345807817850951,51.27221550598148],[5.345748072448331,51.27220397919425],[5.345704531889969,51.2721791547798],[5.345647389590124,51.272141471595575],[5.345610741075888,51.27210163838043],[5.345586706332969,51.27205803437143],[5.34555552991554,51.27198880986688],[5.34552604032945,51.27195581062856],[5.34547694339456,51.27189583812354],[5.345459800337041,51.271837764657455],[5.345320542751725,51.27164958022266],[5.345291654361514,51.271586289043235],[5.345240755413577,51.27146042823323],[5.345196584040427,51.27134292935968],[5.345173953498522,51.271300305542994],[5.34514050845815,51.27123729133707],[5.345111022124312,51.27120159536769],[5.345096437955783,51.27116662386334],[5.345059670644398,51.2711014421468],[5.345027466709932,51.2710604418115],[5.345013743321926,51.27104010429702],[5.344987970860554,51.271001910764056],[5.344954483433455,51.27095434815483],[5.344883895794673,51.27089247998461],[5.344828926412766,51.27083178597556],[5.344778227479365,51.27080201480178],[5.344759521793171,51.27079267768131],[5.344741274441902,51.270783574431924],[5.344670101118136,51.27073581826086],[5.344613283205543,51.27066020214635],[5.344566031251997,51.27062225237116],[5.344511182951678,51.27058627732649],[5.344489590726303,51.270537640278874],[5.344455946568208,51.270505448235724],[5.344414433265224,51.270460399383595],[5.34431350595843,51.27035878945941],[5.344311773877869,51.27035689219649],[5.34424210433519,51.27028051612449],[5.344212444398385,51.270247992891925],[5.344199990666937,51.270234343380416],[5.344159615871419,51.2701981937217],[5.344136451350776,51.27014596052698],[5.344125736826935,51.270111349876025],[5.344083366474795,51.270064143288074],[5.344060464480039,51.270037707896904],[5.344041552160807,51.27003527394687],[5.344008449250637,51.27003777856142],[5.343985666095429,51.270037410584045],[5.343973633421808,51.270033271305024],[5.343957309843892,51.27002077089554],[5.343952030440526,51.26999694874455],[5.34395994948574,51.26995659217398],[5.343955091507202,51.26994175893241],[5.343968277763257,51.269938168312486],[5.343985045389759,51.26993556777907],[5.344002528714439,51.269933776495776],[5.344055402312554,51.26993505446408],[5.34406782672361,51.26993400736867],[5.344105558504872,51.269930848266206],[5.344123337674029,51.26991916944523],[5.344131083361671,51.26991072287344],[5.344130522743877,51.26989732942422],[5.344091142659673,51.26987043852394],[5.344026703020791,51.269826010280994],[5.344000257564934,51.2698041578321],[5.343949099203237,51.26976189175834],[5.343907568022765,51.26973706741244],[5.343838820003144,51.26970324419724],[5.343785827585648,51.26967634813896],[5.343731126702789,51.2696378559287],[5.343684163287524,51.26959972612587],[5.343656686834292,51.26956232267097],[5.343624328056183,51.26953597355484],[5.343590770782338,51.26951934082477],[5.343582936452863,51.26951546374652],[5.343444835637234,51.26948233347797],[5.343432805555128,51.26947567729284],[5.343426511553473,51.269464349104545],[5.343446593324133,51.26941210500498],[5.343458113765953,51.2693821138496],[5.343434068376498,51.26935334083013],[5.343419162763654,51.269356930745026],[5.343376446918652,51.26937300459374],[5.343311650248108,51.26940381168714],[5.343272807460103,51.269415392576356],[5.343186547204812,51.26941473088783],[5.343133814592043,51.26941650875395],[5.343102278442655,51.269429260880834],[5.343082628229186,51.269449478155146],[5.343072915728888,51.26946169020195],[5.343068971069459,51.26948095161034],[5.343051914398572,51.26950115188194],[5.343028402969532,51.26951336769673],[5.342999305607099,51.26952306454188],[5.342976374235691,51.269528089562876],[5.342962048615214,51.26952448863599],[5.342954899651708,51.26950830617146],[5.342967572564565,51.269442513295836],[5.342977643640497,51.26940018008035],[5.342981837634177,51.26936009182732],[5.342975885610884,51.26929132560852],[5.342984809115626,51.269250250383195],[5.342998459439262,51.26921097469687],[5.343015041578418,51.269177524830496],[5.34301841543674,51.26917071263161],[5.343013318971718,51.26910626133969],[5.343006336336428,51.26906616885616],[5.343011527335725,51.269032283218955],[5.343012245752481,51.2690302340549],[5.343016527619753,51.269017912093574],[5.343029631888333,51.26898015529611],[5.343037146751868,51.26891373124796],[5.343031175698544,51.268864740281956],[5.343029489838901,51.268829773392206],[5.34306722532861,51.2687771135609],[5.343081155286688,51.26874484919788],[5.343051809406956,51.26871544488336],[5.343028494217605,51.26868789452579],[5.343026619267676,51.268685682583175],[5.342992107913475,51.268663736965344],[5.3429866867452,51.26863901584009],[5.343026989386238,51.268598761473626],[5.343031776515324,51.268597396993584],[5.343100802839857,51.268577755684866],[5.343110413990029,51.26856643348375],[5.343081979357875,51.268483456547564],[5.343069271906329,51.26843644056365],[5.343069611129557,51.268381609292994],[5.343072664779847,51.26833513858903],[5.343066097051955,51.26831068669662],[5.343043168856977,51.26828321738651],[5.343040048786367,51.268279485873904],[5.343022315165663,51.26824415336402],[5.342977010445479,51.26812233860104],[5.34296289335279,51.268051411985326],[5.34299115047574,51.26802050137147],[5.342982449458278,51.26797950935893],[5.342956689394221,51.267946870425604],[5.342937375581473,51.26791594179315],[5.342924393034912,51.26785733019531],[5.34289800849641,51.26772941021835],[5.342895201903735,51.26771268108217],[5.342889602940377,51.26767933966884],[5.342854720837016,51.26759698944047],[5.342851183560041,51.26755051623807],[5.342843802419731,51.267478333738474],[5.342801534622565,51.26744751321618],[5.342791254044446,51.26744002167499],[5.342768923334094,51.267417631183235],[5.342756770600107,51.26739030074607],[5.342753076767623,51.267357670162305],[5.342744662396002,51.26731694790266],[5.342724345483539,51.26728655817741],[5.3427200875079,51.267244668960686],[5.342721723302591,51.26718300672908],[5.342717628196534,51.26712089287687],[5.342701495755783,51.26706039241404],[5.34273881109756,51.26699658647051],[5.34274314949261,51.26695532973947],[5.342746490987152,51.26690778050065],[5.342700406029233,51.26685401019766],[5.342703013744351,51.266824438189204],[5.34272484058897,51.266774918466716],[5.342740621064258,51.26675483460924],[5.342760561833586,51.266729448967666],[5.342747862240068,51.26667515205727],[5.342743908599638,51.2666149258971],[5.342734054735504,51.26659606373857],[5.342724887361148,51.266578514198756],[5.342725875088085,51.26656465391547],[5.342730223741891,51.26654238143776],[5.342731814879349,51.26654164496574],[5.342742981531196,51.26653645371713],[5.342752450363728,51.266523783177504],[5.342752436522379,51.266523279802],[5.342751051712886,51.266488456839774],[5.34274029502033,51.266351284350264],[5.342721027434052,51.266273434398336],[5.342681258977152,51.26620780133584],[5.342639681800152,51.266145781048806],[5.342614586738976,51.26610836027345],[5.342602574933313,51.26608390627407],[5.342607187017021,51.266055953008184],[5.342639796184815,51.26596868464726],[5.34264699780977,51.26592985597455],[5.342641332159394,51.26586225837711],[5.342610631221592,51.2657549209266],[5.342563568462758,51.2656766108928],[5.342526202149188,51.265646304500365],[5.342445720238295,51.265604475973845],[5.342350489692854,51.26555352713063],[5.342348198431794,51.26555230377994],[5.342287647632168,51.265495022138936],[5.341438512042436,51.2657079057258],[5.341154853511653,51.26538824397556],[5.341081403145724,51.26530866450602],[5.340871329621717,51.26508107595205],[5.340677408819509,51.26486427995974],[5.340486637163758,51.26465215905475],[5.340371408625654,51.26453178941765],[5.340349668255746,51.26450909307756],[5.340227405999613,51.264430428299335],[5.340119576740898,51.26436104560875],[5.340092752660183,51.26435005052989],[5.339942277423605,51.26428834483492],[5.339797626546964,51.26423372444929],[5.339691363523299,51.26418873747931],[5.33959727666729,51.26414600256632],[5.339394344233668,51.2640625039955],[5.339306280185173,51.2640289308548],[5.339173647290518,51.26397836855083],[5.338965838385043,51.26390124924198],[5.338708186746176,51.263809367309385],[5.338309345557837,51.2636457853771],[5.338119302292637,51.26357154839543],[5.337952307060886,51.263515388227795],[5.337927730541468,51.263507027302786],[5.337657990986822,51.26341521883807],[5.337072071612522,51.263227013808354],[5.336740794766524,51.26312745543075],[5.336483029211831,51.26306888084605],[5.336476182594267,51.26306732281615],[5.336475666949156,51.263067205738245],[5.336459591572255,51.26306757627897],[5.334938404054014,51.263102698286424],[5.331996701384974,51.263170539296695],[5.330926508542234,51.26319520560836],[5.329892076059845,51.2632190347029],[5.329891904134583,51.26321903461848],[5.329678252040272,51.263223963189155],[5.329460645505304,51.26322897929822],[5.327844642584451,51.263265642500585],[5.327801645609222,51.26326661836976],[5.325946584482564,51.26330867032904],[5.322611635209069,51.263384219718645],[5.315929507991191,51.26353719954433],[5.315926628112049,51.2635372696943],[5.315738083798501,51.26351768465793],[5.315564351575091,51.26349963650475],[5.314111140169735,51.26334866741862],[5.31368684039648,51.2633045894941],[5.313270147878734,51.26326129686711],[5.31190884417642,51.26311985062946],[5.30746091549095,51.262657576935176],[5.301814370663281,51.26207046815817],[5.301239936588291,51.26201072915027],[5.29997696900747,51.26187936404816],[5.298214495923315,51.2616960184724],[5.297906650071224,51.26166398980153],[5.296153833372725,51.26148161814914],[5.290123358572675,51.262451555240744],[5.289757855317986,51.262510333333665],[5.287996694767734,51.26279426758371],[5.286911100193178,51.26296927541866],[5.286217611522557,51.26308106302529],[5.284438248024688,51.263367875969976],[5.282632891731549,51.263658845131395],[5.277942510164818,51.26441464037255],[5.272650883816286,51.26526151323087],[5.272578299002239,51.26527312723955],[5.270545407549851,51.26559839946579],[5.27054517821309,51.26559843519123],[5.270544361183722,51.26559856920464],[5.266827334340992,51.266200999423624],[5.263403508289611,51.266755811641445],[5.263119842538117,51.26680177504326],[5.25848024504262,51.265800238127774],[5.258249189790967,51.26575035564639],[5.256847776630632,51.26544778030592],[5.255905475159819,51.26524384572893],[5.25057909815388,51.26409093423553],[5.244300337551374,51.26273220959864],[5.243930950739069,51.262652456945226],[5.237914279270399,51.261353143091135],[5.237248069132517,51.26173771666744],[5.236476596445718,51.26218535928036],[5.236443840385387,51.26220430116507],[5.235608883291822,51.26268668731882],[5.234168017969425,51.263520093346614],[5.233805409095307,51.26373024116597],[5.23149584072085,51.2650658558061],[5.231240634938534,51.26521343352675],[5.23120649636573,51.265233172087974],[5.230280078482092,51.26576865596922],[5.229591915176518,51.2661666213577],[5.227152194190998,51.26757742541758],[5.225972020347506,51.26825974412123],[5.226646136659361,51.269701574730995],[5.227946901718725,51.27248346009733],[5.228749070543228,51.274198837487454],[5.228832104544875,51.27437638863161],[5.229558394394445,51.27591389526826],[5.229890071108209,51.27661599760255],[5.230872782815284,51.27869608897828],[5.231335555806059,51.27967558536541],[5.231815128252257,51.28079567752295],[5.232841424109242,51.283193095205306],[5.233707237237181,51.28521541594425],[5.234231463172629,51.2864383430876],[5.234769511855327,51.287690013945465],[5.235186745367446,51.288660554038245],[5.236702838069768,51.29218690636917],[5.236893402891545,51.29263011830663],[5.238629848247452,51.29668375747641],[5.239507059261853,51.29873128847686],[5.239549012806121,51.29882919322209],[5.24052181960205,51.30118053142941],[5.242192693095427,51.305218572265595],[5.242054026306818,51.30527620632646],[5.241889900198105,51.30534442420011],[5.241118572759479,51.30566500564133],[5.241093027263194,51.30567562529205],[5.241067553571654,51.305686209072185],[5.238286139180704,51.30684213869147],[5.235473381671716,51.308009844261086],[5.23476001295154,51.308305982682725],[5.232750598342116,51.30913627093065],[5.231550478341029,51.30963212991823],[5.23035211322828,51.31012724183268],[5.23028262908867,51.310155948266164],[5.229439304692486,51.31050435542076],[5.227650727376667,51.311243241095916],[5.222351248111611,51.313442308106254],[5.222297037098715,51.31346480217534],[5.222171607516727,51.313516840305745],[5.221815858208872,51.3136644437194],[5.22052608610614,51.314199567521065],[5.219476783138157,51.314635275162566],[5.215074954466002,51.316462868726646],[5.213847201401287,51.316972563055],[5.213423673440212,51.31714837257863],[5.209845436597027,51.31862980318224],[5.209659117906426,51.31870693964471],[5.208676767858644,51.31911360939507],[5.208443907582907,51.31921000742609],[5.206127952676798,51.32016868743431],[5.206007328844558,51.320218621261596],[5.205990029134571,51.32022577637985],[5.200706658731531,51.32246948455647],[5.20025513336275,51.322661210418715],[5.196564806734701,51.32035923538421],[5.193545237626495,51.32020872923947],[5.190556335109864,51.320070151565155],[5.186375738323975,51.31909996719567],[5.186277391161815,51.31907714601201],[5.181063012501033,51.31786678161482],[5.177380899743962,51.31700870495379],[5.177126212673063,51.31693574276449],[5.175560961656254,51.3164875983474],[5.175318343055093,51.31641783613412],[5.173062832338517,51.315771636965856],[5.172049229377182,51.31524014305073],[5.171098962211351,51.3147418453819],[5.17107900273342,51.3147313813997],[5.17074254044,51.31455494565906],[5.167862142705447,51.31304439085844],[5.162639845028319,51.31031660002596],[5.162561623780718,51.31033130767563],[5.157725833047552,51.31124060798507],[5.157128977596802,51.311352824269406],[5.155588245541671,51.31164248199505],[5.148527803877103,51.31293502036847],[5.144415305298787,51.313679539880646],[5.143369626402392,51.31386882608748],[5.140043553527984,51.31447081638264],[5.139917625983753,51.31449360539049],[5.137120210335769,51.31499982399241],[5.136325730761887,51.31514358136663],[5.135438021179609,51.31530420159408],[5.134353329492333,51.31550045071779],[5.134161757490239,51.31783219879125],[5.134067817888775,51.31897542943232],[5.134006526609432,51.319721364288114],[5.133996084674757,51.3198507619256],[5.133991587435903,51.31990650950036],[5.133704172314056,51.323469024219364],[5.133668126668893,51.323915777542446],[5.133627387507497,51.32441716336276],[5.133339306703616,51.327962614412336],[5.133327679784576,51.32810578015876],[5.133117489521598,51.330667902847836],[5.132985403920544,51.332277889437265],[5.13296979135648,51.332456192505354],[5.132576266606686,51.33694971615069],[5.132543057689198,51.33732895148005],[5.132486217704606,51.33797784302326],[5.132428088555037,51.33864146428735],[5.132329603658011,51.339765779262095],[5.132272526748276,51.340417456633894],[5.132198974255232,51.34124897205072],[5.132181788255319,51.341443235547665],[5.131988347870482,51.34363027242376],[5.131981408692112,51.343708657211394],[5.131938591151374,51.34419272512771],[5.131889250777905,51.34475236522672],[5.131784834607333,51.34593674733947],[5.131766598685414,51.34614360169022],[5.131763978541389,51.34617326784826],[5.131687124631013,51.34704511706275],[5.130135262176721,51.34795313851945],[5.130025536666063,51.348017912203524],[5.129625124801367,51.348254735915425],[5.128829761504769,51.348725128403686],[5.127967036044579,51.349235347703264],[5.127405365489919,51.34956751741147],[5.127260253648378,51.34964913546666],[5.126740088603802,51.349958122618084],[5.126628016239458,51.35002244741762],[5.125974991767311,51.35041183520444],[5.125964131926853,51.350418228843765],[5.125147274189916,51.350898948083675],[5.124552830376209,51.35125418544656],[5.123963730007399,51.351754285730294],[5.123224265367265,51.35238296844993],[5.123168969160242,51.35242774208387],[5.123106990336441,51.35248372751512],[5.123052266481709,51.352528781042025],[5.12284566351714,51.3527080519826],[5.122793972001138,51.35274994822098],[5.122437081860434,51.35305552012801],[5.122380442787085,51.35310136899013],[5.122129925388428,51.35331707821175],[5.121239571845177,51.35407469052885],[5.121190252712451,51.3541154319197],[5.121175146532849,51.354125986209446],[5.121095134737461,51.35419632941631],[5.121042375554902,51.35424350783369],[5.120273627486232,51.35489971848755],[5.120168462707345,51.354989482109715],[5.120093454174865,51.35505066755484],[5.12005191708987,51.3550859521398],[5.120003168408321,51.355126972988295],[5.119401849543128,51.35563966045846],[5.119127376164109,51.35617044515802],[5.118733132663885,51.35693372639392],[5.118700618512163,51.3569966717128],[5.118336000729459,51.35770254569117],[5.118317764506666,51.35773479125918],[5.118095278185963,51.35817100580391],[5.117609121357158,51.35911314509075],[5.117565500329764,51.359189205973564],[5.117465206497606,51.35938763454885],[5.117431445670674,51.359454441793595],[5.117340171818594,51.35963505743273],[5.117270793689165,51.359769269788146],[5.11713347744957,51.360034335913994],[5.117093863175173,51.36011237443886],[5.116841718305325,51.36059728187767],[5.116767751108279,51.360737361938426],[5.116744947236831,51.36078651350851],[5.116718009347369,51.360833057732165],[5.116685611615202,51.36089722522653],[5.116677248410863,51.36091052716243],[5.116618776079108,51.36102572624002],[5.116595766200415,51.361068396407454],[5.116563604559645,51.36113143183204],[5.116351356886224,51.36128320853148],[5.116151268863815,51.36141322436325],[5.115870334436242,51.36162707865261],[5.115288656314851,51.36204296373396],[5.11439247071056,51.3626836743594],[5.113230030713671,51.363514709966076],[5.112731684987395,51.36387096690215],[5.1118270920249,51.364517651541696],[5.110480027350898,51.365474488697615],[5.110404603897114,51.36552806244702],[5.109360872250966,51.366269408784476],[5.107752960549681,51.36741140826757],[5.106437599414642,51.36835036021226],[5.106150932438079,51.36855498183319],[5.106108325369198,51.36858536899694],[5.102323522609508,51.37128513483438],[5.101328850006221,51.371993459649914],[5.10034718752282,51.37269251363087],[5.100253389305703,51.37275930303423],[5.100247763542891,51.37276324424399],[5.100155074586867,51.372829443040146],[5.099969479430031,51.372962001674495],[5.099799247457211,51.37308357766249],[5.09579291262287,51.37594383518121],[5.094318163500685,51.37699685901457],[5.094176052562987,51.37709830868721],[5.093882016979888,51.37730821203955],[5.090604674710288,51.37964763355987],[5.089496052307493,51.380438911606575],[5.087607685029096,51.38178664119548],[5.08724137073722,51.38204806346267],[5.085947417140908,51.382971487130575],[5.085539837683934,51.38326187610031],[5.085307324514448,51.383427539509555],[5.084375523300146,51.38409137049946],[5.083842063741325,51.384471377132144],[5.082899393277161,51.385143078195306],[5.082670835158755,51.38530733544718],[5.08171976240854,51.38599079831348],[5.08133854291198,51.386264747311166],[5.075042424572609,51.3907424451914],[5.074503471157483,51.39112568441318],[5.072718565573412,51.392394817280916],[5.071181770690767,51.39348746293027],[5.072625808354243,51.395230331590646],[5.072930378645429,51.395597902891474],[5.075956210585623,51.39924951822937],[5.076358295534672,51.399734715690194],[5.078036181514051,51.401759271110876],[5.079716853509631,51.40378699124175],[5.079800134067843,51.40388746225656],[5.080091504815478,51.404238979700615],[5.080210241230253,51.40438222233649],[5.083825450794714,51.4087431236007],[5.083874044015521,51.40880173073515],[5.083954362814062,51.408898604510654],[5.085359162800623,51.41059287768526],[5.087560191198409,51.41324714747807],[5.088318426144938,51.41416144962713],[5.091312301211451,51.41775109329898],[5.091592364100924,51.41808685839378],[5.092738335562972,51.419460673355516],[5.095124371352354,51.422167353916564],[5.095163823163443,51.4222121086937],[5.095208518490306,51.422255276582874],[5.095237467588403,51.422283241062416],[5.095861133675077,51.42290231689974],[5.096808748216537,51.42385475212753],[5.098841459507321,51.4258697542522],[5.099631564232269,51.42662853711488],[5.099769453606529,51.42676096622088],[5.102020631798292,51.428922723590325],[5.104486404453448,51.43126685277666],[5.104572693607635,51.431348886151845],[5.101765720542422,51.435754594209634],[5.099714876044778,51.43897291788622],[5.099552096992447,51.439228057311794],[5.098905218975777,51.44024192660132],[5.097627822087067,51.4422439063093],[5.096034702921551,51.444729163575545],[5.094565979980259,51.447020087089],[5.093155636723413,51.449216308087514],[5.09027371502974,51.45370337399328],[5.087923893146507,51.45736128386723],[5.087391239102,51.458190366993094],[5.08501943479001,51.461881698585174],[5.084508194371145,51.46267728700961],[5.083701930523487,51.463931906508805],[5.083368328124469,51.464448555248616],[5.083323586500807,51.46451784069309],[5.081614693983714,51.46716410812869],[5.081179114035398,51.46783855920183],[5.080962415273489,51.46819256891755],[5.08039402359457,51.46912105827017],[5.079956756456225,51.46983533830614],[5.079252696435048,51.470984128967025],[5.079231531046418,51.47102793807109],[5.079294524694197,51.47109857569602],[5.079324414331766,51.4711693956751],[5.079349842429636,51.47124020388444],[5.079323819313173,51.47132130335748],[5.079232400072494,51.4713677137199],[5.07912289025247,51.471450121025505],[5.079060030220183,51.47148734821936],[5.07896987126263,51.47151758201877],[5.078924099756942,51.47149671524711],[5.078913338398722,51.47149181495553],[5.078832217053351,51.47146265711369],[5.07874691790032,51.4714702250508],[5.078723054842909,51.47147234627399],[5.078602246890993,51.4714802068148],[5.078595038960859,51.47147341926566],[5.078564348123162,51.47144451135183],[5.078574539803993,51.47136354998111],[5.078540738635803,51.471317887867585],[5.078464150897307,51.4712994383205],[5.07840493515304,51.47131070640437],[5.078356499025368,51.471319917586584],[5.078279484616371,51.47136438778359],[5.07815146172879,51.47146623273562],[5.078093679691531,51.47151220987868],[5.078023139230527,51.471482791841794],[5.077957048064118,51.471455219242095],[5.077953888320665,51.47145424009349],[5.077808970453953,51.471409434011896],[5.0775882802936,51.47137451221427],[5.077304311245616,51.47135362425677],[5.077202036491299,51.47135370335962],[5.077011994946031,51.47135383691326],[5.076638731480476,51.47136291219128],[5.076320919533535,51.47136613843865],[5.076316313536296,51.47136618909756],[5.076090194211316,51.47136774419052],[5.076003380608671,51.47136731512141],[5.075810122422455,51.47136636848915],[5.075791934547801,51.471365717744845],[5.075528095377512,51.47135626784421],[5.075281944910119,51.47134050957516],[5.075104517118684,51.471314597453635],[5.074894624397627,51.47127960952748],[5.074595288023075,51.47123323581308],[5.074274251357525,51.47120316264211],[5.073928486265896,51.4711692469909],[5.073589112830375,51.47114775190702],[5.073179112000611,51.47114134674835],[5.07287343143487,51.47113872659668],[5.072625446837541,51.471117924103226],[5.072317713254572,51.47110001614849],[5.072214432541547,51.47109995333644],[5.072011296549005,51.471099827695234],[5.070565706734945,51.471099701177266],[5.062877052372757,51.47109871687333],[5.056173123184076,51.471099599273835],[5.054773644427881,51.47109973146137],[5.054737749268106,51.471099737133834],[5.05245416368743,51.471103604122874],[5.0497408959678,51.471108145014604],[5.049277074464587,51.47110891603175],[5.048619942066709,51.47111021248997],[5.048533757914397,51.47111038503435],[5.048273896291469,51.471110826576],[5.04754795339363,51.47111204309822],[5.047101906776338,51.47111279425114],[5.046301164504335,51.47111413569882],[5.045931860213251,51.47111474684762],[5.045768315024181,51.47111502381453],[5.045847418789167,51.471276063388835],[5.045918456640824,51.47143797820553],[5.045939407447591,51.471559656892765],[5.045941076194512,51.471569369593254],[5.045941416037805,51.47167768472858],[5.045920026579463,51.47178548692206],[5.045847044339133,51.47195974475829],[5.045744781875673,51.47214227644715],[5.045598744617181,51.47240414032736],[5.045389210208127,51.47274563805401],[5.045280482487109,51.47288779103367],[5.045179327341348,51.4729989549907],[5.044816538886969,51.47337335088831],[5.044552435818622,51.473658417685726],[5.043881866604484,51.47434318670833],[5.043427234248037,51.47468580276286],[5.043348281612208,51.47474530038561],[5.043274461073647,51.47471986063334],[5.042822997882208,51.47456423866021],[5.042790649764899,51.47458970719336],[5.042488061074184,51.47482797737541],[5.043126654103933,51.47506437651946],[5.043154454642954,51.475080728019655],[5.043177017848304,51.47510443483825],[5.043181145110675,51.475129705312845],[5.043144094546977,51.475175528539786],[5.042773241797646,51.47550782711057],[5.042597308534688,51.47564609398013],[5.042398291550495,51.47578554186266],[5.041655103266145,51.476306318117366],[5.04147057500598,51.476400333337814],[5.041132584225038,51.47657254492979],[5.040893062630322,51.47661039650437],[5.040700936045933,51.47705944259274],[5.040413524296128,51.477507036908904],[5.040382783840292,51.477536428634494],[5.040335230587569,51.477543118830546],[5.040281244361843,51.477530724813136],[5.039764475466111,51.4774120744185],[5.039745236616615,51.47743194518108],[5.037888533646671,51.47934984045083],[5.039172503841869,51.47977497534475],[5.03888927668815,51.480527565732444],[5.038846736653412,51.48064060687102],[5.038849978872111,51.48065524119405],[5.039054848064744,51.481577124243465],[5.039098715173464,51.481774476555394],[5.039259419245453,51.482497639684475],[5.039842003790399,51.485118803880155],[5.039845205443531,51.48513317737621],[5.039987811091859,51.485113907125246],[5.040093810491158,51.48509957957437],[5.040210298502674,51.486533087084574],[5.038771188231243,51.486543813936116],[5.038702652954349,51.486544238670696],[5.038768507531525,51.4868959479988],[5.038788108002684,51.48700059920361],[5.03827145392358,51.48703190163412],[5.03637453411452,51.4871648073024],[5.035678292829581,51.48721491141052],[5.034946641857114,51.487258109108396],[5.034876818130032,51.487255579413066],[5.03394017915436,51.48722164028011],[5.033155702867645,51.487194267308226],[5.033165394912265,51.48716618895631],[5.033170997574905,51.487112246645985],[5.033171008868851,51.487079320994575],[5.033163644231814,51.48702288545666],[5.033148805789649,51.486981447415694],[5.033128443011735,51.4869413049789],[5.033102907737552,51.486901650225064],[5.033092099037187,51.486875235558166],[5.033073868641645,51.48682750410683],[5.033064865426257,51.486802200524096],[5.03305961663002,51.48677177576465],[5.03306700546518,51.48673623878637],[5.033070928428933,51.48667428243533],[5.033067181684975,51.48664880602699],[5.033048130708863,51.48661588549565],[5.033017973509684,51.48658925934194],[5.032959959849364,51.48654378923316],[5.032951707843876,51.486531126062],[5.032946782117644,51.48651100335159],[5.032955226273012,51.48649527173429],[5.032975466207911,51.4864678905539],[5.032994445816049,51.48643965161927],[5.033000478667698,51.48641740485145],[5.032993038681026,51.48638364761587],[5.032976124253514,51.48634631110023],[5.032954969740388,51.48632656163891],[5.032924928218916,51.48630360320947],[5.032890748236938,51.486285171522326],[5.032825458522769,51.48626080276808],[5.032731287035183,51.486232822746395],[5.032593029909249,51.486193877395976],[5.032268804934664,51.48612319399671],[5.032230768922854,51.48612665591291],[5.032217184873648,51.48613498312696],[5.032188324247842,51.48615266610873],[5.032172690999315,51.486187449886884],[5.032152266876281,51.48623655611086],[5.032131220550177,51.4862657504201],[5.032108178507515,51.48627577470245],[5.032068066723583,51.486285081912996],[5.032037827627082,51.48628566411675],[5.032028150000091,51.486280457183625],[5.032002567057981,51.48627476143198],[5.031995409594162,51.48627316663803],[5.031979264831273,51.48626277151706],[5.031956693230384,51.4862383344395],[5.031950061689526,51.48621915930174],[5.031953541172019,51.48620130929405],[5.031989773775696,51.48615220624051],[5.032000684584252,51.48614328665598],[5.032018081304988,51.486124229538646],[5.032033565204772,51.48609568349996],[5.032043202396326,51.48605254896146],[5.032056560047695,51.48599942128723],[5.032068236967127,51.48592550657474],[5.032079813444966,51.48587000045882],[5.032081978450234,51.48583608360336],[5.03208045300426,51.48579723869556],[5.032064170485021,51.48574915345359],[5.032058614341574,51.48573239056888],[5.032044593350525,51.485711844657644],[5.032004397466793,51.48569324160648],[5.031950775415116,51.48566459325585],[5.031910455701488,51.48565079876205],[5.031855198078264,51.48564172282962],[5.03179242746956,51.48563972509978],[5.031761586958734,51.48564363122839],[5.031759064981495,51.485643947147246],[5.031729352103936,51.485643569078384],[5.031693058301146,51.48563968334609],[5.031692439657277,51.48563962753066],[5.03164936508042,51.4856357031672],[5.031603574972613,51.48562738402329],[5.031530781422819,51.48559438049713],[5.031476599707841,51.485578449266086],[5.031416961840754,51.48556247442288],[5.031338659175712,51.48555096400786],[5.031253586095587,51.48554177896316],[5.031162557670934,51.48553378917967],[5.031066790788912,51.4855076276559],[5.031003468850599,51.485484117805925],[5.030925841290076,51.485447081198686],[5.030885426575064,51.48543813098161],[5.030818523113705,51.48542892914018],[5.030775552158717,51.485435710339175],[5.030770648874132,51.485436765033484],[5.030734292619382,51.48544456415216],[5.030678737011886,51.4854588933875],[5.030625503585148,51.48547083868583],[5.030581063416713,51.48547953891454],[5.030513240185284,51.48549585307514],[5.030449959229597,51.48550205976863],[5.030433099302047,51.48550768015241],[5.030412461222289,51.48551040361186],[5.030388180854308,51.48550575417586],[5.030354368978302,51.485503017177216],[5.030342686866415,51.48550194778034],[5.030342500694211,51.48550182136938],[5.030325840481726,51.48549114579243],[5.030316349419817,51.48547687865328],[5.030316546637159,51.485462739994055],[5.03031337723892,51.48544095962131],[5.030321996907583,51.485430478142625],[5.030331736493806,51.48540936642553],[5.030339528442638,51.48538509371468],[5.030350660317018,51.48536268288523],[5.030358076692703,51.48535142469712],[5.03036491571465,51.48534035350776],[5.0303493389727,51.48531268356825],[5.030322209391747,51.485276645779],[5.030311157400722,51.48525764580089],[5.030282579014504,51.48523195858449],[5.030223333472237,51.48520094619369],[5.030189708762013,51.48518171541108],[5.030124752176268,51.48516114838659],[5.030086279837229,51.48514690048333],[5.030031318062295,51.48512959990762],[5.029994949386081,51.48512798756424],[5.029908312298637,51.48512010011818],[5.029871329449213,51.48511969933511],[5.029809310534056,51.48511558149816],[5.0297803341545,51.48511312879098],[5.029758197123195,51.4851032453565],[5.029736585086126,51.48509434329552],[5.029721052898672,51.485092228349004],[5.029709894707764,51.48507578977433],[5.029697473139756,51.48506439899419],[5.029690604604855,51.48504987915768],[5.029671005424221,51.48502116310973],[5.029665948560868,51.485003278046165],[5.029660237079294,51.48498442019619],[5.029638816876903,51.484969433338044],[5.029613212436887,51.484948276389005],[5.029581832139791,51.484929294997386],[5.029538499957834,51.48490145905829],[5.029480706038982,51.484856221583115],[5.029469162487186,51.48484670312212],[5.029462490195364,51.484829208605134],[5.029453773109728,51.484809937045725],[5.029452408531141,51.484800377852075],[5.029463260830454,51.484786101044676],[5.029467124034434,51.4847671646472],[5.029478643191742,51.48475779772437],[5.0294790177882,51.484733942797796],[5.029477325449523,51.484716625331544],[5.029463054838421,51.48469688732627],[5.029423607819907,51.48468033510402],[5.029367623473629,51.48466685128883],[5.029316889995971,51.48465571161664],[5.029276662955353,51.48465415014642],[5.02923516841933,51.48464350616595],[5.02919849540392,51.48463853984651],[5.029154976855932,51.48462714356906],[5.029125789248443,51.48460949011807],[5.029073404137529,51.48456308250995],[5.028962292100198,51.48448586118433],[5.028922349090105,51.48445554553299],[5.028863231449184,51.48441401603074],[5.028770855719245,51.48437817317314],[5.028677407196651,51.48434146403121],[5.028532997746508,51.48429516915068],[5.028356243691535,51.48422454111265],[5.028270406422395,51.48419032692823],[5.028155255293282,51.48414544283593],[5.027950856434176,51.48406988426715],[5.027773471234489,51.48399554105685],[5.027684580482228,51.48397072823746],[5.027635645747864,51.48394161591777],[5.027543038852024,51.483911587077046],[5.027469426231961,51.48389003910519],[5.02737802786397,51.48386924527663],[5.027287018892222,51.48386840754718],[5.027285694504163,51.48386839447707],[5.027274425729569,51.48386973502424],[5.027203441349407,51.48387814541785],[5.027144515677406,51.483889091810944],[5.027070220235574,51.48389747393837],[5.027009979985628,51.483898061198005],[5.02697810503497,51.48389997636306],[5.026961556794039,51.483897156793596],[5.026909568545229,51.48388830432624],[5.026834448655737,51.483857151344175],[5.026723712633764,51.48380223006156],[5.026642185791197,51.483760261719645],[5.026512790605952,51.48367828948426],[5.026402620616732,51.48363561228777],[5.02630908815019,51.48359539537828],[5.026168533598365,51.48355920381185],[5.026042647765889,51.48354317420759],[5.025960988029491,51.483514463347326],[5.025928989295485,51.483493906026524],[5.025901462357209,51.48342506610359],[5.025891180324593,51.48339096702114],[5.025889580984089,51.483372993608924],[5.025821553315727,51.483282841932976],[5.025782573109309,51.48326402475866],[5.025744558807276,51.48325410940008],[5.02570589025419,51.483246816712196],[5.025677549615392,51.4832406256408],[5.025643542709036,51.48323912711365],[5.025565959382757,51.48323379928411],[5.025519357278125,51.48323571339028],[5.025499543399279,51.48323626326061],[5.025426436367988,51.483238310968794],[5.02539102529775,51.4832359720668],[5.025365873501086,51.4832343121282],[5.025315399553344,51.483236124269816],[5.025247358999462,51.483222007856604],[5.025177742667903,51.48320872247052],[5.025123988139907,51.4831958277916],[5.02502988556269,51.483164192318405],[5.024944755559202,51.483130310452665],[5.02489786930005,51.483108241505256],[5.024823343824379,51.48306966437707],[5.024688655171504,51.48300406911818],[5.024567296108847,51.48294231732431],[5.024507277323361,51.48290260751267],[5.024430868076684,51.4828674579756],[5.024391231103847,51.48284084506739],[5.024310651471692,51.4827961184893],[5.024249013767308,51.4827681158252],[5.024200072366402,51.48273666496555],[5.024146745179391,51.48271180716615],[5.024015505802947,51.48265080609839],[5.023955583129902,51.48262622432826],[5.023854276905854,51.4825738824332],[5.023774930794315,51.482529851452085],[5.023710075014001,51.4824812632888],[5.023668915237756,51.48245254203103],[5.023644298807141,51.482425364387815],[5.023622658824562,51.48239863645329],[5.0235988771996,51.48237509284539],[5.023548281465643,51.482330980429914],[5.023506456239831,51.48229007731523],[5.02347904264619,51.48227247290991],[5.023451000729319,51.48224882611569],[5.023430120152705,51.48222077017824],[5.023419441911416,51.48219868756627],[5.023401141144179,51.482177480081546],[5.023388402417225,51.482161035969455],[5.023375654638672,51.48214932888756],[5.02335004887486,51.48211989192812],[5.023321766456237,51.48210294095564],[5.023290882671027,51.482085451535326],[5.023264476651292,51.48206969290789],[5.023195601948593,51.482050368219255],[5.023109875568426,51.48202668535352],[5.023044121916137,51.48200773884318],[5.022976056810404,51.48198980980189],[5.022933437865163,51.481981640953435],[5.022896937464941,51.481962650769105],[5.022839323223403,51.481926830722905],[5.022790931664463,51.48189346638285],[5.02276743181839,51.48187257515749],[5.022729128572616,51.48184682875903],[5.02269595763402,51.4818219702733],[5.022655858554259,51.481804766526636],[5.022591971660613,51.48179006826729],[5.022552284204921,51.48178618706619],[5.022413975473014,51.481781602339595],[5.022364440610756,51.48178318242861],[5.022328326289291,51.48178432802451],[5.02230301288985,51.481781390519416],[5.022278792624815,51.481778573278056],[5.022257315092521,51.481765841045565],[5.022205586887224,51.481730353683105],[5.022164610255357,51.481687969594034],[5.02206932504984,51.481590827153475],[5.022027834152246,51.481544387490615],[5.021969888712219,51.481494372772374],[5.021923266104294,51.48145059566411],[5.021865314322183,51.481388841592626],[5.021816590397446,51.48135758815635],[5.021777289197381,51.481309222676764],[5.021753490271402,51.48129161119521],[5.021692706409386,51.481233012206964],[5.021671106670432,51.481208657055355],[5.021634703294048,51.481175931997555],[5.021610994729667,51.48115604662083],[5.021578483052519,51.48113169324668],[5.021539362031136,51.48109859111247],[5.021476841707332,51.48102146080067],[5.021432270791286,51.48097328544025],[5.021409480121616,51.480928764787954],[5.021366596494189,51.480856945338175],[5.021318114828964,51.480792074599265],[5.021264300338538,51.480722647820855],[5.021203253644809,51.4806521466701],[5.021149629538403,51.48058414964212],[5.021110300317902,51.480532278239814],[5.021083347846786,51.48049516916616],[5.021063184846849,51.48047303861995],[5.021052154421311,51.48046093217202],[5.021011914887287,51.480432779141104],[5.020963319638987,51.48039467633403],[5.020924984425004,51.48036423711847],[5.020875876329201,51.480336218021684],[5.020838300266568,51.48030984406488],[5.020802246949684,51.48028208162009],[5.02077585607484,51.48026288877605],[5.020760491754875,51.48024195974568],[5.020748685796415,51.4802189115499],[5.020749019713115,51.480198885705796],[5.020767550000242,51.48016627880326],[5.020776971777782,51.480140348911775],[5.020795077698559,51.48011932714722],[5.020824761870696,51.48008524512373],[5.020840304129626,51.480069743378586],[5.02084840121252,51.48004563403789],[5.020850497084836,51.48003383840933],[5.020854648013527,51.480002795366225],[5.020858787669476,51.479980309559174],[5.020849864709598,51.479953198522004],[5.020842992352647,51.47991812990155],[5.020821012974547,51.479887418364434],[5.020799199565916,51.47985576352707],[5.02077349686091,51.47983337285233],[5.020750622618123,51.47981190789786],[5.020732613186074,51.47978518181995],[5.02070313458368,51.47976154782427],[5.020677803499119,51.47973949986613],[5.020638098682771,51.47970940681538],[5.020610829555082,51.47968491681309],[5.020555133582146,51.479649218498935],[5.020522118215368,51.47960896217777],[5.020483419458404,51.47950760058301],[5.020456549441192,51.479476478113554],[5.020449772331908,51.479456438925794],[5.020433779966749,51.47941702704645],[5.02042088248979,51.47939192595659],[5.020404393539839,51.47937663826821],[5.02039385951133,51.47936193557196],[5.020376938129552,51.479341361147306],[5.020348830195997,51.479324544824216],[5.02031284077027,51.47930149252005],[5.020289334669438,51.479285256930005],[5.020260463027429,51.479266757293104],[5.02017462884258,51.47920371025858],[5.020149681549364,51.47917162297686],[5.020126141207326,51.47915072209416],[5.02010515098984,51.479125982045815],[5.020091541330303,51.479101759575485],[5.020090047535679,51.47908171000806],[5.020084995035056,51.47905311894699],[5.020085458374215,51.47901707558962],[5.020070997357085,51.47898418530287],[5.020062228346706,51.47896127242388],[5.020048181561311,51.47892343064522],[5.02003900193757,51.478890745721955],[5.020014460277962,51.4788762236673],[5.019994860806747,51.478852198080894],[5.019959635753596,51.47882725144701],[5.019924663720365,51.47880484940919],[5.019910051872944,51.47879781920892],[5.019880612775865,51.478780126677655],[5.019832696057541,51.478763526570745],[5.019776498680147,51.47874023075185],[5.019730352729842,51.478723618196646],[5.019665203623041,51.47870722446752],[5.01963354338945,51.47869365071102],[5.019590869424586,51.47867313893007],[5.019555414780231,51.478648146506686],[5.019483921894763,51.47859201149681],[5.019468036170077,51.47857161997349],[5.01944497644029,51.47854654070418],[5.01943088810455,51.47851926946707],[5.019411074695251,51.47848792627922],[5.019389470922079,51.47845547183485],[5.019364405206009,51.47842212558603],[5.019348702370687,51.47839514588128],[5.01933634699922,51.47835116104879],[5.019314358935219,51.47832174357094],[5.019294028520834,51.47829205266053],[5.019273936430697,51.478279189404496],[5.019244649648091,51.478242719728634],[5.019241305550301,51.47822368004498],[5.019225133454595,51.47818887864704],[5.019214675058446,51.47815599187409],[5.019211233100302,51.478133032793636],[5.019203907098959,51.47810797608763],[5.019167286860357,51.478056301312414],[5.019147246338726,51.4780352944048],[5.01911844408222,51.47800302396135],[5.019094908210842,51.4779763611031],[5.019072363559417,51.47795351258738],[5.019045570790418,51.47793977423847],[5.019035277974011,51.47793450135765],[5.019031797211702,51.47793237803164],[5.018972623647937,51.47789636236993],[5.018946865152377,51.47787577784499],[5.018917139421973,51.47781177421173],[5.018915624082532,51.477769540365486],[5.018934360492073,51.4777239456788],[5.018909980114229,51.47767714535711],[5.018895101258861,51.477656918725984],[5.018869542350251,51.477631256178604],[5.018851234629482,51.4776113962534],[5.018826010102309,51.4775906695655],[5.018802535177852,51.47756185853178],[5.018772919878347,51.47753585058294],[5.018740473655323,51.47751280896495],[5.018719556464821,51.47749168236254],[5.018696519420003,51.47745324575544],[5.018685828548024,51.47742603008938],[5.018676716562947,51.47739581716793],[5.018660660752817,51.477366301430415],[5.018660636538152,51.47731415771205],[5.018636837934303,51.47728268495731],[5.018631410715701,51.4772507308585],[5.018610973101509,51.477213057491305],[5.01859038914098,51.47718101959429],[5.01855708378853,51.47715390331587],[5.018534053017635,51.47713250933369],[5.018516392713612,51.47710562220884],[5.018503777016561,51.47707615326461],[5.018496346302244,51.47705165348204],[5.018480071744616,51.47702429432381],[5.018478023026925,51.476996431769585],[5.018441037517339,51.476974076854695],[5.018386041480977,51.47693788531793],[5.018355444766858,51.476922939292294],[5.018316189233142,51.476891183940644],[5.018282892096577,51.47685954627552],[5.018228570315498,51.47682722194935],[5.018186427158551,51.476775250755836],[5.018052171253794,51.476686377285525],[5.018005366318541,51.47665550582484],[5.017959400568822,51.47660458313299],[5.017898718077392,51.47656147902432],[5.017838120909693,51.47650254599272],[5.017797847715898,51.47646679624737],[5.017757662256362,51.476416691756896],[5.017742220617897,51.47637723629193],[5.017689366230505,51.47631497488019],[5.017649039879399,51.47627162044491],[5.017641076163549,51.47624192343001],[5.017631370183259,51.47622648602214],[5.017621614759054,51.47620650015729],[5.017594850399972,51.476173480725],[5.017571425658328,51.476145766222075],[5.017515336197924,51.476115035958934],[5.017486386111286,51.47609240055889],[5.017446559424561,51.476051375716345],[5.017405300347106,51.47602544739824],[5.01738679594138,51.47601046749846],[5.017328406461361,51.47596699282355],[5.017265120965551,51.47592732282107],[5.017208628603525,51.47588069006078],[5.017120044429235,51.47582080505262],[5.017042453124074,51.475766779523255],[5.016948146460591,51.4757114784759],[5.016897361632228,51.47567992877959],[5.016832434301026,51.475635156720784],[5.016775281934092,51.47560428789627],[5.016707536682374,51.47556798320561],[5.016613465972684,51.47550324446189],[5.01658496095377,51.47548792707848],[5.01652255693101,51.4754391538779],[5.016538734662565,51.47540215366303],[5.016568186495698,51.47535595515799],[5.016611367024929,51.47530305866384],[5.01665517424521,51.47526157983644],[5.016667361374683,51.47524975337732],[5.01667254977776,51.475231253045564],[5.016664308299086,51.475218103340744],[5.016654737031264,51.475209174121346],[5.016594993200863,51.475174917218375],[5.016542257657315,51.47514616565902],[5.016135115268457,51.474926715986484],[5.01605821251278,51.47488567171634],[5.015978071049668,51.474842891261865],[5.015966720550111,51.47483683272462],[5.015740602657647,51.47471224886373],[5.015556024976984,51.47461251580165],[5.015527669191876,51.474594897515566],[5.015421418090262,51.474545121230165],[5.015384561530889,51.47452855449222],[5.015265320744149,51.47446552325947],[5.015204165304604,51.47442811508445],[5.015001976655377,51.47429965096463],[5.014898084848727,51.474243140166465],[5.014664135800068,51.474126439322355],[5.014560045714083,51.47407666914111],[5.014518257965205,51.47405596056062],[5.014445219103987,51.47401976349131],[5.014421690100769,51.47401042998029],[5.014301807830923,51.47395575523287],[5.014259077469456,51.473935933433715],[5.014187573034773,51.47389696358287],[5.014132790503996,51.473854901055525],[5.014072553426569,51.47381102332529],[5.013993859435118,51.473771221394436],[5.013877141099954,51.473717005756505],[5.013832110468765,51.47369690678354],[5.013696054058436,51.47363139320662],[5.013600462471958,51.47358111002223],[5.013417843428789,51.47348937979417],[5.013238753244126,51.47340619988083],[5.013170471569492,51.47337811609586],[5.013127135516005,51.473362067209166],[5.013028594901191,51.473320493181525],[5.013007663187344,51.473310448607215],[5.01286589184985,51.47324006182304],[5.012736528209557,51.47318364720066],[5.012498041098254,51.473077534140636],[5.012334048937399,51.47299655857448],[5.012302391714512,51.47297811991267],[5.012220701903024,51.47293543076262],[5.012113851489039,51.47288942478992],[5.011905406267664,51.47280596874298],[5.011789222669021,51.47275732573953],[5.011603627512754,51.47267825720643],[5.01120486232181,51.47251310913093],[5.011050955940129,51.47244879339367],[5.010966681289114,51.472405645596005],[5.01089798500719,51.47235841312183],[5.010836084596635,51.47230742724075],[5.010800323884854,51.47226317725855],[5.010744943157386,51.47217221245198],[5.010698469681178,51.47208325386174],[5.010672604940272,51.472008474031185],[5.010643397072797,51.4719028520347],[5.010633467513105,51.4718678538136],[5.010607223254802,51.471786780624896],[5.010598593256891,51.47176868542336],[5.010565496682887,51.47171563499324],[5.010527843678862,51.471656637286394],[5.010484688205991,51.47160166674788],[5.010427152358884,51.471545211593515],[5.010368200473982,51.471485965330714],[5.010346058064676,51.4714502085696],[5.010330278663129,51.47142471950564],[5.010297639353323,51.47135126603187],[5.010259592480277,51.47125298616759],[5.010212780307401,51.47113562186013],[5.010203027483438,51.471114107281274],[5.010183292371879,51.47108141443189],[5.010019117918084,51.47081526692446],[5.009951900546173,51.470694151206224],[5.009866062072316,51.470527582129534],[5.009807776200562,51.470422944583675],[5.009735272926859,51.470297227391974],[5.009680211991852,51.47018558898635],[5.009662456018332,51.470157306927504],[5.009648247380777,51.47013514868056],[5.009572989016393,51.470029377481616],[5.009535627947147,51.46995285233975],[5.00950599009183,51.46986484657845],[5.009498098375781,51.46984459638153],[5.009471307060489,51.469795161521176],[5.009452520085863,51.46976975249111],[5.009327379310187,51.46951829200477],[5.009264536928949,51.469373369863504],[5.00920250244033,51.46925254013101],[5.009173964654094,51.4692055265054],[5.009097761205794,51.46909256093377],[5.009020180303752,51.46895487180715],[5.008991736936087,51.46889653262531],[5.008934421818341,51.468762145028684],[5.008892666391671,51.46866912906786],[5.008879595961699,51.46863999015787],[5.008861704134,51.46860913675119],[5.008782830041283,51.468473115174746],[5.008734687000296,51.46839547616874],[5.008642217592151,51.46824857000055],[5.008554832057496,51.46809610722241],[5.008495812136153,51.46797663518349],[5.008443212105917,51.46784666710905],[5.008416959491672,51.467784649501425],[5.008328497219097,51.467606115695574],[5.008301277499775,51.46755658927591],[5.008231866058498,51.46740625198208],[5.008136754884094,51.46719677516263],[5.008094969986002,51.46709902173604],[5.008036466341292,51.466952405120146],[5.008019439430374,51.466905967904374],[5.00797493028555,51.46678977865849],[5.007953273509509,51.466729034290836],[5.007859254556291,51.46642329132303],[5.007810972765287,51.46625908985469],[5.007792624069407,51.466198625865694],[5.007637121041352,51.4657245933553],[5.007455529563764,51.46518683544695],[5.007381829879372,51.46493023668788],[5.007291625833738,51.464633853915736],[5.007264399469464,51.464499203791746],[5.007251407424597,51.46438329657556],[5.007255141443761,51.464349690816746],[5.007309725847718,51.464189059768806],[5.007371136119089,51.464003641961675],[5.007454777435464,51.46374072355073],[5.007475196704617,51.46367346425426],[5.007544381085601,51.46341840885172],[5.00757846472894,51.46326553121515],[5.007623998854039,51.46305093810594],[5.007685401204192,51.46277976745532],[5.007741858580223,51.462497524538264],[5.0077493376051,51.46245305454872],[5.007773047689463,51.46231191839136],[5.007789987835086,51.46226487240992],[5.007824377497998,51.462230557263155],[5.007841157558848,51.462220005067365],[5.007864070425073,51.46221603458129],[5.007907775852763,51.46221214962089],[5.007940248844132,51.46220927085055],[5.007995059072159,51.46221106686431],[5.008204592560011,51.46222621913422],[5.008477277114433,51.46224382308817],[5.00865538809443,51.462254962506925],[5.008672877060588,51.46225605291754],[5.00874062741442,51.46225914895975],[5.008762242932965,51.46225544375427],[5.008790711079445,51.46224097425992],[5.008829539233302,51.462191931660136],[5.008903872785963,51.46204340878615],[5.009020733536318,51.46176414747576],[5.009071051308944,51.46163100734219],[5.009149534596339,51.46143305964197],[5.0091762450013,51.46137022490336],[5.009237895724763,51.46124116632785],[5.009268712368111,51.46118634484644],[5.009426330640651,51.460936967810426],[5.009583148017477,51.46069720593034],[5.009747448186966,51.460457198370044],[5.00988164245204,51.46025565500695],[5.009896709323297,51.460225950948015],[5.009943881076209,51.460142058602514],[5.010017210621955,51.46002705979858],[5.01007654389539,51.459951476338226],[5.010229963474067,51.459834596768474],[5.010252190797168,51.45981766182857],[5.010261061204566,51.45982032417222],[5.010267434082436,51.459822241374226],[5.010277754103516,51.45982534884558],[5.010320225785137,51.4598381061636],[5.010384788902277,51.45982599998719],[5.010394402479385,51.45979448051305],[5.010485788040069,51.45972304522983],[5.010443227537432,51.459667096753634],[5.010439683275059,51.45966242914439],[5.010430274458667,51.45965005722928],[5.010421555711448,51.459625579697665],[5.010518174248514,51.45946067830357],[5.01055869256384,51.459432943914074],[5.010631758276669,51.45942265379381],[5.0106729296916,51.459416863004186],[5.010715788134164,51.45936711367637],[5.010746624548089,51.45932694352697],[5.01077069237039,51.45928747064474],[5.010787244346914,51.459217232007994],[5.010776039916681,51.45914528590041],[5.010734608668588,51.45907459063417],[5.010600352772184,51.45891892194361],[5.010554399109608,51.458907987195786],[5.010545121352842,51.4589076246791],[5.010455149007303,51.45890407144567],[5.010385151468461,51.45884272204724],[5.010294906336853,51.458793891485605],[5.010243331402594,51.45876675871974],[5.010236910690963,51.45867325500695],[5.010276487876275,51.45858529306358],[5.01030109666702,51.45856739501852],[5.010359493929355,51.458552500418236],[5.010384583192231,51.45854609152674],[5.010394428027527,51.45846917961861],[5.010462704675857,51.45824439362765],[5.010553293530624,51.45799742344266],[5.010560769536761,51.457893717405625],[5.01052506050388,51.45784461351368],[5.010474735653691,51.457805619731744],[5.010266478444621,51.457673352215465],[5.010174825640287,51.45760366310947],[5.01010567664004,51.45754438368556],[5.010006803065719,51.45744321049982],[5.009924610946804,51.457343169790114],[5.009802435852949,51.45717171898952],[5.009787873825605,51.457123222553925],[5.009802838837174,51.45707095641326],[5.009863938640913,51.4569553788307],[5.009994103921533,51.45680469861483],[5.010157377935784,51.45661718143338],[5.010393155514831,51.45641353854872],[5.010527235464636,51.45631105007274],[5.01065141963074,51.456239450822004],[5.010781986451819,51.45617892818221],[5.010885263443713,51.45611265451695],[5.010950270927288,51.456046077648175],[5.010977030372405,51.45601146731904],[5.010992437253197,51.455940326076146],[5.010996429679869,51.45589242890795],[5.010995558198717,51.455527482868014],[5.010891604566006,51.45508355301003],[5.01079277828166,51.45469842600169],[5.010662454280894,51.45438187135591],[5.010517578373491,51.453928820362],[5.010345693524203,51.45361060313155],[5.010249378606132,51.45347240471315],[5.010198121889592,51.453398846032],[5.01013507453662,51.45333145148104],[5.009887713591245,51.45311141655783],[5.009518067829448,51.45275237896458],[5.009424707837663,51.45266434664498],[5.009329624085047,51.4525933872984],[5.009258281816733,51.45255675188925],[5.009149596210564,51.45252997301569],[5.009023620142588,51.452511587452804],[5.008586899269978,51.45248176732666],[5.008285381221742,51.4524611036074],[5.008185309099963,51.45245394727395],[5.008126507555035,51.45243182377967],[5.008102761591685,51.45241547702204],[5.008074428196688,51.45237987942938],[5.007966164427085,51.4522161122271],[5.00788369989238,51.452046765844095],[5.007855737644548,51.45193206837545],[5.007852086614051,51.45181762968287],[5.007839770087756,51.45175907287276],[5.007803002634969,51.45171706578634],[5.007569943092702,51.451544173432026],[5.007489758629928,51.45148135090237],[5.00747536208105,51.451472207452184],[5.007466096485415,51.451465390801594],[5.007440170977339,51.45145862781611],[5.007337761140807,51.451459508079154],[5.007303058677498,51.4514597996386],[5.007084728119904,51.45148767311156],[5.006789397249194,51.451536688498756],[5.006506958699994,51.45157504856937],[5.006403231452793,51.451575159672174],[5.006400963487864,51.45157455002703],[5.006304762466518,51.45154859124147],[5.006274274503847,51.45153347154526],[5.006196881608911,51.45148283699465],[5.005641100545175,51.45110369167089],[5.005492942134111,51.45099647480739],[5.005409055209698,51.45080937818324],[5.005367868557594,51.45067017843642],[5.005367425211538,51.45061492310944],[5.00536082288243,51.450540986979696],[5.005360731144846,51.45053991701776],[5.00532754096263,51.45046111189059],[5.005301027583729,51.45038212185681],[5.005253224435805,51.45029952058568],[5.005219337913958,51.450252344576946],[5.005142574027658,51.4501682642151],[5.005097264336776,51.45009545979375],[5.005064954830925,51.450009511410165],[5.005055012166936,51.449923968828834],[5.005048655089892,51.44977797062625],[5.005018342005785,51.44955692776523],[5.005000631030616,51.44939250138635],[5.005002629343187,51.44937893490821],[5.005034808687089,51.449329377393546],[5.005209156842662,51.44920836617828],[5.005279327512302,51.449189818284715],[5.005342668799069,51.44914848847773],[5.005356074594556,51.4490851616044],[5.00535697136276,51.44903479155007],[5.005166644665838,51.448228785209636],[5.005122714424894,51.44804657415542],[5.005046406676206,51.44774215380977],[5.004938591217415,51.44733717187481],[5.004867518613326,51.44705716402508],[5.004766636631767,51.446661139442604],[5.004722446330655,51.44610061751353],[5.004734327624104,51.44598754191766],[5.004689973753825,51.445558039553596],[5.004661482821389,51.44507244536526],[5.004629485028753,51.44497558549256],[5.004414676164582,51.44470410383801],[5.004367941407334,51.444615078698625],[5.004426106568086,51.44458139083438],[5.005072410013518,51.44449844798234],[5.005103614785379,51.44446691870041],[5.005112246471284,51.44445820089564],[5.005076839873677,51.44441443556994],[5.005025823785463,51.44436927979781],[5.004929160836534,51.444285394756065],[5.004815998623885,51.44417934323251],[5.004651881260763,51.44398161004184],[5.004581831204291,51.443925029893265],[5.004471762910277,51.44388068701545],[5.00438219735681,51.44385797531601],[5.004263466389951,51.44380210720421],[5.004173917303164,51.44373125160275],[5.004013605567739,51.443591228835494],[5.003921917524084,51.443547332294365],[5.003647543165848,51.44344319505121],[5.003579113665051,51.44341990499729],[5.003234732450547,51.44335871866023],[5.003073277852155,51.443334322239245],[5.002887238113339,51.44331714351716],[5.002640516452394,51.443217733146746],[5.002594188410785,51.44316803444434],[5.002523768805153,51.44312842261054],[5.002329755512807,51.44306255156662],[5.002209085674559,51.44300858057457],[5.002031698970911,51.44295315488306],[5.001897122880134,51.442917645532106],[5.001724886040956,51.44286054648602],[5.001642925026021,51.44283875666624],[5.001369543796371,51.442791731909104],[5.001118563287331,51.44276282105672],[5.00103549151666,51.442765233869096],[5.000977367184783,51.442766920191666],[5.00096182954407,51.442763911471516],[5.000903168650702,51.44275253531108],[5.000838769954427,51.442715558111864],[5.000177192476973,51.44206688542835],[4.999599542415434,51.44159958428348],[4.999225272855317,51.441282071096545],[4.998947531473179,51.441066118287786],[4.998859383905759,51.44099273738358],[4.998364465759328,51.44058075247495],[4.998061603949659,51.44035321720305],[4.997575304299961,51.44010741494547],[4.997385695133708,51.44001157279418],[4.996363078015024,51.43949316834076],[4.996284444728219,51.43945330946888],[4.994984057651889,51.438799220498574],[4.994342578460786,51.43847812346759],[4.993903622353392,51.43825728313055],[4.990700503362954,51.43663056947957],[4.990655242602388,51.43660758421936],[4.989984590154052,51.43626298411252],[4.988362730321717,51.43542956867322],[4.988348184244097,51.435422094233445],[4.988288754424924,51.435391553995714],[4.987207391803874,51.43483585205928],[4.985533583096569,51.43398674921819],[4.984983958230697,51.43370808277919],[4.983850228218595,51.4331330048961],[4.982630548067076,51.43249934371864],[4.979880884671776,51.43107069306778],[4.979796474939294,51.431027144396474],[4.979790233973582,51.43102393159086],[4.978737551868385,51.430480861880966],[4.97802753561634,51.4301377895053],[4.976990183988174,51.42957832616322],[4.976027223723473,51.42907990679962],[4.97498629320595,51.42853199940961],[4.974418264305256,51.428232597495175],[4.973872827283071,51.42794485037169],[4.972874933235497,51.42741838882081],[4.971280367464694,51.42657751394945],[4.970891574339369,51.42637234267658],[4.970230061762416,51.42602323818096],[4.969312497868575,51.425539001569454],[4.96887981218502,51.42531023255745],[4.967849091788635,51.424766711023935],[4.967780081308494,51.42473031905943],[4.967773270836722,51.424726681085204],[4.966032105337351,51.42379605596746],[4.966010959470859,51.42378475263761],[4.965910495286249,51.42373105045519],[4.964449583218159,51.42295031238242],[4.964446435783607,51.4229486290632],[4.963218730112157,51.4222930171815],[4.962995793993058,51.42212172542489],[4.962985144722406,51.42211354286061],[4.960944975081627,51.420551072949074],[4.960636092669792,51.42031425787662],[4.959858036995836,51.41971817714909],[4.959837168531555,51.41970218155446],[4.958608635706082,51.41876078179707],[4.957346943462801,51.417792118558246],[4.956748577002489,51.417332229770814],[4.955564739003337,51.416422324311064],[4.954342334207256,51.41548388593372],[4.952314058934209,51.41392242166084],[4.952296064650241,51.41390856575818],[4.951691757329926,51.41344319927434],[4.951232048330404,51.41308967843404],[4.951168713905876,51.41312287107212],[4.949652805519602,51.41391740517263],[4.949055928041552,51.41423023140175],[4.949328354675512,51.41465582234579],[4.948271534782855,51.415491935219855],[4.94690129165553,51.41578907402414],[4.944378397635735,51.416628876734755],[4.944319839688836,51.41667989961014],[4.944310952257566,51.416687650173635],[4.943627644892779,51.41728307913831],[4.942913973369582,51.417904950405976],[4.942903936506825,51.41800408564635],[4.942493901070237,51.419038258173266],[4.942406297096377,51.41925593862788],[4.942354200540787,51.41938679673587],[4.942266811828206,51.419604379028684],[4.942231962677437,51.4196928667211],[4.942108094799166,51.420002274192775],[4.941986299733438,51.42030682649972],[4.941526906099883,51.42052925322309],[4.941291826806061,51.420643070067754],[4.941181957060508,51.42069626829374],[4.941151337781629,51.42069740966446],[4.940416215863809,51.42072479915813],[4.940415180335158,51.4207248401365],[4.940000315304659,51.42073309338022],[4.939605825923647,51.42074094691522],[4.939520511892449,51.42074264205611],[4.939093581973372,51.42075114240905],[4.939042174926124,51.420752167425256],[4.93849444195599,51.420763059915856],[4.938491002747182,51.42077068717175],[4.938308511408184,51.42117598245774],[4.938142522984733,51.42154463969294],[4.937979075064751,51.421907616560276],[4.937968389089085,51.4219313507999],[4.937871163921757,51.42214655486986],[4.937497525137448,51.42297361328592],[4.937149620877568,51.423741182996366],[4.936715381166818,51.42470653156132],[4.936646651679713,51.424760630450585],[4.936517383591807,51.42480232463032],[4.93640429918176,51.42483878679292],[4.939975821921076,51.42515432149948],[4.93997685041795,51.42517113449919],[4.941245882747636,51.4252548596256],[4.94117768505663,51.42555640688938],[4.941175310420268,51.42556692369641],[4.941085352416597,51.42580577173708],[4.940913585217132,51.42626153015043],[4.940875085999876,51.4263637023917],[4.940663926991143,51.42692415509872],[4.940565916114089,51.42689976188944],[4.940294303338761,51.42683215979806],[4.940283690706016,51.42685575070275],[4.939823336614118,51.4278792669411],[4.939725975844126,51.42785732946652],[4.938416263020216,51.427562221699176],[4.938400736167106,51.42758243172152],[4.938370978376636,51.4276212028058],[4.937960399339019,51.42815563385931],[4.937951949017229,51.42815224850117],[4.937954982013773,51.428225321146655],[4.93794053142021,51.428273436487515],[4.937916359748512,51.428311410984016],[4.937901184769587,51.428335262759134],[4.937864966213054,51.42838169426049],[4.937859432264836,51.42838878309004],[4.937764051888842,51.428507274640936],[4.937659850729586,51.42863656363454],[4.937621472420416,51.42867886088053],[4.937562081560878,51.42872888840969],[4.93744554313458,51.42880994071262],[4.93739767705703,51.42884319453615],[4.937326229836129,51.428818047076916],[4.936164557552733,51.42840912924123],[4.936140303193848,51.42843786256641],[4.935444769096848,51.42926197062576],[4.93536936499649,51.42922406052769],[4.934966405561339,51.429021500849686],[4.93485150106669,51.42897934740671],[4.934733105088143,51.42893259602179],[4.934642069701095,51.42890358666852],[4.934488625386762,51.42886036652141],[4.934454433127701,51.428852943935134],[4.93418330599881,51.428794084605244],[4.933923969597889,51.428736771577775],[4.933829918233972,51.428711821798764],[4.933721625816675,51.4286831042213],[4.93320061244182,51.42854390901206],[4.933104962026052,51.428540992967996],[4.933015094252633,51.428534971251615],[4.932926376080903,51.42852902585215],[4.932925159249611,51.42853569979499],[4.932748735065985,51.42950428433886],[4.932569664527788,51.43028323949422],[4.932563105903434,51.43031366800044],[4.932486420088575,51.43029620056958],[4.932460847304117,51.43029098628143],[4.931965092548071,51.43018987970871],[4.931117960533527,51.42995616158774],[4.930584289012379,51.429854037987695],[4.930582825434159,51.4298738256047],[4.930581361854644,51.42989361322171],[4.930578634066587,51.42993051057247],[4.930594462162175,51.429973979442764],[4.930723504402128,51.43008324886043],[4.930839629610849,51.4303337715933],[4.930943055607028,51.430473951939646],[4.931047826825467,51.43049554817874],[4.932340291253048,51.43076190713211],[4.932521652233886,51.4307992792986],[4.933598602085364,51.43102120656707],[4.939239949723998,51.431438867085554],[4.940084683100958,51.431595725528304],[4.939806325954494,51.43229470611454],[4.93993594344232,51.43231893343588],[4.940092089706074,51.43233616111591],[4.940172554513157,51.43234285144863],[4.940398762761217,51.43235711113597],[4.940568764984929,51.433176551412096],[4.940924096762378,51.43320748405476],[4.940782085759565,51.43398454358956],[4.940989601541249,51.43400818680791],[4.941011671730333,51.434016001563606],[4.941393741215068,51.43415169153132],[4.943495880899968,51.434898195951874],[4.943313632132361,51.435197548767974],[4.943288787487806,51.435193948629596],[4.943263725034546,51.435190563388346],[4.943238706690294,51.4351870794328],[4.943214722453864,51.43518373423829],[4.943213674056628,51.43518358642871],[4.943188685532181,51.435179994710346],[4.943163711480032,51.43517639405289],[4.943138752688179,51.435172703560205],[4.94311380836873,51.43516900412844],[4.943088893865695,51.43516519693931],[4.943063979366835,51.43516138974487],[4.943039108977827,51.435157483836214],[4.943014252973876,51.435153577977026],[4.942989426786774,51.435149564360486],[4.94296460060406,51.43514555073869],[4.942939818531605,51.43514143840284],[4.942915036463634,51.43513732606165],[4.942890298593724,51.43513310601799],[4.942755740002112,51.435113177811],[4.942749041196957,51.435127633244136],[4.942688987986841,51.43525710380866],[4.942579163526902,51.43549389967794],[4.942553234318105,51.43561622825096],[4.942189683746363,51.43645466540821],[4.942581455019505,51.43661553005351],[4.942670564774858,51.436649424699546],[4.942760575590451,51.436682369896765],[4.943294791787645,51.436851774578464],[4.943336809266962,51.43686571422254],[4.94337815752989,51.4368804423199],[4.943419548876069,51.4368951795552],[4.94346022803887,51.43691068710374],[4.943500935904583,51.436926203735986],[4.943540888619643,51.43694247254149],[4.943580855569665,51.43695875936495],[4.943620038870301,51.43697577128802],[4.943659207731394,51.436992792131754],[4.943697549887761,51.43701052892374],[4.943735877692617,51.437028265648486],[4.943773335737145,51.4370467091702],[4.943810765224085,51.437065134593674],[4.943847310744998,51.4370842487837],[4.943883784651819,51.437103335723705],[4.943919346005225,51.43712309334522],[4.94393149389732,51.437130986704915],[4.943992120179025,51.43719837224255],[4.94406583170318,51.43725714224201],[4.944172857000845,51.43731984991912],[4.944241503477837,51.43736412862212],[4.944672177277572,51.437649601653],[4.94473140859314,51.437697898305565],[4.944801204676729,51.437767583358415],[4.944868841935943,51.43785819508067],[4.944920067571652,51.43792675798111],[4.94498241497281,51.438028990071444],[4.945068480706077,51.43818442675639],[4.945163353205633,51.4384254520448],[4.945171210214322,51.43847099205331],[4.945165880828456,51.43849850453274],[4.945992546758373,51.43856577687192],[4.94605109454546,51.43857053754958],[4.94609708250819,51.43857422600243],[4.946100123858582,51.43856461949263],[4.946103106201607,51.43855516556916],[4.947210156262963,51.43866002815577],[4.947296415059481,51.4386682005574],[4.947298313192877,51.438662275111376],[4.948525304981286,51.43854283956343],[4.949636555302987,51.43831105578237],[4.950838859914565,51.43806001537907],[4.950964549082398,51.437709545024255],[4.950999938531357,51.43761086356123],[4.95124716355796,51.437952552345216],[4.951240019440112,51.43819125887363],[4.951103731954988,51.43845596383988],[4.951064070673116,51.4385365888686],[4.950933162398123,51.43883562394079],[4.950928163105833,51.43884703898934],[4.951037270464369,51.43883631870652],[4.951227628700654,51.438817623216806],[4.951298823754207,51.43880840599741],[4.951956672049112,51.43874722973123],[4.953179641101794,51.43863532577645],[4.953288510046733,51.43862536655078],[4.953232601577056,51.43894908755729],[4.953181876360414,51.438948889928554],[4.95309212397914,51.43945690791844],[4.953069579200302,51.43958450976085],[4.953134054426005,51.43958929791686],[4.95342061619446,51.43960736121135],[4.953961947347271,51.43964424856761],[4.954247381493528,51.43966298879101],[4.954479275433853,51.439678015190154],[4.954702204203726,51.43972235628702],[4.954755377540123,51.43973293538215],[4.954755590605527,51.4397256372781],[4.954755764161789,51.43971947161463],[4.954867093758674,51.43972630209049],[4.954879782099068,51.439759373891334],[4.954969242991134,51.44009760267768],[4.955013743733295,51.44025383076762],[4.955087659610235,51.44044781278607],[4.955791737239225,51.440857897180116],[4.955908486901981,51.440933690662625],[4.956010198746704,51.440999666648246],[4.956937205752146,51.44148130923769],[4.956933018124385,51.44151048037759],[4.95735170357738,51.4417024775563],[4.957676656233265,51.441851683255415],[4.957667612154869,51.44186051290898],[4.958268406379137,51.44205475890321],[4.958345024207972,51.44207953490262],[4.958347966282393,51.442077172675205],[4.958382096320494,51.442049864322215],[4.958957855211481,51.442268509189155],[4.959026794093925,51.442294694766495],[4.959103818129468,51.44224261767312],[4.959328734399652,51.44208470958534],[4.959340252621291,51.442077363034514],[4.959380450882052,51.442051694618314],[4.9612076053938,51.44276352109142],[4.961304744489623,51.442801367817154],[4.961379941381646,51.44251820798621],[4.961455596170402,51.44231989487258],[4.961632073278753,51.4417431891539],[4.961587311148933,51.44172789780314],[4.962022074758891,51.441322659300674],[4.962447008068608,51.4409265609548],[4.96255190633726,51.4408244346351],[4.962572915071686,51.44079717619465],[4.962587420636115,51.44037178098892],[4.962587477682867,51.44037028905885],[4.962834349321112,51.44037462971097],[4.963743888837232,51.44038027955299],[4.964288726671662,51.440383666439374],[4.964493631672693,51.44038462452195],[4.965548254472008,51.44041958574992],[4.965834058597381,51.4404319978009],[4.966093080279276,51.440444573189495],[4.966419541863448,51.440466712541486],[4.966595326408913,51.44047963386365],[4.967820744782184,51.44054496079488],[4.967407207642585,51.441175591869175],[4.966938769701005,51.44190162843869],[4.966839411215389,51.44205578769994],[4.966644047678216,51.44274402874152],[4.966924497740443,51.444443108849846],[4.966991792353173,51.445111846445606],[4.966992886359624,51.44512268185953],[4.966995193898993,51.445137629513255],[4.9674753942768,51.445020013425754],[4.967706814522901,51.444963335245916],[4.967697734890754,51.44495116776387],[4.967945478169408,51.44489320845344],[4.968082586258453,51.444860766017605],[4.968095695040554,51.444877469292024],[4.968527837850232,51.44477484935721],[4.968512135156539,51.444752384009966],[4.96857554594524,51.444737779989495],[4.968603568326734,51.44473132767952],[4.968667699817277,51.44471655540717],[4.968683755238363,51.44473977705531],[4.968740456103323,51.44472277584753],[4.968791978770335,51.4447073200957],[4.968941740766665,51.444659542221],[4.969087691281377,51.44461012353206],[4.969168592461629,51.44457832339813],[4.969193183816142,51.444572676636376],[4.969284817437991,51.44455164745771],[4.969289547403722,51.44455819024514],[4.969305640260449,51.444580495086264],[4.969764878811593,51.44446986870952],[4.970061956415718,51.44439914650858],[4.970090484936112,51.444392354077884],[4.970351403280967,51.444347973851116],[4.970605016992059,51.44430483438602],[4.970834515096469,51.4442719364437],[4.97092752983907,51.444258605295865],[4.970976218320822,51.444306068884416],[4.970989092637426,51.44431861818208],[4.971085292408675,51.44430619714406],[4.971294127516862,51.44428982689292],[4.971885118612365,51.44422795830049],[4.972575748117888,51.44415489914466],[4.972844140905483,51.4441265039669],[4.973847405494175,51.44402016474584],[4.973890210569953,51.44401562419899],[4.975755790523006,51.444158269890856],[4.97580803094425,51.44436733513145],[4.975872280166039,51.444624496642895],[4.975940348854087,51.444896835629685],[4.976025063791004,51.44523584900132],[4.976201754470099,51.44594179325409],[4.976257420628377,51.44616383213095],[4.976622620721149,51.44756739253267],[4.976898688049978,51.44862024711264],[4.976978122549425,51.44873558256348],[4.977327398435398,51.45015494963532],[4.977335267570265,51.45018694132704],[4.977677224620564,51.4500779752417],[4.977700236205045,51.45007064024196],[4.977725799461353,51.45006751194385],[4.977765763249056,51.45007077123588],[4.977802729197119,51.45008585820693],[4.978363700884533,51.45077973480421],[4.978459486078432,51.45089822760562],[4.978442142033787,51.45093928149098],[4.978410440901647,51.45095302216279],[4.978796845652889,51.45100878378451],[4.978807316434959,51.45104437099315],[4.978852452969572,51.45119774243822],[4.979157358966886,51.452230602243134],[4.980131074384464,51.452353417748085],[4.982026256388973,51.452590645237855],[4.982686628935161,51.4526727917646],[4.982922628766467,51.452702148692396],[4.981593883867339,51.45314087400222],[4.981853479954919,51.45337725440674],[4.982576538599625,51.4540356191608],[4.983476782790433,51.45485176081],[4.984992012716017,51.4549272296426],[4.98516625063891,51.45501797814932],[4.985404866126526,51.45514221540555],[4.98712350790917,51.456036801104794],[4.9870223206741,51.45608727671941],[4.986845772290266,51.45617180390999],[4.986380921155228,51.456394945717086],[4.98597178538876,51.45658598057463],[4.985861747571239,51.456642923640366],[4.985635200441995,51.456774315283276],[4.985392295870232,51.456911870409094],[4.985298401091915,51.456965434802946],[4.98519175415611,51.45702597542921],[4.985117393312239,51.45707682043022],[4.984971767860937,51.45717977039705],[4.984843381072466,51.457275957131635],[4.984820279767159,51.45729479884688],[4.984915101677842,51.457336806532155],[4.986612466451997,51.45808873744766],[4.986339016401786,51.4587963916536],[4.986144779909853,51.45930177366748],[4.985830067045401,51.46012313651138],[4.985826679791557,51.46013196081509],[4.987422474404301,51.46000983204373],[4.988638652295201,51.459916741092165],[4.989740125333888,51.45983241554022],[4.989744560094939,51.45983208007721],[4.989832320118881,51.459825358610175],[4.989852219100008,51.45982383533102],[4.98984454222629,51.45994677539225],[4.989688673929948,51.45995894587167],[4.989592750489307,51.45996783268468],[4.989549970942819,51.4599712105683],[4.989525679727842,51.459973132317096],[4.9893969279054,51.46239196342908],[4.989365513639408,51.46298197715191],[4.989023441109564,51.46427173100902],[4.990689351825502,51.46526891416354],[4.992086236987483,51.4661050645234],[4.992939823515609,51.46661599431799],[4.993487040199515,51.466943386487245],[4.9944129194118,51.46749750639867],[4.995553490746855,51.468180087348664],[4.995542701217716,51.468187961255396],[4.9963593616408,51.46867734869542],[4.997961906715095,51.46963763067197],[4.998611844296797,51.470027084668175],[5.000182837692719,51.47096839941451],[5.00072883652598,51.47129553752703],[5.000933500261122,51.47141945044628],[5.000975097592034,51.47144463068966],[5.003717213198465,51.4731046400926],[5.005971676765748,51.474469286287174],[5.006671212732552,51.47489269948811],[5.006575767656666,51.47497531853169],[5.009741711879067,51.475883120766674],[5.009749148319609,51.47588549985342],[5.009854120555735,51.475919007556186],[5.009856174021708,51.47591959845987],[5.007947975676672,51.47756095351942],[5.007617218803258,51.47778671864347],[5.006537844603202,51.47848917163085],[5.005922834417127,51.47890003595952],[5.005375361812889,51.47971011898719],[5.004899613302385,51.48042124355144],[5.004872686675252,51.48046149685315],[5.005668426839907,51.48128664064254],[5.007579356673474,51.483265670723746],[5.007669020153973,51.483358653976325],[5.007960640025972,51.48366403176723],[5.008604044330374,51.48389181742676],[5.00912396506283,51.48407910109511],[5.009160969104119,51.48409243432037],[5.009876778064963,51.48395998111199],[5.010569172797103,51.48383462102437],[5.010596034002536,51.483829754855044],[5.011330402216845,51.48387739690867],[5.011562748046464,51.48389507024412],[5.013047170539978,51.483983044016306],[5.015434343771298,51.4841222803784],[5.016803041561266,51.48420717725658],[5.017468474511697,51.48424791035886],[5.017430723333115,51.485338384370955],[5.017416447307993,51.485805591270044],[5.017412660264938,51.485919097932964],[5.017411218853574,51.48596184376209],[5.017408047917757,51.48605444459197],[5.017395664468411,51.48617340715821],[5.01734948648393,51.48727282507419],[5.017308321081185,51.4883344971252],[5.017489090283486,51.48834317731007],[5.019784654084565,51.48846171061393],[5.020855104035705,51.48851968858674],[5.021147768771729,51.48853653421146],[5.021291691043494,51.488868084878554],[5.021442497166173,51.48926243416687],[5.022796330676798,51.4913417037153],[5.022847854747079,51.492600339523634],[5.022872964241249,51.49331130888695],[5.023008866984713,51.49364796481273],[5.023499200685021,51.49395690685328],[5.024190504568071,51.494170409096405],[5.024328717351562,51.494218865279265],[5.023250492216637,51.494244337546924],[5.021960596668825,51.4957005200845],[5.022963624050423,51.49637208019505],[5.022986313049893,51.49638726996709],[5.023864888404236,51.496232874226685],[5.025640069101859,51.49591267611602],[5.025784726684662,51.49588666099103],[5.025898263473199,51.4958662482808],[5.025908099461368,51.49586437309521],[5.024865943051884,51.497323618604376],[5.027165203275779,51.49776446941282],[5.02721719860949,51.497774436346646],[5.02749696483626,51.49772560853003],[5.027579409229661,51.497711219749704],[5.032744773635102,51.5007817588058],[5.033220445926604,51.50128494204568],[5.033968973155215,51.501288124596066],[5.034226951752915,51.50161769344823],[5.034381970306753,51.50181925717734],[5.034871973342539,51.502456345740235],[5.035462591251024,51.503209195144045],[5.036114775199774,51.504055052912065],[5.036585510863081,51.504658611216804],[5.037435316008498,51.50574901685652],[5.038239668067834,51.50677637742111],[5.038798593627006,51.50749343864906],[5.038973570779806,51.507717922896305],[5.039730730938939,51.50868494387049],[5.040372746233199,51.50950597408776],[5.040852115397644,51.51012179195284],[5.040955377323276,51.51025522070375],[5.041001905005973,51.51032531765266],[5.041143824847019,51.51056749823463],[5.041298784306764,51.51083222495237],[5.041424781709,51.51105458289332],[5.041700818034087,51.51152647936752],[5.04194003139741,51.511940603836976],[5.042206155555868,51.51239695527599],[5.042491517467029,51.512891241223855],[5.042711777701839,51.5132704409567],[5.042795653333154,51.51341830065156],[5.042827710996573,51.51347481721009],[5.042855411978819,51.51345411697374],[5.042951438086316,51.51338234650401],[5.043006928122101,51.51373862429861],[5.043079802976797,51.51421925798521],[5.043138181347008,51.51460724734054],[5.043199541069992,51.515001186960845],[5.043241174490134,51.51528524454701],[5.043346308028354,51.51533364351364],[5.043360291365889,51.51534008461565],[5.044209289036388,51.515284360002966],[5.044320735846966,51.51527704669129],[5.044266790694622,51.51537542249524],[5.0442033358467,51.51549113652504],[5.043894713439408,51.51604894970146],[5.043897864380821,51.51608004187707],[5.043845969916846,51.51617561004698],[5.043671729672363,51.516496569723266],[5.043560077871444,51.5167022354154],[5.043276919493281,51.51722085020451],[5.043079953662031,51.51756620034646],[5.042908681439163,51.51785146450781],[5.042799038874546,51.51806487465383],[5.042484581756811,51.51868838323534],[5.041948667498779,51.51967627682798],[5.041884820645882,51.519804096201455],[5.041864052480371,51.5198599445206],[5.041583647639973,51.52042439666163],[5.041382144294131,51.52092903715105],[5.041203699377026,51.52154609526317],[5.041111836916945,51.52188794197964],[5.041058697548577,51.52216625437202],[5.041004663406309,51.522563915977244],[5.041062314819922,51.522607268443345],[5.041029265740155,51.52266530043847],[5.04100125077273,51.522715041783705],[5.040979831470404,51.522778501433955],[5.040996402886305,51.52281053230442],[5.040992631916382,51.52314121521048],[5.041001734452133,51.523834504216545],[5.04100344834802,51.52396521389419],[5.041051125475866,51.524402951706286],[5.041130978123794,51.5248049828018],[5.041440610068531,51.525773621979766],[5.041641111463618,51.52624364047819],[5.041819754937165,51.52670820079775],[5.041957392099497,51.52696752673895],[5.041984499257941,51.52701859067177],[5.042242772336691,51.52745585312948],[5.042288263519845,51.52752648569854],[5.042430109451333,51.52778637178738],[5.042627118683539,51.5281473363767],[5.042897978310807,51.52861782966357],[5.043016607637406,51.528825404341475],[5.043173810701375,51.52911178842351],[5.043230463778838,51.52921990034672],[5.043321459110333,51.52940797779748],[5.043346375621882,51.52945945742157],[5.043466935416673,51.52971914473083],[5.043588760739218,51.52997936596102],[5.04365605589674,51.53012312213871],[5.043684686979349,51.53019043269705],[5.043689330396792,51.530211021453205],[5.044038524232783,51.53089931337812],[5.044165281360175,51.53119627622942],[5.044317449950082,51.53159808562733],[5.044598980071035,51.53224690566822],[5.044903039065726,51.53293855014398],[5.045155710817693,51.53351167140008],[5.045042532426048,51.533498018904034],[5.044935272237551,51.533485075757525],[5.044941181705516,51.53349842328347],[5.045146258722436,51.53396151846933],[5.045374712258459,51.53447894632966],[5.045633356658437,51.535064739990496],[5.045662096787075,51.53512984811754],[5.045745066798482,51.535061416978664],[5.045822496557736,51.53499755382909],[5.045848466516444,51.53505156178269],[5.046022628443781,51.535505189855826],[5.046207508083556,51.536009994524385],[5.046495629220977,51.536919347894504],[5.046601006500504,51.53697120509811],[5.046620770218341,51.537034309307586],[5.046661047021203,51.5371874949353],[5.046661605327277,51.537338083962474],[5.046591327047357,51.53753784142708],[5.04666036061342,51.53782941070694],[5.046662889515022,51.537840087640326],[5.046807393365841,51.53782578507792],[5.046910585570707,51.53781557776892],[5.047003036961319,51.538052240227955],[5.046943247621742,51.538061989705746],[5.046978045242325,51.53815599575422],[5.046762654956347,51.53818353017597],[5.04680731681715,51.538249861886165],[5.046944249315723,51.538494312263566],[5.047122982518013,51.53866381062592],[5.047290113050509,51.5387987045025],[5.047321876728645,51.538828270750614],[5.047405616466664,51.53890618540135],[5.047466156209397,51.53897938541647],[5.04749106934711,51.539009497993945],[5.047571539416252,51.539146988987504],[5.04768345152449,51.539457603357235],[5.048448501117037,51.53960083737936],[5.04951957498808,51.53960393641524],[5.050275783961694,51.540256467440415],[5.050492411564175,51.54145233420383],[5.051422338337076,51.5414901637829],[5.052068445418123,51.54179082850499],[5.052739249836096,51.54256614444977],[5.053101298864298,51.54316480088187],[5.053663397194632,51.543394907129674],[5.059751355508437,51.54351758263579],[5.062569960531944,51.54356059843166],[5.063155159827746,51.544082180731785],[5.06225961126911,51.54429820953066],[5.062259223313965,51.54430206459247],[5.062138625710245,51.544329621169325],[5.062029935732992,51.54435511638341],[5.061894155501609,51.544389066365476],[5.061752227552947,51.54442592039391],[5.061594004698692,51.544471492820975],[5.061469358818337,51.54450862834566],[5.061337101065138,51.54455180987367],[5.061208805732526,51.54459522701864],[5.061065307771234,51.544645792549616],[5.060887474136901,51.54470995181637],[5.060738851007675,51.54476949131341],[5.060601090781658,51.54482389248411],[5.060505229088757,51.54486741744229],[5.060452150832118,51.54489731823046],[5.060329390789415,51.544954574460704],[5.060239965694721,51.54491287762215],[5.060213560532659,51.5449282283298],[5.060080039546079,51.54499436197328],[5.060017916955612,51.54502696981293],[5.059975980636451,51.54504901850266],[5.059934044776936,51.54507299974316],[5.059887445599951,51.545097938688805],[5.059845509648549,51.54512191989737],[5.059738351333203,51.54517849111256],[5.059626495773288,51.545244693912984],[5.05948664905631,51.54532816628063],[5.059379392970033,51.545400161454616],[5.059287666862272,51.545461593459315],[5.059209907879972,51.545517293851944],[5.059191242872931,51.54553073348031],[5.059166414269385,51.54554127044719],[5.059144733792741,51.54554506575039],[5.059119995684724,51.545543063763986],[5.059101448931981,51.54554011736084],[5.059049033290042,51.54551394803683],[5.058989700227594,51.545483471672135],[5.058972320732515,51.54547859596101],[5.058953161344028,51.54547664555681],[5.058926113959584,51.54547901452849],[5.05890491909095,51.54548743132825],[5.058892026515937,51.545496042224876],[5.058639603217256,51.54567901657873],[5.058340282654987,51.545895736779066],[5.058319869821283,51.54584584615711],[5.058035606953505,51.54605326870846],[5.057640969305891,51.5463322978396],[5.057386636048131,51.546473179146965],[5.057106377048359,51.54665222451278],[5.056961679630805,51.546753244035436],[5.056727935197025,51.54692893227635],[5.056468311899895,51.547114407415265],[5.055880458416883,51.547541475582754],[5.055757033609431,51.54746670851429],[5.055616278294374,51.54756807013228],[5.05559453887987,51.54758372066973],[5.05561607767963,51.547595565910676],[5.055730707501393,51.54765858696297],[5.055615009412882,51.54774197935676],[5.055270245954937,51.547990481588634],[5.054215830163505,51.54875046854724],[5.051893423847118,51.5504287932711],[5.05209401374577,51.550351113021385],[5.050399716760276,51.551578744050325],[5.050346444166551,51.55161734073455],[5.050340558758666,51.55162161137349],[5.050187162101575,51.551732754661955],[5.050228727178725,51.55176613255133],[5.050213221432897,51.55177669449149],[5.050208438213989,51.55178009639956],[5.050203509482698,51.551783677661405],[5.050155788122666,51.5518182992898],[5.050472572770778,51.55207664762755],[5.049931135119038,51.55246953681907],[5.048557456190002,51.55346553772533],[5.047602643438263,51.55415908463705],[5.047142761065706,51.55486112041361],[5.046428611395766,51.555022464161276],[5.045380931033721,51.55576378468139],[5.044291629951453,51.55655097778984],[5.044141034749681,51.55666123149928],[5.043795410776041,51.556897535766616],[5.043511603496321,51.55707634044279],[5.043351326231619,51.55717170640573],[5.043255224256709,51.5572260928389],[5.043027111760179,51.55735039107179],[5.042976715179264,51.557378799719025],[5.042934139001763,51.55740085840403],[5.042772622206528,51.557457793362],[5.042729564039155,51.55743309149166],[5.042768440743105,51.5574025906107],[5.042824452753705,51.55736959639331],[5.043215527287361,51.55715549589703],[5.043293657118259,51.557076993966504],[5.043060824110603,51.55720780415482],[5.042795928296751,51.5573508159428],[5.042605668745919,51.55744817793919],[5.042196719339087,51.557641792412184],[5.042059260120832,51.55771492304431],[5.041912080472414,51.55779196184777],[5.041855478586815,51.557818931477996],[5.041783439290806,51.55784883072653],[5.041560873993989,51.557931084505874],[5.041615090065375,51.557988421691626],[5.041792402410033,51.55799379052034],[5.041818063719069,51.55799275172891],[5.041975284919673,51.557977764514575],[5.042406508944971,51.55791825554499],[5.042408654475555,51.557922459580624],[5.042573710774858,51.5578991531808],[5.042656628569979,51.557887451604095],[5.042746407862069,51.558115713728235],[5.042627445880861,51.55813224393345],[5.042428165170506,51.558159943833765],[5.042460011888417,51.55825214463164],[5.04253831954269,51.55847755963263],[5.04263207165156,51.558741069126114],[5.042769243177977,51.558898280606144],[5.04290080807112,51.5590114668899],[5.042879173629883,51.559019573883376],[5.043055891137967,51.55915160735341],[5.043125966334334,51.55920412763241],[5.043194944722221,51.559245354874385],[5.043251905891768,51.55928534224479],[5.04325493331448,51.55928736461187],[5.0435024643968,51.55945286375115],[5.043531318323367,51.55947214835658],[5.043534603976075,51.55947435124865],[5.04354033772864,51.55947128498765],[5.043590638346249,51.55951492898019],[5.043645659571371,51.55959224039414],[5.043660539444935,51.55961923213981],[5.043743418215364,51.559767572906125],[5.043784098354343,51.55984205563966],[5.043956648906327,51.56015800160507],[5.044026957639909,51.56028685378378],[5.040841320004285,51.560958046885986],[5.040908174704892,51.56107930428091],[5.039774388706344,51.561320432809524],[5.039886853022833,51.56142880171713],[5.040006431516186,51.561559294773275],[5.040063813948547,51.56162909136389],[5.040102054371437,51.56167879536493],[5.04013854602377,51.56172900651661],[5.04025772115097,51.561918176135315],[5.042038935247665,51.56514838310268],[5.04239318569888,51.56562998017442],[5.04263902129676,51.56596418422694],[5.04276388198117,51.56635359041487],[5.042787770606663,51.56640245123992],[5.043340628779206,51.56738884915904],[5.043472610888069,51.56784865668879],[5.043582527744124,51.56819027920942],[5.043630685702729,51.56841167661229],[5.043796217296836,51.56900576502058],[5.04397721589868,51.56965897202947],[5.044018075833149,51.56979868583987],[5.042805057363725,51.57028930747441],[5.042572694102816,51.57038330052045],[5.042532409293769,51.57038879072324],[5.042442299093436,51.57040249349222],[5.042348263939364,51.570422099156715],[5.042337209631822,51.57042471821418],[5.04224365969211,51.570446895982506],[5.042134009810855,51.57048080131779],[5.042013738839675,51.570522926791696],[5.041885962508032,51.57057893543916],[5.041020824634962,51.57101703781905],[5.040606791413264,51.571226703455956],[5.040717439813274,51.57214373985935],[5.038749505866921,51.572882100116544],[5.037701832274966,51.57327515811053],[5.037695866379819,51.573268749344216],[5.037600227188265,51.57316589388483],[5.037696654309931,51.57312888814126],[5.037205427230186,51.57263292588713],[5.036221715309737,51.57231182411948],[5.036124393685244,51.572431018285606],[5.035827691288697,51.57264918091016],[5.036504726234157,51.57309277208229],[5.036386316640375,51.57313698273312],[5.036664376575925,51.57341855034936],[5.036684729897712,51.57343915943085],[5.036777221757807,51.573532819798494],[5.036823310441642,51.57357948319297],[5.036867581351639,51.57362431642564],[5.036913598651911,51.5736709076607],[5.036958957636107,51.57371683174486],[5.037004517134385,51.57376295416202],[5.037049217889289,51.573808211078635],[5.03709390437773,51.5738534589464],[5.037140666414286,51.5739008073671],[5.037186211787446,51.573946938658366],[5.037201584452764,51.57396250808073],[5.037375579984943,51.57413869404448],[5.037351976912244,51.574126021340014],[5.03733447829545,51.57411301633479],[5.037320155238475,51.57410536907985],[5.037307137254721,51.5741005841214],[5.0372943895566,51.57409816398779],[5.037276325733192,51.5740967346769],[5.037258161992828,51.574097039875575],[5.037240059293453,51.57409878343974],[5.03721578593025,51.57410196469821],[5.036829128620724,51.57425190634898],[5.036813589323734,51.57425793612895],[5.036713079306444,51.57429647496091],[5.036579226642853,51.57434881021964],[5.036503920665441,51.57427484146203],[5.03649065200849,51.574280104983146],[5.036489383412567,51.57429307181564],[5.036484094955599,51.57429794578792],[5.036471143624033,51.574305079899744],[5.036383445977286,51.574339486132914],[5.036355558369266,51.57435300231951],[5.03634100730587,51.574358073214746],[5.036306337659805,51.574381195898304],[5.036278691894203,51.57439514424787],[5.036198789792378,51.574451146518044],[5.036183521782811,51.574466848827015],[5.036168712223736,51.574488556935066],[5.036157373598691,51.57450165533439],[5.036149784216049,51.57451119648848],[5.03602696083286,51.57453058482769],[5.036060625462852,51.57457776850928],[5.036255625898753,51.57490095682165],[5.036258602761008,51.57490588255127],[5.036306872610288,51.57498588263772],[5.036307029273194,51.574986143778865],[5.036316705448108,51.57500524674563],[5.036688421616637,51.57493998012179],[5.036872258698533,51.57490280553484],[5.036886056580784,51.57490001543698],[5.037196253263047,51.57483198316896],[5.037350689607148,51.574794908602335],[5.037456040827813,51.57494822865737],[5.037557883324033,51.57509645054341],[5.037760796283798,51.57539037490859],[5.038050206893827,51.57611416110272],[5.038087747801437,51.57620735971172],[5.038305340225373,51.576715337856086],[5.03845325321176,51.57706062884509],[5.03856089091598,51.57731188609445],[5.038395851917241,51.57734976659308],[5.038279964033427,51.577376252065456],[5.03840890189864,51.57759278688852],[5.038538164304016,51.57781418539369],[5.038635849494221,51.57797905886096],[5.038684667138581,51.57796798649435],[5.038742615794509,51.57806606360183],[5.038625617121825,51.57809233038151],[5.03873957346926,51.5782857822431],[5.038858604793575,51.57849106019752],[5.03891984795265,51.57859423460187],[5.038964699326514,51.57858686262199],[5.038968141069287,51.57858579423055],[5.039024285648694,51.57868038720929],[5.039027686248298,51.57868468492119],[5.038913780009729,51.57871009828549],[5.038934132150494,51.57875199209288],[5.039007321145529,51.578870222061475],[5.03905833024701,51.57895728521617],[5.039090656794528,51.579014243669],[5.039131123088737,51.579129158220944],[5.039202403130641,51.57933283752699],[5.039158559858913,51.57933846879971],[5.03916682277833,51.57936341892848],[5.039056836748834,51.57937784198484],[5.039251079072144,51.57994472324148],[5.03934812618404,51.57993206823993],[5.039359133295725,51.579964181483916],[5.039355956579857,51.579964540571375],[5.039365406299252,51.579992793050096],[5.039446480242153,51.579982337627115],[5.039639810074324,51.580234037304564],[5.040162034912195,51.58091495041112],[5.040875819293705,51.58187353963596],[5.040961532896173,51.581860490185875],[5.042439216427739,51.58163288485487],[5.043148392943746,51.5815243316937],[5.043787308981896,51.58142653412877],[5.043954744023808,51.58142231554333],[5.044011086506745,51.581448664812875],[5.0439413892581,51.58152276947937],[5.04359400830969,51.58176776891503],[5.043260567385897,51.5819985702879],[5.04316452048608,51.582069190309774],[5.042757511701882,51.582356492236016],[5.042491118354985,51.5825442354481],[5.042262786889304,51.58270309291456],[5.04214860682534,51.58278432815764],[5.04229849892613,51.58275970088643],[5.042193005673614,51.58282938440374],[5.041290419884725,51.583425551643344],[5.041267155477902,51.583443397224386],[5.04140260319137,51.58351216540872],[5.041704467841604,51.583654745527795],[5.042239409943966,51.58390741333651],[5.045150893844197,51.58528250770258],[5.04682114667119,51.58607289775492],[5.047133959740574,51.586220448358],[5.047295125878298,51.58629652029022],[5.047387161434127,51.58633996914729],[5.047913756389174,51.58658851470326],[5.048264937838425,51.58675427667271],[5.048354257771862,51.58679643151833],[5.048641557875555,51.58693203015203],[5.048897715153575,51.5870529404525],[5.049476105200246,51.58732592501264],[5.050342531408807,51.587734844805894],[5.050919270836205,51.588007035411394],[5.051124062516361,51.58810368558448],[5.051711078360895,51.58838071969303],[5.051748019614458,51.58839815573603],[5.051814611757492,51.58842958221212],[5.052612027808734,51.58880590111319],[5.053423391518924,51.58918878008872],[5.053618717288618,51.58928095846372],[5.054479667366859,51.58968722506291],[5.054995626368481,51.589930701575184],[5.055305788342055,51.59007705410996],[5.055912499557026,51.590363336210544],[5.056119282695184,51.590460909042854],[5.056923687594519,51.590840454022924],[5.057667468641696,51.59075880436339],[5.05922393957928,51.59058793586828],[5.059575084916581,51.59054677207079],[5.063250765124682,51.59014298261948],[5.064128776152151,51.59084484347601],[5.064246932388625,51.59081661281757],[5.0643355398097,51.59089316193014],[5.064388821716299,51.59088039229608],[5.064952644182887,51.59145684193269],[5.066097261348135,51.591124506359584],[5.067421421229102,51.59173843471425],[5.068124166410577,51.59198793643834],[5.068868183584182,51.59211517496426],[5.069716437653848,51.592110711557936],[5.070122266286202,51.596911238173114],[5.070161122797126,51.59690236383001],[5.070131115369387,51.59704522869394],[5.070118890925583,51.597165049954214],[5.070120751518739,51.59724784926461],[5.070150154137105,51.59724116050655],[5.070167703224135,51.59723716317706],[5.070169724764344,51.59734032216811],[5.070175241201345,51.597620845274946],[5.070175772439788,51.59764810023853],[5.069682935311065,51.597677424022635],[5.068114719843927,51.597859905436664],[5.067744432111827,51.59790298422526],[5.06753803269265,51.59792699540832],[5.066876844198974,51.59781145393465],[5.066657861353663,51.59784539750407],[5.066466236097574,51.59786394622971],[5.06623546589884,51.59789312867591],[5.065843839800173,51.59791443536777],[5.065417986072537,51.5979306309623],[5.064212261324658,51.59797430123453],[5.063924261871373,51.597957029671484],[5.063152192121983,51.59791262930988],[5.062855045009903,51.597899122978404],[5.061901613082694,51.597959666077244],[5.061406452088346,51.598066178864315],[5.060975037755529,51.59821098810771],[5.060541624396279,51.598400535593925],[5.060433101486866,51.598454856471335],[5.060097161236264,51.59843458319882],[5.059401088054447,51.598392581728945],[5.057161805778249,51.59852270696211],[5.057011490764458,51.59852800860855],[5.055445279229622,51.598583208653835],[5.055495895062611,51.59862478078037],[5.052192215909129,51.59924842845855],[5.048218339089527,51.600002203042955],[5.048010389780239,51.600041644746874],[5.04828213498138,51.600475666495626],[5.048850660168961,51.601383654000024],[5.04996031546677,51.60315420274705],[5.049970186391306,51.60322830651937],[5.050224198182545,51.605238824509826],[5.05039727822097,51.60522096804752],[5.050458211640636,51.60521477048326],[5.057002994591181,51.60454924401346],[5.058577427435565,51.604389597964584],[5.059163942047735,51.60433012104517],[5.059181100585578,51.60437866279693],[5.059350745347135,51.60436581709787],[5.059410579960899,51.60437351720256],[5.059443325892307,51.604386444692466],[5.059455719001526,51.60439133326527],[5.059438622598184,51.60450199830924],[5.059443816365904,51.60456433101548],[5.059390804799065,51.60497880095027],[5.059296969280393,51.60535735475112],[5.059210206764969,51.605625907496396],[5.059129238441632,51.60589553707634],[5.059038042236933,51.60615809981747],[5.058961955526292,51.606427122747846],[5.05893030248405,51.60668193342662],[5.058931078958791,51.60684794654687],[5.058950341973189,51.60716836421338],[5.058987726210136,51.60733458787512],[5.059064715661687,51.60753571755993],[5.059324395776923,51.60748871586233],[5.060076392768252,51.60735597316175],[5.060155102295758,51.607337191217425],[5.060231337746059,51.60731316193841],[5.060266523159366,51.60730039752609],[5.061623168348731,51.607417346814294],[5.061791471355362,51.60743003050768],[5.06308820010063,51.607534976109406],[5.063367325898319,51.60755808562763],[5.063557256493884,51.60757053899225],[5.064258182469881,51.60763049706506],[5.064405454507629,51.60764309198504],[5.065115424197611,51.60770646756235],[5.06689261977587,51.60786133884963],[5.067504824919443,51.60796107887479],[5.067586332216194,51.60799158419343],[5.067595388610382,51.60799497067365],[5.067740915859717,51.608036284260145],[5.069235077464159,51.608122204148266],[5.069493684722891,51.60813047497187],[5.070195683212244,51.60815290880077],[5.070165422371392,51.60803143549154],[5.070373125369779,51.607798203990384],[5.070395194812209,51.60758985356562],[5.070653370340868,51.60758924889259],[5.070657998111813,51.60766254564097],[5.070719604096043,51.60863816640259],[5.070746279345012,51.608969711896556],[5.070751739255699,51.60903758175549],[5.070739804702093,51.60913216369729],[5.070639344305696,51.60992834661786],[5.070707938347392,51.60993167817031],[5.071845666009834,51.60998689264817],[5.071801551444458,51.61028120496147],[5.071708666070589,51.610779328543785],[5.071675398969247,51.61095640452139],[5.071633361412427,51.61118013473168],[5.071380554912328,51.61208838178893],[5.071240189012308,51.612541155057635],[5.071192650432303,51.61267322229261],[5.071098538138216,51.61296037915573],[5.071098263891777,51.61296036942634],[5.071096243168119,51.612960292059256],[5.071068615052282,51.61304030600672],[5.07107193476467,51.6130404408149],[5.07077836931702,51.613898078307436],[5.070603871295973,51.61433065093769],[5.070417803111899,51.61477175813022],[5.070230209899559,51.61517024585983],[5.070346636062294,51.6151584534665],[5.071254701215192,51.61503234428694],[5.071770141520664,51.61496043250685],[5.071800449430864,51.61504734421197],[5.071867611816611,51.61505005099546],[5.071865904174284,51.614996618066584],[5.072427664598171,51.61498242723294],[5.073361113625441,51.61495490318003],[5.073725185694408,51.614944777988946],[5.074104670237069,51.61493153789531],[5.074103853686573,51.61491387308373],[5.07438437314139,51.6149034863289],[5.074392837970184,51.61520019613923],[5.074393846601143,51.61545801025783],[5.074395175841052,51.61580123503302],[5.074394029422529,51.61599887360038],[5.074393890930606,51.61602314248616],[5.074393752438507,51.6160474113719],[5.074400129959589,51.616238562288636],[5.074410004207079,51.616534035400235],[5.074367296230155,51.61653377743249],[5.074364412430368,51.61678022849868],[5.074366962675333,51.61691918128983],[5.074368512864839,51.61700425366273],[5.07433267240481,51.61708216103667],[5.074332707688589,51.6172068241968],[5.074332748558463,51.61734532983333],[5.074375860324983,51.61739601500619],[5.074407507173797,51.61740070175944],[5.07440759674119,51.61741911966521],[5.074412470836273,51.618441767052694],[5.074421600477127,51.618443283560985],[5.074432942116188,51.61965463704763],[5.074426344586815,51.61965443065609],[5.074426287240722,51.61983443641289],[5.074428259303901,51.62079219603954],[5.074428340065407,51.62082026768268],[5.075146429719843,51.62028747002468],[5.075684503804882,51.61988394854572],[5.076061850281606,51.61960527168641],[5.076239593343721,51.61946558466579],[5.076560378910977,51.61920292642129],[5.076970521852536,51.61886710319562],[5.077173644741072,51.61872304165364],[5.077301352415734,51.618614473869044],[5.07749646041174,51.61840258046933],[5.077717242009814,51.61819667812873],[5.077921730095452,51.618014668985765],[5.078002474107738,51.61796171469637],[5.07806578530638,51.61793273187429],[5.078208217406234,51.61783887140314],[5.079887444888605,51.61847836490485],[5.080073474580729,51.61854973739031],[5.08050334551823,51.61871466405562],[5.08057878352063,51.61874360728327],[5.083137678533745,51.61972827054076],[5.08327769750099,51.61979554540057],[5.083303155566127,51.61976095143535],[5.083966401878783,51.620013678493315],[5.086723009905417,51.62106401430152],[5.087302750712835,51.62128500288503],[5.087215973718576,51.62149761268653],[5.087171278637489,51.62160710516745],[5.087299972080745,51.62163094916818],[5.089122376738445,51.621968614157986],[5.089585080744515,51.62205175865062],[5.093389251652724,51.62275373455858],[5.093117295105979,51.62340096793269],[5.092804701220962,51.62414488769909],[5.091603830588365,51.62392823817757],[5.091587882069026,51.62396453881402],[5.09124002796911,51.624756274598646],[5.091046002792864,51.6254161223756],[5.09024697444799,51.62784732981191],[5.090086483424644,51.62833564162922],[5.090051026242028,51.62844376535644],[5.091195708907953,51.62843522298101],[5.091217578445359,51.62871123720108],[5.091003758681047,51.62890314223395],[5.090836184518846,51.62906825210613],[5.090638725743585,51.629277725655086],[5.090619183859531,51.6294478662368],[5.091781630124139,51.6296495164675],[5.092450246197276,51.62976556378203],[5.092450851914061,51.62976570013608],[5.092852295774947,51.62985652428076],[5.09245598124849,51.6299186809726],[5.092324979665936,51.62996367155927],[5.093229570803357,51.63038063551551],[5.094228035528465,51.63083934572025],[5.094231305038199,51.63084075612336],[5.094371403375499,51.630901357198944],[5.094372627610567,51.63090189058833],[5.094400342968064,51.63086631114794],[5.094472580372531,51.63077357670555],[5.096008596190026,51.631274332923184],[5.096787163883392,51.6308510975026],[5.09691959673171,51.63095223303724],[5.096949463814248,51.63097505722245],[5.096943037618663,51.63098391303079],[5.098071881551673,51.630982041400394],[5.098220726043826,51.630969752981194],[5.098325004601925,51.63106983765875],[5.098232140843152,51.63112313553894],[5.099180831400502,51.63201100256838],[5.099251502840108,51.63207716166854],[5.099540422994336,51.632347511721],[5.099599810522338,51.63238703664995],[5.099579290757484,51.63238627613911],[5.098481501352779,51.63235312053705],[5.098470557769105,51.632572370236566],[5.098468831680442,51.63284340796133],[5.098573187169857,51.633100064848605],[5.098818815905417,51.63336438643302],[5.099102993926761,51.63353176154029],[5.099205985193341,51.63359242725947],[5.100083221549631,51.633809121632275],[5.101545113379311,51.63417020992024],[5.101928437684145,51.634266522513094],[5.102889438009832,51.63450797466681],[5.103087755731377,51.634492546307975],[5.103705368005151,51.63444448940393],[5.103708937521021,51.634444210412646],[5.10438640087937,51.63476283146072],[5.104499781859234,51.63483600274253],[5.105233335619427,51.63530943887684],[5.105245697739985,51.635321459424254],[5.10538377805068,51.635455676883055],[5.105830358603307,51.635889767167235],[5.105858323411111,51.63589217140397],[5.105986369151217,51.63592142228213],[5.106064318909972,51.635939227117035],[5.106137047054621,51.63595584185983],[5.106125127819156,51.63602142992313],[5.105167491209412,51.641289061910875],[5.105055555486408,51.641923215317505],[5.104953470801817,51.64250147436936],[5.103257522764236,51.65210654083004],[5.102373598105939,51.65711110057482],[5.102370796121046,51.65712693161973],[5.10186098986246,51.66001278285283],[5.101780044996788,51.660470930627426],[5.101625703965511,51.66134450373086],[5.10160620603006,51.66163578460084],[5.101599248350998,51.66173985522726],[5.101599346588287,51.66181138647318],[5.101600797740669,51.66279621318126],[5.101619377644226,51.66288218916548],[5.101630120415122,51.66293202099621],[5.101703107312173,51.663359092824514],[5.101780679452038,51.66378584318429],[5.101844859929392,51.66416121817209],[5.101932963709175,51.66464891853235],[5.10202013816047,51.6651215247407],[5.102100903019507,51.66557016073988],[5.102187939887038,51.666042218138166],[5.102234555521621,51.66629955723015],[5.102248021151039,51.66633727902859],[5.10234770267455,51.66661726349787],[5.102520578565709,51.66709825720571],[5.102576792090715,51.66740670144631],[5.102665383365228,51.66800082681439],[5.102718035069053,51.668349656891905],[5.102330265860254,51.66894608516228],[5.102130941080657,51.66946034805737],[5.102012622612932,51.669765581165976],[5.101994347039438,51.66983731031089],[5.101885890149004,51.670258834296426],[5.101768273556661,51.67071129244207],[5.102088247710032,51.67114444827655],[5.102311602071461,51.67194302275827],[5.101753309162643,51.67223458273609],[5.101598515695899,51.67241922588576],[5.101622734676038,51.67242313203349],[5.101628222578116,51.67242401730224],[5.103294205695535,51.67267350834998],[5.103711459251334,51.672734796114895],[5.106348021337332,51.673104760984906],[5.106462524544352,51.67313648640152],[5.106483559950653,51.673122361861274],[5.106516941871063,51.67310116594296],[5.106827378216462,51.6729039724003],[5.106999905842798,51.67279391586964],[5.107151044360951,51.67270368164685],[5.107318189050633,51.672603553119934],[5.107483541268081,51.672505622270414],[5.107652401251894,51.67241543870396],[5.107830135094006,51.67232085368874],[5.108173156289528,51.67213827776848],[5.10845038645819,51.67199752984654],[5.108738239307491,51.67185459533654],[5.108988759950042,51.671735876513864],[5.109347581453966,51.671575437537825],[5.109697499201196,51.671423812120764],[5.109990542558279,51.67130076951523],[5.110262096719018,51.67121413295383],[5.11074664307085,51.67106171701644],[5.110897465029877,51.671021192912626],[5.111108685901148,51.67095430373758],[5.111321662039403,51.67088631272362],[5.112024476074387,51.67067142254108],[5.112446862666549,51.670543158593105],[5.112720158837478,51.670460942793575],[5.113291487286402,51.670307614059695],[5.113708447199707,51.670195898783426],[5.113983477061509,51.670120308651406],[5.11444107062526,51.67002747161453],[5.114833041190953,51.66994773834493],[5.115517530388237,51.66982560042556],[5.116081308531518,51.66974735793097],[5.116462436474625,51.669700734915494],[5.116829390696989,51.66965518353902],[5.117267211304715,51.66960868874393],[5.117600446004076,51.66957410417863],[5.117930117538287,51.66954062505557],[5.118220725062397,51.66952250663576],[5.118702729474556,51.669493788407735],[5.11912676150009,51.669470778101754],[5.119173583271559,51.669629533208976],[5.119256593177135,51.669626136679256],[5.119224804836549,51.669452737689994],[5.120294132157023,51.66937590000249],[5.1214186409172,51.669305029315026],[5.122427861608849,51.66923941526381],[5.123224095086252,51.66919066065259],[5.123576227958128,51.66916882047479],[5.123981623075302,51.66913803847094],[5.124567362384937,51.66909258573549],[5.12497637265052,51.669066338624155],[5.126021888800358,51.668999255782026],[5.127195645676467,51.66892792707504],[5.12813088755458,51.66886877815202],[5.12827712728888,51.66885455800624],[5.128277511261043,51.66884807810964],[5.128961129496194,51.66881865753241],[5.129447706957581,51.66876616640323],[5.129913580800658,51.66873700700283],[5.130305932465659,51.66870815194223],[5.13040526710243,51.668706032718646],[5.13110445348093,51.668676022535955],[5.131303129133554,51.66867061415215],[5.13133097051174,51.66880615938661],[5.131351256090166,51.6688360366918],[5.131361987563923,51.66886575829947],[5.131450006313361,51.66886065624174],[5.131446442726605,51.66884663531187],[5.131454830573065,51.6687973334496],[5.131440417140203,51.668664469185586],[5.131941886144053,51.66863635917893],[5.132301810645194,51.66861551646283],[5.132653327079288,51.66859116681305],[5.133494171826294,51.66853279459815],[5.134029433793821,51.66849187723328],[5.134168181221715,51.66848049189871],[5.134357534422264,51.66846687861575],[5.134527160630359,51.668460224558146],[5.134791471161781,51.66844794074093],[5.135024115936849,51.668434608412205],[5.136501710391246,51.668365260312726],[5.137328942259322,51.668333320686706],[5.138046441571373,51.66829910147735],[5.138061230646463,51.66829096234055],[5.138161779697366,51.66827016990441],[5.141243913381301,51.668164154063376],[5.141247057607167,51.6682027125467],[5.141551634704354,51.668209481819474],[5.141569169328372,51.66834533554311],[5.141573165144417,51.66839484385315],[5.141584255134291,51.668415648627764],[5.141648435095765,51.6684132214388],[5.141675985101449,51.6684135308633],[5.141691848784028,51.66836969999879],[5.141689768195033,51.66834018623664],[5.141692486463614,51.6682067120009],[5.142611491559112,51.668160626575784],[5.143491122312271,51.66812466302075],[5.144279038345167,51.66809055209682],[5.144886631604383,51.66808772966712],[5.144975012521507,51.66809812343703],[5.145987260780648,51.66806854546071],[5.146734118252215,51.668056804832936],[5.147857689614876,51.668039690534634],[5.148579967320623,51.66802891260483],[5.149127032512254,51.66801572488474],[5.150027714162028,51.66799394791778],[5.150099206812166,51.667991620787504],[5.151243391191874,51.66792951905892],[5.151370921248033,51.66791144821467],[5.154264692877891,51.66790374607953],[5.155711665071557,51.66789987285336],[5.157158754099626,51.66789570332722],[5.158909107790019,51.6679034508207],[5.160659579152149,51.66791089372526],[5.160699381575353,51.667946951822806],[5.1611153876486,51.667952078882166],[5.162062582171937,51.667964437569445],[5.162655314777678,51.66796989864926],[5.163350318465586,51.66797804201431],[5.164557989039054,51.668000405781704],[5.1653840610441,51.66801085345114],[5.166757419530402,51.66803881136012],[5.167532633962606,51.66805042453204],[5.167652596482609,51.66806841076098],[5.16873702944828,51.668093277856926],[5.169963900958291,51.668115855354394],[5.170588521585107,51.6681309711024],[5.171207056052084,51.66813719161927],[5.172692284644457,51.66817546111614],[5.174303724524157,51.668201249367705],[5.174537701305561,51.66820928760676],[5.17550005164908,51.668231326621964],[5.177034110335188,51.66827089663383],[5.178130738623917,51.66830205347233],[5.178608595817244,51.66831198365502],[5.179585282934811,51.668332360716],[5.180398821594522,51.668348136254885],[5.180528011539949,51.66838215213118],[5.180744632556249,51.66838637215936],[5.180758045111418,51.668396301161756],[5.180742559116305,51.66858758589754],[5.18094835049579,51.66859260442002],[5.180959191941198,51.66835129926155],[5.181867320912078,51.66836506482939],[5.182615353729271,51.668379991057954],[5.183202505052419,51.66839390442304],[5.183689715717849,51.66840407283869],[5.184212540768387,51.668415020018195],[5.184984708824364,51.66843141108384],[5.18560404173288,51.668444675824325],[5.186246366810044,51.66845939691428],[5.186326782404223,51.66846240215586],[5.186789857643076,51.66847179720258],[5.187402299719043,51.668484321558346],[5.188094036777487,51.6684983976778],[5.188593870876532,51.668511443463395],[5.189341895863106,51.66852919403494],[5.190185314094478,51.668546390176324],[5.19087591099185,51.66856045692728],[5.191781335882082,51.66858276105415],[5.192700599305481,51.668600775642545],[5.194029428042875,51.66862823177976],[5.194588303170264,51.66864067515271],[5.195335063118755,51.66865438544761],[5.195339796365374,51.66862557595969],[5.196611050529516,51.66877362450002],[5.199009851941725,51.66882648038753],[5.200945219264759,51.66886894261766],[5.202015770625044,51.668776520553074],[5.202006215759037,51.668854292207115],[5.20200307006272,51.66887061040914],[5.202021469310927,51.668888886208606],[5.202184495549087,51.66893523693395],[5.202222927220724,51.6689506680011],[5.202258260383203,51.66897088505242],[5.202267425513569,51.66899203155628],[5.202267249103344,51.66903524813834],[5.202283102517224,51.66905751977471],[5.202339367454205,51.66905997254048],[5.202419555183191,51.66905911028561],[5.202431258537352,51.669039201166555],[5.202430973255925,51.66891066471317],[5.202477208777726,51.668898252542526],[5.202974551951001,51.66890382644136],[5.203805921211285,51.66893298608075],[5.20415714036111,51.668897994615655],[5.205304790193077,51.66877685465337],[5.206074622834957,51.66869738410307],[5.206401205706526,51.668658986112895],[5.206759688944799,51.66862105880202],[5.206760210298167,51.66862081691452],[5.206817721125693,51.668575306644996],[5.206875812548236,51.6685291680434],[5.20705068532776,51.66851634074318],[5.207160674588494,51.66857107916732],[5.207202251185342,51.66859572667534],[5.207747099895666,51.66890210950836],[5.207980183374618,51.66891542770418],[5.208216183138908,51.66894801231132],[5.209237208683571,51.66896309520259],[5.209241645043497,51.66899658421554],[5.209797761684057,51.669021642585164],[5.210259159321492,51.669030178219884],[5.210540110771966,51.66903487168143],[5.21118763948953,51.6690500929482],[5.211840898456017,51.6690638990209],[5.212432499602762,51.66907547023326],[5.212932722646837,51.6690847543355],[5.213424976674116,51.66908761566104],[5.21409306813389,51.669101413183554],[5.214842238185851,51.66911962269526],[5.215962586530916,51.6691440601478],[5.21671038972772,51.66914942008673],[5.216741757001628,51.66916122271501],[5.216771475139519,51.66915413803786],[5.21828514996376,51.669188535645894],[5.219178623504924,51.6692207137271],[5.219891277874749,51.669232474682815],[5.22050487895421,51.66924945658829],[5.22098337813508,51.669262891002376],[5.22101464498658,51.66927480919293],[5.221009308448689,51.66935824212645],[5.221035169616716,51.66937393681494],[5.221036593714596,51.669466502690476],[5.221262627520236,51.66947250372993],[5.221310122077573,51.66941107146959],[5.221943005273763,51.66942532263958],[5.222627246756639,51.66944825353461],[5.222680280786117,51.66944519100653],[5.223018611868532,51.669461350489364],[5.223523557506975,51.669485597799614],[5.224003769870715,51.669509943317856],[5.224581012541879,51.66945663484327],[5.225506583055507,51.66945347525752],[5.226484740443548,51.66948761995015],[5.226523849737498,51.66957123990878],[5.226795498124676,51.66957145924366],[5.226818292034165,51.669523168123796],[5.226843445537741,51.66933504572284],[5.227981790750898,51.66935460188094],[5.228574469591495,51.669361967243866],[5.229070762175474,51.66935607633985],[5.234938984237081,51.66924986401354],[5.235027291649305,51.669254481961815],[5.235775578526229,51.6692935895044],[5.236287126867161,51.66932032505365],[5.236782922041916,51.6693462381708],[5.236917320449388,51.66935325984504],[5.238173172128508,51.669418879779144],[5.238803455198002,51.66945180452842],[5.239427929050457,51.66948442193766],[5.240687184525851,51.66955018996953],[5.240891060341441,51.66956083539286],[5.241296985946319,51.669583650949946],[5.241967261249859,51.669570362487384],[5.242492665394844,51.6695380514612],[5.243358845474121,51.66948702922695],[5.24338772720862,51.66962381606355],[5.243400585754417,51.66969432882854],[5.243488045069367,51.66968886321801],[5.24350016643479,51.669627216811165],[5.243474477590947,51.669477211800235],[5.244106699326749,51.669419524033415],[5.245118406935298,51.66931060050821],[5.246234383789496,51.66916226217254],[5.24735645952564,51.66899791192001],[5.248785096782982,51.668781177687855],[5.249988674875544,51.66860467404654],[5.250786936309682,51.6684850697369],[5.251740760176493,51.66834612579168],[5.252318564393574,51.66826292023442],[5.25277775600465,51.66819154856716],[5.252822263059405,51.66816726767027],[5.252836261779215,51.66812130742345],[5.253149454124621,51.66807460212924],[5.253045454187129,51.668253786195926],[5.253048476829032,51.668326524782486],[5.253093759280973,51.66835284106509],[5.253310856772009,51.668334905475746],[5.253375743568053,51.668296580608775],[5.253424583628994,51.66820976228851],[5.253496490932211,51.66799163895345],[5.253568072413689,51.667888685146124],[5.253983213340728,51.667950261697165],[5.254154140330938,51.667976234926044],[5.255771318306952,51.667735611997465],[5.256600935540286,51.66761935593148],[5.257229666345695,51.66751903277344],[5.25799772147365,51.667404711962526],[5.258713932105801,51.667292351713165],[5.258999058903615,51.66720366854764],[5.260249026204679,51.667017141912446],[5.260335078625887,51.667114086413875],[5.26050404722358,51.66715307262286],[5.260572213250815,51.66713337153218],[5.261064427240211,51.6670504168353],[5.261354577042749,51.667008986004305],[5.262101660012251,51.66690285823409],[5.262496365111274,51.66683810303371],[5.262580023434438,51.66673493185587],[5.26251923304653,51.666638195647856],[5.262327568607957,51.66589171948333],[5.266717753962486,51.665729738811145],[5.26849156769014,51.66566659746951],[5.270018516569839,51.66561267462064],[5.270192908424243,51.665584391154724],[5.271568904623851,51.66553686792684],[5.271738559585757,51.66553485093782],[5.273036108868736,51.66550474281609],[5.273430429766779,51.665489809719595],[5.273618969045663,51.665386795316714],[5.274478397093446,51.66535425045567],[5.277537624363355,51.66704844116065],[5.27782492122225,51.66721264217215],[5.278340555172782,51.667506768042934],[5.278972380378447,51.66785735696235],[5.279635672774212,51.668231026878615],[5.27997873723471,51.66842627512752],[5.28016439969613,51.6685365091826],[5.280389069645268,51.66866862058395],[5.280578786867279,51.66877046239545],[5.280868023867779,51.66894885053223],[5.281091383063474,51.669068357486665],[5.281295896769178,51.66918029663707],[5.281664568415535,51.669378915762515],[5.282286224825691,51.66971723518652],[5.282632007435016,51.66991583975543],[5.282915890158266,51.67007824543324],[5.283470292791453,51.670370279747836],[5.283716524639112,51.6705133338373],[5.284054209048199,51.670718632468585],[5.284367686246978,51.67090963512941],[5.284502244500363,51.67098536445492],[5.284659696946421,51.671069526898734],[5.284844073985582,51.67115707434041],[5.285277372061119,51.671411431269256],[5.285364756144267,51.671348560615684],[5.285397449488125,51.67146085556453],[5.285780665590967,51.67169452949775],[5.286009283630534,51.6718532664384],[5.28608359635947,51.67189531589694],[5.286760383916293,51.67213615155729],[5.286888594618162,51.6724772046538],[5.287193627929996,51.67278456677188],[5.287215511341443,51.672825644965336],[5.287176211102408,51.673025471061706],[5.287084273521947,51.67321222785762],[5.286986349675581,51.6733206895079],[5.286899306082822,51.67339231646429],[5.28685798477239,51.67342017247208],[5.286567737422038,51.67360830502467],[5.28649202951718,51.673659186926336],[5.28641571497362,51.673709744671044],[5.286354894205751,51.673755533801824],[5.286294044741178,51.67380117007148],[5.286239169199127,51.673851800077735],[5.286199873263095,51.67390460970938],[5.286186484369286,51.67394432740601],[5.28619534792694,51.67398909783708],[5.286226479300304,51.6740255640801],[5.286266887366222,51.674057669882146],[5.286315130516167,51.67408358033684],[5.286369424677208,51.67410592753489],[5.286592601827954,51.674182153050886],[5.286815794167796,51.67425838714204],[5.286931825591521,51.67429801789019],[5.287092310300268,51.67435839601324],[5.287218037615947,51.6744135489268],[5.287277487234094,51.6744454369099],[5.287336373267534,51.674477252474645],[5.287426896823991,51.67453296842087],[5.287486503686768,51.67457895041888],[5.287540522406254,51.67462847809991],[5.28770530025009,51.67480203338833],[5.287847982386265,51.67496524192319],[5.287942729397734,51.675073633726285],[5.28799044918344,51.675128225386],[5.287992683299187,51.67513131932417],[5.287994254641167,51.675133379022675],[5.287998984108792,51.6751391087057],[5.288003642766248,51.67514416419017],[5.288008042746887,51.67514850936319],[5.288010769593643,51.67515106440705],[5.288015776940279,51.67515533818542],[5.288030902389464,51.67516715289327],[5.288042624313528,51.675175126626854],[5.288048023271866,51.67517882547015],[5.288053537319571,51.67518278507741],[5.288056929758416,51.67518508900453],[5.288060250048582,51.67518732995097],[5.288064119127805,51.67518984101662],[5.288071511314087,51.67519440444095],[5.288080333676968,51.675199472430336],[5.288087597165462,51.67520338857204],[5.288096348660094,51.67520780932739],[5.28810329544577,51.675211104993124],[5.288109765965612,51.67521402273852],[5.288114590177135,51.675216103160956],[5.288124369130104,51.67522007535675],[5.288127171849794,51.67522099455274],[5.288133297616193,51.675222896303765],[5.288142212156744,51.67522548353699],[5.288146590177189,51.67522665574146],[5.288151734122637,51.675227972408955],[5.288161401153936,51.67523023668983],[5.288171675708719,51.67523235766672],[5.288195391470025,51.675236377578464],[5.28820445384872,51.67523747283876],[5.288212620284753,51.67523837858336],[5.288221307048096,51.675239347686166],[5.288227696094992,51.67523985643506],[5.288236513877706,51.67524041217574],[5.288243756320286,51.675240732885165],[5.288249394311694,51.67524090842417],[5.288257446797343,51.67524103206896],[5.28826953333326,51.6752409523806],[5.288276459068039,51.6752406526135],[5.288283818679957,51.67524028130387],[5.28829670156583,51.67523965398516],[5.288321848396003,51.67523714941849],[5.288332174114765,51.675235701985216],[5.28834140115328,51.675234217670784],[5.288346492117417,51.675233314122536],[5.288351308391857,51.67523241034255],[5.288357498838689,51.67523117514568],[5.288361722361714,51.67523027086563],[5.288365627725089,51.675229411259885],[5.288371572749071,51.67522801406219],[5.288378458185587,51.67522630305875],[5.288386226342181,51.67522421528112],[5.288417605914869,51.67521432738855],[5.288670477885947,51.67508875488035],[5.289003455833431,51.67492333094533],[5.289091138923927,51.674903404892625],[5.289308533278736,51.67483622664868],[5.289361350904258,51.67481366461683],[5.289477454520462,51.674942216248496],[5.290162117196947,51.6756942153503],[5.291316884424853,51.674920813855856],[5.291426629280334,51.67500305852683],[5.291459582187922,51.675028199334555],[5.291493444498909,51.6750540240019],[5.291956464065556,51.675407217993715],[5.292188530538678,51.6755816215511],[5.292308471947767,51.67567728450692],[5.292359753906752,51.67571818775891],[5.292398136397172,51.67575382228307],[5.292592993434343,51.67593471161808],[5.292645434126326,51.67598179078526],[5.292699091943756,51.67603456962516],[5.29275273544743,51.67608733944011],[5.292811152004488,51.67615308349241],[5.292851013036021,51.67620110522361],[5.29288802274845,51.676229835304554],[5.292943465238293,51.67627287192059],[5.293003435172003,51.67634969995725],[5.293113656927281,51.676490917030996],[5.293194217996589,51.67686626091632],[5.293270474148712,51.676849774164864],[5.293496440274172,51.67679894512015],[5.293518121805098,51.67688544988295],[5.293527989102566,51.67698700994849],[5.293473053600769,51.677012745106985],[5.293455137775664,51.677013926260365],[5.293591952331025,51.677217409554316],[5.293677332936578,51.67719342441464],[5.293851982502018,51.67732828332783],[5.293853255973205,51.67732771806524],[5.29385465925183,51.67732730571069],[5.293856163773533,51.677326875459585],[5.293857783570642,51.67732663405896],[5.29385946121829,51.6773263837158],[5.293861196235292,51.677326358131005],[5.293862974644833,51.67732632359225],[5.293864723638673,51.67732653171981],[5.293866487109049,51.67732673087032],[5.293868134452695,51.677327154641134],[5.293869752880347,51.67732757838896],[5.29387121188128,51.67732819076856],[5.293872613087209,51.67732878512515],[5.293873811566411,51.67732953212507],[5.293874937848106,51.677330234125016],[5.293875847019075,51.67733105280277],[5.293876756190078,51.67733187148056],[5.293877404931813,51.677332779836206],[5.293878111394614,51.67733374216883],[5.293878499651585,51.67733476716783],[5.293878902274073,51.67733583712079],[5.293878957848693,51.67733693376319],[5.293879013367804,51.677338057371045],[5.293878693034002,51.6773391537143],[5.293878387158202,51.67734025006909],[5.293877705521973,51.67734127421684],[5.293877052838756,51.67734228041056],[5.293876082301169,51.677343178489274],[5.293875155230121,51.67734403166001],[5.293873968173773,51.67734475878476],[5.293872867958022,51.67734544103602],[5.293871565626059,51.677345979310324],[5.293756870042029,51.67739504614669],[5.293714912284186,51.6775425051618],[5.293553467486251,51.67755921184788],[5.293555311344008,51.67756249412594],[5.293557242006266,51.67756574950777],[5.293559172650233,51.67756901387806],[5.293561190080161,51.67757226034059],[5.293563221987033,51.67757549782616],[5.293565326221795,51.67757871739236],[5.293567430438287,51.67758194594706],[5.293569621477912,51.67758513861698],[5.293571812499279,51.677588340275314],[5.293574090325234,51.67759151503743],[5.293576368132943,51.67759469878795],[5.293578732763819,51.67759784665374],[5.293581097376461,51.67760100350793],[5.293583548812289,51.67760412447738],[5.293586000229893,51.67760725443524],[5.293588524012596,51.67761034849677],[5.293590023887388,51.67761217436125],[5.293591538238966,51.67761399124876],[5.293593052590666,51.67761580813624],[5.293594610335363,51.677617616069824],[5.293596153622079,51.67761942399186],[5.293597740301797,51.677621222959964],[5.293599312523535,51.67762302191653],[5.29360091369873,51.67762480291913],[5.293602529313601,51.67762659292178],[5.293604159405267,51.67762837394745],[5.293605789515618,51.677630145984566],[5.293607463000428,51.67763191805629],[5.293609122045815,51.677633681127986],[5.293610810026109,51.6776354352342],[5.293612497987979,51.67763719832891],[5.293614214903317,51.677638943469674],[5.293614488883751,51.67763929424011],[5.293614748424632,51.67763963601057],[5.293615022405073,51.67763998678106],[5.293615296385521,51.677640337551544],[5.293615570384529,51.677640679333514],[5.293615829906871,51.677641030092445],[5.293616103887329,51.677641380862866],[5.293616377886348,51.67764172264489],[5.293616651866815,51.677642073415335],[5.293616911389172,51.67764242417425],[5.293617185388204,51.67764276595624],[5.293617459368685,51.677643116726706],[5.293617733349167,51.677643467497184],[5.293618007329655,51.677643818267654],[5.29361826687059,51.677644160038085],[5.293618540851088,51.677644510808555],[5.294087958618596,51.67744478221243],[5.293851211339702,51.67799064595657],[5.293852255584662,51.678080343117585],[5.29383369832528,51.67821725928933],[5.293869237100862,51.678350578168605],[5.293965639634939,51.67861351478037],[5.29404078564087,51.6787586040708],[5.294059017796151,51.678793790582965],[5.294181471609036,51.67896058863061],[5.294274231834757,51.67907630830098],[5.294363256607183,51.67920182241319],[5.294498069652537,51.6794418502862],[5.294617114066726,51.6796018139055],[5.294725459459825,51.679769031679996],[5.294793937322087,51.67988207118298],[5.294899577702386,51.680064728914935],[5.294967842810697,51.680183278099676],[5.295005037578152,51.68027968211071],[5.295027544031894,51.680353828013544],[5.295031535627809,51.680417379892134],[5.294998743726002,51.68052343647505],[5.294867760439751,51.680799631140616],[5.294647298918647,51.6813675849069],[5.294612412735947,51.681500038961346],[5.294590534676758,51.6816774727681],[5.294592769396337,51.68175142296735],[5.294604693689394,51.681831609849645],[5.294152958111291,51.68189142143133],[5.294003175650956,51.68191084352958],[5.293985977702203,51.681836225268675],[5.293944037890247,51.68183978733421],[5.293808096794319,51.681850465382354],[5.293455645612073,51.681893050410274],[5.293406080486028,51.68189906005063],[5.293297581105429,51.681896798021555],[5.293253580004349,51.68202278163377],[5.293230001203624,51.68209025743289],[5.293136995456151,51.68263462562744],[5.293140646275886,51.682735785188235],[5.293208811673771,51.68273478817496],[5.29327371357121,51.68271770807378],[5.293423815715937,51.68269897029052],[5.293477702590496,51.682701206554725],[5.294188675410925,51.68255969118258],[5.294181406754769,51.68252927730688],[5.294180775952326,51.68252663418622],[5.294180414478923,51.68252662491104],[5.294197798437549,51.68252496683366],[5.294317316627685,51.68251361916859],[5.294318557747106,51.6825218536218],[5.294318671877286,51.68252260874658],[5.294319033369108,51.68252260903281],[5.294453105636,51.6825428493701],[5.294453467587789,51.68254262494368],[5.294540710164512,51.68253910747934],[5.294705120362311,51.682523273654134],[5.294776045609092,51.682523059904796],[5.295000190647885,51.68248491830575],[5.295054346439787,51.68247570270078],[5.295054345982965,51.68247592741305],[5.29505470793124,51.68247570298477],[5.295412037194312,51.682410636711204],[5.295511082065766,51.68242681258427],[5.295804831800933,51.682569428730105],[5.296269060621878,51.68279297407828],[5.296268275665541,51.682795031837315],[5.296093733594619,51.683254469635216],[5.296003832852969,51.68347893260462],[5.29605788322649,51.68350105936662],[5.296323165676609,51.68360967552681],[5.296563686981583,51.683699980350276],[5.29656241025535,51.68370210065065],[5.297296629501352,51.68401102524784],[5.297792887767956,51.68422380284996],[5.297838954175353,51.684203784600314],[5.297839750248949,51.68420339870109],[5.297840546304814,51.68420302179037],[5.297841371281085,51.68420264490166],[5.297842210699832,51.684202277012446],[5.297843064596497,51.68420190014575],[5.2978439329002,51.68420155025553],[5.297844830159748,51.68420118241038],[5.297845727366126,51.684200841530654],[5.297846653510629,51.68420049168448],[5.297847594097609,51.68420015083781],[5.297848549127065,51.68419981899062],[5.297849518598998,51.68419949614294],[5.297850502548848,51.68419916431776],[5.297851500905735,51.684198859469056],[5.297852528183031,51.68419855464237],[5.297853555442595,51.68419825880417],[5.297854611622562,51.684197962988016],[5.297855682209576,51.68419769414828],[5.297856752814293,51.684197416320096],[5.297857852303979,51.684197156490846],[5.297858966253865,51.68419689667265],[5.297860094610795,51.6841966638309],[5.297861237445641,51.68419642201171],[5.297862394687535,51.6841962071689],[5.297863566389627,51.68419599233714],[5.29786475249877,51.68419580448188],[5.297865953085827,51.68419560764908],[5.297867168079938,51.68419543779279],[5.297868397534246,51.68419526794745],[5.297869626935403,51.68419512506759],[5.297870885256969,51.68419498220974],[5.297872143525385,51.68419486631734],[5.297873416254003,51.684194750435935],[5.297874703389682,51.68419466153101],[5.297875990525357,51.684194572626076],[5.297877292050381,51.68419451968609],[5.297878608053324,51.68419445776858],[5.297879923985414,51.68419443180503],[5.297881239935215,51.68419439685302],[5.297882570274374,51.684194397865916],[5.29788391505603,51.68419440787827],[5.297885259802264,51.68419443586766],[5.297886604530787,51.6841944728455],[5.29788796366639,51.68419453679976],[5.297889322784285,51.68419460974251],[5.297890667388847,51.68419470963973],[5.297892040913829,51.684194809558925],[5.297893385447563,51.68419494541009],[5.29789475890172,51.684195081283214],[5.297896117824841,51.6841952530993],[5.297897476765683,51.684195415926844],[5.29789882115778,51.684195623685824],[5.297900180027809,51.6841958224673],[5.2979015243491,51.684196066180235],[5.297902868688112,51.684196300904645],[5.297904212956306,51.684196571583],[5.297905542746603,51.684196851238816],[5.297906858023585,51.684197157849084],[5.297908187760793,51.684197464470316],[5.297909488524482,51.68419779803503],[5.297910789270484,51.684198140588215],[5.297912061042966,51.684198510084805],[5.297913347257974,51.68419888858092],[5.297914604499468,51.68419929402044],[5.297915861740984,51.68419969945998],[5.297917075548776,51.68420013183193],[5.297918303816802,51.68420056421489],[5.297919503093614,51.684201032529806],[5.297920702370448,51.68420150084466],[5.297921858213566,51.684201996091986],[5.297923028516916,51.68420249135031],[5.297924155386552,51.68420301354105],[5.297925282273914,51.6842035267433],[5.297926365709858,51.68420407586649],[5.297927449145824,51.68420462498967],[5.297928503608288,51.684205201056294],[5.297929543628269,51.68420576812343],[5.297930554674742,51.684206362134],[5.297931565721245,51.68420695614458],[5.297932518891518,51.684207568088105],[5.29793348652203,51.68420818004264],[5.297934396258612,51.684208818918584],[5.297935306012923,51.68420944880608],[5.297936186811429,51.68421009664851],[5.297937053149745,51.68421074447993],[5.297937876072046,51.68421141025532],[5.297938684534153,51.684212076019705],[5.297939464040458,51.68421275973908],[5.297940229121972,51.68421342547041],[5.297940950769763,51.684214118134236],[5.297941672417576,51.68421481079806],[5.297942350667068,51.68421551241732],[5.297943028934281,51.684216205048145],[5.297943649325251,51.684216915611884],[5.297944269751641,51.68421760819868],[5.297944846744302,51.68421832771792],[5.297945423754682,51.684219038248685],[5.297945957384432,51.68421974874639],[5.297946476553983,51.68422045923316],[5.297946966767716,51.684221187674844],[5.297947442556647,51.68422189812855],[5.297947874947242,51.68422261753779],[5.29794830735555,51.6842233279585],[5.297948696347818,51.68422405632316],[5.2979490853755,51.684224766710884],[5.297949416544619,51.684225486043076],[5.297949762209367,51.684226187409294],[5.297950064458071,51.68422690671949],[5.297950352281964,51.68422760804173],[5.297950611167729,51.6842283183304],[5.297950870071199,51.684229019630585],[5.297951085576321,51.68422972988626],[5.297951301116846,51.684230422164994],[5.297951473276717,51.68423111441067],[5.297951645436594,51.684231806656385],[5.297951788693734,51.6842324898916],[5.297951931950879,51.68423317312683],[5.297952031845059,51.68423384734052],[5.297952131739249,51.68423452155423],[5.297952202730694,51.684235186757476],[5.297952259261919,51.68423585194971],[5.297952301350623,51.6842365081424],[5.297952328996806,51.684237155335666],[5.297952327722544,51.684237802506914],[5.297952326465978,51.68423844068966],[5.297952310749191,51.68423907886142],[5.297952280589879,51.684239708033694],[5.297952221527819,51.68424032819543],[5.29794651680132,51.68428814269057]]]]}},{"type":"Feature","properties":{"id":6,"statcode":"WS42","geometry_g":"polygon","gag_id":null,"hierarchie":"0","hierarch_1":null,"inspire_id":"NL.42.42_Waterschap Scheldestromen_p","sde_id":null,"land_code":null,"inspire__1":"NL.42.42_Waterschap Scheldestromen_v","inspire__2":"NL.42.42_Waterschap Scheldestromen_l","wbh_code_o":"42","einde_leve":null,"laatste_wi":null,"admin_code":null,"waterschap":"Waterschap Scheldestromen","publiceren":"42","Aangemeld":1,"Actief":1,"KVK":51640813,"tnostatus":2,"CPT":5200,"GMW":0,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[3.515458751444189,51.41147751445351],[3.515522724231576,51.41147062061962],[3.515581681338126,51.41147839103573],[3.51865414107338,51.411472874060635],[3.519038669398736,51.41142787887376],[3.519923815543098,51.41135091051163],[3.521133496793068,51.41111527432874],[3.522246865941421,51.41101400684824],[3.525011700929506,51.41093449672312],[3.525655513636254,51.41085012381099],[3.526143497091234,51.41080585803591],[3.527893898833815,51.410450871435636],[3.529699639913817,51.41047058292554],[3.529731873393315,51.4104670236776],[3.530518937593421,51.41043053403879],[3.533685171744554,51.410083533622426],[3.536504239660397,51.409844912347474],[3.539658634457127,51.409577822492814],[3.54196689170639,51.40949343546792],[3.542033400442476,51.4094844454963],[3.542233413395254,51.40947848527635],[3.544381351471194,51.40931582097392],[3.544906045888175,51.40923413464534],[3.545145994052451,51.409213228646514],[3.546739458753018,51.40890258374152],[3.547203482806495,51.40885923658751],[3.549710657327954,51.40789309206109],[3.554120577452434,51.406726298371574],[3.558530273621503,51.40555933671111],[3.559105395372886,51.40525319857289],[3.567782983007468,51.40063339307827],[3.587497081417814,51.38949439669087],[3.601564139360144,51.3884161147454],[3.608659768537123,51.386276970172055],[3.618841447504669,51.38160398501988],[3.639104642865678,51.37733353114747],[3.665053522537408,51.37607464034749],[3.686917761277221,51.37336593842766],[3.692917475435932,51.36801542135567],[3.693394948366796,51.36758954817942],[3.715065598116815,51.35863350849161],[3.731801464891779,51.35131165501615],[3.757843765209952,51.35055503051246],[3.771564289583464,51.35190587040257],[3.778613579835276,51.35231807996625],[3.78504842697852,51.35183138190662],[3.810418602347778,51.34473367455399],[3.826956261694849,51.34429109267433],[3.847911381237017,51.337557612370226],[3.866841302375856,51.34147419885813],[3.869899364621576,51.34577536398101],[3.893094216241271,51.35288961243254],[3.910359216558003,51.36109286247241],[3.932808796221769,51.368594174360325],[3.937555318227859,51.36844405084364],[3.955034704575405,51.36788955319899],[3.961620597827411,51.38188666244146],[3.960284918009669,51.4007131214062],[3.967912544446643,51.4082318580116],[3.992491660192125,51.41062307781691],[4.00135024388288,51.406251771669915],[4.019267959829104,51.403110169071574],[4.032571168177907,51.39459935512211],[4.039125154375096,51.38093897201255],[4.052975958022642,51.3700499505622],[4.088265423551495,51.366969623358834],[4.112366279020413,51.35452439175306],[4.134364009914838,51.33768270169949],[4.151793869871953,51.33000295355988],[4.169014346245371,51.32995960122141],[4.179539747928978,51.333485252885154],[4.216438994409208,51.355167152772445],[4.216309091437391,51.36415536158165],[4.233440321284216,51.34997591298546],[4.233457191333501,51.349989465406054],[4.235234978122142,51.34849344207103],[4.234765832882052,51.34811640353881],[4.232522572814236,51.34631397473649],[4.232403861230256,51.34621858813838],[4.232385571844269,51.34620389779468],[4.232117284211169,51.345988312797665],[4.231794244131281,51.34572876487536],[4.22454312574403,51.33990184566978],[4.224460565520639,51.339835488078606],[4.220823861321007,51.336912336570514],[4.22073899152425,51.33684411028043],[4.22071099212847,51.336821607803046],[4.21710522381086,51.333922810127554],[4.217023641188068,51.333857221028],[4.215571907961427,51.332690197047135],[4.215315813431763,51.33248428660142],[4.215160143220244,51.332358943463596],[4.215044213643085,51.33226587691595],[4.213866689800683,51.33131903788276],[4.213577796102472,51.331086732429384],[4.211223701476498,51.32919325483401],[4.210081667417465,51.32827460219925],[4.209998010797688,51.32820730601712],[4.209005982381504,51.32740998910188],[4.208194251369655,51.32675709885568],[4.208101477054679,51.32668248137722],[4.207292548238211,51.326032085138436],[4.206883627352597,51.325703661877014],[4.206614336540934,51.32548727795373],[4.206548651732877,51.32543449971296],[4.206546613609104,51.32543286093375],[4.205580611460257,51.324655725544304],[4.204528640888785,51.32380936138026],[4.204450341193039,51.32374636754118],[4.204430889077415,51.32373072594732],[4.203704320144245,51.32314613482189],[4.201665075842718,51.321505287750135],[4.201472234849939,51.32135011553497],[4.197211966472774,51.3179216516027],[4.196771111595432,51.31756683160056],[4.196604410617677,51.31743265719747],[4.196353911181861,51.317231039957115],[4.196181072289939,51.317091929818524],[4.196169592887949,51.317082688004724],[4.196138063000565,51.31705731160986],[4.196064619897257,51.316998200168086],[4.19604691580177,51.31698395940142],[4.195586561439995,51.31661348225393],[4.195246443100664,51.31633975711086],[4.194882443522188,51.31604680945475],[4.194296178861327,51.31557497493607],[4.192895161516208,51.314447346298834],[4.192865349139556,51.31442335301894],[4.191233319948419,51.31310970421626],[4.190908327482871,51.31284809545596],[4.190132681585141,51.31222371819335],[4.190090341538315,51.3121896349439],[4.187351338361069,51.30998463567383],[4.186916534671613,51.30963456803299],[4.184552907678622,51.30773150007782],[4.182990796090496,51.30647342546793],[4.182807757798512,51.30632602680637],[4.181849090110827,51.305554022989476],[4.181840368919276,51.30554700173109],[4.181837672660349,51.30554482530644],[4.181762453612697,51.30548429278091],[4.181040371559483,51.30490309909064],[4.179922617894584,51.30400339669129],[4.179869872748903,51.30396094027726],[4.179701709741445,51.30382557506564],[4.179656632294547,51.303789293017736],[4.179652967138062,51.30378634237656],[4.179523775444222,51.30368228730382],[4.179311494950496,51.30351131457894],[4.177439487574145,51.30200350693037],[4.173080898297277,51.29849234735906],[4.172990204155864,51.29841927789952],[4.172508603727216,51.29803125189531],[4.168617602534046,51.294896014276915],[4.168516282404673,51.29481437076373],[4.16834067876009,51.294672860706456],[4.168065329359702,51.29445099047879],[4.167903147278463,51.29432030894613],[4.167723574677403,51.29417560999246],[4.167550417848129,51.2940360840715],[4.167223140821577,51.29377236944447],[4.166447845711199,51.293147608209566],[4.166310488713843,51.293036916919824],[4.166131754358707,51.29289288046383],[4.165873367327238,51.29278673526156],[4.165584348196425,51.29266799718845],[4.165536128759411,51.29264819043743],[4.165413113045518,51.29259764523418],[4.165308335588386,51.292554599902054],[4.164859190124581,51.292370083105915],[4.164784526700007,51.292348892626286],[4.164752609331024,51.29233983751514],[4.164749139033639,51.29235166735791],[4.164737170840652,51.29234884478501],[4.164739234191242,51.29233601130953],[4.164745021871711,51.29232330684287],[4.164677814103149,51.29229567712387],[4.164282949766659,51.29213337513002],[4.16406767127601,51.292044875871824],[4.163296503380164,51.291727895886666],[4.163192730154659,51.29168336690281],[4.162665433497311,51.29145708997564],[4.162510916663036,51.29139078408196],[4.162493127783086,51.291383144527586],[4.162142209991463,51.29123256151468],[4.161731323238802,51.29105622909769],[4.161650189444601,51.29102141211795],[4.161223176230543,51.290838156882494],[4.160853514672567,51.29067951557468],[4.160493890945349,51.290525177011695],[4.160130796872495,51.29036935340634],[4.159993919702798,51.290310610546896],[4.15977660654795,51.29021734424195],[4.15584336874299,51.288441136765826],[4.154367555532327,51.287774611685876],[4.150842401382034,51.286182373378914],[4.150761587915476,51.286145871019805],[4.150617891456008,51.28608096750921],[4.149791751858858,51.285707783526725],[4.142409199300363,51.28237240932605],[4.140205655969819,51.28137667967064],[4.129415606027957,51.27649970343599],[4.128270481942147,51.27598200282719],[4.128052711863136,51.27588354720086],[4.126485567655178,51.27517501371153],[4.114904895891938,51.269940226379674],[4.114898286389269,51.26993724145153],[4.1145629643735,51.26978556827094],[4.114510245573839,51.2697617173659],[4.1122840272374,51.268754737431166],[4.111893685333669,51.2685781634125],[4.109401282659587,51.26745065135428],[4.109041798514596,51.26728801686508],[4.107816885552185,51.26673384236981],[4.107047268818101,51.26638563868025],[4.106296837526175,51.266046109315404],[4.105899947631107,51.26586653906213],[4.103871978709376,51.26494892217434],[4.103847075160662,51.26493765308061],[4.103719062967534,51.26487971376374],[4.098861691513877,51.262680886656305],[4.097743691553669,51.2621747322739],[4.097657898278941,51.26213588974814],[4.097600514136492,51.26210991169697],[4.097483156676446,51.26205679410239],[4.096719823602579,51.261711287414194],[4.096299241100417,51.261520921021905],[4.096286250059761,51.26151516729547],[4.095350999399039,51.26109191553356],[4.094484195909878,51.260699622128975],[4.094027895885237,51.26049310051231],[4.09390838190849,51.26043901135439],[4.093727159354477,51.26035698817759],[4.09347815961417,51.26024429325814],[4.093405671132053,51.26021148375488],[4.093398130785345,51.260208073704305],[4.093279933853996,51.26015458286724],[4.093272817890426,51.26015136631238],[4.093176191149663,51.260156970998516],[4.093092681183498,51.26016182253201],[4.092918026526408,51.26017196189058],[4.092690386635369,51.26018518825422],[4.092605053965809,51.26019014501419],[4.092602512531098,51.26017918522658],[4.092509821023519,51.25977895594608],[4.092493833924617,51.25970993470434],[4.09177810041932,51.259758063485656],[4.091164875861172,51.25987517533169],[4.091062006358501,51.25989482259184],[4.09114844694842,51.259493225472426],[4.091153792363985,51.259461281582546],[4.091157591043315,51.25943336584037],[4.091160826971382,51.259405084239894],[4.091162761115499,51.259377237624165],[4.091164406255439,51.259349477686264],[4.091164621643244,51.25932161192382],[4.091163693739926,51.25929364352798],[4.091161049631124,51.25926556611655],[4.091157241892706,51.259238105023364],[4.091152140012348,51.25921080930791],[4.091146316907752,51.25918368535225],[4.091139870035716,51.25915835239338],[4.091086886377928,51.25916243679919],[4.091057027651651,51.25916447744217],[4.090310991900969,51.25921536999614],[4.090192599051909,51.25889123793241],[4.090143440346742,51.25875671592246],[4.090116862425667,51.25868389045733],[4.089989134266516,51.25868138758515],[4.089721654804197,51.258564190324705],[4.089708493814115,51.25855842496529],[4.089487715788162,51.25846168721023],[4.08859820263431,51.258071918607236],[4.087932375301695,51.25778018429943],[4.087601948441185,51.257635399764325],[4.087340520025371,51.25770979084832],[4.087170349629546,51.257446108296705],[4.086826196994974,51.257295459656916],[4.086793120458333,51.25730238061664],[4.086596317534888,51.25734359207515],[4.086506512384906,51.25723174460899],[4.086608983439157,51.25720025746854],[4.086487711721318,51.25714712077867],[4.086457185367022,51.25713335779965],[4.085758053125518,51.25681820673986],[4.083687306538492,51.25588472214901],[4.083670544885974,51.255877162750096],[4.083595562772865,51.255843357178755],[4.080439211747205,51.25442034243927],[4.079945997846541,51.25419796845902],[4.078927011974516,51.25373851830441],[4.078788701851823,51.253676156118246],[4.078524302872727,51.25355693560802],[4.078473248416386,51.2534635870354],[4.078282238365515,51.25311434374698],[4.077058298710039,51.25252207537261],[4.076412745317999,51.2522385480436],[4.076001098150845,51.252096275783764],[4.075485506219682,51.25192711932218],[4.07489016938507,51.2517514873169],[4.074417512957267,51.25162398349601],[4.073959581775713,51.25151759010497],[4.072802405829268,51.25122296160695],[4.071280094891617,51.25092365217247],[4.071111958169791,51.25088246478703],[4.070633201512935,51.250738604945134],[4.070671135179534,51.25070963774038],[4.070743639016761,51.250654092466554],[4.07111686215467,51.25045245003388],[4.07142060427742,51.250240940879294],[4.070729138740121,51.24993735434796],[4.069452422043319,51.24947309564952],[4.068540831795814,51.249141588001876],[4.068132863770738,51.24899322512962],[4.067746445671723,51.24885269261162],[4.067731802136214,51.248847366382506],[4.067601399548338,51.248799940433386],[4.067431985736123,51.248738326376625],[4.067297699581289,51.24868948957519],[4.065995437786934,51.24821587677733],[4.06571672244628,51.24811450649142],[4.065451162856046,51.24801792373764],[4.065326236754802,51.24797248123918],[4.065244955956087,51.24794292511618],[4.065042208615257,51.24786917906576],[4.064719554678395,51.24775182653426],[4.064713941346061,51.247749784964945],[4.064658760172204,51.247729631796346],[4.064570637493722,51.24769745329877],[4.064193180879161,51.24754048749097],[4.064096483348623,51.24750021919078],[4.064077444738138,51.247492361324674],[4.063659555144677,51.24677309987531],[4.061848239249564,51.24457290406501],[4.061806355451012,51.244560650205585],[4.059738719956243,51.24395584618905],[4.059091407575631,51.24376648563335],[4.057910911733321,51.243421151493656],[4.055316701681921,51.24298140541467],[4.054840964144098,51.24290075723664],[4.044570987916927,51.24176299238943],[4.043409904995657,51.24163429831805],[4.042232326097651,51.24150376570365],[4.041902575532263,51.24146721121907],[4.041564517223148,51.241429732617135],[4.041216652140391,51.24139116864059],[4.041041549252916,51.241371755847275],[4.040675526825646,51.24133117313922],[4.040552183852933,51.241317608873864],[4.040350553852634,51.24157022527527],[4.039951316515717,51.24146683939516],[4.039943186311065,51.24146473150212],[4.039880504958593,51.241448453047035],[4.039830819203424,51.24152599895788],[4.038961963154699,51.24288211269231],[4.038234673997858,51.244014127955595],[4.037956720956891,51.24444673028126],[4.03790176565754,51.24452790011088],[4.037845404269366,51.24459844562168],[4.037785017223575,51.24465977479148],[4.037714649681329,51.24471954976752],[4.03653739401975,51.24567840376535],[4.036483384624938,51.24565446600309],[4.036474491735213,51.245650515093125],[4.036471551126366,51.24564920439125],[4.036366056552663,51.24560170869657],[4.036231531504405,51.24554440945301],[4.035446908286531,51.245207273214795],[4.034996241067436,51.24499479264434],[4.035075035663576,51.24492624429153],[4.035207240477227,51.244807704029455],[4.035338666651449,51.24468688913801],[4.035081065762897,51.244570937822466],[4.034453671712061,51.24427467409169],[4.033920766790829,51.24402324178606],[4.033791277774389,51.24396251019746],[4.033329140626591,51.24374576320764],[4.032652750435496,51.24342646267168],[4.032395546704161,51.24330432491818],[4.032341603011632,51.243288503767914],[4.032100238242984,51.24321733336724],[4.031748282400499,51.24311446115253],[4.031575520307006,51.24306956626051],[4.0312256270471,51.242977414377954],[4.030849778009557,51.242883007962476],[4.030761673508022,51.24289679574788],[4.030688015424881,51.2429097810511],[4.03063460563088,51.242900150328246],[4.030566672917486,51.242892453809226],[4.030455973134551,51.24286299744996],[4.029920768592707,51.24274028997564],[4.029304034211246,51.24259664381789],[4.029124302165967,51.24256283823502],[4.02910270167135,51.242562918644325],[4.029083298822408,51.242571484140456],[4.029064645205036,51.24258231482927],[4.028943864023371,51.242660617258444],[4.028798525266465,51.24275805079309],[4.028517785137435,51.24269836949227],[4.028294965848784,51.242647850632274],[4.028093972238608,51.24260850902349],[4.028032214283743,51.24260319355614],[4.027962493318833,51.24259545663227],[4.027921558087726,51.242587795371456],[4.027806059116928,51.24256328772008],[4.027716043751555,51.24257871398621],[4.027514332905408,51.24253654017847],[4.027342171285287,51.24249671623119],[4.027285739942008,51.24247745648253],[4.027138046091575,51.242419615006085],[4.026861946532546,51.24231278731189],[4.026693783979624,51.24224058283513],[4.026640907217513,51.24221787629178],[4.026494106803818,51.24214543595473],[4.026319523515883,51.24205605714604],[4.026228930448097,51.24199160980868],[4.026163539943799,51.2419417871133],[4.025946172730627,51.24184582994589],[4.025724820336777,51.24174134830096],[4.025625135558743,51.24170818656195],[4.025395530679355,51.24163614188662],[4.025344890382028,51.24162545336954],[4.025273399096554,51.241617109749775],[4.024964064267242,51.24156915829131],[4.024571711272414,51.241511369449476],[4.02456807512177,51.24151083240879],[4.024553769099851,51.24150884885706],[4.024549335203238,51.24150816762205],[4.02451933705,51.24150650365051],[4.024490561795622,51.24149983766984],[4.024473386728316,51.241533168534055],[4.024401303933521,51.24167427349291],[4.024365947860334,51.241755486944285],[4.024345290270722,51.24180477889579],[4.024317626691004,51.241892195559444],[4.024297537041094,51.241960912207176],[4.02426866874332,51.242040673381666],[4.024230244391109,51.242133537629535],[4.024110832276305,51.24238753953902],[4.024021909837635,51.24256503556772],[4.023927675886698,51.24274291876943],[4.023828955602154,51.24290789384393],[4.023737115785746,51.24304858703468],[4.023669794773101,51.24314021338257],[4.023597650766841,51.243220635750944],[4.023507173380745,51.2433058774392],[4.023412975579571,51.243381366411356],[4.023359232862784,51.24341615621834],[4.023266366973976,51.243466129550804],[4.023194523538463,51.24349792017464],[4.023125516786275,51.24353064300643],[4.023059823114731,51.243567539980575],[4.023002719955461,51.243604537674294],[4.022924385186527,51.24366672755432],[4.02272877657757,51.24383326221142],[4.022420041177797,51.24409609887753],[4.021744095198437,51.24467457293777],[4.020998493528822,51.245310659038786],[4.020934149669722,51.24536555038293],[4.020051468736463,51.24522428678172],[4.018859471787433,51.24503308032767],[4.017619537386765,51.24483590322309],[4.015570732733795,51.244511976387486],[4.015481478981676,51.244497861578495],[4.015249502069524,51.244816512768075],[4.015126059756076,51.24498316689839],[4.015087262719964,51.24502559082496],[4.015035181509974,51.24506201462351],[4.014986561849581,51.245083286387704],[4.014970532070253,51.245085749283284],[4.014928428666486,51.24509221969477],[4.014866844060443,51.2450872678802],[4.014807041716636,51.24507541487584],[4.014750856616571,51.245062345942664],[4.012984785892707,51.24458076386948],[4.012306968617179,51.24439154516662],[4.011539530752801,51.24417729558237],[4.011411098701958,51.24414242414981],[4.011291465466825,51.24410549909251],[4.011171054318791,51.244065867750145],[4.011055338556279,51.24402728071876],[4.010940995260659,51.243985922954145],[4.010327522581063,51.24375653206551],[4.010234651791619,51.243721801588606],[4.010136433614108,51.24368485915052],[4.009824501624113,51.24356753382917],[4.009601992547323,51.24348434950242],[4.009385865074598,51.24339854338065],[4.009215159978791,51.243326400190824],[4.009145131289961,51.243302286775716],[4.008939535285736,51.243237820659324],[4.008885853074428,51.243217856325046],[4.008758349683129,51.24318083536153],[4.008677578157821,51.243147244887474],[4.008570706055379,51.243100489488285],[4.008447831204603,51.24304770088326],[4.008132319167149,51.24292826084386],[4.007957360829398,51.24284527751084],[4.007947724715453,51.24285136624875],[4.007572668895247,51.2426751038322],[4.007305427290252,51.2425495096446],[4.007056818433582,51.24242969166573],[4.007007055361983,51.24240330025126],[4.006954826845154,51.242380781159106],[4.006549103358789,51.24220584153468],[4.006331040838641,51.24210858953678],[4.00623213933814,51.24206839928113],[4.005693038140833,51.2418758979261],[4.005649069601161,51.24186020076851],[4.005396694427394,51.24177008190695],[4.005028792792207,51.241631222056334],[4.004853693923748,51.24157223524357],[4.004434101674861,51.241423589453554],[4.004376498892598,51.2414007895328],[4.004347460850767,51.24139201178974],[4.004342283663184,51.24139081751165],[4.004293925080412,51.24137967045115],[4.003924757398744,51.2412639858649],[4.003532800548596,51.24112995933941],[4.003443721673853,51.241096158459314],[4.003245471604465,51.24102093672815],[4.003128965810173,51.24097673159858],[4.003081862963328,51.24096196706321],[4.002930283946583,51.24090208852462],[4.002894246259768,51.24088704207311],[4.002844291406386,51.24086618432137],[4.002775395530318,51.24082566498768],[4.002765348225243,51.24081975591484],[4.00272162783882,51.2407878518477],[4.002692200496713,51.24076638434156],[4.002595434096084,51.2406889083872],[4.002540680885702,51.24065196443602],[4.002518939632148,51.240637294833824],[4.002163802864861,51.24041784867877],[4.00200732951249,51.240325726880315],[4.002002092221765,51.2403232102693],[4.001920372745432,51.24028387717806],[4.001257230351866,51.240024979545495],[4.001105969411223,51.23995476401652],[4.001099856827391,51.2399532527885],[4.000809659350632,51.239812608428174],[4.000775160611709,51.23979550299011],[4.000676602416324,51.23974665476831],[4.00056395749126,51.239687686721865],[4.000495899882903,51.239650825889136],[4.000364529391634,51.23957176675241],[4.000178650846734,51.23947192010336],[4.000100498307885,51.23942792653987],[4.000009612602469,51.23938351135565],[3.999957274863011,51.23934306194505],[3.999898529591939,51.239291928025004],[3.999745518016729,51.23915669299263],[3.999706232980886,51.239115590087785],[3.999662602512432,51.2390713787686],[3.999657728482891,51.23906538730089],[3.999651943054674,51.23905827920468],[3.999625736092083,51.239026079447456],[3.999557384619798,51.238909114733794],[3.999547628004413,51.238862889242164],[3.999535643961395,51.23880603810725],[3.999530082997986,51.2387796943441],[3.999569418145864,51.23844547051172],[3.999607300391966,51.23810718388806],[3.999630674532078,51.23795196484295],[3.999650140275389,51.23782271587091],[3.999646056088063,51.23781098030283],[3.999551354578104,51.23777919493152],[3.999451205050463,51.237747614171],[3.999309760446121,51.23770825873241],[3.99927906019864,51.237701986015566],[3.999202374173882,51.23768630046362],[3.999124876832666,51.237670452349505],[3.998815142114481,51.237617580570884],[3.998734569505161,51.237605399312876],[3.998643362079509,51.23759161668678],[3.998521375179548,51.23757182083069],[3.998395254350612,51.237546671451625],[3.998297015365057,51.237527698332954],[3.998192676829194,51.23750680036738],[3.998064993624717,51.23748123641259],[3.998010363280389,51.2374674137041],[3.997918469741284,51.2374441559654],[3.997793617449333,51.23741497563501],[3.997751875420539,51.237411564229326],[3.997697690905687,51.23740713213469],[3.99764162055214,51.23740255162451],[3.997471876720987,51.23740393956578],[3.997364247670507,51.23740184432367],[3.997139989716855,51.23738747730418],[3.997136628884347,51.23739299288171],[3.997134263580583,51.237396848239946],[3.997013814511512,51.23738776713316],[3.996866602058104,51.23737342152297],[3.996774049740731,51.237362462147416],[3.996726475240081,51.23735682307098],[3.996640751946742,51.23734545978151],[3.996534294245246,51.23732836467037],[3.996434932956986,51.23730441413288],[3.996377340811834,51.23729052826341],[3.996115108951155,51.2371684558172],[3.995909926062263,51.23707772075786],[3.995551416416591,51.23694298816373],[3.99535336283974,51.236867961833774],[3.995330129900038,51.23685916137498],[3.995280971105437,51.236841582152884],[3.995244574314531,51.236839959872775],[3.994932590769881,51.23682608483682],[3.994860109759913,51.23682198075979],[3.994780236609709,51.23681608005576],[3.994707168187118,51.23680774360382],[3.994656072030669,51.236800677065055],[3.994644563710311,51.23679908290538],[3.994602411208248,51.23679129636285],[3.99456354307698,51.23678381883036],[3.99452410780301,51.23677615469558],[3.994478169373351,51.23676571570452],[3.994360057588115,51.23673634267643],[3.994338776581434,51.236730235390716],[3.994273457357308,51.236711482294524],[3.994223226037393,51.23669622714544],[3.994105082324981,51.236658492878064],[3.994037944205822,51.23663880988164],[3.993899107988431,51.23659399520882],[3.993817727378778,51.23656703944251],[3.993745515227948,51.23654468841562],[3.99368643334631,51.236528517897405],[3.993640341275001,51.236518436326214],[3.993595565990413,51.23651214626847],[3.993550576516127,51.236508190997625],[3.993505051013056,51.23650773534204],[3.993458636529813,51.23650825790277],[3.993402121014501,51.23650659171451],[3.993273156245348,51.236504506662065],[3.993179305056064,51.23650149387706],[3.993109627655617,51.23649940008429],[3.993010642105757,51.2364956963246],[3.99295149692773,51.23649103172941],[3.992889686528747,51.236484537173006],[3.992830094531609,51.2364757318099],[3.992759085846165,51.236465620843674],[3.992700324506109,51.23645304961973],[3.992653194147823,51.23643944914823],[3.992596046655188,51.236416199254116],[3.99254380744043,51.236391659708],[3.992488423440312,51.23636222788386],[3.992220730091269,51.23621778609831],[3.992143231755645,51.23617154744876],[3.991830973387089,51.2359669671822],[3.9917852449642,51.235938388034846],[3.991625800264181,51.23583873671644],[3.991542087653506,51.23578028673071],[3.991313255451922,51.23559198898958],[3.991198752534201,51.23551528828246],[3.991183020455157,51.23550475207231],[3.991136612874092,51.23547264047211],[3.991050697708399,51.23541320176279],[3.99073591539957,51.23519543595492],[3.990622596856676,51.23511235707107],[3.990607889846959,51.23510296581711],[3.990527359721117,51.235051538442924],[3.990308371048746,51.2349117045208],[3.990102376740974,51.23477312304726],[3.98998280025156,51.23468870975695],[3.989933317757464,51.23464900920771],[3.989880338858321,51.2346065696583],[3.989824321797259,51.23455105823117],[3.989755066245904,51.234474171547326],[3.989737422962503,51.23445166459984],[3.98971784962266,51.23442670718515],[3.989682709032462,51.23438160513063],[3.98964163516746,51.234329149948096],[3.989591207692509,51.23425941164167],[3.989559685019159,51.234217769187055],[3.989521345560465,51.234169572072325],[3.989472246403649,51.234107940581],[3.98939593370051,51.2340089436093],[3.98930105867941,51.2338847315512],[3.989242268274143,51.233807520844266],[3.989200724874859,51.233756408336895],[3.989164608572051,51.233715160042465],[3.989104219639656,51.23366220276399],[3.989047509332239,51.233615402808795],[3.989013257545761,51.23359002606832],[3.988974132946644,51.23356103073182],[3.988884898516996,51.23351015378889],[3.988815889910596,51.233475027555876],[3.988771670423145,51.233452515530026],[3.988694286767502,51.233413108211465],[3.988659571309725,51.23339543012933],[3.988559806929561,51.23335647276001],[3.98846130721192,51.23331408738402],[3.988435145169511,51.23330283200835],[3.988344064065552,51.23327027181982],[3.988264900647011,51.233246035728165],[3.988205546051845,51.23323430909123],[3.988194159079364,51.23323205948102],[3.988139229605061,51.23322079058929],[3.988113565091276,51.23321951092221],[3.988074793885965,51.23322540932023],[3.988042521903602,51.23323652812102],[3.987989553267671,51.233259534260604],[3.987752955632995,51.23337805097018],[3.987551267876479,51.23347406312799],[3.987476275123543,51.23351019891474],[3.987079751700642,51.23371219333075],[3.986979711822954,51.23376196159098],[3.986833019804937,51.23383885690215],[3.986768492576542,51.23387221452483],[3.986702510190844,51.233906327719865],[3.986577255023277,51.233970535414436],[3.986424778175853,51.23404924842929],[3.986296136177069,51.23411179685064],[3.986233421392171,51.23414439389411],[3.986205035535288,51.23415951456473],[3.986199523171353,51.23415293047977],[3.986164583856258,51.2341112009688],[3.985794859729114,51.23366956731746],[3.985620738531396,51.233458633520186],[3.985384630834639,51.23315354718789],[3.985146030041194,51.23285984746643],[3.985025772543358,51.232671767167155],[3.98487866407276,51.232500174070594],[3.984675724112599,51.23221819465931],[3.98439707310571,51.23196315232643],[3.984055923652287,51.231492892052835],[3.984042184314948,51.23147395535378],[3.983899915114483,51.23130776833506],[3.98384457558892,51.23124311937121],[3.983757813202046,51.23114176294995],[3.983691639567372,51.23108163093866],[3.983566647852271,51.23096900710238],[3.983485847145297,51.23087687415059],[3.983376882004565,51.2307459243488],[3.983267201773623,51.23060094155237],[3.983118955914591,51.230406138419724],[3.982705689649301,51.229872001912526],[3.982698596438925,51.22986283643568],[3.982636121585684,51.229777423898774],[3.982623560582982,51.22976025428639],[3.982555871399553,51.229670256798784],[3.982475730134309,51.229575434099075],[3.982409946054784,51.22949804540569],[3.982087337169446,51.22913419177989],[3.982030183129354,51.22906958290977],[3.981997814053449,51.22903767314595],[3.981965413917317,51.22900584390653],[3.981868070519517,51.22893511261272],[3.981820045782251,51.22891367562724],[3.98178539504467,51.22890435683786],[3.981677792168129,51.228906742175475],[3.981557282386762,51.22892380474826],[3.981459434279248,51.22892558860515],[3.98136961313486,51.228908410813034],[3.981355842942392,51.22890314705926],[3.981306494159557,51.228884273956346],[3.981284998056702,51.22887181475873],[3.981242203234647,51.228846997626796],[3.9811821350089,51.22880276018803],[3.981175877511475,51.22879670623775],[3.98110078904918,51.22872401387535],[3.981086760770575,51.228706161093896],[3.98101576467429,51.22861582601504],[3.980981886629865,51.2285719950707],[3.980970607580245,51.22855460703615],[3.980942785262503,51.22851173931225],[3.980916361253342,51.22846296414057],[3.980875233301174,51.228366094913],[3.980852168693771,51.228291829006764],[3.980843320788088,51.22826753913983],[3.980829396862059,51.22819868782343],[3.980822710374227,51.22815995033897],[3.9808105252773,51.2279970855822],[3.980804568085992,51.227906575029856],[3.980796146435956,51.2277283830387],[3.980788434538282,51.22766706847254],[3.980782142168372,51.22762015493198],[3.980775098345848,51.22757440099063],[3.980757595646199,51.22752420539208],[3.980731200207208,51.227469856771286],[3.980712681204252,51.227434122629596],[3.980676209623155,51.227380128585395],[3.980637081736334,51.22732218279683],[3.980578468688174,51.227239935299615],[3.980524583913168,51.227166914678854],[3.980461606407701,51.22707760219074],[3.980300566537671,51.226829240397336],[3.980156048177654,51.226586094652426],[3.980105470634177,51.22650099544086],[3.98008845818747,51.22647544701294],[3.980057568222146,51.226429035870225],[3.980024650406316,51.22638665462926],[3.980019058886366,51.22638084240938],[3.980004314030005,51.22635745201881],[3.979964794380555,51.22630999247517],[3.979905208567315,51.226237127301914],[3.97971352921824,51.22602767973958],[3.979529354913522,51.22582192765594],[3.979371503572341,51.22564860593914],[3.979269326128071,51.22556174886731],[3.979232141342388,51.22553993858734],[3.979209934574033,51.22552691300751],[3.979183607313756,51.225511464191534],[3.979091678216386,51.2254512872602],[3.979037989731451,51.225418633002285],[3.978918763300332,51.225366216275766],[3.978836833477135,51.22533942292449],[3.978806015574706,51.22532987994421],[3.978739827143137,51.22530939032687],[3.977788171078577,51.225043894133485],[3.977750565327344,51.22503301899593],[3.977745031016395,51.22503141463706],[3.977410046287423,51.225153248488375],[3.977324996573491,51.22518418544284],[3.977035485610307,51.2252891021793],[3.977032387237883,51.22529022430346],[3.976902561491782,51.22530692628167],[3.976807492162551,51.22531915018854],[3.976705379329942,51.22533228645987],[3.976682818002735,51.22533546491213],[3.976484654043465,51.225363410894815],[3.976305915916539,51.225346768514505],[3.976298650932299,51.22534557460338],[3.976228180024208,51.22533401251355],[3.97608098560519,51.2253098324247],[3.975994874087028,51.225295689064545],[3.975750955823909,51.225255627131716],[3.975555546274375,51.22522572786143],[3.97555306682566,51.22522534715364],[3.975540826181555,51.22522347248491],[3.975177368459309,51.22516783487262],[3.974668933605699,51.22509000995296],[3.974313542974496,51.22503561832957],[3.973928926158968,51.224976312505056],[3.973727926130717,51.22494531734379],[3.97369887189337,51.2249408377844],[3.973616753640691,51.22492817059139],[3.973581958262339,51.224922299689375],[3.973559027113203,51.224918433929574],[3.972946627003902,51.22481510959191],[3.972910122414361,51.22481035042931],[3.972841961452337,51.224801466396336],[3.972829256133493,51.22479981053624],[3.972738535155545,51.22478478160649],[3.972701514604444,51.22477864963301],[3.972524583900323,51.224748089011506],[3.972317746662653,51.22471145561432],[3.97230720981009,51.224710050830986],[3.972293483701806,51.224708535319515],[3.972144193820325,51.22469207402971],[3.972097641332033,51.22468491787994],[3.972092306568614,51.224684277600524],[3.972011630410966,51.22467454854244],[3.971993598215811,51.22467292664749],[3.971804795540453,51.224655948047534],[3.971728369323626,51.224649075381464],[3.971443815371806,51.22463302520954],[3.971292921349136,51.22462680079752],[3.971156268869739,51.224621163161856],[3.970869685462616,51.2246105707227],[3.970418044509791,51.22458231509033],[3.970056297702278,51.22455968425003],[3.969951457371647,51.22455312936428],[3.969918449230053,51.22455106390346],[3.969391363432831,51.22451203170455],[3.968757147263645,51.22446507370925],[3.968385094654936,51.22443131724873],[3.968066685317747,51.224402727252944],[3.967983049804659,51.22439521574292],[3.967476939160256,51.22434700939467],[3.967075891449193,51.22430880427986],[3.966948385768783,51.22429771761837],[3.966677462898685,51.22427665302983],[3.966607522059357,51.22427121369556],[3.966469639847523,51.22426049417992],[3.965962272736485,51.224211348886335],[3.965828169383423,51.22419835539197],[3.965025046748679,51.224132168318],[3.964754033956492,51.224116366235414],[3.964722651177017,51.22411453493681],[3.964683011892117,51.22410979776011],[3.964617811495668,51.22410201490517],[3.96456651481119,51.22408493571961],[3.964495117409479,51.224051248882034],[3.964291530993615,51.223954453259296],[3.964030599492192,51.22373568112658],[3.963709249905268,51.223324772918446],[3.963708106727872,51.223323320532785],[3.96363207642827,51.22316916517281],[3.963628426872261,51.22302757388253],[3.963727403945322,51.22276817626012],[3.963743979971134,51.22216786017669],[3.963740963785601,51.2216706166244],[3.963792363927578,51.221351779358244],[3.963746937843442,51.22102120252684],[3.963552840167792,51.220785267458695],[3.96334729077318,51.2206466427736],[3.963223462336323,51.220563138036105],[3.962946218575792,51.22049699247834],[3.962342757387716,51.22050344332607],[3.961917809024287,51.22045472361134],[3.961754626833061,51.22038053390184],[3.961564073424211,51.22021979478637],[3.961470678981013,51.22002365770325],[3.961399490497222,51.21958299665659],[3.961203081137103,51.219090546021725],[3.96096503452512,51.21878169834703],[3.96096156684718,51.21877950721248],[3.960645219109006,51.21857975323191],[3.960474853022804,51.21847218373292],[3.960180101366595,51.2182860704977],[3.959824569162941,51.21794871859577],[3.95943720063585,51.217130641661804],[3.959074507914709,51.21621011129315],[3.958901536955834,51.21598665389854],[3.958562438499765,51.21580727340474],[3.958547089091249,51.215805583467215],[3.958178991205886,51.215764982945224],[3.957866837811246,51.21576833768783],[3.957049486570365,51.215920195283644],[3.956072468700007,51.216086263795106],[3.955050055604722,51.21626003573394],[3.954490380805356,51.216361253408614],[3.953979159914687,51.21645369819425],[3.953170524608642,51.216472494877166],[3.953166597839108,51.21647172724618],[3.952349289423581,51.21631294942557],[3.951866259133496,51.21616453220037],[3.950604133923792,51.215776723161696],[3.949203562176829,51.21550966720923],[3.946774808647057,51.21550804563844],[3.94663952888278,51.21550795173646],[3.94631222969605,51.21544302470722],[3.943716659177155,51.21492807467969],[3.942618486291428,51.21471018230657],[3.943078848699022,51.21374063302444],[3.94313819241358,51.21361563634959],[3.941673576637317,51.213263160426436],[3.935980115513545,51.21189275319978],[3.935791654082545,51.21207779677993],[3.935190881513481,51.21266763463434],[3.933828880998674,51.21400480504105],[3.933585430293478,51.2142438079011],[3.933329877190732,51.214494696526465],[3.933328105638962,51.21449729945029],[3.932760560227238,51.21533456780639],[3.932032579933287,51.2164084380447],[3.932084003562044,51.21641636356002],[3.931543211858494,51.21721428832115],[3.931494952075247,51.21720136779009],[3.931429432836264,51.217297891091334],[3.931374604921005,51.21737868089046],[3.929999617772462,51.21940436951137],[3.929441550379538,51.22022648536736],[3.929418556195007,51.220260359060134],[3.929374880409264,51.22022564945131],[3.927654387183789,51.21885836019389],[3.926569027863591,51.21799576813927],[3.925980305546662,51.21752785757472],[3.925941995905874,51.21749741240321],[3.925449881784793,51.21710628320604],[3.925445704434407,51.217106203715105],[3.925139007642243,51.21710007280049],[3.924632948415707,51.217089967936566],[3.923714188894463,51.217071610047036],[3.923639371038556,51.21707011085703],[3.923510328354739,51.21706863918069],[3.923482110312498,51.21706831089731],[3.922602988126679,51.21705848929257],[3.922209475120263,51.21705409780611],[3.922144295190314,51.21705336637782],[3.921915156390006,51.217050802363694],[3.921903179264766,51.21705066939306],[3.921842091692082,51.21704998937235],[3.921691916035585,51.217109129677986],[3.921675519835405,51.217115584599796],[3.921672660923183,51.21711545866235],[3.920495331222995,51.217064562186195],[3.919632244596201,51.2170707518197],[3.919451322031232,51.217003200410296],[3.919450211192385,51.21700078605245],[3.918971182505797,51.21595559957816],[3.918821130033661,51.2156282209454],[3.918709433771767,51.21524967893646],[3.918688167586954,51.215077440277774],[3.918675220373254,51.21497262394441],[3.918527228607922,51.21483806183687],[3.918172609431874,51.214734088942784],[3.918169305280642,51.21473312122015],[3.917859022480288,51.21476615808158],[3.917502863823215,51.21480408011586],[3.91673602857569,51.21488554238105],[3.916729457951817,51.214884218651655],[3.91631918017499,51.21480151667645],[3.916158392438197,51.21471580319333],[3.916004782514749,51.21463392016348],[3.916006133122381,51.214630637916656],[3.916069241151896,51.214477653185384],[3.917468284347297,51.21108573035456],[3.918093057829354,51.20957080804776],[3.918066371361269,51.20955185246391],[3.917943462951127,51.20946454331629],[3.918347513427809,51.208458541866904],[3.918628671534618,51.2077634797345],[3.918617353579755,51.207766078707394],[3.916616373306257,51.208225209785745],[3.915970531198464,51.20825026491511],[3.91590862669327,51.20825266390247],[3.915820916032585,51.208239947634496],[3.915603556128036,51.20820841917322],[3.915337519340358,51.20816982814415],[3.915077835917031,51.20807465283219],[3.914974686840524,51.20803685602191],[3.914799862632561,51.20795006364717],[3.914547079734989,51.207824579253625],[3.9145426282877,51.207822365254806],[3.913770513266767,51.2071404867928],[3.913352425207376,51.2067410638718],[3.913258754421802,51.20666319125546],[3.91295901004143,51.206413998383354],[3.912912509654697,51.206375344860035],[3.912030584146992,51.205736382485654],[3.91154695018602,51.205444630667174],[3.911353529945309,51.20538032369007],[3.910648556252465,51.20522328716943],[3.910601581028908,51.205212819405645],[3.909050374998311,51.204838672220525],[3.908657092356282,51.204743815068845],[3.908402782161585,51.204689849280726],[3.90684243788861,51.20435871723642],[3.906753206177512,51.20433978052882],[3.906742304534986,51.20433746609436],[3.90654624536701,51.204295853217914],[3.905700630509339,51.204075440015345],[3.905690043894811,51.20407267999416],[3.905524333562536,51.20402948335709],[3.904977549762913,51.203886951507634],[3.904753970450026,51.20380207517315],[3.904306574040853,51.20363222825778],[3.90339067080273,51.20328451027417],[3.903367948560005,51.203278232846635],[3.902204078977521,51.20295650342275],[3.901871901013923,51.20286301499304],[3.901861449470916,51.202860076543566],[3.901480305806643,51.202752808821785],[3.901469868618448,51.20274987052011],[3.900979973009052,51.20261200236194],[3.900553027958713,51.20238457825193],[3.900088650988232,51.201874655713006],[3.900065381523838,51.20184909595686],[3.899470976407587,51.201742221376655],[3.89918329415692,51.20173236273317],[3.899177548027109,51.20173216331183],[3.898806159989074,51.20171943410858],[3.898445816801548,51.20185362580566],[3.898373927615234,51.201880394391274],[3.897652333793471,51.202332519167214],[3.896978008699249,51.202646259318996],[3.895974315181777,51.20293599246655],[3.895550373042007,51.20308338389762],[3.895238571358171,51.20325432877559],[3.895034593417726,51.20337478438506],[3.894664270020641,51.203496969566096],[3.894656269445151,51.203496120661],[3.894081232722827,51.20343537054878],[3.894012634665653,51.20342154367469],[3.893853615547586,51.20338948300093],[3.893623041932519,51.203342990641154],[3.893397152956342,51.20329415767644],[3.893253855239648,51.20326317923903],[3.8932518803025,51.20326010622465],[3.893160172651967,51.203117936347795],[3.893111771871649,51.20304289447949],[3.893115183597769,51.20303260874964],[3.893132243961112,51.20298112618085],[3.893161181074804,51.202942849838905],[3.893221836919927,51.20286261099991],[3.893233337087404,51.20284739479036],[3.893230870740537,51.2028457898299],[3.893198865464214,51.20282492607463],[3.892876497534269,51.2026961979102],[3.892829456200468,51.20267741523494],[3.892786296961952,51.20265807112657],[3.892630972252336,51.2025720169671],[3.891706344143908,51.202173911193285],[3.891276350664914,51.202006377087784],[3.891004025152736,51.201888068845776],[3.890720559201684,51.201764761888235],[3.890696306881383,51.201784407598915],[3.890614109267941,51.20175329549536],[3.890255000140446,51.20161735329635],[3.890091112763127,51.20155276155794],[3.89004207354962,51.201533880080135],[3.889848232117212,51.20145757467976],[3.889740398868419,51.20141617969558],[3.889681023734623,51.20139392847862],[3.889630236131616,51.20137601320617],[3.889535416874244,51.20134364091955],[3.889522962980967,51.2013393899703],[3.889456713415156,51.201317319762026],[3.889396599163505,51.201300183213704],[3.889379873219907,51.2012952928443],[3.889322000691649,51.20127962355548],[3.889170400903031,51.20124197925337],[3.889164484341315,51.20124042862885],[3.889156354580254,51.20123829209564],[3.889047338134001,51.20120906275531],[3.888864505677692,51.20116162086054],[3.888854988185241,51.20115947540728],[3.888709811877824,51.20112672298903],[3.888676082208065,51.201121073899515],[3.888633423369226,51.20111279245962],[3.888554130124091,51.20110017293858],[3.888478501740706,51.20108049846082],[3.888423577801113,51.20106657485219],[3.888300019818688,51.201033516317125],[3.888191981571961,51.20107729816994],[3.888187776229517,51.20107899699997],[3.888079292964183,51.201105736822605],[3.888000781272479,51.201112995064],[3.887904309136425,51.20111636262356],[3.887867671194109,51.201113885240915],[3.8878361175494,51.20111127565025],[3.887808732667627,51.20110458439337],[3.887756360083404,51.201091412585605],[3.88764981318846,51.20105846492027],[3.887596766564278,51.20104008808122],[3.887545755787673,51.20102028109221],[3.8875208955521,51.20101034096272],[3.887469806432411,51.200988555112716],[3.887444109544076,51.200977507382355],[3.887400277135667,51.20095304619089],[3.887358676498798,51.20092553917513],[3.887356715680935,51.20092292473202],[3.887296008620787,51.200842111729905],[3.887283109874256,51.20080464546247],[3.887239292696211,51.200677310982854],[3.887123983111695,51.20057585325477],[3.887036644630398,51.200516110764916],[3.886978974670193,51.20048992452003],[3.88692076106153,51.20046723735803],[3.886812753529249,51.20043132130876],[3.88673056795387,51.200410931728065],[3.886484579058444,51.20031929360779],[3.886406973051372,51.200277027137965],[3.886405562608879,51.20027421301271],[3.886349630677683,51.20016211275375],[3.886346776151119,51.200163199654135],[3.886298045990719,51.20018176422704],[3.886151850207028,51.20039724737449],[3.885917281358896,51.200679931507565],[3.885755694323487,51.20093010587722],[3.885707941029516,51.200998802509844],[3.885502041701588,51.20130863763682],[3.885381279179536,51.20148310309123],[3.885315121237268,51.201567564109816],[3.885309038426631,51.20157502818799],[3.885220744123043,51.201683485325155],[3.885218060560007,51.20168677697712],[3.885186505300004,51.20172835288073],[3.885084811111753,51.20182866256374],[3.885082696204958,51.20183075689106],[3.885000739721046,51.201899460737536],[3.884949108123714,51.20197727683321],[3.884915538838905,51.20204975250626],[3.884901211601267,51.20211582420971],[3.88487680418345,51.202271216906276],[3.884866955985261,51.202510765105295],[3.884849981444309,51.20259649085901],[3.88483540630099,51.20263298199441],[3.884761750270926,51.20281740537781],[3.884668077759857,51.20305194138859],[3.884630649266296,51.2031456466185],[3.884614119131016,51.203182831663476],[3.884596816065152,51.20321739959181],[3.884578485173345,51.20325276333801],[3.884546811064898,51.20330665395248],[3.884535964377041,51.20332323527859],[3.88452444072663,51.203338639142046],[3.884515917077142,51.20334808540497],[3.884510333439327,51.20335427930626],[3.88445728226772,51.20340764181702],[3.884415978937788,51.203451860445746],[3.884369004130689,51.20349534046881],[3.884267217727175,51.20358955301727],[3.88425940547749,51.20360086940682],[3.884163880544156,51.20367299329283],[3.884050849513835,51.20375091407563],[3.883428279471797,51.204171778320784],[3.883150686755986,51.204362732157335],[3.882979200230541,51.20446922118911],[3.88283996807118,51.204555683965616],[3.882682777778018,51.20464032290116],[3.882495285132933,51.20474127294752],[3.881998388480122,51.204989205062546],[3.881554678698623,51.205210602057434],[3.881481442008781,51.20525397452647],[3.881438212172438,51.20527957568768],[3.881371210697919,51.20531043375129],[3.880826608846423,51.205561222127486],[3.880561024242406,51.20570929001876],[3.880488104137889,51.20574994198437],[3.88034365305545,51.20579940292635],[3.880262099635877,51.20582055122381],[3.8800705896088,51.20587794234029],[3.879935342211988,51.20591295817218],[3.879695084762696,51.20603399569757],[3.879640706820853,51.206088705370654],[3.879623893119407,51.20610562241596],[3.879600605208279,51.206134897772216],[3.879484179733208,51.206244694006635],[3.879255005244789,51.20646080072768],[3.878950470710174,51.20673023836828],[3.878829075078021,51.20683962786159],[3.87793693013136,51.2076435120521],[3.877917341688352,51.207660338894385],[3.877847164994687,51.20773575358431],[3.877822051966131,51.20776824133504],[3.877797458290218,51.20781538967004],[3.877811740087257,51.20783805033637],[3.8776256519096,51.20801300839617],[3.877657315539185,51.20802632035636],[3.877664049230233,51.20802914977577],[3.877684496981813,51.20803840539252],[3.877915759909969,51.208143355849984],[3.878075656417956,51.208229399192625],[3.878245955347742,51.20833859196732],[3.878458607843898,51.20849598165863],[3.878525488420288,51.208551239701436],[3.878636610343158,51.20862774904541],[3.878757152753035,51.208700694586234],[3.878836451497325,51.208730006369805],[3.878866032884938,51.20874094456199],[3.87897167059241,51.20877099356724],[3.879071798739044,51.20879449813466],[3.879165862833696,51.208812215243114],[3.879483302317059,51.20887202642559],[3.879765102699971,51.208933217557686],[3.879815547659856,51.20894863341091],[3.879912612226732,51.20897828269985],[3.880097711275248,51.20904235456647],[3.880293211923419,51.20911569489506],[3.880387894640108,51.209151210400876],[3.880434055358653,51.209168530287364],[3.881681121116377,51.20967329861907],[3.881847873899683,51.20974312643444],[3.882220489443049,51.2098991551575],[3.882263183996394,51.20991703176629],[3.882377869082317,51.20996505804693],[3.882651173090385,51.210082688698435],[3.882847560583022,51.210167210800485],[3.883075285812284,51.21027597074005],[3.883644521744762,51.210554295502256],[3.883657354804103,51.21056057473485],[3.883839500633646,51.21065570801188],[3.883938510282325,51.210707422707756],[3.884214940438727,51.21085438869296],[3.884493873155515,51.21099492248817],[3.88468705714721,51.21109225581556],[3.884881134124499,51.21119556077506],[3.88498754180551,51.211252206821364],[3.885491195663251,51.211501077421914],[3.886274927642014,51.21188834137478],[3.8865738477034,51.212032130799535],[3.886585078495884,51.212037534962],[3.886622927015984,51.21205489787847],[3.886854657015193,51.21216123865883],[3.886915956435368,51.21218936857348],[3.886962435110262,51.21221069949263],[3.887163911739788,51.212312999252894],[3.887263453502657,51.21237667471116],[3.887313679105006,51.21241955808232],[3.887371646885736,51.212469050127496],[3.887536149429209,51.21266472854972],[3.887633910497973,51.212761014666654],[3.887759446881355,51.212852714405365],[3.8878837580701,51.2129118541466],[3.888011936060115,51.21295342307895],[3.888154105854384,51.21297988017631],[3.888164022048894,51.212981725143564],[3.888283310567858,51.21300187268196],[3.888503074649832,51.21304408247996],[3.888679562980755,51.2130878017607],[3.888865895631835,51.213158797656135],[3.889336183290464,51.21336734123272],[3.889365304714154,51.21338025758157],[3.889387418443712,51.21339080016021],[3.889412528927612,51.213402936625265],[3.889510758743931,51.21345041108411],[3.889516803972773,51.21345332982442],[3.889525371527367,51.213457467747425],[3.889532346680763,51.213460838980076],[3.889544451158879,51.21346668562872],[3.889605903226514,51.21349638033209],[3.889760663257585,51.21357745046454],[3.889799040287016,51.21359755211222],[3.88980545748323,51.2136009161415],[3.889841568313723,51.21362335297343],[3.889938769009418,51.2136870318882],[3.889943306347115,51.21369054251021],[3.89002183441323,51.213751391728366],[3.890085665163136,51.2138042662269],[3.890139542158033,51.21386345839042],[3.890144530364046,51.2138689436348],[3.890157872867219,51.21388598081293],[3.890229905574573,51.21397788783363],[3.890244017697127,51.213995905838416],[3.890286068370659,51.214059153001145],[3.890332030615695,51.21412930094159],[3.890389368646389,51.21422149512764],[3.890475252776417,51.214359618450764],[3.890673338461991,51.2146782052516],[3.890775898276602,51.21484314459509],[3.890890836824605,51.21503188703379],[3.890967738789972,51.215158476975645],[3.891039241630481,51.215272438259596],[3.891302794423867,51.21568668460675],[3.891348413044802,51.21575824812312],[3.891354241249095,51.21576739408607],[3.891367186095659,51.21578963124645],[3.891381988020608,51.21581505680132],[3.89139864703007,51.21584367074997],[3.891450210331434,51.21593223000782],[3.891488839617018,51.21600129420556],[3.891720688659723,51.21641613853475],[3.891816093216048,51.216584320160116],[3.891894464305071,51.2167200082983],[3.891951623396989,51.21680559165382],[3.892012298879767,51.21689089655968],[3.892040862639139,51.21692759274461],[3.892142399300821,51.21705616181479],[3.892198720946889,51.21712750300262],[3.892296340138556,51.21725112197167],[3.892380867035256,51.21735964902045],[3.892447775004193,51.217446148584436],[3.892621150945192,51.217670315142904],[3.892633468190551,51.21768680842395],[3.892714584656069,51.21779900426886],[3.892906173193357,51.21806398562022],[3.892940691435697,51.21811172597497],[3.893160774028606,51.21841611692333],[3.893228825293535,51.21851023629163],[3.893295529753592,51.21859693050254],[3.893346533077444,51.21866245811453],[3.893335592584886,51.218709146765484],[3.89333123431381,51.21872779908178],[3.893326945856062,51.21873552038197],[3.893307268820167,51.21877091314085],[3.893287134661145,51.218807154078696],[3.893264714975817,51.218830500869686],[3.893243154778903,51.21885295070451],[3.893230351474892,51.21886629824738],[3.893224305979997,51.21887258552721],[3.893218254116659,51.21887818948028],[3.893215966780871,51.21888029073278],[3.893173074322094,51.218918630566364],[3.893103640527357,51.2189807136835],[3.892965907872187,51.21910386052714],[3.892825004523389,51.219229834289976],[3.892666407967282,51.21937157377232],[3.892508698806326,51.21951021389336],[3.892476098501255,51.21953887763556],[3.892231404345167,51.219753992300404],[3.892229827512725,51.21975537447494],[3.891972426591897,51.219981661697105],[3.891888492787842,51.220055442502684],[3.891871440331671,51.220070443365415],[3.891799296869341,51.220133857372744],[3.891578281282178,51.22032813962256],[3.891168182284725,51.220688651245595],[3.89114669336336,51.22070754155936],[3.891117953137804,51.22073280241904],[3.890581380307891,51.221216961116845],[3.890420452042626,51.22136216477136],[3.890174868361805,51.22158375464454],[3.888653816193936,51.22295613755019],[3.888602176202754,51.22299862431188],[3.888576444843846,51.2230079569877],[3.88854856907086,51.223018071124315],[3.888497138242148,51.22301911632585],[3.888449522569446,51.22299980322883],[3.888390839663226,51.222958609466524],[3.888137855409084,51.22275880722298],[3.887770414073995,51.22262463929673],[3.887619403302778,51.222569497536206],[3.887219411621773,51.22242344568695],[3.88705599487419,51.22236377396186],[3.886394466225368,51.22212221430674],[3.88622675102524,51.22206096659044],[3.885772287821762,51.22189501267237],[3.884983266356709,51.221606884031026],[3.884815554940622,51.22154563429341],[3.884155450772333,51.22130456555349],[3.883528442024622,51.22107559014039],[3.883350342737449,51.22104964279249],[3.883092138731061,51.22105488835069],[3.8829660057954,51.22105733806067],[3.882865726726612,51.22103886960163],[3.882612233434826,51.220992176431146],[3.882543031353946,51.22096421176663],[3.882424528192402,51.22091565102938],[3.881774670929921,51.22060469544231],[3.881470428966248,51.22045911703283],[3.881021690300226,51.22032776726],[3.880442943384899,51.22015836608725],[3.880315330372442,51.22011792900701],[3.880023018379913,51.22002382573972],[3.879734050973512,51.21993078996063],[3.879726526742239,51.21992843589331],[3.87968755846862,51.21991583897497],[3.879667920268323,51.21990921936525],[3.879236417172299,51.21975686948486],[3.879231761353616,51.21975522684438],[3.879132673822993,51.219720246804705],[3.878734500287174,51.219579663834075],[3.878666560355915,51.219555677824076],[3.878519246409849,51.219503673596286],[3.878088047925113,51.219351431217454],[3.878049918596378,51.21933772986026],[3.877871324885532,51.219274908255834],[3.877724285558974,51.219220703997955],[3.877570959994215,51.219163954644365],[3.877417861096331,51.21910728893928],[3.877336708262241,51.219077251042464],[3.877160104322523,51.21901188300201],[3.876944636036508,51.2189321291587],[3.876941015488475,51.21893078755571],[3.876878828800171,51.2189077742259],[3.876647947988443,51.21882224575289],[3.87663231925436,51.21881648682252],[3.876204426575271,51.21865814005995],[3.876167524155658,51.2186428627742],[3.876069781666814,51.218602395626206],[3.876022597921635,51.2185828672015],[3.876010071266944,51.21857767892144],[3.875949626926623,51.21855264698227],[3.875784280130238,51.218484195697336],[3.875750612121997,51.21847025489661],[3.875586730662987,51.21840253259206],[3.875358789498337,51.21831178952],[3.87517296987496,51.21823781192408],[3.874902024421345,51.2181298050629],[3.874543099887879,51.21798707493083],[3.874474260946642,51.2179596674871],[3.874425697773793,51.21794033621604],[3.874278454386292,51.21788171972219],[3.874265314024471,51.21787648730408],[3.874050772713474,51.21779107630566],[3.874033110793942,51.21778404992492],[3.873783263262885,51.217685817526174],[3.873548662614283,51.21759364462684],[3.873404039068224,51.21753682317203],[3.87328093847012,51.21748845379586],[3.873145204536944,51.21743511905547],[3.873068441597851,51.21740496448304],[3.872942147995621,51.21735533949471],[3.87281179881208,51.217304124233586],[3.872798359784893,51.2172988428058],[3.872794247586028,51.21729722496432],[3.872427804581571,51.217153248504026],[3.872425614047044,51.21715239287461],[3.872166331930977,51.217050500905124],[3.872103504010889,51.21702581345136],[3.872049112407177,51.21700444537267],[3.871956043658917,51.21696787438162],[3.871774032747178,51.21689635922788],[3.871749006436126,51.216886521491325],[3.871461407948808,51.21677351564894],[3.871354237263529,51.216731402215046],[3.871295366998809,51.21670826726413],[3.870847468131033,51.21653227070131],[3.87056069358828,51.21641958798967],[3.870476063539026,51.21638632635207],[3.870359017041594,51.216340334272154],[3.870170751291683,51.216266352578586],[3.870105710807609,51.21623937863902],[3.870102575969279,51.21623807911774],[3.869981120093956,51.2161865001991],[3.869735770767615,51.21608305843457],[3.869671806303591,51.21605602637127],[3.869605681888268,51.21602808504714],[3.869461405919658,51.215967109706796],[3.869234941296752,51.21587140215345],[3.8691517410852,51.21582959962462],[3.869059557849953,51.21578328357215],[3.86893162492315,51.21571901483095],[3.868763592492672,51.215634587833385],[3.868421909215773,51.21546254911848],[3.868097508597885,51.215299932080235],[3.86782973371032,51.21516161723537],[3.867605009484333,51.215038230667695],[3.86747013326098,51.214964178190016],[3.867383435459772,51.2149165749765],[3.867379428872499,51.21491437396355],[3.867335131084744,51.214890051984355],[3.867216282314192,51.21482479428615],[3.867089125360959,51.214754977727814],[3.867034621466548,51.214725056196606],[3.86701339934123,51.214713226409074],[3.86699604874115,51.21470335314521],[3.866983770051941,51.21469636010431],[3.866968189190499,51.21468750787978],[3.866924468913087,51.214662617924944],[3.866920771780854,51.21466058276436],[3.866891258520295,51.21464410452734],[3.866695445920898,51.21454080953855],[3.866574348783557,51.21447693320796],[3.866151665472523,51.21425396002821],[3.866077739142491,51.21421496462372],[3.865772891310722,51.21405415206014],[3.865695983383686,51.21401358007832],[3.86549613876553,51.21390815353451],[3.865368362774342,51.21384075427277],[3.865335656142052,51.21382348764894],[3.865291849615638,51.213800384967016],[3.865221033639217,51.213763029961584],[3.865141453883975,51.21372104713809],[3.86505624729454,51.21367609577046],[3.8650236389624,51.213658893274534],[3.864997607023319,51.21364322428606],[3.864938064041319,51.21360736522445],[3.864897311719556,51.213582819013936],[3.864867754338418,51.21356383143123],[3.864829016192263,51.21353854741184],[3.86482310401174,51.21353468515427],[3.864792954439923,51.2135149975586],[3.864712635391804,51.21346254026311],[3.864641926786513,51.21341637599262],[3.864595018784149,51.21340867743338],[3.864473456930798,51.213388718458205],[3.864411159909273,51.21337848981583],[3.86429314256915,51.21335912547605],[3.864275111101847,51.21334866750949],[3.863984333030789,51.21318004224539],[3.863721648737997,51.21304606370005],[3.86352914380561,51.212947886008024],[3.863006693815799,51.212676728027176],[3.862801838282413,51.21258719748531],[3.862446108317067,51.21249802526124],[3.862222348841772,51.21243899193426],[3.862217731360793,51.21243709737951],[3.862123358611856,51.212398496456586],[3.861815524794467,51.212143183936654],[3.861313283162107,51.2117427357307],[3.861248487982693,51.21169582885649],[3.861088401345715,51.21157993948011],[3.860945475651911,51.211510538330465],[3.860842201159127,51.211460384038176],[3.86067014764553,51.21137683622396],[3.860443147635399,51.21126661205957],[3.86025220490031,51.2111765404301],[3.859845797873076,51.210972070414186],[3.859573838263663,51.21083067840278],[3.859531519053323,51.21083571413924],[3.859425138575264,51.21084838565985],[3.859150931881983,51.21088103883326],[3.856852101878166,51.21102528847493],[3.856843969301696,51.211025801734024],[3.856756089781441,51.21103131549998],[3.856754812913403,51.21102239846535],[3.856434815166529,51.2110426383697],[3.856436091972834,51.211051555407586],[3.856151275796053,51.21106963267672],[3.856118242894239,51.21107173283544],[3.856115991972923,51.21106755874101],[3.856112582074932,51.21106122973191],[3.856063772673598,51.21108701784563],[3.855956747038388,51.21114940210186],[3.855861018954072,51.21120521046713],[3.855054807962054,51.21167525388094],[3.852527481898464,51.2131481241536],[3.852435308638122,51.21320181906586],[3.852411426076954,51.21321572616039],[3.852314097553612,51.21320105487687],[3.852310679432911,51.213200542260864],[3.852298588147347,51.213198719445536],[3.852175737970797,51.21318021391813],[3.851897438897456,51.21313827689461],[3.851894163257651,51.2131377841282],[3.851634910320045,51.212974614315755],[3.851614583933533,51.212961822570165],[3.850168553977379,51.21205171852931],[3.84965896496002,51.21174324383763],[3.849649734211737,51.21173765574724],[3.84964276198178,51.21173343705815],[3.84927259804114,51.21184514272536],[3.84890650576085,51.2119676892754],[3.848437599214139,51.21211710287966],[3.847957090196595,51.21227094596903],[3.847688335031346,51.21235899673442],[3.847342011910442,51.212472270678326],[3.847114806427036,51.21254199119015],[3.846815951205193,51.21263971016605],[3.846361485476336,51.21279344232726],[3.846191410498628,51.21284971383705],[3.845975793274485,51.212919495862316],[3.845817222426973,51.21296989595098],[3.845699214510114,51.21298882877492],[3.845608015118174,51.21299373274837],[3.845584284637733,51.21299241116869],[3.845482505229036,51.212986737184686],[3.845451431413941,51.212985003537305],[3.845444431119555,51.21298332843378],[3.845114969401058,51.21290431345046],[3.844991096503088,51.21287461197781],[3.844878355676835,51.21284758429178],[3.844796215731069,51.212825286761436],[3.844759422075019,51.21281530499549],[3.842749868810411,51.21227002810634],[3.842499638969125,51.212202127187524],[3.842350638911539,51.21216169637202],[3.84231705124372,51.212152601501025],[3.84222738008474,51.212128323107216],[3.842102439821659,51.212170354734646],[3.841981886047696,51.2122138829594],[3.841725177083314,51.21231790282383],[3.840855134843256,51.21267241213575],[3.839742977665148,51.21311941068089],[3.839323812637057,51.21328787981648],[3.839180201422612,51.21334559930417],[3.839019147336018,51.21340780616033],[3.838984790040477,51.21342107658046],[3.83897658136235,51.21342424866808],[3.838855019354483,51.213463534904605],[3.838702320331814,51.21348811192612],[3.838370933561228,51.21353116543098],[3.837874434983213,51.21359332433527],[3.837299546420385,51.21366243730501],[3.836827062949099,51.21372122596224],[3.836451896654363,51.21378895252735],[3.836365498508629,51.21379571134992],[3.836316395445637,51.21377473853906],[3.836195399301105,51.21364483472459],[3.836064430808415,51.2135050883452],[3.835966156204867,51.21341441484545],[3.835666656638341,51.21315797430554],[3.835438598443674,51.21297305937759],[3.83504535446417,51.21264038785422],[3.834590914993088,51.212263654966456],[3.834504542271008,51.212187721181444],[3.834443161617944,51.212133751486334],[3.834434603250103,51.212127802555564],[3.834416228108431,51.21211502482754],[3.834395993364446,51.21210094565373],[3.834379366443255,51.212089377972944],[3.834372262539651,51.21208443738358],[3.834338371107371,51.212067874297006],[3.834262013575271,51.212030552014284],[3.834079624700969,51.21195979017425],[3.83390018852327,51.21189906456061],[3.833819668994919,51.21187180929784],[3.832849811730352,51.211519251106374],[3.832254760977921,51.2113029371591],[3.8284817358742,51.209926627023876],[3.827413860393265,51.20953705331513],[3.827293129237695,51.209492999649946],[3.827255283997051,51.20947919532597],[3.826925988150863,51.20935906334724],[3.826039857675252,51.209654630402056],[3.825904664910756,51.20969066338883],[3.825798952734351,51.20971712208875],[3.825795242720991,51.20971805218645],[3.825787214082849,51.20971718917196],[3.825757253330084,51.20971395483225],[3.825746757998115,51.20971281594705],[3.825738451832146,51.209706231445864],[3.825691624844807,51.20966912028567],[3.825660908656498,51.20964477581659],[3.82564300375136,51.20962753486544],[3.82555503091399,51.209542843282],[3.825406205621463,51.209369760714594],[3.825311086851515,51.20924612635133],[3.82511644078682,51.208930832352536],[3.825082974976063,51.20894269919184],[3.824987318888706,51.208998771087],[3.8248870418299,51.209056039426706],[3.824745282486304,51.20913360735404],[3.824656013101936,51.20917695381519],[3.824609792211975,51.209199392339826],[3.824424723668431,51.20925003647105],[3.824194800322118,51.209249831076754],[3.824169524994983,51.20924981487718],[3.824126029928949,51.20924979642139],[3.8236714948746,51.2092094491133],[3.823646152483046,51.209207202331726],[3.823615379566694,51.20920933264242],[3.823533246198361,51.20921503343648],[3.823280812218931,51.20923069677661],[3.823048894766516,51.20924070210929],[3.822857223874512,51.209245674676076],[3.822508832410562,51.20925060529052],[3.821154390505819,51.20920593521795],[3.821028939484022,51.2092164717535],[3.820992702315892,51.20921808723219],[3.82093934950788,51.20922047899147],[3.820792120344539,51.2092400716368],[3.820780552656606,51.209243098289775],[3.820645826308021,51.20927837629592],[3.82063683404436,51.209282264739215],[3.820515747448825,51.20933471787015],[3.820369920541447,51.20939787737159],[3.819449913774923,51.209796361156684],[3.819421200852186,51.209804784308794],[3.81920297595979,51.209868817926605],[3.818655313201737,51.21005885415844],[3.818392646332684,51.210139161200196],[3.81767016227901,51.21036007019417],[3.816478244375836,51.21072448143605],[3.81563733505554,51.21098157257136],[3.814928161512538,51.21122676541536],[3.810573955452863,51.21276733106092],[3.810521589815774,51.212770846255516],[3.810484100331031,51.21277465309401],[3.806414464740559,51.21262040329411],[3.806283821640928,51.21262339155089],[3.806191122087857,51.212652589735406],[3.806143744704237,51.21266751645278],[3.806143154487835,51.21267052014824],[3.80610962298393,51.212843494375036],[3.806102659739129,51.21287939649846],[3.806054499565369,51.21316777694912],[3.805998296975837,51.213348974513615],[3.80600951344488,51.21336076041356],[3.806027167153987,51.213379304607486],[3.805930561002764,51.21336358828265],[3.805587721677119,51.21330780609593],[3.804981157196864,51.21320911961014],[3.804977983150467,51.21320859992909],[3.804962723610252,51.21320738533759],[3.804940126976438,51.2132055854105],[3.80470212623751,51.21318665790955],[3.804619405015123,51.21318007476459],[3.804605312429221,51.21317864226641],[3.804522268519263,51.21317021166418],[3.804399802764658,51.213214915883746],[3.804357734050275,51.213230273771146],[3.804047087932684,51.2132023095492],[3.804989805979837,51.21012062061004],[3.804208405871348,51.21021034935079],[3.801057023662702,51.21057218667256],[3.800086509957255,51.21073164270632],[3.800001111177783,51.21074591296096],[3.79967482110642,51.21080037044728],[3.799536303028276,51.21082341760618],[3.79929154903959,51.21086436047756],[3.79908059814258,51.21109307608438],[3.798949993534728,51.211233930758354],[3.798762821590911,51.21143761824534],[3.798707097184761,51.211498035327864],[3.798694530738204,51.211511654626015],[3.798659388563556,51.21154976048479],[3.798624603693741,51.2115874666557],[3.798594220653271,51.21162040521613],[3.798395013279831,51.21183633418717],[3.79837786743323,51.21185488044346],[3.798360850346068,51.21187301490652],[3.798268426913842,51.21197345816294],[3.798164152300093,51.212086685288234],[3.798162635417589,51.21208832774661],[3.798145831364941,51.2120858504909],[3.798090729453599,51.21214106146674],[3.798060286975406,51.21217156272894],[3.797924890715177,51.21230800852199],[3.797857305655359,51.212376057598384],[3.79773382105258,51.212500412344674],[3.797695765867291,51.212538684872335],[3.797652925784086,51.21257955307114],[3.797601538725768,51.21262872823288],[3.797563063835809,51.212665475630736],[3.797503774437569,51.21272211246871],[3.797461845357078,51.21276187826892],[3.797345016601653,51.21283125846334],[3.797232535723557,51.212897839115314],[3.797074619387419,51.212958323138146],[3.797070644444999,51.212959851048666],[3.796961613000537,51.2129975210853],[3.796855937055468,51.213034185067876],[3.796786298647221,51.21305818028033],[3.796640717848904,51.21310138243867],[3.796493504501425,51.21314501159037],[3.79630210404114,51.21319483248736],[3.796246830774299,51.21320908076654],[3.796068814001581,51.21325557825267],[3.795880044883588,51.21330461636669],[3.795625543483599,51.21336857709091],[3.795597122076543,51.21337582967922],[3.795423582760665,51.213419070092534],[3.795409618054513,51.213422618819315],[3.795234660694448,51.213466289049066],[3.794947375884467,51.21353816028415],[3.794882235215982,51.21355459225414],[3.794697282703135,51.21360082185113],[3.794575659047818,51.213630441736896],[3.794493946248767,51.21365047629921],[3.794318100478215,51.21369371045271],[3.794268804933843,51.21370478524219],[3.794110457164053,51.21373999681764],[3.79390889446613,51.213785116509605],[3.7939085654424,51.21378717076493],[3.793901045776525,51.21382974436911],[3.793800246105174,51.21384087723447],[3.793692635832167,51.213847394568226],[3.793655129110677,51.21384956853052],[3.793637388934827,51.213850539037104],[3.793617695057407,51.21385253461795],[3.793454411663901,51.21386910381671],[3.793252392849513,51.2138898345973],[3.792987595052054,51.21389690203677],[3.792685998114723,51.21390513633181],[3.792645161911344,51.21390632032697],[3.792607824167743,51.213907336528834],[3.792591713476381,51.21390796062729],[3.792580362469514,51.21390837131365],[3.792573096520604,51.2139086222674],[3.792562747644078,51.213909028717644],[3.792541906818259,51.21390983965285],[3.792105677053081,51.21392615081868],[3.792063682174612,51.2139277232727],[3.792056530052847,51.21392799373649],[3.791831348763161,51.21393642024077],[3.791648348610136,51.21394326758665],[3.791542717353248,51.213947193935944],[3.791334517786814,51.213955052432716],[3.791260515476607,51.21397228673729],[3.791244916132452,51.21397590243027],[3.791220049290299,51.21398175532695],[3.791216438627018,51.213983090255525],[3.791205057565786,51.21398765388798],[3.791163114958882,51.21400499562302],[3.791145395222832,51.21401236708468],[3.791068372925105,51.21406536794907],[3.791052915874619,51.21407599796077],[3.79104293100264,51.2140852736547],[3.790978047706664,51.21414894173427],[3.79097429776506,51.21415304373839],[3.790967654360145,51.21416172699895],[3.790958712381344,51.21417393883497],[3.790922734430799,51.21422141677128],[3.79089713221347,51.214255380987645],[3.790895104696289,51.21425811315238],[3.790893167714772,51.21426071170663],[3.790886693207299,51.214272355072424],[3.790879148680079,51.21428595260863],[3.790841857617552,51.214354287838326],[3.790758702744113,51.214506942069185],[3.790736771572653,51.214552221441096],[3.790686523001947,51.214659693024956],[3.79068508009923,51.21466290070749],[3.790676208609166,51.21468253943339],[3.790643583903876,51.21475579341993],[3.79061458939006,51.21482180616498],[3.79060689679222,51.21483924048594],[3.790605933389527,51.21484142087472],[3.79057264715719,51.21491640087533],[3.790553011235188,51.21496070483087],[3.79054364400676,51.214976488914296],[3.790529859989454,51.2150003125467],[3.79050116064807,51.21504961645461],[3.790500125157181,51.2150514002817],[3.790494190083809,51.21506152269459],[3.790483775372444,51.21507367830839],[3.790461909984433,51.21509896423157],[3.790379535396259,51.21519460380502],[3.790371482296678,51.215203887997944],[3.790333375522445,51.21524052125849],[3.790313444279904,51.215259999053046],[3.790211279189675,51.21535790191774],[3.790205711117491,51.21536323755749],[3.790172928155007,51.215390854762234],[3.790167206220354,51.21539567584255],[3.790034682745843,51.215505810789196],[3.790010182673098,51.21552699684403],[3.789946600094777,51.215581988680654],[3.789941860518145,51.21558613998833],[3.789906319724351,51.21561730633864],[3.789811800981692,51.215700300212326],[3.789795986226366,51.215714188608814],[3.789768694960283,51.215738240112145],[3.789742530186788,51.21576118330752],[3.789722002823185,51.215779268315835],[3.789711654384174,51.21578827818817],[3.789705612165776,51.21579366123109],[3.789674527557769,51.21582099596969],[3.78965320522396,51.21584833898631],[3.789627863443237,51.215880526449226],[3.789595775592264,51.21593008026083],[3.789574924241835,51.21597184110137],[3.789569174910964,51.215984429349966],[3.789566817908905,51.21598962928279],[3.789543024931603,51.21607555473555],[3.789541907979654,51.216079674899284],[3.789539884497798,51.216087216879174],[3.789538991119181,51.21609436982836],[3.789537517380077,51.216105443539725],[3.789532578788455,51.21613913404666],[3.789529880141612,51.21615989140052],[3.789529454600072,51.216165531427336],[3.789529343269548,51.21617365708022],[3.789528986456094,51.216208138762376],[3.789526242178979,51.216401121641475],[3.789529345581097,51.2164554384081],[3.789536951844735,51.216587178125515],[3.789546722130401,51.216755825570935],[3.789552177640249,51.216850280148314],[3.789554691697564,51.21688659034101],[3.78957641978725,51.2170715395992],[3.789580094086356,51.21710372123137],[3.789599030950752,51.21727100225288],[3.789627665283495,51.21751289172563],[3.789652795878428,51.21774236246312],[3.789654104456671,51.21775493082791],[3.789657198417863,51.21778856989165],[3.789674918515033,51.217991201800196],[3.789675775390541,51.217999889161746],[3.78968022944604,51.21804544100857],[3.789704740905962,51.2183251586929],[3.789710193749647,51.21839052977296],[3.789711405494662,51.21840505667961],[3.789725981633764,51.218566865618975],[3.789727814569052,51.218586984003224],[3.789729199626567,51.218609685424134],[3.789731785871182,51.21873473931553],[3.789735452983785,51.21889780083551],[3.789736635877314,51.21894972676656],[3.789739652813765,51.219079677267686],[3.789739847737495,51.219091340294376],[3.78973949428563,51.2191014854251],[3.789734323586978,51.21921538372095],[3.789732517612804,51.21924996236141],[3.789728811056349,51.21931649319058],[3.78970933273692,51.21957561211543],[3.789691141438479,51.219815042103626],[3.789675680904867,51.22001389168278],[3.789673580058953,51.22002447130558],[3.789672696475012,51.22002928692646],[3.789658994785493,51.22009999573249],[3.789654496062402,51.22012228366717],[3.789652245133709,51.220133472564136],[3.789605512024356,51.22038056561385],[3.789598324465413,51.22041469271355],[3.789587629510387,51.220466895951965],[3.789571409276397,51.22054372845974],[3.789508693141381,51.22084438149689],[3.789477790440802,51.2209691010529],[3.789442472752044,51.221112873191984],[3.789412506427853,51.22124932888149],[3.789357762499355,51.22149739957857],[3.789350936089863,51.221527315203424],[3.789335709218417,51.221599036895306],[3.789258594639323,51.22195453022289],[3.789254813007888,51.221982932377],[3.78924856855347,51.22202982957907],[3.789208362390228,51.222303542416036],[3.789203200975241,51.22234277683158],[3.789269426003629,51.222374110008246],[3.789342003545667,51.222410493064],[3.789401391671854,51.222460953349156],[3.789429062468808,51.222522674052435],[3.789445790504066,51.22258740893999],[3.789444636469685,51.22260861006009],[3.78943951616354,51.222690216075144],[3.7894000602919,51.222787541676134],[3.789337005856429,51.222845552261646],[3.789263662874141,51.22287999283459],[3.789196412914232,51.222895295959994],[3.789183295805658,51.22289825327268],[3.789178649457491,51.22289929521261],[3.789115563385182,51.222910555968944],[3.789095221293879,51.22291460067846],[3.789038557757816,51.22290959641309],[3.789033849908271,51.22293622374188],[3.788941673970086,51.22331047029466],[3.78892279997063,51.22339067355038],[3.788919155835413,51.22340485501644],[3.788916200639864,51.22341570158129],[3.788914126834637,51.22342754918903],[3.788911327975474,51.22345567715579],[3.788902935497729,51.22352433717166],[3.788897121300226,51.22363033316027],[3.788883490713487,51.22375478655832],[3.788859525773717,51.223954723841636],[3.78883080224706,51.22419094326984],[3.78880281125839,51.22442503308413],[3.788799142162109,51.22445553150056],[3.788792978594471,51.22450665521043],[3.788761285435496,51.22476725130894],[3.788741852078116,51.22493081340294],[3.788731827814767,51.22501135406159],[3.788703462468885,51.22525040132587],[3.788675968876382,51.22547675735177],[3.788671477148717,51.225518113662964],[3.788661628198351,51.22559444030158],[3.788655511516413,51.22564338901057],[3.788640267942658,51.22574836531767],[3.788631610163483,51.22580325760361],[3.788592587778262,51.226064166451664],[3.788583791381581,51.22612549384513],[3.788509957937322,51.22612497317419],[3.788507607941012,51.226164030453866],[3.788504135115414,51.22622173604645],[3.788494977510832,51.22637388692518],[3.788464237705231,51.22637304172644],[3.788455354591913,51.2263728027133],[3.788465309157074,51.226586188225326],[3.788483189765274,51.22696972422729],[3.788501402415411,51.22736016929409],[3.788501592435511,51.227364163575906],[3.788503830267313,51.22741248994517],[3.788520652892826,51.227773005341966],[3.788523845787569,51.22784157289399],[3.788531890009821,51.22801408943502],[3.788541055743551,51.22821069727124],[3.788546759054869,51.22833291716095],[3.788551075992895,51.22842550412015],[3.788554441341179,51.22849775105079],[3.78856596261554,51.22874465572822],[3.788566942959237,51.22876581426363],[3.788571952605801,51.22887302888293],[3.788596067483073,51.229390299524034],[3.788601125516567,51.22949859363373],[3.788604721262422,51.22957573442023],[3.788615287601783,51.22980240689121],[3.788623251359496,51.22997314223593],[3.788625150604612,51.2300139391073],[3.788642990947557,51.23039623381806],[3.788643758117606,51.23041283136652],[3.788648656292524,51.23051791375404],[3.788665176690331,51.230871960938515],[3.78866663249089,51.23090330296425],[3.788679455163359,51.23117245836893],[3.788692190269313,51.23142893632019],[3.788699672937613,51.23157940102238],[3.788711579182725,51.23181900187402],[3.7887137240866,51.23186220251273],[3.788713991246845,51.23186768124412],[3.78872396511359,51.232068255847885],[3.788729907364283,51.23218775494756],[3.788731729968735,51.23222459505205],[3.788748948184981,51.23257098311074],[3.78875224990222,51.23263726861534],[3.78877141393242,51.233023132601915],[3.788776575885832,51.233126825109345],[3.788784297385077,51.233282363574574],[3.788787204125173,51.23334067829066],[3.788789635243854,51.233389636615186],[3.788792233548484,51.233442013530286],[3.78880816453719,51.23376250994522],[3.788808439763119,51.23376816859161],[3.788812240153855,51.23384438617435],[3.788813971551309,51.23387932807959],[3.788814894825284,51.233898022496696],[3.788819609839936,51.233992772552455],[3.788821678124799,51.234034479751145],[3.788826015116095,51.234121591893185],[3.788826679574046,51.234134978508806],[3.788845648481034,51.23451661435941],[3.78885083079808,51.23462096342394],[3.788863791540003,51.23488169680121],[3.78887253416464,51.235057657135094],[3.788879980061797,51.235207563899465],[3.788889559182491,51.235400194647134],[3.788905550842144,51.23572186058454],[3.78891116445491,51.23583479226009],[3.788930529727305,51.236224398868984],[3.788934061918882,51.23629558720703],[3.788937286679667,51.23636039723722],[3.788956787363469,51.2367527027659],[3.788959228731666,51.23680178708323],[3.788979216527388,51.23720395260042],[3.7889821880854,51.23726370663036],[3.788996157167504,51.237544843687886],[3.788996398679255,51.23754982760135],[3.78899697533512,51.23756121717327],[3.788997883677321,51.237577879585665],[3.789005666905079,51.23772183042904],[3.789009256617559,51.23778767934611],[3.789011540242108,51.237829380503],[3.789015006028069,51.23789303409732],[3.78902164406585,51.23801438571065],[3.789029157895093,51.23815210260922],[3.78903467287576,51.23825309386838],[3.789080524284767,51.23909229779003],[3.789080958314111,51.23910038598192],[3.789085522355139,51.23918388713589],[3.789090705425881,51.239278796422624],[3.78909677089961,51.23938988228927],[3.789097005108979,51.239394254765266],[3.789097217368983,51.2393980245934],[3.789097710344373,51.23940688675596],[3.78909851957324,51.23942187561903],[3.789099454631938,51.2394390058888],[3.789102464024895,51.23949398661069],[3.789102568431748,51.23949592094735],[3.789102880058834,51.23949930556051],[3.78911019703406,51.239635698173025],[3.78911513856329,51.23972603709454],[3.789137795187199,51.2401408614995],[3.789144056410804,51.24025537533075],[3.789150251298582,51.24036891730342],[3.789158188481479,51.2405142277585],[3.789162772632653,51.24059798090661],[3.789177022054871,51.240858812793235],[3.789186067066981,51.24102451934215],[3.789200188879426,51.241281213955965],[3.78925386551507,51.24224364655063],[3.789259318958042,51.24234149933878],[3.789283021791566,51.242766640850924],[3.789287012318548,51.24283826698417],[3.789291493230563,51.24292211759157],[3.789296697893485,51.24301191170098],[3.789333358054448,51.24366353354097],[3.78933431864615,51.243686507812235],[3.789336868917023,51.24373207841706],[3.78933912442561,51.243772547505834],[3.789427623365438,51.2453573761196],[3.78943505893735,51.245490416941095],[3.789438953649389,51.24556233842081],[3.789439180493439,51.24556651300826],[3.789445101013897,51.245674405295006],[3.789446423381432,51.24569727665001],[3.789451584907476,51.24578627001567],[3.7895082720223,51.24588177887476],[3.79313071466352,51.251983688807165],[3.793970410143657,51.25339789369937],[3.7939891097786,51.25343073940229],[3.794417839287344,51.25418395941475],[3.794443859710185,51.254229599481015],[3.794447706204428,51.25423640381032],[3.794463605413439,51.25426451818596],[3.794550164826616,51.25441786295833],[3.79547337939553,51.2560533251922],[3.795354905917117,51.2560818212899],[3.79428931796606,51.256338092235794],[3.793420937627434,51.25654691708192],[3.79193083217699,51.25690525041457],[3.79071606720099,51.25719734597677],[3.785433831056713,51.25846730911738],[3.785432819125205,51.258496243769],[3.785430053772619,51.25857285651109],[3.785427191973365,51.25865304604203],[3.784223630022396,51.25903923986824],[3.784004905352156,51.259161361014534],[3.783814057376742,51.259268070119965],[3.781391649957474,51.260621556275765],[3.778624222872833,51.262167640263854],[3.778299001146547,51.2623493312147],[3.777997279309145,51.26245795887271],[3.777564037464014,51.26261399678733],[3.776065867128728,51.26315357657142],[3.774671420095563,51.26365577312161],[3.774269955145233,51.26380035428937],[3.774128169764496,51.263851413068174],[3.773809874473042,51.26396580574977],[3.77378369208379,51.263975215069266],[3.773732415857127,51.26381143854274],[3.773563650824824,51.263272325153004],[3.773558035041754,51.26325439259555],[3.773550000573395,51.26323068171089],[3.773511836187308,51.26311817860667],[3.773509526168855,51.26311134992507],[3.773460524322894,51.262966852960105],[3.773149539220559,51.2620498740447],[3.773113296508004,51.26196827901119],[3.773072388821725,51.26190927471014],[3.773020649900608,51.26186486414572],[3.772957852092993,51.261825244754775],[3.769498053934562,51.25990361339029],[3.769408687837412,51.25986587013716],[3.769342199936274,51.2598497519355],[3.76926368143963,51.25986187564084],[3.768477986433342,51.260090716296055],[3.768253951568946,51.260153767161874],[3.766422341083536,51.26066925320804],[3.764594192435832,51.261183716211505],[3.764438293804535,51.26122779667796],[3.764395045757874,51.261240022533336],[3.762513801579319,51.261780818320496],[3.762333169390113,51.26198111641692],[3.762229479997022,51.262095903551355],[3.762073282068543,51.262268996319435],[3.761649831889135,51.26273825293728],[3.761579117015217,51.2628173503155],[3.761460088162791,51.26295038850424],[3.761454671899257,51.26295643520132],[3.761154613526216,51.26329176890773],[3.760701256702798,51.26379842638128],[3.760523489820617,51.26399708068237],[3.760483140012634,51.26404217817636],[3.759662062078977,51.264968921277244],[3.759640695024889,51.26499757109898],[3.759631563673526,51.26502063830438],[3.759639647682206,51.26505122848026],[3.759662749498426,51.26507456680439],[3.759839818721975,51.26522520372472],[3.75987915631357,51.26527960579884],[3.759906099960395,51.26533194654226],[3.759919647466627,51.26537816631593],[3.759922032538704,51.26542396025041],[3.759907311930772,51.265475268711995],[3.759875718699896,51.265525532043114],[3.759830270716916,51.2655704771047],[3.759770837499913,51.2656097424441],[3.759643776563682,51.265672874905846],[3.75951938608823,51.26573343740876],[3.75942760372893,51.26577566630548],[3.75932549939916,51.26581397478406],[3.75921822947253,51.2658484349705],[3.75879322486931,51.26596835119659],[3.758733986908423,51.26598999778038],[3.758677547321201,51.266029664088705],[3.758631101420575,51.26607441492296],[3.75801894983284,51.26676187290803],[3.757357263948492,51.26752388269625],[3.755949192513724,51.26909030700599],[3.75591400421784,51.269128651725985],[3.755768400910934,51.269289424443016],[3.755714428056625,51.269344137757024],[3.755648795760623,51.26938016753718],[3.755581927845135,51.26940019520602],[3.755551883550427,51.26940919570707],[3.753504361270255,51.26996690103261],[3.753492739092674,51.269955230257544],[3.752906312418091,51.2701243372483],[3.752554674839314,51.270225725795626],[3.752433469947395,51.27026067634498],[3.752412617929726,51.270266676575844],[3.752410254471602,51.27026061986526],[3.752382854961521,51.27019712295872],[3.752351766435944,51.270132585276826],[3.752330804197088,51.27008949689117],[3.752317821796417,51.270059736374684],[3.752277769299261,51.269973316181066],[3.752265909792603,51.26992415238253],[3.752237003523985,51.26985470066428],[3.752136653773174,51.26968292424465],[3.752128567581776,51.26965251328675],[3.752127683606499,51.26964917445198],[3.752098079066366,51.2695872467561],[3.752093545085168,51.26957776120019],[3.75208350712599,51.2695590641457],[3.752064918223946,51.26952457681924],[3.75203946620843,51.26947960923547],[3.752035671133089,51.26947431455276],[3.752014689897532,51.26944501696202],[3.752008615306757,51.26943653464506],[3.752000793531599,51.26942560938073],[3.751982209223125,51.269399824718235],[3.751978195883265,51.26939422129553],[3.751972543215841,51.26938636523742],[3.751968767858789,51.26937570361825],[3.751916829994602,51.26931312035265],[3.751896204180238,51.2692935372624],[3.751873374639616,51.26927185542426],[3.751857919147849,51.2692571817813],[3.7517762497394,51.2692084751358],[3.751739382936737,51.269173344249715],[3.751725797741764,51.269160476958604],[3.751583564359856,51.26918918841821],[3.751553437221173,51.26919527386963],[3.751278336110237,51.26921918616467],[3.750975661216618,51.26924549703581],[3.750600870667582,51.26930225881235],[3.749445733230059,51.26950312045131],[3.748152450880495,51.26972737738373],[3.74791499265312,51.26976853403264],[3.747648287772674,51.269814762161595],[3.747144323296203,51.269897346745864],[3.747092107286493,51.269905906683306],[3.746223476286732,51.27003750390147],[3.742938006951086,51.27050212957014],[3.741497707773383,51.2707039172403],[3.741097406698211,51.27076397382759],[3.740719044010353,51.27082371017702],[3.740411345259659,51.27087724422803],[3.740238782730389,51.27090726577801],[3.739202938100967,51.27109631948441],[3.738681838506894,51.27119142721566],[3.738581753356489,51.27120626363609],[3.738430256562928,51.27122872346412],[3.736094674524386,51.27157495052449],[3.736042338561304,51.27158274865032],[3.734669622915585,51.27178727246376],[3.734594215631953,51.27179852719436],[3.734534894624288,51.27180764590807],[3.733230062900749,51.272008055503484],[3.73229888789537,51.27215870889066],[3.73193908553699,51.27221184823143],[3.730835975897822,51.272384497624465],[3.730679445951926,51.27241274647744],[3.729724286367324,51.27258011960372],[3.72941941175191,51.272636101433655],[3.729179396998763,51.27268599426193],[3.729094567830242,51.272702064875304],[3.727249322351117,51.27305166795326],[3.727161461040275,51.273068314246736],[3.727116592208949,51.27307681727592],[3.727084871169784,51.27308281976353],[3.726976471050427,51.27310104286684],[3.72696645825097,51.27310206874248],[3.726326494433539,51.27316782511268],[3.725925833248843,51.27318962474903],[3.725464768196685,51.27321472289101],[3.724811774187663,51.27325041891448],[3.723797012229149,51.27330680527169],[3.7234818759097,51.273323382049284],[3.723300447364269,51.27333333825676],[3.723129042364225,51.2733427632596],[3.723088430158002,51.2733453290535],[3.722977885623827,51.2733223329532],[3.722605454096581,51.273244875813184],[3.722343687725491,51.27319065874946],[3.721358653960836,51.27298735806824],[3.720292954211116,51.27276741194263],[3.719606506719048,51.272625723025314],[3.719328423633178,51.27256832540161],[3.719310072546196,51.27256453812213],[3.71924219179758,51.27254333672845],[3.71920533847676,51.27252024260142],[3.719190681837373,51.27250120666288],[3.719181955341181,51.27248934913453],[3.71916311042511,51.272458206059824],[3.719098076214902,51.27229123064545],[3.719031445109001,51.272120105716205],[3.719065792771715,51.272006627292285],[3.719082118344784,51.27195271237612],[3.718965282945337,51.271663156754656],[3.718913540061918,51.27153541694495],[3.718907390627581,51.27153622780869],[3.718711402047268,51.27156203381689],[3.718031352263226,51.271651569479985],[3.71734289832551,51.271742356105705],[3.717339643537049,51.2717427858831],[3.716645867580883,51.27180534317936],[3.716642948483504,51.27180560694013],[3.716489696590159,51.271830233742975],[3.716280247341529,51.271863888779244],[3.716123880878262,51.27188901878854],[3.715714928523981,51.27195473492272],[3.715319059943459,51.272006729526986],[3.715230548020507,51.27201835883704],[3.715069020380492,51.27203957438394],[3.714890009223105,51.27206308269743],[3.714886925960662,51.27206352386236],[3.714090517534689,51.27217676198258],[3.714084927590764,51.27217755366725],[3.71401919237766,51.2721761588749],[3.713986882368328,51.27217785193289],[3.713910034263191,51.272176207364694],[3.713379488723797,51.27216481827376],[3.712742794154331,51.27215115298707],[3.712705374775221,51.27210797310427],[3.712701125186408,51.27210307512225],[3.712574571785107,51.27211633060569],[3.712210651035184,51.272154452819436],[3.712184998573132,51.27216887270126],[3.712177052449913,51.272173343401384],[3.712157633580794,51.27218426585557],[3.712108216277559,51.27221204493063],[3.710974987673233,51.272383084177065],[3.710823047435671,51.27241206481459],[3.710488148537195,51.272475952691224],[3.709725159739758,51.27258722428261],[3.70952926692686,51.27263321769077],[3.707177281713017,51.27327595166924],[3.706686633464395,51.27341002432226],[3.70667441425364,51.273413354090465],[3.706388225715453,51.273484101222415],[3.705835589580925,51.27362071818106],[3.705138315543655,51.273756554301656],[3.7042757776251,51.27391966437277],[3.703686066592908,51.27403789804424],[3.702396816603954,51.27429065716789],[3.701985974954272,51.27438162404078],[3.701900018829735,51.27439602237494],[3.701819484227414,51.27441499437478],[3.701527980918112,51.27446075828662],[3.701487567117261,51.27446448818793],[3.701388609396837,51.27448553048889],[3.700956880753151,51.274571426231454],[3.700221021402313,51.27471890092342],[3.699249100253629,51.274916529570405],[3.698889783452521,51.274993668614556],[3.698791182844057,51.27501273602172],[3.698594200876133,51.27504880597649],[3.698100996892427,51.27514953227058],[3.697288377447109,51.275325722434395],[3.696367658046656,51.275525689148566],[3.696277903608912,51.275541916158666],[3.695733073712095,51.27565078277865],[3.69520319717957,51.275762201822175],[3.694765198013393,51.27585770227452],[3.694261188097879,51.27596759632531],[3.694203247898014,51.27598085927592],[3.694032202961306,51.27602000507487],[3.693993410709424,51.276027504990736],[3.69393377140392,51.276039034905295],[3.693871663364917,51.27605104131637],[3.69375548864252,51.27607349885481],[3.693718197847567,51.27608070586702],[3.693588689888658,51.276117569620645],[3.693486614984185,51.276160676320124],[3.693401037784346,51.27624214244411],[3.693312896096058,51.27638515551781],[3.693111182203155,51.27693998426744],[3.692826945170936,51.27742771133984],[3.692718294560745,51.277605757692825],[3.691636977913164,51.27879598085972],[3.690879393850891,51.27960819205349],[3.690590668749257,51.279919276766],[3.690054134190029,51.28049735850518],[3.689991453321668,51.280579515799],[3.689932447467078,51.28060895289602],[3.689544488957498,51.28067207037379],[3.688731065933891,51.280727269140485],[3.686988564887139,51.28082894738168],[3.686715835471714,51.28084477715792],[3.684880164760403,51.28095131971159],[3.683636540813835,51.28101575123345],[3.683253693412722,51.281035579801404],[3.683195535578209,51.28104094956743],[3.682975634193037,51.28106126621173],[3.68257184758358,51.28109095406194],[3.681974482882604,51.28107195278387],[3.681504164971451,51.28102893627],[3.680865351094618,51.28097050999603],[3.680812119151975,51.280965638770546],[3.679351203785085,51.28075200022113],[3.679316971558911,51.28074699359514],[3.679278718783055,51.28074139751293],[3.679261136175397,51.280697805521676],[3.678965364665523,51.28066032524828],[3.67880622205714,51.28064015191152],[3.678448472399176,51.2805948107717],[3.678430024233615,51.2805924720697],[3.678222015126629,51.280566105159735],[3.677910836215484,51.28052666974465],[3.67790868645385,51.28053164584427],[3.677762691655644,51.28087183938024],[3.677666077398223,51.28109697027267],[3.677599013846544,51.28125323689305],[3.67759098928284,51.28127195398147],[3.67758632739997,51.281282008731694],[3.677118982443611,51.28229091823385],[3.67675676021045,51.28306461680677],[3.676664191816494,51.28310375812932],[3.67659504551699,51.28313300356158],[3.676017110092993,51.28337740793162],[3.675981043369563,51.28339266480434],[3.675885254018254,51.28343317864697],[3.675817276677273,51.28345912334202],[3.674451944508093,51.28398046821188],[3.673261249335185,51.28445300710602],[3.671988256224365,51.28493268222822],[3.670383907066826,51.285546268466284],[3.669175656844508,51.2859991778961],[3.667816095636309,51.28651394157802],[3.666843071753139,51.2868790491481],[3.664283465872957,51.28787607600745],[3.662704203134944,51.2884998193019],[3.662146024491248,51.288720264552616],[3.66201828904031,51.2887617051837],[3.661833712229143,51.28880482033124],[3.661701775560076,51.288843591098136],[3.660426001386393,51.28932202204046],[3.659609151427545,51.2896337363218],[3.658225885416806,51.29015532049442],[3.658222158846036,51.2901514891304],[3.658100317768104,51.29018851786243],[3.657960145267128,51.2901946165559],[3.657298688900934,51.2902098070535],[3.657143686071859,51.29021336478165],[3.657111066466046,51.29021412056218],[3.656922353539091,51.290218453518015],[3.65597112483441,51.29024029639225],[3.655705338055966,51.29025423346637],[3.655585845849595,51.29026702022328],[3.655368128353359,51.29029515745866],[3.655182256971786,51.2903153171759],[3.655091324654583,51.290316031681314],[3.654997449699308,51.290303576207215],[3.654506951814631,51.290204661642555],[3.654402188888938,51.2901844016685],[3.6543330788832,51.29017680961854],[3.654131196317712,51.29017299436676],[3.654037759352661,51.2901679168359],[3.652487250851897,51.29015933589089],[3.651426580730685,51.290153455855126],[3.649348194733598,51.29014329714281],[3.646717998452143,51.290131233549594],[3.644406143681613,51.29011084181125],[3.644374669091097,51.29010524588937],[3.644365882878853,51.29008859875024],[3.644273050022639,51.28991260385158],[3.643914521245235,51.28923292775457],[3.643867931357952,51.28915742882054],[3.643831922256391,51.28910528388256],[3.643719882533883,51.28900524928959],[3.643257935824768,51.288692380848],[3.643172562426146,51.28866017413234],[3.643077511812429,51.28863735226661],[3.642064045643629,51.28840971357852],[3.641980259370155,51.28837991225941],[3.641904903980498,51.28835311427956],[3.641548433548198,51.28827767777615],[3.641377231952599,51.28824144916354],[3.641107186166496,51.2881777906854],[3.641096187675736,51.28817519822801],[3.64091344806182,51.288132124847934],[3.640909582663729,51.28813122173777],[3.640919663511314,51.288118786281714],[3.640820369139965,51.28808737586026],[3.640816558395444,51.28808616788954],[3.640713622336051,51.28810209174001],[3.640486478591259,51.288138294974644],[3.6404830308543,51.28813884559211],[3.640463016091152,51.288168123988875],[3.640445370480045,51.288193931640194],[3.640381525536314,51.28817625098967],[3.640083983894619,51.28829729216482],[3.640096444707723,51.28832241892728],[3.640097284267793,51.28832446338804],[3.640087865588183,51.28832781031234],[3.639403098301009,51.28857089910677],[3.638265021857888,51.28897173501789],[3.637006787888327,51.28941487854415],[3.636585733731609,51.289564414423396],[3.633145581346314,51.29078606180822],[3.632611099747168,51.29097516749817],[3.632501884703982,51.29101137105386],[3.632488398052699,51.29101495272887],[3.632397149230182,51.29103919095084],[3.632277506884938,51.29104817557347],[3.63207273123606,51.29104307371717],[3.631510547846692,51.29102905607771],[3.63139945489669,51.29103196530206],[3.631350645583368,51.29103646142242],[3.631334846004721,51.291037913275254],[3.631328733152881,51.29104102168064],[3.631270792751141,51.29107048157894],[3.631224045884212,51.291126596453125],[3.631009855901915,51.291435875570585],[3.630963503763938,51.291492895356456],[3.630920293193776,51.2915353079601],[3.630876004745578,51.291568444030915],[3.630860209085311,51.29157315045435],[3.630585936054687,51.2916549336321],[3.630434040310118,51.291700227829075],[3.630206631721371,51.2917672807676],[3.629016854327061,51.29218649607471],[3.628855535335996,51.29224333359165],[3.628581041433306,51.29233998812759],[3.628483418598039,51.29237436723949],[3.627814658966368,51.29260924279148],[3.627538033662186,51.29270639313337],[3.627466147043387,51.292728870447036],[3.627445871060714,51.2927352168755],[3.627321530652091,51.29277411787239],[3.627002573604449,51.29287388142771],[3.626960091165916,51.292887174263285],[3.626752004395617,51.292959349700126],[3.626582081202043,51.293018292619635],[3.6257508306041,51.29332335092508],[3.625710119495036,51.29333828841868],[3.625474415244533,51.293307569379756],[3.623698605416101,51.29306249291399],[3.62363815687454,51.29305415077471],[3.621470240725426,51.29275492653638],[3.62134389237556,51.292744288742796],[3.621227945153814,51.29276509576448],[3.621148986411128,51.29280019252558],[3.621139532489777,51.292804391507616],[3.620733577709193,51.29310586057535],[3.620321240566322,51.293412050326346],[3.620282398181565,51.293441300304096],[3.620212348689124,51.29349405429889],[3.62008286805967,51.293591568952536],[3.619816822680718,51.29379139012258],[3.619737444400212,51.293851005824585],[3.619302461451514,51.29417771528159],[3.619209923396392,51.294247209158705],[3.619206158023192,51.29425224960727],[3.619163949882212,51.29430881535822],[3.619143764136515,51.29437845526236],[3.618812492387527,51.29557734818261],[3.618769424010015,51.29570583419774],[3.618757866160891,51.295740326182695],[3.618720457420144,51.295799185380424],[3.61866007564609,51.29585729991188],[3.618652687798612,51.295864416063615],[3.618567938516343,51.295908890218044],[3.618005819994715,51.29611642621909],[3.617865867777808,51.296168098312116],[3.617477986354936,51.29631130069865],[3.617354777924184,51.296356789534094],[3.617033260434849,51.29647183419575],[3.616836048931381,51.29654451724717],[3.616779879536055,51.29656521325273],[3.616363079782002,51.2967188147354],[3.616165924530018,51.29679147055704],[3.615988568613877,51.296856830324764],[3.615841506350348,51.29690682747308],[3.615833715021603,51.296909163321644],[3.615570444216517,51.29698821115952],[3.615437481075026,51.29702812821339],[3.615419141121273,51.29703363895927],[3.615406754988575,51.29703945610864],[3.61540462247341,51.29704045756123],[3.615329750893086,51.297075612709776],[3.615244479805936,51.29712601032916],[3.615177528137243,51.29716994386948],[3.61491649672946,51.29735769332409],[3.614866857107976,51.2973933942113],[3.614846086207964,51.297415005919476],[3.614828453174333,51.29743335687749],[3.614795428111414,51.29748513412919],[3.61472464317759,51.297680904670045],[3.614729630891557,51.29771651134362],[3.614731047548448,51.29772658437032],[3.614716662251142,51.29771884919295],[3.614517240308394,51.297611485611725],[3.614482515765432,51.297619398890696],[3.614426146339954,51.29763224197264],[3.614208740997118,51.29768179503242],[3.613851683625041,51.297763177441574],[3.613308366028092,51.29785786729206],[3.613187516350285,51.29787892440831],[3.613114808940924,51.29790478792721],[3.613050154417005,51.29793562905689],[3.613041752975308,51.29793963665863],[3.613019923254067,51.29793897126135],[3.612938234230211,51.29793646737523],[3.612726341232937,51.29792997359242],[3.612691740509347,51.29794022577883],[3.612675520977861,51.29794503120005],[3.612669804990384,51.29794672418778],[3.612434881461604,51.2980163525498],[3.608072262927492,51.29930933238183],[3.594618914899447,51.30329504948583],[3.590996807002437,51.30436776001464],[3.590832577823517,51.304417110557566],[3.590863675575548,51.30444736737105],[3.590966349579729,51.30454726413614],[3.59122697384839,51.30480083796972],[3.591781126465676,51.305339976418715],[3.591759149641222,51.305348088626594],[3.591739896895332,51.30535476838658],[3.591696156848844,51.30536993518551],[3.591593364300441,51.3054055887342],[3.591387662636772,51.305476929728364],[3.590017082255754,51.305952257325046],[3.59001435200911,51.30594946404508],[3.590000301313812,51.30593507790873],[3.589952655189351,51.305886458276795],[3.589916277171058,51.305849304813535],[3.589840446135412,51.3057718576001],[3.589792498404333,51.30572289159839],[3.589449436057787,51.30537249812499],[3.589063245109944,51.30497805764289],[3.588778990874124,51.304687728743616],[3.58582957425779,51.30167497475508],[3.585602988321727,51.301513880253786],[3.58518612207168,51.30121750661268],[3.585084933921217,51.30114556140548],[3.581114791030885,51.2983226338432],[3.581112907957858,51.29832129199049],[3.583139591143274,51.29628424777148],[3.583201859074381,51.29622165813526],[3.583296007171965,51.296127025478384],[3.583387198530624,51.296035358787286],[3.583906988395354,51.296025701825236],[3.583911553065361,51.29602195153013],[3.583998880417098,51.29595005783935],[3.584069340362497,51.29589206301651],[3.584956152199291,51.29516209350098],[3.58497537464199,51.295146270956785],[3.585015702219522,51.29511306367007],[3.585062876282719,51.29507423534971],[3.585171134771315,51.29499437554966],[3.58635928250221,51.29411782060949],[3.586745362629959,51.29383298299225],[3.587231788529879,51.29347410291899],[3.587796033568854,51.29305781418829],[3.587927985414897,51.29296045386821],[3.586658545305071,51.29266822590939],[3.58651138865715,51.29263268387513],[3.586478028548867,51.292628850181025],[3.586357949261524,51.29261505266343],[3.58621490197622,51.29259861598424],[3.585963110014948,51.29256968044062],[3.585738354681263,51.29254385104115],[3.585370567270735,51.29250158371658],[3.584727408171251,51.292427674289335],[3.584366759948584,51.29238622459925],[3.583773403307088,51.292317064170255],[3.583434450150841,51.29227638828994],[3.583400963239615,51.29226741809123],[3.583385136620626,51.29225422628384],[3.583359296118573,51.29220770382978],[3.583111898782033,51.29174885311221],[3.583020597607811,51.29157951070748],[3.582885778274298,51.29132944992759],[3.582609837014106,51.29081764118882],[3.58259865631261,51.29078483181363],[3.582599096639147,51.29075912542378],[3.582607109854123,51.290743183411415],[3.582612945348906,51.29073155909851],[3.582618580552586,51.29072319528031],[3.58263641551682,51.29069744393689],[3.582703896021488,51.29059994390106],[3.583203051139825,51.28987886555129],[3.58387409129577,51.288907488320774],[3.583879583227497,51.28888455739964],[3.583862724591653,51.288868472650336],[3.583320948248679,51.28835224919599],[3.582923076984082,51.28797314976886],[3.582564595293856,51.2876315662948],[3.582357028804122,51.28743378097702],[3.58234202433089,51.287419423981675],[3.5821951978877,51.287278969640255],[3.582176463297195,51.28726103942762],[3.581812116155888,51.28691250267414],[3.581664071275985,51.286936368607094],[3.581586200978912,51.28695134357184],[3.58149823457829,51.28697146630696],[3.581420580660835,51.286999121320676],[3.581343040290314,51.28704206213241],[3.581285761601679,51.28708747507467],[3.581133136847638,51.287216459753694],[3.581074894007084,51.2872615879141],[3.580201355772069,51.287938418675026],[3.580160881921274,51.28797213446651],[3.580134544983041,51.28800004603229],[3.5801208061497,51.2880357053558],[3.580110049378753,51.28807572649169],[3.580087269690892,51.28830400477922],[3.580038197782508,51.28849006830059],[3.579889768335573,51.28869050227367],[3.579831408559102,51.28876682555412],[3.579756438030194,51.28886437846178],[3.579347611972786,51.288753017569114],[3.579147907353503,51.2887088278442],[3.579052557197763,51.288706330479876],[3.578853442596726,51.28872232379181],[3.578484258223723,51.28875803340909],[3.578260397516061,51.288773614133945],[3.578131942789467,51.28878411437908],[3.577995666087383,51.288800246895214],[3.577782524773397,51.288820308859364],[3.577768872811089,51.288821085569644],[3.577763728112355,51.28881847920781],[3.577687906313094,51.288780088011755],[3.577605684698157,51.28873457555619],[3.577286982221741,51.28857421611966],[3.576717906546452,51.28828786794147],[3.576159512957996,51.288007122480465],[3.575761161114032,51.28829257032675],[3.575750462653721,51.288300234656624],[3.575742415506075,51.288336179888596],[3.575729401668412,51.28839436260515],[3.575704523798333,51.288505585298935],[3.575683549205258,51.288599336978024],[3.575672591747137,51.28864830931007],[3.575594820933714,51.288675131542924],[3.574500483278039,51.289052502027666],[3.574271469916231,51.28913146886367],[3.573945552394134,51.28924385414024],[3.573667198479703,51.28933983454532],[3.573587869991311,51.289367188608416],[3.573436879041473,51.28948893349839],[3.57235402817237,51.290362010254256],[3.572063682965019,51.29059193155591],[3.571761580394566,51.290831162892395],[3.571717420871806,51.29086936761709],[3.571619479924824,51.290954096113325],[3.57153082371159,51.29102742537807],[3.571510892598308,51.29105633406845],[3.571512566793996,51.291083520968236],[3.571513073822347,51.29109170138734],[3.571532860946339,51.29113507534597],[3.571794330601206,51.29161680995721],[3.571924159677819,51.2918559816369],[3.57194922696934,51.29190218002424],[3.571965552057605,51.29193525055163],[3.571960245000648,51.29194143426443],[3.571941346681588,51.29196346330343],[3.571908411931683,51.29198039147711],[3.571140615459084,51.292238834123346],[3.57070635528148,51.29238500611718],[3.570263242473838,51.29253268360589],[3.569599039916045,51.292754046682845],[3.568441551730563,51.29314027417591],[3.566985604571214,51.29362458627417],[3.56663171242325,51.293743212116674],[3.566542523382916,51.29377193566791],[3.566482944583649,51.293791682174145],[3.566445980122938,51.2938160979577],[3.566424101796953,51.29383256823625],[3.566417886443064,51.2938410121357],[3.566400838488753,51.29386942566127],[3.566381251915246,51.29391838809983],[3.566362724788986,51.29400198118502],[3.566332361739557,51.294129668137174],[3.566305133162067,51.2942441698582],[3.566291597436249,51.29430106681446],[3.566236830265162,51.29453136004091],[3.5662177802197,51.29458448453924],[3.566210699216143,51.29460422514635],[3.566197174606511,51.29462408970213],[3.56619562092206,51.2946263759948],[3.566180190346603,51.29463215831206],[3.566086152242456,51.29466736885265],[3.565890814234172,51.294735401432845],[3.564519708057762,51.29521294647563],[3.564275936968569,51.29529900840593],[3.5639808069791,51.29540319966428],[3.563792464632753,51.29546969308192],[3.56372025448261,51.29549540791969],[3.563211608920692,51.29567656555433],[3.563002249472516,51.29575112563401],[3.562830493302783,51.2958122942753],[3.562757161713444,51.29583841351023],[3.562707549722426,51.295856246507256],[3.562665135777066,51.29585755957162],[3.562636189816624,51.295858454404986],[3.562626719598711,51.29585751476518],[3.56254922878152,51.29584984464196],[3.562522917695353,51.29584723842829],[3.562473893815885,51.29584061691646],[3.561473379025645,51.29570547647709],[3.560781059519225,51.29561196299529],[3.560052791984292,51.29551305303255],[3.559896771360463,51.29549110280208],[3.559827652357093,51.29548137755757],[3.559804650793147,51.29547813939535],[3.559790262277461,51.29547611534476],[3.559786606172458,51.29547358550233],[3.559759283025127,51.29545468064366],[3.559747219981001,51.29542423759115],[3.559236927433819,51.294135995749556],[3.55893478054052,51.29337180667181],[3.558604899665614,51.29253399674838],[3.558574480086161,51.292455569548395],[3.558100652988611,51.29126611809438],[3.558077812184916,51.29122053595636],[3.558056244847433,51.291193314830196],[3.558025115212059,51.29117214698122],[3.557964405621753,51.29114485006287],[3.557840418455768,51.29111862633596],[3.556752762083845,51.29089042312748],[3.556629849185913,51.2908517179323],[3.556541981474105,51.29082947739671],[3.556497292368523,51.29081393978479],[3.556472261840058,51.29078729322309],[3.556455408415459,51.29075481446079],[3.556295402857635,51.29044661382846],[3.556251138827678,51.290361342012055],[3.556228007643833,51.29033776412867],[3.556221725355896,51.290331362815195],[3.556214492434749,51.29032399353175],[3.556211155943076,51.29032029980855],[3.556095861949089,51.29019266109472],[3.555821967252051,51.28987448622314],[3.555781452066106,51.289840672993364],[3.555735977466303,51.289816132021585],[3.55569192034844,51.28979916552112],[3.555044356884415,51.289635321632225],[3.554932246737013,51.28961341744459],[3.554818655708936,51.289599851177016],[3.554709576915287,51.28959534654293],[3.553586965871139,51.289578743216396],[3.553583517002495,51.28958286955088],[3.553581393934676,51.289585398448885],[3.553504546350914,51.289585590173886],[3.553443300708718,51.289585739987174],[3.553265106306494,51.28960888818101],[3.553161804724119,51.28962230168928],[3.553055484328001,51.2896401988409],[3.552457476296536,51.28974084562165],[3.552369313490698,51.289758246222796],[3.552332591123584,51.2897679346232],[3.552303375726746,51.28977563754938],[3.552293961228867,51.28977870778322],[3.552250360670823,51.28979293590223],[3.552193945630036,51.289811349412346],[3.55129375857504,51.29013399767243],[3.551271830581763,51.2901426784127],[3.551209835701746,51.290167198022964],[3.551122198655554,51.290210768931004],[3.551104200316952,51.290221570508706],[3.551035512171955,51.290262806032686],[3.550228423024134,51.29082619364255],[3.549915318655922,51.291042602211846],[3.549860034824068,51.2910767032733],[3.549816209243187,51.2911004121422],[3.54981386378277,51.29110168775533],[3.549784027735181,51.2911055322421],[3.547863619585931,51.29113381615267],[3.54552433100488,51.29117009533992],[3.54462281864685,51.29118161102247],[3.543638068448535,51.291194174738536],[3.54342671070058,51.291197749292564],[3.543421876562427,51.29118747723169],[3.543395542641923,51.29113144344091],[3.543085544401747,51.2902595566497],[3.542811138919387,51.28946076111553],[3.542695812330724,51.28912504491933],[3.542309624282232,51.288006231669634],[3.541918980614553,51.287631238645034],[3.541897288682049,51.28761058464044],[3.541483348187593,51.287216510961606],[3.541402183875888,51.28713862266486],[3.541334058587276,51.28705383845858],[3.541047947108717,51.28663347885643],[3.540992019107868,51.28655131542998],[3.540805393743385,51.28627647496694],[3.540717499171434,51.28614408548295],[3.540663205598268,51.28606230744706],[3.540568676710331,51.2859248676693],[3.54046557489769,51.285776053352066],[3.540159506773797,51.285277919552684],[3.540147532758205,51.285258444387395],[3.540044416134351,51.28518465704794],[3.540037030853049,51.28517937015079],[3.540033111681405,51.28517594540827],[3.539970144389812,51.28512085767004],[3.539458197158782,51.28467623004241],[3.538586162905357,51.28391462114031],[3.538543206378129,51.28387815561007],[3.538500915862892,51.28384224008786],[3.538394781465621,51.28377941692208],[3.538291026431664,51.28372867904158],[3.538186427955055,51.28368817709833],[3.538107215883432,51.28366516085042],[3.538058470311216,51.283660924826435],[3.538041783744543,51.28365947288697],[3.53800335284859,51.28365613798851],[3.536885154029727,51.28360851385298],[3.5360419877758,51.283573741767086],[3.53545516446044,51.283549534372085],[3.534597353855366,51.283511785569814],[3.533762622755716,51.28347412831125],[3.533753541782008,51.28347498164414],[3.533697285294168,51.28348028021031],[3.533665544401835,51.28348876537027],[3.533653544180446,51.28349974971563],[3.533615071240767,51.28353498297512],[3.532821532881374,51.28446915520584],[3.531680426509721,51.285813854559144],[3.531118890252866,51.2864755372335],[3.530287306558719,51.287455388749606],[3.530038650010706,51.28775306036701],[3.529240299808577,51.28867850173809],[3.52920691920603,51.28871030852745],[3.529193614920866,51.28872297985995],[3.529129827658427,51.28874371904693],[3.529042922574901,51.28873702692158],[3.528065929416457,51.28863070645498],[3.525399806156792,51.28834335493579],[3.521645209693997,51.287942386667176],[3.518940312068917,51.287647881204045],[3.518029588806384,51.28754966952219],[3.517967506600419,51.28754297219008],[3.517820744570393,51.287527146546246],[3.517772608928075,51.28752195882431],[3.517760015171117,51.287519976341336],[3.517603477266811,51.287495317280445],[3.51753770236609,51.28748495509085],[3.515414868103342,51.2871505916195],[3.515425154524595,51.28712029630907],[3.515724306052107,51.2862289786493],[3.515957535563933,51.28553404679885],[3.515963866349026,51.28551526796299],[3.51606750354726,51.28520653676937],[3.517596243251463,51.280652078523374],[3.517645651224882,51.280504866197276],[3.51768135894468,51.28038946787432],[3.517696981222398,51.28033901988018],[3.517698765919297,51.280333231521446],[3.517704662873838,51.28031415792851],[3.51780875956246,51.2799777951263],[3.517856189584375,51.279824572079264],[3.518171356754794,51.27880617889166],[3.518174840699394,51.27879493344777],[3.518251583248837,51.278546932816646],[3.518256538426503,51.278530900936644],[3.518407754883176,51.27804229847381],[3.518473248011678,51.27783066454463],[3.518489333451206,51.277778659502914],[3.518493097819587,51.27776651048626],[3.518498597464343,51.27774872514966],[3.518509645953254,51.27771300242276],[3.518535686446067,51.2776288803698],[3.518583640711368,51.277473930268236],[3.518587604810857,51.27746110115758],[3.518591354433798,51.27744896089214],[3.518642066342771,51.277285091252956],[3.518651958510539,51.277253108089205],[3.51934082144614,51.27502690421586],[3.519383042438368,51.2748904277418],[3.519416338634184,51.27478332469774],[3.519483703149782,51.274566694479795],[3.519489528092739,51.274547943321295],[3.52016147585495,51.27238687163889],[3.520238138579451,51.27214028914656],[3.520278110838766,51.27201172415352],[3.520313857967475,51.27189678430022],[3.520354532185588,51.27188350125823],[3.520358596105635,51.27186503648242],[3.520404510428989,51.271656117353714],[3.520390392349594,51.27165436239075],[3.520411294593173,51.27158816605174],[3.520376212470101,51.27158382701546],[3.520390050585573,51.271539724542244],[3.520425272248099,51.271544155721415],[3.520479782903656,51.27137150841749],[3.520482152142122,51.271364021154014],[3.521366952983448,51.26856182795022],[3.521437252874537,51.26833917506871],[3.521856241522091,51.267012085839376],[3.521911299507572,51.26683769353543],[3.521916647109092,51.26682075974596],[3.521947993337513,51.266721473759745],[3.521860507802915,51.266582332416604],[3.521877897950472,51.26655122446662],[3.521894050070867,51.2665223623384],[3.521927449030204,51.26646238995362],[3.521977901085833,51.26639540845132],[3.521982132137444,51.26639145741341],[3.522060342353579,51.26631817784552],[3.522081604374461,51.26629826251819],[3.522473507109348,51.26505681477667],[3.522504636155581,51.26495822646073],[3.522484795371601,51.264882385955396],[3.522478923832045,51.26480838770174],[3.522502259186298,51.26473437210822],[3.522503938053504,51.26472904051932],[3.522530433437283,51.26465906747544],[3.522568082216265,51.26457210082681],[3.522652213641323,51.26449091402384],[3.522654763837504,51.26448283623199],[3.522690155966546,51.26437068619283],[3.523119262973219,51.26301111873782],[3.523152086138774,51.262906398742665],[3.523582539660131,51.261362001178234],[3.52361671937469,51.26123938420077],[3.523621435936317,51.261222431244015],[3.523643752703067,51.26114236632985],[3.524131774770855,51.25939158912291],[3.524249639263114,51.25896871694447],[3.524491133452996,51.258102250978396],[3.524702922701836,51.257342362036965],[3.524705187201372,51.25733424366919],[3.524707218346453,51.25732693073405],[3.524711278807659,51.25731234978825],[3.524713207958583,51.2573054308137],[3.524945505888929,51.256471938793815],[3.524951042536601,51.2564520589402],[3.524973831861584,51.25637752170811],[3.525237323211323,51.25551591097732],[3.525351244531117,51.25514335899633],[3.525487287176953,51.25469851559301],[3.525488625551662,51.25469414052963],[3.525489600349395,51.254690955418965],[3.525493565942578,51.25467799126971],[3.525742035134557,51.25386541751735],[3.526012286692002,51.252981625368335],[3.526350285275365,51.25187621531601],[3.526550958626975,51.25121989013193],[3.526643494029181,51.250917257783996],[3.526788384923153,51.25044334362979],[3.527061569635461,51.249549805378145],[3.52709642643439,51.24943581151849],[3.527219386079463,51.249033598144486],[3.527228421130862,51.24900407311122],[3.527637970172641,51.247664398907155],[3.527769675711062,51.24723352745776],[3.527852334180058,51.24696313010149],[3.52777396271742,51.24695567349911],[3.527756229123718,51.24694082493545],[3.527758695575673,51.24692593970089],[3.527785582873146,51.24689526153142],[3.527870850764062,51.24690256764951],[3.527981310223032,51.246540818971894],[3.528009083052262,51.24644983587715],[3.528032478041405,51.246372125086495],[3.528039316597736,51.24634939786702],[3.527594242204525,51.24604014747636],[3.527586896364858,51.24603972433199],[3.523785833262313,51.24582131157385],[3.523673077292952,51.245814739769045],[3.522934293540724,51.24576316026382],[3.522844929480811,51.24576435303799],[3.522796556814133,51.245764998123754],[3.522749978157318,51.2457620396769],[3.521664010518322,51.24569308078838],[3.521137144543659,51.24565962485719],[3.520930699136947,51.245646512226116],[3.520812026347334,51.245637514077394],[3.51941801514416,51.24553186171786],[3.518487987707602,51.24546136749457],[3.517549432941478,51.245429649828424],[3.517518930478436,51.24542801762722],[3.51732688346317,51.24541771040689],[3.517233547189909,51.24541620968674],[3.515500551875723,51.24532710457317],[3.514722290756966,51.24528708280975],[3.514717101639683,51.24528681944545],[3.514709096810853,51.245286402856294],[3.514683922539567,51.24527883186596],[3.514571692609763,51.24524508050873],[3.514552026698005,51.245243981647896],[3.514523399413226,51.24524238784354],[3.512978207456846,51.24515618802789],[3.511075421175966,51.24505000294017],[3.510951489584009,51.24504007370931],[3.510854771460664,51.24503232762692],[3.510782183155027,51.24502650821917],[3.510666504172699,51.24501724229309],[3.510305110289064,51.245000378695615],[3.510298347664095,51.24500006276667],[3.510192344576007,51.2449930833443],[3.509992767685279,51.24497993621049],[3.509926966084635,51.24497419884134],[3.509929917467131,51.24498712131283],[3.509933268250345,51.24500567847415],[3.509892157413908,51.245009150627396],[3.509887696538073,51.24498866949488],[3.509820142658831,51.2449942321918],[3.509815581242063,51.24497375842395],[3.509814456481319,51.24496869642618],[3.509693579703395,51.24497861291283],[3.509689584745803,51.24496074662663],[3.509418034008132,51.24494357745499],[3.508569007848828,51.24488987453292],[3.508499026746922,51.244885111771296],[3.507981904396088,51.244849910310094],[3.507090120128408,51.244764846964145],[3.506890757357316,51.24474582694792],[3.506749296959195,51.244732337153714],[3.506614386250991,51.24471946557516],[3.506432734792336,51.24470519061226],[3.506396838512847,51.244702371375105],[3.505844846026694,51.24465898120985],[3.505482643891737,51.24463050933071],[3.505361034420474,51.24462094434813],[3.505329750228551,51.24461848711599],[3.504881716681679,51.24458790516638],[3.503366491814512,51.24448447616777],[3.502031707194883,51.24439595518529],[3.501005508379458,51.24432788837995],[3.500994808690387,51.24432717539265],[3.500592629950647,51.244302930838074],[3.499825339658606,51.24425666645393],[3.499768669662525,51.24425324728765],[3.499471924157112,51.24423238222679],[3.499113190084191,51.244207165435405],[3.498406921568637,51.2441575038112],[3.497553987512886,51.24410226310669],[3.496929735412218,51.244061828045055],[3.496315056463156,51.24402200380585],[3.495555088079443,51.24397276431717],[3.495542387462586,51.2439719463526],[3.495521755032229,51.24398768635625],[3.495515617034425,51.24399236963848],[3.495002149856415,51.243960676110845],[3.494671011932145,51.24394023714227],[3.494546320793411,51.243932543683805],[3.494472335990703,51.24393183408338],[3.494466135841935,51.24393177812855],[3.494466640601861,51.243958740873914],[3.49446667324981,51.243960377737665],[3.494331526951762,51.24395853774915],[3.494330709830372,51.243915907879035],[3.494198995962602,51.24390692194154],[3.493455237806515,51.24385616134899],[3.493453600425988,51.24385384202176],[3.49343791397158,51.24383169388775],[3.492655192529814,51.2437789270552],[3.492396014284473,51.24376145201641],[3.492265496641701,51.243752654195774],[3.492212301326533,51.2437490631797],[3.492144936746407,51.24374726418716],[3.492108707558555,51.243746296200435],[3.491856153177142,51.243731454320596],[3.491456230084985,51.24370796105469],[3.490252148164803,51.24363721382254],[3.48960677564916,51.243599289845946],[3.489461279793091,51.243590738959895],[3.487305827660447,51.24345815643861],[3.487238517668604,51.24345401786653],[3.486869524449452,51.24343053757177],[3.485386411299994,51.2433361731919],[3.485382226097435,51.243335888968325],[3.485315277924262,51.243331323634784],[3.485308278730695,51.24333084953429],[3.485307297047248,51.24338900432837],[3.484669821888765,51.243333883607],[3.484669324463515,51.24330895280803],[3.484668541483055,51.24326985673443],[3.484417806109772,51.24325685354478],[3.484173166508217,51.2432446958057],[3.484089485237147,51.24324053924702],[3.483950597987439,51.24323363601706],[3.483342058892269,51.243203391726425],[3.483160874018417,51.24319438351545],[3.48315408883981,51.24319393077053],[3.482380922683579,51.2431426715235],[3.482108111603786,51.24312458154367],[3.481954193091003,51.24311437278728],[3.481768105086574,51.24310203636778],[3.481702252378631,51.2430976667123],[3.481211989475975,51.24305884783798],[3.48043004622151,51.24299693038105],[3.480331933971695,51.24298916291802],[3.479470589009696,51.24294491672087],[3.47852951646381,51.24289656843918],[3.478231261040768,51.2428738439885],[3.478072166570671,51.242861728952796],[3.477884929579667,51.24285397975119],[3.477437486283348,51.24283544801821],[3.476963374925217,51.242815811183725],[3.476295035385511,51.24278812595881],[3.47594973427833,51.242755955367876],[3.475774800938136,51.24273965684288],[3.475728803345727,51.24273423453256],[3.475312302765492,51.24268513071297],[3.475016833361686,51.24265028811614],[3.474653016898142,51.242607388772136],[3.472068102046095,51.242486007182016],[3.471650217129275,51.24246638446229],[3.471377221644572,51.24245048692352],[3.4701274200666,51.24237764450577],[3.469102246992693,51.24231788931579],[3.468052399601432,51.24225668390671],[3.467915396118091,51.242248695660486],[3.467860711812892,51.242245509441815],[3.467763717743902,51.242239853656365],[3.466926237548471,51.24219101708336],[3.465564282149713,51.24211158918034],[3.465233260845861,51.242101920023714],[3.464461574003235,51.24207939047385],[3.461999793127872,51.24200747205493],[3.460568932549944,51.241965640514096],[3.460484138765118,51.24195533466375],[3.460438176708185,51.24194333450617],[3.46029999311396,51.241907257067275],[3.460285612248273,51.241903503331635],[3.460276006046557,51.24190099752912],[3.459145596540549,51.241872353186885],[3.455354595930928,51.24177622518055],[3.455021893631166,51.24176778467773],[3.453792250960191,51.241725625311815],[3.451788069228527,51.24165687160514],[3.451266607198989,51.24163897600009],[3.448479462992376,51.241561434764506],[3.448442339402554,51.24154882193622],[3.448280429743039,51.241493831174374],[3.448276546707898,51.24149250769966],[3.44822467573877,51.24149938402657],[3.447908651576519,51.24154130773434],[3.44767950909486,51.24155901053393],[3.447539178150674,51.241569850668625],[3.447354516610442,51.241575914220846],[3.44722744554786,51.241580079118016],[3.447123209446788,51.24158350097168],[3.44703566679859,51.241597262112066],[3.446955651408555,51.24160983609937],[3.446952761270907,51.241610435226285],[3.446833274872072,51.2416350547655],[3.44656593591777,51.24169014973396],[3.446354012135056,51.24173382440929],[3.446028973209679,51.24180080320249],[3.445524543807195,51.241894069482925],[3.445014960668293,51.242000733946234],[3.444659374541532,51.2420590349929],[3.444412748752186,51.24209946517135],[3.444406663675467,51.24211865808814],[3.44438935753951,51.24217412183816],[3.44440014925731,51.24224796497663],[3.444475533131714,51.242426076317074],[3.444539694259997,51.242544569952486],[3.444555944348468,51.24260049538486],[3.44455312972927,51.24262431034423],[3.444551920197621,51.24263459376606],[3.444533863918328,51.24266180443602],[3.444531845970847,51.242663452033106],[3.444496025950222,51.24269273056796],[3.4444533389983,51.242713020307605],[3.444449245726957,51.24271496589822],[3.444398752189675,51.24272984751457],[3.444391223759868,51.24273206837921],[3.444166156054563,51.242770376732906],[3.443837491684084,51.24282632897566],[3.443357890638596,51.242907971050215],[3.442800402957801,51.24300286527446],[3.442592877427384,51.24303819121106],[3.442445619240042,51.24306326797974],[3.442255378449079,51.24309565462083],[3.442113172914131,51.2431184508559],[3.442120225609589,51.243137899369884],[3.44208561223932,51.24314343427435],[3.442078416416186,51.24312398336411],[3.442048994293881,51.24312870599215],[3.442036424975462,51.24312988035775],[3.442015356698223,51.24313183863032],[3.442006426026204,51.24313266926257],[3.441769108355688,51.24318747331153],[3.441764030669166,51.24318864710104],[3.441761369010792,51.243189258914],[3.441751250130777,51.24316780804508],[3.441750461097044,51.243166149500546],[3.441648951163902,51.24318522039694],[3.441650029162043,51.2431874951615],[3.441661706589493,51.24321204702055],[3.441416103833601,51.243268312140444],[3.441403779544848,51.24327113588296],[3.441322774801572,51.24328969544929],[3.441201571788664,51.243317454369084],[3.440980144970935,51.24336399931498],[3.440826360276473,51.24339631943228],[3.43938289851658,51.243736393091474],[3.437079002417086,51.24427912845134],[3.437051118953686,51.24428570079675],[3.437031295467579,51.244290367347496],[3.43665630013779,51.244381621294224],[3.436312018520301,51.2444654053127],[3.436063515402146,51.2445258813323],[3.436063677373337,51.24453216873604],[3.43606378757241,51.24456321639532],[3.43590256197724,51.244564898891305],[3.435898306043709,51.24456594236083],[3.43586592502584,51.24457384155209],[3.435764930601378,51.24459849941619],[3.435739569796677,51.24460469120664],[3.435635242324332,51.24463529000562],[3.43450061419875,51.24496806061375],[3.433771380949133,51.245181927747495],[3.433141133492984,51.245366758458914],[3.432313895313229,51.24560935033109],[3.431564650172705,51.245461304301664],[3.430610258969693,51.245272714324734],[3.430389425791041,51.2452290787816],[3.430319224264521,51.24521520226486],[3.428942316647877,51.244943100650914],[3.428906647961951,51.244936053491834],[3.427514418384329,51.244663865573244],[3.427478931617766,51.244656928928464],[3.427476030265522,51.2446604584491],[3.427472886813147,51.24466428958349],[3.4274429990149,51.24469992969196],[3.427389490091834,51.24475531153798],[3.4273247529998,51.24482569890391],[3.427287628955428,51.24486607215705],[3.427239143017628,51.24494131876273],[3.427209998276416,51.24499306520575],[3.427172022357311,51.245063723695004],[3.427152277939476,51.24512677738238],[3.427141026023725,51.24520561852021],[3.427141370041409,51.24522268921262],[3.427141806141016,51.24524396923912],[3.427142594899977,51.24528278763497],[3.427155403886552,51.245331950455295],[3.427172002204811,51.245395670610655],[3.427172310837315,51.24544135901916],[3.427172607384672,51.24548532095432],[3.427157478875118,51.24556436648753],[3.427135849869235,51.24564065910857],[3.427120026162871,51.24569644222749],[3.427095072034393,51.24575134318622],[3.427073218027341,51.24579940929542],[3.427053927438731,51.245938894013214],[3.427041089544018,51.24597778842799],[3.426897876877132,51.24612750201705],[3.426771312173507,51.2462664371632],[3.426727783632846,51.24645676188584],[3.42671033876175,51.24666020359936],[3.426557282704207,51.246966194066225],[3.426213577413386,51.247368589997414],[3.426092394363772,51.24768787555205],[3.426041772298978,51.247821266381884],[3.425720489679417,51.248780401541275],[3.425719831336892,51.248782728095335],[3.425635232409452,51.24907854338606],[3.425482347295218,51.24950060916297],[3.425473550480148,51.24955146667078],[3.425389065248482,51.25003957403978],[3.425454159205873,51.250242429851944],[3.425437208434299,51.250405060675455],[3.425415743829786,51.25061086202171],[3.425403722591307,51.250727632031996],[3.425377034661049,51.25085233644567],[3.425342609735954,51.250956644653165],[3.425310027459703,51.2510553915388],[3.425270234861504,51.25120172298191],[3.425131496301289,51.25183846215191],[3.425096144411511,51.25203494827797],[3.424996616529996,51.25281980105111],[3.424962291034672,51.252975575275364],[3.424908894733677,51.2531751735053],[3.424632018212991,51.254009361350626],[3.424613541565252,51.25411955785346],[3.424598721458666,51.25420794996358],[3.424405389008712,51.25447657512597],[3.424338431535821,51.25454116931917],[3.424227899291621,51.25462957348355],[3.423492524787078,51.255045401317794],[3.423136208554069,51.25523862546547],[3.423077350470177,51.25527800112811],[3.422774387473577,51.25552337382156],[3.42273007043139,51.25556378610908],[3.422243829075178,51.25600720839989],[3.422151784347565,51.256081986950974],[3.422075129347248,51.256133361141295],[3.42204881022765,51.256151006360035],[3.421926468856497,51.25622725088508],[3.421644794427189,51.2563836099559],[3.421495371574852,51.2564551616376],[3.421333045012374,51.2565328966338],[3.421223109108751,51.25661717228048],[3.420958153602637,51.256734431753465],[3.42078906773029,51.2567980167993],[3.42060795999504,51.25684791184631],[3.420440149594599,51.25689712336929],[3.420364167593358,51.25691940398126],[3.42002088870079,51.25699259370593],[3.419977765348288,51.25700179043868],[3.419875820290774,51.25701337289084],[3.41982216182601,51.25702365011784],[3.419573574639164,51.25707128731131],[3.41936734842548,51.25711212417645],[3.41924704905126,51.257134013934504],[3.419172529563411,51.257147579268825],[3.419138892233502,51.25715909403577],[3.418953225863746,51.257222629681486],[3.4187225300734,51.25730501236429],[3.41870540193542,51.25731113307891],[3.418514906551112,51.25737264425682],[3.418335838564095,51.257484967915445],[3.418156626513617,51.257597288869455],[3.418085206334871,51.257644721156055],[3.418011927786229,51.25769338067971],[3.417898689655632,51.25783091404191],[3.417844414380756,51.257872828269385],[3.417822864524772,51.25788946539821],[3.417805612323799,51.25790279467017],[3.417784361640821,51.2579484598241],[3.417755407847718,51.258010645890494],[3.417793153504513,51.25827247369915],[3.417801417341312,51.258463492665726],[3.417804635292336,51.258605245397085],[3.41778231725298,51.25871770464437],[3.417750222223884,51.25886758075221],[3.41770002349199,51.25902191555618],[3.417646564083037,51.25914877256319],[3.417573747050124,51.25928258448264],[3.417480836708653,51.25942046170061],[3.417366428189831,51.2595650776822],[3.417270105202246,51.25966900085817],[3.417158680195955,51.259760889967055],[3.417138742643012,51.25977799484744],[3.416981572118457,51.259889644471265],[3.41695900081482,51.259905679737116],[3.41690762147132,51.2599518144425],[3.416862815821526,51.25999203650293],[3.416842737617857,51.2600100740172],[3.416797164798062,51.260033487856425],[3.416727627888339,51.26004435786726],[3.416591800170452,51.260047271641604],[3.416505098864464,51.26004409449039],[3.41641060304802,51.260035570429054],[3.416350220774933,51.260027507409035],[3.416281802677489,51.26001837313454],[3.416267694611806,51.26001488833373],[3.416146817519479,51.259985066898736],[3.416005570770356,51.259950755292344],[3.415955366609925,51.25994459981101],[3.415902092445872,51.259927872798706],[3.415724350631371,51.25985922606389],[3.415482404606822,51.25975415608173],[3.415217146346005,51.25962810095354],[3.415022227409118,51.25952580525807],[3.414913026558756,51.259462814839296],[3.414690206197196,51.25931967582895],[3.41418186874499,51.25897874657608],[3.414025050774701,51.25888356895103],[3.41393056254749,51.25882172625475],[3.413865482300576,51.25876577699792],[3.413829596905085,51.258723989349235],[3.41380667963579,51.25869051361383],[3.413785089684101,51.258662814641895],[3.413752563845717,51.25860624879039],[3.413679490309178,51.25847976416087],[3.413630475460806,51.2584001712383],[3.413581913574511,51.25832004651761],[3.413531161380231,51.25824420029678],[3.413479596614883,51.25817058801742],[3.413428438075188,51.258107502094674],[3.413365716722031,51.258033430714036],[3.413309206297895,51.257974839334125],[3.413247235796366,51.25790995146343],[3.413187119031269,51.257848601513786],[3.413127903920862,51.25779293117404],[3.413057292459692,51.25772906537661],[3.412995616284495,51.257677309243206],[3.412919687606426,51.257623782689336],[3.412873254384715,51.25759071679703],[3.412836797413801,51.25756555249925],[3.41282192749268,51.257555499884916],[3.412789737343961,51.25753373467434],[3.412727879397698,51.25749285443769],[3.412577570617126,51.25740308995717],[3.412405270386774,51.2573082765781],[3.412243867624059,51.25722659503456],[3.411998963975793,51.257117511275375],[3.411806561874458,51.257030357627514],[3.411737750907737,51.25699790022965],[3.411689991134274,51.256975690451256],[3.411622882585465,51.25695027489334],[3.411564244916395,51.2569277903927],[3.411491227265845,51.25690317349123],[3.411423201466296,51.256882417565855],[3.411359873376538,51.25686569744942],[3.411291502941265,51.25684961092218],[3.411218999650921,51.25683300459306],[3.411145648697608,51.256819440764495],[3.411086046897184,51.2568093472479],[3.411037605317301,51.2568029498098],[3.410932131271815,51.25679000890723],[3.410848521494934,51.25677842842906],[3.410759308274953,51.256767202226406],[3.410657630511114,51.256755943964315],[3.410548886471757,51.2567457343612],[3.410426416408726,51.25673484183004],[3.410274892121841,51.25672318562421],[3.410110214908604,51.25670752941939],[3.40993299954089,51.25669354795497],[3.409765446933082,51.25668143878917],[3.409622269487459,51.25667558797742],[3.409492260911948,51.25667005081256],[3.409361551600073,51.25666746862485],[3.409255779186841,51.25666477088837],[3.409147638271489,51.256663830981694],[3.409047314138594,51.25666437256859],[3.408945051437836,51.256663352623576],[3.408846062093973,51.25666616449549],[3.408738009177217,51.25667313780809],[3.408642409582168,51.25667708608877],[3.408563008462083,51.25668418697573],[3.408495305512697,51.2566924758287],[3.408414429826285,51.25670054054289],[3.408356110822832,51.2567105174335],[3.408204798998882,51.256733747326656],[3.408144428773958,51.25674476813555],[3.408081941379041,51.256758360287435],[3.408010371366218,51.25677323642219],[3.40794717526489,51.25678996330325],[3.407876119642271,51.25680619676383],[3.407806313776129,51.256823350552395],[3.407741015901225,51.256842289313155],[3.407666608180362,51.25686314093601],[3.407588089806515,51.256889586899334],[3.407505379701781,51.25692018725057],[3.40740298201642,51.256962050870506],[3.40731957022092,51.25699893286998],[3.407239369921583,51.25703775759506],[3.407150670663022,51.25708093310228],[3.407069824086764,51.257118128326525],[3.407002564224026,51.257155914444695],[3.406926717149335,51.25719346441697],[3.40686225135544,51.25722958972998],[3.40679618656329,51.25726955392686],[3.406732288834245,51.25730910543405],[3.406678650278606,51.257346673745396],[3.406625919504569,51.25739306870117],[3.406575336966251,51.25743617353292],[3.40656188311259,51.25744907134507],[3.406525407491378,51.25748405471118],[3.406481441129038,51.257533206248425],[3.406438980942635,51.25757734844126],[3.406406467654997,51.25761347817135],[3.406373086236519,51.25765642629318],[3.406340784770278,51.25769759459131],[3.406317470118301,51.25773307175796],[3.406291085155714,51.257776588560596],[3.40627396441919,51.257821252146684],[3.406254721857847,51.25787190358595],[3.406235161181198,51.257926595569195],[3.406216823669363,51.25797951017495],[3.406205420596982,51.258034430996325],[3.406184795304791,51.25809054340598],[3.406159181153437,51.25814935806501],[3.406132885983705,51.258207351927254],[3.406104803790202,51.258260280369655],[3.406048429319789,51.25837098881558],[3.406013434460131,51.25842802528416],[3.405981396540252,51.25848295426063],[3.405954123222785,51.25853373859993],[3.405928045874791,51.2585833744706],[3.405904569167708,51.25863251517217],[3.405880653161539,51.25869180825375],[3.405838901583015,51.258805642820846],[3.405819347129922,51.25886348171079],[3.405800779396108,51.25892169704736],[3.405782373595278,51.258982792270444],[3.405764834006248,51.25904704910827],[3.40574468910515,51.25911521761753],[3.405721347329357,51.259184410589235],[3.405699184700455,51.25923959763219],[3.405670050421036,51.25930356702975],[3.405637025952877,51.25937133629337],[3.405604741320239,51.259435252008096],[3.405576786044589,51.25948521545829],[3.405540256077604,51.2595478899984],[3.405517123147578,51.25959568783281],[3.405490478388029,51.259651787493866],[3.405461549616458,51.259710995098395],[3.405428963093079,51.25979180876924],[3.405385570169918,51.259897163659254],[3.405328576854519,51.26002539376737],[3.405293802418885,51.26011039591298],[3.405249252352878,51.260212674091015],[3.405209785200981,51.26030676711105],[3.405167566107509,51.26040153251059],[3.405128615140915,51.26048700290915],[3.405094171225577,51.26056104157273],[3.40506147025266,51.26062791710003],[3.405017538915557,51.26070925663309],[3.404979827335434,51.26076939339036],[3.404933885338132,51.26084089840366],[3.40488762569216,51.260913117269865],[3.404836083248999,51.26098488644786],[3.404781547667608,51.26106289831838],[3.404711393660726,51.26115080384858],[3.404639711639405,51.26123427768911],[3.40458912244177,51.261297251798204],[3.404530041013924,51.261364396836896],[3.404467308741082,51.26143642468766],[3.404426089672216,51.26147824969176],[3.404383263495096,51.26152409325358],[3.404333566933443,51.26157305645894],[3.404277700376391,51.2616255108803],[3.404233091685366,51.261662872430136],[3.404174460596068,51.261719595374316],[3.404122903569046,51.261761873411274],[3.40405610218413,51.261818636831606],[3.403982163326122,51.2618780657484],[3.403953764285155,51.26190014906439],[3.403897188700317,51.261944139649344],[3.403812644213109,51.26200689414148],[3.403710069704362,51.262078961546244],[3.403614449320602,51.26215258601436],[3.40351746524628,51.26221467862427],[3.403425201756249,51.26228026825518],[3.403329261539602,51.2623447161858],[3.403249267595188,51.26240494049265],[3.403162338424583,51.26246315834079],[3.403076095574535,51.26251545374766],[3.402990916366265,51.26256965535409],[3.402899520106281,51.262628426187995],[3.402798319820815,51.262688558180706],[3.402701742357268,51.262741216481146],[3.402601324642739,51.26279650649769],[3.402519286618719,51.262837724354966],[3.402428791825624,51.262878977684814],[3.40233394213134,51.26290828846511],[3.402172918508371,51.26296326326123],[3.401721507334706,51.26311847693523],[3.401577755071815,51.26317500446264],[3.400998132443931,51.26329925545587],[3.40037744513392,51.263402122823614],[3.400127400608108,51.263441098755294],[3.399692137913266,51.26349803867138],[3.399316140469551,51.2635564393195],[3.399111292256963,51.2635842273426],[3.398896270215868,51.26361858439738],[3.398294783569665,51.26370810254796],[3.398030025049852,51.26375581348425],[3.397894200294673,51.263781452972296],[3.397753804806572,51.26381663455717],[3.397521673598635,51.263881895434025],[3.397268277428605,51.26395830063468],[3.397033839275687,51.26403044420057],[3.39680627170691,51.26410309147632],[3.396518263224566,51.26418807371008],[3.396489900396617,51.26419602194547],[3.396481998486246,51.26420010352296],[3.396465253559116,51.26420683897564],[3.396446610627288,51.26421635614416],[3.396374175873536,51.264249111684855],[3.396173968153689,51.26434177253401],[3.396053029498082,51.26440039212708],[3.396006405232178,51.26442291685397],[3.395969587545935,51.26444139262281],[3.395776380477031,51.26454176109009],[3.395661306665107,51.264603573611495],[3.395570228854454,51.26465174383878],[3.395518875628823,51.26468149713969],[3.395498049327473,51.26469112063534],[3.39548253198928,51.264698290556936],[3.395475818843848,51.264704361462776],[3.395452596843267,51.26472194597137],[3.39535138068347,51.26479297752893],[3.395133649616457,51.26495165461917],[3.394907324432413,51.265117763592954],[3.394740215860725,51.265244993094825],[3.394661862629015,51.26530237163756],[3.394643068542736,51.26531666018864],[3.394624488039796,51.26533460276443],[3.394582881538367,51.265373513674675],[3.394533674483283,51.265418462241854],[3.394420807062152,51.26553650548442],[3.394191781607623,51.265777030813155],[3.393888441456683,51.26609859550054],[3.393772471920433,51.266221646962514],[3.393663818811452,51.266336947528764],[3.393474079590173,51.26653542824264],[3.393300920449092,51.266722396576384],[3.39309858900964,51.266930218380814],[3.392971990727588,51.26706291412722],[3.392981022186523,51.26707009995906],[3.393010835318076,51.267083531181775],[3.393035404059885,51.267094633723126],[3.392925651346072,51.26720317149828],[3.392896880271478,51.26723162049698],[3.392312756214105,51.26781529407045],[3.391760021475884,51.26837590175176],[3.391248011062284,51.26889366194686],[3.390891732411589,51.26925027526424],[3.390654935644807,51.26948869164232],[3.390116046653878,51.27002929967965],[3.389798257476935,51.270354832094355],[3.389537013402127,51.27061586170001],[3.389227806445846,51.270925517930216],[3.388953899758143,51.271200660596996],[3.388933588371119,51.27123122301901],[3.38892018586702,51.27125094399479],[3.388910916915162,51.27127185086154],[3.388894898401077,51.27130585866454],[3.388887677166176,51.27132680969349],[3.388882034014138,51.271350026604495],[3.388874403511954,51.27137181576337],[3.388859363532124,51.27155053364153],[3.388847078791652,51.271663834872406],[3.388843894816288,51.271715757550595],[3.388836931953752,51.2717485182886],[3.388829251128366,51.271779009935614],[3.388815945951174,51.271845090524394],[3.388796777132753,51.27191612337149],[3.388759275225975,51.272023938449856],[3.388718447861604,51.27215079342419],[3.388676773626147,51.27228719134507],[3.388642476125947,51.27240630027377],[3.388630873259855,51.27244487044383],[3.38860688163661,51.27249700210801],[3.388588866510236,51.27254586478669],[3.388584811986337,51.27256125078231],[3.388577821150609,51.27257067920255],[3.388541393158545,51.272625968860744],[3.388485591835852,51.27270311564033],[3.388460815492491,51.272742025915235],[3.38845077390021,51.27275927809339],[3.388443166696687,51.272766735863755],[3.388390111880817,51.27282397860293],[3.388357636930442,51.27285405323561],[3.388284957240271,51.272924463343365],[3.388258775606756,51.272946311356115],[3.388242800600051,51.27296419883946],[3.388199345022518,51.273007418519875],[3.388100425679521,51.27308654855366],[3.388034684632349,51.27314116354519],[3.387979436616898,51.273191822921426],[3.387933062928737,51.27321979745362],[3.387865090590441,51.2732500082088],[3.387691966018698,51.27333793267228],[3.387555477028809,51.273407515407285],[3.387468822963846,51.27345520716387],[3.387423204050113,51.27348885884786],[3.387342247605156,51.27353736773365],[3.387246002221978,51.273594604818435],[3.387172542643636,51.27363883683718],[3.387108069591394,51.27366766874681],[3.387040886802752,51.27369618430393],[3.386980596987037,51.27371456850758],[3.386860625338529,51.27375710156273],[3.386741956392592,51.27379606046681],[3.38663107103631,51.27383074746841],[3.386559639877255,51.27385478407524],[3.386468012474358,51.27388503681389],[3.386393763801679,51.27390138245573],[3.386230672141493,51.27393346295193],[3.386114711032189,51.27394324680683],[3.386055611952714,51.27395077181918],[3.385975096619979,51.273953073241934],[3.38589173231153,51.273954965958715],[3.3858187143831,51.27395299061462],[3.385702577595425,51.27394056308159],[3.385570539778576,51.27393118856169],[3.385406341535725,51.273913168577394],[3.385232587831133,51.27389732161524],[3.385111548198751,51.27388229162162],[3.384968258094888,51.2738712842071],[3.384853671566292,51.2738627486642],[3.384758303714349,51.273857241115245],[3.384613718549267,51.27384962758182],[3.384401162100812,51.273842642006144],[3.384228775721157,51.27383814583483],[3.384107156415218,51.27383964839651],[3.383932676063585,51.273840420470734],[3.383775821218353,51.27386424322777],[3.383440475905573,51.27392149558813],[3.383289822854038,51.27394443548946],[3.382750309966783,51.27402568180343],[3.382641305038063,51.27404025741634],[3.382557395899783,51.27405130926434],[3.382331633776888,51.27407744929418],[3.382200417862758,51.274088584779534],[3.382114274995506,51.274104812644005],[3.382044824405988,51.27411629312728],[3.381979629064212,51.27413207271974],[3.381928384055567,51.274150070760385],[3.381891601746911,51.27416840797101],[3.381834872666042,51.274200337539085],[3.381774499661962,51.2742336428434],[3.381740669168176,51.27425985313203],[3.381687400237176,51.274297866301254],[3.381627825837918,51.27432929717052],[3.381574342923131,51.27435256122179],[3.381491869535982,51.27438971120867],[3.381440624048712,51.27440770903176],[3.38138927558354,51.27441824245646],[3.381325379017428,51.27443053755782],[3.381247671282152,51.27444070637133],[3.3811212138274,51.274454440201914],[3.38101144886882,51.27446342672715],[3.380934499510642,51.27447918288373],[3.380817807411304,51.274505582393125],[3.380689468755609,51.274539333440366],[3.380632668110843,51.274556515820024],[3.38057702761572,51.274570121746954],[3.380472964132273,51.27457983547958],[3.380419454536791,51.274580800652494],[3.380363743766539,51.274579659882384],[3.3802915240279,51.27457580671753],[3.380190743855382,51.27456948278686],[3.380105217588517,51.274561803524094],[3.380028054449789,51.274562810013336],[3.379961348904636,51.27456723366439],[3.379903039085332,51.27457306088229],[3.379833591187378,51.27458445019578],[3.379735689428343,51.274600743167596],[3.379658735470771,51.27461658831969],[3.379539336585382,51.27464258020971],[3.379431046905577,51.2746702022666],[3.379349800953662,51.274689120030885],[3.379283304293951,51.27470838219999],[3.379164622587151,51.27474742316932],[3.379014137043764,51.27479256847593],[3.378841469350202,51.274856481706344],[3.378683296980548,51.27491345205352],[3.3785873763809,51.2749515367159],[3.37851902808483,51.274978678650044],[3.378478131960546,51.27499271796709],[3.378394248869795,51.27502597529214],[3.37832211897374,51.27505925567402],[3.378251395023335,51.27509642645886],[3.37818146206748,51.27513190255316],[3.378135732281514,51.275158086172404],[3.378074059586007,51.275194783774275],[3.378016674762999,51.275228498420894],[3.377959863907242,51.27527526003755],[3.377895591484028,51.27531892570474],[3.377815335076355,51.27538056720204],[3.377774466836288,51.27541681476122],[3.377710259418886,51.27547531675773],[3.377655645090168,51.27552427403306],[3.377600239505747,51.27557492592488],[3.377532571729009,51.27562734402572],[3.377492391885147,51.27565443246552],[3.377430611767243,51.27568375518687],[3.377346181019594,51.27572617323571],[3.377276107107007,51.27576155645888],[3.377212375063336,51.27579615009331],[3.377155640717214,51.27582807734966],[3.377100960189674,51.2758621979256],[3.377052486225886,51.27589534677788],[3.377006857254735,51.27592899432034],[3.376956284286151,51.27596750152549],[3.376904415368138,51.276009402933866],[3.376862246028389,51.27604913423335],[3.376806187044741,51.276101572693285],[3.376767514492987,51.276140015717964],[3.376742731491412,51.276165751562736],[3.376697167073241,51.27621423541308],[3.376654206177939,51.27625566127123],[3.37658934425111,51.27631594958751],[3.376538876595356,51.276361831138836],[3.376480725806378,51.27641944813669],[3.37642062310581,51.27648233612003],[3.376359114307297,51.276541333600974],[3.37627271972901,51.276618602414814],[3.376224305310933,51.27666667718794],[3.376173294965118,51.27672163021713],[3.376124880332734,51.27676970494757],[3.376066219819789,51.276829111158705],[3.376027402784477,51.276867551453726],[3.375979135033712,51.27691553875495],[3.375933467005483,51.276956557921615],[3.375894141060572,51.27699678759686],[3.375846418985267,51.27703561335954],[3.375800098780665,51.27707841942166],[3.375767627441161,51.27711598031657],[3.375743454058303,51.27714739089135],[3.375726926717862,51.27717443810007],[3.37569824670392,51.27721053603587],[3.375680450962018,51.27724034855008],[3.37565681137991,51.27728570453893],[3.375627253557549,51.27733851072476],[3.375594915218905,51.27740565458744],[3.375570260230953,51.27746106303478],[3.375516111743833,51.27758411406236],[3.375491965274018,51.27763773306769],[3.375476358160808,51.277692758471076],[3.375456568553648,51.27775814122957],[3.375436021010593,51.27781793639897],[3.375413488086429,51.27789028477423],[3.375404837724131,51.277950105828666],[3.375393346113453,51.27800933828886],[3.375379107303211,51.278075626213834],[3.375371719506239,51.278139335269884],[3.375361772995186,51.27820255052749],[3.375352331231365,51.278264066203405],[3.375338781597445,51.27832119512088],[3.375339691989646,51.27837875389319],[3.375334505206512,51.278444568958584],[3.375336964743985,51.278506020689925],[3.375339318386415,51.278560097889184],[3.375346643684018,51.27863152396328],[3.375354691722189,51.27868650882349],[3.375364695714153,51.278736132844266],[3.375380898900763,51.278784964943775],[3.375404854417223,51.27883680823513],[3.375425312780258,51.27888993971815],[3.375445835827349,51.278957907627216],[3.37546139114645,51.27900843682],[3.375498571793036,51.27907903041424],[3.375532921226331,51.279119454867185],[3.375592898102915,51.279176955914636],[3.375634852869559,51.27922047888567],[3.375690722043833,51.279273593136246],[3.375739638117169,51.27932182187422],[3.375794101568274,51.279371045598666],[3.375845757137983,51.27941239850272],[3.375929602867016,51.279484607822106],[3.375977659390838,51.27951978450565],[3.376034866545164,51.27956204248231],[3.376102536202769,51.27960762815246],[3.376149978247057,51.279637219660984],[3.376210580859528,51.27967072496043],[3.376273384787523,51.279706336224585],[3.37633398758203,51.279739841460646],[3.376392540376165,51.279771063462206],[3.376477553692464,51.27981020531474],[3.376552801665968,51.27983668073113],[3.376628664529295,51.27986874120193],[3.376705966744367,51.279897409876796],[3.376792321563318,51.27992560553772],[3.376871719096618,51.27994900555811],[3.376962871286788,51.27997242878681],[3.377042920921371,51.27999404173581],[3.377117272105058,51.28001483689708],[3.37719036050329,51.280031744025194],[3.377243941737508,51.280045616803164],[3.377328788777124,51.280062457234685],[3.377403972394577,51.28007409567408],[3.377489508468415,51.280081776973965],[3.37756173662854,51.28008563192279],[3.3776444644042,51.28008544235324],[3.377715327346115,51.28007794485116],[3.377789548189595,51.280069066721886],[3.377868811706599,51.28006288304513],[3.377948731044467,51.280054822510344],[3.378008450323981,51.28005297660602],[3.378091067754976,51.280045502029985],[3.378179244400724,51.28003875276019],[3.378254362658628,51.280035554218856],[3.378336980020371,51.280028079467826],[3.378419707696338,51.28002788934653],[3.378513538089895,51.28002950923631],[3.378598319923552,51.28003151231188],[3.378669900181362,51.280037063695005],[3.378738774429446,51.280042208680086],[3.378830477122442,51.28005637911187],[3.378921019406772,51.280074125877825],[3.379016321972346,51.28009447223664],[3.379101924190011,51.28011698878616],[3.379198596476646,51.28014859749419],[3.379287802621898,51.28017720012949],[3.379363700748915,51.28020197661377],[3.379456261047652,51.28022928833426],[3.379545324259901,51.28025788830188],[3.379626130121122,51.28028517688664],[3.379698531414974,51.28031124147697],[3.379763938395955,51.280339882676365],[3.379835794652545,51.28037510868504],[3.379892149238798,51.28040422301272],[3.379955604941263,51.28043813517984],[3.380024616121588,51.28047286243315],[3.380100621810048,51.28050501297255],[3.380190440525155,51.28053928985177],[3.380282247434428,51.28056092352116],[3.38035184069818,51.2805791170164],[3.380434595158749,51.28060122380584],[3.380497989207702,51.28062020940312],[3.380571039397308,51.280644576322835],[3.380632338843363,51.28066883046287],[3.380697890178586,51.280697473613294],[3.38076755017493,51.28073050329671],[3.380825455486474,51.28076351006706],[3.380871561747163,51.28080404568851],[3.380923838872998,51.28085098145242],[3.380963745941552,51.28089230925293],[3.381020271201197,51.28094372385],[3.381067136427961,51.28098984694782],[3.381116707856966,51.28103637632651],[3.381176189674254,51.28109557414964],[3.381227815657774,51.281144296759734],[3.381269813988197,51.28118044567316],[3.381368305986725,51.28127529122184],[3.381415135524152,51.28132878624402],[3.381469607474068,51.28137800735411],[3.381517228331993,51.281429807667195],[3.381559047539934,51.28147332607066],[3.381606020758235,51.28152682348728],[3.381644482218315,51.28157172255484],[3.381680205207913,51.28162349754227],[3.381704132987684,51.28168271163938],[3.381711434389951,51.28173201870669],[3.381722848508546,51.28178562246712],[3.381741117848466,51.28183655714307],[3.381769231173862,51.281885323796956],[3.381798747176128,51.28193807069447],[3.381826172536647,51.28199599637999],[3.381834737417738,51.28204919137787],[3.381840636387813,51.282094518187655],[3.3818471105885,51.28215289197999],[3.381850985570616,51.28221823402003],[3.381852735510741,51.28226663620145],[3.381846732141697,51.28231202761339],[3.38182533300744,51.28235868217131],[3.38178203204484,51.28242420016845],[3.38176060244161,51.2824486462171],[3.381708149273777,51.282507083316126],[3.381612144394325,51.282623661321914],[3.381581116717749,51.282657742184185],[3.38155348335902,51.282683070284726],[3.381525743071743,51.282701023847956],[3.381458577651104,51.2827516547352],[3.381140951929613,51.2829820153276],[3.38110841423731,51.28300474127189],[3.381014847284982,51.28306237933391],[3.380953269006048,51.28310654277991],[3.380915893634804,51.28314150304723],[3.380852327128519,51.28319830958962],[3.380768736444163,51.283283452375684],[3.380726133862331,51.283323177636],[3.38070359117187,51.28334355831916],[3.380674132836208,51.28337451913452],[3.38065797574906,51.28340948556988],[3.380651807284723,51.28343572307705],[3.38064760011497,51.283469546916386],[3.380653277071439,51.28351010469279],[3.380676767234962,51.283677384292005],[3.380681303910214,51.28373086956481],[3.380677211260277,51.28383401664146],[3.380672616954907,51.283883208560255],[3.380665411567188,51.28391347417567],[3.3806599923196,51.28394224210685],[3.380651112120546,51.28396492632985],[3.380644669536928,51.28397812203757],[3.380638667486866,51.28399042623316],[3.380623507239101,51.28401246269396],[3.380606564760955,51.284035906992656],[3.380493394192227,51.28417106940346],[3.380463967043976,51.28421111170643],[3.380437964976611,51.28424824601332],[3.380426875432702,51.28427880427354],[3.380416854628947,51.284314415971984],[3.380404803691176,51.28436689589744],[3.380387156938087,51.284481587533755],[3.380381988087366,51.28453733302778],[3.380384494352015,51.28460768653635],[3.380385035375154,51.28467054355096],[3.380400308877078,51.28476035816732],[3.380422687401682,51.284871244541385],[3.380449488382464,51.28496629295788],[3.380468008216904,51.28504420540433],[3.380487066453443,51.28510657255548],[3.380502516519142,51.285162943363495],[3.380518927954436,51.28519739250157],[3.380549900924178,51.28524962536253],[3.380576089487702,51.2852997976712],[3.380610910785356,51.28534274614898],[3.380662107923209,51.28541115203296],[3.380696929385243,51.28545410048576],[3.380729537789062,51.2855050128319],[3.38074309842593,51.285535816344215],[3.38078149579095,51.28565417171069],[3.380832944433339,51.28574955509916],[3.380889895498778,51.285876412214364],[3.380915230999813,51.28593951688882],[3.380940419359075,51.286002708930695],[3.380965719093322,51.286056821892416],[3.380973111385628,51.28611386289899],[3.380982066958345,51.286151600028205],[3.380983713200891,51.286192537839035],[3.380981148952483,51.28622486152867],[3.380974517478054,51.286248573567],[3.38095115791562,51.28631371582266],[3.380942919348491,51.28634791971884],[3.380942213095806,51.28639672912394],[3.380957628235012,51.28644410817211],[3.380962699731402,51.28648213798],[3.380960558402957,51.28650808529177],[3.380937241759232,51.28662456737051],[3.380796293542875,51.28696146067607],[3.380634644815764,51.287237396980935],[3.380595911872714,51.28730649989266],[3.38055960015924,51.28734327664305],[3.380528704217173,51.287351375306116],[3.380492137772216,51.28736126430283],[3.38000059037279,51.28786851531506],[3.37986246064331,51.287925204092396],[3.379630984762254,51.288148595470304],[3.379502555866008,51.28820311351019],[3.378932130466122,51.28851748917698],[3.378433965989623,51.288662009117196],[3.378389334950125,51.28867265736752],[3.378282272036628,51.28868789222002],[3.377945575280823,51.28882225030242],[3.37789991069408,51.288836836602094],[3.377363031555128,51.28901709747749],[3.377309909308228,51.28903497136186],[3.377021723390978,51.28915838635291],[3.376918693933347,51.2892155881311],[3.376196325861041,51.28958028338778],[3.375815872452561,51.28976377985895],[3.375752618430486,51.28979028920095],[3.375696072759717,51.289810980343105],[3.375641166350687,51.289830261219144],[3.375579516613222,51.28984636853074],[3.375541164519189,51.28985766371492],[3.375488611578642,51.28986907304034],[3.375297063764965,51.289907660086655],[3.375248403059437,51.28991859713093],[3.375115257038822,51.28995297874765],[3.375086001670041,51.289959575876836],[3.374909757497137,51.28997621889286],[3.374249593600875,51.290155142991246],[3.373796276619443,51.29027362572722],[3.373678684169161,51.290312950195585],[3.373388590622045,51.29041087857653],[3.373063568660682,51.29051719282187],[3.372435992654593,51.29074702099337],[3.372244718661059,51.29082157223761],[3.371973634849422,51.290930525722594],[3.37188876616351,51.29096259283345],[3.371520999417274,51.291173178699054],[3.370287093103367,51.29194040980782],[3.36949239539632,51.29272360581522],[3.369439731076439,51.29277547052068],[3.368897981792981,51.293309049331114],[3.368085873609474,51.29411522129727],[3.367983447451464,51.29420047815444],[3.367804053491651,51.2943497647878],[3.36777725589796,51.294391558018226],[3.367567561324249,51.294668441865],[3.36730397942515,51.29499321184055],[3.367194917695268,51.295127983816926],[3.367059412455705,51.295315973635944],[3.366931258317455,51.29547711757874],[3.366803283188618,51.295643928899516],[3.366771694114339,51.29567727699956],[3.366743023778256,51.29570655783304],[3.366723536820847,51.29573182621519],[3.366697672618439,51.29577192710942],[3.366685098323507,51.29580335752547],[3.366672384678143,51.29583469560989],[3.366657287366389,51.295871297066384],[3.366654368879014,51.29589516275996],[3.36665447250701,51.29592528479042],[3.36664877485169,51.295973108507425],[3.366632450361196,51.29606021871539],[3.366568619581254,51.29616439643777],[3.366435555290649,51.296371668955615],[3.366416643566755,51.29640370859701],[3.366398091555395,51.296447083285486],[3.366381086794548,51.29648140381184],[3.366369663739641,51.296522474680025],[3.366364046106107,51.29654575403398],[3.366307437452167,51.29676235604869],[3.366299072938263,51.296815348291226],[3.366286961166419,51.29688823573858],[3.366279612296494,51.29691499156205],[3.366246281669226,51.29703642221375],[3.366201971345752,51.297214845683705],[3.366201275074026,51.297217620838445],[3.366145020486822,51.29744564765223],[3.366134392889346,51.297484934091976],[3.366115287289083,51.297596002221745],[3.366108473739104,51.297639850450196],[3.36609924424766,51.297718901892935],[3.366091418806471,51.2977888966918],[3.366078011490151,51.29785214113135],[3.366073252203962,51.297898182899836],[3.366047692253094,51.29806443428995],[3.366003116125956,51.29823260321255],[3.366031711944497,51.298247575511205],[3.366074134099161,51.298270969823356],[3.366082738190125,51.29828397653382],[3.366094404977363,51.29830881478925],[3.36610452039913,51.298342797039666],[3.366124242419444,51.29844824564804],[3.366163359597866,51.29865356268365],[3.366190750806625,51.298773710055826],[3.366217143540738,51.29883530792953],[3.36624220480401,51.29888159778275],[3.36626690639952,51.29891655258119],[3.366359528624846,51.29900807197236],[3.36643907601448,51.299083899559406],[3.366487440982675,51.299125379116724],[3.366560907569675,51.299183028902775],[3.366704778385076,51.29928649680825],[3.366796322676608,51.29934401071305],[3.36695676794032,51.29942618734479],[3.367150237110349,51.299520535457916],[3.367290007952324,51.299583741182786],[3.367390993429285,51.29962235729961],[3.367466088980005,51.29964640800498],[3.367559581278335,51.29967608265063],[3.367644652895986,51.29969832830539],[3.367734942863899,51.299716078975344],[3.367829847219499,51.29973651705759],[3.367906310231597,51.29974584577975],[3.368060963508178,51.299761116415674],[3.368171821324373,51.29976780485102],[3.368315346745172,51.299775239664676],[3.368410650297615,51.29977689277634],[3.36846852860842,51.29977510943736],[3.368575535157271,51.299771570735096],[3.368721223303197,51.29976249891898],[3.368819657559177,51.29975170835101],[3.368914596744426,51.299742115847344],[3.369449524782123,51.29968126018523],[3.36950469979978,51.299678979912],[3.369628416874584,51.299690025795115],[3.369796110116246,51.29971532047091],[3.369939996295725,51.299734088325074],[3.370060435982709,51.29975766448802],[3.370565421107424,51.29987170119166],[3.370698716915922,51.29989972525873],[3.370790739419762,51.29991399702591],[3.370870049841119,51.299923822675936],[3.371164773402408,51.29995338393722],[3.371244121139385,51.29996887437104],[3.371392004061906,51.299997869585034],[3.371556422179928,51.30003569251633],[3.371757684385551,51.30009015738709],[3.371978358050967,51.30015979332182],[3.372462679177306,51.30030358407298],[3.373284308815609,51.30062071393351],[3.374135753027711,51.300941770141215],[3.374190231430094,51.3009618634084],[3.37426420497923,51.301001759533314],[3.374436669747253,51.30109478793762],[3.374572821204004,51.30115909098611],[3.374775354472805,51.301253313145324],[3.375077877680925,51.30141229112969],[3.375272163816118,51.30150493124991],[3.375443938731416,51.30160068847111],[3.37560901462354,51.301685720163704],[3.375931966913882,51.30183363024455],[3.375993957789599,51.301872104374],[3.376009776712176,51.30188028987683],[3.376058467083495,51.301905497063686],[3.376263347873563,51.30198887789973],[3.376312120437893,51.302011568892404],[3.37693086449773,51.30221745369616],[3.377025163855381,51.3022453363205],[3.377144245785786,51.30228371687273],[3.377555742055801,51.3024470876008],[3.37770748130345,51.30249304446889],[3.377841445688819,51.30254725379321],[3.377871096409162,51.30255925627308],[3.377905193168818,51.30257191991773],[3.377970591967722,51.30259621890448],[3.378079517722786,51.30265033737896],[3.377995966660734,51.30265527880588],[3.377928517871076,51.3026560925119],[3.377831783758614,51.30265747954302],[3.377774340772322,51.30265385346844],[3.377753400477886,51.30265252990536],[3.377702556237237,51.30265084290795],[3.377629021076616,51.30264327956168],[3.377518646720838,51.30263193321808],[3.377424378689316,51.30261636933649],[3.377369696728942,51.30260409635525],[3.377256159550532,51.302576601100725],[3.377150209549632,51.30254617979101],[3.376839110044731,51.30244819864194],[3.376691442669509,51.30255435026843],[3.374012697214723,51.30435563726401],[3.372692143443992,51.305243560639205],[3.372653193578841,51.30526974292981],[3.372426675872895,51.30542204258714],[3.371849144994701,51.3058151244202],[3.371834046295504,51.30582540955601],[3.371701325993431,51.305915737818815],[3.371148891941205,51.30629174520438],[3.370212970597178,51.30692874375582],[3.368210046160098,51.30829185822798],[3.366516206458355,51.30944451877801],[3.364806987930608,51.31060755192844],[3.36470706041198,51.310675550875295],[3.362885273692914,51.31191508450405],[3.3628585300378,51.3119332849984],[3.362747208207814,51.312009005357595],[3.360904812647184,51.313262131995785],[3.359677917903964,51.31409656301878],[3.359279377110741,51.314367608704266],[3.359030481149886,51.3145368733276],[3.358986308662399,51.314566907339255],[3.358708424683234,51.31475632786225],[3.358685537384344,51.31477193325849],[3.358378253017131,51.31498141241677],[3.358493599515957,51.31506299404695],[3.358721385986621,51.315224110273874],[3.360565161416354,51.316528124770514],[3.360584137010683,51.316541537185635],[3.361780895096453,51.31738789302129],[3.362223161161406,51.31770064622642],[3.362340496729804,51.31778362511938],[3.363647606658477,51.31870794501931],[3.363677853254437,51.31872933012513],[3.36442434027279,51.31925718747663],[3.365010910127906,51.3196719413586],[3.366775121095329,51.32091934653511],[3.366820022187815,51.320951091101584],[3.368907382738117,51.3224268514158],[3.368930509543732,51.32244320253162],[3.369207058947135,51.322638715371745],[3.369370400959132,51.322755050018415],[3.369906662719785,51.323136978819356],[3.370114222459383,51.32328479208825],[3.370116754800055,51.32328658922383],[3.370647241224323,51.32366439538265],[3.370649759664431,51.32366618327422],[3.370931938282485,51.32386713903006],[3.37093396914943,51.32386859479231],[3.371382397046965,51.32418792788501],[3.371793891002727,51.3244809682714],[3.372208743399542,51.3247763939517],[3.37232062128042,51.32485605805885],[3.372666204972647,51.325102145003235],[3.374567091492494,51.32645571946163],[3.375328398813465,51.32699779498846],[3.375435681415471,51.327074184730606],[3.375483603908699,51.32710830669819],[3.377982714681853,51.32888760799099],[3.380580899652037,51.33073725233622],[3.385340212618632,51.33412485001922],[3.384343276787298,51.33798824878169],[3.384334562532044,51.33802200419222],[3.383967557179625,51.33944408328193],[3.383513059440581,51.34120499472411],[3.383498482766052,51.341216261482614],[3.382843471154131,51.34172296527972],[3.38191397764902,51.34244197505698],[3.380955402156226,51.343183448942845],[3.379843145621037,51.34404374491471],[3.378892023510113,51.344779369947595],[3.378746898110629,51.34489161141265],[3.377607032853266,51.34577317823692],[3.376872984519071,51.34634085724358],[3.376228215566123,51.34683947542804],[3.375838279541826,51.347141019194446],[3.374867482186572,51.34789172868662],[3.374070757247241,51.34850781278248],[3.374068512828056,51.348543099938986],[3.373974176802786,51.350023747647285],[3.373945531952881,51.35047327399812],[3.373893199732918,51.351294675499894],[3.37370594744547,51.35423313969299],[3.373708460116827,51.354242264114355],[3.373820952632646,51.35465002982045],[3.374136704143095,51.355794422587955],[3.374544707008123,51.35727310491379],[3.374691663293724,51.35780570365135],[3.374990096247429,51.358887171416214],[3.373280412847973,51.36089338643343],[3.370057161133752,51.36471493438959],[3.36731387043663,51.367904312742134],[3.366247072209152,51.36914444851799],[3.365980490893822,51.36945711972144],[3.365426399358449,51.370107182391685],[3.36377030383726,51.37204997333609],[3.362971539772346,51.37298696136639],[3.36292991482386,51.37297743593107],[3.369660612879295,51.37785507741884],[3.369735518291377,51.37788992902048],[3.369791609481628,51.37794576369686],[3.370331191469152,51.37824734118094],[3.371735419720471,51.37890839426211],[3.372514739144227,51.379330811674656],[3.37346161563547,51.3799331894665],[3.373590097407334,51.379989023422254],[3.374327390677017,51.38035850891959],[3.375528080957476,51.38080629127586],[3.375545319964201,51.3808118846075],[3.375551435288491,51.38081493924381],[3.376486318572355,51.38115860053979],[3.37758482696383,51.381657816105054],[3.378358791484325,51.38193780837954],[3.378778808148031,51.38202576972397],[3.378839365132117,51.38203338585448],[3.379138165275804,51.38209280506623],[3.379168046147416,51.38210728306596],[3.379280956441399,51.38212120469704],[3.380661855297057,51.38229202961912],[3.382932217609532,51.38287436566658],[3.38297995942831,51.38288068029074],[3.383012690455921,51.38289442408087],[3.385402499902736,51.3834724987069],[3.387434290292069,51.384114052079426],[3.387622111213354,51.38414373552642],[3.387784874550801,51.38421273811666],[3.389977283507428,51.38475757912893],[3.393118118398415,51.385545759556024],[3.393158711324898,51.38555102156123],[3.393434761922995,51.38561637100393],[3.396757504967132,51.38626709723503],[3.396761366926015,51.386267504852896],[3.396769929348923,51.386269521222644],[3.399698415573083,51.38683687886685],[3.402639556252813,51.38784436994356],[3.40285465892936,51.3879111134236],[3.402868088546104,51.38791720421186],[3.406379804648819,51.388955180566086],[3.409098417402478,51.390013181333096],[3.409231412538241,51.39005736344122],[3.409273084892703,51.390077635037585],[3.41197283643822,51.39102099873105],[3.414543589559706,51.39192575581861],[3.414665592858149,51.39196415317403],[3.414685748623135,51.39197362012146],[3.41475514463754,51.39199594130566],[3.414828351577605,51.39202252572031],[3.414868919317813,51.39203254485045],[3.417498856198399,51.392878608813575],[3.417667111880294,51.39293264665572],[3.41786099149062,51.392963731718595],[3.418034603309495,51.39303753173889],[3.420860709567752,51.393745989212306],[3.420919906841781,51.39375365017568],[3.421286833028033,51.3938369549984],[3.422700260003827,51.39408794262228],[3.42279034511404,51.394096554788234],[3.422899838438283,51.394120373987036],[3.422955424744264,51.394127136893545],[3.423191734284217,51.39415597899007],[3.423217701938222,51.394158700250486],[3.42447463986796,51.39429309592461],[3.42455203317582,51.39429841809623],[3.426324610603937,51.39460571269649],[3.426332002281229,51.394608282584144],[3.42668327715005,51.39466789450773],[3.427002444189268,51.39469778081033],[3.4272360411193,51.394739704781614],[3.429028335357688,51.39491223658089],[3.429376118801752,51.39491503089825],[3.429406178120455,51.39491954575705],[3.432308810771815,51.395013695537195],[3.432326188136776,51.39501198200946],[3.43240750170133,51.39501742762509],[3.432509494969969,51.39502425394253],[3.434501496106448,51.395023387530344],[3.43606478777685,51.394844897605374],[3.436129664718383,51.39481931654246],[3.436198667406419,51.394811183945194],[3.43827783400774,51.39426208862149],[3.438871953435246,51.39410517689903],[3.44025877828685,51.39373889122734],[3.44290104933493,51.394348651049135],[3.442922654326578,51.39435125017563],[3.443015094193929,51.394373830825415],[3.445748495297863,51.394950556154434],[3.448278341262925,51.39576391439721],[3.44924655250881,51.396075177932524],[3.449274017743867,51.39607958156938],[3.449303252555273,51.39609307743372],[3.451981957576013,51.396923195960944],[3.45298995511969,51.397235546883266],[3.453071886296819,51.397248261875184],[3.453148676173836,51.3972822358458],[3.453852082156657,51.397434315377595],[3.457403834550102,51.397992901901986],[3.45834066495167,51.39807331300921],[3.458435121416169,51.398063169889355],[3.458519221458768,51.398073947905345],[3.460281836464038,51.398057416291536],[3.46155646666059,51.39811259142734],[3.463120857785587,51.398299621619046],[3.463983660490066,51.39839111865247],[3.467336451274142,51.39914085008729],[3.467433553093052,51.39915220438786],[3.467711322592737,51.3992128276308],[3.469950900566091,51.39957393048392],[3.472419512468044,51.4003917104483],[3.472550159477693,51.40041315072701],[3.472683302996267,51.40047202473123],[3.473931008434583,51.40063981592321],[3.474323724531562,51.40070426977431],[3.474371877984621,51.40069909003868],[3.474417043742729,51.400705171720375],[3.475206020995861,51.40070742521265],[3.476178370105331,51.40071019820001],[3.476691449039948,51.400711658472275],[3.47904062571224,51.401287418618374],[3.479290184647972,51.401319024291894],[3.479963169164013,51.40144240424945],[3.481873263320806,51.401624622559],[3.483604612668944,51.40206626040296],[3.486437171590769,51.40304322648128],[3.489235963000279,51.404332910703374],[3.490040092712202,51.40462546059426],[3.491680754869662,51.40485746254495],[3.492153402540076,51.40480660768116],[3.492946295862511,51.404924910939116],[3.494238786287002,51.40553623097916],[3.494394767777194,51.40559379621082],[3.494521743348912,51.40565926073566],[3.49612619481421,51.406298927708754],[3.496639328658164,51.406551925206976],[3.496710302709876,51.40680985271652],[3.497608294376338,51.40769945617695],[3.498025859320791,51.407940486945186],[3.498271351911147,51.40806448258233],[3.49897518131581,51.408420005877375],[3.499525375552972,51.408889980256504],[3.499877598866226,51.409153780682445],[3.501251693903651,51.40976069525139],[3.502892599163435,51.40999254955555],[3.503369126450995,51.409983761260314],[3.504083078473962,51.40994580107035],[3.504167378977998,51.40993369450608],[3.504340349952332,51.40992724558161],[3.504917497163685,51.40987457369679],[3.505908479029812,51.41002584363293],[3.507123690743588,51.41034605211311],[3.507218638148454,51.41035884858947],[3.507986368524887,51.41050941352538],[3.511127750235179,51.410885766672955],[3.514558613830955,51.41140325379899],[3.515458751444189,51.41147751445351]]],[[[3.595545095993486,51.598767904093485],[3.595777818767909,51.59875986317605],[3.595982650519506,51.598767918978595],[3.59669546111371,51.598811318939156],[3.597728536160078,51.598891667301814],[3.598578644844361,51.59890302017863],[3.599510332914888,51.598859046299296],[3.600539417201488,51.598771870797286],[3.601479279228765,51.59856784152462],[3.601739104297728,51.59849871706882],[3.602073437477864,51.59848299998928],[3.603087848817305,51.59833360711432],[3.603882376716876,51.59811422402075],[3.604790570570073,51.59784286853421],[3.605194759533011,51.597717840923025],[3.605877706505514,51.597559506052626],[3.606911421250842,51.59730766777883],[3.607344790010174,51.597192517076465],[3.607600435652992,51.597133448353446],[3.607805311641825,51.59710785098931],[3.608605462593742,51.5969957056526],[3.6090869512888,51.59693247200518],[3.610045880671508,51.59685173448169],[3.611286026185694,51.596677220245205],[3.612372405823753,51.59648663959934],[3.613542813832182,51.59627179086906],[3.614225732535342,51.596092531580446],[3.614749890178167,51.59596680910582],[3.615272952206443,51.595857969679294],[3.616147243452409,51.59570476763594],[3.617184622386818,51.595455924799936],[3.618376937669997,51.5951521749959],[3.619423664485696,51.59488875464965],[3.620514959718592,51.594608853803216],[3.621880049089425,51.59415427607765],[3.622617953740988,51.593857044455824],[3.623958687722889,51.59325403945923],[3.6245288049486,51.59301082407952],[3.625234263304204,51.59266988828053],[3.625644427735335,51.59248233488301],[3.628394485785821,51.58949992811291],[3.624624740127405,51.58585598686127],[3.626251042383174,51.583740781057635],[3.628165272917889,51.582002089196365],[3.628196503460863,51.58145706695985],[3.628155967445993,51.580957939595876],[3.628244425419375,51.58073271272178],[3.628399711969217,51.5805799829242],[3.628352709076039,51.58039618631971],[3.628426098994624,51.58029719149338],[3.628372636337228,51.58006822884738],[3.628354951479569,51.57967755483724],[3.62817675093467,51.57934234562585],[3.627968333643863,51.57906566734142],[3.627901665336319,51.578835750479385],[3.627962241207496,51.57871551656894],[3.627854442848616,51.578406872074346],[3.627788086314617,51.5782110064482],[3.62770002842998,51.57789569134371],[3.627729520550267,51.577469990399365],[3.627973526679571,51.57704729339873],[3.628003346887393,51.57678612161588],[3.628174951555342,51.576330823205105],[3.628269235269084,51.57618399036449],[3.628534854074513,51.57604770094935],[3.628522497623082,51.575939126801075],[3.628303294582605,51.57582641532896],[3.628150522896506,51.57564331942527],[3.628019569868774,51.57540732852473],[3.627970290252771,51.57515998018371],[3.628045955058459,51.574972320594526],[3.628138772057699,51.574647365983225],[3.628175540597814,51.574376229456355],[3.628329932827717,51.57414884814604],[3.62850249484407,51.57373923493437],[3.62875934626125,51.573354804073894],[3.629185477577065,51.57291699866073],[3.629803525792783,51.5724558255837],[3.629857701407282,51.57236080250815],[3.629885834802923,51.5720403582135],[3.630239253147476,51.57159075729935],[3.630695589365887,51.57120671373969],[3.63154304115898,51.57068074208297],[3.632005481038811,51.57044984674116],[3.632321046491767,51.57025937686996],[3.632645293009793,51.570039826704104],[3.633230013836548,51.56968763883537],[3.634467608935131,51.56883863234551],[3.635325019633266,51.56829340914262],[3.635809612515234,51.56805366102184],[3.636061161905273,51.56790479151438],[3.636489393875114,51.56780244134414],[3.636558696950785,51.56777025997864],[3.637989720457259,51.56683529849043],[3.638888530449322,51.56625955379295],[3.639086299248581,51.56611434163882],[3.639426972758467,51.565775599695264],[3.639500512709877,51.56564634790631],[3.639486357439769,51.56554041831702],[3.638979854356588,51.56451115753366],[3.639223644105442,51.56437983151552],[3.639265327840264,51.56425706195649],[3.639586985468812,51.56406565733148],[3.640147135946632,51.56387546189023],[3.64068401486035,51.56338080738941],[3.640936964044752,51.56311869685644],[3.641055582620168,51.56286165418439],[3.64135929073125,51.562709696143614],[3.64165499750193,51.56262022682589],[3.641997822567592,51.56250611655095],[3.642259011864525,51.56217490040491],[3.642527562744862,51.5619053777032],[3.643111504106773,51.56157358352078],[3.643343542971646,51.56147182294712],[3.643741989164127,51.56145121046736],[3.643906111238879,51.5614179940656],[3.644046005302875,51.56125881150187],[3.644347505932299,51.561154416999585],[3.644799156121616,51.561093274652364],[3.645034073452874,51.56111292374995],[3.645538822537849,51.560841440222475],[3.64873307005395,51.559431403545595],[3.650176625121627,51.559127211998934],[3.650388605604724,51.55891675171394],[3.652244563728385,51.5586792586261],[3.652774814089236,51.55876833987597],[3.653173426248456,51.55869768461388],[3.653749870986554,51.557627097303154],[3.653901727875223,51.55740833989547],[3.653919629003256,51.55720084722555],[3.654514957964166,51.55702035716636],[3.655865315696011,51.55671004851987],[3.656660958168038,51.55656963656866],[3.656780120921876,51.55650213956599],[3.657261822563287,51.556004850139125],[3.658066379533099,51.55516329537315],[3.658429283578062,51.55494875200808],[3.659128309959122,51.554264740128396],[3.659874427806534,51.55358988031133],[3.660406095528244,51.55329234542759],[3.661164501057494,51.552895784641436],[3.661731113504043,51.552538156152565],[3.662313667343777,51.55214329755916],[3.663353691708545,51.551555591625956],[3.663607204779623,51.55149718126916],[3.664292874480806,51.55114464128112],[3.665175366861058,51.55080862763989],[3.66557461067807,51.55074593265804],[3.666350306355576,51.55074928622918],[3.666852554676839,51.55068884109858],[3.667570909921186,51.55054756886259],[3.66801981743005,51.55039863298592],[3.668369172466797,51.55035844347643],[3.668749032477064,51.5504823346344],[3.669161360105098,51.55050240509301],[3.669387799398722,51.55045029101991],[3.669758542676625,51.55021476422313],[3.670029058203163,51.54999076334821],[3.669898783333101,51.54994620754976],[3.669815482772237,51.549896498342385],[3.671071285112796,51.548715289280594],[3.671289067248622,51.54860576708533],[3.671497093741614,51.54840481344001],[3.671638268441717,51.54822104732026],[3.671661541459547,51.548072554145726],[3.672509673585332,51.547180757021565],[3.672661782018618,51.54714373748026],[3.672727493933214,51.547065730722636],[3.672734468065062,51.54692948575633],[3.672898992741542,51.54652183307447],[3.672960401638354,51.546334305823365],[3.673207372928516,51.54625058815458],[3.673259502270927,51.54615723315537],[3.673562378017672,51.54602450146078],[3.673671723699012,51.5458320759779],[3.673908229678784,51.54547065403571],[3.674099597757291,51.5452630146139],[3.67424035414749,51.54510700150497],[3.67466077685744,51.544996020859585],[3.674854928660876,51.54428908043586],[3.675379220931124,51.543617751320866],[3.6759385396541,51.54303198149237],[3.676481830231723,51.54267311491348],[3.677064186520405,51.54207674502236],[3.677344936351895,51.54150196750642],[3.677550018251503,51.54091910556418],[3.677587233304245,51.540417145122525],[3.677558485567051,51.54012369386823],[3.677735088100853,51.5400376695657],[3.678105679783682,51.539450935245036],[3.678123599421955,51.53892785279771],[3.678432717204235,51.538494105502004],[3.678971177583716,51.53748184868629],[3.679311458392597,51.53697794490974],[3.679787000973874,51.53588623426856],[3.680086939500149,51.535392706919716],[3.6802937886275,51.535119115393314],[3.680105032104568,51.534886609505925],[3.680210393083967,51.534566637324154],[3.680371683530084,51.53430154107556],[3.680499088228234,51.53417942605835],[3.680635715807545,51.53387314408742],[3.680897827623681,51.533399020691476],[3.681257330591535,51.53250535638019],[3.681624221975559,51.531924455268225],[3.681981587842986,51.5309783351398],[3.682475061720022,51.53007528625296],[3.682967542034439,51.52936846159362],[3.683685085047884,51.528344475696954],[3.684139232697071,51.52767570073],[3.684588080596825,51.52720957848285],[3.685106665540063,51.52652095362662],[3.685653992523496,51.52605277428421],[3.686185450324174,51.52547495822893],[3.686528427215388,51.525100849156125],[3.686992007732055,51.524499601420565],[3.689132716966625,51.52247805842228],[3.690382743368099,51.52133175622526],[3.690753810424102,51.52105462628416],[3.690884086685335,51.520788157844585],[3.691591512781363,51.520512089375146],[3.692604374426687,51.519860833277164],[3.693366945452712,51.51925471123747],[3.694749160539673,51.51806735246358],[3.695717404848128,51.51708278252719],[3.696660368346569,51.516457226167944],[3.697640378024447,51.51559562770833],[3.699406674940243,51.51581497230984],[3.700173691959729,51.51594478988711],[3.700664073920818,51.515893435964],[3.70152375008419,51.51573368392756],[3.702068375236027,51.51571547213839],[3.703013089260383,51.51574932840554],[3.703920165769739,51.515807357805166],[3.704899148778102,51.516260559005275],[3.705172021873683,51.51657518468449],[3.705591212383749,51.51671495193852],[3.706164128356315,51.51671128800265],[3.706710180362377,51.51669526863311],[3.707570080939958,51.516781188656196],[3.708666686297327,51.51697105193203],[3.710570276199291,51.517403048626456],[3.711925276799569,51.517800534610025],[3.712829472013816,51.518153333679706],[3.713592823462507,51.518545237803586],[3.714594334974455,51.51922059456397],[3.715013481827099,51.519463256314616],[3.716050489771908,51.52006359917742],[3.718366440866749,51.52145244534844],[3.719631630519157,51.522071460886636],[3.720222741799217,51.52224380042551],[3.720705625346509,51.52232935617625],[3.721484212666422,51.52225929897836],[3.721817972383225,51.52270193748762],[3.722176510240972,51.52277246234733],[3.723261667090746,51.52279439117365],[3.723853990155786,51.523020086443786],[3.726055352065879,51.52375697913253],[3.725695105176128,51.524846551235065],[3.725275259028835,51.52521290873512],[3.725234185587829,51.52541584530081],[3.725084431786707,51.5257227267907],[3.725007086420788,51.52592708900731],[3.725130486232045,51.526198606103186],[3.725186853445432,51.526383447330616],[3.725174196228108,51.52660383370108],[3.725145553563201,51.526706822845284],[3.725272884715286,51.52683544193651],[3.72543591759998,51.527228135569466],[3.725710059114947,51.52812436125864],[3.725908046217991,51.52868833879127],[3.726151912526055,51.52920628206698],[3.726422664186634,51.52962566951],[3.726429008007516,51.52977154531741],[3.726591950979776,51.52988207734336],[3.726928748040544,51.530372265511865],[3.72738736259314,51.530894876295825],[3.727490974557505,51.531035256562674],[3.727582902297161,51.531141559578614],[3.727706644159883,51.53115624555861],[3.728130134224759,51.53147077885159],[3.728587431292824,51.53174622458677],[3.728766213181439,51.53202658795319],[3.729047008219625,51.53231406298005],[3.729154105075712,51.53243027147559],[3.72963896896393,51.53300234107943],[3.730279321498525,51.53378278687827],[3.730539298891398,51.53407443993149],[3.731167941015388,51.53427683205954],[3.731206494864675,51.534482283707966],[3.731249369043769,51.53478674294148],[3.731385638297007,51.535045776857075],[3.731708220611227,51.535422516893426],[3.731682289229708,51.535429979884164],[3.731252879777476,51.535532891039615],[3.731245877434359,51.5363428285084],[3.731524351876587,51.53713661124145],[3.731740580463022,51.53803224232848],[3.73197200298711,51.53861078746819],[3.732137700017395,51.53888478339528],[3.732537660402767,51.53925796895771],[3.733109295403325,51.53964044340758],[3.733588839319212,51.540140309265325],[3.734014844043184,51.540301572296976],[3.73467928879693,51.540447938609546],[3.735495581911712,51.540593804902464],[3.736834097743368,51.54108131757375],[3.737404270092526,51.54129805127017],[3.73765771772763,51.54143485586786],[3.738183979639127,51.541585750756354],[3.73877304405794,51.54189963168711],[3.739341344490732,51.54216849944118],[3.740095062246452,51.54251450729216],[3.740864261349503,51.54280482727619],[3.741994193186043,51.543280961259015],[3.74330164983598,51.54388814177851],[3.744082117727288,51.544198161325774],[3.744987132983916,51.54445217326952],[3.745912984184986,51.54462541529137],[3.746913654680016,51.544712135952494],[3.747606503279772,51.54471999104227],[3.747943426554207,51.54465578201049],[3.750365367322886,51.54318978976567],[3.751678999010577,51.542964094186395],[3.753038893513632,51.542698044858774],[3.753950255018166,51.54260924477821],[3.755013611750441,51.542696763661326],[3.755429965614461,51.542666241272194],[3.756187706015141,51.54277930093413],[3.757030501569264,51.542852547300306],[3.758055374657987,51.54276436404241],[3.760423892902731,51.54277851497582],[3.761752375492353,51.54276252797572],[3.762245322079009,51.54280385337827],[3.763474846962736,51.542624350974215],[3.764063243405529,51.54259249383085],[3.765074781083983,51.54266802626221],[3.765872042260407,51.54263623684257],[3.76655470817015,51.542719301810536],[3.767014981061869,51.542710285469326],[3.767480471495996,51.54260264583429],[3.768058022294409,51.54257523917274],[3.769554809434065,51.54261459165617],[3.771708992919971,51.542609894146416],[3.772163961473908,51.54254074806037],[3.77417627681062,51.54261750827683],[3.778407770701261,51.54277440252054],[3.77923303817899,51.5427690149464],[3.779603766005436,51.5427341645604],[3.780024218453622,51.54266551991823],[3.780578953814674,51.54255613423534],[3.780706603103925,51.542673241765655],[3.780898439957443,51.54273409045843],[3.781038755774453,51.542731128907825],[3.783097752315474,51.5423830905296],[3.78610394149473,51.5418798854947],[3.788456964187527,51.54147381363178],[3.789079413818745,51.541805694816254],[3.789388435727368,51.541983124821265],[3.789435510198264,51.54189821877443],[3.789904415840239,51.54149318039302],[3.789979645241212,51.54146117925095],[3.791150413263564,51.541214326580985],[3.791979939246595,51.54110194319912],[3.792375742760527,51.541086804506364],[3.792582772415409,51.541076918432886],[3.794039707973115,51.541333216582146],[3.79524560978052,51.54159618992221],[3.795571450791547,51.54175014364068],[3.79578858486098,51.54176795314316],[3.796196245274243,51.54178034679056],[3.7968516994971,51.54192851837009],[3.797191523607272,51.54199706318549],[3.797773739769234,51.54204151203264],[3.798134561093041,51.54208523041752],[3.798491318957915,51.54219280295774],[3.798773484983203,51.54213043655266],[3.799004829535821,51.54210847231398],[3.80015607789327,51.54215607619497],[3.800339562758461,51.5421425931121],[3.801065974371909,51.542198108858045],[3.801309410516863,51.54224934863684],[3.801953627720171,51.54245783308713],[3.802477157406548,51.54271603731797],[3.802803905583064,51.54294989566144],[3.802867440732682,51.54312567721162],[3.80313840991191,51.543434420681976],[3.803590844122609,51.54390078296763],[3.804109769040425,51.54431584795964],[3.804201922204907,51.54435493578941],[3.804777010432192,51.544503636555156],[3.80485731780519,51.54455168834558],[3.804973689090513,51.544983754003056],[3.805103820637837,51.54514417299419],[3.805450972368106,51.54533456317934],[3.805934942658692,51.545472782707776],[3.806684474713616,51.54566030733983],[3.80820441589707,51.545949220600654],[3.809498992537732,51.546255739164934],[3.810652432117569,51.54657789651178],[3.811832158496926,51.54696325523366],[3.812644637565604,51.54721805333789],[3.812542646721587,51.54769652321819],[3.813707253445432,51.547980601577116],[3.816120804806039,51.54876470129931],[3.817776501205955,51.54919985566648],[3.820689133864112,51.54936576308663],[3.820779279190674,51.54901974921366],[3.821021198236308,51.548700168705665],[3.821396424834709,51.548527257718675],[3.822001079718436,51.548444541576636],[3.822404498773995,51.54840781757736],[3.822796172695728,51.5483662780988],[3.823846365462026,51.54842213782637],[3.824933643735641,51.54848312280264],[3.825586077325851,51.548517393976084],[3.825880487075485,51.548512041641],[3.826564971034011,51.54853512047923],[3.827567546367287,51.54851366167434],[3.829019230843815,51.54842852049117],[3.830392839720744,51.54832666945486],[3.831491945904198,51.54821760575705],[3.833114123776521,51.547938890084396],[3.835103206380248,51.54760137711291],[3.835763852539166,51.54744990393826],[3.835976832621233,51.54732034471195],[3.836445795844965,51.54721973244986],[3.837080368282681,51.546904161756025],[3.837727118349912,51.54650397336198],[3.838544389801486,51.546017777827664],[3.838913642558552,51.545727718200226],[3.839541666562743,51.5456582301067],[3.840396334422053,51.545494197736396],[3.841132831187192,51.545300726521425],[3.841612449113613,51.545050425318514],[3.842492716226284,51.544844912886504],[3.843558080342821,51.54472660623304],[3.844229805683789,51.54452064487366],[3.844605015420832,51.54438276615325],[3.84480029392933,51.54420691067438],[3.845235627885188,51.54394567175334],[3.845370980104675,51.54372229443528],[3.845364569946047,51.543583646963754],[3.845277595074234,51.54336426689546],[3.845433482641727,51.543026843671186],[3.845747862035628,51.54243862268378],[3.845864248464518,51.54195519257372],[3.845859026422542,51.541781913333196],[3.845687804904266,51.54158913823797],[3.845821033374365,51.54142807808214],[3.846663294432233,51.54084841814858],[3.847543585902282,51.54030599562901],[3.848164643617698,51.53999947471344],[3.848814849496986,51.53971191670799],[3.849340851898416,51.53957252060066],[3.849610902020149,51.53962484575186],[3.849796417235382,51.539534384544254],[3.850118130189326,51.53949100662336],[3.85064957322929,51.53946548059407],[3.850952485164219,51.53948223889856],[3.851331693556399,51.53938968324967],[3.852308302158867,51.53930380779191],[3.852543469696936,51.539231417199225],[3.854749374851588,51.539074567844416],[3.859139518801395,51.53875553468159],[3.859830405247665,51.53856743685161],[3.860088619680047,51.53844322660209],[3.860531815854784,51.53863699039732],[3.861160541932487,51.538763647576125],[3.86229765772503,51.53894223864267],[3.864334304095201,51.539278850117924],[3.865970058924384,51.539549218615186],[3.866141780448286,51.53956920064282],[3.86748851133982,51.53982046552945],[3.869709788225966,51.54151248074123],[3.877784077145495,51.54365779111301],[3.904870046953363,51.54910183912814],[3.920658285912243,51.54868075905604],[3.930296728336426,51.54623023461439],[3.935801929093339,51.54089585255554],[3.934436890039515,51.53444215561467],[3.952051324988312,51.53261918231021],[3.96594940676482,51.5306764906661],[4.007742007658659,51.52279005286335],[4.054037843368152,51.503316617740715],[4.058273704258156,51.49983196043867],[4.061587152699073,51.475588516136604],[4.079451001314467,51.4590872423273],[4.084463386961626,51.45892755485267],[4.09347483298747,51.446658056493106],[4.103342707756019,51.4451669041462],[4.106743580872634,51.44342433161846],[4.124288725400663,51.436333993724716],[4.130072929571607,51.43677403322518],[4.131379641921041,51.43580824135463],[4.133215605710585,51.431809642163124],[4.158451004551742,51.43623137273252],[4.178176135806094,51.44141766928769],[4.200105789459029,51.440015767541915],[4.222011339821997,51.438375785437785],[4.225652936311317,51.44040703238772],[4.225290293568663,51.441976046821004],[4.224531510490119,51.446012217220535],[4.223418700195913,51.45143077510484],[4.222640243292487,51.45523753266145],[4.222429676639164,51.45716695095021],[4.222702041205158,51.45789394971469],[4.224947717812093,51.4618619877885],[4.225002469954124,51.46191575060234],[4.22530633969122,51.46203109948064],[4.225853549101034,51.462107427959815],[4.226230182436788,51.46202748352132],[4.230447965193992,51.45920931986179],[4.234813005402636,51.456900975798845],[4.234927180778963,51.45664402538893],[4.234153123850185,51.45603043728183],[4.235223814488473,51.45555850356666],[4.235662887214247,51.45522620961694],[4.235820274681663,51.45462611735121],[4.23666459298911,51.45030829465879],[4.239476107255189,51.450526747947805],[4.241050356406232,51.446307783432744],[4.24199311683062,51.44365354210858],[4.243098369348851,51.440358645617465],[4.244637160074509,51.43611560880949],[4.245169921563027,51.43489773143974],[4.246260048352729,51.43513121050548],[4.246854595392824,51.43523944946183],[4.247096073812792,51.43532230111345],[4.247789318753004,51.43548398912459],[4.251185425400098,51.436286209513995],[4.256622288060623,51.43758115766383],[4.265421946661207,51.439694420197895],[4.267810085404082,51.44024512644919],[4.268151117754686,51.44025373777293],[4.283082006671303,51.43965995416459],[4.282664486172757,51.43910235466745],[4.281865044520045,51.438004379289254],[4.280375086128373,51.43600713034156],[4.278808320087007,51.43470626810486],[4.279357708495194,51.434367624365045],[4.279373043910387,51.43429467723146],[4.279355927688675,51.43404979639828],[4.279234788346158,51.433926758714854],[4.278880009521636,51.43340657926121],[4.278145715107919,51.43313970811344],[4.276793459951821,51.43236314083754],[4.276407067094106,51.43187544594497],[4.276002948003636,51.43085872542639],[4.276236750163085,51.42880794398547],[4.27585369154478,51.428019807905095],[4.275833810316983,51.427632040395714],[4.275711113099331,51.42612790602032],[4.275865253865688,51.4250540892379],[4.275488630031507,51.42485151974013],[4.275240610299369,51.4247181170142],[4.270859450109678,51.42236146754304],[4.270117956128751,51.42195685636836],[4.269759242085618,51.42176302441633],[4.269574472773595,51.42166317954359],[4.269322588246396,51.421527542517076],[4.266728687162792,51.42013374386561],[4.266576427095274,51.42005191561069],[4.266490090303025,51.420002183594654],[4.266446940828112,51.41997947520451],[4.266403777861268,51.419945619789026],[4.266367835283,51.41991632845517],[4.26632455065806,51.41987572977607],[4.266303108456091,51.41985314005159],[4.266285116052893,51.41983058347835],[4.265320062677818,51.4183070366369],[4.265291246956936,51.41826864430084],[4.264746206423394,51.4176324324524],[4.263732326876892,51.41644910086939],[4.263757585276965,51.41626591498551],[4.264082479018149,51.41403027304583],[4.264483098359216,51.41298454329086],[4.264591764210011,51.41272397915154],[4.265259694914058,51.41112236974241],[4.266030337601345,51.40926648053878],[4.266492593719276,51.408167391238045],[4.266743422911053,51.40739712461604],[4.267181957820216,51.406057948939875],[4.267664023374276,51.40458788110912],[4.267933295011871,51.403766675235964],[4.268524370271788,51.40199343021741],[4.268987249393984,51.40053917425181],[4.2690164331255,51.40048307245764],[4.269061105275806,51.40034738298701],[4.269055758903352,51.40018731994664],[4.268903661853526,51.39618270784025],[4.26896225516668,51.39602002183766],[4.268928809094255,51.395231741748994],[4.268921520498019,51.395037805836395],[4.268911065312978,51.39478663082706],[4.268862164467686,51.39361120750936],[4.268759810958251,51.391184895555654],[4.268756991765764,51.391134015303365],[4.268740172726512,51.390688814224944],[4.268709528283024,51.389965895859994],[4.268666351424669,51.388886174558735],[4.268632742792657,51.38816821678248],[4.268633666125533,51.38812644276396],[4.266376856042735,51.386560228486886],[4.266349091995639,51.3865406252609],[4.266657499969184,51.38609857723186],[4.266873999078379,51.38577764076519],[4.267654077845494,51.384621192297544],[4.267984984302875,51.3841305982681],[4.268382119786394,51.38354588139882],[4.272160749794114,51.38326633403092],[4.272479687588318,51.38324164307937],[4.272852858831643,51.383212732300166],[4.273697757709798,51.38314987969061],[4.273979702965277,51.38262859691011],[4.273894258066431,51.38261200441953],[4.274285111828626,51.38185822472753],[4.274315260874127,51.381800063321236],[4.27436289529686,51.38170820566989],[4.274415068310864,51.38170299546912],[4.274435556569052,51.38166868963884],[4.274556693319396,51.38167015163719],[4.274686463936863,51.38141521857662],[4.276992204956369,51.37688502055471],[4.277424647337932,51.376035260261546],[4.244316015758437,51.374861192907815],[4.232929374410845,51.39233240496059],[4.217606278234054,51.39816668783146],[4.208731846221273,51.398463873930744],[4.204968061559872,51.39896514065668],[4.154315504739782,51.39291192476895],[4.136612402694007,51.39501571184999],[4.079774745460867,51.40669903750258],[4.062007888165372,51.41266541208192],[4.050189637099911,51.419578456869885],[4.045083317868801,51.42600140333536],[4.029631443682759,51.433023368394714],[4.012490237849962,51.438665970142786],[4.006785861187092,51.43894022026923],[3.995462887078345,51.447975282910626],[3.987212406440613,51.45240743969177],[3.966193248937237,51.45556049638741],[3.934161960805109,51.44564570696102],[3.929136480745119,51.436350364973144],[3.920185105565974,51.42488384402455],[3.917165100297201,51.418202247954326],[3.900852027938069,51.39376746871478],[3.893814283978652,51.39277852208246],[3.883135024706432,51.39416053360698],[3.874835248004778,51.39613883840704],[3.867885402182639,51.39553603672463],[3.862584690216992,51.39203263141927],[3.856736115779373,51.38818016235835],[3.818700612928569,51.38363796942348],[3.811720526019484,51.385233973811665],[3.799510534288859,51.39259306274301],[3.790053855012126,51.39755232000809],[3.775398505956971,51.40314030742623],[3.762020177891254,51.40949947143122],[3.735477271286479,51.410052475824415],[3.730338301969559,51.41063585388061],[3.725555684950106,51.41248272762348],[3.715868978982864,51.41867346424234],[3.707317947324494,51.42441228739219],[3.705143416761196,51.43151027669763],[3.695117434606944,51.43619306954088],[3.679003693858294,51.443959632457805],[3.671677976484381,51.447475256359006],[3.654833728204029,51.4454821966933],[3.634590113674201,51.43989342176535],[3.608378352213879,51.437347903182065],[3.599628520431287,51.43891334669237],[3.594937267374009,51.43968646913092],[3.582131319101193,51.43903047828657],[3.575718318785112,51.437510545132646],[3.564244433018116,51.44133260584245],[3.562184102866023,51.44263038828444],[3.561112570038003,51.44308522150363],[3.560887579299667,51.44320140023359],[3.560392254647915,51.44349957691547],[3.560173689062438,51.443648086304925],[3.559939707103734,51.443833341223915],[3.559670388365029,51.44396875549493],[3.558932571411153,51.444352484617546],[3.558428156944657,51.44459762789752],[3.558030928167731,51.4447906769215],[3.557178456844353,51.44529765692522],[3.556567546882861,51.44562926573747],[3.556136388205952,51.445905379863696],[3.555937740531472,51.44602019165607],[3.555253355206234,51.446592011747946],[3.554203870917288,51.44648591618122],[3.553354014071955,51.44632498690539],[3.551375367705795,51.44629410762115],[3.549537760585897,51.44666815245286],[3.548785213257016,51.446992590074956],[3.548178358888709,51.44720132661932],[3.547076743408796,51.44775349432243],[3.546317765694938,51.4483247880569],[3.54458744937928,51.44913046308451],[3.543562972457367,51.4499036113842],[3.543528479129701,51.44992963364071],[3.542187377441942,51.450486386641245],[3.540972529330206,51.450950343143475],[3.540877995738195,51.450986445991774],[3.539988089616305,51.451326293941015],[3.539150668766358,51.45172734795363],[3.539062253582351,51.451769686905486],[3.537686798701138,51.4524283656211],[3.537602886121463,51.45246854519142],[3.536569813920456,51.45296324563312],[3.536531427409439,51.452979035684066],[3.536432410424863,51.453019748026435],[3.535048402388804,51.45358892044455],[3.534949762511539,51.45362949369208],[3.533515986508047,51.45421910312514],[3.533417110155313,51.454259761254505],[3.532016386005675,51.45483574449731],[3.531922219744211,51.45487446237316],[3.530552164617385,51.45543779872615],[3.530058506622821,51.455715090069184],[3.529990639319993,51.45575320010832],[3.52866072984106,51.456500177129335],[3.528601136745413,51.45653366211948],[3.528401429683108,51.45664581302611],[3.527145078078436,51.457429107756504],[3.527081902310994,51.45746850469194],[3.526025330589214,51.45812721507205],[3.525772322221654,51.45829135859907],[3.525696200179612,51.45834075269097],[3.524512218605797,51.45910889248858],[3.524439036089217,51.459156372746286],[3.523707291764981,51.45963110224943],[3.523187254008298,51.46003698747879],[3.522990097810163,51.46019087798751],[3.52197120336082,51.46098609416242],[3.521907092596372,51.46103613640705],[3.521676087929079,51.46121643775715],[3.519725900662331,51.46293764472862],[3.519647767373141,51.463007645470974],[3.518057206718677,51.464435865340214],[3.517686882664182,51.46474897663032],[3.517623762076818,51.46480235005377],[3.515852395596231,51.4662999473239],[3.515434864759151,51.466674114781654],[3.515390402865088,51.46671396763312],[3.514134838657291,51.467839056558326],[3.513251995019556,51.46877198142415],[3.513203640073418,51.46882308127456],[3.512640862857376,51.46941774127675],[3.512458571803146,51.469586310599894],[3.511426935866199,51.47054025262598],[3.511368060204866,51.47059468901924],[3.510970486592964,51.47096232910952],[3.509656277330589,51.47230964164546],[3.509593443759527,51.47237406512703],[3.509074175385228,51.47290641088246],[3.508129210246644,51.474209238178425],[3.508077183892539,51.474280982521535],[3.50790874115699,51.474513197585416],[3.506985648408731,51.475751590315944],[3.506907507529314,51.47584828524603],[3.505678695761911,51.47725769060878],[3.505632155217084,51.47731044406139],[3.504292347719272,51.47883031322501],[3.504238670842772,51.47889121349421],[3.503537873185022,51.479686157086334],[3.502950406601166,51.48028685669059],[3.502888385867795,51.48035027392907],[3.502362803375575,51.480887695132836],[3.500599023944087,51.48281134598849],[3.4993246969301,51.48413913472613],[3.497989869761925,51.48533099812396],[3.496993694436038,51.48636298295839],[3.496903782783674,51.486459193246134],[3.496853492170925,51.48651299750563],[3.495873446600205,51.48756172350898],[3.494979523460524,51.488416091509976],[3.494528665624217,51.48896258442492],[3.494213897330147,51.48945808455095],[3.494208693524966,51.48947688970328],[3.494309283331386,51.489390150964354],[3.494120317986107,51.489566002208235],[3.493257668783818,51.49040321608387],[3.492455011864894,51.49115615646272],[3.492208644138902,51.49138443305861],[3.492068956335384,51.49148711425145],[3.491977208579253,51.49155153582948],[3.491742551557409,51.49167977281037],[3.491696316291022,51.49170371062729],[3.491604581343746,51.49175121155072],[3.490560890645126,51.492291648778895],[3.489886387637344,51.49259316111808],[3.489814561437504,51.492625277421176],[3.488926006270327,51.4930224549051],[3.487752436209717,51.49362368183434],[3.487685867976569,51.493657770472915],[3.486567134894005,51.49423087394463],[3.4857262447821,51.49469057921957],[3.485681729518572,51.49471491135656],[3.485296566147302,51.49485829694631],[3.484536658726572,51.4950721033911],[3.48444355414021,51.49509828639908],[3.483852418516765,51.49526460786209],[3.482931985457852,51.49547664973245],[3.482842206267044,51.49549732943668],[3.482547329363148,51.4955652449871],[3.481539198160252,51.495887546380416],[3.481431132938997,51.49591593728051],[3.480480812321525,51.49629573435219],[3.480415374164379,51.49632188057352],[3.479614726442101,51.496641827335424],[3.478918041295826,51.49693521019327],[3.478844593463182,51.496966142574955],[3.478484640978523,51.49711772222955],[3.477481734184057,51.49750617483226],[3.477407248091985,51.49753503045867],[3.477075187244749,51.49766363219194],[3.475974767660084,51.4981079366146],[3.475900124879682,51.498138074415714],[3.475247223241031,51.498401691923775],[3.474160341295282,51.498873964857204],[3.474069677483517,51.498913360216704],[3.473027010612217,51.49936640586414],[3.472434237314306,51.49964522627167],[3.472357715266682,51.49968121999944],[3.471192116533007,51.500229477583105],[3.470844891516313,51.500389550591564],[3.470765812199388,51.500426004809725],[3.469223199850461,51.50113651416903],[3.469185346040336,51.5011531635898],[3.46757018982511,51.50187640453583],[3.46749474755468,51.50191018319457],[3.466174370579344,51.502501394168625],[3.465991609845652,51.502584779392286],[3.465912053850098,51.502621078707726],[3.464289808053594,51.50336127719097],[3.464199054946018,51.50340270451151],[3.462633075847613,51.50411989177538],[3.462562732625333,51.50415215101627],[3.460956753720622,51.504888670490566],[3.46092415997036,51.50490309344342],[3.459390544938085,51.50558571710812],[3.459315553914634,51.505619093476284],[3.457960776523415,51.50622207111505],[3.457825895045298,51.50627848936289],[3.457731260580645,51.50631807645244],[3.456157553062043,51.506976287344095],[3.456093381578353,51.50700311550629],[3.455441110529409,51.507275940759705],[3.454434200134837,51.50785053126461],[3.454368196891934,51.507888198079215],[3.453404091644805,51.50843844014607],[3.453391364840058,51.50844566477011],[3.45215860241882,51.50907537628699],[3.45209952725773,51.5091055594296],[3.450814653040606,51.50976209420782],[3.450606142688232,51.50988847259183],[3.450540178564617,51.509928457589005],[3.449393304743782,51.51062355300339],[3.449329439346149,51.510662250517655],[3.448128451565653,51.51139012443105],[3.448063045176645,51.511429766694256],[3.447840038882706,51.51156491736545],[3.446639316068826,51.51243600482545],[3.446582514413517,51.512477209842665],[3.445512763354666,51.51325325390688],[3.445455885356544,51.51329451107269],[3.444935233278184,51.51367220616953],[3.444319572180756,51.51414829636368],[3.444259158352226,51.5141950235029],[3.443321125107764,51.514920382736534],[3.44318141256292,51.51502841042755],[3.443074008018317,51.515111468847294],[3.442770033394907,51.51534653493078],[3.441349783590126,51.51687109102442],[3.440868567123081,51.51743091502486],[3.440751094851247,51.51755904552723],[3.440456050534255,51.517918040655495],[3.439352407372542,51.51867675168521],[3.439152615694026,51.518754336610336],[3.438370043502494,51.519164172891436],[3.43829879452601,51.519201473666975],[3.438159066405622,51.51927465581181],[3.437610548686832,51.51949964842459],[3.436300469159118,51.52030881211253],[3.434942559956327,51.52107217179872],[3.432951387656671,51.52269371644728],[3.432046173567127,51.52371284675678],[3.431680148338575,51.52460783633335],[3.431953756400388,51.52963830640461],[3.432246603555271,51.53120761710136],[3.435469165567841,51.542095476474735],[3.448448564469301,51.549800947290855],[3.452808084213032,51.55145480590328],[3.453115531172473,51.55155715810418],[3.453717584319076,51.55180781525027],[3.454599385836262,51.552343330749494],[3.456097533498554,51.55313576195539],[3.456764588161613,51.55343305153369],[3.457865782171059,51.55382584114214],[3.457849675275737,51.553821025841486],[3.457925292426982,51.55384984018627],[3.458985881889133,51.55437398710277],[3.460224693267297,51.554902034462756],[3.461252948870685,51.555431066343395],[3.461284773474639,51.55545025574858],[3.461351221140119,51.55549032596795],[3.462395559198983,51.55611997649821],[3.463550901914114,51.55659734312236],[3.463806293244406,51.55672496360973],[3.463880317627399,51.55676195634663],[3.464509325526562,51.557076276992184],[3.465514542709913,51.55762748484608],[3.465556514868206,51.55765508446077],[3.465610021905506,51.557690273149554],[3.466187870803076,51.558070256769454],[3.467552090775758,51.55868391785058],[3.468799177980361,51.559160445642014],[3.46893983537763,51.55921174540792],[3.469020277880436,51.559241090120516],[3.469610396702864,51.55945634928367],[3.470118449002253,51.55965349129249],[3.470214638435096,51.55969082555264],[3.470697249776963,51.559878107330015],[3.47122090495538,51.560095046217356],[3.471242327579682,51.56010420840348],[3.472667189803754,51.560729726236175],[3.473215642198129,51.56101413315893],[3.473282113524955,51.5610486045106],[3.473799630870181,51.56131697491452],[3.474850447266911,51.56192157723734],[3.475616484113881,51.562284380965586],[3.475692784568358,51.56232051314123],[3.476286247919244,51.56260157763501],[3.47784222716333,51.56337648767747],[3.477946065645847,51.56342778610238],[3.478848479037826,51.56387343390681],[3.479353249654053,51.564096868873484],[3.480061194216147,51.56447101145854],[3.480141845394634,51.56451363102095],[3.480291251330723,51.56459258913159],[3.481512904287811,51.56525615402365],[3.482416543012345,51.56570831165809],[3.482498887937826,51.565749518631854],[3.483057844066054,51.56602919407706],[3.484174293014072,51.566620492835874],[3.485439541508616,51.5671654994018],[3.486630268411664,51.56762460552545],[3.487796685445293,51.56810429742858],[3.487801607970213,51.568104224590186],[3.488625778582715,51.568406191121696],[3.489082547985223,51.56859718277179],[3.490048975217356,51.56911854782061],[3.491376138368118,51.56970915025243],[3.492719421833328,51.57022578933389],[3.493805768892054,51.57059681786666],[3.494484495172721,51.57080878944197],[3.494888003668845,51.5709751958159],[3.494908330375684,51.57098388626561],[3.495993540509246,51.57145125576164],[3.497874013460408,51.5720899520293],[3.49791811992713,51.57210553559925],[3.499946498084537,51.57281274202111],[3.50224245300866,51.57348695284442],[3.502953428954721,51.57362158913057],[3.503198123861686,51.57368298406919],[3.503891898340177,51.57388388620365],[3.505075776771383,51.57422309594338],[3.506534294347849,51.57450515386284],[3.507198300617074,51.57459912566218],[3.507911340900205,51.57482473207342],[3.508161810287174,51.57488113858291],[3.50862899210706,51.575134659576754],[3.509338885605713,51.57537042889106],[3.509858228019155,51.57555167986689],[3.51004227217462,51.575604965472856],[3.511625839414565,51.57642344318461],[3.51182856646942,51.57648042416936],[3.512081306670656,51.57656811003306],[3.512926687384354,51.57676580641968],[3.513275180771618,51.5767983660191],[3.513515499074689,51.576936439917574],[3.514502719595591,51.5774921579781],[3.515318568599928,51.5776672915788],[3.515338804631262,51.577679744018454],[3.517095925540733,51.578329473447496],[3.51720704418257,51.578366359626266],[3.517725593817614,51.578544253635975],[3.517800434076416,51.57859031383982],[3.52272491565599,51.580339622777025],[3.523460935874313,51.581363038572675],[3.523605851545811,51.58169745339806],[3.523992839881789,51.58194350998325],[3.524935999191367,51.582316554673525],[3.526059284342102,51.582634470133385],[3.52729319631367,51.58291269712029],[3.527401943181289,51.582941021536264],[3.528660628301974,51.58341811360017],[3.530351002710325,51.583924400352814],[3.530777594079552,51.58416714297963],[3.532352473084464,51.58490477305117],[3.533615384890215,51.585542368636276],[3.535177720367196,51.58608575274438],[3.536134014284964,51.586511516999565],[3.536200021233402,51.58654032508034],[3.536993743137491,51.5868799763544],[3.538056199749509,51.58737674000522],[3.539114850776921,51.58786722107531],[3.540145101086546,51.588374838131756],[3.541214276302139,51.58891495902752],[3.542293601606068,51.58938853796956],[3.542761145815025,51.58963855275904],[3.543594183440689,51.590112126359095],[3.544732586374265,51.59065875404685],[3.546217165985838,51.59111258216595],[3.548673061714322,51.591510068991425],[3.551349773473107,51.59179397734791],[3.551983126166044,51.59185589537045],[3.552088999152859,51.59186624211362],[3.552834308231504,51.591939110088596],[3.553562107484138,51.59203099237434],[3.553846785630088,51.592110716692865],[3.556257253072949,51.59288700087482],[3.557992642246903,51.593225192557405],[3.558189414200133,51.593233000020035],[3.558625957795841,51.59333742066771],[3.560447656437288,51.593789567694294],[3.561446520754481,51.59409450320055],[3.56261850203882,51.594662389417465],[3.563894421878275,51.59505237075703],[3.565724391968858,51.59536909408183],[3.566229540190712,51.59541488462461],[3.566603343356633,51.59546107324873],[3.566750381073886,51.59550488991192],[3.567505358501056,51.595716204912435],[3.568172919651025,51.59583943252518],[3.568923902679682,51.59604734060514],[3.571581222813764,51.59681002419439],[3.573056559621497,51.59720796318636],[3.574484180011206,51.59759875127092],[3.575773217132449,51.598002415853585],[3.576946669995567,51.59834541579569],[3.577778377179604,51.59856152840931],[3.57862343684034,51.59869568649007],[3.579884337664793,51.598904333703864],[3.580860586874126,51.599030613647486],[3.581808003339646,51.59914696423095],[3.582275388653548,51.599199195210666],[3.582856675943555,51.59926414141776],[3.58327243879671,51.599308046742266],[3.58418910899851,51.59937522912553],[3.585117144978567,51.599402401043776],[3.585905696831212,51.5993736538727],[3.586171384209992,51.59936594205948],[3.58637411320389,51.599363004933764],[3.586545191564461,51.599358411287945],[3.587370566257076,51.599326076706255],[3.588024231451861,51.599259277063474],[3.58918699319801,51.59906812558033],[3.589756958065716,51.59899824010451],[3.590141965903764,51.598957506446304],[3.590633720914739,51.59893079159761],[3.591579634142268,51.59894161753895],[3.593142572033958,51.59896417030317],[3.593824090525507,51.598926049704986],[3.594822659417675,51.59884281672461],[3.595545095993486,51.598767904093485]]],[[[3.862522411665194,51.60058177453663],[3.874687752046751,51.5929095428081],[3.896634715936265,51.576838785946876],[3.904659120819863,51.56174793531469],[3.886615407250939,51.55520673045476],[3.872525097394143,51.552202103957455],[3.864952292860009,51.546242242936486],[3.863654650514501,51.5458117912849],[3.858834814291058,51.544386188326904],[3.855935280499653,51.54409261141938],[3.855643169094899,51.54412830263915],[3.853949834473561,51.54434758247909],[3.853557946658098,51.54451227795127],[3.852324747404679,51.545185292675434],[3.850606200783012,51.546123482420285],[3.850284106660246,51.54635061247002],[3.849218671833584,51.54721991370171],[3.847968177361018,51.54821323905532],[3.84731477402864,51.54875167989371],[3.846639146828884,51.549295712636855],[3.846190603147,51.54944861524287],[3.8450629983128,51.54969060088275],[3.844774288434588,51.5495080330632],[3.844588144898864,51.54964563093589],[3.844454621814727,51.550059035204946],[3.84445854977613,51.550545356050414],[3.844580550582402,51.55111951270175],[3.844524488176402,51.5514115048559],[3.844397888109578,51.55157339740873],[3.843131318301146,51.55221679447277],[3.841426913818893,51.553081420600414],[3.839711587568002,51.55394977043886],[3.837814595140835,51.55491259037579],[3.837618482009176,51.55512891462995],[3.836997628690646,51.55574778715951],[3.836834242941914,51.55589658882757],[3.836350941164059,51.556031858382596],[3.835439180534001,51.556224151587436],[3.834346295349482,51.55626654092235],[3.833151656445493,51.55630615549582],[3.830968153248329,51.55614265208101],[3.827552203777289,51.555858650801696],[3.826900731609586,51.55578196253744],[3.825704596436348,51.5555515103847],[3.825415497365414,51.55555878561784],[3.825238918855844,51.555724853733345],[3.825163942804771,51.5555738708945],[3.824992018156175,51.55529777230159],[3.824379050381138,51.55503875433909],[3.823652188982423,51.554850974560544],[3.822365519979123,51.554630397111104],[3.82132561446781,51.55446111909145],[3.820410805569189,51.55438295998823],[3.819528234946106,51.55426207399589],[3.817566347547508,51.55396936273527],[3.816807443749136,51.55417066619231],[3.816120108634887,51.553827896433624],[3.815649393163068,51.55365868511791],[3.814958730672148,51.553517879014386],[3.814465497620587,51.553177512961355],[3.813365687329541,51.552605555788354],[3.813304783498117,51.55244509910635],[3.813554894370438,51.5521142354428],[3.813631308333979,51.551899485242885],[3.813145305573614,51.55142327207706],[3.811306264924685,51.550821817048096],[3.810781313160381,51.55069853053162],[3.810485300886461,51.550691821610634],[3.810221461453074,51.55060532783971],[3.809622197450553,51.550234534626405],[3.809603813193017,51.55008173406045],[3.809476868158782,51.550032543543225],[3.809333860548243,51.550041022992836],[3.809151121298997,51.54998490250336],[3.808499133547371,51.54969066089038],[3.807969512305181,51.54937670906748],[3.807277698469916,51.548683311622995],[3.806554561079416,51.54829685655598],[3.806190824258624,51.54809707566454],[3.8059524585124,51.54801014355518],[3.805452626356969,51.547892287923794],[3.805105438648581,51.547811243715266],[3.804896697480173,51.54779455440917],[3.804092903728292,51.547820597774816],[3.80341893959329,51.547818503505255],[3.80315005515488,51.547841550056525],[3.802297350111247,51.548079146718685],[3.80149166361574,51.54827237101365],[3.801204741264958,51.548262669190386],[3.800975473140614,51.548289134317834],[3.800651153226088,51.548394014430414],[3.800258895495908,51.54859029009557],[3.799482038483285,51.54874944224741],[3.798669053618656,51.54898985393352],[3.79797658926651,51.549111701891505],[3.797381935535933,51.54915839799733],[3.796873339823451,51.549256481035606],[3.796336953719744,51.549334845837244],[3.795603521364676,51.54940126452721],[3.79478050786367,51.549435711711816],[3.794466293586277,51.54952274139054],[3.793732689186248,51.549669103917026],[3.792786758430128,51.54981599900795],[3.791969226983498,51.549954363844854],[3.791184050361524,51.55000527777068],[3.7903916013475,51.5501588079048],[3.789080181353642,51.55039198134724],[3.788269499692377,51.5504916129018],[3.787394861393148,51.55053556854899],[3.787243359540389,51.55047184903801],[3.787183249438983,51.55029196107614],[3.787154982712634,51.55002314750234],[3.787007441552583,51.5499849958142],[3.785654318094869,51.55028856365044],[3.785350579610215,51.550363270304764],[3.785261736901621,51.5504013211154],[3.784742397216837,51.550875071821366],[3.784472013918346,51.55103090190724],[3.783741176207017,51.55126961353205],[3.781338155887743,51.552029586158916],[3.779594246625189,51.552588202121186],[3.778440346795221,51.55296017298025],[3.777149086211332,51.553360509793144],[3.776818040552413,51.553471057495365],[3.776526568273472,51.55362094212622],[3.776278190911009,51.55369421299544],[3.77602777784967,51.55371427870478],[3.775758163282757,51.55379630871175],[3.775727136314026,51.55385421773809],[3.775802945009783,51.55415749308815],[3.775760223905437,51.55432101863753],[3.775425967202331,51.55437506023569],[3.774679016143915,51.55443921128298],[3.773790712632178,51.554481627720314],[3.772776068853401,51.554525060961005],[3.771404340385763,51.55458942196329],[3.770311773758912,51.55463687173044],[3.769179739627628,51.55468940163593],[3.767527139886276,51.554757064851465],[3.767421234665536,51.55478317863025],[3.767352862095315,51.55479329771994],[3.766580931527578,51.55483269661013],[3.766148206902161,51.554864435073334],[3.766084405543751,51.55471215601901],[3.765909303244158,51.55464421553909],[3.765791048595678,51.55468498124568],[3.765725990742594,51.5548094550175],[3.765707796144,51.55487675446359],[3.764766387262736,51.554915974160366],[3.763762041366755,51.55495841143616],[3.762757693367317,51.55500084905732],[3.762407944964038,51.55501003812999],[3.76211147080295,51.555035313233454],[3.761958686256967,51.554964063120245],[3.762136201141228,51.554822204085475],[3.762053708441614,51.55456878431352],[3.761978702205892,51.554466044582874],[3.761824926842264,51.55448941978184],[3.761576080535841,51.554705497613114],[3.761309583002934,51.55473056736664],[3.760861821752832,51.555020193250044],[3.760515848459297,51.55507374165577],[3.760029258085376,51.55510772835355],[3.759604804320745,51.55495596992411],[3.757777496726458,51.5543144356798],[3.756099989066226,51.55372228763984],[3.753911217884154,51.55295682273564],[3.751624512601158,51.55215822797651],[3.749070016659263,51.551262371821],[3.748069745229543,51.55088081688872],[3.745574381908188,51.55000568853936],[3.744584825480245,51.54966194057654],[3.743438902448335,51.54926118022872],[3.742392309219968,51.54890377295507],[3.741269345228312,51.54852068317702],[3.740476721407471,51.54823977319121],[3.740133193139367,51.548093416473385],[3.739917350434907,51.54804963904863],[3.739398698967028,51.5478163301603],[3.737969773686129,51.54733815465981],[3.736903065386804,51.54698669752534],[3.736480316626568,51.54683462586363],[3.736099632433797,51.54663292781169],[3.735779662404231,51.54637273332488],[3.735233002801409,51.546004327380885],[3.734839280827312,51.54575906300145],[3.734361340241532,51.54541444180209],[3.733828585017606,51.54501206294416],[3.733664863759942,51.54484055023747],[3.733544523442563,51.5446592765983],[3.733353325452991,51.54454868775248],[3.733270504100468,51.54441055849503],[3.732991391301486,51.54433583605267],[3.732659291445033,51.54405767826292],[3.732400128427305,51.54387592073458],[3.73127628381373,51.54308796281632],[3.729974643874366,51.54214725424548],[3.729621299827899,51.542136146192284],[3.729317775019826,51.542117356166315],[3.729041893842942,51.54199770984378],[3.728883412454034,51.54186946249066],[3.728611756953307,51.54172023434758],[3.728509105748872,51.54155239498125],[3.728554660507235,51.541404433389665],[3.728315470677841,51.541347752271356],[3.728173962544684,51.541352944039026],[3.727798906481791,51.54115768102575],[3.727217428945289,51.540910316427116],[3.726481883390274,51.540644774250595],[3.725810178981371,51.54048267777925],[3.725400945224068,51.540382729695544],[3.725082203817629,51.540330987649575],[3.725020497831267,51.54022817851992],[3.724853805970403,51.540114786415515],[3.724684919461533,51.53997077807272],[3.724496120358201,51.53992850720018],[3.724305510326248,51.539865218054885],[3.724103564873675,51.5398284322499],[3.723784091439031,51.539615706095454],[3.723478415054162,51.53943927130253],[3.723278659559853,51.53933095298221],[3.722776228483704,51.53919348241261],[3.72239951006297,51.539104487466545],[3.722276539482974,51.53905129289522],[3.72227289967612,51.53893897097215],[3.722136864795259,51.538905539391195],[3.721711725595812,51.5387366930231],[3.72140318626443,51.538715778889056],[3.721091985459699,51.53853000796152],[3.720792071422758,51.53842334045567],[3.720479142066245,51.53830288424458],[3.720245581900058,51.53812530298058],[3.719929598331359,51.537942031824365],[3.719304059058252,51.53778426011824],[3.719277830382915,51.537776558595745],[3.719022572970778,51.53764317570966],[3.718707505397838,51.53747875778799],[3.718379597908197,51.53732996940924],[3.718093469208638,51.5371529542966],[3.717524594846792,51.53675765108098],[3.717087446900661,51.53651020292148],[3.716783940631881,51.53633913032983],[3.716415233157475,51.53601402948164],[3.716130262430534,51.53584907288071],[3.715812483134815,51.535716271770056],[3.715513803390285,51.53563526621763],[3.715145281262122,51.53560088159203],[3.714826106557412,51.53551786376985],[3.714585441880883,51.53534511372222],[3.7143761140194,51.535172865847734],[3.714235280832221,51.53503804501513],[3.714128713833358,51.5348601569981],[3.71399158386685,51.5347465609373],[3.713813829805874,51.53474693659282],[3.713711419717024,51.534668378102594],[3.713730605493216,51.53458190599053],[3.71342647046576,51.53441841215658],[3.712805771547124,51.53407486364432],[3.712146057666132,51.53364067889313],[3.71181528579051,51.533390276522944],[3.711739433335209,51.53326600407],[3.711779885382929,51.53317949562932],[3.711731826715503,51.53301842909818],[3.711607112723719,51.532887809825795],[3.711462865406391,51.532770539432306],[3.71131711392515,51.53265850657467],[3.711150463779356,51.53246709533856],[3.711043527584043,51.53221724993912],[3.710933749545461,51.53194326974428],[3.710930235019476,51.53183105680893],[3.710827905018771,51.53166897727764],[3.710533416053279,51.53129564643176],[3.710257112247198,51.53105695332233],[3.710084953962649,51.530754566462186],[3.709788562852481,51.530420592633206],[3.70964985202726,51.530289949925454],[3.709468127407285,51.53017502455063],[3.709183998810702,51.529946761953305],[3.70904409123892,51.52991535383897],[3.708924692910975,51.529810618937326],[3.708851368097108,51.529780239142234],[3.708775987459953,51.52962093630132],[3.708659050350022,51.52946443455723],[3.708489341437395,51.52940833277021],[3.708316295702584,51.529272070491906],[3.70826235534444,51.52915165269267],[3.708120887865295,51.52902601199268],[3.707968320004566,51.528949595079],[3.707843008945789,51.52875030426031],[3.707744758343797,51.52858362350562],[3.707643185015987,51.52846396793514],[3.707400400757277,51.52818496081949],[3.707306574930397,51.52805773866262],[3.707136039645608,51.52799376545271],[3.70696504505944,51.52779877015159],[3.706789365897683,51.52759953570127],[3.706620981292308,51.52747863927676],[3.706521446078486,51.52739872202756],[3.706497775428717,51.527286605364395],[3.706571280236552,51.527229343117625],[3.70653469561626,51.52718542965292],[3.70646186612324,51.527158570618],[3.706409313496671,51.527076821025226],[3.706343147704997,51.52697072763085],[3.706266662999357,51.52688332930689],[3.706317875294037,51.52680178732193],[3.706207257182303,51.52672502769897],[3.706047008310423,51.52668316410784],[3.705949919122658,51.52670589653902],[3.705882216952421,51.52668150234645],[3.705706778231875,51.52662871221306],[3.705648903183208,51.52663165493712],[3.705541587704742,51.52660045098804],[3.705422092516601,51.52656577213766],[3.705314855354643,51.5265258395468],[3.70528447067917,51.526479569591636],[3.705205372286995,51.5264492391384],[3.705138654329123,51.52640333595838],[3.705062573947587,51.52633858913893],[3.704999136060315,51.526264431723654],[3.704950994257293,51.52623026756186],[3.704876178128521,51.52619367839003],[3.704844084257239,51.52615738987269],[3.704832869394072,51.5261274615302],[3.704782002023722,51.52610230225611],[3.704734254259316,51.526090205817404],[3.70466211291059,51.526051452415174],[3.704589087769092,51.52601710945183],[3.704477089266168,51.52599255277601],[3.704326611307146,51.525979623408695],[3.704128470784323,51.525988500725056],[3.703927729316848,51.526031799961494],[3.703791294651571,51.52609498620533],[3.703713117715326,51.5261285349484],[3.703585940139086,51.5261522971531],[3.703412462876608,51.526151333789876],[3.703133823612355,51.526148638194186],[3.702999500365348,51.52616258723221],[3.702899308228364,51.526195143717736],[3.70278378998443,51.52620840172156],[3.702639551659416,51.52626781505689],[3.702328646338715,51.52639251197357],[3.702262877281445,51.52642022424686],[3.702134391298217,51.52643569495183],[3.702080885126479,51.52641293278735],[3.70203032239594,51.52635587917646],[3.701951810183608,51.5263315694518],[3.701876938273229,51.52635678572533],[3.7018296374156,51.52638278637085],[3.701770118341052,51.52635194493751],[3.701743494212195,51.526376535756526],[3.701768750927623,51.52643739582531],[3.701722173587514,51.526484300286455],[3.701674960520172,51.526558058521395],[3.701666606255635,51.52661465765857],[3.701703155445995,51.52670097036401],[3.701736762307555,51.52678306910684],[3.701696686905128,51.526900254521316],[3.701640535945393,51.52695034720672],[3.701549218924181,51.52701400215944],[3.701501009025842,51.52708585798424],[3.701460057140556,51.52716292502182],[3.701380640296863,51.5272239735983],[3.701346482839938,51.527307476812275],[3.701234836089675,51.52737207876058],[3.701197193945657,51.52742323853707],[3.701135966300647,51.52753865303178],[3.701043718877185,51.52760674436533],[3.700958690716211,51.52765117853032],[3.700822748431905,51.527658125280475],[3.700671249814655,51.52764422354319],[3.700686609831823,51.5277022079023],[3.700683710204709,51.527798595822915],[3.700586668640825,51.52783932308091],[3.700507043657153,51.52784416981034],[3.700442575825842,51.52784527964529],[3.700373553536684,51.528000156432455],[3.700324835737447,51.52816094534693],[3.700372381644729,51.52822277491541],[3.70050397707159,51.52832833325067],[3.700502324607345,51.52844275570557],[3.700475703473007,51.52864662154899],[3.700402909320804,51.52879668802795],[3.7003073883332,51.5289027784192],[3.700165764323974,51.52900753759458],[3.699986573774613,51.52910154101341],[3.699929792322481,51.52914480917142],[3.699903910621355,51.52918232935616],[3.69991071574745,51.529214109421474],[3.69989007937412,51.529255930807125],[3.69986624170959,51.52934903148076],[3.699817212735771,51.52943970047438],[3.699790422880597,51.529552132550315],[3.699802407293603,51.52960513259179],[3.699789096204565,51.52968645521001],[3.699757087475386,51.52982763473864],[3.699743371988758,51.529887626554526],[3.699750034643633,51.530000874528724],[3.699722507561819,51.530055515380226],[3.69967148187122,51.53010871093712],[3.699593835267249,51.53014827917472],[3.699607057919566,51.53022887032771],[3.69961786008326,51.530305165113454],[3.699556852251737,51.530367871972004],[3.699480337696886,51.53045728065327],[3.6994669983176,51.53051334012906],[3.699455787422139,51.530579229767945],[3.699381706092913,51.530655502778586],[3.699298355656433,51.53070618131767],[3.699266738854809,51.53071761859367],[3.699197982093787,51.53083834448191],[3.699178607976073,51.53089659126213],[3.699204393198681,51.530951346118925],[3.699176270316945,51.53102626032366],[3.699111629248325,51.53108235154973],[3.698995846150562,51.531217213699406],[3.698963552550874,51.531286817252145],[3.698987654250169,51.53136205466458],[3.69902158696552,51.531429909283794],[3.698977139960185,51.53150538765667],[3.698924353267478,51.53162259525694],[3.698903756907726,51.53174165259941],[3.698907367200073,51.531855144197486],[3.698869586733379,51.53191955295176],[3.698833168819189,51.53193564961574],[3.698808546558879,51.53200050026537],[3.698830333756124,51.53205656393439],[3.698781269854308,51.5321519159592],[3.698720826113469,51.532383602972175],[3.698639007330102,51.53278550870141],[3.698602429210323,51.53282878061613],[3.698525590580023,51.532906964155835],[3.698448621790722,51.533010750097915],[3.698359950895777,51.53314897041609],[3.698292752771049,51.53333579694289],[3.698304680364179,51.53350975160753],[3.698331937801624,51.53383128766535],[3.6984146236477,51.534235382691534],[3.698409360005522,51.53448598269683],[3.698247247109235,51.534553826084974],[3.698258639941957,51.53461264342203],[3.698449015230668,51.53461438883399],[3.698634214328946,51.534940050959555],[3.69862865909822,51.534970061138544],[3.699231622257818,51.53574620383699],[3.699274710559091,51.535840496183695],[3.699437232788123,51.53616996476465],[3.699509593043081,51.53642473389552],[3.69987405576532,51.53704460125529],[3.700054002568978,51.5373394832056],[3.700066932511005,51.53756623396753],[3.700155984496015,51.53771290182546],[3.700362523392311,51.53799214658384],[3.700547234141875,51.53834256648663],[3.700604108356959,51.53859455798056],[3.700586605711135,51.53876855484594],[3.700614690777031,51.538829869443944],[3.700732660749164,51.53883611261432],[3.700870597920417,51.53888779306043],[3.700950446304569,51.538955518630864],[3.701007620494137,51.53906589039539],[3.70097371801449,51.53918420755559],[3.700900466078561,51.53925646592472],[3.700795186821111,51.53931960429041],[3.700900301956653,51.54004001107147],[3.701037454396098,51.54025782024212],[3.701127650629763,51.54048653103252],[3.701258730154957,51.54066797650738],[3.701899393907585,51.54164905080921],[3.701803583996831,51.541739747045916],[3.701719150880785,51.54186964310587],[3.701549268271503,51.54231220163274],[3.70148217995442,51.54251042213613],[3.701329245794667,51.54269547377962],[3.701129538430442,51.54294618046069],[3.700928963258599,51.54296969007254],[3.700926569650443,51.54303416972993],[3.701016828033521,51.5430535338962],[3.70104783356702,51.5430886928317],[3.701022589842457,51.543246332559484],[3.700603117424783,51.54365742645377],[3.700204325883076,51.54406235351952],[3.700113060990824,51.54422066698977],[3.699965679420131,51.544507845727765],[3.699865834351828,51.54472164894782],[3.699738284899295,51.54488164971788],[3.699715069380407,51.54493797112161],[3.699654330998455,51.54538098866341],[3.69960012681138,51.54552741249529],[3.69944790720364,51.54599037951308],[3.699341002589952,51.546245390653084],[3.69901153546382,51.54631932247694],[3.699026545671665,51.54636083169574],[3.699208010819055,51.54633788520289],[3.699398705614365,51.5463626213232],[3.699591192271058,51.5464617685415],[3.699648381129225,51.54657695085835],[3.699633184550689,51.5467274982594],[3.699486813615015,51.54681371347036],[3.699333019262146,51.54685871772754],[3.699200264225715,51.546856332342756],[3.69933676344562,51.54719098942649],[3.6993277163481,51.547261387431995],[3.699106290830039,51.54725952800994],[3.698911004807619,51.54734114299358],[3.698722324934673,51.547530511672186],[3.69855291845334,51.54776613488317],[3.697852847408099,51.548417222707805],[3.697446178723301,51.54876813027653],[3.697235476097469,51.549037101724494],[3.697157374582174,51.549122062953465],[3.696890224813072,51.549263283589944],[3.696736820584451,51.54938932853942],[3.696588729100645,51.54952641830535],[3.696530448615124,51.5496672797856],[3.696492187263275,51.54975572990569],[3.696334101144573,51.549856398968906],[3.695795645003364,51.55021053624239],[3.695234464881638,51.55058528041794],[3.694453711826458,51.55136618669076],[3.694200012429603,51.55162027142198],[3.693918666890207,51.55190062017065],[3.693758540328414,51.552094710278],[3.693139780705271,51.5528154283855],[3.693028806036069,51.55302467752062],[3.692842219707235,51.553271812047214],[3.69262571880039,51.55350510795491],[3.692485517523584,51.55359121537995],[3.692232320498653,51.553730362536804],[3.691921884343851,51.55378835953532],[3.691642275943003,51.55383025193437],[3.691482631373782,51.55390207817353],[3.691274441979055,51.55404345872737],[3.691168966670242,51.55412407208668],[3.69098416226619,51.5542891303437],[3.690610860543443,51.55457631771978],[3.690043269222495,51.55495135827601],[3.689796084069646,51.55514648022644],[3.689462649722207,51.55543583445072],[3.689231756986001,51.55564829148967],[3.689063010860666,51.55579816181477],[3.688905749898416,51.55593243884949],[3.688805761653917,51.555987192911914],[3.688708025199838,51.556017597956206],[3.688570524265122,51.55604151827443],[3.688551302459141,51.556056477398286],[3.687433133012128,51.55643312044099],[3.686468087984881,51.556357144733695],[3.686111011860899,51.55639323960906],[3.684163174049504,51.55737650124015],[3.683819697831519,51.557590345800925],[3.683720145945522,51.55778197925471],[3.683435243425571,51.557967548005614],[3.681772227797121,51.55870908341281],[3.681303740795775,51.55892290335307],[3.680517691794629,51.559379326346104],[3.679848205339707,51.55975035817742],[3.679196021395036,51.56011702713638],[3.678698732972198,51.56014072045244],[3.678322919831258,51.55979457371732],[3.678119816985476,51.55991548096247],[3.678230330317869,51.560056455927985],[3.678148630680989,51.56030182930188],[3.677335083957283,51.56112765459801],[3.676731893806314,51.56178661870765],[3.676380842677323,51.56202777856688],[3.674845081396634,51.56302448161031],[3.67365345974943,51.5637691873767],[3.67266559268509,51.56426143788456],[3.672024910161192,51.564578493244724],[3.670839370059932,51.56514208745313],[3.669811252503869,51.56552301645346],[3.668822458717574,51.565933958072854],[3.667968619896552,51.56623269071776],[3.667396670432502,51.56642487678251],[3.666587080464274,51.56660764610158],[3.666532870101484,51.56657375459853],[3.665811956299584,51.56680765751236],[3.664753677899443,51.567085231188805],[3.663973437479781,51.56717561696185],[3.66280015065636,51.567511290040734],[3.66198517047635,51.56776919742339],[3.661595475256646,51.567871103608745],[3.660933100120496,51.568136830848935],[3.660555376190731,51.56833953029646],[3.660400309072717,51.56845445533706],[3.660358113243015,51.56861673681695],[3.660390834201552,51.568778596829254],[3.66029013825341,51.568899197811156],[3.660185456476735,51.568939132444534],[3.659688606372664,51.568856720344655],[3.659271200243019,51.56868798668209],[3.658776254854032,51.56856097076382],[3.658447689932537,51.56859339421255],[3.658148937397184,51.56845972068995],[3.657754609365212,51.56850411536016],[3.656636421428255,51.568780747858234],[3.65590565555165,51.5689926520183],[3.654338354699358,51.56957749613451],[3.653602157326479,51.56988754315026],[3.653332025477684,51.57001690792379],[3.65288311092488,51.570350298509844],[3.652537798408366,51.57062267022421],[3.652022654762941,51.57126204126322],[3.651728725592292,51.57162556251937],[3.651757497340331,51.571709600011424],[3.651671185504863,51.57184187011582],[3.6517065553162,51.57209028631175],[3.651682460769462,51.572299709439235],[3.65158693420468,51.572457860745175],[3.651581930889828,51.57256870043304],[3.651292739740958,51.572986071328],[3.65117353510498,51.57324717880416],[3.65111679324863,51.57349567447883],[3.651166028017529,51.57373839009902],[3.650931535677719,51.57409543818072],[3.65095316966683,51.57434040502806],[3.650878278350024,51.574560895755454],[3.650757973285526,51.5746669478582],[3.65069863275735,51.5747253306934],[3.650483778728656,51.574726948375],[3.650039110692035,51.57463664932882],[3.649955874823416,51.574802866587625],[3.650090971954982,51.574856613913866],[3.650379189883746,51.57492899886226],[3.650426446621564,51.57511890303506],[3.650573993034828,51.575263241755565],[3.650579588182318,51.57539114073307],[3.650455456325257,51.575687973916146],[3.650417845877678,51.575803219821154],[3.650283414549718,51.5760068136834],[3.65022246362345,51.57618109397882],[3.649988135437934,51.57654274580646],[3.649923523808267,51.57662565653278],[3.649905367749409,51.57674525506707],[3.64987637209877,51.576917331009255],[3.649798906088128,51.577112861571564],[3.649646266820471,51.57749297941369],[3.649493070326668,51.57778433601837],[3.64936637525246,51.57815527347072],[3.64928275772403,51.578334232943725],[3.649204170536068,51.57847263075586],[3.649147311630816,51.578484497704],[3.649014501160334,51.578462339546746],[3.648922151548305,51.578483478120475],[3.648880281664845,51.5785428840711],[3.648854396464748,51.5786505811652],[3.64887995225066,51.578745845407525],[3.648982379406196,51.57886017952321],[3.649041086664356,51.578872775916054],[3.648973777948264,51.579008257599455],[3.648999505926774,51.579053834684544],[3.648983872816375,51.57906905663751],[3.64876049203574,51.579105885650364],[3.648619103741092,51.57913846762444],[3.648407991211374,51.579316411237514],[3.648339714274044,51.57934906447848],[3.648161890725705,51.57936694410053],[3.648045741153664,51.579393436802945],[3.647962153215901,51.57943062691662],[3.647874924327718,51.57947734651542],[3.647717717147828,51.57963758884099],[3.64764854400996,51.57965369508667],[3.647429327574359,51.57971691631943],[3.647360402861755,51.57976228970445],[3.647336267322255,51.57988031548643],[3.647410821621577,51.57995871522287],[3.647361795420113,51.580024783885115],[3.647044131033724,51.580268746661105],[3.647014726572845,51.580334118341575],[3.646921484466378,51.58041376931747],[3.646886681506098,51.58040957412903],[3.646843169613614,51.58040219254947],[3.646784472168213,51.58041526268406],[3.646626612455842,51.58050054127841],[3.646529009320966,51.58054827417823],[3.646432236496619,51.58064544835002],[3.646408628087503,51.58069511913166],[3.646302007466487,51.58077740236208],[3.646248845937979,51.58085640905057],[3.646243644620587,51.580922770331945],[3.646266881319303,51.580964409110514],[3.646289673323944,51.58099055986515],[3.646274274044307,51.58101807477107],[3.6462460131849,51.581029152550634],[3.646195546785247,51.5810232404737],[3.646125571124757,51.58104025989809],[3.646081536324758,51.58106905644369],[3.646043574751742,51.58112911300472],[3.646045562149093,51.581158172473145],[3.646037579975627,51.58117740982134],[3.646006641131194,51.58122856263465],[3.645941792054933,51.58127404986507],[3.645892008036512,51.581345482886796],[3.645857018137052,51.581385247466386],[3.645812307345871,51.581391036508194],[3.645750465554591,51.581467944786255],[3.645630522720976,51.58167015813843],[3.645554217691521,51.58181557314318],[3.645569521024949,51.58187516448211],[3.645552501314938,51.58190840898592],[3.645278841954369,51.58222114272669],[3.645232257101926,51.58226406977426],[3.645215078758322,51.582334136378755],[3.645052925340134,51.58253211502705],[3.645012015973145,51.582902636366484],[3.644963766932844,51.58306591942075],[3.644702250449201,51.583583732146145],[3.644476577776154,51.58388055622025],[3.64442279890072,51.583994615328066],[3.644385761023881,51.584090988226905],[3.644355676469631,51.584309517898745],[3.644315858787053,51.58441926295062],[3.644004830566002,51.584942242716544],[3.643980480390112,51.58553654694861],[3.643978368625849,51.58566024078319],[3.643936880023097,51.585770599115634],[3.643925804836226,51.585879675819115],[3.643930446149933,51.585965081518374],[3.644028830468513,51.58617721964041],[3.644141981760494,51.586358498172345],[3.644227255803955,51.58646791458542],[3.644398770675271,51.58661690654287],[3.644500500272481,51.58667630296632],[3.644637456729004,51.586725229172664],[3.64476576304912,51.58674799920713],[3.644887378716464,51.58672515121069],[3.645064906915723,51.58673529480969],[3.645125630476879,51.58674823777687],[3.645200247469631,51.58677370452292],[3.645329063335987,51.586797497437466],[3.645800937139043,51.58680452722492],[3.646054100353061,51.58688997533087],[3.646215471825315,51.586970280003555],[3.646318740718065,51.58702988653087],[3.646502637780909,51.58727014994148],[3.646572445648909,51.58746651372555],[3.646559825194692,51.58765400842184],[3.646531009704748,51.587846440429765],[3.646413740838707,51.58817193418697],[3.646271560518053,51.588412035113414],[3.646106883991266,51.58861400541138],[3.645945034386374,51.5887637207099],[3.645733630833282,51.588892523311635],[3.648302292790752,51.58924858381517],[3.658391180562444,51.589346646821554],[3.660175425705943,51.58922858772906],[3.660487876071876,51.58928481627618],[3.662525252982257,51.58919927368558],[3.663702928308712,51.59163143951845],[3.655221372165527,51.5967834264623],[3.671358196591359,51.60026144384864],[3.6802305686878,51.59926751414385],[3.683411973340157,51.599889290652676],[3.691601007607356,51.60326279535355],[3.69818948226978,51.6031243960086],[3.723967881865542,51.5985672622265],[3.741975126971314,51.600386297450015],[3.777845908765452,51.60412190844189],[3.798854603313741,51.60775343489732],[3.81366591920137,51.607818804534396],[3.838911921182493,51.60631281120415],[3.850225073422119,51.60435839077097],[3.862522411665194,51.60058177453663]]],[[[3.681725921079139,51.61728462897935],[3.681759888100179,51.61727694312175],[3.681789024946151,51.61728018191447],[3.681805225397592,51.61728870714779],[3.681819189954648,51.61730484149908],[3.681838879815405,51.61733692713373],[3.681805766276841,51.617523828302325],[3.681772634592367,51.617570337305175],[3.681827003843205,51.617584255821],[3.681933126986779,51.6177084841646],[3.681888782554832,51.61775860563248],[3.681882109592686,51.617783195593326],[3.68188817107928,51.61780633499317],[3.681987170956416,51.617890749449444],[3.682065577895158,51.617954797353065],[3.682151054137912,51.61801059630459],[3.682215041381425,51.618036441067595],[3.682292530083721,51.618062716343495],[3.682863836344294,51.618259343403395],[3.682997937799992,51.61830982677168],[3.683124543518108,51.618349187713115],[3.683231730573686,51.6183741868813],[3.68331740859448,51.61839048471155],[3.683383518136783,51.61840062679137],[3.683451473279842,51.61840777499124],[3.683532611651327,51.61841421614832],[3.683783547887257,51.61841940825038],[3.683800284290713,51.61854050798394],[3.684425705698384,51.61850717151479],[3.685010214674578,51.618476454831075],[3.68549794516909,51.61845079125524],[3.685480751662777,51.61832482143258],[3.685619010382231,51.61831581082337],[3.685763610095408,51.61829676926834],[3.685836716124145,51.61828673871616],[3.685907021999656,51.618268585154134],[3.685976324790389,51.618244834015144],[3.686037612912235,51.61821529342087],[3.686105787427028,51.618173500344675],[3.686138060791051,51.61813705574469],[3.686166059295875,51.618086757922406],[3.686219350623516,51.61797205316921],[3.68624955889405,51.61789057331509],[3.686265922163724,51.61781550893981],[3.686280344962941,51.61773981399674],[3.68628791124973,51.6176863511253],[3.686283526161942,51.617601545255766],[3.686255258297088,51.61737617113268],[3.686241142594845,51.61730129283079],[3.686267815876475,51.61725319630656],[3.686265666698407,51.61710072635914],[3.686202378063055,51.61704854355443],[3.686184205034955,51.616993276905056],[3.686162163616859,51.61672630549656],[3.686167297093827,51.61669379948412],[3.686186391657305,51.616668320113256],[3.686206723939685,51.61666181018961],[3.686597008300517,51.616639337016075],[3.687380239010725,51.61658537227924],[3.688117921523864,51.616554474908256],[3.689055130376707,51.61652033859695],[3.689455204791316,51.61648124023355],[3.689693741633066,51.61644127057003],[3.68997027312582,51.61643909835098],[3.690170522819391,51.6164258125693],[3.690304724455582,51.6164293239619],[3.690699658758322,51.61643760627684],[3.691073030198273,51.616452119459815],[3.691387200998287,51.61646717559977],[3.691440723838748,51.61647249167886],[3.691730272608923,51.61650337234503],[3.691846380010821,51.61651459401433],[3.691912861653036,51.61651823673244],[3.692078755563189,51.6165254059648],[3.692191034326265,51.616533200462406],[3.692304118624842,51.616543784508806],[3.692943158258328,51.6166524661196],[3.693565317356371,51.616763506943876],[3.693635300812482,51.61677161359057],[3.693669022074057,51.61677198498137],[3.693708416766981,51.616767772575116],[3.693753115647647,51.616758422615696],[3.693800704258374,51.616744394603344],[3.693839022783446,51.616728398353494],[3.693863758941197,51.61671414734289],[3.693892562665175,51.61669152237354],[3.693915496595005,51.61666791339586],[3.69393572940426,51.61663968028934],[3.693950048795694,51.61661201785904],[3.693957875748597,51.61657839081321],[3.693959586897244,51.616543407606294],[3.693949852257348,51.61650632579935],[3.693930088359377,51.61646981801611],[3.693903833785904,51.6164377383504],[3.693873998401843,51.61641298782089],[3.693834180788246,51.616386393607044],[3.69377591153885,51.61635852532319],[3.693625949985971,51.61631880179843],[3.693454829256287,51.616279931410666],[3.693231675926781,51.616243022238386],[3.692865955424347,51.61618612092312],[3.692634830741785,51.616150389721156],[3.692421580163487,51.616120185337486],[3.692126656328613,51.61609136814069],[3.691857098231273,51.61606546211144],[3.691590666540628,51.61604439258042],[3.691427070217604,51.61603414532529],[3.691251131282952,51.61602647887615],[3.691120170328593,51.61602091183555],[3.690929600682756,51.61601985633135],[3.690667162195937,51.616010952459334],[3.690199573209183,51.61600549964997],[3.689752246253225,51.616013132151565],[3.689410839233616,51.6160205384219],[3.688677116834896,51.61605507948136],[3.688144810827962,51.61608175373387],[3.687709377369988,51.61610376478787],[3.68729166829108,51.61612871092593],[3.686887462017357,51.61614516729132],[3.686548875853621,51.61616510267793],[3.686246348433615,51.61619891201479],[3.686228954376574,51.61619562933889],[3.686212996829278,51.61618908610997],[3.686197989302429,51.61617800762789],[3.686184051179975,51.61612149897389],[3.68615910833846,51.6160777043099],[3.686116799447056,51.6160206481743],[3.686087864470245,51.615990109994996],[3.686035261960514,51.61596107057396],[3.685967793434378,51.61594219863989],[3.685894045209775,51.61591903687425],[3.685841731851384,51.61588653133243],[3.685819701596523,51.61584864060305],[3.685790743220593,51.615791032355105],[3.68574612883499,51.61569230867739],[3.685670514630211,51.615458801636095],[3.685649666338091,51.61539250987399],[3.685627962901046,51.61533707488271],[3.685605416857217,51.61529177762416],[3.685570470484635,51.61523905380595],[3.685525054657901,51.61518363341186],[3.685494653479552,51.61515486280263],[3.68546331568518,51.61512526943455],[3.685427024469292,51.61509875956396],[3.685384539437284,51.61507260008099],[3.685326797353685,51.61504125595721],[3.685276145293977,51.615011848986256],[3.68521827966665,51.614984953185484],[3.685157549868434,51.61496395823291],[3.685077696702888,51.614936140038715],[3.684994171807259,51.614914192929184],[3.684942561259577,51.61490301308789],[3.684881272638091,51.614891521546134],[3.684811064534588,51.61487797623044],[3.684734326009324,51.61486797686833],[3.684641152810675,51.61485915867885],[3.68455329666826,51.614853726233115],[3.684443939717753,51.61485017432385],[3.684294584467422,51.61477581705457],[3.683767935972694,51.61477292174565],[3.683732089218661,51.614834531324234],[3.683704339975491,51.614872030087994],[3.683707382469658,51.61488483157733],[3.683702646421162,51.61490287796634],[3.683590027319771,51.61493156176203],[3.683472725361379,51.61493844778232],[3.683384585935951,51.61495476675711],[3.683307591537902,51.61497924037043],[3.683220845396325,51.615010737096846],[3.683100046142873,51.61505955630201],[3.683019676354668,51.61509698046361],[3.682933111269277,51.61515399397373],[3.682869643221507,51.61520431361125],[3.682818149406089,51.61524802905427],[3.682772733163453,51.615291797081866],[3.682719496173258,51.6153461495277],[3.682679486897237,51.61539359242126],[3.682634510794224,51.61545752297342],[3.682599729722509,51.615525683672125],[3.682577191779288,51.61559852691812],[3.682569042191759,51.61565587388034],[3.682566567681071,51.615719371978415],[3.682561784003832,51.61581585764346],[3.682540284335524,51.6160957167321],[3.682533069428715,51.61618657501858],[3.682517831778801,51.61624154413438],[3.682494138362915,51.61628481055251],[3.682463973170447,51.61631277112049],[3.68242287084919,51.616341633117294],[3.682381779941712,51.61636366266949],[3.682321127750703,51.6163878164652],[3.681933852155233,51.616461204107644],[3.681510809353763,51.61654711374904],[3.681326367412435,51.61659345671262],[3.681188658735508,51.616643987254],[3.680977304093308,51.61671546946448],[3.680816905519234,51.61677141335405],[3.680674409893433,51.616825163898476],[3.680558132384397,51.61687565577789],[3.679742189116568,51.617158951489294],[3.679103533352897,51.617374481970096],[3.678556713548649,51.61757871031479],[3.67794429121115,51.61778263377112],[3.677475014546471,51.61793439032815],[3.677229527974829,51.618025613032785],[3.676779998743017,51.61821153986892],[3.676527670476408,51.61833625771547],[3.676176009344251,51.61852599603602],[3.67603240580829,51.618611091873596],[3.675897274701089,51.61869171747067],[3.675760691242703,51.61877751804153],[3.675645346023924,51.61886346741312],[3.675353367101814,51.61909066704469],[3.675275811011412,51.61915723768678],[3.674853256310932,51.619517064339746],[3.674556424724612,51.61976353807717],[3.6742901509265,51.61999852849851],[3.674227272404096,51.62008363558925],[3.674194481343137,51.620156794689535],[3.674189285508863,51.62022319267255],[3.674207225240492,51.62028236865737],[3.67424331902241,51.62034270053644],[3.67429721435692,51.620399759916175],[3.674363256613302,51.62044878003569],[3.674425812507352,51.62048610666308],[3.674507940457048,51.62051305737555],[3.674604036274222,51.62053384742834],[3.674691258265611,51.62054486092086],[3.674795286890802,51.6205475886285],[3.674862305394083,51.62054479383721],[3.67493271839321,51.62053242910867],[3.675006433936057,51.620516750319666],[3.675058776887355,51.62049870886112],[3.675107412789584,51.620466012919074],[3.675485190164635,51.62013328300585],[3.676240299765458,51.61948796933084],[3.676376829906749,51.61937836118045],[3.676546143523905,51.6192653035976],[3.676685364738305,51.619176960480615],[3.676785301363854,51.61911850177329],[3.676996163550073,51.61899930842073],[3.677150961943108,51.61891566967721],[3.677338897039029,51.618821124478416],[3.677529324408397,51.61873131732381],[3.677900631149138,51.6185823272656],[3.678350023434449,51.6184291187035],[3.679017580999912,51.618193678285365],[3.679833917522425,51.61792931766471],[3.68074894533594,51.61760955490926],[3.681438164307214,51.61737808496197],[3.68166053177697,51.61730721199981],[3.681725921079139,51.61728462897935]]],[[[3.7038915159355,51.64335902845586],[3.703789244456242,51.64334801854137],[3.703682088716093,51.64334245824397],[3.703570069305075,51.64335112227854],[3.703528253057006,51.643300544087985],[3.703420937291614,51.643216110252055],[3.703220840487571,51.64312893859939],[3.702950918614613,51.64303567309891],[3.702653471640379,51.64293423417696],[3.70232745048372,51.64281787285453],[3.700985833612068,51.642550228258344],[3.700791330559492,51.642434103616786],[3.700529701531813,51.642274757089645],[3.700213638614753,51.64207790017666],[3.699977856524442,51.641926890341736],[3.699776154944421,51.64178266465398],[3.69958853610934,51.64165490500356],[3.699396417820251,51.64150561152478],[3.699268848635846,51.64139462120151],[3.699122551244324,51.6412561741529],[3.69891642721511,51.641047773945566],[3.698802890422129,51.640923994708004],[3.698707108979628,51.6408239450116],[3.698620108884053,51.64071005117744],[3.698554124391628,51.64058435975578],[3.698527446925907,51.64048836387095],[3.698497875611786,51.64037813966282],[3.698479832280447,51.64027301745218],[3.698491557236399,51.64018679077019],[3.698500811195657,51.64011607249465],[3.69852351703102,51.640037601019685],[3.698561323629008,51.63996179281671],[3.698618730688722,51.63986716328016],[3.698706021158355,51.63975227850035],[3.698864875297714,51.63959940882151],[3.698989798952256,51.63948580406849],[3.699119543500804,51.639371927113494],[3.699231536656246,51.639281914655584],[3.699396630587952,51.63915614987684],[3.699588273148479,51.63903715984289],[3.700067202134831,51.63875460910334],[3.70035639434486,51.63855458424403],[3.700588872919684,51.63844696060874],[3.700710820629351,51.63839523572022],[3.700950150170929,51.63822151525055],[3.70143917585914,51.63790478894947],[3.701527161657907,51.63784780010044],[3.701703047341165,51.63776018924145],[3.701807091147007,51.637709230198055],[3.7019325178033,51.63766060185978],[3.702023582279267,51.637632290791494],[3.702102928041726,51.637612558343264],[3.702190648237082,51.637593746576876],[3.702262367258093,51.63758444969161],[3.702367169834193,51.637578712818794],[3.702497043029352,51.63757677110817],[3.702626852279122,51.63758665044927],[3.702822872405802,51.63761530144089],[3.702995658386854,51.63764905672349],[3.703070462363792,51.63767297759559],[3.70313427625132,51.63770143311704],[3.703187466477771,51.637734671315265],[3.703373687938937,51.63786487749311],[3.704408781885319,51.63850110915802],[3.70442610938291,51.63851967140528],[3.704439650695392,51.63857325894965],[3.704263257367288,51.638677705235736],[3.704601306959887,51.638895113442565],[3.70470567964819,51.6388313904818],[3.704727703547278,51.638840994057155],[3.704737935877644,51.638839361136384],[3.704815194271438,51.638797660743904],[3.704831321241163,51.63879681380968],[3.704861363430319,51.63880370973181],[3.704897346202828,51.638819492465224],[3.705427398557267,51.63915656726517],[3.705489372871319,51.63921676637302],[3.705508139635618,51.63923471982487],[3.705514108667607,51.639247904332954],[3.70545779510577,51.63933839935384],[3.705441014349149,51.639403552839156],[3.70541484450485,51.63941960176979],[3.705896938058718,51.63972747705374],[3.705953154898069,51.63976337358253],[3.706011912182547,51.63980089785036],[3.706216120965078,51.63967811299477],[3.707025605952328,51.64018301383023],[3.707180415810416,51.64028728443883],[3.707230585508897,51.64032537701567],[3.707269827296433,51.64036086733858],[3.707299382095205,51.64039730638062],[3.707318064559951,51.640424967724485],[3.707348168243095,51.64047076443243],[3.707365626778295,51.640515067019905],[3.707371357692661,51.64055573101997],[3.70736885884308,51.64059077486965],[3.707361314629601,51.64062121522736],[3.707345903805578,51.64065572308274],[3.707330716004557,51.640685775003426],[3.707310805562418,51.640722780457246],[3.707290056475333,51.640753957213434],[3.707252164942602,51.64078646112344],[3.707028422899992,51.64089277597321],[3.706245245234691,51.6413836294446],[3.705781592490915,51.64162396414421],[3.705545366255348,51.641749920202],[3.705495040093573,51.64178103117157],[3.705455276656935,51.64179033988454],[3.705405084841825,51.6417894206865],[3.705356572878113,51.641778672360076],[3.705324224513681,51.641764173694774],[3.704919279591302,51.641508622659785],[3.704555769285785,51.64126462508829],[3.70451224896524,51.641251772559656],[3.704472954016424,51.64125392248753],[3.704438439009887,51.641270147871914],[3.704419288982882,51.641296726176],[3.704423607496813,51.64132127757882],[3.704448353792573,51.64135253277777],[3.704709701449108,51.64152862414871],[3.705238958054169,51.64189611079598],[3.705258719685483,51.641933605276144],[3.705235865980839,51.641973543841104],[3.705204592977952,51.64203786864375],[3.70518288664891,51.64210488417679],[3.705177118017857,51.64216839788445],[3.705184337852928,51.64223740251776],[3.705209821390051,51.64229357996817],[3.705263318091294,51.64236661214355],[3.705330296361687,51.6424334190768],[3.705385265565811,51.64248509367754],[3.705451205085874,51.64253046197662],[3.70549975173259,51.64255975752173],[3.705592078545322,51.64260429130754],[3.705726312897989,51.64265573836992],[3.705840492911708,51.642677562109874],[3.705976600208244,51.64270464540188],[3.706084305229223,51.64273196776614],[3.706158130086903,51.64275956745501],[3.706220791725711,51.642781936256384],[3.706286028050904,51.64277892673939],[3.706431037242145,51.64276277768583],[3.706494536965578,51.64275789112846],[3.706556788680322,51.642767946288856],[3.706652014957547,51.64281810377703],[3.70677485263506,51.64291856227349],[3.706822044163329,51.64294235377884],[3.707025792898777,51.6430531619098],[3.707424419166095,51.64321716645468],[3.707701997810167,51.643313084644525],[3.707847981702026,51.64334862341362],[3.707970093407844,51.643366657141215],[3.708160662165703,51.64338915228295],[3.708270622465674,51.64340248926402],[3.70842024644131,51.64341001217838],[3.708620580372999,51.64342050991791],[3.70886749870442,51.64340220567159],[3.709221682475156,51.643341656979175],[3.709450981754107,51.64329927485326],[3.709662096454732,51.643271887920804],[3.709870707484703,51.64324186655698],[3.710133876446343,51.64319322597778],[3.710429871420835,51.643135696435806],[3.710620665516848,51.643091600515326],[3.710793317858479,51.643046911734984],[3.710999925633811,51.64298858555195],[3.711264348744952,51.64291417658099],[3.711595203677974,51.64284268720526],[3.711885678509835,51.64275965972986],[3.712193092729092,51.642597553676765],[3.712313194411513,51.64255348590117],[3.712533071705398,51.642477717249065],[3.712593430437084,51.64245535946979],[3.712671555501668,51.64243122413616],[3.71275983516605,51.64240483368942],[3.712834589702423,51.6423854867313],[3.712909430162205,51.642376713405646],[3.712996504670876,51.64236923885388],[3.71317961939651,51.642366608508816],[3.713244110876759,51.64236221795903],[3.713309520810991,51.6423583889137],[3.713385910037342,51.64235579571237],[3.713467452018123,51.642352574934016],[3.713567831838475,51.64234399569509],[3.713662129266916,51.642329917289715],[3.713696700766692,51.64232891038829],[3.713736893154258,51.64233416011838],[3.713763597189778,51.642343118664954],[3.713804844591041,51.642366354823665],[3.71387594495642,51.64239897210804],[3.71396857635292,51.64243820834746],[3.714415729434704,51.64228489130259],[3.714447018826295,51.6422506814902],[3.714446468566329,51.64224288813153],[3.714434960067414,51.64223289734403],[3.714429602669137,51.642224981321036],[3.714441242460586,51.642216157548184],[3.714463062613389,51.64220946613996],[3.714484193979386,51.642199906005196],[3.714491048977091,51.64218839768468],[3.714488684666519,51.64217964341505],[3.714486231888372,51.642171328399236],[3.71449224977614,51.642160967844326],[3.714543581375446,51.642132600448846],[3.714618747207092,51.642097777159535],[3.714679461165171,51.64206223480896],[3.714720695586174,51.64203417251711],[3.714763283909786,51.642002704306115],[3.714799878336796,51.64197077282224],[3.714845067316245,51.641924436043055],[3.714874915962205,51.64189087979192],[3.714904890624153,51.641853909068004],[3.714925397823682,51.64181819650588],[3.714947610431321,51.64177660176863],[3.715022415085953,51.64169165284016],[3.715034787492232,51.64160857164403],[3.715028446560161,51.6415748487802],[3.715030939270367,51.641557425483626],[3.715059049628945,51.6415415909518],[3.715091028688486,51.64153172723464],[3.715271140977391,51.641463152763194],[3.715479556313956,51.64140521321524],[3.715683384354371,51.641336482491354],[3.71578065505407,51.64129931316192],[3.715859976790898,51.64126261557427],[3.71592501470887,51.64122848288516],[3.715985840183981,51.64119612398985],[3.71605452794876,51.64116488425597],[3.716135235168085,51.641132134979536],[3.716295466160406,51.641093616852466],[3.716449988461148,51.641048858725505],[3.716502454471131,51.64103354244106],[3.716529244494585,51.64101234854846],[3.716539717893945,51.64098459259555],[3.716531708763877,51.64096238039397],[3.716513536895328,51.640940697345975],[3.716485874752759,51.64091972386188],[3.716430727921093,51.64088197781789],[3.716387139488205,51.64086658454443],[3.716344977706624,51.640857954256816],[3.716296893340496,51.64086103448425],[3.716248276560859,51.640871497011126],[3.715988423826078,51.640954954533264],[3.715868561473391,51.6409986248714],[3.715734174750513,51.64105960046554],[3.715577642028566,51.641134931486135],[3.715487460112554,51.64118753017271],[3.715423109437991,51.64121243054108],[3.715315329369205,51.64124111551746],[3.715242914777954,51.64125508538445],[3.715176739495411,51.64126756209553],[3.715093876544317,51.64127922492246],[3.7150245217148,51.64128076001795],[3.71495326682294,51.641273880083254],[3.714896633375786,51.64126546498598],[3.714828224055177,51.641248044207515],[3.714757280690464,51.64122959824886],[3.714708413284898,51.6412170866608],[3.714663760498651,51.64119726335281],[3.714615361151055,51.641172468844914],[3.714577382824082,51.64114093681091],[3.714544851258577,51.64109885623888],[3.714522373398463,51.641051768009625],[3.714498259584977,51.64098950794057],[3.714468638499908,51.64094413359697],[3.714403557591734,51.64083777537546],[3.714283535824751,51.64065842249665],[3.714145682131939,51.64043337814862],[3.713978206983264,51.64019432586616],[3.71383501442071,51.639989504589195],[3.713688994486307,51.639766994959004],[3.713513427645275,51.639505404704984],[3.713749682617145,51.63944696750738],[3.713660682509523,51.639306481618156],[3.713637009349627,51.63926911246131],[3.713547572395125,51.63912795495516],[3.713342292541861,51.639177503060964],[3.713177624730809,51.63895772866735],[3.712967053513779,51.6386477190146],[3.712915046073251,51.63858265005945],[3.712863624942654,51.63853416736471],[3.712831501210034,51.638519062654176],[3.712584865285199,51.63814434623985],[3.712374099500515,51.63782886660404],[3.712386568510706,51.63780540990084],[3.712413182879937,51.637772554162574],[3.712428729963128,51.63775650447565],[3.71244413906036,51.637742232867915],[3.712854384795204,51.637653275982075],[3.71296105639603,51.63763602197323],[3.713018729991532,51.63762827960459],[3.713088880687014,51.63762226204909],[3.713165952720289,51.63762287035376],[3.71321981690814,51.63762672465741],[3.713289378446556,51.63763078553642],[3.71330130239099,51.63762753986087],[3.713341427043649,51.63762316930734],[3.713412598697309,51.6376489554459],[3.713491821546417,51.637662522185096],[3.713584717326198,51.6376736053789],[3.713601170067283,51.637676438885215],[3.713632077807838,51.637685340750984],[3.713676020294139,51.637712553256584],[3.713720024567664,51.63773653016379],[3.713779650876355,51.637751021096065],[3.713820308096147,51.63775257353362],[3.713878858764747,51.63774768418214],[3.713938338767161,51.63774462410857],[3.71400914381138,51.637754141399824],[3.714114988123891,51.637777276378735],[3.714201209223536,51.637780145500244],[3.714280119180501,51.63779437250015],[3.714379538918235,51.637818557129144],[3.714427045783632,51.63783690205038],[3.714460312245647,51.63785471072417],[3.714506635848902,51.63789492978145],[3.714545881557401,51.63791241036325],[3.714577877728638,51.637916886387416],[3.714605016152152,51.637930840528675],[3.714629800128668,51.63795886659637],[3.71466872712082,51.63799828760579],[3.714694860655982,51.63803476573817],[3.714722855358118,51.638063098396394],[3.714746269979952,51.63807930075918],[3.714749940335502,51.63810394136224],[3.714746570430564,51.638131430108295],[3.714756223216367,51.63815839477972],[3.714759833568354,51.63819209662417],[3.714753733834347,51.63822347505759],[3.714685728494271,51.63832750823979],[3.714652127926966,51.63837078312142],[3.714639718749337,51.638403995253725],[3.714652490002805,51.63842945820128],[3.714700940335898,51.63845827206705],[3.71467908860193,51.63849639271528],[3.714989024146309,51.63856473393545],[3.715002712454558,51.63853991889549],[3.715053127396008,51.638528044176184],[3.715077208214904,51.638516422400194],[3.71524129949827,51.638340204474325],[3.715367245159991,51.63815383976383],[3.715384278690765,51.63812489204899],[3.715408922846949,51.63809995481422],[3.7154493829124,51.63808924126339],[3.715519624863114,51.63809994527955],[3.715632142900247,51.63813647069248],[3.715799669025374,51.63817759364793],[3.715959370659865,51.63821228450278],[3.716086757537705,51.63824094867789],[3.716140603069666,51.6382582596531],[3.716199052126272,51.63828864513371],[3.716249186486685,51.638330581086734],[3.71627053487739,51.63836208187738],[3.716288528282432,51.638405024194995],[3.716313528607914,51.63843192021959],[3.716366092689517,51.63844598531464],[3.716410345901207,51.63845896076812],[3.716473996585731,51.63848778417369],[3.71652593496393,51.638513725271885],[3.716533400573055,51.63854870476004],[3.716427460532949,51.63866205946656],[3.716426774720104,51.638683787915596],[3.716453304488959,51.63871309713391],[3.716488704209645,51.63872677322646],[3.71652098006502,51.638729562552136],[3.716554571608996,51.63872605955283],[3.716600196171121,51.63870891045761],[3.716764981599699,51.63862304261968],[3.716815579083911,51.6385854398728],[3.716855749683713,51.638566513673695],[3.716933592734,51.638567022604896],[3.716966561852475,51.63857687000136],[3.717135435098697,51.63866813945104],[3.717182985162412,51.63871593565579],[3.717217600352439,51.63875677762088],[3.71727892046713,51.63878064968971],[3.717333525615806,51.638809523317825],[3.717448739795004,51.63889215107269],[3.717573719572567,51.63899600001772],[3.717634967019169,51.63905165111547],[3.717662122538673,51.63909733109084],[3.71768418163047,51.639146435515485],[3.717728271750758,51.63919758040113],[3.717750415763125,51.63925732139641],[3.717749346366173,51.639297707969064],[3.717770995657064,51.63934499950293],[3.717788531831048,51.63939961327711],[3.717849909258161,51.639526252499024],[3.717916407421622,51.63963352799106],[3.717964778706583,51.639728489018175],[3.717989336129073,51.63976627443283],[3.718010801009485,51.63980368308735],[3.718020251593819,51.6398459997896],[3.718028475721913,51.639900426734464],[3.718030168602211,51.639942318109036],[3.718038408754084,51.63999905575482],[3.718037615016563,51.64004333900139],[3.718041933287251,51.640114755586985],[3.718040443630527,51.64018184595765],[3.718023467546764,51.64022886510683],[3.717976772746868,51.64029149874865],[3.71794346762663,51.640334643913874],[3.71789796120648,51.64037561018866],[3.717841421785261,51.64041876547023],[3.717831004898014,51.64043913241794],[3.717833040047256,51.6404756525563],[3.717854613411856,51.64050306571338],[3.717898586881031,51.640524873923816],[3.717953456948903,51.640527805381836],[3.718010635706922,51.64050925627242],[3.718043222020305,51.64048679620549],[3.718081884188042,51.6404417855553],[3.718101470522354,51.64039490252576],[3.718149101408963,51.64026411871926],[3.718165453207791,51.640401092456905],[3.718166924548779,51.640478410925404],[3.718174598943925,51.6405336481179],[3.7182053477999,51.64057948708596],[3.718261659448332,51.64059388344737],[3.718282207475123,51.64058285791261],[3.718283204859337,51.64054049247955],[3.718262112776136,51.64046000830762],[3.718253012873705,51.64041404662384],[3.718258859048149,51.64036517853811],[3.718279485699553,51.64032730947928],[3.718294949783175,51.64029700842535],[3.718311479105477,51.640266030320284],[3.7183172579477,51.64024722439906],[3.718311183351897,51.64022974177679],[3.718296107595827,51.64022362020369],[3.718240332187476,51.64022840753526],[3.718197787253501,51.6402219480684],[3.718157529328453,51.64019380994867],[3.718158454041708,51.64016557602498],[3.718161773169992,51.640106081474435],[3.718155013447488,51.6400193557693],[3.718132629368472,51.63992336307222],[3.718117205728922,51.639836495791734],[3.718112391820298,51.639784409994505],[3.718098431449461,51.63974253241654],[3.718081757278423,51.63971666357755],[3.718076578363992,51.639697620438085],[3.718087857076335,51.63967856034878],[3.718102879202541,51.63966495675174],[3.718119720131821,51.63965375250328],[3.718704927915418,51.63938714374046],[3.718717287221555,51.63938149435548],[3.718888366968747,51.639303570712336],[3.718918328325091,51.63929193310841],[3.718955452775002,51.63927685550208],[3.718991562526251,51.639264613300575],[3.719016974817709,51.639258799373174],[3.719046293359617,51.639250883492274],[3.719082510482802,51.63923062356312],[3.719092956326775,51.639208270095615],[3.719087689050575,51.63919043941671],[3.719026779829302,51.639128689597015],[3.718703377990448,51.6388470911252],[3.718327698390358,51.638530017026774],[3.718153673994848,51.63838870846113],[3.718096779802487,51.63835216091455],[3.718049756845083,51.63831984469075],[3.717985383542284,51.63825885399545],[3.717938031267657,51.63821430639254],[3.717882119943931,51.63812561178042],[3.717812750546245,51.63800064755661],[3.717741939166178,51.63791560604854],[3.717681411819337,51.63786005516442],[3.717630567894699,51.637823629672376],[3.717297371650309,51.637595783432076],[3.717015654061326,51.63741581555157],[3.716774583245486,51.63726241789028],[3.716687659981732,51.637210831862056],[3.716632065850417,51.63716848549168],[3.716583680808344,51.63712615212921],[3.716539533479717,51.63708644145691],[3.716520286026277,51.63706105705679],[3.716492202840549,51.637032759528374],[3.71647300680016,51.63700598237675],[3.716429330268508,51.63697466621737],[3.71639007855043,51.63694481569706],[3.716357247460686,51.636923426708705],[3.716326486080248,51.636906247700324],[3.716282449826981,51.63688468967821],[3.7162270358407,51.636855498307405],[3.716135181864806,51.63682599322822],[3.71604254132504,51.636797447779934],[3.715949156874392,51.63676988055029],[3.715855028839719,51.63674328255206],[3.715818471387397,51.636734012876786],[3.715780912356339,51.63672643701541],[3.71574255191498,51.63672061176755],[3.715703605997465,51.63671655819789],[3.715664290537627,51.63671429737119],[3.715624821469079,51.63671385035251],[3.715585400948308,51.636715220030005],[3.715546246566579,51.63671838254224],[3.715106509283315,51.63688728148186],[3.715043631921088,51.63691117776793],[3.714977089409787,51.63692633712367],[3.714912153906864,51.63693749181098],[3.714851880132072,51.636945647444605],[3.714773054805468,51.6369506879804],[3.714696014967604,51.63695197811141],[3.71462333039543,51.63695270114041],[3.714547835354124,51.636948151660555],[3.714482479796629,51.63694328859521],[3.714415367487643,51.636935919086625],[3.714361538090931,51.63692566481534],[3.714314539928184,51.63691704551467],[3.71427070201146,51.636908138745476],[3.714232242960227,51.63689794236448],[3.714202206965449,51.6368850075366],[3.714151767836165,51.63685298247756],[3.714102106847504,51.63681788489153],[3.714000851225601,51.63674098229622],[3.713845081526518,51.63660510650119],[3.713620758694442,51.63640274744004],[3.713589980107969,51.636368081547396],[3.713581673455251,51.63633286505338],[3.71358909922128,51.636305497279565],[3.713608138836598,51.63627857433096],[3.713638271455295,51.636256026451385],[3.71370369004239,51.63622591010312],[3.71382022072018,51.63617475953725],[3.713935907953503,51.63612062104492],[3.714021433055362,51.63607066306107],[3.71409312194025,51.636021361221935],[3.714147069169342,51.635965800196956],[3.714186723096604,51.63592875231848],[3.714231411981272,51.63589228886327],[3.714281052185704,51.63585789200961],[3.714334541372024,51.63582959157113],[3.714404122749891,51.63580291466951],[3.714546528744422,51.63575014652226],[3.71456697556531,51.635732827074854],[3.714559739040885,51.63571595693197],[3.714525769936268,51.6356780901195],[3.714380621732051,51.635522633409096],[3.714401118101384,51.63549458042293],[3.714418307358003,51.63545436138526],[3.714419164145919,51.63542176624834],[3.714414274958926,51.63538984413237],[3.714400404000739,51.63535858473236],[3.71436812426972,51.63532271087313],[3.714330285043172,51.63528911293979],[3.714141062810005,51.635117158036245],[3.713941074038016,51.634936337341976],[3.713920464168171,51.63491152635284],[3.713905314083661,51.634883619912294],[3.713894485286361,51.634861537981],[3.713893635707104,51.63484386012124],[3.713896732425702,51.634826903976005],[3.713917075933222,51.63480103350121],[3.713930628442507,51.634781053360044],[3.713967853209559,51.63476437853299],[3.714049021406522,51.63473882951411],[3.714161497118247,51.634695262308135],[3.714346103290583,51.6346130527004],[3.714521737815398,51.634532000136154],[3.714714070071953,51.634450619633704],[3.714959537206528,51.634337543752075],[3.715280160382147,51.6341934194987],[3.71577915748533,51.633973304623225],[3.715803360677269,51.633965343470315],[3.715825386125357,51.633959239138996],[3.715847551413673,51.63395835110545],[3.715871935133437,51.63396272704367],[3.715925059687224,51.63398299463516],[3.715942402723231,51.63398711714828],[3.715960664816772,51.63398982334892],[3.715983239327895,51.63399076614157],[3.71601334499169,51.63398610774395],[3.716107154020137,51.63395657543313],[3.716146920647176,51.633940664437354],[3.716191136605623,51.63392358532304],[3.716256231233722,51.633892321211526],[3.71632227960418,51.63385595527407],[3.716507565116979,51.63375943067],[3.716729647978966,51.63363698208507],[3.716849187250553,51.63357095684264],[3.716869952838546,51.633560222369134],[3.716900917284804,51.633539312776044],[3.716939951367298,51.63351033732008],[3.717099569234988,51.63341010100798],[3.717146404525719,51.633381902121776],[3.717205782055518,51.633348928661945],[3.717251520707444,51.633323042536944],[3.717290513705938,51.63329791417685],[3.717337358828183,51.633272969800686],[3.717420043711459,51.6332339728475],[3.717784993561819,51.633077528660394],[3.718356945220216,51.632821836013235],[3.718414604429364,51.632799778486415],[3.718433212211424,51.6327946587928],[3.718449387775729,51.63279242621058],[3.718467057928908,51.6327970744482],[3.718483348390336,51.632807411765164],[3.718979834972706,51.63323570896736],[3.719204743445231,51.63343179992453],[3.719499229235067,51.63369578711003],[3.719741772011187,51.63390666545814],[3.719915791274401,51.63405956009507],[3.720066171255959,51.63418354684702],[3.720180533367368,51.6342856145993],[3.720265576037578,51.63436117502212],[3.720318126337335,51.63441714136868],[3.720388463553997,51.63449267198422],[3.720409007945378,51.63450128957238],[3.720433449835143,51.63450567437123],[3.720458213518404,51.6345044538832],[3.720493317968379,51.63449036293808],[3.72079971261238,51.63434062691972],[3.720845331516777,51.63431443203074],[3.72090154574366,51.63427236754688],[3.720915082236689,51.63425744786482],[3.720916376606214,51.63423796662245],[3.72090420953379,51.63421722382634],[3.72067226944584,51.63395434701812],[3.72039003315873,51.63366660556011],[3.720076215539155,51.633326378243396],[3.719644266580695,51.632859952406456],[3.719433925376002,51.63262920604567],[3.719364446069511,51.63255168222147],[3.719316662524359,51.63250720088229],[3.719284417449169,51.632482108101776],[3.719229493731576,51.632451073121814],[3.719166372933375,51.63242177321963],[3.719080865544755,51.632381347896505],[3.719002699301658,51.63235459336136],[3.718933470044436,51.632333477189604],[3.718871095239541,51.632313744317784],[3.718794237003749,51.63229541410704],[3.718744238498591,51.63228364315511],[3.718700533510038,51.63227671774101],[3.718635415553631,51.632276166614346],[3.718563996584693,51.63228352683693],[3.718514992440033,51.63228986719222],[3.718451174360629,51.63230069808576],[3.718386870928299,51.632315684472886],[3.718343208014987,51.63232644320119],[3.718280128945322,51.632344269910824],[3.718227499283667,51.63235882938942],[3.718176893362042,51.63237531464289],[3.718085505547342,51.63241493413244],[3.717732789746727,51.63257160772428],[3.716692443116188,51.63303331777445],[3.715827956753766,51.633423146494906],[3.71509404364728,51.63374319246627],[3.714394830227947,51.63406025986386],[3.713820604599943,51.634313500583076],[3.713596690378862,51.63441130242856],[3.713317323630704,51.634521723846206],[3.713100198168962,51.63459878264158],[3.712965326934418,51.6346334067642],[3.712923066131308,51.63464326656774],[3.712872757678109,51.63464610672412],[3.712804909763424,51.634641539654424],[3.71272053240346,51.634626864747695],[3.712494753921266,51.63456511598612],[3.712298606895807,51.634506101468055],[3.7117346894899,51.63430863078838],[3.71138644304947,51.634198565759135],[3.711194227878421,51.63412980637131],[3.711108987464865,51.63409046682584],[3.711065758803356,51.63406752487352],[3.711019626733433,51.63403871566521],[3.710973767392783,51.634007222278974],[3.710911054921706,51.63395837907384],[3.710832998765779,51.63389200087513],[3.710738303928973,51.6338099030924],[3.710500205157145,51.63358742704851],[3.710100081438821,51.63324301347251],[3.709600065875152,51.63279833691962],[3.709587808883584,51.63278407352842],[3.709580648529232,51.632769110063265],[3.709585220163288,51.632732648465684],[3.709571172848966,51.63268519457869],[3.70956521570632,51.632645929894366],[3.709569949916311,51.63263121790484],[3.709578748862551,51.63261675299626],[3.709583807768742,51.632603025593276],[3.709587764943848,51.6325843287954],[3.709579841671446,51.63254471227099],[3.709568535927987,51.63248798385566],[3.709571008925331,51.632459430504284],[3.709579692295472,51.632424286494555],[3.709590124857239,51.63239145107606],[3.709598266967343,51.632368193328894],[3.709614452475805,51.63233448744254],[3.709633102444325,51.632299378461845],[3.709652287145412,51.63226387258724],[3.709687835231946,51.632226920176635],[3.709736599227948,51.63218027702985],[3.709780627275949,51.632137467703004],[3.709803233116355,51.63211568494069],[3.709832723674611,51.63209367723798],[3.709875816348066,51.63207378844718],[3.709938240784989,51.63204719141715],[3.71010106762097,51.63197489812255],[3.710256854636192,51.63191559341679],[3.710588143086793,51.63176428091499],[3.711069708762703,51.631552135360096],[3.711472349194797,51.63137364042857],[3.711936167663145,51.63117319412446],[3.712399496384669,51.63096165410479],[3.712865177938118,51.63075669081929],[3.713348440124204,51.630536747884335],[3.713786845822826,51.63034725842204],[3.714223853963488,51.63015443897575],[3.7143063532355,51.630115693313684],[3.714358097293272,51.63009104494845],[3.714402462296589,51.63007258417774],[3.714443409357208,51.63005749078904],[3.714498560404439,51.6300375929451],[3.714555172326691,51.63001920833344],[3.714624101134009,51.63000252812275],[3.714675106998587,51.629994348074796],[3.714738740136119,51.629988856788195],[3.714822780697429,51.62998347739777],[3.714902364277252,51.62997948165557],[3.714998388957428,51.62997934391245],[3.715060520084853,51.629985976720484],[3.71511213654234,51.62999569567654],[3.715173198959536,51.630010934735644],[3.715248049305823,51.630034210257335],[3.715322578315228,51.63006658819397],[3.715405002071842,51.630112078706496],[3.715471860872988,51.630158155856165],[3.715541447363029,51.63021370264463],[3.71567051922778,51.63032529905945],[3.71586192158596,51.63049416325351],[3.716178673379224,51.630780089739886],[3.716415848689286,51.63097860010977],[3.716714770853881,51.63123188780127],[3.716929775685304,51.63142649342082],[3.7169391382125,51.631432722431526],[3.716950913570592,51.63143619893364],[3.716968502554971,51.631434409277716],[3.717323413392817,51.63129209072248],[3.717552486762629,51.63118771183761],[3.717696024087001,51.631128833849665],[3.717775694989978,51.6310746811791],[3.717785664529981,51.63106404421989],[3.717780285879835,51.631052019520844],[3.717764476219364,51.6310388480614],[3.717529201653476,51.63086072138048],[3.71736202252776,51.63073992562073],[3.717242290015666,51.630677371020326],[3.717126073700161,51.63062015271512],[3.717074119307069,51.63059919211063],[3.717065973132521,51.63058975299898],[3.717064731407468,51.63057445196648],[3.717084609113846,51.63055641375494],[3.717120094008584,51.63052724374695],[3.717137204110678,51.6305121777276],[3.717153380275,51.630502069942835],[3.717169037576584,51.63049506535114],[3.71729175358265,51.63044137465059],[3.717309427669477,51.630441968559495],[3.717329253364441,51.63044062432825],[3.717415140041076,51.63040437017576],[3.717423756640884,51.630393597064334],[3.71742335061615,51.630377175201964],[3.717423312124208,51.63037155579058],[3.717442023441587,51.63035929054764],[3.718117178885099,51.630066513439516],[3.718129035479209,51.63005718897156],[3.718142870994159,51.63002943590027],[3.718153095509817,51.630017750698805],[3.718164761080372,51.63000851340389],[3.718274310245893,51.629949059934724],[3.71837914447745,51.62989798987399],[3.718519847953971,51.62983001738588],[3.718636127608422,51.62977802254341],[3.718898513153868,51.62966116139198],[3.719262991657589,51.629492263754166],[3.719434581660863,51.62941748446951],[3.719770856183214,51.6292757470795],[3.720115297174672,51.629119291328465],[3.72050088166619,51.62894892860538],[3.720882344587281,51.628778613812514],[3.72134824191891,51.62857081545613],[3.722195501594341,51.628197801281225],[3.722606390134643,51.628018055547635],[3.723091165728588,51.6278019873422],[3.723474725798886,51.62763106478962],[3.723726168591556,51.62751963828005],[3.723776266466674,51.62749750663216],[3.723821820007375,51.62747797143741],[3.723869590164261,51.62745904311327],[3.723913726312551,51.627443883922616],[3.723958273556959,51.62743051061388],[3.723998089993657,51.62742048629234],[3.724074736996801,51.627408980770284],[3.724149464009118,51.627401772174316],[3.724232484697745,51.6274007947443],[3.724294851343783,51.62740330852132],[3.724362234667368,51.62740727806001],[3.724406883268001,51.627411607663184],[3.724460094612633,51.62741877398721],[3.72452155951392,51.62743129886284],[3.724567992371045,51.62744369097348],[3.724611504231175,51.62746050067455],[3.724647794716677,51.62748397732553],[3.724672915058759,51.62750757391373],[3.724688306663687,51.627529405015665],[3.724697366976065,51.62755647730755],[3.724702830974192,51.6275843255852],[3.724708544688629,51.62761402938562],[3.724720024368172,51.62765390209498],[3.724732378592141,51.627681749397524],[3.724748499431319,51.62771284173539],[3.724777361589708,51.62775532587333],[3.724793937593131,51.62777283154022],[3.724814417203881,51.62779654195074],[3.724839238253645,51.627816097662105],[3.724866803403196,51.62783566539114],[3.724902856928093,51.6278601005386],[3.724968801726499,51.627910393587],[3.725040527231971,51.62796652243809],[3.725094139590171,51.62801633452108],[3.725195646564439,51.62810093572139],[3.725246564080499,51.6281340416778],[3.725292915739515,51.62815733740809],[3.725334336650505,51.62817486330899],[3.725360233186796,51.62817692134109],[3.725387929152344,51.62817481551213],[3.725442849797473,51.62817754653771],[3.725477397703347,51.62817293986136],[3.725495934206577,51.62816575031827],[3.725516724978868,51.62817311190933],[3.725534415624213,51.62818701925277],[3.725557134252477,51.62820010798467],[3.725600821924381,51.62821372829457],[3.725621922093192,51.62822368342852],[3.725648186989768,51.62824209074798],[3.72590154204564,51.62845511480322],[3.726212264211288,51.62872637298451],[3.726367451484603,51.62886185543941],[3.726558141386971,51.62902741928654],[3.726845097774449,51.62928636343869],[3.726962939442188,51.62939210598399],[3.726989169557702,51.62942056349513],[3.727005472882196,51.629442002652624],[3.72700598460807,51.6294623366691],[3.7269997162371,51.629481630499846],[3.727002607297728,51.62949892364718],[3.727021800982222,51.6295329450947],[3.727037126002514,51.629566893658016],[3.727050369542694,51.62960206231331],[3.727059288541745,51.62964881185634],[3.727066750793938,51.62968603812598],[3.727066379191296,51.62972023142454],[3.727061021882976,51.62976275977232],[3.727052640067866,51.6298085895393],[3.727042649837468,51.629853371602444],[3.727022574407892,51.62989190622594],[3.726986057388539,51.6299380019876],[3.72696167772622,51.62996824053077],[3.726929167297269,51.63000236430015],[3.726893630443707,51.63003353229727],[3.7268628412959,51.63005734179252],[3.726823868710277,51.630080954223274],[3.726780401042052,51.630106210972855],[3.726722901971834,51.63013790329022],[3.726686482806243,51.63015648146771],[3.726636725565676,51.63017913164623],[3.726546116563477,51.63021990145188],[3.72627114611996,51.630341239841314],[3.726151092267131,51.63039512149628],[3.725989046892373,51.630467852487456],[3.725531719056078,51.63066774479966],[3.725255911199439,51.63079207167149],[3.72502445413281,51.630896215819945],[3.724829045176636,51.63098363761049],[3.724004486162348,51.63134189032113],[3.723394186797611,51.631614146067484],[3.723227542265785,51.63168323880751],[3.722964915188891,51.631792113960074],[3.722955939088883,51.63179933123787],[3.722955128534242,51.631805666765445],[3.722960906649747,51.63182101426564],[3.723424919037279,51.63223361001598],[3.723432828688012,51.63223930539476],[3.723442444801182,51.63224141099419],[3.723458882650414,51.63224146495571],[3.723486779999099,51.63223630575981],[3.723554687121466,51.63221282717474],[3.724333869206613,51.63187286579365],[3.725102716346676,51.63152526369163],[3.725742534844914,51.63124227955774],[3.726126196897424,51.631074217483025],[3.726335454008323,51.630982549006724],[3.726832272437593,51.63076777793378],[3.727359271344624,51.630543319070156],[3.727680665458679,51.63042482129568],[3.7277377300926,51.630399460410935],[3.727752129541263,51.63038691661893],[3.727778524526126,51.630367512672585],[3.727793991966112,51.63036525078606],[3.727804417871189,51.630381922582814],[3.727837534461838,51.63043261134105],[3.727859517166674,51.63046544953621],[3.727892862381054,51.63049885344492],[3.727934089410529,51.630530831815776],[3.728001231621204,51.63058767590007],[3.728232210457927,51.63078990373954],[3.728269358291178,51.6308102088575],[3.728298935124894,51.63082108381348],[3.728339400307061,51.63083324591501],[3.728384060861885,51.630859447184335],[3.728572741944536,51.63103138007222],[3.728714104775009,51.63116844329347],[3.728790789631828,51.631218796436755],[3.728850171524361,51.63125248823151],[3.728916805077259,51.6312755305582],[3.728957322325791,51.63129220623619],[3.728996712684441,51.63132664845562],[3.729021519964748,51.63135615514419],[3.729067047265657,51.63136264402606],[3.729094677461001,51.631368699431754],[3.72914898678037,51.631395747372665],[3.729191458659111,51.63141704463901],[3.729244302089168,51.631450994179104],[3.729305449157291,51.63148818095129],[3.729744660076689,51.6318741394033],[3.730060105316777,51.632159316557136],[3.730393834013288,51.63245265408474],[3.730473451945912,51.63254103100941],[3.730501307820855,51.63257689162289],[3.73052305151881,51.63260488919604],[3.730553770264927,51.632656882707586],[3.73059686473534,51.63271967780928],[3.730627368351593,51.632787832545674],[3.730634246973857,51.63282451986089],[3.73063305076455,51.63288133866069],[3.730621134515981,51.63292434962857],[3.730590210705432,51.632973177783846],[3.730561772889833,51.63300853792596],[3.730511162466622,51.6330544891405],[3.730473139836105,51.6330856859472],[3.730419710488837,51.63312141136322],[3.730345006458947,51.63316331736542],[3.729529115487829,51.63352288240819],[3.728779370189399,51.63385738898727],[3.727831951165751,51.634274745577954],[3.72669767310369,51.63477561340347],[3.725978782470077,51.635094906427284],[3.725714721441306,51.63521219126943],[3.724975264582878,51.63553328089372],[3.724512073469974,51.63574063811221],[3.724022294411165,51.635953908691796],[3.723906192280184,51.636002773913006],[3.72377098652304,51.63607849972577],[3.723659206217444,51.636134375548444],[3.723482660943126,51.63620471249556],[3.723364317591926,51.63624139960963],[3.72322332550842,51.63629879248505],[3.723126015104968,51.63633160705898],[3.723017986605743,51.636362003579016],[3.722857874919939,51.63640772453637],[3.722767006479295,51.63643349226461],[3.722651016432247,51.636469798598625],[3.722492675290478,51.63653730045069],[3.722343882006161,51.63660720347721],[3.722101963081244,51.63670803773206],[3.722068631059315,51.63672575945054],[3.722053157402937,51.63674423877245],[3.722051154898312,51.636766487901816],[3.722075362879899,51.6367977136471],[3.722516959706039,51.63718924408459],[3.722852743427214,51.63748649812275],[3.722890820386941,51.637519350410706],[3.722959341677776,51.63758674441254],[3.7230049237013,51.63761588259536],[3.7230783869528,51.63764236066637],[3.723234188903555,51.637664130157695],[3.723349025123916,51.63766914357992],[3.723464728820114,51.637667453573755],[3.723520505721809,51.637659768976036],[3.723910301499909,51.63753256225438],[3.723926010987047,51.637522599727845],[3.723938620882613,51.63751166714953],[3.72394216050264,51.6374975040237],[3.723682760843775,51.63719183664161],[3.723922584210818,51.63707643224991],[3.723935769791437,51.63706634394165],[3.723922519569141,51.63704199002317],[3.72391624557488,51.63702320129606],[3.723937521129716,51.637003689434266],[3.723988373243652,51.63700340543524],[3.72405158345101,51.63701439094324],[3.724126270526312,51.63699138593182],[3.724692713879085,51.63674402572264],[3.725521676731639,51.63638326776575],[3.7255469209626,51.636361879100946],[3.725569166624399,51.63633794858077],[3.725559172641241,51.636324060692004],[3.725543227353317,51.636306204531415],[3.725560651932261,51.63627624506696],[3.725587814373019,51.636260853102094],[3.725618590430688,51.63625604891651],[3.725645598472044,51.63625865304311],[3.725690543303038,51.63627878198134],[3.725717875570089,51.6362729399466],[3.725938625654667,51.636190029778284],[3.72598210460305,51.63617370067985],[3.726050207956191,51.63614617782401],[3.726255759304874,51.6360522001546],[3.726295409939286,51.63602994602115],[3.726301831582694,51.63601714529671],[3.726313281406781,51.63596295334518],[3.726371386194024,51.63589485064047],[3.726395404908378,51.635881256848386],[3.726528468840699,51.635863034654534],[3.72656306081163,51.6358467410254],[3.726584078763434,51.63581923279096],[3.726609576671521,51.63580666684838],[3.726852024903733,51.63573749425298],[3.727043703838346,51.63569554217955],[3.727150147560914,51.6356597793436],[3.727187409722106,51.63564748807871],[3.727305605599148,51.635589065841984],[3.727325270049694,51.63557167018219],[3.727326298554622,51.63555463943847],[3.727316486779012,51.635536951451584],[3.727317053478653,51.635514780777086],[3.727337569873748,51.63549424165765],[3.727373026588453,51.635470102666226],[3.727417043241257,51.635450499266874],[3.727468444814554,51.635436745324],[3.727529873839484,51.63542848274675],[3.727603278462374,51.63543405504724],[3.727632842842567,51.63543469916591],[3.727667606789529,51.63542986111383],[3.727752268923898,51.635394723755894],[3.727851146897346,51.63534341688722],[3.728047934261038,51.635258553715026],[3.72825887742264,51.63516268920737],[3.72846573314143,51.63507189975502],[3.7285580410969,51.635025587581836],[3.72866262662713,51.63497381255816],[3.728701083989,51.63495015622861],[3.728813809132483,51.63490294658282],[3.728916915438949,51.634854072169205],[3.729036073309814,51.63481069339322],[3.729139120723751,51.63476657374392],[3.729211760463279,51.63473696472654],[3.729267578171324,51.63471461507095],[3.729348140038002,51.634676964165045],[3.729392479179168,51.63465442482683],[3.729447208568467,51.634616407810604],[3.729530494809147,51.634575361146375],[3.729627558958468,51.63455220224713],[3.729685542947244,51.63453815402728],[3.729747577283754,51.63451172078925],[3.729769413407797,51.63449534441308],[3.729819383440006,51.634463804633704],[3.729832170650738,51.634451516438446],[3.729833375684946,51.6344296334993],[3.729844734247842,51.63440821804066],[3.729858652946616,51.63439066865226],[3.729914639193272,51.63435223770064],[3.729961161238373,51.63433201257231],[3.729987058275983,51.634327443807784],[3.730013683850121,51.63432863006379],[3.73006367434196,51.63432456437568],[3.730106892826618,51.63431882048276],[3.730134137434414,51.63431177151049],[3.730178324428721,51.63429771642884],[3.73023315000079,51.63427639512737],[3.730282537378869,51.63425642621766],[3.730331026629919,51.63423415207984],[3.730441862934511,51.63418081882462],[3.730533104547276,51.63413985714643],[3.730630109197851,51.63410050532503],[3.730775872642897,51.634037417528184],[3.730940455826785,51.6339610028735],[3.730959038184086,51.6339435103908],[3.730957992536334,51.633927852727034],[3.730949424634875,51.633885199034836],[3.730950378920618,51.63386699850032],[3.73096539899268,51.63385921888973],[3.730989968917518,51.6338537950354],[3.731034892629835,51.633848416570316],[3.731074612979655,51.633841921574245],[3.731104737424812,51.63383591105227],[3.731134337183182,51.633828050114964],[3.731160111516658,51.63379836986952],[3.731185673307609,51.6337859656779],[3.731224351622656,51.633780705512756],[3.73130080652194,51.63376679208552],[3.731333354845713,51.633755727387616],[3.731351683730084,51.6337467449285],[3.731355664598618,51.63372517996136],[3.731344322421466,51.63370624800061],[3.731343590591586,51.63369464934017],[3.731362766559483,51.633681066921945],[3.731383277538333,51.63367839046594],[3.731416836559199,51.63367919805684],[3.731454146006066,51.63367304639924],[3.731500051766929,51.633649485594155],[3.731541191110864,51.63361640867227],[3.731566026585741,51.63358315495519],[3.731579951798779,51.633570936620316],[3.731599675159949,51.633566486911924],[3.731620687070457,51.633552867502196],[3.731644711741521,51.63352717200092],[3.731644032901028,51.63350384194829],[3.731655750687536,51.633482844952944],[3.731675480136956,51.63346636649899],[3.731702533843182,51.63344910165777],[3.731746262187367,51.633427397879274],[3.731758971482008,51.63341405653037],[3.73175747705096,51.633393672697245],[3.731757189570432,51.63337505003113],[3.731771697906111,51.6333571491612],[3.731785634322299,51.63335450546986],[3.731812964216719,51.633358937740994],[3.7318218337847,51.633358164224646],[3.731863101804431,51.63331087558913],[3.731888147295346,51.63327265322602],[3.731901620413435,51.6332391937265],[3.731897500398421,51.63321238075117],[3.731895371720323,51.63318167624563],[3.731907281953791,51.63315936039742],[3.73193982204025,51.633131106255036],[3.731961211314268,51.63312098929352],[3.731978022405197,51.633112021226104],[3.731982368473921,51.633091522244314],[3.73197441826893,51.6330544782338],[3.731986457780481,51.63302743538883],[3.73201762883841,51.63301094794179],[3.732059464915993,51.633007017773956],[3.732084928632498,51.632986206215335],[3.732112029641354,51.63295102458624],[3.732117759930128,51.63291675429444],[3.732114459535089,51.63289202065622],[3.732088444325347,51.63287098426707],[3.732066970568619,51.63284505854941],[3.732062500139999,51.63280608594108],[3.732055316529777,51.63276545672113],[3.73204037870112,51.63271326434769],[3.732013022708657,51.63266922116048],[3.731992152984514,51.63263586012962],[3.73191861725814,51.632496380415425],[3.731901153653589,51.63243543183936],[3.731892080264069,51.63240462008145],[3.731869232661695,51.63236925320807],[3.731928466574673,51.63229044756705],[3.731816297226595,51.63214636659942],[3.731746074215243,51.6320641289654],[3.731630084116408,51.63196573562495],[3.731217005277606,51.63160621676884],[3.730701064616029,51.631156974649485],[3.730298347272313,51.63080880981402],[3.72989337261247,51.630494486446054],[3.729438307907405,51.63009799202585],[3.728985452082734,51.62969977397248],[3.728287065886612,51.62915864423642],[3.727148124354444,51.62816595866849],[3.727134512744318,51.628141240351795],[3.727068134101802,51.628071173029085],[3.727017316881609,51.62804751796172],[3.726975336726873,51.62803735665821],[3.726926618146623,51.628025418545356],[3.726873484790752,51.62800742131565],[3.726849091006802,51.62799273578808],[3.726695863395252,51.62786294556584],[3.726495104830917,51.62769515323041],[3.7264264243333,51.627633152984835],[3.726291593311496,51.62750477411593],[3.72625815128455,51.62747449691149],[3.726146290941513,51.62737323469389],[3.726061848654713,51.627294783170704],[3.725956131950999,51.627190659225846],[3.725927556398733,51.627160037481815],[3.725875010130269,51.627115032674304],[3.725814746352989,51.627074476251714],[3.725739096596682,51.62703005126826],[3.725663504559028,51.626986813755956],[3.725579445735916,51.62694088474309],[3.725469738507713,51.626889700684075],[3.725376362985664,51.626849689558654],[3.725292440691443,51.626817382375485],[3.725178741935364,51.626782494444186],[3.725088711397906,51.62676038507972],[3.724995836207777,51.62673825320542],[3.724832129003882,51.62670224079795],[3.72474649743709,51.626684257234125],[3.72465882298875,51.626670775618074],[3.724582230226854,51.62664816459309],[3.724530387276422,51.62663010370047],[3.724483888493453,51.6266092958312],[3.724460974407251,51.626594477987695],[3.724324883474616,51.62649948631391],[3.724255016851353,51.62644395878121],[3.724221921374788,51.62640705115254],[3.724163367829585,51.6263557749131],[3.724126014578129,51.6263172064755],[3.724061195462943,51.62627056993574],[3.723963028295295,51.62620336618956],[3.723934309492519,51.626175519862294],[3.723916523625893,51.62614259669901],[3.723876857086913,51.62610842743957],[3.723813104365909,51.62605242917163],[3.723664938829119,51.62591814877058],[3.723615632756044,51.625871148216156],[3.723538312385639,51.625802307672586],[3.723190118051172,51.62553016731004],[3.723150789172499,51.62549627230022],[3.723062403977804,51.625410965855],[3.722679164956559,51.62506750976109],[3.72263855645687,51.62503583491498],[3.722587568659825,51.62500360779841],[3.722544829428744,51.62498472258499],[3.722476532916059,51.62496246194321],[3.722413631344863,51.624943541472604],[3.722361245953899,51.62492970624029],[3.722309130789645,51.62491952484071],[3.722255523701071,51.62491260359664],[3.722202727260032,51.62490759978305],[3.722161178836242,51.62491095508644],[3.722132319313621,51.62491883324389],[3.722087130742051,51.62493163033116],[3.722020956846956,51.62494438040286],[3.721961377810699,51.624959651665606],[3.721899653397497,51.62497866823022],[3.721825923940234,51.62500796043517],[3.721730097382863,51.625051340250934],[3.721014771978734,51.62536765889097],[3.720480398835958,51.62560173826003],[3.719698274036296,51.62594609055833],[3.719031158672109,51.62624175981848],[3.718448335058591,51.62650362005648],[3.718207843802355,51.626605356293],[3.718079776305438,51.62666112015575],[3.717954631624055,51.626715954648304],[3.717903571660544,51.62674140545209],[3.717863426367035,51.626767785143755],[3.717851551489062,51.62678037275423],[3.717850161515066,51.62679183338029],[3.717856206105758,51.62680890208982],[3.718041757117412,51.62712663763535],[3.718130811446354,51.627277145265786],[3.718178415280338,51.627353386917285],[3.718200694652535,51.627395590029906],[3.718226201946075,51.62744035644043],[3.71826592594069,51.62752622199592],[3.71829492900248,51.62758197032037],[3.71831952194964,51.627657452097125],[3.718367957536747,51.627785650783956],[3.718370125521843,51.62780012892964],[3.718363449034509,51.62780923063911],[3.71834835799228,51.62782638438166],[3.718319253493485,51.62785731793644],[3.718294620163576,51.627880197138865],[3.71825331347065,51.627919263524355],[3.718201789305884,51.627960422678655],[3.718123253928426,51.62801528403991],[3.718040327183939,51.62806779019687],[3.717975260257395,51.628107191730095],[3.71791403248537,51.628140795403425],[3.717870801341993,51.62816385864794],[3.717824007348909,51.62819109641918],[3.717774732439103,51.628217058123326],[3.717718747501964,51.62824753601086],[3.717672967502707,51.62827194729697],[3.717617989638753,51.628297827547314],[3.717570737875236,51.62831631124096],[3.717512816682987,51.628335038202],[3.717462874149461,51.62834578785342],[3.717413566308827,51.62835616895551],[3.717334027513044,51.628368833550155],[3.717293386719976,51.62837333287682],[3.717275719734697,51.628366688666986],[3.717270558488008,51.628359359915095],[3.717258694775157,51.62833987965305],[3.717226565187199,51.628309411776],[3.717181235940968,51.62827964548508],[3.717144799376172,51.628256299254545],[3.71707941034512,51.62822563521657],[3.716990636462155,51.62819845809891],[3.716940839377133,51.62817743830146],[3.716872413942,51.62815117194207],[3.716800502616362,51.62812581771667],[3.716730871599395,51.62810678913549],[3.716649707548723,51.62809027489308],[3.716568437549423,51.628076635939216],[3.716483583408769,51.628064222346914],[3.716399084562545,51.62806137033158],[3.716286157585809,51.62806284104677],[3.716190141927634,51.62806832909492],[3.716104030105567,51.628079838119966],[3.716024830590592,51.628094664314084],[3.715977993087454,51.62810699501103],[3.71595423548122,51.62811196880735],[3.715931688448144,51.6281138852507],[3.715912393828796,51.628110256261046],[3.715891759396148,51.62810418077703],[3.715849088469847,51.628085788559254],[3.715819351126518,51.62807116819578],[3.715797952499574,51.62806427266004],[3.715758417424492,51.62805681232488],[3.715728663667422,51.62805477796136],[3.715659350613087,51.62805847147574],[3.715625920661235,51.62802882964258],[3.715355926713021,51.62814403740425],[3.715377170342797,51.62816335524154],[3.715382550043159,51.62826224324464],[3.715393284589662,51.62828411693796],[3.715399447491688,51.62829874214004],[3.715393263992264,51.62831090739417],[3.715380525208233,51.628322214800924],[3.715367241508477,51.62833497981894],[3.715324978189722,51.62835800202697],[3.714699361100402,51.62863946034827],[3.714012339772059,51.62894489503763],[3.713239885793933,51.62929121338288],[3.712097338270528,51.629795489876834],[3.711337701437553,51.6301264533872],[3.710777378960083,51.63037181388991],[3.710380474788767,51.63054419436017],[3.71036282887701,51.630549865972135],[3.710346588490942,51.63054995683752],[3.710310585983063,51.63054303077984],[3.710215584558711,51.63051587613792],[3.710164072162794,51.63051038189965],[3.710114515979542,51.630468037908535],[3.709983976610951,51.63052873822697],[3.710028490601148,51.63056563385175],[3.710027994357357,51.63060089526664],[3.710035609202694,51.630620746899915],[3.71005205543163,51.6306377314058],[3.710087828587493,51.6306672466106],[3.709325214109126,51.631013060373014],[3.708997973548056,51.63115262323585],[3.708948029259126,51.631171469440545],[3.708914170668166,51.63118075606303],[3.708876311659515,51.631190012256496],[3.708841349440691,51.63119750296683],[3.708815905776533,51.6312011295884],[3.708777589514315,51.63120244983782],[3.708733922596768,51.631205482356776],[3.708698602128009,51.631205874620534],[3.708655313388075,51.63120298799712],[3.708619785425995,51.63119611318177],[3.708579799465094,51.63118518274281],[3.708538996961575,51.63117016801473],[3.708432756421831,51.6311274144924],[3.708248812288475,51.63104877166172],[3.707565926475456,51.63072411457908],[3.707043609827197,51.63048061262417],[3.706941851124565,51.63043316626681],[3.706648873550486,51.63029383523505],[3.706519821492893,51.630234875543906],[3.706164869709013,51.630072707827274],[3.705418123768207,51.629706322685095],[3.705040563883652,51.6295245514563],[3.704915829244428,51.6294556369421],[3.704820643136059,51.62939664089059],[3.704718392426303,51.62932989249177],[3.704645541694374,51.62927900303457],[3.704575098975063,51.62922434530828],[3.704518572644337,51.62917148796445],[3.704460573118489,51.62911123743238],[3.704378174883357,51.62902261342652],[3.704313485350567,51.62893675237649],[3.704267933419916,51.62885679447052],[3.704236668672664,51.628785762584194],[3.704196688846618,51.628701245861514],[3.704174506252079,51.62861437800942],[3.704168312143512,51.628559853194886],[3.704164468538528,51.62849882631583],[3.704157200614989,51.628458823215354],[3.704154102435315,51.62839795090293],[3.704159160277727,51.62833683632251],[3.704177809080216,51.62826877005891],[3.704193946304934,51.628189762538234],[3.704209669025776,51.62813552606225],[3.704227139651788,51.628093343627256],[3.70425056628576,51.628047533919215],[3.704267538729424,51.628014873930866],[3.704285122552077,51.62798519849397],[3.704313276876683,51.62794588478436],[3.704350852932705,51.627896358876335],[3.704525911883429,51.62768938725183],[3.704774816062744,51.62738812730748],[3.705107431359719,51.62700688902288],[3.705437966142331,51.626618895251575],[3.705671963492005,51.62635974506748],[3.705853258327863,51.626133091724824],[3.706087202228471,51.625858117218925],[3.706336687780325,51.62555542402926],[3.706465384079884,51.625387214483325],[3.706635346868614,51.62518081392304],[3.706676429074176,51.62513476294316],[3.706720613477535,51.62508451313866],[3.706749468112059,51.62504957817163],[3.706792070281122,51.624990576123395],[3.706815181346989,51.62493485419308],[3.706847935552823,51.624880835075636],[3.706868660932325,51.62483491414902],[3.706876977346707,51.624780076492385],[3.706905284036476,51.624711995725555],[3.706918000198602,51.62465886647267],[3.706920275530088,51.62460645929473],[3.706911086371638,51.624523950057714],[3.706903306429808,51.624443169200426],[3.706893286807039,51.624363192258976],[3.706874926710502,51.62428728494349],[3.706863347214088,51.624239641337056],[3.70684671292757,51.62418419354151],[3.706827660382008,51.624141378203],[3.706783812280291,51.624063001021426],[3.7067245880846,51.623971600877475],[3.70663291438777,51.62384461876724],[3.706601140875476,51.62380677201439],[3.706570096906841,51.62376522277899],[3.706549352385945,51.62373065406921],[3.706529291503854,51.62370608329619],[3.706495581520706,51.62366009053388],[3.706466925513315,51.62360206057068],[3.706448430627386,51.62358278054388],[3.706390406222749,51.62354396318834],[3.706142039892621,51.623371342315174],[3.705753534719821,51.62309584541553],[3.705738830503726,51.62308418951447],[3.705715775854057,51.623054684885986],[3.705706749406661,51.62303208860267],[3.705697388174797,51.62299749456868],[3.705702630147102,51.6229360139685],[3.705686844519975,51.62291341042197],[3.705655326641087,51.62290180049669],[3.705612049367656,51.62289882292694],[3.705569704558807,51.62290574797539],[3.705531751341791,51.622900194803535],[3.705523185175816,51.62289166580751],[3.705523794326618,51.62287524945442],[3.705549306873277,51.62286030590833],[3.705623744193499,51.62283626636618],[3.705688509321764,51.62282533031535],[3.70577095052441,51.622812904213056],[3.705894721402395,51.62277536011258],[3.705899268267879,51.62276648020962],[3.705878235047328,51.62275762820294],[3.705833974030321,51.622751193324625],[3.705805137509148,51.62275101257364],[3.705723770927236,51.622761728026454],[3.705683442142403,51.62276064484861],[3.705541651756418,51.622712396830664],[3.705510423357485,51.62270311049985],[3.705485135798058,51.62269953744196],[3.705459146002197,51.62270282280181],[3.70525465640735,51.62274646092802],[3.705239562368167,51.62274570447971],[3.705221096350082,51.622740458380164],[3.705204557265082,51.62273232715781],[3.704695213752454,51.622388444550424],[3.704358750262456,51.62216660775019],[3.704323898220229,51.62213979199325],[3.704282882377944,51.62210432886401],[3.704238951428133,51.62204857782185],[3.704153738169933,51.62198749494026],[3.704120297413719,51.62197440949877],[3.704044303800274,51.621952090133384],[3.703941785555874,51.621921801285744],[3.703834177885986,51.621893219166125],[3.703747506853031,51.621858573195944],[3.703718327387636,51.621848587657325],[3.703684267053689,51.62184596676951],[3.70363987080551,51.621848258598746],[3.703582012764632,51.621854851758165],[3.703496244450473,51.62186356040953],[3.703432748739296,51.62187417188357],[3.703362778125513,51.62188723434635],[3.703304598516416,51.62190092500901],[3.703292610711279,51.62190986851191],[3.703299402370689,51.621921437795486],[3.703300977778516,51.6219260724541],[3.703285607191403,51.62193393338414],[3.703239339584532,51.6219523805069],[3.703198278766858,51.6219694641377],[3.703159397947177,51.62198968076338],[3.703110805841707,51.62201820836105],[3.703062601247646,51.62204757760828],[3.703012527704374,51.62208021034501],[3.702959845960715,51.622122784644],[3.702921600655103,51.62216126047764],[3.702897997048572,51.62218933867529],[3.702875466259651,51.62221536456694],[3.702861254745607,51.622245663726396],[3.7028586504499,51.62227182370973],[3.702862865151138,51.622303763697886],[3.702875751791098,51.62234059336913],[3.70290056462163,51.62239190718558],[3.702975415503918,51.622474130612176],[3.703065005615155,51.62255811251487],[3.703085510730513,51.622568332933284],[3.703131527014799,51.62257687985762],[3.703157098114985,51.62258603144121],[3.703236353414392,51.62261815271251],[3.703273205110385,51.62262107462517],[3.703306496636051,51.62261758020504],[3.703345561257514,51.62261691988552],[3.703366239232081,51.62262171265364],[3.703399197758937,51.6226376772241],[3.703685069497018,51.622825569836934],[3.70370909673541,51.622849461005494],[3.703757597460631,51.622903506936474],[3.703795861769966,51.62295900578901],[3.703819176170748,51.62301103502719],[3.703828442328813,51.623076536204714],[3.703832895813382,51.62313162038877],[3.703850792401576,51.62316580699353],[3.703982736866014,51.623271479706204],[3.704124394805824,51.623602928330165],[3.704154239874843,51.6236681412031],[3.704182435667634,51.62376765496067],[3.704155887803635,51.62389445749755],[3.704183923180278,51.623984682056346],[3.704209815045838,51.624091013193826],[3.704215799317128,51.62412394951941],[3.70421169283233,51.62421469155778],[3.704208298074048,51.624301047622744],[3.704209022299584,51.62435038732365],[3.704199624425121,51.624393423099455],[3.704178957868391,51.62444624890715],[3.704165623989454,51.62449103508249],[3.704166869525429,51.624529836767806],[3.704165508574628,51.624580872587764],[3.704162486665896,51.624617904733974],[3.704153872754474,51.62466160807083],[3.704136065105576,51.624720678249595],[3.70411646286774,51.62476584172134],[3.704086267927072,51.62482514721209],[3.704053793895556,51.62488397938225],[3.704004312487187,51.624966714528526],[3.703958477629502,51.62503604378284],[3.703909726473055,51.62509910983006],[3.703861972868235,51.62516020337656],[3.703806727579765,51.62521766493209],[3.703739384218136,51.6252815691515],[3.703670528599226,51.62534573925631],[3.703583800520235,51.625427147042444],[3.703477204761227,51.625518841291694],[3.703404650403873,51.62558496282535],[3.703265004704214,51.62568911807429],[3.703155419617054,51.62577726282666],[3.703047084511654,51.62586946208061],[3.702951405718819,51.62594096819207],[3.702817026423797,51.62603239668808],[3.702648456746662,51.62615568845592],[3.702554572293812,51.62622396563574],[3.702452479862682,51.626294273192045],[3.702361339211651,51.62635750127806],[3.70226549785702,51.626418171299576],[3.702139963394583,51.626486864329095],[3.702005329621329,51.626566403194246],[3.701831463249349,51.62667081898304],[3.701051552394869,51.62708016020444],[3.700677377217339,51.62727150816376],[3.700337903770342,51.6274362408648],[3.699925233224321,51.62762354316541],[3.699772356051702,51.62768929510819],[3.69962068269369,51.62775180077288],[3.699501067814014,51.62779553868159],[3.699391220573158,51.62783337597106],[3.699275525515614,51.62787191992108],[3.699158996113925,51.627900283783575],[3.699025829406702,51.62793010659115],[3.698902530958245,51.627954821381095],[3.698725739648852,51.62798969606893],[3.698585074350122,51.62801179543399],[3.69851401728096,51.628029685142636],[3.698403757963272,51.62804947220106],[3.698312011628517,51.62806087784042],[3.698238684159247,51.628065653837396],[3.698107108537534,51.628073688309755],[3.698002277855757,51.62808036472377],[3.697900995896289,51.62807786832458],[3.697824906684064,51.62807302959793],[3.697707313476455,51.62805511299425],[3.697614160591583,51.628042251151015],[3.697454125074155,51.62801357132944],[3.697328415019333,51.627985171374135],[3.697167044664312,51.627942716835335],[3.697094279846712,51.62792079029586],[3.697015737631557,51.62788994285019],[3.696963810457075,51.627867804849274],[3.69688516108424,51.62783325179437],[3.696745148931749,51.627769294994366],[3.696627115250713,51.62770165499826],[3.696493886979629,51.62762004922714],[3.696217452623088,51.62746529662738],[3.69610806828139,51.62741210254272],[3.695996012916457,51.62735655925055],[3.695943551612841,51.62733289371486],[3.695898548626301,51.62731064855924],[3.695860751472017,51.62728188177411],[3.695821005760902,51.627237596646765],[3.695778795283971,51.62718930218801],[3.695753731868468,51.62716574501698],[3.695726354285609,51.62714420415007],[3.69569691625891,51.627131039343126],[3.695654575997987,51.62711718451069],[3.695612171504608,51.62709963375145],[3.695596431872427,51.627078989349435],[3.695565506472569,51.627023638845984],[3.695525576458431,51.62694483747329],[3.69546148335384,51.62667908553324],[3.695446605556177,51.62663071872654],[3.695433075782724,51.626593060790576],[3.695423173542953,51.62657237491884],[3.695404997017904,51.62655046358396],[3.695374754830199,51.626519387521384],[3.695325547909849,51.62647745567054],[3.695091708171267,51.62631956739827],[3.694436495818973,51.62587172442468],[3.694610459662146,51.62577088102237],[3.694635266934635,51.62577380217632],[3.694640191499666,51.625754103919135],[3.694680908032638,51.625731723006496],[3.694683859231259,51.62571767801962],[3.694622906252294,51.62567625017263],[3.694596719311954,51.62565844820604],[3.694566475383845,51.625637890462066],[3.694520689386364,51.6256641267093],[3.694089996347303,51.62536822860997],[3.694138852526753,51.62534100309063],[3.694108429402489,51.62532022686439],[3.69408880939275,51.6253068261462],[3.693913398157666,51.625187036578644],[3.693891881379676,51.62518651833951],[3.693648558151507,51.62532483472269],[3.693524282984887,51.62524400234426],[3.693470784101363,51.62521032349889],[3.693419016553253,51.62518404168613],[3.693362778387309,51.62516762032986],[3.693259858484883,51.625145362569334],[3.693038959329116,51.62511499506248],[3.692772639865608,51.625064379512],[3.69265877336122,51.62504555874689],[3.692620652380787,51.62503135035493],[3.692434120631243,51.62490779233618],[3.692106401918599,51.62468726029962],[3.691793694726809,51.62447634866566],[3.691428040545845,51.624224104673395],[3.691158493231129,51.624031060214705],[3.691036145294079,51.62394602763576],[3.690837457467647,51.62378551164636],[3.690656095196843,51.62363601688998],[3.690630821043736,51.62364213228443],[3.690597951986291,51.62361191585107],[3.690744373439003,51.62355000199915],[3.690418314162972,51.62325051884287],[3.690274646784443,51.62331218454826],[3.690324494272654,51.62324421325783],[3.690334779962956,51.62321754458567],[3.690331342396309,51.623203272162286],[3.690238163223243,51.62308959639397],[3.690212857513344,51.6230498879924],[3.690225959100432,51.623015906165435],[3.690265687395408,51.62296783632972],[3.690316887159087,51.622911571971606],[3.690357872408423,51.622877374297445],[3.690515067770889,51.622784178175024],[3.690949340237935,51.622538237359436],[3.691323665158091,51.622330218735634],[3.691650005993047,51.622143061995374],[3.691876535854264,51.622013226979355],[3.692092044463951,51.62189574622897],[3.69235624798258,51.62174752281783],[3.692494747644534,51.62167089192534],[3.692500282204521,51.621665020575534],[3.692496292745674,51.621653904786434],[3.692492998691713,51.621648139271926],[3.692491946802495,51.62164189379903],[3.692496138231051,51.621635634390174],[3.692518087550166,51.62161951824495],[3.692581445484075,51.62158368407914],[3.692652430544588,51.621543950728835],[3.692719469766542,51.62151279080124],[3.692787806949967,51.62148554240954],[3.692884688593767,51.62144462873964],[3.693125621967325,51.621334203140364],[3.693486019316975,51.621165191459696],[3.693608898878586,51.621105279692635],[3.693700148349766,51.62105967182448],[3.693785082170372,51.621016103138494],[3.693922881624776,51.62093257394123],[3.694080104545697,51.62083903192307],[3.694192476466401,51.620768071299295],[3.69426555150183,51.6207206446347],[3.694328120595612,51.620683818193974],[3.694482359619239,51.620598584390216],[3.694954726377119,51.620328807841155],[3.695147761785725,51.620216714257126],[3.695250808538838,51.62015134452489],[3.695323761036228,51.62010636977812],[3.695393310041692,51.62006783670623],[3.69546094920823,51.62002977942457],[3.695529989216078,51.61999520360325],[3.69563741102833,51.61994066711026],[3.695734684389221,51.61989451549378],[3.695816960218384,51.619853172470215],[3.695893999079303,51.619817480442315],[3.695960019893397,51.619789486516076],[3.696001211354548,51.61977279388465],[3.696037650360423,51.619761156957274],[3.696087392895954,51.61974791431489],[3.696140880456851,51.61973726103995],[3.696200916983392,51.61972797903154],[3.696275151310766,51.61971750875581],[3.696319781545257,51.61971044930992],[3.696350924111861,51.619701801389134],[3.696395799431236,51.61968971991943],[3.696453832036769,51.61967879057387],[3.696542448371833,51.619667997594505],[3.696624323412184,51.61966292379208],[3.6967221005829,51.61965781904266],[3.696801966824873,51.61965781354332],[3.696884045908591,51.61965772309456],[3.696963569747037,51.61966263918156],[3.697061783231439,51.619671394394],[3.697157443151771,51.61967969008701],[3.697251015351017,51.61969091332284],[3.697313237643836,51.61970473124852],[3.697405009560208,51.61972357004345],[3.69751710348649,51.619747790800965],[3.697681635717418,51.6197852383385],[3.697820197831472,51.61982392879687],[3.697925430947788,51.61985399260588],[3.698040916203496,51.61989225062384],[3.698135561821279,51.61993475664973],[3.698250511847541,51.619985062619286],[3.698393990506477,51.62006392876959],[3.698487026687941,51.620124841226115],[3.698552733265344,51.620169985775654],[3.698604027688051,51.62021121825739],[3.698657660627225,51.6202652775625],[3.698724955968938,51.62033795503056],[3.698841256211873,51.620490858340396],[3.698940021486183,51.62061862350098],[3.699024775084181,51.620707690213614],[3.699066027498588,51.620742475401926],[3.699099412794209,51.62075815069726],[3.699138679350854,51.62076094695797],[3.699176391574486,51.62074575830999],[3.699279195952052,51.62068483173957],[3.699346243225071,51.62063468083632],[3.699398679230017,51.620597975212284],[3.699443415873057,51.62056557267047],[3.699497285684983,51.62053883986781],[3.699569002758235,51.620508327932335],[3.699629538937395,51.62048679769802],[3.699704418878492,51.62046791970889],[3.699765609247825,51.62045713316759],[3.699820366162711,51.620447296652515],[3.69986541858573,51.62044053862006],[3.699929648393418,51.62043849837306],[3.699967301450618,51.620439239293354],[3.699994483746086,51.62044618525444],[3.700021083803804,51.620459460916656],[3.700055382246148,51.62047466363762],[3.700087356005897,51.62047976377077],[3.70011654193182,51.62047323529077],[3.700165077604619,51.62045515475374],[3.700246485658115,51.62041104512283],[3.700269028798643,51.620399449209714],[3.700281638241042,51.620398255558705],[3.700301912155876,51.62040145178644],[3.700337616662027,51.6204009957576],[3.700393603296952,51.62039303768596],[3.700459407801183,51.62037739967387],[3.70053246626283,51.62035738909615],[3.700580732692524,51.620343431017865],[3.700633972108191,51.62032546306519],[3.700707648841253,51.62029931198403],[3.70076087943082,51.62027692065919],[3.700793985080277,51.62026207863163],[3.700845627857441,51.620231510247486],[3.700885822472699,51.62021168193244],[3.700923036775681,51.62019393233023],[3.700953704315089,51.62015611206968],[3.70096630996577,51.62011813930348],[3.700971069903813,51.62007404796532],[3.700972793499356,51.62001257971175],[3.700978381714327,51.61995437667877],[3.700971123291193,51.61991888653678],[3.700958483452113,51.61988984571398],[3.700929579234001,51.619848056029944],[3.70089658581982,51.619815638125765],[3.700858149362284,51.61977502357033],[3.700798029825244,51.61972717391554],[3.700740187414727,51.61968178441979],[3.700687894045663,51.619643298480796],[3.70061781228222,51.61960624618585],[3.700503151280382,51.61953299469224],[3.700347024468686,51.619426825243444],[3.700242311075711,51.61935872449715],[3.700149289594384,51.61930321677605],[3.699992093032451,51.61921302501085],[3.699861985071768,51.619151300268804],[3.699635182938046,51.619029959658995],[3.699505753114013,51.61896595178667],[3.699374750494536,51.6189061824376],[3.699273680887949,51.61886634469626],[3.699184302714334,51.618839486661756],[3.699078946992043,51.618807327475956],[3.69899236253332,51.618783017885285],[3.698881817741086,51.61875641150422],[3.698727394662917,51.61872330999131],[3.69859009336881,51.61869232542303],[3.698464781156738,51.61866903860715],[3.698312329374122,51.61864196148172],[3.698186545799808,51.61862202990329],[3.698081039521663,51.61860750645572],[3.697971050578689,51.61859584898728],[3.697845544387276,51.618585531597574],[3.697761411965341,51.61857876946142],[3.697643082379997,51.6185688701691],[3.69755696155314,51.61856741036776],[3.697420194368512,51.61855932124793],[3.697307568120877,51.61855875495406],[3.697193748393624,51.61856540844103],[3.697039685664238,51.618574977510704],[3.696941192584469,51.6185861765221],[3.696821166679814,51.61860279103862],[3.696718581832151,51.61861295079484],[3.696623114289599,51.61862782531984],[3.696506554227394,51.61864753729719],[3.696402564582746,51.61867328351064],[3.696286434299741,51.61869269581552],[3.696167851097652,51.61871862642074],[3.69603493901511,51.61875351976736],[3.695933997803959,51.61878580059135],[3.695854915564949,51.618816698261206],[3.695726190316861,51.618853548742585],[3.695602324782602,51.6188975536688],[3.69552063563502,51.61893057107023],[3.695423360163692,51.618968316597126],[3.695306255721577,51.61901418109141],[3.695129868196788,51.619096353499295],[3.695063504711028,51.61911999971424],[3.694991015226361,51.61914139061901],[3.694921430010495,51.619163129166374],[3.694853059693879,51.61919100759906],[3.694612796091987,51.619316792639815],[3.69453732416685,51.61936002233694],[3.694434306097753,51.61942812488308],[3.694359012611567,51.61949247510792],[3.694310743002897,51.61952311645613],[3.694127837816221,51.61962772258057],[3.693988456933432,51.61970383013032],[3.69394784655741,51.61973239757995],[3.693936163987817,51.619759423916655],[3.693933657757674,51.61978359833472],[3.693915600791531,51.61980728691711],[3.693869003295244,51.61982253404405],[3.693820435975047,51.61982594845801],[3.693759180637171,51.619834204698606],[3.693695636151704,51.61985695598246],[3.69336216309549,51.6200389264618],[3.693300931016877,51.62008712641529],[3.693243624298057,51.62014004012711],[3.693209299991084,51.62018239948128],[3.693195273977965,51.620215693964255],[3.693165369938891,51.62023832082589],[3.693120660439899,51.620248245814764],[3.693053522537945,51.620250806587464],[3.69297577754208,51.62024967153189],[3.692864754714706,51.62023932486911],[3.692788817336631,51.620228857037844],[3.692732987900782,51.62021712514163],[3.692676017240985,51.62020192443501],[3.69263025090342,51.62018873801081],[3.692595543282851,51.620174120512374],[3.692548364962921,51.620142690390665],[3.692524108469651,51.62011624030214],[3.692491291198998,51.62009123946623],[3.692379243331305,51.62002180264204],[3.692281483256965,51.61996539282132],[3.692183994644334,51.61990945434234],[3.692122671726714,51.61986775899314],[3.692080990506124,51.619838808731714],[3.692056555926292,51.61982717187138],[3.692027466420812,51.61981449659814],[3.692007844082823,51.619799692983854],[3.691999262927716,51.619783152445],[3.691976571771638,51.61975231970687],[3.691915206787516,51.619691681203776],[3.691842528391499,51.61960762993253],[3.69172582100015,51.61945548665148],[3.691621921039831,51.61933046365879],[3.691607647760051,51.61931706806953],[3.691578765237985,51.61930273248599],[3.691555748099481,51.61928912023137],[3.691534756186969,51.61926847100404],[3.691386193134403,51.61907304503559],[3.691297390279665,51.618993866079116],[3.691196800047629,51.6189132215414],[3.691163015156257,51.618895596260835],[3.691126861638116,51.6188849220402],[3.691082105079363,51.618877988859694],[3.691029239466656,51.61886622718394],[3.690976119060194,51.61884468040773],[3.690931958274465,51.61881912803103],[3.690889821768132,51.61878733879685],[3.690812018279554,51.61872184928666],[3.690782863227284,51.61870632283512],[3.690751313289729,51.618698061716756],[3.690719044273863,51.618695507953305],[3.690694741801262,51.61869965957668],[3.690669583853124,51.61871547710978],[3.690658762756596,51.618731403695776],[3.69066399326432,51.61875564532948],[3.690830533782359,51.618928659605565],[3.690997734624889,51.61913654735544],[3.691071805947242,51.61925587010691],[3.691085951756186,51.61928115800204],[3.69111102730328,51.619314246086894],[3.691147926519746,51.61935015773339],[3.691188773092644,51.619386333379445],[3.691220860123576,51.619415378604366],[3.691249279971312,51.61944786785127],[3.691311643595226,51.61951690908934],[3.691341743890173,51.619551580334],[3.691386074202653,51.61958189083913],[3.691421880030528,51.619608436693625],[3.691457839640213,51.61964747220758],[3.691489756363744,51.61968532531929],[3.691497286345266,51.619700618995935],[3.691495849375681,51.61971123361605],[3.691488277441028,51.619727171419676],[3.691486151272432,51.61974462660992],[3.691493023604822,51.619767075972696],[3.691520400828884,51.619806984960576],[3.691551664361636,51.619846860377784],[3.69159245890637,51.61988483316694],[3.691635660082266,51.61992256213017],[3.691654499884951,51.61994361166966],[3.691669600892741,51.61996963255266],[3.69167497512437,51.619986189561715],[3.69168151513894,51.62001096256608],[3.691694247001637,51.62003468356338],[3.69172030522166,51.62006932308181],[3.691726303216867,51.620092371091026],[3.691727409232727,51.6201149256489],[3.691733657632276,51.62014556504782],[3.691742637425172,51.62017886019695],[3.691759070806723,51.620228337928744],[3.691765807980459,51.62027371041908],[3.691756452985861,51.620307971469096],[3.691744410706462,51.6203364667851],[3.691736019597316,51.620367739065735],[3.691722762902185,51.62040012753006],[3.691709843021917,51.62043663840396],[3.691705097479504,51.62046813434015],[3.691696418280847,51.62049282158831],[3.69168642464976,51.62053488589227],[3.691673213508424,51.62058111098715],[3.691659321445544,51.620622759169656],[3.691651916341857,51.6206570125157],[3.691631540517502,51.620727587195134],[3.691621221156991,51.620769475957545],[3.691608135440977,51.62080230740993],[3.691590357145262,51.62082622444299],[3.691567516318998,51.62084802730165],[3.691543424187748,51.62086621592144],[3.691508726570581,51.62088761313985],[3.691453341743477,51.6209137809355],[3.69141569117669,51.62093072111048],[3.691362642112122,51.620949272034714],[3.691310444016406,51.62097325638655],[3.691236703487551,51.62100402166887],[3.691211445155992,51.6210128434657],[3.691131574226235,51.62103452056757],[3.691053988258664,51.62106229016986],[3.690971019712626,51.621088776974844],[3.690875484831511,51.62112146455266],[3.69082548755867,51.62114876204612],[3.690784938979549,51.62116825817226],[3.690753859198609,51.62118096013891],[3.690688370928564,51.62120461661398],[3.690630227709273,51.6212276693589],[3.690554605228566,51.62125158333138],[3.690454375564043,51.62128080416325],[3.690271475590088,51.62133507711532],[3.690096951991325,51.62136428066435],[3.69003974134425,51.62136974376082],[3.689998263100772,51.621372782981126],[3.689920066860361,51.62135934970693],[3.689872355203417,51.62134911874102],[3.689803309671837,51.6213451050896],[3.689702590538567,51.62137079400663],[3.689628809111014,51.621393349608084],[3.689542222405554,51.621418838928236],[3.689428112159439,51.62147234685073],[3.689284648393484,51.62151558426645],[3.68910998694317,51.62155652561046],[3.689034750706243,51.62156007233197],[3.688941420307197,51.62155043732595],[3.688870131627589,51.62153844318421],[3.688805663657616,51.621450041070446],[3.688293912804961,51.62158630048041],[3.688356880200417,51.62167348538719],[3.688355915332911,51.621725812570006],[3.688336405874601,51.62175694113058],[3.688293425479558,51.62178231666904],[3.688214578681755,51.62180703639173],[3.687968701167544,51.62186364550436],[3.687794654340122,51.62188889687045],[3.687696238839808,51.621890065192616],[3.687614431413826,51.621875481101966],[3.687546573486078,51.621860964793896],[3.687499384086843,51.62184682070224],[3.687434107145926,51.62182510468494],[3.687367677303038,51.62179061471864],[3.687328228208692,51.62175648085045],[3.687308257054366,51.62173520738758],[3.687245581446106,51.62166301287709],[3.687185412523769,51.62158983886408],[3.687097791225397,51.62146112863852],[3.687033329017796,51.621340711328656],[3.686967845240236,51.62122058479784],[3.686933769165365,51.62109907176894],[3.68690446709992,51.621032405695914],[3.686848763681787,51.620961121423356],[3.686803232464837,51.62089549601793],[3.686698131497052,51.620685349422956],[3.686660353600457,51.620600939173045],[3.686657606914957,51.62056559453886],[3.686667895172166,51.62049886566207],[3.686692947031304,51.6204285845065],[3.686799592165727,51.620408540303714],[3.686639973395245,51.62007786896325],[3.686494931408507,51.62010432217655],[3.686449339049195,51.620075771509775],[3.686421285831373,51.62006553726322],[3.68638295151127,51.6200429357666],[3.686368777688978,51.62001884257599],[3.686279703059503,51.61983278870752],[3.686279313093255,51.61979430477179],[3.686287839766199,51.619749126900835],[3.686259561510886,51.61964560651736],[3.686235043028129,51.61949270342042],[3.68623526296308,51.61946259827436],[3.686210947837592,51.61927157047803],[3.686155323803291,51.618915799527],[3.686132730829171,51.61886668985843],[3.686106963085943,51.61883098342653],[3.686076090537468,51.618798151547416],[3.686049014781163,51.61877767354234],[3.686012771519265,51.618759804222286],[3.685965438582563,51.61874304122025],[3.685894762169043,51.61872833905933],[3.685782122854975,51.61872118061531],[3.685534934181945,51.618716137244476],[3.68551843226702,51.618594052292096],[3.684866509342356,51.61862854623787],[3.684205451186875,51.618663604792516],[3.683820744107827,51.618684353339944],[3.683835417589439,51.61879194662992],[3.683549293732177,51.61882760630777],[3.683376937688024,51.61886267501857],[3.683030798218797,51.61897037015911],[3.682814446979796,51.61910500243884],[3.682565410225515,51.619348731233366],[3.682429910626442,51.61943134575496],[3.682373970361994,51.619580847517355],[3.682356625066787,51.61977474828871],[3.682409662156305,51.61996968388088],[3.682502914532876,51.62016520554656],[3.682587063339066,51.620335529625095],[3.682632174298838,51.62047398067856],[3.682677977690169,51.62059364317666],[3.682684507440129,51.62068768649932],[3.682682623862111,51.620737770734294],[3.682632333021022,51.62073703786744],[3.682511422888024,51.620741533025324],[3.682369933904922,51.620758260539695],[3.682239197888819,51.62075635498577],[3.682180052180655,51.62072417979175],[3.682100299149933,51.62070422759588],[3.682030552972737,51.62070697777856],[3.682012454891586,51.62063599658533],[3.682011470728203,51.62062798989987],[3.681998816785848,51.620578143250114],[3.681413103779615,51.62063968217793],[3.681427513531034,51.62069773563692],[3.681431424110087,51.62069744204518],[3.681434580991721,51.62070834831358],[3.681451808533924,51.62076789928235],[3.681341358723532,51.62086937085148],[3.681274408299525,51.62087918275039],[3.680503411247986,51.62096353812107],[3.680414822696322,51.62096612928894],[3.680334117761469,51.62096264114188],[3.680270879597145,51.62095747492592],[3.680217344985429,51.620948143949185],[3.680160167136679,51.620923188648135],[3.680116309658012,51.62089850863263],[3.680088107639939,51.62087844433215],[3.680065186148901,51.620853926001246],[3.680039902534038,51.6208234845699],[3.680009640581528,51.62077452245808],[3.679963287408992,51.62067692191344],[3.67987672358592,51.62039037047351],[3.679700681893387,51.62002006309674],[3.679630739531101,51.61994524099501],[3.679564894851441,51.61989889689052],[3.679491633502226,51.619867709930766],[3.679436856889247,51.61984806659774],[3.679380453328592,51.61983863939295],[3.67932322549787,51.61983498985441],[3.679267240502486,51.61983515232634],[3.679193320518754,51.619839080516655],[3.679129592524834,51.61985270515335],[3.679065900013649,51.619872668409414],[3.679005555402828,51.619900367199214],[3.678957136256962,51.61992740402894],[3.678902563620547,51.61997247533955],[3.678844181576874,51.620032396844856],[3.678805229500004,51.62008299151975],[3.678789879782396,51.62011817098382],[3.678779813067104,51.62015955896866],[3.678779468581909,51.62019092096662],[3.678790732137162,51.620240774666314],[3.678868150784687,51.620517636771],[3.678903824828601,51.62056321698436],[3.678988646646259,51.62064483769181],[3.679007054737944,51.6206825599561],[3.679017300981013,51.620748302546126],[3.679018804351469,51.620884688803514],[3.67902210138696,51.62098421420654],[3.67901614156329,51.62108792874119],[3.678996252533949,51.621174565134204],[3.678952269102322,51.62129961565951],[3.678884835744313,51.62143907671351],[3.678838573527483,51.621530308512064],[3.678784092609722,51.62161618792281],[3.678735221566976,51.62168351243294],[3.678644652400507,51.621776146787596],[3.678517064370584,51.62191094406747],[3.678394953365525,51.62201116376334],[3.67827274574093,51.622088267958304],[3.67816703413989,51.622149223798296],[3.67804813610317,51.62220633682329],[3.677952389980755,51.62225120167016],[3.677824886419439,51.622309762021054],[3.677713985778722,51.622347051178636],[3.677577002216338,51.622383527483926],[3.677411290714383,51.62242268535746],[3.677248295493577,51.62245721675937],[3.677089280034393,51.6224857916325],[3.67690565625633,51.62251466277605],[3.676708578513769,51.622531856326795],[3.676483842847889,51.62253907042021],[3.67627464903463,51.62253937313873],[3.67554712662767,51.62252595158343],[3.674900122648531,51.622502295545054],[3.674252301509943,51.62251594256829],[3.67355067579665,51.6225036879486],[3.672953777629941,51.62246969713609],[3.672645252667671,51.622443400794886],[3.672325594501947,51.6224097931491],[3.672001925827197,51.62236920330519],[3.671676959072573,51.62230912058357],[3.671360799991441,51.62224111985098],[3.671061149105799,51.622175823789945],[3.670776263486421,51.622099757496954],[3.670447710691557,51.62200784705552],[3.670116269566128,51.62191710696516],[3.669829932059251,51.621832557165895],[3.669466043414163,51.62174896256305],[3.668624321840694,51.62157396448389],[3.668471620089222,51.62152357785958],[3.668393665037512,51.6215085064337],[3.668314728774204,51.62150712172852],[3.6682428112636,51.62151412915719],[3.668149613168548,51.62153157617346],[3.668071596298524,51.62155735547405],[3.668007070858468,51.62159298858235],[3.667948732675685,51.62165017240594],[3.667914731912451,51.621700476747854],[3.667897727850879,51.62175389881001],[3.667902497479899,51.62180711048655],[3.667927927330861,51.62186014934968],[3.667975803896272,51.62190513918324],[3.668033197811725,51.62193530005414],[3.668161478655079,51.62198640717995],[3.668381484973769,51.622051313589786],[3.669249938616621,51.62228411787901],[3.67015952801673,51.62254190110325],[3.670813810036577,51.62272192322557],[3.671209741239,51.62281246558272],[3.671500483475672,51.62286482839399],[3.671791713795396,51.62291728753603],[3.672282186708325,51.62297790850443],[3.67270528183338,51.62300684705938],[3.673269731935913,51.62312487219325],[3.673630089073962,51.623159468986536],[3.674241499190346,51.62316667997067],[3.675210550577911,51.623262453439324],[3.675516651758158,51.62330530350687],[3.67584152670524,51.623342889429885],[3.676499898249733,51.62337566068423],[3.67690865711284,51.623370148365666],[3.676973975783884,51.623362364844425],[3.677026300858796,51.623320749749],[3.677090455909878,51.623297485896266],[3.67720995390476,51.62328582836576],[3.677887519349938,51.62329987596798],[3.678556794425389,51.623326951295674],[3.679367393496974,51.623278320470256],[3.679882836031601,51.62330333991264],[3.680244022154521,51.62348289627407],[3.680528683556536,51.62363919200433],[3.680713281735562,51.623765932735864],[3.680898056031698,51.6239072039877],[3.681049998381616,51.62403012343688],[3.681357858322117,51.624298198644674],[3.681863726225717,51.624833239545346],[3.682257397283957,51.62534963334496],[3.682805056653904,51.62602456495753],[3.683415557958559,51.6267196931816],[3.683670332661374,51.62701669251531],[3.684078873875486,51.627540875012194],[3.684541454116373,51.628200237690876],[3.684725498095221,51.628532058141396],[3.684904414811407,51.628785103054305],[3.685122026970809,51.62902983730804],[3.685398080703267,51.62931360286882],[3.685733976255761,51.62967494285593],[3.685968165595395,51.62991815444212],[3.686257949007141,51.63023512966693],[3.68662521500335,51.63058313200913],[3.687034746002094,51.63096988396286],[3.687501871333938,51.63138499030546],[3.687773934182185,51.631635733717225],[3.687969168925548,51.63178109182433],[3.688170172084305,51.63190171132458],[3.688389138882476,51.63200522218471],[3.688648657902353,51.632126447797305],[3.688735162936767,51.632183470137846],[3.688758397871,51.6322407516057],[3.688744499278896,51.63228086203855],[3.688704880908563,51.63230955006808],[3.688649008781256,51.63232633277737],[3.688535731463066,51.632341445876285],[3.688326018808912,51.632354780930946],[3.688064753900771,51.63232555330538],[3.687908219320784,51.63230727711367],[3.687836677919408,51.63228347466935],[3.687742123778763,51.63224387468146],[3.687080251143261,51.632049400836934],[3.686860238294261,51.63197691558876],[3.68679980074178,51.631965986080225],[3.686764314665963,51.63197076554823],[3.686618931802546,51.63202337591092],[3.686582557393546,51.63204527780672],[3.686578723783835,51.63206581871669],[3.686607202442134,51.63209262803437],[3.686722391996032,51.63214819888191],[3.687117853820717,51.6322804300049],[3.687570743853208,51.63239644860524],[3.687959075954358,51.63246159599813],[3.688363637735796,51.63251966870373],[3.688859975198111,51.63259826648114],[3.689182381717828,51.63266906953647],[3.689598476361035,51.63274137503786],[3.68991610777053,51.632861031599205],[3.690252941577346,51.63301845507238],[3.690583274890409,51.63319328725781],[3.690894675964338,51.633383037466864],[3.691132165720564,51.633540483277834],[3.691405769149364,51.633753256485576],[3.691813926163699,51.63402066168818],[3.692420036254203,51.63442103968062],[3.693076799123076,51.63484099139967],[3.69354155538441,51.63518054732601],[3.694333675243065,51.63583809378996],[3.694813856686726,51.6362622228525],[3.695268616640314,51.636711559387116],[3.695627240011721,51.63709033341532],[3.695995490097742,51.63746605389736],[3.696306674054813,51.63780621923901],[3.696571011185331,51.6382449947087],[3.696724266117464,51.6385515727783],[3.696891941188562,51.63891782021283],[3.697019843595828,51.639251496668585],[3.697164827054843,51.639640529680065],[3.697030060897457,51.64009329893301],[3.697014051365962,51.64022922442624],[3.697013301729409,51.640345349151936],[3.697030397399703,51.640478489412104],[3.69706180113509,51.640602630371006],[3.697107643350118,51.64076423531146],[3.697160791113825,51.64089966736369],[3.697244444734697,51.64113454019533],[3.697327342134132,51.64131069595908],[3.697439758651866,51.6414880511179],[3.697532103340986,51.6416387480229],[3.697650383429392,51.64180770087425],[3.697758212709432,51.64196012253852],[3.697885793152207,51.64210756099254],[3.698020075346589,51.64224269854947],[3.698142839402072,51.642357369786055],[3.698263625156903,51.64245652220363],[3.69843554805384,51.64258553183314],[3.69859438029098,51.64269826880348],[3.698784953190168,51.642820085170435],[3.698968204861345,51.64292745620584],[3.699137817353976,51.6430216303406],[3.699320428315128,51.64310358524364],[3.699543951542751,51.64320559373815],[3.699868203353367,51.64333054995725],[3.700114590296378,51.643423591166176],[3.700384286378029,51.64352787298546],[3.70063754002152,51.64359139833441],[3.700903881525227,51.643708216862336],[3.701180046922694,51.643780099456016],[3.701476827768619,51.64386727404026],[3.70181953289591,51.64394277478697],[3.70205020301852,51.643986166340234],[3.702315304005645,51.64402189910889],[3.702563379035024,51.644052693265365],[3.702911994393344,51.64407970183461],[3.7033857666187,51.644112816752205],[3.703542544671066,51.644115297454356],[3.70364055205281,51.644115502931975],[3.703734661787359,51.64410821736006],[3.703814515142095,51.644094163772586],[3.703888738608673,51.644073736004145],[3.703975928990092,51.64403839119245],[3.704064650594714,51.643988279472154],[3.704127530445615,51.6439414100449],[3.704180425026241,51.643895322953675],[3.704220895103019,51.64384605441322],[3.704241348174127,51.64378171807939],[3.704253648280536,51.64373652147721],[3.704246617486218,51.643681517235876],[3.704229589721452,51.643632671334245],[3.704205843148973,51.64357526002818],[3.704178795798859,51.643534738767194],[3.704149529847227,51.643499094234066],[3.704117320430731,51.6434695566478],[3.704065386631021,51.643429918036404],[3.704017688659989,51.6434034480376],[3.703955703293271,51.643376107215424],[3.7038915159355,51.64335902845586]]],[[[4.197659562122114,51.618047949812286],[4.196210434370773,51.61649350318592],[4.194931701111697,51.61488207383412],[4.193828928951064,51.61322109550867],[4.193731635394486,51.61306108051041],[4.192806178588001,51.61153997782527],[4.191893283011021,51.60983498257118],[4.191865860815846,51.60976943930586],[4.191165725560994,51.608095647528366],[4.190627030363016,51.60632992300816],[4.190573628676155,51.606055829145724],[4.190352563480059,51.60491026790641],[4.1903033912385,51.60469210427013],[4.190275528318919,51.604524220676886],[4.190271106938383,51.60441552049891],[4.190255934650757,51.6042623655624],[4.190246029949076,51.6041234947582],[4.190228436991069,51.6039603278107],[4.190209215439817,51.60379050101924],[4.19019279679878,51.603639733478765],[4.190176651920433,51.60349008342141],[4.19016682030737,51.603336425774835],[4.190151028692222,51.60319582266629],[4.190141377497695,51.60303533491103],[4.190120210705377,51.602872508902465],[4.190113895710331,51.60273329725289],[4.190115470426227,51.602634259107234],[4.190118567789228,51.602473704061524],[4.19011586454171,51.602296648017436],[4.190124129720482,51.602119686259805],[4.190129554583893,51.60196118663637],[4.190133437902203,51.60178124048718],[4.190140310806413,51.601636239790714],[4.190146723024409,51.60147423540885],[4.190160709193785,51.601305836174035],[4.190158431333098,51.60112304922648],[4.190170436135991,51.600938925212176],[4.190183743586322,51.60079787378811],[4.190188117143427,51.600762877842946],[4.190297479110725,51.59988811421896],[4.190398818331993,51.59913069699639],[4.190629214553786,51.598182703313945],[4.19078178153118,51.59752390229554],[4.190797196448186,51.5974292487032],[4.191037197694805,51.596762235546706],[4.191230204001402,51.596195117046065],[4.191328517722614,51.59589263101407],[4.191415121041432,51.59565489273515],[4.191814476177999,51.59479445519061],[4.19221106359089,51.593937691681006],[4.192703908881209,51.59308664759161],[4.19321507092234,51.592213422871644],[4.193500920938293,51.591807332104544],[4.193783947184228,51.59140524808669],[4.19438110750955,51.59055575616452],[4.195233685091127,51.58952540938218],[4.195717798664171,51.588962734122205],[4.196429138923104,51.58823094314631],[4.197186895814024,51.58745727127115],[4.198842562112001,51.58601414954383],[4.199787947933636,51.58528836683687],[4.200705663364952,51.58456946941008],[4.201299449198335,51.584110633430576],[4.201534616785381,51.583936376650556],[4.201712693813976,51.58380099505918],[4.201875316918549,51.58367827542312],[4.202014053872377,51.583571197717305],[4.202199854145426,51.583429493232835],[4.2023223099549,51.583339671620294],[4.202533354118356,51.58318657217206],[4.202894145403264,51.582913443559505],[4.204098517940072,51.58200167013734],[4.206200239567317,51.58041043628105],[4.208752529414401,51.578477939763374],[4.213532805217803,51.57485790472689],[4.214609824900274,51.57404213782898],[4.215940926552048,51.57303387333365],[4.218814380205995,51.57085722489796],[4.221706137896985,51.568666423689166],[4.22548600878843,51.56580227689103],[4.226320805348267,51.56516963657593],[4.226360371528794,51.565139645406525],[4.227538551465182,51.5641872829178],[4.228121187136582,51.563716301094594],[4.229726461599493,51.562223251148325],[4.231169545137436,51.56066708826758],[4.232443779679782,51.559054854191835],[4.233543668148697,51.5573934218932],[4.234157477222805,51.55625782803562],[4.234464279109989,51.55569020871383],[4.235201836830661,51.55395264272087],[4.235585704642876,51.55272392813855],[4.235752993174946,51.552188425113634],[4.235836013778081,51.55177968692391],[4.23611511783808,51.5504054431248],[4.236287032303409,51.54861123782994],[4.236277437164008,51.54771352658458],[4.23627290238398,51.547289299938996],[4.236267831058304,51.546813981332235],[4.23605748280358,51.5450214938386],[4.235657111378258,51.543241516113305],[4.235505032882215,51.54278704210846],[4.23506840731982,51.54148215317723],[4.234294084846792,51.539750890024045],[4.234097656899636,51.53939370893799],[4.234041505711571,51.53929160162689],[4.233480998465772,51.53827237963935],[4.23335902919962,51.53805057551785],[4.232400421056063,51.53635523389539],[4.232204608565872,51.53601242047111],[4.232143322359984,51.53590511047766],[4.231744205795365,51.535195945919625],[4.231441739906836,51.53465988298179],[4.230928719513655,51.5337524510659],[4.229651097801596,51.53149244931119],[4.228566555274705,51.52957378733863],[4.22837358797694,51.52923243344544],[4.227608158451214,51.52787840497524],[4.225691863829145,51.52448770941068],[4.224838856933729,51.52299021827719],[4.224733824221397,51.522792304913],[4.224537497542701,51.52245100058093],[4.223775855639802,51.52109689256456],[4.22326463836649,51.52019222866534],[4.222817814021872,51.519401470931356],[4.221859987471555,51.517706042886005],[4.220911069251327,51.516008717566365],[4.220586811579206,51.51531770740067],[4.220259721991584,51.51462065401275],[4.220101672271726,51.51428383214253],[4.219478375883397,51.51252906859846],[4.219291762126245,51.51176626549852],[4.219213313512954,51.51144561014004],[4.219143849003951,51.51116166750226],[4.219061961211858,51.51082691814955],[4.21904369536204,51.51075227600583],[4.218974395441078,51.510243302476866],[4.206384751506333,51.50520820083604],[4.191202916242264,51.51011477549111],[4.178629228320977,51.5132575076989],[4.178038107082677,51.514357095988736],[4.176427584105669,51.51478089632769],[4.174792751190763,51.51449425269096],[4.166683693086897,51.51869778562991],[4.160823454734159,51.52174677174048],[4.142985132499125,51.52065018095562],[4.110869033307147,51.52310841094794],[4.098651095685029,51.523540615111834],[4.075504848200977,51.522635736270466],[4.071965982068711,51.52491526849178],[4.064531595528988,51.53277816894292],[4.056328639534006,51.54513567278352],[4.027459073485632,51.5559145358718],[4.012614082700922,51.569917629097226],[3.988982002461,51.57610095069866],[3.982291953944093,51.579688554909445],[3.983847018895406,51.5872586092727],[3.988093742618147,51.59508561365624],[4.0073529077256,51.59777763570072],[4.037918013212058,51.60674636630689],[4.052744902085731,51.609694266402315],[4.062489974036237,51.61317614005421],[4.075176464798376,51.61386749409469],[4.092214727677645,51.61235834272509],[4.103856208351743,51.610185330657146],[4.110793846465682,51.604283215957814],[4.135414837507546,51.60297616985484],[4.160128530592575,51.60565623759442],[4.169309016994527,51.60623762373919],[4.173455785021547,51.61689723822825],[4.165323854494556,51.61322579738337],[4.152903255144246,51.61174697585518],[4.1364803175744,51.61249843795676],[4.125680044338557,51.612499318739445],[4.118351307390049,51.62259616036225],[4.099245375333652,51.63069369212009],[4.095992331369763,51.6429644854554],[4.097128519874345,51.64416363162657],[4.122167508609156,51.65455012804266],[4.139563258646547,51.65262433152217],[4.155586699963848,51.6484970982218],[4.181135292827779,51.63979176025561],[4.192730222454116,51.63345631634691],[4.194534450385843,51.63296232614678],[4.193515502905948,51.6266773483153],[4.191238545211744,51.622653817725336],[4.197569240267311,51.61970692090607],[4.198857257225038,51.619155047182694],[4.198501763373686,51.61882645134943],[4.197659562122114,51.618047949812286]]],[[[3.724769232143726,51.655333754670664],[3.724842321694555,51.65532948868594],[3.725235796221008,51.65534040816727],[3.725884026793123,51.65535693874662],[3.726065494439356,51.65536553798556],[3.726238789761065,51.65536839313003],[3.72645516914116,51.65537761309611],[3.726602425890369,51.65537437148072],[3.726812823828264,51.65537012858289],[3.726996177892778,51.65536355081155],[3.727173373488172,51.6553577934044],[3.727323682826871,51.6553521039124],[3.727454795943101,51.655342914531026],[3.727578764550793,51.655335421716565],[3.727705881404447,51.655324844843896],[3.728103408469003,51.65528513472877],[3.728246969037778,51.65526757130003],[3.728393648570375,51.65524969229853],[3.728578028097508,51.6552202287094],[3.728745689469249,51.65519300021054],[3.728858902209671,51.65517213812382],[3.728931929919907,51.65515809643566],[3.729029777461172,51.65513331253408],[3.729114132493967,51.655105963998324],[3.729169719408193,51.65507916079546],[3.729235808809591,51.6550402617867],[3.729289642217379,51.65499384417927],[3.729322677602685,51.65495530395967],[3.729351223373841,51.654905561353424],[3.729368070616507,51.65486702554714],[3.729377168995062,51.65481827505862],[3.729378243910314,51.654765626065426],[3.729365862959683,51.6547279708024],[3.729348132529364,51.65467615221394],[3.729337404141793,51.6546328385906],[3.729325215090993,51.65460257593305],[3.729299350409242,51.65456370477416],[3.729226313296838,51.65452277186064],[3.72911582602115,51.65448701705527],[3.729008419733227,51.6544642246252],[3.728910252262702,51.65444213837507],[3.728853806395367,51.6544316381868],[3.728732284998773,51.65442171714805],[3.728623766459791,51.654416277546765],[3.728546026657625,51.65441181347565],[3.728496919667653,51.65440535480642],[3.728458441660905,51.6543975544036],[3.728420639632014,51.65438668894171],[3.72838626295081,51.654368724858344],[3.72834434228106,51.65433417490815],[3.728292869066178,51.654283028591394],[3.728250292599744,51.654238373383585],[3.728197374147906,51.65418289126874],[3.728182035444829,51.654149859821224],[3.728139300282302,51.65407009582564],[3.728086685388401,51.65395229831145],[3.728021312715324,51.65379297424518],[3.727879468551783,51.653435681825485],[3.728107164560169,51.65339811276783],[3.728149144220966,51.65339118314622],[3.728123068005529,51.653328152201034],[3.728094150423935,51.653258257450965],[3.728011101525589,51.65305755287127],[3.727753780141101,51.653099421473314],[3.727710497217166,51.65306896045388],[3.727672167582273,51.65299365491206],[3.727677262033445,51.65296585771577],[3.727682801059414,51.65293460561912],[3.727674979137815,51.65288854608802],[3.727664534875978,51.65286474492052],[3.727559723680216,51.65261669496009],[3.727493814451979,51.652479208979074],[3.727445069111205,51.652406164990865],[3.727352986122471,51.6522643610338],[3.72723233370608,51.651984099123496],[3.727519647291153,51.6519364628678],[3.727372840042023,51.651604433514656],[3.727134586117434,51.65164638233139],[3.72708190137343,51.651620912070626],[3.72704995813702,51.65150510639054],[3.72699437438975,51.65136871052728],[3.726916170782142,51.65119611405327],[3.726913893633322,51.65117662707437],[3.726920144139346,51.651159877212336],[3.726938378718151,51.651141858947845],[3.726983107169446,51.651135193513134],[3.727041551169354,51.65110565392559],[3.72707957781585,51.65107561789752],[3.727114174977413,51.651038601806945],[3.727145477601506,51.65099171274475],[3.727156245732671,51.65096841919963],[3.727166254650181,51.65094139296435],[3.727173197263692,51.650906942323864],[3.727175609433433,51.65086755475968],[3.72717519577325,51.65083823203218],[3.727158999539026,51.65080459490848],[3.727127205318604,51.65076358036079],[3.727083932046955,51.65072425493188],[3.72705491970954,51.65070276146976],[3.727017454230951,51.65068990447973],[3.726996653395778,51.65068134744178],[3.72699270379296,51.65067081789119],[3.727005862851173,51.65062921838407],[3.727025605021511,51.65062407740198],[3.727081901960389,51.65062115412818],[3.727155619346535,51.65061886452166],[3.727216655202464,51.65060691038088],[3.727270760504465,51.65059004817555],[3.727299228759844,51.650577101615276],[3.7273323289549,51.65056001336009],[3.727363673705734,51.65053522261423],[3.727379477486158,51.65050386439355],[3.727385627029244,51.65048079300514],[3.72738818490597,51.650453984715064],[3.727392653369864,51.65043301115663],[3.727402950150103,51.65042927345797],[3.727510969682008,51.65044175548412],[3.727645612009904,51.65045339229901],[3.727715850686321,51.65045018995607],[3.727802556785059,51.65043813204474],[3.727892575110658,51.650430337411386],[3.727959250818675,51.65043996727746],[3.72801393548958,51.6504601343552],[3.728111885665415,51.650460686982164],[3.728256112718078,51.65046356772696],[3.728382799287341,51.65046514781242],[3.728482917349013,51.650453072738806],[3.728565114840757,51.65044178644185],[3.728618666491001,51.650440810342914],[3.728698783297961,51.65045121464463],[3.72879057915168,51.650466306442326],[3.728852178988205,51.65047405684599],[3.728918776928054,51.65047871351263],[3.728996460997524,51.650484516144765],[3.729068244270295,51.65047662404328],[3.729135628572782,51.65047598754543],[3.729305659295425,51.65048815980219],[3.729541542165095,51.650506811546016],[3.729704744362795,51.65051523649738],[3.729790532605166,51.65053219327611],[3.729848426576565,51.650546831054086],[3.729887864336659,51.65055083280544],[3.729927958419937,51.6505483529579],[3.729991028615378,51.650545551178595],[3.730045394171808,51.65055037560099],[3.730074680651589,51.65055493476982],[3.73013394952143,51.65057110221778],[3.730167144305909,51.65057509638517],[3.730413711859015,51.65060470379987],[3.730554145113004,51.65063703362663],[3.73072311372615,51.6506743162118],[3.730821933228506,51.65069457626079],[3.730935637905474,51.65070971574672],[3.731036663355629,51.65072972813937],[3.731121304973946,51.65075158531056],[3.731238691006147,51.65078620428045],[3.731318691353533,51.65081247271811],[3.731424394493532,51.65084962322801],[3.731512754142676,51.65088087346857],[3.731603055398776,51.65091278041923],[3.731640482592397,51.65092830545475],[3.731751293533463,51.650977556724385],[3.731839244711621,51.65102038921892],[3.731915131434237,51.651061163070324],[3.731977229731645,51.6511043399956],[3.732063694004732,51.65116137367787],[3.732146876649734,51.6512121127398],[3.732232818977447,51.65127394863236],[3.732304426963196,51.65133928568931],[3.732364036103881,51.65139958037574],[3.732431912020826,51.65147886221345],[3.732497297444864,51.65155155498734],[3.732532926970802,51.6515917771758],[3.732559135540021,51.65162205791482],[3.7325758344295,51.65165589913638],[3.732585438558497,51.65169286750178],[3.732609662572816,51.651760851756165],[3.732632783268757,51.65182383088171],[3.732656620016503,51.65190083574193],[3.732670499571403,51.651999977369705],[3.732679790601872,51.65207478975526],[3.732701488659285,51.65219332574713],[3.732702986306346,51.65225122539118],[3.732700899576536,51.65232020414377],[3.732700497037821,51.652366821277646],[3.732693150960845,51.65240886316012],[3.732680098698788,51.65244133977995],[3.73264610905721,51.652478042421954],[3.732622676199939,51.652512592836096],[3.732607714680149,51.652580310742806],[3.732595869495641,51.65260506391628],[3.732578261787158,51.652674003024686],[3.732542480827371,51.65274864563926],[3.732516041038627,51.65280575471051],[3.732490315631988,51.652852013797535],[3.732470163994651,51.652863209263444],[3.732431729916716,51.652904451952],[3.732399301933421,51.65296524319155],[3.73239180056514,51.65300084592605],[3.732361902772678,51.653053303120096],[3.732324823723004,51.65308949450147],[3.732301364134356,51.65311408341035],[3.732273376156326,51.65314354386083],[3.732237968861908,51.653164835236645],[3.73217628838608,51.65317420273053],[3.7321573344718,51.65318860657957],[3.732149959827573,51.653231807754125],[3.732135388526924,51.653287637178735],[3.732120621960578,51.65333536373077],[3.732101509620178,51.65335647196966],[3.732058670961241,51.65337070882209],[3.732004938726679,51.653384836538244],[3.731950841509565,51.65342871640688],[3.731936970553455,51.653445610459734],[3.731934550888196,51.65346593888651],[3.731948285707686,51.65348004987586],[3.731957088325897,51.65349663531117],[3.73195485938691,51.653518467787976],[3.731890673377161,51.653596754016014],[3.731848601767576,51.65363941945292],[3.731791152210272,51.65367614962858],[3.731734590915094,51.65371506795398],[3.7316634041202,51.653775697302294],[3.731602190029932,51.653817741243344],[3.731499279834275,51.65388069965942],[3.731389120096998,51.65394862585246],[3.731326282975539,51.65399156368344],[3.731285873448286,51.65402155837371],[3.731245438580173,51.65404196920957],[3.731226330339921,51.65406650261],[3.731223882594626,51.65409114589121],[3.731236009284893,51.654115635793175],[3.731263884428689,51.65413158314835],[3.731289553472313,51.6541331600191],[3.731331227415052,51.6541243190205],[3.731566261293656,51.65398450337846],[3.731650265219488,51.653934241222046],[3.731735178945698,51.65388794753496],[3.731821142472513,51.65383981666976],[3.73190624860433,51.653774016995726],[3.731981710081462,51.65370793701081],[3.732048675303195,51.65364574641619],[3.73212242534567,51.65357032836216],[3.732180740964096,51.65350316968781],[3.732244553419279,51.65342164157612],[3.73230500646,51.65333513933405],[3.73232863751936,51.65331258461835],[3.732370284004593,51.65329299966247],[3.732397771069089,51.65325707719128],[3.732421245735451,51.65319410960323],[3.732470300238435,51.65312881564924],[3.732515633875223,51.65307279183283],[3.732554719858288,51.65299630802699],[3.732588276059837,51.65292876312843],[3.732627082641727,51.65288721100169],[3.732655678599568,51.65284624270654],[3.732670604624734,51.65281272275454],[3.732668809851746,51.65277956874481],[3.732678777843606,51.65273301492586],[3.732700439272614,51.65268326411431],[3.732742064011596,51.65259859017095],[3.732759176370762,51.6525554636958],[3.732752122493223,51.65252463570361],[3.732757730513733,51.652483881806354],[3.73278008675096,51.652441611603166],[3.732803774859147,51.65240007044471],[3.732801543676876,51.652355519770126],[3.732789160806481,51.65228502390356],[3.732788915172682,51.65222093877042],[3.732792334671497,51.652169275872275],[3.732784876645103,51.65208859188485],[3.732763071404493,51.65199434573099],[3.732755476223902,51.651903572872165],[3.732737444229336,51.65182630847335],[3.732718712359588,51.65177492575762],[3.732686497800237,51.65171440723994],[3.732669590035429,51.65166412911979],[3.732659570564078,51.651619540247225],[3.732616810063209,51.65156800658171],[3.732554118319291,51.65151493247273],[3.732516697303098,51.65148220970085],[3.732475875981546,51.65143219576135],[3.732450922016316,51.65139645775041],[3.732435778107392,51.651362386772334],[3.732407935220068,51.651329772428504],[3.73233551708636,51.65127790019016],[3.732258306757562,51.65122270570704],[3.732180786470872,51.65116017982814],[3.732078841990154,51.65109330785077],[3.731968870618334,51.651017511915676],[3.731894188612605,51.650965922026884],[3.731835974609089,51.65093747189931],[3.731770276602325,51.650912520918226],[3.731690556784693,51.65087382340536],[3.731605070987874,51.650837489580375],[3.731540396042705,51.65081855835143],[3.731462450068489,51.65080092269312],[3.731387322156186,51.65078408202707],[3.731206861629032,51.650733799877244],[3.731091155120794,51.65069435895839],[3.730844238388539,51.65064701049801],[3.730543718595912,51.65058506687098],[3.730332513023275,51.65054406644803],[3.730118999799679,51.65051203209196],[3.729890710927824,51.650477001147046],[3.729664435379624,51.650438303322616],[3.72949625365209,51.65042141997442],[3.729309781116644,51.65040281186468],[3.729060892163024,51.6503809996255],[3.728871343634705,51.65035839156702],[3.728709849206334,51.650346762188214],[3.728563866806183,51.650344072883364],[3.728309590220733,51.65034113389753],[3.727995129025081,51.65033087714445],[3.727748778896825,51.650319868292],[3.727541157477523,51.65029552740304],[3.727418094343464,51.65028854976632],[3.727303693130324,51.650294442887486],[3.727197317119602,51.65029233163567],[3.72711476821007,51.65029112467662],[3.727021376164998,51.65030225114294],[3.726956381585182,51.650311425001554],[3.726847964890604,51.650317276719704],[3.726751830649691,51.650330269976145],[3.726692701851988,51.65033633541679],[3.72663327712401,51.65033115894661],[3.726559430177514,51.65031177114012],[3.726499834507298,51.65029431163677],[3.726424622812627,51.65027864427734],[3.726357462756113,51.6502786890444],[3.725990961096567,51.65027393646063],[3.725597925568399,51.65025500610461],[3.725422860056598,51.650250119876816],[3.72534238719426,51.65024787131904],[3.725070378332509,51.65024218319744],[3.724839932435262,51.65023730961928],[3.724635735104813,51.65023469643641],[3.724381189989708,51.65023161023767],[3.724116244133551,51.6502307580649],[3.723898002653323,51.65022609203329],[3.723647711437302,51.6502252313266],[3.723507301426847,51.6502290159085],[3.723214674427146,51.65025781324428],[3.722896121012452,51.650284227336776],[3.722605415980064,51.65031772536987],[3.722443476246535,51.65033083088374],[3.722286327384496,51.65033548166894],[3.72221482429014,51.65033454527426],[3.722183555211326,51.65033165505963],[3.722161355602734,51.65031911259139],[3.722148178162624,51.65030410033497],[3.722139206499934,51.65029419139501],[3.722094419041508,51.650277308923556],[3.722051946277384,51.65026350703306],[3.722014019105512,51.650251855524296],[3.721982472845028,51.650234496152244],[3.721954804412962,51.65021111460836],[3.721914753080232,51.65016880338242],[3.721701479402229,51.64991590484175],[3.721400260555462,51.64954261647827],[3.72131675731367,51.64943813988107],[3.721257110861399,51.64936282529345],[3.721218659625587,51.649321840164184],[3.721174230901467,51.64928974209749],[3.721131839401573,51.64926197930298],[3.721075061999875,51.649231251692505],[3.721020016946397,51.64920450438839],[3.720943159725919,51.649177491429896],[3.720863062037704,51.649156069106],[3.720804650407549,51.64914305567157],[3.720719755706118,51.64912553858817],[3.720614311975409,51.64910445637365],[3.72054222783961,51.64909501496259],[3.720495550782891,51.64909221949622],[3.72044639653159,51.64909076422249],[3.720388353026213,51.64909131298064],[3.720336027504771,51.64909395695318],[3.720285445642167,51.6490994846105],[3.720200376542548,51.64911183896165],[3.720017001573979,51.64914790226356],[3.720006364363386,51.6491330068555],[3.719982234183199,51.649123475130025],[3.719955376059596,51.649117383725326],[3.71993622741973,51.64911621189079],[3.719872882851325,51.6491284619758],[3.719412276225475,51.64920939956221],[3.719417222140673,51.649286219050765],[3.719413946373183,51.64930374812845],[3.719404564502842,51.64932736642223],[3.719393498356095,51.64934609703406],[3.719376738431446,51.64937306239448],[3.719356754247809,51.64939967613384],[3.719334859167749,51.649422846373795],[3.719277149803759,51.649464142755114],[3.719246058224159,51.64948745160533],[3.719213486804104,51.649510523590656],[3.719166270566374,51.649540012569545],[3.719119725133093,51.649567767000626],[3.719069088567263,51.64959790841919],[3.719020522918288,51.649634992771595],[3.718990670838816,51.649668585989154],[3.718948634399094,51.64972771736261],[3.718926790135004,51.6497671514548],[3.718909428583905,51.64980847445205],[3.718901482914267,51.64983742636785],[3.718900187102208,51.64988829220559],[3.718904711621884,51.649945929698326],[3.718911167726795,51.64999507205485],[3.718922425447533,51.65005235602679],[3.718939799877993,51.65010601425947],[3.718955843081601,51.650144810756174],[3.718985714189698,51.65019466448715],[3.719015451644156,51.650234024787196],[3.719119194148496,51.65036097926893],[3.719291978871306,51.650574539990735],[3.71934574501819,51.65062975069614],[3.719365984132359,51.65065783671947],[3.719383407285263,51.65069017990249],[3.719395459433978,51.6507200281835],[3.719404815817955,51.650752831766944],[3.71940627163929,51.650781189496804],[3.719402213860095,51.65082073331807],[3.71939299346135,51.65085565454225],[3.719377537582589,51.65089153874722],[3.719360580566076,51.65093247200581],[3.719341323493324,51.65096129869752],[3.719319492033536,51.65099096074062],[3.719303618011017,51.65100955090062],[3.71927445975487,51.65103252771381],[3.719239472908678,51.65105365937383],[3.71919991004292,51.65107464488864],[3.719150478742447,51.65109673936053],[3.719096447094877,51.65112091688574],[3.718940220519644,51.651182043547514],[3.718669886330347,51.651284911663566],[3.718428015747074,51.65138795131346],[3.718238706658483,51.65148081704463],[3.718051404991043,51.65157056455198],[3.717767189586989,51.65170094031089],[3.717544178650676,51.65183014786892],[3.717034853069379,51.65213198880478],[3.716782135436794,51.65228828987037],[3.716323504448729,51.65255906216769],[3.716018144550596,51.6527380833274],[3.715822616904555,51.65286287041688],[3.715717164727654,51.65293463416083],[3.715658236126245,51.652982905755366],[3.715613084277347,51.65302873998523],[3.715508246064005,51.65314766573203],[3.715426502926811,51.65324859036118],[3.71539278298879,51.65329403042554],[3.715365090330099,51.65333867554819],[3.715334850207009,51.65338694326913],[3.715314970994895,51.653429389530025],[3.715295182898686,51.653481501516964],[3.715286991046578,51.653526434203584],[3.715276983716865,51.65359156882452],[3.715269054647842,51.653660697798166],[3.715268702282099,51.65370938349784],[3.715267135723157,51.653754941253894],[3.715270214379666,51.65381247734153],[3.715275492932907,51.653875411985545],[3.715283120761763,51.65393187131178],[3.715303148741085,51.65401770784166],[3.715329139619824,51.65410175959737],[3.715345541451431,51.65415115212889],[3.715357358542064,51.65417635855098],[3.715377562735259,51.6542194583397],[3.715405025229292,51.65426874815146],[3.715441039065949,51.65431621823489],[3.715472873314802,51.65435827945542],[3.715505602654273,51.654401935721026],[3.715540385947204,51.654448291393905],[3.715583696469237,51.65449504754981],[3.715646052357011,51.6545485756031],[3.715701579975529,51.654597187369276],[3.715759144547636,51.654641521911316],[3.715828483380379,51.65468913517362],[3.715919338033596,51.65474433768598],[3.716014158028245,51.65479588381244],[3.716142190454299,51.654857271843106],[3.716265044101367,51.65491213085308],[3.716382188588936,51.6549525059844],[3.716505671540629,51.65498993280677],[3.716615226718608,51.65502016633881],[3.71676853529023,51.6550507276038],[3.716928145630962,51.655076200271694],[3.717036672853762,51.65509082080486],[3.717146725240223,51.65510053639297],[3.71730098736534,51.65510957013812],[3.717995062446947,51.65513778458756],[3.718514115705695,51.655154347543615],[3.719046500943638,51.65517037002274],[3.720038864290499,51.65519562256652],[3.720797326894122,51.65521339199179],[3.72114996503079,51.65521968920485],[3.721323828799507,51.6552286820224],[3.721402191273713,51.65523627933001],[3.721459226741836,51.65524527217539],[3.721496637879672,51.65525691647439],[3.721553387001816,51.65528351690458],[3.721639562076425,51.65532548670936],[3.721710004015551,51.65536137996404],[3.721744580331585,51.65538486881943],[3.72180865224749,51.65543205289395],[3.721835467739839,51.65546259643384],[3.721854728780541,51.65548279268824],[3.72187085570453,51.65549742438972],[3.721901839841072,51.65552309163866],[3.721928383343121,51.65554374212011],[3.721954752902579,51.65556283482429],[3.721980247878455,51.655578984289086],[3.72201336326367,51.6555977953767],[3.722047957185319,51.655614919362776],[3.722079635315983,51.65562918793625],[3.722113545868791,51.655642885922575],[3.722153946126813,51.65565776403688],[3.722186111182339,51.65566940539447],[3.722236946122067,51.65568627491222],[3.722270523622795,51.655695275255844],[3.722319119443732,51.65570936189757],[3.722370207820337,51.655722486069415],[3.722414625330986,51.65573424771564],[3.722514026337289,51.65576444809623],[3.722536021460593,51.65577437142222],[3.722557739213335,51.65578987368132],[3.722591341066801,51.65582259029075],[3.722720180048006,51.65597204996971],[3.723195071138523,51.65594422689061],[3.723215797739707,51.65594069177957],[3.723239859943074,51.65593488463167],[3.723256366999184,51.65592621008761],[3.723283269746533,51.65591154307062],[3.723304171413849,51.655909143191714],[3.723331165682848,51.65590575110999],[3.723346139427719,51.65589868197114],[3.723355511572078,51.65588868331708],[3.723356854407857,51.65587928073338],[3.723321529894181,51.65580571559867],[3.723324371342594,51.65580194417322],[3.723332644320789,51.65579786339152],[3.723380294878412,51.6557952054849],[3.723442563521862,51.65579515574071],[3.723478916961446,51.6557915550502],[3.723513417809915,51.6557872357717],[3.723573258188514,51.655777352178866],[3.723638646285272,51.65576556958087],[3.723693569854535,51.655754573180495],[3.723835781875553,51.655750202490076],[3.723911484377252,51.65573896190226],[3.72396975219347,51.65572269972532],[3.724029549698124,51.655695877856076],[3.724094033958473,51.655658720959124],[3.724152659455982,51.655615007869365],[3.724193488382631,51.65558202782729],[3.724229813353048,51.65554889387168],[3.724253972134822,51.655514867822546],[3.724277677662908,51.65547980146165],[3.724306136868342,51.65545028662914],[3.724346041602085,51.65542278638337],[3.724394564631342,51.655401081355514],[3.724456522411748,51.655383504866506],[3.724567884858784,51.65536075066929],[3.724686873876605,51.6553428515035],[3.724769232143726,51.655333754670664]]],[[[3.791793057821822,51.74723704298745],[3.792407608858777,51.74715989471881],[3.793587274567517,51.747093431265824],[3.794397218906911,51.74705248868113],[3.79467616632231,51.747040304238205],[3.79549606513481,51.74700450571853],[3.796329693587066,51.74692796568529],[3.797348447965419,51.746841641937344],[3.799083828177479,51.746635890880086],[3.799952618867814,51.746505853128916],[3.800588454431725,51.74641370352626],[3.801655243604391,51.74623408409101],[3.802516111805645,51.74607844286354],[3.803474023232275,51.745897937115956],[3.804382027203228,51.74569039116657],[3.805178887237354,51.74551919453879],[3.805709488161079,51.745398402310194],[3.806999142125985,51.745186042854606],[3.80759609465988,51.7450978531746],[3.808207923084221,51.74501282756654],[3.809060549636416,51.74486748289234],[3.810123856763529,51.74466648796636],[3.810972929102644,51.74448941023295],[3.812451513057356,51.74415592992573],[3.812870231181325,51.744064752183206],[3.813482062721238,51.743938201918084],[3.814094724780624,51.743806832061246],[3.81479412409487,51.74367807018759],[3.815511145710165,51.743533844148],[3.815763961076694,51.74349815527082],[3.816066291254141,51.74345822118185],[3.821220805876596,51.742706720968336],[3.822688621529677,51.74047031362493],[3.826040186278943,51.74027219314334],[3.887485422939208,51.74576665284148],[3.976439657727028,51.73490595236447],[4.001901227559454,51.70817800699845],[4.09132212057369,51.67037643686591],[4.094443126417438,51.66842444377223],[4.095587867525714,51.66778920654314],[4.099730376150944,51.66549739131377],[4.103059202148344,51.664842033927435],[4.108205745156129,51.658704806236884],[4.097740826872439,51.64602284777165],[4.075627553977489,51.63296277888351],[4.067501732411801,51.63003430293561],[4.019060069060585,51.614033921292815],[3.960460634495926,51.61183297796358],[3.925295536115475,51.62768763478333],[3.89893168242024,51.62777819242186],[3.886588527306225,51.63063239326156],[3.88982989190125,51.64316901093034],[3.883894376888284,51.64914380105274],[3.87389939974401,51.663336017670055],[3.848600895335081,51.67518689928064],[3.817313342090655,51.68304246089848],[3.803903364271731,51.69022602424944],[3.788325648389995,51.684807443718945],[3.757986344971192,51.67268487629647],[3.726153130597829,51.665800223721156],[3.720519536746683,51.66567474315479],[3.710058045745011,51.66592088259572],[3.709068076500414,51.663767033856665],[3.707599284780052,51.66390876931742],[3.704174928359045,51.664922651256205],[3.70244726066445,51.66567579804662],[3.700328000449443,51.666688559500905],[3.697806050741468,51.667953247938094],[3.696169828946772,51.66879327335426],[3.692940210651321,51.67053562169648],[3.690904051657608,51.671946767973374],[3.688601917767046,51.673756476292624],[3.687626022706677,51.67439331067025],[3.686299093091521,51.675069493955355],[3.68507187811141,51.67592806729117],[3.682743643508138,51.67816752009215],[3.681174356683132,51.68000628349632],[3.680654170590286,51.68077851316908],[3.679588078759989,51.68217493558441],[3.678487912522482,51.68366609381244],[3.676532529453201,51.686676485134754],[3.676019076038644,51.687678745388304],[3.675818609946294,51.68821037373428],[3.675815392342513,51.68821895731237],[3.675681226577833,51.68858008409196],[3.675568707783809,51.688947056143945],[3.675494869555829,51.68914956017784],[3.675314396871626,51.68954393868871],[3.675235464258018,51.68979499616114],[3.675148320906623,51.689992387813824],[3.675051226883847,51.690261187026266],[3.674978494752427,51.69050962894417],[3.674933590934449,51.69064883309615],[3.674757362508192,51.69128728526777],[3.674596180655945,51.69191216626204],[3.674427415711861,51.69240980550926],[3.674206465893978,51.69297398188915],[3.674016091832548,51.693391884914945],[3.673869823622682,51.69395330546458],[3.673796124455656,51.694193335678136],[3.673584312410457,51.69480835845305],[3.67336545173745,51.69559319274604],[3.673202513967825,51.696333705311744],[3.673091446741444,51.69707887865597],[3.673055614435233,51.69802420542937],[3.673124860518961,51.69878018998359],[3.67320030450192,51.699507073916],[3.673293151930753,51.70025200404611],[3.673316703423411,51.7012998968759],[3.673364829803709,51.70199338661552],[3.673365356395989,51.702011176952965],[3.673397082475317,51.70265908001415],[3.673429419863305,51.70362298873413],[3.673461509430395,51.70395748041442],[3.673468137371132,51.70402655025845],[3.673497734154861,51.7043352035443],[3.673611835086815,51.70510728865407],[3.67382462006314,51.705873768921755],[3.673871561703685,51.70605892560591],[3.673889272497589,51.706128813812356],[3.673998019017835,51.70655790667437],[3.674190382120003,51.70723891414713],[3.674389084279614,51.70783831095567],[3.674617272866547,51.70846853434708],[3.674818604797308,51.70915618951562],[3.674862530090381,51.70935393279861],[3.674876536027788,51.70941702399349],[3.674915539314517,51.70959266930513],[3.675066593899751,51.71000977507145],[3.675340123812266,51.71063397076592],[3.675903414603918,51.71166331719708],[3.67626457512316,51.712292971081794],[3.676691188168075,51.713056112931895],[3.676940908599763,51.7134484951531],[3.676972640857538,51.71349836854791],[3.677110268370221,51.71371462310184],[3.67839679473086,51.715459136475374],[3.678961255110793,51.71613504336017],[3.679278194986083,51.71663127499612],[3.679313997029004,51.71668732934419],[3.679414625367706,51.71684489297046],[3.679853585404708,51.717381406683955],[3.680397866177127,51.7180202690762],[3.680811712455998,51.718421335561885],[3.681099072464693,51.7187703842477],[3.681255755303606,51.71897434270649],[3.681318492100687,51.71914750808811],[3.681452288113439,51.71950232077199],[3.681769687263859,51.72018985361189],[3.682325395244723,51.720815171584434],[3.682760783653422,51.7212134245505],[3.683100413036338,51.72157023170289],[3.683462679356958,51.72191955455766],[3.684084202814904,51.72243859501771],[3.684750397828169,51.72288921871517],[3.685309906169502,51.72322148846164],[3.686505791089774,51.72402007307525],[3.687283671486043,51.72453301359186],[3.688148328012244,51.725015822583785],[3.688847175685044,51.72538200156218],[3.689505653351297,51.725810783063984],[3.690135601903658,51.72613495160465],[3.69124627679851,51.72662388052503],[3.691960089316597,51.726858749098426],[3.692481656994943,51.72705777583603],[3.69309265921413,51.72732070079979],[3.693665484839222,51.727554877582634],[3.694047664707556,51.72776331776505],[3.694728759876639,51.72817719348067],[3.695436490700136,51.728586819774655],[3.696207638904196,51.72898654180628],[3.6967194543986,51.729262786561314],[3.697069959014464,51.72945723837904],[3.697365659155378,51.72963493222508],[3.697749777674479,51.729884976261985],[3.698759167618536,51.73041993832542],[3.699020736797764,51.730579560292924],[3.699196288708428,51.73070912909319],[3.699946396318531,51.731211981013175],[3.700434857881681,51.73148292812217],[3.700850052041912,51.73174416116985],[3.701224636473267,51.7319717246987],[3.701716679334904,51.732328717345766],[3.702152430000695,51.732621481981056],[3.702889910115069,51.73320610464292],[3.703199961550602,51.73350149937943],[3.704259167192726,51.7344567240986],[3.704682736025586,51.73475449122516],[3.705010611044781,51.73504115570122],[3.70559488458177,51.735485077191186],[3.706487582696624,51.73606596107529],[3.707261538304655,51.73650675983553],[3.707969335984863,51.736840063494036],[3.708574659763487,51.73713857751425],[3.709401502992802,51.73752564827113],[3.710341060653253,51.737891212475404],[3.711465249608863,51.73823976603544],[3.712649747636708,51.738559521121694],[3.713620523914571,51.73875403654554],[3.714341396794135,51.73886082033081],[3.715325119395025,51.73904824231038],[3.716049288368638,51.73919806212359],[3.716796764172593,51.73937286046275],[3.71749631077342,51.73956970699314],[3.718483447541319,51.739825385548116],[3.719830041987661,51.74005502011329],[3.720653276677391,51.74015417708338],[3.721050514669531,51.74021576196325],[3.722487908628505,51.740429027138056],[3.723753287862393,51.74060243424259],[3.726902341196626,51.74066796713424],[3.729075994101435,51.74028583853128],[3.729649728417194,51.739985002678196],[3.729743276919081,51.73993203486387],[3.729969709483962,51.73978802500799],[3.729983154175899,51.73978626429781],[3.73026896900081,51.73979623034362],[3.730808565338903,51.739827286758306],[3.731421922219821,51.73986478593108],[3.731767817446365,51.73990123685126],[3.732531292168202,51.74000566906044],[3.733274188359671,51.740096392660135],[3.733714311645839,51.740158980215575],[3.734610647412266,51.74030440706106],[3.73537977931501,51.74043545696314],[3.736186964471438,51.74056391835083],[3.737399809272147,51.74077477992381],[3.738502852021414,51.74098614281286],[3.740284929568634,51.74128264628381],[3.741731058549755,51.74153923676843],[3.74301108865749,51.741754875752264],[3.744324019267538,51.741971663085636],[3.745610698494888,51.74219507108988],[3.74677141927044,51.74241879642337],[3.748060534111051,51.74266992761302],[3.749367805393712,51.74291035736829],[3.75039502568455,51.74312253431524],[3.751949901661864,51.74346573266171],[3.753103141377208,51.74370022209441],[3.753929781181501,51.7438702933569],[3.755199817485812,51.74416184898316],[3.756525268180206,51.74446330457461],[3.757728247602918,51.74472177811427],[3.758939756587741,51.74498826887114],[3.760184916231814,51.745230797291654],[3.76143381552894,51.74549129926512],[3.762359353983374,51.74569133340793],[3.762541313656656,51.74572789209816],[3.763969857321749,51.74599347304111],[3.765332303319317,51.74622520937148],[3.766321764706147,51.746403216966016],[3.76793526383974,51.74664947027178],[3.768908228125287,51.74673508959205],[3.769677990297403,51.74677092385417],[3.770282242167127,51.7467870112024],[3.770605871633601,51.74681214359518],[3.77186421801541,51.74693647454803],[3.772706600464048,51.74693063232088],[3.773116299204071,51.74692386926902],[3.773538683840573,51.74694428532618],[3.7738163703661,51.74694810830907],[3.774619358982059,51.74708868703636],[3.775696827066325,51.74702931296864],[3.776057619517097,51.7469936746218],[3.776363271162099,51.74697358510734],[3.77651211941544,51.74697049756155],[3.776654380874925,51.74697666887655],[3.776868186921757,51.74700153329534],[3.777434504322362,51.74708002819084],[3.778591013600961,51.74709590732152],[3.77876507741768,51.74706758655943],[3.779003607465153,51.7470639735464],[3.779832485262689,51.747066462203605],[3.780618254493907,51.74705980462338],[3.781115872385652,51.747066624906026],[3.782388444567008,51.74709927698075],[3.782630731680978,51.74712034949498],[3.783283262152844,51.74718578319168],[3.784432451176948,51.74724355943653],[3.78517556335405,51.74728526515849],[3.786402862627833,51.74731240912488],[3.788472070691115,51.74734065323481],[3.789428356368655,51.747314129182456],[3.790370799809367,51.74730713266851],[3.791793057821822,51.74723704298745]]]]}},{"type":"Feature","properties":{"id":7,"statcode":"WS09","geometry_g":"polygon","gag_id":"9","hierarchie":"2","hierarch_1":null,"inspire_id":"NL.09.09_Waterschap Rivierenland_p","sde_id":null,"land_code":"NL","inspire__1":"NL.09.09_Waterschap Rivierenland_v","inspire__2":"NL.09.09_Waterschap Rivierenland_l","wbh_code_o":"09","einde_leve":null,"laatste_wi":"2014/08/31","admin_code":"WSRL","waterschap":"Waterschap Rivierenland","publiceren":"09","Aangemeld":1,"Actief":1,"KVK":30281419,"tnostatus":null,"CPT":4774,"GMW":190,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.101297747304033,52.003035128049696],[5.101404085412365,52.0030330313017],[5.101499839344021,52.00303272439114],[5.101591961296174,52.00303332538843],[5.101693174909345,52.003033247280385],[5.101772565843065,52.00303201962678],[5.101934235750636,52.00303113510148],[5.102011066591106,52.00302943369841],[5.102148335091894,52.003029855979015],[5.102234263225801,52.00302887753289],[5.102365732580983,52.003027487886065],[5.10245893663413,52.00302738974332],[5.102538300082631,52.00302819283824],[5.102647923611922,52.003027001728505],[5.102782643620477,52.003027417110225],[5.102895503254405,52.00302803122532],[5.103032062070887,52.003025538587075],[5.103166049613009,52.003026634864746],[5.103214121799648,52.003026696889854],[5.103264447015249,52.003025128477375],[5.103412420427331,52.0030207754026],[5.103566584141997,52.00301625728992],[5.103643130686905,52.00301343960074],[5.103758630235017,52.00301111111854],[5.103878921815259,52.00300634926554],[5.104009034410978,52.00300301306882],[5.104121644538141,52.00299931107572],[5.104251417567951,52.00299439187286],[5.104357088845046,52.00299176953922],[5.104487955397454,52.00298663698578],[5.104586728292874,52.00298329680339],[5.104700060689493,52.00298051278613],[5.104776240203768,52.002978142889134],[5.104919827313451,52.00297419085508],[5.105007663715945,52.00297078814717],[5.105133791799316,52.00296650638562],[5.105276289230264,52.0029621378495],[5.105304378159981,52.002960317580886],[5.105427222109731,52.002954895130124],[5.105552204278053,52.002952192099755],[5.105651354298425,52.00294906764269],[5.105739920315922,52.002945414463625],[5.105840936584492,52.00293961582689],[5.105965576167515,52.00293579700318],[5.106089443142339,52.00293442099104],[5.106227183228189,52.002931585914716],[5.106360603397047,52.002925576530224],[5.106425545731627,52.002919978966816],[5.106542128784354,52.002918980589236],[5.106654089521382,52.00291193101829],[5.106790491105474,52.00290188356409],[5.106937509378807,52.00288945238742],[5.10710257189275,52.00286523549318],[5.107142703224834,52.00286125031366],[5.10723506038839,52.00284978530053],[5.107291272142098,52.00284299803553],[5.107385879760456,52.002827942977476],[5.107545799020687,52.00280639172035],[5.107620665331146,52.002795010696055],[5.107775848784935,52.002773879314766],[5.107918599339924,52.002754443972634],[5.108039863377752,52.00273598217117],[5.108116165338735,52.00272553900753],[5.108214046248956,52.00271094045223],[5.10832319393941,52.00269712350936],[5.108410089672768,52.00268560868663],[5.108508705348963,52.00266991506687],[5.10862990714161,52.002654364684545],[5.108716458789567,52.0026419500026],[5.10884755312564,52.00262333085535],[5.108957796735797,52.00260885078899],[5.109064050323996,52.00259432524155],[5.109168118105303,52.00258001015348],[5.109244780932467,52.002569998544004],[5.109339736825327,52.00255494273866],[5.109456262757718,52.00253713342379],[5.109548992523713,52.002524085553425],[5.109664392964784,52.002506920528404],[5.109788160946057,52.00249072785308],[5.109906109449813,52.00247360454727],[5.110002191794918,52.00245765204164],[5.11010992928394,52.00244089997273],[5.110207068896689,52.00242586658354],[5.110310410566945,52.00241109936845],[5.110408658138106,52.00239585270186],[5.110509792513015,52.00238241037527],[5.110510332050406,52.00238229479665],[5.110957596127642,52.00228597590329],[5.111645393189975,52.00214906154287],[5.112246538653661,52.00205479654629],[5.112269919721629,52.00205113003161],[5.11281082099952,52.0019442638395],[5.114068826102675,52.0016344176798],[5.114959581702776,52.0014150115707],[5.115367583111236,52.00131587970077],[5.115981992276533,52.00116350862074],[5.116367538043867,52.00104922139939],[5.119278749492181,52.00003475134806],[5.119594385962754,51.99991204330678],[5.119645617491014,51.99989211606806],[5.119857169412368,51.99980986928848],[5.12069937761038,51.99959883033961],[5.124460021373776,51.998656385500006],[5.124789966636302,51.998582753012286],[5.125095754063483,51.9985139554013],[5.125511187218813,51.998420485475854],[5.125738859758768,51.998369992275265],[5.125761088089708,51.99836621266462],[5.126068559626564,51.99829026166718],[5.127912308468123,51.99782873007572],[5.128216859108816,51.99775300073056],[5.128422287146543,51.997718164770305],[5.128888443492861,51.99764386734549],[5.129161582473649,51.997601071277955],[5.129176927279754,51.99759901964578],[5.129228368085974,51.99759213955118],[5.12948362369286,51.99755467849123],[5.130710999947876,51.99737227378478],[5.131045799860943,51.99731711406808],[5.132459686120403,51.997053501955484],[5.132761606358498,51.99697457334787],[5.133868107002899,51.996687251921244],[5.13416770941586,51.99658467577931],[5.135301407155843,51.99620111782722],[5.135638674451909,51.996082475726524],[5.136770439494313,51.99567281576871],[5.137051950598014,51.99552469558074],[5.138874646433409,51.994487775254306],[5.139126123312484,51.994320621663135],[5.139676833202365,51.99394323399437],[5.139682554236259,51.993938149716286],[5.139726873943124,51.993898757748724],[5.139847547969832,51.99379041598407],[5.140186778768213,51.99348682391046],[5.140273240604072,51.99338008172748],[5.14037035519546,51.99326624316406],[5.140479012057658,51.99312914928533],[5.140582991338246,51.99299794176179],[5.140717978871199,51.9928302350917],[5.140833471538284,51.99268876895188],[5.140999357310839,51.992435307325394],[5.141107006484155,51.99226885530482],[5.141130588110696,51.99223521683967],[5.141363452553238,51.991799470248694],[5.141460999576982,51.9916188314027],[5.141613620355407,51.99133767552704],[5.141800515135516,51.990909418165394],[5.141880580459447,51.9907300907431],[5.142114241588563,51.99014037643688],[5.142176461710184,51.989959861157345],[5.142324665685384,51.98953912637821],[5.142395388723199,51.98924875692042],[5.142406895837473,51.98920231186233],[5.142449902540793,51.98902865940193],[5.142551932709507,51.98864331369631],[5.142629709218051,51.98831368029021],[5.142630054986907,51.988314346135304],[5.14268403111077,51.988107010608296],[5.142884396306949,51.98736074984139],[5.142936398388315,51.98716261399425],[5.143128465389507,51.98643360183931],[5.143188156068437,51.986210566501576],[5.143258415037065,51.98594197385291],[5.143327804663397,51.985570671159785],[5.143366094033226,51.985366385703216],[5.143527767564207,51.98453783731734],[5.143610548694803,51.984149781129055],[5.143611143500729,51.98414747239126],[5.143633475670109,51.9840612857641],[5.143660886659376,51.98394585303232],[5.143711102286005,51.9837670736533],[5.143965590539675,51.98284448408022],[5.144015848660995,51.98265740851954],[5.144356825098011,51.98157721761416],[5.144417531028509,51.98141442257807],[5.144820815080259,51.98030467059825],[5.144899521492352,51.9800935917373],[5.144988153909385,51.97986095255144],[5.145068997204225,51.979660888519994],[5.145070171409031,51.979656378853875],[5.145072103640587,51.979648958566926],[5.145249286146385,51.97921702592885],[5.145315194007808,51.979095191363214],[5.145539863245443,51.978679858185814],[5.145545120949169,51.978671132438535],[5.145550761869566,51.97866151764481],[5.145623821836001,51.97854916216758],[5.145880027633911,51.97815518610726],[5.145963526772134,51.97803378270857],[5.14611476506095,51.977833547576594],[5.146586091690814,51.97722577630525],[5.146883256702899,51.976817401716204],[5.147032300674131,51.97665580123015],[5.147291218966155,51.97638174830262],[5.147389670774722,51.976277074447005],[5.147726583591299,51.975920658636106],[5.148177374273939,51.975490922594],[5.148518485141166,51.975169315384406],[5.148519435917568,51.975168418490846],[5.148784153777267,51.97491983761693],[5.149359032080275,51.97451880498172],[5.149713764542836,51.974271347621396],[5.150335925152434,51.97388412160519],[5.150759818756992,51.973620288886956],[5.151138301264244,51.9734061942434],[5.151469474862786,51.97321837506918],[5.151834366959599,51.97301364365031],[5.152352548456664,51.97274696466004],[5.152684931452243,51.97257645577858],[5.15293928359705,51.97244399060245],[5.153947607681293,51.972018351735514],[5.15409367926874,51.97195597526649],[5.154146361226101,51.97193347422353],[5.154357195852225,51.971856449012996],[5.154357385410773,51.97185637748222],[5.154603651142827,51.97176615530703],[5.155094400821493,51.971586362036675],[5.155448200574302,51.971508969557284],[5.155881362449983,51.971413234259536],[5.156913304663182,51.97117921822643],[5.157401808735514,51.97107116388245],[5.158518151683692,51.97082912824179],[5.158785288046418,51.97077860286893],[5.159211129894529,51.97070015241909],[5.159231595005682,51.97069644397164],[5.159242155284915,51.970694531957896],[5.15953688050596,51.970641343866845],[5.160953512165732,51.970470054565254],[5.161640850345873,51.97042132736454],[5.16242008902626,51.970366075468434],[5.163056077474444,51.97033889454001],[5.163519452338456,51.97032187151651],[5.163887101393307,51.9703077480482],[5.164532197863501,51.97027176796768],[5.165352988715005,51.97022598591045],[5.166808451983521,51.97013516182217],[5.168265190031081,51.97005624946344],[5.168459662918245,51.97004214899185],[5.16891903761903,51.97001472486664],[5.168922822315789,51.97001449819165],[5.169258199550264,51.96999543546335],[5.169596252028168,51.96996178885081],[5.169996828241564,51.969908491574245],[5.172541854838294,51.969641087172754],[5.172722022307961,51.969617318200264],[5.174114734648169,51.969363180234666],[5.175484647283334,51.96905252081203],[5.176809032740366,51.96869000993024],[5.178097272109113,51.96827279854843],[5.179347648219835,51.967818969107284],[5.17954771101965,51.967735462169074],[5.180052778064645,51.96752464367409],[5.180226514879326,51.96744803623936],[5.180228335905312,51.96745010763002],[5.182824746709362,51.966245666487595],[5.182848529687154,51.96623463429748],[5.186214495206058,51.964491664413224],[5.187342242628269,51.96394950089106],[5.188247626293498,51.96354435379808],[5.188455067909498,51.963449069604856],[5.188722719598918,51.96334003574631],[5.189722068853762,51.96291560318195],[5.190050389055163,51.96279627769308],[5.191032203941432,51.962399928760895],[5.191654821395256,51.962178892859846],[5.192474589623146,51.961892026696454],[5.193516375312547,51.96154400499291],[5.194791906675765,51.96116626384381],[5.196135984264229,51.960802920416064],[5.197543001880491,51.96048258182437],[5.198064219462557,51.96037021389545],[5.198856846119714,51.96019933352426],[5.200293298108029,51.95993576975627],[5.201692273751299,51.95972407232064],[5.203119076581115,51.959567122064364],[5.204503534296387,51.959463335004266],[5.205995751719427,51.95943092924532],[5.207435133719438,51.95947647757599],[5.208894167005949,51.95962645420485],[5.210303422481805,51.95985427476729],[5.211678756178807,51.960154805446365],[5.21250743101553,51.96037099145511],[5.21325246144539,51.96064960602583],[5.214505885317651,51.96119271305415],[5.21622950362737,51.96187877396647],[5.216704243852519,51.96206271426466],[5.217533065905149,51.96250603308561],[5.21776725926528,51.96263354464437],[5.218723454264654,51.963202181174125],[5.219697836751675,51.96384373014068],[5.220642818018583,51.96455806981664],[5.221464294695671,51.96524057151212],[5.221868437922026,51.96562487342378],[5.222262526223318,51.965991300261074],[5.222579158710264,51.966307975593516],[5.22308317029032,51.96681204590621],[5.223673438853912,51.96748810634657],[5.223848900847472,51.967704003973644],[5.224037730832856,51.96793774347082],[5.224440630134362,51.968433137835085],[5.224688902480454,51.96878572855841],[5.224994752282782,51.969225331989044],[5.225462869108572,51.96993039949989],[5.225614784560325,51.97016777082061],[5.226008156485918,51.970798032495296],[5.226263627290485,51.97119567847263],[5.227107239216097,51.97247910324505],[5.227119298941486,51.97249677246625],[5.227191961569839,51.97260321961348],[5.227758979905221,51.97334104809153],[5.228426304677102,51.97415324256447],[5.229109055551822,51.97490642836319],[5.22931487023764,51.975094396026925],[5.229542624857512,51.97530570808162],[5.229912592882775,51.97564895870524],[5.230851079459626,51.97634853736259],[5.231896700418116,51.976993916156694],[5.233006741095912,51.97755042279288],[5.234201479210851,51.97806299581225],[5.23447357179798,51.97814748747879],[5.23504313938859,51.97833498143781],[5.235464747011429,51.97847029437841],[5.236867150301389,51.978757477082226],[5.237433461360769,51.97881384455722],[5.23827046285848,51.978894388629016],[5.239780381413596,51.97893962954027],[5.241165374400957,51.97886896429925],[5.24227045663207,51.978729718256226],[5.242664421563186,51.97867472733681],[5.244003447592438,51.97837703847038],[5.245260225712554,51.97799949204668],[5.246523817886059,51.977498235878116],[5.247575345277413,51.97690533195831],[5.24859918058934,51.976179243949346],[5.249749030469032,51.97533102775193],[5.25046068854699,51.97480602899515],[5.251250674931453,51.974203197709315],[5.252259287506743,51.973460935265194],[5.253204942283126,51.97277608998402],[5.254186036241099,51.97212969263696],[5.255228306850421,51.97150442397385],[5.256229904037429,51.970963706709234],[5.257113520200932,51.97048665783692],[5.257539686761105,51.97026004102198],[5.258549093837432,51.96976247387937],[5.259671956071062,51.969238937219934],[5.260887047902528,51.96870087397008],[5.261433166913068,51.96848134645772],[5.262104333188379,51.968205979786774],[5.263382261689595,51.967714606209725],[5.264561186942112,51.967286087006315],[5.265893678632315,51.966824961253685],[5.267198549969302,51.966398064262975],[5.267311722604576,51.966362019994484],[5.267584160463646,51.96627525528192],[5.268922095540118,51.96586225051858],[5.270373677227278,51.96542662114347],[5.272412972691539,51.96484913905104],[5.273710176820532,51.96454162450152],[5.275113575666095,51.96425955247386],[5.276520970594928,51.964019703019126],[5.277879357918813,51.96380456273278],[5.280967078522021,51.96337377029804],[5.282608108379762,51.963162515147175],[5.284083227833241,51.96298133727665],[5.285046146181272,51.962871962966],[5.285353438270198,51.962840986070674],[5.28643902081228,51.96273152658936],[5.287872345493686,51.96260621700284],[5.288776446815855,51.96253849476934],[5.28912151066262,51.96251175505049],[5.289303598011858,51.962500060064585],[5.290523710342635,51.96242844303681],[5.290853638791878,51.96240929882183],[5.293736061045148,51.96233545493279],[5.295225346120225,51.96224977405156],[5.295257374386976,51.962247668847816],[5.295488910116442,51.96223053803966],[5.29642415445207,51.96216445306518],[5.296649459385596,51.96214863643711],[5.298047159804679,51.96201752189273],[5.298328642004787,51.961985781496956],[5.299516606460062,51.96183637087872],[5.300894210828279,51.96156855989683],[5.3021932312352,51.96121641170231],[5.303451769245036,51.960770752056305],[5.304593828964532,51.96027877997964],[5.305828444254947,51.959711251965025],[5.306810159966965,51.95923156018896],[5.308086581526026,51.95858566875775],[5.309435136414636,51.95793378895641],[5.310549063819003,51.9574098861387],[5.310976509409914,51.95720884552891],[5.310767970972043,51.95704971805444],[5.314464740305385,51.955757162466334],[5.314857019373377,51.95561999217657],[5.316600780288523,51.95522093950048],[5.31832215427585,51.9550192739012],[5.321611333060456,51.95491916978726],[5.323439217656742,51.95509710551838],[5.327270574868741,51.95574824372441],[5.329075224964194,51.956140062248615],[5.330873252329185,51.95655979421657],[5.331716674212704,51.95680089820115],[5.332697802730263,51.9570657167991],[5.333118457144292,51.95720090429675],[5.333617485342838,51.95739683225601],[5.33368321230129,51.957422658245825],[5.334551455029326,51.95776384576879],[5.335094298382923,51.95798698529693],[5.33522075940908,51.95804409821187],[5.335486084666176,51.95819022820732],[5.335764425471264,51.958342529184335],[5.335782119884564,51.95835221719393],[5.336270889996253,51.958622398909945],[5.336663973924824,51.95885874198791],[5.337011516220059,51.95907644980925],[5.337492244181621,51.959370639473036],[5.338079636167794,51.959771696396075],[5.338319426597367,51.95995048143806],[5.33892512548772,51.9604159511344],[5.33916779312132,51.96060443387442],[5.339446905267653,51.96082357163884],[5.340468650854536,51.961670282651276],[5.340761730958662,51.96190168269282],[5.340762734056789,51.96190248303727],[5.341166043328248,51.962221551336874],[5.343552064208209,51.96393523978733],[5.343702254784257,51.96406809582945],[5.343968579560019,51.96431505447412],[5.344262817372295,51.964590137738305],[5.344459159430122,51.96477647136413],[5.344494892833104,51.96481005520577],[5.344604186785737,51.96491277583473],[5.344764496709282,51.965060788247996],[5.344925736909463,51.965210957939235],[5.345144235221838,51.965408003274916],[5.345442497762097,51.965657810172864],[5.345641993417329,51.96582724510399],[5.345882751448807,51.96603451645817],[5.34601542746973,51.96614546813342],[5.346216262169533,51.96631927979488],[5.346334387208171,51.966415916850224],[5.346455886116142,51.96651531432504],[5.346739517241359,51.966741150319294],[5.347094832656703,51.96699748894998],[5.347935447724035,51.967494989239704],[5.348089844614689,51.967588373854475],[5.348255297328784,51.967686327912695],[5.348424419711927,51.967781999940925],[5.348678108526826,51.96792095950141],[5.348825187982642,51.967998422671194],[5.348836620639494,51.96800416983932],[5.348961245551363,51.968066777050716],[5.349134093066955,51.968148805184754],[5.349292202302054,51.9682285453341],[5.3494356225183,51.96829918452543],[5.349726133239677,51.96843818054512],[5.349924734533622,51.96852705569258],[5.35023735056122,51.96866834041808],[5.350542614569624,51.968798251967826],[5.350921459955448,51.96895780142639],[5.351112742677465,51.96903301925243],[5.35141066838366,51.96915609527569],[5.351579884603434,51.96922220061724],[5.351734381857007,51.96927919626159],[5.351951424377005,51.96935444741359],[5.3521537771328,51.96942058877245],[5.352334029430856,51.969482148275176],[5.352510634892235,51.96953689338322],[5.352523103001028,51.969540833869544],[5.352705629416072,51.969598474618465],[5.352882221243488,51.96965321017532],[5.35306619315209,51.96970568257484],[5.353250181755568,51.96975588067917],[5.353596039188941,51.96985852577105],[5.353813126841498,51.969920129422945],[5.354037578518464,51.969981734739946],[5.354203151202854,51.97002508617123],[5.354423941728736,51.970079867692824],[5.35461896400605,51.97013007569991],[5.35483607383199,51.97018484644402],[5.355042160020781,51.97023051774224],[5.355424903911437,51.97030817132603],[5.355638340196965,51.97035385254221],[5.355877565288012,51.9703972661943],[5.356050554720495,51.97043152992872],[5.35628608431147,51.97047495076381],[5.356506919537249,51.97051380131412],[5.356819779988522,51.97055955109237],[5.357110548968889,51.97060756843033],[5.357327706798379,51.97064187746815],[5.357673700446943,51.970694482337535],[5.358148539576286,51.970751737835116],[5.358549764625905,51.970799841609605],[5.358770626554249,51.970825052833845],[5.359146120840139,51.970854938319434],[5.359403818597487,51.970875627037756],[5.359524511980924,51.97088416714616],[5.359794042264386,51.970903248891204],[5.359959714510482,51.97091703907603],[5.36030209555586,51.970935525209555],[5.360574544086517,51.9709425706469],[5.36081017344678,51.97095186328326],[5.361045805534231,51.97095661641382],[5.361428722668358,51.970963756138765],[5.361844793175169,51.97096638066519],[5.362209322391036,51.970962134864166],[5.36243759608784,51.97095776963138],[5.362580852557766,51.9709556063899],[5.363016194979987,51.97095010545754],[5.363479631636971,51.970929499402324],[5.363879196682799,51.97090912164309],[5.364167404373018,51.97089082416119],[5.364371366578902,51.97087392091296],[5.364581485420051,51.97085487031],[5.364880467115317,51.97082486152983],[5.36526276634524,51.97078476472232],[5.36574146876372,51.97072729202538],[5.366211888808718,51.97067154164545],[5.366375788640284,51.97064966634109],[5.366616807638291,51.97061474438768],[5.366815782895761,51.97058294260802],[5.367277683992302,51.97050082414632],[5.367778177818754,51.970415150873706],[5.368322681068356,51.97031738438146],[5.368846488526605,51.97021970205001],[5.369362069642711,51.97012715739202],[5.369615384831887,51.970080240896806],[5.369920319466054,51.970025071235334],[5.370409729952611,51.96993601457602],[5.370980402289766,51.96983473407816],[5.371548335061282,51.969736883937294],[5.371844357198824,51.96968726281148],[5.372128748545416,51.969646645631215],[5.372518430221326,51.96958647352272],[5.372650801659207,51.969569313362065],[5.372738117854105,51.969557998893556],[5.373310401616261,51.96948397744589],[5.373995696785265,51.96940272131968],[5.374404169917168,51.96936079106704],[5.374994532004802,51.96930373306416],[5.375292156500878,51.96927795807527],[5.375560124204582,51.96925016608829],[5.376011362165256,51.9692106432537],[5.376311108726471,51.969190393621176],[5.376908619371253,51.969161405763465],[5.376981292424777,51.96915901215381],[5.377017075968967,51.9691578377555],[5.377504846678296,51.96914179843537],[5.377824643572468,51.969127020376035],[5.378229291481171,51.96911832384877],[5.378509679384225,51.96911360774002],[5.378713916643362,51.96911017090865],[5.379311711009219,51.969108450015995],[5.379708862608606,51.96910955401977],[5.37979984171993,51.96910752832371],[5.380482630931389,51.96912636266814],[5.381046152507073,51.96914774866633],[5.381433843267843,51.969168494543695],[5.381747014397034,51.96918353730224],[5.381996069646823,51.969199250609634],[5.382327939454176,51.96922403581808],[5.382624666509667,51.9692493580677],[5.383038012811254,51.96928405827397],[5.383319548568551,51.96930688852431],[5.38356872054749,51.96933452583123],[5.383999384681558,51.969378103498364],[5.384165756755935,51.96939922992287],[5.384808472733901,51.96948164757768],[5.385396009578586,51.96956256892232],[5.386022286005169,51.9696561160766],[5.386603074983806,51.96975153826654],[5.387069951893707,51.96983074298165],[5.387243370417737,51.96986632704366],[5.387778703649241,51.96996701057383],[5.388060581600118,51.97002475756875],[5.388486863355094,51.970112217146536],[5.388686493115729,51.970157568913535],[5.388801864690695,51.97018377679539],[5.389023789454244,51.97023419699082],[5.389934154247028,51.97047766809619],[5.390831283802909,51.970693125384415],[5.390976142267268,51.97073019689493],[5.39130837042124,51.97083228211702],[5.391365214200503,51.97084975307465],[5.391437847981989,51.97087206804783],[5.391963269581234,51.97103059883276],[5.392606401611642,51.97123023371765],[5.393278616424682,51.97143534633454],[5.393951987386125,51.971642621188664],[5.394627300479385,51.97185215707936],[5.395397407862595,51.97208800878268],[5.395894187353401,51.97224149062984],[5.396048064201544,51.97228308525184],[5.396051760858371,51.97228408265717],[5.396551058502923,51.97241902789621],[5.397014585590663,51.97254441961247],[5.397578012044074,51.972687992676235],[5.39824886481667,51.97285504796247],[5.398718829336208,51.97296378622494],[5.399337684015076,51.973102779337275],[5.399954689468291,51.97322512327804],[5.400499233137962,51.973333630492334],[5.400852391133636,51.97340413780015],[5.401604637051694,51.97353315331765],[5.401756306824558,51.97356046750333],[5.402062237584693,51.97361555335406],[5.402654913162653,51.97370631972886],[5.402941254483268,51.973754116475064],[5.403650251844566,51.97386303615511],[5.404256236686172,51.973956048612244],[5.405266433125476,51.97411762976534],[5.405733095082743,51.97419137646726],[5.406248998551869,51.974276977686316],[5.406778117076068,51.97435887129369],[5.407254390788435,51.97443557644487],[5.407624370074083,51.97448967506294],[5.407778126265682,51.97451339483103],[5.407810541948534,51.9744918714029],[5.40784176866993,51.97447999249568],[5.407868183617233,51.97447998782099],[5.407937854551182,51.974485170632185],[5.408146858131193,51.97451184618937],[5.408447752442965,51.97456557709065],[5.408500601962382,51.974575957798216],[5.40855706224824,51.97458929493343],[5.408593107256094,51.97461006901087],[5.408601534999009,51.97464270355527],[5.408986511436908,51.97470384187216],[5.409354078724107,51.974757189479],[5.409700632886738,51.97481387460271],[5.40998832622188,51.97485870580389],[5.410244188801155,51.974899461950635],[5.41053547802667,51.97494429110371],[5.410803348124951,51.97498429761549],[5.411063401883654,51.97502170752929],[5.411307258616687,51.97506098076451],[5.411534886367487,51.97509692225949],[5.411769121334866,51.97513173840222],[5.412122886877353,51.97519064393986],[5.412463437954146,51.97524881423927],[5.412708491841046,51.97529030439064],[5.413088680063981,51.97535736252205],[5.413230464384005,51.97538141037431],[5.413388347178762,51.975408195845795],[5.413514528374233,51.97542960432449],[5.413919962760413,51.975508518482],[5.414252710484809,51.97557892728483],[5.414630526632682,51.97566230351607],[5.415069613977066,51.97576420656499],[5.415550742741145,51.97587722515842],[5.416021073293846,51.975988024362955],[5.416257181061236,51.97604783622195],[5.41796769386818,51.976556399545366],[5.419595657714583,51.97713781003423],[5.421290369394433,51.97781615199292],[5.422756733148662,51.978528262679525],[5.423908912625593,51.97910132593078],[5.424338103257863,51.97933093741073],[5.424615214156553,51.979479190082834],[5.424721127229159,51.979541417300446],[5.424900279911397,51.97965155481603],[5.425118106601446,51.97979529532278],[5.425319186352062,51.97992784160734],[5.425601328151643,51.980112654206486],[5.425782966163836,51.9802302497406],[5.426081760225635,51.980428133489546],[5.426369285908115,51.980620411621295],[5.426450191839969,51.98067629997981],[5.426544948890526,51.98074175603764],[5.426762499988754,51.98089109320469],[5.426949536507387,51.98101617225212],[5.427159101984731,51.98115244258399],[5.427349022757872,51.981277511020174],[5.427642352587675,51.98146978403038],[5.427952420020383,51.981673258737096],[5.428159109521735,51.981809537264475],[5.428335182689128,51.98192340068542],[5.428432985521798,51.981986867756426],[5.428550335079573,51.982063405641796],[5.428734685093058,51.98218473471202],[5.428935900946063,51.98231540518576],[5.429125731466553,51.982442349295226],[5.429338106794384,51.982580484255216],[5.429522561187758,51.98269994250536],[5.429913616569659,51.98295754546122],[5.430047721873449,51.983045283986115],[5.430162180214015,51.983121821310306],[5.43022334011566,51.98316043003804],[5.430265681643045,51.983187154298705],[5.430360893491589,51.98324502107773],[5.430473456993544,51.98330288137414],[5.430597278460446,51.983366346013675],[5.430698570320831,51.98341861063589],[5.430805541308577,51.98347273360939],[5.430872812929938,51.98350817588749],[5.430982713923594,51.9835660726395],[5.431202351054191,51.983676194360115],[5.4313038444317,51.98372472829251],[5.431515707727105,51.983818044470844],[5.431865637090201,51.98397856622182],[5.432201614119649,51.98412975357659],[5.432314667730825,51.984178282195835],[5.432524123927262,51.98426226775846],[5.432745139077426,51.98434624845711],[5.432857607074462,51.98439039954187],[5.433130266064478,51.984497432023886],[5.433266138124062,51.98455155041457],[5.433482376633613,51.98461687216108],[5.43386906394944,51.98473817601164],[5.434307390092954,51.984875987097396],[5.434659133304395,51.98495902176784],[5.434945455289877,51.9850257775048],[5.435157768101647,51.98507752563109],[5.435434278895457,51.98515668786417],[5.435718182064173,51.9852190744639],[5.435950228317599,51.98527690697101],[5.436244012791558,51.98534843814893],[5.436471129972755,51.98539713072122],[5.436819211232531,51.985465590645745],[5.437322810564617,51.985561433040154],[5.437606701743534,51.98560858013892],[5.437944894018804,51.98565722206917],[5.438051674108087,51.98567190742556],[5.438199148381356,51.98569218361294],[5.438478101701696,51.985722567820616],[5.438594475365943,51.98573721253649],[5.439024184223561,51.985791860261095],[5.439394469545817,51.98583287984751],[5.440031306631871,51.98587835348329],[5.440601508514869,51.98591776005027],[5.440989052018845,51.985926759889864],[5.441648071403796,51.98594325471961],[5.442146668191496,51.98594763315502],[5.442408308478698,51.985947528283376],[5.442850121391219,51.98593211153608],[5.442988332512504,51.985922904919974],[5.443356078114911,51.98589684352861],[5.444654286735386,51.98580181217387],[5.444817180476718,51.985788025328254],[5.445002274844665,51.98576355836408],[5.445562495656064,51.98569320924468],[5.445984496601022,51.985636633750126],[5.446374404147653,51.98557396996465],[5.446714961491694,51.98551133891752],[5.447302282932056,51.98539829192776],[5.447692176397136,51.985317341840485],[5.447887130916816,51.9852776303022],[5.448402850090334,51.985161558846464],[5.448817382350131,51.98505773525394],[5.449177652529514,51.98497068383373],[5.449639066713206,51.98484397565126],[5.449969699365638,51.98474932458758],[5.450273175879952,51.984660781172586],[5.450522372611349,51.98457531326641],[5.451045403045336,51.98439064651472],[5.451074096777144,51.98438189439702],[5.451400698153022,51.984282262049895],[5.451807800665871,51.98416471601567],[5.452370368049989,51.984007462474345],[5.452649171070621,51.983935680569736],[5.452989680309723,51.983854740431795],[5.453194484226742,51.98380891159471],[5.453544878033087,51.98374930221043],[5.453885431008991,51.983709507306386],[5.454045837390317,51.98369418109852],[5.45419147234912,51.98369106005503],[5.454433322299925,51.98368483676086],[5.455065173771115,51.983687565023374],[5.455437870563141,51.98368890387643],[5.456027752917065,51.98369012337363],[5.456416576185537,51.98368992167864],[5.456769367450395,51.98369824826583],[5.457238553236818,51.983676239421655],[5.458235613945006,51.98365391042236],[5.459080163637495,51.98362442379504],[5.459631451259815,51.98359511243046],[5.459866084129163,51.983609453652456],[5.460288347056733,51.983587462581006],[5.461132918071506,51.98357244744163],[5.462305944225365,51.983557216552725],[5.463044877812699,51.983506039177136],[5.463971487076812,51.983447491906766],[5.464780799436341,51.98339625757941],[5.465742581918668,51.98333043043626],[5.466716078355985,51.9832573430264],[5.467971036322185,51.98314784000774],[5.468745163062284,51.98310384527297],[5.470528003313563,51.983008433393785],[5.471501553138657,51.982971522389775],[5.472299215094402,51.98297094698916],[5.473049985057388,51.98298488671581],[5.473401949983402,51.98301360134142],[5.474317142736186,51.983128815856254],[5.474811068346995,51.98316756131947],[5.476603852581007,51.98335742900224],[5.47827466620483,51.98355315869935],[5.479621485336088,51.98368042886358],[5.480283346667305,51.9837543920349],[5.481541153766495,51.98389245610596],[5.481925940281227,51.98390373573147],[5.482836244795295,51.98390879266303],[5.483774753680643,51.98393699716998],[5.484431653396324,51.98393066050137],[5.485172950637738,51.983895277308186],[5.486205100086198,51.983830672145125],[5.485931749841443,51.98328621787932],[5.486588408220006,51.98317556876597],[5.48723570469516,51.98307651241394],[5.488126885794959,51.982930887557615],[5.488839799619174,51.98280279347804],[5.489139870437872,51.98270402659819],[5.490277358868037,51.98234033032791],[5.491226195494799,51.98205289676363],[5.491876672025298,51.98185595412796],[5.492792482001441,51.981546723014496],[5.493398372994536,51.98134318772571],[5.493813400701267,51.981194129283935],[5.494626566438723,51.98090345666618],[5.495011339458555,51.98076056057714],[5.495618986026123,51.98053315757085],[5.496351126771465,51.98027252333447],[5.497044617387712,51.98000726479743],[5.49843159108653,51.97947775108384],[5.499881365615773,51.97892467460484],[5.500751080214894,51.978592047269686],[5.501879079051958,51.97804545852197],[5.503205384066232,51.9773965304668],[5.503991497054152,51.977012000887434],[5.505097123430292,51.976422664511844],[5.505423014642826,51.97624810994601],[5.506414303036601,51.97573813396608],[5.507179493440479,51.97534979318981],[5.507448216059746,51.975213410263855],[5.508045165260188,51.9749129786283],[5.509089754266059,51.974431983938096],[5.509454025758627,51.97426393968197],[5.510979438504619,51.973643226622215],[5.512481470210246,51.97308138230868],[5.513356874127695,51.972847597311905],[5.514534547249282,51.972535532912026],[5.514576543902949,51.97252405439957],[5.515096415028553,51.97238348943897],[5.515401660772179,51.97230070800637],[5.515878879515982,51.97217795577987],[5.516291308783347,51.97208141049829],[5.516681587605215,51.97199019121949],[5.517496016013838,51.97183658129119],[5.518174476995402,51.971704581196825],[5.518178069451643,51.97170386712408],[5.519168011626525,51.9715068884685],[5.519405362510931,51.971461015492],[5.519621853606135,51.971423209986845],[5.520182723125612,51.971327768932206],[5.52120472941015,51.97114779640794],[5.522259234030372,51.97098100826152],[5.523025721648712,51.9708573457961],[5.523799362325205,51.970751943019394],[5.524814031781708,51.97061333827996],[5.525749129137094,51.97045337280611],[5.52677887455392,51.97027671323811],[5.528238744839755,51.970024918020805],[5.52969187192682,51.96977194437357],[5.530356024916856,51.96965533300011],[5.530430068498526,51.969642380639165],[5.531455387510213,51.96944023088835],[5.532377233764077,51.96926542535425],[5.533243386716908,51.96910978175661],[5.534138868991715,51.96894928640564],[5.535273458241009,51.96874826989786],[5.536085938701135,51.96860138253981],[5.536971474413991,51.968405446700785],[5.537520559924179,51.968285328186106],[5.538445312769128,51.96798540943467],[5.538942237852608,51.967827034689044],[5.540208209104289,51.96728150755241],[5.54091762322799,51.96688417469857],[5.541349790746287,51.96664163697872],[5.541779385783949,51.966321164303714],[5.54190928341406,51.96622426224467],[5.542406770374264,51.96585487388893],[5.542838562882364,51.965438238544714],[5.543176390365327,51.965112606145375],[5.54330204548914,51.96498176868217],[5.543851151453304,51.96435547643808],[5.544099692449082,51.96408253237993],[5.544383613541722,51.963763053429716],[5.545065377787679,51.96298571069252],[5.545709545266,51.9622561240596],[5.546499617577006,51.96154945374109],[5.546918320612243,51.96117690802844],[5.547245179919496,51.96091800710317],[5.54742666362247,51.960774253894435],[5.548215640985369,51.96013803196564],[5.54868880695473,51.95980713747924],[5.549182426994157,51.95946161600275],[5.549561149681037,51.95919689356183],[5.54979268225113,51.959053444978835],[5.550477179591878,51.958632521171126],[5.551061203741653,51.95827437242037],[5.55201028569344,51.9577791691376],[5.552742396774455,51.957400005387875],[5.552925356219241,51.957317756890845],[5.553686728674867,51.9569754695511],[5.554397760659181,51.956654559982404],[5.554682726349701,51.956545675227254],[5.555384040017608,51.956267161971134],[5.555657895828302,51.95615692453679],[5.556116327936494,51.95599925102456],[5.556933852143884,51.95571102483195],[5.557539761031109,51.9555195166293],[5.558339225827618,51.95526870681217],[5.559232594546308,51.95502411773287],[5.560141562553545,51.95476813776925],[5.561252584877841,51.95450179375497],[5.562354020543168,51.95432819402786],[5.56407136043901,51.95410339615811],[5.56518417439549,51.95398693585851],[5.565651391974128,51.9539343830027],[5.566244488949578,51.95386848673732],[5.566772373080925,51.95381428198791],[5.567463156307811,51.95374272942072],[5.56835310998361,51.953648440220135],[5.569073617327486,51.95355776831586],[5.570238373594806,51.95341810694181],[5.571731802957584,51.95324876041686],[5.572278235898636,51.953187724669206],[5.57277724727193,51.95313432039752],[5.573870070015158,51.953014070303446],[5.574663790869947,51.95292494653846],[5.575574454275382,51.952826551851864],[5.576309204998093,51.95270845255746],[5.576491961738989,51.95267908131535],[5.57848025641781,51.95233099151046],[5.579445929195344,51.95215798276589],[5.580795062568784,51.9518759457325],[5.581765862703409,51.95170550705327],[5.582273162897456,51.95161103540307],[5.583386085904094,51.95143788448519],[5.584387806752223,51.95125094199547],[5.585394885858328,51.95106378417696],[5.586136516448522,51.95092507365841],[5.586616662930258,51.95082894841263],[5.587133117588308,51.95072378017307],[5.587658633005915,51.950612329400805],[5.587834878776423,51.95057476332751],[5.588366045341285,51.95044625804002],[5.589149125810216,51.950249132836056],[5.589796203697893,51.950082680166474],[5.590991857882351,51.94977578518899],[5.591867555092762,51.94947632981454],[5.592736633932963,51.94918256003733],[5.593400782050716,51.94891339393405],[5.594441402837989,51.948493771554624],[5.594947629681019,51.94826273359616],[5.595205320472757,51.94814512491259],[5.596211215399881,51.94768776168969],[5.596661956824348,51.94748320447902],[5.597432171502742,51.94709514556979],[5.598383803178765,51.94660188078498],[5.59889999786626,51.946331340398665],[5.599542594900366,51.94593524623682],[5.599896352349182,51.94571879855061],[5.599987326195055,51.945666358178336],[5.600147362990564,51.94557850472188],[5.600882020009875,51.94516759441481],[5.601000623652761,51.94510864044516],[5.601499014388476,51.94486589463215],[5.602005281941962,51.94462300645422],[5.602441551779665,51.94444240706619],[5.603071953433312,51.944183791033616],[5.603791827438524,51.943929419913175],[5.603820309247183,51.94391840173689],[5.605356913993177,51.943324239463614],[5.605782401094767,51.94315970963775],[5.605939723325338,51.94312478509547],[5.607708125216265,51.94273220703244],[5.610118059732511,51.942234114051466],[5.613020355977253,51.94188326945253],[5.61494736234095,51.94166965590125],[5.616517249497868,51.941493686030036],[5.61788778085402,51.94135112762498],[5.617907991489993,51.94135880884907],[5.618522124411824,51.941338339398634],[5.619061571478852,51.94132495309507],[5.619794671718243,51.94131979182644],[5.620211290904351,51.941318148326935],[5.620315187416747,51.94132400928959],[5.621366776917347,51.94137138034992],[5.621588725948738,51.94137571950662],[5.62289505520589,51.941467671471116],[5.624144159020846,51.941647036279804],[5.624566300012242,51.94170171359697],[5.625844438869063,51.94193457169886],[5.626224431785455,51.94200711643313],[5.62725721130338,51.94222596904288],[5.62777427870879,51.942336302868895],[5.628765498299401,51.94260461780514],[5.6295060538684,51.94279945029112],[5.630644986769761,51.94320500094311],[5.633540477482083,51.944270635550986],[5.633796113154659,51.94439439789107],[5.633885480938309,51.94443845048733],[5.634086878836899,51.94456131937381],[5.634379766167145,51.944756566655755],[5.63445235336247,51.94480362923471],[5.634877282697055,51.945079132105654],[5.634871760910205,51.945082676129836],[5.634550276079227,51.94526748676036],[5.634455214922991,51.94532296461403],[5.63418551376092,51.94548037691011],[5.634187220377299,51.94548127214814],[5.63445708597314,51.945662527959826],[5.634943071444299,51.945988937379695],[5.635629254808078,51.94643332394226],[5.63575675949946,51.946539475213356],[5.637258570594058,51.94769286119962],[5.637851787103349,51.948179039189284],[5.638389533042433,51.94861973536372],[5.638857391376367,51.94903065687676],[5.639944264791612,51.95001268144272],[5.640909423466723,51.9508872615434],[5.641423129452773,51.95128185898683],[5.64228051267417,51.951967404305194],[5.6429014659711,51.952400286050214],[5.643651301549854,51.95292491398809],[5.644549843528749,51.95339201934151],[5.645405060382564,51.95377430105296],[5.645465209237421,51.95379902138186],[5.645860384641623,51.95393357815421],[5.646879958768088,51.95428498115059],[5.647658683547816,51.954440021808104],[5.648472587290139,51.95460224160976],[5.648655317390426,51.95461494905897],[5.648672592925641,51.95449898918947],[5.648729795143513,51.95395288873377],[5.648922622951637,51.95400129259206],[5.649406376102968,51.95400932829523],[5.649956601323666,51.95400846783389],[5.651121675662298,51.954000284318866],[5.652158023842131,51.95399484234345],[5.652819208135404,51.95396100103036],[5.653591589639207,51.953922293010606],[5.653760629395274,51.953910476647046],[5.654462328656338,51.95378203171705],[5.655667095955041,51.953569742491496],[5.657019708095702,51.953326235877896],[5.658732220448941,51.95302700036684],[5.659863282769568,51.95283624836106],[5.660865129015026,51.95274996030302],[5.662190626446045,51.952643240494204],[5.663507120610629,51.952665265677936],[5.663589054197167,51.95266634034931],[5.664742002311869,51.95268148272034],[5.664869441253494,51.952692479912805],[5.665214110796731,51.95272065214416],[5.66575186263471,51.95277277796176],[5.66598906746013,51.95279947685337],[5.666409064062955,51.95284674666831],[5.666806601294409,51.95292668680357],[5.667606349986472,51.95310525645373],[5.667933205396788,51.95318005834378],[5.668000929136051,51.95319297445499],[5.668819533146029,51.95347703090765],[5.669249066715682,51.95362832477178],[5.669500794056117,51.95373330539168],[5.669698313367294,51.953821032506276],[5.669963119773305,51.953942024732704],[5.670423553282443,51.95419367472498],[5.670710305985941,51.954343069193435],[5.671362883717972,51.954688080215064],[5.672505896233115,51.95537175292955],[5.673380058966965,51.95590753860004],[5.674612291340039,51.956683291893576],[5.674709882811208,51.956740587003395],[5.67481612791106,51.95679519134365],[5.675327654309216,51.95703348434854],[5.675429637207686,51.95708113268736],[5.676034257821418,51.957363641187854],[5.676552960143558,51.957574769402214],[5.67707647074977,51.957781321034254],[5.677455642299757,51.9579316215715],[5.677964626683277,51.95809901904063],[5.678171416608987,51.958166018035946],[5.679153691654704,51.95848424701139],[5.67982710036341,51.95867133459548],[5.680389995149467,51.95881051702826],[5.681349034979218,51.95903974801462],[5.681918310504527,51.959158845390824],[5.682132551900158,51.959195806967244],[5.683513159329632,51.959420060800305],[5.684562650577724,51.95958352215975],[5.686334824846742,51.95984696502429],[5.687968539990274,51.96009064685462],[5.688849027794613,51.960229811618035],[5.688896349478955,51.96023746500006],[5.689804473536261,51.96036607137178],[5.690132591613247,51.960407668691595],[5.691127180457094,51.96055005466612],[5.692154371630408,51.96069753387725],[5.692737804505529,51.96079446705208],[5.693272313117561,51.96088327352795],[5.695103604860831,51.96118301262616],[5.696459779027073,51.96140511133208],[5.697506984976045,51.96155902563905],[5.698775602900325,51.9617363875067],[5.69945760592126,51.96182664438883],[5.700910545742882,51.96201303896557],[5.702465377403188,51.962203852211],[5.70408279635869,51.962391896577685],[5.70450638579542,51.96244114203294],[5.706632480219887,51.962705723267554],[5.708593126335449,51.96293028041873],[5.708846910238643,51.96296100020549],[5.709475666901112,51.9630305728732],[5.710384411542118,51.963091849531544],[5.710996101108613,51.96313667138362],[5.711509245719853,51.96312338324262],[5.713233255246542,51.96310884380896],[5.714340044200307,51.96310169705187],[5.715002807870653,51.96309660589707],[5.71628216222518,51.96316704051917],[5.717464040020328,51.96323820253491],[5.718417754309072,51.963387366760884],[5.720073853367406,51.96364555934089],[5.720338220161412,51.96368706422418],[5.721503110717917,51.963867791748854],[5.721859870958378,51.96392630585575],[5.722059586616983,51.96395906557344],[5.722605635372404,51.96405077099256],[5.723608153341224,51.96422461544852],[5.724644189815232,51.964617129458325],[5.725667796486853,51.96528830626319],[5.726568756354373,51.96593286351049],[5.726608799292633,51.96596151033808],[5.727657511968402,51.966711694022536],[5.72845033912968,51.96714209006678],[5.729733281677231,51.967630106579094],[5.730773403292236,51.96796871509023],[5.731253465408563,51.96800309334789],[5.731634463876779,51.968030371586885],[5.735475527639178,51.96889154543149],[5.736450605232596,51.969109170693045],[5.738540166078884,51.96957550229667],[5.738820218701861,51.9696379963004],[5.739916796728059,51.96987408678133],[5.741610375802876,51.970112853970626],[5.743186915167933,51.97023456455322],[5.744892284898985,51.97022164937348],[5.746451965964847,51.969997562024226],[5.747875887940891,51.96960881901424],[5.749107493287203,51.96911181196198],[5.750474954147136,51.968517406760284],[5.750995915741662,51.9682757191459],[5.751837749316809,51.967885150401365],[5.752091054776197,51.967767633794935],[5.753251440765812,51.96721777324792],[5.75430806894531,51.96673095435411],[5.754498827090574,51.96664272285535],[5.754766861856709,51.96651489879517],[5.756237411137225,51.96588010585152],[5.756327367377906,51.96584318722158],[5.757684930336657,51.96528603890043],[5.758428268553399,51.964984653954794],[5.761901348445399,51.96353089058782],[5.764754971035456,51.962482463106156],[5.764807996843688,51.962465871194695],[5.764912452056628,51.96243318678465],[5.765496907981062,51.96225031034853],[5.765733779992741,51.962176194451814],[5.767352648420315,51.96166224245102],[5.768461107112825,51.96131032055585],[5.769414318312739,51.96100767247325],[5.769517497946713,51.96097804411582],[5.770016517436607,51.960828275123475],[5.772150969691056,51.96016316423022],[5.773503362084711,51.95980342954524],[5.774283359748617,51.95963732169596],[5.774597903380952,51.95956583527448],[5.774979618988995,51.95949270628414],[5.77618129499228,51.95930011664625],[5.777610627643115,51.9591266588833],[5.778965544424006,51.958996251982924],[5.780018269970988,51.95899484198153],[5.780255107410635,51.95899452666462],[5.780346484866948,51.95899078755392],[5.78075107993678,51.959004857573724],[5.781180912209986,51.95904483576346],[5.782350840373829,51.95915364891407],[5.782460081100749,51.959169397650555],[5.783574719455752,51.95933796794258],[5.784952900684426,51.95960761741967],[5.785796073453654,51.95982528916393],[5.786773424141026,51.960158645606356],[5.787995982609889,51.960631357579906],[5.789575210597438,51.9612393957227],[5.791857349768359,51.96211507546508],[5.795070110794444,51.96335175449404],[5.798388767669554,51.964570223740786],[5.801438559675691,51.96569288711401],[5.801927361691192,51.965872808228355],[5.803705258163348,51.966522003318524],[5.804250731068844,51.96672117367254],[5.806788472315202,51.967654728454626],[5.807056142632491,51.96775656299303],[5.807758707527105,51.968035421479584],[5.807953926756214,51.96812151396245],[5.808601852824705,51.96837940450894],[5.809206477997904,51.96862164550678],[5.80927403548975,51.96864870943358],[5.810394276752724,51.96910694144757],[5.810890249053783,51.9693125690377],[5.811507343982833,51.96956277085869],[5.81190600129522,51.96971623572284],[5.812452300134206,51.96991780996872],[5.813743719762701,51.970399551428024],[5.814340012899084,51.970618354858296],[5.815085086155614,51.97088009928292],[5.816002471848091,51.971194987657626],[5.816319451227296,51.97130044134967],[5.816827545864348,51.97145508103158],[5.817289369314281,51.9715964413036],[5.817917671002375,51.97177153429531],[5.818659359214263,51.971972220033926],[5.819063229005342,51.97207883951935],[5.819816436076012,51.97225357140053],[5.820210738187798,51.972340906310514],[5.820883510723338,51.972484738183496],[5.82204519358013,51.97270546956734],[5.82319284232242,51.972902080999795],[5.823617521239379,51.97297358931334],[5.824420541805761,51.97310881003405],[5.825429927652282,51.9732313108672],[5.828704308984237,51.973530991190735],[5.83035838616992,51.9736169885441],[5.831459652784874,51.973641532353064],[5.832123172239359,51.973647993786706],[5.832142557813092,51.97364801031295],[5.832988332955109,51.97364867168397],[5.833508234180939,51.97364307711615],[5.834504852239871,51.97361256772797],[5.835342718151025,51.97355872820342],[5.835903881780546,51.97354483135505],[5.836740811967027,51.97349375383125],[5.837113399762217,51.97346348527055],[5.838357937791022,51.97334537401711],[5.839056072008617,51.97327911890373],[5.83985282107579,51.97317418087124],[5.840319936830625,51.97311589016424],[5.841698321344057,51.97292186966644],[5.84242106449685,51.972807906332605],[5.844031875701424,51.972503867235396],[5.844871956019288,51.97233213237919],[5.845696447249764,51.97215221900026],[5.847112452392417,51.97178315654495],[5.848351839945193,51.97144996803723],[5.849334135425766,51.9711720126622],[5.850101189700434,51.970958075502274],[5.8528786309953,51.9701833616995],[5.852950080567355,51.970163430229604],[5.853613066839816,51.969991632971436],[5.853620744390137,51.96998964306179],[5.854158469351263,51.969862211534085],[5.854694447744835,51.969764365035154],[5.855371734221524,51.9696741778052],[5.855860803105061,51.969622047576806],[5.856437317011328,51.96956447896386],[5.857068880843619,51.969530533545296],[5.857285409526595,51.96952268409688],[5.857593655383692,51.969511501196436],[5.858030417606603,51.96950636438374],[5.858585675012382,51.96951330761477],[5.859120874066985,51.969536327947026],[5.859467677344362,51.969554997368334],[5.860435408023243,51.969654516890685],[5.861004384104842,51.969725597069335],[5.861411741068684,51.969792346933026],[5.862064847493369,51.96991011852667],[5.862264246532537,51.9699569960695],[5.862811035005951,51.97008553861703],[5.863042034759108,51.97014666832578],[5.863478062811176,51.97028016812483],[5.864182310854411,51.97050385491883],[5.864651906529911,51.97065807609344],[5.864989685397756,51.970780733827965],[5.865320986203362,51.97091530848838],[5.865628965354229,51.97106531119517],[5.866130117365802,51.971341711165195],[5.866689580057232,51.971666246377445],[5.867136219530795,51.97195395595316],[5.867452538308156,51.97218161491232],[5.867775650734427,51.97241415287925],[5.868194781970712,51.97274506987474],[5.868727345814605,51.97317734958896],[5.869272547785234,51.97365116404126],[5.870059053089428,51.97437140679962],[5.870110680849058,51.97441919241004],[5.870860324363396,51.97511299373972],[5.871608205073632,51.975870506759115],[5.8724632757436,51.97674763867457],[5.872741484968735,51.9770296672171],[5.872933847383054,51.97721708816001],[5.873127086712859,51.97739529213796],[5.873412239190369,51.977636339622165],[5.873824508700041,51.977963687590055],[5.874212720404626,51.97826116670285],[5.874399531555508,51.97840279478439],[5.874555056521621,51.97851688619624],[5.874774101789676,51.97866581342576],[5.874931193647881,51.97877525088441],[5.875109216897224,51.978892717739164],[5.875451323810112,51.97911845055399],[5.875905840538306,51.979390400588926],[5.876505650924486,51.97973917875497],[5.876533023147997,51.979754551727765],[5.877079489788957,51.98006141170722],[5.877560665617988,51.98031761362499],[5.877976814211951,51.980524882936756],[5.878601010361357,51.98081409096215],[5.878985114275463,51.98098271502013],[5.879283223773062,51.98111022560631],[5.879916923921679,51.98136337071725],[5.8803114974455,51.981507624206714],[5.881833895174638,51.982000531699704],[5.882115020253813,51.98208738949341],[5.882138667710475,51.98209469634464],[5.882393883386983,51.982168359805826],[5.882937747326776,51.982312497103415],[5.883856356346211,51.98253536046466],[5.884119673245307,51.98259479342493],[5.884402955244148,51.98265619971349],[5.884818272202389,51.98274304990456],[5.886480434476094,51.983000683882835],[5.886941370147858,51.983051433565045],[5.887311121214737,51.98308239946152],[5.887896348050889,51.9831204645741],[5.888348883325728,51.983139596640015],[5.888815603909006,51.98314240659054],[5.889204877364547,51.983135640183434],[5.88963586545946,51.98312194404707],[5.889939349917706,51.98310816228663],[5.890459833197116,51.983073793869664],[5.890969420043731,51.98302582555279],[5.891483193974325,51.98296972061594],[5.89196272373646,51.98289889373189],[5.892312843306397,51.982839685417055],[5.892587628418966,51.98278279523583],[5.893187893104437,51.982642854533495],[5.894006245838125,51.98244031119407],[5.894400270710881,51.98233300864303],[5.894922790125732,51.98217615471981],[5.895195869781653,51.982087581935446],[5.895585410031748,51.98194859293922],[5.896010665106542,51.98178359769795],[5.896587695019959,51.98153786658155],[5.89666477166945,51.9815021186871],[5.896878900367648,51.98140282259064],[5.897074238979725,51.98131017803718],[5.897364975549986,51.981158497467646],[5.897458971442798,51.98110667642343],[5.897724557912639,51.9809541872669],[5.899231184726161,51.980057091236176],[5.899698055393218,51.98041197510394],[5.900685928633584,51.979847207339965],[5.900911396546933,51.979716368189436],[5.901087279214314,51.97961535286073],[5.90115434664061,51.97957683238522],[5.901330310805061,51.979480481276006],[5.901542395591411,51.97936588739534],[5.901697144195349,51.97928418961977],[5.901812919701393,51.97922339827995],[5.901872514439059,51.979190824413486],[5.902100567741865,51.97907150366701],[5.902201054568986,51.97902046830526],[5.902251546822263,51.978993812477704],[5.90269061404803,51.9787750450436],[5.902742502251957,51.978748319964986],[5.903105324529458,51.978570063055436],[5.90330711477085,51.97847232828899],[5.903569929623372,51.978347656831225],[5.90366056701346,51.97830613716243],[5.903722796320165,51.978276319182925],[5.904057415880212,51.97813200628385],[5.904315095758961,51.97801804284374],[5.904789960614214,51.97782047533348],[5.90512519837569,51.977679868828666],[5.905271023997472,51.97762184492075],[5.906198675347155,51.97724372265963],[5.906424411785677,51.977154928054446],[5.906524646104557,51.977116815302736],[5.906709273989175,51.97704395824524],[5.906746583431679,51.97703061650505],[5.906832960599735,51.976996231953756],[5.906915413742698,51.97696989126801],[5.906936862433789,51.97696192268512],[5.906933104780101,51.97695668111503],[5.906936135468767,51.976953198221054],[5.906946675503134,51.976949637194735],[5.907112634731769,51.976891144481925],[5.907272710608027,51.976836174017635],[5.907487168293683,51.97676665329542],[5.90771056439348,51.97669860265554],[5.907822622204382,51.976666126071315],[5.908001953738202,51.97661630056742],[5.908248564788559,51.97655091448865],[5.908444880958806,51.976502370284564],[5.909270391124982,51.97629248863755],[5.909433141415046,51.976248864603555],[5.910079304872766,51.97605543130145],[5.910250834673089,51.97599974068807],[5.910837114397225,51.97578886251247],[5.911152834148814,51.97566854936915],[5.911197086094689,51.97565168779547],[5.911511234343665,51.97551912058398],[5.911614363904093,51.97547288306604],[5.911851964400772,51.975439456168104],[5.911964351114652,51.97545178104081],[5.912354224998331,51.97530460909458],[5.912378054719184,51.97525030295092],[5.912531985468167,51.975201069311005],[5.912609619995661,51.975114317491744],[5.912697678109949,51.97504149591349],[5.912751460178137,51.97500213827371],[5.91289236739693,51.97490727460459],[5.913660991597459,51.974412002554416],[5.913957002454391,51.974230945903535],[5.91434456578513,51.973993894158916],[5.914661869718655,51.973797298264884],[5.914887062028123,51.97365895492413],[5.915040666307953,51.97356289013485],[5.915181750036554,51.973477631426775],[5.915273882307665,51.97342019561566],[5.915318351642344,51.973393686999835],[5.915525722568167,51.973267376960976],[5.915826727732632,51.97308780313061],[5.915895299672997,51.97305040890169],[5.91602786285386,51.972974724112014],[5.916117642808098,51.97292532480498],[5.916305205818217,51.97281906559334],[5.916387077887684,51.972774195836294],[5.916575720559854,51.97267443889373],[5.916659188813128,51.972631683009226],[5.916917098824683,51.97250806411559],[5.917155175276075,51.97240079396942],[5.917275484824276,51.97234763385926],[5.917406376492993,51.9722921967973],[5.917488615875047,51.97225641183079],[5.917787786398513,51.97213458235692],[5.918086643954427,51.972018416189776],[5.918262570651846,51.97195149444247],[5.918330642017307,51.97192744874019],[5.918369883295417,51.97191198229038],[5.918404098224893,51.971899738388466],[5.918463494422883,51.9718792642227],[5.918469987682115,51.97187702374992],[5.918526052932947,51.97185669942762],[5.918653804873383,51.97181411051972],[5.91871040673258,51.971794871274206],[5.918878663490069,51.971739110848944],[5.919116963279709,51.9716636814186],[5.91937171354527,51.97158633443679],[5.919501680953107,51.971550296072465],[5.919708005781156,51.97149447895897],[5.919993344773765,51.971425737756526],[5.920013614393047,51.97142061242983],[5.920180782169179,51.97138858431954],[5.920204428575637,51.971384728988035],[5.922038668822132,51.97117355977533],[5.922091870950347,51.97116596529027],[5.922225720371113,51.971144548275035],[5.922544455004446,51.97109799395132],[5.922496272167499,51.970898150481126],[5.923406851516661,51.97076510844594],[5.923554291887565,51.970744949220496],[5.924362489128184,51.9706169687829],[5.924420364779383,51.97061814250389],[5.9244582815148,51.9706223645655],[5.924638043193453,51.97009213772283],[5.925138918476407,51.96998340978687],[5.925637577208361,51.96987086441294],[5.925853153773843,51.969820863489254],[5.926068284778465,51.96977015413015],[5.926384226713106,51.96968489826687],[5.926400107140748,51.969680367216014],[5.926814317215903,51.96956221152572],[5.927075008867854,51.96947639839414],[5.927308247597019,51.96939731723666],[5.927683856266857,51.96926314773649],[5.928778911458211,51.96881083897968],[5.92925626664581,51.968583363894375],[5.929606889101487,51.968404469425735],[5.929848972373696,51.96826701688661],[5.930044825869149,51.96815267065627],[5.930213453511242,51.968051689698974],[5.930411461657287,51.967926762579964],[5.930837902946474,51.96762652168646],[5.931240772820413,51.96732453668343],[5.931525544001187,51.967089098660466],[5.931793422499026,51.96684924399325],[5.932170305249832,51.96648621025168],[5.932501316505528,51.96615551245442],[5.932608371901755,51.96603117413696],[5.932820337480233,51.965765384308746],[5.93312244965148,51.96536849362259],[5.93325432775178,51.965183376916315],[5.933273372233672,51.965154462759024],[5.933414840979275,51.96493970261209],[5.933637731060657,51.964563366431875],[5.934013997862371,51.963854133260035],[5.934031713778579,51.96383210125551],[5.934169977770387,51.96356874591846],[5.934254812351686,51.96340691103292],[5.934298005770181,51.96329897539642],[5.934414260741209,51.96302440579549],[5.934619234077917,51.96255844700763],[5.93475810348789,51.96223084817095],[5.934858058200324,51.961992136712524],[5.934996045388768,51.96164738285701],[5.93512983315162,51.96131277828883],[5.935334889684042,51.960945384250564],[5.935501378086537,51.96064990595233],[5.93553259335148,51.960594490828356],[5.935597189737657,51.960415662358386],[5.936049726462113,51.95975009132191],[5.936138165236162,51.959622366995845],[5.936574200374123,51.95908261831061],[5.936787923959093,51.958858033388395],[5.937329925622447,51.958305939665166],[5.93761700663641,51.958025281908085],[5.937781887507537,51.95786767151925],[5.938028116764923,51.957666913027865],[5.938160343944193,51.95755872940728],[5.938913597387487,51.957000640359034],[5.939214522741582,51.9567813222633],[5.939722706719473,51.95643152476838],[5.940022047186037,51.956237703076006],[5.940182541175229,51.95613378850722],[5.940327749959027,51.95603976095578],[5.940446703709169,51.95596971196737],[5.940612250340905,51.95587221769606],[5.941432783586254,51.95539514034588],[5.941876941983927,51.95513499777488],[5.942322992444256,51.95488357229106],[5.943060925389132,51.954478726628],[5.94350467462509,51.95425043460735],[5.944262353160989,51.953880488651485],[5.945110059370903,51.95346317311598],[5.946246882728078,51.95296494744184],[5.94642052589857,51.95288869987539],[5.947356919062099,51.95251718231529],[5.948675682023144,51.95198943773946],[5.94963945850566,51.951594724775255],[5.949943520547124,51.951470191364],[5.950607259325312,51.95118589073383],[5.951432011323526,51.950822389754606],[5.951545209005801,51.95077250002021],[5.951716207125435,51.950695511213524],[5.95194878560937,51.95058783652351],[5.952400035227657,51.95036688093822],[5.952623570747269,51.9502610011174],[5.953211767282303,51.949947944528226],[5.953865300962522,51.9495845854775],[5.954326604196959,51.94930780088477],[5.95448130853643,51.94921186715581],[5.954723300672672,51.949061806087705],[5.955225519136063,51.948753540704494],[5.955337545072341,51.94867502486281],[5.956575605249399,51.947795064400445],[5.957488010189763,51.94706270581736],[5.957553191189076,51.947010391599534],[5.958220640969676,51.946373881477086],[5.958328399617555,51.946263789188876],[5.958802024186106,51.94581150898744],[5.959067785886176,51.94550217437045],[5.959162835955693,51.94539153191036],[5.959504063091368,51.9448859085665],[5.959658177824744,51.94468877019903],[5.95998336052559,51.94423967975463],[5.960293528801508,51.94378273378996],[5.960738551648348,51.942887141408846],[5.960883196673794,51.94255197647378],[5.961011341069503,51.94225502076695],[5.961190165082245,51.941653011149434],[5.96130072006368,51.941209189312715],[5.961683032922877,51.93945900147546],[5.961794321422434,51.93879262208181],[5.961472917819439,51.9387913976336],[5.961506299344647,51.93838263879856],[5.961550990487835,51.93809409875018],[5.961558932513037,51.9380544659317],[5.96162051404672,51.93774720130255],[5.961675422141511,51.937507617924226],[5.961737740393812,51.93726872904286],[5.961807443607178,51.93703062015961],[5.961885987603859,51.93678899756198],[5.961972137153289,51.93654836777734],[5.96226011015931,51.93579926576166],[5.962701702890514,51.934775695124664],[5.962846695193217,51.93448166829586],[5.962999778886632,51.93418921235081],[5.963160906941911,51.93389841287824],[5.963330032322859,51.933609354566634],[5.963507107986056,51.93332212120436],[5.964354878511603,51.93214825998812],[5.964570165024536,51.93188849465589],[5.964777812682053,51.93162636295046],[5.964977751465406,51.93136195244441],[5.965169920061692,51.93109534886893],[5.965354251370792,51.93082663978021],[5.965530688475043,51.930555912683225],[5.966062857681263,51.93002452965403],[5.966456516482649,51.92966485898583],[5.966829567637449,51.929353700338346],[5.967225253456203,51.92903820418513],[5.967235024941272,51.929030407917935],[5.967610652380323,51.928750666581536],[5.967903434425121,51.92853750635247],[5.968399224707698,51.9281896923316],[5.968613039246648,51.92821244495499],[5.970191753926749,51.92719505011025],[5.971626343067996,51.92636920225367],[5.972954774493994,51.92560646140985],[5.973950211434519,51.92499383083808],[5.974975627388969,51.924334544479116],[5.975660417213151,51.923869784685515],[5.975880276621472,51.92372056268684],[5.977088393572093,51.92286602071691],[5.978644802604518,51.92168148194228],[5.979998276080238,51.920491708167106],[5.980162546750386,51.92032710953434],[5.9805055025228,51.91998344824544],[5.981045584429818,51.919442239086656],[5.981840476007299,51.918562158356956],[5.98266754476401,51.91758536387701],[5.983145781807916,51.91703537979165],[5.983510017614488,51.91661649385924],[5.98448663410537,51.91562413189532],[5.985470106795319,51.91467943740614],[5.986560530657993,51.91372094880624],[5.987062649549568,51.91331383291412],[5.987289923135369,51.91311243512993],[5.987526400050905,51.91291513085279],[5.987771886205513,51.912722082812024],[5.988026181611155,51.91253344657584],[5.988062819837757,51.91250613197702],[5.988099545337815,51.91247882590859],[5.988516078194444,51.91217277363917],[5.988938062023941,51.911869591621354],[5.989365443519373,51.91156931692278],[5.989667563364689,51.91135912832104],[5.98997352850605,51.91115107912682],[5.99028329712714,51.910945194692665],[5.990587689490836,51.91074739520981],[5.99089558065879,51.91055168024707],[5.991219371795942,51.910348637997515],[5.991921047443376,51.909935719726136],[5.99249322496504,51.909606158537095],[5.993008203382868,51.90931642534013],[5.993529402243421,51.909030980304905],[5.994056726359071,51.90874987507536],[5.994590083432573,51.90847315948338],[5.995313426245901,51.90810885674046],[5.996041337507592,51.90774805648318],[5.996773772522756,51.907390780431626],[5.997375205390858,51.90711451400076],[5.997983027302087,51.90684365286406],[5.998597109779162,51.90657825242187],[5.999217324355445,51.90631836807595],[5.999983185689434,51.906008872775026],[6.00075356556049,51.90570370285431],[6.001139447881074,51.905550282724434],[6.001529622628103,51.90540107693918],[6.001923971332027,51.9052561310186],[6.002322372598099,51.90511548870171],[6.002926827862183,51.904910295560725],[6.003536563130393,51.9047111711717],[6.004151416517491,51.904518165740335],[6.005019991019288,51.90425732955663],[6.005765816395401,51.90404023321228],[6.006637676033149,51.903787142734885],[6.007408373228252,51.90356340604474],[6.009053111681753,51.90308922277916],[6.010863594721,51.902556196537624],[6.012010339792745,51.90219910119688],[6.0123438560548,51.90209524420205],[6.012905991186523,51.90190760022904],[6.013101001080081,51.901837340780055],[6.013418353558583,51.901723005349474],[6.013710983536972,51.90160834251015],[6.014067969156818,51.90145838818349],[6.014525923562778,51.901259472465924],[6.015088947131735,51.90099951865651],[6.015600207045997,51.900751991526484],[6.015860563672798,51.900617262804914],[6.016119714908654,51.90048165009019],[6.016533079239562,51.90026175501999],[6.016939580403732,51.90003701810637],[6.017402582114991,51.89976372900541],[6.017846330130603,51.89949796593813],[6.018270590534802,51.89923234182663],[6.018700827129515,51.89894981258841],[6.01913149783531,51.89866754007512],[6.019414235588004,51.898468808772456],[6.019691606850975,51.89826720418208],[6.019963532497404,51.89806278069917],[6.02022431041164,51.89785320781143],[6.020480550371212,51.89764150335241],[6.020732206459039,51.897427706250014],[6.021060594174655,51.897132010027654],[6.021355895669892,51.89682398848398],[6.021559764764279,51.89659432755948],[6.021798497768365,51.89632842495599],[6.022373398456043,51.895690691978146],[6.02318415164661,51.89466995471064],[6.023660596137916,51.893916077259334],[6.023920596721585,51.89338525305288],[6.024199801722784,51.89278915726185],[6.024294574877073,51.89258683287036],[6.024449851287008,51.89218648653308],[6.024735507460888,51.8914224396922],[6.025102125525067,51.89044632645389],[6.025428184581755,51.889591004423146],[6.02597263680515,51.88854155486261],[6.025975846293384,51.88853536228568],[6.026021002883514,51.88843170362745],[6.026077203297328,51.88832424564057],[6.026090614508727,51.888284623150824],[6.026174150335238,51.88803797283343],[6.026334954685787,51.88770791083787],[6.026370437786258,51.887635081403076],[6.026650778691601,51.88705314781562],[6.026717455041394,51.88687462304945],[6.026789759976605,51.88670582912866],[6.026820410262746,51.88660991634969],[6.02688775968901,51.88646756664633],[6.026985133102452,51.88618637825323],[6.027011878718478,51.886116229845044],[6.027073990386138,51.885980515129724],[6.027182647816955,51.88574219429316],[6.027270578858626,51.88554689757692],[6.027364262617718,51.88538129450661],[6.027447505575123,51.88523226021787],[6.027563119016484,51.885032857372615],[6.027698452042165,51.88479439054003],[6.027890781031293,51.884436739205896],[6.02826558224857,51.88377850360433],[6.028281169085173,51.88375112032606],[6.028334214572554,51.88365441967673],[6.028652877024477,51.88317721275263],[6.028777553021528,51.88286549228074],[6.028958059982331,51.88242866068701],[6.029198786914583,51.88195055675259],[6.029334007737209,51.881705481910046],[6.029448835900687,51.88152654825103],[6.029564308988414,51.881393847992804],[6.029805658561628,51.88110856146777],[6.029984216294878,51.88090947671639],[6.030110360226187,51.880776708495524],[6.030267755918286,51.88059094332779],[6.030582826786536,51.880239221546276],[6.030887800357459,51.879927175733656],[6.031349980155857,51.879495105667544],[6.031661543370751,51.879243307789636],[6.032512138342086,51.87855573143383],[6.03402514803167,51.87747607039557],[6.034370454344012,51.87720960770086],[6.03474982294462,51.876911631021585],[6.03497540921648,51.87676949566091],[6.035215452887383,51.87662496102231],[6.03554536926075,51.876410374452085],[6.036094006261889,51.87607160958989],[6.036464009590388,51.87584380319179],[6.036823950514111,51.87562218506922],[6.037154901298758,51.87541841308285],[6.03739363681309,51.8752836166558],[6.037987684278656,51.8749481957201],[6.038425146724815,51.87470118437338],[6.038943507519398,51.87440423584103],[6.039929991061894,51.87383600827362],[6.040428764467396,51.87356966374006],[6.040965827869447,51.87328614244214],[6.041289131375908,51.873115465600115],[6.041662532199847,51.87291833841889],[6.04209254624439,51.872707436587525],[6.043078968779189,51.87223190848036],[6.044936909078436,51.87145050888939],[6.045577767293613,51.87118122389472],[6.046284773455486,51.870913208945154],[6.047607341768439,51.870650303783236],[6.048174672164635,51.870529684471414],[6.04881637278671,51.870393236914616],[6.049096467104022,51.870333690851076],[6.049967809520235,51.87015301446071],[6.050704042811011,51.87000111978979],[6.051858228546162,51.869766099913704],[6.052985893346639,51.869527578671764],[6.05345350309701,51.86941705136095],[6.053799516832497,51.86933526419735],[6.058114198488775,51.86773287643282],[6.059928560658857,51.86696632932625],[6.060912925316706,51.86655110174137],[6.063123896300524,51.86560588098188],[6.063485633386741,51.865451225411476],[6.06264160864421,51.86377412271213],[6.062254981513419,51.86300446982021],[6.061954560880392,51.86236655124396],[6.061914253513821,51.86228095990049],[6.061837396453779,51.862066008123165],[6.061770771139452,51.86176459919644],[6.061770091023607,51.86176474692213],[6.061640806236465,51.8611803237617],[6.060665885068463,51.8612705396708],[6.060434534984044,51.86129194724217],[6.060394759593024,51.86113102797282],[6.060393832417992,51.86112727606074],[6.060357440853931,51.86098000901146],[6.060167978005948,51.86021336213551],[6.060161070718926,51.860185402284415],[6.060147805088725,51.86012541659216],[6.05996937764768,51.859318643937684],[6.059803749622707,51.85856749091428],[6.059794779861859,51.858526797036355],[6.059602441218224,51.8576547383983],[6.059596200215014,51.857627601641525],[6.058872719289559,51.85760317805677],[6.057429544512536,51.85759206594658],[6.056837552418273,51.85756069481191],[6.055394565608577,51.85746041680614],[6.054937494692356,51.857436150960865],[6.054355239125347,51.85740523327333],[6.054007128516136,51.85736432679407],[6.053162525033811,51.857165808972276],[6.052438446572026,51.85701475393829],[6.051488227068775,51.85668371968482],[6.051423661746981,51.85666122709784],[6.051425089084784,51.8566595830983],[6.051651339361399,51.856446477562905],[6.051947004554249,51.85616668765703],[6.052587576068575,51.85555411733436],[6.053119105880826,51.854995590262256],[6.053427542435166,51.85465905099465],[6.054698311647227,51.853255974920025],[6.055364944610191,51.852555332260316],[6.055304683137787,51.85235412409204],[6.053221845966712,51.85158679470028],[6.052849968831407,51.851392162082384],[6.052485149824059,51.85122116423686],[6.052358155672295,51.8511753770472],[6.05187034729874,51.851015204399246],[6.050289369190414,51.85049457530017],[6.04938684487914,51.850142401366554],[6.049101504622382,51.850022188570456],[6.048696991388494,51.849827798841346],[6.04830922988314,51.84963040106374],[6.048089479333452,51.84952178914348],[6.047717270651542,51.849354296768034],[6.046706422217713,51.84890935644784],[6.046445739063664,51.84880685900425],[6.046319675743023,51.84875932529294],[6.04566224481843,51.84852016193312],[6.045445127937167,51.84844792511553],[6.04458610102364,51.848120216106445],[6.044087330227878,51.847923686891384],[6.043606347869989,51.847739478308355],[6.043357218185429,51.84764406434186],[6.042418174767095,51.84719215113301],[6.042351559868071,51.84726491711269],[6.041863454966586,51.84708794104808],[6.041765339829076,51.84704647565908],[6.041683609055728,51.84701193890557],[6.040855475590574,51.84645924385948],[6.040622612918278,51.84630382458244],[6.040565339068166,51.846257348867105],[6.040256131739805,51.84605718622112],[6.039908485457376,51.845832131433234],[6.038060319872525,51.84463565107318],[6.037838508987022,51.84450557575474],[6.037697506828878,51.84443506892484],[6.03757714009113,51.844377543939615],[6.037230001240914,51.84422701183026],[6.037052750073562,51.84414946919666],[6.036957562057133,51.844108963362935],[6.036927375038859,51.84408166137294],[6.036835401945239,51.8440145224339],[6.0366807793776,51.84388186179709],[6.036558805839991,51.84376807610933],[6.036390541546717,51.843598017154854],[6.036239181777521,51.843423729718225],[6.035999109378245,51.84309206601329],[6.035835605124648,51.842875365133324],[6.035670586495863,51.842638043584465],[6.035586473959766,51.842657914712],[6.034538211191597,51.84293161568186],[6.034027613177019,51.843115856765834],[6.03397124603782,51.84314588370541],[6.033671334778844,51.843305609513806],[6.03350428503415,51.84340730965976],[6.033416393259871,51.84335310712415],[6.033182929240396,51.843121498238],[6.033040980590076,51.84292045881575],[6.032682326521204,51.842351522077045],[6.03171245234233,51.843045468310216],[6.03066608593427,51.843866358083005],[6.029214342621084,51.8450352294207],[6.029176740270682,51.84508908796173],[6.029152961347947,51.845123140940814],[6.02836654283118,51.84486742747713],[6.027967605775725,51.844736081024564],[6.027208008813043,51.84447147648747],[6.026301060309714,51.844155329120944],[6.02583545548394,51.84399138637604],[6.025314650904108,51.84380183687391],[6.023684144612956,51.84316842165981],[6.023588481149453,51.843131260351896],[6.022712705064696,51.842809442311705],[6.022349841996887,51.84263745087712],[6.02137898888553,51.842170171980975],[6.020788938734814,51.841892331349],[6.020280665717751,51.841664005135804],[6.020184134108703,51.84163898033221],[6.020071725020879,51.84163030141555],[6.019857506745035,51.84162374431479],[6.019280135625753,51.84162975895409],[6.018830287404712,51.84165020321663],[6.018496961990364,51.84166849090164],[6.018308158503655,51.84166855365728],[6.018170279671349,51.841644127081594],[6.018014279361163,51.841610575479784],[6.017839042086786,51.841559734159176],[6.017610591082076,51.84146314796397],[6.017477253546106,51.84138676917907],[6.017313222709737,51.84127492434414],[6.017230332615167,51.84119484075145],[6.01715347852027,51.84109913850743],[6.016964379287987,51.84076041228562],[6.016757820617885,51.84036107058151],[6.016673078049731,51.84014724651752],[6.016603800422928,51.83991132641767],[6.016451213094688,51.83926277399305],[6.016362350677263,51.838934538200924],[6.01634943547947,51.838900190183864],[6.016260809272135,51.83866458033424],[6.016158279545111,51.83844947597576],[6.016043413589867,51.838242419493966],[6.015943064459616,51.83812411024537],[6.015829057078267,51.838027275887065],[6.015698372803445,51.83793732610842],[6.015572094926068,51.83786884427928],[6.015100549966517,51.8376532965874],[6.014834527829147,51.83752949990345],[6.01481545708817,51.837539561251674],[6.014800297887068,51.83754710285133],[6.014745239152705,51.837515254165154],[6.014674090782338,51.8374731096851],[6.014099246740973,51.83713260281995],[6.013071713038155,51.83656136287412],[6.012402809721918,51.83623935353455],[6.011478181625848,51.83584032981751],[6.011348082430402,51.83577998947641],[6.011277728231187,51.835745514971144],[6.01125067343566,51.83573225689376],[6.011086745005477,51.83564613716602],[6.010870069895307,51.83553230715086],[6.010742702040676,51.83546476975191],[6.010291369384229,51.83520700193519],[6.01014231532776,51.83512709391271],[6.009953082505461,51.835065789582586],[6.009393058423173,51.83494354964461],[6.008705657147756,51.83479350599322],[6.008094827326028,51.834637408343355],[6.007712467354856,51.83452520419389],[6.007467059927531,51.834453190913536],[6.006851068213959,51.83427242248653],[6.006315004954995,51.83414196064674],[6.005782688472519,51.83402420443747],[6.005682818285307,51.833996219145476],[6.004539374984947,51.83359173258382],[6.004370172248555,51.83352788698927],[6.00430961994071,51.83350504191925],[6.004387851566227,51.83338872276664],[6.004405559958927,51.83334167330191],[6.004388550215059,51.833324306964094],[6.003734899506414,51.83308567212912],[6.002756287840731,51.832729424616026],[6.002587480025631,51.83266220367845],[6.002488846900714,51.832593778586805],[6.002434322556028,51.8325638539016],[6.002368249848127,51.83253499645998],[6.002320098909617,51.83251918632222],[6.002256858297238,51.83249053868508],[6.002201538770269,51.83247779522617],[6.002194320044383,51.83247613422284],[6.002064281357412,51.83244303668699],[6.001925469655865,51.832413436584126],[6.000799082951444,51.832248064283654],[5.999700525779666,51.832111110597594],[5.99949132022906,51.83207591565489],[5.99888992310229,51.83197472214634],[5.998369821935221,51.83185038800344],[5.998079178155537,51.831770788722594],[5.997842188738547,51.83169570040296],[5.99715233570548,51.83143841338809],[5.997088771858855,51.831414465683174],[5.997043814992636,51.83139753119211],[5.996967812734883,51.83136890210662],[5.996604179782483,51.83127383164338],[5.996518164107251,51.831255663042725],[5.996011834055337,51.831148711769146],[5.995532346781355,51.83107191961842],[5.994550548220706,51.83092739123361],[5.994426298972513,51.83091512675616],[5.994312782042029,51.83091121991559],[5.994217206248813,51.83091771879542],[5.994035270419827,51.8309417425751],[5.994025826622686,51.83094287004741],[5.993743453967055,51.83097658113314],[5.993614478628127,51.83098826780102],[5.99282022502384,51.83096110797843],[5.992483083896425,51.83093752693218],[5.991992917958314,51.83090324642462],[5.99190613884023,51.83089717700065],[5.991033082218789,51.83082454255131],[5.990638044363762,51.83078804995823],[5.990250417460795,51.83075566167612],[5.99022854454675,51.83075383256735],[5.989625326439547,51.83071099079701],[5.988681216889452,51.83065555724128],[5.988107885300795,51.830625623838856],[5.987827276498103,51.83061444971615],[5.987338010778196,51.83061778929497],[5.987182493745717,51.83062460700933],[5.987057327715664,51.830638055713756],[5.987041392169619,51.83063976411612],[5.986918981010501,51.83065201209766],[5.986737439318038,51.83066988334994],[5.986587901373929,51.83068777060028],[5.98622977150317,51.83073495591509],[5.986173551589895,51.83074236188146],[5.986165803591743,51.830743381189244],[5.985915660879076,51.83079226135315],[5.985741368034474,51.83082729818241],[5.985621957912953,51.83085801897455],[5.985488188440566,51.83089336108103],[5.985314136168007,51.83094329009633],[5.984976360213046,51.831066123424414],[5.984535081537971,51.83122046633989],[5.984159872963376,51.831331380273106],[5.983751885095989,51.831450729144656],[5.983651946471197,51.83147525467125],[5.983337698257303,51.83155239162978],[5.982908046636831,51.83164985260935],[5.982368820566019,51.83176420010455],[5.982018028182598,51.83183186516687],[5.981914097035228,51.83185191516644],[5.98120081607131,51.83196091930018],[5.980846530717266,51.832007079919855],[5.980764947409023,51.83201771266514],[5.980666940107133,51.832030477820474],[5.980224867550379,51.83209219931883],[5.979576892043807,51.83218340767871],[5.978953039873133,51.83227895810111],[5.978674891777444,51.832325393278865],[5.978412654636386,51.832379271045696],[5.977982438063763,51.83248262224674],[5.977460821972507,51.832646043811884],[5.97688203717663,51.83283365094402],[5.976516508522393,51.83293393010398],[5.976390354977151,51.832964666335],[5.976376399028436,51.83296807116922],[5.976211041737154,51.83299642434507],[5.975521632771706,51.8330671984777],[5.975348973505453,51.83307640547327],[5.975186269240186,51.83309690588296],[5.974507701763279,51.83321270630324],[5.974074314905012,51.833287825931635],[5.973758039614959,51.83333184241906],[5.973355638843741,51.833372288434106],[5.973133290425703,51.833386243650324],[5.972876679953149,51.83339515611231],[5.972372193667665,51.83340523260066],[5.972287791076432,51.83343148661103],[5.97223546125203,51.83344616518425],[5.971884365889803,51.83339989842814],[5.971510003513864,51.83335056454805],[5.971440566628659,51.833347234003625],[5.971232604562362,51.833337267354594],[5.97116657161861,51.83333798252987],[5.971099010617001,51.83334728933884],[5.97101679446983,51.833367662028465],[5.970892061539861,51.83340651990062],[5.970119000354572,51.83366810079757],[5.968961775520662,51.83407484145297],[5.96866918613206,51.83417757477324],[5.968096456162153,51.834390123472616],[5.967076076013417,51.834844553154184],[5.965602524757427,51.83556745834279],[5.964189526356162,51.83628086975778],[5.96326185201473,51.83676929003895],[5.962978944434501,51.83691442337506],[5.962978285570223,51.83691395920394],[5.962953162145643,51.83689635707744],[5.962805005638865,51.83678854731443],[5.962563264186264,51.836612631697655],[5.962464406492872,51.83654069572185],[5.959585296390491,51.83444550665188],[5.95610109614957,51.83190963420458],[5.953850691472897,51.83027153137106],[5.953794160711895,51.830230376191444],[5.952974601454316,51.829633770694265],[5.950377867941695,51.827743290938336],[5.948262703082248,51.82620325227811],[5.948027735969962,51.82603216424716],[5.947945890906527,51.825972565932716],[5.947823067791772,51.82596667219008],[5.947566092913373,51.825766017223536],[5.946558708423632,51.82497939242604],[5.946139803340538,51.82470268123724],[5.945479118972367,51.82426624243872],[5.94580325557274,51.82409177786502],[5.945778637049047,51.824073998894676],[5.945044788568499,51.82354402065802],[5.945070275257621,51.823530048114336],[5.946888510120541,51.82261760724849],[5.949138173565664,51.82148569295281],[5.949579860115406,51.82126210746725],[5.951676197030443,51.820200863710205],[5.952848736845739,51.81961135516858],[5.954055778556376,51.81900447294079],[5.956897195902181,51.8175706415842],[5.958150881626128,51.81693129314836],[5.957580656656689,51.81659509069087],[5.957425900719148,51.81650384518405],[5.957364554203564,51.816468395884144],[5.957140470047066,51.81633890806699],[5.956641859090599,51.816050792441885],[5.955676323401302,51.81546943063635],[5.954788867184925,51.81590716556217],[5.953901522774729,51.8153784703146],[5.953438203818496,51.81512536983307],[5.952846956106432,51.814789605518264],[5.952788691699357,51.814828231666276],[5.952261963610885,51.815177458972954],[5.951578579959442,51.8156340150441],[5.951138111923559,51.815912693425005],[5.950672284047442,51.81623748638942],[5.949719655803248,51.81551200816343],[5.949627931926933,51.815445042819384],[5.949312674560049,51.81565898054515],[5.948816429262603,51.81599002409363],[5.948177198961992,51.816422915584006],[5.948078027556244,51.816446184793485],[5.948061247805776,51.816438040498895],[5.947945210523482,51.81636584190935],[5.947046955172279,51.815809974849756],[5.946066526295339,51.8151983589761],[5.946022970782781,51.81516993794453],[5.945926757039277,51.81511113474505],[5.945945724252389,51.81509459534265],[5.946067388782082,51.81499545623562],[5.946508880849621,51.814614052869985],[5.946836632993517,51.814487881242634],[5.94702768291948,51.81438605505153],[5.947016157498799,51.81437469459366],[5.946856687376902,51.81420162590926],[5.946591566978773,51.81387292071012],[5.946569967452987,51.81347991821359],[5.947012056824715,51.81323567535046],[5.947634367140177,51.8128897541744],[5.948315236881068,51.81251328504958],[5.948764104429456,51.812792361891496],[5.949421969263336,51.812443069982216],[5.949343013970615,51.81232034110756],[5.949313617060338,51.81227482910095],[5.949242032347144,51.81216398366435],[5.949187215667488,51.812091825500154],[5.949123792709731,51.81203305655223],[5.949005755286492,51.811936905088885],[5.948817751906136,51.81177932814853],[5.948682232664276,51.8116684918636],[5.948612207963913,51.8115976915964],[5.94857048378138,51.81153220290816],[5.948535203493499,51.81145199605943],[5.948482637140241,51.81138920186449],[5.94843247246857,51.8113678693682],[5.948325751535851,51.811345270388806],[5.947977943855145,51.81137137369702],[5.948327261864513,51.811220834532456],[5.948377026717379,51.81119377458078],[5.948640849400761,51.81110543984321],[5.948724765495821,51.81108080496915],[5.949230694073093,51.810958393463345],[5.949434139908155,51.81088704697377],[5.9508080903874,51.81060844098784],[5.950938355469967,51.81058078635059],[5.950993979594149,51.81057715726443],[5.951462082026575,51.81052457027992],[5.952733239659421,51.810409947096005],[5.953101916013096,51.8103766999108],[5.953657811642096,51.810328273684256],[5.953658811131534,51.81032818796002],[5.9540544566925,51.81029599401384],[5.954188752479331,51.81028926862068],[5.956117746931743,51.810147175661534],[5.956260677752783,51.81011694585136],[5.956379596945243,51.8100914704925],[5.95653740514556,51.81004400897263],[5.956758882907181,51.8099354663755],[5.956778502544475,51.809827616161975],[5.9568209487985,51.8097865030583],[5.956845688734922,51.80976253623612],[5.957106417997966,51.80949346426553],[5.957265915407012,51.80934018012717],[5.957517743452478,51.80917593920197],[5.957779941101678,51.809058936138946],[5.957818727862117,51.80906104851573],[5.957876793481091,51.809071777000014],[5.958248997692928,51.808967918179064],[5.958288979560577,51.8089579259679],[5.958689506030916,51.80885786482568],[5.958988783706548,51.80878257408054],[5.958935002166104,51.80876662987008],[5.95951183142183,51.80852686890268],[5.959638768305728,51.80845497905822],[5.959832913742175,51.808351121189226],[5.96047290053647,51.80810258882881],[5.9621411480363,51.8074529533569],[5.962805983990841,51.80717431843545],[5.963079258304553,51.807059190584624],[5.963216801293767,51.80698631892186],[5.963578956707707,51.80678494840684],[5.964083533507428,51.80651734959843],[5.964596745931541,51.80623728386507],[5.965035348326791,51.8060033263407],[5.965373461616863,51.80581774473697],[5.965743854336066,51.80560893822716],[5.965756803192997,51.805603355363736],[5.965797469130337,51.805396264661056],[5.965855726898918,51.8053035926344],[5.966087853266973,51.805081660666296],[5.966071866958216,51.805073128514735],[5.966160979208079,51.80498279387006],[5.966274495347046,51.80489261730878],[5.966919300433674,51.804383815220305],[5.967109065674707,51.80444928466824],[5.967335351421956,51.8045302672234],[5.967377420151132,51.80446771433009],[5.967386155317393,51.80445471857387],[5.967427011479745,51.8042315277616],[5.967452130343303,51.804177975366166],[5.967452609971974,51.80417693930648],[5.967468372620782,51.80414332492549],[5.96766874367822,51.80395941575495],[5.967971391519618,51.803698120461625],[5.968628333993861,51.80332715149872],[5.968637819760991,51.803321810195904],[5.968771064941441,51.803246661138694],[5.968854453397626,51.803190976799506],[5.969254444676737,51.802923856080085],[5.96926061148793,51.802919744656975],[5.969986506630589,51.80252563068684],[5.970211990653221,51.802395883325],[5.970275603993624,51.802359567788706],[5.970441147437125,51.80226435549528],[5.970736337131538,51.802090944438355],[5.970746413989835,51.80208538429533],[5.970878666163255,51.802012475907276],[5.971003127106721,51.801970508908035],[5.971119383909063,51.80191639410395],[5.971278052828618,51.80183916504582],[5.971298857227692,51.80183128630303],[5.971348339928869,51.801786546342214],[5.971353842716682,51.80178156622207],[5.971547086053237,51.80158891292987],[5.971565521506359,51.80157053828635],[5.971771960565272,51.80137597619864],[5.971895316740544,51.80125574114024],[5.971968710189192,51.80121359624836],[5.972498745835869,51.800906616529936],[5.972631664929152,51.80083195901939],[5.972974228313638,51.80065391930794],[5.973236036502934,51.80051828583383],[5.973591642849954,51.80033465113506],[5.9737063620874,51.80027880662213],[5.97407127792891,51.80010118220031],[5.974105945121432,51.800086950554565],[5.974093250526031,51.80007734236458],[5.974515133562606,51.79981028260673],[5.974802072543678,51.799624713952355],[5.975117131845972,51.79941783548044],[5.975077794615376,51.799388505166064],[5.975238729853076,51.799269489332545],[5.975459298418202,51.79914429561275],[5.975588125873764,51.79907014959906],[5.975643989012513,51.799039415952386],[5.975748831898498,51.79899595131821],[5.975825552655008,51.79897380487043],[5.975941879984821,51.79893944179091],[5.976231226123384,51.79884910061447],[5.976339783154492,51.798817023314726],[5.976591168767205,51.79873737960849],[5.976670337803347,51.79871294618575],[5.976784650720559,51.798688713545346],[5.976997526672443,51.7986863667129],[5.977079144181739,51.79866294539812],[5.97719424492137,51.798631364714275],[5.977398155327917,51.79853000796843],[5.977620782953055,51.798414435548764],[5.977790420544441,51.79832527740046],[5.97784912393174,51.798293530654476],[5.978126456053918,51.79816318311749],[5.978157362657453,51.79812438540765],[5.978215051524911,51.798040725470706],[5.979065415781476,51.79765066416293],[5.974726297195375,51.79576609341371],[5.974391990661861,51.7956230785208],[5.974785544117709,51.7953312249976],[5.974599994263243,51.795208920984194],[5.974862531632454,51.795096434634495],[5.974901016231182,51.79507955893062],[5.974908123322191,51.79507653010879],[5.975277906874783,51.79491893082235],[5.976782177937429,51.79427617102457],[5.976723522716387,51.79421369855388],[5.976677840089945,51.79416332241211],[5.974949385617992,51.79225699619694],[5.974833239609564,51.792119378630524],[5.974570612416551,51.79181305074891],[5.974504641585768,51.791737076990124],[5.973703560412016,51.790814398175094],[5.973661278137238,51.79076304207391],[5.973539390704603,51.790626935064644],[5.973530815698918,51.79061735115554],[5.973204171895912,51.790235386665216],[5.972632562467248,51.78956529263575],[5.973156068711959,51.789404711997115],[5.975009612419442,51.78880780466389],[5.975070435124865,51.788788219178855],[5.974658083549637,51.78863837853402],[5.974014896912244,51.78847798879768],[5.973977908662325,51.788470218998846],[5.973987430578817,51.78842895861137],[5.97398902253067,51.788422092341904],[5.974198340518671,51.78751656658335],[5.974200137747014,51.78750877345634],[5.974382356068448,51.78667758383483],[5.974521368940695,51.786052674007195],[5.974545104110836,51.78518542446848],[5.974548481933778,51.78506197602817],[5.97524370371413,51.78518192270141],[5.975688623182915,51.78525868221357],[5.978457375483641,51.78580532674766],[5.978657160219137,51.78584378805812],[5.978932215895643,51.78589057013778],[5.979283397339492,51.78595114220316],[5.979379135308429,51.78596740447026],[5.979461577167103,51.78597438567311],[5.979538919096467,51.78597707805209],[5.979628780844512,51.78596525343934],[5.979709282729636,51.78595033004584],[5.979796581457629,51.78592214101368],[5.980003948768513,51.785848213103606],[5.98032134737145,51.78574014681157],[5.980389978768015,51.78569657338369],[5.980409212403781,51.78568345157876],[5.980547681924238,51.78558891882315],[5.98061636734189,51.78559133969625],[5.980712009391142,51.78559923296592],[5.980783811589434,51.785566474527],[5.980859432070741,51.78552982261989],[5.981016060661892,51.78529115489921],[5.981032307236143,51.78526693819823],[5.981109190652988,51.785152357477195],[5.981396622061593,51.784723969137026],[5.981519711930776,51.78454051692152],[5.981567860844827,51.78446055285655],[5.981765691983958,51.78413670585821],[5.983483006949273,51.784684927750895],[5.983585838305505,51.78471820190184],[5.983675957235957,51.78474581489239],[5.983851793123878,51.78480130576068],[5.984226716632237,51.784919152461946],[5.984678764584261,51.785057134958684],[5.984793329998716,51.78442816618918],[5.985496091806609,51.78407946428761],[5.987887868613405,51.782888728168295],[5.988746254464126,51.78328851818345],[5.988985843649095,51.783401641829315],[5.989131142934951,51.78346997345745],[5.989747763583621,51.78372373667489],[5.990211078962051,51.78341417762571],[5.990220153333235,51.78340675129824],[5.990226804979946,51.7834013059384],[5.990284737371443,51.783340011194326],[5.990290253388075,51.78333417617325],[5.99042711689497,51.783197492261486],[5.989271657484444,51.78246875594942],[5.989150127052868,51.782391655413264],[5.989149395783543,51.782391155805286],[5.989035924091819,51.7823141126498],[5.988688359828697,51.782078111422265],[5.988524366451749,51.78196594776283],[5.988383016105224,51.78186618891226],[5.988226636258767,51.78175539701087],[5.988104576509,51.781665480342994],[5.98798952201096,51.78158248484065],[5.98783192944263,51.78148277260788],[5.987572372554949,51.78131763287706],[5.986142559018981,51.78038517728241],[5.985997648753993,51.780300300935586],[5.985599151393825,51.78006002048329],[5.985285669039786,51.77987151089543],[5.984348889293453,51.779310344900495],[5.98383829393229,51.77898687349823],[5.983432014056866,51.77872503467617],[5.984125767997736,51.77806399585494],[5.984269146550563,51.77785332752904],[5.984274874976385,51.77784492096087],[5.984328929353019,51.77777520856185],[5.984336736970803,51.77776514648268],[5.984430903777282,51.77777773624368],[5.984544154205477,51.77779357245804],[5.984337600370078,51.777214085793595],[5.984149708122255,51.77672494721386],[5.984143720086284,51.776709346495686],[5.984121790308532,51.77664756252533],[5.984119216794515,51.77664033080175],[5.984045785226849,51.776457786267315],[5.983943931275517,51.776217679428804],[5.983915121524603,51.77614949458795],[5.983738241828005,51.77573091386889],[5.983673437543543,51.775581457247085],[5.984022508761472,51.77535119883484],[5.983438384877107,51.77477139400428],[5.983223130225337,51.77455772351209],[5.982692871172542,51.774034044703306],[5.982359922572044,51.773697008372615],[5.98439555950325,51.773052418266325],[5.985042895537668,51.772833391623685],[5.985791478583566,51.772585251591856],[5.986256944977026,51.77242133019755],[5.98680167639979,51.772226907596924],[5.987402458835133,51.771839632106264],[5.987967048550934,51.77147268249642],[5.988304971979374,51.77125576235356],[5.989363803174462,51.77057733120898],[5.989838485503402,51.77026959293146],[5.990081443724249,51.77011395486956],[5.990343353873417,51.769945553798614],[5.990553523404236,51.76980949889439],[5.99075008914997,51.7696822326261],[5.991595215810237,51.77004463219379],[5.992067052235938,51.77024590774377],[5.991940452991529,51.7697809587931],[5.991829543044005,51.76955358821065],[5.991619049927986,51.76914382137073],[5.991545406453048,51.76899115163523],[5.991474074798828,51.76884230808093],[5.991286333861114,51.76844553775474],[5.991203346537215,51.76827759033549],[5.990987763958121,51.76749093717801],[5.990863048224333,51.767125292707064],[5.990627193341769,51.76643380703406],[5.990568285253283,51.766357643973826],[5.990549710598472,51.766333623081934],[5.990514606652809,51.76629119764686],[5.990501179950885,51.766277307406774],[5.990479288819031,51.7662652764358],[5.988843598574921,51.76536605651648],[5.988691876104689,51.76528310609038],[5.988493355168625,51.765174580201005],[5.987088708260989,51.764400359866045],[5.986032437316827,51.763820241684776],[5.98558052511758,51.76357187470794],[5.984679508458569,51.76307053704415],[5.984634042301222,51.76304573546437],[5.984202874796122,51.762810515700174],[5.983817186724697,51.76259973665921],[5.983807279372945,51.762594322001995],[5.983160927339966,51.762240995321186],[5.983029000720597,51.76216807613012],[5.98252955679169,51.76189375520403],[5.981837835427291,51.76151571724809],[5.981572836017842,51.761367958003895],[5.98130143285013,51.761217767740156],[5.981085537231804,51.76109828840316],[5.980008206411141,51.760502052440664],[5.979889457768441,51.76043913035126],[5.979884960102821,51.76043636661997],[5.979782346613686,51.76037333585954],[5.979441784448313,51.76018519041057],[5.979209823713911,51.760052701371016],[5.978973999584739,51.759949138826876],[5.978769934940662,51.759860534387414],[5.978532651162793,51.75978360265869],[5.978290125050062,51.75971001369718],[5.978015352240203,51.75973123710305],[5.977783336472807,51.75974679730046],[5.977620611134966,51.759756479979686],[5.977172082401621,51.759749183795556],[5.976858273585421,51.75974056097819],[5.976664087423477,51.75971144388339],[5.976570220609615,51.759695475753475],[5.976383398323163,51.75962903631934],[5.976118281713901,51.759530010753686],[5.976111324716324,51.7595274569864],[5.975873900947145,51.75944041737698],[5.975751529060506,51.759395558489594],[5.975466641437688,51.75928857692954],[5.975420047091421,51.75926766054861],[5.975241374058525,51.75918162812876],[5.974938107486194,51.759036778516986],[5.974604268178531,51.759121345384344],[5.974095109107942,51.75925624482874],[5.973779340033691,51.75909982355277],[5.973538746661812,51.75898235060682],[5.97324073029225,51.75883415355283],[5.973009589690281,51.7587193827791],[5.972541982585238,51.75848990242736],[5.972151081908952,51.75829452675928],[5.972067784616576,51.75825665991126],[5.972018901989934,51.75823220309619],[5.971600931062075,51.758023109205915],[5.971493204953862,51.757969966242335],[5.970816745780611,51.75763465430624],[5.970484939997835,51.75747176034503],[5.969698735267281,51.75708357771901],[5.96882133394476,51.75664997351478],[5.967643916400157,51.756068413171704],[5.966915176402938,51.755710938118845],[5.966856397472159,51.75567895969205],[5.966853626288613,51.755677454320775],[5.965749731655682,51.755133065866254],[5.964438756001666,51.75448790005426],[5.964218152593907,51.75437931622594],[5.964207352767835,51.75437400319113],[5.964074810490968,51.75430876008931],[5.963483738212681,51.754020059163466],[5.963273351767333,51.75391730188631],[5.963265044749598,51.753913243907476],[5.96239816864973,51.75347075826836],[5.96239439392415,51.75346889817291],[5.961508532314949,51.75303312379693],[5.961177211881834,51.75286890689718],[5.960645476744102,51.75260595912155],[5.960523448983976,51.75254562229571],[5.960034141292525,51.75230329981843],[5.959835368581094,51.752203769470626],[5.959586415862885,51.75207912698529],[5.959176545363674,51.751875055018445],[5.958613126920162,51.75159451815608],[5.958336158348685,51.75146073337577],[5.958199895988448,51.75150648437939],[5.957801975579959,51.75163395782571],[5.957164640992483,51.75183426095485],[5.956824842930444,51.75193850038455],[5.956470868923036,51.751720331756985],[5.956145610286598,51.751518921267724],[5.956128547648324,51.751508361576214],[5.956125351233036,51.75150639060869],[5.956097386542946,51.75148916933857],[5.955750865391543,51.751275762293396],[5.955743348411924,51.751271097713214],[5.955262998271865,51.750973297080826],[5.955251088109855,51.7509659122352],[5.955150211865901,51.750905278546554],[5.955134919080717,51.75089607640427],[5.954093186951761,51.750250865532514],[5.952616710606655,51.74933879534818],[5.952271615563924,51.74912561388934],[5.952237903080021,51.749104788016744],[5.952233875095551,51.7491022996133],[5.952154072305114,51.7490528334793],[5.951988271119652,51.748949418621706],[5.952329268126817,51.74873710812141],[5.952537004795733,51.74860791026817],[5.952682685947043,51.748517797453154],[5.952780725176476,51.74846016561047],[5.952900296092619,51.74838855129741],[5.952976748355355,51.7483428615241],[5.953163596645693,51.74817414153064],[5.953235002256594,51.748092116964195],[5.953287975954926,51.74802415871573],[5.953098405840795,51.74766025297555],[5.952974807276279,51.747423001756445],[5.952762478332774,51.747009363413085],[5.952556343290424,51.74661939780688],[5.952535022477668,51.74657732603352],[5.952396540873223,51.746303966774185],[5.952293642204332,51.74612225458653],[5.952284769003499,51.74601375969038],[5.952276647568204,51.745914420579524],[5.952272752196005,51.74583804501028],[5.952269297963888,51.74568815830649],[5.9522675038688,51.74559339984425],[5.952270217398322,51.7455464211717],[5.952332437685025,51.745032690588154],[5.952351185881557,51.74495838104681],[5.952353793165792,51.74494804053557],[5.952392263722608,51.74484556526538],[5.952425832466807,51.74475614534279],[5.952459138820402,51.74468001276903],[5.952485169896942,51.744601065888816],[5.952478212833727,51.74457045721305],[5.952466159398104,51.744553769545654],[5.952435683437828,51.74453674828444],[5.952361709190917,51.74451502904294],[5.952354306212548,51.7445124131047],[5.951952585590886,51.74437064884265],[5.951905791361322,51.74436174193185],[5.951715769682978,51.7443255615247],[5.951550876884753,51.74429566867161],[5.951340003457219,51.744272118238],[5.951009978447184,51.744191910231756],[5.950737214565111,51.74433038891812],[5.95031620898436,51.74414412821836],[5.950238196353783,51.74410961825337],[5.94985483241089,51.743940019708184],[5.949500590986353,51.743783304680804],[5.948543248045766,51.74336320941444],[5.948199214436245,51.74321157407537],[5.948083457265722,51.74316307732061],[5.947350773854875,51.742815495585965],[5.947094615703256,51.74269247014194],[5.946745996569621,51.74259763363605],[5.946504515271695,51.74250436108422],[5.94613442433621,51.742361410261935],[5.945053382691848,51.742102368613565],[5.944556826959191,51.74198310847608],[5.944467314440216,51.741961609196345],[5.944248590961807,51.74188620102644],[5.944104697169522,51.74184967215201],[5.943962151965938,51.741816813041595],[5.943347209220435,51.74175630088046],[5.942965313558589,51.74171872485229],[5.942886842859505,51.74171101986995],[5.94288068332564,51.7417104153851],[5.941015115051083,51.74152723434795],[5.94087522319313,51.74154990865538],[5.94082647199061,51.74155692543855],[5.940708344634113,51.741573932742725],[5.940693410308155,51.741535594899304],[5.940358444422676,51.741590182755054],[5.940207451035667,51.741621483824055],[5.940042660328995,51.74165407225472],[5.939979056273481,51.741673140604036],[5.939826288354665,51.7417203863834],[5.939577117314382,51.7417970568363],[5.939524023501678,51.741814852932585],[5.938366502277034,51.741595300664734],[5.938298685873225,51.74159314779838],[5.937820742728588,51.741578100796],[5.937471144091247,51.741564525504444],[5.937391741859649,51.741549069433134],[5.937286462498496,51.741528575335316],[5.937072735516093,51.74148539951346],[5.936700211127436,51.74131302864455],[5.936133892630099,51.74105735930909],[5.935890720901509,51.74102861120208],[5.935222658763275,51.74112997458908],[5.934958768420876,51.741466484217185],[5.934783302636243,51.74171151627258],[5.93462268414219,51.741876012548325],[5.934601846163313,51.74189489612508],[5.934486763453073,51.74195789567238],[5.93444935431144,51.74196663656421],[5.934367262257906,51.74198129389991],[5.934249724632512,51.74200304690817],[5.933677529444909,51.741919363463545],[5.933144241258891,51.74184285762415],[5.932766959696343,51.74193844722349],[5.932771055658577,51.741951497603914],[5.932750646535055,51.74200714230625],[5.932561024942542,51.74245033706574],[5.932321074978802,51.742753651065485],[5.932197597032544,51.74305604532026],[5.932253024550429,51.74306928839087],[5.932258827424548,51.74317096761154],[5.932307852976082,51.743203215411555],[5.932391455005171,51.743258214294855],[5.932360505978099,51.7432924521296],[5.932331414274981,51.74332462292094],[5.932184883666902,51.743486677238415],[5.932037366317066,51.74364984155489],[5.931957417769708,51.74356644836806],[5.931911420822756,51.743516406856585],[5.931850794313949,51.74354154222262],[5.931153656406447,51.74383054690907],[5.930713299919351,51.744106949991796],[5.930323614666326,51.74426998580418],[5.929948351661683,51.74442846818391],[5.930014644364768,51.744823875886446],[5.930036001894192,51.74495127145745],[5.930065027794073,51.74512440152194],[5.930195798345796,51.74589992648703],[5.930242176919899,51.745926272904825],[5.930249555011184,51.74593533518761],[5.930287621708919,51.745982124264316],[5.93065613770669,51.74643505972484],[5.930738259772271,51.74653518948749],[5.931845206450875,51.74720639764709],[5.932527942009617,51.74762006017001],[5.93314306080745,51.747991535630376],[5.933282514707288,51.74807435407338],[5.933287007096765,51.74807702073264],[5.933323325542342,51.74809858593634],[5.933267164173189,51.748115000215925],[5.933184696960939,51.74813910545784],[5.93020098044205,51.74883029811507],[5.927728006834371,51.749403106522244],[5.927493912653688,51.74945732680013],[5.926993604841471,51.74957320367545],[5.926985965329044,51.74957497366906],[5.926978153958602,51.749576783104864],[5.926948908611662,51.74958355770503],[5.926932777478296,51.7495872903716],[5.926867487700489,51.749602413300714],[5.92683989008139,51.749608805459836],[5.924778104455664,51.750086301284696],[5.924036300346091,51.75025808566431],[5.923278320697809,51.75043282467261],[5.923210269228467,51.75044851548335],[5.923019011338869,51.75049260741007],[5.92218835005621,51.75068409384547],[5.922093941278643,51.75070592041091],[5.92203770332311,51.75071892924242],[5.919442819662546,51.75131892244511],[5.919299678891974,51.75135202136859],[5.919226685840928,51.75136890081341],[5.917610872998856,51.75174247537623],[5.916645533391736,51.751967987461526],[5.916598508276497,51.75197897725085],[5.916522077894343,51.75199683231314],[5.916462877223875,51.75201063654567],[5.916395588618027,51.75202632892535],[5.916211633596815,51.75206940594607],[5.915284896987342,51.75228685848402],[5.915281899217144,51.75229181572285],[5.914239908606404,51.75401198958639],[5.914060549063815,51.754308071499],[5.913785032835897,51.75476305418355],[5.91376187018042,51.75480118002209],[5.913502234272209,51.75522979990151],[5.91340030633348,51.75539807378861],[5.913329470318818,51.75551501884929],[5.913332048292298,51.75570884630741],[5.913360869075528,51.757399210623234],[5.913362867597218,51.757519082506086],[5.913371499489203,51.758036993388025],[5.913372701427906,51.758109031554156],[5.913383148177311,51.75850939044636],[5.913383156874782,51.758510136460366],[5.913393355654962,51.75900102054646],[5.913273086486316,51.75918065905368],[5.913272272149758,51.75918187527002],[5.913101377500326,51.75943712814177],[5.913100436447964,51.75943853368585],[5.91267528965292,51.76007350709025],[5.912674594877933,51.76007454479208],[5.912408282967198,51.76047229622953],[5.912407787506315,51.760473036413046],[5.91222921587856,51.76073946640197],[5.912148092965876,51.76085841624043],[5.912019067319351,51.76105457678646],[5.911491298444433,51.76184344036749],[5.911347432944999,51.7620582099746],[5.911330474837717,51.76208352576557],[5.911114673577279,51.76240566183112],[5.910571386736152,51.76268482978083],[5.909927106000715,51.76301588733984],[5.909919232071134,51.763019933164514],[5.909863616300506,51.763048511420116],[5.909342994336388,51.76331602220222],[5.908709769446731,51.76364137890708],[5.908689319408777,51.76365188587147],[5.908062278716621,51.763974049338024],[5.908034514371336,51.76398832075181],[5.907572403238987,51.76422516416322],[5.907526725101903,51.76425878650966],[5.907367066615542,51.76436374478207],[5.907296230979727,51.76440787847662],[5.907279992747589,51.76441799976789],[5.907251476586602,51.76443872813167],[5.907194457590787,51.76447631968878],[5.907152145793383,51.76450418324771],[5.907131716057519,51.764517648888045],[5.906722723430122,51.76478785256825],[5.906272660429921,51.765087314755036],[5.905405063386457,51.765664400601864],[5.905375878645065,51.76568381912493],[5.905194597061638,51.76589233751941],[5.904675932590601,51.76647979406098],[5.904296189145448,51.766903514315814],[5.903756406935173,51.7675057974864],[5.903724192703381,51.76754168702328],[5.902938177364772,51.76841728366841],[5.902555403931883,51.76884366754984],[5.902169450114648,51.76927217732602],[5.901936080831619,51.76953127333205],[5.901815453017635,51.76966824954593],[5.901036773238492,51.77054335047701],[5.900926685918102,51.770662383291295],[5.900816269810941,51.77078682046977],[5.900794360741625,51.77081151099888],[5.900445902484265,51.77120421721666],[5.900011458793433,51.77168763640026],[5.899933091836564,51.77177571665414],[5.899899875601411,51.77180862348477],[5.899885210237842,51.77182315203606],[5.899624850375063,51.772053966446435],[5.899422051491912,51.772233743330375],[5.898462048890541,51.77312249945795],[5.897531285431462,51.77397230760167],[5.897443273687086,51.77405264403335],[5.897414046228399,51.77407931448818],[5.897400583489043,51.7740919301121],[5.897335649271123,51.77415274172277],[5.895726442764562,51.775678675342625],[5.894779139646245,51.77656933191323],[5.894353085476943,51.77696989054953],[5.893979518361621,51.77732109821824],[5.893909436536469,51.77737725608362],[5.893867325233922,51.77741741742158],[5.893708119368246,51.777569249862644],[5.893652630769198,51.77762559619568],[5.893409337849443,51.77785292504665],[5.892752966500699,51.777960546179806],[5.892307503918945,51.77803729618882],[5.892225090016957,51.778051879254335],[5.891874963057835,51.77811383606629],[5.891635435805582,51.778163216466595],[5.891305708400201,51.77822205374805],[5.890859772966445,51.778288049958334],[5.890375256237209,51.778360007696726],[5.890130969983542,51.778398709057605],[5.889886318148505,51.77842934874016],[5.88982207988921,51.77843847431732],[5.889483173835612,51.7784866170716],[5.889134812583618,51.7785134658887],[5.888943437292683,51.77853185238019],[5.888601950820029,51.778564661959],[5.888361512252093,51.77859254791209],[5.88810279578108,51.778596512028116],[5.887823638748578,51.77860753259301],[5.887323131431215,51.778627291912755],[5.886830333728659,51.778605276982084],[5.886374639856982,51.77859045463139],[5.88632597515804,51.77858346201114],[5.886156470495578,51.778556633676736],[5.886094556580748,51.778557067967455],[5.885756318667258,51.7785115237703],[5.885704231331617,51.7785042578148],[5.885501768086652,51.77848068681548],[5.88535734230974,51.77846387273304],[5.885108294221435,51.778426064289036],[5.885012756683485,51.77841155802241],[5.884809967825173,51.77837547604494],[5.884514030905902,51.778315492856294],[5.884394760009064,51.77828932075212],[5.884341965941432,51.77828099654085],[5.884337169583199,51.77827981601058],[5.884166719523267,51.77823785748355],[5.883621511285443,51.77812989597275],[5.883349069237013,51.77805433206599],[5.882551210582696,51.77783303731735],[5.881316063498333,51.777578166283824],[5.87986588807059,51.77724322898453],[5.879506029585603,51.77716011090988],[5.878626019579677,51.777021460662446],[5.878442601122107,51.776981394452235],[5.878284383337746,51.77694683124235],[5.875668771849356,51.776650521947985],[5.875082234133474,51.77658406733979],[5.87487571533531,51.7765606665905],[5.874873365052007,51.77656039862201],[5.873920530492282,51.776451749294715],[5.873439173132962,51.77640743794012],[5.873436446685806,51.77640722183907],[5.872577325767751,51.77633900244107],[5.872574570301796,51.77633878194587],[5.870345897230936,51.77616014438529],[5.870343054860669,51.77615992509475],[5.869465242578457,51.77609222196918],[5.869142354681839,51.77587023844949],[5.868860987133695,51.775571285292685],[5.868222941428128,51.77553814884504],[5.868220070876649,51.775537999729494],[5.867893277531418,51.775521020724334],[5.867646684894916,51.77490000621851],[5.86745502281073,51.77441732459822],[5.867452070155079,51.77431010331531],[5.867449231267453,51.77420703427434],[5.867449212499967,51.7742063602101],[5.86744720580322,51.77413355220101],[5.867443007627958,51.77398146518305],[5.867441966816228,51.77394358271489],[5.867441822664989,51.7739382081534],[5.867441471515362,51.77390794514875],[5.867440985370135,51.773867723385116],[5.867440965371961,51.77386584486037],[5.867440957525788,51.773865107831504],[5.867440631159858,51.77383717275922],[5.86743699836951,51.77352995005315],[5.867436991863046,51.77352933885846],[5.867439995873086,51.773373267361144],[5.867437257541269,51.773373275883564],[5.86738205618641,51.77337344180711],[5.867279245614172,51.77337376405427],[5.86729058604869,51.773086075042286],[5.867271819693856,51.77295370562705],[5.86717294461278,51.77225617661098],[5.867163761990916,51.77219137979913],[5.867145829014766,51.77206482253208],[5.867080289532109,51.77106801789437],[5.867080249804978,51.77106741582406],[5.867088724096375,51.7698604972491],[5.867103907381847,51.76968615603686],[5.867184304677761,51.769170441177764],[5.86731617099401,51.76839983371978],[5.867395991953877,51.767784123317256],[5.867402168637005,51.7676961270249],[5.867415439205956,51.76750695345675],[5.867457156224146,51.76741793065929],[5.867517146468503,51.76728993049468],[5.867565695302389,51.76717588248504],[5.867744627607859,51.766878283965845],[5.867844356050081,51.766717851770444],[5.867937513531436,51.76654989605028],[5.868034313918367,51.76622902096881],[5.868037014236967,51.76622004829953],[5.868061569731972,51.76609911438724],[5.868078667336322,51.76584387708201],[5.86807954312847,51.76583090300073],[5.868068791412476,51.7657463737795],[5.868030628736157,51.7654464114083],[5.868027619897677,51.7654227568803],[5.868080072354964,51.76526887329913],[5.868103029079622,51.76520459181468],[5.86811794438756,51.76509260509097],[5.868147651422212,51.76502015226361],[5.868197466327968,51.764887995800514],[5.868192451563912,51.76484155452389],[5.868361749625847,51.76433998116945],[5.868441203516259,51.76417268347748],[5.868573255770404,51.7638954193933],[5.868592074705297,51.76385619692088],[5.868730776131994,51.76363749276518],[5.86898042569738,51.76327114473177],[5.869029064527226,51.76319516941629],[5.869116523377837,51.76305855403108],[5.869244778740368,51.762860475991566],[5.869173222975538,51.76275770744657],[5.869172929820251,51.762757385064],[5.869162434940429,51.76274585095709],[5.868629294026595,51.76195847804649],[5.868527022717805,51.761799135431865],[5.868462866500313,51.76171484350833],[5.868396826056848,51.761644006174144],[5.868298269851148,51.761563972160566],[5.868224043909484,51.76151470492461],[5.868109920684662,51.7614092161202],[5.867868410511631,51.76118220305488],[5.867607120125401,51.76093514518885],[5.867306123964032,51.76064128417488],[5.8671850705525,51.76051299191574],[5.867057140876073,51.76036321805846],[5.866969410403744,51.7602382587133],[5.866894828161294,51.760108796146156],[5.866779446285499,51.75994012160847],[5.866655634359008,51.75978091044771],[5.866448424314011,51.75954426220588],[5.866241331336964,51.75931297929109],[5.866142396196675,51.75921277468419],[5.866098647063838,51.75917944411068],[5.866056496059006,51.759148611204346],[5.866056183654425,51.75914838147482],[5.866054926784687,51.759147461687434],[5.866049896884087,51.75914573845886],[5.865970333771462,51.75911842370185],[5.86595653593208,51.75911624191849],[5.865823359945678,51.759095177398315],[5.865685133339927,51.75907725237998],[5.865605669460087,51.75906609840641],[5.865599738504436,51.759047417419566],[5.865586788691285,51.759006626254916],[5.865592630837106,51.75897566377413],[5.865712142734921,51.75891840408298],[5.865696466091288,51.758902810016565],[5.86569056960537,51.75889694478589],[5.865689320915988,51.75889570227177],[5.865508679612503,51.75871602126176],[5.865507966713046,51.758715312277246],[5.865454709987293,51.758662336215245],[5.865224400744959,51.75843324148544],[5.865175814338405,51.75838491041156],[5.864853325099848,51.758064113847695],[5.864468921821136,51.75768172186205],[5.864184679064825,51.75774250927165],[5.863721659491119,51.75784171212704],[5.862275873990394,51.75809027335405],[5.860830072517415,51.758338816763036],[5.859384349111981,51.75859633053423],[5.85845889724826,51.75874387268963],[5.857938327907164,51.7588268619437],[5.856491637632994,51.75899445824689],[5.855044657034287,51.75913507215363],[5.853597295813077,51.7592397154654],[5.85214965002547,51.75931737635272],[5.850701445328075,51.75934109023622],[5.849252870958241,51.759328833470065],[5.847803838643294,51.75927161784443],[5.846354535606713,51.75918741972319],[5.844946766842065,51.75906199974661],[5.844904782133825,51.75905826270233],[5.843454855165186,51.758911111348006],[5.842415951662641,51.758812088827895],[5.842367556513619,51.75880747692203],[5.842005028174086,51.758772930245534],[5.840555300294751,51.75864371940001],[5.839945962018988,51.75859317750103],[5.839105670661551,51.758523478816365],[5.837656048696447,51.758403220296536],[5.836206523824352,51.758291932045225],[5.834757095179937,51.758189614067305],[5.833307673051958,51.758087278159934],[5.831858345998937,51.757993912532434],[5.830409113155832,51.757909517189496],[5.828959885677925,51.757825103923686],[5.827659490127247,51.75775739840989],[5.827510751257599,51.75774966094875],[5.826061621627645,51.757674200054126],[5.82461258390313,51.75760770945658],[5.823163463569141,51.75753221272443],[5.821714348029422,51.75745669807291],[5.821597477143639,51.75745061467541],[5.820265237285275,51.757381165502196],[5.818816131337999,51.75730561501237],[5.817366773177844,51.7572030819315],[5.815917421549524,51.75710053092293],[5.814467991361618,51.75698897375981],[5.813018483481859,51.75686841043787],[5.811568898778082,51.75673884095277],[5.810119238118212,51.75660026530033],[5.808669502370271,51.7564526834762],[5.807430710601979,51.75632655609761],[5.80721977605043,51.756305083710515],[5.805936772960821,51.75615068626925],[5.805769809082718,51.75613050129558],[5.804319936349556,51.75596488916809],[5.802869908642243,51.75578128261579],[5.801419645204833,51.75557069338918],[5.799969313046094,51.75535109795901],[5.798518667295496,51.75509553158986],[5.797067874673766,51.75482197075377],[5.795616936918567,51.75453041544166],[5.794260855806528,51.7542746735749],[5.794166179946248,51.754256818638375],[5.792714955979898,51.753929274353105],[5.792417262668015,51.75386944288876],[5.791264074887332,51.75363766507469],[5.790534392359943,51.75350905438373],[5.789813533195579,51.75338199082266],[5.788363167659696,51.75314427510645],[5.78691297654521,51.75292451793561],[5.78546303742686,51.7527317075773],[5.784013347704262,51.75256584404508],[5.782563904778118,51.75242692735223],[5.781114627608001,51.75230596924961],[5.779665592616143,51.75221195800912],[5.778216875071055,51.75215388190785],[5.776768393935412,51.75212275269577],[5.77531999203838,51.75210059384987],[5.773871976516395,51.75212335844811],[5.772735579932528,51.752162383119874],[5.772424189623986,51.75217306996938],[5.770976475921741,51.75223175188271],[5.769529062955019,51.75232636900751],[5.769298624789188,51.7523471561234],[5.768972315116666,51.75237659654929],[5.768081947270307,51.752456921357314],[5.766634974294321,51.75260543239672],[5.765188292848188,51.75278987868241],[5.763741899482294,51.753010260226496],[5.762295716050208,51.75325758876339],[5.760849814378026,51.75354085257948],[5.759404042772195,51.75384207512741],[5.757958621021506,51.75418822125169],[5.756513324171581,51.75455232612255],[5.755068297027952,51.75495236630733],[5.753623536149489,51.75538834181475],[5.752179110786404,51.75586924093604],[5.752177666709077,51.75586976676768],[5.750735089044635,51.756404051964424],[5.7492913215349,51.75697479834225],[5.747847948484981,51.757599456645174],[5.747491244325468,51.75779408548897],[5.746405823294545,51.75838588630275],[5.745238629944573,51.75914449280454],[5.744375281780675,51.75986620777457],[5.743931487620187,51.76024348576778],[5.74348161268257,51.76063123416448],[5.74270700796554,51.761381349064024],[5.741887596662724,51.762174820047264],[5.741068156573661,51.762968285259966],[5.740248687696839,51.763761744701725],[5.739429190030743,51.764555198372],[5.739078950493541,51.764966305699225],[5.738926918118519,51.765144743286875],[5.738589158275635,51.76554116939157],[5.737957718689677,51.76628936666088],[5.736344925135136,51.7681598250265],[5.736340890489173,51.768164511061514],[5.735626842086093,51.768976499088076],[5.735612797069428,51.76899252237777],[5.735552739372181,51.76906103140481],[5.73464696915096,51.769962569068056],[5.733596285082034,51.770864527972805],[5.732024950801176,51.77189384909074],[5.730580724815995,51.77250031782573],[5.72974545338,51.77285104782119],[5.729136459991673,51.77310676876538],[5.727691342124932,51.77360534249814],[5.726245651793799,51.77403199214182],[5.724799328613761,51.774377729394324],[5.723352313357507,51.774633565948704],[5.721904814757056,51.77482646664212],[5.720456838860284,51.77495643145573],[5.72005155564735,51.77497015801959],[5.719008259473157,51.775005483790906],[5.717559216053969,51.774991600200856],[5.716109911303135,51.774941745537554],[5.714929672322477,51.77490113405579],[5.714660609715333,51.77489187295835],[5.713211636133859,51.77488692393179],[5.711763244951001,51.774962851652475],[5.711230023589208,51.77503386190299],[5.710315685950936,51.77515560932845],[5.708868691485979,51.77542924380742],[5.707422317605922,51.77579274340635],[5.705976619218562,51.77625509644199],[5.704531966308474,51.77687023271921],[5.70381878966618,51.77724068870212],[5.70308821834257,51.77762017566096],[5.702309402220872,51.77814360321845],[5.701199919330382,51.779045427434944],[5.700207503263245,51.78011770923107],[5.699930352481472,51.780488288370776],[5.699661898242659,51.78084723055385],[5.699073982976921,51.78174764261225],[5.698500535870089,51.78264801316338],[5.69791257402259,51.783548419252355],[5.697339080910686,51.7844487839764],[5.696620640301895,51.78534952846926],[5.696500634102808,51.78546690186919],[5.695699272472304,51.78625080265698],[5.694459633404035,51.78724278867965],[5.693247706310292,51.78805491997186],[5.692021591227121,51.78876224316197],[5.691572972010889,51.78902104487127],[5.690128317826118,51.78972588621795],[5.688682716831736,51.790295885325364],[5.68723654087844,51.79078497194815],[5.685789797724367,51.79119314607313],[5.684342435888278,51.79151141938864],[5.682894640883259,51.79176675676715],[5.681446418759943,51.79195915819379],[5.679997775573224,51.792088623652624],[5.678548833568773,51.792173129725654],[5.678104720539449,51.79220178223981],[5.677099943904983,51.79226660620333],[5.675650990685056,51.79235107648526],[5.674202089231173,51.792444517173166],[5.674103353063226,51.792449657565996],[5.672753067862002,51.79251996336034],[5.671304041611177,51.7925953916494],[5.669855292288416,51.79271574356351],[5.668407039860848,51.79291697233573],[5.666959388116629,51.79321705459643],[5.665512438547652,51.793633966977396],[5.664066290355249,51.79418568610943],[5.663959776946273,51.79423760316014],[5.662621040456712,51.794890188619654],[5.661826413066305,51.79532349776431],[5.660208338278042,51.79622612061988],[5.659900899871597,51.79642209193056],[5.658793146749133,51.79712825110467],[5.657493871237826,51.79803009712847],[5.656354009340579,51.79893156269781],[5.655286587688138,51.7998328513937],[5.654335102995002,51.80073386609737],[5.654219857270385,51.80084820076734],[5.653816521709292,51.80124838462823],[5.653427073522163,51.80163477425729],[5.652562501882139,51.80253557688087],[5.651741390686945,51.80343627492753],[5.651050734228191,51.804336673567605],[5.650461542532568,51.805236840215954],[5.649901325722949,51.806136938855374],[5.649399084504246,51.80703690505278],[5.649213359737852,51.80740119839704],[5.648940322580959,51.807936771920126],[5.648496042434775,51.80883660459733],[5.648095245639344,51.809736338722495],[5.647650930946962,51.810636168031614],[5.647264602274248,51.81153586693885],[5.646849255765219,51.812435628714645],[5.646574802955751,51.81303016343936],[5.646433892703718,51.813335388935215],[5.645887996871334,51.81423543560871],[5.645327048779199,51.81493701271994],[5.645168054157602,51.81513586263853],[5.644216044575057,51.81603679398846],[5.643031954165216,51.81693822401907],[5.64213584072048,51.817479479998504],[5.641007758660529,51.818039208180416],[5.639560577913937,51.81859961258973],[5.638112610045765,51.81902517470343],[5.63666391780907,51.819324882801126],[5.635214760805262,51.819543678345404],[5.633765048414665,51.81966358472613],[5.632314741255573,51.819675613622984],[5.630864141516973,51.819633694801595],[5.630395531017967,51.81959693429321],[5.62941315772933,51.819519851647506],[5.627962133193599,51.81939700224451],[5.626511116540324,51.81927413489178],[5.625060202712891,51.81916922619454],[5.6236109476291,51.8191413987031],[5.622159708226214,51.81921102747886],[5.620710204581522,51.81937571411091],[5.619261153466745,51.81963026589161],[5.617812960464265,51.820055577583396],[5.616365380448669,51.82060670767459],[5.615168890958762,51.82116646415416],[5.614918401324536,51.821283656170344],[5.613471514207103,51.821987551710194],[5.61264734378966,51.82239361679575],[5.612024626754497,51.822700417681915],[5.610577604337992,51.82339528916806],[5.610470440621243,51.82344474064692],[5.609130404382521,51.82406317786232],[5.607683073489924,51.824713072069095],[5.606235394764126,51.825300030260145],[5.604787504562191,51.82585101734972],[5.603339449489544,51.82637502164142],[5.601891274999814,51.82688103143913],[5.60044285510798,51.82734208182311],[5.599895499299763,51.82750609818439],[5.598994278705914,51.82777614940234],[5.597976692088266,51.828049440964435],[5.5975454644009,51.82816525756121],[5.596096583345335,51.82854535952246],[5.594647429319177,51.82887151374943],[5.593198130905209,51.829170685158196],[5.591748649863648,51.82943388543748],[5.590298746358089,51.829607184733085],[5.588848469322524,51.829699571339496],[5.58739778659529,51.829702056932234],[5.585946746542305,51.82962362980216],[5.58562883630976,51.829582830635005],[5.584495238805568,51.829437324996704],[5.583043469331632,51.82918808404559],[5.581591677085675,51.82892983680734],[5.580139978506952,51.82868954822082],[5.578688218925305,51.828431265033366],[5.577236627739599,51.82820891713296],[5.576713372663386,51.828141712989314],[5.575785201473005,51.82802250453024],[5.574333974013367,51.82788101555234],[5.572883015165344,51.82780242684632],[5.571432171711054,51.827750785153306],[5.569981587027653,51.8277620437551],[5.568531037803616,51.82778227274691],[5.56708041542235,51.8277845071701],[5.566456706656848,51.82778932737052],[5.565629828503109,51.82779571198325],[5.56417924084125,51.827806898866775],[5.562728652438105,51.827818067820694],[5.561278063295001,51.827829218845004],[5.560898308709501,51.82781474360262],[5.56051926548207,51.82779431847313],[5.560141178968893,51.82776795658417],[5.559764291636989,51.82773567466609],[5.559388841613147,51.82769749305411],[5.559015072841235,51.82765343657207],[5.558694642447517,51.82761079745902],[5.558375789029375,51.82756384074981],[5.558072773227395,51.82751128460594],[5.55777216582405,51.82745366192429],[5.557474189014743,51.82739101464593],[5.557179059208743,51.82732339011557],[5.55687002290757,51.82724643706027],[5.556564676329635,51.8271640228176],[5.556263270782954,51.82707621716324],[5.555966054667745,51.82698308987914],[5.555717225626336,51.82689991883516],[5.555471734460375,51.82681302128625],[5.555173944163427,51.82670156372842],[5.554882015877948,51.82658430312521],[5.554596246027376,51.826461356844625],[5.554316923794794,51.8263328485588],[5.554044328221504,51.82619890824787],[5.553778736910226,51.82605967218743],[5.553520415857576,51.825915279367166],[5.553269626723458,51.82576587597473],[5.553026621018717,51.82561161270706],[5.552791645907358,51.825452644762066],[5.552564936960397,51.825289133646116],[5.552335567003383,51.825117071602236],[5.5521149108699,51.82494068962153],[5.55190317656796,51.824760157340904],[5.551700570653425,51.82457564709531],[5.551507285182071,51.82438733573354],[5.551323507866806,51.824195405502536],[5.551149413358495,51.8240000395653],[5.550985167614313,51.823801426488664],[5.550830930779478,51.82359975484597],[5.550686848510922,51.823395220419926],[5.550562165255434,51.82315562029186],[5.550219439330419,51.822497033608045],[5.54972304031155,51.82159888504966],[5.549255669007079,51.82070069418911],[5.548628776017416,51.819802721171314],[5.547697337082956,51.81890516210043],[5.546737597917252,51.81819639010846],[5.546506771418391,51.81807533392077],[5.546483595835553,51.818063177169485],[5.546378615731343,51.81800812212213],[5.545284600185918,51.81743434620427],[5.543832402034952,51.81688800439513],[5.542380920617961,51.81653938807783],[5.540929860603062,51.81630760223145],[5.539479301898298,51.816219611913795],[5.538029170393707,51.816257440466806],[5.536579394301718,51.816403111222094],[5.535645083011738,51.81657232704917],[5.535129992753075,51.81666561253505],[5.53368112995287,51.81709887447559],[5.532232152415183,51.81750515348238],[5.530783177407982,51.817920402929886],[5.530313156697719,51.81802883832693],[5.529333920277939,51.818254739378766],[5.527884304552705,51.818481197793446],[5.526782600353567,51.818578133381855],[5.526434368435162,51.818608766510394],[5.524984148977279,51.818646433863876],[5.523533899856768,51.81867509494948],[5.522083648875698,51.81870373811148],[5.520633529255093,51.8187773050801],[5.519183747498383,51.818967702630765],[5.517734318401968,51.81928391911816],[5.516545516104009,51.819661310801145],[5.516285281390573,51.81974393123779],[5.514836750054227,51.82039268071511],[5.514214072690573,51.820743903781626],[5.512954737148972,51.82164409912695],[5.511999947223187,51.82254395691208],[5.511074128889183,51.823443776184256],[5.511040958639662,51.82347629520847],[5.509236886759504,51.82524337745453],[5.508078866163164,51.82614341428073],[5.506659690976798,51.827043706035575],[5.505339347277545,51.82778315996463],[5.505051877059485,51.82794417033515],[5.503255204412167,51.82876390437047],[5.501805852029322,51.82927766733107],[5.500356308333113,51.82972849399245],[5.498906534754253,51.830098407677106],[5.497456539096187,51.83038740838564],[5.496912517129702,51.83046884116739],[5.49600635090518,51.8306044844562],[5.494555934221633,51.83073165920573],[5.493105255403159,51.830750955946904],[5.491654366613007,51.83068035134976],[5.490203255955611,51.83051085706054],[5.488751973573829,51.83026044974625],[5.487300467282557,51.82990216436315],[5.485848688376993,51.829409035855655],[5.48467736071018,51.82891856861625],[5.484541890832777,51.82886183885271],[5.482987769090498,51.827964283663896],[5.481839878258899,51.827066380377055],[5.480953136620545,51.8261682570921],[5.480211484915162,51.82527001192337],[5.479672935147903,51.82437160183767],[5.479293960539799,51.823473063851594],[5.479045542368643,51.82257442226183],[5.478797134115906,51.82167578004673],[5.478548735780914,51.8207771372065],[5.478300347362991,51.81987849374123],[5.478150291067967,51.8194764796755],[5.477964948258645,51.818979917114795],[5.477484531090877,51.81808145131083],[5.476931618807398,51.817183039015006],[5.476146687502384,51.816284800459954],[5.475173257870792,51.815386698314576],[5.474214664556845,51.81464137936739],[5.472762802439524,51.8137705767088],[5.47239062242708,51.8135910805276],[5.471311315701542,51.81307053490165],[5.47116392907884,51.81301221622507],[5.469860105250099,51.81249631218077],[5.468409158919401,51.81204790858415],[5.467758512923557,51.811875026160635],[5.466958352998534,51.81166240557939],[5.465507712702096,51.81135777991516],[5.465041719137044,51.811280125464],[5.46405719950318,51.811116054872606],[5.462606731987862,51.810892288623414],[5.46115630842135,51.81068648117075],[5.459705927069013,51.810498632517735],[5.458255614596301,51.810346719405665],[5.456805339712029,51.81021276510042],[5.455355114303641,51.81010575797429],[5.453904855775511,51.809971767809046],[5.45245464499053,51.809864724825346],[5.451004453839306,51.80976665228458],[5.450508291208059,51.80973616351762],[5.449554281455572,51.809677550187814],[5.448104126973084,51.80959741853599],[5.44665403707146,51.809562210817205],[5.445203961025561,51.809535973547234],[5.445199480470263,51.80953602969872],[5.443753943202188,51.80955466021521],[5.442303935189525,51.809582317334716],[5.44085395758167,51.80963692165089],[5.439403997337187,51.80970948479224],[5.437954083178594,51.80982697187678],[5.436993560973868,51.809910742992194],[5.436506955157236,51.80995318555501],[5.436504171319853,51.80995342941494],[5.435054299190239,51.81012481089661],[5.433604462455353,51.81034111632122],[5.433321742556791,51.81039730666941],[5.432154683768303,51.8106293108041],[5.430704948810716,51.81098177220153],[5.430703629544814,51.810982096274046],[5.429255222290944,51.811367436695136],[5.427805512841108,51.81179939135014],[5.426355877523182,51.81234817689658],[5.424906289966619,51.812995816575],[5.423756679562653,51.81361637967582],[5.423456769685312,51.813778263844505],[5.422432250678149,51.814464740665386],[5.422007345517979,51.81474944888444],[5.421239239692533,51.815414814703814],[5.420282750886021,51.81631392656281],[5.419442246945429,51.817212998548044],[5.419181437798083,51.817512652586345],[5.41865972214409,51.81811204879951],[5.418122703682358,51.818729009970355],[5.417877166125011,51.819011093738126],[5.416949541422448,51.81991017042357],[5.41577531109982,51.82080930032361],[5.414885524437903,51.82129018558508],[5.414760365859587,51.82135783467838],[5.414451144036498,51.821490260973235],[5.413310290434888,51.82195140025342],[5.411860053036021,51.82232023883962],[5.410409717308696,51.82254524571086],[5.409281609960071,51.82260838349928],[5.408959297138034,51.822626420874684],[5.408234057612294,51.822608577386156],[5.407508818660325,51.82259072941544],[5.40605828557287,51.8224201946061],[5.404607700384262,51.822087851350126],[5.403157085150895,51.82161167635045],[5.401706421582189,51.82089279758487],[5.400502291573295,51.81991321022742],[5.399689829322393,51.81901446411924],[5.399185145022453,51.81828742155376],[5.399065940689504,51.81811569311385],[5.398903473964378,51.81788694673288],[5.398427574059452,51.81721692010267],[5.397803735481924,51.81631814219176],[5.397136414876928,51.81541936461954],[5.396392667609534,51.81461089633139],[5.396275831242741,51.81448738650299],[5.395573659945885,51.81379676248219],[5.395395805223395,51.8136218274243],[5.394409540974377,51.81272305634441],[5.393238454451957,51.811817078116746],[5.391967243320247,51.810912979912025],[5.390623116356676,51.81000895997289],[5.389304840158614,51.80912229857389],[5.389279652296952,51.809104591956746],[5.387993343075027,51.808200810230694],[5.387830549867278,51.80809130604373],[5.386767316939314,51.80733026247071],[5.385607369411431,51.80643141620497],[5.38450546462466,51.80553255964268],[5.383490596774634,51.804633695299394],[5.382577259200205,51.80373482598585],[5.381736449318128,51.80283595276609],[5.380968162790606,51.80193707719943],[5.380170911538835,51.80103819481328],[5.379344697295026,51.80013930501713],[5.378562007287753,51.79924041245897],[5.377754670698527,51.79836197919309],[5.377735858052215,51.798341511144294],[5.376880748708716,51.797442601410964],[5.376011177221469,51.79654368398929],[5.375054664738739,51.79564475117506],[5.374025712114388,51.7947458024504],[5.373468647677194,51.79425214180175],[5.373011295872947,51.793846846341985],[5.372706979954086,51.79357379612207],[5.372430200580287,51.79332544864003],[5.37237229474295,51.79327324581643],[5.372011415145147,51.792947883226596],[5.371098542998888,51.792048923347224],[5.370243685233846,51.79114996458756],[5.36924451548256,51.790136258795464],[5.369269347299153,51.79009109586881],[5.368650023287668,51.7893520463388],[5.367911214479875,51.788453088426074],[5.367186928460048,51.787554128222105],[5.366549629629648,51.78665517867765],[5.36591235619658,51.7857562255789],[5.365318585588096,51.78485727698624],[5.364782807390583,51.783958336311265],[5.364261542440774,51.78305939591296],[5.364243617996543,51.7830266836294],[5.364015409504406,51.78260993664509],[5.363628628750964,51.78190360518045],[5.363335005418723,51.781261531382334],[5.362944219755907,51.780362611144355],[5.362538958917996,51.77946368648673],[5.362191676044615,51.778564772633096],[5.361873387337788,51.77766586388281],[5.361584091064441,51.77676696047193],[5.361323785491677,51.775868062615075],[5.361106958186977,51.77496917371022],[5.360933606551928,51.7740702939986],[5.360829541106328,51.77353066038607],[5.360804189593419,51.773399235122326],[5.360760261819518,51.77317141393991],[5.360615900857994,51.77227254006756],[5.360529498226944,51.77137367904308],[5.360472074748782,51.770474824432895],[5.360443628692018,51.769575976279626],[5.360429671045172,51.76867713131751],[5.360444687934309,51.767778292838514],[5.360503164331628,51.76687946411104],[5.360517826906693,51.76665410975411],[5.36052861545511,51.766488248870026],[5.360561638396788,51.76598063526385],[5.360634596256208,51.76508180956034],[5.360693065369087,51.7641829804669],[5.36066461885404,51.763284131734736],[5.360563747163914,51.76238526657301],[5.360439022674972,51.76192900386806],[5.360318029762705,51.76148636831061],[5.359927475303396,51.76058743603764],[5.359290701670333,51.759688444353145],[5.358509112324184,51.75878941396371],[5.357568232099948,51.75789033833342],[5.356424619927304,51.75699120228862],[5.356198513323713,51.756848892125845],[5.355338834812132,51.75630779298655],[5.35389101188593,51.75561528332623],[5.353514438136346,51.755477248754424],[5.35244310940976,51.75508454748151],[5.350995190749908,51.754616712739896],[5.35056980176478,51.75449246889199],[5.349547264782029,51.754193802247705],[5.348099342687055,51.75379783914782],[5.34710838856664,51.7535391332524],[5.346651429911721,51.753419835011854],[5.345203516400212,51.75306877827356],[5.344697125494929,51.75294914015874],[5.343755616791475,51.75272669207171],[5.342307748029578,51.75237559954347],[5.34085991097959,51.7520155006888],[5.340344760399595,51.75187457366118],[5.339412134946625,51.751619430210305],[5.337964394083879,51.75121435340383],[5.336516659087625,51.75082723556811],[5.33601163705123,51.75069219025121],[5.335068948918502,51.7504400998389],[5.333621274209319,51.75004395778335],[5.333003674952699,51.74987495273136],[5.332173624904479,51.74964779783504],[5.330726034629246,51.749224654693215],[5.329278505975971,51.74877452835637],[5.327831006184235,51.74832438412591],[5.327683135504199,51.7482861623986],[5.326919555473629,51.74805469841526],[5.326413961111442,51.747894237024205],[5.324936080826689,51.74743303042188],[5.323488667333625,51.746982832515144],[5.322041295639219,51.74652362828232],[5.320594045949352,51.74600148711015],[5.319505307823637,51.74559513551481],[5.319146856751371,51.74546135117262],[5.317699757370425,51.7448852435964],[5.316252779433214,51.74425518750497],[5.314805928117865,51.74357118289241],[5.313359135290241,51.74287817193959],[5.311912401812172,51.74217615464628],[5.310856661125005,51.741690096980285],[5.310466983349599,51.74151068528827],[5.310465652358494,51.741510073204196],[5.309018930052068,51.74085296230304],[5.30757223402932,51.740204821945106],[5.306577339785923,51.73976526407986],[5.306125563426768,51.73956565213244],[5.304678933768709,51.73892646442742],[5.303232361729653,51.73827827039083],[5.30197228417291,51.73778413019285],[5.301785678544089,51.737710954427826],[5.300338755694263,51.73728743563125],[5.298891579371753,51.73700771400806],[5.297444260546101,51.73680887047498],[5.296493613334878,51.73674911266396],[5.295996737103852,51.73671787035064],[5.294548869864548,51.736797632707614],[5.293100791930296,51.73697625000926],[5.29165247481246,51.73726271067851],[5.290203811796297,51.73770195688489],[5.288754944616158,51.73822208109193],[5.287306024235917,51.73875117578513],[5.285857230986522,51.73920834503996],[5.284408612636094,51.73957561200403],[5.284075454654821,51.73963528175267],[5.283222727308519,51.739787989348436],[5.282960219258655,51.73983499982822],[5.281512040238079,51.73999549696724],[5.28006402122955,51.740084068737715],[5.278616061279121,51.74014565731561],[5.277168162981539,51.74018026270435],[5.275720373232468,51.74016990804268],[5.274272629038579,51.740141558632004],[5.272825000309531,51.74006824917904],[5.271377514381312,51.739940991256844],[5.269930083228187,51.73979573859525],[5.268656980163524,51.73966005518023],[5.268482684988477,51.739641479627],[5.268431464256541,51.739635063975214],[5.267035368283642,51.73946023749127],[5.266128317362795,51.739295913066876],[5.265588280701965,51.739198081606055],[5.264141503374875,51.738828046683295],[5.262695120880444,51.738323167432505],[5.261249171181588,51.73767445541939],[5.259803440226278,51.73696280651615],[5.258357857235691,51.73621518601285],[5.258005075761272,51.73604590495239],[5.256934703914104,51.73553257703232],[5.256912166757478,51.73552147822601],[5.255466311268855,51.73489966002537],[5.254019966306559,51.73445759260121],[5.252573489151118,51.73406943790744],[5.251126793510653,51.733762161239255],[5.249679734986312,51.73358070475124],[5.248232025343669,51.73361495274409],[5.246783783361804,51.73381996303117],[5.245335048993126,51.734177758716164],[5.244678595144865,51.73442123358064],[5.244621158350944,51.73444253835867],[5.243885722082073,51.734715305043835],[5.242435929149838,51.735387659817185],[5.24242969320643,51.73539109470371],[5.240987992190483,51.73618456107089],[5.240985686249361,51.736185834558746],[5.239535010580404,51.73710084079035],[5.238084276144887,51.738015828951276],[5.23663372235705,51.73885889166177],[5.235183477024351,51.739594075267135],[5.233733459040825,51.740248345069325],[5.233035957431377,51.74054577556374],[5.232283522239402,51.74086664319226],[5.23213158113001,51.74092297088642],[5.231000585882127,51.74134221135246],[5.230833825505543,51.741404027558815],[5.230227646342471,51.7416099526392],[5.229384251151838,51.74189645186338],[5.227934961817482,51.74229897404006],[5.226485774467528,51.74266552460617],[5.225036789282655,51.742969138328654],[5.223588012324944,51.743209815224134],[5.222139449654626,51.74338755530818],[5.220691140433728,51.74349337018301],[5.219243091583157,51.74352725986375],[5.21779520898095,51.74351618959733],[5.217108429992626,51.74348534519724],[5.217112878638113,51.74350365215152],[5.216121836143171,51.74343777285026],[5.215415005558894,51.743372688190334],[5.215009939775276,51.74332219041316],[5.213868990618055,51.74314209824524],[5.213453141291609,51.743072865173254],[5.212838406064231,51.74297051831461],[5.211547756321044,51.74270230972515],[5.210485081531356,51.74245901398714],[5.209878036741463,51.74230826928123],[5.207140510699912,51.741601695832315],[5.207020307784969,51.741576604230914],[5.206947338353789,51.74156137353204],[5.206494248095395,51.741477182592035],[5.20484623481752,51.741201400935736],[5.204239782920512,51.74109899481932],[5.204178052482733,51.74109042239841],[5.202759995665076,51.74089340327885],[5.201146418636126,51.740682933867106],[5.199984523258194,51.74054175497995],[5.198985004075166,51.74043992505105],[5.198732899877883,51.740414244691635],[5.198261257139321,51.740372498533226],[5.197856321901113,51.74033981967597],[5.197201827543535,51.740299940169415],[5.196653266090936,51.740271608539196],[5.196195502228028,51.74025943068923],[5.195524437207143,51.74027318496779],[5.194683982433609,51.74030259406466],[5.194205102479588,51.74033954968871],[5.193390084270653,51.740436404868355],[5.193238696376107,51.740457403368644],[5.192772261406748,51.7405221031429],[5.191356198436472,51.74074260742808],[5.190749194391736,51.74085230332901],[5.190417463255723,51.740922657289886],[5.188538146551872,51.741368310550705],[5.188030130409526,51.74147833077279],[5.187691774049856,51.741545322064155],[5.187445929235309,51.74159399866097],[5.186319463136218,51.74180568582453],[5.185699855264436,51.74191755415792],[5.184776273394001,51.742046386582864],[5.18185069646051,51.74246280646085],[5.181601912274235,51.74249947504446],[5.180146449092836,51.74268242782299],[5.178690936079397,51.74281397537145],[5.177260143467661,51.7429177477661],[5.175816808625604,51.7429805645842],[5.174821337317546,51.74301872007896],[5.174361804846058,51.743033032683535],[5.172914394718313,51.743068112895735],[5.17169323858178,51.743089883748226],[5.171457842691098,51.743091743062905],[5.170015749526211,51.74308912658082],[5.170005092990115,51.74308910684786],[5.168581856518758,51.743070535125675],[5.16777473038668,51.74303823342746],[5.167120205949871,51.74301076976405],[5.165671582066381,51.742920198290456],[5.164727953041888,51.74282886904704],[5.164228737051316,51.742780542828164],[5.16278229708325,51.742626013753004],[5.161326809870385,51.74244406150796],[5.160624749617712,51.74236739292718],[5.159880419364598,51.74228378900027],[5.158432223423648,51.74211893794764],[5.157763282932891,51.74204003373426],[5.156993261070387,51.74194837942555],[5.155539675499385,51.74176292537234],[5.154911180764084,51.74168750935555],[5.154086063339759,51.741587736035406],[5.153246590357583,51.741481672284436],[5.15264535487794,51.741405705238456],[5.152402711010032,51.74137451507504],[5.152059161408116,51.74133035850359],[5.151204675935421,51.741220232160856],[5.149755281579055,51.74102861154317],[5.148826561126309,51.7408966822531],[5.148300909299211,51.740825107035775],[5.14684667723145,51.74063852802891],[5.14535654281894,51.740420999473024],[5.144896689817487,51.74035507255313],[5.143967996336443,51.74022062394777],[5.142984752147712,51.74007859394948],[5.142251690594104,51.73996962579973],[5.14208726470398,51.73994518413332],[5.14107547770492,51.73978791486596],[5.141070486987121,51.7397871403708],[5.139625460405665,51.739559647302904],[5.13927879810225,51.73950440879325],[5.13816947101617,51.73933533098876],[5.136724536097045,51.739099128406345],[5.135286969688698,51.73886314852158],[5.133846531129176,51.73861791359512],[5.132395573750832,51.73836659781669],[5.130951691339519,51.738118919840375],[5.129499236862907,51.7378640953134],[5.12805477347313,51.737607140141336],[5.118825858369633,51.735927708504036],[5.11888601144304,51.73591765321047],[5.118848032087347,51.73588462347519],[5.118875452986634,51.735828229503056],[5.118810729024366,51.73581572220115],[5.118747249243278,51.73580579740924],[5.118483321729722,51.73576453792988],[5.11840195095472,51.73575181248242],[5.118138654056136,51.73570929528212],[5.117924285506239,51.735674673893705],[5.117118651053159,51.73552000768657],[5.116567137477718,51.735415044833395],[5.11184799751491,51.734390955723086],[5.109504973272847,51.73367402656283],[5.106959162079947,51.73290037877023],[5.105452347372362,51.732434417220574],[5.10529692311466,51.73238771691029],[5.104921634896827,51.732274952123426],[5.104919323143914,51.73227425444337],[5.104447321954308,51.732141147979384],[5.104268191976005,51.73208235352731],[5.102157667099732,51.731406366857904],[5.101478113157863,51.73118056653054],[5.100487790784989,51.730841556536184],[5.09924068368605,51.73039972642922],[5.098002526906606,51.72993831911213],[5.097705041204112,51.72982478819787],[5.097503811088414,51.729747987732694],[5.096449082444232,51.72934544228819],[5.095325993740511,51.72890264637399],[5.09439384284966,51.72853396848664],[5.092124495316032,51.72758374838824],[5.090467700217271,51.72681957020574],[5.090070293009811,51.72662957124644],[5.090035840306538,51.72661269338441],[5.088294049297185,51.72575952520561],[5.087837205808347,51.7255297816519],[5.08746727343699,51.72534252253083],[5.085762084401213,51.724484511262546],[5.085307230450788,51.72424677209382],[5.083607265679261,51.72336226250445],[5.083575961269222,51.72334496842138],[5.082285624080386,51.72263198489856],[5.081892597058501,51.72241681052375],[5.081760315134479,51.72234439599638],[5.081739551462939,51.72233303433839],[5.081582267067808,51.72223411023614],[5.080846252834929,51.7218861760673],[5.080817586719656,51.72187068583929],[5.080655208341182,51.721782928884906],[5.080013095761807,51.721438389925694],[5.078548473793833,51.720671390404995],[5.077598113852011,51.72018513100768],[5.07695001795719,51.71986299466771],[5.076316697449742,51.71954853414597],[5.075058349754123,51.718877136085545],[5.073005751686804,51.71798598595979],[5.07168025874069,51.71739631973053],[5.071004422278318,51.71711073978092],[5.069284211895527,51.716361863647045],[5.068955387439691,51.716219378632296],[5.068954316989243,51.716218914614416],[5.068851341660637,51.71617429367158],[5.068818248625788,51.71615995337393],[5.067902444442235,51.7157631031052],[5.066944752829061,51.71539267072348],[5.065644350793268,51.71488789199265],[5.06451161931916,51.71449368796952],[5.063914221527719,51.71430386683854],[5.063867273336943,51.71428894940369],[5.06322793995967,51.71408579772224],[5.062456688439046,51.71384289654959],[5.061416183880246,51.71355297820108],[5.060039320447335,51.71316861343745],[5.059535675816951,51.71304919424751],[5.059391183757364,51.713014932198696],[5.057873528441164,51.712663594373524],[5.05755423750239,51.71259527377484],[5.056723736988388,51.71241900681502],[5.055430074138037,51.71214698122734],[5.055296085940823,51.7121199535515],[5.054585020291333,51.711976518394124],[5.05428007422862,51.71191462040701],[5.054231842668687,51.711903607262265],[5.054211635943459,51.71190072745321],[5.053629862500286,51.71181782571893],[5.052940665029211,51.711735909117905],[5.052351425141173,51.71166147389934],[5.051001367097246,51.71150614310089],[5.05013064901341,51.711406952442736],[5.048976594817304,51.71130688405252],[5.047928077088905,51.71120925180533],[5.047287753779785,51.711149624397066],[5.046438549873749,51.71108712393139],[5.044988142457428,51.71099699436681],[5.044704858661907,51.710985146909806],[5.043597846037315,51.71094665266707],[5.041760756085584,51.710882746796564],[5.039951135076991,51.71084684697178],[5.038473743276389,51.71081751706501],[5.037936275491092,51.71081665454446],[5.036789893710829,51.71081480558662],[5.03590598818491,51.71081337202074],[5.035326535798157,51.710823157928345],[5.034168209124962,51.71084271120249],[5.032845688553869,51.71086227712616],[5.032792523776108,51.710863061962215],[5.032774665042287,51.710863591312474],[5.030387786043055,51.71093419938375],[5.029588042943065,51.71096030943265],[5.028770577509785,51.71100064262863],[5.028733665861206,51.71100265013298],[5.027654367935565,51.71106132989209],[5.027445599210209,51.71107361476492],[5.027089456550805,51.71109957652422],[5.026407558126766,51.711149271301345],[5.024256549513194,51.71129459009107],[5.021247037299345,51.71152712229916],[5.02089081822821,51.71155965988951],[5.019794174211355,51.71165981387726],[5.019558875588346,51.71168136670483],[5.01832677598533,51.71179421245035],[5.016221015313234,51.71201334021516],[5.014822838493603,51.712167832670794],[5.012435176588527,51.71245194544128],[5.010998625572937,51.71262250292027],[5.010723260316271,51.71265519093493],[5.009452483449929,51.71281935867024],[5.009258976369329,51.712844352189265],[5.008398375043011,51.712963270708116],[5.007736493519224,51.713054726472265],[5.006016536272473,51.713308869318915],[5.00586456810707,51.713335520390224],[5.005783461407981,51.71334973702505],[5.004903427856426,51.713505715470596],[5.003516330636113,51.713751244273574],[5.00252857322979,51.71392357989989],[5.001433511215723,51.714114870473665],[5.000451011043313,51.71428648683207],[5.000218312602744,51.71433121879566],[4.998242741589165,51.71471096320368],[4.996951934594071,51.71495906107962],[4.996738882837578,51.71500511085913],[4.995303731080369,51.71531529786392],[4.99407994711499,51.71557978563557],[4.99192489379365,51.71608024710658],[4.991176850373432,51.71625395158036],[4.989958409491596,51.71655043259627],[4.989456998745499,51.71667220702085],[4.988636994361365,51.71687135027615],[4.986682412393054,51.71734600666658],[4.986337694001552,51.71743637665807],[4.985170903627234,51.717736705905956],[4.984156383765987,51.71799581339566],[4.983104517648354,51.71826610895376],[4.982197831015822,51.7185007538387],[4.982006608065149,51.71854903563413],[4.981710925328554,51.71862368775519],[4.97947165496299,51.71918014935735],[4.978637993116731,51.71936235407812],[4.97841840233012,51.71941034507755],[4.974923543928362,51.72016414531466],[4.971337624664041,51.720855083888395],[4.969986856119091,51.72109967123215],[4.969381325005436,51.72120930501898],[4.968399705653339,51.72135584781015],[4.965403861875362,51.72182215252517],[4.965105051122769,51.7218686560064],[4.964210727467727,51.72199385070533],[4.962896853684986,51.72217776372748],[4.960894310138823,51.72241328753887],[4.958484310108781,51.7226289688171],[4.95688958379848,51.722750067830674],[4.956745229726591,51.72276102786487],[4.956642261865205,51.72277243997571],[4.956569692765397,51.72278048151353],[4.956397491470128,51.722794634913974],[4.956395811722492,51.72279473031094],[4.955817917185539,51.722827864295304],[4.955228985780814,51.722861809569004],[4.954702407687874,51.722892156446356],[4.954248174144642,51.72291689687465],[4.953997929666395,51.72292851130304],[4.953775967011087,51.722936886034034],[4.953548690817164,51.72294546270354],[4.95302677186648,51.722965150755265],[4.953021443819754,51.722965364721574],[4.952058372770474,51.72300370696967],[4.952044415668183,51.723004258286046],[4.951534923077432,51.723024404697085],[4.95103890510664,51.72303095797629],[4.950475854763146,51.7230383955662],[4.94951554055763,51.7230502019092],[4.948318383665065,51.72305245777904],[4.948040321005716,51.72305056234375],[4.94802989913604,51.72305070935795],[4.947230672697652,51.723061889684985],[4.945563483913441,51.723041597467294],[4.943234149903044,51.722975630115634],[4.941677631350871,51.722891523285256],[4.940630461669224,51.72283492801381],[4.939361341242893,51.72273149085235],[4.939342353864974,51.722729943275596],[4.938672713643177,51.7226804442449],[4.938565762744306,51.72267289618575],[4.938129151854564,51.722642075981256],[4.93775569000983,51.72260502453931],[4.937125360662687,51.722542488331875],[4.935952708538169,51.72242679069892],[4.934862325560722,51.722308109023864],[4.93376313484314,51.72217495733133],[4.93367199606374,51.72216391637909],[4.932451127576822,51.72201203373317],[4.931896710943446,51.721939087221145],[4.931762717520444,51.721920969669995],[4.930612655554008,51.72176547515997],[4.92881822350036,51.72151796331755],[4.926850680398553,51.72124614907194],[4.924911557883203,51.72097831486486],[4.924097436163965,51.72085427621824],[4.923891341639008,51.72082287441818],[4.922807944857443,51.72065779784232],[4.922397883899693,51.720594032396086],[4.921425556633436,51.720442824077004],[4.920560295228035,51.72032862566703],[4.920549109139032,51.7203271501447],[4.920211561571417,51.72028259840033],[4.917991224893485,51.71995936329059],[4.91594021338201,51.719673332593516],[4.913966999384658,51.719449430611505],[4.912723566123647,51.71931378987448],[4.91141232098797,51.71918826943999],[4.909979720860028,51.71904661803528],[4.906723892499192,51.71881473946526],[4.904027418990967,51.71870872497107],[4.903611176596034,51.718699170103505],[4.902972054532159,51.71868869308226],[4.902004575980851,51.71867946931417],[4.901550450522974,51.71867236596429],[4.900263617655484,51.71866702638961],[4.899103697249214,51.71869007498063],[4.898922785099687,51.71869715944589],[4.897668677204638,51.71877551276811],[4.896162846043046,51.71890858156049],[4.895173260154792,51.71900226315785],[4.895069029736152,51.71901212646494],[4.894797784019186,51.719037807345956],[4.894480934355011,51.71906780276817],[4.894423745793735,51.719078261462165],[4.893714128971054,51.719208058913985],[4.891249699746682,51.71965878328442],[4.891236519893296,51.719661193085436],[4.891230921084085,51.719662218362664],[4.891211554726332,51.719663819072],[4.890958066574881,51.719684790580814],[4.890926085239162,51.71968743533671],[4.890622843628761,51.71971491171813],[4.890017247390178,51.71976977510719],[4.889790175431928,51.71977584067939],[4.889440692945068,51.71978785777431],[4.889081184852082,51.71980217724383],[4.888948390016715,51.71980884858792],[4.888650987928449,51.71982379030335],[4.887671735931425,51.71986827319958],[4.886971090082018,51.71990009135406],[4.88631463832253,51.71993078816383],[4.884157644030018,51.72003243403994],[4.883833331701506,51.72004771453466],[4.883711946235717,51.72005375480475],[4.883663288704711,51.72005531381866],[4.883591641567598,51.72005760637163],[4.883045577504078,51.7200713931692],[4.881033481826492,51.720129911135025],[4.880509701167647,51.72014513873859],[4.880414680721062,51.72014879074293],[4.880371336195957,51.72014758759029],[4.879968181791716,51.72013418518618],[4.879156423333874,51.720108170554205],[4.877808274292649,51.720063173199556],[4.877476485567203,51.72005462961286],[4.87722082897885,51.720046515273324],[4.877139673718468,51.72004365157849],[4.876187134674861,51.72001002211643],[4.875169955216277,51.71998751535991],[4.874829846223157,51.719978963877786],[4.874762339492865,51.71997726650129],[4.87431017367383,51.71998282999857],[4.87305499323091,51.71999826468709],[4.872575608273485,51.719917106600555],[4.872313318751538,51.7198727004124],[4.872021050640045,51.71982771332462],[4.871031063276557,51.71967140461797],[4.870795178922751,51.71962903577949],[4.86933558449526,51.7193444602168],[4.869240081450257,51.71932713865429],[4.868132523109708,51.719126242339684],[4.867834823325578,51.71906103226893],[4.867549527743662,51.71898690579313],[4.866234069608822,51.71865438290566],[4.865316013599388,51.71842230170355],[4.864985135403004,51.71833865373722],[4.86209916407773,51.7176730219071],[4.861830777854204,51.717621015300764],[4.861049800131203,51.71748896516072],[4.858873653234939,51.7171119225933],[4.85714498272468,51.71681237601125],[4.855982857797843,51.716610984572426],[4.852993902426982,51.71609295252045],[4.850316822781853,51.71562868867118],[4.847745300991137,51.71504437467046],[4.843814268382538,51.71392920239996],[4.84252201186986,51.713650182770685],[4.841735523329959,51.71348035942471],[4.841320508117949,51.71339074350902],[4.840723089460875,51.71326173949214],[4.840489130303558,51.71321121961743],[4.838292661502731,51.712843958206335],[4.837363586581156,51.71268858416777],[4.83690479143091,51.712611860657425],[4.836220769004209,51.71251101166639],[4.835597653317817,51.71242071942205],[4.835021805385736,51.712328597188346],[4.834277117519127,51.71221855216533],[4.833324549537936,51.71208025739832],[4.832397684444968,51.71195969432323],[4.831233386475477,51.711796407104025],[4.830325359288418,51.71166744965543],[4.829781226380581,51.71158648138522],[4.829767849732079,51.71158587843191],[4.829616197105349,51.71157415478474],[4.828941687642359,51.7115280673359],[4.828076989129864,51.71146379244969],[4.827518626444016,51.711422448646694],[4.827125732674182,51.71139645481609],[4.826758847454919,51.711380408667274],[4.826111438738285,51.7113557735926],[4.825498222371695,51.711329896616796],[4.825059336051631,51.711311801116786],[4.824768686138205,51.71129958405648],[4.824659675595355,51.71129606754813],[4.824475755399954,51.71129276649417],[4.824179068299825,51.71129131435746],[4.823872161100242,51.71129025278087],[4.823610483103352,51.71128814953702],[4.822642085009209,51.711280377717905],[4.82226052469882,51.71128563977951],[4.821722389835821,51.71128654064404],[4.821240120164278,51.71128746618329],[4.819762574574495,51.71132513783239],[4.818263045057847,51.71137566374494],[4.816923440474102,51.71144225660258],[4.81539273459882,51.71154101600267],[4.814200561096095,51.711634004688406],[4.812365758098724,51.711803074562845],[4.811112862458327,51.71191726182706],[4.808431249948783,51.712146588576104],[4.805820516821743,51.71236979679529],[4.803420601448801,51.71268772228459],[4.802360170608017,51.71281472073133],[4.801682287000421,51.712903550231815],[4.799214379846098,51.71327471235883],[4.7983909522437,51.71339854040839],[4.793948953827056,51.71414312162722],[4.793805539677805,51.71416742893921],[4.792161597894335,51.71447666257342],[4.792009340941441,51.71450642386028],[4.791787156801167,51.71455427442855],[4.79018688112227,51.714924259036415],[4.789601877467657,51.71506291173501],[4.787432136810117,51.71561929088565],[4.783077465672148,51.71687123829872],[4.780989463816235,51.71752906064196],[4.779412675240231,51.71806752202353],[4.777398326284147,51.71875536126078],[4.776072500227287,51.71922591563287],[4.771088762586053,51.72100586298813],[4.7708943808346,51.72107512344664],[4.768511129413247,51.72182258634665],[4.768372463926295,51.721865116771575],[4.768125915355133,51.72193856456242],[4.767536095738254,51.722100165059],[4.765837782339796,51.72256544306365],[4.764876275124572,51.72278850111596],[4.763779146705934,51.72304300945459],[4.760918595786631,51.72364173033383],[4.758985320190622,51.72401987445249],[4.757765038484412,51.72421568938595],[4.75585023858789,51.7244683720152],[4.753664364511163,51.72471012024787],[4.751960917477365,51.72486838586579],[4.750570508237518,51.724974314548795],[4.749183418788615,51.725049656282714],[4.747267915103858,51.72512421883168],[4.745663726633679,51.72516467960488],[4.743240932508217,51.725139913604785],[4.740446888878226,51.72501102751433],[4.739660677622903,51.724941392170216],[4.738456953327474,51.72487742309881],[4.736648080739063,51.72472461939306],[4.735903288944163,51.724668042559856],[4.734543179659345,51.724564701342054],[4.734539705567951,51.72456172470883],[4.733165113819705,51.72443842175976],[4.728957362739967,51.723599515355744],[4.725698970877116,51.72294098295138],[4.722524325593925,51.722310034406846],[4.71906360006874,51.72183383551182],[4.718989809233347,51.721823679992184],[4.715647622718057,51.721365457906394],[4.710186698539967,51.72095180869796],[4.706363343036932,51.72128740081135],[4.702625002913621,51.72162468637791],[4.701435648657919,51.721732006379796],[4.698553216360219,51.721992046617686],[4.695245907585498,51.7216956216553],[4.694942441472434,51.72166841821803],[4.69253184615422,51.72145646392169],[4.687793610871365,51.721039696869475],[4.680648560344285,51.72040377472577],[4.677286295188172,51.720110249717905],[4.676985167504778,51.721586375124836],[4.676304294289294,51.724923647168936],[4.67798740327708,51.72603504835213],[4.681597659934821,51.7284187246596],[4.686930573580176,51.73018490874943],[4.688314658771291,51.73064323660991],[4.693262965219605,51.73228162283411],[4.701273314057749,51.73583188939942],[4.703745748683892,51.73692746861096],[4.706748526228217,51.73845662559567],[4.70929880557058,51.73975520667843],[4.714252939850994,51.74227744541705],[4.717281406333877,51.7438190514686],[4.720780406421218,51.745775161205366],[4.724591650112153,51.74790551303716],[4.729445395556009,51.750710350973684],[4.732836687125043,51.753003357600676],[4.736630865025864,51.75556837645114],[4.739605504626235,51.757903922011565],[4.740770070895793,51.75881820410496],[4.744788276793007,51.76348742868151],[4.744794139488983,51.76349993706681],[4.746721813480852,51.767611819248536],[4.74748799991751,51.76924594168003],[4.750568952030301,51.775761502698934],[4.750713087526384,51.77594205794294],[4.75336988555317,51.77926971392591],[4.753597636470232,51.77955495856631],[4.755239742186366,51.78161140272421],[4.758403369029915,51.7844148814672],[4.760136141062626,51.785578090640456],[4.762087172704641,51.78688771120925],[4.765433771244198,51.78936310369684],[4.77353908885695,51.79332433310886],[4.77584680678346,51.79405299818362],[4.781809059227496,51.79593526226259],[4.782495701549732,51.79611644502157],[4.787665313115963,51.79748037104219],[4.792823478919622,51.79871989540242],[4.797194209378934,51.79976996206804],[4.806875752586461,51.800336283937895],[4.810765174142557,51.80005467980292],[4.814927135125883,51.79975320717749],[4.816371768059072,51.79965981465251],[4.821815218695311,51.79894033411923],[4.822884147830835,51.7987990200837],[4.822951395847085,51.79879013020005],[4.828872292119624,51.79802060995234],[4.831065394933829,51.79796564232459],[4.836108512446036,51.797839094204],[4.845984407529088,51.79875695339259],[4.847113333762124,51.79901496732261],[4.847907283732193,51.79919642173092],[4.850798897593738,51.799857220674696],[4.854413534329106,51.80068312595109],[4.858021866282021,51.80205761485259],[4.859667338778124,51.80268434367877],[4.860986209185453,51.80330794920014],[4.861298672623326,51.80345569245898],[4.865233292385119,51.80531591089898],[4.865809879389564,51.80561250722622],[4.867740340683592,51.80675586232986],[4.86811403324544,51.80697718673178],[4.871361100370918,51.80889117717259],[4.876054179468026,51.81188270786187],[4.877188223690083,51.812514357415395],[4.879007891136971,51.81352782389541],[4.87963623635447,51.813877769566396],[4.882023994181308,51.81520748728378],[4.884642583979452,51.816471395640605],[4.884296229302948,51.817039289732904],[4.884238140595738,51.81713454381734],[4.883877612240139,51.817722663003835],[4.88332297457919,51.81862739535265],[4.88232854000835,51.8184419136984],[4.881882280207646,51.81835919556214],[4.881498213300798,51.818295835302514],[4.881069076446924,51.81822809079644],[4.880776912624219,51.818184755348305],[4.880185378614498,51.81810322852171],[4.879589563334023,51.8180234239632],[4.87954679936817,51.81801769309806],[4.878865574037383,51.81793420764479],[4.878253763146068,51.817864942453056],[4.877753213222566,51.81781584188978],[4.877160485500824,51.81775996581144],[4.87673843555196,51.81772315673332],[4.876307243687934,51.81769067476426],[4.876000455686252,51.81766765869426],[4.875583969346767,51.817641727822526],[4.8751900593609,51.817617574809795],[4.874880011405351,51.817599467296006],[4.874339654451653,51.81759772767108],[4.873803690618841,51.81759483626547],[4.873324507088341,51.817593215708335],[4.872791106483019,51.81759193984483],[4.872317939398348,51.81758926292196],[4.871246002151292,51.81758561639511],[4.870853509271332,51.8176051212949],[4.870337942703598,51.817629565982266],[4.86981977810252,51.81765665755713],[4.869247385357561,51.81768624905636],[4.868970226001745,51.81770026121055],[4.868440026359125,51.817725711578504],[4.868070776612785,51.81774423128053],[4.867539574034479,51.817772297796346],[4.866257482832104,51.817839897892135],[4.865351899429657,51.81788706476963],[4.865087590411008,51.81790082827108],[4.864797841480986,51.817915916117364],[4.863751526004462,51.81796830472148],[4.86292942316589,51.81800013121495],[4.862143186704484,51.81803314608273],[4.861333686773839,51.8180673008664],[4.860902238693149,51.81808472835268],[4.860357109885474,51.81810733377933],[4.860194343805349,51.818114270288774],[4.860107377690651,51.818118293147066],[4.859895571022839,51.818131804332424],[4.859502960475492,51.818159270556414],[4.858928695914594,51.81820015585662],[4.858281224233497,51.818242874715295],[4.857085321436506,51.81832585477457],[4.856619517602445,51.818356216633234],[4.856336242229983,51.81837530377327],[4.856206244977361,51.81838534018674],[4.856123581285487,51.81839095255209],[4.85611083197782,51.81839470600263],[4.855609681259142,51.81843001838939],[4.85499633180236,51.81847011419748],[4.854397677209186,51.81850865557317],[4.85398675284311,51.81853519327971],[4.852990151019348,51.81860032274852],[4.852557603115184,51.818627826672014],[4.852128501876583,51.81865694467413],[4.851650989500706,51.81868584921826],[4.851228841357017,51.818710717116204],[4.85057413275116,51.818748488657384],[4.850557572685379,51.818749446626086],[4.849967592617681,51.818784796175066],[4.849407034597939,51.81881812931243],[4.848799767035089,51.81885446342014],[4.848275546528071,51.818884739937786],[4.847809267371955,51.818912610803636],[4.847677679546953,51.818915889066325],[4.846985089505145,51.81895174965664],[4.845714424558811,51.819026135197475],[4.844648864027935,51.81908635450356],[4.84366092345267,51.81914428098229],[4.843486242941527,51.81915485142647],[4.843263705615112,51.81916253923386],[4.84254501733812,51.81917785769366],[4.841014478290288,51.81920874004571],[4.83905207738786,51.819254628669285],[4.838997414054679,51.81925449921248],[4.835078147463946,51.81924499123367],[4.830887451529286,51.81917127216862],[4.827365589891882,51.81896486834006],[4.825691276746823,51.81899988957877],[4.824244392554775,51.81902692650665],[4.823226668179942,51.81904856597398],[4.822821422855434,51.81905630773123],[4.821751188723487,51.81907947062536],[4.821562644899336,51.81908019806736],[4.821359814126603,51.819080982171],[4.820471334274409,51.81906422840297],[4.820115027356844,51.81905786934666],[4.816361157525701,51.81890905967706],[4.816292842737922,51.8189057971369],[4.812865069270689,51.81874217397917],[4.811415903788252,51.818658194619175],[4.808406997904706,51.81848689540501],[4.807978323316311,51.81846478112481],[4.805248543788167,51.81800176871184],[4.803449091249501,51.81782995085186],[4.802373490797073,51.817735968975136],[4.800167505831724,51.81756833935171],[4.799867722742948,51.81752376633227],[4.79929115930774,51.81743804999715],[4.798851909883154,51.81737716254041],[4.79802471959488,51.817257060451084],[4.796208892492673,51.816952386785815],[4.793728041971524,51.81646347390958],[4.792592316103982,51.816254394895466],[4.791042552031476,51.815969073651836],[4.788816277824067,51.81557386879843],[4.788671016906309,51.81554998249493],[4.788147484395002,51.81547904315307],[4.78680367996969,51.81531367168812],[4.785354957709635,51.81519838849074],[4.78390546115968,51.8151415091941],[4.782894907034134,51.81513943818045],[4.782539540862797,51.815132610190894],[4.781466979749458,51.815168966178405],[4.781056372910897,51.81518265715141],[4.779959986031318,51.81525959461379],[4.779861691592203,51.815263589273755],[4.779740532694293,51.815268202573094],[4.779550101087423,51.81527665477523],[4.779300204945513,51.81528000775955],[4.778450074900459,51.81529516044736],[4.778102249294261,51.81530336907463],[4.777198781234459,51.81532468967544],[4.776838671059904,51.81532435446832],[4.776507588589276,51.8153234321402],[4.776109466650212,51.81531242518879],[4.775670032926564,51.81529883763402],[4.775418037324589,51.815292283962904],[4.775204110491931,51.81528898439009],[4.774245697530855,51.81527886823763],[4.77371536729984,51.81528089715994],[4.773189651521759,51.815285923051036],[4.772717050611216,51.81529899084057],[4.772340949483787,51.815311025279335],[4.772091669874476,51.81531908515419],[4.771852326798114,51.815335475092674],[4.771562295935608,51.8153604254635],[4.771296247229994,51.81538573467999],[4.770946604298071,51.81542169630579],[4.770609091442251,51.815454008331365],[4.770295609285875,51.81548736254186],[4.769954397084544,51.8155186285424],[4.769586817751474,51.815552064868264],[4.769213832043992,51.815586289538686],[4.768848265368968,51.81562305094373],[4.768533281334145,51.81565575435086],[4.768193977990286,51.815694629653954],[4.767944210077919,51.81571901941752],[4.767415010154155,51.81581247581499],[4.766794414907503,51.815926740715696],[4.766654041171543,51.81595946312763],[4.766482146984396,51.815990481619004],[4.765501598730272,51.81623416778302],[4.765035470038639,51.81635008648029],[4.764782761750868,51.816427387789304],[4.764656535575812,51.81646567488127],[4.763808206158839,51.81672299179733],[4.763579025648989,51.816792379687755],[4.763577292569618,51.81679290080616],[4.762117638316679,51.8173077148599],[4.760619159419332,51.81796507847184],[4.759236016743632,51.818561827856065],[4.757745547992708,51.819196258934866],[4.756277610018544,51.8199163727587],[4.756023291347236,51.820045052441245],[4.755644734874338,51.820228118301905],[4.755461137247093,51.820315272444866],[4.75536538122382,51.82036072470108],[4.755189645845374,51.82044256354083],[4.755011716564011,51.82052462400569],[4.754824373895904,51.82060664247349],[4.754617839183013,51.82068364044403],[4.754439412145454,51.820745221333624],[4.754177231020757,51.82083505086715],[4.753976987880715,51.82090284136756],[4.753887038553487,51.82093329481288],[4.753680574794705,51.82100399051666],[4.753399133607525,51.821095530058486],[4.753154898480772,51.82117035337733],[4.753009699635063,51.82121115917199],[4.752614922264077,51.821317778497615],[4.752268551533543,51.821409512577645],[4.751942138545415,51.82149295830627],[4.75189054939173,51.82150606310338],[4.751521360280224,51.82159365356929],[4.751145365416678,51.82167313423348],[4.750798144377363,51.82174147104245],[4.750477092818556,51.821805418539334],[4.750194243522806,51.82186029626163],[4.749798434065917,51.8219261911711],[4.749405919974934,51.821988731930325],[4.749001447636215,51.82205163781248],[4.748958927440834,51.82205824693376],[4.748864448913665,51.822071144143074],[4.748724196666713,51.82208993150499],[4.748386377010742,51.82212793985213],[4.747987941389957,51.822167963156346],[4.747395605339571,51.82222116626164],[4.747083008627704,51.82224173563223],[4.746658290407559,51.822263211417415],[4.745872889472579,51.82228798277401],[4.745631224592011,51.822291965345684],[4.74506267139096,51.82229532802019],[4.744646512304557,51.82229625944904],[4.744376944392602,51.82229686876042],[4.743847197636387,51.822298793157934],[4.743311316908942,51.82229958490438],[4.743154972643742,51.82229827769236],[4.743032363148181,51.82229621161645],[4.742910534881603,51.82228921495579],[4.742791606138481,51.82228130826112],[4.742675650400246,51.82226938188685],[4.742537058474109,51.82225095814995],[4.742335457986109,51.82224263284885],[4.741814115193454,51.82222292270556],[4.74174661638271,51.82222041224906],[4.741291347894282,51.822203454086164],[4.740650382352558,51.82217881981736],[4.740296922064668,51.82216505222331],[4.74021263779326,51.822161774223375],[4.739685051830604,51.822140591010594],[4.738975359768644,51.82211322239122],[4.738431889437134,51.82209323118359],[4.737913837315781,51.822073881431585],[4.737334866158507,51.82205547748249],[4.736467639196391,51.8220412076228],[4.735948173458025,51.822033454636596],[4.73449667185242,51.822047665637385],[4.733867551203258,51.82205381920012],[4.729638741852925,51.82216873659891],[4.72725710212171,51.822294225799055],[4.727240624326975,51.82229522976051],[4.726070799126467,51.82236660454474],[4.724368760666396,51.822491735472966],[4.724337846140434,51.82249400579172],[4.723158213274905,51.82260620340328],[4.721495421184591,51.8227589210599],[4.719979325016117,51.82289187423852],[4.719965774107287,51.822893064601864],[4.719123967095078,51.82295678742503],[4.718569973447979,51.82299871977902],[4.717045031960247,51.823100088575025],[4.7156236349723,51.823172340643225],[4.714372386630659,51.823264543961045],[4.714111720878507,51.823282446897046],[4.713857003176557,51.82329736319845],[4.71344822002647,51.82330871606401],[4.712720395163138,51.82331702111863],[4.709097371077438,51.82335827508566],[4.707473826736303,51.82334740099138],[4.706253301393228,51.823295976466504],[4.705829274091048,51.82327738107934],[4.705468644551204,51.82325816365623],[4.705120624679058,51.82323962064034],[4.704223415924697,51.82318890285463],[4.703733198766696,51.82314188814826],[4.702777445290557,51.82304469767041],[4.70202707577341,51.82296746679833],[4.701970724348074,51.822961663746476],[4.700911141798776,51.822851708172884],[4.699883772837634,51.82274508666564],[4.699246376532665,51.822678449900025],[4.698519039163886,51.822631551351165],[4.698225877099091,51.82261257265318],[4.697469809555361,51.82256362930329],[4.696359028411884,51.82250959157414],[4.695376778935485,51.822447986502766],[4.693238769383695,51.822150182108665],[4.693173153546536,51.822140472905154],[4.692416633518304,51.822028573736226],[4.690985657034052,51.82181518897534],[4.690402196743544,51.82172817705423],[4.688095857729835,51.821374933805686],[4.688082969265169,51.82137266380411],[4.687898913569615,51.82134031377369],[4.687407197489702,51.82125018410548],[4.686936648993444,51.82115143270504],[4.686456605739163,51.821057108057595],[4.686191039470139,51.82100966208929],[4.685853486931743,51.82095294054072],[4.685203892286286,51.820853822211355],[4.684631851524527,51.820775460923215],[4.684184487381438,51.820718859177724],[4.683949683978101,51.82069407300528],[4.683751030539633,51.82067549846837],[4.683689852877262,51.82066978352903],[4.68318050926618,51.82063294999537],[4.682302191381486,51.82057271252639],[4.681921069750595,51.82055159167675],[4.681577030374298,51.820540112649546],[4.681260568672787,51.820530191732864],[4.680776603807886,51.82051419228556],[4.679816996379362,51.82048153644272],[4.679731057369004,51.82047878925818],[4.679062594884252,51.820457418828916],[4.678673966469324,51.82044434091138],[4.678371632817326,51.82043352671083],[4.678139610811861,51.82042676795361],[4.677912679640834,51.820419104682436],[4.677482006919191,51.82040489681739],[4.67736091568867,51.82040083870691],[4.677131806548291,51.82039610004414],[4.676911020650669,51.82039426969987],[4.676719241266325,51.820396263932395],[4.67656009485821,51.82040297674216],[4.676503030180228,51.82040693677646],[4.676324082551247,51.820419336036295],[4.676118529052993,51.82043479177174],[4.675939054427829,51.820451160240964],[4.67589210635931,51.82045558577656],[4.675689250524621,51.8204747065075],[4.675400307924645,51.820502275508495],[4.675089618935106,51.82052917253721],[4.674806100191911,51.820556746020465],[4.674490307453875,51.82059081939406],[4.674184325135281,51.8206208526891],[4.6738950033308,51.820648433664275],[4.673622716484201,51.820674652347485],[4.673367478186771,51.82069773817292],[4.673076363870549,51.820723957931705],[4.672834166975582,51.82074322985803],[4.672550664882528,51.82076225877245],[4.672319725048978,51.82077591734659],[4.672089868657547,51.82078710119671],[4.671907885496651,51.820790441628674],[4.671729524240511,51.820791305008896],[4.671708759810248,51.820853973241775],[4.67135400620057,51.82182033870795],[4.670909188139588,51.82265716611435],[4.6709014904071,51.82267239986474],[4.670534798519392,51.823397775766175],[4.670461398930716,51.82354296189303],[4.670438906827343,51.823589116157436],[4.670325901691074,51.82382854915884],[4.670058919930574,51.8243942646469],[4.669937253373872,51.824683666254764],[4.669851896781498,51.82490997351424],[4.669850845333452,51.82491314907468],[4.669723994759245,51.82529839184285],[4.669583228833795,51.825810379406974],[4.669467557178124,51.82622480449638],[4.669420539922528,51.82644172798532],[4.669399694852023,51.8265555407803],[4.669371249963614,51.8267156975724],[4.669306325222982,51.82715698531236],[4.669295149764312,51.82723290709714],[4.669256987496195,51.827562251900666],[4.669198469721767,51.828147568071124],[4.669178879322525,51.82843475275566],[4.669162516756402,51.82872055494248],[4.669159393773224,51.82892292448],[4.669165591410167,51.82915125634175],[4.669176629890349,51.829354386644496],[4.66918304460137,51.829403396092644],[4.669208585344487,51.82959866013135],[4.66925787177265,51.829854221492575],[4.669479956524946,51.830780251729436],[4.669672360415809,51.83137413994941],[4.669729420942761,51.83152442848324],[4.669786720640964,51.83165425127887],[4.669865529092426,51.83183281612835],[4.670017783401466,51.832092188234846],[4.67029464119608,51.8325272403735],[4.671240397710559,51.83391028969186],[4.67137555512641,51.834107929442105],[4.671986977746259,51.8350388713934],[4.672413214952709,51.8358828049963],[4.672499985929401,51.836165127413025],[4.672692612513318,51.83679190983348],[4.672696437830691,51.83767787210842],[4.672696649271076,51.837726753653065],[4.672702443996429,51.838413521456076],[4.67260625791566,51.83865032614419],[4.67249215720454,51.83890317428633],[4.672337359814295,51.83921688831172],[4.672187599375098,51.83949195466933],[4.672050183967651,51.83976529830592],[4.671758733251658,51.8402215299599],[4.671481074240253,51.840653243050085],[4.671476268432874,51.840660719270176],[4.671257584559606,51.840933081122735],[4.671053082534147,51.841181259740154],[4.670866922902094,51.841417415250625],[4.670661337951418,51.84164399586009],[4.670470783417416,51.84184055591433],[4.670173075155775,51.84214925977948],[4.670083110824695,51.84223363501174],[4.669786839533573,51.84250007309215],[4.6693573657065,51.84288743827029],[4.66933357299307,51.842908892505505],[4.668898578571263,51.843266119297695],[4.668311499628598,51.84373202988303],[4.667763429087249,51.84416537703264],[4.666914699036537,51.84482287001587],[4.666233665589023,51.84534794138217],[4.665454806010137,51.84594788516106],[4.66492000820892,51.84636826720375],[4.664179463704565,51.84693160282705],[4.663624033591354,51.8473465666409],[4.663553803437874,51.847399040975915],[4.662746225494601,51.84797718123987],[4.661947239619105,51.84856033079806],[4.66154061419166,51.848854066187556],[4.661077770333486,51.8491884137823],[4.660853966221605,51.84935149475487],[4.66056299103209,51.849574823993954],[4.659964454783778,51.85003420439811],[4.659137074152848,51.85074154397633],[4.659025735044551,51.85083674441626],[4.658200295609133,51.85163035349587],[4.658046117583748,51.85180638258559],[4.657474216994453,51.85245931544122],[4.656164712554996,51.85404184548867],[4.654640697961208,51.85588345094812],[4.654362985693807,51.85621136761387],[4.654307533669795,51.85627742962877],[4.654063415981532,51.85656822542444],[4.653709491061971,51.857000939690025],[4.653389096635543,51.8573790407039],[4.653343297735328,51.85743069087438],[4.65310792745651,51.85769615543767],[4.653064212915263,51.85774546350573],[4.65262430395721,51.858213636464974],[4.65221448062361,51.85864703027677],[4.651859987917117,51.8590279698697],[4.651497469003139,51.85940399526429],[4.651134808823366,51.85976786602133],[4.650745504474849,51.86015209863746],[4.650301051609726,51.860556145460464],[4.650092518423754,51.86074536897808],[4.649696004241793,51.861105166710075],[4.649118128804085,51.86161375395437],[4.648849970608829,51.861842240442094],[4.648360691167372,51.862244820637414],[4.648040843404495,51.862505896494305],[4.647831441592489,51.86267262098712],[4.647504384099527,51.8629285534469],[4.647442006267894,51.86297586326284],[4.647123161707274,51.863217662328694],[4.646786793222462,51.86346633423239],[4.646598215367357,51.86360574550941],[4.646142555104242,51.863928655488536],[4.645684699100678,51.86424256121172],[4.645335322742142,51.86447877849635],[4.645146918698656,51.86459478214257],[4.644785301622036,51.86481137916035],[4.644117088845468,51.86520203321388],[4.643655900901681,51.865471649948894],[4.643110560482008,51.86578397611708],[4.642562018974908,51.86609274694248],[4.64147932755927,51.866669303246866],[4.640885099285797,51.866994773733474],[4.639495396495142,51.86769157918604],[4.638710924662363,51.8680741907406],[4.636501338360266,51.86916542221454],[4.636377983522764,51.8692275901827],[4.636253909220964,51.86929717804102],[4.636136632666346,51.86936834629605],[4.635682694698946,51.86964268838297],[4.635547335168746,51.869724490767645],[4.635333656029424,51.86984692370121],[4.635261028151453,51.86971115272169],[4.635018424249299,51.869843979538864],[4.634752719504124,51.86999141722249],[4.634449513860241,51.870180096566216],[4.63422047200026,51.87036297653208],[4.633983691241712,51.870596034965075],[4.63298329080256,51.87187254643088],[4.632108758219442,51.8729883776765],[4.631509072123793,51.873753499393416],[4.631228026631982,51.87410842316537],[4.631215267357569,51.87412452959076],[4.631183763266775,51.874166402657146],[4.631069449395135,51.87430805591759],[4.630463422406544,51.87509407504064],[4.630471415672623,51.87509630178655],[4.629827055278287,51.875919562305576],[4.62885382640535,51.877181149012216],[4.628419545916751,51.877720692164964],[4.628311330407545,51.87785619796363],[4.627708939239889,51.87867406419707],[4.627443116015677,51.8790536523173],[4.62659262171059,51.88034537998924],[4.626391123509044,51.880657760675604],[4.626054193268445,51.88118008311487],[4.625513589191591,51.882013421370985],[4.624933057241201,51.8828447003429],[4.624782018599873,51.88305540261899],[4.624343949826542,51.883666482700086],[4.623696534409051,51.88445642295778],[4.623577701075238,51.88458498809158],[4.622964820207333,51.88524805848404],[4.622127162637879,51.88603266262474],[4.621320136480264,51.886765416332466],[4.620439722330877,51.88752146055042],[4.620422400528556,51.88753634054461],[4.620192070896092,51.88772057823397],[4.619935343136809,51.887921119251175],[4.619729536257453,51.88808284684956],[4.619617099523515,51.88817157620769],[4.619613492051401,51.88817442001361],[4.619452989912629,51.888293630243595],[4.619248914180282,51.88844224491197],[4.619572239718811,51.8895226974261],[4.619701628655756,51.88950912495878],[4.620496950706403,51.88943940642081],[4.621043832357054,51.88940222846882],[4.622559502519439,51.88935456624005],[4.624091675502801,51.889357193158084],[4.624570512085943,51.88936616286969],[4.625397327376555,51.88938163906012],[4.626468129398913,51.88944461236817],[4.626829137159056,51.889465843390205],[4.628284262798615,51.88964332099709],[4.629301427689209,51.88982611784938],[4.631073955033894,51.890144634863695],[4.631818790145649,51.89026341966837],[4.632173388620183,51.890319972232],[4.632780876795272,51.8904144798151],[4.63390873743244,51.89059334514706],[4.634239276502861,51.89062518927079],[4.635136500823637,51.890721496129196],[4.636772362071773,51.89091095512708],[4.637393770385351,51.89091045507763],[4.637859520233608,51.89090906695708],[4.638592266136843,51.8908369032534],[4.639300822017462,51.89073328265172],[4.640147799403119,51.890656128580844],[4.642912131508209,51.89040581183367],[4.644128492589591,51.89026243932466],[4.64460268980122,51.89021529892627],[4.646237299728078,51.89003568962652],[4.646349710260804,51.89002324815451],[4.648199352272253,51.889818522824875],[4.648333061838633,51.889812038042756],[4.649906489283503,51.889734031696854],[4.650116772575501,51.889725553517565],[4.651767310951247,51.88960699099625],[4.652859197808445,51.88963550106638],[4.654650939279083,51.88968196635418],[4.655073228319578,51.88970450828415],[4.655350518188526,51.88972039288548],[4.655775276971267,51.889763513593444],[4.657102674576353,51.88989516509107],[4.658223578737928,51.88981267950351],[4.659601499070507,51.88971143395793],[4.660027264898668,51.889679913178036],[4.660883180944166,51.88961422448604],[4.661017094479768,51.88960394233743],[4.662103656039486,51.88951882553798],[4.662600628484801,51.88948005861239],[4.663055141550387,51.88947088801787],[4.663547462606086,51.88946201145823],[4.664385527156415,51.889446244816966],[4.6649608921349,51.88947835782612],[4.666204296700221,51.88954671259028],[4.668166656785846,51.8895853445693],[4.668607552065382,51.88963474667405],[4.66936888901655,51.889720846230354],[4.669854296418713,51.88977665479303],[4.671645673363875,51.890046395726216],[4.673367280296448,51.89022757925001],[4.674165941156651,51.89041449260923],[4.675389524259193,51.890901587581574],[4.67833205570774,51.892072890810795],[4.679114344581956,51.89238402847442],[4.680675937320649,51.89300509254667],[4.682614487901433,51.893365498814376],[4.683024115809266,51.893441651753314],[4.683025622351033,51.893441930439266],[4.685733754171403,51.89394155238916],[4.687748131008202,51.89428725237619],[4.689858533493792,51.89464939736558],[4.690136418513126,51.89469707665454],[4.692409510398739,51.89508707937665],[4.692861339758364,51.89516554172552],[4.694082109363597,51.89540688311728],[4.694084499292743,51.89540735563136],[4.696551714646585,51.89590272603716],[4.697101762440909,51.896013155281445],[4.697911862561452,51.89617578519128],[4.6985586722141,51.89630563314317],[4.699970085121716,51.896589323596565],[4.703869103350188,51.89702487938015],[4.704349955330887,51.89707858581699],[4.705601217416692,51.897218323658194],[4.706965119304191,51.897042842579104],[4.714246081116742,51.89610576896966],[4.714932713501181,51.896025818173456],[4.71495225964199,51.896023539044585],[4.71508952417216,51.89600720106987],[4.715811990134818,51.895949040585656],[4.716536587960006,51.89610536348884],[4.717594065977905,51.89633350114832],[4.718885997421772,51.89660630565767],[4.718886040871251,51.89660631489331],[4.719104929594266,51.89665253826298],[4.720991898753423,51.897056868711495],[4.721307318282725,51.89712499196365],[4.721935727109869,51.89726070980904],[4.723412288695797,51.897871255961896],[4.723972239361878,51.898090582968656],[4.725208480808594,51.89860027355718],[4.72670064501749,51.899178381264655],[4.728151588439467,51.89972633381443],[4.731223454173805,51.90094275289317],[4.732799360362411,51.901512288216075],[4.733341334919028,51.901669017738726],[4.733404147830612,51.90168718246379],[4.734482509243857,51.90199902035657],[4.736259053657172,51.90227501531626],[4.737985398657361,51.902712220724005],[4.739128789143927,51.90338666614894],[4.739302744339564,51.90348927644685],[4.739400017862146,51.903537532718275],[4.740771383610035,51.90416787127016],[4.742173873932805,51.90468147780974],[4.743869124943203,51.90524868691194],[4.743992701415369,51.90529242726688],[4.745568948192886,51.9059271920444],[4.746148765727972,51.90625165038803],[4.746914919762943,51.90668036313409],[4.747793088967276,51.90720816734194],[4.748366750143365,51.90755294003513],[4.749362386263846,51.908170204146856],[4.750950452674311,51.90908408892027],[4.752360301187495,51.90986956841847],[4.753140465690386,51.91029133152048],[4.753514486550338,51.91047954539751],[4.754150101262188,51.91078927162477],[4.757511058616219,51.912426908659434],[4.759858210204376,51.91350156666164],[4.761762209730527,51.91421686923209],[4.762225700068299,51.91437904198361],[4.76394743047022,51.914981423897316],[4.765178750236643,51.91534239817716],[4.765570027977966,51.91545710278022],[4.766879441611554,51.91582648981561],[4.767193472481882,51.915903353256645],[4.770713843767482,51.91645634204607],[4.772287794075602,51.916631673060216],[4.772790343820305,51.91667803885092],[4.77362327821093,51.91675030650368],[4.776724759536273,51.91699531028494],[4.777799971085725,51.91708023062873],[4.779689538116537,51.91726292265133],[4.781425551974985,51.91750601348429],[4.782262294951461,51.91767867657268],[4.783356847089945,51.9179045307481],[4.783978379181425,51.91804537124097],[4.78520294897322,51.91832284886386],[4.785313428513427,51.91835054178515],[4.78538186052305,51.91836703543648],[4.78833867229883,51.919079461004145],[4.791223178421571,51.919785899345236],[4.791970743212858,51.91997535259625],[4.793309667886244,51.92031465253354],[4.79490777725311,51.920638030394166],[4.795678295531484,51.92076233736926],[4.796844257830032,51.920954232548674],[4.798523203533311,51.921204881857214],[4.800210018654622,51.92143319212105],[4.800375474103917,51.92145901504199],[4.80116421450933,51.92161841387614],[4.801233185900855,51.92163226732502],[4.801994164744426,51.92178512240784],[4.802138316523919,51.92181724555117],[4.803758696747982,51.922231288886465],[4.805170545908568,51.92264496064494],[4.80572057935464,51.922793034687956],[4.806088153995733,51.922891990351665],[4.808555435292847,51.92359232466319],[4.808748881201221,51.92365144086683],[4.810319165783192,51.924170356424],[4.811283514086043,51.924554630398035],[4.811312212521798,51.92456591664688],[4.811728746195907,51.92472974821808],[4.812955467430217,51.925434040366085],[4.81307092550535,51.925500327718034],[4.814205149385756,51.92623788847009],[4.814296507262863,51.92629728884429],[4.815037971307174,51.9268312173316],[4.815477833155533,51.92714795236304],[4.816687937533516,51.928025708708226],[4.817883835521576,51.928880912464116],[4.818195116308076,51.9290936474667],[4.818893869302316,51.92957116672317],[4.819074971634013,51.92969774514109],[4.820160955114237,51.930472001581705],[4.82027493911874,51.93055326731962],[4.820327317810681,51.93058963536646],[4.821163966868425,51.93119664572923],[4.821439270000972,51.931398466580255],[4.821526108094249,51.93145350705679],[4.824963320973959,51.93362041939206],[4.825192637978393,51.933764979856846],[4.826573553314445,51.9346176069973],[4.827784839518638,51.935438571494565],[4.828785691779455,51.936270298942425],[4.830047863894573,51.93725959157371],[4.831266116535531,51.93806431939578],[4.831412427158056,51.93814528651353],[4.83230463001992,51.93863901786369],[4.832513398996655,51.938754542121366],[4.834055078439618,51.93946472462769],[4.83458742967944,51.93968077410587],[4.83553923245924,51.940067043603754],[4.837188959470139,51.94041954845964],[4.837195965370817,51.94042104633693],[4.838980361155954,51.9406100185165],[4.840980305811436,51.94081285432123],[4.8418440612541,51.940893174706034],[4.842533571627873,51.94095728469117],[4.843265283032331,51.940994189190135],[4.844313679878622,51.941049719379386],[4.844319522526395,51.9410500249922],[4.846142363611391,51.941293562395096],[4.846172855255039,51.941297639599014],[4.84788195897843,51.941553255330454],[4.849059271474025,51.94151896496524],[4.849108121511384,51.94151782226201],[4.849750837709458,51.94150282952801],[4.849902117517258,51.94150156134323],[4.851255010884947,51.94149017152147],[4.852938333796464,51.941441482862025],[4.854941699325927,51.94130865858705],[4.856383676968385,51.941186489464144],[4.85645966833301,51.941180055204754],[4.85719786506957,51.941103621526054],[4.858162483424191,51.94097388520197],[4.859085126291109,51.94084897698882],[4.859939175044741,51.94071202417156],[4.861009770166949,51.94052854864657],[4.861441762488115,51.94045451095244],[4.862780419287641,51.94019333540394],[4.863242378929789,51.940099281767125],[4.863281117711055,51.94002599227116],[4.863669643885861,51.9399522740783],[4.863880981080698,51.939912173769926],[4.865666027971148,51.939605510389505],[4.869134878825428,51.93893772620567],[4.870862098198892,51.9385947758001],[4.872278511386592,51.938354435136034],[4.872406334174408,51.93833189463066],[4.872627109425534,51.93829296147916],[4.8744119113911,51.93807577871957],[4.87531838014043,51.9379916508806],[4.877792991018089,51.938030674196085],[4.877866900674547,51.93803394253259],[4.878233949014787,51.93805018281367],[4.879787770335819,51.938118899587934],[4.881802870524208,51.93828487398802],[4.88281201053943,51.93837698722817],[4.885110044140424,51.93858671399402],[4.888702486454933,51.939027021771224],[4.892281664006199,51.93949890164607],[4.892274950085019,51.93950903024899],[4.894073285560123,51.939786029373145],[4.897918294653997,51.94024420061382],[4.89884966666875,51.940373414730345],[4.900713254686231,51.94063192313725],[4.904433824655806,51.94112271280412],[4.9064226411569,51.941409076979625],[4.906938275751993,51.94146703751287],[4.907281272662151,51.94150559561108],[4.907460549972654,51.941525741934406],[4.908205826298285,51.94160950424624],[4.908498815197167,51.941646309095624],[4.913525567841568,51.94235763377085],[4.914011411932578,51.94243593667602],[4.914582658941934,51.94259703097987],[4.914919930928759,51.94269876781878],[4.915515524622578,51.942878435388806],[4.915889954768533,51.94300838908061],[4.916379953033391,51.943178451910995],[4.916636717578458,51.9433150328895],[4.918002749959205,51.943986985878425],[4.919187672397542,51.944728949551504],[4.920217826726049,51.94544250370161],[4.920350522600216,51.94553843282398],[4.920684978498761,51.94578724509503],[4.921328542065218,51.946265989668575],[4.921771449377095,51.94662483220856],[4.922357998419538,51.94710003768183],[4.922564941859242,51.94727890550228],[4.922716341031747,51.947409762584236],[4.922855775580723,51.94753027158913],[4.924493783309993,51.948945946214174],[4.925180308387317,51.94961465402009],[4.925289630654087,51.94972113681612],[4.925465888743999,51.94993138301956],[4.926301362332156,51.950927943088836],[4.927234095273517,51.95204164482203],[4.927607784937684,51.95248781239942],[4.92814123918099,51.95314714050567],[4.928791765525735,51.95393661503966],[4.92937988083337,51.954641514412295],[4.929595889816136,51.9549062253647],[4.930867111355976,51.95652825408587],[4.930885176976818,51.95655003097856],[4.931456647047031,51.957238783827414],[4.931966150273058,51.9578536706223],[4.932613868320942,51.95868239123594],[4.933104587380253,51.95920133982998],[4.933583606300834,51.95970727104339],[4.933920936064028,51.96001767071684],[4.934563211257164,51.96061073036277],[4.935189337865254,51.96106081007461],[4.935219470135176,51.961082470850066],[4.935738722817991,51.9614563653846],[4.93616475840318,51.961716368781225],[4.936408327249906,51.961865016381815],[4.937009154647504,51.962229851941395],[4.938332080725234,51.9628740931248],[4.939820579031098,51.96343995970648],[4.941567347662601,51.96383376984574],[4.94330543857239,51.96394279844395],[4.945097406049896,51.96388019223832],[4.946904769439498,51.963693757444375],[4.948691279824214,51.96347174931455],[4.950460725656203,51.963199747645035],[4.950700630132569,51.96314282519129],[4.952034225450062,51.962826388630795],[4.952245431089571,51.962769680453476],[4.953728546243662,51.96233446661545],[4.956333655186258,51.96137000945007],[4.95692356910982,51.96114231049488],[4.957333621108793,51.96098403335593],[4.957986702044067,51.960757476683064],[4.957998561754263,51.96075423023096],[4.958919137865249,51.96050198467775],[4.959458235868576,51.960376590701216],[4.960915229385298,51.96005802150631],[4.962409182296794,51.95972137542502],[4.963851419202619,51.95943421167103],[4.965287695445882,51.95921892432832],[4.965297996044287,51.95921737932829],[4.965471910270906,51.959210003323484],[4.966775275935351,51.959164765419175],[4.967131735925927,51.95921479136154],[4.967468454092179,51.95925856183194],[4.968101841603634,51.959336483534074],[4.968141829066628,51.95934197402397],[4.96819405434812,51.95935191235798],[4.968244575967903,51.95936512533285],[4.968288677923555,51.959377164923204],[4.968334638924682,51.95939267161354],[4.968394928980268,51.959417720948096],[4.968663922539058,51.95952255609459],[4.970943440758099,51.96046792610484],[4.972544353448682,51.96114603941256],[4.972548411413546,51.961147761492406],[4.972641799668057,51.96119874867204],[4.973998522973334,51.96193944765082],[4.975436179028849,51.96288589554034],[4.976143300121371,51.963445166283265],[4.976599767249855,51.96411858138907],[4.976903792416404,51.964304072852556],[4.977075525322057,51.96440680561321],[4.977166978776258,51.964473386081075],[4.977342974312821,51.964605021678125],[4.977787646044226,51.9649667847562],[4.978024522789143,51.96515144636403],[4.978626755989953,51.965713833454124],[4.979767996198769,51.96677950591216],[4.980830359943955,51.96777146928195],[4.981242022877677,51.968151647821244],[4.981583207992299,51.96845561294018],[4.982055658065742,51.96883198033868],[4.982334974015469,51.96907833097792],[4.983525254756076,51.97022488552706],[4.985940223988284,51.9725509359823],[4.987003038218131,51.973307476619674],[4.988045432789382,51.97399284994206],[4.988129442532319,51.974041294070126],[4.988398406364765,51.97419560884276],[4.989462692719168,51.97473924458213],[4.989555461683493,51.974786629704525],[4.991862328911028,51.975852924527665],[4.994232713250904,51.9766756418998],[4.994948387376054,51.97692402060167],[4.998073594739498,51.977871504085265],[5.001563118890324,51.97818905042627],[5.001866764663568,51.97819938388294],[5.002182455897641,51.97821553541967],[5.003009582189219,51.97813823408971],[5.007624625907802,51.97647104771483],[5.010077566014639,51.97554415471757],[5.011534062989345,51.974811775686305],[5.012635279560223,51.9742580136144],[5.014857552677881,51.97289457151195],[5.014984273487976,51.972807957013444],[5.016103338641106,51.97214018483858],[5.017768623192079,51.97136666344606],[5.020340062530906,51.97043700762668],[5.020600202297735,51.970346236935235],[5.022375735891092,51.96972665727517],[5.023399549881751,51.96955029547575],[5.024787622781182,51.9693111766267],[5.025078975268687,51.96929082536143],[5.025458330079915,51.96926432632868],[5.025858294020284,51.96924097233819],[5.027243503721421,51.969160081129566],[5.027900876361144,51.96916596420042],[5.028706204220047,51.96917317530875],[5.029672950343446,51.969203360109894],[5.030105149748374,51.969257990909114],[5.030236656035629,51.96927461374212],[5.030919921440786,51.969375519486206],[5.032069112370499,51.96956040353419],[5.032848968580897,51.969746223003526],[5.034054649864246,51.97017031849465],[5.03444522427678,51.97038855651482],[5.036127561521831,51.97132854655474],[5.037775332068819,51.97271730113924],[5.037925550241714,51.97291933570964],[5.038830358948596,51.97413619621],[5.03915894936554,51.97489672085934],[5.039392341945845,51.97543691277784],[5.039982220764653,51.976757554716706],[5.040402276102951,51.97744362603477],[5.040900351266965,51.97825708210934],[5.041044263354022,51.97849212572389],[5.04191456643809,51.979398962886684],[5.042857394837752,51.98038130915249],[5.044995389847583,51.98195895058674],[5.047752705414809,51.98359822892722],[5.048329536849515,51.98391172905827],[5.048462173375516,51.983983819023244],[5.050328674363409,51.98498205255626],[5.052381762868317,51.985934326904804],[5.053251019471061,51.986337491811454],[5.055155654003868,51.98717950480048],[5.056469598110603,51.987755565559226],[5.056811481401577,51.98791955418266],[5.056840654871986,51.98793354085565],[5.05788187216546,51.988432959298684],[5.059346561646023,51.98913546022019],[5.061670732804429,51.99047975403595],[5.064838588521601,51.99294632797237],[5.06628625693211,51.99407340620009],[5.066879507949513,51.994306180916546],[5.07009678154207,51.995568423596815],[5.070996467046364,51.995802038400576],[5.071734044289675,51.99597737286184],[5.075833403589942,51.99702697308412],[5.076507541602136,51.99720738579699],[5.076557708650999,51.99721944553471],[5.076753353725815,51.99726765304883],[5.076966100855077,51.99731698388977],[5.077122036498658,51.99735492946464],[5.07727795719486,51.99739086143403],[5.077416021606728,51.9974232228336],[5.077550097875806,51.99745537584059],[5.07763609368137,51.997474782832874],[5.077869991030688,51.99752756518921],[5.077985152501716,51.99755343018233],[5.078042552017833,51.99756625430211],[5.078124281499828,51.99758570366231],[5.078230348939988,51.9976106277424],[5.078311018274212,51.9976275754683],[5.078426535002968,51.99765478919144],[5.078543154712153,51.997680441744386],[5.078562029194948,51.99768635153877],[5.078719620958192,51.997729476539085],[5.078788257190512,51.997747273250816],[5.078906278618578,51.997778789426214],[5.079011600494793,51.99780638933328],[5.079157240308609,51.99784497037695],[5.079260722982119,51.997873266328014],[5.079388224489711,51.99790478883799],[5.079525857297555,51.997941083460326],[5.079669300984521,51.9979794064587],[5.079792774839596,51.998012284215214],[5.079915139917614,51.998047621716516],[5.080050594091527,51.99808322693257],[5.08015155050824,51.99811059870929],[5.080237992761848,51.998133204759874],[5.080294624971023,51.99814983677656],[5.080400353109517,51.99817364347171],[5.080502023443719,51.99820101680705],[5.080621184765531,51.99822802214574],[5.080742501310455,51.998259293383455],[5.080840936356292,51.998282847003665],[5.080991618226556,51.998327730633335],[5.081126688483998,51.99836649745619],[5.081250119385495,51.99840384969279],[5.081375740815851,51.99844030866897],[5.081404793340424,51.99844852744835],[5.081411477569523,51.99845059412079],[5.081490627228761,51.99847512175861],[5.081535714819352,51.99848935031098],[5.081611702358496,51.99851422918541],[5.081720429590622,51.99854476565287],[5.081823706377847,51.99857597098565],[5.081902975299828,51.99860015710241],[5.082030980021806,51.998641762809875],[5.082126593319295,51.99867363111466],[5.082288762270147,51.99872562554727],[5.082445108376686,51.99877740694219],[5.082645090174669,51.998842945110574],[5.082751250854256,51.9988806825225],[5.08289161240458,51.99892341580359],[5.083016687602304,51.99896567798854],[5.08317956844248,51.999020369488164],[5.083270463855591,51.99905245836905],[5.083271555968152,51.99905246118839],[5.083331552782874,51.999071455332356],[5.083396610578203,51.99909786878584],[5.083448615346768,51.999114379478485],[5.083534421342546,51.999143309152004],[5.083601316991697,51.999164999436466],[5.083676945183262,51.99919167368483],[5.083781289582522,51.999226924735645],[5.083858016303201,51.99925268490129],[5.083944540212285,51.99928319804783],[5.084051794437181,51.999318887786366],[5.084143787694428,51.99935031368875],[5.084222314403124,51.99937697706936],[5.084313566834792,51.99940816723855],[5.084398658975998,51.999437310159],[5.084507360876249,51.99947436941046],[5.084622276294819,51.99951210965698],[5.084709530884568,51.999542390422604],[5.084789870252681,51.999572437644154],[5.084864405389729,51.99959729270054],[5.08492113013774,51.99961584619371],[5.084973847560641,51.99963482080636],[5.08500002269322,51.99964454132585],[5.085217117073351,51.999713031202155],[5.085387662454213,51.999763460903935],[5.085548044545965,51.99981163524397],[5.085666602690873,51.99984713674811],[5.085800432350912,51.99988760276317],[5.085872433786407,51.999910437334336],[5.085928070884215,51.99992627311894],[5.086077185919575,51.99996969010827],[5.086149544591882,51.99999141088569],[5.086184431700297,52.00000496441453],[5.08625169791322,52.00002823605595],[5.086294569062855,52.000049881365605],[5.086324739163186,52.00006545413049],[5.086382493059229,52.000097923282695],[5.086417719246455,52.00011956699007],[5.086499066006745,52.000166926888895],[5.086558283817697,52.00019828515575],[5.086629100721369,52.000241555407555],[5.086694481505805,52.00027898738666],[5.086765290962531,52.000323408026375],[5.086844808705667,52.00037435829686],[5.086914519937725,52.00042190393805],[5.086978772382223,52.000466990827086],[5.087052784176443,52.000526933092736],[5.087132602701364,52.00059179766826],[5.087206254958668,52.00065330286627],[5.087282455655687,52.00071483248549],[5.087393725962843,52.00075189559651],[5.087574065784171,52.0008128991984],[5.087784245203461,52.000882499225185],[5.087939143100687,52.00093515043992],[5.088050399936372,52.000972212892655],[5.088215478122936,52.001029150014666],[5.088392246939847,52.00108004055098],[5.088625731495688,52.001149230825234],[5.088786125795544,52.001192457248195],[5.088892693095842,52.00122321527496],[5.089042898526273,52.001267979477745],[5.08919894252995,52.001310744909205],[5.089326958437497,52.00134626664316],[5.089481888974561,52.00139012544119],[5.089605203375933,52.00142319019257],[5.089704877457839,52.00144830344472],[5.089832533082019,52.00148337430626],[5.089954036883603,52.00151504993507],[5.090111537742928,52.0015557864968],[5.090251601218661,52.001590870233564],[5.090309066646719,52.00160604342094],[5.090404012048169,52.001628447695296],[5.090602647803296,52.00167218148295],[5.090766722119837,52.001710021547545],[5.090879879405866,52.00173559918064],[5.090925710447138,52.001746248685336],[5.091047597754773,52.00177299861358],[5.091149089872759,52.001794286238855],[5.091312087741197,52.001829875784594],[5.091420880134878,52.00185274546717],[5.091512927284933,52.001873146183264],[5.091653012528457,52.00190082202632],[5.091771619998823,52.00192598104673],[5.091852760770288,52.00194184205458],[5.091976108714355,52.00196588024671],[5.092099807487888,52.00199195052114],[5.092177319701729,52.00200600457056],[5.092178425030554,52.002006223056966],[5.09230037485638,52.00203032931064],[5.092428645050563,52.0020544332849],[5.092534750367741,52.0020741852914],[5.092656114014551,52.00209668980936],[5.092770955502086,52.00211669714999],[5.092897411780671,52.00213989725636],[5.092980616971722,52.00215640979507],[5.0931347302515,52.002181512346276],[5.093294994704785,52.002207996256026],[5.093466556822219,52.00223497551863],[5.093632658306354,52.002261922939205],[5.093800236571461,52.00228799296159],[5.093976194396603,52.00231095572138],[5.094079822679516,52.00232442640177],[5.0941914401269,52.002338797715936],[5.094292517498462,52.00235042826849],[5.094446345570662,52.0023658930429],[5.09456452637588,52.002378752328454],[5.09469398599394,52.00239275405208],[5.094808542494108,52.002405352418776],[5.09496889631004,52.002422864047105],[5.095102722039785,52.002437325566824],[5.095211105689645,52.0024474454615],[5.095304561416493,52.00245772598944],[5.095415835990087,52.002468949422195],[5.095524570760559,52.00248108325385],[5.095669674004812,52.00249693827049],[5.095815126621798,52.00251282992535],[5.0959453035081,52.002526382636034],[5.096077981165004,52.00254057055953],[5.096155154627498,52.00254881477205],[5.096286900874119,52.0025629282518],[5.096496872332198,52.002587067832124],[5.096631519687503,52.00260298572738],[5.096805837520211,52.002623243744615],[5.096916460840191,52.002636207860355],[5.097048195813227,52.00264988902563],[5.097168649116727,52.0026651241763],[5.097284387055911,52.00267765113458],[5.097446311108367,52.00269811137721],[5.097647183643902,52.002721992817406],[5.097870986989979,52.002746811107386],[5.098015087988225,52.00276478197952],[5.098159561974697,52.00278138738499],[5.098289489287288,52.002797741203395],[5.098441942455089,52.00281684658195],[5.098602427322167,52.00283933303397],[5.098689391280853,52.002849343289],[5.098808018170536,52.002865686820044],[5.098936475010927,52.002882054297785],[5.09905838597577,52.002897273103734],[5.099206843840633,52.00291726653198],[5.099316359069362,52.00293292213654],[5.099397517088001,52.002942252545495],[5.099523057274982,52.00295704830701],[5.099591116016778,52.002965232040694],[5.099617327924745,52.00296774085358],[5.099710140567214,52.00297643438555],[5.099830232919293,52.00298918518531],[5.099932498632064,52.002997631967105],[5.099977989137209,52.00300286621499],[5.100049704500153,52.00300859583797],[5.10015998409913,52.003016396839335],[5.100253182567492,52.00301944629772],[5.100348195728325,52.00302566394739],[5.100415897391217,52.00302823770097],[5.100517112801941,52.003030155987794],[5.100592119065591,52.00303139919597],[5.100660574939065,52.00303217700596],[5.100707898566782,52.003033155028845],[5.100818578007738,52.00303310070477],[5.100919439359235,52.0030334538387],[5.101056709235766,52.00303366167937],[5.101142283764379,52.00303333032113],[5.101208180951493,52.003033418493565],[5.101297747304033,52.003035128049696]]]]}},{"type":"Feature","properties":{"id":8,"statcode":"WS14","geometry_g":"polygon","gag_id":"14","hierarchie":"2","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.14.14_De Stichtse Rijnlanden_p","sde_id":null,"land_code":"NL","inspire__1":"NL.14.14_De Stichtse Rijnlanden_v","inspire__2":"NL.14.14_De Stichtse Rijnlanden_l","wbh_code_o":"14","einde_leve":null,"laatste_wi":"1993/12/31","admin_code":"HDSR","waterschap":"De Stichtse Rijnlanden","publiceren":"14","Aangemeld":1,"Actief":1,"KVK":30276831,"tnostatus":2,"CPT":566,"GMW":133,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.101644506365444,52.12846049139566],[5.099293859638459,52.126420394259284],[5.097585863300212,52.12495790704724],[5.097130015178895,52.12456089159167],[5.095848868758798,52.12344504391498],[5.094161330924945,52.121923298439576],[5.094126329211475,52.12189231064171],[5.092436289007574,52.12039580800899],[5.091540132164343,52.11960598889466],[5.091122677591634,52.1191833446186],[5.090711160706359,52.11880003639689],[5.09058293296619,52.118631188370216],[5.090469052475738,52.11846546817487],[5.090223740792872,52.11837187857218],[5.089803176189019,52.11845649291723],[5.089457186656574,52.118517538652355],[5.089192661677835,52.11856421062351],[5.088649496415043,52.11866113923963],[5.087758764980419,52.1187417420918],[5.086996325753915,52.118811708384655],[5.08614647809749,52.11891936721625],[5.085054144738002,52.119021338777436],[5.083850768524997,52.11914885530909],[5.083030084854692,52.11922567481112],[5.082615341434024,52.11925634134406],[5.082118889678976,52.11922724937094],[5.081377159625925,52.11920005425132],[5.080667317007876,52.119181637754956],[5.080074520537777,52.119262390216555],[5.079525374028619,52.1193629193919],[5.079279931666924,52.119458334079816],[5.078207561734982,52.12003497958383],[5.077012501784301,52.12066577823637],[5.076156135726987,52.121109842097006],[5.07561255275894,52.12155556225877],[5.07496356665766,52.122094809071555],[5.074297263663802,52.12266293884266],[5.074076893439809,52.12284997930065],[5.074013567055954,52.12290373939165],[5.073961037531605,52.12297747256787],[5.073870168255851,52.123148282512986],[5.073776612186265,52.12334605833539],[5.073580616537493,52.123606747646946],[5.073398269012093,52.12389903890581],[5.073326079621451,52.124014747533025],[5.073083158476973,52.12439412393447],[5.072825726738411,52.1248905931825],[5.072693951367834,52.12519976277548],[5.07263808931507,52.125310580063974],[5.072541677600246,52.125501857880955],[5.074476163784136,52.12658881027779],[5.075607024986351,52.127224182367584],[5.076059962853502,52.12699421477569],[5.076975510381293,52.12770543074547],[5.078640294928834,52.12899858073303],[5.080651549102308,52.130562409950194],[5.082335938582161,52.13189026043483],[5.084143095595609,52.13330266444247],[5.085635071660405,52.13449374111711],[5.088006410722373,52.13348199377309],[5.088221317179383,52.133390303565584],[5.088415968803507,52.13330895181787],[5.088416554696987,52.1333087016372],[5.090947782131875,52.13225065217599],[5.093641934069229,52.131113095390944],[5.095801339314009,52.13021065915351],[5.098565448176253,52.12904788838256],[5.099335116516477,52.12885027986733],[5.099549376129261,52.12879526551537],[5.099909185365567,52.12870288259414],[5.101130198329245,52.12852693417223],[5.101644506365444,52.12846049139566]]],[[[5.213963000731744,52.181521286392474],[5.212212289250716,52.17622364990602],[5.220902194479096,52.17825314570001],[5.220922220686231,52.17788511005034],[5.221111106388332,52.174412797325125],[5.222417675607603,52.1745304995955],[5.222572511927332,52.17454444904455],[5.222586892197244,52.17454574537102],[5.222761604862281,52.17015146352185],[5.223460287995501,52.16759759934404],[5.223460317492358,52.16759752748154],[5.223512066995464,52.16740834948132],[5.223598008924172,52.16709419678791],[5.223693883329569,52.166737625771354],[5.223687097443213,52.166403373389194],[5.223715101441063,52.163489040435486],[5.223715101671371,52.163488977520316],[5.223757924797883,52.15903196524908],[5.223724156701034,52.15862743434141],[5.223696241475897,52.1582929005783],[5.223839172258829,52.15791869682094],[5.22427957493682,52.156433490906],[5.224632788853493,52.15493102298209],[5.225048256818228,52.15325506393778],[5.225213040441554,52.153080582423975],[5.225530207465306,52.152878509703825],[5.225443863189875,52.15270172436693],[5.224529740018404,52.15178929733328],[5.224529696380484,52.15178924334549],[5.223978893610957,52.1512394453509],[5.224003643842124,52.15123181284269],[5.226027210893812,52.15060748526835],[5.226932240633442,52.15024415698121],[5.227202816101413,52.150135527076735],[5.227365203189994,52.15005766869179],[5.227370150172062,52.15004304300519],[5.227418023686408,52.149901862157705],[5.227753946530197,52.1476980119841],[5.231174542528114,52.14784649696583],[5.23253394948204,52.14790547591026],[5.232849821266297,52.14796505695833],[5.233310752664509,52.1480519879068],[5.233361553289242,52.14803056391351],[5.234288992320067,52.1476395254239],[5.234697863129156,52.14750074096654],[5.235245551410316,52.147371912720565],[5.23726053812604,52.146897902538],[5.238129741659026,52.145622677679434],[5.238513976560738,52.145058925283365],[5.239013177090526,52.14438011729533],[5.239388301184588,52.14390978932467],[5.239388374526128,52.14390969953691],[5.23949590345279,52.1437748799206],[5.239549779001618,52.14372683476899],[5.23993928539097,52.143379469272254],[5.240138754159879,52.14320157655695],[5.24047026673885,52.14295308547384],[5.240470340017626,52.14295301366125],[5.240717452665233,52.14276778206828],[5.241318361423827,52.14237361311304],[5.241565992756921,52.142224395125794],[5.241895165095572,52.142026040952224],[5.242587756342766,52.14172439250575],[5.243304652887909,52.14137979816923],[5.244483937021012,52.14083913865126],[5.256514174753457,52.144057552196266],[5.256749200273778,52.14312267823994],[5.256758984794856,52.14308375322353],[5.255770323276868,52.14074116808093],[5.254996156022049,52.13890660695181],[5.255006829466721,52.13888342097059],[5.255867436030947,52.137012242397105],[5.256498438832065,52.13613949206086],[5.256639917917988,52.135943809785346],[5.256874392902172,52.13565820654148],[5.256874466194992,52.13565811674267],[5.258011574528412,52.13427299929279],[5.258370461177317,52.13379860195052],[5.259209001526679,52.1326901736859],[5.260147800385933,52.131332035495284],[5.264344922390781,52.125113651371336],[5.264347341714672,52.12511005869616],[5.266624014328225,52.12572204260867],[5.271934381966928,52.12714927162528],[5.274958374247557,52.122533207691795],[5.282171616043223,52.112027885402064],[5.282177241105192,52.112019684363155],[5.283823088977436,52.112449010618285],[5.284859935849577,52.11271945497839],[5.284862103400527,52.112716418914026],[5.286633523267927,52.11023527592514],[5.286636027398973,52.11023176374974],[5.28846807445075,52.10766537472932],[5.288471831892107,52.107563381995966],[5.288474611923139,52.10748758847731],[5.290399032160908,52.10490400663249],[5.302255470769103,52.11101289332528],[5.306125797363004,52.110387577138255],[5.306198522429565,52.110364402047395],[5.306654370604309,52.110219135173715],[5.310864534304952,52.10845354211941],[5.314219969661078,52.106565647723706],[5.314285269389067,52.106528900148994],[5.316933688982642,52.105017832949734],[5.3198458927899,52.10335606481681],[5.32508335824122,52.100453560239465],[5.325826169857149,52.100048472203824],[5.326254998739147,52.09981461934668],[5.333740560287748,52.09666283809587],[5.334561307841823,52.09631721272106],[5.334602049622255,52.09630718225293],[5.334602166411069,52.09630714635285],[5.337733039705877,52.09553605862927],[5.339958350100783,52.095013137964145],[5.340674900206629,52.09489208379841],[5.341621957341795,52.094768588700866],[5.343314486625246,52.094550990739684],[5.343796787312136,52.09449555083718],[5.34429655629431,52.094438021089054],[5.344329481106635,52.09443423109399],[5.343375458896288,52.09188759312429],[5.343375342494724,52.091887251536306],[5.343170730978287,52.09134103629187],[5.34317058544038,52.091340649752695],[5.342821291857067,52.09040816448272],[5.344953053036548,52.08439356277882],[5.345629041631807,52.08248595707488],[5.345454795044676,52.08193427293656],[5.345393571929498,52.081740433280174],[5.345412750823966,52.081463770287996],[5.345376285858397,52.081206474815936],[5.345231908817006,52.08078034571713],[5.345045549507354,52.080230319309656],[5.34508687470794,52.0802022643841],[5.34539953443454,52.07999001488443],[5.345643190293391,52.07969887926048],[5.34566743303255,52.07966991033397],[5.345967617714133,52.07926263242321],[5.345971882657798,52.0792568456116],[5.346642011841563,52.07824367560797],[5.34724460855179,52.0772717699184],[5.34741626760756,52.076879086210624],[5.347432652822002,52.076841602587926],[5.347453803001369,52.07679322705421],[5.34751968283623,52.07653982227069],[5.347606345619892,52.07620652067807],[5.347727207105923,52.075614194943135],[5.347724790516432,52.075592155448184],[5.347668875574814,52.07508360210441],[5.347628543601161,52.07495176992571],[5.347556257914961,52.0747154679423],[5.347541611798548,52.0746675837054],[5.34729540196814,52.07421697501823],[5.347017637665439,52.07390791683129],[5.346838278481903,52.073642420714236],[5.346591133228037,52.073256416258744],[5.346311375587791,52.07288977822573],[5.347526891164065,52.07222703584995],[5.345449590493655,52.0705247747062],[5.345471952785438,52.07048950448984],[5.346046860527855,52.06958264053237],[5.346755060030241,52.06846545385311],[5.3482829381221,52.06605502780735],[5.344831433519894,52.0660302929377],[5.338608704544897,52.06598543929165],[5.339604791862568,52.05860355123021],[5.340131803842052,52.0583441688436],[5.34013190595581,52.05834412394394],[5.341962621512322,52.05744304765307],[5.34397687759835,52.056416914048114],[5.343974974087994,52.05641014533306],[5.34396099577954,52.05636031034343],[5.343954820313018,52.056338323257364],[5.343941001835323,52.05628910850033],[5.343988718092217,52.05626401327445],[5.346843704399109,52.05476218925313],[5.346843864857459,52.05476209942711],[5.349164206938455,52.053541388941156],[5.353029250547724,52.051599139282885],[5.354417219350784,52.05090158954888],[5.355198091568229,52.05057036779224],[5.355655846825804,52.05039354231842],[5.355804542823797,52.05035653297996],[5.355916246924607,52.05032872646646],[5.356669477074228,52.050076411963225],[5.357271233330252,52.04982125016156],[5.357940644619152,52.04953604586583],[5.37419472101988,52.04331609291295],[5.386480579384779,52.03839385142309],[5.386645446233646,52.03832812213556],[5.388288870627444,52.0376742590246],[5.388288972645756,52.03767421408302],[5.391815100222754,52.036271135522696],[5.391942819154916,52.03622031155514],[5.392143623509697,52.036027903748575],[5.402934046368828,52.03251275504382],[5.41316135850366,52.02917961372604],[5.413166734349601,52.02917785985164],[5.413004049504714,52.028835439856834],[5.412002609895802,52.026727449891204],[5.413262345312446,52.02690100612505],[5.416969375555841,52.02741162650663],[5.418360866810604,52.02391188575297],[5.418360997712077,52.023911562145955],[5.41935983529246,52.02139903196448],[5.419413526181052,52.02126396170598],[5.419483111068454,52.020846839793315],[5.419480414577897,52.0208249634487],[5.419458857225937,52.02064982684936],[5.419430221964279,52.02041738392315],[5.41929014644847,52.01999470200242],[5.419150784611573,52.01975103614179],[5.419056759269218,52.01958665100757],[5.418753665624873,52.019278907811845],[5.418750604093765,52.019275798745895],[5.421152214534931,52.018232504797524],[5.421527106998482,52.01821630680601],[5.421656145111866,52.01821073224165],[5.421691357140507,52.01819374331215],[5.42183853960008,52.018122684712374],[5.421909400207606,52.018088472912524],[5.421972672605428,52.01801912873999],[5.422139098313395,52.017836737125904],[5.422363288035247,52.017807737281466],[5.422444579576567,52.017830506743906],[5.422613719871687,52.01787788608426],[5.423530985921639,52.01781298964352],[5.423846892049982,52.01778257433112],[5.424748198829506,52.017695769329634],[5.425578073360539,52.0176558988531],[5.426605971743566,52.01760696799876],[5.426837997886016,52.01758139045929],[5.426838245512715,52.0175813634112],[5.428100787012718,52.0174421530678],[5.428101646421099,52.017442062886694],[5.428108558065936,52.01744129648453],[5.428167228158948,52.0175512007846],[5.42853746708864,52.01824473843693],[5.428561879908297,52.01824151207851],[5.430070937857018,52.01804208980152],[5.4300714039673,52.01804202671422],[5.430154415530843,52.01803105778737],[5.430159295131441,52.01803040885481],[5.430234409426266,52.01898504603796],[5.430289276161663,52.01968248633977],[5.430587051018387,52.019694708255685],[5.431028869419087,52.01971283480065],[5.431760075651183,52.01976114906036],[5.433970131106983,52.01952490765966],[5.43449422268576,52.01948004453366],[5.435189751684055,52.019420503366895],[5.436017240420463,52.01934965012316],[5.438431059284365,52.01918711337367],[5.440258863804006,52.0183807404146],[5.440351920875734,52.01835373392509],[5.44041732289623,52.01833475731474],[5.446450366070912,52.01658381080388],[5.448807722420375,52.01636674738672],[5.450327534778538,52.01622678577819],[5.452002748972951,52.016072490660456],[5.452093452314752,52.01626860649386],[5.45218975336275,52.01647684414007],[5.452224055025859,52.016463801349076],[5.457940170434003,52.01428940481622],[5.458013131268012,52.01437924216868],[5.458088190417901,52.01437747116157],[5.460036230190751,52.01433138337914],[5.462682259382011,52.01421896078318],[5.462693547680963,52.014218477156746],[5.462731496467044,52.01485829096565],[5.463737286217871,52.01483002830418],[5.465568257284247,52.01477855928439],[5.467121114849156,52.014734891247585],[5.473873132367777,52.0197109298514],[5.474453265517405,52.01966141629438],[5.475555075034981,52.01956735006705],[5.475599195102704,52.019563586807955],[5.475906021517606,52.01924171541799],[5.475906079665672,52.01924165245722],[5.484835305051344,52.00987212648507],[5.485127158191132,52.00963064188728],[5.485163563283591,52.00960051924173],[5.485212159193916,52.009576992700374],[5.485606424381203,52.00938612353701],[5.490775299481071,52.00658243124559],[5.493990863113662,52.00451705149946],[5.496511494370078,52.00415465040924],[5.496530305656868,52.00411701749925],[5.498410545102377,52.000355940056586],[5.498444692422729,52.00039956320459],[5.498447789434652,52.00040352404906],[5.499097675082879,52.00123375404555],[5.499097733467096,52.00123380791889],[5.499764385800811,52.00208542796207],[5.502777757537372,52.00196401195331],[5.506678869115554,52.00180670956575],[5.513240214939701,52.001479081977195],[5.515425971163042,52.000317968807984],[5.515426218331755,52.00031783371594],[5.516930889656811,51.99951846535045],[5.520265838536414,51.99924319550071],[5.520296104984194,51.99924069847335],[5.5204598989314,51.99922717444026],[5.523467384107937,51.99893694971533],[5.524522032769095,51.99883469528413],[5.528153202768823,51.99848257278341],[5.528370220145803,51.99813384125555],[5.529082910011029,51.99698858309897],[5.529986362192488,51.99662302790567],[5.529986434910724,51.99662300085286],[5.530426020168527,51.99644513398823],[5.530772846064727,51.996261572465045],[5.530800384703639,51.99621293082074],[5.530903516491476,51.9960307584548],[5.530923062663087,51.99599623797276],[5.530935919093595,51.995764651131054],[5.53093682733018,51.99574821066361],[5.531014442735186,51.995641668860245],[5.531039434975862,51.995607357408716],[5.531067591593824,51.995592663246505],[5.53115309348515,51.99554806712964],[5.531241807666065,51.99550178622625],[5.531317150363235,51.99543140639999],[5.531408301612048,51.9953462485585],[5.531489263417691,51.99512650534743],[5.531554696509971,51.9950312043525],[5.531774355538692,51.99471129713232],[5.532206275129668,51.99439758130146],[5.532611648704902,51.99424625000774],[5.533107315193289,51.994088621393814],[5.53310860556686,51.99408247188422],[5.533119645180937,51.99402978750718],[5.533119688392405,51.9940296436428],[5.533177882869463,51.99375203468244],[5.533212746285804,51.99355762220508],[5.533146514443689,51.993410523185545],[5.533050056894599,51.993200832068204],[5.534721504542364,51.992793712054656],[5.535881618740922,51.992486930992804],[5.536992010822513,51.992149588129934],[5.537504782902825,51.99201161219301],[5.537505132025376,51.99201152186481],[5.538205270083295,51.9918231311258],[5.538227540215861,51.99181713436408],[5.538285227273366,51.99178779473114],[5.53884593158758,51.99150259693295],[5.540100147662035,51.99123697134676],[5.540120312073731,51.99123270269459],[5.540488855520819,51.99063079688224],[5.540488942320533,51.990630634981926],[5.540966593514543,51.98985051151473],[5.543748818876663,51.98878791446923],[5.543890509245775,51.988911034468366],[5.545871731631602,51.98818735374796],[5.547136671365251,51.98772527365466],[5.547251028688835,51.9877386541809],[5.547423409484684,51.98775881349205],[5.547442969110479,51.98776110577649],[5.547499139958816,51.987758710229215],[5.547499256422445,51.987758710070366],[5.547594160313317,51.987754679724404],[5.547736821770026,51.98774861566809],[5.548175617351425,51.98768846880507],[5.548548302658721,51.98767242619796],[5.548559743471941,51.9876719341179],[5.548935713791775,51.98777553643046],[5.548937039896308,51.98777590312101],[5.549198281595888,51.98754984113558],[5.549199094237445,51.98754912096105],[5.549810906994047,51.987019681157435],[5.551583207300837,51.985485863095214],[5.552553442992238,51.98552325913051],[5.552445507134434,51.982592246692874],[5.552425805265517,51.9820573693447],[5.552450536079254,51.98118895867183],[5.552485408828047,51.97996472709579],[5.552686187494056,51.97953513256634],[5.552819594988027,51.97924969537374],[5.552878345890397,51.97902686718103],[5.554652367794755,51.97615363129307],[5.5546525848314,51.976153289432354],[5.556611196007099,51.97298064107532],[5.556932028451723,51.972736373148614],[5.55703300525742,51.97271902383732],[5.557467322483323,51.97264441344948],[5.55754376378361,51.97263127876095],[5.557844316907085,51.972605073520974],[5.557989319594446,51.97259243218216],[5.558326043939523,51.9725871965382],[5.558626882377244,51.97258251562567],[5.559424609840433,51.97253303760195],[5.560199063717514,51.97246055166844],[5.561098950089811,51.972369907663236],[5.561844233402646,51.9723457656444],[5.562705870398053,51.972300107192254],[5.562736891468516,51.97229858679304],[5.563235817845904,51.972274030708896],[5.563533755206842,51.972246529529095],[5.563832739620953,51.972218927150074],[5.564342313655067,51.97216030305072],[5.564519520531446,51.972114986916864],[5.564520741763417,51.97211467947519],[5.564831837906322,51.97203512693053],[5.564957010600811,51.97200467886745],[5.56543474276413,51.971888438860944],[5.565924035447083,51.97176326302934],[5.565942479558145,51.97175738365573],[5.566681634968273,51.971521673903275],[5.567232274875875,51.971385729902664],[5.56785705939773,51.97123585448592],[5.567948768933452,51.97121385414777],[5.568636327571707,51.97103134969598],[5.569612049472486,51.970755698893754],[5.570526844052768,51.9704874334621],[5.571811569859573,51.97010426830099],[5.572202162265709,51.969979392070094],[5.572764169063603,51.969799694550304],[5.573414160045071,51.96962153574355],[5.573426951364842,51.96961802804872],[5.573469133616733,51.96960645628717],[5.574133449692273,51.96937170798639],[5.574369657880321,51.96923205071405],[5.574576440438912,51.969109787130435],[5.574970373759937,51.96875805189724],[5.575082341662928,51.96862748995612],[5.575332398898228,51.9683358718702],[5.575682610645596,51.96797128812688],[5.576161072104293,51.96750622466536],[5.576204558532829,51.96746983336542],[5.576280757559768,51.967406083229335],[5.576680367321107,51.96707170723357],[5.577315818192237,51.96668951773687],[5.577395564714677,51.966666909170144],[5.577890203429675,51.96652664642028],[5.577959383425562,51.96650702971512],[5.578646583018571,51.96642698665139],[5.578660960954601,51.96642732275496],[5.579295540649314,51.96644221424211],[5.579898006481115,51.96648420050752],[5.579895725862045,51.966471566818],[5.57929482202333,51.96314297378692],[5.578969277861181,51.96181578377037],[5.57905887197165,51.96180841098686],[5.579399896567987,51.96178034971575],[5.579571724972927,51.961766208695806],[5.57980330120509,51.96174021291355],[5.579889175135599,51.96173057157514],[5.580203735948006,51.961662643666614],[5.580309991096846,51.96163215182324],[5.580553177076405,51.9615623628476],[5.580914002907607,51.961517950976194],[5.581324383959364,51.961527385464],[5.581682373315533,51.96156724049128],[5.581862011517084,51.96124432881096],[5.581878180656376,51.96121525209178],[5.582487654553346,51.96134185551473],[5.582586665968741,51.96136241775829],[5.582586767892642,51.96136243556526],[5.58298357181416,51.96144486220719],[5.583030738713407,51.96137097233494],[5.583261065302547,51.96101015157088],[5.584132441514965,51.961059963228855],[5.585347388435571,51.96112939509933],[5.585412268842517,51.96079139142401],[5.585672361367276,51.960803383112506],[5.585694451684406,51.96080439742067],[5.585717012665273,51.96061593020167],[5.585742015064147,51.9604071454633],[5.58618754796886,51.96038607843504],[5.587385825539334,51.96032939470694],[5.587385898244363,51.96032938559484],[5.591050867838957,51.960155939663544],[5.592756454896337,51.959685643608736],[5.592756774599554,51.95968556215544],[5.592765943367828,51.95968302941262],[5.592865774431711,51.959244400061024],[5.592962288133847,51.959021772486246],[5.593198408421165,51.958811537608696],[5.593626523783962,51.958677086414774],[5.59456810807076,51.958399840460245],[5.594568587544573,51.95839970479067],[5.59566626936643,51.958076478282244],[5.596999279326327,51.95768395374569],[5.597027580383261,51.95767561606421],[5.596705124657097,51.957455979807655],[5.596315117849955,51.957284720707406],[5.596266194089046,51.957263236013034],[5.596270114315976,51.95725844729965],[5.596435255165212,51.95705677205922],[5.596433252574966,51.95705161638108],[5.596424137579499,51.957028092436644],[5.595558239202257,51.95479582186673],[5.594848084335768,51.95483106353885],[5.594330525176112,51.95487980343975],[5.594167156357797,51.95489518256221],[5.594093810812357,51.954763229659385],[5.593964078290004,51.954529835884145],[5.594408466558689,51.95339267066933],[5.594514150958157,51.95312224398487],[5.594525911065375,51.95309213062447],[5.591956852155009,51.95155767919778],[5.590834951181735,51.951002637037924],[5.590205856228324,51.94995379178783],[5.590183243995524,51.94995843283496],[5.588693689780282,51.950264278008014],[5.586569326137173,51.95070042507424],[5.583307167382431,51.951433396289346],[5.579895021298331,51.9521169617865],[5.579834966904405,51.95212898765397],[5.577957344830798,51.95239777038764],[5.576378653017194,51.95257447003834],[5.575066520357189,51.95272077374568],[5.572718446818182,51.952982539147484],[5.570950880975142,51.95319807739565],[5.569183298164631,51.95341359806315],[5.565316740380965,51.95392061754917],[5.561912792275896,51.954403507239896],[5.561384901971832,51.954519331414566],[5.560286031344959,51.954760410852394],[5.560256496179758,51.954766889932586],[5.558775138220745,51.95517662479446],[5.558534339336838,51.955254149117536],[5.557489826615875,51.95559042520898],[5.55714327474181,51.95570199450774],[5.555496998537611,51.95627933204543],[5.554051405736477,51.956835059511626],[5.554042718453783,51.95683839749124],[5.553363659270924,51.95713615995486],[5.552641118672255,51.95745298081368],[5.551254580865979,51.95816274749772],[5.550070511140842,51.95885500476343],[5.550013543149049,51.95888830418024],[5.54970889279809,51.95908863293713],[5.548822241726222,51.959671645377],[5.547862198061666,51.960389080331886],[5.547695227709378,51.96051386723974],[5.546696462021333,51.96138287774902],[5.546074284707991,51.96197048033526],[5.545969499674146,51.96208597671456],[5.545475973794003,51.962629953111346],[5.544623181841693,51.9635886220415],[5.543796196369139,51.96453097258255],[5.543637905148127,51.96469460707918],[5.542835905966702,51.965523755874116],[5.541732480430455,51.96642880585194],[5.540598621146335,51.96715777016704],[5.539065543789737,51.96777433032667],[5.537951701479789,51.96807873918054],[5.537612639153958,51.9681714017072],[5.536522656910236,51.96843221860068],[5.536005272944588,51.96855601341833],[5.535634802539847,51.96863181218547],[5.535634700737098,51.9686318302905],[5.534389058237037,51.968886676003024],[5.532792562184172,51.9691307894577],[5.5311374381901,51.969326632493804],[5.52947704006777,51.96958004600755],[5.52788365559792,51.969890655600345],[5.526206282043115,51.97025751023756],[5.525409901407347,51.97044973667645],[5.524461943875434,51.970597184930554],[5.523531524456606,51.970737882013296],[5.522702367673378,51.97086325593207],[5.520663569784522,51.97114590474513],[5.518980038939434,51.971464081971774],[5.517613737003826,51.971797603682845],[5.516311487890865,51.972114752501575],[5.516139093011825,51.97216000865647],[5.516139020299009,51.97216002671269],[5.514890001406618,51.97248791412177],[5.513944101137739,51.97272635263577],[5.513416197084681,51.972859424968426],[5.511959830876476,51.97321995117282],[5.510934023568614,51.97354011698514],[5.509684583931647,51.973992238153826],[5.50850250644875,51.974477982177504],[5.507454085446359,51.974949259333705],[5.506521497210816,51.97541689511293],[5.506132811301628,51.97561179369866],[5.504988904234321,51.97619830207222],[5.503885750661268,51.97681903073365],[5.502808930878414,51.977430725884595],[5.501720189269212,51.97801349874766],[5.500930283875243,51.97842659916657],[5.500276056879795,51.97872262744326],[5.499852854660485,51.978914122858775],[5.499250429790822,51.979157658648425],[5.49878934807957,51.97934404510667],[5.498346632745965,51.97948992060933],[5.497269319088777,51.979844880684816],[5.496050271143045,51.9802878936736],[5.495956615807964,51.980321928786594],[5.491192323759831,51.98205308854445],[5.489811432479291,51.98250118625798],[5.488037817357728,51.983004370501696],[5.487328553707299,51.983154181025654],[5.486519663183176,51.983325022995736],[5.486532824878892,51.983365548540675],[5.486667374747639,51.983779924411486],[5.485928355188896,51.98381107179146],[5.485069238020128,51.98384727613841],[5.483725476352717,51.98382704128823],[5.483124249328883,51.98381797944974],[5.482247854884342,51.98376003515338],[5.481240041185155,51.98369339021155],[5.479209893562876,51.98350259743786],[5.477854302849019,51.98336358897879],[5.477854084464248,51.983363571171076],[5.47737765104815,51.983314709758886],[5.475507933245711,51.98314506773071],[5.473451454736324,51.98295222698296],[5.471998370457686,51.98285919714331],[5.471614231383338,51.982846279297256],[5.47092681982226,51.98282316853983],[5.469744837987182,51.98285377429175],[5.469378322407857,51.98288569673597],[5.46827510485104,51.98298175635958],[5.467221502415516,51.98306786685885],[5.466100981027433,51.98312171840063],[5.465216095247855,51.983182413691196],[5.464075119425897,51.983250577685936],[5.46295735563717,51.98332602302066],[5.461795845057695,51.983361874658186],[5.460945894555721,51.983375615326466],[5.460092086755787,51.98338979266958],[5.459996787348838,51.9833913708113],[5.458109314351625,51.9833130348162],[5.457331760229004,51.983331082854455],[5.456295486204047,51.983355120660654],[5.45615279074859,51.98336628699771],[5.454644615912322,51.98348427028192],[5.454381754274285,51.983504824200516],[5.453511341097962,51.983622767693255],[5.452688980025936,51.983734188476014],[5.452624841368732,51.983742879861104],[5.450849474781437,51.98413006900529],[5.449140348051481,51.984575053234515],[5.4474493183324,51.98497141325126],[5.445965159222942,51.98530023421737],[5.444452655189378,51.98554226050785],[5.443960530696819,51.98558737757677],[5.443665866866357,51.98561439440433],[5.442946599750166,51.98568033407336],[5.442268547112142,51.98567918927165],[5.441257946240643,51.98567747523869],[5.440346271174315,51.98562183265488],[5.439686559456286,51.98558156612408],[5.438080523575061,51.98542610443757],[5.437491687120338,51.985339173193175],[5.436143638352499,51.98514015229544],[5.434251025526177,51.984751901080216],[5.433517235228932,51.98454144764651],[5.432838813324028,51.98434686816243],[5.431119802878666,51.98372341321897],[5.429783176140574,51.98306431848326],[5.429733602618525,51.98303987068095],[5.429619994407533,51.98298384364008],[5.429000140256412,51.982536068895236],[5.428510459278349,51.9821823242483],[5.427963794622222,51.98177593567593],[5.427413003222997,51.9813664720027],[5.426173184869084,51.98051244814622],[5.424837424743687,51.979645525986946],[5.424368065407468,51.97937482616068],[5.423515453880244,51.97888307184772],[5.422056422451563,51.97815968830458],[5.42053017357394,51.97750427436427],[5.419113655024342,51.97695526669618],[5.41750226293936,51.97636809279793],[5.415887126428095,51.975935386551626],[5.414341011305106,51.97560516129937],[5.412539065677462,51.975258397245995],[5.410826770764238,51.974967197359426],[5.410130928711381,51.97486690208124],[5.409108392364006,51.97471951243302],[5.408356754317418,51.9746094199939],[5.407340676296801,51.97446057569507],[5.405523838772569,51.97418000353493],[5.40396077121248,51.97395634315948],[5.403584470064136,51.97390249456151],[5.401770430971953,51.97362719400756],[5.401292670357242,51.973532023072366],[5.400000488397829,51.973274616167394],[5.399434515871757,51.97313580074795],[5.399434341220285,51.973135755825425],[5.398196460452955,51.97283213756974],[5.397819530615332,51.97272843559335],[5.396709439906002,51.97242302371129],[5.396382952710104,51.972330750432626],[5.395390968471983,51.97205039368542],[5.394211898427597,51.971724649783006],[5.393024430000776,51.97136855934687],[5.393004986811627,51.97136249330918],[5.391720787430565,51.97096162440418],[5.390167054814266,51.97053613927731],[5.388705877494027,51.97017720783005],[5.387113768521353,51.969833978709495],[5.385375709277412,51.96956601111315],[5.383634012528471,51.969373284808405],[5.381833665911845,51.96923081005349],[5.381045899753034,51.96918796181018],[5.379936932442154,51.9691276342716],[5.379618828155949,51.969118896090784],[5.378679548121417,51.96909309091208],[5.37815341091173,51.96907863528681],[5.377725713251889,51.96908645787585],[5.37640990645498,51.969110515568204],[5.375234330882955,51.96920726916945],[5.374770272329883,51.96924545743449],[5.374717781414226,51.969252291959165],[5.373019188906698,51.96947333703238],[5.370094394461051,51.969983813694924],[5.370093433949255,51.96998398433214],[5.369804552768347,51.970034393056515],[5.369004807133416,51.97017345524089],[5.368180941553237,51.970316705604034],[5.36685959198739,51.97053660703887],[5.366656701475057,51.97057036763918],[5.365147473973185,51.97077036222142],[5.364294647182298,51.97084225869659],[5.363548448784562,51.970905164168045],[5.361918308360329,51.97094807846425],[5.360218526407285,51.97092532256754],[5.360216620041128,51.9709252951683],[5.360105395884686,51.970923804677476],[5.359298693620699,51.97084813439178],[5.358433321947929,51.97076696152373],[5.356764473266408,51.97054913753679],[5.354768581459743,51.970162959684224],[5.353814798877647,51.96990245911675],[5.352861027371714,51.969641950806164],[5.35228396435372,51.969433471436126],[5.351213023743185,51.96904655010167],[5.350831285799067,51.96889877522301],[5.349844220970258,51.968516671369095],[5.348501862633537,51.967934806617286],[5.34846145809741,51.967911864495676],[5.347079932674188,51.967127641902934],[5.34673973290034,51.96687368129528],[5.345816654132002,51.966184578167976],[5.344837523708614,51.96535759568155],[5.339240501083713,51.96065378170764],[5.338157071575635,51.95977951239176],[5.336902312003708,51.95889561458251],[5.335553321714668,51.95815715410749],[5.335508070435758,51.95813682094517],[5.334185586488754,51.957542549583245],[5.33265709027325,51.95699946388891],[5.332145189124509,51.95684462889903],[5.331128072375315,51.956536977745905],[5.331003158702809,51.95650651118487],[5.329511261234695,51.95614268521071],[5.327806538576469,51.95580316322089],[5.327736902804751,51.95578929527208],[5.325947811974308,51.95544261203598],[5.325562428300534,51.95538272948527],[5.325457345001869,51.95536639685527],[5.32412338276239,51.95515908773597],[5.322475741620546,51.95494612683453],[5.321545642016496,51.954915879486414],[5.320780138944269,51.95489097574413],[5.31978929336659,51.95491804301181],[5.318987570114297,51.95493994444002],[5.317601265190881,51.9550714314484],[5.315954915045561,51.9553600388677],[5.31503006700069,51.95560833270652],[5.31482647174792,51.95566378195218],[5.314721741297724,51.95569230908387],[5.314341706629899,51.95579581666133],[5.313494676644849,51.95612055526058],[5.312528435258386,51.956503069369596],[5.311814474142601,51.9568215433997],[5.311352592402772,51.957027562347584],[5.311002811668748,51.9571920815556],[5.310470593737287,51.957442417322355],[5.309416865644206,51.95790743246407],[5.308654219763355,51.95829537889419],[5.307751600200823,51.95876749948957],[5.307214305791645,51.959037456286495],[5.30679690727202,51.95924715467108],[5.306001134512037,51.959649712008826],[5.305937978262094,51.95968165749135],[5.304991887429684,51.960154005486146],[5.304264014273438,51.960500386158785],[5.303610674571734,51.960740305001885],[5.303530380638318,51.960769792237656],[5.302386623553437,51.96115377745845],[5.301492989402354,51.96138879250325],[5.300631439616138,51.9615948913077],[5.299911935859923,51.96173027107123],[5.299554831365575,51.961797453438095],[5.298786468988892,51.96191521802358],[5.298786279791043,51.96191524484619],[5.298748686781784,51.961921005031776],[5.297866810826685,51.96204982370516],[5.296766906005949,51.96218408623619],[5.296013369589625,51.96225204045405],[5.295541654882306,51.96228664749507],[5.294971539167113,51.96232848305969],[5.294055041528189,51.962367633664286],[5.293054212434215,51.962406449104954],[5.292234766468246,51.96243501202526],[5.292195711945616,51.96243637370713],[5.291258851750748,51.96243589306617],[5.290325028447711,51.962498046245],[5.289451950779309,51.962538895450095],[5.288573135713785,51.96260108035248],[5.287709052356448,51.96268518437076],[5.286878207882772,51.962758218912235],[5.286876825364156,51.96275834356959],[5.286009521559866,51.96285479113867],[5.284796087545318,51.96300120292276],[5.283506895980294,51.963167480342726],[5.282380495822471,51.963321251202096],[5.281950178225168,51.9633829220218],[5.28113195295603,51.96350017617105],[5.279688520541009,51.963694927130675],[5.279560625125649,51.96371278672382],[5.278535929694576,51.96385593568342],[5.277092489167466,51.96405064578977],[5.275919645221247,51.96420965034192],[5.274930140039911,51.96433482472831],[5.273908457223444,51.964506590636105],[5.273606958984304,51.96457487122413],[5.273125453828434,51.96468390909724],[5.272228944209436,51.96488611677232],[5.271465591612678,51.965094947011124],[5.271465416889463,51.96509499178043],[5.271265204006756,51.96514976670425],[5.270181798782868,51.96546476532844],[5.27005112104898,51.96550275437673],[5.268909754106717,51.96586310997879],[5.267567407719151,51.966298805328094],[5.267288769630558,51.96639696072746],[5.267272238579743,51.966402795213284],[5.266376498384085,51.966718345203205],[5.265412513949911,51.967044864310346],[5.264862900864993,51.96724120814399],[5.264857453362164,51.967243152924404],[5.26419811227708,51.967478685006064],[5.26284985782119,51.9679592613061],[5.261451950868874,51.96846139473823],[5.261421997879545,51.968473748489366],[5.260246971105778,51.96895834473755],[5.260208144995933,51.968974355798466],[5.259008076240296,51.969530602515945],[5.258026219832459,51.97002050993212],[5.257032697363531,51.97052640421886],[5.256015642283241,51.971064855082595],[5.25507450473598,51.97160140492655],[5.254425216468761,51.97198603457245],[5.254080682989535,51.97219013605442],[5.253302383129963,51.97270523002831],[5.252649304871027,51.973159234386266],[5.251841583098754,51.973767825162426],[5.251060060493133,51.97435873390618],[5.250281493109284,51.974933075621266],[5.249776914508634,51.97536953874359],[5.248931216997595,51.976024686833384],[5.248307241436782,51.976455385741104],[5.247409391213838,51.9770514807986],[5.246963631794482,51.977302359494836],[5.246956312489158,51.97730648534613],[5.246555302562967,51.97753217244115],[5.245727616024874,51.977928625309644],[5.244946797704289,51.978244239759825],[5.244771594186892,51.978296554972516],[5.243933114519123,51.97854692856922],[5.242852642226628,51.97875795512953],[5.241874272792762,51.97889887309258],[5.240674915439458,51.97901451201555],[5.23975793303324,51.97908724142815],[5.238820664367789,51.97910067001772],[5.238255716998034,51.97907037670143],[5.237485011340979,51.97902904242169],[5.237414554621687,51.979018832124346],[5.23659757633774,51.978900386401854],[5.235762900027991,51.97870523399235],[5.235520969365395,51.978613575645554],[5.235325207274353,51.97853941344194],[5.235001104473327,51.97841662976886],[5.234155231538532,51.97804364705612],[5.233512302313998,51.97774931828322],[5.233190433967483,51.977601967785496],[5.232234229306074,51.977115629535604],[5.232204459663602,51.977098261118584],[5.231406308385395,51.97663282832521],[5.230966258462017,51.97633710445865],[5.230819574002028,51.976238533959254],[5.230740209492375,51.976175870699414],[5.230096593060524,51.97566766609977],[5.229787927275286,51.975386013235365],[5.229295732696726,51.974936861217515],[5.228622477957064,51.97426718066189],[5.228349931727871,51.973954500391194],[5.228293011025407,51.973889196235106],[5.228086173006719,51.973651889140434],[5.22750328578926,51.972966307135984],[5.227042379209068,51.97238847690055],[5.226599059341851,51.97178762304407],[5.226115062181548,51.97112183496871],[5.225625681809821,51.970378801812465],[5.225229109779885,51.96975470031755],[5.224852633792977,51.969169948526684],[5.224592223562546,51.968684217104595],[5.224079269386727,51.968059672116745],[5.223498430355819,51.96737981589365],[5.223447383495788,51.9673200811843],[5.223367984602322,51.96723807916441],[5.223230816700801,51.96709641381842],[5.222678833969564,51.96652635761613],[5.221884005501381,51.965716305375146],[5.221202322618273,51.965118753709476],[5.220771672231855,51.96477149735747],[5.220378122943417,51.96445415082429],[5.219301113430542,51.96373552664015],[5.218531539219487,51.963256365933326],[5.217532700719056,51.96268362169434],[5.216467014245797,51.962061894049235],[5.216380784459308,51.96201433813842],[5.215604477676073,51.9615862238666],[5.214523872573508,51.96107428373525],[5.213492451109287,51.960664647178426],[5.213484633603334,51.96066206501147],[5.212324326794835,51.960278383600546],[5.212240229240885,51.96025691161076],[5.212239924026435,51.96025683026314],[5.21105120124184,51.95995319701263],[5.209926224188003,51.95970348717414],[5.20883852071626,51.95957432810323],[5.20790205981749,51.95948864076272],[5.20748390812793,51.95947481733098],[5.206770570579998,51.95945123747823],[5.206006206695442,51.959468399255314],[5.205798663020689,51.959473059049564],[5.20464930141639,51.959530829017396],[5.203421385953225,51.959617389221776],[5.202511518371759,51.95970078687995],[5.202225203733764,51.95972703228258],[5.201309676838597,51.95984093575023],[5.201309560373158,51.959840953542695],[5.201110485951135,51.959865725091326],[5.199876273413664,51.96004548214262],[5.198750196706849,51.9602420366307],[5.198691462587275,51.96025228801921],[5.198004925316011,51.96037517896733],[5.197486161440351,51.9604680371606],[5.197023194538366,51.96056021024852],[5.196365159146013,51.96069120910062],[5.195398438464995,51.960928670466316],[5.19451017297432,51.961155843996806],[5.193644943675767,51.96142043071618],[5.193197195141025,51.96156585999455],[5.193197093178517,51.96156588679117],[5.192669206278704,51.961737346651624],[5.191864975063831,51.96202896776341],[5.1908569391371,51.96239609516194],[5.189965154668154,51.96274345493656],[5.18928616999085,51.9630335874289],[5.188379900822974,51.96340985289024],[5.187707733628926,51.96372963991712],[5.187707616948412,51.96372970263692],[5.187592761888795,51.96378433604893],[5.186592855908299,51.964246374249065],[5.185595613962851,51.96477160466889],[5.185292619643818,51.964964251097804],[5.184904300509102,51.96521111985727],[5.184093696241738,51.965632170114525],[5.184023445288454,51.96566741750574],[5.183396855039952,51.965981784710095],[5.182425874878831,51.96646546318009],[5.181926419503784,51.96669518589996],[5.181627067518312,51.966832875262746],[5.18162622174219,51.96683326926709],[5.180819580463748,51.96720530908758],[5.179819651783588,51.96764060360039],[5.17925046348295,51.967858696141185],[5.178960050831932,51.96796996915058],[5.178200173604172,51.96823392751065],[5.178094415363202,51.96827066326626],[5.177223228424774,51.96854240804307],[5.176270770810418,51.96878366553176],[5.175626727017966,51.968945636756104],[5.175626552184443,51.96894568138293],[5.175475615145417,51.96898363685887],[5.174585513380331,51.96919624854255],[5.174585309441006,51.96919629311526],[5.174429878015784,51.96923342120396],[5.173154149937469,51.96950103330986],[5.173024586710356,51.969520535749496],[5.172484765485208,51.969601776449494],[5.171901996978821,51.96968947055752],[5.170929511834268,51.96982980939544],[5.170073602091179,51.96993637085561],[5.169462020298089,51.97001613503808],[5.168926272849644,51.970071040467886],[5.167416494567543,51.9701584007907],[5.166245923158717,51.97020788246107],[5.1649615614484,51.97027849369138],[5.164080770523833,51.97032411435568],[5.163418145572047,51.970358431769476],[5.162462608862763,51.97042177574938],[5.161722031522357,51.970498026566005],[5.161645081985704,51.97050595953852],[5.161568074212664,51.97051389234911],[5.161066654807766,51.970568809819376],[5.160956390154941,51.97058336556433],[5.160956302795643,51.97058337438461],[5.160110326446306,51.97069505069799],[5.159968264774133,51.9707151887654],[5.159821659353978,51.97073596503541],[5.159072261202995,51.9708421937948],[5.158373881722636,51.97095968034602],[5.15837357580044,51.97095974266881],[5.158171048141078,51.97099380958214],[5.15755111148297,51.971086816146816],[5.156954969614008,51.97117625273194],[5.156049343020802,51.971368353536946],[5.156020744826453,51.97137440935829],[5.155094993457446,51.97160684735299],[5.154696716769346,51.97171555575314],[5.15432671073097,51.97181655292262],[5.153706913329553,51.97202176639929],[5.152864430075629,51.97232822616283],[5.152232034850159,51.97259099429664],[5.152128348190498,51.97264018650352],[5.151587604173752,51.97289670760395],[5.151198545189692,51.973122386281574],[5.151194545436668,51.97312469722166],[5.150982934948476,51.973247438265595],[5.15043967291727,51.97359520639235],[5.14983974371464,51.97403413307652],[5.149473090590821,51.974331774918426],[5.14919502430333,51.974557518272654],[5.148517167869024,51.97514881059539],[5.148269352458866,51.97537126947125],[5.1482692939085,51.97537133226992],[5.147989566399586,51.97562242513904],[5.147431729422276,51.97617687862699],[5.147003144128977,51.97662934335425],[5.146453183373525,51.977235769086136],[5.146095039379108,51.97765270928754],[5.1457692914849,51.97805004862629],[5.145422297737136,51.97850493088183],[5.145083526504375,51.97899380444388],[5.144882777328355,51.97940432336052],[5.144789727407098,51.979638364533756],[5.144701546297523,51.97986010180964],[5.144570650240398,51.98026374424252],[5.144424121742272,51.980739529586714],[5.144333150242312,51.98119915171153],[5.144230608657113,51.98165537029188],[5.144062762969778,51.982200778694],[5.143912845250949,51.98270885989888],[5.14375432259141,51.98321131444511],[5.143618176404984,51.98378234112438],[5.143448491048367,51.984451889775826],[5.143310574503604,51.98492939008421],[5.143217894735943,51.98539162312546],[5.143188522441529,51.98553808793209],[5.143134296839899,51.98589669469085],[5.143111374137758,51.98604828712653],[5.143106621217766,51.98608440085642],[5.143036161877212,51.986619726867765],[5.143009616625378,51.986848349628495],[5.142973173483923,51.9871622588574],[5.14294840841283,51.987443502205934],[5.142924388040672,51.987716253234375],[5.142917637532076,51.98779299845585],[5.142868956625898,51.988335559988535],[5.142823195834407,51.98862238630156],[5.142803947936677,51.98874300392772],[5.142763447033681,51.98899681847956],[5.142634662262775,51.98967009961865],[5.142577240676978,51.9898707946304],[5.142429209639382,51.990388171157335],[5.142142587283567,51.991094829115106],[5.141760061532133,51.99178135060856],[5.141476825965044,51.992193021346736],[5.141355775288356,51.99236895523197],[5.140878771534801,51.99293983208894],[5.140373704738844,51.9934421086856],[5.140002899009988,51.993759490308136],[5.14000284052304,51.9937595351263],[5.139801808081938,51.99393161427482],[5.139122320276851,51.99441329989131],[5.13854449110358,51.994756077072836],[5.138326402240044,51.994885459707874],[5.138156316205178,51.994962668159474],[5.137332868065612,51.99533642320643],[5.13636073251425,51.995701460842426],[5.135450790172844,51.99601102249482],[5.134360098518155,51.99633226024783],[5.133156010701897,51.99662936165957],[5.132209467560592,51.99684359838959],[5.131664682627652,51.9969636140647],[5.131119894730628,51.997083636201516],[5.130024015699191,51.997347244161496],[5.128963140028471,51.9976165273324],[5.127928502405405,51.997871261905],[5.126955081687424,51.99812134099479],[5.126314679281345,51.99828250217311],[5.126314416812153,51.998282564508926],[5.126025661890613,51.998355223047774],[5.125252269582261,51.99848018454101],[5.124406456460146,51.99857436555841],[5.123367694539237,51.99870882481223],[5.122840676873023,51.99877859549162],[5.122664547341577,51.99880191075519],[5.121735059567615,51.999041088796794],[5.121025976002688,51.99932823359463],[5.120158814429882,51.999681303616825],[5.11947678280578,51.99992917709833],[5.118738845422579,52.00020529489396],[5.117875392015324,52.00050245899414],[5.117155045581215,52.000760900364824],[5.116273378427183,52.00102016167377],[5.116207264279175,52.00103960378392],[5.116002197397727,52.00109490335972],[5.115450152437944,52.00124375131433],[5.114679012077838,52.00145234661731],[5.114590472060323,52.0014762929256],[5.114181644296603,52.00156950595833],[5.113690436307569,52.00168149132207],[5.112711604017043,52.001896907501404],[5.111832515120248,52.00206281719729],[5.110521312696743,52.00229962025512],[5.109184604050752,52.002502355156984],[5.108125146326022,52.002648998881355],[5.106975939614876,52.00277547471727],[5.106305547302315,52.0028198788903],[5.105952685700892,52.002843250756534],[5.105632780440953,52.002861873720555],[5.104982887787333,52.002899713060906],[5.10497024254926,52.00290043775959],[5.103923195632063,52.00293221332229],[5.103575218687594,52.002942772652126],[5.10346261047784,52.002946186504644],[5.103426035756629,52.002947293791784],[5.103307700651857,52.002948976948915],[5.10224915985088,52.0029649086641],[5.10221423439277,52.002965435333444],[5.101017423263125,52.00295297805916],[5.099992761464657,52.00292014795101],[5.09887248245774,52.00285983159488],[5.097706225591641,52.00276653069203],[5.097288329902102,52.002716525797496],[5.097287966066838,52.002716488948884],[5.096395207930415,52.00260965578501],[5.096225492489387,52.0025803753966],[5.095035788614283,52.00237512296807],[5.09387430243196,52.00214556178691],[5.092995029535535,52.001946193900345],[5.092185169485515,52.00177788580561],[5.091613765519714,52.00163574243597],[5.091155185217043,52.00152167153226],[5.090311055312088,52.00131000412743],[5.090258188180713,52.001295408793425],[5.089684719177358,52.0011371169988],[5.089159774416494,52.00099222081406],[5.088725940174666,52.00085967836901],[5.088038019012453,52.000649514021376],[5.087856660834566,52.000588364728664],[5.087774452674048,52.000560642803705],[5.087276131783779,52.00039309270253],[5.086418595777689,52.00011480548229],[5.085787121867916,51.99988988764403],[5.08508682950623,51.99961057747858],[5.084411956344534,51.99937655713614],[5.083690849591041,51.99911881519337],[5.082963408699741,51.99888802604185],[5.082145899443667,51.99865474299121],[5.081342959998367,51.9984214920898],[5.080408929953764,51.99819491394307],[5.079706514182409,51.99803972464868],[5.078638990547122,51.99778937837459],[5.078612735087281,51.99778322454106],[5.077890396735048,51.99761336631227],[5.076959013148218,51.99740278463304],[5.076068070784641,51.997203250083714],[5.075159900562547,51.99699468388419],[5.074303968339985,51.99680084635838],[5.073541038026731,51.99661624760925],[5.073468173418803,51.99659772648983],[5.072476796360362,51.996345720400335],[5.071331821610746,51.996007842969064],[5.071148629396744,51.99594628538188],[5.070685733901541,51.9957907410904],[5.070659136357548,51.995781798210224],[5.070596208594338,51.99576065948869],[5.069800561286811,51.995444774405776],[5.068915124192596,51.995088751479386],[5.068731726864015,51.995007855902166],[5.068075769326041,51.99471851057101],[5.068047625134172,51.99470609345287],[5.06745845925945,51.99440928572599],[5.066703791884196,51.993998898853164],[5.066676147686344,51.99398386719408],[5.065961447466841,51.993524643474004],[5.065410950467576,51.993167260426176],[5.064864661518906,51.99273405268056],[5.064183362385956,51.99218896409245],[5.063662767773367,51.99179176506062],[5.063448059100665,51.99164463077958],[5.063273859186857,51.99152526433821],[5.062990125609015,51.991326014288475],[5.062773202242282,51.99117368645326],[5.062646221292233,51.99108451480151],[5.06195725050859,51.99066494843631],[5.061300091570715,51.99025107471732],[5.060697069214086,51.98990391424879],[5.060051040929669,51.98952602622835],[5.059243090033346,51.989082231323415],[5.058446133752232,51.98866205561568],[5.058072755091825,51.988469473063056],[5.057779191444133,51.98831807206984],[5.05656608937087,51.98773183806668],[5.055326328749219,51.987154225877234],[5.054357973163035,51.98672736391201],[5.053219518572081,51.986208160634895],[5.052674275348656,51.98595664050328],[5.05226314546287,51.98576697905576],[5.051459821565571,51.98539336841756],[5.050763132065808,51.985087181241354],[5.050069456236953,51.98475508545497],[5.050032439602432,51.984737362479244],[5.049359208454454,51.98443095548258],[5.048833382943771,51.98418339200525],[5.048377706656084,51.983925071457556],[5.047826696814973,51.98360889562114],[5.04746689789702,51.983400202338025],[5.047108834177205,51.98319251963824],[5.04649435984749,51.982852559960236],[5.045591366950101,51.98234884810652],[5.044869883326944,51.98196503016894],[5.044177002507753,51.981620902312336],[5.043415216171912,51.981217012981276],[5.042783588862878,51.980866044913405],[5.042205602840955,51.980432619714065],[5.041660062778853,51.97997964757529],[5.041600467124469,51.97991604253711],[5.041099281383035,51.97938111731269],[5.040601747762148,51.978840358282426],[5.040196999715724,51.97835798871257],[5.040167967989643,51.97832337924653],[5.040138478244788,51.97828589218291],[5.039774516936232,51.97782310093515],[5.03955047612286,51.977518366844535],[5.039395989793532,51.977308241478305],[5.039049188048111,51.97680808950264],[5.03880409870765,51.9763175000065],[5.038755272232901,51.976170815488715],[5.038643312426299,51.97583446712722],[5.038653413563204,51.975397721910376],[5.03862920258697,51.974928301608024],[5.03852814655111,51.97435415616833],[5.038522464385502,51.974343712957804],[5.03827681169868,51.97389248454298],[5.03787781843299,51.973384587937666],[5.037257767054656,51.97269036233797],[5.036773258693223,51.97224512531861],[5.036202624640737,51.97173615431119],[5.035631537880287,51.97129220917425],[5.035398121894072,51.97111074868714],[5.034699116155421,51.970622733497166],[5.034127735687277,51.97029752396565],[5.033693008798727,51.97005008421041],[5.032913362240103,51.96968539558875],[5.032187468081677,51.969411034194465],[5.03141141605708,51.96918145795942],[5.031185435677892,51.96913203110093],[5.030234176398711,51.968923974032954],[5.029762859967755,51.96886074894631],[5.029762758177852,51.96886073964886],[5.029572199737302,51.968835182249116],[5.029328942613948,51.968823180367465],[5.028973402968679,51.968805658961905],[5.028272477875857,51.96877110230063],[5.02713758479151,51.96876566655621],[5.026232472278191,51.96877047951226],[5.025236444231933,51.96881432953289],[5.024341559568428,51.968905671471965],[5.023434128292586,51.969043589963796],[5.023425585634312,51.96904546007833],[5.021903204942646,51.96937843290438],[5.021209023542048,51.96954972237588],[5.020863367114782,51.96963501500674],[5.019921841866351,51.96993318693905],[5.018938489049691,51.970299477354224],[5.018067962890088,51.970713301963194],[5.017319847334181,51.97111542475475],[5.016424668038285,51.971620723200004],[5.016013365089527,51.97187699425887],[5.015418952818294,51.972317511217554],[5.014924357876578,51.9726903627437],[5.01468123290459,51.97287079677354],[5.01440050116728,51.97307913657778],[5.013847618543891,51.973458818733924],[5.013236529411911,51.97383467308039],[5.012552044131222,51.974258314903295],[5.012097646641027,51.974503882842065],[5.011765657344342,51.97468330848707],[5.011161319359965,51.97499624675822],[5.010838022929111,51.9751465306473],[5.010328958469982,51.97538317132894],[5.009758634840286,51.97563135201623],[5.009505563913679,51.975741468705],[5.00874732223532,51.97603171299691],[5.008033689333959,51.97626142087124],[5.007426270739477,51.97642196998711],[5.007209520950809,51.97647926257175],[5.006178612604771,51.97671242841573],[5.005625811509284,51.9768139663438],[5.004757085621029,51.9769735372722],[5.004449172161822,51.977020794181314],[5.003832235795776,51.977115463759475],[5.002729926008858,51.97724921724212],[5.001610596779742,51.97735397141352],[5.001435516850626,51.9773659002913],[5.000666471929821,51.977418286086],[5.00032689396195,51.97743013128416],[5.000280173617814,51.977431757357195],[4.999871410294856,51.97744600730642],[4.999595664548655,51.97744322983403],[4.998960563153433,51.977436830877494],[4.998172109592177,51.97741063281013],[4.99795633964286,51.977394980808306],[4.997918113695563,51.97739221181201],[4.997279473996412,51.97734588416123],[4.996495780655446,51.97720452393751],[4.995735501346863,51.977050886487206],[4.995307681882282,51.976950816274176],[4.994662354187933,51.97679985561935],[4.994332743802802,51.97670756067929],[4.993665418398968,51.97652068934997],[4.993240293218065,51.97639416362141],[4.992605037956251,51.976205079127894],[4.991849307915536,51.97593000016089],[4.991675852953106,51.97586686789044],[4.991223668487445,51.97565375422192],[4.991223509030163,51.97565368177914],[4.990840870189246,51.97547334716361],[4.990130271081473,51.975120408829916],[4.990016686327886,51.97506011865237],[4.989544084070219,51.974809223732905],[4.989544011700825,51.97480917854698],[4.989267116271447,51.97466218302438],[4.989214855078831,51.97463407072109],[4.988458914476256,51.97422745262855],[4.987651216764999,51.97376237390315],[4.986789497367559,51.97321425179644],[4.98613868011166,51.97276823909212],[4.985853676609024,51.97256877017571],[4.98551678384795,51.97233299054765],[4.984932929602204,51.97189253866899],[4.984548952056008,51.971585533890234],[4.98415107966133,51.971267424650755],[4.983636629876562,51.97084910836879],[4.983128639087744,51.97039654863236],[4.982534958324402,51.96983920316595],[4.982013601916734,51.96930765740227],[4.981374624407563,51.968670940651535],[4.980882055271429,51.96816448992878],[4.98050163203978,51.967741570939516],[4.980121335678391,51.967316682680824],[4.979732662554126,51.966864799269935],[4.979318505906885,51.96636620392121],[4.978970335946932,51.96593608412773],[4.978859636763694,51.965804309134676],[4.978484739885034,51.96535802851185],[4.978046703109055,51.96489865585207],[4.977676198943731,51.964590641275414],[4.976847408726699,51.964003235725386],[4.97629129970626,51.96362862206846],[4.976055655721906,51.96346988344695],[4.975117068030163,51.96283657400264],[4.974085423224319,51.96220097076824],[4.973142921517885,51.9616398166139],[4.972248997966314,51.961127147260996],[4.971327984855978,51.96068093364316],[4.97073378391248,51.96046649199635],[4.970593083092202,51.96041571325969],[4.970329408850309,51.960341776232724],[4.969393829172496,51.96007945033607],[4.968056761837269,51.9598157231566],[4.96701153357881,51.95967800585178],[4.966008915203549,51.95961120572174],[4.965973234225237,51.95960882190371],[4.965848903127767,51.95960053885749],[4.965093950254702,51.959607090420015],[4.9647721865586,51.959609881338956],[4.963633679846375,51.95966393304023],[4.962893755449779,51.95972736664517],[4.962520676437858,51.959759349089566],[4.961988035377613,51.95981453679087],[4.961987904269884,51.95981455429357],[4.961279029667518,51.95988800407695],[4.9607164351325,51.95995478035261],[4.959770635315866,51.96014459640407],[4.95916290523922,51.960285974997646],[4.958792196518877,51.96037220768377],[4.958154088872901,51.960567598042616],[4.957756965081739,51.96068919899946],[4.95705860213118,51.96094653558915],[4.956750067126594,51.96106022373913],[4.956494690410881,51.96117586741995],[4.956354638888689,51.961239288433994],[4.955817912258671,51.96148234286046],[4.955018099621673,51.96181675656604],[4.95421852869661,51.96213542720799],[4.953117853750896,51.962536402311834],[4.952216995993277,51.962818175107145],[4.952013896300415,51.96287469749933],[4.951275738891757,51.96308012491238],[4.95049957144602,51.96326590198766],[4.950434423903144,51.963281488557136],[4.949415541300345,51.96348162829814],[4.948676005688718,51.963593519931386],[4.94852587157539,51.96361623095289],[4.947610214708869,51.963732465544695],[4.947366229796403,51.96375514795646],[4.946724335534206,51.96381481970857],[4.946514622482661,51.963820532898865],[4.945765439117285,51.963840923044835],[4.945390912703422,51.96385111207974],[4.945388802703595,51.963851131120805],[4.944381048382113,51.96385911699005],[4.943299818933213,51.96378566154543],[4.942402842483014,51.96365587105816],[4.941617693277524,51.963512601376195],[4.941462852781076,51.96348434879197],[4.941406304064857,51.96347178458455],[4.941406173384734,51.963471757124466],[4.941178178419275,51.96342111568794],[4.940169846823851,51.963197155759325],[4.939428780357173,51.962970483534015],[4.939428664318967,51.962970447139035],[4.938945213455697,51.96282256392451],[4.937994777356781,51.962404640229465],[4.937261816482597,51.96204230655722],[4.93631139404506,51.96145526294985],[4.936228248022087,51.961399693049415],[4.935488397499237,51.96090522943104],[4.934677506557856,51.960328262671524],[4.934095033565916,51.95983728065052],[4.933446859168032,51.95928115556732],[4.93279057158341,51.95868370761834],[4.932692083989857,51.95857732333435],[4.932370425011396,51.95822985882996],[4.93184201824184,51.957647510319255],[4.931570454066708,51.95733383581529],[4.931294011834571,51.957014519556054],[4.930722920768859,51.956372726872516],[4.9303207109628,51.955900958950494],[4.929807900722852,51.95525377478523],[4.929314742420565,51.95465385352297],[4.928910093069558,51.95414611775673],[4.928548551719977,51.953681530839326],[4.927944685003319,51.95291910322693],[4.927580360001495,51.95243848511794],[4.927442177497654,51.952262582670414],[4.927133306698039,51.951869348726675],[4.926953422060046,51.95162397350167],[4.926953378882905,51.95162392839102],[4.926726686036249,51.951314696262784],[4.926589961354121,51.951149072144155],[4.926589903816422,51.951149009000446],[4.926344704179257,51.95085198169645],[4.925948543272088,51.95036562483561],[4.925690942808262,51.95001354783604],[4.92557323232349,51.94985266203712],[4.925117450960689,51.94928713264735],[4.924909844443023,51.94905209867644],[4.924743505000476,51.94886376821812],[4.92433507319357,51.94845506165675],[4.924325873504469,51.94844585734389],[4.923655325147114,51.94784998593664],[4.92295420521575,51.947302059602734],[4.92289615932729,51.94725669100845],[4.922884486595387,51.947247575688785],[4.92285734661399,51.94722636391176],[4.922268514544978,51.94678556830461],[4.921746177630941,51.946445882101166],[4.921503244601696,51.94628790303083],[4.921348874205061,51.94617497331649],[4.921001348985406,51.94592071815323],[4.920977487925267,51.94590325808306],[4.920961454133892,51.94589258827386],[4.920393617169418,51.94551472183763],[4.91977228373915,51.94511142769331],[4.919341815934282,51.94487802340308],[4.918956605699844,51.944669156137785],[4.918235451276573,51.94431742693137],[4.917805812991548,51.94412443188052],[4.917805697207444,51.94412437748835],[4.917715482123068,51.944083857440106],[4.917427278667072,51.943954388901],[4.916693716289671,51.94365090397759],[4.91654879035809,51.94359359860173],[4.915916572519511,51.94334359053104],[4.915464803645537,51.943181031595444],[4.915206899988021,51.943088216752166],[4.915086960596859,51.94304505863261],[4.914311501913216,51.94280627745616],[4.913678747358228,51.942638381698345],[4.913338768360972,51.942548162441064],[4.912972451331326,51.94244702300223],[4.912557179872425,51.942332373095475],[4.91168784172563,51.94214151699387],[4.910501901707198,51.941935601379804],[4.909341236911406,51.94177864617368],[4.908165595243802,51.941641285007556],[4.907117768371966,51.941517359163186],[4.906031999861546,51.94140196946289],[4.90520906483394,51.94131195175921],[4.904386133220479,51.941221919310195],[4.902522891870152,51.94099179303873],[4.900932375861999,51.94080096573138],[4.900675788554564,51.940767869958236],[4.90067541094046,51.94076782345419],[4.899490202715085,51.940614938714546],[4.899381374194093,51.94059786784531],[4.898977347541875,51.94053449506423],[4.89811244477538,51.940398835133244],[4.8977246132085,51.94032295965097],[4.896912500284948,51.94016407790284],[4.89632279006779,51.94005092609342],[4.895532813766662,51.93989934483957],[4.895088874932829,51.93982174295892],[4.895088802321173,51.939821733666705],[4.894622337929063,51.939740197721015],[4.893824770857741,51.93961606857851],[4.893493602522937,51.939562150681745],[4.89285612056159,51.939458362460144],[4.891649260234476,51.939288400317515],[4.890647990720532,51.93917547136669],[4.889614797468243,51.93905145095886],[4.88946942631038,51.939034827469534],[4.888477044727271,51.9389213513422],[4.887890827619708,51.93886100558463],[4.887463872194524,51.938817054472125],[4.886627992831804,51.938717719223035],[4.885620785408434,51.938610052201454],[4.885064604639274,51.93854461616472],[4.884387331808481,51.93846490757256],[4.883501975053295,51.938372358408714],[4.883213998241236,51.93834486950476],[4.882445161012088,51.938271489536326],[4.881377081030491,51.93815257694245],[4.880227545718255,51.93803330348273],[4.879319192294598,51.93792601749628],[4.878245123294557,51.93781603890627],[4.877131073232688,51.93778509168237],[4.876366227594315,51.93778823427179],[4.876118664412189,51.93778689791537],[4.875578271660305,51.937783963784476],[4.874737184846087,51.937826366859554],[4.873814078977817,51.937918408252514],[4.873322319646687,51.93796833002234],[4.873039495996608,51.9379970430517],[4.872889608148548,51.938015020513284],[4.87263895016628,51.93804508668881],[4.872293870874572,51.93808646876826],[4.872021433866415,51.93812869842023],[4.871634593089023,51.93818866335039],[4.871620665983405,51.93819082242005],[4.870868033203289,51.938355486109984],[4.870416255023845,51.938470044975],[4.870284408167352,51.93850347753122],[4.869540393070886,51.93867912746797],[4.869159466730089,51.938775333503216],[4.868807956631692,51.938864099766256],[4.868130936902114,51.93903132637948],[4.867664071027119,51.93912895487671],[4.867218005640026,51.939222233239384],[4.866430485296728,51.939394021885796],[4.865642951931989,51.939537599655424],[4.865642777012062,51.93953763483319],[4.865625769804685,51.93954073230257],[4.864635078537248,51.93969483531815],[4.864596951425062,51.939700760011696],[4.864334689155217,51.939751951566485],[4.864334237308824,51.93975203944132],[4.863710434842394,51.93987378031317],[4.863548965427131,51.93990134786281],[4.862669805424501,51.94005143675208],[4.861555963019088,51.940261061037454],[4.860482539895641,51.94048181268708],[4.859925785988936,51.94059017146811],[4.859351173335865,51.94070200686168],[4.858194988056862,51.94092318410553],[4.858190571575216,51.9409240271236],[4.858206660430393,51.94104469672225],[4.858243085794573,51.94131808064319],[4.85830584839083,51.941816364619996],[4.858338752290544,51.94237042202349],[4.85834186046191,51.94245230223772],[4.858351489174004,51.94270669893148],[4.858260282223017,51.94291820795014],[4.85773506269537,51.944136170792945],[4.857473883535776,51.94434176347702],[4.856973275080258,51.94473580544801],[4.857248108693804,51.944866117446935],[4.857265146660922,51.94487419388544],[4.857487552754266,51.94539146172108],[4.857393529862701,51.945456177015316],[4.856080612606315,51.94635979873876],[4.856074587498954,51.94639330719098],[4.856059640733561,51.94647649010442],[4.856055437364236,51.94649984990838],[4.856311173844433,51.94651392090574],[4.856386546992465,51.946590096116076],[4.857243093744411,51.94745572913961],[4.857203526261404,51.94758306901749],[4.857044804421175,51.94769555333132],[4.85699105973652,51.94771402486344],[4.856828598688814,51.94776985623372],[4.856487521013425,51.94782196927753],[4.856164170144909,51.94785589698263],[4.855887029443698,51.947911946243536],[4.855768120361287,51.94800298264444],[4.85574002609937,51.948024481743296],[4.855711068661906,51.948128750948655],[4.855697167638864,51.9481787713949],[4.855797113568315,51.94830871864737],[4.855714658251419,51.948382212584],[4.855552887310718,51.94832657140174],[4.855517728616713,51.94831447589393],[4.855236121476549,51.94827697032919],[4.855020292731999,51.94831896737672],[4.854818567580311,51.94839698140223],[4.8546730977511,51.94859940634066],[4.854500220455089,51.94930111944494],[4.854393611688636,51.94943743071732],[4.854149906452135,51.94959587021321],[4.853866396853718,51.949689807856046],[4.853557997942994,51.94969683108884],[4.853532070085974,51.94969252485873],[4.85316626324011,51.949631855720654],[4.851756694527831,51.949343715108796],[4.851270459500646,51.949579971271824],[4.851254440259611,51.94988382247696],[4.851157958035456,51.9499227069595],[4.850814241602309,51.95209489019387],[4.85034246146128,51.95507607059463],[4.850307183115589,51.95525129078343],[4.850289288982461,51.95534014010473],[4.850250586353311,51.95537710340713],[4.850094656615766,51.955526038972295],[4.849743568466268,51.955658982287694],[4.849295263192559,51.955752344624656],[4.849189250023848,51.95577442059627],[4.849090139779997,51.95578374658036],[4.848685185795034,51.955821828650286],[4.848190084379434,51.955881158253796],[4.848023678306374,51.955901104807],[4.847985208040907,51.955910042672286],[4.847509997082463,51.95602037076951],[4.847073968757989,51.956194200004774],[4.84696865006136,51.956247853340045],[4.846871777129837,51.956297203992115],[4.846853271393519,51.95637099445839],[4.846861421378967,51.9564106346896],[4.846866904625594,51.9564373463712],[4.846938230031851,51.95653682478814],[4.846998151731746,51.9565914167618],[4.847015693686469,51.9566073977624],[4.84770322729683,51.95775994178386],[4.847623832963931,51.95786550562085],[4.847602380313912,51.95789401721116],[4.84749081037333,51.95796757855178],[4.847396720701314,51.958029607025495],[4.847273076870501,51.9581332327973],[4.847161056271865,51.95823328049931],[4.847089278807173,51.95836945739621],[4.847014914259439,51.95845943110867],[4.847000475253474,51.95847691010779],[4.846653917100171,51.95870339807947],[4.846594446151911,51.958750124988],[4.846474446137432,51.95884442774676],[4.846417228294343,51.95898067115888],[4.846384459129795,51.959115148379034],[4.846380035789863,51.95913330253553],[4.845892197305665,51.95947206856736],[4.845826571656225,51.95956814889453],[4.845809006389556,51.95959385569841],[4.845845079388933,51.95971283903589],[4.845918794188715,51.959849693682905],[4.845985103643778,51.959912944369194],[4.846042178802027,51.95996738887118],[4.846108431645651,51.96021402900893],[4.846003034794884,51.96046156932211],[4.845903244289851,51.96056984251871],[4.845903170571284,51.96056992307484],[4.84581691313826,51.960663508550745],[4.845589711613286,51.96087790499121],[4.84558068291471,51.96088459571193],[4.845575691446733,51.960888293915964],[4.845336802155993,51.96106549609733],[4.845086660701249,51.96117550279587],[4.845026432629468,51.961201988100456],[4.844345055651752,51.961440960975985],[4.843987875757168,51.961593525647004],[4.843800431064545,51.96169927999683],[4.843741465224793,51.96173255220417],[4.843546634213509,51.961929108523314],[4.84335113128199,51.962172580718615],[4.843130768238659,51.962318741845024],[4.843108407834976,51.962341904827746],[4.843006661234472,51.96244738013077],[4.842964550153392,51.96254605741127],[4.843016659928236,51.962606790227746],[4.843076072395011,51.96267605979893],[4.84312728635558,51.96275550670553],[4.84308190409725,51.96299681885006],[4.843070550595384,51.96305719515819],[4.843064786410292,51.96326025176315],[4.84301903610593,51.96340582253046],[4.842804136889451,51.96357897792523],[4.842595930335919,51.96368727686069],[4.842480798884456,51.963798262526986],[4.842458101844963,51.96396358839634],[4.842496485218187,51.96412555680412],[4.842510405381703,51.96422548205559],[4.842517512775127,51.964276497001514],[4.842418805541699,51.96446676416775],[4.84226487132248,51.9646455309867],[4.842124507462355,51.96489655506944],[4.841978906268404,51.96510064440596],[4.841937881090403,51.965127500267194],[4.841809099389256,51.96521181642677],[4.84179572252322,51.965220572000796],[4.841755679740813,51.96524679417907],[4.8414770472409,51.965396057160696],[4.841463086320494,51.96540018097725],[4.841053324716399,51.96552134814452],[4.840957459244414,51.965553881382476],[4.840799699402278,51.965607429519906],[4.84076679443096,51.965618593042116],[4.8407139619183,51.965621969941836],[4.840592467578232,51.965629728726704],[4.840330780545563,51.96564644433747],[4.840324125479354,51.96564687180742],[4.840151314278114,51.965583769945546],[4.840049111317147,51.965546442324964],[4.840042194598384,51.96554565513196],[4.839816720797987,51.9655197983201],[4.839630025409187,51.965551233686334],[4.839485660541886,51.965670781100954],[4.838951267475502,51.966200007925124],[4.838735653016874,51.966419784242945],[4.838500291885107,51.96660013495905],[4.838279883950504,51.966746291310805],[4.838024266687502,51.96691924800519],[4.837883175624804,51.96700481472478],[4.837707118943828,51.96711158331904],[4.837478904976133,51.96719843240308],[4.837343151148955,51.96726866229263],[4.837217940893314,51.9673334404348],[4.837031883088478,51.96744861932373],[4.83693603846187,51.967507957208774],[4.836690043686622,51.96761635211322],[4.836535623223567,51.96762798842335],[4.836375944853454,51.96760561488524],[4.836196485750654,51.967536238180735],[4.835996609905163,51.967474073088034],[4.835863674482527,51.96746030916963],[4.835738078493762,51.96744729857432],[4.835573506765655,51.967554396464976],[4.835407782210184,51.96774573671847],[4.835277653804155,51.96789062106079],[4.83510470213276,51.96797604397567],[4.834911108598816,51.96807737802383],[4.834343248369273,51.96830785119177],[4.833988059053669,51.96848886115595],[4.833882870903535,51.968542467483424],[4.833510912634819,51.96870587880925],[4.833134101783321,51.96880241959661],[4.833111401221018,51.9688035351031],[4.832738101025283,51.96882190132036],[4.832469707693707,51.9688249055716],[4.83220835860427,51.96882782559255],[4.83207373201162,51.96881996377281],[4.831763471456036,51.96880185291016],[4.831286488242203,51.96878836453595],[4.830980791793338,51.96884235093059],[4.830735035269228,51.968885753119004],[4.830626324993787,51.968926100014706],[4.830319520123941,51.96903995998867],[4.830219881159035,51.96910679324041],[4.830117820499647,51.96917525981299],[4.829931557461641,51.96930018792458],[4.829714549285833,51.96960982492036],[4.829576018248269,51.96992544224302],[4.829558057517423,51.969960816239144],[4.829470551810171,51.97013307704814],[4.829462153234438,51.9701496117906],[4.829455032652871,51.97015464747553],[4.829452624947911,51.97015634385179],[4.829141565970188,51.970376171480204],[4.828806739271309,51.970524652640684],[4.828737332794428,51.97055543195493],[4.828684539691805,51.97059135055086],[4.82846480938046,51.97074087143958],[4.828375792476099,51.97080145273104],[4.828129186449228,51.970976237485274],[4.828064010808245,51.971022433588935],[4.827926371241103,51.97111457532146],[4.82778564918379,51.97120878753895],[4.827752380118022,51.97123105533092],[4.82728138611495,51.97140100048281],[4.82686672397596,51.97149396599384],[4.826513872480464,51.97154396809254],[4.826332610330935,51.97160251725853],[4.826229668407897,51.97163576881787],[4.826180528016326,51.97165164166558],[4.826023571332385,51.971828692099386],[4.825865065486703,51.97207132307916],[4.825847958143049,51.97209750547809],[4.825588502550062,51.97232434718568],[4.825570980944332,51.97233244296363],[4.825230912220054,51.97248949083876],[4.824807087834539,51.97261273661769],[4.824111871227235,51.97279030235374],[4.823635862603903,51.972895326407404],[4.823351749239183,51.97295095143464],[4.823011247186414,51.973017603772945],[4.822903686170313,51.97300454915483],[4.822700421863327,51.972979880725724],[4.822549590640164,51.9729485425489],[4.821938872811111,51.9727147256339],[4.821488362695029,51.97254224860764],[4.819803510278708,51.9718971740351],[4.819798360636334,51.9719039084585],[4.819735189509504,51.971986449644035],[4.822443905878282,51.97300730462269],[4.822640801933849,51.973073127659625],[4.822731683112393,51.973085149726714],[4.822768616754662,51.97309003682424],[4.822937080955632,51.97311079264061],[4.822862557211689,51.97323260260594],[4.822796329288495,51.97338144695314],[4.822702964718755,51.97359110222559],[4.822628078856313,51.9739306201981],[4.822578438540779,51.97413514607183],[4.822433195301851,51.97431056711384],[4.822162337115769,51.97451936981636],[4.822017137073086,51.974691132285166],[4.821990987914734,51.974772818820796],[4.821959142037484,51.97487231090947],[4.821985579380501,51.9750485470558],[4.822014436851006,51.975115846782565],[4.822055934399707,51.97521264412773],[4.822117681298154,51.97536574298693],[4.822107849704323,51.97543914872537],[4.822091446711751,51.97556168029362],[4.821883281320119,51.97585700886682],[4.821872528378937,51.97587180598779],[4.821765486999546,51.976019132325625],[4.821746631808177,51.976045107982564],[4.821654527433726,51.97616548696509],[4.821571479086474,51.976274035775155],[4.821495968499995,51.97645540857855],[4.821490057143834,51.97658719458416],[4.821490056350675,51.9765872574989],[4.821487263716222,51.976649452570975],[4.821489168919112,51.97665765013493],[4.821517358685486,51.97677909268812],[4.821514513577459,51.976967834742744],[4.821489899455892,51.977006087745096],[4.821484673471456,51.97701423304529],[4.821439022960826,51.977085174458786],[4.821377427509347,51.977180927968675],[4.821214105000465,51.97731611848439],[4.821177024954927,51.977346806168555],[4.820977346836863,51.97746438402557],[4.820734118888485,51.97757275453341],[4.820729342816836,51.97757522131758],[4.820534724926301,51.97767572691273],[4.820362876096096,51.97787601388958],[4.820214430381545,51.978069393475046],[4.820150216062125,51.97818087235397],[4.820149337935113,51.978182405132905],[4.820100838572658,51.97826659013882],[4.819996308571208,51.97844922427712],[4.819880714413384,51.978560581154035],[4.81981614643965,51.97862278391426],[4.819616520560881,51.978726292928116],[4.818921376072623,51.979086705884455],[4.818745536887914,51.97917012245634],[4.818531717181259,51.9792102470061],[4.818494541271007,51.97921722207163],[4.818226251379722,51.97922428423396],[4.81810722005631,51.97922742078937],[4.81771692812147,51.97924688883833],[4.817396454783629,51.97926667574008],[4.817034976705673,51.979300320889585],[4.816737224284867,51.979357859379405],[4.816394642807868,51.97947237264435],[4.816324725898902,51.97949574476627],[4.816025982440217,51.97962181296289],[4.815743944950694,51.97979263373051],[4.815694576156365,51.97982772723205],[4.815626214634933,51.97987632785689],[4.815555033155089,51.98001487033205],[4.815497254141558,51.98012737566076],[4.81544591484276,51.98027479610775],[4.815402930074349,51.980398249198636],[4.815336625048923,51.98074679248772],[4.815354377919958,51.98088769951593],[4.815382347620426,51.98110983013029],[4.81538370969921,51.98112059582462],[4.815199368693736,51.98147811099099],[4.81510462281437,51.981618453145906],[4.814985974591698,51.981794192027095],[4.814825342159209,51.98200435874841],[4.814740094314945,51.98211543574542],[4.814652906458829,51.982229073913494],[4.814538729084922,51.982496767098304],[4.814494587510096,51.982678548696164],[4.814468022089597,51.982787978585826],[4.814213712593546,51.983172395333874],[4.814156095516929,51.9832351681431],[4.814083804594884,51.98331392267672],[4.813971404038909,51.98343637196888],[4.813583099218657,51.9838313789734],[4.813291046808066,51.98419623081267],[4.813179650282413,51.984458309493654],[4.813158492044566,51.984489539718254],[4.812945838578624,51.98480350836151],[4.812766919096293,51.98499070762262],[4.812583763398287,51.98518233516601],[4.812250863784094,51.98555597330783],[4.811956166803165,51.98582334807546],[4.811696440365147,51.9860425716963],[4.811165608159429,51.9864267527051],[4.810864084155773,51.98658660848363],[4.810617539683682,51.98671731397419],[4.810162697103932,51.98694878196716],[4.809702091488804,51.98721252410487],[4.809417466668384,51.987416996460844],[4.809302484632892,51.98749959219971],[4.809054476344008,51.98767196627979],[4.808579122822827,51.98796624594934],[4.808153535378126,51.98818520342542],[4.807507060211219,51.988272470579616],[4.80679089772152,51.98828607242768],[4.806779008281978,51.98828682274045],[4.806601017302975,51.98829798014567],[4.806255219673718,51.98831966130984],[4.80607423421677,51.9883675295913],[4.805815252971248,51.9884360270907],[4.805706363469086,51.988492655084805],[4.80547709233671,51.98861187616866],[4.805177824214933,51.988898113978756],[4.805109246137198,51.98896369545122],[4.804826038665674,51.9891630493889],[4.804762123858777,51.98920803443036],[4.804246177259825,51.98943748741108],[4.803984775407383,51.98950670595644],[4.803698449386971,51.98958252364195],[4.803057584344601,51.98970742852521],[4.802829312303606,51.98975117413819],[4.802376051008068,51.98983802420231],[4.801848823636925,51.98995422017985],[4.801472841781376,51.990106553858816],[4.801210336164563,51.99024625651331],[4.80112876202463,51.99028965959012],[4.800802351463804,51.99039168742857],[4.800380233897811,51.99040194234849],[4.799897164436469,51.99035824003687],[4.799408209943794,51.99029484878827],[4.79928569041653,51.99030072638242],[4.799233084340578,51.99030324097197],[4.799079286617489,51.990310615936316],[4.798691820882497,51.99039294489415],[4.798572527186148,51.990441433746724],[4.798356656060712,51.99052918584256],[4.798114452378425,51.99072290441338],[4.798052113388464,51.990775812469025],[4.797860464779174,51.9909384816081],[4.797571658758866,51.991112303632356],[4.797224787670461,51.99124680189703],[4.796473574977106,51.991496829087524],[4.796094090164987,51.9916231337128],[4.796066312714058,51.99162959165231],[4.795671703264268,51.991721285644616],[4.795330949924084,51.991753278798654],[4.795022559900318,51.99171155842817],[4.79475205326136,51.99163576430591],[4.794301877477894,51.99128828994054],[4.794063669090953,51.99114411163247],[4.793807844845884,51.991059400945105],[4.793525436902795,51.99105713174348],[4.793493668415086,51.99106702047673],[4.793318597573912,51.99112154144558],[4.793266277319437,51.99114415280734],[4.792750027560861,51.99136725321392],[4.792582208407294,51.99143471701944],[4.792464361430108,51.99148209245596],[4.792114761453784,51.99155532415989],[4.791782879611519,51.991578084892794],[4.791651651366831,51.991565133786374],[4.791488899442134,51.99154906579516],[4.791324984460207,51.991507671451004],[4.79120966650181,51.991478558422266],[4.791136928005981,51.99146424008347],[4.790796601281316,51.991397251323384],[4.790345652043397,51.99130677125879],[4.789600611589896,51.991257203584475],[4.78934247235183,51.99124407277657],[4.789305836362787,51.99124221481785],[4.788803104059869,51.99121664041728],[4.788162763551798,51.99118725352108],[4.787901488836876,51.99118873665946],[4.787641655515412,51.99119021757267],[4.787348543868445,51.99121421494841],[4.787079598012202,51.991236231548385],[4.786744890714798,51.99129927651932],[4.786596096000771,51.99132729801575],[4.78622592458743,51.99144001004015],[4.785721857284599,51.99159754479158],[4.785200348963304,51.99171565505239],[4.784643878670527,51.991826285448276],[4.784237319880956,51.991907111921485],[4.784212764857827,51.99191199263648],[4.783906675586848,51.99202137643139],[4.783772296641471,51.992103074933596],[4.783644156211187,51.992180976229875],[4.783398687128298,51.99241392716582],[4.782779531291881,51.993001509838436],[4.782794824949979,51.993043231519856],[4.782853738685747,51.9932039585644],[4.782894844792198,51.99331612882648],[4.783078209448901,51.99353924483449],[4.783112289577782,51.99358072134462],[4.78342288863395,51.99382190927637],[4.78350595052968,51.99391420553092],[4.783643340790309,51.994066849643865],[4.783710434280725,51.994171872285115],[4.783793856093551,51.994302442660036],[4.783764642016851,51.99443814312447],[4.783752481016986,51.994494635605015],[4.783583127614153,51.99461146088014],[4.783274422326498,51.994643304935806],[4.783260785205524,51.99464284845693],[4.783260683409503,51.9946428389462],[4.782936725159726,51.99463201693859],[4.782569314810547,51.99464413384934],[4.782465116587877,51.99464757135224],[4.782365533080738,51.994656479432436],[4.782352995840936,51.99465760146595],[4.782168086283713,51.99467413340467],[4.782065086199168,51.99471178645886],[4.78193772240911,51.994758338454346],[4.781873705955293,51.994802079204135],[4.781780208898201,51.99486595502775],[4.781680570099627,51.99503312950788],[4.781685830186011,51.995081388176516],[4.781708817867393,51.99529196917717],[4.781765841832161,51.99560123781307],[4.781794680396608,51.99568370166641],[4.781869672781573,51.995898109505596],[4.781994585689193,51.99617476679218],[4.782045851905475,51.99628831982396],[4.782268911497995,51.996601533750166],[4.782518660573252,51.99676713353723],[4.782567110716412,51.996788379280225],[4.783164076762524,51.99705021069755],[4.783608910609305,51.99723422864322],[4.783902421287089,51.99739471976347],[4.783945724058749,51.99749886522623],[4.783945160845364,51.99749959938562],[4.783855077834558,51.99761581562802],[4.783463815670759,51.99792249676774],[4.783413931133433,51.99793520209673],[4.783224898497736,51.99798335363704],[4.78303883129588,51.998008078434566],[4.783009261839733,51.99801200736456],[4.782969741598147,51.99803361026334],[4.78242877787495,51.99832924565007],[4.781860133617213,51.99856058622159],[4.781154478556648,51.99885272605279],[4.780514699845018,51.99906793724295],[4.780425794616932,51.99909783266232],[4.780391306331208,51.999106301669954],[4.779681551853231,51.99928048418492],[4.77963887403778,51.999290960049386],[4.778992146417657,51.999398006041226],[4.778648347933385,51.99947319637785],[4.778356868697027,51.99955707846569],[4.778280896796219,51.99954428150163],[4.778196817757677,51.99953012125041],[4.77763019293477,51.999383059550006],[4.77747241569384,51.99934210924041],[4.777468700610953,51.99934652126111],[4.777241039348078,51.9996171589518],[4.777240994931007,51.99961721265184],[4.777063050073588,51.99982873046404],[4.776866208594645,52.00008039094945],[4.776603740218575,52.000415931689],[4.776548480490928,52.00049791554766],[4.77619095159873,52.00102836927371],[4.775815813549381,52.0016983108029],[4.775575544439513,52.002097314552536],[4.775421320754509,52.00207713414278],[4.775252469560782,52.00238607644413],[4.775048142535183,52.00234709204929],[4.774896833076306,52.002318216382946],[4.77452371417488,52.00222534848795],[4.774523569045898,52.002225311779064],[4.774356298959749,52.00218366974742],[4.773597669072996,52.002008938390006],[4.773205448703121,52.00191182307413],[4.77264167853848,52.00177222167971],[4.771531415703024,52.001520920124314],[4.771355979981672,52.001492093451034],[4.770182277721437,52.00129925808059],[4.769423233172323,52.00119809430041],[4.769265724947795,52.00119475973626],[4.768841112593532,52.001185752534276],[4.768320206064068,52.00117820597729],[4.768203669362326,52.00117651456387],[4.767611051494216,52.00117773788038],[4.767610876754219,52.00117773696052],[4.767167414610049,52.0011786465277],[4.7666629696426,52.00118754717948],[4.766640406405264,52.00118794954762],[4.766104615991059,52.00121517162892],[4.765732129644145,52.00119945327576],[4.765534077219851,52.00119309526196],[4.765381745965567,52.00118820987499],[4.764620395749849,52.001163799575885],[4.763470907827556,52.001109958549605],[4.762301181845122,52.00104870027467],[4.761017899923475,52.0009873925553],[4.76090971798321,52.00098501030435],[4.760909616177624,52.00098500077424],[4.760447393926007,52.00097480138485],[4.760217224501157,52.0009888018391],[4.760196892233682,52.000990041786665],[4.760029641476018,52.00101387774725],[4.759678198432503,52.001063957404746],[4.759229886712623,52.00107532760459],[4.758788424530109,52.001091514486085],[4.75855431072387,52.00110008861514],[4.758009907933522,52.001150256088124],[4.757762006309048,52.00117310039441],[4.757190869735956,52.00124673359586],[4.756925629442958,52.001298120321316],[4.756470662831194,52.00141898580139],[4.755528525881573,52.00166055665945],[4.754918992298744,52.001809520155334],[4.75475903021671,52.00184687936005],[4.754038321178329,52.00201517712423],[4.753533967773502,52.00211975730511],[4.753278813149567,52.00215548742884],[4.753162456834663,52.0021717858314],[4.752869581373368,52.002212794785564],[4.752202673912705,52.002250221764896],[4.751075742893277,52.002289914540604],[4.749966509389665,52.002309756104424],[4.74950335789307,52.002347695478925],[4.748644637622109,52.00234500840435],[4.748186827551738,52.002362630859544],[4.747864280999615,52.002375045006566],[4.747214448817923,52.002442090306694],[4.747173786883851,52.00244628250826],[4.746310725130582,52.00262697185942],[4.74623970181005,52.00264112833325],[4.746239570365766,52.00264115458262],[4.745351491382651,52.0028180873548],[4.745077519156591,52.002893875215435],[4.744645431554667,52.003013381796805],[4.744270429764276,52.00316236595159],[4.744035186341518,52.00325582737619],[4.743532617363817,52.00349520939496],[4.74300639075337,52.00378838115404],[4.742740319370315,52.00395009989083],[4.742491597342776,52.00410127979303],[4.741716073591145,52.004623704182684],[4.740826476935695,52.005212047168556],[4.739843569080612,52.00581476408924],[4.739411162898629,52.00602193154669],[4.73912171116998,52.00617004887103],[4.739104800478983,52.0061761937064],[4.739100583792892,52.006177725481145],[4.738645867075802,52.00634298027818],[4.738185665316067,52.006511627660984],[4.738140728297092,52.0065281072784],[4.737232690233206,52.00685960417165],[4.736718203018375,52.007026714673536],[4.736564344928586,52.00707668469894],[4.736470916933226,52.00711350602238],[4.735945092437681,52.00732072858985],[4.735181986582825,52.00764918245274],[4.735074641457412,52.0076953813714],[4.734230627415869,52.008026931254825],[4.733494192106655,52.00831360930892],[4.733149972365367,52.00844759271178],[4.732858053079481,52.00855270750933],[4.732443980600541,52.00862147626599],[4.732046242136118,52.00867676200909],[4.731826107744283,52.00870736451],[4.731708353498769,52.008756792172186],[4.731536887421801,52.00882877803708],[4.731489954793648,52.00887879767826],[4.731491834602771,52.00888371581125],[4.731522528237539,52.008964063233485],[4.731529851100197,52.00898322233074],[4.731655707618885,52.00898039084611],[4.731940421737017,52.00897399436281],[4.732170060962023,52.00902863650465],[4.732312782286278,52.00904188850813],[4.732411532472508,52.00905104872577],[4.732731762056635,52.00905030382913],[4.73290711394031,52.00896448671873],[4.733040048161283,52.00886789025188],[4.733308387989861,52.00867290393216],[4.733397656612659,52.00862407149071],[4.733448663136874,52.008596158196994],[4.733535123668985,52.00856508010448],[4.73376106269094,52.00848385705572],[4.733930115494508,52.00840822326297],[4.734176854337321,52.00829783966274],[4.734187717933298,52.008292974290846],[4.734203252186372,52.0082874337333],[4.734932230064447,52.00802745039805],[4.735362119694573,52.00783084672809],[4.73567739040641,52.00768664764104],[4.735872543209357,52.007614607072135],[4.736343092148218,52.00744090251562],[4.737227817791395,52.00710928372157],[4.737228667036463,52.00710897381725],[4.737984001014296,52.006836785133],[4.738728256760274,52.0066018503865],[4.739136411050022,52.006446819386134],[4.739239232670117,52.00640776461542],[4.739374217699152,52.006349193213026],[4.739843922008356,52.00614536796664],[4.739996418195425,52.00606113143513],[4.74030007284134,52.00589339646722],[4.740899612701991,52.00553771159081],[4.741549212535721,52.00511742008607],[4.742026198910163,52.00480066904049],[4.74246552536259,52.004458991728306],[4.742989390068121,52.00410091327758],[4.743624229788986,52.003691486445994],[4.743907769148691,52.003554372528356],[4.744156081056237,52.003434287236196],[4.744778102961653,52.00318825602034],[4.7453586168372,52.00301924141052],[4.746134489722159,52.00282600378122],[4.746496211751287,52.00275778299107],[4.746959537422093,52.00267039327776],[4.74763390032917,52.00258581149873],[4.747798759553859,52.00256512605962],[4.74803178216818,52.00254082870301],[4.748241324741555,52.00254337757576],[4.748678034291689,52.00254827319538],[4.749324350051363,52.00254306782309],[4.75009884246474,52.002516926703336],[4.751438175115426,52.00248710045682],[4.752288560812624,52.00243578288346],[4.753031350923309,52.00238248631334],[4.753716201716257,52.00227494294404],[4.753740133324423,52.00227050564348],[4.753740235512304,52.002270488216716],[4.754316681141318,52.00216357132676],[4.754876716460747,52.002016025856996],[4.755350535147502,52.001872625978415],[4.755358198810277,52.001870307667616],[4.755365374205193,52.00186853502656],[4.755926890458551,52.001730106748575],[4.756979598615468,52.001481547590224],[4.757622509660505,52.00137847589079],[4.757705266974186,52.001365211240945],[4.758104874460264,52.00132338557195],[4.75813938063499,52.00131977689899],[4.758527379713267,52.00127906523387],[4.75860550745966,52.0012708626484],[4.759115032979641,52.001258140659644],[4.759527060511675,52.00124229893346],[4.759807937855583,52.001231500337724],[4.76024209375303,52.00119841749779],[4.760486629740099,52.0011797745888],[4.761068854939317,52.00118343952204],[4.761423974473432,52.00118083390244],[4.761805094758952,52.001214318881],[4.762517819155799,52.00126697350579],[4.763140280820078,52.00129482271714],[4.763550913917798,52.00131318725304],[4.763967902975546,52.00132691005356],[4.764386930185482,52.00134069609037],[4.764517193025313,52.00134498064446],[4.764572783409253,52.00134572414074],[4.764613828264593,52.00134627382428],[4.765562097692578,52.00135893497488],[4.76685154892682,52.00137023224619],[4.767449859336869,52.00136298455461],[4.768048169442098,52.00135574280834],[4.76909034641234,52.001337347241645],[4.769547529965134,52.00131727629726],[4.770216201665358,52.0014468991474],[4.771018456475269,52.00160025476647],[4.771719011164554,52.001746053221424],[4.772675431064316,52.001941487119275],[4.773744872419736,52.00220155342555],[4.773771651908693,52.00220808372251],[4.774677657709731,52.00242915198155],[4.775201089527476,52.002541955224686],[4.775201176654886,52.002541973654424],[4.775337436652711,52.00257133696216],[4.776043997120254,52.00270281330545],[4.776875762549084,52.00281498948009],[4.777530069574308,52.0029085426394],[4.77819791847385,52.002979925001114],[4.778292282723315,52.00299001276887],[4.778551465197483,52.00301151416379],[4.778920637350446,52.00304214036175],[4.779124226472176,52.00305010433831],[4.779814118590126,52.00307708999742],[4.77998781435584,52.00307394140564],[4.780585698319887,52.003063092225375],[4.781424303175449,52.00303145763496],[4.781648063744401,52.003022101608735],[4.782309523734744,52.00299443891235],[4.783258878796521,52.00294341517398],[4.784042663545257,52.002852211400175],[4.784106640481476,52.002845672109494],[4.784197027695243,52.002836436751835],[4.784287466653414,52.002830931759405],[4.78430771161168,52.002829696190204],[4.784459135106699,52.002850659541004],[4.784598552064709,52.0028699433244],[4.785401391399243,52.00296028506257],[4.786256428009781,52.003077852886975],[4.787023177422474,52.003151451706245],[4.787396815421217,52.00318731427036],[4.787478954544748,52.00321548884765],[4.787661165778793,52.00327798732402],[4.787780201163766,52.00332743629925],[4.787974693367584,52.003408225213256],[4.788151210804137,52.00355799784536],[4.788338920892879,52.00378141482219],[4.78853516424912,52.00403885985863],[4.788669670241293,52.004164598865756],[4.788823782722947,52.004308665769564],[4.788876558633776,52.004358001474245],[4.789090053932729,52.004574842953815],[4.78923511076824,52.00472216201254],[4.789321129666867,52.004800438101654],[4.789631493737478,52.00508286420401],[4.790112064758663,52.00549596274474],[4.790569871453735,52.005824390461775],[4.791010469602967,52.00611340516603],[4.791208784016548,52.00623121303762],[4.791448268372375,52.006373479508824],[4.791996122661081,52.00673438275611],[4.792123106165103,52.00682688569257],[4.792381041699983,52.007014778481725],[4.792390230602869,52.007021467303346],[4.792548519602169,52.00720147672517],[4.792569353140429,52.007225176381496],[4.792581003858544,52.007238430129554],[4.792765853383184,52.00744863044706],[4.792936145363008,52.007668302597104],[4.793173281393122,52.00790085056346],[4.793309283905214,52.008034213779496],[4.793711206932065,52.00845419444525],[4.794095720943753,52.008865106617606],[4.794511673401498,52.009369703991574],[4.794972284044499,52.009944444823184],[4.795248054342656,52.010288530395364],[4.795964839371344,52.01110839078448],[4.796028837520868,52.01117610676425],[4.796263470240635,52.01142437427542],[4.796288624268233,52.01145100715463],[4.796572520621612,52.01168725221345],[4.796992529504356,52.01200844472541],[4.79774330979386,52.01252286980098],[4.798363736771391,52.012939707841205],[4.798833830316647,52.01318361973644],[4.799342224579991,52.01336312181645],[4.799650217898519,52.0134400984487],[4.799836440137382,52.013486643497565],[4.800327287085399,52.01359285274327],[4.800484875158605,52.01362694898528],[4.801060192047745,52.013712435539894],[4.801060366484905,52.01371246337342],[4.801063797552523,52.01371297481426],[4.801270635786294,52.01374269519048],[4.801983070834939,52.01384507453045],[4.803280920655612,52.01404364898992],[4.802802128665892,52.014978329314985],[4.802599063302758,52.015374749189654],[4.800177214155518,52.01945834765435],[4.799693911519149,52.02027317363655],[4.799693866990551,52.02027323633263],[4.797532190254475,52.02391731671576],[4.797329128577857,52.02433115564797],[4.797308781505412,52.024372642682025],[4.797059283307148,52.024820520960034],[4.796925947924835,52.025031923085905],[4.796917854665421,52.025036853055845],[4.796840916849205,52.02508374590675],[4.796762724121864,52.025084324581535],[4.796746199584763,52.025084448451075],[4.796683584019863,52.025084925418184],[4.793648568882928,52.02482107537529],[4.793469277472056,52.02481579413798],[4.793223454752154,52.02480854115445],[4.793037024676819,52.02480760056139],[4.792870703177771,52.02483401377358],[4.792790285137616,52.024859584095815],[4.792743345293917,52.0248745104302],[4.792692483998703,52.02489068430043],[4.79167338491046,52.026841115184425],[4.791213621841841,52.02772099290642],[4.791180520633271,52.027738154850404],[4.791131543672588,52.027763550620584],[4.789927039660495,52.029918599241356],[4.788638201723812,52.03222428226683],[4.788604822576491,52.032356807135635],[4.788604776699303,52.03235696869219],[4.788603537693363,52.03235917352027],[4.788438351046024,52.032652737091446],[4.786936969103606,52.03530577925141],[4.786099627778406,52.036785272274486],[4.785135966893873,52.03814461390328],[4.785061888368386,52.038239664091876],[4.784722561567593,52.038675057292025],[4.784450268187857,52.03908375575612],[4.784201855162969,52.03944398504168],[4.783644152377692,52.040117777350765],[4.783035564557484,52.040916863695095],[4.782530571812107,52.041563956152885],[4.781934914709757,52.042244574329146],[4.781335263227724,52.04301870127587],[4.780803813171002,52.04368165837079],[4.78006642060132,52.04453231061352],[4.77988148711562,52.04474763833653],[4.779494107762493,52.04519870488312],[4.7790112368013,52.045953764974854],[4.778543276263473,52.04666704156968],[4.77816073212534,52.04730379111519],[4.778104161101945,52.04742237791095],[4.778086289066893,52.04745986559277],[4.778026349896191,52.047621336108975],[4.777984001421627,52.04777026900696],[4.778021857602321,52.04805978032432],[4.778134324918376,52.04845752808586],[4.778220444378774,52.04887508453628],[4.778742923521579,52.05053079156466],[4.779982790904501,52.054168465723585],[4.781206312202542,52.05743751567094],[4.781218878137546,52.05763700346171],[4.782628640957099,52.06181481049097],[4.783610788941105,52.06471136654591],[4.783610844604029,52.06471156457312],[4.783911488738551,52.06559815292071],[4.78586683706947,52.071271594542075],[4.785876985454689,52.071281596341706],[4.786016961749155,52.07141954342076],[4.786523439331355,52.07298355859697],[4.786445637650907,52.074917327997696],[4.786427330124985,52.07644158049034],[4.786395192670574,52.07706850940292],[4.786354748262562,52.07785770582444],[4.786229799095396,52.079269914544554],[4.786114286184822,52.08059593768142],[4.786098383478203,52.080594939768154],[4.785948524895474,52.080585537600484],[4.784831364525959,52.08051551280462],[4.784644987092574,52.080484224667835],[4.784511245266533,52.080445897977064],[4.784325346189288,52.080362372046984],[4.783690060720547,52.08000773362574],[4.783359074392731,52.07984817743826],[4.783324660252564,52.079834150198266],[4.7829667800774,52.07968831497392],[4.782702269991894,52.079666402337075],[4.78269571265339,52.07966585637076],[4.78240112426862,52.079655635287786],[4.782073339357885,52.07976574857018],[4.781895937073486,52.07990439817194],[4.78176450642769,52.08000712393543],[4.781705972046734,52.080092705995945],[4.781643121566711,52.08018458459331],[4.781532147297645,52.080556343825194],[4.781476934881998,52.08074127654727],[4.781385971468771,52.08107871794484],[4.780974646503667,52.08136478424174],[4.780835442141892,52.081459343597515],[4.780698445963011,52.08155239513846],[4.780398320358235,52.0818064582096],[4.780142132273302,52.082039112119475],[4.780114620631113,52.082092621295445],[4.780113466981668,52.08209485342811],[4.780103382356821,52.08211446778031],[4.779957568265119,52.082403309124125],[4.779876465068257,52.08238089695131],[4.779666527334327,52.08232288330491],[4.779387248401055,52.08224981588664],[4.779305817964438,52.08223220135887],[4.779067287417022,52.082180600576955],[4.779032114542685,52.08217298578892],[4.777912292353903,52.081981854901656],[4.777910851325556,52.08198161375699],[4.776466214041426,52.08173502160143],[4.774619424650817,52.08145409908963],[4.772961501521169,52.08124070810718],[4.772035159328729,52.081126003852],[4.771280268064754,52.08103251093373],[4.769683103858419,52.08080149558537],[4.768941062491781,52.08069415911066],[4.767867159493943,52.08053549510854],[4.767301042471085,52.08045184894123],[4.766447563586582,52.08034293975273],[4.765887147805945,52.0802714150089],[4.765774345397157,52.080257023254624],[4.765200182095948,52.08020596093404],[4.764823899225921,52.0801935838846],[4.764359982289721,52.08019702925288],[4.764277482098906,52.080198256031636],[4.763592572994132,52.080208421750335],[4.763581911802778,52.080209255173564],[4.762678642924528,52.080279982331625],[4.762418560773695,52.08031853865709],[4.762018283947516,52.08037787767226],[4.761191114497945,52.080529091605484],[4.760398659565628,52.0806928522501],[4.759655229537717,52.0809180967525],[4.75877700446889,52.081198515938276],[4.75802705311721,52.081490003939415],[4.756884232594695,52.08195802851741],[4.755831789155844,52.08242455784551],[4.755287810370047,52.08266253701126],[4.75479410525336,52.08287851951122],[4.753715886657197,52.08325614151976],[4.753490770491097,52.083334976321694],[4.752724432969213,52.083567626732915],[4.752106219776653,52.08375531568556],[4.751591589738206,52.083890529284545],[4.750874379650028,52.084078981151194],[4.749813349464793,52.08425245582045],[4.748441901964567,52.08453236789491],[4.747526380061741,52.0847332967626],[4.747241029050477,52.084787394055866],[4.74711574055285,52.084811152790124],[4.747035248144191,52.08482640913014],[4.747037933458316,52.08483247282529],[4.747089345818368,52.08494888957385],[4.746584444523843,52.0849610397966],[4.746135797105331,52.085009168322486],[4.745906672846906,52.08503374512133],[4.745629244765179,52.08506820629841],[4.745447654118608,52.08509076692073],[4.745404127293898,52.08509617453703],[4.744661571409273,52.0852277975906],[4.744035643721791,52.08537269001377],[4.743341541121519,52.08560512103665],[4.742720004236157,52.08587192949835],[4.742194855133941,52.08613393219429],[4.741718665640695,52.086446481133144],[4.741514486491226,52.08660714271442],[4.741330111802903,52.086752200966146],[4.74103361627279,52.08707434250761],[4.741017073320704,52.0870923182453],[4.740706266446884,52.087491715626804],[4.740380212068398,52.087952265630136],[4.739910575330494,52.088723236308404],[4.739561794180204,52.08938869972501],[4.739473159929243,52.089634913826295],[4.739401931700574,52.08983283065579],[4.739320927794334,52.09005784727837],[4.739302802549497,52.09015671752574],[4.739216183266009,52.090629231251036],[4.739199737003744,52.09071894266753],[4.73900090404856,52.091546729854095],[4.73885022324297,52.092236317188714],[4.738821413053764,52.09232521449847],[4.738696148230227,52.0927118479232],[4.738683815974779,52.093388147369595],[4.738701893347143,52.09389551775827],[4.738657597505223,52.09435175223628],[4.73865284734527,52.094400559359826],[4.738608574175916,52.094795799529614],[4.738558549670944,52.095360104272324],[4.738519669244439,52.095572606626874],[4.738488221639419,52.095744522906294],[4.738465313515216,52.09599372233848],[4.738461416308965,52.09603601764462],[4.738449235598488,52.0961684466286],[4.738404528305277,52.09658530999925],[4.738307532716574,52.09717294115995],[4.738263306600057,52.097564532070386],[4.738176189414569,52.09781017806593],[4.738102797543686,52.09801709723805],[4.738088904739389,52.09805623652885],[4.737978015865107,52.0984221851947],[4.737757450544741,52.09888134004384],[4.737534663639309,52.09930424154956],[4.737514918311285,52.09933528604321],[4.737268023547372,52.09972353924112],[4.737210622251718,52.09980182509651],[4.736984529514769,52.10011015192577],[4.736831113699583,52.10029530869341],[4.736624274413296,52.10054493984654],[4.736344560330125,52.100875682840574],[4.735911802367912,52.10127607466263],[4.735544335284727,52.101636522477854],[4.735496626571069,52.101683312282304],[4.735228633241817,52.101938894676984],[4.734651547333108,52.10248926164428],[4.733711813935069,52.103371925402406],[4.732866815945273,52.10417590300503],[4.732335908428248,52.10463993106536],[4.73204356218948,52.104895451850815],[4.731300856752748,52.105500550722844],[4.73054996379185,52.106080333339854],[4.730163256923153,52.10633686985073],[4.729755357532612,52.10664553565885],[4.729646099149458,52.10672385221219],[4.729659574366452,52.10679218419132],[4.7297083400805,52.1068410466789],[4.729759881942824,52.10686889210609],[4.72978541391448,52.10688268764301],[4.729809714889677,52.10689582016751],[4.730068570623502,52.10695119280841],[4.73063261986109,52.10709842609994],[4.730783439668385,52.10714409934174],[4.730984136068018,52.1072048716475],[4.731087039115598,52.10723823351942],[4.73121068852775,52.10727832609325],[4.731462020265369,52.10689856382707],[4.73175450206022,52.10693656122476],[4.732245697597012,52.10700038418132],[4.732991750472324,52.10708598695096],[4.733023010143454,52.107088506341455],[4.733478418312308,52.107125259676124],[4.7336419337722,52.107138462167],[4.733962751501696,52.10715653588388],[4.734283569625791,52.10717459974044],[4.734312282964446,52.10717556769547],[4.735014739348819,52.10719921184474],[4.735062653352504,52.1072008251254],[4.73565781225326,52.107226020073554],[4.73636449001571,52.10722150133475],[4.736470358309466,52.1072189038802],[4.737129633355205,52.10720268585183],[4.737335010601813,52.10714090034943],[4.737430855464545,52.107100792742834],[4.737940478446627,52.10688751383029],[4.738243140162592,52.106770643170364],[4.738366930675259,52.10669576927763],[4.738464985166916,52.10658676008039],[4.738690004877214,52.10657732901044],[4.739075188492748,52.10658871405029],[4.739474315958907,52.10663612743754],[4.739833352580254,52.106641757673614],[4.741056698895894,52.10682008134491],[4.742096957117418,52.106964340819275],[4.742115429517967,52.10696689568601],[4.742115560623146,52.106966914379846],[4.742615144071104,52.107036186836865],[4.743395946973186,52.10712763917108],[4.743958453491142,52.10719351938548],[4.745612046811932,52.10743571172595],[4.745697349733232,52.107448202175384],[4.746741348688806,52.10758710187035],[4.746742412414279,52.10758723348421],[4.747480308116541,52.10768540046842],[4.747548934371173,52.10769534529422],[4.749265822966022,52.10794422922527],[4.750234629403026,52.108071410762676],[4.750705571562897,52.10813324057127],[4.750743002826461,52.10813815247991],[4.751594990734686,52.1082706063814],[4.751899248383464,52.10831790651042],[4.752330182718898,52.108384907161025],[4.752586175288076,52.10843679026112],[4.75258642266414,52.10843684552206],[4.753706554779024,52.108663908169326],[4.753764967836887,52.108675744933464],[4.753821162152919,52.108614432476216],[4.753871825822078,52.108559157342164],[4.753874880095726,52.108555830125184],[4.753991699488986,52.10854080906835],[4.754155711774947,52.108519704593384],[4.754393850254948,52.108626513865936],[4.754434698137548,52.10864483540708],[4.754489108936178,52.108669233860915],[4.754605158416143,52.10871996599113],[4.754831288181343,52.10881881377109],[4.755247704560177,52.108889586292925],[4.755614604874514,52.108945481721136],[4.755890743174497,52.10901951366717],[4.755978058133649,52.10904292812805],[4.756375878801842,52.109178478647145],[4.756720512831841,52.109307397716044],[4.756805506272285,52.109339194153826],[4.757348756415017,52.10951315257694],[4.757723369973511,52.10963761787502],[4.757748576073589,52.10964521267861],[4.757912009242137,52.109694432788274],[4.758101201274389,52.109751421123136],[4.758601644615741,52.10985689767766],[4.758871874991686,52.109927214905156],[4.759061163264226,52.10997647232423],[4.759330622222699,52.11010908180121],[4.759543700912487,52.110293908750094],[4.759782361620045,52.11053253116078],[4.75999226256565,52.11092744018602],[4.760001150759855,52.11094320787747],[4.760001208014398,52.11094328907607],[4.760182548927667,52.11126495353189],[4.760373211189668,52.11158419547551],[4.760642685099234,52.1119041525272],[4.761035620179301,52.11235059980287],[4.761299507039398,52.112654229957336],[4.76133767111053,52.11268847993288],[4.76163641146245,52.112956557122914],[4.761933298755866,52.113200813901884],[4.761950234067875,52.11321749596705],[4.762197914417628,52.11346147313611],[4.762297491890497,52.11350773299667],[4.762373165179151,52.11354288249442],[4.762397925464406,52.11355438380199],[4.762683084715727,52.113618812060714],[4.762780102652292,52.11361112862297],[4.762998809567322,52.11359379786066],[4.763318305429554,52.1135182440244],[4.764162368526529,52.1132991700291],[4.764361946869768,52.11324737369824],[4.765147244260397,52.11307400193277],[4.765779172219113,52.11298773951521],[4.766526731686104,52.11298493586915],[4.767110378610877,52.11300794260843],[4.768224709396732,52.11307391085652],[4.768286174646102,52.113075824421934],[4.768855166682288,52.11309350545803],[4.769009376734158,52.113119975432014],[4.769256946349029,52.11316246616076],[4.769317728951371,52.11320004085679],[4.769420548704358,52.11326359600943],[4.76945948787588,52.1132876727265],[4.769619571032615,52.113506196932384],[4.769782470616009,52.1141148781588],[4.769808538233764,52.11432675903496],[4.769818776012964,52.11440999857268],[4.769891748201733,52.11453448091468],[4.769966760487837,52.11466244333763],[4.770115477730013,52.114805900647596],[4.770145057076608,52.11483443123729],[4.770166693384392,52.11485138837492],[4.770318263795916,52.11497016073824],[4.770404267160018,52.115003246852496],[4.770488774792386,52.11503575882296],[4.770541782741916,52.115056151676306],[4.770870643485433,52.11506252697504],[4.770938718911252,52.11506384452241],[4.771260559427965,52.115044637540265],[4.771380040450603,52.11503750478042],[4.771565288091586,52.11499791730117],[4.771772660816003,52.114953600364956],[4.772571784004858,52.11481957477336],[4.772834518944899,52.1147825553463],[4.773294614856018,52.11471772886188],[4.773862213617134,52.1146470961703],[4.77448486829097,52.114598651125604],[4.774928264305179,52.11462819759926],[4.775335326924326,52.114738447767145],[4.775524168638146,52.114873261992685],[4.775583824381108,52.1149158519836],[4.775792633287723,52.11519416723747],[4.775998097685265,52.115422580202214],[4.776013744681189,52.115439963609234],[4.776209092646869,52.115651354013956],[4.776246744216617,52.11567178156238],[4.776389017582304,52.115748972341194],[4.776466784864327,52.11579116133858],[4.776586428173411,52.11581924892717],[4.776789797473997,52.115866986635716],[4.776955337542482,52.11585277024432],[4.777125993551404,52.115838112703145],[4.777676859778801,52.11575528591574],[4.777781610939693,52.115739531725914],[4.778220650934164,52.115671871740204],[4.778561771522135,52.11570789603173],[4.778939310796721,52.11584326509905],[4.779085613701393,52.11601311483],[4.779184147234565,52.116257985299754],[4.779218523821773,52.116418395293024],[4.779271338043587,52.11666487251128],[4.779253307207417,52.11708553539175],[4.779290631484858,52.11729657311396],[4.779296311722649,52.117328726238846],[4.779407443053685,52.11751074397357],[4.77942471297479,52.11752703871878],[4.779523518575017,52.11762021631975],[4.779562859174654,52.11765732461247],[4.779631650535515,52.11768790640336],[4.779751411431536,52.117741158320236],[4.779955924074861,52.11777548599914],[4.780039687119985,52.11778954343737],[4.780340420192501,52.11779474971579],[4.780978624680872,52.11769410186875],[4.781661572806327,52.117523743152425],[4.781884912557351,52.11748214195258],[4.781923350658597,52.117474986912754],[4.782317524139477,52.11740156258466],[4.782908884101707,52.11730600300232],[4.783111523884525,52.11729745087784],[4.78328871493492,52.117289972492784],[4.783743742137108,52.11733203884597],[4.783787358041489,52.11733606405464],[4.783976366079151,52.11740392128565],[4.784179440028591,52.11747682061766],[4.784191419602246,52.11748819802318],[4.78419147715169,52.1174882612349],[4.78440976157929,52.11769568344298],[4.784435390981449,52.117747253922445],[4.784514596994121,52.11790659710441],[4.784437469147988,52.118077041584975],[4.784372575813557,52.11822045812594],[4.783548594394902,52.11902658298835],[4.783197765791299,52.1194365628759],[4.783067518459753,52.11974683339372],[4.783080206256358,52.119957491864156],[4.783081493664158,52.11997890834584],[4.783245025744496,52.12017580554903],[4.783467124907838,52.12035333619902],[4.783469026405654,52.12035417284815],[4.783639692340692,52.12042961255441],[4.783771836117694,52.12048802899261],[4.783936039807475,52.120518736897985],[4.784357153381368,52.12059747884744],[4.784848115635325,52.1205733017271],[4.785241168419865,52.120458462229244],[4.785326182823902,52.12043431345146],[4.786147417353442,52.12020102500077],[4.786839630076236,52.120005408708536],[4.78736439278476,52.1198681958907],[4.787486155329953,52.119857193457094],[4.787852758450043,52.11982405726603],[4.788405086930071,52.11981295845737],[4.788410724598232,52.11981284327331],[4.789018031026403,52.11981452332463],[4.789148587729515,52.119826079209425],[4.789257180989692,52.1198356810038],[4.789906084860588,52.11999372825508],[4.790338386782786,52.12007697262727],[4.790473846444037,52.12010305879769],[4.791039599978435,52.12015844729397],[4.791450876938769,52.1202342109621],[4.791592987369043,52.120260396852636],[4.791760454929744,52.120331948174595],[4.791874399131383,52.12038062825773],[4.791917001896928,52.12041713763745],[4.792058829430068,52.12053862781011],[4.792087789799682,52.120563437557074],[4.792155063485872,52.12066619746228],[4.792224870582294,52.12077281705345],[4.792276705593247,52.12101744946473],[4.792272812982688,52.121274716741176],[4.792260982029696,52.12149321385341],[4.792256646009966,52.12157321382114],[4.792306180405205,52.12197427398912],[4.792347426616606,52.12233766774775],[4.792062066070078,52.122478349208095],[4.792142865388073,52.1227411041468],[4.792289296088899,52.123105307215965],[4.792571241401853,52.12339266135487],[4.792818579133662,52.12364950524836],[4.793296777000475,52.123892914632194],[4.793592587533301,52.124002531822384],[4.793784704585572,52.124073723367005],[4.794241477427262,52.124194835696564],[4.795104006147432,52.12432921933182],[4.795379071497026,52.124372826498806],[4.795890674537934,52.124453940495286],[4.796280555800545,52.12455336254251],[4.796741830282908,52.124759030518454],[4.796890208704895,52.12482109967094],[4.79715980929915,52.124933866320156],[4.797543357413303,52.12509653824595],[4.797598075488513,52.12511974965242],[4.79795566665523,52.12523670240401],[4.798225693055763,52.12527657458764],[4.798386882795854,52.125300371236264],[4.798760742799215,52.125300547448454],[4.799051154180768,52.12528289623703],[4.799109818069667,52.12527933285652],[4.799140845223357,52.12527745624423],[4.79927266408056,52.1252477693745],[4.799320593865409,52.12516879549118],[4.799368812102355,52.12515667709558],[4.799663527593371,52.125082591086326],[4.800266402193974,52.125001328851205],[4.800618407446228,52.12495358229571],[4.801399013173509,52.1248476986922],[4.801630074063493,52.12485343915395],[4.801667591534127,52.124854371450574],[4.80211564100013,52.12496473189087],[4.802548806687637,52.12510563955012],[4.802681530895904,52.125176198492554],[4.802783539502028,52.125230444337944],[4.802835689652656,52.12525817061837],[4.803079908523574,52.125530994138494],[4.803115863545841,52.12574531548162],[4.803115957889777,52.125745918156575],[4.80313908324562,52.12588379443687],[4.803283269449264,52.126208361316635],[4.803499229864318,52.12641812676995],[4.803659966511591,52.12652018295131],[4.80373063118055,52.12656505099397],[4.804038886936153,52.12666207496268],[4.80469983712748,52.12680044251585],[4.805162962436662,52.12688559096811],[4.805584938624506,52.126994119633395],[4.805674296582473,52.127039150589056],[4.80595309355611,52.127179634865506],[4.806070530213418,52.12724975505794],[4.806260018092456,52.12736287893036],[4.80646154972898,52.12752697079152],[4.806568905780163,52.12761437901878],[4.806669970262403,52.127897158975685],[4.806752030047774,52.12798258195781],[4.806911539780993,52.12814861436884],[4.806991546536582,52.12824038171124],[4.80709254093988,52.1283562371563],[4.807379427511941,52.12851072089396],[4.807617838653547,52.128648216266434],[4.807625521381811,52.12865264923425],[4.807722556305883,52.12870860100233],[4.807747373105923,52.128722915247515],[4.807884497175156,52.12887345756268],[4.807905419378233,52.128896426224685],[4.807974215128008,52.12893061354546],[4.808015629271133,52.12895117512571],[4.808035631359146,52.129002317147496],[4.80806353628283,52.129073595511365],[4.808037582963419,52.12914917539325],[4.808020250368065,52.12919964871407],[4.808002477918206,52.12925137821526],[4.807853240496756,52.129471700192425],[4.807753847589319,52.12965594569381],[4.807739137817759,52.129683197448344],[4.807772689973927,52.12987419002945],[4.807785664717567,52.12994805559592],[4.807790357363671,52.12997472855904],[4.807943950389426,52.13026338291078],[4.8079788358186,52.13032912289855],[4.807978864210539,52.13032918595517],[4.808046296910241,52.13045629066153],[4.808194422755746,52.130710650432],[4.808276471473844,52.13089446565797],[4.808243862419765,52.13112968761645],[4.808273158372462,52.13131689306563],[4.808273169482235,52.131317162765036],[4.808279710768826,52.131471692401675],[4.80837999625186,52.13160531725691],[4.808577300428165,52.13169982516195],[4.80868766608125,52.13171607784933],[4.808766690283272,52.13172771860449],[4.808818501801053,52.131780211883374],[4.808791291640357,52.13188853859621],[4.808772073017913,52.13196508640117],[4.808742525189687,52.13200466017703],[4.808667793491361,52.13210473634578],[4.808664812036471,52.13218157050141],[4.808662987346704,52.132228857255896],[4.808570670843959,52.13235255787513],[4.808462811914725,52.13245497010009],[4.808431462734965,52.132484728874424],[4.808404105370345,52.13253442499393],[4.808350482915601,52.132631791249366],[4.808262129456741,52.13277639057105],[4.808236702033344,52.13281801576698],[4.808193769713316,52.132961615590695],[4.808190263110816,52.132991007637884],[4.808187101066363,52.13301748022414],[4.808228403159612,52.13305261994842],[4.808267798458754,52.13308613242983],[4.808031410917017,52.133548689081024],[4.80802123547627,52.13356859283076],[4.808002128520531,52.133678046696325],[4.808002121599647,52.13375855360672],[4.808002120633423,52.13388140376351],[4.808007765315524,52.13409714729914],[4.807958442427091,52.13427497849365],[4.807923136947155,52.13432473432981],[4.807839075868881,52.13444320783732],[4.807728725062372,52.13460995336426],[4.807683806930914,52.134677817982364],[4.807523678386898,52.13483881798691],[4.807480048911861,52.13502567409483],[4.807507253797374,52.135120722745775],[4.80752175785774,52.135171370389884],[4.807733375153612,52.135300815006055],[4.80775044607633,52.13531125322596],[4.808264828883794,52.135499159759775],[4.808492579482234,52.135580946079095],[4.808610576856618,52.13562331986742],[4.808697680929744,52.13568943254409],[4.808769279464517,52.13574377552811],[4.808815796877481,52.13577908440603],[4.808979070718807,52.136001218230405],[4.808999420598609,52.13620973532797],[4.808964590311989,52.136433738160896],[4.808963937365786,52.136437914452],[4.808846249610672,52.13669630418067],[4.808711673715464,52.13691136445918],[4.808644586447095,52.137103440347616],[4.808657354396114,52.13722736871962],[4.80879496739705,52.13740443610207],[4.808919455424745,52.13752916387284],[4.808987950977233,52.137597778153314],[4.809166467368359,52.13777140088208],[4.809316471769585,52.13786035457443],[4.809383791271741,52.13790027716798],[4.809432217764072,52.13795082106205],[4.809579486147315,52.138104583563276],[4.809766366274627,52.1382089791203],[4.809819909882769,52.138238893127195],[4.809845565060684,52.138270171633046],[4.809914736197391,52.13835452242331],[4.809946613301201,52.138462724988194],[4.809961949676599,52.13851482345608],[4.809961963934631,52.13851485049033],[4.80996218140623,52.138514977388624],[4.810127116588108,52.13861087902325],[4.810291336808366,52.13877009844586],[4.810604706022776,52.13892105862348],[4.81063192382482,52.13892867879111],[4.810997457094233,52.1390311141827],[4.811050231641227,52.13904491710038],[4.811271113651634,52.13910267500769],[4.811516021128477,52.13913813330936],[4.811807224688705,52.13920275877313],[4.812044743963588,52.13934238852615],[4.81233920862404,52.13958847230753],[4.812621291584636,52.139874096799545],[4.812828661178762,52.14002433688997],[4.812953831890293,52.14011502100335],[4.813135708695669,52.14026898336449],[4.813360368720153,52.14028862349354],[4.81344202364379,52.14029575280302],[4.813775481464517,52.14027069741473],[4.814050608776283,52.140203553822154],[4.814139777652913,52.140181795304414],[4.814274241611904,52.14014897659633],[4.814446922538207,52.14010683384132],[4.81496952853354,52.13992623667179],[4.815364415190957,52.139693057660544],[4.815975994006561,52.13942637642248],[4.816165284207989,52.13940214407018],[4.816379857642504,52.139374681185735],[4.816548169439068,52.13938941816986],[4.816725936701198,52.139404973621765],[4.816753412321139,52.13940738049416],[4.817082877240519,52.1396589605473],[4.817282306175223,52.14001243024752],[4.817391827604458,52.140232944142554],[4.817422619015137,52.14029494927473],[4.81748380352531,52.140418139667446],[4.817783329023827,52.14071817196908],[4.818069544340608,52.140933857461235],[4.818368555147355,52.14106844102674],[4.818708217407408,52.14121950624906],[4.819050251779834,52.14140820626199],[4.8193214114659,52.14154270716845],[4.8194534281049,52.141608183054416],[4.819777392361257,52.14183640468636],[4.819996944993399,52.14201919172086],[4.820278535947017,52.14216450833537],[4.820341974761034,52.1421972423936],[4.820630248684657,52.14227081099953],[4.820643123027476,52.14226933585982],[4.82072984972562,52.142259362059875],[4.820914041291997,52.14223818950112],[4.821210737755338,52.142133724130375],[4.821486643978232,52.142054693617],[4.821562738718333,52.14203289375943],[4.821992141019266,52.14199846906299],[4.822045428773068,52.14199419434451],[4.822706434712775,52.14215043619683],[4.82287610646534,52.14218454903095],[4.822931813812557,52.14219574508126],[4.823120123154983,52.14223359589326],[4.823438390539629,52.14224606486177],[4.823463092202445,52.142245032426125],[4.823580534643789,52.14224012880976],[4.824011395720954,52.142222116066456],[4.824461564962403,52.14221022489628],[4.824796787872203,52.14219875478226],[4.824804782279863,52.14219847831016],[4.825282851262897,52.14218212407495],[4.825899360254774,52.14218364796193],[4.825907493500901,52.14218394731633],[4.826302401326158,52.14219848992082],[4.826704268318916,52.14227081302804],[4.826847402167392,52.14229656990216],[4.827292160145353,52.142451767576034],[4.827645982103745,52.14256145677409],[4.82770529706217,52.142579840205116],[4.827820709398187,52.14265656194596],[4.827843919449501,52.142671987778435],[4.828081540795204,52.14282992119493],[4.82831924271618,52.14296053957206],[4.82854975754165,52.14302817055467],[4.828604253189797,52.14304416682806],[4.828656856800109,52.14305959685377],[4.828968888236502,52.143097026326615],[4.829096419236718,52.14314768463695],[4.829253722039178,52.14321015920185],[4.8293643581816,52.143220488463214],[4.829580436081132,52.14324064575034],[4.82980819413443,52.14325435941049],[4.830066418005265,52.14338703060673],[4.830297610655201,52.143500267123656],[4.830333345231399,52.14351777391286],[4.830725239110333,52.1436943344155],[4.830904590012191,52.143781538232304],[4.830971982950308,52.143814303152126],[4.831142688486672,52.14392830439079],[4.831360528993846,52.14402314906607],[4.831630728109111,52.144146327821005],[4.831723467781502,52.14418860426334],[4.831845682113474,52.144269039167824],[4.831888531150069,52.14429723888999],[4.831903505763208,52.14446287967019],[4.831903672761666,52.14446472302234],[4.831726997981084,52.145391627730675],[4.83146449181829,52.14639875124532],[4.831190804878215,52.14735946959955],[4.831006765429128,52.147962954505076],[4.83100675003575,52.14796301734933],[4.830933525641129,52.14820314034576],[4.830787568866707,52.148691783406775],[4.830694333453191,52.149003923552534],[4.830596611843297,52.149219905507955],[4.830532425181601,52.149361767780604],[4.830522373436681,52.14938398392817],[4.830640681835163,52.149552503097695],[4.830875953168415,52.149681136167246],[4.831253704342676,52.14982458753014],[4.831254169744959,52.149824760497445],[4.831254416328922,52.149824905469266],[4.831428358278691,52.14992613125787],[4.831453000077289,52.14994901423989],[4.831653934174925,52.15013561015094],[4.831718931755726,52.15023370691889],[4.831738178638648,52.15026275725258],[4.831760150427825,52.15029592798136],[4.831789852805239,52.150319607692616],[4.831928107054568,52.150429859563616],[4.832181652984683,52.15049368177694],[4.832631222605843,52.150535406425114],[4.833828420972258,52.1506106855613],[4.835703257149814,52.15071074739295],[4.837601729370448,52.150803591150606],[4.839348031900492,52.150904676958405],[4.839726408776283,52.15092746549749],[4.84082852934382,52.150993846376764],[4.842501336986238,52.15140379898011],[4.844153212506598,52.15175325826921],[4.844157205843138,52.15175410355492],[4.845903317684122,52.15213906148845],[4.847301474375268,52.15255667341121],[4.847505531995558,52.15259889832861],[4.847972890001275,52.152655161525814],[4.849055225611283,52.15278546009582],[4.849958144439776,52.152912181546675],[4.850163988627153,52.152941062651905],[4.851152963005632,52.153091050295714],[4.851322599960011,52.15312600261417],[4.852774116006773,52.1534250678556],[4.853295385999469,52.15353452994341],[4.854441903287431,52.15377528141669],[4.855821103877075,52.15406174066658],[4.855823071643283,52.154062153992825],[4.855934829421039,52.154085361175646],[4.856213758473919,52.154142621572966],[4.857284912833963,52.15436247730769],[4.857089670563107,52.15478669227439],[4.857085455742043,52.15479584119549],[4.857084300844326,52.154798343685385],[4.8570853217597,52.15479851005784],[4.857148241178196,52.15480860772276],[4.857338166428727,52.15483908551807],[4.857551645708305,52.1548290874899],[4.858812547018597,52.15469598248991],[4.860043741426024,52.15448050823224],[4.860516618009125,52.15439773639879],[4.862184307583134,52.154221470029185],[4.862599549670221,52.15419804243055],[4.862830068205869,52.15417017038497],[4.863058903677186,52.154142497139375],[4.863185017293882,52.15411943658204],[4.863433685896135,52.15407394640978],[4.863595258205041,52.15400275877819],[4.863612700982348,52.15394209465294],[4.863619540756154,52.15391832453522],[4.863587947602038,52.15386359965273],[4.863559233271133,52.15381384896431],[4.863352715977024,52.15372670050864],[4.863078894310843,52.153644591666286],[4.862895794852781,52.15354687755628],[4.862750743730984,52.153445674127994],[4.862737019779339,52.15337005921009],[4.862804567273512,52.15333440706017],[4.862884931586319,52.15330231718305],[4.862898496868438,52.15329690371305],[4.862967712162029,52.15338176225458],[4.863112846079722,52.15347593709493],[4.863412670123087,52.15358849611082],[4.863674342708673,52.15371352234535],[4.863772931662564,52.15378586448189],[4.863991158221399,52.15386771620537],[4.864326208268498,52.15396611104246],[4.864243522897932,52.15404663742681],[4.864362913858533,52.15408845781568],[4.864436302973685,52.154084270966024],[4.864509121796864,52.15408011749676],[4.864818388676877,52.15412811732194],[4.865080088132383,52.15425145076244],[4.865107069596223,52.154264620860985],[4.865552433456187,52.154481981263686],[4.865573181994507,52.154492103699965],[4.865588845057408,52.15449974990275],[4.865759996291398,52.15461539215327],[4.865884145227532,52.15475806040796],[4.865980308395191,52.15506745081015],[4.866116623794889,52.1557115461029],[4.866150640470863,52.156083578456524],[4.866206098682051,52.15619114110129],[4.866222203321286,52.15622236491843],[4.866260935699618,52.15643460085174],[4.866248550705798,52.156554204574334],[4.866241387951968,52.15662326437402],[4.866214273739131,52.15672524033789],[4.866207961699498,52.156748950005266],[4.86624002746364,52.15702407309335],[4.86633731665161,52.15722757040883],[4.8664007446956,52.15729975505797],[4.866516843207694,52.15737920078075],[4.866530298754548,52.15738201050831],[4.866612577047138,52.157399217204855],[4.866656821411829,52.15740846339597],[4.867099622813111,52.15755057614802],[4.867597713675073,52.15769995039601],[4.869046556007225,52.1580512390664],[4.870751606947638,52.15850193410754],[4.872494430885994,52.15896738374673],[4.874140887893763,52.159436037700225],[4.875865908740744,52.15993730314601],[4.877556278548697,52.16040609941057],[4.879127131613497,52.16084570281864],[4.880872870768668,52.16133266579827],[4.881261316197473,52.161441191007775],[4.881694751919107,52.16156229322256],[4.881751945928111,52.16160049482673],[4.88250171632268,52.162101103569555],[4.883811947125434,52.16289006383909],[4.884982740893056,52.16359387426465],[4.885427195467483,52.16386343841112],[4.885558007328809,52.16391530738986],[4.885738670760034,52.163986946089466],[4.885901604153646,52.1640392208129],[4.886158281712402,52.16412158092494],[4.886315643431611,52.16415989093125],[4.886550777617579,52.16416939138857],[4.886610806560634,52.164171821146674],[4.887943700975647,52.163589585309026],[4.88864924824596,52.1632694921421],[4.888909802642594,52.16315128504467],[4.890339670009388,52.16251888276869],[4.890967914433182,52.162249915929834],[4.891411774123711,52.162000115762766],[4.89167867419902,52.16184083580182],[4.891744071049435,52.161801814572826],[4.892559520160883,52.161803266998284],[4.892607380521311,52.16180162504459],[4.893173575044533,52.16178224557543],[4.893862995178497,52.161813774663585],[4.894827344878215,52.16183549967515],[4.897127105105449,52.161891136401145],[4.899163856741786,52.16194227036298],[4.901404982254518,52.162015557275524],[4.902309445154438,52.162042834771704],[4.903389013469775,52.162075389277284],[4.903915348499572,52.162057601437255],[4.904009554136745,52.162048432893506],[4.904377583713224,52.162012584845726],[4.904933572653793,52.16194464359272],[4.905510393480747,52.16184082354673],[4.906713807752177,52.16162074945713],[4.907115209099072,52.16153082179478],[4.907467752030219,52.16149250130867],[4.907483861718474,52.1614907601975],[4.90760978198356,52.16148545673155],[4.90791658423954,52.161472564962956],[4.908421486309607,52.16154455952218],[4.90978255769032,52.161922898114376],[4.91031636396955,52.16207128306425],[4.911668682652197,52.1624716570301],[4.911725206052597,52.16249437288153],[4.912021023772892,52.16261322693984],[4.912341425228044,52.16272940186459],[4.913171261224901,52.16306697662742],[4.914373956762564,52.16354058204558],[4.914453937848275,52.163560819977455],[4.914683022049871,52.16361878456584],[4.914893829944006,52.163653971757824],[4.91502439420473,52.163675759936496],[4.91550687425795,52.16379835387685],[4.91617332788184,52.163967690067665],[4.918185267217387,52.16448746431187],[4.920092310875421,52.164977847447204],[4.92220355184343,52.16552322017758],[4.924227333070602,52.16603928836893],[4.926061657309289,52.16651862043173],[4.927575130033464,52.16690679438901],[4.928350943926911,52.167096593519275],[4.928951129017107,52.166687165570934],[4.930587502423259,52.1651565538743],[4.93214154648913,52.16367223189664],[4.93337093748548,52.16251918977576],[4.934381866527512,52.1615989857746],[4.935141980680071,52.16093145506201],[4.935172493594404,52.16090716941249],[4.935380484151644,52.16074165121336],[4.935516636239954,52.16055510432315],[4.935623636009009,52.160350757258385],[4.935702776074815,52.16000951450663],[4.935915907410425,52.159381166820204],[4.936046580372126,52.159160614550395],[4.936250548485199,52.15890607982153],[4.93652160049196,52.158668087286365],[4.937060332737853,52.158231419157865],[4.93753808038119,52.157760523416556],[4.938268531374091,52.15712515342807],[4.938602790388968,52.156858401109986],[4.938654188491766,52.156817377317935],[4.93872871762213,52.15675325225933],[4.938845596620448,52.156652670774484],[4.938864362833244,52.15662911250527],[4.939008674883095,52.15644801231937],[4.939011161207556,52.156444893923016],[4.939173790101517,52.15623680908444],[4.939452952903601,52.15574352615896],[4.939696440937183,52.155311342822],[4.940112229568654,52.15457056017612],[4.940632212875172,52.153612776455255],[4.94094722872621,52.15302609590254],[4.941058803217554,52.152846568077386],[4.942835493857707,52.15334408262747],[4.942270727604292,52.1538505071669],[4.9404640824891,52.1554704187928],[4.940966633224106,52.155596193540795],[4.940969822429107,52.15559875820582],[4.941118497196261,52.15571837597805],[4.941358203433453,52.155688111351],[4.953114302705307,52.158412058646554],[4.953123314461926,52.15841106715932],[4.953277976466667,52.15839412726737],[4.958161202864141,52.15952937403498],[4.958161407023656,52.15952941971739],[4.958211217725276,52.159541006607775],[4.958214916038707,52.15954243117241],[4.959041139807968,52.159862808014644],[4.959219446436645,52.159853909506715],[4.966961549776331,52.162878393654374],[4.96740003174238,52.16299707707381],[4.97479824120179,52.16582714286312],[4.975260171768259,52.1659349224312],[4.978271098662963,52.167082942414766],[4.981917737353078,52.16852124293699],[4.98289911732203,52.168908279542606],[4.983983798906556,52.16927123146668],[4.984454524002513,52.169384343749606],[4.984790310144168,52.16938809554578],[4.985071359770442,52.16939122849165],[4.985717446595535,52.169511683025654],[4.986252420926067,52.16959241614519],[4.986696969067724,52.16993911853989],[4.986965927461642,52.17024281857848],[4.987267182041183,52.170384834439545],[4.987854800561908,52.17061995469197],[4.988629662275264,52.170837440792106],[4.988995140820383,52.170910856941845],[4.989013462098135,52.17091028958894],[4.989278660765599,52.170901989198676],[4.989538888140443,52.17082983870686],[4.98982096722059,52.17071185051893],[4.99026965690028,52.17052417635877],[4.990339866466234,52.170590694426465],[4.990412947618795,52.170606363521166],[4.990532833422649,52.170632076667],[4.991778278732069,52.17062445425661],[4.99274901056797,52.17090633010361],[4.993886358411094,52.17109999677324],[4.994074880661291,52.17110724895352],[4.994175973324426,52.17111114484742],[4.994725349304198,52.171132279018245],[4.996171258152562,52.162935815240594],[4.996284989274699,52.162243827841564],[4.996370409510794,52.16187714836226],[4.996436603608553,52.1615929869675],[4.996716831300595,52.16080577394067],[4.996844231110487,52.16053451482636],[4.996871959621366,52.16047546543256],[4.996997094265594,52.16020899824791],[4.997292009960733,52.15960862112467],[4.997779663975106,52.15880860848431],[4.998191408901334,52.15824035114249],[4.998614881164157,52.15771370051039],[4.99905593227582,52.15719946467173],[4.99973658525662,52.156555687875134],[5.000215345629702,52.15610855015049],[5.000244854403581,52.15608099079098],[5.00091085321276,52.155557940077536],[5.001787166500945,52.15493557199692],[5.002292562877388,52.15460466493343],[5.002932333223854,52.1542306643785],[5.003837941656655,52.15371455188445],[5.004158737245759,52.15352909225086],[5.004652958497204,52.153243357512416],[5.005022358198748,52.153030972187814],[5.005707579755888,52.15263699758057],[5.015146627681508,52.1472777578961],[5.021986629883559,52.143392914616825],[5.028124045721489,52.139829134432],[5.039422163237833,52.13326637725971],[5.046306716923355,52.13047097055534],[5.047000247786442,52.13019644674955],[5.047522558347195,52.12998969010239],[5.04881772900881,52.12942604264325],[5.049436950755287,52.12915158795118],[5.049437185232339,52.129151480766104],[5.049855358565388,52.12896613067669],[5.050452430480572,52.12866419380639],[5.050600964255441,52.128589073284004],[5.0517907474307,52.12794757063292],[5.053451300564287,52.12702259392303],[5.053892174520072,52.12730911170757],[5.054049437754814,52.12741131848624],[5.054057836918641,52.127536401729714],[5.05408373114826,52.127922052564045],[5.055039169709127,52.12782559070298],[5.056280496310261,52.12788750164155],[5.057431183952135,52.12810924999714],[5.057724850676751,52.128234258208714],[5.057854273049376,52.12828934773782],[5.058271835462748,52.12857195502043],[5.058469767039407,52.12885133346512],[5.058633415494485,52.12908236832864],[5.058668192267878,52.12913144096503],[5.058807826529578,52.12953629113023],[5.058926463100185,52.13041014095819],[5.059010362292721,52.131009192803724],[5.059082719296024,52.13150571296143],[5.059111471007319,52.13181672473293],[5.059120307381113,52.131834581551985],[5.059271795153649,52.13214045182781],[5.059452392560241,52.13250216447425],[5.059636147780767,52.13271445067793],[5.060308022386344,52.13284819553852],[5.060778040926081,52.13294175901727],[5.061625443868942,52.1328379250734],[5.061654059147448,52.13283145176871],[5.062347319807431,52.132674481424345],[5.063036975640209,52.132484259390665],[5.063630164862625,52.13228505939506],[5.064130208272245,52.13196314853338],[5.064726638407818,52.13156621535467],[5.065080433966212,52.1313649513309],[5.065314177988948,52.13126053728126],[5.065708623315028,52.131149262529696],[5.065899503609999,52.13113163572139],[5.066249126532934,52.13109934069209],[5.06683629454629,52.13106723154168],[5.066928099544407,52.13105714457802],[5.067210369463039,52.131026110905594],[5.067418356374584,52.1309730163524],[5.067590334739758,52.13092911750327],[5.067929405589622,52.13074213196337],[5.067949132427558,52.13072430816641],[5.068019234781694,52.13066094352581],[5.068177915965126,52.13051753736899],[5.068356302471477,52.130271127555574],[5.068362978986181,52.13025648613016],[5.068549638997905,52.12984696570503],[5.068572744232024,52.12966658449605],[5.06860860876751,52.129386488614955],[5.068652685570934,52.1290933732585],[5.068661772855522,52.12887572574838],[5.068784926525969,52.12856456014095],[5.06891962746288,52.128266071703024],[5.069095040842435,52.12795337495902],[5.069141862109852,52.12790596352006],[5.06946072391797,52.1275830380264],[5.070013211838196,52.12718764940295],[5.070650407733704,52.12675259664036],[5.07110069499126,52.12638417133635],[5.071436827988471,52.126089311422085],[5.071694260326248,52.12582345118008],[5.07198970887449,52.12544055993388],[5.072261736607834,52.124982052009564],[5.072469545655482,52.12459893450196],[5.072618792834161,52.12433643265087],[5.07281205389399,52.12401113168262],[5.073130753179142,52.1235311208464],[5.073300562773096,52.123263046335815],[5.073415761123114,52.12309855722027],[5.073499452678916,52.12297905919828],[5.073736371207091,52.12273981634814],[5.074180582065051,52.12234973779928],[5.074519685260567,52.122080151230946],[5.074785674757332,52.12182498460885],[5.075031276197645,52.121580423238235],[5.07525338112122,52.12140069283703],[5.075639132533433,52.12117784733242],[5.076349477878258,52.12073566748819],[5.078900337116693,52.11925483305832],[5.079172130408787,52.11911117726944],[5.079513934377519,52.11900336803492],[5.079975504982388,52.11892985358953],[5.08031726758234,52.11889563597708],[5.080723247940571,52.11887787057213],[5.081520470782726,52.11889426621105],[5.082195143841544,52.11891792553748],[5.0827790148974,52.11894161633275],[5.083348651833751,52.11887708593872],[5.085223627148643,52.11868696843608],[5.086751203540246,52.11855604875505],[5.088331272717759,52.118383951272165],[5.089093698992627,52.118281673324084],[5.089838359452563,52.11817401575844],[5.090504307799827,52.118068114924064],[5.091085602770518,52.118032221368715],[5.091555799736486,52.11799660380072],[5.092017230944118,52.117937377817846],[5.092668583783195,52.11772525258143],[5.09323825556053,52.11751320783207],[5.093729016016243,52.11719310759725],[5.094056229066757,52.116865862438125],[5.094348479331288,52.11651717398659],[5.09442175960083,52.11643427049291],[5.094745839827742,52.11606763453657],[5.094933899978017,52.11584221331888],[5.095143383079764,52.11559113006735],[5.095499960611877,52.115202722549284],[5.095940964826449,52.114913386376685],[5.096504693380823,52.114555538653335],[5.097547570589652,52.113861531277394],[5.099110263422653,52.11285111217175],[5.100830831526343,52.11168264149837],[5.102279416374938,52.110693537381174],[5.103511929701774,52.10988449264263],[5.104729801036064,52.109075399918],[5.105337377309447,52.1086476743974],[5.105620611166443,52.10843910028625],[5.105904025197698,52.108090087719525],[5.106149355924257,52.10774491148778],[5.107002341680969,52.106547315562224],[5.107221255080377,52.10636919802483],[5.108138267692912,52.10521303678002],[5.108993903367444,52.10496676347355],[5.109355943728722,52.104840660779914],[5.109668233425079,52.10468242447891],[5.109805843482286,52.104586333433524],[5.109992576976995,52.10445595145189],[5.110199975557711,52.10429993885658],[5.110415789983393,52.10413759109576],[5.110728373926452,52.103781615581624],[5.110958988498759,52.1034436929938],[5.111183824367989,52.103114474826135],[5.11135611415582,52.10276377771339],[5.11134745444578,52.102511328039895],[5.111338720343884,52.10225675700106],[5.11132440229846,52.10173148870442],[5.111333035067125,52.10136832865009],[5.111505483086349,52.10099067643018],[5.111590158603248,52.10075690633061],[5.111920059985385,52.10039899061446],[5.11239312657536,52.09989900992014],[5.113111417831894,52.09916001191591],[5.113668906590135,52.09857540194686],[5.114048467825245,52.09818164315152],[5.114191609687939,52.09815473183105],[5.114220749533639,52.09827501454842],[5.113265979428026,52.099280307669744],[5.112985791394194,52.099454923555086],[5.112585666131999,52.09988822337543],[5.112323040953291,52.10013450438259],[5.112109925703593,52.100415162765124],[5.111733255777742,52.100850204117926],[5.111604493952965,52.10202116340634],[5.111513728714735,52.10320456075367],[5.111169273143642,52.10366299045782],[5.110772072956452,52.104128881428316],[5.110182198316618,52.10458728996549],[5.109539923897818,52.104998951173776],[5.108266768416133,52.105306313145554],[5.106964108096146,52.10704184591068],[5.105997440687517,52.10839758477293],[5.105880548975165,52.108559369442254],[5.105527002275696,52.10885092466499],[5.105191334533871,52.10909363560264],[5.104087209125423,52.10980722958747],[5.103225652602887,52.110389947371175],[5.102552233587989,52.110832198520164],[5.101870577076838,52.11127985466193],[5.100839508390197,52.11200089315315],[5.099752896860822,52.11277038558088],[5.098788910099461,52.113444660961676],[5.098026577036167,52.11397308873563],[5.09701572627533,52.11468880434546],[5.096580553968905,52.11499761351145],[5.09625325410429,52.115229866443045],[5.095899712616098,52.115505088381475],[5.095642612004282,52.115751345547686],[5.095306678735225,52.11608560669517],[5.094909206181456,52.11655312381982],[5.094637351559492,52.1169237546032],[5.094362791417734,52.11729214899534],[5.094162646723439,52.11748877752985],[5.094058782421022,52.117590812279296],[5.093911920443204,52.11768824601521],[5.093690577727475,52.11783509922386],[5.093036349099349,52.118103110525546],[5.092564776066175,52.118192452044426],[5.092250587906643,52.118251976542794],[5.091692722919151,52.11833456446956],[5.090991910406863,52.11843335582601],[5.090962491721517,52.118776795643704],[5.097215278359274,52.12426182698177],[5.097365011783525,52.124257494220565],[5.097483212434701,52.12425406352675],[5.097519009986592,52.12425302793349],[5.097581887417946,52.1242937632465],[5.097741001180031,52.124396814980955],[5.097873314652126,52.12448713664567],[5.098065163557196,52.12461810412614],[5.097939365926204,52.12484305357183],[5.098126222395583,52.125055296377724],[5.099349424767841,52.12611662690531],[5.099914417376752,52.12661919410668],[5.100494044906663,52.12713477280372],[5.100669477581677,52.1271778921072],[5.101435271642718,52.12768470538801],[5.101454961741035,52.12769772728399],[5.101392675388195,52.1277482283777],[5.101390179808841,52.12775025362386],[5.101288448680159,52.12783271485988],[5.101959848941946,52.12842614705154],[5.103885092804271,52.12816759905247],[5.10445473827565,52.12807965173891],[5.104878189349765,52.127982642530434],[5.105296084160504,52.127858645490214],[5.105383581544987,52.12782519441258],[5.105611510334159,52.12773806056238],[5.106470418170689,52.12736963945174],[5.107148047862251,52.12707675760694],[5.107148487142421,52.12707656990137],[5.111828013001899,52.12505379497178],[5.111944952442776,52.12500159582479],[5.112923463748069,52.12456482813192],[5.11412118071016,52.123994620480026],[5.115493959545936,52.123331265666245],[5.116729445234787,52.12272713478699],[5.117935831379874,52.1221389411901],[5.118467108464253,52.12189547175535],[5.119054355819834,52.121626358505985],[5.120237305367815,52.121094254217766],[5.120734310688816,52.12086900560054],[5.12130906844498,52.12060850836997],[5.122112331818243,52.120268771325364],[5.122824923450462,52.11998107300955],[5.123946353387798,52.1209323743922],[5.124229863822853,52.12125601818331],[5.124378792203337,52.12138020947606],[5.124679612919161,52.121863989800474],[5.124947618460609,52.122335989471075],[5.125120645560921,52.12264074421468],[5.125669961984575,52.123473642414474],[5.12619291254356,52.12425394463467],[5.126619493228585,52.12493572968645],[5.127151159715699,52.1257522863313],[5.127624482969976,52.12648220248377],[5.128156263613967,52.12732570962215],[5.128740534586426,52.12825023027241],[5.128731946960809,52.12825285393398],[5.127716949992526,52.12856241100066],[5.127716847557517,52.12856244672741],[5.127131256433057,52.128741034372354],[5.127023241676202,52.12907026062906],[5.127808587854813,52.12980566283148],[5.128413810693911,52.13037237333992],[5.12935734998735,52.13053959365163],[5.130248423499924,52.13038649450859],[5.132092355333837,52.13288466627581],[5.133201271205177,52.13425591281083],[5.133603220844071,52.13475293277949],[5.134813252694015,52.1362059648808],[5.135669926540221,52.137216714288854],[5.135842107604377,52.13741985028284],[5.135848003195134,52.13762855502329],[5.138624778289993,52.14023758328455],[5.138537222952629,52.1403025617289],[5.1399342605357,52.141591624024635],[5.140925360588864,52.14266354513207],[5.141284974571264,52.142935058002884],[5.141931703748245,52.14365521767238],[5.142334495367695,52.1441037094402],[5.142720467344085,52.14448509664424],[5.143067630784136,52.144914290228236],[5.143220899108141,52.145103768170735],[5.143275969749223,52.14517185808341],[5.143286354451853,52.14516965052766],[5.143427951741509,52.14513959068396],[5.145161897993349,52.147160681453684],[5.145670814411664,52.14778104935277],[5.145805991736471,52.14795610603411],[5.145837432180188,52.14799682293661],[5.145907737810195,52.148083197304004],[5.146015816276281,52.14810644539754],[5.146051121658249,52.14810517833053],[5.14607023568003,52.14810448935684],[5.146267206385873,52.148097413616185],[5.148071781822577,52.15044777977825],[5.148194285747492,52.15059437000981],[5.148706599312313,52.15123130502509],[5.148790741796387,52.15131421823797],[5.148860814822644,52.151383252522855],[5.148872849810323,52.15139510498869],[5.14881487921861,52.15141287397673],[5.148586084458488,52.15148300316147],[5.148915762894529,52.1518251849438],[5.149160060525653,52.152078770012835],[5.149092242893522,52.15209891007614],[5.149081178938383,52.15210220431593],[5.149261480627624,52.152366589404856],[5.149357949863606,52.15251699070778],[5.1494679981068,52.15268860391026],[5.14972990197148,52.153070283725505],[5.149900741404618,52.15329918224089],[5.150320905050395,52.15386212442066],[5.150655719581967,52.15436050427103],[5.153100297425947,52.15689128196235],[5.153423142533283,52.15746153354078],[5.153760760594207,52.15800147453955],[5.154401035571194,52.15896220760903],[5.155233574846072,52.160191259289604],[5.15518693788122,52.16020586294159],[5.155119441639616,52.16022698677387],[5.155348862498725,52.16045666629202],[5.155579914126769,52.16068796638256],[5.162123886822354,52.170853906065204],[5.162264343817878,52.17085782282661],[5.1641074683792,52.17370964883425],[5.164093923970341,52.173714072268105],[5.16398184923675,52.173750701973844],[5.166730154373034,52.17816316595258],[5.167272206976585,52.1790333535167],[5.172673636442006,52.17873039290558],[5.177282490889858,52.178435899347924],[5.177317730199877,52.17837275894436],[5.177475312270074,52.17836229834008],[5.179602334163871,52.17822103653239],[5.180473248082154,52.178163181122514],[5.182745357428519,52.178053385531996],[5.185011486878079,52.17795083415451],[5.187497229887321,52.177825017559314],[5.188845241738209,52.177775608830395],[5.189722519924406,52.17775825833001],[5.189812919072102,52.17776075530171],[5.190523555537903,52.177780384105986],[5.1913918963704,52.177820582896956],[5.192096333631925,52.177887477370234],[5.192551658772961,52.17794827695859],[5.192692660485655,52.17796710526377],[5.194404742300068,52.18025930469007],[5.194577226648378,52.18030957688669],[5.196178209264779,52.18213394536504],[5.196178340241409,52.18213408938341],[5.208616873503191,52.196302284014884],[5.21343969311769,52.19157483744548],[5.213501204706785,52.191514529289286],[5.213369261460333,52.19002439469303],[5.213364624747013,52.189972069354546],[5.215959341923149,52.18804177238438],[5.214638064715269,52.183884636865656],[5.214631673863583,52.183695818695945],[5.214625965831526,52.183527062512894],[5.213963000731744,52.181521286392474]]]]}},{"type":"Feature","properties":{"id":9,"statcode":"WS15","geometry_g":"polygon","gag_id":"HHS van Delfland","hierarchie":"0","hierarch_1":null,"inspire_id":"NL.15.15_HHS van Delfland_p","sde_id":null,"land_code":"NL","inspire__1":"NL.15.15_HHS van Delfland_v","inspire__2":"NL.15.15_HHS van Delfland_l","wbh_code_o":"15","einde_leve":"1899/12/29","laatste_wi":"1899/12/29","admin_code":"15","waterschap":"HHS van Delfland","publiceren":"15","Aangemeld":1,"Actief":1,"KVK":50677969,"tnostatus":null,"CPT":27,"GMW":117,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[4.304576768186928,52.12710024291783],[4.30502720163772,52.12677054215673],[4.306171499100226,52.12593076639302],[4.306596371832489,52.12561895012739],[4.307312200162298,52.12509358581736],[4.308895862314458,52.123931231742546],[4.308986324232862,52.12386483276316],[4.309065207451052,52.12380693898544],[4.309123336635548,52.12376427096034],[4.309789890548546,52.12327524088189],[4.310178553290362,52.122990084761184],[4.310686493705755,52.12261746911463],[4.311366764935775,52.12211842346433],[4.312375940999375,52.121378065262995],[4.313737724779116,52.12037884128818],[4.315940699919265,52.118761601824886],[4.317245034520862,52.11780315926832],[4.317763383587454,52.11742225395836],[4.317774560806174,52.117414022853026],[4.318814280618311,52.11665062200917],[4.318983136777875,52.11652686807345],[4.319455664317351,52.11617945807125],[4.319574084755114,52.116092396658374],[4.321023754566061,52.11502832672363],[4.322258245377474,52.11412385968596],[4.322918306009459,52.113639552549664],[4.323277219551726,52.11337619919447],[4.323624470136211,52.11312140011904],[4.324126332279944,52.11274930714489],[4.324830284349242,52.11223114112764],[4.325624822617812,52.11164679062752],[4.325848692654528,52.111482136780474],[4.326099619995634,52.11129753752371],[4.326238125663167,52.111194024865135],[4.326493586903798,52.11100310251147],[4.326648636378004,52.11088893116335],[4.326777659501501,52.11079437156967],[4.32820529542506,52.10974909478584],[4.328502391334399,52.109531559984724],[4.328973913069788,52.10918630105709],[4.329121541776955,52.10907820273736],[4.329152501834955,52.10905553706073],[4.330280681562856,52.10930386422543],[4.330365469417333,52.1093245935932],[4.330388768487544,52.10933029004583],[4.330583789764352,52.109374412566595],[4.330812051098815,52.10942916150842],[4.331032396635139,52.10948283774713],[4.331224117419636,52.10953243967649],[4.33140956461127,52.1095817720725],[4.331561327660752,52.10962545339045],[4.331697798130026,52.10966427943971],[4.331868613512585,52.10971728050021],[4.332024222211817,52.10976778747218],[4.332209511440745,52.10982939299113],[4.33238169055271,52.10989016900621],[4.332594426755794,52.109968287171974],[4.33274500367459,52.1100254662866],[4.332961813936572,52.11010873386725],[4.333379527272076,52.11027389147218],[4.333531715790301,52.11033617694465],[4.333785000684882,52.11043893550242],[4.334058756309321,52.11054614419808],[4.334346265838149,52.11066121162018],[4.334661320508621,52.11078844951281],[4.334968292728372,52.11091168546768],[4.335104845684027,52.110967637032246],[4.335256048070728,52.11102860179421],[4.33536813986653,52.11107379737475],[4.335688260026641,52.11120601513962],[4.336113039704526,52.11137543171953],[4.336208018226226,52.11141268973393],[4.336476822237999,52.111523292130215],[4.336701697042363,52.111611575548835],[4.336958202441203,52.11171551091539],[4.337282981441221,52.11184562918044],[4.337449633685188,52.1119142117276],[4.337461923724,52.11191917593335],[4.337832808937267,52.11206455154918],[4.337846847790837,52.11207002565647],[4.338111623345809,52.112166308142534],[4.338171791409256,52.11218837406389],[4.338290164498123,52.11222993736939],[4.33838009629165,52.11226011778419],[4.338472235949895,52.112290037324584],[4.338584530956313,52.11232491533667],[4.338599010844917,52.11232927149308],[4.338883294746061,52.11241123694607],[4.339069814809632,52.112462434520666],[4.339241595835467,52.112506954348305],[4.339391198305711,52.1125427780384],[4.33951961063899,52.11257176702001],[4.339788898102183,52.11262800182991],[4.339961744984072,52.112661548642784],[4.340266408761397,52.1127147285583],[4.340538439119385,52.11275715607662],[4.340805011654248,52.11279226630424],[4.341055668541114,52.11282179926213],[4.341316624221749,52.1128462267191],[4.341582529074074,52.11286667957025],[4.34177751384636,52.112878595633134],[4.342120364090576,52.11289288382658],[4.342440134211056,52.112898782328344],[4.342712670822759,52.11289669755175],[4.343064058300856,52.112887103013485],[4.343452089040736,52.11286953354554],[4.343778748678158,52.11284692351987],[4.344062178578964,52.112821162484686],[4.344346183779269,52.1127898787457],[4.344652101279864,52.11274977429981],[4.344931777414276,52.11270725822043],[4.345122495291955,52.11267470199144],[4.34528195067834,52.112646897403735],[4.345603509190152,52.11258133089518],[4.345829147708996,52.112529386159004],[4.346223645534726,52.11243137058606],[4.346392138424185,52.11238587017839],[4.346446026297673,52.112369356503365],[4.346642332086114,52.11230919991532],[4.346854372211452,52.11223796763423],[4.347057812578475,52.112163220047556],[4.347285076839331,52.11207173869186],[4.347539406686565,52.11195946398841],[4.347709525675545,52.111877249391064],[4.347835860255754,52.11181123256541],[4.347932339358566,52.1117608164549],[4.348081756821713,52.11167776625193],[4.348384091897485,52.11150434162681],[4.348649880843263,52.11135084387857],[4.348932121258683,52.11118855033642],[4.349150836954199,52.11106284231181],[4.349389379175545,52.11092572747326],[4.349691676035708,52.11075149561514],[4.349943080931045,52.11060658646957],[4.3502007877626,52.11045923518775],[4.350260392522454,52.11042475685368],[4.350563255234348,52.110249563284626],[4.350893101881646,52.11005779831429],[4.351134737579227,52.10991530680999],[4.351413512144907,52.109746814331615],[4.351548013430637,52.10966447815349],[4.352002649469806,52.109388394570956],[4.352355301312507,52.10917448996608],[4.352747640455418,52.108935407569504],[4.353057648096127,52.108746460233206],[4.353313997350159,52.1085901771911],[4.353335341934432,52.10857716458369],[4.353581161403108,52.10842729908499],[4.353642048165127,52.108390178656315],[4.353872447049159,52.10824971339408],[4.354304876620321,52.10798607159246],[4.35468305835009,52.107755502253404],[4.355197797485505,52.10743517223424],[4.355239316077445,52.10740923227275],[4.355674997058643,52.10713702083916],[4.356004103813278,52.10693139097853],[4.35622135285025,52.10679578585081],[4.356457690394212,52.10664826472133],[4.356970498592946,52.10633041710341],[4.357272985880142,52.10614292655371],[4.357551735704022,52.10596865151858],[4.357878102135422,52.105763742206825],[4.358799550536961,52.105184033527436],[4.359303301811672,52.10486082234291],[4.359572592116725,52.10468200353707],[4.359817142600397,52.10451715884959],[4.359995668218467,52.10439325859943],[4.360162211824026,52.1042776733348],[4.360204169864858,52.104248552601355],[4.36064247530424,52.103933116883645],[4.360903707289482,52.10374006151169],[4.36091574746276,52.10373093771459],[4.361117085505685,52.1035783782048],[4.361249140019174,52.10347703389966],[4.361317365942798,52.10342413996239],[4.361419167268568,52.103345216771],[4.361572417757026,52.10322446314592],[4.361957090947077,52.1029128219363],[4.36218384313014,52.10272556084649],[4.362332007810948,52.10260718805209],[4.36240355324418,52.10255002848804],[4.362513893244271,52.10246858627892],[4.36270187038072,52.10233512833598],[4.362831489006393,52.102242626595704],[4.362946805153245,52.1021627606923],[4.363060353475774,52.10208791924248],[4.363144148797435,52.102032688563135],[4.363300116235466,52.10193597574345],[4.363387596109621,52.10188312023533],[4.363839814208448,52.10159457165431],[4.363855405775,52.101584623575604],[4.363897718915881,52.10156049601367],[4.363954407587451,52.10152999535279],[4.364088067376248,52.101458597577235],[4.364403595766555,52.101287113829166],[4.364546562795326,52.10120598071792],[4.364627520251858,52.10115897324072],[4.364713288559361,52.101107745033524],[4.36480691444981,52.10105003580575],[4.364863814250429,52.10101363011553],[4.364892663305579,52.100995172299136],[4.364976007092125,52.100940221357],[4.365064984898122,52.10087964289439],[4.365091161036518,52.10086125982704],[4.365137894115925,52.100828440396036],[4.36514857489102,52.100820735374434],[4.36521366404621,52.10077378585533],[4.36531608234826,52.10069705791746],[4.365419937478775,52.1006163927436],[4.365426503084474,52.10061113737946],[4.365502444643167,52.10055034670723],[4.365625154551782,52.10045610926437],[4.366090632036131,52.100058458824904],[4.366308916776195,52.09986630673371],[4.366366847394559,52.099816853271555],[4.366516196339528,52.0996893593882],[4.366732408414538,52.09950498081733],[4.366900275678474,52.099361866342946],[4.366954371509613,52.09931577081011],[4.367116412636582,52.09917769765954],[4.367303752832234,52.09901797027501],[4.367610175749408,52.09875659386707],[4.367826770595146,52.09857186427219],[4.367891812829654,52.09851639795937],[4.36810518377423,52.098334440835785],[4.368293867931656,52.098173643085424],[4.368632553714991,52.097884937975195],[4.368796398501589,52.0977452646736],[4.369029152447838,52.09754684531218],[4.369263819492092,52.09734661553037],[4.369570410917667,52.09708522206606],[4.369735302656759,52.096945202364005],[4.369836366435907,52.09686261894458],[4.369921593597172,52.09679554705782],[4.36999059761221,52.09674353486895],[4.370065076752123,52.09668917352164],[4.370153881243155,52.09662700148165],[4.370213618516321,52.09658648295831],[4.370269818686195,52.09655010461033],[4.370342086612547,52.09650438365689],[4.370407447657327,52.09646440343637],[4.370471568283617,52.096426659636904],[4.370528139381737,52.09639378274161],[4.37058713196584,52.09636044042126],[4.37063846265261,52.09633183820732],[4.370704723852846,52.09629582867445],[4.37076051606665,52.0962658698513],[4.370823466166144,52.096232404242876],[4.370881255953028,52.09620200596699],[4.370939476397374,52.09617147025503],[4.371020161867517,52.096131040269405],[4.37112521417257,52.096075694233505],[4.37118752411869,52.09604282335449],[4.371310838109581,52.09597602935935],[4.371417703445758,52.09591645695902],[4.371488480746884,52.09587560958159],[4.371602262150121,52.09580741180494],[4.371687643086217,52.09575347416696],[4.371759233560935,52.09570655192921],[4.371837540952574,52.09565361569636],[4.371911378196576,52.09560150561069],[4.371988255045169,52.09554464690225],[4.37207217489322,52.09548013476508],[4.372142139648233,52.09542372338182],[4.372199485666837,52.095375436869666],[4.372259680093345,52.095323045483084],[4.372328101057651,52.09526139380896],[4.372397927222804,52.095195756052775],[4.372479567802684,52.095113041806],[4.372538813113836,52.09505048226007],[4.37258935969807,52.09499553757201],[4.372635181127667,52.09494417370537],[4.372674796249028,52.09489645072373],[4.372687238576558,52.09488161153489],[4.372412840447049,52.09467829672774],[4.372459205201801,52.094654557866306],[4.372510457947274,52.09463619492249],[4.372598497597811,52.09462906803664],[4.372835105721563,52.09470140655183],[4.372836362624258,52.09469984615725],[4.372904312294292,52.094615533358635],[4.373010322224503,52.09448399639944],[4.373100267166936,52.09437238912931],[4.373155729816733,52.094303569406854],[4.373224161777517,52.094218657438326],[4.373319199117617,52.09410072986547],[4.373382374820802,52.09402233968062],[4.373461252632801,52.093924461448076],[4.373550693726443,52.09381347870788],[4.373602196819439,52.093749569367255],[4.373689022977393,52.093641829602916],[4.373838844194396,52.09345591801628],[4.37388413146869,52.09339972128373],[4.373946661655522,52.093322101866946],[4.374005301574448,52.09324922463179],[4.374112233159527,52.09311620430018],[4.37415157474148,52.09306720838256],[4.374189069146916,52.09302051294463],[4.374235507521795,52.09296268015453],[4.374283937803424,52.0929025903427],[4.374324417998086,52.0928523385549],[4.374355316704374,52.092813983556916],[4.374376659548901,52.09278749141967],[4.37440814523716,52.092748408879125],[4.374455475281612,52.09268958323137],[4.374540016603226,52.092584540475166],[4.374592567223702,52.092519292311394],[4.374637205237033,52.092463907679246],[4.374676229144775,52.09241548503013],[4.374730891981121,52.09234774352891],[4.374769612295248,52.09229970115667],[4.37480481174776,52.09225608329164],[4.374835926140735,52.09221738216182],[4.374874222128505,52.092169701947775],[4.374925438980061,52.09210582732833],[4.374957393495081,52.09206597564721],[4.374985386482694,52.092031065139615],[4.375014975690635,52.09199332702867],[4.375047913910649,52.09194991618457],[4.375084930452272,52.09190116875046],[4.375130193517277,52.09184171115986],[4.375161457359701,52.09179863825974],[4.375189224611662,52.09175859954986],[4.375205475540896,52.09173614617501],[4.375230116304511,52.09170116457779],[4.375252111087635,52.09166993458141],[4.375282844623894,52.09162545846489],[4.375320976181957,52.09156752516237],[4.375352652060776,52.0915193825666],[4.375381030467329,52.09147605202946],[4.375412021234584,52.091426451871975],[4.375451829349701,52.09135986788117],[4.375491584207158,52.09129337510371],[4.37551990681462,52.0912452746868],[4.375554715837129,52.091181498940685],[4.375585359785297,52.091124570925416],[4.375609672017323,52.09108079734605],[4.375649874343983,52.09100243707143],[4.375680268554056,52.09094092718035],[4.375707587320389,52.0908856415793],[4.375728829744645,52.09084190095251],[4.375758157053445,52.09077548667581],[4.375793082513266,52.09069620916616],[4.375818727129603,52.09063718608014],[4.37584095426489,52.09058099564072],[4.375862327274922,52.090526694468366],[4.375892243341629,52.090450682655096],[4.375925110581933,52.09036496147036],[4.37596033652027,52.09027256308618],[4.37599825678052,52.09017264724655],[4.376039588010666,52.090062752718204],[4.376076690242063,52.08996589226016],[4.376119582601586,52.08985399045218],[4.376126709115508,52.08983251393287],[4.376137112462453,52.089800994662944],[4.376144613869364,52.08977881305455],[4.376159525848856,52.08973369041649],[4.376170514123765,52.089700500680564],[4.376178815933322,52.089681769481494],[4.376194801578845,52.08964846890983],[4.376211454790659,52.08961339341482],[4.376229625706211,52.08957637501082],[4.376243619256015,52.089547988506695],[4.37627034079087,52.089494136728895],[4.37629510757738,52.08944619438233],[4.376313749568686,52.08940640521529],[4.376343665331623,52.089342732874805],[4.376369869547831,52.089290775934764],[4.37640568114376,52.08922080547813],[4.376425796003226,52.089182791596905],[4.376465690181143,52.08911275995956],[4.376493075080703,52.08906575327063],[4.376545264822319,52.088978585062414],[4.376560611298571,52.08895294626266],[4.376652199110095,52.088747731984505],[4.376733348377194,52.08856590284325],[4.376753423190444,52.08853570597629],[4.376774176915606,52.088504973811254],[4.376806066665866,52.08845837151148],[4.376832750662014,52.08841981344202],[4.376864002222288,52.08837594179498],[4.376927154157345,52.08828782561689],[4.376966284080372,52.08823404949285],[4.377017725631439,52.0881630586954],[4.377248162057687,52.08784599573651],[4.377296071622034,52.08778030031401],[4.37730135107128,52.08777324723371],[4.377471651515767,52.087567948194604],[4.377577842702518,52.087422384646416],[4.377732969150615,52.087209426350974],[4.377846815207576,52.08705323705373],[4.377974580308072,52.0868777891557],[4.378047414353215,52.08677638201093],[4.37811927791641,52.08667632559279],[4.378259277317417,52.08647589756819],[4.378486476911458,52.086169074907666],[4.378588518137018,52.086041343438794],[4.378699491965354,52.08590232579614],[4.378804616015231,52.0857645847148],[4.378823977855413,52.08573871122167],[4.378894281901395,52.08564341035928],[4.378937074185631,52.08558476252176],[4.378984121279208,52.085520278796984],[4.37902026162062,52.08547074691869],[4.379060509121828,52.085415586427914],[4.379090794112761,52.08537407712768],[4.379125241927695,52.08532686508654],[4.379160191145377,52.08527896070533],[4.37918883308442,52.08523977976322],[4.379203195468732,52.085220195935825],[4.379355381409692,52.084893331555435],[4.379380567270129,52.08485812724267],[4.379400607874483,52.08483104239934],[4.379430723199107,52.084789778748565],[4.37947375598735,52.08473081457641],[4.379514891686853,52.08467444985888],[4.379551217105817,52.084624676708174],[4.379602430614915,52.08455450170564],[4.379641750332869,52.0845006247513],[4.379694834861567,52.084427887766104],[4.379719946841341,52.0843934782439],[4.379748181602183,52.08435574445115],[4.379782251986621,52.084314210708726],[4.379836652797237,52.08424753246703],[4.379893796719249,52.08417831498925],[4.379936364406959,52.08412673263556],[4.38009224198251,52.083938884735346],[4.380185908887398,52.08382754750415],[4.380312888252848,52.08367224469475],[4.38041369584446,52.083555984999705],[4.380504540983066,52.08345637515147],[4.380578684378821,52.083377966076256],[4.380673794455509,52.08328226663419],[4.380738991953765,52.0832172855723],[4.380816211991585,52.083145925448626],[4.380894107568216,52.08307396970427],[4.380970652778112,52.083006123667566],[4.381138285450796,52.08286350402184],[4.381243409367756,52.08278089977303],[4.381367889525388,52.08268362221583],[4.38149604516349,52.08258968101973],[4.381657574074967,52.082474340294986],[4.381793633692095,52.08237927523306],[4.381858056943354,52.08233523676714],[4.38188617894583,52.082316011803556],[4.381901193282671,52.08230575442817],[4.38191767152623,52.082294498318404],[4.382193620963898,52.08239017759564],[4.382333610305854,52.08247925065525],[4.382389891291569,52.08251506131728],[4.382463039450107,52.08256354592904],[4.382687538278623,52.082710387270424],[4.38271383751599,52.08272788312014],[4.382800077202169,52.082785558533125],[4.382935601407466,52.08287606693376],[4.382952854571124,52.08288773740151],[4.383207521114116,52.083048564959],[4.383442420033306,52.083196908242826],[4.383508188777896,52.08323969615167],[4.383767532045074,52.08339033413621],[4.383821052254939,52.0834208631359],[4.3838254676082,52.08342344721171],[4.383858605799835,52.08344264685016],[4.383878296553084,52.08345409613956],[4.383979781385422,52.08351287933027],[4.384091224335503,52.083577253637166],[4.384128659635636,52.083597945935715],[4.384202383170742,52.08363869692181],[4.384225094302526,52.08365125049606],[4.38438180361833,52.08373171563208],[4.384451371779713,52.083765331875625],[4.384517967108829,52.08379814256838],[4.384521552187157,52.08379988810437],[4.38455786215987,52.08381729702901],[4.384649900579634,52.083861216551355],[4.384866957647438,52.083958958238895],[4.384901853954508,52.08397441977889],[4.385130332397322,52.08407487650676],[4.385204654345921,52.08410598983887],[4.385207955258895,52.08410713609234],[4.385210382695065,52.084107935148296],[4.385212918844229,52.08410870097181],[4.385214805106644,52.08410923385693],[4.385229014251997,52.08411198564857],[4.385361114822443,52.084139807737806],[4.385390161717587,52.08414604021259],[4.385403571471192,52.08415034920838],[4.385413580668727,52.08415437761182],[4.38546892764199,52.08418492946685],[4.385619159120005,52.084261328930374],[4.385656013443554,52.084280070656526],[4.385840950418988,52.0843741892533],[4.385964760586712,52.08443674057965],[4.386126543607393,52.08451998169869],[4.386193512958108,52.08455443862389],[4.386469053063103,52.08469369188832],[4.38668164049231,52.08480335787427],[4.386834494291846,52.08487933667928],[4.386977242281249,52.08495339762283],[4.387177352105534,52.08505532993671],[4.387350716934198,52.08514445989541],[4.387363344463687,52.085150951656686],[4.387549361809382,52.08524457691529],[4.387614672086231,52.085278417602865],[4.387626406377158,52.0852836199805],[4.387636693899195,52.08528905547463],[4.387650971502278,52.08529542637144],[4.387667350195385,52.08530055578184],[4.387685662919512,52.085304410827675],[4.387702040547325,52.085307172620446],[4.387721724903146,52.085309260445705],[4.387742803074578,52.08530969809255],[4.387761034128426,52.08530715343225],[4.387766199304561,52.08530643230736],[4.387773066228113,52.08530379665626],[4.387789102298638,52.085299186665864],[4.387806725810591,52.08528935426249],[4.38782814311662,52.08527755316274],[4.387843511772056,52.08526866071741],[4.387887679742476,52.08524310759137],[4.38797711734412,52.085192709946604],[4.388090910713052,52.08512396891315],[4.388293228882225,52.085007826149166],[4.388471967966153,52.08490173023648],[4.38861696679186,52.084818973843404],[4.388692711289088,52.084774573687056],[4.388760775264083,52.08473637887102],[4.388861870108411,52.08467689655365],[4.388941301260375,52.08463039896643],[4.388961560652098,52.084619459750535],[4.388979795067872,52.08461053840212],[4.389003935250198,52.084602552457035],[4.389033786294575,52.08459776269742],[4.389057064651401,52.08459701157561],[4.389081208438728,52.08459945424672],[4.389102561908935,52.08460297078999],[4.389106300833786,52.08460358671901],[4.389133956787212,52.08461281857209],[4.38928702896473,52.08468308914936],[4.389501111093859,52.08478014623399],[4.389693088273734,52.08486718135621],[4.389912200529584,52.084967554815194],[4.390026813167475,52.08501994414358],[4.390140082845631,52.085071718859],[4.390243215135886,52.08511917675544],[4.39025012285212,52.08512229582164],[4.390507363306586,52.08523843496758],[4.390524778210589,52.08524441677473],[4.390544702097571,52.0852489204973],[4.390564001910128,52.085251245489815],[4.390582443439511,52.08525221133177],[4.390598641099835,52.08525159776945],[4.390613352961428,52.08524943368637],[4.390626943554933,52.08524586059066],[4.390666392094277,52.08522956884427],[4.390794373944197,52.08514274235321],[4.391516281396672,52.0845809539875],[4.391540541061774,52.08456207432638],[4.391724822989983,52.08465698884209],[4.391740906268459,52.08466124149583],[4.391757121969728,52.08466315013487],[4.391933105668997,52.08467132324596],[4.392114391980395,52.084679742216295],[4.392157339947723,52.084681737210936],[4.392170949728881,52.084683059303075],[4.392202698147579,52.08469127961147],[4.392233334643531,52.08470376910592],[4.392260100889936,52.084721216397114],[4.392299752403179,52.08475288010925],[4.392407523295485,52.08485464225997],[4.392472111406566,52.08491597302553],[4.392553981682294,52.084993205777906],[4.392628696623,52.08505300307976],[4.392630424044531,52.08505438572697],[4.392660909682819,52.08507433169127],[4.392673342652221,52.085078648687855],[4.392684812763799,52.08508263216906],[4.392703163244003,52.08508900356508],[4.392712596132978,52.08509024809698],[4.392746761973521,52.085094756582635],[4.392810901483982,52.085098143632635],[4.393009290903129,52.08510861741527],[4.393014585062544,52.085072749853154],[4.393029388379238,52.08501461051791],[4.393044867449984,52.08497857989465],[4.39306889517172,52.084942612399544],[4.393115067537905,52.08490156438019],[4.393190826993211,52.08484946722672],[4.393225214052366,52.084826815633],[4.393544616101815,52.0846187469082],[4.393819293276682,52.084427729239586],[4.393950488393604,52.084336492360855],[4.394062789987322,52.08425839386874],[4.39415366712394,52.08419519493112],[4.394233167397499,52.084139906220436],[4.394205002345287,52.084116113311644],[4.393953364343688,52.08390353303912],[4.393720087364642,52.08370646136904],[4.393604994799399,52.083602274659654],[4.393589964810419,52.08356296653341],[4.393591370561285,52.08349968951324],[4.393609600592916,52.08345011818128],[4.393662010247803,52.08338763075099],[4.393696517784962,52.08336455128112],[4.393743868606159,52.08333288089366],[4.393767419543331,52.083316342632294],[4.393799406344457,52.08329573532469],[4.393826120730765,52.083278523506884],[4.393872622133216,52.08324856543071],[4.393896473878037,52.08323437660826],[4.394033239562136,52.083153021946494],[4.394039804233077,52.08314911688933],[4.394063972321274,52.08313578911278],[4.394243502851599,52.08303678502677],[4.394286882163244,52.083010344693506],[4.394590030067056,52.082825571348216],[4.394778527607905,52.08271225121044],[4.395091270180125,52.0825330629265],[4.395387226462904,52.082363534624214],[4.395693759229823,52.08218730367952],[4.396260232224357,52.08186240311625],[4.396942773979837,52.08147112631309],[4.397106061180171,52.08137578898722],[4.397106093125189,52.08137572993075],[4.39736978577217,52.08124825930628],[4.397590689597305,52.08112328263581],[4.397760974009115,52.081025705686635],[4.397788917923325,52.08100079376705],[4.39784565664367,52.08091005636607],[4.397850906249088,52.08090166192761],[4.397914523271425,52.08080922137446],[4.397915620609765,52.08080762791659],[4.397915816750917,52.08080713698704],[4.397931904356273,52.08076696169203],[4.397936987898469,52.08075426659918],[4.397939469196377,52.08073548144254],[4.397940723958488,52.080725978422635],[4.397943338431298,52.08070618496198],[4.397940807657611,52.08068809029905],[4.397934413060054,52.080642384316576],[4.397934106987934,52.08064019391708],[4.397932967309601,52.080636116099924],[4.397915131041141,52.08057230985245],[4.397902082069364,52.08051494279264],[4.397898787189217,52.080477374161234],[4.397902213524471,52.080453261294544],[4.397916968599985,52.080413105373694],[4.397945191923152,52.08035159320638],[4.397969408449804,52.0803072579037],[4.397973833028137,52.08029915675309],[4.398052290577061,52.08015551120046],[4.398363368205612,52.080238569396435],[4.398406984385939,52.080250214331144],[4.398448880463248,52.08026140077803],[4.398457346325583,52.08024853809269],[4.398462027938188,52.08021012676133],[4.398504661159085,52.08018175866443],[4.398513766463516,52.08016900650725],[4.398564266827663,52.08018172306282],[4.399175726865733,52.07963223512265],[4.399416858341685,52.079414558765855],[4.399565493494098,52.07929012133029],[4.399724145927451,52.079172223286115],[4.399783584203403,52.079128028183405],[4.400086654395107,52.07891386541102],[4.400110688950942,52.07889688231574],[4.400173703925683,52.078899216904524],[4.400221248668553,52.078900978738],[4.40049478884321,52.07891111315104],[4.400624565081462,52.078915921114294],[4.400846541558914,52.0789170783803],[4.401107261753467,52.07891078881287],[4.401144594017655,52.078908139483865],[4.401226338370737,52.07889337659292],[4.401306597896711,52.078860925105374],[4.401602042724265,52.07870712515098],[4.401775254187482,52.07861194533919],[4.401818985105894,52.07859040220451],[4.401853477053883,52.078568463596085],[4.401879682799544,52.078544600435656],[4.401897292675802,52.078520950328986],[4.401907920935569,52.0784915844035],[4.401916370795901,52.0784536233225],[4.401914164796689,52.0784117089301],[4.402358246419675,52.07839549464767],[4.402387403083086,52.07839429117553],[4.40309443241742,52.07836511943501],[4.403309170360216,52.07835572819727],[4.403365141571787,52.078353280545805],[4.403398284775196,52.07835183056423],[4.403400835085666,52.07834511938458],[4.403436808775909,52.07825045411291],[4.403438578636162,52.07824579750602],[4.403442226779949,52.07823619756159],[4.403453829295064,52.0782179378798],[4.403468505525829,52.07820153753659],[4.403479545992752,52.07818906632281],[4.403486263151746,52.07818140657468],[4.403645846730127,52.078036562316186],[4.403657418353493,52.07802633638165],[4.403829901213494,52.07787392686755],[4.403838521069922,52.07786631084383],[4.403872429258317,52.077836348034566],[4.403904070134388,52.077808387834196],[4.404067044054464,52.07766428140609],[4.404090462304421,52.07765200869274],[4.404766104870983,52.07729790890006],[4.404892133681064,52.077227440836346],[4.405033255893481,52.077133604011046],[4.40518980224075,52.07702298169262],[4.405856922537161,52.07651835953326],[4.406275662897333,52.07620160989556],[4.407269831458213,52.075485285025934],[4.408160404128914,52.0748246330745],[4.408761730703946,52.074380395247964],[4.40939710659284,52.073908957877926],[4.409994161571754,52.07347189444838],[4.410275844412079,52.073276168978296],[4.410642020264619,52.073015923612274],[4.410978176878797,52.07279091544354],[4.411300429804369,52.07256052742949],[4.411630263431346,52.07231840735435],[4.411876336701895,52.0721103681586],[4.411912065119769,52.072080162856345],[4.412059301204456,52.0719556829952],[4.412145430678359,52.0718684620148],[4.41214653588712,52.07186734398923],[4.412148555462057,52.071865297816146],[4.412151325647273,52.07186214057026],[4.412237833201202,52.071774889394185],[4.412283643124434,52.07172868497756],[4.412316632599588,52.07169508975463],[4.412485547064727,52.07152307807646],[4.412664350397971,52.07132591781378],[4.412872445347935,52.071093054055005],[4.413084380257903,52.07085656331576],[4.413125061526134,52.07081296601473],[4.413309321009416,52.070615496641786],[4.413442331017361,52.07048138931854],[4.413583654245983,52.07033588107464],[4.413669886332446,52.07024131614194],[4.41390095243913,52.06998791984561],[4.413918884982309,52.06996749305083],[4.41392501106546,52.06996051456228],[4.414038220745608,52.069831546281875],[4.414123494831045,52.06973909262305],[4.414225719851914,52.06962826234826],[4.414256518469838,52.06959587454199],[4.414386869796206,52.0694588004366],[4.414534808237129,52.069300554888414],[4.414687395707119,52.06914310257708],[4.414848509533974,52.06897715429175],[4.415085463682193,52.06873006216883],[4.415279759225495,52.06853978525231],[4.415555832374965,52.06828030501063],[4.415687996620477,52.06815227349902],[4.415808083227837,52.06803098259304],[4.415908121453665,52.06792954392489],[4.415985181348717,52.06784991088631],[4.416049353202843,52.06778011296664],[4.416066687415772,52.06776116134137],[4.416130399409791,52.067691506101674],[4.416162874175702,52.0676568260388],[4.416217416727732,52.06759857992821],[4.416290803955313,52.06751473671541],[4.416363886601874,52.06742811346497],[4.416436602313143,52.067341113219676],[4.416489379170202,52.067277968020925],[4.416492400029555,52.06727438847685],[4.416567864384189,52.06718497128885],[4.416641559915264,52.067095593412326],[4.416717586312187,52.06699986985227],[4.41672491243707,52.06699064586165],[4.416796155560543,52.06689461408806],[4.41689449155828,52.066759803814826],[4.41694671695439,52.06668375700419],[4.416963933610504,52.06665868752657],[4.417040342889138,52.0665429501631],[4.417127463676716,52.066426222319826],[4.417185904080612,52.06635758106669],[4.417263374702993,52.066276934869315],[4.417344378012864,52.06621086218546],[4.417398392465119,52.06616680331302],[4.417599979840592,52.066005184419495],[4.417773902524249,52.065867047708544],[4.417875596925376,52.06578627865606],[4.418050960428157,52.06564611477816],[4.418174830986916,52.06554687292973],[4.418350658514758,52.065406004125045],[4.418368367708851,52.06539200887541],[4.418620294028998,52.065192917013775],[4.418622118092232,52.065191520798244],[4.418648322628206,52.065171448039635],[4.418699649034811,52.0651321322422],[4.418741071663771,52.065099404558715],[4.418949486625222,52.06493473754131],[4.419214675743331,52.0647219810739],[4.419547099409927,52.06445973668071],[4.419772257905604,52.0642871079132],[4.41996524015533,52.0641375489865],[4.419978385361894,52.064127859324024],[4.42029229762062,52.06386879564094],[4.420398769534379,52.063780114117776],[4.420591659100505,52.06361250067932],[4.42069089902597,52.063515863054405],[4.420746550004401,52.0634529166274],[4.420788985620814,52.063396639176936],[4.420813479157912,52.06334069541545],[4.420833179603424,52.06325305172467],[4.420840324593363,52.063180559615866],[4.42085060488047,52.06307626273518],[4.420853084160493,52.06304748713991],[4.420859428200171,52.0629905405629],[4.420870070191086,52.06289501773777],[4.420907988898502,52.062640968889106],[4.420908441505757,52.06263722974142],[4.420917591020247,52.06256165119422],[4.420895826090312,52.062533191772474],[4.420866557027821,52.062494922632986],[4.420857087185898,52.06248254043095],[4.420850109516921,52.062473404687125],[4.420807353292421,52.06241659642735],[4.420785364381981,52.06239770532791],[4.42076513081513,52.062380322533414],[4.420738865529793,52.062353356921236],[4.420753405802846,52.062325629473904],[4.420792208383839,52.06230842090371],[4.420803791876982,52.06230328365759],[4.42084707470166,52.062267486508595],[4.420927738883965,52.06218080579754],[4.420935353075491,52.06217261670281],[4.420941537217553,52.06216372645043],[4.421012951806,52.06206106624856],[4.421081041759977,52.06193736784169],[4.421090179102827,52.06192076709593],[4.42112164214121,52.06186259282018],[4.421132921626659,52.061841739146445],[4.42118147143878,52.06172066510448],[4.421203659233231,52.06163790907276],[4.421242760681907,52.06149040289291],[4.421258777670348,52.061432199894945],[4.421273759680354,52.061377760032386],[4.421323225940522,52.06121688284966],[4.421325612953154,52.06120912097438],[4.421384721563073,52.06101685996171],[4.421403471083148,52.0609558820875],[4.421442781378229,52.060828035655874],[4.421492302015911,52.06066728468193],[4.42153741778514,52.060520753526234],[4.421549913506838,52.060478515068866],[4.421566228472575,52.0604233625081],[4.421566785283019,52.06042148126011],[4.421567172699591,52.06041900267802],[4.42159511754144,52.06024041304638],[4.421618537573656,52.06009100741982],[4.42162636494147,52.06004114608777],[4.421635612507703,52.05998223227148],[4.421697910780771,52.0598320576798],[4.421787850430944,52.059615243249155],[4.421893312787404,52.059379796703155],[4.422009413251447,52.059130414979734],[4.42205862377888,52.05900854418475],[4.42206819785941,52.05898483154694],[4.422234570308579,52.05860309954891],[4.422340570023319,52.05835982071433],[4.422373973090861,52.05828315890873],[4.422488493198355,52.058033098599715],[4.422505684760417,52.0579952265142],[4.422534543773045,52.057930870622656],[4.422566488051414,52.057860567050774],[4.422584722679828,52.057820433868315],[4.422690045807537,52.05760242248039],[4.422692106976355,52.05760225059682],[4.422770713859062,52.05759567007201],[4.422790288531389,52.05759403081851],[4.422873315037312,52.05758575969647],[4.422921019202539,52.05746986262553],[4.422975602588201,52.05733725087576],[4.423014120315095,52.05724367192108],[4.423034780119025,52.05719347688128],[4.423070566481859,52.05710653252397],[4.423081971058359,52.05707882496045],[4.423103992462079,52.05702531975679],[4.423064683548463,52.057027162471776],[4.42296571425865,52.05703180304616],[4.422982363518613,52.056997340329346],[4.423032274147432,52.056900678946],[4.423104041873111,52.05674546477827],[4.423177931838552,52.05658566036671],[4.423236803075346,52.05639780354721],[4.423308046412182,52.05627594354016],[4.423433959088036,52.056113893250235],[4.423623815733502,52.055916977733155],[4.423853662106525,52.055737197710016],[4.424433482102553,52.055288785988225],[4.424507304409671,52.05523626840716],[4.424750642166548,52.05506315322399],[4.424865855876483,52.0549811871282],[4.425565968934249,52.05452314607805],[4.425875853584832,52.05432040247207],[4.425910333600711,52.054294263621685],[4.426586197564993,52.053781902663154],[4.427838480246033,52.05283252708585],[4.427974890963802,52.05272910940346],[4.428035255890137,52.052683345549525],[4.428099613796133,52.05263412749304],[4.428149765380178,52.052595773329486],[4.428385844531073,52.052415229040754],[4.428574416573253,52.05226741891044],[4.429685324151147,52.05139662115693],[4.430266819877333,52.051343367801806],[4.430892489940756,52.051293401452796],[4.431914308776554,52.05121535974331],[4.433362007978729,52.05110694197289],[4.434698837075641,52.05101103346992],[4.436054987123889,52.050913731496074],[4.437660393335399,52.050799095497446],[4.439417515163037,52.05067357613797],[4.441103532275271,52.0505522692666],[4.442703490038379,52.050437886722996],[4.444444634744724,52.05031310548352],[4.446118970465355,52.05019166040886],[4.447397966459164,52.0500982856341],[4.449400889673556,52.04995329009648],[4.44999296503825,52.0499106447284],[4.449928166020549,52.04957593553183],[4.450412388791576,52.04954030016035],[4.451357149637449,52.04947350843631],[4.451455064854706,52.04946658588475],[4.451381508652361,52.04915299138284],[4.450642384005414,52.049215420571166],[4.450735429951789,52.0490570172287],[4.450906276455598,52.048781059177266],[4.451074933345003,52.04850304306114],[4.451241358475412,52.04822568311266],[4.451409997197159,52.04794903263951],[4.451577597307015,52.04766826588191],[4.45175522205153,52.04738485496224],[4.451917150991481,52.0471108740147],[4.452082329548395,52.04683965118185],[4.452420720094579,52.04628429802804],[4.452572257936945,52.04603004458535],[4.452738593053688,52.045756106462484],[4.452906119862498,52.045478752899896],[4.453078146149466,52.045197344972465],[4.453247926557399,52.04491727626231],[4.453416568794042,52.04463925667327],[4.453588546082647,52.04435988802476],[4.453763986450882,52.044073724221946],[4.453925919482781,52.04379837427225],[4.454100219342957,52.0435135671979],[4.454267729250124,52.04323621156252],[4.454433958155626,52.042966369006244],[4.454604871867025,52.04268425791216],[4.454772361108191,52.04240759351738],[4.454944463483729,52.04212139253654],[4.455119872120441,52.041835909595335],[4.455286389685716,52.04155239644755],[4.45545838579332,52.04127098480177],[4.455633873408183,52.040982086048196],[4.455784082251991,52.04073601556441],[4.455975975996046,52.04041637918071],[4.456128868920358,52.04016721942334],[4.456190792697178,52.04006599391221],[4.456317521356934,52.039854621901384],[4.456478899658629,52.03959043689116],[4.456766573305118,52.03965810233143],[4.457128258632387,52.039741434521886],[4.457205071531092,52.03962076686962],[4.457113111862929,52.03959768591799],[4.457145983883035,52.03954205437702],[4.457287604195,52.039312363315105],[4.457432860505371,52.039081577215114],[4.457578219594008,52.0388457671151],[4.457667248505764,52.03870451280804],[4.458008213561016,52.038778132878285],[4.458528911656754,52.03888538469],[4.458700737270286,52.03892777532206],[4.458598651720386,52.03906339674039],[4.458730390549736,52.03909125752109],[4.458829840353383,52.03896253464138],[4.459279126050214,52.03905836095727],[4.460083116567778,52.03919889345978],[4.460462107236868,52.039268050774545],[4.461012234759901,52.039363810980895],[4.461389190637196,52.03943775819336],[4.461618589783621,52.039476864194555],[4.461980685283708,52.039514594468066],[4.462482752150246,52.039576289855106],[4.462930373390165,52.039629133452124],[4.463634279475008,52.039699679715355],[4.464601480686644,52.0397894710669],[4.46535876838383,52.03986496444362],[4.466561089103801,52.039991365843754],[4.467594947171921,52.04008165363291],[4.468766774953255,52.04019513837039],[4.469410838519914,52.04029185241546],[4.470606866580453,52.04046970391456],[4.470746633518895,52.04049471934057],[4.470790720185777,52.040485732269765],[4.470843221267073,52.040398187443266],[4.470890878849423,52.04031796656276],[4.470940136728709,52.04023717385585],[4.470989402703448,52.04015597670459],[4.471037055718942,52.04007595347829],[4.471084355590086,52.03999750947766],[4.471133552466419,52.03991966447348],[4.471178583430536,52.03984238927909],[4.471228477632064,52.039761790161585],[4.471276787016259,52.03968098993594],[4.471326388366903,52.0395990132444],[4.471376282028865,52.03951841405999],[4.47142294757303,52.03943956949181],[4.471472873040881,52.03935739750999],[4.47152242938606,52.039277586636715],[4.471573003795086,52.039195024160406],[4.471621305451775,52.039113828234974],[4.471669557018601,52.039035786896406],[4.471975166592435,52.03904977576947],[4.472249894118982,52.03848500907507],[4.472575447935838,52.038511411812095],[4.472978547362009,52.03862612638989],[4.473493203960799,52.03877393831085],[4.474130014963859,52.038958487748445],[4.474575396265768,52.039087259208884],[4.474669248923118,52.03913513167989],[4.474703974818729,52.039235650512744],[4.474668273305374,52.03932607771993],[4.474806167596163,52.03934922217736],[4.474956190753664,52.03906745062642],[4.474355349644839,52.03889564271259],[4.473520843303848,52.03865798420775],[4.473115317366488,52.03854496049321],[4.472923465060084,52.03847843862941],[4.472745294619259,52.038364329223455],[4.472790032497739,52.03827478171257],[4.472854524315581,52.038139312040755],[4.472884463904193,52.038024975899496],[4.472972361212519,52.03784887967634],[4.473152964402956,52.03751592399188],[4.473326802649125,52.037196515269635],[4.473492693530638,52.036885044470836],[4.473662442209567,52.03657439436134],[4.473833516153352,52.03626296328852],[4.474000615397244,52.03595550106539],[4.474169155995122,52.03564084991461],[4.474336169262858,52.035337377481085],[4.474507316969892,52.0350211460837],[4.474631760986681,52.03479891476963],[4.474685948523713,52.03472017214778],[4.474918109799203,52.034401213024076],[4.475166121623145,52.034068776471365],[4.475399605502816,52.03374822667772],[4.47562640662609,52.03343721552027],[4.475864859701816,52.03312710308556],[4.476110779470958,52.03275854116911],[4.476258739570516,52.03250863443236],[4.476471312236799,52.0321951116204],[4.476656560448627,52.0319237313962],[4.476876620752141,52.03158712910744],[4.476931089734572,52.031523551396695],[4.476978621011682,52.031481528618386],[4.47702982980135,52.03145072505265],[4.477087819846358,52.03142111543302],[4.477185793431258,52.03139532036659],[4.47752717376104,52.03132386529693],[4.47763424044356,52.031478927765136],[4.477892894108905,52.031934921583264],[4.47906467445419,52.031937223550514],[4.479786049265074,52.03194206599432],[4.480508633952234,52.03194473809389],[4.481226526928811,52.03194736965829],[4.481959573439529,52.03195445483709],[4.482665693408333,52.03195915336183],[4.483373037496035,52.031961690796564],[4.484093262362694,52.03196432277666],[4.485355642906921,52.03197247935529],[4.485880172756175,52.031975453012315],[4.486925862550488,52.03198085519865],[4.487452068299812,52.03198383466463],[4.487975732436814,52.03198783504377],[4.488487606926713,52.03198965775597],[4.488996918893803,52.031993544046095],[4.489510473298579,52.031995896462924],[4.490045975718294,52.03199893520959],[4.490575587432537,52.03200140532525],[4.49108501033236,52.03199902737164],[4.491580957024339,52.031994989685295],[4.492051575206578,52.031990236018736],[4.492534000093958,52.03198608253142],[4.493009688788604,52.03198136356263],[4.493481131203981,52.0319776441288],[4.493964380004746,52.031974542698684],[4.494340878787135,52.032030017395584],[4.494842544298502,52.03203590575792],[4.495325648547279,52.032040087377844],[4.495801975424532,52.03204577971928],[4.496408138031028,52.032058044249034],[4.497027491590754,52.032061410513634],[4.49758277815139,52.032064289487586],[4.498223328837927,52.03206587436985],[4.498379709010267,52.03206683020889],[4.498901705822519,52.032069726715925],[4.49942286793011,52.0320720932773],[4.499939794196527,52.03207494695006],[4.500450757379679,52.03208088146783],[4.500956697313575,52.032083647935984],[4.501479529367561,52.032087060634524],[4.501993930939539,52.03208936495744],[4.502487178021766,52.03209359343417],[4.502982136024472,52.0320967900179],[4.503622418428156,52.03209846844602],[4.503993433412838,52.03209936437551],[4.504217489501785,52.03214034280206],[4.50500847648422,52.03247116349162],[4.505492496316866,52.03230322412012],[4.505523722006487,52.03227014631145],[4.505555690049002,52.032199349040056],[4.505237847590325,52.0320373138064],[4.505061285487484,52.03194672570493],[4.504965555869029,52.031897092691345],[4.50482641098043,52.03182316174913],[4.504591806849913,52.03170295207827],[4.504469734105228,52.03163611481564],[4.504419190556356,52.03160675674037],[4.50436362897226,52.03157099711228],[4.50433007692648,52.03154463374899],[4.504259092057458,52.03147882649035],[4.504193765022614,52.03141432900512],[4.504152850774045,52.03136816249216],[4.504138792011443,52.031347994569806],[4.50410523860159,52.03129584292503],[4.5040816625873,52.03125799500824],[4.504045265947615,52.031168968885765],[4.504030781595509,52.031117913032666],[4.504008403026879,52.031028947097504],[4.503998829256258,52.03098457062562],[4.503975427067512,52.03086179099244],[4.503946950528654,52.03073547673306],[4.503925897660386,52.030645810622836],[4.503650552867721,52.02966283997251],[4.503614616010563,52.02944348283994],[4.503585937564128,52.02912137785577],[4.503571596793649,52.02898331361774],[4.50355878263493,52.02874938871161],[4.503552789673994,52.02852499793387],[4.503549161433301,52.02829892605506],[4.503536520843155,52.02807764035867],[4.503528355317117,52.0278511119468],[4.503521110329736,52.02762667578464],[4.503516462375047,52.027407247765254],[4.503511009542412,52.02718282503794],[4.503503797525374,52.02695672621222],[4.503497174682499,52.02675321110289],[4.503494170199747,52.02662924507807],[4.50349018486921,52.026498862833876],[4.503487941309268,52.02627722365506],[4.503489679675989,52.02613812050274],[4.503491342998289,52.026005776194125],[4.503492925428063,52.02588048730874],[4.503494385276105,52.02576362878642],[4.503494448204419,52.02570872702894],[4.503492464865023,52.02558913709757],[4.503492008787631,52.02556128706135],[4.503471053679371,52.02548677625854],[4.503461413634608,52.02545249337244],[4.503409154390485,52.025404129053236],[4.503379528526626,52.02534962463705],[4.503358314492818,52.02528382179865],[4.503335212134677,52.025111364287824],[4.503319289102868,52.0249605422428],[4.503289369768774,52.02463215360035],[4.503280311220821,52.02445245782658],[4.503271796205279,52.02428140415256],[4.503264154253533,52.02413626211473],[4.503250981340805,52.023775172854705],[4.50324348353189,52.02358728219791],[4.503237526555367,52.02339293132605],[4.503228715426735,52.02320071627723],[4.503221243325378,52.023011531439295],[4.503215235441914,52.022819768877945],[4.503211925701759,52.022774837073335],[4.503201337623096,52.022424562425876],[4.503194957508865,52.02225093600986],[4.503186206511896,52.0220556922223],[4.503179670029854,52.02185528763316],[4.503173110345045,52.02165532330376],[4.503165081864602,52.02145965346968],[4.503151818263222,52.021067049390496],[4.503145213964515,52.020870095875495],[4.503139742398007,52.02077043970165],[4.503134399595706,52.02067311972704],[4.503128375315318,52.02048221987203],[4.503119718530166,52.02028223075953],[4.503116604514342,52.020084871977595],[4.503116395579298,52.01988278903304],[4.503117542514156,52.01968287352534],[4.503121460745305,52.01948427318004],[4.503125353226652,52.01928697598053],[4.503131437256071,52.01908493128247],[4.503143760168999,52.01888640302489],[4.503153894388239,52.018691732405586],[4.503164310998499,52.0185536380689],[4.503185517200438,52.01829471926276],[4.503205479838964,52.01809882807212],[4.503227463094581,52.01790684410489],[4.503246657931842,52.01771440773889],[4.503258223881394,52.01762511206451],[4.503284614639728,52.01742236587594],[4.503293302018557,52.01737190624958],[4.503305763774853,52.01730809095361],[4.503331867371071,52.01722624809968],[4.503373366463219,52.0171091057885],[4.503423020163924,52.01700690978636],[4.503472756743575,52.01693152734615],[4.503605959580898,52.01674209499142],[4.503656570781911,52.01666000456251],[4.503717455404896,52.01655337146902],[4.503755679442817,52.016460392734324],[4.503785226506282,52.01638116433255],[4.503815536864589,52.01626394688302],[4.503822714372147,52.01621909375122],[4.503820594208741,52.01621342941134],[4.50383717634064,52.01604776110687],[4.503784584543264,52.01584615865085],[4.50374731630201,52.01564164021323],[4.503703557843166,52.015447868342356],[4.503665531614792,52.01524636434078],[4.503626668057445,52.01505262017709],[4.503574020119622,52.01484798621177],[4.503551255246377,52.01476059003081],[4.503535822229064,52.014655981797894],[4.503501239586862,52.01445795518211],[4.503469496118096,52.01425780159015],[4.503454302238279,52.01415438162645],[4.503447892130229,52.014110819724216],[4.503409317622723,52.013831596095415],[4.503401062268193,52.01377966993084],[4.503384747230454,52.013693229972986],[4.503347710961289,52.013513323836214],[4.503316165816933,52.013338636343796],[4.50328667553621,52.01316613051863],[4.503260081740029,52.01298932291732],[4.503232075370627,52.01281250469643],[4.503211006759258,52.0126391901852],[4.50319902645146,52.01246595290658],[4.503199729839525,52.012288487362355],[4.503202371319879,52.012225461190816],[4.50320116029104,52.01210887001072],[4.50320254194627,52.01201961464237],[4.503150816987195,52.01178766196668],[4.503113791695565,52.011607324322476],[4.503093884010592,52.01151256083133],[4.503055574392723,52.01140178525211],[4.502999364436462,52.01123555038066],[4.502935990570758,52.011043356520865],[4.502875970394951,52.01085765960494],[4.502813103170035,52.01067453896447],[4.502749074373262,52.01048018279545],[4.502685696756719,52.0102875482988],[4.502616871891902,52.010087538125994],[4.502566535762403,52.00993308625206],[4.502561369730413,52.00988634266408],[4.502554287214672,52.00982821409348],[4.50256231165837,52.00973233908085],[4.502606982693801,52.00954204458566],[4.502607498536932,52.00949893014939],[4.502609573242234,52.009410776565645],[4.502605374311238,52.00935857517522],[4.502602895312144,52.00930631480139],[4.502592058401457,52.0091468924423],[4.5025801494472,52.008970203908035],[4.502567592974667,52.008790903806684],[4.502556528154087,52.008606877917096],[4.502543392022862,52.008421533105874],[4.502533597570856,52.00824399753298],[4.50252902783136,52.0081921438983],[4.502520248244222,52.00803404031418],[4.502512175047641,52.007919114290246],[4.502506703038732,52.00783401401971],[4.502495551075825,52.007655164876],[4.502485996049999,52.00750093852337],[4.502478828810191,52.00743827004427],[4.502471482563045,52.00738983816514],[4.502445032305618,52.00730718688921],[4.502435058391349,52.0072811977731],[4.502387697437743,52.007178389651514],[4.502340346454741,52.00711640781902],[4.502311706186092,52.007079051592704],[4.502259781408323,52.00701562412856],[4.502215422432159,52.00696662630438],[4.501899828777552,52.00684564831559],[4.501850751001006,52.00683427710769],[4.501637170074736,52.006780482504965],[4.501401747846177,52.006719035630255],[4.501301741254974,52.00669417550941],[4.501224144868018,52.00666737167389],[4.501171240027912,52.00663889302286],[4.501120544387878,52.00660328503799],[4.501069906290613,52.00652719278571],[4.500999904701446,52.00642345857272],[4.500943220252752,52.00633643553499],[4.500895666065037,52.00624878011003],[4.500858427560553,52.00615651928362],[4.50080669357942,52.00606813123084],[4.500735996130125,52.005961353457366],[4.500661522373875,52.00585406180904],[4.500587422098713,52.00574631450453],[4.500514851407389,52.00563856968441],[4.500439985351606,52.00553128391841],[4.500366630206477,52.00542494430094],[4.500293307075082,52.005316267837465],[4.500225659644831,52.0052085689126],[4.500155371462321,52.00510038263535],[4.500086238141503,52.00499126121328],[4.500011088233862,52.00487928994867],[4.499933981390439,52.00477128583341],[4.499860720673388,52.004659562410964],[4.499786670538229,52.00454947790252],[4.499710340704274,52.00444053568428],[4.499648005793071,52.00433240905086],[4.499579557218408,52.00422633960869],[4.499508169365133,52.00411720980423],[4.499433336183087,52.00400851238406],[4.499359653568694,52.00389983258078],[4.499288575454056,52.00379350042684],[4.499216388595671,52.0036850745035],[4.499145343381534,52.00357711556575],[4.499119259066426,52.003538168841736],[4.498968553705563,52.003298446852895],[4.498933778534933,52.003269618591574],[4.498813322464472,52.00316667068943],[4.498737237979691,52.00310290641056],[4.498673743262772,52.00305351104471],[4.498610277141344,52.003003414747624],[4.498542734083609,52.002948137156686],[4.498394382785719,52.002837490666295],[4.498248346343074,52.00272545025545],[4.49810408692505,52.0026185735577],[4.497967714952281,52.002516439340184],[4.497831744895043,52.002412429376626],[4.497691647846606,52.00230652741633],[4.497553033552038,52.00220226343178],[4.497416298771062,52.002098723589256],[4.497280377640049,52.001992376298794],[4.497140643418004,52.00188740223317],[4.497002106574993,52.00178010001329],[4.496859423203581,52.00167042921602],[4.496720115967184,52.001563120825516],[4.496581548003231,52.00145675267551],[4.496443784470639,52.00134804441668],[4.49631529658253,52.001250417262355],[4.49617818915385,52.00114686412699],[4.496039974297599,52.001041909205554],[4.495906298606511,52.00093721320877],[4.495771109658953,52.000833215693945],[4.495639604916892,52.000734387418895],[4.495514129964381,52.0006370158914],[4.495373941676684,52.000536251885045],[4.495310791655052,52.00048966170873],[4.495242649729885,52.00044584710186],[4.495131009635034,52.00037782897493],[4.495100315841537,52.00036471022826],[4.494841126043406,52.00025393438754],[4.494652074562855,52.000169652652076],[4.494486319662957,52.000095839296485],[4.494278250094761,51.99999549384075],[4.494070625793411,51.99989258064416],[4.493840323580058,51.99978552195816],[4.493635682849302,51.999684257569356],[4.493427229212623,51.99958437507487],[4.493087493383546,51.99941738354878],[4.492911946713283,51.99933682398761],[4.492761916608014,51.99927366232018],[4.492619879370795,51.999209158990816],[4.492481263631172,51.999143980386975],[4.492272029968936,51.99904549210636],[4.492048621299435,51.99893566883621],[4.491866423352691,51.99885073356904],[4.49160228359551,51.998729354782554],[4.491453051843157,51.99866432786151],[4.491259064132596,51.99858140523969],[4.491138039969849,51.99852806214293],[4.491033878905334,51.99848420449372],[4.490810087805719,51.99839380034252],[4.490579212268723,51.99829724749513],[4.490461914341612,51.99824697922683],[4.490376688811032,51.998205134906904],[4.490198820438833,51.99811226608569],[4.489907730371919,51.99801222375443],[4.489706755900125,51.99793743390428],[4.489557800505524,51.99787778185105],[4.489352004264093,51.997798046816904],[4.489133907666004,51.99770721546912],[4.488923752729706,51.99761761285237],[4.488820821258954,51.99757001434236],[4.488735522943156,51.99753121540458],[4.488525524355701,51.99743389202575],[4.488341199411938,51.99734237327026],[4.488164474337816,51.99724951005411],[4.487981034511042,51.99715168746664],[4.487871067017683,51.997095612000436],[4.487798192547805,51.99706112298265],[4.487739100806332,51.997040069404676],[4.48767389492266,51.997020380277185],[4.487606735232412,51.99700372332395],[4.487522032021844,51.99698762433726],[4.487471504675639,51.99697881569493],[4.487389043291092,51.9969692864647],[4.487303997901131,51.99696226322261],[4.487262536275191,51.99696247649225],[4.487185575085982,51.99696258903971],[4.487096471248427,51.99696260866264],[4.48697654390226,51.99696824403232],[4.486853597527479,51.99697338877331],[4.486773424276001,51.99698189882578],[4.486590760980257,51.99699641992421],[4.486439417435786,51.99699946828326],[4.48624943178678,51.996762385893504],[4.486115809730229,51.996651710477586],[4.485921455963197,51.996500255769476],[4.485417259544153,51.995991977952436],[4.484972309417222,51.99553727496931],[4.484398898021204,51.99494211705756],[4.48408341751982,51.994615287364915],[4.483205480718801,51.99371505748779],[4.482484235540526,51.99299232879973],[4.482387810083283,51.992903858254614],[4.482332464075726,51.99285054350152],[4.482270349084473,51.992821688696694],[4.482183034979045,51.99279908491417],[4.482106095721634,51.99278042598233],[4.482010947073721,51.99267038050997],[4.481937035866009,51.99258489621472],[4.481804589153239,51.992431709366386],[4.481667702796356,51.99227338624151],[4.481106579391265,51.99167361133683],[4.480644259637823,51.99138881369763],[4.480025820760461,51.99076352519971],[4.479961730172874,51.99069651507796],[4.480053223614957,51.990656924351285],[4.480068383375622,51.990638776287724],[4.480073749355167,51.99061750556949],[4.480069306827152,51.99059312107295],[4.480035899319746,51.990538068723474],[4.479620783936721,51.990096509235855],[4.479369837480413,51.98982668467646],[4.479318261371489,51.98969538503135],[4.479330642584769,51.98957067314817],[4.479288120964859,51.989479020372116],[4.47912986810364,51.98925861993188],[4.478970507359657,51.98909300553208],[4.478864077737104,51.988991726816806],[4.478791361672492,51.98893027632807],[4.478689312730951,51.98885642867964],[4.478509320120203,51.9887363166812],[4.478338860356995,51.988631504811],[4.478251232422291,51.988576033103136],[4.478138965842946,51.98849135560497],[4.477987379977804,51.98834183564597],[4.477370462007333,51.98774879553748],[4.477088817666483,51.987520858332466],[4.476784487039809,51.987222246866885],[4.476373257807174,51.98681893420147],[4.475785693454792,51.986270750329716],[4.475668557237907,51.98614538595367],[4.475252328331681,51.98567389642494],[4.475092743469282,51.98550058051111],[4.474926676720252,51.98533895330357],[4.47446785222407,51.98489679317103],[4.47427931917955,51.984712671879166],[4.47407643275092,51.98450714473664],[4.47388327846859,51.98430776911062],[4.473806338593824,51.984212808851794],[4.473748921184153,51.98412712360067],[4.473696733541072,51.984026261116234],[4.473653794664996,51.983955915023],[4.473601064076063,51.983882445723744],[4.473533545559749,51.9838088615639],[4.473431702909145,51.983725878309976],[4.473329798748802,51.98364593265572],[4.473183964900569,51.983544342513234],[4.473096167194245,51.98349799800199],[4.473052547529584,51.98346112916477],[4.47299936967622,51.983408968232496],[4.472927352997751,51.98331403663331],[4.472860456893779,51.98321001229646],[4.472846289274645,51.98317946657213],[4.472779083395796,51.98309065758903],[4.472702009341951,51.983001780851616],[4.472595298056212,51.982915711845266],[4.472498082835693,51.98284799052514],[4.472371665009138,51.98276176810041],[4.472221833335217,51.98261448321063],[4.472028757386348,51.982412066836545],[4.471820957779084,51.98220648841835],[4.471647047828607,51.98203161796438],[4.471473077039367,51.98185979392686],[4.471083842272129,51.981462664524194],[4.470518194290161,51.98089425551989],[4.470218159289304,51.98059276542204],[4.470124050291662,51.98049527782159],[4.47006312052839,51.980409662158905],[4.470004471446004,51.98031503062659],[4.469931354199322,51.980212538024965],[4.469787940289334,51.980074675114686],[4.469011363276898,51.98045434788307],[4.468741507376144,51.980573507708066],[4.467977316544864,51.980121215784706],[4.467316727988829,51.97971623629579],[4.466279022729802,51.97911602482208],[4.466105798847422,51.979267395365945],[4.465998986841561,51.979236896422215],[4.46564458213737,51.97907645941946],[4.465244334939007,51.97879672388259],[4.464639555947475,51.97867759295506],[4.464487335205592,51.97862995466181],[4.463977788371118,51.97838119534607],[4.463591683130872,51.978041754352795],[4.463501055637198,51.97790054971327],[4.46316094462308,51.97769086944635],[4.46298326988677,51.977573339978285],[4.462961029687008,51.977542927325146],[4.462972762063002,51.9775146332331],[4.463435609606091,51.97727793806887],[4.463447309858588,51.977174129747006],[4.463447806306753,51.97712810259594],[4.463445725339584,51.9770927337627],[4.463437593552733,51.97705433317413],[4.463421910437453,51.97701791372057],[4.463397256108942,51.97697326209301],[4.463364463622004,51.976932231912805],[4.46222388491786,51.97584124753333],[4.462144481607498,51.97576529798872],[4.462005787898139,51.9756361185175],[4.4616496957851,51.975441004500354],[4.460992852700881,51.974732326150914],[4.461260222881637,51.973786429768886],[4.461600048692833,51.9726019227539],[4.461614691157544,51.972538362074474],[4.46162071654082,51.972512252391056],[4.461790984459644,51.97189960139981],[4.461973289221545,51.97124361144572],[4.462118853378537,51.970719771656235],[4.462239397759844,51.970147897104034],[4.462291285416154,51.969801629144015],[4.462324066191071,51.96949128255212],[4.462343822403502,51.96909758024162],[4.461811420409439,51.96903028879701],[4.461431205215741,51.968782186059784],[4.460805054796054,51.968468204322825],[4.460702430433086,51.968424768045026],[4.459067541447682,51.967665890145526],[4.457499796681731,51.96699988058023],[4.45697784022241,51.96714572593884],[4.455641933661349,51.966893600057254],[4.454976486426263,51.9667680051826],[4.453314663366739,51.96627831338911],[4.453098207730267,51.96621452758113],[4.451861010045547,51.96590519208075],[4.451296996404697,51.96570224391949],[4.450717294116363,51.965447330205365],[4.450229436271462,51.96517622849664],[4.449935676720522,51.96496269821195],[4.449074873601319,51.96421629816536],[4.448377941713095,51.96356038576228],[4.447773497872107,51.963040155446016],[4.447228816687415,51.96260729349261],[4.446977217073901,51.96242895075511],[4.44650103381688,51.962166483746174],[4.446076960091809,51.9619783280299],[4.441039500110579,51.95996738021962],[4.439197183503233,51.95923280610369],[4.436139830502203,51.95801083423708],[4.433510654141892,51.95696282867101],[4.432072294934525,51.95638664388624],[4.430363051085493,51.9557054216208],[4.428488930430406,51.95495493453407],[4.426926088822129,51.954333052656786],[4.425385182528169,51.95371520865938],[4.423270522904805,51.95287273713506],[4.421746398115279,51.95226353241885],[4.419508081577143,51.95137014237686],[4.418165408756986,51.95083337776392],[4.415146967112784,51.949572743065865],[4.412648895498884,51.94852908991181],[4.412777883883637,51.948463731804786],[4.413142332061146,51.94827960497321],[4.41314834675034,51.948283969408905],[4.413185131894245,51.948265752740134],[4.413224242271744,51.94824897464744],[4.413225541901926,51.94824009191678],[4.413260358735732,51.94821712093741],[4.41332742131251,51.94818757565441],[4.413360128368145,51.948159798851464],[4.41347861020799,51.94810742085429],[4.413564666719161,51.94806982416924],[4.413647373168602,51.948033567777344],[4.413743628894772,51.947985108873084],[4.413852297315537,51.94792580880389],[4.414081890098974,51.94785451075524],[4.414133383008046,51.94782825639639],[4.414233358131959,51.947761358636434],[4.414331786338856,51.94766366233583],[4.414449247889901,51.94760717065453],[4.414735313682567,51.947436205341916],[4.414807112523458,51.94740735996736],[4.414876691498983,51.94737818248515],[4.414929283520913,51.94735425777215],[4.414978697388784,51.94732931799334],[4.415085408243066,51.94727187027743],[4.415204313549683,51.94720785719207],[4.415248138460537,51.94718574750994],[4.415295158928325,51.94716384399987],[4.415515976799655,51.9470623879162],[4.415569056909395,51.94703603998404],[4.415577409992892,51.947030215066235],[4.415581849828291,51.94702293219298],[4.415585759787688,51.94701029032784],[4.415581596740223,51.9470077390716],[4.41560606883938,51.94699266036407],[4.415607505646942,51.946993481225846],[4.415802208975028,51.94684848293309],[4.415847842558207,51.94682342167595],[4.416231457267641,51.946565645862286],[4.41643802086791,51.94639665454952],[4.416591339140426,51.94626158926159],[4.416629105499863,51.946228318035864],[4.416714832077795,51.94615279630181],[4.41677977113853,51.946096072860904],[4.416908009583776,51.94598141054348],[4.416974662519764,51.94591595955539],[4.416996531596491,51.945893398400706],[4.417017968252729,51.94587065389868],[4.417033905642871,51.94585334717232],[4.417049556049577,51.94583585830053],[4.417072962806265,51.94580944464548],[4.41709054450491,51.94579008405959],[4.417139104957796,51.94573718125309],[4.417276122007479,51.94558226641862],[4.417370146709499,51.94559283973304],[4.417380683257059,51.94559661203528],[4.417574605555485,51.945387134215196],[4.417716210146057,51.94523425490973],[4.417709633119381,51.94522898719212],[4.417683133515951,51.945176364138376],[4.417916851072105,51.944948268239244],[4.417870994663424,51.94487598001663],[4.417938797879612,51.944794021996586],[4.418054539909689,51.94476198722268],[4.418292932189022,51.94447208634312],[4.418319366169247,51.94444012434763],[4.418345656628073,51.94440807127598],[4.418535945769001,51.944176829792546],[4.418611994988608,51.944090085382946],[4.418703977997354,51.94397938225174],[4.418730390933633,51.94394701999118],[4.418726640531229,51.943918257378904],[4.418714850840584,51.943900374181],[4.418645686437289,51.94387380803382],[4.418690177796644,51.9438126067963],[4.418768982001493,51.94372149216414],[4.418875538633495,51.943589489578294],[4.419116024344776,51.94334538142745],[4.419248861164183,51.943221800733404],[4.419264156964694,51.94320718505969],[4.419454146624608,51.943023130715325],[4.419472164390803,51.943003683479326],[4.419520492259451,51.94295455307388],[4.419606588738241,51.94286708172801],[4.419771723670488,51.942709159451],[4.419792685091354,51.94268443840226],[4.419805218313513,51.94268975321364],[4.419811561247565,51.94268279056022],[4.419911992164669,51.94257799870563],[4.419998589211976,51.94248747501097],[4.42005268368698,51.94242715585609],[4.420087636159216,51.94238447700627],[4.420063952428989,51.942376641739756],[4.420096793551922,51.942337451142905],[4.420116423038072,51.94234444406691],[4.42020089632321,51.94225794770637],[4.420253214596255,51.94220579363832],[4.420243702312819,51.94220176034884],[4.420273425279279,51.94215876877385],[4.420319212909855,51.942099190174474],[4.420346745143523,51.94206337158666],[4.420379510023759,51.942020944325634],[4.420401801740022,51.94199209387832],[4.420426638992875,51.94195984862252],[4.42045027807105,51.94192921148955],[4.42051760651249,51.941841854832326],[4.420484366195712,51.94183286781741],[4.420502719371392,51.941802794854645],[4.420529869878666,51.94171651638958],[4.420531724913533,51.94170871410237],[4.420516562173502,51.94170806898982],[4.420516764029513,51.94169869086161],[4.420509299692455,51.94169289734938],[4.420571825807879,51.94160842073172],[4.420609549149848,51.941617711544325],[4.420616138835266,51.94160886682909],[4.420684038453141,51.94152196421165],[4.420683429318982,51.94152181718172],[4.42068414091221,51.94152179876153],[4.420693380285178,51.94152343785969],[4.420816447711709,51.94136812023821],[4.42080987223382,51.941365155627246],[4.420869453973497,51.94128627443561],[4.420888018815252,51.94126161799162],[4.420900828647406,51.94126109405533],[4.420907842858441,51.941252792139444],[4.420952528089379,51.94120381099196],[4.420940301062816,51.94119076667129],[4.420951436670037,51.941173419959064],[4.420971148520327,51.94116980666463],[4.421009433129848,51.941114121201586],[4.421051659229401,51.941057749012266],[4.421036891025008,51.941054661361534],[4.421131301817545,51.94089813354562],[4.421273156895019,51.9407221670949],[4.42128544169723,51.94069986079677],[4.42130699641208,51.940677630650995],[4.421317235878328,51.940671982626064],[4.421320787230943,51.940663673811414],[4.421326710391143,51.94066268067077],[4.42139220445584,51.94067520341742],[4.421413151444708,51.940675280200956],[4.421435816170631,51.94067636524889],[4.421450206021374,51.94067675310964],[4.421450061193586,51.94060232485225],[4.421450024002307,51.94059729083199],[4.421402800431295,51.94059528495337],[4.421368723243187,51.94058385894551],[4.421359583193972,51.9405760535157],[4.421246670054305,51.94055831690545],[4.421248195543992,51.94049414957286],[4.421186252535632,51.940398898948175],[4.421080737080103,51.94026715537406],[4.421057074308939,51.940238106957956],[4.420952364389381,51.94010951595284],[4.420860431660396,51.94001572654724],[4.420853030914668,51.94000820503485],[4.420755030054531,51.93994636571818],[4.420568876598128,51.93983139702863],[4.420486204940747,51.9397803801563],[4.420390361992987,51.93973995156388],[4.420104135110294,51.93961903557102],[4.419908637040919,51.93953293281898],[4.419388926802485,51.9393273971515],[4.419220871319851,51.939283946174506],[4.419061786771509,51.93924263624519],[4.418970077986447,51.939219678755116],[4.418925653468484,51.93920933535646],[4.418929269140707,51.93920352242582],[4.41886744431619,51.93918404692213],[4.418743244142252,51.93913691149036],[4.418519371431045,51.939024774863235],[4.41845564699492,51.93898550816921],[4.418387645818642,51.93894225113485],[4.418372275537173,51.93893340536184],[4.418302884449728,51.938887170525796],[4.418241368609748,51.93884666348399],[4.418200081520968,51.93881899731462],[4.418175568305535,51.93880252558382],[4.418161148044867,51.93881031685981],[4.418130595730472,51.93879064927059],[4.41813513260903,51.93878750643392],[4.418040484167899,51.93872069287816],[4.417822046000802,51.938572554672675],[4.417881679370753,51.938525046234965],[4.417847986619553,51.93850939763063],[4.417793376484428,51.938553262068375],[4.417763561222188,51.938533151019236],[4.417769518963465,51.9385266383321],[4.417701243768195,51.938489401115525],[4.417625781944164,51.93844823941586],[4.417532065546049,51.93839712933932],[4.417463667410854,51.93836701907332],[4.417468017612106,51.938360802356215],[4.417392007751599,51.93832786701231],[4.417397212549999,51.93832113599765],[4.417319472607681,51.93829026993519],[4.417334117022772,51.93827580104579],[4.417326745122833,51.93826583908773],[4.417330937133941,51.938262436357746],[4.417347108711873,51.9382206820267],[4.417398097794615,51.93815593394644],[4.417413497242445,51.938136465421486],[4.417400452692803,51.938132003655134],[4.417427169329311,51.93810512644043],[4.417459172597273,51.938048392533744],[4.417601715186042,51.93790583750791],[4.417629240589386,51.937910738673835],[4.417646570904123,51.93788265680948],[4.417681640247161,51.93784797963738],[4.417694034361904,51.93783972227324],[4.41779742255953,51.93764479907186],[4.417832222199531,51.937602389277245],[4.417889033588816,51.93754407102852],[4.417965646444693,51.93747791597861],[4.418001358838,51.93744710919089],[4.418394903432707,51.93711570034699],[4.418779854279171,51.93680489361997],[4.418911412703702,51.936699280340434],[4.419262281897653,51.936417584677976],[4.419724772765847,51.93604404233742],[4.419760143628397,51.93601547940824],[4.41979551444591,51.93598691646816],[4.42057248048449,51.935359328322036],[4.420607850267532,51.93533076513241],[4.420643220005537,51.93530220193191],[4.420756136903496,51.9352109951843],[4.421753628961949,51.93439599806861],[4.421853715253121,51.934319696182676],[4.421857121025781,51.934316847737605],[4.421880062044811,51.93429815966403],[4.421930830723714,51.93425668878565],[4.4219514048915,51.934239868909565],[4.421955105293645,51.93423684310504],[4.422167379544977,51.93407588879292],[4.422294261826781,51.933970592945876],[4.422329053654692,51.933941754838365],[4.423064120112978,51.93333214367903],[4.424197564547231,51.93239193510012],[4.424537898930921,51.93210961176563],[4.424572687873461,51.932080772979525],[4.424607476771276,51.93205193418291],[4.424826425415503,51.931870355583584],[4.425357331491673,51.931413451928506],[4.425564111855381,51.93123549107426],[4.425798345586963,51.93103390174668],[4.42585241299266,51.930987422456646],[4.425920949749829,51.93093746594695],[4.426227879051467,51.93073093040377],[4.426904465514413,51.93027563849673],[4.427289398858357,51.9300166011012],[4.427481073247987,51.92987896489017],[4.427595363775313,51.92979689637831],[4.427742734484213,51.92969104287267],[4.428038268288832,51.92946936423116],[4.42853343706753,51.92908132710679],[4.429070869941291,51.928660159981526],[4.42940122240099,51.928401268636534],[4.429488725368541,51.92833269333149],[4.429495351128069,51.92833562372207],[4.429504681907488,51.928327609835705],[4.429498633800684,51.92832486392744],[4.42965611042859,51.928201472374035],[4.4298217175134,51.928071764794055],[4.429899937475438,51.928017300578105],[4.42990495473189,51.92801383581158],[4.43000693322856,51.927942935755276],[4.430030252009609,51.9279266761598],[4.430146398067241,51.92784591379465],[4.430275531427079,51.92775608848169],[4.430278482832877,51.927754045087546],[4.430285862303238,51.92774889166575],[4.430494241466902,51.92760965894358],[4.430896816165399,51.92734066804927],[4.43098467786294,51.927281948066174],[4.431204355398832,51.92713445003523],[4.431242212590647,51.92710903111526],[4.43146067216598,51.92696232180921],[4.431608009753925,51.926863375624556],[4.431629127725176,51.92685264839759],[4.431654024519166,51.92684567593655],[4.431680994735525,51.92684293516387],[4.431970194190151,51.92683813951244],[4.432397590177929,51.926831049995506],[4.433008309074588,51.92681050690452],[4.43313379567493,51.92680628589075],[4.433210726781003,51.926805382164126],[4.433291610068352,51.92685116222511],[4.433332829469191,51.92687378528651],[4.433359316100247,51.92685916512852],[4.433376306280601,51.92687486077048],[4.433744116850097,51.92708180006478],[4.433723316861206,51.927095923512425],[4.433882784603881,51.927186295672335],[4.434574507722846,51.927572847774876],[4.434731832631503,51.92766158341266],[4.434722697825288,51.92766726221457],[4.434734346967204,51.92767328919523],[4.43607923479206,51.92842907824854],[4.436118577757022,51.92848683483361],[4.436609574029997,51.92876208746631],[4.436670955895784,51.92872053522579],[4.436699850131496,51.92870097467984],[4.437028039382629,51.928885290949395],[4.43703305238733,51.928882005622626],[4.437043254126849,51.92888775100769],[4.437007190042417,51.92891220739641],[4.436948550390139,51.92895197433568],[4.436985766769902,51.928972859458554],[4.437040078470433,51.92895541079959],[4.438288698305562,51.92966724977015],[4.438496068835192,51.9297829010916],[4.439138530072935,51.93015114053733],[4.439414427249457,51.930306354088934],[4.439426510656921,51.930305642519826],[4.439833123351528,51.930536875184124],[4.440117320866038,51.930698625853445],[4.440129672391566,51.930698995023675],[4.440353258678584,51.93082529049265],[4.440577329704485,51.93094934223884],[4.440577351995351,51.93095518511653],[4.440582345171803,51.930966641056756],[4.440781973635962,51.931077641645686],[4.441227319833644,51.93132760817453],[4.441383664727113,51.931415787504314],[4.44155653615891,51.93151326810184],[4.442092972531265,51.93181582914337],[4.44224801994,51.93190363731713],[4.442418157415813,51.93199992610516],[4.442672103783154,51.93214210150267],[4.442838774637202,51.93223737305255],[4.442932622309737,51.93228990216128],[4.443018122908653,51.93233831921189],[4.443100442231398,51.93238590166249],[4.443188535566885,51.93243550794703],[4.443267413222281,51.9324808154511],[4.443353190209971,51.932529953572825],[4.443438395285073,51.93257863760127],[4.443525900279395,51.93262859845483],[4.443700361397636,51.93272698746793],[4.44378858257734,51.93277749319512],[4.443873086197881,51.93282500273367],[4.443953572023259,51.932869963120936],[4.444050432036438,51.93292458290204],[4.444146010220281,51.932977933892715],[4.444243304973887,51.93303264688645],[4.444339310346018,51.93308645058105],[4.444424817750692,51.933134686865685],[4.444598857957745,51.933232531815484],[4.444684379118543,51.933280138804406],[4.444769730562668,51.93332891290791],[4.444859270158708,51.9333790688327],[4.444947378696287,51.93342813456704],[4.445032011306568,51.93347654316423],[4.445128709704774,51.93353205961834],[4.445293382883605,51.933605199259304],[4.445516072690775,51.93368545507464],[4.445653712739922,51.933730242853436],[4.445598784799443,51.93378391525174],[4.445165489064761,51.9342537021485],[4.445136078142679,51.93429014060733],[4.445116810912973,51.93428666037399],[4.44510259466475,51.93428501836488],[4.445087017125859,51.93428588229729],[4.44507619601303,51.93428876187079],[4.44506559970951,51.93429478931001],[4.445054956280628,51.934303063559916],[4.444928634536727,51.93441881512716],[4.444614468797244,51.9344844314784],[4.444445190702202,51.93451974828749],[4.44437274470947,51.93454190887691],[4.444344727820417,51.93455345946126],[4.44431947147076,51.93456512206636],[4.444295253600171,51.934575804231685],[4.44406769806522,51.93465793395162],[4.444007387220449,51.9346838770586],[4.443918175605358,51.93472882419627],[4.443835908667134,51.93477544496886],[4.443780227492444,51.934809425104476],[4.443718898625456,51.93484920258339],[4.44369131759735,51.93486767785524],[4.443626612480807,51.93491587762357],[4.44337158466211,51.93513877868385],[4.443371651958373,51.9351388978757],[4.443200163839998,51.935288901609596],[4.4429254116232,51.9355292280436],[4.442570655162998,51.935839532131034],[4.442343733926312,51.936038582227226],[4.442067888156078,51.93628054283782],[4.441725698650407,51.93658069914909],[4.441348147634497,51.936911867055855],[4.441162961443642,51.937074301467014],[4.440766086003143,51.937422411346446],[4.440747271672955,51.93743879920584],[4.44054304371573,51.93761377688365],[4.440320298485154,51.93780461945221],[4.440032000326344,51.93802827462269],[4.439972960277671,51.93807141782331],[4.439909178599799,51.938111898972124],[4.439840969188976,51.93814952193909],[4.439786551764148,51.93817509241821],[4.439729272910137,51.93819814992695],[4.439647427538091,51.93822427683362],[4.439514982995532,51.93825682729684],[4.43944791083111,51.93826995674722],[4.43937925719078,51.93827946352467],[4.438821912574377,51.938330699395884],[4.438689752535725,51.938342846744646],[4.438608920663275,51.93834848673697],[4.438096895724786,51.93836282820546],[4.437786763339677,51.93837151344697],[4.437707809138472,51.93837087585062],[4.437376886516275,51.93836056245403],[4.43729863085043,51.93836127854017],[4.436647544625255,51.938398729188435],[4.436390196391218,51.93841353097148],[4.43581730351687,51.93844332351617],[4.435652910699962,51.93845692168298],[4.435489840320959,51.93847563953816],[4.434853397172657,51.93855327250297],[4.434721190257148,51.93857440378337],[4.434552675261291,51.9386107607286],[4.434535666559703,51.93861442965298],[4.434534662866257,51.93861464623934],[4.434032922054574,51.938722893363796],[4.433970986272696,51.93873578448819],[4.433908765368242,51.938748403605416],[4.433843804628498,51.938759921821735],[4.433717403292156,51.938781548492344],[4.43364895273815,51.93879303829989],[4.433577903941471,51.938803608117084],[4.433573381123265,51.938804290533895],[4.433477026473458,51.93882175615665],[4.433470900380255,51.93882260533934],[4.433422021763966,51.93883011894646],[4.433370939153398,51.93883869330478],[4.433295564677895,51.938854351455134],[4.433253123932628,51.93886516396667],[4.433212593147086,51.938878487241695],[4.433172412340645,51.93889416120817],[4.433133228344007,51.93891083201403],[4.433095038686226,51.93892930053918],[4.433058968197491,51.938949330519726],[4.433036266475142,51.93896370808503],[4.433015001609892,51.93897890629602],[4.432998441258174,51.93899171571781],[4.432896047001021,51.9390812217481],[4.432790729811292,51.93916303205216],[4.432682453815,51.93924335307334],[4.432607418428246,51.93929775511806],[4.432532815259159,51.93935234040033],[4.43239452918812,51.93946088040663],[4.432177930943823,51.939641053841704],[4.432160608672535,51.93965547493588],[4.432125964096542,51.93968431711645],[4.43202606595674,51.93976735188812],[4.431948347972668,51.93983203824259],[4.431727108220079,51.94001617764239],[4.431424506402737,51.94026782965327],[4.431357712806963,51.94032337745954],[4.431197506103732,51.9404434232629],[4.431153534912508,51.94047308820234],[4.431098946803314,51.94050958814068],[4.430995177298685,51.94058137348635],[4.430933861765546,51.94061961638986],[4.43087111115577,51.94065694871271],[4.430770420445703,51.94071286047481],[4.430664473781657,51.94076493073971],[4.430634666278658,51.94077826127385],[4.430604713346709,51.94079159061731],[4.43058121975016,51.94080209610265],[4.430569328493566,51.940807302724416],[4.430547158897104,51.94081709987421],[4.430522052348094,51.94082822143772],[4.43049826980463,51.940838634667976],[4.430469788136746,51.940851166959945],[4.430429271666908,51.9408688147971],[4.430308731009762,51.940921981266804],[4.430192057465801,51.94097834493385],[4.4300623566997,51.94104515524934],[4.429953630593291,51.941103774839824],[4.429865798419985,51.94115096984637],[4.429777392075315,51.94119780056195],[4.429721070627388,51.9412268250777],[4.429663601133388,51.94125512111591],[4.429629815127258,51.94127084596405],[4.429571947606254,51.94129734096301],[4.429479006270898,51.941338561485274],[4.429436269446072,51.94135798865109],[4.429389277270702,51.9413791788897],[4.429365926579578,51.9413897751865],[4.429318932421055,51.94141105526881],[4.429097911374202,51.941511187050324],[4.429031220626522,51.941542194158494],[4.428957454051086,51.94157763794549],[4.428897322072929,51.94160797933031],[4.428625363217458,51.94175731305009],[4.42847974009655,51.94182722688435],[4.428215058676372,51.94194893360288],[4.427704133977555,51.94217325977399],[4.427656972191907,51.94218869513206],[4.427589454089592,51.942203874448225],[4.42750902872783,51.94221813669005],[4.427426779686983,51.94222762533721],[4.427329708585419,51.94223051831629],[4.427234308703068,51.94222326755237],[4.427203605423212,51.94221717417314],[4.427117777328082,51.942197596965336],[4.426738762168696,51.94206137785668],[4.426684922073449,51.94204224140147],[4.426562588708626,51.94216546675873],[4.426610306063504,51.94218527234928],[4.426760649522604,51.94224792887114],[4.426951956997813,51.94232765863633],[4.426961840829593,51.94233475059482],[4.427116563997,51.94239722759106],[4.427270345353109,51.942401719141415],[4.427326220383298,51.942393725858615],[4.427358463039107,51.94238904525054],[4.427644061413497,51.94235730892919],[4.427743198814968,51.942359825810634],[4.42782329006228,51.9423401062979],[4.427905809864516,51.94231297643023],[4.428015678189147,51.94228408399398],[4.42813471256224,51.942251559254416],[4.428190971505804,51.942218759697816],[4.428222625467445,51.942200770677594],[4.428460988960301,51.94206518641782],[4.42891779938761,51.94187520247822],[4.429210248269946,51.94174819683763],[4.429502936259818,51.94162108545795],[4.429820466622713,51.94148318507616],[4.429911132709773,51.94145318171731],[4.429927951198119,51.94144199280412],[4.429993300218083,51.94139883943436],[4.43001860833215,51.941378281419105],[4.430221563682793,51.94123854020057],[4.430310953742,51.94117780794352],[4.430411786394844,51.94110930176733],[4.430465575981947,51.941076211376995],[4.430507774234354,51.94107520642726],[4.430536043313934,51.9410931443108],[4.430613066063078,51.941075433902085],[4.430713159916618,51.941005596515545],[4.43070000021049,51.94099524226768],[4.430987692178658,51.9408509755729],[4.431298563782669,51.940690357308824],[4.431383890967418,51.94064457908084],[4.431598781869449,51.94053135951036],[4.43169013847062,51.940479826021416],[4.43173926561045,51.94045211469277],[4.431744023757239,51.940454530887465],[4.431783914247296,51.940433450997354],[4.431805319649539,51.94042209055263],[4.431902402232933,51.94047103939095],[4.432024290441944,51.94052970247905],[4.432058525137494,51.940548412055946],[4.432075178485342,51.94053427857611],[4.432106627944448,51.94054820865892],[4.432180413042104,51.94048871452497],[4.431956532532221,51.94038190704569],[4.431934421609415,51.94033426672486],[4.431955559277069,51.94031825868424],[4.431954191194276,51.94031420262502],[4.431979080540122,51.940285910453156],[4.43204545860252,51.94022155083195],[4.432051397301587,51.94021584626711],[4.432091493036583,51.94017689108596],[4.432197796074875,51.94007474333759],[4.432215906690764,51.94005745223635],[4.432234168434201,51.94003989269694],[4.432256451743382,51.9400178714357],[4.432280057084936,51.93999523169407],[4.432327338588602,51.93995345839019],[4.432368444269426,51.939921702329855],[4.432445970127959,51.939866511669706],[4.432523786612172,51.93981132331887],[4.432539896435134,51.93980673053012],[4.432599464244413,51.939764999349954],[4.432608031926873,51.93976923160883],[4.432688999422943,51.93971637704801],[4.432716397821193,51.939694601271874],[4.432792758550745,51.93963219553346],[4.432913854729221,51.939546966331264],[4.433030926181073,51.93947002793926],[4.433086571299818,51.9394318323214],[4.43313534217796,51.93940012112089],[4.43322965051279,51.93933506793006],[4.433324385586205,51.93926805498057],[4.433350611289896,51.9392480565108],[4.433398734353451,51.939235053655565],[4.433472292833432,51.93920221216551],[4.43350616944591,51.93918208246536],[4.433553522614901,51.93915738790859],[4.433581279135802,51.93914466922063],[4.433614448100261,51.939130466334475],[4.433758399046452,51.93908372365982],[4.433770033839941,51.93909055958322],[4.433849304604629,51.93905578665369],[4.433853988110434,51.939054386428005],[4.433846711670521,51.939047765628516],[4.433910768995343,51.93902401536453],[4.433989056477056,51.93899444785235],[4.434030773612845,51.93898175235532],[4.43426341609029,51.938916489410104],[4.434675499670699,51.93880864395148],[4.434812943961078,51.938768732673665],[4.434924929055442,51.93875001817698],[4.434964245057068,51.938746769868544],[4.435078913228298,51.93873759066336],[4.43520431221073,51.93872136295554],[4.435282892238807,51.93871594167325],[4.43535433291135,51.938707441416476],[4.435426940603274,51.93869877078845],[4.435498966648876,51.93869009540753],[4.435569678313021,51.9386816790069],[4.435642285922547,51.93867300824564],[4.435714635773754,51.93866963872359],[4.435786549400669,51.938666265627056],[4.435861084106318,51.93866273391998],[4.435936400274324,51.938649770287924],[4.435979502823142,51.9386471527266],[4.436019109949103,51.938644776533756],[4.43602443281627,51.9386818532969],[4.436103777300957,51.93867782102184],[4.436178170403334,51.9386741081929],[4.436248488359302,51.938670542131604],[4.436320262252938,51.93866689791572],[4.436393344776467,51.93866326423902],[4.436462933773986,51.938659782042116],[4.436540386020676,51.93865582405897],[4.436612448775324,51.93865227188823],[4.436613420108283,51.938647605585594],[4.436683109865544,51.938639360029654],[4.436758778297341,51.93863035377515],[4.436757045011523,51.93861604763279],[4.436796801278351,51.93861349260868],[4.436832335107487,51.93861117310302],[4.436832446283288,51.93861279197873],[4.436903349514397,51.93860905048217],[4.437054401904722,51.938611349943265],[4.437123856774653,51.93860732694625],[4.437195205691564,51.938603139437255],[4.437267574327013,51.938598870236376],[4.437340524566567,51.93859460568975],[4.437413911005705,51.9385903446217],[4.437488755275485,51.938585915508575],[4.437561267360658,51.938581737173536],[4.437633635928258,51.93857746774711],[4.437759298460043,51.938570033153866],[4.437874759855391,51.938563594710025],[4.43794843320519,51.938559515400655],[4.438033027057253,51.93855480510681],[4.43808471584665,51.93855189654132],[4.438244148100836,51.938543026171764],[4.438249124423874,51.93855529105028],[4.438307645303494,51.9385525274176],[4.438382895262831,51.93854953921178],[4.438461636813451,51.93854648924544],[4.438526844367452,51.93854386934874],[4.438525412719049,51.93852902634373],[4.438545214267677,51.938527927692085],[4.438684990213019,51.93852015654912],[4.438787057089381,51.93851441813751],[4.43889989713093,51.93850813731793],[4.439000069905226,51.938502563219615],[4.439113493402069,51.9384961970132],[4.439247883512081,51.93848865143387],[4.43940964558041,51.93847961849552],[4.439651810348987,51.93847150301506],[4.439974207344885,51.93834825825563],[4.440011219696977,51.938317185676844],[4.440154289764151,51.93820831580186],[4.440236316788249,51.938145965312145],[4.440688045482383,51.93779256937538],[4.44073644030068,51.937752689335724],[4.440784838820189,51.937712629530964],[4.440979957988112,51.93754898666151],[4.440994918017064,51.93753607336163],[4.441286636364417,51.937294645635674],[4.44133223155199,51.937256450693376],[4.441375458627381,51.9372202142094],[4.441364091244962,51.937214459843055],[4.441437337794722,51.937154554740225],[4.441492680469699,51.93710924714125],[4.441547135498823,51.93706465147756],[4.441602183369204,51.93701952123168],[4.441657376528124,51.93697439212888],[4.441704876397715,51.93693549326158],[4.441675474144332,51.936922942205655],[4.441737097084939,51.936869415343324],[4.44179220316305,51.936821498962814],[4.441855453581526,51.93676663681263],[4.441908782472594,51.93672023417709],[4.441961663710989,51.936674367244],[4.44201454673234,51.93662841041425],[4.442067576934361,51.93658236485665],[4.442120014090543,51.93653685383366],[4.442173935370382,51.93648991651585],[4.442229185913119,51.93644200109443],[4.442292733618905,51.936386781551285],[4.442345023030251,51.93634135912937],[4.442398349018823,51.93629504613896],[4.442451971361868,51.936248465843306],[4.44250514984263,51.9362022415073],[4.442556995073669,51.93615717497359],[4.442611060836276,51.936110238618866],[4.442674902174085,51.936054841455864],[4.442756651853643,51.935984576895564],[4.442839809890012,51.935916480893745],[4.442922231249198,51.935848828354864],[4.443006421663612,51.93578002142796],[4.443089580830612,51.93571183537327],[4.44317246784216,51.9356427481994],[4.443252582654009,51.93557408814767],[4.443333881149894,51.9355044487818],[4.443414588374625,51.935435254051754],[4.443496037425746,51.935365346121074],[4.443575558343628,51.93529722041046],[4.443657448737596,51.935227046249054],[4.443738895144564,51.93515722801867],[4.443821672486281,51.93508634176144],[4.443902997523299,51.9350153539065],[4.443992479307393,51.9349367909922],[4.444088737413013,51.934847136310985],[4.44441071587341,51.934686572834664],[4.444430292864723,51.934689156791194],[4.444464590934661,51.934717836300536],[4.444498559539785,51.93470678284952],[4.444562811866762,51.934721680053734],[4.444621173887669,51.93469850755352],[4.444591518299967,51.934649550720714],[4.444727734388663,51.93461675517395],[4.444934104001335,51.93456708357216],[4.444980584560438,51.934583456085505],[4.445411521810629,51.93450385291026],[4.445689177087366,51.934452593721424],[4.445685407865829,51.934445102867876],[4.445759428238928,51.93443104396179],[4.445490430920553,51.93436758624345],[4.445244972312258,51.934298114262305],[4.445280656185497,51.93425932603724],[4.445297977077509,51.93424050752105],[4.44530315557506,51.93423487710419],[4.445408152652949,51.93412077004151],[4.445412438432714,51.93411610325424],[4.445497465265145,51.934023705779055],[4.445513476777976,51.93400629696685],[4.445644379772516,51.93386401969262],[4.445648516346397,51.93385953147701],[4.445661670527655,51.93384523683713],[4.445679096862688,51.93382692248039],[4.445690972423485,51.93381396591091],[4.445739442793815,51.93376104175689],[4.445737133332488,51.93376022326307],[4.445744427097607,51.93375218280185],[4.445753801682424,51.933748932033495],[4.445803477597749,51.93378627361886],[4.445852369774284,51.93381938419125],[4.446037473147626,51.93388918074463],[4.446129547774004,51.93391562566053],[4.446226560109176,51.93394237968752],[4.446321164934843,51.93396605818896],[4.446356906790157,51.933974434110795],[4.446412767493446,51.93398728562428],[4.446454160764906,51.93399660561635],[4.446498564156631,51.9340076602399],[4.446541485039305,51.93402076500523],[4.4465739738276,51.934031721571124],[4.446619886048149,51.93404745967698],[4.446661032418007,51.93406163154845],[4.446701170491274,51.93407534590124],[4.446744350492772,51.93408962389951],[4.446771072691775,51.93409819720378],[4.446798526992391,51.934105836134194],[4.446867194119101,51.93411892110417],[4.44691760744674,51.934128043415214],[4.44694700316028,51.93413394143533],[4.446988810277418,51.93414434319804],[4.447014684666486,51.9341517411279],[4.447061639349143,51.934166318857976],[4.447082594939729,51.934172508899806],[4.447348092064606,51.93424206531932],[4.447466070615843,51.93426901288982],[4.447471770248367,51.93424957981729],[4.447521004236875,51.9342560048034],[4.447513032329793,51.93427492533455],[4.447784248136442,51.93433045008054],[4.447864728108502,51.93433149763266],[4.448111415737533,51.934331248172306],[4.448150910195167,51.93433195914655],[4.448221280178715,51.93432900660373],[4.448322396730965,51.93432438496203],[4.448409351665971,51.93432176250646],[4.448546246310245,51.93430641514318],[4.448578496053674,51.934303095101676],[4.448592631643566,51.9343016439145],[4.448639487766903,51.9342715551077],[4.448568366094192,51.93407456505156],[4.448560642499081,51.9340565708224],[4.448583363674374,51.93405273425445],[4.448606683198403,51.93404879459412],[4.448617176101139,51.934031682879585],[4.44866632019901,51.934025702188784],[4.448719189824983,51.93401470852669],[4.448792310669152,51.934134123528224],[4.448856778864047,51.93411782913193],[4.448792230246643,51.93399875225822],[4.449273979810997,51.933894641716755],[4.449314045135874,51.933967590476584],[4.44932408164469,51.93398834467601],[4.449424069453866,51.93405377142654],[4.449510517468243,51.934036393572725],[4.449515985076516,51.9340461450351],[4.449761894758154,51.93399669047233],[4.449777877554523,51.934032143712905],[4.449850911686791,51.93402344066157],[4.44999639661988,51.93400611067185],[4.450033091754984,51.934000191966426],[4.450398972583215,51.93394001598032],[4.450422151115967,51.933923301821046],[4.450420266789296,51.933918688160794],[4.450422262656125,51.93391934765901],[4.450424900256623,51.933826335093336],[4.450429644549459,51.93382196840837],[4.450440449923353,51.933805874753496],[4.450431002783675,51.93377775457103],[4.450483045421874,51.9337715175681],[4.450543702097765,51.933764315465986],[4.450616662204764,51.933755647307066],[4.45067954910057,51.93374818425106],[4.450736838794235,51.93374135972177],[4.450760315415843,51.933759164677774],[4.450763093931699,51.93376538904836],[4.45080449879566,51.933798950260304],[4.450843593695978,51.93382146026551],[4.450854460877628,51.93382771849525],[4.450911551939893,51.93385086978459],[4.45097413674044,51.93386774390559],[4.451145763670471,51.9338868183792],[4.451336631060678,51.93388555141366],[4.451552687413221,51.9338841250604],[4.452608650075879,51.934277063018094],[4.45274690571843,51.934329029342045],[4.453119002267571,51.93446898653733],[4.453443490590265,51.93459088805075],[4.453760507877245,51.93470998237774],[4.454092231535298,51.934834599293524],[4.454327997429037,51.93492316676568],[4.45434459072214,51.93492941077782],[4.454953842559421,51.93515653512872],[4.454947039184085,51.935161335103494],[4.4548699308296,51.93524018415059],[4.454303305773297,51.93502679085774],[4.454288338948102,51.935021491879375],[4.454228144766331,51.93508332150356],[4.454207987663136,51.93507915795335],[4.454200275998476,51.935086377638726],[4.454166961145551,51.93512206823436],[4.454153347846962,51.93513337590316],[4.453961229239624,51.93533041243521],[4.453949198360148,51.93534254162897],[4.453940410964772,51.93535253926969],[4.453946537581777,51.9353656215854],[4.45399232517346,51.935380546810414],[4.454159092171209,51.935436925605096],[4.454462693654761,51.93553956188032],[4.454763913828358,51.935641391960786],[4.455004702632844,51.93572279249464],[4.455292966180311,51.9358202398271],[4.455663422153045,51.93594547203668],[4.455938057819772,51.93603831092289],[4.455957839298979,51.936045119281104],[4.45595936893237,51.936043585333316],[4.456095583376758,51.93608979936533],[4.456345176787562,51.936174478528834],[4.456364384249357,51.93618092272338],[4.45654200377701,51.93624117816977],[4.456560902972942,51.93623934125992],[4.456693259990547,51.936284250352344],[4.456854989598641,51.93633912563759],[4.457152869673931,51.93644019590571],[4.457173950794367,51.93644746377502],[4.457444165497992,51.93653997289478],[4.457553719668972,51.936577478222766],[4.457574919841846,51.93658462111832],[4.457954169389484,51.93671313801992],[4.45797727519961,51.93672096107061],[4.458219839296381,51.93680539458356],[4.4583531999124,51.936850735781356],[4.458374267544555,51.9368581822022],[4.458539587439848,51.93669197579767],[4.458572634187843,51.93670360937684],[4.45859221848895,51.93670824135386],[4.458657755332589,51.936734029013415],[4.458725405959116,51.93675950074563],[4.458849006942347,51.93663607173748],[4.458955595456376,51.936676201314704],[4.459192992670783,51.93676584953042],[4.459410607610462,51.936848027015834],[4.459592624976922,51.93691676192906],[4.460100158307915,51.9371084158711],[4.460038617635409,51.93717309892199],[4.460114083391927,51.93720173888195],[4.460176803892248,51.9371362561086],[4.460508467165811,51.9372617809426],[4.460721094701634,51.937342253743026],[4.461329994475387,51.93756185692034],[4.461571616257932,51.9376489969171],[4.46157746337451,51.93765106541619],[4.461612014574261,51.93766174638313],[4.461804490561131,51.93773138712646],[4.461839922919074,51.93774377383207],[4.461946619932723,51.93778199770201],[4.462105025395836,51.937840250752586],[4.462140088699369,51.937854324344734],[4.462185684317342,51.93787035044814],[4.462406207993104,51.937960102928564],[4.462750171639186,51.938084164854125],[4.463030667660306,51.938188251906574],[4.463224917331269,51.93825912310881],[4.463241804784803,51.938240510719474],[4.463278113705671,51.93820049417123],[4.463354781281738,51.93822935899757],[4.463366815233824,51.938218620335476],[4.463377273881004,51.93819092733145],[4.463412847951846,51.93817242039805],[4.463413533076559,51.93816739209105],[4.463368069121272,51.93815058548339],[4.463364647197226,51.93815433386299],[4.463333327478462,51.93814276195815],[4.463479034245262,51.93800188483886],[4.462360455390018,51.93758229710836],[4.462154301736566,51.937503839576564],[4.462023071192721,51.93745386332398],[4.4618456877879,51.93738629227561],[4.46159282250958,51.937289632437164],[4.461310493971097,51.93718386814006],[4.46113873663537,51.937119522329624],[4.460906398745039,51.93703248781985],[4.460689026826617,51.936951044926055],[4.460498698699142,51.93687974734565],[4.460330306094218,51.93681665831687],[4.460077289055576,51.9367220254337],[4.459915198135348,51.93666157425226],[4.459694243230497,51.93657916640678],[4.459474645673709,51.93649726323193],[4.459246145067688,51.93641203544786],[4.459028064311708,51.93633070070162],[4.458839264843404,51.936260275386836],[4.458641551939493,51.936186318701814],[4.458363606233075,51.936082352632404],[4.45818326925275,51.936014887481505],[4.457942382914878,51.93592477724813],[4.457753172465627,51.935853996356975],[4.457544929034014,51.93577609838251],[4.457323439464762,51.93569324134674],[4.457124187555279,51.935618703613095],[4.45683737447304,51.935511409813024],[4.456600144292779,51.93542266504872],[4.456385974407862,51.9353425338189],[4.456185931908499,51.93526770057498],[4.455947075522847,51.93517895957506],[4.455817038570673,51.93513077451774],[4.455632712790334,51.935062482793384],[4.455458792512059,51.934998030538345],[4.455197624204291,51.934901255003034],[4.454890199075553,51.934787006483894],[4.454649821210503,51.934697549626186],[4.454403152799273,51.93460575022931],[4.454207553154522,51.934532962304964],[4.453989125898604,51.934451678260324],[4.453789674969343,51.9343774478273],[4.453597756958734,51.9343060274288],[4.45343804700177,51.934246592847295],[4.453195351896737,51.93415626064083],[4.453031949047564,51.93409544784949],[4.452832841522495,51.93402023872692],[4.452546181241501,51.93391356474703],[4.452368240620602,51.933847352754306],[4.452288004763786,51.933817495885876],[4.452229082953711,51.93379557025763],[4.452026148430527,51.93372005605701],[4.4517868436238,51.933630797759015],[4.451766788036167,51.93362326740616],[4.451711228835531,51.933602870290905],[4.451519663558935,51.93353158499229],[4.451360292715152,51.933472886428724],[4.451274594905742,51.93344038403594],[4.451261202341078,51.933441086404045],[4.451124046295388,51.93344961236742],[4.451088077158043,51.93345219157805],[4.451087102055421,51.93345118516334],[4.451087217925535,51.933452253949696],[4.450892395517829,51.93346622696162],[4.450597476999085,51.933487377968085],[4.450535198915203,51.933494252571464],[4.450462761007826,51.933502304614805],[4.450400995570325,51.93350830233428],[4.450214453146413,51.93352119773305],[4.449891636081431,51.93354564461157],[4.449849326843864,51.93354884884963],[4.449820225753465,51.93354346626299],[4.449707054230641,51.93355864472539],[4.449381554105737,51.93360229845047],[4.448818072690202,51.93367786496661],[4.448542904178431,51.93371476665692],[4.448509694960317,51.93372018239416],[4.448407818038703,51.933736970689004],[4.448306340872707,51.933753691976236],[4.448258209049328,51.933761623069834],[4.448164869490093,51.933777004285226],[4.447482152847194,51.93388950137365],[4.447254557161764,51.933847167804004],[4.446850607596588,51.933772029202764],[4.446666677999947,51.933737811832316],[4.446345518688168,51.93367807355786],[4.446189296814495,51.93359019766806],[4.446034620531529,51.933503190568146],[4.445635697771184,51.93327879012683],[4.445404441256741,51.93314919042139],[4.445155232361082,51.93300883336968],[4.444982876891648,51.93291176229536],[4.444821129560752,51.93282066633265],[4.444486792484917,51.932632362514454],[4.444352128017146,51.932556518563004],[4.444197367599715,51.93246935371218],[4.444080462359232,51.93240350986872],[4.443919186076597,51.932312798439455],[4.44386143937357,51.9322803458758],[4.443655929185462,51.93216485396377],[4.443456552237201,51.93205280687516],[4.443334047141151,51.9319839609153],[4.443153811108947,51.93188267012276],[4.442882600664858,51.931730250121085],[4.442706302863986,51.93163117003706],[4.44248549229119,51.93150707400732],[4.442269369284897,51.931385608490764],[4.44210397866103,51.931292654705],[4.44187557233144,51.931164283405934],[4.441710641710263,51.931071588933676],[4.441500006626159,51.930953205211225],[4.441359984291994,51.93087450836392],[4.441157641254309,51.93076078488812],[4.441022803482372,51.93068500036484],[4.440973586824533,51.930657269389904],[4.440817402446633,51.9305692256101],[4.440806625332572,51.93056314334235],[4.44078837808948,51.93055274924797],[4.440758838263307,51.93054693839461],[4.440669035175413,51.930495968159406],[4.440654897083661,51.9305044835398],[4.440485916920736,51.930408920548665],[4.44049241771287,51.93040402907882],[4.440356345262892,51.930326978101185],[4.440256867703641,51.9302707790587],[4.43996496378895,51.93010431042769],[4.43979605300267,51.93001180316327],[4.439786688288426,51.930007017576635],[4.439766506292291,51.92999668862654],[4.439759572673915,51.92999314510339],[4.439748075794317,51.929981906371204],[4.43972040529181,51.92996607885374],[4.439070523965466,51.929597962521235],[4.439066538889601,51.92959319239948],[4.439067975503384,51.929590020164106],[4.439069048629247,51.929589327695254],[4.439068779222234,51.92958824507226],[4.439068484507805,51.929587052582136],[4.439066635312128,51.92957959766287],[4.43905504483221,51.929570602601636],[4.439048706369385,51.9295608418094],[4.439042384998288,51.92955027126642],[4.439042589895392,51.92954056235095],[4.4390466701455,51.92953331255923],[4.439059893409696,51.92952694549967],[4.439074322591376,51.9295254438983],[4.439091354362188,51.92952477227492],[4.439110881930097,51.92952978460155],[4.439127707369699,51.92953882187682],[4.439138074858902,51.92954376032358],[4.439154207077455,51.9295415506488],[4.439159676488468,51.929541782622906],[4.439658112780277,51.92982418343982],[4.440320339637068,51.92937235058657],[4.43933145549641,51.92881542442513],[4.439372622068487,51.92878743453624],[4.439310641446967,51.92874728441077],[4.439262914583448,51.92877603036654],[4.438678128871334,51.92844594224284],[4.438015189496611,51.92889695117296],[4.438904504331948,51.92939979270027],[4.438909170257432,51.929410054166496],[4.438920738260086,51.929422246366954],[4.438925785374637,51.92943118776044],[4.438926888826326,51.92944090722997],[4.438926718048922,51.929448998442105],[4.438922656332074,51.92945543849112],[4.438912101053559,51.92945939919043],[4.438901562845704,51.92946255103716],[4.438884549622395,51.929462413793296],[4.438862369761344,51.92945899801085],[4.438850676874938,51.92945485783649],[4.438842874945531,51.92945236792809],[4.438831494217953,51.929452933194646],[4.43874021964684,51.929401068683035],[4.438740149248041,51.929401028564456],[4.438519414741875,51.92927560059278],[4.438325757573721,51.92916552605533],[4.438301619476552,51.92915184805916],[4.437887028228734,51.928917955843104],[4.437764953500698,51.92884908765414],[4.437692065067422,51.92881499059771],[4.437489250958454,51.92870096922531],[4.437303097075239,51.92858332031864],[4.436858267048699,51.928326445640174],[4.436694083918011,51.92822963316103],[4.436565721564059,51.928157399596685],[4.436450427990929,51.928092574967515],[4.436435379603649,51.928102880235905],[4.436190748228987,51.92795448145536],[4.435941138674677,51.92781247064135],[4.435642334050884,51.927644976095436],[4.435267246357661,51.927433165918224],[4.435024032748091,51.927298488514246],[4.434974939758179,51.927268151027285],[4.434917765288326,51.92723612827379],[4.434706037745835,51.927122744394445],[4.434480386241213,51.92699657849261],[4.434073907970326,51.926771395380925],[4.433779629154611,51.926607300789726],[4.433750805462095,51.92658846023056],[4.433722928467934,51.92656810374497],[4.433698637746553,51.926546059485624],[4.433680869512394,51.926526949033075],[4.433659461030055,51.92650124723962],[4.433646208683734,51.9264817239744],[4.433628403033871,51.92644382666035],[4.433615935451617,51.926401028817864],[4.433558862568002,51.926044000688215],[4.43351744874481,51.92582034384493],[4.433503897770991,51.92575195242932],[4.433494633520379,51.92569907896574],[4.433492021783111,51.9256591035441],[4.433496283894675,51.92562132322186],[4.433513422166151,51.925575085552566],[4.433527949241708,51.92554309638571],[4.433552876078021,51.92551047877868],[4.433586237787461,51.92547116823413],[4.433717963140173,51.92536809816795],[4.433854182223602,51.92526151203551],[4.433943817786492,51.925191375020326],[4.434076286581822,51.92508772272065],[4.434182189652819,51.9250048553825],[4.434401455962115,51.92483328335479],[4.434698213821576,51.924602221912956],[4.434804992257889,51.92451889549557],[4.435093651968706,51.924293346790854],[4.435248610696313,51.924169028571],[4.435404677376257,51.924046859349595],[4.435503165616724,51.92397345441008],[4.435652088505883,51.923850727248926],[4.435772845953671,51.92376109243981],[4.4358689643188,51.92369052105456],[4.435863421670774,51.92367977415368],[4.435998295194834,51.923577410192706],[4.436214210578335,51.923407920973965],[4.436283400438493,51.92335568243253],[4.43635387864039,51.92329703358682],[4.436500526709668,51.92318334855294],[4.436632983438419,51.923085958492436],[4.436763327504431,51.92297927657843],[4.436850153790726,51.922911483204544],[4.436882957936493,51.922888203213745],[4.436902977804608,51.92286910121412],[4.436923165045225,51.92284215246014],[4.437003619522332,51.92269368349465],[4.437065855347262,51.92258809200636],[4.437129311298263,51.92247944157761],[4.437150257509664,51.92244429036516],[4.437191075230198,51.92237963947817],[4.437206736101658,51.92234823970236],[4.437255744330856,51.92229843524167],[4.437539932243917,51.92207348087641],[4.437579451583232,51.92204044099756],[4.437598786412569,51.92204801474393],[4.43791458037259,51.921793720159776],[4.437935943904277,51.92177627558288],[4.438332434041715,51.92146421527994],[4.438401117160665,51.92140728107241],[4.438494163223756,51.92133292545916],[4.438647971698722,51.92120741330721],[4.438811180920125,51.92107706174321],[4.43892694998125,51.920991762821274],[4.438997190278324,51.92093205970422],[4.439032007916907,51.92091657695185],[4.439167709606814,51.920881508788725],[4.439404473799226,51.92081851202198],[4.439547947048799,51.9207705244935],[4.439788733533143,51.92068734541946],[4.440125622810304,51.9205695190613],[4.440291798742979,51.92051151488813],[4.440371809219648,51.9204861962446],[4.440470046319819,51.92044989804575],[4.440550974423305,51.92038100727299],[4.440680466567941,51.920284689958564],[4.440835933921612,51.92016540048369],[4.440947199829876,51.920080063338474],[4.441059983341776,51.91999381066345],[4.441314536472182,51.91979770811012],[4.441438026974554,51.91970134167356],[4.441624043127369,51.91955540794213],[4.441823745259732,51.919400310277084],[4.442009620987833,51.919260864712385],[4.442113229738426,51.91918288244167],[4.44236414188359,51.91898832500026],[4.442550113100291,51.91884424384624],[4.442824519285501,51.91863040186512],[4.442999836765607,51.91849365194801],[4.443143142562588,51.918381680202025],[4.44325735763061,51.9182982180725],[4.443361052040845,51.918215877644165],[4.443521139575453,51.91809013186701],[4.443528811336764,51.91808184738187],[4.443545146107965,51.91801799910063],[4.443593530192397,51.91785612032229],[4.443661110425527,51.91763690789075],[4.443701569063817,51.91749536457543],[4.44378547017905,51.91721295263764],[4.443828478772503,51.91716415349759],[4.444028512469002,51.91692096745779],[4.444159173746599,51.91676809474914],[4.444382565729257,51.91651202135145],[4.444468814948543,51.91640329907294],[4.444591918655886,51.91625314639744],[4.444699466773002,51.91612975878735],[4.444790463749417,51.91600902039498],[4.444865983408078,51.91591133810564],[4.444964267616204,51.9157863002469],[4.44510477337168,51.91559270624953],[4.445219187687294,51.915427647291054],[4.445312011917359,51.91529115952096],[4.445372324839,51.91520355550889],[4.445434330123303,51.91510669220159],[4.445551452113567,51.91492681863769],[4.445695572168362,51.91470358093528],[4.445827133875592,51.91450713330414],[4.445949601685837,51.9143152482107],[4.446014602561744,51.91421840859048],[4.446098252973426,51.914090191922355],[4.446208182832363,51.91392416935693],[4.446297907302426,51.91379229240934],[4.446395356992242,51.913649350921915],[4.446469545510357,51.9135433117731],[4.446549883464851,51.91342990425459],[4.44661624568954,51.91333956599909],[4.44668457031627,51.91325573420957],[4.446821731532419,51.913077874140676],[4.446952682355704,51.91291016469687],[4.447082095179507,51.9127442962926],[4.447205354557786,51.91258579697173],[4.447309926015491,51.912460529706394],[4.447431666189488,51.91230294474462],[4.447527126287891,51.912183166687896],[4.447600980249106,51.91209288778317],[4.447668681599473,51.91200997718866],[4.447722484427241,51.911946427849244],[4.447843911755551,51.911803676847],[4.447951593747335,51.9116728698243],[4.448032922123246,51.91158357713036],[4.448215846910599,51.91138197324593],[4.448350897861498,51.911232838878085],[4.448467454443466,51.91110766544155],[4.448580955890287,51.910985249518184],[4.448680655991221,51.91087755835589],[4.448778760626594,51.910774491682595],[4.448887453294305,51.91066687215341],[4.449011535105165,51.910540181634715],[4.449166144799919,51.91038749370982],[4.449311565113006,51.91024400597345],[4.449487680955754,51.910066453707636],[4.449581129865245,51.90997076676706],[4.449678829132836,51.90987251680175],[4.449903468444512,51.90966846106971],[4.449947808106691,51.909627088775856],[4.450007194485058,51.909583055331865],[4.450060258131662,51.90955473416605],[4.450191902648194,51.90949644083528],[4.450484284761688,51.90936515616628],[4.450705121479417,51.909271410396315],[4.450874490769516,51.909201362072444],[4.450969658369083,51.90916688515547],[4.451097609313994,51.909141942130944],[4.451201364455412,51.90912700582782],[4.451550141937331,51.9090806388543],[4.451808712362014,51.90904653537337],[4.453033670723981,51.90888195788818],[4.453549347080173,51.90881187693426],[4.454103167216558,51.90873857299341],[4.454641360848115,51.908666810766],[4.455178054632484,51.90859503508592],[4.455537421046007,51.90854370118988],[4.455551645215692,51.908541570357464],[4.455899001915713,51.90849536262843],[4.455989625388199,51.90849140660086],[4.456065587778916,51.90849362648263],[4.456155917149611,51.90850387026271],[4.456245097268541,51.908520486899896],[4.456515965769032,51.908592115597024],[4.457111101341448,51.90875359150715],[4.457723726976905,51.90891987687182],[4.457928421495815,51.908626953321374],[4.45793324532641,51.90862005033442],[4.457936025379956,51.90861703411192],[4.457939577278514,51.90861464421804],[4.457943741740518,51.9086128524269],[4.457949496603041,51.90861145972872],[4.457954446552543,51.90861104044194],[4.457960426929827,51.908611393348515],[4.457964508456238,51.90861220764531],[4.458055115108882,51.908637193743075],[4.458361316678722,51.908722221126375],[4.458434467699926,51.9087409565961],[4.458450654989413,51.9087453092492],[4.458456638133603,51.908747639682424],[4.458460078935643,51.90874992305703],[4.458462526441033,51.90875245026724],[4.458463666306542,51.908754257030154],[4.458464740162256,51.908757852037255],[4.458464115627239,51.90876205384743],[4.458462756048023,51.90876455097052],[4.458248901686464,51.909063355390906],[4.459122339368441,51.90929641391551],[4.459152153371424,51.90928837969009],[4.459363899644863,51.909344973051844],[4.459381244161857,51.90934960437439],[4.459731166386516,51.90944324297623],[4.459765855576169,51.90945250551063],[4.460007917403663,51.90952614594166],[4.460398299763266,51.90963124782465],[4.460417392576492,51.90963638716291],[4.460537736424636,51.90965863953895],[4.460579225589309,51.90966306555902],[4.460621037617718,51.90966593006404],[4.460683856273366,51.90966710848378],[4.460761090633818,51.909664130847815],[4.460784763304686,51.909662133191986],[4.460843395402358,51.90965489200157],[4.460866508029828,51.90965115508226],[4.460911978590978,51.909642219100895],[4.462674441670098,51.90927551313117],[4.462977905606107,51.90921156298807],[4.463130307823798,51.90899014562638],[4.463577945896516,51.908343560990815],[4.463477897301625,51.9083182352855],[4.463627406045283,51.908112817018925],[4.463687595980202,51.90802891157197],[4.463707786196621,51.90799476280374],[4.463738868863332,51.907941227257744],[4.464009366863158,51.90753292808529],[4.464394463506113,51.90696906794591],[4.464413021444934,51.90694139613065],[4.464539488215225,51.90676899579272],[4.464616751827779,51.906656479640695],[4.464647832496535,51.90660294294124],[4.463941921051517,51.906422554875085],[4.463940423190785,51.90642472737812],[4.463891804077676,51.90641230942484],[4.463455138627906,51.90629962821513],[4.463349986881126,51.90613814529718],[4.4633207392698,51.906100369262695],[4.463498248610982,51.905813928961194],[4.463569714164186,51.90570250588141],[4.463553272514629,51.9056893429334],[4.463531839855928,51.90568427559102],[4.463586622134176,51.90559471239519],[4.463899486170805,51.905097580481446],[4.464208940586401,51.904604731974096],[4.464698592771334,51.9038272504268],[4.46489853081143,51.90350625327677],[4.464907915575482,51.90348831523338],[4.464950346579807,51.90342077852865],[4.465103920819457,51.90317634036004],[4.465250865164432,51.9029451776281],[4.465571307784185,51.902432312871035],[4.465936841509651,51.901845758452744],[4.465408203893196,51.90176228134265],[4.464893047933644,51.90168159710269],[4.464445091142852,51.901610370464816],[4.463563172412624,51.901472427445036],[4.463444813583849,51.90175926821147],[4.463345001632642,51.90200320383401],[4.462982300844291,51.902885630998604],[4.462886998825615,51.90311634415047],[4.462700157146752,51.903573591273535],[4.462355136428478,51.90442182383024],[4.46234227456794,51.90445437881865],[4.462257692701179,51.90453946599708],[4.461757497275072,51.90446385582958],[4.460889276018746,51.904332551942595],[4.461221532648556,51.903487517338206],[4.461543472507858,51.90266443738553],[4.461583683785792,51.90255627757989],[4.461608926342268,51.90248842238446],[4.461757363241217,51.9019016185124],[4.461897606392274,51.90131779260829],[4.46191648635126,51.9012478108313],[4.461476884494805,51.90120928316065],[4.46106349591148,51.90116826291666],[4.460706449962236,51.901143869773485],[4.460153555286902,51.901101746264295],[4.459787074967583,51.90106469788762],[4.459512849413243,51.90104222755885],[4.458553992593056,51.901029409476884],[4.458221119069751,51.90102564029274],[4.457270798739878,51.901033170502494],[4.455837351259461,51.901043995449115],[4.455020199330217,51.90105098717084],[4.454538594938138,51.90107993235297],[4.454115103629629,51.901105826027205],[4.454054555003582,51.901467773087866],[4.455116802796089,51.9016810979328],[4.456478421164741,51.901955782586285],[4.457248513505887,51.90211071326015],[4.458519081419595,51.90236663997509],[4.458776500324963,51.90241825714567],[4.458706563619883,51.90259690487646],[4.458439458286794,51.90330880517133],[4.458375994724389,51.90347468945752],[4.45802320602875,51.90340259688179],[4.457225117480824,51.90324190111126],[4.456436852830869,51.9030831995004],[4.455483699211982,51.90289069532],[4.454270918999698,51.902646501586474],[4.453246975621776,51.90243988448008],[4.452546162766851,51.902300110562024],[4.452034221304214,51.90219566771473],[4.451130108637305,51.90201366840562],[4.45025505055022,51.90183753243671],[4.449324266954503,51.90165123724798],[4.448834001522813,51.90171348063542],[4.448881304312223,51.90184904980604],[4.448800739866657,51.90185901321847],[4.448729505368217,51.901725853340174],[4.448060447082285,51.90181761203371],[4.448098331160274,51.90188265029751],[4.448058982554114,51.90188773089025],[4.448277036682903,51.902512555848126],[4.448621163858251,51.90336496332844],[4.44806107543724,51.90345759157414],[4.447939654269649,51.90321655924963],[4.447460313941265,51.902158071790986],[4.447470499519856,51.902088022684495],[4.447433629315223,51.90197444025619],[4.447392073433486,51.90194106779147],[4.447284243600873,51.9019512525456],[4.447157720726963,51.9019770180471],[4.447145470123822,51.90198609760001],[4.446528688126744,51.902085882015385],[4.445798018961404,51.90220410732058],[4.444502590744014,51.90242128575849],[4.444007676850564,51.902517359553485],[4.443966588880898,51.902529524170895],[4.443952936156927,51.90256384166926],[4.443966143223906,51.902620037774476],[4.443892357740362,51.90263229944796],[4.442702229404504,51.90283370649372],[4.442311253715399,51.902899866884226],[4.441284882373339,51.90307354249836],[4.439531238145834,51.90336961634079],[4.438866249828272,51.90347418453635],[4.437937759925769,51.903615092711775],[4.437807752108486,51.903633368325146],[4.437715456548078,51.903653162010826],[4.437638561610934,51.90369042846354],[4.437587242432801,51.90374075823722],[4.437572357986581,51.90376915852215],[4.437566148980248,51.903823700936265],[4.437485906515866,51.90390666987026],[4.438281749629883,51.90421520027],[4.437997021910049,51.904482633917475],[4.437383036941728,51.90423491307681],[4.437326585964254,51.90422366661644],[4.437273754518865,51.90424751560432],[4.436300987004262,51.90385123178681],[4.436150334936004,51.90375425845458],[4.435415491798901,51.903821837142274],[4.434632096672493,51.903896927823425],[4.434550376985434,51.90411882816529],[4.435656366253051,51.90456778492017],[4.436456804813534,51.904893786069245],[4.4370280779625,51.90512528404136],[4.437577142518619,51.9053469008116],[4.438043425603217,51.90553600804299],[4.438654067914281,51.90578268345328],[4.439650130185902,51.90618243316347],[4.439008843808819,51.90660065082106],[4.438436096310817,51.90698029915173],[4.438050003915349,51.90682346571892],[4.43727265282148,51.90650818288679],[4.436365751031413,51.906140766911086],[4.434922820143607,51.905559253827015],[4.433762685965067,51.90508967564904],[4.432487410077923,51.90457774169476],[4.431363896549025,51.904123424047405],[4.430145576993961,51.90414955283341],[4.429544097392662,51.904163197332714],[4.42943033192462,51.90438614904623],[4.430355597309392,51.904762412329255],[4.43098688448915,51.90501111984213],[4.431402116468696,51.905170943666626],[4.43220190071463,51.905498428351564],[4.432776975603174,51.90572967592795],[4.433252575274735,51.90592235119686],[4.433325896822803,51.9059607092553],[4.432369520823847,51.90684575978151],[4.432295966391639,51.906815736358155],[4.431623687481063,51.90654559348733],[4.430712333196168,51.906178084828696],[4.429539138054411,51.90570389647042],[4.42889036966269,51.905442646678296],[4.427877823274431,51.905036251596876],[4.427210831180695,51.904765783798325],[4.426420880610531,51.90444806842929],[4.425851019521586,51.90421978310744],[4.425248561766897,51.90444583839309],[4.425304456556658,51.90450265581715],[4.42537232901189,51.90491404876432],[4.425410852269094,51.90515172990121],[4.425444576614026,51.90535711088583],[4.425850994380145,51.90552040858777],[4.426507123647641,51.90578741276582],[4.426895801780038,51.90594283588873],[4.427550168085273,51.90620756355848],[4.427797793992365,51.906308827363155],[4.428094216490187,51.90642727551469],[4.428558837158003,51.9066161471777],[4.428742727493453,51.90668918819326],[4.429106581110804,51.90683714205979],[4.429414034636975,51.90696058645666],[4.430603824851194,51.90743829967643],[4.430532971422998,51.90748897166993],[4.431294177330274,51.907786477926855],[4.431423667550972,51.907849570098726],[4.431263255576779,51.90801010515654],[4.43103595043395,51.908240226396366],[4.429825463318521,51.90774215398576],[4.429780367122625,51.907811916355044],[4.429675892553092,51.9078029734112],[4.429678419936852,51.9076843111969],[4.42926607016053,51.90752216783466],[4.428323084552837,51.90714300840306],[4.428000954672758,51.907011663333925],[4.426812185990821,51.90653269769351],[4.425981309557251,51.906190123642155],[4.42541130394353,51.905956254914855],[4.424900651990805,51.90576254606903],[4.424641243300197,51.90565792203585],[4.42455944282751,51.905608699778604],[4.424614913363166,51.90555490308235],[4.423690813167473,51.9051816646941],[4.423624511842895,51.90524431242597],[4.423598508810982,51.90527444724212],[4.423157316805342,51.90510629098427],[4.423014594586089,51.90505117273222],[4.422595147684841,51.90488589029759],[4.422162508718716,51.90472589219626],[4.421934830937214,51.90436257907787],[4.421665235681072,51.9039206985521],[4.421596462850077,51.90387427877352],[4.42129191091582,51.90384210546883],[4.421061359539403,51.903815934013245],[4.420765525865701,51.90378383101987],[4.420198156346393,51.9037088312153],[4.419608881784024,51.90363135344198],[4.419507968037992,51.90366019275074],[4.418868755968789,51.90357670445702],[4.418529386294283,51.90354153949644],[4.418311917132479,51.90351547046897],[4.417990045681419,51.90347775067661],[4.417650795228725,51.90343718905988],[4.417374729857054,51.9034996466445],[4.417293696122596,51.903415360165994],[4.417113955300707,51.90345973203681],[4.417658576450881,51.904289612276756],[4.419214309510874,51.90676780378292],[4.42030623483862,51.908513877622546],[4.421062361232544,51.90924837647989],[4.422253958009692,51.9104207177842],[4.424236211407107,51.91235208414741],[4.422135479896968,51.91248590304412],[4.42188522290032,51.912359769816504],[4.419873418010476,51.91038766042629],[4.418895370182359,51.909427446628165],[4.41708450696636,51.90765384830767],[4.416800686252491,51.90767038686449],[4.416009264159571,51.909179752463714],[4.417735029393879,51.91085556053646],[4.419563255573478,51.912640079429345],[4.417693906743016,51.91276223711959],[4.41750378013213,51.91267974852481],[4.417435404112879,51.91261444778615],[4.414889859699868,51.91012265586469],[4.414636486978382,51.910142137840445],[4.414059646832534,51.91120281024713],[4.41573326132476,51.912870123675134],[4.414047569057892,51.91296946534417],[4.413742394886919,51.91276194077162],[4.413609725618278,51.91264485636083],[4.411969327306152,51.91105870786079],[4.411986562523382,51.91086734041657],[4.413209710851524,51.90936697444987],[4.413792210031908,51.908648915130506],[4.41516337920863,51.90695284952033],[4.414760277213342,51.90683892407545],[4.414875274133834,51.906764349736584],[4.414659833447599,51.9066438838906],[4.415773386762271,51.90596797075665],[4.415687468192582,51.90590791894302],[4.415228872135404,51.90553728909621],[4.415384619345863,51.905392920505975],[4.415307656232733,51.90532215407386],[4.4151060019521,51.905169435148856],[4.414869876349924,51.90499754871093],[4.414260507836837,51.90454204871125],[4.413441722652847,51.9038906030014],[4.412922712204189,51.903492489488706],[4.412562451346685,51.90321437268073],[4.412163600246367,51.90290626508718],[4.411799045742307,51.902625413585056],[4.411524763396973,51.90240465118906],[4.411387653206747,51.90229292212441],[4.411309880777386,51.90225990834842],[4.411240711456053,51.90223236017486],[4.411136429288767,51.9022153095941],[4.41091083787415,51.90216218653652],[4.410672109841848,51.90211165052068],[4.410272893855012,51.902022017734524],[4.410051312806265,51.901985109855566],[4.409973131613533,51.90197097283505],[4.409912273252555,51.90196237403902],[4.409855363112429,51.901972689999724],[4.409815010711935,51.902023604208],[4.409706824356179,51.902386845611986],[4.409651216409274,51.90256769501457],[4.409584383259633,51.902803914809304],[4.40952749263033,51.90301383415712],[4.40951513663149,51.90318096593086],[4.409509896863979,51.90322138287802],[4.409494140835211,51.90354493252831],[4.409428497638572,51.90414048806489],[4.409363433943873,51.90511489350598],[4.409270910989282,51.90511207410177],[4.40898722080341,51.905093083515],[4.409012049172389,51.90494713176687],[4.408910307188664,51.904941251041066],[4.40886715635384,51.90520193650559],[4.408792984520562,51.905707758806194],[4.408741251451398,51.905680354370055],[4.40865060200759,51.905698501255856],[4.40869177595689,51.90544659948396],[4.408781318314048,51.904931997272364],[4.408678405739161,51.9049278234659],[4.408653600249034,51.90507133936669],[4.408549062843417,51.90505767768736],[4.408542737708975,51.905063854271596],[4.408570986813482,51.904880986989134],[4.408588173827246,51.90477236523107],[4.408710784310894,51.904069749296404],[4.408736073646902,51.90392666886197],[4.408776410254913,51.903698454611366],[4.408813862825593,51.903511268340466],[4.408954045066739,51.90279147689605],[4.408961854120497,51.90274579772044],[4.409075740721087,51.902131729597976],[4.40910041813524,51.90179917276948],[4.409106243254395,51.90173178879985],[4.409037017429397,51.90170693639409],[4.408824334963233,51.90166200761066],[4.408494528082431,51.90158913014164],[4.407630722401304,51.90140930241477],[4.407610557304307,51.90143360372353],[4.407590631347356,51.90147047162195],[4.404886357902921,51.90089520727454],[4.404444034016272,51.900800442645036],[4.40359034814204,51.90061861030533],[4.403420403118965,51.90048749650622],[4.401996149965005,51.90014005456535],[4.401369690800584,51.90004080384387],[4.401391532088951,51.89999226663577],[4.401165608618985,51.899955306353874],[4.401134086117644,51.90000089663185],[4.401025336384907,51.89998919373461],[4.400896099883226,51.90014073154335],[4.400294997997169,51.9000882582542],[4.40021167321953,51.900308741583984],[4.401100460239918,51.90054008285189],[4.400080000608809,51.90253294523567],[4.399697318340277,51.90327959108907],[4.399678753893855,51.90333068498135],[4.399497276719497,51.90345323724646],[4.399105902633231,51.90340409208329],[4.399051773922809,51.90328765112159],[4.399120160215263,51.90295375478192],[4.39947126698931,51.90126277445097],[4.399645294219893,51.90028779828906],[4.399588739284135,51.900281927841284],[4.399607007842663,51.90024431833308],[4.399716052489524,51.900242538149755],[4.399726726534266,51.90015361576997],[4.39960501726997,51.900136408436545],[4.399698921689677,51.89963279373593],[4.399682254020622,51.899597588148524],[4.399630711218505,51.89956208944144],[4.39861959083467,51.89934319454805],[4.397985788631568,51.89921647934144],[4.397929755948278,51.899235286883375],[4.397906116396467,51.89925715997808],[4.397800961645383,51.89992873064031],[4.397667559008617,51.90068666187945],[4.39757509900681,51.901225447988395],[4.397478660736306,51.90171183144747],[4.397472161778389,51.90180903607024],[4.397425907994606,51.90203089579356],[4.397346514593329,51.90244717482344],[4.397744205888052,51.90246744400214],[4.397733211538706,51.902515645814034],[4.397666021400766,51.90293876042818],[4.397691535749103,51.90301152428603],[4.39781432317043,51.90321112187565],[4.39784078803788,51.90323588605794],[4.397856859422643,51.90326384455487],[4.397861612545225,51.90329337159192],[4.397854767110822,51.90332274164841],[4.397836724210098,51.90335023583612],[4.397808540725871,51.90337424865177],[4.397771862078988,51.903393372806065],[4.397691432175866,51.90341570699233],[4.397658083764663,51.90342533816679],[4.397605414265432,51.903456749296154],[4.39757941900934,51.9034990521183],[4.397528975447505,51.90372106532055],[4.397516165575299,51.9037577784508],[4.397511834464908,51.903795239851604],[4.397516069709703,51.903832705984904],[4.397530055111726,51.90387211672551],[4.397570838530435,51.90393503337391],[4.39757475680689,51.90398947766706],[4.397561138166743,51.904015596025985],[4.397537960744438,51.9040389956516],[4.397462264537562,51.9041399950064],[4.397415803072917,51.90421479537522],[4.397227451361277,51.9046043674087],[4.396906673625866,51.90522578716524],[4.396895503634157,51.90525906322753],[4.396874753028971,51.905290535385376],[4.396845134969473,51.905319164241305],[4.396807627946637,51.90534400431892],[4.396763472185937,51.905364235494574],[4.396714126918002,51.905379189604915],[4.396661219068754,51.905388370689685],[4.396606499173541,51.905391477093445],[4.396551774419225,51.90538840629487],[4.395775740827189,51.90534212179643],[4.394588268717562,51.905280860690475],[4.394325788762116,51.90516664123538],[4.393944436876657,51.90505822192757],[4.39355980725573,51.905098127453876],[4.390784240611101,51.905784027024346],[4.390743814167001,51.90574358225214],[4.390627183337516,51.905561773406326],[4.392885010251931,51.90491060111529],[4.392818603864563,51.90482172371549],[4.390768261600773,51.90541299973135],[4.390739207223726,51.90539018234587],[4.390658785939372,51.90540859268599],[4.39067667125313,51.9054382727475],[4.390516319358267,51.905490180747876],[4.389168031002267,51.90582190475798],[4.389224691095608,51.905909056511284],[4.390395839055725,51.905622265762986],[4.390455544377092,51.905632462196465],[4.390570061287,51.90580648781449],[4.388296389951854,51.906357659176805],[4.388261482703531,51.9063072315925],[4.387578632154746,51.90647566483035],[4.387640363677964,51.90655574221849],[4.387049771780445,51.906639729284024],[4.386364149983327,51.90570330684886],[4.385694305937228,51.90460974908489],[4.385747470931177,51.90455724881115],[4.386552721854352,51.90435468628273],[4.386602826355213,51.90443566211925],[4.388613145904253,51.90393927460563],[4.388560767909063,51.903845893670784],[4.389138921048525,51.90370426037644],[4.389151300776904,51.90372264886255],[4.389605657707037,51.90360637101415],[4.389643080975595,51.90358450422049],[4.389775077151417,51.90354373663884],[4.391148413954324,51.90320587758259],[4.391203803063496,51.90329499877823],[4.391217993833322,51.90332750590908],[4.391252353367811,51.903337037680465],[4.393032146032854,51.90288199217115],[4.393053248232753,51.90286807618363],[4.39307731472614,51.90282721870775],[4.393032400917858,51.90277563100964],[4.394225036399797,51.90247821844402],[4.394273766646186,51.90244356471334],[4.394473227805496,51.90108532178681],[4.394588196624022,51.90049419717215],[4.394679487576558,51.89991842313335],[4.394679528930241,51.899895483922116],[4.394484936940298,51.89939657649514],[4.394226921051286,51.89874315357556],[4.39419080479921,51.89872309443666],[4.394154974973852,51.89872447793138],[4.393865079508885,51.8987055778729],[4.39139591156047,51.8986439380001],[4.391397697520844,51.89857621487462],[4.391302075824954,51.898464652665865],[4.390775197393006,51.89844652261565],[4.390637918891313,51.89844384822406],[4.390537659834848,51.898541614633864],[4.390549905577402,51.898650252728515],[4.390484455277142,51.89865239419777],[4.388611791826755,51.89874978302577],[4.388349872718229,51.898763740282405],[4.388066155083029,51.898777512494],[4.387865386539429,51.8987865944298],[4.387677635547885,51.89879848342058],[4.387105064238376,51.898861045768406],[4.386409524565848,51.89896078676216],[4.385653117803085,51.899083152074496],[4.384656632288393,51.89924616145466],[4.383308379313595,51.89946036037426],[4.383269830440589,51.89947532107906],[4.383238885460361,51.89950114237555],[4.383228267667111,51.89954066560173],[4.383227422897654,51.89957850152604],[4.383185291558278,51.89958470340024],[4.38246076684023,51.89967747763579],[4.382345789879976,51.89970533070187],[4.382244983451252,51.89976228497579],[4.382196977061488,51.89979729052403],[4.382170900761282,51.89982628131333],[4.38211529282216,51.89989582896141],[4.382098202152031,51.899932357360115],[4.382111390559344,51.90001840377923],[4.382218514261493,51.900114422316086],[4.382268742272898,51.900136065643096],[4.382672890854145,51.90032101575438],[4.382704754767042,51.900307436311955],[4.382740183893035,51.90026760388368],[4.383013947626194,51.90028747215818],[4.383435937937379,51.90047296670432],[4.383295425852813,51.90060021810685],[4.382889180071643,51.900940331640015],[4.382882360966573,51.90094311923109],[4.38285979898466,51.90096308841737],[4.382778321179146,51.90093656693775],[4.382681555057884,51.90102330928358],[4.38265993598811,51.90105895409145],[4.382666985117168,51.9010834011567],[4.382678271353739,51.9011033001215],[4.382736017318642,51.90117809576732],[4.383162656714268,51.901711186442164],[4.383315289075218,51.90191044339218],[4.383318308256801,51.901914496199],[4.383325746972733,51.90194423020355],[4.383310377267438,51.90197195988639],[4.38327721734275,51.90199179995573],[4.383055777774207,51.902054214166974],[4.383055402604957,51.90208812595691],[4.383657151963201,51.90282179638798],[4.384266575020033,51.903587763113215],[4.384304956094749,51.90388991876369],[4.384268299365761,51.903900680180044],[4.384183046198231,51.90392645167381],[4.383838372259274,51.90373350247598],[4.383423287850209,51.90322708435104],[4.382888260181882,51.90255392981612],[4.382625205089847,51.9022166193505],[4.382458272745796,51.90227183632178],[4.382406077599398,51.90226599578354],[4.381734587005089,51.90245985594019],[4.381037025585028,51.90369275773713],[4.380374791858904,51.904865660798514],[4.380507740045474,51.90492051730931],[4.380370378559292,51.90516922196582],[4.379558053302028,51.90659260350816],[4.37922554632954,51.90718889572124],[4.378770828647598,51.90797918771685],[4.378142896670781,51.90908574714836],[4.378032313311575,51.90911861367508],[4.376180371587227,51.908716497827484],[4.376135326639245,51.908683229004914],[4.376127607263044,51.90864836668249],[4.376208807163044,51.90847450146883],[4.376226799514445,51.90847514165646],[4.376235259243282,51.90847637399878],[4.376495406454151,51.90801018384974],[4.376918408128177,51.90725296747043],[4.377223921377357,51.906706158050234],[4.377501229436663,51.906209506081915],[4.377917862999031,51.905463782107006],[4.378358956784827,51.90467521896844],[4.378241242181806,51.904612625544665],[4.378154050018024,51.90459449237727],[4.378307822798305,51.90431949486864],[4.378386382912947,51.90424370102507],[4.378355828843194,51.90423434197344],[4.378409542794646,51.90413507160143],[4.378150447698531,51.90408030704648],[4.378093295078227,51.90417801966574],[4.378061788676434,51.904171600708224],[4.378045985995707,51.90426317844241],[4.377973423543809,51.90439415231692],[4.377291869616212,51.90423132405981],[4.377144270955077,51.90401389104645],[4.377787412428748,51.90285762385279],[4.377619977218782,51.9028176590853],[4.37754465314323,51.90283481884483],[4.377564430068525,51.90291501581192],[4.376565139942138,51.90314109517827],[4.376451321826407,51.90302866674558],[4.376195006986369,51.90242411721547],[4.376198779636465,51.90240949780923],[4.376364721673289,51.902233943500995],[4.376384477284614,51.902215506478136],[4.376246194672516,51.90189379151027],[4.376350852480243,51.9017850096468],[4.378995765423579,51.90135271678303],[4.379236087600156,51.90123046247381],[4.379373690289638,51.900990830891644],[4.379076924986861,51.90091247295347],[4.379051801674103,51.900850881372826],[4.378944899267036,51.90086049906892],[4.378863735035732,51.90061087370289],[4.378949249476937,51.90052399296579],[4.379002557726231,51.90048597800337],[4.379231106887228,51.90038303866767],[4.379445024495899,51.90028403637418],[4.379479341553377,51.90027703172943],[4.379520445319837,51.900274914100706],[4.379666603509492,51.90017366913914],[4.379777221058903,51.90010178885781],[4.379786846947938,51.9000614106713],[4.379744097923764,51.900023280986446],[4.379674649350331,51.90000919949662],[4.379578681040591,51.900011073216405],[4.378340420049113,51.900202749739165],[4.375548298610553,51.900656246782866],[4.373203608854404,51.901028714456224],[4.371696989751703,51.901269582417385],[4.371614103690495,51.901282832971134],[4.371561671124431,51.90149707472045],[4.371817912958951,51.9020677065752],[4.371995488241987,51.90203594431995],[4.372166545849677,51.90246313995677],[4.372000823879492,51.90248073504145],[4.371785397958419,51.902486008095124],[4.371586154639446,51.90245574645594],[4.371398818916231,51.90240893911134],[4.371206833374925,51.90239776633167],[4.370872512307797,51.902390118230734],[4.37043819319388,51.902383982390226],[4.370026830590275,51.902382800586444],[4.369666518196582,51.90236664978687],[4.369414893711746,51.90235644167376],[4.369261264706576,51.90234948563155],[4.369130046389585,51.90233217780263],[4.369064697131809,51.90231686082774],[4.369007691558857,51.90229686998587],[4.368965665396226,51.902272622347304],[4.36893084514321,51.902243250553234],[4.368902750243517,51.90220950551175],[4.368876767653134,51.90214794019538],[4.368810108988794,51.90178947005675],[4.368778484070932,51.901613912707795],[4.368765150880614,51.90158476304643],[4.36873965430225,51.90157104973837],[4.368693244940346,51.90156643168342],[4.368634505039382,51.90156916749779],[4.368151461818183,51.901588521127934],[4.367958811524132,51.901596090760684],[4.367524186617035,51.90161339884343],[4.367425174862472,51.901621591390054],[4.367274686251575,51.901625638114446],[4.367055328939585,51.90163250252867],[4.3665508850397,51.901645101896435],[4.365844718829148,51.901672593272615],[4.365845527910913,51.90206877655709],[4.365841740472641,51.902967326742896],[4.36584112730498,51.902977047388646],[4.365845212402585,51.9030095957],[4.365850952179517,51.90302751549716],[4.365864042729191,51.903050649818375],[4.365894252082998,51.9030795150283],[4.365933698216043,51.90310029860121],[4.365979786783353,51.90311589936876],[4.365984447933288,51.903127824983876],[4.365979278651758,51.90319201284249],[4.36591801363155,51.90332634962884],[4.365805431568055,51.903561347320576],[4.365076121357525,51.90519597713516],[4.364939433629717,51.90550979818588],[4.364805201413251,51.90580317005349],[4.364207562062171,51.90714255217765],[4.363820564667226,51.90799233549472],[4.363756262684954,51.90817395319258],[4.363743509717334,51.90820427848278],[4.363714495302628,51.90825242193226],[4.363669907706652,51.90829198018513],[4.363614267910289,51.908322902714545],[4.363567835990898,51.90834132997802],[4.363545713988371,51.90834717780664],[4.362650879233571,51.90847493194059],[4.361950880703281,51.908575033277764],[4.361523767405119,51.90841909467262],[4.360677614899663,51.90809063405483],[4.360641016800347,51.90800945122191],[4.36075003026756,51.90778208574576],[4.361103168213994,51.90696702914283],[4.360904030408005,51.906763133623905],[4.360566811644641,51.90671262149681],[4.361064797186343,51.905615811538965],[4.36165848973781,51.905716126509226],[4.361683291034169,51.9056402376316],[4.361284897653465,51.90557492375494],[4.361742728980556,51.90455148813645],[4.362383552276953,51.9030896577107],[4.362464877687325,51.90289534488779],[4.362565679291023,51.902653318019794],[4.362616410294391,51.90262046373465],[4.362828535302311,51.90259139589962],[4.363380232943806,51.902508206556234],[4.363642491578831,51.902472437787274],[4.363782012081573,51.902423708982504],[4.363824892572919,51.902397920287385],[4.36385650944218,51.90236014297809],[4.363876757395167,51.902315131269155],[4.363755480140799,51.90190024807701],[4.36369137706424,51.90167612791845],[4.363660841652446,51.90166634898998],[4.362403983553238,51.90165063704763],[4.361374188908048,51.901625003699955],[4.359483247051653,51.90159658764691],[4.359026582264387,51.90155929590676],[4.358491465343734,51.901508838086144],[4.357112230367922,51.901413209434594],[4.355470098883381,51.901300594656355],[4.355441059923424,51.90131858714232],[4.355342675215785,51.90230489327916],[4.35521787070634,51.90229010713778],[4.35499300685986,51.902998921227486],[4.354834694097391,51.903521681266184],[4.35492646997049,51.90365235017628],[4.355663940405386,51.90385387658883],[4.355709553424852,51.903792541247725],[4.3570940786163,51.9041957172541],[4.358151886309304,51.90450549788419],[4.357825048820582,51.90565045404003],[4.354224342305025,51.904585106446405],[4.354209965452731,51.904603650004994],[4.353373682468277,51.90435898299144],[4.351755291674996,51.903885882939655],[4.350764592462754,51.90359685142105],[4.349668656813148,51.90327818071943],[4.348972927993996,51.90307601535642],[4.348914448943952,51.90304597906759],[4.348874550185442,51.90299164811897],[4.348865977869017,51.90295069081803],[4.348887627478795,51.902921912674515],[4.348944149832952,51.902793393429526],[4.349008096319221,51.902647993864306],[4.349024518858648,51.90259378483697],[4.349060747786014,51.90256978094141],[4.349079204688323,51.90255710784683],[4.349120710735689,51.902537411297715],[4.349171243321568,51.90252389794391],[4.349217351204905,51.90251887595541],[4.349283098933176,51.902522324193335],[4.349744049735763,51.90265339559432],[4.350514753834872,51.90287767803436],[4.351792198935102,51.90324941088702],[4.352938324681181,51.90358137467851],[4.353060703808054,51.903540626420096],[4.353085058701771,51.903512840332304],[4.35326601832933,51.90309658365769],[4.353280572276565,51.903062751647674],[4.353274014750837,51.902789925714046],[4.35332106697884,51.90190016868794],[4.353336002546238,51.90107651022651],[4.353309970024879,51.901038228439845],[4.352053547469253,51.90067041739057],[4.351213656048226,51.90041329248119],[4.351218705379568,51.900361013468874],[4.350412485820611,51.9001446099504],[4.350194880602379,51.90041144003495],[4.349840586028525,51.900270370614365],[4.349432977056727,51.90010742394726],[4.34934555143326,51.900016920858015],[4.349394566486647,51.89986901699901],[4.349400967094524,51.899820670047625],[4.349378134047392,51.89978376665107],[4.349289764650329,51.8997574746506],[4.349176926922495,51.89975115731356],[4.349083514053656,51.8998164454682],[4.348968798328412,51.90009069929223],[4.348825942070208,51.90043884035882],[4.348438440687303,51.90136143032586],[4.348130720991517,51.90212014210249],[4.347851618081326,51.90280542410287],[4.347647529058992,51.902767512950824],[4.347267634935225,51.90269632738652],[4.34740283575738,51.90243518613732],[4.347596010592467,51.902062049780795],[4.347882848389157,51.901504663543406],[4.348024274109533,51.90116783248735],[4.347970347392253,51.90111140856542],[4.348391565436191,51.90017701459271],[4.348447099158478,51.9001795748028],[4.348674818311351,51.899641709245074],[4.348687503537308,51.899591876275984],[4.348646101403592,51.899553456673075],[4.348352604812059,51.89944383831669],[4.348268043377402,51.89944309063868],[4.348089088120603,51.89953426293532],[4.34798920560768,51.899531000196376],[4.347755342430935,51.899502770216074],[4.347575455678087,51.89946788196946],[4.347262084029948,51.89938662481042],[4.346865089071631,51.89926419428751],[4.346269376172319,51.89909005697493],[4.34558960611575,51.898893767958505],[4.345142594241046,51.89877326570555],[4.34505001567639,51.89878671450536],[4.344799128989145,51.89882967713889],[4.344706715577079,51.898835992630914],[4.344522991432688,51.89880106562851],[4.344168122182731,51.89868613513149],[4.343771030083897,51.89856845012507],[4.343389148566352,51.898458032498],[4.342606394224363,51.898227514360364],[4.342079401969357,51.89807537185638],[4.341487513476831,51.89790362254419],[4.341086868116705,51.89777400529582],[4.340900412423762,51.89769148157252],[4.340794453000648,51.89761918835827],[4.340602470663083,51.89744386092215],[4.340216265920039,51.897354800572465],[4.339443082522398,51.897209965011164],[4.338566573673083,51.89704517531918],[4.337965138450909,51.896954186360134],[4.337363705683501,51.89686319432765],[4.336869394058364,51.89679456130834],[4.336524480372099,51.896748667631414],[4.336164248076807,51.89670025833162],[4.335815436557012,51.89665670526693],[4.335315035960875,51.89660322046066],[4.334900729972119,51.8965554997939],[4.334357724759691,51.89649675909945],[4.33369174097793,51.89643619771801],[4.33334834311519,51.89642228010945],[4.332421689712618,51.89635770745922],[4.331893712694792,51.8963282198003],[4.331501496837884,51.896307137261154],[4.330868987014326,51.89627364763899],[4.330669348862125,51.896263414653916],[4.330200551688111,51.89625571306459],[4.32882113188664,51.89623106651743],[4.328432996852425,51.89622700407156],[4.328213902036991,51.896224711283466],[4.327860223847204,51.896225881653955],[4.327468323916227,51.89621690377531],[4.326899416387446,51.89622272043869],[4.326392271008459,51.896230419674254],[4.326137409100641,51.89625663839873],[4.324937425928733,51.89631793773399],[4.324084596904482,51.896361218279495],[4.323925678606058,51.896373290583526],[4.323687262447574,51.897440520619384],[4.323758307352959,51.89744691660305],[4.323575773363942,51.89827087553011],[4.32347982918944,51.89869134213501],[4.323141141726446,51.90017556801316],[4.322003204132902,51.90007593418977],[4.322409182982844,51.89826427860539],[4.322279747526731,51.89825758631111],[4.322396041492643,51.897812923405354],[4.32248800260102,51.89755519962926],[4.322631590037273,51.89700200765895],[4.322753539220372,51.896496765160286],[4.322744449915239,51.896485946413556],[4.321118258858151,51.89665584762084],[4.319136661754794,51.8968655675427],[4.319134666259104,51.89689758602575],[4.31618848996444,51.897204948097254],[4.313868130632027,51.89744406240952],[4.31156996675314,51.897672534900344],[4.310440368847562,51.897791548283905],[4.310670650005029,51.89868694991603],[4.308867198324096,51.89886021408361],[4.308641858909419,51.89796439024674],[4.308594992519241,51.89796710705114],[4.307836939030525,51.89803278537238],[4.307692710502978,51.8980468404315],[4.306872308587172,51.898127517558805],[4.306192300855867,51.898194595038746],[4.30556589591411,51.89825972605938],[4.304620234223454,51.89835918981968],[4.303683334682703,51.89846629550918],[4.303329642917171,51.89850718708285],[4.302874552014459,51.89855979831878],[4.302037756126893,51.898660938162564],[4.301149573467388,51.89876885118984],[4.300157610094115,51.89889241802004],[4.299316993235702,51.89900142249313],[4.29853387530266,51.89910956945299],[4.297778606118438,51.89921421204207],[4.297474065791062,51.89925843622975],[4.296994513784208,51.89932807471745],[4.296174926076516,51.89944824544421],[4.295543266736155,51.899550093281924],[4.294519132691845,51.89971951715084],[4.293652911684092,51.89987633420161],[4.292674637499007,51.90006481203784],[4.290956864272141,51.90040642803642],[4.290700826928198,51.90045734630504],[4.290609976656599,51.9004754139602],[4.29056443802506,51.90048370825732],[4.29051967897012,51.90049578518642],[4.290417437766032,51.90052767390557],[4.290385491191417,51.90053763841732],[4.29035029269144,51.90054759863149],[4.290217529131152,51.900590026779035],[4.289811390545512,51.90071670218854],[4.289372449412927,51.90085353020574],[4.289356048938756,51.90085868046951],[4.288812034399298,51.90102891736324],[4.288473238070184,51.901135550219394],[4.288027012835226,51.901276602775624],[4.287569068076504,51.90141724733739],[4.287433697685842,51.90146230961034],[4.287350386773651,51.901498690277606],[4.28728387613583,51.90153497646485],[4.287101466824126,51.90165507584179],[4.286697195578479,51.90191302515115],[4.286373576319067,51.902115661714994],[4.286302970383046,51.90215474051825],[4.28622560497667,51.90218856929782],[4.285658509814009,51.90240885088387],[4.285172695240265,51.90259429571869],[4.28456526282445,51.902827083968184],[4.283940711811074,51.90306672878098],[4.283339562984065,51.90329579438451],[4.28227906353286,51.903700731699296],[4.282017876294825,51.903800830768034],[4.281533000231512,51.90398706057295],[4.28125138666421,51.90409387828354],[4.280919524050608,51.90422060029366],[4.280888073958894,51.90423192695768],[4.280298083327412,51.90445863721606],[4.279728177629796,51.90467714351884],[4.279306303840895,51.90483787554765],[4.278742506413829,51.90505190785552],[4.278307189690961,51.905218025170406],[4.277865619384632,51.90538773138361],[4.277444900329286,51.90554976751101],[4.277144722000285,51.905663708205545],[4.276854008467797,51.90577559819611],[4.276668761786274,51.90584858211814],[4.276599388524501,51.90587247541104],[4.276518928291585,51.905899248215476],[4.276476597814416,51.90591223720589],[4.276431146946977,51.90592023475895],[4.2763841024153,51.90592297394787],[4.27635791433789,51.90592110027357],[4.276298838451694,51.90591894803841],[4.276222903030642,51.90591080521257],[4.275871613267069,51.90587107794385],[4.275608451052054,51.90584071388512],[4.274956321099156,51.90576814129589],[4.274629516889735,51.90573145561777],[4.274453230029535,51.90571239265395],[4.274201839905015,51.90568383582997],[4.274147561904446,51.90568067444435],[4.274093267131944,51.905683708093036],[4.274040784799478,51.90569283634878],[4.273987930551934,51.905706888827375],[4.273748339964364,51.90578400063899],[4.273425116687611,51.90588560534669],[4.273285482496967,51.905937982037884],[4.272904444317305,51.906077761863195],[4.272676172807113,51.90616417459379],[4.271815033715927,51.90650979286112],[4.271448733090407,51.906657339567616],[4.271096423134684,51.906800289815884],[4.270387156892697,51.90708691607453],[4.269952975077709,51.90725969233942],[4.268196261247968,51.90797000746199],[4.267965032326878,51.90806353822642],[4.265884667850392,51.90890468305965],[4.265545193058879,51.90904193422732],[4.262520407615725,51.91026479446088],[4.259676010729718,51.91141459375696],[4.259145881543502,51.911636928168825],[4.259131337922735,51.91164308087041],[4.258689585947364,51.911818619805274],[4.258568526379058,51.911864379856034],[4.25845040351019,51.911903156560555],[4.258315200320498,51.91196226402191],[4.258175088621533,51.91202581867856],[4.257961836762073,51.912119502694324],[4.257919099386165,51.91213707004381],[4.257703504879251,51.91222560734717],[4.257385150076677,51.91234299989119],[4.257360346730745,51.91235831242263],[4.257310677530726,51.912379857965284],[4.257186132059926,51.91242540331184],[4.257002471511506,51.91249240310279],[4.257162311713714,51.91267911389764],[4.257035407908031,51.912720141904934],[4.256878971991143,51.91253678961457],[4.256719204588727,51.912595748883206],[4.256568825009238,51.91265129254111],[4.255372698918126,51.913080420180165],[4.255081620540015,51.91318197890916],[4.254590061891758,51.913348573106035],[4.254145140345177,51.91349278282184],[4.253868834913725,51.91357893000909],[4.253518796842634,51.913683871465196],[4.251869196814114,51.91417861283595],[4.251642609073439,51.91424689753482],[4.251096801677222,51.91440800910205],[4.25075121927129,51.91451442370578],[4.250729689148966,51.91452086737909],[4.250575596865935,51.914578974358236],[4.250304203202222,51.91469761380663],[4.250222580185839,51.91461142577142],[4.250119675451868,51.91447901067664],[4.250038224004943,51.914412153257906],[4.249804043884074,51.91448161943302],[4.24956842804412,51.914550352125865],[4.249334205529155,51.91462143498657],[4.249102220921064,51.91469595488536],[4.24885596947825,51.91476557195763],[4.248663152323426,51.914831661135096],[4.248656473657173,51.915118256352486],[4.248218615417866,51.915240399272186],[4.247044204952187,51.915541020508705],[4.247032158026191,51.915528858342405],[4.24682129665615,51.915595488592956],[4.246800807182707,51.91560670583335],[4.246775366357338,51.91562974053499],[4.246762655262929,51.91564948293116],[4.24675927613614,51.91567381039532],[4.246771573042191,51.91570476207541],[4.246791043872674,51.91572796291687],[4.247994470661831,51.9168060919382],[4.248716427604563,51.91746829748136],[4.248767308012337,51.917514095006425],[4.248466826401199,51.91764080564195],[4.248460531282491,51.91764829542389],[4.248576450518788,51.917756421115406],[4.248385703742135,51.91782621635561],[4.248282187713147,51.91772782802318],[4.24823144624798,51.91773965124969],[4.248174874730442,51.91776355312859],[4.248108212929846,51.91771526524646],[4.24802626742679,51.9177423369502],[4.246634426452202,51.91648089180217],[4.246048510005505,51.9160157750537],[4.245978236400105,51.91603549776524],[4.245914871677217,51.91597204915919],[4.245417665567917,51.91613522457452],[4.245053405305421,51.91625483476252],[4.245013811292198,51.916268472845964],[4.244807890513141,51.916340630842434],[4.244654145850944,51.91639594691697],[4.244460081197422,51.91647055671908],[4.243715580919818,51.916771728799056],[4.24331584165288,51.91694276524804],[4.242979881996493,51.917092218425715],[4.24263615248861,51.917249864891666],[4.242343269704699,51.917385802789326],[4.242104136525423,51.917500240558354],[4.241898113435701,51.91759882026002],[4.241722970537101,51.91768349791872],[4.241594499979107,51.917750652215304],[4.241404844205028,51.91785145808148],[4.241197824151514,51.917966207104364],[4.241009846368273,51.91806954563237],[4.240929158580597,51.91811550164561],[4.240803479890257,51.91818708694386],[4.240705976324969,51.9182425869308],[4.240301177321222,51.91847990293642],[4.239767292030201,51.91880809492534],[4.239167627024749,51.91919002563873],[4.238837191006975,51.91941224234543],[4.238662800210213,51.919529553038764],[4.238413336357334,51.919706086542185],[4.238209070138129,51.919860319142686],[4.237521227836304,51.92040911484699],[4.237053771852833,51.92079268769709],[4.236758105094453,51.92104714996032],[4.236217619951102,51.92152295127879],[4.235975066835295,51.921747267446115],[4.2355581092387,51.92213286889301],[4.234844670288361,51.92279277252119],[4.234446376935771,51.92317036138447],[4.234058940976191,51.92353816751027],[4.233860163423992,51.923726514972586],[4.233756368569256,51.92382239820293],[4.233409589567168,51.92415212814909],[4.23331272346396,51.924244213726],[4.233077119263788,51.92446797470113],[4.233048060219214,51.92449555536439],[4.232895462156367,51.92464039830215],[4.232837641214345,51.92469529278089],[4.232379715423654,51.92512900990214],[4.23198008854069,51.925505948238126],[4.231638938698974,51.92583060463917],[4.231380401253666,51.92607481159357],[4.231092665749647,51.9263461473609],[4.230920730737449,51.9265074273022],[4.230735967542784,51.92668125532162],[4.23045536806371,51.92694618766471],[4.230088011101191,51.92729395323086],[4.229888754870676,51.92748264895815],[4.229708928752119,51.927650771022954],[4.229450534720468,51.92788859301483],[4.229211703943471,51.92810629196237],[4.228952078068663,51.928335291492104],[4.228531551327176,51.92869160728789],[4.228203655396861,51.92895148373817],[4.228029368454978,51.929084780449045],[4.227803275396001,51.92924785898565],[4.227303816585713,51.92960824599812],[4.226988220341613,51.92983048654235],[4.226465058884026,51.93018479323164],[4.226180920420459,51.93037102657139],[4.225659257513724,51.930700624690424],[4.224746872897598,51.931260611619045],[4.223982353237604,51.93171373696411],[4.223329387086007,51.932092454036294],[4.222951847249084,51.932301935415474],[4.222361694195514,51.932618525804656],[4.222072305553143,51.93277044911816],[4.221165941414753,51.933235184560296],[4.220760196247261,51.93343808690294],[4.219962558613482,51.93383081110583],[4.219316150267082,51.93413936693686],[4.218791312401059,51.93438611445688],[4.218518598562295,51.934511047976855],[4.218148383143149,51.934677709246024],[4.217826046429395,51.93482057522616],[4.217348276425463,51.935029491261936],[4.216603777729408,51.93534514634544],[4.216165561971071,51.93552577644938],[4.215847940078097,51.935654661133654],[4.215487366376417,51.93579660044088],[4.215185658187561,51.93591179884204],[4.21476710568981,51.93606852919192],[4.214607028346132,51.9361284176745],[4.21413505756157,51.93630348996081],[4.213506836968001,51.9365364181024],[4.21303709015985,51.93670953064347],[4.212989577988713,51.936713460728015],[4.211481542338869,51.937267125605096],[4.210781652794395,51.93750903074088],[4.210712061816804,51.93754438401356],[4.210647534635357,51.93758323432451],[4.210588529357326,51.93762530401075],[4.210460875284523,51.93768506195961],[4.21025381563883,51.93776146360298],[4.209272743315301,51.93811057048006],[4.207666413543237,51.93868207906363],[4.20722353265107,51.93883835898327],[4.206471735214183,51.9390834931362],[4.206123954738596,51.939195778775705],[4.205776596903517,51.93930851709646],[4.205690182137232,51.939337132765935],[4.205604046235582,51.9393662006279],[4.205497796789665,51.9394024372818],[4.205331349769215,51.939460271658014],[4.205192030463017,51.93950965916606],[4.203705070721768,51.94002891931816],[4.203665731684639,51.940042636116004],[4.202814252210588,51.94034903773283],[4.201606263682366,51.94078298895395],[4.201222214237268,51.94091287260167],[4.199928630600126,51.94137048341769],[4.199346793402198,51.941576388496564],[4.198087489419128,51.942023269070944],[4.197820015067003,51.942122139883836],[4.195880976286801,51.942816868661346],[4.19509056663184,51.94309255180747],[4.194592198822312,51.94328103211874],[4.194548413099516,51.943297667184126],[4.194515943278933,51.943309922494095],[4.194195114407125,51.94342963247435],[4.193877091559306,51.94355216746596],[4.192569851832372,51.94405810054687],[4.190917524141974,51.944729413166264],[4.190714100069734,51.944814267492596],[4.190438369281764,51.944926970736795],[4.189446673800336,51.94534628014835],[4.189260418578126,51.94542528421502],[4.188480551926133,51.94576044859186],[4.186995146081138,51.94641866639722],[4.185711130161478,51.946996493996394],[4.185327322725332,51.94717336948747],[4.184946216642798,51.94735246289981],[4.184574653181215,51.94752817482604],[4.184345524731264,51.94763765509298],[4.183777973007104,51.94791266623616],[4.182443508093398,51.948567607876356],[4.181024099269169,51.94926625535751],[4.179871065331141,51.94983376141603],[4.178865193984011,51.95032879490081],[4.177274797926172,51.95111149070862],[4.173756620776572,51.95284274941329],[4.173436753099646,51.953007903529084],[4.173136212561763,51.953168402230084],[4.173109227013764,51.95318718046475],[4.17309453143461,51.9532033888627],[4.173096745942405,51.953218333602216],[4.173141801019307,51.95325763161381],[4.173535212341011,51.9535579728282],[4.173646270221668,51.953636694778396],[4.173759653753137,51.953704743614125],[4.173834946929471,51.953755679618695],[4.173872796886823,51.95378708249318],[4.173800916654459,51.95382517361878],[4.173607204509701,51.953919357730705],[4.173389640120366,51.95402938577361],[4.17266428302885,51.95439395423785],[4.172286209822389,51.95458583091906],[4.172311849020397,51.954606739233576],[4.172329860481815,51.95463049288673],[4.172339449037832,51.95465604632718],[4.172330252501846,51.95468998037965],[4.172311032702598,51.95472227194727],[4.17216704174545,51.95479062939469],[4.172043912482222,51.95485686508554],[4.171173400759317,51.955390806871655],[4.170135093833218,51.955995367928494],[4.168509510340397,51.95692822916452],[4.168438410294167,51.956969381437844],[4.167479532826073,51.95752880838876],[4.167338754061452,51.957612205101825],[4.166882595666269,51.95787543701458],[4.166759528430749,51.95792375086081],[4.16663319781297,51.9579687326137],[4.166503836023606,51.95801029747882],[4.165366482147378,51.958362993439856],[4.164944463917077,51.95840301406906],[4.163821220898183,51.95841866119198],[4.163206144220059,51.95843122793406],[4.163080686233846,51.95846461995928],[4.16303392079797,51.95848283046184],[4.163011643763136,51.95849940816036],[4.162524711046473,51.95875340382539],[4.161114219874098,51.95949954326489],[4.158939794451951,51.96064390695075],[4.157792419419958,51.96124623268449],[4.156949295274845,51.96167797133065],[4.155967497515074,51.96219790144994],[4.155082326361715,51.96266664337173],[4.152062718655607,51.96425090010732],[4.151722649339634,51.964429307098946],[4.150354933891241,51.965146823938944],[4.149906057148105,51.96538229125755],[4.149451895292048,51.96560871216875],[4.149390703756162,51.96564877980683],[4.149306162670793,51.96569545135056],[4.149253335336755,51.96564806210467],[4.148964671433439,51.96579379297695],[4.14868592474861,51.96593819831784],[4.147250389879983,51.966681853610176],[4.147067093497004,51.966776803798936],[4.146960913194603,51.966832764973745],[4.14692932357469,51.96684366823463],[4.146659844420394,51.96693709948382],[4.146490943379682,51.96706134509147],[4.146200985823676,51.967205887053304],[4.145451837725382,51.96756761204793],[4.14530463637264,51.96763859991243],[4.145130878303062,51.96772252113083],[4.144645489636392,51.96795551559497],[4.143013545136462,51.968710068226834],[4.142983619318163,51.96874480917223],[4.142958290957807,51.968755507942035],[4.142831759490981,51.96881556492492],[4.142521144147276,51.968953676908264],[4.142545419909572,51.968975687438956],[4.142474230316146,51.96900801398516],[4.14243832558611,51.969053658230706],[4.14200317659478,51.969253015028464],[4.141980622704399,51.969273900653896],[4.14175490776216,51.96937317760013],[4.141673711227579,51.96940944280431],[4.140285892708972,51.970028562977625],[4.13985142728141,51.97022237648872],[4.139552712184882,51.97035562967463],[4.138303343460196,51.97090334126404],[4.137053564193496,51.97145120439591],[4.136682240325524,51.97160429697105],[4.136646322686079,51.971618837027364],[4.135610548645664,51.97203956726334],[4.135052169766055,51.97226635254728],[4.134616123010145,51.972443469727374],[4.134413499305333,51.97252577081469],[4.134366613865975,51.97253888365378],[4.13423238853352,51.97251882577832],[4.133977591548639,51.9724808047777],[4.133973665336304,51.97249110042743],[4.133691316666664,51.97244907903796],[4.133296736964168,51.972631577291295],[4.133079645466347,51.972743874061365],[4.132838627096998,51.97286858993352],[4.132185313241283,51.97319997144338],[4.131501976410114,51.97355323199609],[4.131527216366909,51.97357183923739],[4.131282787657171,51.97369327948368],[4.130954347505659,51.97377418001155],[4.130752081490377,51.97362693527846],[4.13046784814276,51.973735184111646],[4.130375498618605,51.97376889539669],[4.129843485383465,51.97397247636273],[4.129401099198337,51.97414069733922],[4.128797022755173,51.97436525669474],[4.127853257727824,51.9747336881647],[4.127413618774734,51.97490202106236],[4.12687100100592,51.975109070824786],[4.125828819978808,51.975508163336],[4.125439780615197,51.97565716556992],[4.125128985605677,51.97577734195058],[4.125242860831741,51.97589452337487],[4.12519951854306,51.97590367674353],[4.125120457957802,51.97593042511791],[4.125270481787748,51.97608727681819],[4.125349255376379,51.9762104638299],[4.12519208462116,51.976266308100406],[4.125477269454745,51.976570356451575],[4.125727069457493,51.976849148116365],[4.125749836563347,51.97687285387333],[4.125931662521737,51.97707400250203],[4.125972934674436,51.97709709760499],[4.126007460542088,51.977132345566744],[4.126008564011486,51.97723806945327],[4.125741605975906,51.97733121077538],[4.124569918864585,51.97773690393445],[4.124530841576821,51.977749608605016],[4.124012527054797,51.97792930971386],[4.123944213966477,51.977946374588036],[4.12387996758567,51.97795853907973],[4.123851298502023,51.97796201470768],[4.123803974969572,51.977958891521936],[4.123783580551951,51.97794905412076],[4.123774596492024,51.97795282295191],[4.123715844558528,51.97789394240467],[4.123688745172748,51.97786380744253],[4.123294364198039,51.97746947328589],[4.123314418624415,51.977441147391424],[4.123259285189111,51.97738510739078],[4.123219985310133,51.97738504467872],[4.123135552285983,51.97729748224183],[4.122982683335802,51.97735534743438],[4.122949729577015,51.97734186914746],[4.122873587757328,51.977368108056815],[4.122828165638361,51.977394227655736],[4.122667545525352,51.97745335749859],[4.122529171683829,51.97754427812617],[4.121821391113974,51.977788901515936],[4.121746000996934,51.97770592990905],[4.121616121931532,51.97756277412147],[4.121486539798541,51.97741944159384],[4.121357100017229,51.977276200337485],[4.121343126345947,51.9772607684493],[4.121045764786793,51.97734772907291],[4.120906171437317,51.97735287840945],[4.120100225738979,51.97761468265364],[4.119887248556624,51.97768240107392],[4.119871746650496,51.97768732910209],[4.119747805976193,51.97772673697895],[4.11894352229066,51.977982457560465],[4.118919841309119,51.977992933466645],[4.118901202581016,51.97800675824884],[4.118888807539684,51.97802303785998],[4.118878437073594,51.97803839813688],[4.118874662506872,51.97805487676372],[4.118877727867825,51.97807141116026],[4.118887439120186,51.978086935819775],[4.118828547078238,51.97810535779316],[4.118794986757509,51.97811335581897],[4.118778006673728,51.97809626507235],[4.11875342897863,51.97808316087843],[4.118723572446324,51.978075280870115],[4.118690366030823,51.978074263888],[4.118657487237887,51.97807730992072],[4.118626224783621,51.97808429892828],[4.118600030944389,51.97809797656751],[4.118581085653309,51.97811563635245],[4.118570907751648,51.97813586719262],[4.118570310239186,51.97815704722996],[4.118605963774292,51.97834269770466],[4.118181593743089,51.97870460727809],[4.118072084363988,51.97881929575258],[4.118029828137647,51.97897003702487],[4.117917462075553,51.97894904856346],[4.116931408307823,51.97921059582111],[4.114917426319882,51.97979245127808],[4.114771134713076,51.97983329770259],[4.113522996461031,51.980121196183916],[4.113403670725119,51.980155591032286],[4.113320497598211,51.98018300616724],[4.113243112602496,51.98021174240592],[4.113190917433617,51.980240212053836],[4.1131454329121,51.98027837273317],[4.113086501653167,51.98033904037875],[4.112881043885419,51.98052037307637],[4.112785088890095,51.980603112346735],[4.112719406281232,51.98065543666754],[4.112677823580467,51.98068438063179],[4.112630703105171,51.980713534256004],[4.11254019836425,51.980758128553994],[4.112517088889082,51.98076713696124],[4.112447822479259,51.980786701845],[4.112069685463184,51.98086647231648],[4.111875232969481,51.98091650140229],[4.111824711354155,51.980927010322986],[4.111732846577612,51.980947768049724],[4.111546584427423,51.98097595190349],[4.111401260188393,51.98100296140029],[4.111307959122308,51.98102307398134],[4.110797547060385,51.98111111395247],[4.11073693598003,51.98112313098125],[4.109699586669478,51.98129650738556],[4.109639590791867,51.9813074518367],[4.108521716058748,51.98151194472518],[4.108063434952633,51.98161438281029],[4.10804768529165,51.981640819417564],[4.107408083923059,51.981766362956904],[4.107195582935685,51.9818115756908],[4.106778455191766,51.98190032384879],[4.104150742405998,51.982459337806034],[4.10255483908113,51.98279890468417],[4.101730487964843,51.98297435725253],[4.09862314633634,51.98363576335649],[4.096004327585402,51.984193083293775],[4.095322077221065,51.9843382804544],[4.09555424525181,51.984480709090306],[4.097432059960116,51.98542045199955],[4.09882037973752,51.986115153967454],[4.101105537831786,51.98725858643715],[4.102408708838504,51.98791060455941],[4.105997182614474,51.98970585473603],[4.108453112058254,51.99093432980307],[4.109586232613799,51.99150108896119],[4.112127208402194,51.992771938710625],[4.115801892292821,51.994609616251594],[4.116764904630933,51.99509122721507],[4.120354531742744,51.99688595149813],[4.120743820944017,51.99708062112911],[4.122092070440232,51.9980337663241],[4.123618805437438,51.999001307090715],[4.125421337083869,52.00010698095779],[4.125873911091712,52.00038348320286],[4.126836810609553,52.00097566406222],[4.127862445411194,52.00160635224163],[4.131985727262696,52.0038971163343],[4.132333799253034,52.00407778828247],[4.131965669889621,52.0042225694682],[4.131893718788851,52.00426732267942],[4.131864633048533,52.00429019525029],[4.131862167361569,52.00432935233468],[4.131879831865474,52.00435077296304],[4.131911660772531,52.004357890242034],[4.131952106229538,52.004347013397826],[4.132449269916914,52.00415252948183],[4.134364158971645,52.00571033547952],[4.134367174557754,52.005710211172605],[4.134572758664216,52.005896951486704],[4.132742246170097,52.00664285241099],[4.132720590468445,52.00665735466432],[4.132721577612364,52.00668765836127],[4.132728392037983,52.00669814933433],[4.132742804321693,52.00671664066771],[4.132764199845187,52.006733867062685],[4.132798790370932,52.00674282032551],[4.132844555329465,52.006739191121184],[4.132925093966764,52.00670460559615],[4.134662368911679,52.006001007195195],[4.13506855542161,52.00628568427499],[4.135071299103729,52.00628637865778],[4.1366521209107,52.007507925339596],[4.136661889142968,52.00750697381934],[4.136825941688046,52.00764525181342],[4.13619115358755,52.007899216623635],[4.135556704477211,52.00815303963118],[4.135521560039201,52.00817116535919],[4.135539967403978,52.00819009434222],[4.135528654176588,52.00821444226125],[4.135544301570479,52.00823153508771],[4.13556415805863,52.008245517513686],[4.135603051147725,52.00825954957238],[4.135623075712771,52.00826177607698],[4.135636333008804,52.00826170132397],[4.135665789442937,52.00825165916849],[4.136830539026914,52.0078001588773],[4.137058798497263,52.00802164187428],[4.137059640295169,52.00802169845823],[4.137059564704139,52.00802179743386],[4.138055896239477,52.008985980388545],[4.138061015699841,52.00898506210863],[4.138194426134344,52.009120032990054],[4.136176282434617,52.00996831691779],[4.13614078327805,52.0099855401578],[4.136129339196477,52.010013527308814],[4.136123116185604,52.010029812264186],[4.136147648639272,52.010061570718555],[4.136198793372557,52.0100709326357],[4.136242614134606,52.01005878675843],[4.138193058007129,52.00923185138076],[4.138272318358643,52.00919824642571],[4.138387184952894,52.00931054583963],[4.13838783324983,52.00931059496722],[4.139547738543332,52.01043865831187],[4.139556278851964,52.010437934437256],[4.139649611787233,52.01053772432587],[4.138493278107978,52.011004569411995],[4.138456560528948,52.01102526817507],[4.138450194314142,52.01103783025638],[4.138447684492464,52.011044257770884],[4.138449431001813,52.01107672680206],[4.13848224935843,52.011105004005856],[4.138530571094266,52.01111745414753],[4.138558565974033,52.011117041016206],[4.138632071997706,52.01108727061472],[4.139749021234704,52.0106348890157],[4.139880615335782,52.010765290165274],[4.139885427489276,52.01076620770912],[4.139884668801264,52.01076714082288],[4.140462885184309,52.01133091591709],[4.141111607395749,52.01198071544928],[4.141112258757758,52.01198065582645],[4.141139803967519,52.012008955543465],[4.139093832313554,52.01286256829805],[4.139044991386398,52.01288751635818],[4.139041415426878,52.01290816225186],[4.139040246613144,52.01292183119864],[4.139060101791137,52.01293968727054],[4.139093557306702,52.01296136408472],[4.139117361237298,52.01297076736327],[4.139145044275219,52.01297107889069],[4.139164220126196,52.01296520562546],[4.141231352656108,52.01209776576155],[4.141373612203125,52.01223903705343],[4.141377967235723,52.0122395838416],[4.141375940214361,52.0122421764021],[4.142508838156387,52.01337364725776],[4.142514917613706,52.01337242971044],[4.142608140228319,52.01347281641823],[4.141581093795859,52.01390936362902],[4.141569939024953,52.013931745169984],[4.141571000961774,52.01394752320213],[4.141582570652209,52.013970486819844],[4.141607884924595,52.01398795975796],[4.141633983106967,52.013999714961436],[4.141660302710355,52.01400460486819],[4.141720053669824,52.01399704812985],[4.141829892466036,52.0139498564721],[4.142707970796721,52.01357258974887],[4.142903790006319,52.01376548138453],[4.142911435101515,52.01376643144724],[4.142909099588664,52.013770953417485],[4.143783538809528,52.014633364638236],[4.143787428839529,52.01463340573289],[4.143785436052164,52.014635763182405],[4.144017812235515,52.01486440465136],[4.14214048083678,52.01569559018697],[4.142112853641854,52.015715649147666],[4.142085632968483,52.01573795966406],[4.142075432621949,52.01577264836075],[4.142112092055519,52.01580178312646],[4.142146465795585,52.015808421086135],[4.142185676858,52.01581131682494],[4.142220011620782,52.01580776976095],[4.142262056300785,52.015795719694594],[4.142293510254173,52.01578673972249],[4.144122158074732,52.014966534591295],[4.144461572136739,52.01527316905966],[4.144463116643157,52.015273317505915],[4.144518477381658,52.01532051918615],[4.145417050220681,52.01604673314911],[4.145427775162143,52.01604591053762],[4.145668311399123,52.016249975935594],[4.144734136970942,52.016661309255944],[4.144719061945927,52.016689546510115],[4.144721972906982,52.016715393765345],[4.144730507531369,52.0167317809873],[4.144754337457231,52.01674561496892],[4.144775023679293,52.016753554907694],[4.144804520313761,52.01675374939363],[4.145775557934708,52.01633494788792],[4.146104333480985,52.01659771284134],[4.14610413463589,52.01659836964132],[4.147303408295977,52.017559798957805],[4.147306244647505,52.017562072498656],[4.145371017574472,52.018394438238786],[4.145330511064753,52.018424474739255],[4.145301108722684,52.0184650466777],[4.145307857489828,52.01849174341288],[4.145350983976734,52.01851589351744],[4.145377491304055,52.01852989044344],[4.145418717447322,52.018533768170926],[4.145510445352016,52.018493603785636],[4.145945927658671,52.01830291714838],[4.147423504944264,52.01765589110533],[4.148986062769613,52.018906074494346],[4.148001354638734,52.019317889185146],[4.147957364562275,52.01933910761986],[4.147946937590446,52.01936579415415],[4.147954258279859,52.01938235711307],[4.147963985390425,52.01939525091308],[4.147998327819844,52.01940941961371],[4.148032549321615,52.01940741576037],[4.14886667032432,52.019071518331096],[4.149083817352902,52.01898406055616],[4.150643339203707,52.02023898473379],[4.148811350404176,52.02107305427093],[4.148670799470498,52.02113704265045],[4.148637727695149,52.02115749529611],[4.148643348741468,52.02118343385678],[4.148651838218446,52.02119415720299],[4.148662715852193,52.02120329663937],[4.148686787243974,52.021213320981246],[4.148714746833121,52.02121757032413],[4.148808524260746,52.021175301720106],[4.150730565837391,52.02030892955313],[4.152259648416102,52.02153170939015],[4.151334840514592,52.02197198705503],[4.151302578374612,52.02199691648816],[4.151288087848082,52.02201831104406],[4.151295639037489,52.02203930778579],[4.151311852139878,52.022057411111724],[4.151334945352261,52.02207277310302],[4.15137253982487,52.022076916214175],[4.151409743970513,52.02207883492651],[4.151434203642346,52.02208163559764],[4.15238652442492,52.02163423430885],[4.153186750174074,52.02227340081524],[4.153938367914265,52.02291422057603],[4.151914313964681,52.02384088885103],[4.151807106651824,52.02388997020496],[4.151778288650893,52.02392417662812],[4.15178729881025,52.02395252368146],[4.151803512550029,52.023970635923746],[4.151826769790694,52.023976920615354],[4.151860503288043,52.02397001148808],[4.151959859212758,52.02392750317142],[4.154016164755539,52.02298055025836],[4.154042682331316,52.02300315497483],[4.15543390683624,52.02419082145349],[4.155433160879557,52.024193149893435],[4.155569162597562,52.024301573624136],[4.154741143449679,52.02464920352242],[4.154699785581812,52.02467477574981],[4.15467746906647,52.02471371623427],[4.154682818381744,52.02474278878589],[4.154717806668352,52.02475277334962],[4.154769731442231,52.024744588631464],[4.154932258315498,52.02467780451241],[4.155664120609564,52.02437707072901],[4.155892528951473,52.02459276124846],[4.155901271259176,52.02459389451581],[4.156438900912012,52.025055677610744],[4.157183480587041,52.02568855741509],[4.157183444934924,52.02568863524699],[4.155100621551087,52.026574008793446],[4.155077439655484,52.02659829718739],[4.15506862692947,52.02662042579258],[4.155070517707459,52.026640688839905],[4.155090167116891,52.02665741629983],[4.155111398587354,52.02666271730012],[4.15513302386006,52.02666005815228],[4.155176057390035,52.02665362293598],[4.157273187145512,52.02576658623214],[4.157276858746458,52.025767400343355],[4.158112648115241,52.02629983178498],[4.158118278461341,52.026298991667176],[4.158992686484158,52.02692129104217],[4.157991084441092,52.02741552778473],[4.157981853393742,52.02743542295424],[4.157979062516591,52.02745694046582],[4.157994517261025,52.0274741719597],[4.158009984339118,52.02748405057176],[4.158026682618407,52.02748889021421],[4.158058216502524,52.02748732277356],[4.158088692435334,52.0274754518651],[4.159103292880675,52.02699605411078],[4.159553223178766,52.02733517385982],[4.159561310933961,52.02733580742711],[4.161319976652545,52.02882393701183],[4.161331739452383,52.02882368375426],[4.161626124786537,52.029060686565764],[4.159421725338925,52.02999778832308],[4.15939854399194,52.03002207755729],[4.159389732710327,52.030044206479204],[4.159391625575375,52.03006446945333],[4.159411278095919,52.0300811961932],[4.159432511703839,52.030086496418186],[4.159497174597209,52.03007739969811],[4.159601616031334,52.030033223752824],[4.15968810197503,52.029996640486935],[4.159813742023383,52.029943497721035],[4.16172275076986,52.029135983805716],[4.161987334648483,52.02937669623789],[4.161984121312735,52.02937983950907],[4.162144821858365,52.02951566094308],[4.16331780766046,52.030413151112384],[4.162757229381462,52.03068030012706],[4.162719958810285,52.03067840234648],[4.162331594299104,52.03087125748989],[4.162322565934174,52.03092641892488],[4.162410381849512,52.030937750767734],[4.16280150849319,52.03074941858866],[4.162811610153923,52.03072694328474],[4.163374786016275,52.03045700745727],[4.165011324210714,52.03170944794727],[4.163199808454618,52.032726794624296],[4.16314460392215,52.03277141016406],[4.163135463946023,52.03282363827134],[4.163157813979777,52.032852410689095],[4.163218909631494,52.03287445134297],[4.163296397910699,52.032860985957875],[4.163382312638482,52.0328214474456],[4.1636755277731,52.0326746592108],[4.164074446897861,52.03246951074656],[4.164927672250162,52.032007459920855],[4.16523289500393,52.03184414401079],[4.165533959353386,52.032116021231445],[4.165543905435065,52.03211695052404],[4.166984775903334,52.033219301316315],[4.168620659427188,52.0344710788111],[4.167814126352665,52.034883386067115],[4.167813157898762,52.034884053806586],[4.167807434909688,52.03488879914753],[4.167803857618994,52.03489283770396],[4.167800784369403,52.03489774172624],[4.167798314764283,52.03490547364223],[4.167798387699298,52.03491269794492],[4.167799163410525,52.034915951001885],[4.16780134970082,52.03492103354362],[4.167806719701892,52.03492818236605],[4.167810284383734,52.03493145891389],[4.16781662014959,52.03493589767141],[4.167824881880626,52.034940045356045],[4.167830355988687,52.034942085917216],[4.167838137222036,52.03494423576692],[4.167844248806718,52.034945399312306],[4.167852641991189,52.03494632490679],[4.167865417688174,52.03494634485224],[4.16786859021534,52.03494609185767],[4.167874850286906,52.03494528116061],[4.167885833766249,52.034942767425946],[4.167894977892109,52.034939397767666],[4.168727907870147,52.03454362421104],[4.169418215157711,52.035070194398905],[4.170810489893796,52.036129941648134],[4.171417769653234,52.03659465165598],[4.172132401181321,52.03711287200165],[4.171490311629171,52.037435438427224],[4.171455327807498,52.03746178346067],[4.171453801554025,52.03746581723498],[4.171452813138429,52.03747199863534],[4.171453261021512,52.037477513501535],[4.171455245619366,52.037483602450024],[4.171458286471237,52.03748879621587],[4.171461322795847,52.03749249237162],[4.171465632557535,52.03749652797551],[4.171473098620001,52.03750166585644],[4.171479132311408,52.03750474845024],[4.171486714950194,52.03750768613392],[4.171492797667673,52.03750944605612],[4.171500221356572,52.03751099060446],[4.171507896644077,52.03751196515232],[4.171520187514715,52.037512314080026],[4.171530174474291,52.03751151739544],[4.171541916823945,52.03750925295599],[4.171552742299194,52.0375056486809],[4.172229579631737,52.03717881114988],[4.175698487469919,52.03970775270974],[4.175170757756517,52.039979523552404],[4.175133587396219,52.040006309193764],[4.175130524945343,52.040013415808275],[4.175129030716211,52.04002004507114],[4.17513003443831,52.04002588294994],[4.175132897921287,52.04003377417536],[4.175137579012519,52.040040537118294],[4.175140618457521,52.04004370465522],[4.175145599532777,52.04004783961527],[4.175150493041815,52.04005106309149],[4.175156854250579,52.040054399654785],[4.175163829584011,52.0400572346625],[4.175170215402909,52.040059231223516],[4.175176905655913,52.0400608048408],[4.175182658760395,52.040061781832016],[4.175189713622795,52.040062540306735],[4.175198051842652,52.040062844564396],[4.17520638668718,52.040062519559136],[4.175214597010908,52.04006157123514],[4.175221440824937,52.04006027175911],[4.175230151182163,52.0400578669749],[4.175239193274527,52.04005429973558],[4.175813601874701,52.03978406682139],[4.17762119570074,52.0411051138355],[4.179248445569953,52.042293196236464],[4.178763833163926,52.04252421107071],[4.178763045934457,52.04252453738115],[4.178756099064087,52.04252791695063],[4.17875069913611,52.04253133936203],[4.17874663655547,52.042534576841696],[4.178741627551994,52.0425398801589],[4.178738025627725,52.0425456015203],[4.17873607587201,52.04255092364837],[4.178735347473924,52.042556361683744],[4.178736360115359,52.042563832910886],[4.178738204313628,52.042568471262456],[4.178739665399878,52.04257104721094],[4.178741897453269,52.042574169510054],[4.178746991278694,52.042579442571956],[4.178751839777595,52.04258316521754],[4.17875573649981,52.0425855872811],[4.178761736642616,52.042588606223816],[4.178769264147472,52.04259147544366],[4.178779461281941,52.042594108682835],[4.178786967492531,52.04259528236559],[4.178796862058653,52.042595947512126],[4.17880349863655,52.04259585561336],[4.178811172025701,52.04259520984735],[4.178816545248645,52.04259439755245],[4.178822812052892,52.04259304520172],[4.178826848172668,52.04259192254962],[4.179334717359398,52.04235463980724],[4.182790698941437,52.04490596516191],[4.182381423667949,52.045124237000536],[4.18235653643814,52.04515141664436],[4.182352467953442,52.045172588937625],[4.182363790812583,52.04518520841404],[4.182391504526582,52.04519709669185],[4.182431806885332,52.045205446263736],[4.182461083336136,52.04520639298436],[4.182882172034914,52.04497981005127],[4.183805622161488,52.0456629540882],[4.186236329117252,52.04746100789132],[4.185787752486305,52.047661533085225],[4.185765812915894,52.047688635638785],[4.185772888127507,52.04772269500461],[4.185799012988139,52.0477395551108],[4.185884041641729,52.04773992812823],[4.186349930890488,52.04753152501668],[4.189235131171816,52.0496718357144],[4.189814277059553,52.050088133164785],[4.189389048124026,52.05025483240913],[4.189366738518009,52.050276727261355],[4.189359915420092,52.05030069426744],[4.189368092415746,52.05032638690321],[4.18940703739652,52.05034972276056],[4.189434738745966,52.05034863818096],[4.189911601656131,52.050158795856056],[4.193510759406174,52.05264359081558],[4.193145141425783,52.05280422004169],[4.192743846811277,52.052992540753756],[4.192721602607501,52.053018005496455],[4.192719763178676,52.05303994678091],[4.19276000243924,52.053073398167214],[4.192817146647426,52.05307821147885],[4.193612349863606,52.05271381716362],[4.19686186133924,52.054948620726044],[4.197215891718809,52.05517957642768],[4.196422933947122,52.05554837377236],[4.196278904818171,52.05559582530104],[4.196239891341412,52.05561207918053],[4.196220227156903,52.05562615024123],[4.196200371711276,52.05564735386643],[4.19619999208126,52.05566162082901],[4.196203534442147,52.05567354718645],[4.196214914813283,52.05568079766596],[4.196222249642942,52.05569514173789],[4.196237487238984,52.055702431219075],[4.196261780244711,52.055711133633686],[4.196271298637112,52.05571290181755],[4.196291666331216,52.055712999897025],[4.196321479412459,52.05570610122278],[4.197310002206343,52.055244740448565],[4.197541771343301,52.05539788513641],[4.197771521552475,52.05554969478557],[4.198218027918482,52.05584472385495],[4.198483903128376,52.0560203982541],[4.198818652908077,52.056241577602165],[4.199089276208101,52.05642038349168],[4.199093156840321,52.05642294852101],[4.199428500172701,52.05664451499459],[4.200311545227041,52.05722793921616],[4.200689480958747,52.05747763319064],[4.200896245358645,52.05761423576684],[4.200900646207896,52.05761220095792],[4.20098184704053,52.057662962033966],[4.200287030502553,52.05795534326571],[4.199733111574972,52.05818837960955],[4.199718676678394,52.05819711511975],[4.199708850583125,52.0582080184758],[4.199704459183637,52.05822019012593],[4.1997058499131,52.058232626815986],[4.199712918514052,52.058244311748126],[4.199725063393926,52.0582542860322],[4.199741300581558,52.05826171276715],[4.199760304123796,52.05826600329373],[4.199780494510017,52.058266782130936],[4.19980021051467,52.05826400556432],[4.199810101876703,52.058261085007544],[4.200284189751308,52.05806246239849],[4.201029466233615,52.0577492380114],[4.201031816820158,52.05774824953286],[4.201077563000053,52.05772902272246],[4.201110044747046,52.057755485962],[4.201354557471208,52.057917025519345],[4.201658310210751,52.05813820535532],[4.202186131411082,52.058522534878456],[4.20282768800102,52.05898966801953],[4.203314420731205,52.05934406138377],[4.203696015563115,52.05962189854112],[4.203821939610402,52.05971358307009],[4.20378327868235,52.05972733778022],[4.202757873514781,52.060172267528664],[4.202744588473641,52.060181635204096],[4.202736180953677,52.06019294858382],[4.202733346566344,52.06020527082942],[4.202736316536463,52.06021757953188],[4.202744825926062,52.06022886526981],[4.202758199679751,52.06023818640827],[4.202775335190381,52.06024477679082],[4.20279478858382,52.06024809155199],[4.202814962820361,52.0602478629429],[4.202838416694421,52.060242732401505],[4.203860031858998,52.059798989061875],[4.2071448177479,52.061573065091174],[4.207015157100554,52.06162842303209],[4.206749135774228,52.06174199273605],[4.206011676358248,52.062056042721885],[4.20585881455669,52.06212113542865],[4.205844450812903,52.06212993532075],[4.205834740786121,52.062140885285466],[4.205830452002586,52.06215308514354],[4.205831960948889,52.06216553191549],[4.205839119718063,52.06217719938393],[4.205851370035607,52.06218713811506],[4.205867683515935,52.06219452879333],[4.20588673448303,52.062198764855225],[4.205906942523955,52.062199497861066],[4.205932948866429,52.06219493163158],[4.206008861067602,52.06216270365316],[4.206746297851125,52.06184957930672],[4.207320712755314,52.061605002825516],[4.207371320075924,52.06163199100797],[4.207548424309805,52.06172644925701],[4.207772287293213,52.06185059831367],[4.207992205687772,52.06197738613378],[4.208208088356815,52.06210678486044],[4.208419880098865,52.062238731040914],[4.20862748003857,52.06237317874343],[4.20883082957856,52.06251008245942],[4.209029832447493,52.062649387314494],[4.209224412782309,52.06279103863863],[4.209379036562645,52.06290768752662],[4.209503077805953,52.06300165710658],[4.209590889097861,52.063073619120274],[4.209727680053852,52.06318412063213],[4.209878180032304,52.06331127157976],[4.21002392980406,52.06344051421021],[4.210164858338295,52.06357177592022],[4.209435161405741,52.06389986662222],[4.209067150534995,52.06406533037582],[4.209053156711727,52.06407559055576],[4.209044056398471,52.064087769365784],[4.209040514319494,52.06410099254468],[4.209042773791042,52.06411432768239],[4.209050670353576,52.06412682031188],[4.209063658801295,52.06413757507936],[4.209080796471077,52.064145836477856],[4.209100859648042,52.06415099900043],[4.209122443025834,52.064152707013534],[4.20914397476139,52.06415083692992],[4.20916533234125,52.06414500100241],[4.209704254779316,52.06390255682381],[4.210272833196909,52.063646770380394],[4.210287916172401,52.06365613468495],[4.210555655734407,52.06382506781704],[4.210689924762297,52.06391240558927],[4.210819189891578,52.06399649318917],[4.211078475842866,52.06417037444654],[4.211333425821159,52.06434666579652],[4.211584001629144,52.06452532194156],[4.211830126685002,52.06470631517868],[4.212071774685703,52.06488959134002],[4.212308859072639,52.06507511363425],[4.212541335567701,52.06526284569181],[4.212769151613173,52.0654527330827],[4.212992245663665,52.06564473027614],[4.211806694267643,52.06617077434852],[4.211785873810467,52.06618001391306],[4.211757582755456,52.06619986670668],[4.211750847171698,52.06621253673753],[4.211749811767709,52.066225856912716],[4.211754574949474,52.06623885741555],[4.211764767112987,52.066250617691566],[4.211779681635889,52.066260276745176],[4.21179821202528,52.06626714936813],[4.211819048525622,52.0662707370908],[4.211840676939225,52.066270773115335],[4.211869815185947,52.06626475364959],[4.212075423835306,52.06617345540563],[4.213195003309701,52.065676351550835],[4.213208263899486,52.065683459076716],[4.213317818116802,52.06574705950521],[4.213542189580199,52.065880991220354],[4.213762487192614,52.06601748868902],[4.214101894255523,52.0662392808441],[4.214306449198984,52.06637940480714],[4.21450662581514,52.06652191181312],[4.214702352836228,52.066666738252856],[4.21490970734692,52.06682652069644],[4.215097776744106,52.06697703211676],[4.215281196146393,52.06712971721667],[4.215459879926883,52.06728450325522],[4.215633799839573,52.06744135401755],[4.215889722922563,52.06768443214989],[4.214664908975707,52.068218069724836],[4.214649859393752,52.06822743015661],[4.214639450004275,52.068238940168975],[4.214634446849455,52.068251753445175],[4.214635239204465,52.06826493002899],[4.214641734868229,52.06827748022668],[4.214653464769132,52.06828849149237],[4.214669589547949,52.06829715546049],[4.214688883326825,52.068302830707005],[4.214709958548626,52.068305089931975],[4.214731229568947,52.06830377353105],[4.214748984836445,52.06829969850735],[4.215951730081673,52.06777673515195],[4.216153708246732,52.06787647912733],[4.216351966609388,52.06797900828245],[4.216546452874518,52.06808425919412],[4.216737032616368,52.06819218560088],[4.216923606636898,52.06830273260281],[4.217106101981953,52.06841584556097],[4.217191662922775,52.0684715993753],[4.217299620869088,52.0685426139259],[4.21746465692188,52.068656424843454],[4.217625285221057,52.06877260976661],[4.217781434961852,52.068891087110586],[4.217933020284556,52.069011793118925],[4.218079953633284,52.06913467300712],[4.218222139404265,52.0692596449441],[4.218287059967405,52.06931886057625],[4.218358498376421,52.0693820689738],[4.21872294698372,52.06974597604663],[4.217560872359511,52.07029087284933],[4.217545714276161,52.07030103258052],[4.217535301165211,52.07031325292665],[4.217530353140184,52.07032671406322],[4.217531175374774,52.07034051114551],[4.217537729603617,52.07035370895148],[4.217549573676544,52.07036542218153],[4.217565896603481,52.07037486973986],[4.217585621383957,52.07038140272256],[4.217607417005327,52.07038460341479],[4.217629801930161,52.07038423238533],[4.21765128733769,52.07038032878667],[4.217661658614042,52.07037696204678],[4.218737956847042,52.069873281391],[4.218902745762623,52.06995498852856],[4.21906381673472,52.07003945410087],[4.219221038245576,52.07012663187478],[4.219374299893374,52.07021644886023],[4.219523496871435,52.07030884111174],[4.219648551258073,52.07039017131216],[4.220146521790376,52.07074812501546],[4.220364440134807,52.07090476614935],[4.220523727607683,52.071019264460155],[4.220692021940177,52.07114023741716],[4.221608258283311,52.07180913323698],[4.220421495093718,52.072304968495644],[4.220405435061727,52.07231441852821],[4.220393899596407,52.072326115640436],[4.220387663737969,52.07233925851249],[4.220387190113105,52.07235294385245],[4.220392488519413,52.07236623691608],[4.220403187198287,52.07237823513498],[4.220418566895233,52.07238810440926],[4.22043757992102,52.072395187163465],[4.220458923535713,52.07239898509581],[4.220481132630116,52.072399240996496],[4.220502690558678,52.07239593984568],[4.22051857714748,52.07239084767833],[4.221565088101302,52.07195221321387],[4.22181801044617,52.07209878878808],[4.222066899288612,52.07224795764853],[4.222311682651694,52.072399683153535],[4.222574219357665,52.07256992090038],[4.223246303617975,52.073026005539504],[4.223484477654478,52.07318763187138],[4.222328933957912,52.07371861753753],[4.222314296036329,52.073728405488694],[4.222304403905096,52.07374024487694],[4.222299994624067,52.07375328006137],[4.222301384438883,52.07376657033982],[4.222308452557738,52.07377915271043],[4.222320710736901,52.07379011447043],[4.222337264714427,52.07379867373501],[4.22235693040983,52.07380419856432],[4.222378260517464,52.073806306104316],[4.222399742321548,52.07380482858785],[4.222419797284266,52.07379988524125],[4.222425927213847,52.07379751885496],[4.223535843781772,52.07328670200462],[4.224556933136316,52.0738898944236],[4.225530041434572,52.07449531030069],[4.224192092535489,52.07510906465464],[4.224177816825557,52.07511894629962],[4.224168376044941,52.07513082625142],[4.224164434788549,52.075143830164755],[4.224166309506601,52.07515700834594],[4.22417383584521,52.07516938837658],[4.224186482512883,52.07518008410381],[4.224203307527167,52.07518829520874],[4.224223101016814,52.07519342547162],[4.224244384988544,52.075195091759134],[4.224265630453005,52.07519318908978],[4.224287071116605,52.075187144484076],[4.225443557444095,52.07465580734829],[4.226091935359489,52.07502939347886],[4.226557315449426,52.075305882583095],[4.226745125371663,52.07541746841599],[4.227309621599228,52.07576273353641],[4.227470043474274,52.07586239001742],[4.226055476735926,52.076433990708786],[4.226024177863889,52.07644663516864],[4.226009240920638,52.07645557567697],[4.2259988717147,52.07646670054722],[4.225993909138024,52.07647916410841],[4.225994714064442,52.0764919901339],[4.226001239704128,52.07650417141171],[4.226012970464624,52.07651477700848],[4.226028994404988,52.07652297096117],[4.226053022740247,52.07652852916694],[4.226068700335125,52.076529834246095],[4.226089303710137,52.07652796087184],[4.226105328709626,52.07652375021935],[4.227466738735266,52.07597241688419],[4.227567697566167,52.076004673817664],[4.227694433010185,52.076048770964746],[4.227818185372436,52.07609596673586],[4.22793878029461,52.07614617852512],[4.228056005496136,52.07619932335402],[4.228169698047262,52.076255327718854],[4.228279641751551,52.076314090625885],[4.228385668304805,52.07637552054173],[4.22848762859218,52.07643951713312],[4.228585339951413,52.076505979736936],[4.228678659094971,52.07657480807761],[4.228767411344473,52.07664587460418],[4.228851483800659,52.07671908832871],[4.229005003356996,52.07687143029786],[4.229074211455352,52.07695032250253],[4.229138225993919,52.07703086250678],[4.229250311513963,52.07719636102853],[4.229298186698511,52.07728104797203],[4.22860502242819,52.07757324748768],[4.227934724555873,52.07785579821561],[4.227910015274565,52.077875914816815],[4.227905389687634,52.07788833682477],[4.227906562834908,52.077901049598594],[4.227913412800494,52.07791307215488],[4.227925429010111,52.07792344665199],[4.227941636510213,52.07793134551124],[4.227960781783699,52.07793616313425],[4.227981347335257,52.07793751604692],[4.228020254677581,52.07792965607422],[4.228858827162309,52.07757574300661],[4.229443176898106,52.077329115882556],[4.229802550224197,52.07758501730517],[4.230368879706862,52.077988272292195],[4.231249177095123,52.07861643165519],[4.230543534388667,52.07894061927492],[4.229821409281941,52.079272739757826],[4.22980707187825,52.07928212708716],[4.229797469297749,52.07929357442474],[4.229793363577222,52.07930621734028],[4.229795044527942,52.07931906092045],[4.229802376829602,52.07933113304155],[4.229814830425323,52.07934149365683],[4.229831419388264,52.079349342062585],[4.229850875317925,52.07935408152382],[4.22987169039917,52.07935534666397],[4.229892277145233,52.07935303200132],[4.229910701444778,52.07934746011465],[4.230783432686889,52.07894297407485],[4.231285937223405,52.078711984053065],[4.231603838997208,52.078951023346924],[4.232536937411354,52.07965732712579],[4.232807587873124,52.07986170647217],[4.233043008559404,52.0800394747265],[4.231690277899892,52.08067742121227],[4.231676013660954,52.08068685442906],[4.23166647987218,52.08069835652288],[4.231662433885012,52.08071101806153],[4.231664202473036,52.08072388044529],[4.231671623022564,52.0807359533078],[4.231684136017054,52.080746305311244],[4.231700784404809,52.08075414504021],[4.231720270780972,52.080758866507026],[4.23173926642713,52.08075999391826],[4.231744146197792,52.080757525797544],[4.231741131025215,52.08076010478821],[4.231780512030382,52.080752050455516],[4.232517697727444,52.08040316656902],[4.233153274640812,52.08010223612996],[4.233181545207499,52.08011588840118],[4.233422715172786,52.08023496119396],[4.233660195160867,52.0803568108599],[4.233893914642074,52.080481400775504],[4.234123772453589,52.080608694017506],[4.234349681251459,52.08073862683193],[4.234627377181719,52.08090512895988],[4.234842951566799,52.08103944513627],[4.235054332205303,52.081176272725685],[4.235261433197864,52.08131554798908],[4.235464216312753,52.08145722563104],[4.235662576219277,52.08160125970025],[4.235856457638904,52.08174758675703],[4.236045772506265,52.08189617000785],[4.236230483271267,52.08204693719725],[4.23634503874488,52.08214351742278],[4.236422822304464,52.082210430353356],[4.236524620904837,52.08229800035612],[4.236699409389621,52.082454548571064],[4.236869361800164,52.08261310774206],[4.236988973934652,52.082728757023936],[4.235535124058794,52.08350770292823],[4.235522215139876,52.08351776109355],[4.235514306653432,52.083529620951715],[4.235512024640913,52.083542371762796],[4.235515551104201,52.08355500855793],[4.235524606177179,52.08356655780851],[4.235538498252062,52.083576113871516],[4.235556121432651,52.08358293784207],[4.235576122356514,52.08358649514006],[4.235596942567701,52.08358650985726],[4.235629654057735,52.0835785328675],[4.236926021345091,52.08288346931263],[4.237125808609368,52.08295823790862],[4.23751825772263,52.08311770910161],[4.237709545143643,52.08320190392855],[4.238081660747416,52.08337892776418],[4.238439064268636,52.083567105914426],[4.238611965145003,52.08366523243475],[4.238780860252819,52.08376597135473],[4.238945648870429,52.083869267777075],[4.238993144286715,52.08390040043968],[4.239219721966196,52.08405838425085],[4.239441892736989,52.08421872469979],[4.239872755312659,52.0845463023079],[4.240081331694414,52.084713430526826],[4.240285260646872,52.08488273336399],[4.240484466446972,52.085054147184884],[4.240678893329534,52.08522762652689],[4.240839026432424,52.08537573807252],[4.241030042086305,52.085555466800514],[4.241216165093772,52.08573714313742],[4.241397308046682,52.08592070333495],[4.241573461615765,52.0861061113702],[4.241846595400834,52.08640857922377],[4.241303101688287,52.086686245093354],[4.240381587778149,52.08715703117248],[4.240368538536726,52.08716687276576],[4.240360461231627,52.087178569496544],[4.240357978172353,52.08719118359723],[4.240361318946767,52.08720372853355],[4.240370188436003,52.08721519468611],[4.240383909005125,52.08722469455553],[4.240401375509626,52.08723145333626],[4.24042120478173,52.08723495419261],[4.24044183866905,52.087234903307184],[4.240461629259595,52.0872313205984],[4.240471889735185,52.08722780694501],[4.241526676188108,52.08668841898883],[4.241901581950992,52.08649670061734],[4.242140244749775,52.08660816210983],[4.242256759030181,52.08666480283197],[4.242375925468789,52.086722731231255],[4.242607945863898,52.08684011376944],[4.24283622003198,52.0869602459899],[4.243060676194419,52.087083082273125],[4.243281198575614,52.087208585561704],[4.243461372237695,52.08731484728872],[4.243670954990109,52.0874442706333],[4.24387637466914,52.087576197034394],[4.244077530073791,52.087710589576815],[4.244274362535286,52.08784740276914],[4.244466803859093,52.08798656406125],[4.244654751605243,52.08812802753732],[4.244838150013058,52.0882717477343],[4.245016938172278,52.08841765217257],[4.245137888567647,52.08852123383873],[4.245434350589951,52.0887785885579],[4.245591918352317,52.08892369322018],[4.245744623340132,52.08907069214035],[4.246035095663553,52.08937033349168],[4.246172763794832,52.08952285814488],[4.246267407029821,52.089632206367426],[4.246523076485553,52.08994069603676],[4.246542136427685,52.089965553875935],[4.246639334724351,52.090092311743284],[4.24538437043124,52.09073592768843],[4.245256636289527,52.090801207102174],[4.245247497135449,52.090808165759896],[4.245238623164515,52.09081971127358],[4.24523530968639,52.09083231741489],[4.245237787430022,52.09084500664115],[4.245245878086161,52.09085676149],[4.245258960995957,52.09086668605495],[4.245275981132796,52.09087397909706],[4.245295620500203,52.09087807952686],[4.245316341900137,52.0908786668291],[4.24533651202473,52.09087569821104],[4.245354549268123,52.09086939205715],[4.245381314875564,52.09085558392519],[4.246585991574849,52.090240191500094],[4.246938684995079,52.09045631553931],[4.247288625182106,52.090675818614265],[4.247634389598586,52.09089783305745],[4.247896103546123,52.09106985981701],[4.248163251058582,52.091247153792544],[4.248312741600032,52.09134676518975],[4.24862219989561,52.09155829540244],[4.248929590432317,52.09177257335129],[4.249133850420457,52.09191876224535],[4.249333674940588,52.09206726301028],[4.249528962766136,52.09221803873624],[4.249905686183522,52.09252617911539],[4.250303328093207,52.09288071342451],[4.250473435377111,52.09304298395862],[4.250646851100577,52.09321574819076],[4.250798765853755,52.09337324141998],[4.250953906093229,52.09354110174568],[4.251103938810857,52.09371071936422],[4.251248481902924,52.09388162319527],[4.250227819933734,52.09442681142083],[4.250216703292557,52.094437616560214],[4.250210887475518,52.09444990205536],[4.250210826354635,52.0944626925082],[4.250216511744325,52.09447499008445],[4.250227502211099,52.094485846702014],[4.250242944043465,52.09449440018887],[4.250261628329337,52.09449998269936],[4.250282091946466,52.09450216663329],[4.250302734286829,52.09450076576219],[4.250321946743932,52.094495908389106],[4.25033331252684,52.094490858466266],[4.2512645016735,52.09399494641267],[4.251864698051879,52.0943577375005],[4.252451739300136,52.094768866297784],[4.252657928533262,52.09488602466479],[4.252914353881573,52.09506753146173],[4.253261065816623,52.095321933508444],[4.253504590174668,52.09550707215814],[4.253870019557027,52.09579656481665],[4.254154893423845,52.096032445841296],[4.25435494111789,52.09620576690905],[4.254533234893537,52.09636563808808],[4.254745372115971,52.09656018928689],[4.254952659249858,52.09675672495453],[4.255113197880861,52.09691362014189],[4.255296739407655,52.09709759448086],[4.255475273155992,52.097283426052115],[4.255572009813891,52.09738714155486],[4.25571291207778,52.097539263063936],[4.255881793370283,52.09773177885122],[4.255694551417202,52.097805100572394],[4.255359575849925,52.09793670680065],[4.255076868388762,52.0980491017865],[4.255068421966891,52.098055276839595],[4.255063486505935,52.09806343618175],[4.255063644954951,52.09807331636674],[4.25506948337987,52.09808252302142],[4.255080258924838,52.098089844513545],[4.255094550462556,52.09809434134739],[4.255110490466581,52.09809541131317],[4.255126024020299,52.098092935795655],[4.25521747509356,52.098056708510406],[4.255628373920372,52.09789518891392],[4.255748531919549,52.0978486121024],[4.25578308557445,52.097945213577376],[4.255824573042488,52.098062537800885],[4.255880638775237,52.0982422491943],[4.255907261317616,52.0983356464005],[4.255977563990627,52.09862240684703],[4.25601266677823,52.09877983153769],[4.256047624889281,52.09897240092123],[4.256077700328022,52.09921662684027],[4.256093099403433,52.09941675680434],[4.256102985915033,52.099549220323176],[4.256106827617385,52.09966389098365],[4.256097320932986,52.09989193474516],[4.256021059482526,52.09992014670087],[4.255948134814703,52.09994915467963],[4.25587855094431,52.09998110704233],[4.255783529060483,52.10003141294453],[4.25571440861369,52.10007330225159],[4.255352778901901,52.100305201035376],[4.254578631768526,52.10080162096245],[4.254473776205468,52.100871741454576],[4.254373300148522,52.10094424102765],[4.254192389558594,52.10108962134023],[4.254102792568935,52.10116989268499],[4.25407948070627,52.101191843873515],[4.253991738768369,52.10127895544638],[4.253908252578411,52.10136860675287],[4.253829874666287,52.10145998802129],[4.253756708478354,52.1015529923912],[4.253732451848174,52.1015857658961],[4.253669351055179,52.10167784228642],[4.253611678264599,52.101771247252955],[4.253559504826444,52.10186587362447],[4.253512879200039,52.101961596031224],[4.253251213616565,52.102532193985],[4.252652270665394,52.10383818854751],[4.252658634514233,52.10386753521191],[4.252686352023153,52.10389172111301],[4.252706402132156,52.10390007589736],[4.252729115266947,52.103905247318544],[4.252777188518298,52.10390504483066],[4.252819639247985,52.10389114326124],[4.252847146963207,52.10386614056105],[4.252937515989951,52.10367631347748],[4.252953554042518,52.10341077776727],[4.25309472247941,52.103103497738765],[4.253295921933992,52.102666880363664],[4.253357786640872,52.102533219220625],[4.253479415644062,52.10227039798465],[4.25350288349425,52.10221925288685],[4.253638412882411,52.101924007856695],[4.253680882621638,52.101841351062724],[4.25369921620711,52.101808520607996],[4.25371812860008,52.101775830548256],[4.253757727425484,52.10171082703021],[4.253801149302381,52.10164592318269],[4.253848100580382,52.10158107123409],[4.25389696451762,52.101516767995086],[4.253937914115343,52.10146697741665],[4.253980456514422,52.10141768753177],[4.254070215047046,52.10132070770616],[4.254117415669896,52.101273053567844],[4.25416611947422,52.101225980153494],[4.254201736159936,52.10119301913187],[4.254268005381046,52.10113365608786],[4.254338936930006,52.10107571310109],[4.254485425402427,52.10096274785933],[4.254640229036212,52.10085627133226],[4.254986853111307,52.1006345316883],[4.255422772358072,52.10035447544312],[4.255496717634982,52.10030658318865],[4.255788010078708,52.10011790995366],[4.255937462916901,52.10003403208558],[4.256095440194245,52.099966262814945],[4.256248670992375,52.099909548921666],[4.256375635490457,52.09999971101091],[4.256370529156333,52.10007982386728],[4.256380755857768,52.100154969223084],[4.256394532846111,52.10020932166012],[4.256414354586275,52.10026295905413],[4.25644431107923,52.10032100828356],[4.256485527304517,52.10038285091885],[4.25650887625781,52.10041303447857],[4.256564027164011,52.10046524895801],[4.256574368664504,52.1004689886116],[4.25660552986812,52.1004730717958],[4.256621368925013,52.10046951136664],[4.256634481017986,52.100462967473156],[4.256643417682217,52.100454154313006],[4.256647044384575,52.1004388183057],[4.256642555378123,52.10042880670257],[4.256628668195431,52.10041405775751],[4.256606245803324,52.10039282693503],[4.256547713841363,52.10032598227968],[4.256502986757431,52.10025521609262],[4.256481284812333,52.100207816860035],[4.25647278569459,52.1001837532875],[4.256456786056956,52.10011057503086],[4.256453945162833,52.10004227807149],[4.256465372282902,52.09997712923141],[4.256491543538888,52.09991361397262],[4.256526354743444,52.09985416361693],[4.256574053283722,52.09979819867594],[4.256651765391016,52.09974146093636],[4.256678005352021,52.09972311486365],[4.257020195560441,52.09947105261998],[4.257165282138302,52.099363409984996],[4.257442006788662,52.09915809865575],[4.25786583521458,52.098845944556956],[4.25832170848905,52.098504909355604],[4.258731602736214,52.09820134682399],[4.258947572208276,52.09831856058095],[4.25906952475607,52.09842975046819],[4.259374968780512,52.09868168054323],[4.259695568928198,52.09894907164173],[4.259769139446159,52.098982836102486],[4.259878204252873,52.098997578213385],[4.259986391870232,52.098980545533166],[4.260046444600451,52.09895305692511],[4.260323690410394,52.098803447289114],[4.260433126246032,52.098744394666475],[4.260553851626818,52.09867924761327],[4.260713784321166,52.09828782341501],[4.260734438247888,52.09818523427463],[4.259019893235214,52.09783963013647],[4.25903367222546,52.09781002718243],[4.25914003462051,52.097574928254154],[4.259160221899878,52.09753029447625],[4.259224044353938,52.09738920634537],[4.259243628389543,52.097345915095076],[4.259316682285813,52.097185418620164],[4.259393327296881,52.09701792724529],[4.259403243520706,52.09699626931166],[4.259634138973943,52.097035961717694],[4.261113038078792,52.097284204727856],[4.261428781148759,52.09711274911989],[4.261709428514174,52.09716884075162],[4.261785380125153,52.097167678386455],[4.261818699257252,52.097155538111075],[4.262113318218783,52.09697893516027],[4.262382364532046,52.09709760209864],[4.262721631736047,52.09711690243361],[4.262810140637277,52.09711782775573],[4.262913910140158,52.097114332294964],[4.263086937305001,52.097097277104375],[4.263254755471368,52.09706623041146],[4.263335777095703,52.09704561876743],[4.263490260534978,52.09699467829106],[4.263632394634646,52.09693155696396],[4.264065527654908,52.097146328008535],[4.264042755070398,52.097168007622805],[4.264140293316489,52.09720805619104],[4.264167816765179,52.09718200834479],[4.26448600113319,52.09757187117983],[4.264473021927924,52.097588313829874],[4.264463712662615,52.09762425210918],[4.26447746187064,52.097659672964916],[4.264187918463312,52.097762244756716],[4.263653969600164,52.09813698504693],[4.263612681180663,52.09817526110036],[4.263592448609317,52.09821948169393],[4.263595035936654,52.09826984343049],[4.263604527983576,52.098292342905985],[4.263650550407883,52.09834155466537],[4.26398095656125,52.09857218251021],[4.264037608692071,52.09860207968736],[4.264106431997864,52.098619832145154],[4.264185069274483,52.098623988189544],[4.264260341990961,52.09861386493862],[4.264295276019405,52.098603689910405],[4.264332352323949,52.098587890339445],[4.264807011545739,52.09833130595536],[4.264826678209842,52.098344401100675],[4.264915116025113,52.098377324136266],[4.264955962235121,52.09838220745183],[4.265022917604111,52.0983778562042],[4.26505448192958,52.09837044437375],[4.265097614004041,52.09835293143511],[4.265322310442371,52.09824463455081],[4.265342251606226,52.09822004235053],[4.265322079328127,52.098203769446414],[4.265469818906616,52.09813082960484],[4.265651560943751,52.098041107539125],[4.265800417626098,52.0979648430886],[4.266077578525855,52.09781521026399],[4.266258620904936,52.0977137682647],[4.26651056903419,52.097578914856484],[4.266754445816477,52.09742072127593],[4.266766823923162,52.097409009741966],[4.266771772059725,52.097397344427776],[4.266809325739112,52.09724880262247],[4.266796177743625,52.097225954049435],[4.266737885881965,52.097185193170674],[4.265306194795276,52.09617663447283],[4.264954219067257,52.09593011940367],[4.264435391599464,52.095566732923345],[4.264104590206326,52.09574652040175],[4.264027885284193,52.095661582668924],[4.26381637510916,52.095536483601556],[4.26371708249393,52.09546360900713],[4.263510315998174,52.095311848968166],[4.263454033235747,52.09525698421887],[4.26347503330379,52.09518676645084],[4.263423493159133,52.095097672734646],[4.263268261692625,52.094987689044736],[4.263051235153831,52.09482680559409],[4.263020776653015,52.09475834424379],[4.263029203705567,52.09471108078387],[4.263083042873616,52.09464832238499],[4.263386682422477,52.09441564053898],[4.263516829928944,52.09436110620554],[4.26358684160967,52.094337692807116],[4.263640706973761,52.09429823329491],[4.26364757419464,52.09427119762755],[4.263871615327883,52.09424871307292],[4.264022903714476,52.09423380442633],[4.264179631693285,52.09422090697135],[4.264236761622339,52.094308264863535],[4.265345988011559,52.09509159304212],[4.26532224788488,52.09512159627465],[4.265532153085154,52.09525206162708],[4.266172757416404,52.09568251624672],[4.2665184506902,52.09592541735432],[4.266542783522797,52.09594272737745],[4.267131801420962,52.0963567939513],[4.267480256122833,52.09660121051976],[4.268232990295799,52.09705599073073],[4.269136326826159,52.09771107100189],[4.269562232798678,52.098010768677725],[4.269826193782624,52.09819611170792],[4.270739320622972,52.098837968727466],[4.27176703749069,52.09955631855695],[4.27142662880243,52.09973975689677],[4.270827633107727,52.10006255181828],[4.270691206233389,52.09996555631923],[4.270210736664268,52.09962588528443],[4.269676512291905,52.099250286869434],[4.269238949691976,52.09894113087825],[4.268517937540257,52.09843426314447],[4.267791505832959,52.09792298881798],[4.267319149743727,52.09759327028668],[4.26728530627791,52.09757978017561],[4.267264591669658,52.097577623791715],[4.267033988461451,52.09758181432535],[4.266994803423765,52.09758928908105],[4.266706476436839,52.09771811677071],[4.266279250473974,52.0979573890661],[4.265757940690337,52.098235593859414],[4.265543362793318,52.09836238785512],[4.265478749288535,52.09836938640419],[4.265455420215337,52.09838939806997],[4.265424074028204,52.09843459184162],[4.265415219202811,52.098471055860635],[4.265402420202539,52.09866469574589],[4.265417735867894,52.09873952013255],[4.265434083779049,52.09876274088422],[4.26548319593473,52.09880461053188],[4.266317742480058,52.09939032951812],[4.26695891818656,52.0998407665754],[4.267983603545816,52.10056042409066],[4.268735302125721,52.101071639858496],[4.268260105995549,52.10132731804663],[4.267183826508269,52.101906389361226],[4.267080678095546,52.1018345777938],[4.267062340570707,52.101830097914274],[4.266321289672402,52.10130889635833],[4.264845248967861,52.100270716281834],[4.263766370827828,52.09952139993405],[4.263639964798304,52.099410226503004],[4.263554841686658,52.099351068964154],[4.263411307272205,52.099250698271796],[4.263268189439336,52.09915061901171],[4.263564525830601,52.098998891731384],[4.26365182945703,52.09894339143852],[4.263706798790693,52.09891423454432],[4.263600478460566,52.09887446147979],[4.263552462543954,52.098871441927564],[4.263419044556225,52.09894291594753],[4.263095395225096,52.09911630596208],[4.262526590963353,52.09915417851754],[4.262157099933337,52.09916133080529],[4.261223457161329,52.09921690050251],[4.261030209823219,52.09932135531998],[4.260740779037909,52.099477789482],[4.26067974560877,52.09953723311733],[4.260666877015388,52.09958280001072],[4.260690807726064,52.09965022874147],[4.260736508228139,52.099688975641676],[4.261200434105933,52.1000052468296],[4.261559809138036,52.10024529073326],[4.261716965520598,52.100419088113526],[4.261376826616842,52.10054874749286],[4.260254650716869,52.10098280532105],[4.259577895633732,52.101244575425504],[4.259187486279219,52.101395815021235],[4.259037632571439,52.1014615178645],[4.258931607232407,52.10148920411575],[4.258753487651621,52.10151932815863],[4.258684209840149,52.10152468734903],[4.25854410447788,52.101525098632564],[4.25840436924706,52.10151085261875],[4.258336894125955,52.101497424373],[4.258269860375928,52.10147923627031],[4.258171798611409,52.101444148669934],[4.258110810342036,52.101416616135815],[4.258018807844716,52.10136869656028],[4.257987854788823,52.101350566308824],[4.257948846319566,52.101339361120516],[4.257897068382498,52.101362676276025],[4.257918533537469,52.101396419021526],[4.258001345147357,52.10143946860086],[4.258044626583279,52.101459550662284],[4.258134652034929,52.10149670071386],[4.258244740439491,52.1015306630895],[4.258360293529921,52.101556893427514],[4.25843795677858,52.10156859450796],[4.258515108008768,52.10157514007179],[4.258592884890398,52.10157771854176],[4.258709541307625,52.10157413437947],[4.258898350464053,52.1017092003709],[4.258714034334743,52.102114186382394],[4.258535733832712,52.10249942745986],[4.258497857120783,52.102582552393415],[4.258385498510126,52.102829170758326],[4.258225432111457,52.10317819048302],[4.25819402389042,52.103236972782994],[4.258175692320313,52.10326578595362],[4.258155634563763,52.10329416910367],[4.258118484013249,52.10334161548213],[4.258083910995718,52.103379477552856],[4.258044508461846,52.1034155225623],[4.25799595282489,52.103457376499996],[4.257941887586098,52.103496597858374],[4.257912911501964,52.10351513372896],[4.257884900085144,52.10353304063281],[4.257855753251015,52.10355024451669],[4.257825529827392,52.103566727965855],[4.257794274503075,52.10358245545265],[4.257762016692483,52.1035974182693],[4.257739655609104,52.10360718152911],[4.257717051423779,52.10361674470244],[4.257671144524445,52.103635208162665],[4.257647841810828,52.103644108449316],[4.257611737197345,52.10365706582231],[4.257574863952866,52.10366918885189],[4.257537299878312,52.103680460305476],[4.257499084831882,52.103690862586845],[4.257460278648487,52.10370039626894],[4.256844146839078,52.10383981063423],[4.256424638556752,52.103867040823374],[4.256114666958462,52.10393876338347],[4.256081496719505,52.103960908000744],[4.25607022048474,52.104005033500634],[4.25609106870559,52.10403200210559],[4.256118650808704,52.104046675773695],[4.256199571929043,52.10405207248307],[4.257444502047595,52.10377074392373],[4.257494103331466,52.103759686744326],[4.257576535110871,52.10373827452129],[4.257656522668609,52.103713593875014],[4.257733714255735,52.10368575829381],[4.257807815040495,52.103654881812204],[4.257878471366123,52.10362109587901],[4.257920924084622,52.1035983745269],[4.25798547946007,52.103559936821284],[4.258045850024996,52.10351900505974],[4.258101783380133,52.10347574761738],[4.258153027129426,52.10343033286926],[4.258198576571743,52.10338035119849],[4.258241170396952,52.10332717715703],[4.25827845951177,52.10327250510285],[4.258324641796966,52.10318705079944],[4.258602110121026,52.102583550668484],[4.258878399649446,52.10198261836672],[4.25929901422336,52.102091201368616],[4.259498674689008,52.102144545493914],[4.259689336506352,52.10219726836617],[4.259695917395828,52.10219908862107],[4.260270484370448,52.10235796765632],[4.260790133177185,52.102508085341775],[4.261125213856073,52.102607682524365],[4.261496241337839,52.10271795913036],[4.261711219940086,52.10278581878521],[4.262118433360611,52.10291705914079],[4.262340262563693,52.10299002571619],[4.262559269143676,52.10306613796781],[4.262803931731857,52.103159833861724],[4.262964174363868,52.1032272499418],[4.263121057940404,52.10329760005561],[4.263203069119006,52.10333618884227],[4.263338673742818,52.10340069080594],[4.263470630749805,52.10346798929339],[4.263598782435249,52.103538028880706],[4.263682790442933,52.10358664084531],[4.26380679665778,52.103659085628124],[4.263926708520656,52.10373409799781],[4.264077083274278,52.10383589036683],[4.264743809864487,52.10431045646367],[4.264918777183329,52.10444161445337],[4.26509912352912,52.10457950202262],[4.265311186541707,52.104740243958936],[4.265512527297622,52.10489670369724],[4.265562310038583,52.10493538860062],[4.265786578358687,52.10511137385654],[4.264935734628065,52.10556730237816],[4.264922886750607,52.105577265432444],[4.26491505732973,52.10558903806143],[4.264912858204246,52.105601682272614],[4.264916470583255,52.105614202040336],[4.264925599456784,52.1056256147815],[4.264939523319473,52.105635005761634],[4.264957151071776,52.105641645491076],[4.264977064117027,52.105644999114986],[4.264997726171668,52.10564480032126],[4.265017468221477,52.10564106917526],[4.265029194564146,52.105636821267495],[4.265886384031502,52.10517758165888],[4.266376168638075,52.1054920550918],[4.268983017976779,52.10717686405974],[4.269688816907312,52.1076329944143],[4.270486464369734,52.108161154413835],[4.2708265874972,52.10838636192231],[4.270476104846986,52.10857574275361],[4.270212617808355,52.108718117845946],[4.269500820653914,52.10910280361844],[4.269488912244981,52.109113144610795],[4.269482159962632,52.10912512549797],[4.269481113289193,52.109137789695765],[4.269485855783478,52.109150131257934],[4.269496003280835,52.109161166768544],[4.269510744194934,52.10917001662359],[4.269528931128529,52.109175977809464],[4.269549086822592,52.10917857789281],[4.269569622412317,52.10917760405645],[4.269588902208598,52.10917313966856],[4.269597808552104,52.10916959265728],[4.270473068850054,52.10869724173696],[4.270925681336783,52.108452432740954],[4.271204847183389,52.10862319235946],[4.271581732174139,52.10885910966342],[4.271957974929933,52.10909921739065],[4.27232998738142,52.109341809707146],[4.272503441777547,52.10945739123411],[4.272697736848145,52.109586850388936],[4.272833480072906,52.10967865023109],[4.273180969654497,52.10991850009751],[4.273524097237398,52.110160716676845],[4.273862790050003,52.11040529033103],[4.274197034595848,52.11065217602709],[4.274424347124455,52.11082384943347],[4.2747315327781,52.111060680415065],[4.27501733358385,52.11128577627436],[4.275360020493698,52.11156060325678],[4.27557152835215,52.11173354552227],[4.275630665649677,52.11178189621586],[4.274450635232832,52.1124463564023],[4.274441343501122,52.11245774730172],[4.274437571310381,52.112470277936666],[4.274439591643456,52.11248295313554],[4.274447253740933,52.11249479170368],[4.2744599678316,52.11250485324548],[4.27447671726585,52.11251233715528],[4.274496187868664,52.11251666473739],[4.274516840698382,52.11251748888228],[4.274537056669398,52.1125147493642],[4.274554176153024,52.11250913119083],[4.275736335733299,52.11184477094664],[4.275985570970587,52.11197019418327],[4.276231261756241,52.11209847784792],[4.276473119531015,52.11222948441276],[4.276738235888539,52.11237871397602],[4.277005032551254,52.11253383737746],[4.277267781053926,52.11269154675236],[4.277526438278852,52.11285181475546],[4.277666970333724,52.11294205393636],[4.278412598425081,52.11346479711365],[4.279139636049757,52.11401431785301],[4.27934028943195,52.11417502531119],[4.279538378345567,52.11434029256566],[4.279731729831798,52.11450766327362],[4.279920315783595,52.11467709225074],[4.280104035328179,52.11484852464036],[4.280282860352563,52.115021915257735],[4.280431074976741,52.115170901500676],[4.279421981040623,52.11574027025892],[4.279411835731192,52.1157466557934],[4.279401388356939,52.115757568801676],[4.279396324333814,52.11576983575843],[4.279397032666081,52.11578248953827],[4.279403450950943,52.115794513829705],[4.279415091897977,52.115804951249096],[4.279430353235113,52.11581305865342],[4.279449027585064,52.11581836667939],[4.279469378619176,52.11582023878953],[4.279489774310097,52.115818542795395],[4.279508576392185,52.11581339813519],[4.279524299821763,52.1158052223152],[4.280531748926768,52.115236834993276],[4.281061957384596,52.11553768344211],[4.281595646918707,52.11583562278085],[4.282015548314643,52.11606665967702],[4.28214949999485,52.11613740704723],[4.282437452765461,52.11629244642551],[4.282762511497094,52.11646746404152],[4.283379337042588,52.11679480293566],[4.283999977047323,52.11711940569692],[4.284177048478544,52.11720925070169],[4.284853382854317,52.11754538109076],[4.28510489876844,52.1176633488477],[4.286038854918619,52.118135053299504],[4.285296981660287,52.11856638420652],[4.284821368648971,52.11884290703312],[4.284576367658286,52.118985343121146],[4.284564584627272,52.11899537218231],[4.28455795919731,52.11900704946761],[4.28455704065148,52.11901941832359],[4.284561898739641,52.11903142772424],[4.284572120127875,52.1190420760569],[4.284586879615295,52.11905048369855],[4.284604924425604,52.11905593781256],[4.284624746950356,52.11905799284081],[4.284644686940132,52.11905647145975],[4.284672129537274,52.11904737084767],[4.284818425081152,52.118962204564575],[4.285495169728733,52.11856823633616],[4.286023493490699,52.11826067078306],[4.286745547366,52.118552893782194],[4.286813319403579,52.11858054637764],[4.28704816588393,52.1186763643547],[4.287347529493794,52.118802814987845],[4.287643551299756,52.118932217929505],[4.287936144845128,52.11906452745506],[4.288225252424825,52.11919971608554],[4.288510787133634,52.119337756070315],[4.288792691702543,52.119478601958086],[4.288838426087132,52.11950221257738],[4.289070879440853,52.11962221701231],[4.28934526343363,52.11976857348354],[4.289451616514098,52.11982658805166],[4.289711674234439,52.1199689451209],[4.28996782765909,52.12011397086543],[4.290219990084272,52.12026162854901],[4.290468881097725,52.1204123473593],[4.290621353860374,52.12050358060106],[4.290853967270321,52.120647100044806],[4.291082978179682,52.120793479884426],[4.291307753489998,52.12094233673105],[4.29152822152205,52.121093616010484],[4.291562733223094,52.121117792709946],[4.29059252503217,52.12167805386444],[4.290422113200973,52.12177727697453],[4.290409812915363,52.12178758044951],[4.290402640467473,52.12179957655519],[4.290401159208445,52.12181232672017],[4.290405452031329,52.121824833970834],[4.29041522180064,52.12183611577497],[4.290429686947883,52.121845292957644],[4.290447711542177,52.12185164484405],[4.290467891342825,52.121854672981215],[4.290488640514772,52.12185413789991],[4.290522080923288,52.121844624303904],[4.290589386404895,52.1218059157961],[4.291509194813021,52.121272631478426],[4.29170860050404,52.12115701746964],[4.292059779522064,52.121393473511745],[4.292974433756537,52.12200932238907],[4.293430715519096,52.122312313077906],[4.294298430355216,52.122879150030876],[4.294710563970654,52.123148333418875],[4.295408599595864,52.12360423329517],[4.295591209408475,52.12372399041178],[4.294851505743778,52.12415677641326],[4.294844030572282,52.12416864413318],[4.294842201848233,52.12418131921288],[4.294846175371734,52.12419380535197],[4.294855639293912,52.124205119894405],[4.294869856377773,52.12421435714054],[4.294887675740591,52.124220805309605],[4.294907722877392,52.124223939311946],[4.294928382644323,52.12422351946729],[4.29496513391229,52.12421241731675],[4.295651363684902,52.12381352628523],[4.296390218561275,52.124300053949156],[4.296956107123687,52.12466782639605],[4.29708875489682,52.124752424634266],[4.297365850969398,52.12492644518177],[4.29793791049066,52.12527028082762],[4.298632912309965,52.12566219654525],[4.298362378946278,52.12581893758539],[4.297970207465098,52.126046149250676],[4.297958357292317,52.126056583501814],[4.297951695891609,52.12606863870269],[4.297950728545011,52.126081357733284],[4.297955567187579,52.12609374388463],[4.297965797901558,52.12610480457789],[4.297980623855927,52.12611367852672],[4.297998879029849,52.12611967181899],[4.298019129542627,52.12612229480844],[4.298039759068989,52.12612135279061],[4.298074070370299,52.12611032600685],[4.29846860590745,52.12588097315072],[4.298678692175417,52.12575884295801],[4.298892025031339,52.12587049198892],[4.29910152493809,52.12598485578946],[4.299247283715868,52.126067826915474],[4.299508680546272,52.12622151785467],[4.29970614863142,52.12634372454278],[4.299899438612001,52.12646842717013],[4.30008846353469,52.1265955979894],[4.30037105709672,52.12679611562026],[4.30061383992956,52.1269828815698],[4.299970714669804,52.12735554734173],[4.299959406394308,52.127365923866805],[4.299953347271602,52.127377849899176],[4.299953028610883,52.127390341215715],[4.299958460752724,52.12740237320321],[4.299969214683796,52.12741297112849],[4.299984406340138,52.127421254937545],[4.300002796190898,52.127426548038436],[4.300022861151656,52.127428422907975],[4.300042969364547,52.12742672068125],[4.300068318083318,52.12741852301283],[4.300715513341435,52.12704785374369],[4.301677877431358,52.12763440100156],[4.301792267616577,52.12770807346791],[4.302505859457137,52.12861599649643],[4.302980127609253,52.12826887433969],[4.303291786638198,52.128040761361525],[4.303670536052959,52.12776354955885],[4.303882825309228,52.127608169642954],[4.304576768186928,52.12710024291783]]]]}},{"type":"Feature","properties":{"id":10,"statcode":"WS39","geometry_g":"polygon","gag_id":"HHSK","hierarchie":"2","hierarch_1":null,"inspire_id":"NL.39.39_Schieland en de Krimpenerwaard_p","sde_id":null,"land_code":"39","inspire__1":"NL.39.39_Schieland en de Krimpenerwaard_v","inspire__2":"NL.39.39_Schieland en de Krimpenerwaard_l","wbh_code_o":"39","einde_leve":"1899/12/29","laatste_wi":"1899/12/29","admin_code":"39","waterschap":"Schieland en de Krimpenerwaard","publiceren":"39","Aangemeld":1,"Actief":1,"KVK":52213463,"tnostatus":null,"CPT":95,"GMW":2,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[4.601180537946001,51.89602791107898],[4.600764526852382,51.895514752220755],[4.598200343250156,51.89633272404185],[4.597342878632722,51.89676001819635],[4.596159343142026,51.89724697131835],[4.59504806476785,51.89788905841386],[4.594437236463415,51.89850358257697],[4.593653870270635,51.898977740342076],[4.593145722506008,51.899438292578104],[4.592611209230387,51.899975993685786],[4.591953881373125,51.900389132566765],[4.591071550177954,51.90080073462364],[4.589031589444261,51.90163753686804],[4.589744488816116,51.90232288046454],[4.59183582898843,51.90140909327183],[4.594932751990202,51.900177257620335],[4.595790032548795,51.89976544905283],[4.596926078051984,51.89913899095578],[4.598234368414493,51.898668337197975],[4.598937538167341,51.898487458888546],[4.599639091858163,51.898399364303636],[4.600845700621644,51.898020798832185],[4.602355510399497,51.89745864915842],[4.601180537946001,51.89602791107898]]],[[[4.578508974417402,51.91231143624032],[4.578699286099012,51.91213278389911],[4.579250789199135,51.911594704969964],[4.579295859193283,51.9115987360949],[4.579364209006815,51.911545543705245],[4.57958283302505,51.91137539904747],[4.579639615394131,51.911398134998954],[4.579880465694782,51.91122847509251],[4.580210264403069,51.9109663210952],[4.580363082050108,51.91083701696639],[4.580869750160811,51.9104475915343],[4.58077485123269,51.910396253434506],[4.582517138861077,51.90913015403022],[4.582630334632531,51.90911894715981],[4.582904021885621,51.90913199339367],[4.582904155285567,51.90909772959066],[4.582904685523677,51.90897629662008],[4.582904953926609,51.90892067671856],[4.583305156444682,51.90870500879852],[4.583528017665632,51.90855962260916],[4.583732400908823,51.90842591176544],[4.583893225047272,51.90832082829653],[4.583942878457817,51.90828778385586],[4.583972555370776,51.90829017992117],[4.584014780733705,51.90828488656162],[4.584048996862435,51.90824877031927],[4.584042897808448,51.90822735363954],[4.584034395601186,51.908223313564534],[4.584096173226015,51.908177839723656],[4.584152180533069,51.908131589352294],[4.584193703458119,51.9080956398489],[4.584257075396463,51.90803736799834],[4.584258551291263,51.90803610169438],[4.584263010311311,51.90803705799001],[4.58430839091247,51.90802433449642],[4.584313429972277,51.90798955589921],[4.584329012571827,51.90797634118317],[4.584416607088817,51.90790278324448],[4.584487279085668,51.90784259262371],[4.584552586994033,51.907777592354634],[4.584599280774555,51.90771245593908],[4.584690678914709,51.90757881670274],[4.58474991100674,51.90749186051754],[4.584806104271022,51.907415562065374],[4.584853354825968,51.90735745847157],[4.584905565227742,51.907307253783884],[4.584975234493466,51.90725267393041],[4.585054602578461,51.907194510846445],[4.585118637113054,51.90715028332252],[4.585179235791079,51.90710069306058],[4.585193898579577,51.90704939605108],[4.585188968676694,51.90700722363663],[4.585150415254599,51.90694768939422],[4.585138737458526,51.90692697176442],[4.585389380227548,51.90673618127258],[4.585283738832955,51.906732422294475],[4.585212819155628,51.90671378127483],[4.584847473764421,51.906516818119],[4.584766327272154,51.90646378835075],[4.584723175549636,51.90643559293841],[4.584616340316058,51.906315584022266],[4.584608909208925,51.90630203232416],[4.584563578057852,51.906219287844856],[4.584505968815437,51.90615925469273],[4.58423725679581,51.905949987962316],[4.583530621664585,51.90544492134902],[4.583497551396955,51.90542922572021],[4.583424582902061,51.905414794257915],[4.583379477042874,51.905417973336995],[4.583322473092992,51.905455902026205],[4.583265406533913,51.90549732684424],[4.583220223855682,51.90550398394432],[4.583136071324887,51.905485988192446],[4.583046530466969,51.9054540141131],[4.582967814311396,51.90544650923955],[4.582888537231957,51.9054703618727],[4.582792486235115,51.90548712444393],[4.582753065835106,51.90548685460386],[4.582719518035894,51.905472683556596],[4.582698055862297,51.90541331041838],[4.582742534895532,51.90526323479259],[4.582764001806262,51.90519076243802],[4.582862592937427,51.90503116066225],[4.582721811374447,51.9050301970024],[4.582767011647091,51.904981922764975],[4.582814078620452,51.90493164783005],[4.582782980002296,51.90493086867416],[4.58279576014016,51.904441515138885],[4.582772203007103,51.90441153853017],[4.582724451991456,51.90438636701854],[4.582619467816279,51.9043738102261],[4.582437920661135,51.904352099943694],[4.58170383167756,51.904304832815214],[4.581532316758376,51.90423906460015],[4.581533963734693,51.90414714894312],[4.581220893986814,51.90413755056543],[4.579077353722267,51.90408059175825],[4.579084846529612,51.903886847882305],[4.579082699151667,51.903762960457904],[4.579076393196268,51.90372492204706],[4.579047148980332,51.90369378198378],[4.578975631062418,51.90370721355395],[4.578055233717865,51.90397168996479],[4.577577060578506,51.904097590485954],[4.576383274807984,51.904377563077205],[4.575981503175929,51.90447832164537],[4.575901171979218,51.9044984679615],[4.575830005427111,51.904543036761424],[4.575580955542829,51.90478327364537],[4.575060847798546,51.9047833747186],[4.574807975817786,51.90478364931972],[4.574629156509658,51.90480328465972],[4.574261182074057,51.90488131403075],[4.574108476400658,51.90492502107929],[4.573384864673808,51.905224529978355],[4.572798840438088,51.90546501569391],[4.572013086989339,51.9051745912417],[4.57164753170191,51.905252620252135],[4.57097361803684,51.90597605890446],[4.570761010994522,51.90599696380024],[4.570599502589252,51.90599285739419],[4.570373765758194,51.90594055658529],[4.570160075057391,51.905888339091135],[4.569962862247621,51.90585861756442],[4.569849580381595,51.90585484549106],[4.56973371116009,51.905861500135444],[4.569629411865782,51.90586242848298],[4.569545577073472,51.905863175534456],[4.569446794517056,51.90585801183626],[4.569141341801848,51.905812614501926],[4.569008941216391,51.905799764807455],[4.568905504983666,51.90579799293316],[4.56881715318184,51.905803400093475],[4.568728266572942,51.905832596453095],[4.5686448243003,51.90592592882246],[4.56861347954077,51.905960990990984],[4.568334005241559,51.905869597749415],[4.568107667066741,51.90607941577773],[4.567721897072699,51.90595974787855],[4.567619100623204,51.905945979468626],[4.567197685707605,51.90600001885413],[4.567150098816463,51.90600367776401],[4.566784682877864,51.90603181458311],[4.566339202240782,51.90608816375873],[4.565323485566722,51.90623465391333],[4.564837788884919,51.90630061267177],[4.563926234666322,51.90644287587982],[4.563428335389701,51.90651865784493],[4.563171060998362,51.90657383330044],[4.562929526054105,51.90664398584829],[4.562698167203113,51.906685382640745],[4.562156500986791,51.90669016527729],[4.561806701112347,51.9068337298906],[4.56184489163484,51.90702296688684],[4.561869821886863,51.90717774706208],[4.562090405328129,51.907265182715406],[4.562618044238093,51.907268886104625],[4.562785314462948,51.90731245918676],[4.56316089110254,51.90725715235767],[4.563650176535748,51.907190353725795],[4.563775884744876,51.907179153825965],[4.563843114946955,51.90719170563583],[4.563862656784945,51.907209406400035],[4.563848010307141,51.907233878798976],[4.563838656931547,51.90723833456704],[4.563897455247436,51.9072939099448],[4.56392068986382,51.90729407271623],[4.564315620466048,51.907421484543576],[4.565524744778185,51.9078359986069],[4.565869564380496,51.907918677753855],[4.566090330563044,51.907997522937954],[4.566393605074444,51.90811989182539],[4.566437557433747,51.90805274787231],[4.566990610421478,51.908245964214615],[4.567021488332644,51.9082637345705],[4.566683005989143,51.908619498086985],[4.566529867326903,51.90876941135111],[4.566575803989066,51.90889613067748],[4.56669470357162,51.908938892959675],[4.567934650577389,51.90938486857037],[4.567986738043524,51.909404790986585],[4.568076725832254,51.909439206592644],[4.568107596651924,51.90945105307849],[4.568467258911201,51.90958870370834],[4.568686687501423,51.90969381745341],[4.568703485809788,51.90968037056093],[4.568703844679264,51.90968061575403],[4.568948345201497,51.90981602460709],[4.569068683509375,51.90988540090276],[4.569116573187115,51.90991803051697],[4.569347359434683,51.91008284383112],[4.569988133424206,51.91054852713785],[4.570859187904613,51.91117620016154],[4.571313613728085,51.91150070008733],[4.571433973509431,51.911582154804925],[4.571536125729883,51.91164101140131],[4.571642109838677,51.911694555237695],[4.571737292080944,51.91173706686141],[4.57183368004412,51.911774813797145],[4.572029294639089,51.911845275494734],[4.572160843700454,51.91189168839663],[4.572232054820327,51.911916056071874],[4.572317610644023,51.911944460192814],[4.57236382229418,51.91187988252349],[4.572827796699547,51.91199599585111],[4.572766338113277,51.9120991462116],[4.573147502299802,51.91220711593966],[4.573185084690963,51.9121687520109],[4.573549409215466,51.91226606909437],[4.573515315197334,51.912307648259954],[4.57348053733362,51.912350067614184],[4.573677873006404,51.912427702407605],[4.574563163778438,51.912776015809676],[4.575229613455812,51.9130274951615],[4.575493340738849,51.913138555882405],[4.576087902369371,51.913386603502374],[4.576410787519553,51.91350986348956],[4.576542837737547,51.91355076484752],[4.576638290997318,51.913580330668765],[4.57677032545758,51.913603586948305],[4.576842500740097,51.913607814892174],[4.576924205226517,51.91357606401805],[4.577441979316138,51.91324883233596],[4.577750447534966,51.91300330203415],[4.577891045107253,51.91288508981275],[4.578169564636283,51.912630039955985],[4.578508974417402,51.91231143624032]]],[[[4.492476449544653,51.91082033859954],[4.489177558479819,51.909608250349635],[4.488517210097075,51.90986375012334],[4.487994361687818,51.91026504403775],[4.488177489224436,51.91046908720911],[4.489602176883937,51.91178269677981],[4.492422291866005,51.91354116617543],[4.494734704053655,51.9149483159082],[4.49672536828023,51.91606349105733],[4.498633979206574,51.91659902105847],[4.500314896874632,51.916814358567436],[4.501858257058339,51.91688389953957],[4.502326298029995,51.916887424171044],[4.502706993766334,51.91657184641266],[4.498728267314168,51.91419694057419],[4.494421231940494,51.911877308929476],[4.492476449544653,51.91082033859954]]],[[[4.730528176783213,52.008763723993454],[4.7308524377951,52.00874714219537],[4.73091820900588,52.00874750890246],[4.731098235127467,52.00874851244916],[4.731236121292974,52.00875766707227],[4.731325188656861,52.00876357437957],[4.731452315615906,52.008759482829994],[4.731454963542305,52.00876765005211],[4.731507211790577,52.0087614874321],[4.731507224514201,52.008761613340425],[4.731508905583232,52.00877912310307],[4.731622575406669,52.00876897912947],[4.731621016270782,52.00874810838918],[4.731621002232482,52.00874807235741],[4.731655231118471,52.008744047425736],[4.731665145483087,52.00873639059788],[4.731704367634237,52.00873055083841],[4.731700698328508,52.008717524202915],[4.731713467113278,52.00871487182339],[4.731861358053848,52.008702212668005],[4.73201971809789,52.008688775676625],[4.732248260952242,52.008669823611896],[4.732320257917993,52.00866376152188],[4.732466042272518,52.00864771924149],[4.732606630467085,52.008627432330364],[4.732772531024101,52.00858930919572],[4.732829631175203,52.00857502049322],[4.73293947356987,52.00854164594835],[4.73372988179691,52.00821286375522],[4.73447080119495,52.0079200969934],[4.735622104749462,52.0074569848776],[4.735831216841023,52.00737543103478],[4.736082013791707,52.00728075066005],[4.736228812328059,52.00722454922052],[4.736343229477085,52.0071816421552],[4.736527408450468,52.0071138452688],[4.736649386407084,52.00706676414595],[4.73677771840381,52.007021407824574],[4.736990906501441,52.006953770504815],[4.736994332733662,52.00695252206747],[4.737118905799951,52.00691423645203],[4.737327305729468,52.00684427105432],[4.737476353429249,52.00679245782966],[4.737744490103212,52.006696764065964],[4.738130829362891,52.00655593467946],[4.738322677989529,52.00648012369145],[4.73856240997,52.006391498154656],[4.738668732087198,52.00635111491159],[4.73888964689683,52.00627044762106],[4.739098301967061,52.006193514506045],[4.739158248337853,52.00615930217089],[4.73941045327107,52.00604685244488],[4.739480789042903,52.006015285777835],[4.739532522012525,52.00599206579906],[4.739665930598654,52.00592656433107],[4.73989245167947,52.005800300945054],[4.739991798086858,52.005743555237125],[4.740064917656023,52.00569665136047],[4.740454400947062,52.00544681149871],[4.740545343542667,52.00538998319787],[4.740844488879763,52.00521130116795],[4.741017287911555,52.00510242078204],[4.741209952330806,52.004974270201046],[4.741383980944375,52.004855733509324],[4.741590800761284,52.00472040634256],[4.741632852076625,52.004692728032126],[4.74181043787609,52.004575810155956],[4.741858017278109,52.00454449481309],[4.74195289660477,52.00448204230577],[4.742010988611892,52.0044438005505],[4.742143345762326,52.004356664462364],[4.742260190809402,52.00427973493886],[4.742609898143055,52.00404152572166],[4.742987343548632,52.00380648738583],[4.743030192858585,52.00378092521792],[4.743211507161456,52.003677679008064],[4.743462577734985,52.003539085194255],[4.743502240511439,52.00351734347038],[4.743742389502491,52.0033968189169],[4.743959927617933,52.00331029023931],[4.744259328267662,52.0031870323712],[4.7444778752007,52.00309500735735],[4.744592437322298,52.00304983702181],[4.744752177779577,52.00299428889804],[4.744943718940159,52.002938087152344],[4.745145813904434,52.002885223427754],[4.745395584883839,52.00283261932994],[4.745964267347007,52.00270732866567],[4.746317207422252,52.00263500682067],[4.746511574580364,52.00259583293969],[4.746912582725495,52.002518638580916],[4.746971139294859,52.00250755982796],[4.747122398736961,52.002488760830154],[4.747348163888947,52.00244746427239],[4.747594976361905,52.002416096976184],[4.747820446245052,52.00239442854909],[4.748051126245898,52.002380140483645],[4.748145062625547,52.00237678552966],[4.748289660688049,52.00237162919287],[4.748763939529791,52.00236438737014],[4.748961553910213,52.00236592648236],[4.749110926025748,52.00236708689444],[4.749349437064383,52.00236020022751],[4.749582708418158,52.002350021909116],[4.749730533910357,52.002341142117416],[4.749752084147389,52.002340342013916],[4.749817462704548,52.00233591424581],[4.750094413164621,52.002319266099114],[4.750399244691008,52.00230619272221],[4.750591230291517,52.002299006876356],[4.751121902852889,52.00229437955431],[4.751923934038579,52.002255521869735],[4.751924006975825,52.00225551327497],[4.752485054205343,52.0022356825952],[4.752744882020104,52.002220724569625],[4.75288549071129,52.002205132536474],[4.753065873601829,52.0021873007996],[4.753379139677606,52.00213992053661],[4.753695086899702,52.002089291089106],[4.75384618695177,52.00205878871828],[4.753963404030325,52.002035123797775],[4.754268670432105,52.001965227176655],[4.754452395256081,52.001924086435515],[4.755042531112398,52.001778436753284],[4.755729138746823,52.001603046834795],[4.755829473881173,52.00157741091753],[4.756135104262939,52.001507088970754],[4.756773022258727,52.00135432533342],[4.757118095654598,52.001279142650326],[4.757490543357076,52.00120828501331],[4.757532758822102,52.001202201016156],[4.757625201170264,52.00119300604159],[4.758058005966881,52.00114940762184],[4.758495574850596,52.0011149472792],[4.759105156115893,52.00109203660716],[4.759303957731809,52.0010832819985],[4.759558441881683,52.0010707342802],[4.759611545441808,52.00106704457771],[4.759820941947667,52.001052512129256],[4.760107439282509,52.001022966052496],[4.760332979373882,52.00099636641323],[4.760460448025877,52.00097333388333],[4.760730692227242,52.00096986491984],[4.761043210946113,52.0009747996638],[4.761376734332166,52.000992923353884],[4.761794918394015,52.001018857453005],[4.762797819315155,52.00109532508304],[4.763112769912393,52.001114990190324],[4.763318822876458,52.001126131564405],[4.763414529892781,52.00113130379014],[4.763854017231882,52.001149173025986],[4.763965986851612,52.0011546376605],[4.764229917502341,52.00116751303845],[4.764817662640648,52.00119106193862],[4.765230629432237,52.001211239617795],[4.765757532066263,52.00122956363116],[4.765926125190738,52.00123164909934],[4.766083380407436,52.001228011819535],[4.766295463178829,52.001216043717356],[4.766573738364941,52.0012068781009],[4.767291578750245,52.00120902508972],[4.768049214509869,52.0012072873316],[4.768345969872273,52.001202304445684],[4.768931405683879,52.001201291375544],[4.769039335379089,52.0009600620226],[4.769059875700987,52.00091413144639],[4.769115388213764,52.000922602390844],[4.769144165325791,52.000948918659546],[4.769136518159862,52.000967008053564],[4.769067486302959,52.00113004518476],[4.769053393100775,52.001192116785354],[4.769106278279352,52.00119893805034],[4.769241299326371,52.00120455466406],[4.769386786083303,52.001220041360526],[4.770447080959553,52.001362162346176],[4.770893692552318,52.00144055231977],[4.771245131579675,52.00150453757006],[4.771958408447193,52.00164645528574],[4.772278017236449,52.001713542822365],[4.773291762705859,52.00196824386923],[4.773859442399214,52.002104491862575],[4.773928536549404,52.002116743493616],[4.77403511230098,52.00213565298212],[4.774115784808042,52.00214998720096],[4.774364028299101,52.002205246121235],[4.774939821509561,52.00233007993796],[4.775028069756529,52.002350645920046],[4.775061182619202,52.00234877777275],[4.775111118134202,52.00232860689857],[4.775260578387752,52.00210457596591],[4.775488555758853,52.00217018061726],[4.775531106087809,52.00209993294292],[4.775560374038563,52.00210661058933],[4.775592057450089,52.002054714600234],[4.775881909674235,52.001580097532795],[4.77584900906096,52.00157178319057],[4.775838400281056,52.00156909449638],[4.775839025969614,52.001568064083955],[4.775849575644274,52.00157081538964],[4.776283660369047,52.00083897121573],[4.776656380643765,52.00033699925103],[4.77716317166405,51.99971268825888],[4.777384868336556,51.99946524576334],[4.778117257682818,51.99966142512192],[4.778178238553326,51.999622173874506],[4.778181228687707,51.99962074221905],[4.778317215844253,51.99965574539768],[4.778327833477666,51.99961057085254],[4.778349271674567,51.999556751539465],[4.778362294941863,51.99954246448186],[4.778415148775157,51.999530100225506],[4.77861572407815,51.99948319354097],[4.779072407315313,51.999403786814305],[4.779292738782659,51.9993689445717],[4.779505178448201,51.99933078940567],[4.779683132994628,51.999294909688736],[4.779805290198683,51.99927264677701],[4.780009896968794,51.999224634982156],[4.780161433944486,51.99918453753869],[4.780560347181085,51.999067201781386],[4.780749209836299,51.99900848330636],[4.781103075275388,51.99889255846837],[4.781598314661231,51.99870375433281],[4.781816686029067,51.99861738496026],[4.781949955829486,51.998555924786615],[4.782131096053706,51.99847998762109],[4.782222843758916,51.99843944532573],[4.782317638492623,51.99839754339851],[4.782483031501127,51.998310073583504],[4.782712407271516,51.998193504250544],[4.782954330074822,51.998079389794164],[4.783202608363564,51.99800037107925],[4.7833053891638,51.99797084138266],[4.783424614816358,51.997936623135246],[4.783540471596257,51.99789087339038],[4.78363290699193,51.997853146886996],[4.783707367499053,51.99781476187919],[4.78378121149751,51.997771322201366],[4.783854024745432,51.99772872210006],[4.783906617527357,51.99768461612385],[4.783960633741777,51.997618037513156],[4.783980014266793,51.99757263772837],[4.783987457230545,51.99749346139279],[4.783971978869308,51.9974425438561],[4.783937272670292,51.99739320858929],[4.78387004709195,51.99734090224574],[4.783868482734902,51.99733920441345],[4.783838881481943,51.997323889292026],[4.783804853897299,51.99730638527394],[4.783802432775416,51.99730451226937],[4.783774904446581,51.99729097846742],[4.783773241364131,51.99729012503424],[4.783597330288073,51.99719990559497],[4.783442518106356,51.9971314111502],[4.783237899354254,51.997068853910584],[4.783074490681976,51.99701379741608],[4.782829914324594,51.99691899980755],[4.782688174740461,51.996846598628224],[4.782538272040872,51.996767324177014],[4.782516000696539,51.996754895689065],[4.782450275499815,51.9967027400426],[4.782338446925257,51.996609755953465],[4.782248198982116,51.996519974681085],[4.782129472468172,51.99638466465002],[4.782086095403197,51.996317711977774],[4.782003721482042,51.99616569057366],[4.78197612720464,51.99610426596599],[4.781910318848305,51.99595589805737],[4.78189506933241,51.99591952458705],[4.781892907279467,51.995913572154215],[4.781863727610162,51.99579378685727],[4.781850235053192,51.995738367069436],[4.781807147376345,51.99559504158034],[4.781736787449876,51.99530395974307],[4.781734158087035,51.99528732671665],[4.781724933432494,51.99522857620253],[4.781723687170814,51.99517744393057],[4.781724219137148,51.99512941280648],[4.781732617996249,51.99503901501325],[4.78173704781133,51.995005331406205],[4.781787097819777,51.994929466351266],[4.781813803731236,51.99488943468874],[4.781839781833496,51.99483535943867],[4.781856268045835,51.994819993224],[4.781883294692523,51.994805813754525],[4.78192498284107,51.99478523805423],[4.78200531609927,51.994750542589834],[4.782092956188741,51.99471279263884],[4.782152381496888,51.99469202941275],[4.782208643150576,51.994679114719894],[4.782287105445751,51.994664354644705],[4.782327073630825,51.994660083858186],[4.782455523015536,51.99465391278969],[4.782936674534881,51.994654146050436],[4.783035356807774,51.994658086232576],[4.783178951940531,51.994663596111906],[4.783254145143073,51.99466342471923],[4.783307638195939,51.99466145211976],[4.783384174394602,51.99465453726802],[4.783463057362332,51.99464202566128],[4.783520977433162,51.99462377975705],[4.783573821602253,51.99460185851197],[4.78362195385295,51.99457626379939],[4.783652815625808,51.994556198233745],[4.783690494588965,51.99452942633952],[4.783720401349524,51.99450458303372],[4.783749473471105,51.99447467498761],[4.783769193918761,51.99444613016056],[4.783786869212801,51.994409422391485],[4.783790371976408,51.9943850009679],[4.783787370003884,51.99434622771769],[4.783773881760414,51.99429250697008],[4.783745718919316,51.9942213005014],[4.783713671400555,51.99415961975647],[4.783660015394271,51.99408069635375],[4.783545223199553,51.993946405580715],[4.783486200012832,51.993890905228874],[4.783438455198868,51.99384450500915],[4.783362480422312,51.99378278755839],[4.783310033899889,51.9937460436391],[4.783175014611606,51.99363805654034],[4.783066587052359,51.99354705898888],[4.782994913101457,51.99348068042925],[4.782943336520141,51.99342480456152],[4.78290109261251,51.99336896760287],[4.782876354957243,51.993322496524605],[4.782832269114426,51.993225078852475],[4.782809404424816,51.9931746894575],[4.78278887842264,51.99312795235979],[4.782771135764483,51.99306915816646],[4.782772466112222,51.9930374270498],[4.782775384898394,51.99302395947891],[4.782906882171859,51.99285497918769],[4.783025881587117,51.99271767253932],[4.783165214299257,51.99257541866711],[4.783325117350747,51.99243438474062],[4.783540484158309,51.99223662184437],[4.783650827862354,51.99215151958791],[4.783691380895102,51.99213065880453],[4.783741345937564,51.992102826348706],[4.783805926945264,51.99206215251623],[4.783880621851078,51.99202293268424],[4.783960005756827,51.99198148075811],[4.784054135713661,51.99194348398248],[4.784213080262236,51.99190694278602],[4.784475515734938,51.99185407824293],[4.784525012580659,51.991844777086385],[4.78492754126084,51.99177015794106],[4.785479734239105,51.991660268349804],[4.785525802879734,51.99165143461744],[4.785533238049713,51.991649621024806],[4.785535778240871,51.99164911268576],[4.785749548550054,51.991604139967606],[4.785916507508155,51.99155387623548],[4.786100456684435,51.99149386576811],[4.786508379453626,51.99136392736554],[4.786664293240322,51.99132399675909],[4.786733585374199,51.99130525003521],[4.786894717703576,51.991274612764144],[4.787066667179996,51.99125161662253],[4.78717387406613,51.9912392379921],[4.787429940740935,51.991220040807846],[4.787668768312773,51.99121395017766],[4.788328682542546,51.991225462624506],[4.78849485960605,51.99123126972303],[4.788913406759917,51.99125155478257],[4.788997084316828,51.99125778663969],[4.789035468642999,51.99125955470875],[4.789077232157045,51.99126231068388],[4.789331292706887,51.99127668871346],[4.78957257570895,51.991288466587086],[4.789584497994094,51.99128970460661],[4.789776774710274,51.99130360612324],[4.78986549143827,51.9913119212799],[4.790054636262563,51.99132158191071],[4.790246394724256,51.991340531493684],[4.790267208112495,51.991342129136164],[4.790273241526198,51.9913427889251],[4.790452945919269,51.99137151030707],[4.790653724562144,51.9914085086693],[4.790909925311333,51.991461319417304],[4.790930250663723,51.99146568288754],[4.790960771025195,51.991473082145255],[4.791083156315143,51.99149954369439],[4.791206669795606,51.99152657709637],[4.791332330694286,51.991554178519834],[4.791398329497946,51.991566215524024],[4.791409058454622,51.99156851693284],[4.791437371084056,51.991573334215694],[4.791489150614544,51.99158277345367],[4.791511878849314,51.99158600746302],[4.791607232549683,51.99160222870872],[4.7917394839319,51.991615985005964],[4.791774433914756,51.99161655732656],[4.791777502560937,51.991616815538116],[4.791847160299131,51.99162194975708],[4.791952443813661,51.991625008051756],[4.792020619171139,51.99162226085852],[4.792034884314778,51.99161811745608],[4.792059037754813,51.99161599251053],[4.792135893719006,51.99160093912867],[4.792252058413452,51.99157287152082],[4.792272421517771,51.991566718557245],[4.792285736511808,51.99156395453016],[4.792413238623531,51.99152413335765],[4.79253072477099,51.99148861180784],[4.792677264606053,51.991426154960955],[4.792888745374087,51.99132918698198],[4.793063683428144,51.99124412350087],[4.793216898600851,51.99117551568738],[4.793309620802,51.99113975152311],[4.793397862884989,51.99111575742133],[4.793487962985029,51.99109767798564],[4.793578362807688,51.99108884902475],[4.793650296094564,51.991089211844574],[4.793830509525117,51.991110353437],[4.793925957901261,51.99112600701531],[4.793950004495763,51.991177065321644],[4.794026491754023,51.99121400656237],[4.794088284325708,51.991243566151844],[4.794197000898867,51.99130625958996],[4.794352356812214,51.991425859543696],[4.794545612268217,51.99158952237412],[4.794598317298295,51.99163365101279],[4.79466581878744,51.99167969674144],[4.794745156721367,51.99172579302956],[4.794821717980032,51.99175725121325],[4.794898390398381,51.991781402363564],[4.795001777794525,51.99180019600367],[4.795060698311671,51.99182243308026],[4.795152428116674,51.9918265438587],[4.795247079515495,51.991834336514614],[4.795368445820901,51.991836771550915],[4.795501817080116,51.991826476374484],[4.795611539917683,51.991814237535024],[4.795727269998029,51.99179471225444],[4.795837209670586,51.99176601659555],[4.795976987935372,51.99171918840077],[4.796128688773774,51.99166694600627],[4.796339864157202,51.99159488606755],[4.796663894038343,51.99149597757886],[4.796985294366758,51.991373289773286],[4.797318312696769,51.991267108037775],[4.797488060259127,51.9911930137511],[4.797515134765737,51.991160251995495],[4.797571701116055,51.991136770177384],[4.797613485432623,51.991111389639094],[4.797643900980296,51.991095812371455],[4.797684400942421,51.991072879197986],[4.797697398510916,51.99106653560017],[4.797706125017287,51.99106058407185],[4.797794370966512,51.991010619310565],[4.797959340901583,51.99090330638295],[4.798056489974035,51.99081615618994],[4.798152858056385,51.99071860246801],[4.798266994242393,51.990619465749816],[4.798384069103488,51.99053044654832],[4.79839342295388,51.99052438125924],[4.79847078416459,51.99048050957598],[4.798601293105832,51.990423915483014],[4.79873697203144,51.99037717138225],[4.79889902490814,51.99033872939641],[4.799033200090188,51.99032334683643],[4.79921666877861,51.99033157118164],[4.799323297400915,51.9903284456145],[4.799432560462487,51.99035093197447],[4.799825646493931,51.99040407431628],[4.800008876344114,51.99043057856755],[4.800168539639083,51.99044783280171],[4.800366776369705,51.99045795365357],[4.800517774609185,51.990458706508086],[4.800618621632762,51.99044458513841],[4.800707560933056,51.990435896230785],[4.800846828178357,51.99042744903306],[4.800924552876547,51.990371164623824],[4.800972044701094,51.990362269028324],[4.801043294500231,51.99034799985771],[4.801096864267154,51.99032632606468],[4.801132591935431,51.99031187992414],[4.801263159152447,51.990226008076505],[4.801564651614312,51.99008089058329],[4.801871686314888,51.98996387953839],[4.802124010008844,51.98989125889115],[4.802291817525361,51.9898443468506],[4.802510469375921,51.98978925610767],[4.802605578590678,51.98976950478243],[4.803017397936101,51.98970882897484],[4.80334712140797,51.989663572971054],[4.803556326417355,51.98963725910556],[4.803708580448167,51.98961065352264],[4.803886389930217,51.989564651688966],[4.804108462887579,51.989522760872234],[4.80417221790801,51.98948791426688],[4.804261173024118,51.98946100334571],[4.80436289503633,51.98942633571123],[4.8043506866192,51.98939110377986],[4.804490832181122,51.98932146385089],[4.804586235577452,51.989286764737315],[4.804662626126066,51.989251980421685],[4.804688297439951,51.989224755902924],[4.804707853577215,51.98918187034589],[4.804818141864476,51.98910968234768],[4.804856522801857,51.989086942963425],[4.804961982219696,51.98902445634522],[4.805020252785612,51.98898020728432],[4.805038124051618,51.988968395099356],[4.805208041091844,51.98883693581258],[4.805369335482306,51.98868774455015],[4.80540535522645,51.98865506117145],[4.805485637864096,51.98859506522811],[4.805563001298501,51.98854910361513],[4.805721327034902,51.98847938130215],[4.805827011916721,51.988434116731526],[4.805895989517941,51.98841170792778],[4.805995294246788,51.98838466705793],[4.806099326356968,51.98836130771221],[4.806178097398598,51.98834821410571],[4.806387868275212,51.98831806897784],[4.806471195663933,51.98830387411775],[4.806590123476841,51.988290421114996],[4.806763544867267,51.988305001837766],[4.807035785125461,51.98829853340146],[4.807218958790845,51.988326787888866],[4.807364267572005,51.98834703565353],[4.807611040933446,51.98835216122808],[4.807884225574812,51.98827145160306],[4.808004773815538,51.98824859433318],[4.808093688265779,51.98822559026338],[4.808182588183491,51.98820257706676],[4.808265220383285,51.98817563201977],[4.808316355674128,51.98813681115791],[4.80838014146614,51.98809804350846],[4.808402993191841,51.988052171440415],[4.808647925666019,51.98791545841747],[4.808775560778419,51.987843055393675],[4.808898540702047,51.987770350716445],[4.809109486431215,51.987640777254235],[4.809330913205707,51.98747501380459],[4.809551804485166,51.98732357476172],[4.809694115647468,51.98730735713385],[4.809898496656766,51.9871637821314],[4.810102509953798,51.987047556560306],[4.810484996617365,51.98683451091178],[4.811338724141593,51.986393228482655],[4.811295280112404,51.98632658288919],[4.811481722424133,51.986212021676025],[4.811653303595194,51.98609039453904],[4.811801694815935,51.98596865376468],[4.811907874834334,51.98593491824707],[4.812048649159475,51.98581447020299],[4.812246383231676,51.985694300303116],[4.812526941264242,51.98553155222018],[4.812738022976304,51.98535674350185],[4.81283316617925,51.98528094166443],[4.812872936351776,51.985199143922856],[4.812918777185,51.98507637986795],[4.812919979724704,51.98498243936091],[4.812898859669005,51.984903760013644],[4.812971849698921,51.98477188839195],[4.813045146321802,51.98464332593772],[4.813056968012248,51.98460911098536],[4.813111943675702,51.98447202801185],[4.813178031793348,51.984328815224195],[4.813236807476552,51.98422348864056],[4.813300111713531,51.98412941956849],[4.813363128095022,51.98405669642396],[4.813465568125917,51.98395298483134],[4.813546903052305,51.983984508069824],[4.81383019461149,51.9836818393573],[4.814020972458086,51.98347266575666],[4.814177833818656,51.983321400515855],[4.814242308728777,51.98325509270729],[4.814298399229353,51.98319558418888],[4.814360042745244,51.9831343858988],[4.814397086204306,51.98304915877988],[4.814445762959012,51.98295688746463],[4.814466326965609,51.98284664638427],[4.814473255664281,51.98280333820996],[4.814497617092434,51.982728583694936],[4.814504361488875,51.98269970993617],[4.814534062828924,51.9825396009168],[4.814580293377065,51.98241766501837],[4.814604673468401,51.98234027697798],[4.814626339345921,51.982310172506295],[4.814667598433011,51.9822446952722],[4.814715366932283,51.982168733304704],[4.8147783774302,51.982065269158],[4.814858419904399,51.98196056653124],[4.814882445106701,51.98191208329036],[4.814951444866508,51.981838858078994],[4.815126549694297,51.98162033944656],[4.815226448619811,51.98146057149735],[4.815258973594571,51.98141212050592],[4.815335031343811,51.98128639237153],[4.815387583448618,51.98116842377268],[4.815418451665404,51.98108318428798],[4.815429894914159,51.981020195487304],[4.815353239572293,51.98098843560295],[4.815394359654655,51.98087543593634],[4.815467874546501,51.98087719534319],[4.815506805271814,51.9808274631044],[4.815533121877868,51.98059903475695],[4.815532120688799,51.98034287939159],[4.815560223835306,51.98020154800114],[4.815599383969,51.98010061909931],[4.815631508599624,51.98004235075734],[4.815654681639521,51.980000056197945],[4.81572554774518,51.97990910554164],[4.815812196807172,51.97989892905585],[4.815880941083342,51.97984540455627],[4.815962430921223,51.979794566497254],[4.816073735273548,51.97973993619411],[4.816296391112878,51.9796280508985],[4.816491157940495,51.979534420119],[4.816538781102671,51.979476280631026],[4.816664543536621,51.979440649393716],[4.816764652651028,51.979439849423144],[4.816992828959713,51.979394979885505],[4.817329662222683,51.97933750419295],[4.817540139303445,51.97934640617502],[4.817606188751105,51.979337530825404],[4.817708739994758,51.979302559111765],[4.81782999706645,51.97930183362324],[4.818148448274751,51.97935197424735],[4.818586600582333,51.979355404719335],[4.818667653714516,51.97933871848033],[4.818680751045639,51.979312508766206],[4.818644789312263,51.97927075481964],[4.818708872976054,51.979256170728505],[4.818917888435132,51.97919313827167],[4.819014666864402,51.97914726161845],[4.819129346474008,51.97916361688086],[4.819191477961032,51.97912844873099],[4.819196309874666,51.9790824965593],[4.819299177570954,51.97900397635361],[4.819521607276969,51.978890627773865],[4.819661826630377,51.9789660334673],[4.819939646463903,51.978926898546554],[4.820258504628836,51.97883190925879],[4.820395301706925,51.978779635816565],[4.820481996379017,51.97870220516136],[4.820588666542656,51.97864044747536],[4.820635501911064,51.978525469106316],[4.820621820003913,51.97841019034011],[4.820508460389993,51.97820414339625],[4.820419862689576,51.978032461294035],[4.820440467425278,51.97799831486455],[4.820405645302937,51.97796078248411],[4.82051439181848,51.97782898851742],[4.820590564566116,51.9777397593058],[4.820665257951894,51.9776777576762],[4.820724866546108,51.977640410375635],[4.82077246959185,51.97766052181618],[4.820975364354373,51.977564972297536],[4.821157718226367,51.97749734934585],[4.821304596160203,51.9774451233493],[4.821416037754761,51.977405175666995],[4.821482045745859,51.977368128407306],[4.821427443890307,51.977299365518796],[4.821420939956471,51.97727264778072],[4.821451499271556,51.9772454161536],[4.821485666451261,51.97725180038401],[4.821539645840418,51.977285658421636],[4.821583994230239,51.977283381840834],[4.821684031304582,51.97717934595078],[4.821692578827069,51.9769815530557],[4.821627416610029,51.97676332585479],[4.821620585691981,51.97665515395961],[4.821624108523896,51.976511914275484],[4.821627795637474,51.97645379523027],[4.821671616775504,51.976287721040116],[4.821731571521291,51.97617649050197],[4.821848874840722,51.97603605365439],[4.821940939124728,51.975939592377905],[4.822020740324133,51.97588073339087],[4.822169842723,51.97588020911892],[4.822258942828805,51.97584454866531],[4.822458505862312,51.975676291663355],[4.822439460951513,51.97558786255694],[4.822447300235565,51.97544605472826],[4.822401870367385,51.97537366904017],[4.822368268316795,51.97532248974859],[4.822322776022723,51.975255083285],[4.822302885828264,51.975233838156214],[4.822166944673383,51.97514981826858],[4.822133919970884,51.97511639371051],[4.822091619596558,51.97506253896874],[4.822087279873994,51.97505465330112],[4.822053067872512,51.97498145846667],[4.822037761740629,51.97494178218563],[4.822027448474684,51.974884710423986],[4.822027214424835,51.974840890993626],[4.822032944785044,51.974800758479994],[4.822042592082198,51.97476625352398],[4.822072515586995,51.97470151020802],[4.822123176049767,51.97463349584137],[4.822179440751875,51.97458966910658],[4.822259030567041,51.97452657541785],[4.822342202196661,51.974458717058205],[4.822409759152666,51.97440342133467],[4.822467747146729,51.97435792190945],[4.822549871331217,51.97428303845817],[4.822615841797346,51.97420920098202],[4.822653311519471,51.97415882119154],[4.822690566620638,51.9740988857209],[4.822720862103703,51.97404032802249],[4.822757056296348,51.97395595704771],[4.822771709186404,51.97391220903327],[4.822786091687306,51.97381705522437],[4.822800361630916,51.973722745779604],[4.82282075902333,51.97361104626091],[4.822847956286028,51.97350023324943],[4.822883438303742,51.973400686443895],[4.822926181887252,51.97331044146503],[4.822967733573263,51.973224693928486],[4.823019497938072,51.97314966454696],[4.823090972463985,51.973090459298355],[4.823158183497828,51.973061290683106],[4.823255491197927,51.97302748448028],[4.823384505334299,51.97299411777138],[4.823498760255215,51.97296784394077],[4.823736260714854,51.97291901524953],[4.824035953936676,51.97286504582487],[4.82419184191947,51.97282978448142],[4.824257003095687,51.97281543624491],[4.824282257187202,51.972809328135035],[4.824332959729433,51.97279785886379],[4.824344282839544,51.97279433566224],[4.824392601207185,51.972782657215284],[4.824555713693501,51.97273990668298],[4.824715139282561,51.972694037310625],[4.824848553982555,51.972653103854],[4.824959406855204,51.97261712288372],[4.825132519720624,51.97255783579848],[4.8252435202879,51.972519320546304],[4.825364669327342,51.972468782270134],[4.825441202655843,51.97243179204775],[4.825483332786438,51.972408677364],[4.825546515338099,51.97237442770325],[4.825608548645169,51.972341296069494],[4.825649511824331,51.97231256701256],[4.825678682620166,51.97228882413686],[4.825718301909869,51.972256996642315],[4.825770728358085,51.97221118142546],[4.825825089157028,51.97215498485761],[4.825861824452987,51.97210937336893],[4.825898844206997,51.97204915712211],[4.825925714818945,51.97199170580656],[4.825958535320324,51.971921636228934],[4.825989462301,51.97184819595851],[4.826013490519387,51.9717724666921],[4.826059171788707,51.971720165521454],[4.826104673495422,51.97167290595328],[4.826159619441314,51.971633843857525],[4.826222994573548,51.97160268675323],[4.826299177071071,51.97157496131384],[4.826386918922323,51.97155038292611],[4.826467445505854,51.971539531282296],[4.826684305588634,51.97151697017182],[4.826786836294795,51.97150145031442],[4.826962549398578,51.97146998295598],[4.827124177952925,51.97142777909048],[4.827273953195789,51.9714152880781],[4.827330475103349,51.971383944961325],[4.827360648808827,51.97137884832515],[4.827529687339499,51.971303709817946],[4.827761763390102,51.97119046352254],[4.827865057355655,51.97112762258248],[4.827935796979148,51.97107406459635],[4.827954152522908,51.9710632040134],[4.828141176817602,51.97093544231436],[4.828252374169267,51.970852549580904],[4.82843703356728,51.97071354970176],[4.828539904882932,51.970642409897295],[4.828720050590677,51.97053737317507],[4.82876222629124,51.97051499458486],[4.828895197714472,51.9704492105961],[4.829096809281922,51.97035569039522],[4.829243278581829,51.9702775121619],[4.829350996624128,51.97021198540389],[4.82939002066156,51.970179686460064],[4.829402916719148,51.97017012105745],[4.829436225443506,51.970142190314476],[4.829466863041276,51.97011607153876],[4.829492006699518,51.97009524782748],[4.829505691021354,51.97006791613963],[4.829511032859204,51.970060804694455],[4.829530216391121,51.970034775420174],[4.829559270333383,51.969975643812774],[4.829577355207237,51.96992910684715],[4.829586042763217,51.96988813408299],[4.82959455062945,51.96981711233909],[4.829599528471833,51.969764329246836],[4.829610023211368,51.96971376546401],[4.829643624122095,51.969623618535365],[4.829675138718129,51.96956669172156],[4.829757059807788,51.96945726896746],[4.829786156036974,51.96942983050242],[4.82983442608051,51.96938765205489],[4.829901164477475,51.969323081154776],[4.830000294844495,51.9692328220648],[4.830081181841146,51.969164390153374],[4.830179664593424,51.969088733951],[4.830246478761972,51.96904495331956],[4.830264106128231,51.96903402601169],[4.830342175967657,51.96898850992321],[4.830420108842508,51.96895167590274],[4.830521341765994,51.96891115000213],[4.830587744720535,51.968889919058334],[4.830796968981749,51.96883412920795],[4.830910457793313,51.96881327356493],[4.831038974300736,51.96879983235546],[4.831139059644493,51.96879665617506],[4.831194527575086,51.96879822164663],[4.831446565312612,51.96880805933491],[4.831556766938518,51.968814080749674],[4.831652073246702,51.968816085828664],[4.831655796710497,51.96881623823705],[4.831658954564839,51.96881623517203],[4.831694074281129,51.968816976261614],[4.831720321063244,51.968816228318865],[4.832058368095486,51.968816179078495],[4.832160128736803,51.968822267957194],[4.832227093828259,51.968822583868985],[4.832302888778366,51.968824343576095],[4.832392323077931,51.968828136009805],[4.832518313934837,51.96882591673857],[4.832605260845254,51.96881902808614],[4.832652061475349,51.9688130646984],[4.832754021165178,51.96880540179348],[4.832813881831139,51.96880006615742],[4.833057599710613,51.96879192938628],[4.833262004784416,51.96876316745824],[4.833400957871808,51.96873528355676],[4.833547857664358,51.968688408508584],[4.833635773532055,51.96864657687021],[4.833666777246911,51.968634148017586],[4.833741517868217,51.968602195447694],[4.83381721666501,51.968566876698524],[4.833873377862913,51.968539339824076],[4.833953231144255,51.96849870143524],[4.834041609773814,51.968449959614006],[4.834178721761281,51.96837532661288],[4.834264428057256,51.968329664062544],[4.834389466186823,51.96826762070682],[4.834502210700099,51.968214777486175],[4.834596036036957,51.968175049209165],[4.834757552827663,51.968113176805005],[4.834907751469428,51.968055736243954],[4.835009432950691,51.968014920972955],[4.835071815178284,51.96799021709971],[4.835176255429033,51.96794632263286],[4.835213424967048,51.967928241655535],[4.835258548728356,51.96790233316025],[4.835308308310796,51.9678674580245],[4.835345195942168,51.9678356054994],[4.835376224111707,51.96779979756073],[4.835400038106881,51.967757780766235],[4.83541831436661,51.96771404817999],[4.835442273342502,51.967660230325826],[4.83546771553254,51.967615965072405],[4.835502635675473,51.96756893988907],[4.835527073754188,51.96754124446971],[4.8355573969163,51.96750712299064],[4.83558105812723,51.967478695859256],[4.835585297791484,51.96747591136662],[4.835610696114442,51.967462431046805],[4.835665776991431,51.96743852854525],[4.835701858331894,51.96742606004446],[4.835763195011808,51.96741174146179],[4.835798745660169,51.96740930146579],[4.835954299317657,51.96743094638311],[4.836333722542267,51.96757304107928],[4.836471940669545,51.96760459920245],[4.836583502302942,51.967612258165545],[4.836624225157257,51.96760219302426],[4.836677242961701,51.96759578974049],[4.836733359205304,51.9675811675837],[4.836793184774347,51.96755953384911],[4.836834655755303,51.967534731208445],[4.836902629857393,51.967497693518794],[4.836974885629026,51.96745561536315],[4.837028524267118,51.96741991273887],[4.837078634575485,51.96738475985867],[4.837137843277308,51.96733980723299],[4.83718567313006,51.967305488551546],[4.837245130958728,51.967268689488506],[4.837293119833242,51.96724275765625],[4.837381639561352,51.96720337987757],[4.837687323121227,51.96707876419956],[4.837699288433224,51.96707250126447],[4.837736221605681,51.967056944121204],[4.837805736405801,51.96702468593229],[4.837855989156611,51.96699683194403],[4.837908231281664,51.96696336949173],[4.837992524571966,51.96690421508401],[4.838118518447037,51.96681801150385],[4.838220414394528,51.96674967207987],[4.838349371502852,51.96666263717434],[4.838435567183438,51.966604893511395],[4.838542625163168,51.966533207249455],[4.838655443407408,51.96645451884395],[4.838740210431616,51.96637429737136],[4.838825882687017,51.96629380141788],[4.838874973623598,51.966221565995916],[4.838880661243961,51.96621338612322],[4.839071143909875,51.96599957757208],[4.839262083091639,51.96581259213622],[4.839390573168208,51.965694283375754],[4.839510930225766,51.96561161145519],[4.839660646633742,51.96554956954837],[4.839745735118223,51.96553576391976],[4.839796839025669,51.965534527632144],[4.839885261897416,51.965539630973204],[4.840204119006635,51.965595808224485],[4.840209582023094,51.96559648078831],[4.840302940850763,51.965614478111206],[4.840391021463251,51.96562499946735],[4.840477575240508,51.96563185539499],[4.840556319611667,51.96563475604194],[4.840626725829635,51.965631712537565],[4.840739589571671,51.965614538757585],[4.840781266501674,51.96560476424257],[4.840827095383172,51.96559578199598],[4.840886466389235,51.96558600872522],[4.841013843031139,51.96555401733743],[4.841100128844564,51.96552548435104],[4.841200137780593,51.96549083998437],[4.841316419391678,51.965445035580856],[4.841338730896386,51.96543507213519],[4.84135730215368,51.96542874959755],[4.841519880346858,51.96535578122115],[4.841551871366806,51.96533957077454],[4.841608802415768,51.96531381349013],[4.841685413024464,51.96527792765978],[4.841785481117314,51.9652275534246],[4.841862310150333,51.96518324638968],[4.841911049848073,51.965147806466646],[4.841975501980852,51.965092206525746],[4.842032777802148,51.965028429830504],[4.842071851807647,51.964974114413145],[4.842118956110364,51.96489597206869],[4.842136157938,51.964864592476275],[4.842175929172364,51.96477320322789],[4.842217545265668,51.96469643760183],[4.842257364420398,51.96462864301863],[4.842290818300824,51.96457936194571],[4.842320374981636,51.964541864542554],[4.842358570993905,51.96450467679586],[4.842401326803669,51.9644658383168],[4.842443932569753,51.96442137240756],[4.84248211417063,51.96437576245101],[4.842508743280808,51.96433488080561],[4.842525869560724,51.96429169907503],[4.842537996362618,51.96422883662829],[4.842532245224207,51.96418836233314],[4.842515101463336,51.9641298585472],[4.842497452173757,51.96407584660283],[4.842472521055281,51.96400439046248],[4.842443764177344,51.963929258332826],[4.84243753246198,51.96386125042491],[4.842437303856421,51.963856108018014],[4.842441860824208,51.96382471476342],[4.842458660094271,51.96377849345616],[4.84248087321301,51.96374657074854],[4.84250690874441,51.96371860264204],[4.84255984732803,51.963673905892165],[4.842600866441098,51.963647409320686],[4.842691499250161,51.9635983928234],[4.842769673932797,51.96356280115776],[4.842878711901605,51.96350544759082],[4.842923466539109,51.96347924683137],[4.842954913383214,51.963454961929564],[4.84299364745292,51.963410477907395],[4.843019937855183,51.96336144212431],[4.84303643287517,51.96331264865237],[4.843076145560357,51.9631501967537],[4.843093334138637,51.963082584830566],[4.84310910644076,51.96299136288977],[4.843122236531221,51.962911651818196],[4.843128467368246,51.96282853819602],[4.843120841423923,51.962773449147235],[4.843109021950276,51.96274502717841],[4.843089723196622,51.96271544706762],[4.843064270100179,51.962685838486266],[4.843027960113358,51.96265043610715],[4.84301586749635,51.962633751678844],[4.842964743098855,51.962586550921515],[4.842956030494667,51.962575508845205],[4.842941814959974,51.96254791169148],[4.842929331658747,51.962508251166255],[4.842930307040986,51.96246500363059],[4.842949439399852,51.962425480391396],[4.842973972741137,51.962398916404176],[4.843032048484283,51.96235036921762],[4.843069606635664,51.96232959105421],[4.843091214980958,51.96231505793212],[4.843104668326936,51.962307102529664],[4.843176639667511,51.96226811126336],[4.843239880435436,51.96222795603575],[4.843290156840011,51.96218661728531],[4.843334396371459,51.96213795204455],[4.84343645986789,51.96201820438704],[4.84348856757371,51.96195777372471],[4.843554946689361,51.96188308152851],[4.843650781320867,51.96179701129627],[4.843738423638619,51.96173140561738],[4.84384192020167,51.961661387907554],[4.843968493651016,51.96159006550289],[4.844050537372778,51.96154578112383],[4.844158511191154,51.96148083527476],[4.844285877930631,51.96141962811166],[4.844422772419152,51.961360990506506],[4.844625182122978,51.961288048837176],[4.844788483356946,51.961235437964504],[4.844863474850299,51.961209942155435],[4.844979638920644,51.961165409956955],[4.845008640927594,51.961155395762106],[4.845112398355677,51.96110928721331],[4.845154081501954,51.96109134075665],[4.845169345664336,51.961083977707325],[4.845209894825032,51.961065954098814],[4.845223435907521,51.96105789998711],[4.845287960681238,51.96102679188158],[4.845449156697011,51.96093146663751],[4.845565308774223,51.960848023141516],[4.845728528272096,51.960698219316335],[4.845834415937754,51.960570622360784],[4.845864073319228,51.96053396044594],[4.845935595421257,51.96043766455211],[4.845981423598515,51.96036062933399],[4.846018621177373,51.96029226412559],[4.846056929268223,51.96019693889369],[4.846075603768254,51.960109388159566],[4.846077130915317,51.960068390224656],[4.846054090947889,51.96000873626032],[4.846015277697018,51.95996614156437],[4.845956435472508,51.959915868512475],[4.845913829118627,51.95985724803523],[4.845852496785624,51.95978787216494],[4.845783987761282,51.959709187227595],[4.845761387735487,51.95963240338454],[4.845771763731443,51.95958273644495],[4.845798751990155,51.959530889882075],[4.845863012341684,51.95946237063128],[4.845951917067341,51.95938553364767],[4.846064672996715,51.95932875152512],[4.846191227408002,51.959267826198804],[4.846271429268795,51.9592249339917],[4.846332754120264,51.95918139765542],[4.846362553626125,51.959142489171846],[4.84637428759823,51.95910321898281],[4.846379380459591,51.95901982129328],[4.84638205120534,51.958976860152944],[4.846390074355144,51.95892436897807],[4.846403095609195,51.9588808891558],[4.846425284784219,51.95883240001295],[4.846482120912371,51.95875682637121],[4.84655459069212,51.958696263237044],[4.846656795254829,51.958635935574904],[4.846719600083063,51.958602302038834],[4.846815351590912,51.95855105880113],[4.846849565583801,51.95853211567742],[4.846930939276389,51.95847631211045],[4.846965901157605,51.95845203329334],[4.847012499057915,51.95841348942114],[4.847036019712246,51.95838606604007],[4.847054057720273,51.95836087356045],[4.84709365472353,51.95829111683488],[4.847110504308436,51.95825102515205],[4.84712454447668,51.95821710456985],[4.847147387483587,51.95818068967969],[4.847180909328504,51.95813337596985],[4.847221696011189,51.958088055066014],[4.847307319988778,51.958028342830275],[4.84743474016499,51.9579615147828],[4.847469264384536,51.957944541357236],[4.847497660604971,51.957927818444794],[4.847545369724694,51.957892362473046],[4.847574645984635,51.95786777875113],[4.847603917196393,51.95783392798376],[4.84761667476863,51.957813475033454],[4.847627865667898,51.957790219510464],[4.84763420734204,51.95777339539637],[4.847639071946075,51.95775599823887],[4.847641957737113,51.95774225027321],[4.847644358218092,51.95772288234666],[4.847644672200271,51.95769675457929],[4.847626968578571,51.95764695866655],[4.847614125900468,51.95761881108094],[4.84760049661759,51.957589536338354],[4.847560056256061,51.957521380719314],[4.847509681068067,51.95743856440411],[4.847440888976515,51.95733628461796],[4.847383021062533,51.957252319303855],[4.847327256864058,51.95717369372229],[4.847263645199944,51.957076219418994],[4.847204520565406,51.95697341759394],[4.847169153249823,51.95689966738454],[4.847138076262162,51.956828462595745],[4.847098610256661,51.9567544059162],[4.847077444201816,51.95671920012537],[4.84703874775065,51.95666705163298],[4.846986856813245,51.956614851518665],[4.846919930081703,51.95655724322264],[4.846877885739427,51.95651857085208],[4.846826378153036,51.95646355906347],[4.846791350824973,51.95641845625354],[4.846759187819008,51.95635174055616],[4.846752374410831,51.95632434862901],[4.846765227928958,51.95626086884288],[4.846765597473296,51.95623016624181],[4.846772312881442,51.95621251695658],[4.847019336274503,51.95618248894128],[4.847128600857278,51.95616119386168],[4.847172259786042,51.95615270255129],[4.847246079945465,51.956123379797845],[4.84728734773389,51.95611653132987],[4.847374931519933,51.95609193663993],[4.847533934572576,51.95604407508957],[4.847664907817078,51.95600310468053],[4.84778801290802,51.95596434513835],[4.847943783127083,51.95592151967852],[4.84808215299092,51.9558884475468],[4.848224211725922,51.95586073125203],[4.848387094676167,51.955840975009714],[4.848505912915367,51.95582719175858],[4.848638382961653,51.95581291361603],[4.848762519685953,51.95580083528403],[4.848895572216152,51.955794990616326],[4.849090377392419,51.95578577005219],[4.849217189583046,51.95576893065241],[4.84931450107204,51.95575673803203],[4.849414155399747,51.95573112740785],[4.849588285855634,51.95568681974104],[4.849829751729528,51.955601706625984],[4.850013789372362,51.95552569664563],[4.850034002665492,51.95551057163589],[4.850115736913425,51.9554651850468],[4.850157471410115,51.95543503983272],[4.850192831316418,51.95527860577126],[4.850227407991643,51.95507451174526],[4.850283641387007,51.9547868347695],[4.850300699134241,51.95470465100127],[4.850349678030748,51.95444813952743],[4.850393684150254,51.95422423314359],[4.850460382692758,51.95382880619341],[4.850475700900767,51.953699802976544],[4.850500486013096,51.95354672713281],[4.850574230032597,51.95313856873655],[4.850598861980373,51.952998255662315],[4.85064088908627,51.95274739295779],[4.850664995263179,51.95265104861969],[4.850697269344843,51.95244695287868],[4.850718064051909,51.95224421594018],[4.850743576135257,51.952030148184285],[4.850779147300493,51.95174237662881],[4.85081509073823,51.951423399090196],[4.850898901941055,51.95094152763903],[4.850951594010231,51.950565891728],[4.85100611154,51.950228563597705],[4.851045395307281,51.95001456749617],[4.851140583481242,51.94958570721313],[4.85122725827915,51.94954096256819],[4.851243988370869,51.94953711088406],[4.851251147492904,51.94953567840108],[4.85126627762107,51.949531819422866],[4.85135706387248,51.949509420561945],[4.851807917580699,51.949422416882015],[4.85252943360905,51.94956547746515],[4.853104547265571,51.94967202319692],[4.85341028053518,51.949726496553005],[4.853591171056032,51.94974754124643],[4.853759337120703,51.949740160617075],[4.853936484900154,51.9497125966127],[4.854089725445193,51.94967958488065],[4.854217005143386,51.94962173725772],[4.854285044205215,51.9495855257739],[4.854366582038327,51.949523542797984],[4.854428315393871,51.9494535962334],[4.854486936009064,51.94936032866405],[4.854555138174958,51.94916682108307],[4.85461040283477,51.94900078628834],[4.854670777453464,51.94880612862835],[4.854705875221512,51.94867370890234],[4.85473746471039,51.94855868377792],[4.854759242673285,51.9484762061013],[4.854790237617429,51.948429714686476],[4.854840259524122,51.94839904804737],[4.854970556841702,51.948354974485646],[4.855107183178056,51.948323009800006],[4.855288535904124,51.94829602007688],[4.855397481446521,51.94829848120336],[4.855485256949398,51.94832359611734],[4.855609488189935,51.948387642639766],[4.855714094386737,51.94843108885744],[4.855816591161757,51.948431551996535],[4.855772154587826,51.948229957528234],[4.855768597117346,51.94814707755736],[4.855780461514327,51.94807494546798],[4.855837687161795,51.94799346367654],[4.855945478314901,51.94792007511077],[4.85611887605612,51.947873111946336],[4.85671199544053,51.94781118025222],[4.856904471090001,51.94776458062273],[4.85706439001188,51.947693673160806],[4.857279696345716,51.947580886510295],[4.857381075061152,51.94744539397449],[4.857223745405966,51.947382045078506],[4.85716253539612,51.9473454022401],[4.856975855201931,51.94715630808102],[4.856812957452709,51.946984479694706],[4.856573569232889,51.946725208552415],[4.856445405611673,51.94657941390337],[4.856340739951619,51.94628288211335],[4.856990451464626,51.94585212346983],[4.857432700198861,51.945592896018276],[4.857529923670566,51.94553800143537],[4.857679696311921,51.945296825418524],[4.857557342669151,51.94517886817368],[4.857481711774305,51.945039486212984],[4.85739515399806,51.94484500111436],[4.857307312829747,51.94480867878357],[4.857307225462303,51.94480868737831],[4.857589070408234,51.94463066562822],[4.857764009250293,51.94415312736897],[4.858138673295953,51.943174558016125],[4.858020089954699,51.942980153954956],[4.857589042401618,51.942862964439676],[4.857658210036614,51.94277679863379],[4.857838699920551,51.94255195774095],[4.857862544499744,51.942505649035716],[4.857857725678108,51.9424752106402],[4.857754453576498,51.94244913782922],[4.857519487334672,51.94239365506743],[4.857405728968996,51.94237874323763],[4.857190218820493,51.94238399212187],[4.857030346239373,51.94238975211508],[4.856794386941671,51.942399995510726],[4.856693902652085,51.942402697183546],[4.85664157281654,51.942404105982],[4.856545802727589,51.94240047400551],[4.856401038110631,51.94238061249899],[4.856217146093658,51.94238458214142],[4.856128877013256,51.94240339174746],[4.856015594181738,51.94242701394357],[4.85588767994629,51.94243591885313],[4.855408399646405,51.94245776049811],[4.855193448206738,51.94245998815141],[4.855051030532287,51.94245934378771],[4.85489850054011,51.942439445290546],[4.854606616201237,51.94237889924901],[4.854555019190027,51.94236265723921],[4.854523960260506,51.94236091662655],[4.854500510960252,51.94237360987698],[4.854476780545315,51.94241245806506],[4.854311643295229,51.94268051668177],[4.85430206370371,51.94269605914128],[4.854045835859997,51.942699535794304],[4.853859210705964,51.942702060208084],[4.853829705801274,51.9426710872268],[4.85358500464342,51.94241434731305],[4.853550195615461,51.94237570107069],[4.853498408800143,51.942375466058856],[4.852736382028108,51.94243923846336],[4.852708592881298,51.94238148758784],[4.852581573789063,51.94239211874152],[4.85259635807112,51.94245621026336],[4.85244074966033,51.94247631089854],[4.851498295244177,51.942572700502375],[4.851421877114031,51.94258051383129],[4.851123654115864,51.94261757115737],[4.850823033146197,51.94263860846446],[4.850749429450345,51.942644555619566],[4.850504234148907,51.94266436184702],[4.850413426290684,51.9426799557163],[4.850387085483485,51.94271665193631],[4.85041500121018,51.94276479535301],[4.850489665404264,51.94280035265396],[4.850626739261619,51.94281378661692],[4.850841654383999,51.94281476700923],[4.851426679279505,51.94283024222305],[4.852159290789762,51.94284477716104],[4.852643311419433,51.942861386675126],[4.852641730410263,51.94299423689286],[4.852534345107515,51.94299374872107],[4.851660509859864,51.94297444742671],[4.851534724447282,51.942974153188594],[4.851167125528773,51.94298680571759],[4.851125642596492,51.94300908760732],[4.851082694803332,51.943012747845344],[4.851035931796688,51.943025334123284],[4.851011973211846,51.94305743029662],[4.851012750137825,51.943064229063026],[4.850910474687658,51.943108381082475],[4.85067681526471,51.94302669841952],[4.84981988501541,51.942711562680806],[4.849802283701811,51.942710637340454],[4.849800867341458,51.942715969973484],[4.849746871015444,51.94269859133657],[4.849646317491521,51.942679031411615],[4.849518780070593,51.942674511449056],[4.849440421813215,51.94268033717454],[4.849372114774123,51.94269210520208],[4.849317031635,51.942708418882766],[4.849218310083367,51.942707131385376],[4.848117313939344,51.94262202991322],[4.847922475589042,51.94260120034693],[4.847459571152766,51.942506379382756],[4.846889852468386,51.942348156102014],[4.846136209130848,51.94214862719524],[4.845715814505555,51.94205456117825],[4.844791840092658,51.941866607230665],[4.84374056504595,51.941721588572754],[4.843620753051377,51.94171709790215],[4.842811823351592,51.941685833483575],[4.842227791400636,51.941687056341],[4.841555979689112,51.94173225375506],[4.840776371444133,51.94179296383057],[4.840079316001563,51.941849549657306],[4.839736956183411,51.94188840414207],[4.839672026416394,51.94198331597606],[4.837248431828527,51.941757786337064],[4.836588295031605,51.94170783178574],[4.835701043651907,51.941630032183326],[4.835312513809906,51.941514407263874],[4.834978388898325,51.94137894746124],[4.834460886500171,51.94118236664817],[4.833857967968274,51.940884972170245],[4.833671359315646,51.94108493087264],[4.83355057851769,51.9412182535763],[4.833418948369443,51.94135152506488],[4.833308985682344,51.94148489846383],[4.833021703114701,51.94179093945016],[4.832862173803131,51.94176406725395],[4.832670433847247,51.941732261124116],[4.83254790312442,51.941708933612944],[4.832386537372372,51.941674187252744],[4.832296741453439,51.94164989036357],[4.832103989371277,51.94158943248173],[4.831979046546625,51.941549518368724],[4.831840864260651,51.94150532603601],[4.831776473127102,51.94148479801294],[4.831671661495891,51.94145171995579],[4.831527145569599,51.941405816499326],[4.831414071175957,51.941379997753025],[4.831309369269387,51.941366298893726],[4.831177351701488,51.94135640771148],[4.831059078368985,51.94135584842851],[4.83097959967103,51.94136053300119],[4.830913043509038,51.94136808303352],[4.830837106531484,51.94138036149084],[4.830757375819129,51.94139599260063],[4.830665537785321,51.94141690547196],[4.830532807872451,51.941446891756236],[4.83032280553787,51.94149477643674],[4.83025899079114,51.94150992529711],[4.830141885546944,51.941525378977836],[4.830038332577911,51.94153864965051],[4.829935065186418,51.94155585850777],[4.829705550008676,51.94161150548805],[4.829270018111171,51.9417498838082],[4.82911792956756,51.9417927019827],[4.829060747105807,51.94180423237608],[4.828997124098603,51.941812073888435],[4.828884497305961,51.9418146312364],[4.828835451192509,51.94181158499841],[4.828778943499163,51.941806265194614],[4.828728128417364,51.94179928257754],[4.828672123523443,51.941788617007525],[4.828619786155271,51.941776575628175],[4.828565454319551,51.94176002155858],[4.828521786113521,51.941744372023614],[4.828379952024068,51.94168414991121],[4.828260727842324,51.94162319018308],[4.828156317043026,51.941558085191424],[4.828087083356223,51.9414979291938],[4.8279831472451,51.94137721501815],[4.827921212955715,51.94127749070182],[4.82787953637521,51.941184873663005],[4.827865316516156,51.94113087557426],[4.827843955592293,51.94099398836054],[4.82782016115697,51.9408983733284],[4.827778634907602,51.940792561977105],[4.827725855608868,51.94070635472344],[4.827655437862912,51.940622319608615],[4.827451668430728,51.94040815374893],[4.827336529216551,51.940274181667306],[4.827307273252693,51.9402341607992],[4.827254113074933,51.940123799649044],[4.827210651169747,51.93996460567822],[4.827198281053322,51.93985331518412],[4.827195788655315,51.9397347731372],[4.827196122602684,51.93963449102298],[4.827188728495493,51.9395440144149],[4.827136340320934,51.93923534554569],[4.82711057726433,51.939023716516495],[4.82709030315121,51.93886407563174],[4.827063851562958,51.93872519551198],[4.827002151706736,51.93857097502663],[4.826920215235276,51.93841861755939],[4.826881471571414,51.93834540209622],[4.827222634107427,51.9382006868874],[4.827166261188512,51.9381021121452],[4.826842241358609,51.93748345099578],[4.82639810086449,51.93673080100186],[4.82607274018283,51.93629331065997],[4.825531770244848,51.93566463072083],[4.825374107242947,51.93548130477269],[4.825165757278715,51.93525475372555],[4.824851701080337,51.93495916010965],[4.824654807978112,51.93478771698267],[4.824451785202283,51.9346715858784],[4.824244568418778,51.93457227863665],[4.823810666359515,51.93449548869268],[4.823790775534307,51.93450466044689],[4.823776989318674,51.934517519736225],[4.82371769415505,51.93463436369638],[4.823374825027979,51.93460579079665],[4.823219425528203,51.93451767809222],[4.822919061978173,51.934316523316916],[4.822647890158374,51.93420288436373],[4.82242735962262,51.93407700311284],[4.822237156326836,51.9339481481809],[4.822062325576638,51.93380065292745],[4.821639099932178,51.9336020232289],[4.821099079221777,51.93319168268116],[4.8207854276795,51.932977973458584],[4.820478248510756,51.93278510278129],[4.820257303382586,51.93259285385438],[4.820048200426659,51.9323956460818],[4.819913564882351,51.93239499658014],[4.819671698782438,51.93250679592276],[4.81924598573567,51.93270689001759],[4.819158604872677,51.93277186768425],[4.819292429491064,51.932837913910305],[4.819560351285075,51.93294622384397],[4.819942579067707,51.9331442678219],[4.820172571788643,51.933210776950204],[4.820286173380084,51.93335401596075],[4.82028429796472,51.933502648478985],[4.820273336875779,51.93360961179897],[4.820166794438648,51.933668556469854],[4.819993907764831,51.93364988058137],[4.819859554225113,51.933625449022166],[4.819369291525206,51.93360524940661],[4.818679613868948,51.933381934048356],[4.817713589748299,51.93295512679287],[4.817312378268983,51.932739150476294],[4.816967279021135,51.932648294164714],[4.817241392596569,51.93226911616031],[4.817280919722057,51.93218606593701],[4.816746879937027,51.9318267524321],[4.816603829195893,51.931730924782606],[4.81699086214249,51.931548494673024],[4.817611905216429,51.93187256251383],[4.81789724488776,51.93212365193845],[4.818021365259546,51.93219560298128],[4.818261427076553,51.9322264895615],[4.818643477996313,51.93243642865464],[4.819103227549887,51.93258728348829],[4.819509944213834,51.93236926515701],[4.819588074158072,51.932274517848704],[4.81952285974013,51.93210772837773],[4.819314438503388,51.93185701445925],[4.818885120726492,51.93158144927542],[4.818465959955969,51.93126430621925],[4.818210597231201,51.930924180027525],[4.817660158255643,51.931099881359685],[4.817158457612647,51.93046722636392],[4.81675074081067,51.930007450212344],[4.816637913865758,51.929804752945394],[4.816860071033889,51.92972853930366],[4.815687508262779,51.92891426413264],[4.814810289417261,51.9283213892089],[4.814352932803435,51.92798622111881],[4.814223083305001,51.928366095752494],[4.813855982497929,51.928609124110835],[4.813844998752359,51.92836579858296],[4.813817830683445,51.928225221806194],[4.813785911660319,51.92810035160904],[4.813636095544283,51.927762554529934],[4.813501630548576,51.92751162447827],[4.813350469115291,51.9272965754973],[4.813258157664224,51.9271876973922],[4.81313100069027,51.92704101448968],[4.812809768597822,51.92672260313817],[4.812602742939819,51.92651542373267],[4.812244311633315,51.92618474851418],[4.811946958641452,51.92594510033885],[4.811642402335933,51.92570850815128],[4.811391303691643,51.92553790045838],[4.811106039341158,51.9253845444011],[4.810825802996257,51.92532445836746],[4.810717815089022,51.92530511609408],[4.810354726833841,51.925259795126586],[4.810101878891847,51.92526107998515],[4.810072197944472,51.92526402630882],[4.810060518112262,51.925271267585664],[4.810055740709155,51.925288942372035],[4.810026372560737,51.92544525098873],[4.810023488001478,51.92545703864938],[4.810013028590618,51.92545754458284],[4.809891606414789,51.92545865620373],[4.809785698390964,51.9254539564683],[4.809795767370265,51.925394448514574],[4.809710259625023,51.92539402852626],[4.809733259111811,51.9253645964949],[4.809739048440496,51.92530551694602],[4.809269116536554,51.925080788809005],[4.809262084442246,51.92502958304418],[4.809259916942617,51.925013860593566],[4.808993630985507,51.924990772256606],[4.80899304243142,51.92499583884296],[4.808987980758472,51.92503896745603],[4.808921368298043,51.92503552982059],[4.808909580867737,51.92502626767588],[4.808901449193627,51.92501987284851],[4.808905774006094,51.92498204379473],[4.80890711940373,51.92497013173911],[4.808887354933753,51.9249435905222],[4.808518999590697,51.92483800640603],[4.808423774037209,51.924812208214426],[4.80828036663604,51.924835195658126],[4.808128935998133,51.92483773065623],[4.807911456387103,51.92480892990099],[4.807906115296531,51.92480485878399],[4.80769598390031,51.924644790665376],[4.807533175033916,51.92457260181141],[4.80751051793908,51.92454723257007],[4.807496013842806,51.92452433040633],[4.807489303072358,51.9245137448833],[4.80745645658955,51.92450290464135],[4.807384531625624,51.92448987623022],[4.807311872432114,51.92447403975901],[4.807239089956876,51.92446663379436],[4.807056859633866,51.92444177149121],[4.806991568635726,51.92443064517156],[4.806921711493398,51.92441624246117],[4.806628418054351,51.92434934059007],[4.806424177656893,51.92430090876786],[4.806132775130346,51.92423179484931],[4.805950710483969,51.92418862218226],[4.805698426581156,51.92412878790029],[4.805572335528438,51.92409888878389],[4.805484245878993,51.92407799523783],[4.80540804562566,51.924057295290595],[4.805421199066187,51.924018233681736],[4.805370697925963,51.92401016381043],[4.805269782530266,51.92398619549676],[4.805231421882857,51.924017303373454],[4.805139606957195,51.92426723095682],[4.805057574890211,51.92425117590119],[4.805078642518963,51.92401080335714],[4.805079853677572,51.92399698512533],[4.805067749491875,51.92395389750172],[4.804910060850174,51.92391789984305],[4.80475827567899,51.92391323797607],[4.804568093351286,51.92394359336786],[4.8043781136954,51.92395830057308],[4.804201186839107,51.92394177443265],[4.803740756032619,51.92383385800844],[4.803646063823788,51.92381773912958],[4.803601581941838,51.92383316720828],[4.803594912649196,51.9238452145729],[4.803569188084386,51.9238916919633],[4.803536946586813,51.923938478554476],[4.80352152518175,51.923937125631355],[4.803442152546364,51.92393018794348],[4.80344291477458,51.92387150616027],[4.803599424103493,51.92351234984168],[4.803430517651341,51.92346609261078],[4.802758776194014,51.923274402138766],[4.802668311647718,51.92325190370793],[4.802350626870009,51.92316130211181],[4.802188091069873,51.92311164118983],[4.8017355689805,51.92294445042133],[4.80094701480781,51.92265627894636],[4.800759506371945,51.92258775956639],[4.800673339136154,51.92255919584567],[4.80061276309115,51.92254133916221],[4.800530179847747,51.92251998397892],[4.80030976242932,51.92247135287546],[4.800204970683292,51.922450803411344],[4.800114367907383,51.92243577171431],[4.800024997854461,51.92242542009871],[4.799970970017186,51.92242156384136],[4.799913658804765,51.922420891045164],[4.799868755556804,51.922424073338476],[4.799851781526822,51.922426999665504],[4.799827506324507,51.92243464440141],[4.799812872352541,51.922443164242594],[4.799799811835996,51.922459206288956],[4.79979801095481,51.922469084586616],[4.799798761483226,51.92248951908553],[4.799805308005902,51.92250917358408],[4.799813963112287,51.92252432641543],[4.79982720448325,51.922541165024235],[4.799845728602211,51.92255867719385],[4.799870075460059,51.922575589259466],[4.799913500705633,51.922597639151086],[4.799980748465854,51.92262556063221],[4.799996002427065,51.92263523649096],[4.800006325617539,51.92264177771543],[4.800124005730346,51.922736276780206],[4.800125111019296,51.92274514491186],[4.800192990411695,51.922779271454694],[4.800446824794096,51.92287064784953],[4.800473954854315,51.92288485916725],[4.800628083405803,51.92293912755134],[4.800659777870862,51.922953370588324],[4.80069154601549,51.92296196923782],[4.800718676091075,51.922976189486924],[4.800841088498446,51.92301902784491],[4.800872783087517,51.923033270824504],[4.800913577490099,51.923047559177384],[4.800904095933588,51.92307566371512],[4.800894922734862,51.923081244735755],[4.800890248080722,51.923089670564416],[4.800881074760161,51.92309526057181],[4.800816473080645,51.92315970013964],[4.800779456843236,51.92320457459662],[4.800733326278498,51.92324939458604],[4.800714818149102,51.92327182730862],[4.800668687450671,51.923316647272046],[4.800659293649828,51.923339125458355],[4.800713605617508,51.92336474384768],[4.800727233229498,51.92336762521649],[4.800867750757358,51.923419003001534],[4.800899431100014,51.9234332459011],[4.800931199512448,51.92344185347371],[4.80098556310795,51.923464649620584],[4.801302852347956,51.92357885659944],[4.801339060757769,51.9235959353303],[4.801338950622877,51.92360438392296],[4.801348065066227,51.92360442934383],[4.801329079875762,51.92366346973455],[4.80130087014257,51.923730904302396],[4.801296026538798,51.92375340521448],[4.801258422974131,51.92384332699427],[4.801245492473162,51.9238850857961],[4.801233032219733,51.923890776297846],[4.801224636589146,51.923892460233155],[4.80121440441352,51.92389451252853],[4.80116180246545,51.92389042124504],[4.800438255076978,51.92379873438485],[4.799093150280551,51.92363310635587],[4.798955609631162,51.92362095794918],[4.798362309206023,51.923518431670075],[4.798204681132839,51.923492753022124],[4.798047343835891,51.92344601567879],[4.797890318667958,51.9233743906669],[4.797758319224023,51.92328566006129],[4.797712538609415,51.923233737927994],[4.79769456367417,51.92318769883073],[4.797631274299703,51.9223449837259],[4.798510409183574,51.92242031724148],[4.798655208433561,51.922436268685],[4.798757387452869,51.92243869472554],[4.79879466732328,51.922429308622604],[4.798822823454842,51.92240838960336],[4.798829316974955,51.922385420655075],[4.79882986798856,51.92234333049354],[4.79880228835654,51.922320217974956],[4.798774648095804,51.92230284876688],[4.79862593447535,51.92227723326228],[4.798091421258252,51.92220944359342],[4.797760532602721,51.92217140871932],[4.797460470235762,51.92214501479992],[4.796987279671424,51.92209477655079],[4.796898797422499,51.922087770714526],[4.796718885016503,51.92207352831206],[4.796238572307668,51.92203549354286],[4.795779578445351,51.92199694385841],[4.795558554725893,51.921978385120745],[4.794716570824144,51.92190338749669],[4.794723873586888,51.92181918449997],[4.794377408860556,51.921788719740654],[4.794344755383539,51.921916820330004],[4.794322222342075,51.921970871123875],[4.794309356800631,51.92196979054336],[4.79359822625105,51.92192092704209],[4.793164153202485,51.921891094916475],[4.792956800342762,51.92187329247088],[4.792857054058546,51.921860707736464],[4.792800608928156,51.921848467703796],[4.792745149734617,51.921830929440084],[4.792685521537496,51.92180656580489],[4.792586123264721,51.92175780406114],[4.792526608198503,51.92172380529091],[4.792467216581873,51.92168158267646],[4.792486806613697,51.921734749631874],[4.792492405512454,51.92178072694746],[4.792464272167272,51.92179973003474],[4.792404126028488,51.92180353345959],[4.79224455284845,51.92178713100199],[4.791453094391349,51.92168356664192],[4.791297711084746,51.92166588080233],[4.791224250626106,51.92165751766745],[4.791007857067639,51.92162770230507],[4.790717695166697,51.92157551751072],[4.790646373010066,51.92156268861099],[4.789851735222775,51.92146484092823],[4.789111016435161,51.921556091751924],[4.789079361736443,51.92154029976882],[4.789020535930045,51.92151480580142],[4.788940639265356,51.921464720010285],[4.788924196267272,51.92145065927424],[4.78888913194636,51.921431110687514],[4.78884244875004,51.921398757315266],[4.788808731243326,51.92138287386252],[4.788722571402181,51.921349034140476],[4.788632175094367,51.92129384316793],[4.788602012499265,51.92127737552889],[4.788573578747585,51.92125880439753],[4.788504733342911,51.92120308488471],[4.788455789999102,51.92116692671529],[4.788390907952847,51.92112471001122],[4.788356451306855,51.921097775843734],[4.788325384359863,51.92107828340277],[4.788233891367068,51.92102692460405],[4.788283202315491,51.92099401740858],[4.787819893737825,51.92089333128708],[4.787699118207421,51.92095145502351],[4.787649719213888,51.92093971583947],[4.786802937210933,51.92083455254082],[4.786103794920078,51.92074772856493],[4.785922641885242,51.92067582923458],[4.785653877576491,51.920569163384094],[4.785551738967801,51.9205271589247],[4.785040961578772,51.92031713485027],[4.78508295442876,51.920187152046],[4.784999516403857,51.92015993902176],[4.784909803024878,51.920167119603896],[4.784903360340182,51.92019121163237],[4.784902087326446,51.92025041212289],[4.784896499550113,51.92028555535321],[4.784881149870088,51.92030501762728],[4.784879584816579,51.92030573767388],[4.784851459258108,51.92031856391585],[4.784809750782327,51.92031880860651],[4.784788867376056,51.92031188833524],[4.78451383649876,51.920223029843456],[4.784068031728923,51.92007899532735],[4.783955760682229,51.92004588999334],[4.783911766252263,51.9200345185254],[4.783840467626665,51.920019177816116],[4.783780852041143,51.92000956875589],[4.783726006785907,51.92000303124408],[4.783689920134065,51.920000329214275],[4.783626838375082,51.91999770429516],[4.783578024077566,51.91999778622456],[4.783577346734033,51.91998760780379],[4.783574267969778,51.91993759815052],[4.783573529558184,51.91992439030324],[4.783510856812149,51.91992378982636],[4.783376547267014,51.91992871780402],[4.783277622319488,51.919930169113286],[4.783217191386647,51.91992283864767],[4.78316777529165,51.91990713356868],[4.783119306369756,51.91987936182648],[4.782977529599106,51.919696895390636],[4.782675783590181,51.919199854813094],[4.782513353856407,51.918923468941585],[4.782477355413114,51.9188645800797],[4.782405113892271,51.9187639240926],[4.782392337099179,51.918708803991805],[4.782421471515126,51.91865446579471],[4.782456331003069,51.91860351872997],[4.782420542455575,51.91851176908815],[4.782327505576264,51.9184464026431],[4.782074888953728,51.91838358542739],[4.781640480743029,51.918301863363496],[4.781356036207391,51.91824954994269],[4.780866820695493,51.91817287268628],[4.780171967796729,51.91807799963449],[4.779581960965057,51.91803282240551],[4.778800823792778,51.91798664415097],[4.777627259242957,51.91798927414815],[4.776882996393249,51.918038776867775],[4.776399294644518,51.91810901720258],[4.774788699225403,51.918312864224895],[4.77456780304912,51.91807892071098],[4.774229114375367,51.917938588766006],[4.774267389833463,51.91776142776944],[4.772584327112907,51.91761407344796],[4.772565178902145,51.91770265363287],[4.772869154357548,51.91775966559195],[4.772957032974692,51.91788760837531],[4.772919372697695,51.91802043202719],[4.772853217517971,51.91826950750057],[4.772767715292729,51.918623781788725],[4.772748794184696,51.91869574348925],[4.772676638776955,51.91872861467113],[4.77242546539575,51.918743930018216],[4.772031558083537,51.91870861192317],[4.771745347108393,51.91866277362436],[4.771832541271892,51.91818657124594],[4.771936440988151,51.917799136526874],[4.772054240181773,51.91770552684237],[4.772224982784316,51.91767316286849],[4.772395118711882,51.91768513562719],[4.772423144709133,51.917602147789275],[4.771277539243198,51.91747974995028],[4.771060166833111,51.91829891715303],[4.770199901867481,51.91828332212783],[4.769654165112089,51.91820840474691],[4.769504691198658,51.917997001383576],[4.769210691553412,51.917867972530324],[4.768640970597458,51.91758230628462],[4.768328964186761,51.9174587263352],[4.76808743679558,51.917424197115096],[4.767867758660962,51.917755595658896],[4.767198542678108,51.91753590388857],[4.766637729958712,51.917255820734695],[4.765594798264161,51.91684015681832],[4.76533136844716,51.91709372176705],[4.764873278397985,51.91716334908881],[4.764264449723094,51.91711578403591],[4.763961349449357,51.91699778551809],[4.763535606529985,51.916674054330855],[4.763261861285786,51.91637883996835],[4.762862555273276,51.91608851298446],[4.762388970642371,51.916629170761844],[4.762103414062747,51.91653896317626],[4.761791818463497,51.916387656444755],[4.761389358506933,51.916324545553756],[4.761032726549909,51.91618962570914],[4.760533089987218,51.91602623095714],[4.760617679335985,51.91574401195881],[4.760488431814202,51.91537196356536],[4.760249549769919,51.91514898861678],[4.759677824210429,51.915655854713414],[4.759244769864777,51.915858614373434],[4.758815212501166,51.915811978570254],[4.758485635143632,51.91566611276492],[4.75810203745148,51.91553657663618],[4.757888502141789,51.91542458754784],[4.757603505598187,51.91529557762737],[4.75733025904461,51.9149671034625],[4.757261204963231,51.914778280712646],[4.757130045837575,51.91454479378831],[4.757069479728068,51.91438927382619],[4.756990853447274,51.91424473980865],[4.756948052427631,51.91410040682096],[4.756784414328068,51.914265807398394],[4.756576031418571,51.91442542179826],[4.756471264666731,51.91452495551258],[4.756454029117903,51.9144905899071],[4.756142010291153,51.91415746451516],[4.755844345884027,51.91384576303713],[4.755581886016641,51.913549701178184],[4.755560046053269,51.91352037121256],[4.755457676732691,51.91338724077297],[4.755455891660663,51.91338498405532],[4.755348959136044,51.91324565389492],[4.755025746859578,51.91311851749701],[4.754589771207763,51.912508666422944],[4.754458898668638,51.91234713980996],[4.754351874681436,51.912250836140096],[4.754146320309856,51.91211571073693],[4.753912530384684,51.912007236535366],[4.753792479164338,51.911956811348624],[4.753635402986007,51.91189661371805],[4.753342571271346,51.911803136500005],[4.75298464072806,51.91171505094916],[4.75254303893309,51.9116322561869],[4.752285419476871,51.911595863639135],[4.752283683649657,51.91147076133079],[4.752012937301116,51.91144289027487],[4.75189445232195,51.91143101427862],[4.751761444086788,51.91141737879703],[4.751516628900997,51.91141913804961],[4.751547673687839,51.91128339085266],[4.751309171214102,51.91103823377406],[4.750954572387588,51.91076472725957],[4.750653104879298,51.910535847685175],[4.749894956985603,51.910914173003654],[4.749590978551456,51.910862647173325],[4.749287880509128,51.91075014733763],[4.748966379054098,51.91067080423757],[4.748742900099415,51.9106307961227],[4.748572876095391,51.91061324368833],[4.748183786097727,51.91053873551669],[4.747905017764505,51.91005352124927],[4.747761553169468,51.909849663558916],[4.747725028451526,51.90978345326877],[4.747635423406201,51.909673701456335],[4.747620327950533,51.90965704451071],[4.747544291246498,51.90959061914182],[4.747452809846154,51.909524954575026],[4.747329832753495,51.90943804941624],[4.746970154795982,51.90917374321205],[4.746838023273707,51.90907667559157],[4.746604697105301,51.90889310821876],[4.746520183121545,51.908912871690255],[4.746366765739464,51.9087788885519],[4.746388242718952,51.90873827873089],[4.746409014464394,51.90871451850994],[4.746399227074146,51.90868440758309],[4.746377002442136,51.908650022222496],[4.74609968525781,51.90842295227392],[4.74594783721717,51.90829122425588],[4.745503382590242,51.907922804394836],[4.745087747800356,51.9076269966329],[4.744882847180466,51.90749021343181],[4.744618260239225,51.907302812840506],[4.744139785189081,51.906996833621015],[4.744130555083445,51.906990886655116],[4.744128477068156,51.90697767116384],[4.744133251577567,51.906968987422076],[4.744138161062666,51.90695188218478],[4.744137039934682,51.90694288754048],[4.744135316187391,51.9069282717801],[4.744101223121972,51.906882585393696],[4.743927537183274,51.906802140489674],[4.743496703994021,51.90663349413801],[4.743304856414089,51.90655294882914],[4.742995415591931,51.906455192867305],[4.742717482006666,51.90636855687242],[4.742522799377507,51.906311589571466],[4.742134428519835,51.9061993492932],[4.742027281662248,51.90617319781875],[4.741880508694289,51.90611650142971],[4.741308371839358,51.905946504742296],[4.741033683400697,51.90587111821071],[4.740782882493991,51.90581721913101],[4.740423087629135,51.90576271074939],[4.739794411916499,51.90569605103223],[4.739662339309352,51.90567537790148],[4.73930213874798,51.905634067970276],[4.739102767984688,51.90561049741213],[4.738881491741783,51.90558736296474],[4.73853070586603,51.90556239877711],[4.738410610087841,51.90545902408389],[4.738311993933516,51.90537268424942],[4.738124299521861,51.90530643609589],[4.737863385807883,51.90531529564584],[4.737658346366969,51.90529699453208],[4.737414828450029,51.90525447199171],[4.737099330631044,51.90520124097085],[4.736960835493744,51.90518674931858],[4.73635857454664,51.90501181577804],[4.736308173303024,51.905426806179406],[4.736217671681725,51.90549090539243],[4.736103430435572,51.905477347053065],[4.736049926957143,51.905464134126774],[4.736008134655505,51.905456037614115],[4.735974422962429,51.905441855693645],[4.736020532439585,51.90506153732563],[4.736041227117219,51.90489083418385],[4.735752127436429,51.904759042315455],[4.735724837659268,51.904709867658475],[4.735528416587573,51.90457241383244],[4.735487430097452,51.904550892750265],[4.735397135674535,51.904503498889646],[4.735298629436731,51.904455223475416],[4.735199728012941,51.90443421695413],[4.735112236053999,51.90438600248708],[4.734933476257177,51.90427342699258],[4.734637009110989,51.904123111052705],[4.734557019146095,51.90403266480853],[4.734412181986297,51.90401391030818],[4.734257872236929,51.90401305307666],[4.734192240786943,51.90397859495465],[4.734071694862664,51.903930196033684],[4.733973290405737,51.903875097772215],[4.73382036807255,51.90377878957684],[4.733743019883125,51.90370969620381],[4.733689785698292,51.903662147532785],[4.733646395344229,51.90361417718875],[4.733602311392595,51.903613932022544],[4.733546802797688,51.90364089447222],[4.733305211265867,51.90381852095345],[4.733064720190884,51.90409018199406],[4.732991873425879,51.904147204167494],[4.732930359224886,51.90419535479655],[4.732894683466543,51.904213420853246],[4.732853306563837,51.90421683981965],[4.732753492691216,51.90417976366293],[4.732724221202871,51.90416316064805],[4.732710375477663,51.904100082989714],[4.732629206499566,51.903593774857015],[4.732629445793102,51.90357733618172],[4.732740206497129,51.903470207624274],[4.7327465574629,51.903439196634],[4.731936209373807,51.90304478595061],[4.731698854367633,51.90292658449428],[4.731664043107982,51.902884386944784],[4.731665081203667,51.90281317665656],[4.731701090286397,51.90277319880894],[4.731701249994209,51.9027622426884],[4.731569179527103,51.90271037023615],[4.731545355714846,51.90272485266367],[4.731428908066711,51.90281733303452],[4.731396354197543,51.90282263437602],[4.731299254509012,51.902802003129835],[4.731202261506588,51.902774064727865],[4.731082430417081,51.90269304734023],[4.730998772299335,51.902662450705556],[4.730948708008277,51.90265486347595],[4.730890073823308,51.90262713901102],[4.730802824062515,51.90253899561469],[4.730747379473292,51.90249485786783],[4.730703255597875,51.9024854790445],[4.730617741610437,51.9024795272936],[4.730555784963839,51.902477356452366],[4.730330302558403,51.902355560205194],[4.730301486509147,51.90230792173975],[4.730299043805703,51.902273212374816],[4.730023831916445,51.90212009117157],[4.729991479704529,51.902112611565926],[4.729897144868582,51.902104776297605],[4.729832319436144,51.9020971060256],[4.729658052399071,51.902005733473786],[4.729174838721954,51.901747368092146],[4.729131369528851,51.90169233061854],[4.72908763303414,51.90165556530816],[4.728617842045981,51.90141279595342],[4.728507546299985,51.901355918586866],[4.728245465164971,51.90122077190213],[4.728171873230879,51.90120757753572],[4.728074644676643,51.90119607522376],[4.728007126809842,51.9011719578047],[4.727332974777036,51.90079771203667],[4.727171306099465,51.900707970486664],[4.726983795943997,51.90061378701497],[4.726972714620492,51.90060947318309],[4.726402742510923,51.900387722417584],[4.726120915172799,51.90027511998152],[4.725939151039756,51.900202494679874],[4.725886479488532,51.90019756019944],[4.725884421403837,51.90019819579182],[4.725714199706247,51.900093626930214],[4.725523561259408,51.899942840676665],[4.725208544205841,51.89972814614301],[4.724877730013989,51.8995296579242],[4.724636497118698,51.89940695284314],[4.724259877407107,51.89921326513063],[4.72402786935002,51.899088920978095],[4.723556002270119,51.898889075583696],[4.723281598479836,51.89880718604618],[4.723102566569746,51.89876966298145],[4.723086292609795,51.89876479809818],[4.723077693867699,51.8987636259353],[4.723055515312208,51.89876602636868],[4.723018731574053,51.89877452836234],[4.722999508571631,51.898777502779296],[4.722981240087901,51.89877684223133],[4.722788070459404,51.89874429033054],[4.722551996801456,51.898710650530056],[4.7223379007685,51.89866562028648],[4.721830208861596,51.89857820056407],[4.721566956506813,51.89854131282645],[4.721373990419572,51.89850201834139],[4.721250637341094,51.89848418719643],[4.720878840224726,51.89841073756175],[4.720706677433133,51.89837857998277],[4.719900515549617,51.898293952929656],[4.719659713026847,51.89828162822443],[4.719567948840132,51.89827745755832],[4.719445374794684,51.89826889612222],[4.719204268205356,51.89824673529229],[4.718990032590601,51.89822613796916],[4.718899489528162,51.89821606825327],[4.718623979804293,51.898179113179694],[4.718263565245925,51.898126222860014],[4.717927530593625,51.89810661103773],[4.717650267862752,51.89809576439021],[4.717251076452329,51.898086747790785],[4.716930032931085,51.898088845009866],[4.71670438047562,51.89808081627933],[4.71637535220217,51.898070794810536],[4.715931297995191,51.89807809248169],[4.715531000460142,51.89811203793933],[4.71542549519005,51.89812322780825],[4.715281831088258,51.898143475574116],[4.715142957630229,51.898185376997425],[4.715016353299847,51.89825600391476],[4.714980440533916,51.898289757195585],[4.714950623878933,51.89825199653873],[4.714839649428032,51.898244125849594],[4.714699188411039,51.89825417125882],[4.714689186479467,51.89815932983029],[4.714673581948642,51.89801163965419],[4.714673852363089,51.89799355625244],[4.714352222395957,51.8979989508527],[4.71241645061097,51.897944436214196],[4.711526524724725,51.89802976530685],[4.711502768586485,51.898054949441914],[4.711387120475291,51.89835816914915],[4.711340408413725,51.89835428709887],[4.711246331978638,51.89838992487762],[4.711088442909712,51.89839262994272],[4.710918967255,51.8983880413236],[4.710766211110704,51.898437812557546],[4.710717387687565,51.898461279240124],[4.710624877836372,51.89850573431722],[4.710530296183864,51.89857392513049],[4.710427730343544,51.898591419428286],[4.710328138992248,51.89860531737465],[4.710240173952659,51.89862289561024],[4.71021072517013,51.8986371975164],[4.710163359400036,51.89867672591138],[4.71002808274646,51.89873021029303],[4.709957413560489,51.8987396724551],[4.709480777123001,51.898787395210604],[4.709364422405876,51.89877303454523],[4.709314421140175,51.89876178907481],[4.70879758329518,51.8987861945561],[4.708723643006013,51.89879672470704],[4.708705740115032,51.898809403053434],[4.708694523015637,51.89896639517143],[4.708683648173086,51.89900150456464],[4.708682105271409,51.89900650227654],[4.708665596921415,51.89901437979632],[4.708476509842829,51.899016146174525],[4.708219027183604,51.89902589440436],[4.707789566291345,51.89904363642419],[4.707592782442589,51.89906243512122],[4.70720855105412,51.8990773535159],[4.707099009716194,51.899091883273464],[4.70655900463645,51.89911544373543],[4.706388906184369,51.899112489888005],[4.706078235667285,51.89911700853365],[4.706006372387201,51.899112160621534],[4.705729514977547,51.899093504121055],[4.705436198775292,51.89907080550625],[4.705415677766862,51.89906155408152],[4.705422781157051,51.898983071324594],[4.705402703165353,51.898944600692424],[4.705370481280324,51.89892798266809],[4.704887052423526,51.8988904718997],[4.704795622572328,51.89888629163613],[4.704756892922677,51.89890980548189],[4.70474773097863,51.898935243802306],[4.704716847639252,51.89902096801619],[4.704716538586892,51.899021226889204],[4.704479889779583,51.89900423013635],[4.704215577299596,51.89898527441541],[4.704026041198384,51.89897546275617],[4.703811680132511,51.89895568193689],[4.703761581858634,51.898950896302665],[4.703701849579954,51.89894520968777],[4.703583290063962,51.898933562986734],[4.703415045047042,51.89891292614311],[4.703263005381816,51.898892940667636],[4.702900296854288,51.89886554427312],[4.702561769698648,51.89885318167533],[4.702394649957552,51.898847434965724],[4.702194935636943,51.898835313895034],[4.701979187091141,51.89882563375949],[4.701860645465289,51.898812861851916],[4.701701022595533,51.898807157877286],[4.701558313497953,51.89880041981637],[4.7014780342409,51.898794899814696],[4.701350143303993,51.8987854435411],[4.701297833472533,51.898783744997445],[4.701260200161548,51.8987762266226],[4.701086204062225,51.89876790313847],[4.70096827285472,51.898759906814774],[4.700921445843732,51.89873406990087],[4.700889491163164,51.89870101213556],[4.700880907603631,51.89868269726248],[4.700851595666524,51.89866974433894],[4.700761154029609,51.898665602658255],[4.700547760525734,51.898660670614184],[4.70036515380575,51.89863585567894],[4.700200173374272,51.89861663551564],[4.700141047998619,51.89862358854206],[4.700087597808617,51.898645190112674],[4.699781552893283,51.898586790272795],[4.699172802648031,51.89846554043178],[4.699164094658322,51.89845635707339],[4.699071157855874,51.89829341664589],[4.699049126369902,51.89825479863324],[4.699008059824439,51.89823811806641],[4.698940268042055,51.89823224699477],[4.698481857666938,51.898199431521434],[4.698467097073599,51.898199345009154],[4.698461030861632,51.89821026650441],[4.698483411889815,51.898339877831894],[4.698534230519527,51.89863438008744],[4.698527981964612,51.898656257566465],[4.698501200590555,51.898670707013196],[4.698302575813137,51.89872890317544],[4.698249264508135,51.89874137235503],[4.698234615679175,51.89873397877366],[4.698220442306995,51.89869555049476],[4.698181615651492,51.89841506865266],[4.698151356336327,51.898196586154505],[4.698136903519929,51.898176411981595],[4.698066205358932,51.89816868969639],[4.697792118292248,51.898143343211885],[4.697777525671214,51.89813230054748],[4.697814694644782,51.898018381915094],[4.697820648980885,51.898014767492896],[4.698209616490734,51.89805356927664],[4.698230471234262,51.89804090982491],[4.698323968447502,51.89790997336708],[4.698321187072079,51.897899000011044],[4.698297774907672,51.89788607204183],[4.697474965208597,51.89765479665521],[4.697463392490487,51.897640122321256],[4.697479146504047,51.897574472480024],[4.697458642348787,51.897565219753126],[4.697010488611405,51.89744114394345],[4.696998649433145,51.89744289908205],[4.696914039250417,51.897572071022175],[4.696896245682784,51.89757744052679],[4.696855124406989,51.897564417221815],[4.696415046029601,51.8974415820537],[4.696099893525669,51.89735361856918],[4.696108482673636,51.897328878638206],[4.69611380386398,51.89731352152005],[4.695919913684737,51.89725576211601],[4.695914420364309,51.89726151843168],[4.695886910571973,51.897290272786535],[4.695510745906355,51.89718761199885],[4.695390827437278,51.89714195426683],[4.695025442663819,51.89710746170039],[4.694533850616967,51.896971615149994],[4.694325390792083,51.89693086345617],[4.694023665411545,51.89691111582074],[4.693624221774801,51.896826117971905],[4.693462001416481,51.89680000137816],[4.69323014735117,51.89676988690079],[4.693090809723159,51.896765477480926],[4.693044516709272,51.896754417744496],[4.69314795153312,51.89657722597588],[4.69314917370214,51.89656487392124],[4.693142335863472,51.896551350689506],[4.693117366103469,51.89653687543239],[4.692942400471041,51.89650353692301],[4.692763708634816,51.89646877391488],[4.692545543546326,51.89642451007909],[4.692444395489353,51.896403687814804],[4.692292598367433,51.89637638181269],[4.692115888361872,51.8963309601097],[4.691913866743018,51.896271617891784],[4.691798189515831,51.89623582403525],[4.691619838521259,51.89617914717561],[4.691461711448303,51.89612063028189],[4.691297361279193,51.89606151003854],[4.691190736887583,51.89602099626427],[4.691102513374632,51.89598564297377],[4.690973927951577,51.89593347556142],[4.690793192256694,51.89587707093985],[4.690619810882155,51.89582239049715],[4.690310435760994,51.895731515346355],[4.690187205677712,51.89570044802413],[4.690077901603036,51.89566327905863],[4.68995610258879,51.89561958205833],[4.689822724082024,51.89556935342847],[4.689709601289595,51.89553020194565],[4.689476033209211,51.895448196823665],[4.689159435743594,51.89533340209687],[4.689093235483208,51.89531334182429],[4.688481618605113,51.895097917882616],[4.688448812474993,51.89507553002557],[4.688426570617061,51.89504646355769],[4.68809059677736,51.894929860840406],[4.687899417748729,51.894881254590054],[4.687697168321287,51.89482892377645],[4.687285155056724,51.89474136652818],[4.68706089860206,51.89468890352333],[4.686735014462449,51.89461702122212],[4.686101611449937,51.89455537519335],[4.685521125430236,51.894499102320516],[4.685285230878912,51.89447297483454],[4.684988438653049,51.894427948518995],[4.684781104435305,51.89438991005533],[4.684496470924769,51.894344110249826],[4.68430611317572,51.89432330468765],[4.684113197228033,51.89427749527703],[4.683771928419838,51.89423949845709],[4.683355452913963,51.894227170965266],[4.683070734638447,51.89422406291085],[4.682977972957362,51.89421844643031],[4.682714080464503,51.894254787335406],[4.682440880938151,51.894334324845204],[4.682288600864211,51.89440447505546],[4.682207676826468,51.89442590369415],[4.682158494467145,51.89443544209682],[4.682137650575092,51.89443981131293],[4.682122225217049,51.89445348025981],[4.682100059760584,51.89449210598355],[4.682090613536843,51.89455159860157],[4.682091807174697,51.894581106264205],[4.682017164872851,51.894573431511375],[4.681894661282411,51.89456330318663],[4.681578655513239,51.89452816618618],[4.681576345007981,51.89445226177657],[4.681559517930655,51.89445154950187],[4.680342031530913,51.89437690730264],[4.680282318520208,51.89448425817139],[4.679797832395627,51.89438709716691],[4.679662910304529,51.89420227966183],[4.678815923661227,51.894093951622764],[4.677628821069771,51.89393419875931],[4.677498821385449,51.893897513251716],[4.677467165390544,51.89360560670907],[4.677044921677748,51.89345575962496],[4.676730927202425,51.893343679443035],[4.676706987809167,51.89323222910319],[4.676671835797007,51.89311140777247],[4.676664727115184,51.89309422356282],[4.676514739719573,51.892997812800914],[4.676276037448857,51.89290564703305],[4.675945454632709,51.89283145009441],[4.675604793584466,51.89275523167376],[4.675540263277747,51.892745016326344],[4.67550120826786,51.89273887427433],[4.675463726947061,51.89272600929412],[4.675436998007386,51.89270843649965],[4.675417736327847,51.89268443715568],[4.675336989604102,51.89253675994958],[4.675266382863752,51.892430437669574],[4.675184814547939,51.892320956847044],[4.674981500412879,51.892136582247936],[4.674800209241871,51.892038577282264],[4.674646232481876,51.891957869922344],[4.674471140825242,51.89189136207933],[4.67413767067904,51.89175619089768],[4.674058642839817,51.89172312764921],[4.673609952902058,51.891560856100355],[4.673377005850936,51.891478543843704],[4.673154811607292,51.89141259277312],[4.673020697078949,51.89136767066644],[4.67273898553372,51.89128984264291],[4.672490985077455,51.891255463091014],[4.672149704456983,51.891220245710315],[4.671896461196461,51.89120774716657],[4.671769780389686,51.89120248157964],[4.671651935823659,51.89121159747635],[4.671620452768911,51.89121449781341],[4.671344858946783,51.891223488496266],[4.670980847401482,51.89122548578972],[4.670581823665543,51.891253110605696],[4.670202918993201,51.89127804341556],[4.669805616540515,51.89129696616064],[4.669649819647985,51.89130921903915],[4.669179956925638,51.89130241161825],[4.668854289482554,51.89130576021537],[4.6685846647777,51.89129568016918],[4.668460583704826,51.891297734636325],[4.668245288826835,51.89129052092584],[4.667799661445565,51.89130801760558],[4.66768728779562,51.89130199028686],[4.667544923697085,51.89131178785233],[4.667388260499449,51.89132094035301],[4.666988243059092,51.891310624023724],[4.666666502210499,51.891310062611105],[4.666263459196266,51.89133988628332],[4.666183113924482,51.89135316378806],[4.665926172684712,51.891381078337666],[4.665726060110125,51.89139642468817],[4.665391254159259,51.891431446290866],[4.665373584289753,51.891429926529284],[4.665348905772844,51.8914469161598],[4.665345111130508,51.89146430374895],[4.665315066582417,51.89147619982797],[4.66463083385306,51.89154558355035],[4.664544975308218,51.89159815112362],[4.664165902977458,51.89165480217501],[4.663845921216966,51.89167839622099],[4.663510721484308,51.89170245295862],[4.663187250963957,51.891724333869284],[4.662952428383484,51.89173075166807],[4.662512859612015,51.89173787484911],[4.661903383914687,51.891738329807445],[4.661655680766434,51.89173539826211],[4.661171975331226,51.89172734976918],[4.660616428269098,51.89172672905205],[4.660255413842584,51.891732639678935],[4.65992302632169,51.891744344268304],[4.659832935455846,51.891742941658926],[4.659714250026371,51.89174811237341],[4.65967790655714,51.89170743866028],[4.6596498231651,51.89139050662634],[4.659463044116706,51.89138521515257],[4.658508649750658,51.8913875604903],[4.657787079857921,51.89143676307676],[4.657218921648049,51.89149104922017],[4.65645143843574,51.89149040420454],[4.656198330089276,51.89145992241199],[4.655904786000228,51.89145396997447],[4.655630841234624,51.89147291141959],[4.656148700804842,51.89205011067037],[4.657129003916135,51.89209749957568],[4.657295244766681,51.89221642685765],[4.656816128957874,51.8922403703915],[4.656323521727253,51.89220140673643],[4.65606270687087,51.89218183383532],[4.655838601700155,51.89213555901857],[4.655577197593459,51.89209151440147],[4.655510423803396,51.89205879356966],[4.655492002616493,51.89202666146136],[4.655463376068565,51.8919860344873],[4.655444679573681,51.891949397368045],[4.655423377494209,51.89191218672445],[4.655398471295992,51.89187327276089],[4.65536154030906,51.89182697616238],[4.655324900645158,51.89179135083442],[4.655286176172632,51.89175796864635],[4.65524706671808,51.89172682220828],[4.655202515404727,51.89169620813584],[4.655069231988836,51.89162178803117],[4.654926466180662,51.891564998241044],[4.654856120750477,51.89154293322726],[4.654720721866904,51.891508381957365],[4.654596364165964,51.89148541377264],[4.65449171703345,51.89147155697532],[4.654380165679139,51.89146328388705],[4.654286281135514,51.891458482633624],[4.654199064736424,51.89145456783355],[4.653898534751097,51.89144763198438],[4.653702560350975,51.891445006494386],[4.653415725325682,51.89144012340751],[4.653251538822303,51.89143826196599],[4.65301833110856,51.891436517331314],[4.652908788654154,51.89143780129284],[4.652774294613971,51.89143780561428],[4.652588166633023,51.89143804425551],[4.65221664063704,51.8914480801045],[4.651947971889627,51.89146409770945],[4.651837278697785,51.891472672217084],[4.651520074767391,51.89150017811577],[4.651318638687697,51.89151970731387],[4.651045517677216,51.89155030145421],[4.6508194519759,51.891577252873745],[4.650634752135866,51.89160024753031],[4.650227311659535,51.89165556124951],[4.649955946183861,51.89169683334797],[4.649716213350221,51.891733251779144],[4.649454803937828,51.89177683236584],[4.649226811099824,51.89182371434328],[4.649075505059462,51.891859284613936],[4.648951536480078,51.891888842300524],[4.648869157248598,51.89190882767393],[4.648674386362011,51.89196462730181],[4.648530078763333,51.89200922047926],[4.64833157484621,51.892078200334716],[4.648304293362823,51.892087853318564],[4.648276111105419,51.89209750961981],[4.648260786129841,51.89209741324085],[4.648249691516687,51.89209537496079],[4.648244164955813,51.892093093051685],[4.648237672218246,51.89208772197406],[4.647181413177678,51.892207238202026],[4.647171044688851,51.89206570121846],[4.647934688398525,51.89197619099452],[4.648521161917343,51.89184626391954],[4.650165213715027,51.89151861684923],[4.650776679899388,51.89141242143228],[4.650893185128993,51.891279535994364],[4.650793764501151,51.891145297301755],[4.650019619998494,51.8911011445345],[4.64899054859247,51.891110404496686],[4.647044897281162,51.89123963562659],[4.646549410412737,51.89124436929855],[4.64558254610435,51.89133258793969],[4.644538697009204,51.89146747529088],[4.64415582354318,51.891575084164195],[4.643288231022111,51.89180539245818],[4.642920272600248,51.89177947606007],[4.641914101735117,51.8919381559584],[4.641620537012013,51.892022745940444],[4.641262406121783,51.892169809630246],[4.6417316003424,51.89221995068763],[4.643496608219787,51.89226256895586],[4.64352185687205,51.89244271668573],[4.643417241144244,51.89292076983877],[4.642750867138748,51.892862689896916],[4.642114693070812,51.89273299665936],[4.641882904877788,51.892713576327445],[4.641573239886777,51.89272357545749],[4.641216139018776,51.89267942184183],[4.640831206824427,51.892563289318325],[4.64031866534934,51.8925600323909],[4.640038223096771,51.8925582493834],[4.6396030481241,51.89255548128406],[4.639187421154384,51.89254086318927],[4.638849160622515,51.892526745396125],[4.638655147462145,51.89256141005757],[4.638451573588249,51.892590036045945],[4.63829684076437,51.892589049902874],[4.638422463438539,51.89317627666705],[4.638160102568064,51.89331594137402],[4.638156404576071,51.89336003391279],[4.638249682545456,51.89382194210577],[4.638324239186971,51.894160595874936],[4.638199279744472,51.89417294073435],[4.638044604786178,51.89418821505179],[4.637978014513048,51.89408487085173],[4.637734232014405,51.89322864284447],[4.637575004121285,51.89260461725164],[4.637493430470319,51.89233793491172],[4.63747925447232,51.89229156207938],[4.637458590200572,51.89228407753493],[4.63742879239125,51.8922894064002],[4.637416740909819,51.89230034953776],[4.637423289876978,51.89232841783063],[4.637580271037051,51.893001641993266],[4.637625183414503,51.89315815063202],[4.637635626605281,51.89324459783255],[4.637269533335997,51.89329188793663],[4.63722771360898,51.8933063263859],[4.637224429380037,51.893324678150016],[4.637465635371432,51.8941771695195],[4.637524812833404,51.89436868995022],[4.637908585740299,51.8943307071141],[4.63791071086403,51.89433831604328],[4.637992657920947,51.89463265833662],[4.638075861126266,51.89495893611288],[4.638129266593289,51.89516836966046],[4.637979806440667,51.89522622923536],[4.637872305788552,51.89526046448473],[4.637795002786892,51.89526548150078],[4.637685304046123,51.89525375277976],[4.637680908197495,51.895252502288294],[4.637673582091781,51.89524575005198],[4.637661979333363,51.895247159159446],[4.637605482409807,51.89523118553402],[4.637585061687237,51.89520900619471],[4.637489248519834,51.894851493081376],[4.637408905353865,51.89455174952258],[4.637338521720598,51.89429692263086],[4.637232447804204,51.89391286331035],[4.636883442662003,51.89262280043094],[4.636819893759956,51.89254209030918],[4.636737227608049,51.89244303812453],[4.636674329120349,51.89238258342513],[4.636596956101806,51.892385990223886],[4.636555784849087,51.89236596123439],[4.636447975251341,51.89231982597979],[4.636339869259061,51.89229145922475],[4.636269786068278,51.892281132844786],[4.636007755678037,51.892291313863],[4.635719324248755,51.89229479071942],[4.635373221215913,51.892298949522406],[4.635257151181241,51.892300346049616],[4.634803023043934,51.8923130430981],[4.634883650044221,51.89262320824552],[4.634986838737371,51.89304202833924],[4.635086516963133,51.89347541436355],[4.63508927927347,51.8934874588132],[4.635157870010764,51.89374093636247],[4.635162015783733,51.89375626152057],[4.635155644335865,51.89378194615742],[4.635122605325038,51.893803792749196],[4.634444722850063,51.89384723531172],[4.634412267850016,51.893834164674075],[4.634400784954985,51.893810199363706],[4.634373614977296,51.89365931315975],[4.63433749287553,51.893557213726694],[4.634265054517181,51.8933524922371],[4.63390879581823,51.89234213530041],[4.633894422339861,51.89230170222959],[4.633882940258697,51.892277727877484],[4.633850394127141,51.89227017550341],[4.633805888086995,51.89226804746689],[4.633781938735463,51.89227892293292],[4.633763852773536,51.892295346016034],[4.633769055200053,51.8923394865261],[4.633772435013224,51.89235106756188],[4.633794336328814,51.892426038245866],[4.633885135120431,51.892678409594915],[4.633989902802679,51.89298417290991],[4.634060300249621,51.89321436423432],[4.634059777135358,51.89324560531365],[4.633699467570585,51.893302107747814],[4.633658108504382,51.89328897979673],[4.633623445995332,51.893229944968425],[4.633526860386179,51.892968340958646],[4.633408112433606,51.89261102768754],[4.633325867639965,51.89237892624268],[4.633296695269409,51.89231136936669],[4.63326297722347,51.89223332955042],[4.633224336257291,51.89223491527295],[4.633188426643525,51.89225122389135],[4.633170140931608,51.89227868362612],[4.63318919919459,51.892319533363306],[4.633204541262498,51.892352413310505],[4.633288793782895,51.89264150657828],[4.633321839137847,51.892796107114506],[4.63337806466946,51.892985768148286],[4.633412065372784,51.89308339593175],[4.633455139331106,51.89317189554179],[4.633470762220672,51.89330248352124],[4.633502693060012,51.89334679549427],[4.633566909804169,51.89341337261233],[4.633601849456924,51.89345587017775],[4.633610076839004,51.893496353745185],[4.633618258347669,51.89357339372262],[4.633628031622653,51.89366555377223],[4.633503029739693,51.89368130005009],[4.633366206836403,51.893693285022536],[4.633119057629467,51.893732129921496],[4.633086449094447,51.89372824429668],[4.633078283775363,51.89368408474576],[4.633044422836237,51.89357727140215],[4.633028667918341,51.89356553001898],[4.632994382485778,51.89357761536645],[4.632903108508519,51.89359286739644],[4.632840424759034,51.89359951204645],[4.632760820106028,51.89359723917185],[4.632749636380712,51.89357541490715],[4.632633718449958,51.893512118751204],[4.632695962082314,51.89346848322321],[4.63259950035379,51.893338337773514],[4.632560795737609,51.89318606469511],[4.632541456168222,51.89311004058907],[4.632467592205277,51.89291288618863],[4.632471651614051,51.892863169247946],[4.632500920861713,51.89281407265633],[4.632553071049208,51.89275633214879],[4.632599113187949,51.89272494297522],[4.63267622345587,51.892706076694374],[4.632764619177689,51.89269255914617],[4.632936144479777,51.89269366037556],[4.632952454105379,51.89268529779518],[4.63282789374269,51.892320584909555],[4.632770733443881,51.89214180279799],[4.632741331668327,51.89208971371864],[4.631139276004179,51.89184249359329],[4.631145571512264,51.89187762568075],[4.631145039897548,51.891909253217435],[4.631194457344781,51.89200895838097],[4.631204271094632,51.89207678673858],[4.63120993096286,51.89217394520285],[4.631223125100684,51.892257606290904],[4.631247613475391,51.89232101677191],[4.631290081154507,51.89240034491338],[4.631306605928024,51.89245440092394],[4.631310833297448,51.89246824362947],[4.631320951056023,51.89251799781266],[4.631326435748873,51.89262646282148],[4.63134779535242,51.892658222195315],[4.631455343804514,51.892774112158385],[4.631498039987557,51.89283988684775],[4.631518655264696,51.89291682719194],[4.631525150630009,51.892964301912095],[4.631517023708887,51.89301393873216],[4.631494166399452,51.89305660451672],[4.631453350057672,51.893110660217275],[4.631416238146666,51.89314656474367],[4.631357462727273,51.89316877506372],[4.631343762049187,51.89317141946844],[4.631280999148944,51.89316550567458],[4.631118807538128,51.89315266004056],[4.631054765622739,51.89314073349721],[4.631024971852499,51.89311722527728],[4.631006603403866,51.89308901762493],[4.630956858039624,51.89290162630094],[4.630903337388506,51.89271673645113],[4.630804016562288,51.892554859227104],[4.630651853178287,51.89244517117367],[4.630650368794165,51.89244532341093],[4.630605361308413,51.892312361554595],[4.630572355002985,51.891763061093606],[4.630572068657168,51.891758493029776],[4.630571139233947,51.89174292774028],[4.630537190842763,51.891739338384205],[4.630002762501689,51.89168279066679],[4.630022603730804,51.89158805261253],[4.63002735232918,51.89152257413376],[4.629987901847947,51.89148166435388],[4.62983613229988,51.89139033250942],[4.629778840500105,51.89136421078745],[4.629676385912201,51.891317231894924],[4.629640582802108,51.891298718193966],[4.629611462215495,51.89129400915264],[4.629493495934454,51.891363269829824],[4.629352390198503,51.89129008224408],[4.629441487785195,51.89120030325996],[4.629419863884035,51.8911843528084],[4.629202259212842,51.89110162907119],[4.62903928812,51.89102604389132],[4.628983880739163,51.89100711584667],[4.628945053837459,51.8909870363738],[4.628538207402152,51.89087145897492],[4.628531662756095,51.89082624887643],[4.62842245029707,51.890809723642604],[4.62828396510168,51.89079753949655],[4.628163609891648,51.89079224074823],[4.628130638700672,51.89079880516289],[4.62809730086849,51.89082795561421],[4.628093121355134,51.890859550593696],[4.628062209555432,51.890961003231446],[4.628039771285191,51.89099248023467],[4.628006700078384,51.89100582139203],[4.62795922127373,51.89100777073723],[4.627969747678972,51.89076110099988],[4.627882669320223,51.890758677625186],[4.627718255788348,51.890754100401765],[4.627611255532194,51.89075112558146],[4.627600143684036,51.89067705937658],[4.62736803448485,51.89066816089514],[4.627248965155879,51.89067448282824],[4.626867059538233,51.890685791565296],[4.626846381363902,51.890659509833576],[4.626845257699757,51.89065809134743],[4.626103433043305,51.890696595457904],[4.626091208243023,51.89066698862701],[4.624722591959807,51.890726257596455],[4.62458866965472,51.89073205797883],[4.624535191780025,51.89069627768204],[4.624248469849369,51.89072197529568],[4.623525126913591,51.89079602531527],[4.623094566581171,51.890862132805],[4.622944582093263,51.890890693928554],[4.622877277250325,51.89091978375774],[4.622599326615297,51.890990819132575],[4.622429886754042,51.891040897612115],[4.622423156409949,51.89106250741289],[4.622571169806954,51.89133711161186],[4.622589051964874,51.891408103327734],[4.622653967711178,51.89151877129951],[4.622670792861528,51.89154854325799],[4.622799132783598,51.891775649048945],[4.622658406544872,51.891820009139984],[4.622633124479157,51.89181000207648],[4.622508719169049,51.89160614832762],[4.622184367364515,51.89107474141434],[4.622104552686043,51.891091938289115],[4.621944755562732,51.89113618232276],[4.622247256052533,51.891679528359134],[4.622253250163777,51.89170122099217],[4.622185943659964,51.891730310418936],[4.62212856335397,51.891737810835025],[4.622090590285912,51.89172575250476],[4.622031803406065,51.89162891269143],[4.62180001205268,51.89122972796921],[4.621759695735968,51.89116844151282],[4.621593636411365,51.891206729755204],[4.621593167387778,51.89123428583989],[4.621461917884909,51.89128265225908],[4.621301952035614,51.891336727885296],[4.621000096719364,51.89145223221774],[4.620764005364864,51.89154386852237],[4.620667847515982,51.891586548446874],[4.620571205150277,51.891656793262776],[4.620506858466047,51.89169968061575],[4.620480771575627,51.89173692106709],[4.620492590361713,51.89179014796535],[4.620948886206366,51.89227099617417],[4.620992599528813,51.892317069325934],[4.621136104117904,51.89248337786631],[4.620994803882045,51.892561205891354],[4.620898179209532,51.892444424675105],[4.620857259565539,51.89241855817286],[4.620816086046769,51.89240844706807],[4.620774596172497,51.892416050474566],[4.62063379869919,51.89246435369839],[4.620630722971947,51.89245984830523],[4.6204227401691,51.89215586198206],[4.6204009415983,51.89212816057999],[4.620366365719115,51.892104312802694],[4.620335090766721,51.89207261251927],[4.620307097870832,51.892035019130354],[4.62028211824904,51.89200729694227],[4.620244159977955,51.891995238110894],[4.620177189766765,51.89199087290473],[4.620145591502292,51.89199262614286],[4.620123188979433,51.89200035392764],[4.619914124448658,51.89213482502617],[4.619756312735326,51.89224797692509],[4.619749715257236,51.8922617134031],[4.619764580029822,51.89232284329923],[4.619649044415967,51.89238312140696],[4.619440245463859,51.892501845323494],[4.619115322547584,51.89271429829817],[4.619025186788878,51.8927767103476],[4.618993105511102,51.89279224868023],[4.618945151648605,51.892805714710846],[4.618894199153425,51.892809318562925],[4.618849426480635,51.89282280535644],[4.618769203756821,51.89286362842376],[4.618756209776435,51.892879291523094],[4.618768497591394,51.89290496251968],[4.618752187843778,51.89292847797388],[4.618356544907654,51.89318379152471],[4.61817985441339,51.893285006727915],[4.61817637026451,51.893302700515875],[4.618231424137317,51.8933371097694],[4.618031785689753,51.89344809801321],[4.617823105702787,51.89354318874834],[4.61778176766528,51.89351125110921],[4.617407073349583,51.89365564412902],[4.617084525858856,51.893776674739385],[4.617048818837904,51.89379006746393],[4.6170054005571,51.89388047815758],[4.616990257316337,51.89394948349166],[4.616887138944749,51.89399343604934],[4.616771173294839,51.89402999652125],[4.61663217198535,51.89407382143142],[4.616666472996295,51.89410859867725],[4.616670381672858,51.89415181468416],[4.616501917543242,51.89420829996957],[4.616485608539429,51.894209631174775],[4.616453656495034,51.89417343110369],[4.616389185272789,51.89413413234451],[4.615717870717534,51.89435056816735],[4.615465028508914,51.89443304135614],[4.614880123735186,51.8946281076702],[4.614803053099418,51.894644877211014],[4.614709440417903,51.89467737591847],[4.614713520304524,51.89471051686409],[4.614745347682549,51.89475391648574],[4.614618893727694,51.89480202819621],[4.614559442658123,51.89474117074554],[4.613979010901865,51.89494179002383],[4.613983856447936,51.895011492804805],[4.613953597773669,51.894975752625896],[4.613937902987219,51.89495739342599],[4.613914160328762,51.894938981259514],[4.613885459712413,51.894930927317546],[4.613826955696038,51.894940933122015],[4.613714315088661,51.89495620043003],[4.613577467820147,51.89497412169696],[4.613460667934739,51.89500059716928],[4.613324818677016,51.89503987271941],[4.613177043019281,51.89509170756812],[4.613032322597141,51.895144964589015],[4.612903663620475,51.89519439924229],[4.61282434715196,51.895225903039936],[4.612733510913283,51.895260692604765],[4.612691576693841,51.8952769912405],[4.612570064139841,51.89531382562906],[4.612438687428107,51.895349758908615],[4.612287050169561,51.89538865051556],[4.612171904593577,51.89541766142984],[4.612048604284466,51.89544606113977],[4.611970303731667,51.89546492405819],[4.611830204993472,51.8954993968883],[4.611686881197594,51.89553046853994],[4.611631257025518,51.89554442928506],[4.611571439345965,51.89555723874308],[4.611514042934702,51.89556865293935],[4.611478156189361,51.89557628108041],[4.611347746515541,51.89559564448816],[4.611286597099644,51.89560647649733],[4.611163920522376,51.89562476718759],[4.610955446620708,51.89565597392986],[4.610798611515449,51.89568022275388],[4.610639267898087,51.895705857017575],[4.610522396948058,51.89572277419362],[4.610429379484626,51.89573311645855],[4.610335359522153,51.895748503635005],[4.610297627803506,51.89574432612888],[4.610263126355245,51.89573061505029],[4.610229265103019,51.895687416481444],[4.610198386749367,51.89564816566129],[4.610179812038532,51.89563259136498],[4.610139170255704,51.89562614740439],[4.609966564392109,51.89562388220976],[4.609814553198476,51.89561950585916],[4.609690492361112,51.89561277946955],[4.609548611507283,51.89560566535287],[4.609364922133679,51.89559489457823],[4.609110553423422,51.89558815880379],[4.608916936718463,51.8955868765094],[4.608764189475004,51.895585586014356],[4.608543876448957,51.89559142501297],[4.608377288818144,51.8956024016723],[4.608231155432645,51.89561182383532],[4.608055056796113,51.89562835488328],[4.607795494465245,51.89565303306623],[4.607645098445233,51.8956728260806],[4.607416990439039,51.89571007148603],[4.607309929894004,51.895763580403084],[4.607230370727537,51.89580208997104],[4.607144865880109,51.89583073543228],[4.607014959546046,51.89587285661533],[4.606930732479351,51.89590571708875],[4.60685118301437,51.895937772623896],[4.60676310023695,51.89597680054311],[4.606667617382347,51.89602363531003],[4.606560787792096,51.89607713609526],[4.606458107482789,51.89613347779819],[4.606324516676835,51.89619860263349],[4.606252548677596,51.89623828557254],[4.60613000312994,51.896301515086066],[4.606083837113836,51.8963253696572],[4.605997907801878,51.896364968618535],[4.605877536996042,51.896420059634224],[4.605781849792685,51.89645931490576],[4.605753564920895,51.89646080767569],[4.605725562115564,51.896451920436874],[4.605689125311785,51.89643257724145],[4.605652327439783,51.896434013366076],[4.605532179561695,51.896482930318015],[4.605397857566465,51.89653063824957],[4.605254333630023,51.896586140862915],[4.605152839413512,51.896625914276704],[4.604878388194192,51.89674936198222],[4.604788761671253,51.896792584837264],[4.604609484631656,51.89687369992099],[4.60451528719179,51.89691155287391],[4.604122774539858,51.897048818899016],[4.603900588093196,51.89711672127434],[4.60375728076692,51.8971587405559],[4.603612321079268,51.89720468566889],[4.603406119324339,51.89726735445794],[4.60330717565293,51.89729815466139],[4.603083475627958,51.89736772627877],[4.602950171472556,51.89740925403813],[4.60285407966248,51.897438949316324],[4.602659008833061,51.89750141245352],[4.602528454909215,51.89754098958759],[4.602518188007706,51.89754401311857],[4.602498213344155,51.897562980588326],[4.602487943801399,51.89757947807123],[4.602491058962159,51.89759579528007],[4.602494033382666,51.8976143497204],[4.602496953915773,51.8976351599495],[4.602486831299315,51.89764323605732],[4.602466674406484,51.89765349231216],[4.602425145399575,51.897672037171866],[4.602246297017706,51.89772814514078],[4.602090151725574,51.897777105757164],[4.601883175712263,51.89783807685271],[4.601649102069904,51.89791066851842],[4.601366645118835,51.898004005532165],[4.601154715328379,51.898075620728186],[4.600873872635116,51.89817374033175],[4.600714924129954,51.898227453341406],[4.600427113718162,51.89831512538896],[4.600289083341475,51.8983540926945],[4.600282035567079,51.89836078697774],[4.600283283242783,51.898367536814526],[4.60029616684737,51.89841593704244],[4.600311634383281,51.898472776929275],[4.600321852100537,51.89851161336372],[4.600325546191115,51.89853383105696],[4.600324265026583,51.89854228078917],[4.600287281315095,51.89854177245072],[4.600174645795633,51.898534375489504],[4.600016904468767,51.89856631616872],[4.599675878569842,51.89864177386071],[4.599379514306198,51.89869161575641],[4.59925336060794,51.898721007678105],[4.59905085393965,51.89878266894339],[4.598721856553317,51.898904469100465],[4.598424145149571,51.89901024486982],[4.598256148807264,51.899066689306984],[4.598148319573351,51.899092535712896],[4.598001872835322,51.899144702079724],[4.597881534171147,51.899204423318224],[4.59771806847627,51.899274182638734],[4.597525992986776,51.89934227533443],[4.597324412263768,51.89940882968733],[4.597051134956988,51.89948228128659],[4.596947798452275,51.89952439928599],[4.596618334282918,51.89967128674601],[4.596072753627238,51.89989791288732],[4.5955674681251,51.90013809319891],[4.595453917034662,51.900185812914124],[4.59535416960632,51.9002277469661],[4.595053040622452,51.90035418308143],[4.594827123447009,51.90044902716755],[4.594771717228608,51.9004796553784],[4.594744917775639,51.900510476485344],[4.594756377433546,51.900537133187576],[4.59484884801275,51.90061138272952],[4.59487872091096,51.900635386085405],[4.595010402063616,51.900745521869155],[4.595064378335484,51.9007960783253],[4.595084863707099,51.90085231454134],[4.595079032167411,51.90091280475711],[4.595021774383963,51.90091241877309],[4.594789358886564,51.90074506518801],[4.594647152320618,51.9006426872736],[4.594602343299188,51.90061285734859],[4.594557092023766,51.90060812071795],[4.594492307612325,51.9006283575858],[4.594253761613961,51.900726459159884],[4.593961171768553,51.9008462086364],[4.593861460201486,51.90089665391933],[4.593814309386764,51.90092050604688],[4.593633538225819,51.901024110973545],[4.593394428297318,51.90116627833351],[4.593374513929622,51.90119221986421],[4.593330384070726,51.90116673555826],[4.593275534733904,51.90116489085778],[4.593225335098716,51.901170457225746],[4.593150940284969,51.90119505083769],[4.593047518106453,51.90124158726702],[4.592879022719695,51.90132460012015],[4.592758593306751,51.90138873795328],[4.592731884584739,51.90141513680638],[4.592721713296035,51.901450492289754],[4.592646435414587,51.90148965919689],[4.592553209911344,51.90157416925634],[4.592406640946695,51.90164886240673],[4.592214203604926,51.90172323608646],[4.592083099838481,51.90178857740617],[4.591997933103385,51.90184949243183],[4.591890828591606,51.90185349562907],[4.591821615326957,51.901876676302315],[4.591350661585531,51.902138374086825],[4.591446274515413,51.90235187271102],[4.591369081919218,51.90241779402699],[4.591298449364793,51.90249236185715],[4.591728086671109,51.902693623398854],[4.591525606904356,51.90287451533434],[4.591316486654797,51.90278438127916],[4.591231352179777,51.902856441893036],[4.592165057530488,51.90336052672459],[4.592338043309801,51.903453920405305],[4.59211914376033,51.90360760152734],[4.592080753091532,51.90358863640983],[4.592062857135245,51.90357922106452],[4.590547848613607,51.90278203136021],[4.590370251426029,51.90268599702947],[4.590326898619027,51.902683914313556],[4.590286007748915,51.902706899633536],[4.590007795807841,51.902903625724434],[4.589814636530511,51.903032929212294],[4.589766677420807,51.90306196069338],[4.589695283147515,51.90307685576968],[4.589643111838716,51.90308365665879],[4.589587541383019,51.90311906329108],[4.58919966147179,51.903465342223065],[4.589160993929294,51.90352591479346],[4.589159220493961,51.90354314297302],[4.589150509904511,51.90362782877263],[4.589148511299498,51.90390336213454],[4.589153111233388,51.90422549249106],[4.589153677272032,51.90426483064622],[4.589161875250942,51.904291726412744],[4.589198892371458,51.904324184102805],[4.589227489320859,51.904342265693636],[4.589293960644889,51.904344505779896],[4.589447284840114,51.904341969240065],[4.589562861532086,51.904348128984665],[4.589724130283242,51.904386796021456],[4.58994925669126,51.90445547770479],[4.590426022568399,51.90459910484267],[4.591118898443655,51.90483104247082],[4.59119069294542,51.904860157626786],[4.591210521471027,51.90488355454241],[4.591253640123325,51.90489816550305],[4.591287989556943,51.90491807428698],[4.591322543502554,51.90492725200687],[4.59137135021789,51.90494726766537],[4.591381727226072,51.90495950856016],[4.591391178875865,51.90497066455049],[4.591390672222211,51.904999289944804],[4.591363983937537,51.90503668173598],[4.591343533776826,51.90505414300487],[4.591314068745293,51.90507928243789],[4.591273098341108,51.90510584504302],[4.591238242177779,51.90511455266034],[4.591184367624278,51.90509595878005],[4.590657604336392,51.90491380314293],[4.590358478906793,51.904820522543254],[4.590304143438689,51.904786159049344],[4.590241323869042,51.90474100555313],[4.590077320637937,51.90469336799873],[4.589939259943133,51.90465129041539],[4.589855297989306,51.904656086984794],[4.589777387222822,51.90464661463429],[4.589737192471885,51.904630234229415],[4.589729089252944,51.90459797292865],[4.589683446085054,51.904561879389206],[4.589588726333318,51.904521875265125],[4.589525209639952,51.904516077922004],[4.58941532005673,51.90451533196048],[4.5893722023721,51.904500720326446],[4.589285857180172,51.904476871474365],[4.589251255048051,51.90447127030481],[4.589227805907363,51.904489007471085],[4.589233112522153,51.90451588359799],[4.589258532334576,51.90455005125774],[4.589272068974866,51.90460202562878],[4.589282269516602,51.90467903768709],[4.589315919347687,51.90473831256551],[4.589366805653106,51.90480485941626],[4.589432230138081,51.90486613871744],[4.5894750308718,51.90489863557719],[4.589541136648882,51.904922346908606],[4.589636142890658,51.904946245359724],[4.589762906422912,51.90497394570345],[4.589901331178679,51.904996358806244],[4.589981975498131,51.90501479331552],[4.590226480196466,51.90508981705583],[4.590528262268494,51.90519563717046],[4.591157978144987,51.905402094969276],[4.591223817719846,51.90544011345924],[4.59127505591382,51.90548698570713],[4.591292905144266,51.9055154927257],[4.591303179380857,51.90553190365966],[4.591285699150305,51.90569598977564],[4.591282361023437,51.90572858694713],[4.591257884152902,51.90580356621122],[4.591234150137718,51.9058374005015],[4.591221074952398,51.90584293883037],[4.591175875969932,51.905862057132076],[4.591120715107751,51.905874204657735],[4.5910675486386,51.905877125345306],[4.591062806496669,51.90587738984454],[4.590983076296224,51.90587123177769],[4.590921515286469,51.90585417669399],[4.590536316672359,51.905735082226265],[4.589811313103271,51.90551549836231],[4.589658609499843,51.90548118617014],[4.589545666211497,51.90548041961748],[4.589461642401897,51.90551646001711],[4.589327860210428,51.90562870083732],[4.589136448064154,51.90578488214527],[4.589101338663998,51.90581353321224],[4.589014448661041,51.90585953122401],[4.588876883278355,51.90588189536057],[4.588731371692568,51.90589754476207],[4.588671435892716,51.905940399859205],[4.588600762510858,51.90598151906001],[4.588492691776965,51.90600907187428],[4.588397647628253,51.90606001169995],[4.588305054877898,51.90612428029549],[4.588176998998911,51.906216594968186],[4.588066739855605,51.90628955213159],[4.587979551403238,51.90638002316436],[4.587945695347295,51.90642639004128],[4.587895497140125,51.906475647965785],[4.587385246782577,51.906878804675415],[4.587197257600694,51.907027329849655],[4.586718507186095,51.90741219949104],[4.586370599415756,51.90768946594852],[4.586120545688325,51.90788872983251],[4.585663354366518,51.90771624849205],[4.585471548862255,51.907643893908656],[4.585295787049597,51.9077752862304],[4.585196354933506,51.90786079084144],[4.584354097643046,51.908584989882826],[4.584034992976539,51.90884392065859],[4.584010708640271,51.90886342184913],[4.583994548722379,51.90887638988426],[4.583662427129231,51.90914295193995],[4.583619968840746,51.909154724396416],[4.583487284251432,51.90912366017612],[4.583412154143436,51.90914525842463],[4.583400505727929,51.90916517849103],[4.583378587213518,51.909202708977226],[4.583321136261806,51.90930112819135],[4.5833105688508,51.90932235899651],[4.583279602660125,51.90947004633598],[4.583039693260265,51.909663917012544],[4.582603607271742,51.91001629836715],[4.581576696170832,51.9108220527348],[4.581186219732113,51.91112844100893],[4.580460834441857,51.911708507942805],[4.579722048255007,51.912308585972156],[4.578917652425823,51.91294240101418],[4.578307461304508,51.913438807618626],[4.577911894391877,51.91374771185001],[4.577902931217841,51.91375956008619],[4.577878602648053,51.91379171572897],[4.577877789773923,51.91401688466256],[4.577900005457025,51.91404719453765],[4.578019078545603,51.9141123461099],[4.578324148802905,51.914317499497876],[4.5783852846308,51.914352104036176],[4.578599532617676,51.91454658235001],[4.578708400754379,51.914637801973605],[4.578722697223779,51.91464297889846],[4.578742885390956,51.91465029969019],[4.578821414082803,51.91467878551398],[4.578892157885708,51.914721500699365],[4.578908187779251,51.91473374560681],[4.578985125899685,51.91479250311709],[4.579154409911701,51.914958527748304],[4.579199446880298,51.91500582099855],[4.579157470490587,51.915021136703125],[4.579105391992544,51.91508173962415],[4.579113081691279,51.91515931952874],[4.579125863323426,51.915276259747],[4.579136244233465,51.91531733729988],[4.579242311481567,51.91549418991151],[4.579338434791338,51.915642884568804],[4.579417965850369,51.91578555957321],[4.57949214216131,51.91591078672441],[4.579534407624489,51.91593523863034],[4.579578543121976,51.91595269223078],[4.579536964825835,51.9160970786937],[4.579535736640059,51.91616542886253],[4.579696451741088,51.91644068663605],[4.579770414806166,51.91656736828638],[4.579840378419131,51.91669338422065],[4.579864773987622,51.91673762308777],[4.579904007210692,51.91680875000546],[4.579925643696583,51.91684799020219],[4.580052382798,51.91707771134468],[4.580324713613497,51.91754629820335],[4.580352829622305,51.9175946792954],[4.580452798829143,51.91776603274949],[4.580489811981719,51.917790879699524],[4.580504048116872,51.91797360853499],[4.580554593149406,51.91803659723382],[4.580547999742691,51.918182051049214],[4.580596700641564,51.91835429293677],[4.580676972668346,51.9185517488294],[4.580739418872931,51.918710602005355],[4.580774841470698,51.91880551334992],[4.580856732510772,51.918976014301506],[4.580891572406733,51.919059676825164],[4.58099920686737,51.91920675909044],[4.58111425274435,51.919314288152265],[4.581249194026208,51.919433476944704],[4.581363541974855,51.919528920243636],[4.581520098714156,51.919632796451225],[4.581694676417321,51.919726414069544],[4.581834883195803,51.91978635821482],[4.58199064084778,51.91983433698533],[4.582040571922517,51.91983608124501],[4.582067282979358,51.91983486198293],[4.582081953693008,51.919827376064895],[4.582135609918457,51.91979239127829],[4.582192915692558,51.919852306485474],[4.582407617410244,51.919980795064625],[4.582547933445565,51.92006477470048],[4.583053684874804,51.92030899626335],[4.583379734137369,51.9204664330827],[4.584016862487943,51.92005597198034],[4.584299098892696,51.91987413660309],[4.584327840368095,51.91988619791601],[4.584353283845047,51.919863981022765],[4.584477667758501,51.91991477135802],[4.584591057628183,51.919956866394315],[4.584466709113344,51.92004487885999],[4.583894577027677,51.92044976420428],[4.58388269016085,51.92049100370417],[4.583918420734334,51.920517081211315],[4.584858664818806,51.920718079789694],[4.585280368210766,51.920786358766875],[4.58557234739025,51.920821104912626],[4.585691536864492,51.92085119365554],[4.585991429420254,51.920896284694436],[4.586338634642483,51.920941697324814],[4.586869288054377,51.92100558031785],[4.587236139870758,51.9210425219373],[4.587481498362139,51.9210603170759],[4.587584058730612,51.92107410223641],[4.587684802253753,51.921096863575904],[4.587822673931282,51.921126951374944],[4.587902974064955,51.92115078696278],[4.588004823699255,51.921146517760235],[4.588350439894875,51.92125700925003],[4.588401974623293,51.92123406095328],[4.588497861894511,51.92128963302791],[4.588623343499607,51.92134539709311],[4.588712006984657,51.92135265998486],[4.58877131318887,51.921346402263],[4.589035899947349,51.92144805379045],[4.589007842471323,51.92151276114225],[4.589071920731528,51.92154149243341],[4.590082425565507,51.92191612780203],[4.590445923828503,51.92205504848837],[4.590843630172926,51.92223748000815],[4.590761498467226,51.922316796456386],[4.590886779201173,51.9223842149521],[4.591063064535235,51.92245863034847],[4.591148776281285,51.92248084644035],[4.591418149254277,51.92261746371515],[4.591497085772444,51.922654527828165],[4.591606544533321,51.92270592858339],[4.592189751592794,51.923029401852396],[4.592272991835443,51.9230862335516],[4.592275811227669,51.92311751503699],[4.592295440879573,51.92315099555867],[4.592522916034275,51.92329050889376],[4.592545402049567,51.9233047011275],[4.59256864620553,51.923290818035404],[4.592606941087711,51.92326765255828],[4.592610092279012,51.923270316513104],[4.592703979757204,51.92331701778827],[4.592784821663239,51.923357446655096],[4.592907303900038,51.923399289404],[4.592983515227425,51.92342535898493],[4.593131505450622,51.923463436822075],[4.593247501626191,51.9234832222724],[4.593227793413512,51.92351749758986],[4.593465777846064,51.92360962913879],[4.593678969896727,51.92369717943195],[4.593954774103026,51.92381044583126],[4.595094926997055,51.92432561341971],[4.595301879279668,51.92442030058769],[4.595394622235804,51.92444561704482],[4.59542181836896,51.92441287493098],[4.5954228332865,51.924355273732026],[4.59530405449713,51.92429686559776],[4.595305022163909,51.92426175359588],[4.595556315978701,51.924056033879154],[4.595722759546699,51.92413122984179],[4.595977423304808,51.92418726241767],[4.595918024222615,51.92438440538672],[4.595876962561658,51.924448325667214],[4.595771375552332,51.92454638174326],[4.595762597790269,51.92459077134584],[4.595801848170742,51.92463054055812],[4.595889112114814,51.92466569822194],[4.596922022446202,51.92498870436946],[4.597710763793636,51.92529170703421],[4.597864600545717,51.925354240177455],[4.598633432416593,51.925633471831986],[4.598699539224131,51.925657474411416],[4.598899220346905,51.925733158401734],[4.599026501907558,51.92578139981099],[4.599084331453184,51.925795755827586],[4.599126375105009,51.925790051275776],[4.599194585994997,51.92576456740414],[4.599426120167147,51.92562641824124],[4.599709423265526,51.92546758208731],[4.599784994879017,51.92542521264353],[4.599869317288463,51.92537793105987],[4.599907798273983,51.925392157082975],[4.600097538799525,51.9254759790615],[4.600248991370863,51.92554287954155],[4.600596880785309,51.92569573116088],[4.600919578098153,51.92583191914277],[4.601331738031895,51.92598944104419],[4.601432731777691,51.9260230234446],[4.601448937496188,51.92601914082425],[4.601739049351571,51.92585144659676],[4.601873768393056,51.925857811735334],[4.602100036907268,51.925875808205525],[4.602121599123867,51.92606627697377],[4.602381534309713,51.92605797235076],[4.602698805078446,51.92601994694992],[4.603032415057579,51.925977014046246],[4.603355077878224,51.92588818329135],[4.603514911321426,51.925975063151405],[4.604499526333802,51.925766085207556],[4.604907799669455,51.92566902034068],[4.60520413979759,51.92559117320775],[4.605270870854539,51.92557364887454],[4.605611041393424,51.92549338668521],[4.605889974868714,51.925569495762474],[4.606271468149528,51.925503959979714],[4.606502517302779,51.92545598540585],[4.606475058149607,51.92527167149468],[4.606492769959035,51.925161813555334],[4.606477902589828,51.92510795397577],[4.606581001401379,51.92508908843538],[4.60664287737114,51.925167700160664],[4.606896331478437,51.92536733882987],[4.607531108668089,51.92523224526835],[4.607518232815275,51.925063533676386],[4.607505257686006,51.924899711220505],[4.607624383232176,51.924868735555435],[4.607779755497996,51.92502616752051],[4.607943672206466,51.92514700937935],[4.608320578559727,51.92506641661083],[4.608801413251664,51.924918080631315],[4.608865673360811,51.92482316401731],[4.608878129054943,51.924791471778136],[4.608979237485765,51.92453401548033],[4.608984354051688,51.92453910094726],[4.60900930325335,51.9245415132617],[4.609149091827486,51.924516883968515],[4.609404116761071,51.924468289388244],[4.609714840178921,51.92441107405277],[4.60987749414872,51.924378163815405],[4.610033049038025,51.92435390738704],[4.61014525089983,51.92434228979604],[4.61037767354785,51.92431939492026],[4.61057784947482,51.9243032976588],[4.610813406657672,51.92428407200364],[4.611013029811616,51.92427386687372],[4.611102113344383,51.92427165060404],[4.611284074425059,51.92427144957016],[4.611404246394631,51.924277294305774],[4.611772422901285,51.924299947877685],[4.611993811599499,51.9243182616651],[4.61213776516991,51.92433438363902],[4.612381734208492,51.924367730691756],[4.612673063282984,51.92441319131945],[4.613105236933303,51.924485699643505],[4.613131964679424,51.92449036994343],[4.613330221464241,51.92452491509936],[4.613326961835432,51.92452931603121],[4.613326618229582,51.924549268457774],[4.613406696859662,51.924583718571185],[4.613447225565293,51.924596587358266],[4.613624913007276,51.924653009698176],[4.613791181866981,51.92474191334379],[4.614030924766905,51.92487321385194],[4.614222840596502,51.92497226290017],[4.6144084255788,51.92506329712628],[4.614587763032167,51.92514230819465],[4.614604879276673,51.925152182303535],[4.614610048310118,51.92516524974044],[4.614605112195832,51.9251885247301],[4.61459220465696,51.92520613844477],[4.614581259766047,51.92522798070913],[4.614736754166604,51.92539332310786],[4.61488839425705,51.92558420353653],[4.615058004996579,51.925800477726995],[4.615188956566556,51.92598644891112],[4.615336207399212,51.926201173611204],[4.615515628340527,51.92645515574726],[4.615755190886822,51.92681796167658],[4.615904814106094,51.92711416480226],[4.616000293766662,51.92731562333019],[4.616072996693856,51.92744053832291],[4.616205741133349,51.92758185573813],[4.616330445628672,51.92770795652262],[4.616397775983279,51.927782553889266],[4.616458066072195,51.92777174939245],[4.616387828807197,51.927806425288],[4.616416053140822,51.92785451055026],[4.616443920742024,51.92792254813952],[4.616433006450307,51.92799432239347],[4.616660951130232,51.92825126343312],[4.616742133717324,51.92822186350144],[4.616964262041007,51.92844084295001],[4.616949938246101,51.928512235361694],[4.617204830901572,51.92888451367203],[4.617372718775438,51.9291297342685],[4.617474266440563,51.92927806372598],[4.61742228834133,51.92930601048334],[4.617394230085214,51.92932109837212],[4.617384054963189,51.92936761960082],[4.61750459128436,51.92952193392311],[4.617589317140396,51.92963040559448],[4.61773222691845,51.929829988845874],[4.617992744670549,51.93019384387371],[4.618216696432395,51.93049665132753],[4.618242448293309,51.930500810698724],[4.618366430839258,51.93042179393058],[4.618647053112529,51.93023135391878],[4.618879040033362,51.93007390710607],[4.618978224799264,51.93012444192689],[4.618773183335471,51.93026896868814],[4.618282444859839,51.930614831850946],[4.618291581106133,51.930646819064414],[4.618468421109505,51.93087349015622],[4.618862699979419,51.93140692445627],[4.619320176290381,51.93202060674065],[4.619437347907743,51.93194718020576],[4.619686598544433,51.931919217232675],[4.619783558006874,51.93209946903659],[4.62008921184808,51.93272212541717],[4.619984694136543,51.93279529360829],[4.620291370080099,51.93322307460569],[4.62034406228295,51.93329656738186],[4.620498752157155,51.933499136197796],[4.620628472392999,51.933651664362074],[4.620648284607443,51.93367253918238],[4.621062861794745,51.93410752025778],[4.621167750304936,51.93420199953076],[4.621206569749132,51.93423132151695],[4.621298393426679,51.93430064640173],[4.621599383656527,51.934505353154414],[4.62163383445842,51.934529100595185],[4.621939639302281,51.934739878130934],[4.6220961959114,51.934832697375256],[4.622265882759126,51.93491363803669],[4.622666626605707,51.93507190879085],[4.622797751008128,51.93514261160128],[4.622846451386383,51.93516392553204],[4.622881035151191,51.935179071396256],[4.623083633805981,51.9352223020041],[4.623289392860301,51.93526954372273],[4.623339019952794,51.93530564967649],[4.62336264109185,51.93532926332158],[4.623396748029281,51.93534766878774],[4.623436047574885,51.93537626506632],[4.623655844356412,51.93554732507173],[4.623812184375931,51.93565411781991],[4.623908280172874,51.93569664645056],[4.624439275926416,51.935787910845214],[4.624489274623224,51.93579450922436],[4.62452444532067,51.93580084061487],[4.624649131124201,51.93581681307786],[4.624769688428432,51.935836138340356],[4.624851573926316,51.93584378826118],[4.624915854205469,51.93585287001917],[4.625186568085678,51.935876574951735],[4.62519866919595,51.93587729156829],[4.625202399455874,51.93587770225273],[4.625217598073453,51.93587841197644],[4.625450961763484,51.935892256458665],[4.625598574565044,51.93588970718278],[4.625605159268871,51.93588986668706],[4.625860983051743,51.93589039994413],[4.625934158650758,51.93589030747935],[4.625931556300631,51.93587225056331],[4.626471657135522,51.93584697392333],[4.626589049117079,51.935775887748584],[4.62666398573832,51.93573446777677],[4.626871135813969,51.935699880228384],[4.627149434173711,51.93565777940626],[4.627172333407308,51.93563995927805],[4.627176491942084,51.93558411319345],[4.627215046425018,51.93557696481575],[4.627236808366105,51.93559284447036],[4.627475082731254,51.9355432663483],[4.627668398312244,51.93550546897162],[4.627856199385523,51.93547128502362],[4.627965005209875,51.935452886972136],[4.628086922375214,51.93543823182272],[4.628283489963359,51.93541618443516],[4.628392502193389,51.93540620961314],[4.628471233365007,51.9353991403416],[4.628596244479025,51.935389834853865],[4.628838408009021,51.93536555493424],[4.629095696992165,51.935326477982905],[4.62939126937683,51.935288501141855],[4.629559126027471,51.93527103950098],[4.629716777719169,51.93525941736565],[4.629937659026328,51.93524588323049],[4.630017158621487,51.93524150545745],[4.630248127601698,51.935231658098274],[4.630448195471832,51.93522096422088],[4.630451579858768,51.93525399203293],[4.630516089090497,51.93525640268272],[4.63052761625829,51.93525838244571],[4.630521468558014,51.93527372232372],[4.63019946231164,51.93528312792888],[4.629988814311017,51.935295164451176],[4.629895539692425,51.93532134963751],[4.62946946839463,51.93562849446],[4.629462145066899,51.93569540312357],[4.629538706463753,51.93574371571021],[4.6297081888549,51.93578689223115],[4.630119327886189,51.93581441170329],[4.630512157485223,51.93582650436754],[4.631028638626508,51.935847049295774],[4.631257896485259,51.93586387599528],[4.631545108077461,51.93586572225525],[4.631607363570668,51.93581024941503],[4.631914873151671,51.935807883737446],[4.632172265622304,51.935805896538994],[4.632694984712933,51.93581523849229],[4.632776189675945,51.93578382319535],[4.632841838354506,51.93578424441406],[4.632931841750011,51.93578482183924],[4.633015011287484,51.935785355359954],[4.633043478494113,51.93581946081112],[4.633255706674055,51.93586672651584],[4.63344112843825,51.935902242712224],[4.633519515043877,51.935918313409104],[4.633555007607685,51.935918540918074],[4.633616490873992,51.93590895769475],[4.633649004488293,51.93589518886156],[4.633796574871876,51.93594802555425],[4.633804320461692,51.93594139668187],[4.633835878757584,51.93591435455218],[4.633932218839173,51.93594290827551],[4.634041284412804,51.93598352519456],[4.634195445335693,51.93602841276477],[4.634502927669724,51.93617008189504],[4.634752557373664,51.93629741175653],[4.634788384434612,51.93627768641858],[4.635089815456936,51.93639536074425],[4.635129067498574,51.936402101568234],[4.635138086609247,51.936403651359896],[4.635365643576325,51.93649890234635],[4.63544074029215,51.93644750053196],[4.635608168828857,51.93661131785282],[4.635643980941349,51.93664636846666],[4.635656145889647,51.93666067512113],[4.635518543313975,51.93670364170595],[4.635490039663264,51.936750649434565],[4.635503939246198,51.936795123825505],[4.635626211356273,51.93693663042297],[4.635778186062194,51.93708816020403],[4.635973836196185,51.93733856438162],[4.636032832414261,51.93743866041457],[4.636064590762455,51.93752313107429],[4.636056031402497,51.93761408558474],[4.63605322610788,51.93765226905184],[4.636052291612001,51.93770815396015],[4.636051974656865,51.937741023106234],[4.636046527513473,51.937787611977576],[4.636035627857599,51.93786197662478],[4.63601277163818,51.93796519906312],[4.635986409194176,51.9381015489097],[4.635978801475892,51.938141670185104],[4.635970692740872,51.938205661877916],[4.63596341412021,51.93825392889108],[4.63595712271258,51.93829012158473],[4.63594521994098,51.93838358050307],[4.635930155018052,51.938482637065675],[4.635919865445665,51.938602236033645],[4.635919677212856,51.938722178187284],[4.63591394603205,51.9388274695226],[4.635910704771347,51.93888475088652],[4.635905763475375,51.93896281192795],[4.635900160027235,51.93905350665346],[4.635897954942998,51.93909057037541],[4.635894138496233,51.93916919589246],[4.635895774804823,51.93927482193041],[4.63589913415429,51.93933916553152],[4.635909113646782,51.93940158293704],[4.63592629798956,51.93946798336491],[4.635951965473115,51.93953584919363],[4.635994730331395,51.939615329604614],[4.636050907811349,51.93968675204799],[4.636103117747659,51.9397441089893],[4.636149402622212,51.93978879014628],[4.636152540309444,51.939791614618514],[4.636154683539899,51.93979303052343],[4.636157035424556,51.939795014040335],[4.636159508299492,51.93979671968458],[4.636162083114948,51.93979841699139],[4.636164672321762,51.939800123378625],[4.636167261679048,51.9398018207782],[4.636169952676323,51.93980352781549],[4.636172658365517,51.93980522595795],[4.636175349363203,51.93980693299511],[4.636178161501352,51.93980835317204],[4.636181099854199,51.9398100528004],[4.636183911842455,51.93981148196484],[4.636186956644223,51.9398129036276],[4.636189880456259,51.93981460316287],[4.636192925108162,51.939816033813095],[4.636195974568881,51.93981717686003],[4.636199135702968,51.939818599265514],[4.636202180505705,51.93982002092791],[4.636205331757041,51.93982116462473],[4.636208609223265,51.939822587773],[4.636211876806509,51.93982373221267],[4.636215158931363,51.93982487674512],[4.636218441056386,51.93982602127749],[4.636221824971702,51.939827166459914],[4.636225208887192,51.93982831164221],[4.636228607344299,51.93982945691729],[4.636231995918267,51.939830323483804],[4.636235496165836,51.939831469408766],[4.636239001071673,51.93983233671806],[4.636242520519094,51.93983320412012],[4.636246025575463,51.9398340624416],[4.636249646813298,51.939834930493525],[4.636253151719681,51.939835797802424],[4.636256777766032,51.939836378250966],[4.636260399004264,51.93983724630257],[4.636264141232171,51.939837836481416],[4.636267767278831,51.939838416929625],[4.636271509506932,51.93983900710825],[4.636275135553784,51.93983958755622],[4.636278863240631,51.939840177641734],[4.6362826102771,51.93984048021684],[4.636286352655823,51.93984106140738],[4.636290099542165,51.93984137296982],[4.636293846578812,51.93984167554457],[4.636297579074055,51.939841978026315],[4.636301442442416,51.93984228134371],[4.636305189328969,51.93984259290567],[4.636309057355089,51.939842617607226],[4.636312789850519,51.93984292008848],[4.636316657876674,51.939842944789795],[4.636320409571219,51.939842968748096],[4.636324263055932,51.939842993356294],[4.636328014750487,51.93984301731434],[4.636331887434175,51.9398427633996],[4.636335639128717,51.93984278735738],[4.636339381089519,51.93984252361902],[4.636343249115662,51.93984254831949],[4.636347005467614,51.93984229366133],[4.636350761819522,51.93984203900306],[4.63635461996155,51.939841784994684],[4.636358381120964,51.93984124273297],[4.636362137472722,51.93984098807436],[4.636365898631979,51.939840445812415],[4.636369543309302,51.93983991179512],[4.636375098563023,51.93984079219293],[4.636377841401006,51.939839398503544],[4.636380482298437,51.93983801315175],[4.636383006864103,51.93983662705705],[4.636387989924241,51.9398369375213],[4.636391634601021,51.93983640350335],[4.63639518229492,51.93983558123208],[4.636398831778832,51.939834759610676],[4.636402364931018,51.93983393724638],[4.636405897932849,51.93983312386951],[4.63640943108478,51.939832301504985],[4.636412968893591,51.93983120052472],[4.636416400255105,51.93983037751004],[4.636419821732014,51.93982927578681],[4.636423243208755,51.939828174063464],[4.636426562895201,51.93982707169008],[4.636429984371611,51.93982596996654],[4.636433304057729,51.93982486759296],[4.636436507412117,51.939823764476536],[4.636439817213309,51.93982238339433],[4.636443020567362,51.93982128027769],[4.63644622857806,51.93981989854539],[4.636449320407225,51.939818507082656],[4.636452412085981,51.93981712460743],[4.636455503764547,51.93981574213208],[4.636458479111379,51.93981435891394],[4.636461454608246,51.93981296670811],[4.6364644346114,51.93981130487425],[4.636467293626133,51.93980992091308],[4.636470171988997,51.93980824944151],[4.636473151991517,51.939806587607414],[4.636476127487413,51.93980519540121],[4.636479102832912,51.93980381218253],[4.636482194509741,51.93980242970649],[4.636485286186379,51.939801047230375],[4.636488378013039,51.93979965576661],[4.636491586020801,51.939798274033066],[4.636494774830426,51.93979717082217],[4.636498099169309,51.93979578983119],[4.636501302520039,51.93979468671294],[4.636504607660664,51.939793584244505],[4.636508043674049,51.939792482611544],[4.636511348814347,51.93979138014292],[4.636514770285965,51.93979027841687],[4.636518206298851,51.939789176783584],[4.636521623113803,51.93978835367298],[4.636525160916412,51.93978725268934],[4.636528708603997,51.939786430414024],[4.636532241599819,51.93978561703338],[4.636535774745712,51.93978479466504],[4.636538606748466,51.93978415658012],[4.636771471853598,51.940187889970964],[4.636948271489327,51.940494431412255],[4.637000056780645,51.940486779981384],[4.637063074258679,51.94057898216263],[4.637033619927746,51.94060274875831],[4.637042037875568,51.94062641540363],[4.637167849881761,51.94098011772846],[4.637200105351703,51.94107080228364],[4.637370270110478,51.94151293801775],[4.637485201735967,51.9415324659372],[4.637615302854885,51.94155458027708],[4.637789031127355,51.94175908965331],[4.637884102467892,51.941865463862044],[4.637876846842905,51.9418697231435],[4.637713743112879,51.94196539151246],[4.637668255994451,51.94199207622708],[4.637470092331553,51.942108302312825],[4.637583123143187,51.942296712957564],[4.637615188247364,51.94234488029672],[4.637652446454259,51.94240083785224],[4.637820444344707,51.942585508830106],[4.637895161545948,51.94265755184378],[4.637947520609382,51.94270805958893],[4.637954010264775,51.942856088492995],[4.63799799527205,51.942971808744005],[4.638095499261111,51.943126098251376],[4.638145642160098,51.94321622231503],[4.638240900423621,51.94322963777074],[4.638238621031205,51.943237245545696],[4.638238235281087,51.94323770150493],[4.638235324544499,51.94324217724207],[4.638233790100232,51.943246104454964],[4.638180504990162,51.94340194116147],[4.638150233983122,51.9434798318974],[4.638131765585886,51.9435311197857],[4.638111057285894,51.9436486839791],[4.638132802459335,51.94378898999239],[4.63817387236501,51.94387464285618],[4.638221121750847,51.943957800291926],[4.638337715245892,51.94414759009212],[4.638447505300753,51.94432327835233],[4.638515609449234,51.94443017238582],[4.638637234935642,51.944591338402375],[4.638686905656336,51.94466719436874],[4.638602047168801,51.94469195695414],[4.638633700673037,51.944730081155484],[4.638588249379999,51.94474575547897],[4.638625813378005,51.944815844642136],[4.638707978714225,51.94492214493259],[4.638835592471599,51.94488903435541],[4.638837990948163,51.94489260908552],[4.638860680666109,51.94492926497441],[4.638988060519286,51.945126700071185],[4.639119253122471,51.94533455902711],[4.639255123738613,51.945548056434475],[4.639352100487073,51.94569529442514],[4.639491473949175,51.94590994637278],[4.639550480415048,51.94600357773693],[4.639599329591166,51.94607916739817],[4.63970336525382,51.94623937548703],[4.639735042670841,51.94628929250192],[4.639850718903915,51.94648075571376],[4.639960267178918,51.946677788717004],[4.640044451761436,51.94684320953423],[4.640070415265757,51.946894779993855],[4.640115636015151,51.94701809353136],[4.640148459904093,51.94715566502748],[4.640155356724864,51.94719137539364],[4.640169624066859,51.94733837483177],[4.64018042744116,51.947481136632234],[4.640206424403162,51.947701242505545],[4.640202481600791,51.94781497649662],[4.640209190743386,51.947938054327594],[4.640267041990372,51.94792298845703],[4.64026871508855,51.94793958295046],[4.640032108821518,51.94799596612217],[4.640042168755223,51.9481676573281],[4.640096877890111,51.948177982194714],[4.640140955230063,51.94863328932985],[4.640053606700394,51.94864469816014],[4.640052776625844,51.94869458829888],[4.63982714307228,51.94870321273602],[4.639739404772637,51.948706565120226],[4.639741736770801,51.948760466270016],[4.639860239134907,51.94916094897957],[4.63986730362914,51.94918484048206],[4.639888456514479,51.94925633495749],[4.640088396542516,51.94985232335132],[4.640395286997145,51.94979234154184],[4.640421697741792,51.949871374732744],[4.640446254695295,51.94998753680437],[4.640472730303698,51.9501169152204],[4.640481338812679,51.95015995309195],[4.640518785388564,51.95033377758763],[4.640535259683112,51.95040241982061],[4.640562685342184,51.950530680670916],[4.640643762116797,51.95078034877748],[4.640676925191096,51.95084965421533],[4.640821387414252,51.951026413981985],[4.640893187581872,51.95110355088983],[4.640949029899009,51.95116233076621],[4.641057093780582,51.951265827363365],[4.64119329965666,51.95137146187809],[4.641244555033182,51.951406051315345],[4.641353197082982,51.951501964970625],[4.641504093712189,51.95161303147613],[4.641664091677581,51.95170954910288],[4.641717807694045,51.95173966864647],[4.64179661960779,51.951777524569565],[4.641882099912053,51.95181064978568],[4.64197362538895,51.951842411033326],[4.642058994479613,51.951868227732376],[4.642115664037211,51.951884316718534],[4.642246525154767,51.951916048311006],[4.642342231768987,51.951935188879965],[4.642457450054318,51.951956709054436],[4.64259972766224,51.95197811280757],[4.642611803892053,51.95197622077593],[4.642621341623483,51.95197038468013],[4.642625816812155,51.95196017506789],[4.642640466586285,51.951961867776575],[4.642742621656819,51.951974631026985],[4.642722023018594,51.952048341475376],[4.643002248145446,51.95209003315085],[4.642998390739759,51.95212792239463],[4.643272342235818,51.95215760099105],[4.643549211389604,51.95220524750578],[4.644122738259415,51.95233464926125],[4.64424081215815,51.95236129121025],[4.644263646853449,51.95234747626579],[4.644492044679873,51.952398805248166],[4.644489392482817,51.952432504498525],[4.644487957330036,51.95245067025552],[4.644651590008602,51.952513571616734],[4.64569841501909,51.95290459811358],[4.645796144932739,51.9530225505801],[4.646220490879629,51.95329479104962],[4.647204774916895,51.9538308173898],[4.647323994479776,51.95390128251381],[4.647361595979937,51.95390151905832],[4.64884311504697,51.95348324505195],[4.64893998129258,51.95344726982715],[4.648941532910435,51.95344668632402],[4.649001310961321,51.95342793395788],[4.648919086428962,51.953387400884196],[4.648785458888848,51.95332254564515],[4.648248571905105,51.953048672630736],[4.648015046120967,51.95290985134314],[4.647997529533841,51.952748253268076],[4.647549225130117,51.95255953380801],[4.647664213068399,51.95243012094758],[4.647745508680439,51.95251893547726],[4.647879995309731,51.952575554838155],[4.648144774077866,51.95261579782495],[4.648345144665037,51.95271843846838],[4.648617864177517,51.95285085373661],[4.648636466438145,51.952890870652865],[4.648674052121114,51.952920319411035],[4.648947513970576,51.95307849969439],[4.649077385618234,51.95317003610781],[4.649194198231849,51.95324717169762],[4.649305144428729,51.95333607230309],[4.649366666168636,51.953409490099084],[4.649403903038368,51.953467304232355],[4.649436665827097,51.95355571421048],[4.649448488767832,51.9536453860475],[4.649447136489507,51.95372768553722],[4.649444973703176,51.953768120356436],[4.649431734763023,51.95379295351421],[4.6489693031693,51.95392008881079],[4.648714923780397,51.95399002252562],[4.648519966279592,51.954064634431006],[4.647945043357886,51.9542564866474],[4.647786211991594,51.95430949127336],[4.647817865649781,51.95434760389977],[4.64798642433668,51.954504326838745],[4.64808581250827,51.95454686499824],[4.648194849217965,51.954619260677674],[4.648339790592247,51.954715503678976],[4.648295372020145,51.95469542288945],[4.647859869371747,51.95498341099803],[4.647583368049901,51.95516116445724],[4.64748583181313,51.955225151611394],[4.647320555513983,51.955336189976734],[4.64711480455186,51.95548348483675],[4.647018047603607,51.95555394825145],[4.646806890654295,51.9556981165003],[4.646608226171794,51.95582130291113],[4.646492685316088,51.955894452036816],[4.646366480687449,51.955972864078475],[4.646070956944444,51.95616622411518],[4.645916527921607,51.95626749542352],[4.645782248059121,51.956352884977505],[4.645681251485802,51.956426116007925],[4.645538052676385,51.95656257581343],[4.64544552557803,51.956680524056786],[4.64536557230444,51.95678675858435],[4.645291798609136,51.95687645718914],[4.645188145606892,51.9569932204704],[4.645146268446056,51.9570376202717],[4.645134609887332,51.957048494744406],[4.6450710698064,51.95708321202056],[4.645006510900371,51.957117068923104],[4.644932391016121,51.957152833939546],[4.644830762348974,51.95720162943163],[4.644761738856821,51.95723799278634],[4.644682567551973,51.95728271428952],[4.644542739004086,51.95736020244616],[4.644444011860822,51.95742614806587],[4.644353083658195,51.957501697668384],[4.644289797895132,51.95756141323394],[4.644206729130699,51.957649928885054],[4.644143978127763,51.9577256563227],[4.64404346437442,51.95784495522382],[4.64396297535469,51.95796916247866],[4.643922556486897,51.9580422264955],[4.643851108109671,51.95814934967927],[4.643767018487468,51.95828533598258],[4.643716548678171,51.95836085318592],[4.64369425755604,51.95838908906426],[4.643562208382476,51.95856577771058],[4.643498632410563,51.958657786803876],[4.643477740720373,51.958697258163085],[4.643378547568365,51.95885954799421],[4.643336020019794,51.95895000925362],[4.643291017463792,51.95904494910794],[4.643225705128225,51.95917317983107],[4.643170484408881,51.9592885578391],[4.64310731040804,51.95941062690257],[4.643080078614715,51.95946213866307],[4.643031388047413,51.959526718799324],[4.642945475005721,51.95966268398607],[4.642916164281783,51.959702668248426],[4.642893043985162,51.95973257958266],[4.642845358054236,51.95977777774332],[4.642770625978078,51.95984219296545],[4.64272810205908,51.9598770330109],[4.64265139345216,51.95993778630481],[4.642583949620071,51.95998819847446],[4.642522310348762,51.96003162731513],[4.642488246163793,51.96005640874011],[4.642377296602941,51.96012536730609],[4.642289015801219,51.96017761584494],[4.642157540966249,51.96025767987362],[4.642085091677588,51.96030104001256],[4.642008828787429,51.96034887021028],[4.641797762902327,51.96049134925956],[4.641804976072303,51.9605020733435],[4.641813249701399,51.960510269382304],[4.641839787617169,51.96052082829435],[4.64186293977785,51.960530251168116],[4.641872780520471,51.96053958069908],[4.6418725007267,51.96055643241692],[4.641741961093238,51.96068958815958],[4.641704811752933,51.960729243797786],[4.641663020748382,51.96077504512241],[4.641633517474738,51.96081249308165],[4.641588656431069,51.960865294960456],[4.641516170389019,51.96096595638647],[4.641481391556788,51.961019667063695],[4.641459288296272,51.96105744952783],[4.641425565322622,51.961116784712836],[4.641393879544299,51.96117697772696],[4.641367472552708,51.96123383350697],[4.641339084204927,51.96128646109714],[4.641302891026593,51.961350832135224],[4.641283219482117,51.96138498064418],[4.641259753097801,51.9614224667931],[4.641229230258323,51.96146693721368],[4.64119058130239,51.96152146818134],[4.641165900940154,51.961556699479985],[4.641119135934089,51.96161454964493],[4.641009744078806,51.96174699379493],[4.640862423958191,51.96191066602425],[4.640815881526465,51.96196120980841],[4.640785675125011,51.96199360154103],[4.640761981025427,51.962017612342855],[4.640726764836876,51.962057270952634],[4.64068105964417,51.96210557286526],[4.640643191666022,51.962147192096104],[4.640491353155054,51.96230942398603],[4.640322067825976,51.96246115416287],[4.640279846666353,51.96249852102818],[4.640223703273461,51.96254535427046],[4.640164038945853,51.962592165124605],[4.640105356440294,51.96263505419838],[4.640056023085389,51.96266872646843],[4.640008467162851,51.96269876066665],[4.639963339234194,51.962726284494046],[4.639929118738769,51.96274713620421],[4.639823391549585,51.96280853924179],[4.639758090281554,51.96284604690328],[4.639683597641221,51.96288939259127],[4.639611886431407,51.96292909757971],[4.639554933850697,51.96296328749282],[4.639492046308778,51.962999120506616],[4.639445452481398,51.963025511252624],[4.639361069547003,51.96307469033799],[4.639299432758341,51.963110540190165],[4.639252922446618,51.96313889089052],[4.639194271734063,51.96317279118805],[4.639117214760149,51.96321976955508],[4.639103603284889,51.96323850496375],[4.639049609378687,51.96325838573835],[4.639008610829634,51.96328340070209],[4.638898072029347,51.96334786436205],[4.63873585377184,51.963443458936055],[4.638651771540333,51.96349545283904],[4.638574200954515,51.963545240993696],[4.638516637260426,51.96358195229481],[4.638432429282881,51.963635347452126],[4.638366031782748,51.963676496710775],[4.63829616876883,51.963721273210204],[4.638137282054781,51.96382110379573],[4.637833283445233,51.964027027202484],[4.637725544566261,51.96410049613425],[4.63762192656826,51.964172022740875],[4.637547120984071,51.96422687939597],[4.637491126498793,51.96427146516156],[4.637352854008055,51.96438266174013],[4.637247478470267,51.9644704730161],[4.637040368765342,51.96464667579824],[4.636975561846566,51.9647013172132],[4.636927251294282,51.96474229338908],[4.636887132405321,51.964775465824424],[4.636830034619232,51.96481807575266],[4.636773634528384,51.964859854171394],[4.636735637386915,51.964888824472034],[4.636701580440705,51.964912759358974],[4.636650651312425,51.96494670766354],[4.636609165930807,51.964973687178805],[4.636574007170976,51.96499650042098],[4.63653174972737,51.9650217851392],[4.636496055955834,51.96504178153489],[4.636451663303242,51.96506509309871],[4.636427008984276,51.96507841853509],[4.636421268364471,51.96508147394858],[4.636397423160678,51.96509340233274],[4.636356403687398,51.965112519771736],[4.636258600116415,51.96515543586392],[4.636162591606493,51.96519976554666],[4.63609601494277,51.9652313575853],[4.635993428007729,51.96528182923223],[4.635828124687859,51.96536447462302],[4.635677566256367,51.96544160514629],[4.635526848614543,51.965521260237196],[4.635328686010426,51.96562391913802],[4.635141371891162,51.96571737989467],[4.635012075727913,51.96578031779579],[4.634869623931741,51.96584851060238],[4.634764382382165,51.96590092370612],[4.634481336768111,51.966041805717126],[4.634205082308561,51.96621840599265],[4.634150455912446,51.966255691265246],[4.634112265470606,51.96628213371151],[4.634070036923661,51.9663124782785],[4.633776363361695,51.96653053797084],[4.633647544321717,51.966626339498056],[4.6335536130149,51.96669567747034],[4.6335051396983,51.96673216593406],[4.633469819169323,51.96675750299563],[4.633436908164527,51.966780599365904],[4.633408505934446,51.966800362910114],[4.63333744107363,51.966847663551114],[4.633254773864453,51.96690302440448],[4.633127732051398,51.96698732245342],[4.633018959840006,51.96706078048453],[4.6329570876634,51.967103079293274],[4.632919584342326,51.96712924711683],[4.632879657117355,51.96715763752865],[4.632842707118594,51.96718464480915],[4.632811265257651,51.96720860433731],[4.632504209579176,51.96745157215417],[4.632371601100989,51.96755605786706],[4.632160734076439,51.96772351813427],[4.632058640498872,51.96780460446919],[4.631433934139495,51.968263501756795],[4.631364943169546,51.9683161447369],[4.631356769929549,51.96834867563501],[4.631348618802183,51.96838766942609],[4.631343570538468,51.96845757672385],[4.631343406906419,51.968460380093084],[4.631346011660974,51.96849494873048],[4.631366650460112,51.968565587352565],[4.631422167132573,51.96865807645411],[4.63150084018308,51.96875296141968],[4.631598848382564,51.96884038420874],[4.631671271606064,51.968894223250835],[4.63170403665602,51.968919709421094],[4.631829525265298,51.96900253558965],[4.632026430716244,51.96913076274033],[4.632207793505369,51.96925130348607],[4.632435970520989,51.969399676171975],[4.632639274775441,51.96953356115701],[4.63272645132415,51.96958945366347],[4.632921144252936,51.96971541796126],[4.633083189345379,51.96980803195509],[4.633145880527322,51.96983932737961],[4.633179406407342,51.969839542275],[4.633204682434272,51.96983100339223],[4.633250023079865,51.969798422959904],[4.633268624662973,51.96978090669294],[4.633277171506792,51.96978584223759],[4.633533497421049,51.969909225286735],[4.633809273971815,51.970028741434085],[4.634043517978313,51.970122256887095],[4.634053131215362,51.970126093613466],[4.634210606022773,51.97017300608603],[4.634555648858255,51.97020714139418],[4.635101047359996,51.97023657942736],[4.635129876141626,51.97018363258069],[4.63525585264,51.96995217447555],[4.635302087509236,51.969966896579265],[4.635547378224765,51.969970144984764],[4.63575514220874,51.9699748430142],[4.635846514912565,51.969976828856616],[4.636137081850733,51.96998514709583],[4.636273308339565,51.96999135594059],[4.63642948031993,51.970007516375844],[4.636631750997368,51.97003352553445],[4.636725955026435,51.97005070138101],[4.636918970877679,51.970093225834475],[4.637387592276632,51.970196489638774],[4.637535896971376,51.97022804971998],[4.637718834066246,51.97026854013868],[4.637924659689953,51.97030749520411],[4.638133397741692,51.970341129271986],[4.638296143907412,51.970365472678814],[4.63856934480758,51.97040738128537],[4.638753325552849,51.97044647451935],[4.638809459284815,51.9704619952729],[4.638896015968661,51.97048755195216],[4.639059593032409,51.970537184285156],[4.639297665203254,51.97060526705786],[4.63951858711431,51.9706659416677],[4.639801798842139,51.970741330329574],[4.639816517579774,51.97074536081169],[4.639828566201063,51.97074543735797],[4.639840433486878,51.97074242070102],[4.639845471972487,51.970740484224926],[4.639869295844157,51.97069675363214],[4.639902769965388,51.970706233440524],[4.639830120071369,51.97080156254321],[4.640218888976763,51.970925763250335],[4.640639466500241,51.97108010527439],[4.640640907955767,51.97107918860488],[4.640730197004631,51.971119969831214],[4.640858901346974,51.9711744388876],[4.641008940360562,51.971231568901544],[4.641096750435591,51.97126330700669],[4.641179750763817,51.97129023265438],[4.641412364385928,51.971359687688775],[4.641576394111944,51.9714025779724],[4.641747290855287,51.971442985767276],[4.641846518950132,51.971465519512265],[4.64209301198983,51.97152045479117],[4.642315324439671,51.97156623894278],[4.642404844123894,51.97158450411686],[4.642547062648354,51.97161321488877],[4.642782336889417,51.97165936783098],[4.642974407481361,51.971698217974854],[4.643165799091881,51.97173678486523],[4.643300644891276,51.97176432452725],[4.643379744476618,51.97177999729187],[4.643591769029362,51.971822343277054],[4.643790656462333,51.97186180144594],[4.643955769777997,51.97189487079373],[4.64417393611944,51.97193023449887],[4.644316677769154,51.971954730811795],[4.644484768963777,51.971979386994],[4.644677498572365,51.97200672421986],[4.644904132478929,51.972031749290636],[4.645038165657674,51.972039902593544],[4.645244595380198,51.97204934829374],[4.645370394172534,51.972046770933154],[4.645500188544318,51.97203578740606],[4.645635690643084,51.97201670511305],[4.645844472387088,51.97197363573156],[4.646061770803239,51.971917145858804],[4.646075057518851,51.97191189038853],[4.646068585218182,51.971890501901854],[4.646057461736945,51.97187933101428],[4.646159205926186,51.971893337872174],[4.646374750162314,51.97194658608246],[4.646576911812685,51.97202768593332],[4.646597476965602,51.97203819712933],[4.646695424365563,51.97208829544998],[4.646798391534062,51.9721128979138],[4.646975730829815,51.97213197293568],[4.647879170059756,51.972193535601754],[4.648933958603539,51.97228397748663],[4.649027418341796,51.97229653664676],[4.649133782050929,51.972311172138454],[4.649114726945387,51.97229109810327],[4.649092572585316,51.97226302282536],[4.649088669949027,51.97222423090773],[4.649078699191845,51.97212523184838],[4.649098986720285,51.97206948657388],[4.649125356152964,51.97203771584848],[4.649148636525917,51.97202563753441],[4.649170962734684,51.97201405658625],[4.649242216584342,51.97200253088379],[4.649739582597803,51.97200764520579],[4.649797636301965,51.97220956738776],[4.651188721912083,51.971687426532974],[4.651272929455518,51.97167398519839],[4.651329501273258,51.97167823110199],[4.651458390134398,51.97178889477288],[4.651828038906043,51.97209654552606],[4.65198884618223,51.9722240728005],[4.652162857507742,51.97236207305993],[4.652149836498916,51.972368912852005],[4.651719745275956,51.97259479348201],[4.651653037462846,51.97263705384072],[4.651579387987883,51.972683720065895],[4.651532982256615,51.97275527500042],[4.651528114059695,51.97278501448464],[4.651497092325551,51.97297457680531],[4.651485462013172,51.97306257343712],[4.651482337767082,51.97308624759582],[4.651139662846248,51.973049390491774],[4.650952536249708,51.97304107369431],[4.650823077787711,51.9730731793437],[4.650713025011178,51.97311735206071],[4.650660727512669,51.97315494715371],[4.650659974286685,51.97320083774296],[4.650688314632684,51.973244924015745],[4.651377777568209,51.97355258238853],[4.651666023508733,51.97370406145048],[4.651951171506903,51.97384753864273],[4.652203851239939,51.974000789528844],[4.652533139664014,51.974210399800434],[4.653060340276564,51.97456493448371],[4.653507723541163,51.97486308750396],[4.653647420720085,51.974954499780665],[4.654000791888341,51.97518572953671],[4.653840351909011,51.97522085432433],[4.653835560175547,51.975221948017456],[4.653830870312601,51.975223042345384],[4.653826306872447,51.975224416104716],[4.653821728879049,51.97522578977311],[4.653817277161449,51.97522745186049],[4.653812927461185,51.97522910559516],[4.653808694037436,51.97523076904297],[4.653804562631044,51.975232424138134],[4.65380055750034,51.97523436765227],[4.65379653781632,51.97523631107555],[4.653792760978559,51.97523853465607],[4.65378897428825,51.97524047054309],[4.653785415744327,51.975242695484205],[4.653781954370007,51.975245208662926],[4.653778628672917,51.9752474350554],[4.653775400292326,51.97524994069791],[4.653772404758955,51.97525244779195],[4.65376952564905,51.97525495561166],[4.653766743708707,51.97525775166912],[4.653764082892793,51.97526026084956],[4.653761650223237,51.975263059084256],[4.653759334124113,51.97526584905713],[4.65375723617248,51.97526864937843],[4.653755264790203,51.97527172014371],[4.653753399685738,51.97527452191656],[4.653751748321633,51.975277603665376],[4.653750334506084,51.975280399263085],[4.65374904696615,51.975283483280016],[4.653747846743949,51.97528656784131],[4.653746894069251,51.975289644957314],[4.653746159542319,51.97529273242185],[4.653745541439188,51.97529582061218],[4.653745039759883,51.97529890952834],[4.653744756522265,51.975301990817826],[4.653744701431375,51.97530536116161],[4.653744767318591,51.9753084536161],[4.653745051500713,51.97531154743156],[4.653745568530778,51.975314642698606],[4.653746202131781,51.9753177297039],[4.653746952009929,51.9753208264226],[4.653747920183139,51.975323924502256],[4.65374912120445,51.975327024033454],[4.653750438796826,51.9753301153029],[4.653751877220616,51.975332937670636],[4.653753529385471,51.97533604001436],[4.653755419099611,51.97533885620698],[4.65377782829811,51.97537298142368],[4.653849846339734,51.975446749549235],[4.653907845846884,51.97549485797443],[4.653983810096213,51.97554982869465],[4.654091803725647,51.975607803365435],[4.654186729375056,51.9756505239307],[4.654303359209679,51.97569394590199],[4.654440856046568,51.97573497195678],[4.65463574347321,51.975783932519434],[4.655155775687991,51.97591357467591],[4.655253327966822,51.97594170440688],[4.655301853748762,51.97595773616521],[4.65539001417554,51.97599058923531],[4.655467375460146,51.97602253015434],[4.655562647888843,51.976065539385914],[4.65578507224544,51.97616916652672],[4.655950011581528,51.97624209978533],[4.656063798477523,51.97628690452857],[4.656168774677707,51.97632041879495],[4.656292644076887,51.97635209085071],[4.656395410984051,51.976368459115136],[4.656505900462035,51.97638430897706],[4.656655953762417,51.97639367202725],[4.65679852625246,51.97638781586345],[4.65682606275558,51.97637984323621],[4.656846990805777,51.97636564549397],[4.656851935588245,51.97636230550439],[4.656852159559806,51.976348545508465],[4.656844080955813,51.9761956819481],[4.65691335547697,51.97620142417438],[4.657016473812489,51.97621497169093],[4.657216378444445,51.97624122718775],[4.657376029368484,51.976268095539425],[4.6575610962695,51.97629924701872],[4.658092382068972,51.97640631288314],[4.658562460749106,51.97650302005474],[4.658900720629618,51.976560995945846],[4.659041943514579,51.97657643143609],[4.659074866428333,51.97658003284594],[4.659332532363457,51.976627531451534],[4.659469756561176,51.97665620870299],[4.659829290895468,51.976728092861755],[4.660002492520785,51.976765935460165],[4.660111879004736,51.976775438219875],[4.660340274784581,51.976787141309565],[4.660406372622814,51.976822847454635],[4.660486747416615,51.97685865073734],[4.660736974106274,51.97691902575047],[4.661235247484263,51.97702800377235],[4.661239687909591,51.97704862380362],[4.661251354839923,51.97706340096322],[4.661617484234004,51.97717156191118],[4.661620367177941,51.977172397643336],[4.662371152992635,51.97739095149975],[4.662401847361494,51.97740731987634],[4.662436564476391,51.97746930264222],[4.66246136317645,51.97748122133618],[4.662800574572092,51.9775612585517],[4.662841404607811,51.97753945218726],[4.663378496264118,51.97767807038858],[4.663641749487049,51.97774440677887],[4.663665986486439,51.97771807574705],[4.663698517779284,51.977729790052955],[4.663696646899074,51.97773207960096],[4.663659326564158,51.97776190759847],[4.663648530372381,51.97778965158468],[4.663651763929282,51.977800340805246],[4.663659087899064,51.97781190908712],[4.663780374930123,51.977863493794594],[4.663962114752365,51.97793286969238],[4.664037171103259,51.97796029651329],[4.664164622250663,51.977997033773335],[4.664263316395602,51.97802628655787],[4.664383813372099,51.97805651812586],[4.664501992364695,51.97808337363731],[4.66474850806876,51.97811915172595],[4.664880892020928,51.97812530371064],[4.665037041633914,51.97813075650462],[4.665374589666613,51.97813563229973],[4.665582817864079,51.97814112522343],[4.665852565637492,51.97814699497523],[4.666253677976711,51.97815816338139],[4.666575611163644,51.97817192852964],[4.666746390991348,51.978179994425034],[4.667180990679545,51.97820962033175],[4.66770642259923,51.97824795268624],[4.668078630838394,51.978288986601825],[4.668701299174869,51.97835430795911],[4.668947155128793,51.978382495906985],[4.669047190735976,51.97839911504245],[4.669272085431468,51.978458346417504],[4.669328551491157,51.97848257335437],[4.669396063257097,51.97850601374743],[4.669451640606,51.97852939028531],[4.669518864981757,51.978570805817085],[4.669628912774044,51.978643106250225],[4.669768063814035,51.97873776761696],[4.669921656877569,51.978846853487724],[4.670095695544216,51.978971784621606],[4.670295012131195,51.97910895003553],[4.670402375059996,51.979200046257894],[4.670466189222675,51.97926279708851],[4.670527160877948,51.97933310785736],[4.670637938278416,51.979467486207525],[4.670725994500525,51.979607343889114],[4.670817954188801,51.97974525678986],[4.67088745883746,51.979836409667925],[4.670973203182447,51.979936083565114],[4.671064637532051,51.98003495610107],[4.671199807166842,51.98018071795445],[4.671294885606367,51.98028663248066],[4.67137838814174,51.980384602594285],[4.671396527584731,51.98040268990629],[4.671450419371419,51.98050273592616],[4.671517542556545,51.98063656919156],[4.671564390282637,51.9807511785819],[4.671581008389218,51.980792563731214],[4.671589289845755,51.98083643292477],[4.671610766682709,51.98092364390934],[4.671613098630634,51.980970002677964],[4.671608812335215,51.98105986137599],[4.671596287869465,51.981167925564634],[4.671584188124227,51.981384420322996],[4.671571357379093,51.98155456604578],[4.671576835939107,51.981723969218],[4.67159533476341,51.98184823954212],[4.671620566924558,51.982026760305814],[4.671658391031261,51.98214411915403],[4.671705457886263,51.98229439605646],[4.67174469527286,51.98241626669037],[4.671763739140547,51.982533789942266],[4.671774904150466,51.98259677715108],[4.671777781567402,51.982651849052594],[4.671786118291834,51.98279908600857],[4.671787416955594,51.98288195864793],[4.671796817485336,51.983040994943856],[4.671799220198843,51.98311853513938],[4.671796216014071,51.983256714656946],[4.671797856280818,51.98329717276099],[4.671807536847036,51.98336015093335],[4.671814599603685,51.98339559048273],[4.671827569798459,51.98345858865284],[4.671835021182147,51.98349795852593],[4.671840669945374,51.983549955232334],[4.671859631554916,51.983630688126226],[4.671891176279204,51.98374941089054],[4.671931062665199,51.98388729384463],[4.671955182974419,51.983964966042116],[4.672025772608358,51.98409544931687],[4.672078893313027,51.984202222650175],[4.672109111756921,51.984260831369255],[4.672138601498346,51.98435146157693],[4.672161489409604,51.9843923274314],[4.67216988942848,51.98440052203214],[4.672236423760331,51.984407389038125],[4.672282202286469,51.984396710241676],[4.672334743188483,51.984391025159496],[4.672343420224383,51.98446405527659],[4.672348857093459,51.98455040459912],[4.672385313435561,51.98461590035352],[4.672521880137735,51.984816732376125],[4.672645024465177,51.98500486290757],[4.672760597393995,51.985149272352565],[4.672840572160715,51.985249224317556],[4.672919567060518,51.98522331371957],[4.673035908310492,51.98518513576866],[4.673173127901726,51.98513122873732],[4.673197215647965,51.98514892938529],[4.673233793325352,51.98517581113338],[4.673068624909982,51.98527165959778],[4.673053301960125,51.98527949443163],[4.672913957061263,51.985350727181796],[4.672903221226735,51.98538223850597],[4.672912884444937,51.98541808925272],[4.672949644117194,51.98546462997614],[4.672988055804568,51.98549610705102],[4.673067406169098,51.985562195497366],[4.673101195586304,51.98558134825514],[4.673070108690719,51.985606417192166],[4.673066400881766,51.98562534238311],[4.673069404877222,51.98565062720207],[4.673116230523303,51.98570775445793],[4.673235857535847,51.985819919405905],[4.673329466119751,51.98591221467089],[4.673497697414717,51.98605218790727],[4.673638885062709,51.98617726480387],[4.6739286401216,51.98639376504004],[4.674078711750592,51.98649678361395],[4.674217280402542,51.986573414062086],[4.674376186766627,51.98665648644],[4.674572439278095,51.986750310273045],[4.674782451373572,51.986835803875195],[4.67499620479443,51.98691677157854],[4.675875364199992,51.98724979985998],[4.67605490996613,51.987322469210156],[4.676203903702063,51.987386531494614],[4.676522011561226,51.98753582799159],[4.676699506282042,51.98763058659113],[4.676841341353088,51.9877156558152],[4.676979651673472,51.98780913476984],[4.677185334123776,51.987953535249545],[4.677421423265824,51.988114972138675],[4.677542415449444,51.9881170860969],[4.677638519575456,51.988077334406],[4.678030481426489,51.987869160504],[4.678222270682255,51.987771820618306],[4.678477284307931,51.98764236793803],[4.678596950301456,51.98772835315841],[4.678822658036726,51.987900250197846],[4.678994320324378,51.98804023608467],[4.679135643861962,51.98815898818765],[4.679246580598845,51.98825860064128],[4.679321313799482,51.988275894606176],[4.67949281288404,51.98842641323944],[4.679573311134934,51.98851111022394],[4.679518465855591,51.988529728076564],[4.67956237262856,51.98866368647606],[4.679624681002627,51.98881985812813],[4.679667182114764,51.98893590301662],[4.679448573449592,51.98897881162834],[4.679427777205311,51.988982893147536],[4.679460409327441,51.98907572447885],[4.679473105170997,51.989134747153315],[4.679482276258814,51.989202170813904],[4.679557502149269,51.989296309921244],[4.679556572110236,51.9893552596325],[4.679518141739315,51.98941397484031],[4.679504427297355,51.98942503805259],[4.679455969453643,51.989464134047985],[4.679281008576129,51.98949673443339],[4.680143987827052,51.99025272870585],[4.680148267428221,51.99025647564085],[4.680259738538909,51.99027554472233],[4.680298241017859,51.99025842829464],[4.680598063325394,51.99012516842149],[4.680598540155316,51.99013186768532],[4.680659535109369,51.990216500704534],[4.680736403570301,51.990333254858015],[4.680855632655771,51.99050502989533],[4.680931719002703,51.990592000461575],[4.681116608987661,51.99084169471259],[4.681319625560127,51.99103139158461],[4.681855377751887,51.991695812700485],[4.68188171543499,51.99172827506322],[4.681883971845072,51.99172922338628],[4.681937098370224,51.99180157525884],[4.682055335570672,51.99192307064234],[4.682225573492311,51.99205710172404],[4.682486077939203,51.99225174296503],[4.682662989129493,51.99237358007431],[4.682683144828184,51.99238625760939],[4.682837310428388,51.99248331194163],[4.683190282636259,51.992693326958566],[4.683580479242045,51.99293548145585],[4.68367463634165,51.99298953465235],[4.683719142408173,51.99300188118643],[4.683763879584731,51.993000422824316],[4.683819972812046,51.99298695184199],[4.68395046281285,51.99291719932474],[4.684467052835437,51.992623819172664],[4.684565627881961,51.992567834458825],[4.684891905105422,51.99278717674695],[4.684902638360998,51.99282793151495],[4.684905098151528,51.99283728519405],[4.684926716425142,51.99288400134083],[4.685381626041814,51.993187792252044],[4.684854220028191,51.993498657300826],[4.684776688701134,51.9935421930216],[4.684884636143731,51.9936083990311],[4.684870173206391,51.993639367810026],[4.685277375129419,51.993867820791145],[4.687227367014922,51.99497158540957],[4.688174048960507,51.995459451282194],[4.688613792725705,51.99566306197441],[4.688740524340104,51.99559997825112],[4.689007025795957,51.99571370840186],[4.689209798929091,51.99579255336415],[4.689355723062786,51.995842594497354],[4.689270291644386,51.99594560778501],[4.68979074729404,51.99608154227586],[4.690783161998596,51.99632637672781],[4.690891543974113,51.99618553996267],[4.691187092645272,51.99622869795667],[4.691379787456754,51.99623674051887],[4.691433121168723,51.996130947295995],[4.691731813402987,51.99615168735914],[4.691705423837439,51.99641206134551],[4.692188534360681,51.99643388993006],[4.693133857128999,51.996473112435716],[4.693293502247644,51.996449901889676],[4.693539070612763,51.99647204989744],[4.693692569120604,51.99648377659557],[4.694162896704944,51.99651972347124],[4.694330474894584,51.99652588750686],[4.694391870317461,51.99653310711944],[4.694634548968117,51.99656045810755],[4.69480999636242,51.99656058259478],[4.69530244011362,51.99656093497169],[4.695534473939192,51.996568536843355],[4.695623631627718,51.99657145171533],[4.695711570160145,51.99657316389449],[4.696276547290322,51.99625669148907],[4.696730731147015,51.996486180186935],[4.696752226989788,51.996375308105286],[4.697197387206326,51.996454275638186],[4.697808132087741,51.99656502389546],[4.698342877625898,51.996661985321865],[4.699054512185825,51.996793424686075],[4.699173623216441,51.996813428232414],[4.699273153744546,51.99681225730808],[4.699292868915605,51.99682465973407],[4.699312395633732,51.99684934824331],[4.699306379472051,51.99687038196652],[4.699269075855189,51.99689298555498],[4.700128466620541,51.99703142106987],[4.70029203709506,51.99705698619648],[4.700641884028514,51.997111654839536],[4.700671581459822,51.99711693350674],[4.700737077149816,51.99717413142084],[4.700832209844624,51.997253892324565],[4.700889892298727,51.99729833494264],[4.700968235558207,51.99735243472723],[4.701050129393066,51.99739814198721],[4.701176832912524,51.99746741739368],[4.701463967910626,51.9976305948659],[4.701588930411503,51.997702394414254],[4.701697862886812,51.99776453677186],[4.70176478889183,51.99779975673087],[4.701806228775403,51.997819943393296],[4.701938554157584,51.99788644631505],[4.702006396191178,51.997920826555664],[4.702110512021771,51.99797901253911],[4.702207704795225,51.99804334217493],[4.702294154695527,51.99811125851405],[4.702509985786946,51.99828891224303],[4.702805978964587,51.99853641341436],[4.70298520371896,51.99868267251613],[4.703180116596358,51.99883633010629],[4.703326378150713,51.998958523829295],[4.703433852279889,51.99904312713959],[4.703575381146326,51.9991549024274],[4.703730439474073,51.999267601020264],[4.703965341892224,51.99942626234666],[4.704118890382174,51.99953304625499],[4.704175937507557,51.99957467015785],[4.704383036473611,51.99972136747344],[4.704596199617981,51.999880180029514],[4.704744739460138,51.99998806659452],[4.70487573947618,52.00008208101893],[4.705079149174139,52.00021696287972],[4.705148084000619,52.00026988173668],[4.705369432667701,52.000415545286664],[4.705557718039819,52.00053488758481],[4.705590164983686,52.000555865718574],[4.705760659645945,52.00066442640789],[4.705857871942728,52.00072819578966],[4.705958462114944,52.00079394411679],[4.706099570157136,52.000889139205874],[4.70621012140242,52.00095971780817],[4.706303254301951,52.00102177338777],[4.706391948492183,52.00107789782407],[4.706527093867487,52.00116884232934],[4.706661313819417,52.001260347595704],[4.706764431122577,52.00133341741748],[4.706916158384793,52.001433445748226],[4.707023415220504,52.00150344724699],[4.70708119286942,52.00154141564284],[4.707183496348972,52.001607739071055],[4.707245316738208,52.00164994631087],[4.707364696814323,52.00173012950049],[4.707454719889034,52.001789074169984],[4.707544461591702,52.001850264249356],[4.707679994942734,52.001945703851625],[4.707723690791467,52.001976013387996],[4.707849164086326,52.00206745778662],[4.708010021824236,52.00218130763381],[4.708164192936808,52.0022934288572],[4.708405517699239,52.00245801457628],[4.708548129929206,52.00255265805678],[4.708705387326714,52.0026563652136],[4.708837035758333,52.00273072119497],[4.70894147256241,52.00279114996685],[4.709159450109663,52.002912904583724],[4.709460312914789,52.00305367918242],[4.709474906643151,52.00305938097375],[4.709483519144192,52.00305997885721],[4.709465803250392,52.00306909896548],[4.709651423174781,52.00320533543036],[4.709865033355291,52.003371583201094],[4.710423579809688,52.00379179563951],[4.710812615726643,52.00408448350901],[4.710927929072452,52.004032500957194],[4.711081762937524,52.003963149242715],[4.711348773878832,52.00417182969369],[4.711640977091185,52.00440698117655],[4.711643901200309,52.00440912821316],[4.711891297394994,52.004591862122155],[4.712079823500001,52.00472460586401],[4.711713054926122,52.00490857974962],[4.712013917494636,52.00513588812203],[4.71202201012762,52.00515459448575],[4.712463238693359,52.00493235138463],[4.712639414981045,52.00484360288309],[4.712817421681551,52.00495553988555],[4.71286304156644,52.00498423159559],[4.712905481125363,52.0049629295012],[4.712964268315241,52.004933424730254],[4.713094812014371,52.00487197262192],[4.71389427608858,52.00522284494852],[4.71401788547241,52.00525653941913],[4.714141843067425,52.00529033462263],[4.714358051379923,52.00534927631314],[4.714413981579852,52.00537619271493],[4.714423344727362,52.00541512110398],[4.714412814926,52.00545393579015],[4.714389032826827,52.00549267472626],[4.714338500607377,52.005547619651665],[4.714251226004076,52.00562078073975],[4.714216651225509,52.00563237585953],[4.714191254377453,52.005640895479104],[4.714141120867887,52.00566925488453],[4.71385383854068,52.00614942653664],[4.713755570489835,52.006292085668235],[4.713748083812975,52.00634932596516],[4.713787210658142,52.006392514411125],[4.71383656074349,52.006417353065615],[4.713922393612143,52.00644034203514],[4.714106127769648,52.006454695668076],[4.714837545270559,52.006526387781484],[4.715325885056846,52.0065629366549],[4.715693278165969,52.006597768907305],[4.715735240377782,52.00660056998128],[4.715994593980342,52.006617904709344],[4.716233152682911,52.00662335450761],[4.716428908686664,52.00661014267249],[4.716606591266387,52.00656763320484],[4.716760057708051,52.006518945334996],[4.716887040965654,52.00645010725234],[4.717017727244718,52.006354693422566],[4.717152100359304,52.0062347441094],[4.717283258511078,52.006108646252976],[4.717381286336593,52.005980310370994],[4.717447827636247,52.00585281094476],[4.717485623600916,52.005763007102466],[4.71750544637505,52.00569177890037],[4.717506647403602,52.005687426356275],[4.717536900307368,52.00565895242237],[4.717566969798344,52.00564275560111],[4.71761996308007,52.005645106422],[4.717676062919603,52.00566179342111],[4.717710722425948,52.005682502104044],[4.71774175872156,52.00570104194059],[4.717801331894757,52.00570751083872],[4.71785118819335,52.00569756555183],[4.71789129564445,52.00567529563559],[4.717891808632384,52.00567410309445],[4.717901608747524,52.005650797950686],[4.717885677419357,52.0056077427788],[4.717870509609563,52.005513547911654],[4.717876993987716,52.005448940162296],[4.718036116241169,52.00544153060026],[4.718046781847821,52.005469518213204],[4.718114393690945,52.00560288603441],[4.718138976169967,52.005662546993264],[4.718159173314961,52.005711576701025],[4.718194739264271,52.005771111318786],[4.718233991937428,52.00580611954049],[4.718273611035564,52.00581657350579],[4.718323390464811,52.00581275767502],[4.718406850007408,52.00577231668064],[4.718580623035631,52.00567714592913],[4.718655800573559,52.00563340391149],[4.718711056071352,52.005601251610535],[4.718837793086697,52.005545622994084],[4.719024359297328,52.00548121065018],[4.719220993446211,52.00540866670937],[4.719367817626355,52.005341987916474],[4.719496529880787,52.00526804244197],[4.719590025202019,52.00522151846069],[4.719726520558028,52.005181368343735],[4.719783610982814,52.005130548040334],[4.71983724340418,52.005089927920935],[4.719907204480728,52.00506577722265],[4.719963548027948,52.00506609662703],[4.720006487202354,52.00507656883133],[4.720022679868094,52.00510120795033],[4.720025604436817,52.00512782121926],[4.720004995479207,52.005176808063446],[4.719747495918874,52.00533083863346],[4.719513544358911,52.00546045488459],[4.719513309477859,52.00546057938995],[4.719419365950211,52.00550879957682],[4.719273071303225,52.00558389458673],[4.718445459104684,52.00596178692875],[4.717906555697917,52.00620525793926],[4.71748286962027,52.00638902494673],[4.717104207472117,52.00655566318112],[4.716951235991399,52.00661899643039],[4.716914099538519,52.00663437086218],[4.716887273876807,52.00665467571508],[4.716880219282311,52.00668328159156],[4.716912937178318,52.00671211395519],[4.716959091317205,52.00672874465395],[4.717041789337023,52.00673944431467],[4.71734335126899,52.00674321017143],[4.71742400315655,52.00674171862955],[4.717681532788444,52.00673694575494],[4.718089419999171,52.00672289717491],[4.718330857994483,52.00671112831245],[4.71842773914894,52.00670641158112],[4.718707778505259,52.006721628723604],[4.719495170446764,52.006647224567445],[4.719714748860024,52.00662647529102],[4.719752684261848,52.00661117641671],[4.719995896784689,52.00658970672822],[4.72006713332711,52.00659744502861],[4.720476182153639,52.00656096870093],[4.720526916186914,52.006530219098224],[4.720790279377511,52.00652775552028],[4.720853454322163,52.00654187441195],[4.721027923179743,52.006581053664135],[4.721256834543055,52.00660357057337],[4.721387671429268,52.00660431071108],[4.721424414691953,52.0066045185397],[4.72152170942219,52.0065728903256],[4.721977842084105,52.00657776103184],[4.722424532422974,52.00659178076717],[4.722867543495435,52.00660347701002],[4.72296513151973,52.006608998324495],[4.723228485337869,52.00662390381516],[4.723758191670201,52.00669125650007],[4.724085133719382,52.00674367649862],[4.724170495639552,52.006759509537964],[4.724519685493572,52.0068242868507],[4.724762378309211,52.00687339029252],[4.725033940001447,52.00692832731325],[4.725689502224173,52.007078838764976],[4.725794831193584,52.007102728573834],[4.726150912286687,52.00720128219053],[4.72657525639799,52.007341591444934],[4.72707886151411,52.007537523443034],[4.72739367678194,52.007656533133755],[4.72771901149933,52.007801154919136],[4.727764288961017,52.007821290908566],[4.728146597900104,52.00799408569714],[4.728231214513585,52.008034126337286],[4.728327576388232,52.00807972456743],[4.728904912989051,52.00835290312347],[4.728977481953384,52.008387240121124],[4.729055417433698,52.00842411484006],[4.729370834567249,52.008573359502954],[4.729428450477479,52.00858057556637],[4.729473402577177,52.00856243649187],[4.729507367285295,52.00853273985631],[4.729504279745914,52.00848903901226],[4.729493918557568,52.00843381036047],[4.729499019640651,52.008411745389964],[4.729501866673777,52.008399366302065],[4.729528239495854,52.00837883135738],[4.729573782217095,52.008373036609434],[4.729617584646083,52.008381622540554],[4.729628559622881,52.00838806560911],[4.729665513369568,52.00840977227224],[4.729757719984207,52.00847666657857],[4.729857494322418,52.00853009351598],[4.729950216408607,52.008555904601295],[4.730057919710101,52.00857718820158],[4.730102231298251,52.008602728902666],[4.730116624919969,52.00863728872502],[4.730101287908352,52.00866708951901],[4.730063879220905,52.00867837684629],[4.729918579376527,52.00868216768014],[4.729895968548347,52.00870043167785],[4.729895496770241,52.00873260749075],[4.72998067600747,52.00876527052818],[4.730084670459527,52.00878424135387],[4.730229917747785,52.008785052077556],[4.730528176783213,52.008763723993454]],[[4.821615771754405,51.972690513173866],[4.821370475015569,51.97259577374249],[4.821006940153403,51.972460116033126],[4.820933620323962,51.972431287995775],[4.820773746906294,51.9723625033819],[4.820664192454265,51.97232538421949],[4.820636083964177,51.97231433697766],[4.820458729534716,51.97224927882007],[4.820354814818002,51.97220814176528],[4.82018691940074,51.972139740149515],[4.819762131218565,51.9719757935368],[4.819714757066913,51.97196456326866],[4.819652748510095,51.97193674175176],[4.819673729215503,51.97192217393063],[4.819733117078498,51.97192246038965],[4.81977315179084,51.971925997157044],[4.81984124552432,51.97193640151813],[4.819926449038193,51.97195984957557],[4.819955231069455,51.9719693901892],[4.820040157198686,51.97200328131864],[4.820294099033909,51.97211824411154],[4.820400547799962,51.97216152367431],[4.820595448674491,51.97224076019715],[4.821066884071695,51.97241637943525],[4.821442331260247,51.972550260615876],[4.821752616081118,51.97267099203531],[4.822162977695728,51.972820175111806],[4.822375777014552,51.97290006986968],[4.822532525773028,51.97295034820732],[4.822686398399583,51.9729932780227],[4.82281091535394,51.97300855341179],[4.822903029971457,51.97300349436801],[4.822959381396853,51.97300926551342],[4.822961500545387,51.97300971610656],[4.822956650963337,51.97301229048864],[4.822889280334429,51.97306224832856],[4.822874177178641,51.9730758651784],[4.822771560541486,51.97306889231835],[4.822626386085793,51.97304251599538],[4.822587824085004,51.9730294056662],[4.822307601705853,51.97292720203736],[4.82226871190533,51.97291240021474],[4.822243844514923,51.972903948586165],[4.822069450588391,51.972840345233976],[4.82185754601555,51.9727726694171],[4.821615771754405,51.972690513173866]]],[[[4.53338460154395,52.07291323552144],[4.533764333555332,52.07274019893121],[4.534003479701211,52.07283336173939],[4.534069471860213,52.07280335066332],[4.534252273444331,52.07272044308897],[4.534555728243896,52.07258417192683],[4.534666856616976,52.07251245700908],[4.534937470313324,52.07238179873944],[4.535118031674882,52.07229839723891],[4.535167652672004,52.0722754849068],[4.535283788414782,52.07222183651529],[4.535350075967511,52.07218157999577],[4.535704620179734,52.07200615291312],[4.535781448156343,52.071964606078865],[4.535839910117653,52.07193006334021],[4.535894301176993,52.07189328898135],[4.535944975970087,52.071854042881235],[4.536027821259407,52.07178828844203],[4.536110734573046,52.07172968027847],[4.536198150012903,52.07167362134979],[4.536300185386483,52.071614998363536],[4.536405709878884,52.07155926781021],[4.53665684857005,52.071428950371576],[4.536787722017593,52.07136249944248],[4.536908514625527,52.071306878644556],[4.537033635438506,52.071255279840464],[4.537147999258335,52.07121095587216],[4.537170299395065,52.07120259568197],[4.537221943933136,52.071183607079924],[4.537273755580429,52.07116503313098],[4.537837988515002,52.070958618781056],[4.537918115107278,52.07092597496308],[4.537992892675323,52.070889274686735],[4.538062586277335,52.07084838504524],[4.538174435957698,52.07077810121578],[4.538282760025249,52.07071834435355],[4.538397289668143,52.070663602728615],[4.538825933390426,52.07046973444882],[4.539140524632029,52.070329199316895],[4.539330712360932,52.07024956395697],[4.539377970057346,52.070231828200065],[4.539447203309897,52.07020664629577],[4.539550100485974,52.070170650722396],[4.539673002144903,52.07013269565939],[4.539802220389212,52.07009082198127],[4.539882072212175,52.070062516297064],[4.539958120968409,52.070030156372425],[4.540028174842512,52.069997034214836],[4.540097356887788,52.06996296195727],[4.54017075946359,52.06992474934782],[4.540243492824158,52.06988566898833],[4.540334952204375,52.06983742011092],[4.540539961622588,52.06973196657675],[4.540643833005109,52.06968060675729],[4.540749167678468,52.06963052473542],[4.540966731571765,52.06952900772956],[4.541172994916187,52.06943344943601],[4.541387375455588,52.06933434467819],[4.541552179462707,52.06926073456576],[4.54163436563455,52.06922453459703],[4.541717729495592,52.06918929580152],[4.541782171650586,52.06916279280086],[4.541847701167312,52.06913740315],[4.541961131648242,52.0690940745579],[4.542056511716994,52.06905813973266],[4.542149150041328,52.06901986613799],[4.542244771687299,52.068978845415586],[4.542338301523831,52.068935823162086],[4.542562838329476,52.06883232183869],[4.542648120122356,52.06879352771397],[4.542727204295449,52.068756990155734],[4.542782827906223,52.0687316817897],[4.54300955757307,52.06862702683637],[4.543242587370205,52.068520025645405],[4.543469802747049,52.06841579575122],[4.54370643060532,52.06830736328401],[4.543875315199133,52.068228098444294],[4.544039769259477,52.06815017689385],[4.544244105067295,52.068053278165614],[4.544462240528643,52.06795000609288],[4.544678738329247,52.067846901677825],[4.544899112042894,52.067742386422225],[4.545124337855375,52.06763728523326],[4.545347487221343,52.06753396647514],[4.54557199229615,52.06743140302614],[4.545798580372874,52.06732737093041],[4.546024326898671,52.06722382676003],[4.54644028419873,52.067034073989454],[4.546701453251083,52.066909568510276],[4.546842445844511,52.06684406855432],[4.547361428516973,52.06660023566145],[4.547675561894049,52.06645322092955],[4.547766404669535,52.06640826969647],[4.547847867386393,52.06636110332016],[4.547926939000531,52.06630533585945],[4.548073081144707,52.066183567312116],[4.548154261336867,52.06612498334876],[4.548235682123298,52.06607378058228],[4.548325794606153,52.06602725972627],[4.548571538097575,52.065911260246295],[4.548907454456833,52.06575317070896],[4.550324042085669,52.065081160583865],[4.550796883450914,52.06485618428528],[4.550945899339439,52.06478599050558],[4.551389201566571,52.064575120806396],[4.552273463438356,52.06415632603832],[4.552691042969808,52.063960288917215],[4.552736028422841,52.06393706675456],[4.552773033368665,52.063910111763285],[4.5528020098788,52.063879648323336],[4.552822064641843,52.0638466588458],[4.552831126454107,52.06381507460642],[4.552830659678329,52.06378300941061],[4.552820673390993,52.06375154193959],[4.552801299853839,52.063721401194],[4.552763919058637,52.063680139994794],[4.55253692627254,52.06343944751218],[4.552513802969315,52.06341098795938],[4.552498121380243,52.06337995649431],[4.552490788380866,52.06334777073613],[4.552491986971844,52.063315564531244],[4.552498483929738,52.063287800220294],[4.552515594221104,52.06326099197785],[4.552542256072794,52.06323733445328],[4.552575484500823,52.0632189277728],[4.552625098569616,52.06319379693473],[4.553062971191561,52.06298581277872],[4.553487035591773,52.062786115535694],[4.553920303522085,52.06258455834484],[4.554326585853852,52.062397280235004],[4.554546167800983,52.062297379541505],[4.554622144878073,52.06226209745567],[4.554655111754971,52.06224669049574],[4.555462422294653,52.06186837852132],[4.555863505312443,52.06167925176018],[4.556111197862318,52.06156431107996],[4.556550144608527,52.061359566482615],[4.556792026299962,52.06124952706965],[4.556885448337193,52.06120910824858],[4.557496902335084,52.06095854821663],[4.557617170701359,52.06090861933637],[4.557973705564114,52.0606846290174],[4.558054204204691,52.060668674817336],[4.558201112058439,52.0606699783875],[4.55823874309598,52.06067030611907],[4.558295587604292,52.06067804969815],[4.558433128075536,52.06075446665886],[4.558481635501309,52.06078483840071],[4.558615983139783,52.06087858043573],[4.558746106095488,52.06096818487091],[4.558755330081371,52.06097563826363],[4.558805739493678,52.06100254470538],[4.558837031684468,52.061010521801784],[4.558898437404443,52.06101924993841],[4.558967428763476,52.061019950738434],[4.559020600345619,52.061018167325585],[4.559045119522583,52.061019418315254],[4.559067834373649,52.06102282283765],[4.559091689236253,52.06102766453658],[4.559117240399507,52.06103540345434],[4.559146782063045,52.061044995076394],[4.559199771870128,52.06105934461278],[4.559251781317162,52.061065993102645],[4.559345772913017,52.06106874797694],[4.559403633318842,52.06106496594675],[4.559449091954956,52.06105760023096],[4.559499332846846,52.06104160321167],[4.559541735160406,52.06102523650237],[4.559688754768304,52.060960617542456],[4.559785376164819,52.06091734259815],[4.559876960302274,52.06087045478692],[4.560110026180913,52.06073106224924],[4.560319049313748,52.060607185378274],[4.560394463099694,52.06057199451534],[4.560626638408485,52.0604632813567],[4.561083736771388,52.06025146555612],[4.561544924894569,52.06003904746758],[4.562021484967854,52.059825467892736],[4.562450673573557,52.05962795871413],[4.562693028048301,52.05952182056451],[4.562999521285458,52.059376419627434],[4.563481367525267,52.05915215691992],[4.563956006923849,52.05893098785634],[4.564483164461417,52.05869001357115],[4.564892664836892,52.0585049688821],[4.564980217921433,52.058472160894176],[4.56511157283488,52.05844974359736],[4.565205659124639,52.05845102936152],[4.565232824691346,52.058476440566665],[4.565279606108693,52.058546131009805],[4.565327589830032,52.05866311816063],[4.565356772424837,52.05874466741237],[4.56542800966763,52.05893180995689],[4.565454952679762,52.05896857199089],[4.56549729478845,52.05900291567524],[4.56553977284438,52.05902906280839],[4.56560675726295,52.059057906608395],[4.565709631188094,52.05908258731777],[4.565925839987933,52.05911814320176],[4.566354277177317,52.059182925121384],[4.566787839305533,52.059248999553816],[4.567304012425696,52.059327638006415],[4.567559036406744,52.05936661598106],[4.567753108858218,52.059382464556236],[4.567921587843885,52.0594000313819],[4.568384738242751,52.059469451652525],[4.568948802962847,52.05955850979307],[4.569486391130717,52.05964106254531],[4.570004583440033,52.05972221989864],[4.57058602619689,52.05981263112328],[4.571034855443455,52.05988258881942],[4.571448610350691,52.05994405949972],[4.571836493741366,52.06000494517226],[4.572221877252372,52.0600654347516],[4.572594779851126,52.06012429973185],[4.572963957375659,52.06018197826743],[4.573342546339638,52.06023777915463],[4.573721748836925,52.06029437404106],[4.574092140651664,52.06035359443675],[4.574470091336396,52.06041016927458],[4.574833708574882,52.06046433401791],[4.57518543643843,52.06051881117292],[4.575428693923899,52.060559254918545],[4.575968203708175,52.06063443864074],[4.576527749515681,52.06071294866571],[4.576807409969136,52.060759662322106],[4.576833506405436,52.060764021474434],[4.577165956512985,52.06081955554069],[4.577447217456624,52.06086653934116],[4.578371772530451,52.061007681758696],[4.579384922245133,52.06114719530467],[4.579840989345265,52.06121270166871],[4.580208695168986,52.061266464300736],[4.58101437228016,52.06138671824375],[4.581906674716223,52.061514246248684],[4.582869056801115,52.06166340477591],[4.583276426735311,52.06172410701498],[4.583615326884197,52.06177209853958],[4.583728734797401,52.061797374583975],[4.584054294871192,52.06188425675095],[4.584356211746942,52.06197877885664],[4.584545414706354,52.06201014346481],[4.584698765808812,52.06202566859281],[4.585173539775428,52.062055633474586],[4.585431784635442,52.062066307873614],[4.585659122586078,52.06208790810536],[4.585884593014141,52.062112829907484],[4.586144148093732,52.062151357856315],[4.586710234603968,52.062229836822596],[4.587303230189936,52.06231964144177],[4.588069321939458,52.062431785157244],[4.588954115620829,52.06257702371225],[4.589788536288424,52.06270967238037],[4.59006989963828,52.062741651856335],[4.590372776626245,52.06278491285159],[4.590615895008283,52.06282723868904],[4.590858166160969,52.06286803026051],[4.591779059939119,52.06298349710209],[4.592043688875371,52.063021003596205],[4.592531562882153,52.063103312900644],[4.593241896227105,52.0632132130638],[4.593834456921326,52.06330103124203],[4.594457155039436,52.06338767399751],[4.595121882019855,52.063491754955386],[4.595772195541826,52.06359300283462],[4.596396838744792,52.063695450026856],[4.597072693457436,52.0638016529738],[4.597716344701626,52.06390078703867],[4.59835668654958,52.063999194314434],[4.598687832908742,52.06405706753504],[4.599007781786781,52.06411898160629],[4.59923438040152,52.064164468814155],[4.599658002110336,52.06422569924437],[4.600014873902883,52.064279606006465],[4.600242838640875,52.06431136607393],[4.60098119439346,52.064413847278644],[4.601632582691868,52.06451850341433],[4.602303024375441,52.06461709883621],[4.60295787850303,52.064714894556246],[4.60361162466023,52.06481199613109],[4.604265400204482,52.06490841113803],[4.60491238696223,52.065009577241305],[4.605548322446934,52.06510654975653],[4.60619881271199,52.06519948962592],[4.606840405416709,52.06529099172589],[4.607327229252596,52.06535783535448],[4.607497642048704,52.065381227612676],[4.607665626130075,52.065400891335884],[4.607756179458653,52.065385688824875],[4.607824989623598,52.065339422242616],[4.607855972387892,52.06528878869747],[4.607884199360966,52.06520378317313],[4.607921188916142,52.064999972732224],[4.60796391996347,52.064722692946056],[4.608005745672321,52.06443372219964],[4.608052149697043,52.0641372314329],[4.608101892294711,52.06384076271568],[4.608124479884081,52.06369594682028],[4.608141684683416,52.06360399218698],[4.608161694059392,52.0634790955515],[4.608187943466727,52.063315742759634],[4.608197346752824,52.06322374551456],[4.608189201443185,52.06311444636425],[4.608176554164004,52.0630099352363],[4.608147180717545,52.062840048557234],[4.608112871528331,52.06263369914383],[4.608068881411454,52.06234347762232],[4.608016733664313,52.0620092307412],[4.60798074883156,52.06170738613659],[4.607939039204394,52.061414429142744],[4.607905190598763,52.06111809054162],[4.607866847442074,52.060824472640014],[4.607828379998738,52.060536345816644],[4.607793469846039,52.06023656653442],[4.607756365192665,52.05993471435591],[4.607716089771234,52.059623214562244],[4.607681023553408,52.05939695052151],[4.607652633582521,52.059235303513],[4.60764111795831,52.05912874139239],[4.607613769228395,52.05890732820305],[4.607583186963618,52.058679026438504],[4.607551939631254,52.05842530097509],[4.607533569595639,52.05826441233349],[4.607506257596564,52.058040949965694],[4.607465114880559,52.057802870730654],[4.607416664501512,52.05755323790458],[4.607358919275439,52.05728560260376],[4.60731541695916,52.057094328403174],[4.607187885744262,52.056738962257675],[4.607068851911349,52.05647091193024],[4.606970832728774,52.056211935161826],[4.606850011376037,52.05591777032673],[4.606740093024809,52.05563810402385],[4.606627041200753,52.055346731870266],[4.606510714680327,52.05505259641212],[4.606393866737296,52.05478593501137],[4.606277396758625,52.054499357607746],[4.606154533871216,52.054194868667096],[4.606042839702639,52.05389045364447],[4.605940754704517,52.05360946317936],[4.605786257359736,52.052947509475146],[4.605688263244719,52.05256434731274],[4.605574108450416,52.052086456486926],[4.605498690510754,52.05172897108294],[4.605334277256758,52.050941813633045],[4.605279471180615,52.050573022541414],[4.605269912530697,52.050482571303355],[4.605299373542805,52.05039008704376],[4.605451481034371,52.05026537533952],[4.605984632331737,52.04998126456273],[4.606888784341793,52.049504290976955],[4.607773857054716,52.04903770072522],[4.60801152082596,52.04895950978742],[4.608491222039507,52.04890775390058],[4.608809165971887,52.04887324560986],[4.609208997770938,52.04882440151722],[4.609757590193482,52.048813148007454],[4.609882130597609,52.04878225877288],[4.609986538886065,52.04875635997367],[4.609986397798878,52.04875608938946],[4.609956114803849,52.04866979826687],[4.609937278155415,52.04862368909684],[4.609935210068035,52.048616853222235],[4.609936031710256,52.0486073129198],[4.609942574791277,52.04859402624018],[4.609946931613023,52.048585749671595],[4.609960158124637,52.0485796439178],[4.609976854134239,52.04857858559597],[4.609991855131987,52.0485827923019],[4.61000167149227,52.04858837597976],[4.61000886449956,52.04859559621963],[4.610028146734061,52.04863115588836],[4.61003244520982,52.04863967832824],[4.610042566309761,52.04865122334984],[4.610080661718494,52.04869141933976],[4.610093095846334,52.04870493010974],[4.610121378969596,52.04872419018565],[4.610195211127256,52.048758222138765],[4.610213428892441,52.04876524544193],[4.610224668633705,52.04876861834564],[4.610227482174484,52.04876946384232],[4.61024654705383,52.0487738770922],[4.610262656297123,52.048776392258354],[4.610284852083342,52.04877764424662],[4.610314346234631,52.048776688272014],[4.610350351601693,52.04877351913733],[4.610380632903947,52.048769206661035],[4.610615799996753,52.04873879455144],[4.610641027958928,52.04873585088636],[4.611072220288165,52.04868667692495],[4.611769051454869,52.04860509448177],[4.612014608473141,52.04857062229533],[4.612164128575503,52.048554357457505],[4.61232708429184,52.04854009535993],[4.612675734600622,52.048514272737656],[4.613048298132846,52.04848477718849],[4.613337838881736,52.048461116797704],[4.613772642268009,52.0484169273036],[4.614091238201515,52.04838473707016],[4.614521089496206,52.048339352805044],[4.614696457696767,52.04832209481832],[4.61513206975685,52.048279038162995],[4.61576038034752,52.048216272164176],[4.61633114652655,52.04816211464682],[4.61694731964009,52.04810557277112],[4.617652409945325,52.04803592827249],[4.61827975447244,52.04797212685524],[4.618990554352204,52.04789488045549],[4.619683750209899,52.04781711956933],[4.620285630021193,52.047748521492856],[4.620930310494772,52.047669619427545],[4.621021883811391,52.047659743635904],[4.621252022242901,52.04763958735889],[4.621568290118777,52.04760392822067],[4.623376140859636,52.047447456783864],[4.623445680404814,52.04744131921886],[4.623895110204581,52.047401645538216],[4.624562330856101,52.04734672500333],[4.625056424473133,52.04730881918358],[4.625681807028401,52.04724941499481],[4.626078480994928,52.04721027275334],[4.62641097462681,52.047181887244875],[4.626671240447467,52.04715486807105],[4.627223282501865,52.04709430798354],[4.627420529547758,52.047074889199436],[4.627896803638248,52.04702064140938],[4.628659352294806,52.046945926476475],[4.629116160123036,52.046894379749496],[4.629178023903032,52.04688602319041],[4.629729945289355,52.04681150955405],[4.63050997661612,52.04670855459416],[4.630710765145749,52.04668554870581],[4.630890412186752,52.04666534593434],[4.631112546315236,52.04664554148253],[4.631285730166313,52.04662390341269],[4.631496899988723,52.04660591543632],[4.631633725102357,52.04659906321968],[4.631801262125475,52.04659067305913],[4.631959232733941,52.04657556988388],[4.632367776790578,52.04653550287957],[4.632573133177535,52.04651555219623],[4.632978625792277,52.04647223668208],[4.633103643285908,52.04645234584083],[4.633457133472056,52.046417001021254],[4.633742561196494,52.04638766445059],[4.633979302833251,52.046371120961524],[4.634311507797288,52.046341012533546],[4.634590037687878,52.04631437128775],[4.634718963207646,52.04630040910174],[4.63487075639718,52.04627803587028],[4.634949207916716,52.046265314996965],[4.63509582685151,52.04625069240145],[4.635386302780629,52.046226174920285],[4.635386536449153,52.046226149446575],[4.635386682359945,52.046226141389546],[4.635644111563441,52.04620070223728],[4.635876801326717,52.04617706418589],[4.636117881119882,52.04615206799776],[4.636344461960173,52.04612932486282],[4.636576015007042,52.04610475237868],[4.636799925303841,52.04608128126416],[4.637034145554572,52.04605670689782],[4.637264936142572,52.04603235291619],[4.637491145879689,52.0460081940348],[4.63771822597794,52.04597817980869],[4.637948332588447,52.04594935289377],[4.638181133504782,52.04591891576113],[4.638410537781229,52.04588584993344],[4.63863263350822,52.04585743815218],[4.638853883535539,52.0458264049498],[4.639073437835859,52.04579825483251],[4.639479888185173,52.0457404517124],[4.639555844329651,52.04573124438525],[4.640172615845277,52.04564721530438],[4.641017456468709,52.04553201818159],[4.641289227638977,52.045495763618455],[4.641411602392358,52.04546260730655],[4.641422994870038,52.04545952451083],[4.641669400276389,52.0454224253325],[4.641919415056242,52.04538477322118],[4.642321171080838,52.045316027668235],[4.642617748824748,52.04526057487367],[4.642910423589231,52.045204853982945],[4.643300822842276,52.04513072117603],[4.643716011601604,52.045048105702335],[4.6438522469183,52.04501929487016],[4.643997037794453,52.04499054685763],[4.644500338136077,52.04489677269882],[4.644833012695592,52.04483371305725],[4.645189850190858,52.04476391059808],[4.645699835677863,52.044669292583954],[4.646361419046849,52.04454387897439],[4.647058858044876,52.04441316810946],[4.647386229911683,52.044353879044536],[4.647648647438302,52.04430245954954],[4.647719998202729,52.04429117768354],[4.647822089647245,52.04428089772115],[4.64790856793253,52.04427687447382],[4.648007572355803,52.04427522182659],[4.648074809992154,52.0442729113322],[4.648176255457801,52.04425760248653],[4.648226640435539,52.044247447133024],[4.64829567272285,52.04422647883983],[4.648369271239371,52.04419733273051],[4.648429366392506,52.04418086541968],[4.648499111729497,52.04416172612839],[4.648562834459726,52.04414891282104],[4.648635396432292,52.044137521148954],[4.649017482602816,52.044077528007264],[4.65003176383314,52.04391925811461],[4.651134803891078,52.04363454599733],[4.651566036458584,52.04355138301814],[4.652275245170244,52.04341661616938],[4.653206899942695,52.043234873962724],[4.653651595862779,52.04315512197977],[4.653758085750082,52.04313592081412],[4.65450981261772,52.043000425595196],[4.655323546024952,52.04283709632211],[4.656098054208019,52.042675198786455],[4.656481682047774,52.04259615363034],[4.656926764523044,52.04250445511597],[4.657798794271362,52.042329812301986],[4.658326397307968,52.042221379799436],[4.658510080054069,52.04214833511904],[4.658711297669024,52.042077061473876],[4.659036480629596,52.042015901951515],[4.659053630799212,52.04201268227648],[4.659056511217435,52.042012133815525],[4.659080577126221,52.04200760863309],[4.659081191162357,52.042007495580066],[4.659056669665114,52.04199790614775],[4.659088381923272,52.04200630862465],[4.659082959934429,52.04199732265088],[4.659061958471236,52.041961293113246],[4.659046084166651,52.04193086808369],[4.659028916479571,52.041894826289194],[4.659013570863113,52.04186057546232],[4.659001894702308,52.04183014042964],[4.658988338681258,52.04179071435357],[4.658978818187046,52.0417558973162],[4.658968834124553,52.04170387360052],[4.658962019844588,52.04166308701583],[4.658955892867724,52.04161678579847],[4.658937059508315,52.04151915411057],[4.658898126848648,52.04135783210682],[4.658692946322454,52.04057975787624],[4.658675116748451,52.04050918744666],[4.658661073000918,52.04045319266727],[4.65864337056341,52.04036943702153],[4.658631779784547,52.040312288918784],[4.65862873905664,52.04029223494348],[4.658615186561295,52.04023382531323],[4.658585801972811,52.04011199438697],[4.658578876768876,52.0400825414658],[4.658473469497626,52.03962551174938],[4.658459702033228,52.039511363630844],[4.658454326191387,52.03946642426668],[4.658454287588178,52.03946610943347],[4.65842452853614,52.03921686540938],[4.658435272841923,52.039202388649144],[4.658448303850361,52.039126202620864],[4.65846059447906,52.03904983224067],[4.658461104708507,52.03904713887468],[4.658471659006053,52.03899148502422],[4.658479371259481,52.03894119764452],[4.658486685956436,52.03889832324325],[4.658494210434824,52.03882463786561],[4.658496405910533,52.038764051581445],[4.658496571306643,52.03871626122143],[4.658492470930911,52.03866459742541],[4.658486699796433,52.03856602175855],[4.658482981521333,52.03852043649159],[4.658480210485394,52.03847306839161],[4.658476334358239,52.038420165579716],[4.658473823705223,52.03837650231579],[4.658472729584131,52.03836223093567],[4.658455669522073,52.03813157259656],[4.658454220442609,52.0381113486902],[4.658450638518818,52.03809948878563],[4.658437285832749,52.03809066043077],[4.65842995986222,52.038026743436774],[4.658409674838035,52.03784919562803],[4.65840033115263,52.03778478076844],[4.658390755769545,52.037725649660224],[4.65838247363704,52.037664072717554],[4.658371625612265,52.037602542812465],[4.658365016146177,52.03756804931953],[4.658328980953068,52.037401864231],[4.658309220252666,52.037325583097605],[4.658252552729632,52.03709820298921],[4.658218422561016,52.0369708326273],[4.658191979866774,52.03685022418718],[4.658174514407126,52.03675562985448],[4.658154894879649,52.03665817285471],[4.658141447161886,52.03657552202471],[4.658129902171551,52.03649685585122],[4.6581186591693,52.036399639456775],[4.658112468800465,52.036329572389924],[4.658109126107157,52.0362412495047],[4.658109108075833,52.0361572975951],[4.658110283037042,52.03608153252855],[4.658123280570077,52.03586590900403],[4.658127546060657,52.03580889492652],[4.658136237541557,52.03572619239253],[4.658144638788621,52.03567027353956],[4.658164374821688,52.03556086288737],[4.658177518210611,52.0355001196442],[4.658191165897671,52.035439730069264],[4.658208751142291,52.035372911185036],[4.65824142463092,52.03526105486006],[4.658257012845395,52.03520678941151],[4.658277604262483,52.03513882062984],[4.658298922506027,52.035065589130944],[4.658330602793042,52.03496010840614],[4.658361647354655,52.034853383335545],[4.658389494988609,52.03476040872458],[4.658467531070475,52.03450281623685],[4.658537649158042,52.03426784348519],[4.658558398297234,52.034199084643674],[4.658665460147037,52.03384488432626],[4.658736852152336,52.03361120466682],[4.658743178695081,52.03359048954622],[4.658794557684754,52.033426004723715],[4.658826851694911,52.03331490089561],[4.658859247089038,52.03320741102885],[4.658896602576549,52.03309959229302],[4.658928421098688,52.033010534084255],[4.658967633816259,52.03289692029174],[4.659062460562206,52.03264683766064],[4.659123679862573,52.03249544673634],[4.659180502338669,52.03235991113233],[4.659226408540133,52.03225491358259],[4.65927794327044,52.03213982984791],[4.659384170705765,52.03191436479406],[4.659434657304866,52.03180633940807],[4.659479966057956,52.031711135441206],[4.659587784838611,52.03147998137395],[4.6596124568336,52.031431506469765],[4.659652042972304,52.031353030478655],[4.659695405390251,52.0312690409378],[4.659729983198729,52.03120461883188],[4.659772793415906,52.031130387275226],[4.659833268140393,52.031034449922906],[4.659892535503472,52.03094644185745],[4.659963134870003,52.03084977599273],[4.66003391095406,52.0307538751927],[4.660110779287984,52.030658793961265],[4.66018210255879,52.0305758307887],[4.660261170696576,52.0304861381171],[4.660348539164746,52.030393197878595],[4.660435221535905,52.03030300379773],[4.660520274178474,52.03022072738323],[4.660605506034285,52.03013636669974],[4.660719846199979,52.0300218676026],[4.660857673845157,52.02988324454293],[4.66108304085386,52.02965708363672],[4.661353808955539,52.02938344669482],[4.661495219300295,52.02924110579388],[4.661509138485822,52.0292274303059],[4.661565882652954,52.02916799801741],[4.661633175801241,52.02909692778008],[4.661671039636193,52.02905247065872],[4.661715919608291,52.02899767512692],[4.661752410187636,52.02894712435672],[4.661787857271622,52.02889531775589],[4.661818238358514,52.02884679666315],[4.661848938055462,52.02879929321692],[4.661859068675912,52.02878469550703],[4.661900547667065,52.028721223103766],[4.661907332555843,52.02871076642011],[4.661951348618405,52.02863818637802],[4.66199999148592,52.0285597294223],[4.662044056434795,52.028490412443574],[4.662094804175521,52.02840973029424],[4.662136466655407,52.02834118047854],[4.662155946468461,52.02830982297494],[4.662166056874537,52.028293760001134],[4.662217445061242,52.02821129304598],[4.662259246128473,52.028155768263915],[4.662284478552898,52.02812099460218],[4.662307839120235,52.028091135066745],[4.662336582236218,52.028059124475845],[4.662378536291848,52.02802114599412],[4.662421998246515,52.02798633171569],[4.662473370188333,52.027949858307174],[4.662539524395942,52.027908460314116],[4.662591130522346,52.02788182163022],[4.662605369151327,52.02787447582843],[4.662675895379601,52.02784203915614],[4.662757232567432,52.02780786228492],[4.662843067510101,52.02777938472219],[4.662949388104435,52.02775372064399],[4.663051471207663,52.02772877644834],[4.663166959846212,52.02770203601736],[4.66328061659012,52.02767503253497],[4.663379030204418,52.02765081153483],[4.663493039791798,52.02761998993789],[4.663692276389795,52.027554052860786],[4.663779604954022,52.02752054129174],[4.663860412810906,52.02749018048993],[4.663972676088147,52.027441119183],[4.664053244821314,52.02740388962648],[4.664136034540848,52.02736175698724],[4.664214315486435,52.027318194411414],[4.66430687143071,52.02726138060769],[4.664373905901702,52.02721673318667],[4.664457393036876,52.027158425444924],[4.664503446045292,52.02712452515061],[4.664561840347322,52.02707981560268],[4.664587039746113,52.0270604923468],[4.664666798663013,52.0269956989015],[4.664757526586665,52.02691843385673],[4.664916530052702,52.02677277222892],[4.664963991183034,52.02672740217854],[4.66499960677385,52.0266901119521],[4.66502863680445,52.026659109172364],[4.665048991995467,52.02663112722131],[4.665100279423126,52.02656259944287],[4.665129794528452,52.0265014883985],[4.665162447266795,52.02641294594558],[4.665200800812589,52.02633502680205],[4.665245162714207,52.02626311279926],[4.665295358262275,52.02619267269458],[4.66533293202753,52.02614956088698],[4.665393354656543,52.0260891605901],[4.665454216573224,52.026037661493596],[4.665538057935337,52.02597522947583],[4.665601964822551,52.02593187450054],[4.665666298633108,52.025892764642535],[4.665691158364343,52.02587817596894],[4.665955788592273,52.02573011308816],[4.66598187211298,52.02571552286165],[4.666283287555308,52.02554688535855],[4.666287713128812,52.02554803600848],[4.666436078737079,52.02558661480976],[4.666446107763185,52.0255754766283],[4.666451477170991,52.02557683079493],[4.666788234162328,52.02520093757525],[4.666805832773787,52.025206546167496],[4.666811106580319,52.0252002505854],[4.666814623331942,52.02519720705018],[4.666818982522604,52.02519342263008],[4.66691150094713,52.02512395985303],[4.667071663146644,52.02498695827173],[4.667152297462963,52.02491347670271],[4.6671711488272,52.02489643308849],[4.667215105523851,52.024856703411245],[4.667233173123964,52.024840374068276],[4.667290354096343,52.024777418246764],[4.667357165973317,52.02470267453832],[4.667404355323065,52.02464490681309],[4.667468844705172,52.02455961441134],[4.667519443617706,52.024502730370834],[4.667544234936087,52.02447235721987],[4.667567966307868,52.02447985479953],[4.667688684465104,52.0243227468779],[4.667644492378855,52.02430642348643],[4.667656990801961,52.02429027576515],[4.667696128790134,52.024248413169296],[4.667689448596474,52.024246125240744],[4.667706950863654,52.024216884994935],[4.667729426634767,52.02418097876296],[4.667794835788333,52.02408732358059],[4.667894012318295,52.02396501283517],[4.667981342244332,52.0238699634363],[4.668079358642311,52.02377630054214],[4.668189387199142,52.023680400898954],[4.668277731997639,52.02361374292029],[4.668373561921281,52.02354186335869],[4.668470146902593,52.02348102611295],[4.668566769365853,52.023416018388765],[4.66866596334108,52.02335599687759],[4.668804293936953,52.02328496058201],[4.669013659928437,52.02317894306609],[4.669199107470657,52.023086163082745],[4.669331538661013,52.023017660884214],[4.669590446830058,52.02288573416527],[4.669801521881222,52.02277738868423],[4.669942031020124,52.02270382959969],[4.670021094828861,52.02266692838146],[4.670057232729634,52.02264478530859],[4.670061028920831,52.022642462452914],[4.670179768392198,52.02259813566333],[4.670353700990141,52.02255362348598],[4.670623828855808,52.02250418665975],[4.673243792210918,52.022131327144024],[4.673406700579522,52.022108145051625],[4.674477882263312,52.02195567418397],[4.674559794412938,52.021940898691206],[4.67463796180773,52.02192247814425],[4.674713452069995,52.021898324709376],[4.674784306032619,52.02186978378841],[4.674844019544198,52.02184182258673],[4.674910780011428,52.02180315383805],[4.674968438141342,52.021762416581986],[4.675016704016688,52.02171951919383],[4.675054214820775,52.02167954088775],[4.675089255409407,52.02163455905555],[4.675121893044111,52.02157759010361],[4.675140743224949,52.02152916664045],[4.675154232174703,52.02147521882521],[4.675166922567677,52.02133673907099],[4.675163117206512,52.02126355930046],[4.675160628531896,52.02109009469099],[4.675138048121888,52.020955185738984],[4.675105143550769,52.02085203334738],[4.675057980090521,52.020769701765055],[4.675000422790239,52.0207079267268],[4.674846494792468,52.02057623191361],[4.674718478988905,52.020472476921135],[4.674683681916503,52.02041879421099],[4.674574771063259,52.02032211171676],[4.674461896448532,52.02021361231163],[4.674349036105601,52.020086848404965],[4.67428993721737,52.02000853396081],[4.674242150356907,52.019923411845014],[4.674219353658724,52.019868237674444],[4.674210913383478,52.01984473576314],[4.674193387691018,52.019793413587905],[4.674177769892983,52.01974488038736],[4.674152431762554,52.01964891931949],[4.674142568053115,52.019586695639425],[4.674147786601098,52.01952608234996],[4.674169743819321,52.019456366291415],[4.674207035697199,52.019393448462424],[4.674267422199283,52.01933490402377],[4.674292922967112,52.01931532885304],[4.674322184704078,52.0192928642007],[4.674362186377995,52.01926197949763],[4.674463207188309,52.01920968525302],[4.67451859135084,52.01918807979072],[4.674571844041514,52.01916858266875],[4.674669780589,52.019144394357696],[4.674759046838256,52.019133150758975],[4.674876197639987,52.01912739695753],[4.674964834686497,52.01917498761828],[4.675066855134599,52.01922750392623],[4.675203673228751,52.019302485930524],[4.675331309438812,52.01939422959419],[4.675415556882633,52.01946417454053],[4.675429826105239,52.01948762172056],[4.675435280972011,52.01951750525161],[4.675411841666929,52.01954765452792],[4.675329130386493,52.01961303058818],[4.675246820387557,52.01969531624072],[4.675199913507063,52.01977570366777],[4.675178150296579,52.01986722699579],[4.675185827109726,52.019938812279044],[4.675227649082054,52.02007120399894],[4.675271999573809,52.02018751272629],[4.675331283303919,52.02030659027829],[4.675422741369583,52.020440917924105],[4.675575869783596,52.020649646907394],[4.675728490238658,52.02085283574206],[4.67575822138384,52.02090360223777],[4.675793737073806,52.02099288310739],[4.675796190850861,52.02104388924429],[4.675791603234631,52.0210979268731],[4.675782282100431,52.021221614133545],[4.675770801842543,52.021269309228245],[4.675778033753454,52.02136623910943],[4.675791370558407,52.02141726606263],[4.675816743389473,52.0214645186954],[4.675857509825862,52.02151033629848],[4.675906049603111,52.02155107745028],[4.675964480785758,52.02158547858089],[4.676033723994997,52.021612448649456],[4.676111009994478,52.02163205180734],[4.676190755467159,52.02164448801997],[4.676272205829981,52.021649563969305],[4.676354916937007,52.02164496694656],[4.676692456246777,52.02159485360462],[4.677711604938281,52.021438470972846],[4.677775486430638,52.02142593056981],[4.677800155317819,52.02142482982234],[4.67788149205166,52.02141129794862],[4.677964895772435,52.021396960524356],[4.678047671329835,52.02138088449289],[4.678130489901106,52.02136392779749],[4.678212318069829,52.021346947103034],[4.678294118189377,52.02132805165001],[4.678377356273996,52.02131035126889],[4.678457948678063,52.021291349558794],[4.678538200408325,52.021270853665825],[4.678618671081342,52.021249406263756],[4.67869703259019,52.021227739380834],[4.678776114882454,52.02120471054351],[4.678855834881138,52.021180966416644],[4.678934054581029,52.02115719523374],[4.679010423643617,52.02113343983254],[4.679086770853166,52.02110737422725],[4.679163419640258,52.02108158003883],[4.679239768092657,52.02105542445813],[4.679314534288795,52.02102797397104],[4.679388501768401,52.020999431036344],[4.67953509199346,52.02094168079105],[4.679607052847594,52.02091194817588],[4.67974850993525,52.02084892656823],[4.679888348592441,52.02078318955489],[4.679955581210574,52.02075022844527],[4.6800235898358,52.02071609447602],[4.680090345668831,52.020681943955054],[4.680156165696717,52.020647077691535],[4.680220640886484,52.02061156513815],[4.680346177139012,52.020537139783386],[4.680407741515074,52.02049956928136],[4.680462500973851,52.020465759999006],[4.68053087115201,52.02042250466532],[4.680544399047192,52.02041369631825],[4.68060765574799,52.02037226186207],[4.680649370560872,52.02034431554713],[4.680707090473508,52.02030382754733],[4.680763451406036,52.02026266622222],[4.680819189934519,52.02022124047183],[4.68087347754609,52.02017942847706],[4.680926885780166,52.0201370179465],[4.680979628419748,52.02009061254194],[4.680980505733761,52.02009041107092],[4.681026386685451,52.020048602508794],[4.681069360305254,52.020004529387094],[4.681111666176444,52.01995844782786],[4.681147452389246,52.019910053084914],[4.681204278639958,52.019809705610555],[4.681331939259554,52.0195076692582],[4.681360900525862,52.0194402410026],[4.681393014659021,52.01927529831588],[4.681395123533489,52.019264425984254],[4.681458813303532,52.01893723387132],[4.681234641098191,52.018888538854526],[4.681257623236172,52.018827025098695],[4.681092882597937,52.01880201110886],[4.680897856645758,52.0187731389362],[4.680713703862462,52.01874396316336],[4.680361813217684,52.01868589806147],[4.680073191392035,52.01863726327456],[4.679780556376489,52.01858171853221],[4.679570774902992,52.01853989305745],[4.679412808461721,52.018506710995474],[4.679217422566556,52.01846388383368],[4.679075302779527,52.01843097637975],[4.678875569494613,52.0183839608591],[4.678725014533158,52.01834648105251],[4.678465147039635,52.018279903668635],[4.678330998407459,52.018243241194305],[4.678118552578054,52.018184921295834],[4.677973012163685,52.01814180801713],[4.677961143715842,52.017962920836176],[4.678008976648121,52.01791840170163],[4.678035460854991,52.01789084094245],[4.678144931637429,52.01777175654568],[4.67817656180927,52.017736604565286],[4.678207711226258,52.01770144968118],[4.678239377321898,52.01766678327513],[4.678272736736911,52.017632819165975],[4.678316751788103,52.0175901644854],[4.6783914561369,52.017517475486656],[4.678438146763742,52.017476041318574],[4.678491176245903,52.01743817774192],[4.678550325226495,52.017403937358274],[4.678615078613129,52.01737364962987],[4.678683278549623,52.017347427398846],[4.678754803325019,52.017324676690855],[4.678829096433318,52.01730558290819],[4.67890615732105,52.017290181995946],[4.679072439642246,52.017260531777545],[4.679241394885215,52.017234115254176],[4.679288063042472,52.01723553741624],[4.67934876794039,52.017237394507],[4.679462262193213,52.01725711433181],[4.679593591070277,52.01728585775917],[4.679703346835185,52.017325545131044],[4.67988450491712,52.01742221656324],[4.680116267044447,52.01755623294106],[4.680370083330621,52.017666454090374],[4.680593658196934,52.017746121305436],[4.680637431821848,52.01776115200296],[4.680899948537206,52.01784821611072],[4.681108739413724,52.01791395147429],[4.681358945110134,52.01797805619418],[4.681551904311506,52.017996425745785],[4.681708621816616,52.017974741130864],[4.681798790749085,52.01794660837712],[4.681923164221375,52.01791117513867],[4.681946624438994,52.01789695218509],[4.681998492193654,52.01785591615783],[4.68203983663346,52.01781426878297],[4.682074415748163,52.01777019894214],[4.682101813196391,52.01772424345287],[4.682122169006247,52.01767583688818],[4.682154172334835,52.017604723418984],[4.682252553995855,52.01737300685124],[4.68239728617871,52.01702296548962],[4.682409341257469,52.01699378035149],[4.682412006601165,52.016987333633715],[4.682445836993652,52.01691484680308],[4.68247853903803,52.01683258279487],[4.682527246436295,52.01671355306794],[4.682566724231124,52.016616336905486],[4.682593507687658,52.01655005480445],[4.682603739160466,52.01652102052243],[4.682615781091537,52.01647134168367],[4.682620645879905,52.01643340370896],[4.682623799789154,52.01639865537234],[4.682619420071316,52.01634643339891],[4.682614903688464,52.016329777789494],[4.682596576133323,52.016293723401766],[4.682565880666583,52.016249325637034],[4.682489191895756,52.016162505846104],[4.682396903735066,52.01605793935241],[4.682336862350036,52.015975084142845],[4.682285427524419,52.015885017790566],[4.682254840910669,52.015807803862245],[4.682237068726335,52.01571239319884],[4.682241302282029,52.01564514020934],[4.682252618193476,52.01559624803418],[4.682266787634281,52.01554838863643],[4.682396503789056,52.01534599100443],[4.682474038190105,52.01526404931303],[4.682572994692947,52.015173238382324],[4.682676845377344,52.015090770949534],[4.682773411867188,52.01502499628227],[4.682879141708782,52.01495731688355],[4.683002350440151,52.01487582786902],[4.683050328949062,52.01483820169106],[4.683053018773536,52.014835745963744],[4.683069863450831,52.014812252107454],[4.683123703569465,52.014737170247834],[4.683147755568164,52.01471296445826],[4.683236758732614,52.014561026099955],[4.68331108888612,52.01439909469852],[4.683404173925426,52.01417174078117],[4.683489741048081,52.0139991532531],[4.683549690584916,52.013885547379964],[4.683621983429281,52.013751180081854],[4.683635780591204,52.01372597810605],[4.683708960320962,52.01359261376907],[4.683788926326552,52.01345377104346],[4.683851613723884,52.013348468700016],[4.683855862424719,52.0133413482877],[4.683869282578616,52.013318804605106],[4.683922702858976,52.01324799835796],[4.683950938977547,52.01321420877508],[4.683942150532642,52.01321079460265],[4.683356103951439,52.013059423529555],[4.683374766876681,52.013030475535835],[4.683282205302024,52.013006669033985],[4.683312414251254,52.01296229404539],[4.683994770110363,52.013135300570276],[4.684095234484622,52.012991510609424],[4.684115997698336,52.01295957291067],[4.684191698021865,52.012853862729095],[4.684310616925992,52.012696142872045],[4.684408515479932,52.012571869169214],[4.684482334094277,52.01248296490887],[4.684542690191592,52.01241189417628],[4.684579946707992,52.0123722259242],[4.684620639273668,52.012318718016815],[4.684675941977303,52.01225219216389],[4.68475019713653,52.01216696660671],[4.684776597466877,52.01213776794474],[4.684909692345679,52.011995412392025],[4.685047040415243,52.011850223739415],[4.685170606087801,52.011726542931],[4.685331819922698,52.011568750686244],[4.685479508455504,52.011432791377615],[4.685504625843689,52.01141011949036],[4.685684238822867,52.01125204094831],[4.685858333229562,52.01110399629114],[4.686072928141745,52.01093214857189],[4.686302366577251,52.010756415961474],[4.686440094511564,52.01065534314521],[4.686643423271221,52.01051160603832],[4.686793926180322,52.010401997925975],[4.686919398676037,52.01031979024434],[4.687041184368692,52.010241389570346],[4.687095946339141,52.010206291893304],[4.687248793261943,52.01010874163437],[4.687318908200638,52.01006704775625],[4.687567383188408,52.00990382990534],[4.68770364553311,52.00981698457565],[4.687830552124068,52.00974067186981],[4.687844197037748,52.009732465608856],[4.687898129506357,52.00970004118368],[4.688039344990963,52.00961025871251],[4.68809076148826,52.009577567580116],[4.688327585115402,52.00942700654671],[4.688338306658908,52.0094175784235],[4.688521010462034,52.00930300892159],[4.689067256796724,52.00895430807624],[4.68916824508088,52.008890271210134],[4.689251078811056,52.008837838534326],[4.689590679153487,52.00861911388039],[4.689778251979448,52.008496364863035],[4.690188500499314,52.008211264063036],[4.690317028020568,52.00811443771645],[4.690488680591565,52.00798115775845],[4.690552385877186,52.007927873902],[4.690584157245676,52.00790130338735],[4.690622908381238,52.00786890472667],[4.69079878252881,52.00771408606781],[4.690977418205526,52.00755393536799],[4.69103186496879,52.00750402108164],[4.69115863904528,52.00738385848601],[4.691230978025787,52.00731378999514],[4.691622874812305,52.006903492781824],[4.691742619346666,52.006770578385314],[4.691881070025808,52.0066109888581],[4.691991447057328,52.00647625714173],[4.692052653926782,52.00639880581933],[4.69212645413406,52.006303811514414],[4.692371682330774,52.005975464993654],[4.692418761988009,52.00589603352822],[4.69248898383638,52.00578278934388],[4.692516102311261,52.005739571247005],[4.692640394292959,52.00553555735251],[4.692696598178394,52.00543398718771],[4.692762981350834,52.00531366427309],[4.693031376085334,52.00479026933991],[4.693041527528443,52.00476579080005],[4.693103157887711,52.00460145029347],[4.693130578240027,52.00451889148345],[4.693150938622579,52.00444080322812],[4.693160848197462,52.004401833904865],[4.693185351710702,52.00428659393295],[4.693203800732528,52.00417390692401],[4.693213948790029,52.004119523846406],[4.693218072379683,52.00406293903607],[4.693226742158614,52.00397515522803],[4.693231225903673,52.00388024587919],[4.693230534656774,52.00383081443324],[4.693228113936407,52.00378773659777],[4.693222358641189,52.00363830598517],[4.693207186814898,52.00346119840428],[4.693165960944122,52.00324269827524],[4.693143505074413,52.00314761208867],[4.693108627157304,52.00302145154823],[4.693078546286721,52.00292597881961],[4.693062842984601,52.002887667405886],[4.693023187813044,52.00279542796164],[4.692958376044291,52.002669711021625],[4.692886199354174,52.00252870621799],[4.692776661305392,52.00227438850011],[4.692903089465963,52.00225994390122],[4.693030978460394,52.00224520217577],[4.693164772565114,52.00223000076844],[4.693298819138238,52.00221447711423],[4.693433137287437,52.00219927849195],[4.693565548999413,52.002183987585745],[4.69368068537517,52.00217079690685],[4.69368465487688,52.002172141595466],[4.69368412835811,52.00217040372598],[4.693710592838149,52.00216736876492],[4.693675497591818,52.00214182359197],[4.693588881572794,52.00185528333989],[4.69346163935396,52.0014386386942],[4.693330823260571,52.000980185583735],[4.693144333101714,52.000869139502306],[4.693109965140568,52.00081927573957],[4.692965946632945,52.000739840469414],[4.692899642395262,52.000663685853134],[4.692646067514885,52.00032682227957],[4.692530666391705,52.00013837282439],[4.692285013155211,51.99974269890611],[4.692055448771403,51.9993963041819],[4.691865508178787,51.99913745675056],[4.691606086005607,51.99882374641449],[4.691397181038552,51.99859555352061],[4.691359368383001,51.998484511521475],[4.691130975846223,51.99826893952958],[4.690937186473162,51.99810293629799],[4.690728553594794,51.99792422513021],[4.690572724245819,51.99780074550399],[4.690344618961121,51.99773488508108],[4.690042595523526,51.99756716980931],[4.689744201605113,51.99739093623993],[4.689527506421198,51.99724332005859],[4.689407219058793,51.99718775047796],[4.689234649557435,51.997112959044436],[4.689166828589842,51.9971106692389],[4.688889380125021,51.997020487191655],[4.688605462915201,51.99692966386131],[4.688430831350046,51.996871478625515],[4.688126107661823,51.99675263945426],[4.68780728075877,51.99661759939683],[4.687653378933859,51.99653657970042],[4.687746203112573,51.996501375385215],[4.687532068878425,51.99633777125597],[4.68739420239038,51.996209037009265],[4.687265870169102,51.99611135145417],[4.687146218867301,51.99602846742988],[4.686860263138748,51.99587579619865],[4.686763218170037,51.995826078834924],[4.686522738572288,51.99570606278544],[4.686307466993142,51.99561202915916],[4.686115707346079,51.99553507842114],[4.685921051820711,51.99544688354204],[4.685733930811273,51.99533504868997],[4.685537844921561,51.9951941274029],[4.6853559292286,51.995044751263734],[4.685126334145058,51.99485964895869],[4.684969121951337,51.994731290748504],[4.684700293506685,51.99452266440878],[4.684482001086015,51.994384134511506],[4.684233550376646,51.99425333389544],[4.684045569699872,51.994162551102136],[4.683703698504982,51.994064412446455],[4.683596978784989,51.994031362098035],[4.683410433484736,51.99397358345941],[4.683245597369363,51.99393256301557],[4.683166370866602,51.99392532976376],[4.683030308901929,51.99391291161974],[4.682838462849939,51.99389790335224],[4.682637632679727,51.993881996070435],[4.682560464423164,51.99387444215958],[4.682375265890913,51.99385153613535],[4.682270326659551,51.99383035999546],[4.682099718116858,51.99379077746776],[4.681955457526213,51.993756251295565],[4.681735977345991,51.99368659661375],[4.681478098458797,51.99359404238092],[4.681347446780915,51.99353955281794],[4.681238123480159,51.99347321843662],[4.68130069715285,51.99347549035188],[4.681342352032466,51.99348765889044],[4.681404580009391,51.99350172152622],[4.681571670480917,51.99347884119976],[4.681609750598652,51.99346280042321],[4.681626450377633,51.99344620000428],[4.68163252004876,51.993392647243205],[4.681621409040321,51.99336682871124],[4.681573924381321,51.993337439395226],[4.681502911860807,51.99332831276203],[4.681481703486085,51.9933279339056],[4.681418044925787,51.99330671690996],[4.681368755736846,51.99331428619304],[4.681342640180557,51.99331300599955],[4.681338255484453,51.99327058116945],[4.681323911193722,51.993232806549706],[4.681293960491988,51.99319767080552],[4.681212060612634,51.993169827648835],[4.681128410931645,51.99315140282334],[4.681089478203627,51.99314022129312],[4.681049570941388,51.99313452584702],[4.681025985642717,51.993132532700734],[4.680981190754003,51.9931394906096],[4.680963651220495,51.99315023441576],[4.680927925893185,51.99319149273843],[4.680900975539604,51.99322658370598],[4.680881094582044,51.99323437422316],[4.680877838957968,51.99321920913993],[4.680895235981072,51.99318608324301],[4.680924586319313,51.99314837306345],[4.680932371040864,51.99312927437821],[4.680913487763334,51.99311069876678],[4.680864896426907,51.99306657044369],[4.680861260600533,51.99303856756619],[4.680892118251079,51.99297910539565],[4.680906724158504,51.99291795472375],[4.680876998739333,51.992825096373],[4.680887915899556,51.99278275437278],[4.680953516628057,51.99270369015132],[4.680998038289551,51.99263823375819],[4.681018525357693,51.99257713633977],[4.680984423782654,51.992567089342046],[4.680894680546282,51.99259081957819],[4.680860925133493,51.99259392473029],[4.680802810964843,51.992601638551285],[4.680732591344738,51.99261897821467],[4.680677188251073,51.992644064953595],[4.680624452580204,51.99266434088233],[4.680575416932644,51.99267341242549],[4.680433829599611,51.99262107630906],[4.680295545546339,51.99259381967385],[4.680180571351326,51.992562927769995],[4.680098783024301,51.99253828438814],[4.680015282714225,51.992536344486076],[4.679980124646256,51.99256099527088],[4.679963986403055,51.99259182755783],[4.67993160114961,51.99260775821413],[4.679870176460374,51.992637958769436],[4.679847194903155,51.99261986170336],[4.679848153707376,51.992559069558624],[4.679848894212901,51.99251211832169],[4.67987692865529,51.99247386118117],[4.679847757978526,51.992410604870855],[4.679708558084594,51.99232332612069],[4.679625214543083,51.99230962998299],[4.679517842291711,51.99228055385853],[4.679460993790927,51.992277272758024],[4.679418414704682,51.99225272987113],[4.679369913814655,51.99219102902828],[4.679307582169482,51.99213941091166],[4.679223959160932,51.992066892350906],[4.679154297242929,51.992039696628325],[4.67908101402729,51.992026078607815],[4.6790185517451,51.99201504242817],[4.678940676164538,51.99196493051656],[4.678913174605532,51.99190764335509],[4.678928239147626,51.99182220886046],[4.678918070842888,51.991777385147316],[4.678922278153115,51.99172025287423],[4.678925482144479,51.991676866900704],[4.678854256703821,51.99160213961413],[4.678903804152855,51.99149699425514],[4.678902410939657,51.991409123702304],[4.678789807942914,51.99122559371891],[4.67863538889038,51.990974910753124],[4.678618295218925,51.99089478358687],[4.678835388721727,51.99079450302865],[4.678956478117102,51.990761417285505],[4.67898209398586,51.99071494832019],[4.678962311686456,51.990671361080864],[4.678889132363723,51.9906623726097],[4.678699117533972,51.99065590757918],[4.678553970746325,51.990573220660316],[4.678509189443301,51.990497447931],[4.678423137263154,51.990486790686106],[4.678332735413816,51.99047590943049],[4.67827093401513,51.99037070473893],[4.678205468846281,51.990237559784184],[4.678109429662674,51.99012375349567],[4.677923327603314,51.989943662726375],[4.677745448143058,51.98985223845325],[4.677567913675096,51.9897197297351],[4.677198203908679,51.989154723130035],[4.676927033112788,51.988719600135305],[4.676717168843123,51.98852010167221],[4.676410719024858,51.988309907429766],[4.676126167760078,51.98815116882841],[4.67570297973426,51.98793904479445],[4.675193550798847,51.98771227654609],[4.674865927241365,51.987579331782044],[4.674644835215858,51.98749183874002],[4.674155444926272,51.98729737497754],[4.673747492849888,51.987131599772965],[4.673495544854157,51.98702103282214],[4.673365023290228,51.986976638048446],[4.673208213948906,51.98687619333296],[4.672986742317504,51.98672244083607],[4.672706857470695,51.98649330649467],[4.67252520434765,51.98632958397635],[4.672347059071932,51.98613675084929],[4.672138554977498,51.98592883906288],[4.672073946398005,51.98591792092773],[4.672005294114269,51.98594696788238],[4.671917677957731,51.98588987087489],[4.672014298860365,51.985819548130905],[4.671609781916186,51.985224398020485],[4.671508813070497,51.98526252425146],[4.671355783529726,51.98502528646253],[4.671261768693246,51.985020840442346],[4.671119666389984,51.98488439363368],[4.671050422903056,51.98489946834771],[4.670986094379127,51.98493220831995],[4.670772164026431,51.98504110464828],[4.670701673659058,51.985069510459304],[4.670633552535884,51.9850790009339],[4.670627664633182,51.98505572088852],[4.670653301842369,51.98502101072762],[4.671089920083433,51.98478349677356],[4.671109654112143,51.98472550639825],[4.671167315486664,51.98469364261216],[4.671343868079172,51.98459607735438],[4.671426556171895,51.984521158110034],[4.67137643804286,51.98431843282704],[4.671263010592375,51.983893145248004],[4.6711177735212,51.98343074827937],[4.671023136118959,51.98340532815438],[4.670988203393237,51.98325643717549],[4.670901343679328,51.98288615854356],[4.670842057619393,51.98263337426795],[4.670788685416943,51.98238039225796],[4.670790738471175,51.982292848017046],[4.670842556813755,51.982023230593676],[4.67082947411941,51.98196009678228],[4.67075790782174,51.98174626562078],[4.670643739307018,51.981431027635594],[4.67059192189257,51.98132782994653],[4.67046512060926,51.98110553657348],[4.670286689897243,51.98087957577655],[4.670197527908517,51.980823411766494],[4.670113539836607,51.98079508957218],[4.669942800244294,51.98080752258915],[4.669791846384194,51.98060215033693],[4.66967084209979,51.98047101660611],[4.669719788793715,51.980438597028304],[4.66966167599962,51.98037973663327],[4.669548144993231,51.98034747667358],[4.669356676007441,51.9802600282493],[4.669030970671554,51.98015811571394],[4.668774821056904,51.98004766548498],[4.668546969923234,51.9799580880123],[4.668443250063002,51.97993318554872],[4.668253363272565,51.979881680919185],[4.66800491629326,51.979840298608934],[4.667544896710702,51.979774593382835],[4.66727053999796,51.97967706178044],[4.666986659696207,51.9795644424928],[4.666787518451367,51.97952926483479],[4.666042247893961,51.97941682840052],[4.665737293356417,51.97939939078234],[4.665691562226408,51.9794154873707],[4.665251508915343,51.97928448637683],[4.664966025139627,51.97929093177921],[4.664635372736816,51.97937613484968],[4.664589719364615,51.97938195765081],[4.664316491515377,51.9792654962989],[4.664407920018409,51.97918755257346],[4.664192800117267,51.979089155198444],[4.663988605872216,51.97911036245427],[4.663929476445888,51.97915757503555],[4.663826785745939,51.979125987372925],[4.663183502445077,51.9789100461157],[4.662952939866486,51.978835290015304],[4.662464809594349,51.97866187150751],[4.662174493945522,51.978527080201566],[4.661744977170641,51.978332528376335],[4.661415056484275,51.97821238488662],[4.661121108424608,51.97810455198358],[4.660375733918377,51.977833719599964],[4.659545152236198,51.97755542536263],[4.659225906190724,51.977492157945946],[4.658766422850143,51.977410017528534],[4.658392781070246,51.97738829741785],[4.657765106665058,51.977403418234175],[4.656800392982088,51.97744176439841],[4.655680649408551,51.977481062380846],[4.655411776456944,51.97746827155579],[4.655241612560614,51.97745663357053],[4.655110960524286,51.97747744698533],[4.654972385634084,51.97745663016678],[4.654926776553509,51.97748029165542],[4.654833550480713,51.97745176614399],[4.654808093949567,51.97742766232643],[4.654724104649957,51.977427139459564],[4.654709904729369,51.97730730631198],[4.65466891074449,51.977252445967785],[4.6543886985233,51.97714890624395],[4.65425007646601,51.97713462291083],[4.654179268491607,51.977160311328504],[4.654181916053673,51.97723434809262],[4.654008558715054,51.97730241638612],[4.653845435240212,51.97732850002908],[4.653638116158938,51.97732379194885],[4.653320025364579,51.97729282930816],[4.653054798433748,51.97713648255992],[4.6525949509358,51.9769103469186],[4.652368867851903,51.97649354956789],[4.652833185669397,51.97614830618523],[4.652875767198931,51.97610062731585],[4.652846203920194,51.97604653876083],[4.65268399484233,51.97609702127538],[4.652521451788354,51.976236325831344],[4.652431492133966,51.9762530039765],[4.652240552236242,51.97624918669075],[4.651974773172871,51.97609516201316],[4.651751747213029,51.97591069028313],[4.651637521909231,51.97577131058872],[4.65096871626974,51.975454992509654],[4.650161181459182,51.9750256070564],[4.649841411105941,51.974916415429036],[4.649015135353786,51.974677299023185],[4.648063487313128,51.97439026242545],[4.64761151218843,51.97425926382284],[4.647370081341344,51.97417404484011],[4.647714415769747,51.97382793206685],[4.647798045606814,51.97374651848516],[4.64800059555014,51.973549361069914],[4.647728065400469,51.9734482894103],[4.647419271721296,51.97333376698899],[4.647177602435164,51.97325009210058],[4.646934012477166,51.973169092188904],[4.64661282270105,51.97307574744884],[4.646497180823993,51.973042984365],[4.646370946030634,51.973013624025555],[4.646259049975091,51.972987598710105],[4.645837590936733,51.97292049592555],[4.645761147664603,51.97290683701927],[4.645068088626524,51.972791369053816],[4.644747328906022,51.97273839828754],[4.644304013439769,51.97266434774334],[4.6439975023696,51.97261056604903],[4.64350616048283,51.9725243442359],[4.643405016249416,51.97250659067058],[4.643330595708472,51.972514101923345],[4.642898928308114,51.97244351737004],[4.642747154593633,51.97244056158209],[4.642574708230487,51.97238187181153],[4.642384302793058,51.972317072746755],[4.642114079538618,51.9722544464502],[4.641944998332589,51.97225261143245],[4.641784473101913,51.97225086633901],[4.641591923582794,51.97222061323325],[4.64117555859799,51.97215520681127],[4.640760069398779,51.972094091987806],[4.640350137447393,51.97202355505339],[4.639649346550682,51.971872393435405],[4.638112108727728,51.971636589784644],[4.63788668455773,51.971717255286435],[4.637725495748477,51.97167258024392],[4.637582676808848,51.97162945120873],[4.637493325544343,51.97160034327647],[4.637462708940526,51.97156267502487],[4.637403094351561,51.97154638540242],[4.637214093280223,51.9715201206418],[4.63695789021791,51.971477031963175],[4.636839648433851,51.97146203102582],[4.636523538910589,51.97142191199198],[4.636400304989868,51.97140695066426],[4.636232472377297,51.97139853579124],[4.636095115963147,51.971403932872654],[4.635800556388531,51.971431003839285],[4.635678479788507,51.97145123021419],[4.635406121483745,51.97152298912768],[4.634889584679782,51.97165218680068],[4.634616986852364,51.971724194042594],[4.634333153334253,51.971797045580644],[4.634096417447045,51.971843654848556],[4.634022799105363,51.9718623021277],[4.6337466385677,51.97193224415815],[4.633701895167651,51.97190401227073],[4.633588489923928,51.971919051717066],[4.633527068583287,51.971927206319364],[4.633271319270355,51.9719611261678],[4.633206690077954,51.971962707412814],[4.633196294380963,51.972004554260145],[4.632846992837247,51.97200049927022],[4.632725609178897,51.97197587430977],[4.632741240875124,51.97184768138356],[4.633049002731205,51.97143105025673],[4.633079229399362,51.97143540571109],[4.63313820058827,51.97127595880586],[4.63320552734146,51.971136286242235],[4.63317435316218,51.97109305837364],[4.633044843852463,51.97107146471021],[4.632814857205825,51.971012805122186],[4.632444509106291,51.970881309474954],[4.632150893566289,51.970741622256284],[4.631957140929737,51.97066341877906],[4.631483828750169,51.9703785259811],[4.630993758554134,51.96999426322304],[4.630677687044005,51.969648060322385],[4.630447322357862,51.96936560625156],[4.630335430755642,51.969267909178576],[4.630251790550389,51.969276934806814],[4.63016889322984,51.96931093528655],[4.629944956959756,51.96942917621472],[4.629862296304804,51.9693508124161],[4.629823412315941,51.96935854388943],[4.6294455416766,51.9695187578644],[4.629364623969844,51.969550082962485],[4.628652076157712,51.969863882116876],[4.628630788361656,51.969797418495695],[4.62854810884075,51.96951796228206],[4.628570620027968,51.9692374136703],[4.628611526885425,51.96924087738559],[4.628624177328791,51.969183800904986],[4.628651104670775,51.969186077858524],[4.62867498828814,51.969081722233675],[4.628893937291434,51.96893146138566],[4.628862072824779,51.9689053060914],[4.628938209150751,51.96879603794655],[4.629025445883263,51.96879460477656],[4.629140222508353,51.968745386223574],[4.629352095064337,51.96864687982252],[4.62946821884079,51.96858333292631],[4.629630300344716,51.96847829422079],[4.629819530234073,51.96835977651339],[4.62992770001896,51.96828457376455],[4.63009112156857,51.96813965196275],[4.630158398632513,51.96807998764032],[4.63008752527196,51.96800174477559],[4.630012543645934,51.967982440176414],[4.630037781861543,51.96779670185666],[4.630081075758548,51.967467092476895],[4.630461271608499,51.96703317273769],[4.630612472531813,51.96685835664139],[4.630672752812497,51.96678888547925],[4.630772257382657,51.96670601294588],[4.630912476687012,51.96665339682913],[4.631008063250013,51.966613014656886],[4.631396658836954,51.96636889379042],[4.631982258017426,51.96602563474436],[4.631895308148803,51.965943766225706],[4.63212024937342,51.96582758645085],[4.632584738769403,51.96558392187093],[4.63341175609287,51.96514428320904],[4.633630854782177,51.96502720921654],[4.633841980410918,51.96491434431862],[4.633988696944598,51.96482344807028],[4.634075272914012,51.96474991894736],[4.634191408157622,51.96462743869797],[4.634358005685284,51.964468518226234],[4.63454182911579,51.96434524839238],[4.634662170682866,51.964273768550676],[4.63483429102854,51.96418190122307],[4.635049275066528,51.96406760271273],[4.635226274360718,51.963967559485674],[4.635370558601428,51.9638860030378],[4.635485326133167,51.963799664647084],[4.635603389960472,51.96370935630035],[4.635740263774057,51.96360101117527],[4.63654153576629,51.96296535309996],[4.636839573435079,51.9627538490579],[4.637083316526556,51.96256698614429],[4.637462844507678,51.96232241904091],[4.637737594370707,51.962125658296706],[4.637948773628497,51.96199331727211],[4.638360716016178,51.96175708838686],[4.638641740140992,51.961585865951605],[4.638872391217503,51.96141544594773],[4.638961996211384,51.96131818483154],[4.639590573295869,51.960795489871614],[4.640456455566341,51.96009517498424],[4.640827268900911,51.95978957258301],[4.641424091922963,51.95930588335277],[4.641620370846334,51.959137154613224],[4.641769061201819,51.95920129542024],[4.641951358567521,51.95902806415305],[4.642047902700715,51.95893892535963],[4.642066806489363,51.95888431395948],[4.642077924274024,51.95878775769084],[4.642205130104635,51.95870781052955],[4.642351637126592,51.95857642725356],[4.642414341744916,51.95853269064914],[4.642525962106711,51.95835551439007],[4.642614045074948,51.95825531061384],[4.642643894251092,51.95812228954881],[4.642827071790729,51.957928847298085],[4.642920100503286,51.95788125749957],[4.642992163986908,51.957843332472294],[4.643044563349801,51.957754138247346],[4.643102833904805,51.95773203558377],[4.643138698674081,51.957683634525175],[4.643253607336228,51.957544769520766],[4.643343131561453,51.95749787630619],[4.643553176577062,51.9572542670787],[4.643657483578058,51.957075470514035],[4.643876297859041,51.9568151525382],[4.644317419286027,51.956417069093845],[4.644273080687703,51.95636490722527],[4.643959084259486,51.95621723726204],[4.644113765330253,51.956088689902884],[4.64442476061087,51.95581449971641],[4.644754696764404,51.95549789454851],[4.644987841028562,51.9552516691022],[4.645130758491175,51.95507310589203],[4.645180842362577,51.95485684319626],[4.645187325316992,51.95471104515446],[4.64516325276332,51.95455587703748],[4.645112652958919,51.95435976055876],[4.645008552988845,51.95406649993406],[4.644926751909999,51.95393626116494],[4.644849257239384,51.95388345877319],[4.644597581367554,51.953730619847256],[4.644337724610847,51.95362919704934],[4.644112145673156,51.95358385400073],[4.643812803222473,51.953546053074554],[4.643598620875639,51.953536420616125],[4.642995298097713,51.95352835285692],[4.642754034852319,51.95352712255592],[4.642440871834545,51.95352540051829],[4.641827256916844,51.953516902046644],[4.641722903100299,51.95351545862655],[4.641419297176609,51.953505893521815],[4.641205856643157,51.953491928930426],[4.641011508838603,51.95346444947836],[4.640893446539446,51.95343967398441],[4.640805581203307,51.95342123817964],[4.640779629959739,51.953412408526965],[4.640590464246172,51.953348027360136],[4.640407525182912,51.9532731598457],[4.640065027053355,51.953133001461076],[4.639480860728375,51.95289393298634],[4.639123543435344,51.952749488948086],[4.63881376826069,51.95262425824503],[4.638695118078215,51.95257561220793],[4.638294313097002,51.95241092528326],[4.638173339607068,51.95236122124763],[4.637949837235452,51.95226802453993],[4.637848599988742,51.952222967138255],[4.637753307258359,51.95212855548885],[4.637674507781581,51.9520143032994],[4.637659247700977,51.951945479643435],[4.637627640290626,51.95181720044368],[4.637625405656996,51.951565030596996],[4.637638883436942,51.95117767431472],[4.637646437698628,51.950910744727516],[4.637655673855672,51.950552637065215],[4.63765645090912,51.95030216722848],[4.637641302864112,51.950144753164686],[4.637603659695542,51.949931098200096],[4.637509053151892,51.94974014470311],[4.637369900315222,51.94955830911827],[4.637256214308414,51.94939329154216],[4.637089342831568,51.94916070927533],[4.637059732627033,51.94903150778789],[4.637025763641719,51.94884106647797],[4.636973758467276,51.948358058699725],[4.636927499494994,51.94772532931229],[4.636921664339405,51.94764015254894],[4.636896337948272,51.94728424216327],[4.636888718437565,51.94708300284441],[4.636854051090542,51.946696831291355],[4.636841479944723,51.94648553812279],[4.636814115395558,51.946242106365055],[4.636804715558306,51.9461335186205],[4.636784259769981,51.94601285161707],[4.636730607413564,51.94589422888194],[4.636644022945418,51.94569831011244],[4.636586628858417,51.94556689967746],[4.636545265545249,51.94543971728956],[4.636480642824919,51.94529267450157],[4.636394279813882,51.94508364263752],[4.636332995355009,51.94496491703504],[4.636316060281371,51.94485735074821],[4.636294842926475,51.94467012751987],[4.636270459615216,51.94445479483505],[4.636251469075937,51.94429359868146],[4.636217900838818,51.94400566968552],[4.636188517581486,51.943710163078],[4.636162767615765,51.943540087970796],[4.636135217556413,51.94329067735824],[4.636118359017344,51.943146420219975],[4.636088952519756,51.942910642350405],[4.636054777522525,51.942646070624924],[4.636015562008741,51.94242202304332],[4.63595297140626,51.94225036421453],[4.635873085579365,51.94212845436263],[4.635790108875987,51.94203049718212],[4.635715701702966,51.94195409533595],[4.635705894463946,51.941927435518096],[4.635771381768532,51.941871972169984],[4.635768854417339,51.941830051365876],[4.635668449807633,51.941615077540504],[4.635539994620228,51.94134691878408],[4.635454475550264,51.941251533799246],[4.635361890927186,51.941075215535726],[4.635263857794465,51.94085866551483],[4.635184815850095,51.940707457846806],[4.635102981575628,51.940534569831826],[4.635158147965699,51.94051696353631],[4.635149198320235,51.94047299718363],[4.635088660852505,51.940360603538316],[4.635011734336924,51.940217768628884],[4.634892494717882,51.93999638157827],[4.63478863697513,51.93990469887759],[4.634711534849597,51.93979675622347],[4.6346080225165,51.93957427403012],[4.634512067716937,51.93939466161923],[4.634333905322382,51.93943010443921],[4.634158378432489,51.93909145993166],[4.634302401596331,51.93902775447228],[4.634205167957249,51.93884042141174],[4.634083287212348,51.93860874262361],[4.634161145832649,51.93859674719066],[4.634005383350722,51.93835544028443],[4.633869444755778,51.938148767264394],[4.633730868590948,51.937978903319205],[4.633556946474332,51.9377965792151],[4.633445903781729,51.937697622406525],[4.63326550057402,51.93757233369128],[4.632955142342924,51.93739201007565],[4.632805337404495,51.93731527539861],[4.632476702722131,51.93716701229703],[4.632227341425283,51.93705668570103],[4.632067213565318,51.936986894866266],[4.631760735508733,51.9369023661428],[4.631604966109593,51.936862291911154],[4.631246840946987,51.936779227635945],[4.630974282135139,51.93672812768138],[4.630822604015029,51.936710289471485],[4.63080902019726,51.936750111326205],[4.630721980168879,51.936743564964125],[4.63073875843582,51.93670575913353],[4.630529017399162,51.9367024140574],[4.630492871102456,51.93674009521036],[4.630406698308734,51.93674163491875],[4.629805004510998,51.93681861269264],[4.628913497545872,51.937013752017926],[4.628277662271168,51.937184836844175],[4.62766362136685,51.93736277350147],[4.627365920050019,51.93741996783747],[4.626901150722908,51.9374749306844],[4.62601906254702,51.93751948757558],[4.625003665424193,51.93757164099303],[4.624423427380677,51.93758025544317],[4.623718226556191,51.937495644140654],[4.623145658484026,51.93737312283814],[4.622953511206506,51.93733043672223],[4.622823979538872,51.937174290114285],[4.622852299115279,51.93708590979402],[4.622973761994373,51.93705558089641],[4.622945696105257,51.93700341754395],[4.622780182528643,51.93699972590619],[4.622773349392945,51.936973992134114],[4.622743672313258,51.93680118259257],[4.622823582259366,51.93671563651762],[4.622959549280736,51.93666354171561],[4.622948871493705,51.93656633277967],[4.622596340781254,51.936461508098546],[4.622362355326902,51.93636619045257],[4.621569710048475,51.936005865928564],[4.620949619046069,51.935681068952654],[4.620550190163883,51.935425328783396],[4.620291921476623,51.935245329006115],[4.620225932391846,51.935158428421765],[4.61991593273573,51.93488450123313],[4.619708843661869,51.934706883522104],[4.61952927196583,51.934530757441514],[4.619243313271098,51.93423410944778],[4.618831519187543,51.93377679446104],[4.618270255206311,51.93307381327891],[4.617980189542388,51.932718268974746],[4.617712093220521,51.93250570531141],[4.617445671374808,51.93240687556246],[4.616845523714637,51.932384706837894],[4.616215331746343,51.93232463989504],[4.615841433946165,51.93232384125893],[4.615753228687843,51.93235952247313],[4.615570858123156,51.93226652522957],[4.615446894426483,51.932155942929434],[4.615271969213372,51.93210192365917],[4.615147107588351,51.93204027799943],[4.614932746417389,51.931839242563846],[4.614764044935082,51.93170242457811],[4.614762240087055,51.931499558252824],[4.614594956765324,51.93118398426693],[4.614605790789174,51.93092853683373],[4.614550466651121,51.93073908028971],[4.61450468277681,51.930490352733116],[4.614462580055805,51.9304012867097],[4.614368386884257,51.93030933448251],[4.614373959869189,51.930130731867635],[4.61445292637149,51.93006561625214],[4.614526739834614,51.93001943264285],[4.614482381561851,51.92997107909971],[4.614416296953497,51.92991703676598],[4.614280756944076,51.93000661590605],[4.613948854794473,51.93026603730808],[4.613668553028893,51.93047384324901],[4.613405987382609,51.93070529739645],[4.613040949090532,51.93096069598192],[4.612737847026015,51.931127586322525],[4.612701325292023,51.93109365649084],[4.612614713685197,51.93100568980575],[4.612451347660794,51.93080289137468],[4.612346765555943,51.93063736034946],[4.612180131329502,51.93038394319263],[4.611933612491089,51.93004566803546],[4.611690207184041,51.929816156873144],[4.611602427113028,51.929690007140984],[4.611657256475512,51.92955523433453],[4.612616390334989,51.92862369681683],[4.612818053854647,51.92870203963437],[4.613086075122315,51.92869183199471],[4.613251563521585,51.928263842071686],[4.613419752455223,51.92825126856959],[4.613672341940921,51.92824713319637],[4.614481427648213,51.92821732664433],[4.614364459437255,51.92803641736328],[4.614218992350256,51.92772891398063],[4.614097012704243,51.92743717804736],[4.613887029627946,51.92731783063167],[4.61366550731799,51.92718560714698],[4.613059602221212,51.92681314922044],[4.612890933966776,51.926885061739505],[4.612879307855077,51.92683246479525],[4.612845610897784,51.926728460505984],[4.612759899864151,51.9266460727007],[4.612535324118815,51.926570751711424],[4.612520392047784,51.9265008029272],[4.612431248407417,51.92643036506585],[4.612324774363157,51.926374293532895],[4.612220188037127,51.926319214103565],[4.612184221416416,51.92634691355245],[4.612193077009069,51.926394872169254],[4.612227116477375,51.92647891524209],[4.612215610810694,51.92658460821422],[4.612192449527313,51.92661838747705],[4.611976578048892,51.92659900490738],[4.611805917596373,51.92639032366907],[4.611655487275679,51.92631948095417],[4.611633757860765,51.92626944189199],[4.611452733154289,51.92628820214981],[4.611323493324472,51.926296113117665],[4.611260102177588,51.9262137546554],[4.611045517851022,51.9260492849006],[4.61075172438981,51.925954088071116],[4.610310026003398,51.925892024870336],[4.610041006527332,51.92588101540351],[4.609592296402726,51.92593270781022],[4.609410689774613,51.925977554978815],[4.608833362675501,51.92612533551114],[4.608467910960361,51.92628443137162],[4.608049178972497,51.926567233651475],[4.607840837689646,51.92671733750185],[4.607304071847288,51.92662900622396],[4.606828849680956,51.92656835246056],[4.606710665608585,51.92657412954598],[4.606718481920137,51.926466471020774],[4.606622397618835,51.926453797320754],[4.606620387006876,51.92656953918987],[4.606528958214283,51.9265700646294],[4.606220544506745,51.92660705361313],[4.605759284699982,51.926705038240584],[4.605562017933451,51.92675376633024],[4.605499208759508,51.92665189433249],[4.605406958173922,51.92668209380316],[4.605467382494114,51.92677813436567],[4.6039909342393,51.92709687643154],[4.603960957305001,51.92696495770727],[4.603878923626438,51.9269986217482],[4.603913146410274,51.92711632184663],[4.603310003613099,51.92719438549695],[4.602609698086319,51.92728724005363],[4.602443278944529,51.92728757640825],[4.60241479461016,51.92717617024518],[4.602324608538167,51.92718870949296],[4.602331966257437,51.92729935441643],[4.601256886585332,51.9273280902733],[4.60125231813341,51.92718114994896],[4.601169241794132,51.92719282799524],[4.601185449984205,51.92731183765269],[4.600528224447282,51.92728137452254],[4.600516982894247,51.9273247232561],[4.600165383371874,51.927292509717596],[4.600193998864945,51.92717531007944],[4.600117912414203,51.92713487328924],[4.600057389158107,51.927274168990515],[4.599831849509333,51.927253216249966],[4.599381934775634,51.92715570475327],[4.599070359907768,51.92707227838775],[4.599136741400898,51.926972985803786],[4.59905675227637,51.92692220323436],[4.59896883407249,51.92706402029647],[4.598666307144462,51.92692158038014],[4.598172555959898,51.92671024403217],[4.597738279144449,51.926513444087874],[4.59750206975254,51.92633879983845],[4.59745584751042,51.926359693458664],[4.597393647264742,51.92632516380087],[4.597054246807211,51.92618844935796],[4.596778304054176,51.92609088355811],[4.596590863781449,51.92603352516693],[4.596523634204369,51.92600313193356],[4.596143740551726,51.925871850236355],[4.595834157590901,51.925774397386505],[4.595533358907723,51.92568427465964],[4.595310292599189,51.92562913716044],[4.594961928552186,51.925538054341004],[4.594610284787157,51.92544341584278],[4.59411134844516,51.92529638575218],[4.593616946577249,51.92512492611265],[4.593617963829679,51.925067324939675],[4.59344608346608,51.92500033185592],[4.593500493581504,51.92493485762133],[4.593231692338211,51.9248083523236],[4.592849853758126,51.92462865201402],[4.59236505910471,51.92440047984376],[4.592140679167986,51.92429197993883],[4.592077238541275,51.92424824367922],[4.591883214731384,51.92409460101716],[4.591655021998489,51.92390188696339],[4.591562427888286,51.92386834395888],[4.591469105344265,51.92387594585007],[4.591388515038996,51.923916550189055],[4.590781633060999,51.92360793259674],[4.590635211224947,51.92360694048245],[4.590185865223557,51.92337641966066],[4.58960941125579,51.92309402428599],[4.589360428246209,51.92331328396529],[4.588977500925894,51.92301721478205],[4.589116085405741,51.92282418127826],[4.588415596920468,51.92247635451388],[4.588342408590813,51.92251271949788],[4.588214169268012,51.92241729657742],[4.587989706303294,51.922290055766396],[4.587756650475246,51.92220627001281],[4.587490147240202,51.92215013896101],[4.587095630103765,51.92210210667632],[4.587048656715702,51.92202799031787],[4.586267091094882,51.921919289376504],[4.585856233087085,51.92187557296422],[4.585080568453488,51.92178678717715],[4.58484382148712,51.92172861497266],[4.584232407721155,51.921602922698796],[4.583896013402225,51.92152019403499],[4.58341434862925,51.9214026379243],[4.582805534898692,51.92128727490886],[4.582513144798503,51.92126486946156],[4.58232214377479,51.92117630912292],[4.581702073529721,51.92088878490517],[4.581294214590311,51.92069966390894],[4.581107274956754,51.92058188039897],[4.580601576480962,51.92035294046272],[4.580215363330909,51.920182121239094],[4.579447487649928,51.92038768439774],[4.578707990221594,51.919660219577125],[4.57807692439551,51.91904118026523],[4.577968706129829,51.919056246287425],[4.577903594670879,51.91904350154442],[4.577730593673976,51.91871199578304],[4.57792318521886,51.918586824830655],[4.578572566724611,51.91844432983263],[4.578874076605093,51.918370737342876],[4.578869283825449,51.91826301150887],[4.578803961571729,51.918104443128506],[4.578855725106759,51.918069653550496],[4.578370359668512,51.917192834572006],[4.578286854649551,51.91704325522228],[4.577969562094174,51.91648577088702],[4.577801608663759,51.91650569278979],[4.577706866503899,51.916477418231544],[4.577617296053241,51.91633552683313],[4.577532705483789,51.91618107657832],[4.577305489114234,51.91575264051433],[4.577089301521545,51.915365762571824],[4.576867484387066,51.91513333320586],[4.576645180118959,51.914949807257585],[4.576186391131739,51.914716470171875],[4.575561659309633,51.914450282492815],[4.574792305794035,51.91410732657915],[4.574532269794983,51.91398642929493],[4.573984373059925,51.91383916283077],[4.573102162890908,51.913619188493456],[4.571690817554925,51.913287808204075],[4.571719341547811,51.91325535933859],[4.571723146215365,51.91320266729816],[4.57154501704801,51.91315751267991],[4.571668064805258,51.912794658753434],[4.571703354516096,51.912728144904435],[4.571696336565869,51.91264550847666],[4.571385636272212,51.912550238762854],[4.571285045010535,51.912605467875345],[4.571034807699712,51.91253184815667],[4.570943499674123,51.91253685892123],[4.570832299664763,51.912632004485275],[4.570776955676729,51.912665471316224],[4.570722123864526,51.912670735287165],[4.570147665914975,51.91254940525105],[4.569822944326459,51.9124557147879],[4.569826152713618,51.91240236247417],[4.570360888240447,51.9120476485978],[4.570480313334269,51.91201654186982],[4.57034613919156,51.91193630250817],[4.570072883656146,51.91178360932696],[4.569144151212136,51.9112361842813],[4.568610147682295,51.9108674906811],[4.568392094081108,51.9107240857471],[4.568088452638725,51.91056635823438],[4.56772885261873,51.91038665798534],[4.567527714834743,51.91029222272139],[4.567474842740422,51.910300141500066],[4.567378612930028,51.91037602667595],[4.566793532576286,51.91017068779542],[4.565625039324614,51.909737235589084],[4.565181630948076,51.909592320908324],[4.565121532387264,51.90965767057343],[4.56496644661519,51.9096052514009],[4.564483188736908,51.909443803756545],[4.563803619523337,51.90927045313943],[4.563251758697565,51.909187485130296],[4.562855547751107,51.90915378564284],[4.562087641644056,51.90915546188375],[4.561632037788869,51.90918807311495],[4.560527552505434,51.909287184457845],[4.560342532777368,51.90915586179374],[4.560351364803473,51.9090541542445],[4.560276503227466,51.909049483745456],[4.559321415975485,51.90899883197624],[4.558134158849102,51.908935856273416],[4.558053224122744,51.90885862092633],[4.556627036533541,51.90872077622997],[4.556022431581319,51.90865714949948],[4.555362953099372,51.908591872844205],[4.554872372268282,51.908704362282045],[4.554670358806596,51.90857116642417],[4.554475430251903,51.90851531401667],[4.55399108234459,51.908445113194134],[4.553478244482084,51.9083799846083],[4.553473214366544,51.90834481219406],[4.552305109932919,51.90808526806787],[4.552167575071831,51.90799819736455],[4.552173829385282,51.907966619640256],[4.55166218673009,51.90785481337633],[4.551268235359369,51.90777022384816],[4.550943372514483,51.907701342468236],[4.550928195417984,51.907753953065175],[4.551292967867897,51.90783912719855],[4.551243749158686,51.907889724925326],[4.551130782085814,51.90785553735433],[4.55102832864551,51.90786711392894],[4.550756728429867,51.90781070975508],[4.550716841272721,51.90781745499975],[4.550667981485068,51.90784872938548],[4.550675777317259,51.90788744518174],[4.550824582639546,51.90819970131326],[4.550719444413683,51.908288354402394],[4.550485865908515,51.90832534293936],[4.550528950190122,51.90845216531532],[4.550249946576738,51.90848882998311],[4.549961329732296,51.90766976623485],[4.549818791803352,51.90754575857719],[4.549493387920739,51.90748193892735],[4.549145996423608,51.907530418950884],[4.549026295882357,51.90763147893648],[4.549086360722923,51.90803913045842],[4.548786720119614,51.907941847971564],[4.548631065738795,51.90738129092468],[4.548194353858276,51.90723833700311],[4.547909613665603,51.906910769708595],[4.546410389980743,51.90637972507643],[4.545773203923164,51.90624007359148],[4.544651561677243,51.90609883389163],[4.544406219361197,51.90605901652956],[4.544182211819479,51.906030767334116],[4.543746332823844,51.90598196818078],[4.543083510916913,51.90589729059917],[4.54212766668178,51.905783167867945],[4.541189622342872,51.90563155680022],[4.539226559398485,51.90545185432661],[4.538908493954172,51.905338791121636],[4.538602102576316,51.90460805439417],[4.536365424722278,51.9041807564562],[4.536049625681426,51.90431267976843],[4.535421908597015,51.90400777418781],[4.535771976154914,51.9035203641491],[4.534583799619367,51.903215445743],[4.534115581444081,51.903723495620994],[4.533776045801315,51.90365499926294],[4.533597696446326,51.90380068709565],[4.531341956860315,51.902689905271934],[4.529765283688931,51.90202390773124],[4.528641880749231,51.90171959914188],[4.528219946901567,51.90163983290912],[4.527575019240626,51.90152008822663],[4.527240853665199,51.901351486880614],[4.526990782402572,51.9014668153446],[4.526142791824035,51.901564945547854],[4.525302209554066,51.901733505592254],[4.524942124438874,51.901660563175895],[4.524265064384916,51.90196021149057],[4.523826230054293,51.902402198934745],[4.52346632548171,51.90285754689024],[4.523539079513763,51.90301358633458],[4.523371751627173,51.90321782935766],[4.522896532321873,51.90368129857217],[4.522805311609627,51.90383810981789],[4.522777253030027,51.90395214993467],[4.52266980972406,51.90389455087506],[4.522569122489454,51.90390956728961],[4.522404584084734,51.90402428393673],[4.522486215794691,51.9045928453203],[4.522269265983115,51.904741917469224],[4.521772159654773,51.90516478986942],[4.521721483832303,51.90522608819981],[4.521703888917846,51.90528630881468],[4.521737677131919,51.905389667155],[4.521850198946845,51.90547421663803],[4.52221392904907,51.90563926654337],[4.52254285575184,51.90578852674441],[4.522409905095,51.90597266191005],[4.52230894846386,51.90611248435977],[4.522056475491512,51.90635133457368],[4.52219161062133,51.906672408261464],[4.521857864848326,51.906782310033286],[4.521440628290399,51.906506564466774],[4.520648256881105,51.906351610581396],[4.519711752744804,51.90617215386864],[4.519573596475642,51.9062827377733],[4.519468012619304,51.906881676004026],[4.519192873637558,51.908397369799964],[4.518887421046327,51.90999844722817],[4.518660623927886,51.91095837423632],[4.518957326770256,51.91143573654694],[4.519720869200111,51.91271161362575],[4.519864351622413,51.91297833371175],[4.519648935557464,51.91301299522619],[4.519443185218621,51.91293920709701],[4.51918495185471,51.91262831347729],[4.518904074504247,51.91221073581385],[4.518654801426841,51.912060849928466],[4.51814022291062,51.91207338742895],[4.517822672212597,51.912553984035476],[4.51748297126523,51.91299214199548],[4.517145801397493,51.91342158968655],[4.516741843862041,51.91386423158779],[4.515857855231119,51.91469713641151],[4.515117019115556,51.91529041536354],[4.514103367440498,51.915989680678585],[4.513598449705478,51.916349342188575],[4.512759231231797,51.91673367875334],[4.511733163536408,51.91721382164718],[4.510961592932329,51.9175422092603],[4.510002132335056,51.91789515812183],[4.509552781701812,51.9180423555478],[4.508493682611121,51.91834769899848],[4.507737658496809,51.91853978717395],[4.505617120962651,51.919005660345874],[4.503682300222462,51.91943245137517],[4.503632023295575,51.91930131464806],[4.503452153997078,51.91932318023801],[4.501760745463221,51.919536705715146],[4.500386644639819,51.91945839173227],[4.500048667500848,51.920021042711234],[4.499927640588829,51.920192272067055],[4.499692597693757,51.92015381463098],[4.499707191833587,51.920088343157744],[4.499630780871452,51.919982625183955],[4.499563384085149,51.91938078911157],[4.498655988006217,51.91925910223832],[4.497847286742282,51.91908664978609],[4.495876853691914,51.91866056196352],[4.494940371272225,51.918448522732376],[4.494676673130003,51.918314323482534],[4.494095922342183,51.91803040772755],[4.493095061536543,51.917622054069284],[4.492421598201136,51.917405640045544],[4.49201171084272,51.91717658727067],[4.491617475603909,51.916888803102694],[4.490420211348335,51.916096594006916],[4.489156739584136,51.915230060059365],[4.488385985130898,51.914705617232556],[4.487102650828466,51.913823771688676],[4.486226779677493,51.913233655508044],[4.48546385975239,51.91267635428597],[4.48494756491007,51.91217899087612],[4.484308363832676,51.91147552188669],[4.484141018703757,51.91147768779792],[4.483632303294268,51.912162854697726],[4.48351263662462,51.91215157957536],[4.483459443537182,51.912366891364485],[4.48318989839604,51.9123288633588],[4.483245199798048,51.91211284880087],[4.48312037210597,51.91210309762243],[4.483137151867171,51.911999397736565],[4.483065470855278,51.91199713844657],[4.48306480306861,51.91189304366798],[4.483024887228671,51.911793572771025],[4.482944376947374,51.91173026584378],[4.482457214170922,51.91158547413502],[4.482548247660789,51.91131144293842],[4.4832930219602,51.91138116442004],[4.483874481175035,51.91092136656663],[4.483424049303371,51.910214974748314],[4.483072967364954,51.90961192500293],[4.480961846168175,51.90783429214891],[4.480342890540055,51.90734148218691],[4.479977803629764,51.90759548191248],[4.479785473944596,51.90755815883093],[4.479743494400577,51.9074520370692],[4.479811184121184,51.9071044523558],[4.47938123924607,51.906950965688814],[4.479241761383436,51.907028377916205],[4.479097362744985,51.90742276727995],[4.479305721449796,51.907480215304105],[4.478793395165146,51.90846854244121],[4.478652460998775,51.90848109787342],[4.477838741760098,51.908208602195785],[4.478102443582985,51.907743604824475],[4.478860768196563,51.90636331307337],[4.477002182668665,51.905469148746384],[4.475630011222878,51.90481708371591],[4.475306768699997,51.90466347474058],[4.47525654718546,51.90469210072503],[4.47515207128389,51.90467592810588],[4.475000942027465,51.90478396847336],[4.474391032918347,51.904530090907954],[4.474562380814534,51.904308725240334],[4.472938109799833,51.903727595924046],[4.470862566307045,51.903013748135805],[4.468698205585636,51.90244053542132],[4.467494377014424,51.902438804839534],[4.466502585751158,51.90400263479254],[4.465266401161359,51.90598005416758],[4.464700087055792,51.90662050912053],[4.464647839835394,51.906602939403335],[4.46464476686914,51.90660821865256],[4.464616746107913,51.90665647510142],[4.464539492648075,51.906768992232],[4.464413022971751,51.90694139254714],[4.464394463524558,51.906969067047186],[4.464009366863158,51.90753292808529],[4.463738865901827,51.90794122993108],[4.463707784688174,51.9079947654885],[4.463687594600986,51.908028907965594],[4.463627404499898,51.90811282150115],[4.463477897301625,51.9083182352855],[4.463577945896516,51.908343560990815],[4.463130304917606,51.908990145603546],[4.462977905606107,51.90921156298807],[4.462674441670098,51.90927551313117],[4.460911978590978,51.909642219100895],[4.460866508029828,51.90965115508226],[4.460843395402358,51.90965489200157],[4.460784763304686,51.909662133191986],[4.460761090633818,51.909664130847815],[4.460683856273366,51.90966710848378],[4.460621037617718,51.90966593006404],[4.460579225589309,51.90966306555902],[4.460537736424636,51.90965863953895],[4.460417392576492,51.90963638716291],[4.460398299763266,51.90963124782465],[4.460007917403663,51.90952614594166],[4.459765855576169,51.90945250551063],[4.459731166386516,51.90944324297623],[4.459381244161857,51.90934960437439],[4.459363899644863,51.909344973051844],[4.459152153371424,51.90928837969009],[4.459122339368441,51.90929641391551],[4.458248901686464,51.909063355390906],[4.458462756048023,51.90876455097052],[4.458464115627239,51.90876205384743],[4.458464740162256,51.908757852037255],[4.458463666306542,51.908754257030154],[4.458462526441033,51.90875245026724],[4.458460078935643,51.90874992305703],[4.458456638133603,51.908747639682424],[4.458450654989413,51.9087453092492],[4.458434467699926,51.9087409565961],[4.458361316678722,51.908722221126375],[4.458055115108882,51.908637193743075],[4.457964508456238,51.90861220764531],[4.457960426929827,51.908611393348515],[4.457954446552543,51.90861104044194],[4.457949496603041,51.90861145972872],[4.457943741740518,51.9086128524269],[4.457939577278514,51.90861464421804],[4.457936025379956,51.90861703411192],[4.45793324532641,51.90862005033442],[4.457928422986053,51.90862695153538],[4.457723726976905,51.90891987687182],[4.457111101341448,51.90875359150715],[4.456515965769032,51.908592115597024],[4.456245097268541,51.908520486899896],[4.456155917149611,51.90850387026271],[4.456065587778916,51.90849362648263],[4.455989625388199,51.90849140660086],[4.455899001915713,51.90849536262843],[4.455551646650143,51.908541571267726],[4.455537418046724,51.90854370566051],[4.455178053253935,51.908595031479486],[4.454641365226004,51.90866680990184],[4.454103164291736,51.90873857386904],[4.453549350042339,51.90881187426113],[4.453033677933394,51.90888196064215],[4.451808716702591,51.90904653630681],[4.451550141918625,51.90908063975305],[4.451201364492835,51.909127004030374],[4.451097604917278,51.909141943893694],[4.450969656934703,51.90916688424514],[4.450874486410223,51.909201362037734],[4.450705122932519,51.90927141040788],[4.450484281855485,51.90936515614312],[4.450191908404425,51.90949644357783],[4.450060255150503,51.909554737737814],[4.450007198919333,51.90958305177172],[4.449947812428548,51.90962709060806],[4.44990346550081,51.909668462843996],[4.44967882337659,51.9098725140592],[4.44958112846836,51.90997076405931],[4.449487686843244,51.91006645015907],[4.449311569547402,51.910244002413336],[4.44916614470615,51.9103874982035],[4.449011530802016,51.91054017890373],[4.448887456163074,51.91066687397408],[4.448778763532889,51.91077449170579],[4.448680658953813,51.910877555682966],[4.448580960343577,51.910985245059386],[4.448467451555918,51.91110766451962],[4.448350890633225,51.91123283702257],[4.448215849892026,51.911381969674224],[4.448032926557876,51.91158357357026],[4.447951588028523,51.91167286528421],[4.447843917662181,51.91180367239982],[4.447722479973768,51.91194643230803],[4.447668683090229,51.91200997540278],[4.44760097883349,51.91209288597411],[4.447527132175814,51.91218316313946],[4.447431666114332,51.91230294833955],[4.44730993041268,51.912460527943814],[4.447205351688962,51.91258579515107],[4.447082098067131,51.912744297214566],[4.446952686696553,51.912910165630485],[4.446821738817329,51.91307787330008],[4.446684574694757,51.91325573334574],[4.446616251540074,51.91333956424819],[4.446549884993315,51.91342990067134],[4.446469546869547,51.91354331627833],[4.446395351254527,51.91364934728044],[4.446297911737412,51.9137922888493],[4.446208188570099,51.91392417299841],[4.446098258692358,51.914090196462546],[4.446014599674046,51.9142184076685],[4.445949606120902,51.91431524465071],[4.445827126552786,51.914507135942095],[4.445695567752064,51.91470358359654],[4.445551455076614,51.914926815964776],[4.445434325688119,51.91510669576155],[4.445372323366877,51.91520355639596],[4.445312011842024,51.91529116311586],[4.445219191971843,51.91542765092091],[4.445104769087125,51.91559270261965],[4.444964266162897,51.915786300235226],[4.444865986333545,51.915911337230234],[4.444790460767408,51.91600902396655],[4.444699465300836,51.91612975967442],[4.444591915692693,51.91625314907034],[4.444468817855197,51.91640329909626],[4.444382564332486,51.91651201864359],[4.444159169348864,51.916768096511575],[4.444028510921357,51.9169209719398],[4.443828480131538,51.91716415800287],[4.443785475954738,51.9172129544818],[4.443701576330633,51.91749536463377],[4.443661116201262,51.917636909734874],[4.443593528644676,51.91785612480426],[4.443545140237833,51.91801800175012],[4.443528812865628,51.91808184379863],[4.4435211381032,51.91809013275404],[4.44336105496649,51.91821587676877],[4.443257353289319,51.91829821713878],[4.443143146979398,51.91838167754085],[4.442999835349976,51.91849365013887],[4.442824516435358,51.91863039914559],[4.442550108834523,51.918844239317565],[4.442364137485566,51.91898832676264],[4.442113229681726,51.9191828851378],[4.442009615155252,51.919260865564354],[4.441823752432325,51.91940031482912],[4.441624040182693,51.9195554097162],[4.44143802414334,51.91970133805525],[4.441314540775747,51.91979771084137],[4.441059986248665,51.919993810686854],[4.440947195393843,51.920080066898294],[4.440835935375058,51.920165400495414],[4.440680465152346,51.92028468814939],[4.440550975971417,51.92038100279107],[4.440470050699127,51.92044989718216],[4.440371815090289,51.92048619359527],[4.440291792872328,51.920511517537484],[4.440125618374157,51.92056952262106],[4.439788737855643,51.92068734725207],[4.439547950031541,51.92077052092205],[4.439404473742361,51.92081851471813],[4.439167715325901,51.92088151332927],[4.439032012201477,51.92091658058194],[4.43899718888174,51.920932056996335],[4.438926950038143,51.9209917601251],[4.438811177956271,51.92107706441594],[4.438647978928192,51.92120741516329],[4.438494170510158,51.9213329246191],[4.438401117103739,51.921407283768595],[4.438332432645156,51.92146421257204],[4.437935948283763,51.921776274719356],[4.437914587640092,51.921793720218474],[4.437598780598536,51.92204801469695],[4.437579445731215,51.922040442748035],[4.437539932243917,51.92207348087641],[4.437255750068929,51.92229843888356],[4.437206737631175,51.922348236119184],[4.437191070812641,51.922379642139155],[4.437150263285748,51.922444292209576],[4.437129312789788,51.922479439791886],[4.437065855271253,51.92258809560122],[4.437003625260433,51.92269368713654],[4.436923159250092,51.92284215151439],[4.436902977861624,51.92286909851794],[4.436882962373124,51.9228881996541],[4.436850152299176,51.92291148499025],[4.436763323124806,51.92297927744189],[4.436632987703989,51.923085963021336],[4.436500522406074,51.923183345821464],[4.436353871315597,51.92329703622416],[4.436283400400457,51.923355684229975],[4.436214213409357,51.92340792459233],[4.435998298025854,51.92357741381111],[4.435863427485017,51.923679774200764],[4.435868971510497,51.92369052470828],[4.435772848898855,51.92376109066588],[4.435652087014254,51.92385072903463],[4.435503161313116,51.92397345167863],[4.43540468034051,51.92404685667701],[4.435248612187967,51.92416902678533],[4.435093646192471,51.924293344946314],[4.434804990728106,51.92451889907866],[4.434698213802525,51.92460222281173],[4.434401455962115,51.92483328335479],[4.434182182403866,51.92500485442487],[4.434076285051963,51.92508772630376],[4.433943820769976,51.92519137144901],[4.433854185130825,51.92526151205906],[4.433717964517503,51.92536810177465],[4.433586237787461,51.92547116823413],[4.433552880515173,51.92551047521921],[4.433527952072649,51.92554310000418],[4.433513417900662,51.92557508102355],[4.433496283875598,51.92562132412058],[4.433492021744962,51.925659105341545],[4.433494633463152,51.925699081661875],[4.433503891861106,51.92575195687574],[4.433517444345773,51.925820345607],[4.433558858245243,51.9260439988554],[4.433615935451617,51.926401028817864],[4.433628403033871,51.92644382666035],[4.433646208683734,51.9264817239744],[4.433659461030055,51.92650124723962],[4.433680869512394,51.926526949033075],[4.433698637746553,51.926546059485624],[4.433722930016943,51.926568099263136],[4.433750805462095,51.92658846023056],[4.433779629154611,51.926607300789726],[4.434073907970326,51.926771395380925],[4.434480386241213,51.92699657849261],[4.434706034933754,51.92712273987728],[4.434917765212136,51.92723613186872],[4.434974938228314,51.927268154610374],[4.435024034277951,51.92729848493112],[4.435267243469338,51.92743316499595],[4.435642335523606,51.927644975208466],[4.435941135729232,51.92781247241527],[4.43619075255204,51.92795448328812],[4.436435379603649,51.928102880235905],[4.436450427990929,51.928092574967515],[4.436565721564059,51.928157399596685],[4.436694089637778,51.92822963770168],[4.436858272901564,51.928326443889745],[4.437303104438843,51.9285833158838],[4.437489255243638,51.92870097285542],[4.437692059290496,51.92881498875327],[4.437764953500698,51.92884908765414],[4.437887028209744,51.92891795674182],[4.438301619476552,51.92915184805916],[4.438325757573721,51.92916552605533],[4.438519416176639,51.92927560150323],[4.438740144810908,51.929401032124176],[4.438740216739344,51.9294010686596],[4.438831494217953,51.929452933194646],[4.43884287638031,51.92945236883853],[4.438850675402217,51.929454858723446],[4.438862365400096,51.92945899797568],[4.438884554002613,51.929462412929745],[4.438901562864672,51.92946255013844],[4.438912098146062,51.92945939916698],[4.43892265049811,51.92945543934293],[4.43892671219599,51.929449000192676],[4.43892688310618,51.92944090268944],[4.438925779597581,51.92943118591611],[4.438920733898844,51.9294222463318],[4.438909170257432,51.929410054166496],[4.438904501348576,51.929399796271724],[4.438015189496611,51.92889695117296],[4.438678128871334,51.92844594224284],[4.439262913224533,51.92877602586117],[4.439310642843812,51.92874728711868],[4.439372622030567,51.9287874363337],[4.439331451059382,51.928815427984865],[4.440320339637068,51.92937235058657],[4.439658112780277,51.92982418343982],[4.439159676488468,51.929541782622906],[4.439154199827661,51.929541549691464],[4.439138072027258,51.9295437567052],[4.439127707426594,51.92953881918067],[4.43911088629135,51.92952978463675],[4.439091348528218,51.92952477312671],[4.43907432257241,51.92952544479705],[4.439059896298232,51.92952694642183],[4.439046675979472,51.929533311707424],[4.439042582683535,51.92954055959617],[4.439042377653664,51.9295502748027],[4.439048712165426,51.92956084275501],[4.439055049212433,51.92957060173809],[4.439066636841744,51.92957959407969],[4.439068485980523,51.92958705169513],[4.43906878077082,51.929588240590334],[4.43906904857235,51.92958933039141],[4.43906797253898,51.92959002283684],[4.439066538870635,51.92959319329824],[4.439070523965466,51.929597962521235],[4.43972040529181,51.92996607885374],[4.439748075794317,51.929981906371204],[4.439759572673915,51.92999314510339],[4.439766506292291,51.92999668862654],[4.439786688288426,51.930007017576635],[4.43979605300267,51.93001180316327],[4.43996496378895,51.93010431042769],[4.440256867703641,51.9302707790587],[4.440356345262892,51.930326978101185],[4.44049241771287,51.93040402907882],[4.440485916920736,51.930408920548665],[4.440654897083661,51.9305044835398],[4.440669035175413,51.930495968159406],[4.440758838263307,51.93054693839461],[4.44078837808948,51.93055274924797],[4.440806625332572,51.93056314334235],[4.440817402446633,51.9305692256101],[4.440973586824533,51.930657269389904],[4.441022803482372,51.93068500036484],[4.441157639857293,51.93076078218024],[4.441359988634457,51.93087450929774],[4.441499999281497,51.93095320874763],[4.441710641767005,51.93107158623749],[4.44187557233144,51.931164283405934],[4.44210397866103,51.931292654705],[4.442269370776517,51.93138560670498],[4.44248549229119,51.93150707400732],[4.44270630001303,51.931631167317526],[4.442882602194245,51.93173024653783],[4.443153811071175,51.931882671920214],[4.443334053032006,51.931983957367066],[4.443456552256081,51.93205280597641],[4.443655923426737,51.93216485122093],[4.443861432160977,51.93228034312131],[4.443919190456996,51.93231279757572],[4.444080463775344,51.93240351167783],[4.444197371885799,51.932469357342036],[4.444352133757101,51.93255652220456],[4.444486791049924,51.93263236160406],[4.444821136773491,51.93282066908712],[4.444982871057348,51.93291176314749],[4.445155226621005,51.93300882972819],[4.445404441256741,51.93314919042139],[4.445635691936848,51.933278790978974],[4.446034624912005,51.93350318970435],[4.446189295341785,51.93359019855517],[4.446345518688168,51.93367807355786],[4.446666677999947,51.933737811832316],[4.446850607596588,51.933772029202764],[4.447254549854689,51.9338471695433],[4.447482152847194,51.93388950137365],[4.448164866544738,51.93377700605945],[4.448258208992974,51.93376162576604],[4.448306346613137,51.93375369561757],[4.448407816622376,51.93373696887992],[4.448509694960317,51.93372018239416],[4.448542904178431,51.93371476665692],[4.448818069838746,51.93367786224721],[4.449381552708135,51.933602295742666],[4.449707054230641,51.93355864472539],[4.449820225753465,51.93354346626299],[4.449849326843864,51.93354884884963],[4.449891636081431,51.93354564461157],[4.450214453146413,51.93352119773305],[4.450400995570325,51.93350830233428],[4.450462761007826,51.933502304614805],[4.450535198915203,51.933494252571464],[4.450597476999085,51.933487377968085],[4.450892392535136,51.933466230533355],[4.451087216565291,51.93345224944449],[4.451087107814768,51.933451187905845],[4.451088075666705,51.933452193363955],[4.451124046295388,51.93344961236742],[4.451261202341078,51.933441086404045],[4.451274594905742,51.93344038403594],[4.451360292715152,51.933472886428724],[4.451519663577653,51.93353158409357],[4.451711228835531,51.933602870290905],[4.451766788036167,51.93362326740616],[4.4517868436238,51.933630797759015],[4.452026152829619,51.933720054294255],[4.452229090148359,51.93379557391031],[4.452288006161569,51.93381749859361],[4.452368234861128,51.933847350011874],[4.452546181241501,51.93391356474703],[4.452832841522495,51.93402023872692],[4.453031949047564,51.93409544784949],[4.453195351896737,51.93415626064083],[4.45343804700177,51.934246592847295],[4.453597756958734,51.9343060274288],[4.453789674969343,51.9343774478273],[4.453989125898604,51.934451678260324],[4.454207553154522,51.934532962304964],[4.454403152799273,51.93460575022931],[4.454649821210503,51.934697549626186],[4.454890199075553,51.934787006483894],[4.455197624204291,51.934901255003034],[4.455458792512059,51.934998030538345],[4.455632712790334,51.935062482793384],[4.455817038570673,51.93513077451774],[4.455947075522847,51.93517895957506],[4.456185931908499,51.93526770057498],[4.456385974407862,51.9353425338189],[4.456600144292779,51.93542266504872],[4.45683737447304,51.935511409813024],[4.457124187555279,51.935618703613095],[4.457323439464762,51.93569324134674],[4.457544929034014,51.93577609838251],[4.457753172465627,51.935853996356975],[4.457942382914878,51.93592477724813],[4.45818326925275,51.936014887481505],[4.458363606233075,51.936082352632404],[4.458641551939493,51.936186318701814],[4.458839264843404,51.936260275386836],[4.459028064311708,51.93633070070162],[4.459246145067688,51.93641203544786],[4.459474645673709,51.93649726323193],[4.459694243230497,51.93657916640678],[4.459915198135348,51.93666157425226],[4.460077289055576,51.9367220254337],[4.460330306094218,51.93681665831687],[4.460498698699142,51.93687974734565],[4.460689026826617,51.936951044926055],[4.460906398745039,51.93703248781985],[4.46113873663537,51.937119522329624],[4.461310493971097,51.93718386814006],[4.46159282250958,51.937289632437164],[4.4618456877879,51.93738629227561],[4.462023066830674,51.93745386328964],[4.462154301736566,51.937503839576564],[4.462360455390018,51.93758229710836],[4.463479034245262,51.93800188483886],[4.463333327478462,51.93814276195815],[4.463364647197226,51.93815433386299],[4.463368069121272,51.93815058548339],[4.463413533076559,51.93816739209105],[4.463412847951846,51.93817242039805],[4.463377273881004,51.93819092733145],[4.463366815233824,51.938218620335476],[4.463354785680829,51.938229357234405],[4.463278113705671,51.93820049417123],[4.463241806164895,51.938240514325805],[4.463224917331269,51.93825912310881],[4.463030673550432,51.938188248357385],[4.462750177455328,51.938084164899905],[4.462406207993104,51.937960102928564],[4.462185684317342,51.93787035044814],[4.462140088699369,51.937854324344734],[4.462105025395836,51.937840250752586],[4.461946619932723,51.93778199770201],[4.461839922919074,51.93774377383207],[4.461804490561131,51.93773138712646],[4.461612014574261,51.93766174638313],[4.46157746337451,51.93765106541619],[4.461571616257932,51.9376489969171],[4.461329998893017,51.93756185425851],[4.460721094701634,51.937342253743026],[4.460508471490754,51.93726178277441],[4.460176803892248,51.9371362561086],[4.460114083391927,51.93720173888195],[4.460038617635409,51.93717309892199],[4.460100158307915,51.9371084158711],[4.45959263075579,51.93691676377238],[4.459410613389314,51.93684802885921],[4.459192998412482,51.93676585317125],[4.458955601216616,51.936676204056795],[4.458849006923771,51.93663607263624],[4.458725405959116,51.93675950074563],[4.458657758184835,51.93673403173255],[4.458592225833218,51.936708237816354],[4.458572631335603,51.93670360665772],[4.458539584550446,51.93669197487598],[4.458374263163988,51.93685818306647],[4.4583531999124,51.936850735781356],[4.458219839296381,51.93680539458356],[4.45797727519961,51.93672096107061],[4.457954169389484,51.93671313801992],[4.457574919841846,51.93658462111832],[4.457553719668972,51.936577478222766],[4.457444164025405,51.93653997378199],[4.457173950794367,51.93644746377502],[4.457152869673931,51.93644019590571],[4.4568549867093,51.93633912471583],[4.45669326573198,51.93628425399331],[4.456560902972942,51.93623934125992],[4.45654200377701,51.93624117816977],[4.456364384249357,51.93618092272338],[4.456345176787562,51.936174478528834],[4.456095586340584,51.93608979669217],[4.45595936893237,51.936043585333316],[4.455957839298979,51.936045119281104],[4.455938057819772,51.93603831092289],[4.455663422097133,51.93594547473287],[4.455292958947799,51.93582023797202],[4.455004708523273,51.935722788945796],[4.454763910920447,51.93564139193774],[4.454462695146034,51.935539560094405],[4.454159097968334,51.935436926550004],[4.45399232517346,51.935380546810414],[4.453946537581777,51.9353656215854],[4.453940410964772,51.93535253926969],[4.453949198360148,51.93534254162897],[4.453961229239624,51.93533041243521],[4.454153347846962,51.93513337590316],[4.454166961145551,51.93512206823436],[4.454200275998476,51.935086377638726],[4.454207987663136,51.93507915795335],[4.454228143387058,51.93508331789714],[4.45428833598424,51.9350214945525],[4.454303305773297,51.93502679085774],[4.4548699308296,51.93524018415059],[4.454947039184085,51.935161335103494],[4.454953842559421,51.93515653512872],[4.45434459072214,51.93492941077782],[4.454327997429037,51.93492316676568],[4.454092225719584,51.93483459924735],[4.453760502117576,51.93470997963536],[4.453443483339347,51.93459088709428],[4.453119006685382,51.93446898387584],[4.45274690571843,51.934329029342045],[4.452608650075879,51.934277063018094],[4.451552687413221,51.9338841250604],[4.451336631060678,51.93388555141366],[4.451145763670471,51.9338868183792],[4.45097413674044,51.93386774390559],[4.450911553431251,51.93385086799871],[4.450854466730672,51.93382771674414],[4.450843589259364,51.93382146382569],[4.450804506065126,51.933798950318234],[4.450763093931699,51.93376538904836],[4.450760315415843,51.933759164677774],[4.450736838794235,51.93374135972177],[4.45067954910057,51.93374818425106],[4.450616662204764,51.933755647307066],[4.450543702097765,51.933764315465986],[4.450483045421874,51.9337715175681],[4.450431002783675,51.93377775457103],[4.450440449923353,51.933805874753496],[4.450429644549459,51.93382196840837],[4.450424900256623,51.933826335093336],[4.450422262656125,51.93391934765901],[4.450420269772055,51.93391868458906],[4.450422151115967,51.933923301821046],[4.450398972583215,51.93394001598032],[4.450033091754984,51.934000191966426],[4.44999639661988,51.93400611067185],[4.449850911686791,51.93402344066157],[4.449777877554523,51.934032143712905],[4.449761894758154,51.93399669047233],[4.449515985076516,51.9340461450351],[4.449510517468243,51.934036393572725],[4.449424069453866,51.93405377142654],[4.44932408164469,51.93398834467601],[4.449314045135874,51.933967590476584],[4.449273979810997,51.933894641716755],[4.448792230246643,51.93399875225822],[4.448856778864047,51.93411782913193],[4.448792310669152,51.934134123528224],[4.448719189824983,51.93401470852669],[4.44866632019901,51.934025702188784],[4.448617176101139,51.934031682879585],[4.448606683198403,51.93404879459412],[4.448583363674374,51.93405273425445],[4.448560642499081,51.9340565708224],[4.448568366094192,51.93407456505156],[4.448639487766903,51.9342715551077],[4.448592631643566,51.9343016439145],[4.448578496053674,51.934303095101676],[4.448546246310245,51.93430641514318],[4.448409351665971,51.93432176250646],[4.448322396730965,51.93432438496203],[4.448221280178715,51.93432900660373],[4.448150910195167,51.93433195914655],[4.448111415737533,51.934331248172306],[4.447864728108502,51.93433149763266],[4.447784248136442,51.93433045008054],[4.447513032329793,51.93427492533455],[4.447521004236875,51.9342560048034],[4.447471770248367,51.93424957981729],[4.447466070615843,51.93426901288982],[4.447348092064606,51.93424206531932],[4.447082594939729,51.934172508899806],[4.447061639349143,51.934166318857976],[4.447014684666486,51.9341517411279],[4.446988810277418,51.93414434319804],[4.44694700316028,51.93413394143533],[4.44691760744674,51.934128043415214],[4.446867194119101,51.93411892110417],[4.446798527067648,51.93410583253927],[4.446771072691775,51.93409819720378],[4.446744350492772,51.93408962389951],[4.446701170491274,51.93407534590124],[4.446661032418007,51.93406163154845],[4.446619886048149,51.93404745967698],[4.4465739738276,51.934031721571124],[4.446541485039305,51.93402076500523],[4.446498571482587,51.93400765760191],[4.446454160764906,51.93399660561635],[4.446412767493446,51.93398728562428],[4.446356906790157,51.933974434110795],[4.446321164934843,51.93396605818896],[4.446226560109176,51.93394237968752],[4.446129547774004,51.93391562566053],[4.446037473147626,51.93388918074463],[4.445852369774284,51.93381938419125],[4.445803477597749,51.93378627361886],[4.445753801682424,51.933748932033495],[4.445744427097607,51.93375218280185],[4.445737133332488,51.93376022326307],[4.445739442793815,51.93376104175689],[4.445690972423485,51.93381396591091],[4.445679096862688,51.93382692248039],[4.445661670527655,51.93384523683713],[4.445648516346397,51.93385953147701],[4.445644379772516,51.93386401969262],[4.445513476777976,51.93400629696685],[4.445497465265145,51.934023705779055],[4.445412438432714,51.93411610325424],[4.445408152652949,51.93412077004151],[4.44530315557506,51.93423487710419],[4.445297977077509,51.93424050752105],[4.445280656185497,51.93425932603724],[4.445244972312258,51.934298114262305],[4.445490430920553,51.93436758624345],[4.445759428238928,51.93443104396179],[4.445685407865829,51.934445102867876],[4.445689177087366,51.934452593721424],[4.445411521810629,51.93450385291026],[4.444980584560438,51.934583456085505],[4.444934104001335,51.93456708357216],[4.444727734388663,51.93461675517395],[4.444591518299967,51.934649550720714],[4.444621173887669,51.93469850755352],[4.444562811866762,51.934721680053734],[4.444498559539785,51.93470678284952],[4.444464590934661,51.934717836300536],[4.444430292864723,51.934689156791194],[4.44441071587341,51.934686572834664],[4.444088737413013,51.934847136310985],[4.443992479307393,51.9349367909922],[4.443902997523299,51.9350153539065],[4.443821672486281,51.93508634176144],[4.443738895144564,51.93515722801867],[4.443657448737596,51.935227046249054],[4.443575558343628,51.93529722041046],[4.443496037425746,51.935365346121074],[4.443414588374625,51.935435254051754],[4.443333881149894,51.9355044487818],[4.443252582654009,51.93557408814767],[4.44317246784216,51.9356427481994],[4.443089580830612,51.93571183537327],[4.443006421663612,51.93578002142796],[4.442922231249198,51.935848828354864],[4.442839809890012,51.935916480893745],[4.442756651853643,51.935984576895564],[4.442674902174085,51.936054841455864],[4.442611060836276,51.936110238618866],[4.442556995073669,51.93615717497359],[4.44250514984263,51.9362022415073],[4.442451971361868,51.936248465843306],[4.442398349018823,51.93629504613896],[4.442345023030251,51.93634135912937],[4.442292733618905,51.936386781551285],[4.442229185913119,51.93644200109443],[4.442173935370382,51.93648991651585],[4.442120014090543,51.93653685383366],[4.442067576934361,51.93658236485665],[4.44201454673234,51.93662841041425],[4.441961663710989,51.936674367244],[4.441908782472594,51.93672023417709],[4.441855453581526,51.93676663681263],[4.44179220316305,51.936821498962814],[4.441737097084939,51.936869415343324],[4.441675474144332,51.936922942205655],[4.441704876397715,51.93693549326158],[4.441657376528124,51.93697439212888],[4.441602183369204,51.93701952123168],[4.441547135498823,51.93706465147756],[4.441492680469699,51.93710924714125],[4.441437337794722,51.937154554740225],[4.441364091244962,51.937214459843055],[4.441375458627381,51.9372202142094],[4.44133223155199,51.937256450693376],[4.441286636364417,51.937294645635674],[4.440994918017064,51.93753607336163],[4.440979957988112,51.93754898666151],[4.440784838820189,51.937712629530964],[4.44073644030068,51.937752689335724],[4.440688045482383,51.93779256937538],[4.440236316788249,51.938145965312145],[4.440154289764151,51.93820831580186],[4.440011219696977,51.938317185676844],[4.439974207344885,51.93834825825563],[4.439651810348987,51.93847150301506],[4.43940964558041,51.93847961849552],[4.439247883512081,51.93848865143387],[4.439113493402069,51.9384961970132],[4.439000069905226,51.938502563219615],[4.43889989713093,51.93850813731793],[4.438787057089381,51.93851441813751],[4.438684990213019,51.93852015654912],[4.438545214267677,51.938527927692085],[4.438525412719049,51.93852902634373],[4.438526844367452,51.93854386934874],[4.438461636813451,51.93854648924544],[4.438382895262831,51.93854953921178],[4.438307645303494,51.9385525274176],[4.438249124423874,51.93855529105028],[4.438244148100836,51.938543026171764],[4.43808471584665,51.93855189654132],[4.438033027057253,51.93855480510681],[4.43794843320519,51.938559515400655],[4.437874759855391,51.938563594710025],[4.437759298460043,51.938570033153866],[4.437633635928258,51.93857746774711],[4.437561267360658,51.938581737173536],[4.437488755275485,51.938585915508575],[4.437413911005705,51.9385903446217],[4.437340524566567,51.93859460568975],[4.437267574327013,51.938598870236376],[4.437195205691564,51.938603139437255],[4.437123856774653,51.93860732694625],[4.437054401904722,51.938611349943265],[4.436903349514397,51.93860905048217],[4.436832446283288,51.93861279197873],[4.436832335107487,51.93861117310302],[4.436796801278351,51.93861349260868],[4.436757045011523,51.93861604763279],[4.436758778297341,51.93863035377515],[4.436683109865544,51.938639360029654],[4.436613420108283,51.938647605585594],[4.436612448775324,51.93865227188823],[4.436540386020676,51.93865582405897],[4.436462933773986,51.938659782042116],[4.436393344776467,51.93866326423902],[4.436320262252938,51.93866689791572],[4.436248488359302,51.938670542131604],[4.436178170403334,51.9386741081929],[4.436103777300957,51.93867782102184],[4.43602443281627,51.9386818532969],[4.436019109949103,51.938644776533756],[4.435979502823142,51.9386471527266],[4.435936400274324,51.938649770287924],[4.435861084106318,51.93866273391998],[4.435786549400669,51.938666265627056],[4.435714635773754,51.93866963872359],[4.435642285922547,51.93867300824564],[4.435569678313021,51.9386816790069],[4.435498966648876,51.93869009540753],[4.435426940603274,51.93869877078845],[4.43535433291135,51.938707441416476],[4.435282892238807,51.93871594167325],[4.43520431800787,51.93872136390139],[4.435078919082591,51.93873758891304],[4.434964242091811,51.93874677254118],[4.434924921689931,51.938750022611735],[4.434812951307547,51.9387687291377],[4.434675502655036,51.93880864038014],[4.434263421849303,51.93891649215343],[4.434030773612845,51.93898175235532],[4.433989056477056,51.93899444785235],[4.433910768995343,51.93902401536453],[4.433846711670521,51.939047765628516],[4.433853988110434,51.939054386428005],[4.433849304604629,51.93905578665369],[4.433770033839941,51.93909055958322],[4.433758399046452,51.93908372365982],[4.433614448100261,51.939130466334475],[4.433581279135802,51.93914466922063],[4.433553522614901,51.93915738790859],[4.43350616944591,51.93918208246536],[4.433472292833432,51.93920221216551],[4.433398734353451,51.939235053655565],[4.433350611289896,51.9392480565108],[4.433324387135701,51.93926805049874],[4.433229654913164,51.93933506616802],[4.433135342082508,51.93940012561449],[4.433086574284324,51.9394318287501],[4.433030920345697,51.93947002879077],[4.432913856183296,51.93954696634309],[4.432792761477994,51.93963219465835],[4.432716391947586,51.939694603920834],[4.432688995060706,51.93971637701257],[4.432608029056914,51.93976922978777],[4.432599465717596,51.93976499846306],[4.432539896339621,51.939806735023744],[4.432523786612172,51.93981132331887],[4.432445970127959,51.939866511669706],[4.432368444269426,51.939921702329855],[4.432327338588602,51.93995345839019],[4.432280057084936,51.93999523169407],[4.432256451743382,51.9400178714357],[4.432234168434201,51.94003989269694],[4.432215906690764,51.94005745223635],[4.432197796074875,51.94007474333759],[4.432091493036583,51.94017689108596],[4.432051397301587,51.94021584626711],[4.43204545860252,51.94022155083195],[4.431979080540122,51.940285910453156],[4.431954191194276,51.94031420262502],[4.431955559277069,51.94031825868424],[4.431934421609415,51.94033426672486],[4.431956532532221,51.94038190704569],[4.432180413042104,51.94048871452497],[4.432106633837316,51.94054820511127],[4.432075181412664,51.94053427770104],[4.432058519225512,51.94054841650231],[4.432024288987839,51.940529702467224],[4.431902396397407,51.94047104024243],[4.431805312398151,51.940422089594826],[4.431783909942344,51.94043344826574],[4.431744019299337,51.94045453534561],[4.43173927142686,51.940452114740026],[4.431690135619774,51.940479823301594],[4.431598781869449,51.94053135951036],[4.431383890967418,51.94064457908084],[4.431298563782669,51.940690357308824],[4.430987692178658,51.9408509755729],[4.43070000021049,51.94099524226768],[4.430713159916618,51.941005596515545],[4.430613066063078,51.941075433902085],[4.430536043313934,51.9410931443108],[4.430507774234354,51.94107520642726],[4.430465575981947,51.941076211376995],[4.430411786394844,51.94110930176733],[4.430310949303032,51.94117781150286],[4.430221563682793,51.94123854020057],[4.43001860833215,51.941378281419105],[4.429993300218083,51.94139883943436],[4.429927951198119,51.94144199280412],[4.429911132709773,51.94145318171731],[4.429820466622713,51.94148318507616],[4.429502942095541,51.94162108460664],[4.429210253990668,51.941748201378616],[4.42891779938761,51.94187520247822],[4.428460988960301,51.94206518641782],[4.428222625467445,51.942200770677594],[4.428190971505804,51.942218759697816],[4.42813471256224,51.942251559254416],[4.428015672449284,51.94228408035164],[4.427905814303785,51.942312972870916],[4.427823293066596,51.94234010182802],[4.427743198814968,51.942359825810634],[4.427644061413497,51.94235730892919],[4.427358463039107,51.94238904525054],[4.427326220383298,51.942393725858615],[4.427270345353109,51.942401719141415],[4.427116563997,51.94239722759106],[4.426961840829593,51.94233475059482],[4.426951956997813,51.94232765863633],[4.426760646595065,51.94224792974611],[4.426610306063504,51.94218527234928],[4.426562588708626,51.94216546675873],[4.426684922073449,51.94204224140147],[4.426738762168696,51.94206137785668],[4.427117777328082,51.942197596965336],[4.427203605423212,51.94221717417314],[4.427234308703068,51.94222326755237],[4.427329708585419,51.94223051831629],[4.427426779686983,51.94222762533721],[4.427509025761903,51.94221813936249],[4.427589454089592,51.942203874448225],[4.427656972191907,51.94218869513206],[4.427704133977555,51.94217325977399],[4.428215058676372,51.94194893360288],[4.42847974009655,51.94182722688435],[4.428625363217458,51.94175731305009],[4.428897322072929,51.94160797933031],[4.428957454051086,51.94157763794549],[4.429031220626522,51.941542194158494],[4.429097911374202,51.941511187050324],[4.429318932421055,51.94141105526881],[4.429365926579578,51.9413897751865],[4.429389277270702,51.9413791788897],[4.429436269446072,51.94135798865109],[4.429479006270898,51.941338561485274],[4.429571947606254,51.94129734096301],[4.429629815127258,51.94127084596405],[4.429663601133388,51.94125512111591],[4.429721070627388,51.9412268250777],[4.429777392075315,51.94119780056195],[4.429865798419985,51.94115096984637],[4.429953630593291,51.941103774839824],[4.430062358172973,51.94104515436246],[4.430192057465801,51.94097834493385],[4.430308735352966,51.940921982201054],[4.430429271666908,51.9408688147971],[4.430469788136746,51.940851166959945],[4.43049826980463,51.940838634667976],[4.430522052348094,51.94082822143772],[4.430547158897104,51.94081709987421],[4.430569328493566,51.940807302724416],[4.43058121975016,51.94080209610265],[4.430604713346709,51.94079159061731],[4.430634666278658,51.94077826127385],[4.430664473781657,51.94076493073971],[4.430770413232567,51.9407128577195],[4.43087111115577,51.94065694871271],[4.430933861765546,51.94061961638986],[4.430995177298685,51.94058137348635],[4.431098946803314,51.94050958814068],[4.431153534912508,51.94047308820234],[4.431197506103732,51.9404434232629],[4.431357712806963,51.94032337745954],[4.431424500567228,51.94026783050474],[4.431727108220079,51.94001617764239],[4.431948346423017,51.939832042724404],[4.432026060121305,51.939767352739615],[4.432125964096542,51.93968431711645],[4.432160608672535,51.93965547493588],[4.432177930943823,51.939641053841704],[4.43239452918812,51.93946088040663],[4.432532815259159,51.93935234040033],[4.432607418428246,51.93929775511806],[4.432682453815,51.93924335307334],[4.43279073262393,51.939163036569354],[4.432896047001021,51.9390812217481],[4.432998441258174,51.93899171571781],[4.433015001609892,51.93897890629602],[4.433036266475142,51.93896370808503],[4.433058968197491,51.938949330519726],[4.433095038705317,51.93892929964046],[4.433133228344007,51.93891083201403],[4.433172412340645,51.93889416120817],[4.433212593147086,51.938878487241695],[4.433253116700548,51.938865162110254],[4.433295564677895,51.938854351455134],[4.433370939153398,51.93883869330478],[4.433422021763966,51.93883011894646],[4.433470900380255,51.93882260533934],[4.433477026473458,51.93882175615665],[4.433573381123265,51.938804290533895],[4.433577903941471,51.938803608117084],[4.43364895273815,51.93879303829989],[4.433717403292156,51.938781548492344],[4.433843804628498,51.938759921821735],[4.433908765368242,51.938748403605416],[4.433970986272696,51.93873578448819],[4.434032922054574,51.938722893363796],[4.434534667247451,51.93861464537595],[4.434535660762591,51.938614428707105],[4.43455268100122,51.9386107643706],[4.434721190257148,51.93857440378337],[4.434853397172657,51.93855327250297],[4.435489840320959,51.93847563953816],[4.435652913569963,51.93845692350398],[4.43581730351687,51.93844332351617],[4.436390196391218,51.93841353097148],[4.436647540225104,51.938398730950574],[4.43729863085043,51.93836127854017],[4.437376886516275,51.93836056245403],[4.437707809138472,51.93837087585062],[4.437786763339677,51.93837151344697],[4.438096898670839,51.93836282643151],[4.438608920663275,51.93834848673697],[4.438689752535725,51.938342846744646],[4.438821912574377,51.938330699395884],[4.43937925719078,51.93827946352467],[4.439447910793182,51.938269958544694],[4.439514982995532,51.93825682729684],[4.439647427538091,51.93822427683362],[4.439729272910137,51.93819814992695],[4.439786548950869,51.93817508790116],[4.439840969188976,51.93814952193909],[4.439909183018749,51.93811189631107],[4.439972963109915,51.93807142144164],[4.440032000326344,51.93802827462269],[4.440320298485154,51.93780461945221],[4.440543042299599,51.9376137750745],[4.440747271672955,51.93743879920584],[4.440766086003143,51.937422411346446],[4.441162968789335,51.93707429793063],[4.441348154866604,51.93691186891179],[4.441725694383049,51.936580694620396],[4.442067892517991,51.93628054287292],[4.442343728148267,51.936038580383034],[4.442570655162998,51.935839532131034],[4.442925415909471,51.93552923167353],[4.443200160894348,51.93528890338368],[4.443371648993855,51.93513890054853],[4.44337157894079,51.935138774143546],[4.443626612480807,51.93491587762357],[4.44369131759735,51.93486767785524],[4.443718898625456,51.93484920258339],[4.443780227492444,51.934809425104476],[4.443835908667134,51.93477544496886],[4.443918175605358,51.93472882419627],[4.444007387220449,51.9346838770586],[4.44406769806522,51.93465793395162],[4.444295253600171,51.934575804231685],[4.44431947147076,51.93456512206636],[4.444344727820417,51.93455345946126],[4.44437274470947,51.93454190887691],[4.444445190702202,51.93451974828749],[4.444614468797244,51.9344844314784],[4.444928634536727,51.93441881512716],[4.445054956280628,51.934303063559916],[4.44506559970951,51.93429478931001],[4.44507619601303,51.93428876187079],[4.445087017125859,51.93428588229729],[4.44510259466475,51.93428501836488],[4.445116810912973,51.93428666037399],[4.445136078142679,51.93429014060733],[4.445165489064761,51.9342537021485],[4.445598784799443,51.93378391525174],[4.445653712739922,51.933730242853436],[4.445516072690775,51.93368545507464],[4.445293382883605,51.933605199259304],[4.445128709704774,51.93353205961834],[4.445032011306568,51.93347654316423],[4.444947378696287,51.93342813456704],[4.444859270158708,51.9333790688327],[4.444769730562668,51.93332891290791],[4.444684379118543,51.933280138804406],[4.444598857957745,51.933232531815484],[4.444424817750692,51.933134686865685],[4.444339310346018,51.93308645058105],[4.444243304973887,51.93303264688645],[4.444146010220281,51.932977933892715],[4.444050432036438,51.93292458290204],[4.443953572023259,51.932869963120936],[4.443873086197881,51.93282500273367],[4.44378858257734,51.93277749319512],[4.443700361397636,51.93272698746793],[4.443525900279395,51.93262859845483],[4.443438395285073,51.93257863760127],[4.443353190209971,51.932529953572825],[4.443267413222281,51.9324808154511],[4.443188535566885,51.93243550794703],[4.443100442231398,51.93238590166249],[4.443018122908653,51.93233831921189],[4.442932622309737,51.93228990216128],[4.442838774637202,51.93223737305255],[4.442672103783154,51.93214210150267],[4.442418157415813,51.93199992610516],[4.44224801994,51.93190363731713],[4.442092972531265,51.93181582914337],[4.44155653615891,51.93151326810184],[4.441383664727113,51.931415787504314],[4.441227319833644,51.93132760817453],[4.440781973635962,51.931077641645686],[4.440582345171803,51.930966641056756],[4.440577351995351,51.93095518511653],[4.440577329704485,51.93094934223884],[4.440353258678584,51.93082529049265],[4.440129672391566,51.930698995023675],[4.440117320866038,51.930698625853445],[4.439833123351528,51.930536875184124],[4.439426510656921,51.930305642519826],[4.439414427249457,51.930306354088934],[4.439138530072935,51.93015114053733],[4.438496068835192,51.9297829010916],[4.438288698305562,51.92966724977015],[4.437040078470433,51.92895541079959],[4.436985766769902,51.928972859458554],[4.436948550390139,51.92895197433568],[4.437007187172972,51.92891220557547],[4.437043254126849,51.92888775100769],[4.43703305238733,51.928882005622626],[4.437028039382629,51.928885290949395],[4.436699850131496,51.92870097467984],[4.43667095300735,51.92872053430353],[4.436609574029997,51.92876208746631],[4.436118577757022,51.92848683483361],[4.43607923479206,51.92842907824854],[4.434734346967204,51.92767328919523],[4.434722697825288,51.92766726221457],[4.434731832631503,51.92766158341266],[4.434574507722846,51.927572847774876],[4.433882784603881,51.927186295672335],[4.433723316861206,51.927095923512425],[4.433744116850097,51.92708180006478],[4.433376306280601,51.92687486077048],[4.433359323406716,51.92685916339008],[4.433332827939211,51.92687378886964],[4.433291610068352,51.92685116222511],[4.433210726781003,51.926805382164126],[4.43313379567493,51.92680628589075],[4.433008306148179,51.926810507779656],[4.432397590177929,51.926831049995506],[4.431970192736488,51.926838139500624],[4.431680994735525,51.92684293516387],[4.431654024576505,51.926845673240365],[4.431629130728068,51.926852643927646],[4.431608009753925,51.926863375624556],[4.431460673619644,51.92696232182101],[4.431242212590647,51.92710903111526],[4.431204349603271,51.92713444908924],[4.43098467786294,51.927281948066174],[4.430896817638205,51.92734066716233],[4.430494239955805,51.92760966162794],[4.430285862303238,51.92774889166575],[4.430278482832877,51.927754045087546],[4.430275531427079,51.92775608848169],[4.430146398067241,51.92784591379465],[4.430030252009609,51.9279266761598],[4.43000693322856,51.927942935755276],[4.42990495473189,51.92801383581158],[4.429899937475438,51.928017300578105],[4.4298217175134,51.928071764794055],[4.42965611042859,51.928201472374035],[4.429498633800684,51.92832486392744],[4.429504681907488,51.928327609835705],[4.429495351128069,51.92833562372207],[4.429488725368541,51.92833269333149],[4.429401218097332,51.92840126590488],[4.429070867110515,51.92866015636293],[4.428533434083357,51.92908133067797],[4.428038268288832,51.92946936423116],[4.427742734484213,51.92969104287267],[4.427595363775313,51.92979689637831],[4.427481070321273,51.92987896576517],[4.427289398858357,51.9300166011012],[4.426904465437572,51.93027564209161],[4.42622788192059,51.93073093222498],[4.425920949749829,51.93093746594695],[4.42585241299266,51.930987422456646],[4.425798345586963,51.93103390174668],[4.425564116197546,51.93123549200866],[4.425357334437771,51.93141345015487],[4.424826425415503,51.931870355583584],[4.424607476771276,51.93205193418291],[4.424572687873461,51.932080772979525],[4.424537898930921,51.93210961176563],[4.424197567358583,51.93239193961754],[4.423064120112978,51.93333214367903],[4.422329053654692,51.933941754838365],[4.422294261826781,51.933970592945876],[4.422167379544977,51.93407588879292],[4.421955105293645,51.93423684310504],[4.4219514048915,51.934239868909565],[4.421930830723714,51.93425668878565],[4.421880062044811,51.93429815966403],[4.421857121025781,51.934316847737605],[4.421853715253121,51.934319696182676],[4.421753628961949,51.93439599806861],[4.420756136903496,51.9352109951843],[4.420643220005537,51.93530220193191],[4.420607850267532,51.93533076513241],[4.42057248048449,51.935359328322036],[4.41979551444591,51.93598691646816],[4.419760143628397,51.93601547940824],[4.419724772765847,51.93604404233742],[4.419262281897653,51.936417584677976],[4.418911412703702,51.936699280340434],[4.418779854279171,51.93680489361997],[4.418394903432707,51.93711570034699],[4.418001358838,51.93744710919089],[4.417965646444693,51.93747791597861],[4.417889033588816,51.93754407102852],[4.417832222199531,51.937602389277245],[4.41779742255953,51.93764479907186],[4.417694034361904,51.93783972227324],[4.417681640247161,51.93784797963738],[4.417646570904123,51.93788265680948],[4.417629240589386,51.937910738673835],[4.417601715186042,51.93790583750791],[4.417459172597273,51.938048392533744],[4.417427175145397,51.93810512648839],[4.417400446799096,51.938132007202015],[4.417413497242445,51.938136465421486],[4.417398097794615,51.93815593394644],[4.417347108711873,51.9382206820267],[4.417330937133941,51.938262436357746],[4.417326748108508,51.938265835516845],[4.417334109733233,51.938275801884544],[4.417319472607681,51.93829026993519],[4.417397206830911,51.93832113145605],[4.417392015041147,51.938327866173566],[4.417468017689719,51.93836079876135],[4.417463665956825,51.938367019061324],[4.417532065546049,51.93839712933932],[4.417625781944164,51.93844823941586],[4.417701243768195,51.938489401115525],[4.417769518963465,51.9385266383321],[4.417763561222188,51.938533151019236],[4.417793376484428,51.938553262068375],[4.417847986619553,51.93850939763063],[4.417881679370753,51.938525046234965],[4.417822046000802,51.938572554672675],[4.418040484167899,51.93872069287816],[4.41813512828568,51.93878750460054],[4.418130595730472,51.93879064927059],[4.418161148044867,51.93881031685981],[4.418175568305535,51.93880252558382],[4.418200081520968,51.93881899731462],[4.418241368609748,51.93884666348399],[4.418302884449728,51.938887170525796],[4.418372275537173,51.93893340536184],[4.418387645818642,51.93894225113485],[4.41845564699492,51.93898550816921],[4.418519371431045,51.939024774863235],[4.418743244142252,51.93913691149036],[4.41886744431619,51.93918404692213],[4.418929269140707,51.93920352242582],[4.418925653468484,51.93920933535646],[4.418970077986447,51.939219678755116],[4.419061786771509,51.93924263624519],[4.419220871319851,51.939283946174506],[4.419388926802485,51.9393273971515],[4.419908637040919,51.93953293281898],[4.420104135110294,51.93961903557102],[4.420390361992987,51.93973995156388],[4.420486204940747,51.9397803801563],[4.420568876598128,51.93983139702863],[4.420755030054531,51.93994636571818],[4.420853030914668,51.94000820503485],[4.420860431660396,51.94001572654724],[4.420952364389381,51.94010951595284],[4.421057074308939,51.940238106957956],[4.421080737080103,51.94026715537406],[4.421186252535632,51.940398898948175],[4.421248195543992,51.94049414957286],[4.421246670054305,51.94055831690545],[4.421359583193972,51.9405760535157],[4.421368723243187,51.94058385894551],[4.421402800431295,51.94059528495337],[4.421450024002307,51.94059729083199],[4.421450061193586,51.94060232485225],[4.421450206021374,51.94067675310964],[4.421435816170631,51.94067636524889],[4.421413151444708,51.940675280200956],[4.42139221019496,51.94067520706009],[4.421326713357335,51.94066267799852],[4.421320787269597,51.94066367201395],[4.421317234385567,51.94067198441157],[4.421306990692295,51.940677626109604],[4.421285438847,51.9406998580767],[4.421273164184885,51.9407221662559],[4.421131301817545,51.94089813354562],[4.421036891025008,51.941054661361534],[4.421051659229401,51.941057749012266],[4.421009433129848,51.941114121201586],[4.420971148520327,51.94116980666463],[4.420951436670037,51.941173419959064],[4.420940301062816,51.94119076667129],[4.420952528089379,51.94120381099196],[4.420907842858441,51.941252792139444],[4.420900828647406,51.94126109405533],[4.420888018815252,51.94126161799162],[4.420869453973497,51.94128627443561],[4.42080987223382,51.941365155627246],[4.420816454943672,51.941368122095376],[4.420693373091874,51.94152343420501],[4.420684143723773,51.94152180327905],[4.420683430811796,51.94152181539626],[4.420684038453141,51.94152196421165],[4.420616138835266,51.94160886682909],[4.420609549149848,51.941617711544325],[4.420571818517858,51.94160842157066],[4.420509293895245,51.94169289640284],[4.420516761082548,51.94169869263511],[4.420516559323257,51.94170806626977],[4.420531729314638,51.94170871234078],[4.420529874221739,51.941716517324146],[4.420502725226648,51.94180279310502],[4.420484363210045,51.94183287138837],[4.42051760651249,51.941841854832326],[4.42045027807105,51.94192921148955],[4.420426638992875,51.94195984862252],[4.420401801740022,51.94199209387832],[4.420379510023759,51.942020944325634],[4.420346745143523,51.94206337158666],[4.420319212909855,51.942099190174474],[4.420273425279279,51.94215876877385],[4.420243702312819,51.94220176034884],[4.420253214596255,51.94220579363832],[4.42020089632321,51.94225794770637],[4.420116423038072,51.94234444406691],[4.420096793551922,51.942337451142905],[4.420063952428989,51.942376641739756],[4.420087636159216,51.94238447700627],[4.42005268368698,51.94242715585609],[4.419998589211976,51.94248747501097],[4.419911992164669,51.94257799870563],[4.419811561247565,51.94268279056022],[4.419805215482608,51.94268974959486],[4.419792690830598,51.94268444204501],[4.419771723670488,51.942709159451],[4.419606588738241,51.94286708172801],[4.419520492259451,51.94295455307388],[4.419472164390803,51.943003683479326],[4.419454146624608,51.943023130715325],[4.419264156964694,51.94320718505969],[4.419248861164183,51.943221800733404],[4.419116024344776,51.94334538142745],[4.418875532874831,51.943589486834234],[4.418768983494457,51.94372149037871],[4.418690179231468,51.943812607706995],[4.418645690858063,51.943873805373606],[4.418714845101273,51.943900370538195],[4.41872664782166,51.943918256540094],[4.418730391030539,51.9439470154976],[4.418703977997354,51.94397938225174],[4.418611994988608,51.944090085382946],[4.418535945769001,51.944176829792546],[4.418345656628073,51.94440807127598],[4.418319366169247,51.94444012434763],[4.418292932189022,51.94447208634312],[4.418054539909689,51.94476198722268],[4.417938797879612,51.944794021996586],[4.417870994663424,51.94487598001663],[4.417916851072105,51.944948268239244],[4.417683133515951,51.945176364138376],[4.417709633119381,51.94522898719212],[4.417716210146057,51.94523425490973],[4.417574599680243,51.94538713686335],[4.417380683257059,51.94559661203528],[4.417370146709499,51.94559283973304],[4.417276122007479,51.94558226641862],[4.417139104957796,51.94573718125309],[4.41709054450491,51.94579008405959],[4.417072962806265,51.94580944464548],[4.417049556049577,51.94583585830053],[4.417033905642871,51.94585334717232],[4.417017968252729,51.94587065389868],[4.416996531596491,51.945893398400706],[4.416974662519764,51.94591595955539],[4.416908012414654,51.94598141416232],[4.416779775404263,51.9460960773905],[4.416714826182977,51.94615279984866],[4.41662910697357,51.94622831714918],[4.416591340633561,51.94626158747615],[4.41643802086791,51.94639665454952],[4.416231457267641,51.946565645862286],[4.415847842558207,51.94682342167595],[4.415802208975028,51.94684848293309],[4.415607505646942,51.946993481225846],[4.41560606883938,51.94699266036407],[4.415581596740223,51.9470077390716],[4.415585759787688,51.94701029032784],[4.415581849828291,51.94702293219298],[4.415577415868468,51.94703021241814],[4.415569056909395,51.94703603998404],[4.415515976799655,51.9470623879162],[4.415295158928325,51.94716384399987],[4.415248138460537,51.94718574750994],[4.415204313549683,51.94720785719207],[4.415085412567104,51.94727187211091],[4.414978697388784,51.94732931799334],[4.414929283520913,51.94735425777215],[4.414876691498983,51.94737818248515],[4.414807112523458,51.94740735996736],[4.414735315156352,51.94743620445526],[4.414449247928839,51.947607168857125],[4.414331787793186,51.94766366234785],[4.414233362553378,51.94776135597639],[4.414133378586615,51.94782825905644],[4.414081884262155,51.94785451160585],[4.413852301717513,51.94792580704256],[4.413743623155346,51.9479851052301],[4.41364736882506,51.9480335668425],[4.413564673951901,51.94806982602687],[4.413478604332149,51.94810742350226],[4.413360125439964,51.948159799726106],[4.413327419897146,51.94818757384489],[4.413260361624935,51.94821712186021],[4.413225549271135,51.94824008748341],[4.413224236434856,51.94824897549797],[4.413185136159818,51.948265757269844],[4.41314834675034,51.948283969408905],[4.413142332061146,51.94827960497321],[4.412777883883637,51.948463731804786],[4.412648895498884,51.94852908991181],[4.415146967112784,51.949572743065865],[4.418165408756986,51.95083337776392],[4.419508085940497,51.95137014241276],[4.421746395186992,51.95226353329367],[4.423270522904805,51.95287273713506],[4.425385178126072,51.95371521042111],[4.42692609465955,51.95433305180556],[4.428488934794118,51.95495493456963],[4.430363046683399,51.95570542338274],[4.432072300791241,51.95638664213604],[4.433510652744531,51.956962825963025],[4.436139823152677,51.95801083777313],[4.439197185014886,51.95923280341927],[4.441039497106385,51.959967384689804],[4.446076960091809,51.9619783280299],[4.44650103381688,51.962166483746174],[4.446977217073901,51.96242895075511],[4.447228816687415,51.96260729349261],[4.447773497872107,51.963040155446016],[4.448377941713095,51.96356038576228],[4.449074873601319,51.96421629816536],[4.449935676720522,51.96496269821195],[4.450229436271462,51.96517622849664],[4.450717294116363,51.965447330205365],[4.451296996404697,51.96570224391949],[4.451861010045547,51.96590519208075],[4.453098207730267,51.96621452758113],[4.453314663366739,51.96627831338911],[4.454976486426263,51.9667680051826],[4.455641933661349,51.966893600057254],[4.45697784022241,51.96714572593884],[4.457499790954935,51.966999876040646],[4.45906753857487,51.96766588832516],[4.460702437726733,51.968424767203615],[4.460805053433796,51.96846819981776],[4.461431205178661,51.96878218785724],[4.461811414515157,51.96903029234609],[4.462343822403502,51.96909758024162],[4.462324066191071,51.96949128255212],[4.462291285416154,51.969801629144015],[4.462239397759844,51.970147897104034],[4.462118853378537,51.970719771656235],[4.461973289221545,51.97124361144572],[4.461790984459644,51.97189960139981],[4.46162071654082,51.972512252391056],[4.461614691157544,51.972538362074474],[4.461600048692833,51.9726019227539],[4.461260222881637,51.973786429768886],[4.460992852700881,51.974732326150914],[4.4616496957851,51.975441004500354],[4.462005787898139,51.9756361185175],[4.462144481607498,51.97576529798872],[4.46222388491786,51.97584124753333],[4.463364463622004,51.976932231912805],[4.463397256108942,51.97697326209301],[4.463421910437453,51.97701791372057],[4.463437593552733,51.97705433317413],[4.463445725339584,51.9770927337627],[4.463447806306753,51.97712810259594],[4.463447309858588,51.977174129747006],[4.463435609606091,51.97727793806887],[4.462972762063002,51.9775146332331],[4.462961029687008,51.977542927325146],[4.46298326988677,51.977573339978285],[4.46316094462308,51.97769086944635],[4.463501055637198,51.97790054971327],[4.463591683130872,51.978041754352795],[4.463977788371118,51.97838119534607],[4.464487335205592,51.97862995466181],[4.464639555947475,51.97867759295506],[4.465244334939007,51.97879672388259],[4.46564458213737,51.97907645941946],[4.465998986841561,51.979236896422215],[4.466105798847422,51.979267395365945],[4.466279022729802,51.97911602482208],[4.467316727988829,51.97971623629579],[4.467977316544864,51.980121215784706],[4.468741507376144,51.980573507708066],[4.469011363276898,51.98045434788307],[4.469787940289334,51.980074675114686],[4.469931354199322,51.980212538024965],[4.470004471446004,51.98031503062659],[4.47006312052839,51.980409662158905],[4.470124050291662,51.98049527782159],[4.470218159289304,51.98059276542204],[4.470518194290161,51.98089425551989],[4.471083842272129,51.981462664524194],[4.471473077039367,51.98185979392686],[4.471647047828607,51.98203161796438],[4.471820957779084,51.98220648841835],[4.472028757386348,51.982412066836545],[4.472221833335217,51.98261448321063],[4.472371665009138,51.98276176810041],[4.472498082835693,51.98284799052514],[4.472595298056212,51.982915711845266],[4.472702009341951,51.983001780851616],[4.472779083395796,51.98309065758903],[4.472846289274645,51.98317946657213],[4.472860456893779,51.98321001229646],[4.472927352997751,51.98331403663331],[4.47299936967622,51.983408968232496],[4.473052547529584,51.98346112916477],[4.473096167194245,51.98349799800199],[4.473183964900569,51.983544342513234],[4.473329798748802,51.98364593265572],[4.473431702909145,51.983725878309976],[4.473533545559749,51.9838088615639],[4.473601064076063,51.983882445723744],[4.473653794664996,51.983955915023],[4.473696733541072,51.984026261116234],[4.473748921184153,51.98412712360067],[4.473806338593824,51.984212808851794],[4.47388327846859,51.98430776911062],[4.47407643275092,51.98450714473664],[4.47427931917955,51.984712671879166],[4.47446785222407,51.98489679317103],[4.474926676720252,51.98533895330357],[4.475092743469282,51.98550058051111],[4.475252328331681,51.98567389642494],[4.475668557237907,51.98614538595367],[4.475785693454792,51.986270750329716],[4.476373257807174,51.98681893420147],[4.476784487039809,51.987222246866885],[4.477088817666483,51.987520858332466],[4.477370462007333,51.98774879553748],[4.477987379977804,51.98834183564597],[4.478138965842946,51.98849135560497],[4.478251232422291,51.988576033103136],[4.478338860356995,51.988631504811],[4.478509320120203,51.9887363166812],[4.478689312730951,51.98885642867964],[4.478791361672492,51.98893027632807],[4.478864077737104,51.988991726816806],[4.478970507359657,51.98909300553208],[4.47912986810364,51.98925861993188],[4.479288120964859,51.989479020372116],[4.479330642584769,51.98957067314817],[4.479318261371489,51.98969538503135],[4.479369837480413,51.98982668467646],[4.479620783936721,51.990096509235855],[4.480035899319746,51.990538068723474],[4.480069306827152,51.99059312107295],[4.480073749355167,51.99061750556949],[4.480068383375622,51.990638776287724],[4.480053223614957,51.990656924351285],[4.479961730172874,51.99069651507796],[4.480025820760461,51.99076352519971],[4.480644259637823,51.99138881369763],[4.481106579391265,51.99167361133683],[4.481667698483401,51.99227338351175],[4.481804586205341,51.99243171114141],[4.481937035811582,51.992584898910906],[4.482010951386736,51.99267038323973],[4.482106095721634,51.99278042598233],[4.482183034979045,51.99279908491417],[4.482270349084473,51.992821688696694],[4.482332464075726,51.99285054350152],[4.482387810083283,51.992903858254614],[4.482484235540526,51.99299232879973],[4.483205480718801,51.99371505748779],[4.48408341751982,51.994615287364915],[4.484398898021204,51.99494211705756],[4.484972309417222,51.99553727496931],[4.485417259544153,51.995991977952436],[4.485921455963197,51.996500255769476],[4.486115809730229,51.996651710477586],[4.48624943178678,51.996762385893504],[4.486439417435786,51.99699946828326],[4.486590760980257,51.99699641992421],[4.486773424276001,51.99698189882578],[4.486853597527479,51.99697338877331],[4.48697654390226,51.99696824403232],[4.487096471248427,51.99696260866264],[4.487185575085982,51.99696258903971],[4.487262536275191,51.99696247649225],[4.487303997901131,51.99696226322261],[4.487389043291092,51.9969692864647],[4.487471504675639,51.99697881569493],[4.487522032021844,51.99698762433726],[4.487606735232412,51.99700372332395],[4.48767389492266,51.997020380277185],[4.487739100806332,51.997040069404676],[4.487798192547805,51.99706112298265],[4.487871067017683,51.997095612000436],[4.487981034511042,51.99715168746664],[4.488164474337816,51.99724951005411],[4.488341199411938,51.99734237327026],[4.488525524355701,51.99743389202575],[4.488735522943156,51.99753121540458],[4.488820821258954,51.99757001434236],[4.488923752729706,51.99761761285237],[4.489133907666004,51.99770721546912],[4.489352004264093,51.997798046816904],[4.489557800505524,51.99787778185105],[4.489706755900125,51.99793743390428],[4.489907730371919,51.99801222375443],[4.490198820438833,51.99811226608569],[4.490376688811032,51.998205134906904],[4.490461914341612,51.99824697922683],[4.490579212268723,51.99829724749513],[4.490810087805719,51.99839380034252],[4.491033878905334,51.99848420449372],[4.491138039969849,51.99852806214293],[4.491259064132596,51.99858140523969],[4.491453051843157,51.99866432786151],[4.49160228359551,51.998729354782554],[4.491866423352691,51.99885073356904],[4.492048621299435,51.99893566883621],[4.492272029968936,51.99904549210636],[4.492481263631172,51.999143980386975],[4.492619879370795,51.999209158990816],[4.492761916608014,51.99927366232018],[4.492911946713283,51.99933682398761],[4.493087493383546,51.99941738354878],[4.493427229212623,51.99958437507487],[4.493635682849302,51.999684257569356],[4.493840323580058,51.99978552195816],[4.494070625793411,51.99989258064416],[4.494278250094761,51.99999549384075],[4.494486319662957,52.000095839296485],[4.494652074562855,52.000169652652076],[4.494841126043406,52.00025393438754],[4.4951003100888,52.00036470658921],[4.495131009635034,52.00037782897493],[4.495242649729885,52.00044584710186],[4.495310791655052,52.00048966170873],[4.495373941676684,52.000536251885045],[4.495514129964381,52.0006370158914],[4.495639604916892,52.000734387418895],[4.495771109658953,52.000833215693945],[4.495906298606511,52.00093721320877],[4.496039974297599,52.001041909205554],[4.49617818915385,52.00114686412699],[4.49631529658253,52.001250417262355],[4.496443784470639,52.00134804441668],[4.496581548003231,52.00145675267551],[4.496720115967184,52.001563120825516],[4.496859423203581,52.00167042921602],[4.497002106574993,52.00178010001329],[4.497140643418004,52.00188740223317],[4.497280377640049,52.001992376298794],[4.497416298771062,52.002098723589256],[4.497553033552038,52.00220226343178],[4.497691647846606,52.00230652741633],[4.497831744895043,52.002412429376626],[4.497967714952281,52.002516439340184],[4.49810408692505,52.0026185735577],[4.498248346343074,52.00272545025545],[4.498394382785719,52.002837490666295],[4.498542734083609,52.002948137156686],[4.498610277141344,52.003003414747624],[4.498673743262772,52.00305351104471],[4.498737237979691,52.00310290641056],[4.498813322464472,52.00316667068943],[4.498933778534933,52.003269618591574],[4.498968553705563,52.003298446852895],[4.499119259066426,52.003538168841736],[4.499145343381534,52.00357711556575],[4.499216388595671,52.0036850745035],[4.499288575454056,52.00379350042684],[4.499359653568694,52.00389983258078],[4.499433336183087,52.00400851238406],[4.499508169365133,52.00411720980423],[4.499579557218408,52.00422633960869],[4.499648005793071,52.00433240905086],[4.499710340704274,52.00444053568428],[4.499786670538229,52.00454947790252],[4.499860720673388,52.004659562410964],[4.499933981390439,52.00477128583341],[4.500011088233862,52.00487928994867],[4.500086238141503,52.00499126121328],[4.500155371462321,52.00510038263535],[4.500225659644831,52.0052085689126],[4.500293307075082,52.005316267837465],[4.500366630206477,52.00542494430094],[4.500439985351606,52.00553128391841],[4.500514851407389,52.00563856968441],[4.500587422098713,52.00574631450453],[4.500661522373875,52.00585406180904],[4.500735996130125,52.005961353457366],[4.50080669357942,52.00606813123084],[4.500858427560553,52.00615651928362],[4.500895666065037,52.00624878011003],[4.500943220252752,52.00633643553499],[4.500999904701446,52.00642345857272],[4.501069906290613,52.00652719278571],[4.501120544387878,52.00660328503799],[4.501171240027912,52.00663889302286],[4.501224144868018,52.00666737167389],[4.501301741254974,52.00669417550941],[4.501401747846177,52.006719035630255],[4.501637170074736,52.006780482504965],[4.501850751001006,52.00683427710769],[4.501899828777552,52.00684564831559],[4.502215422432159,52.00696662630438],[4.502259781408323,52.00701562412856],[4.502311706186092,52.007079051592704],[4.502340346454741,52.00711640781902],[4.502387697437743,52.007178389651514],[4.502435058391349,52.0072811977731],[4.502445032305618,52.00730718688921],[4.502471482563045,52.00738983816514],[4.502478828810191,52.00743827004427],[4.502485996049999,52.00750093852337],[4.502495551075825,52.007655164876],[4.502506703038732,52.00783401401971],[4.502512175047641,52.007919114290246],[4.502520248244222,52.00803404031418],[4.50252902783136,52.0081921438983],[4.502533597570856,52.00824399753298],[4.502543392022862,52.008421533105874],[4.502556528154087,52.008606877917096],[4.502567592974667,52.008790903806684],[4.5025801494472,52.008970203908035],[4.502592058401457,52.0091468924423],[4.502602895312144,52.00930631480139],[4.502605374311238,52.00935857517522],[4.502609573242234,52.009410776565645],[4.502607498536932,52.00949893014939],[4.502606982693801,52.00954204458566],[4.50256231165837,52.00973233908085],[4.502554287214672,52.00982821409348],[4.502561369730413,52.00988634266408],[4.502566535762403,52.00993308625206],[4.502616871891902,52.010087538125994],[4.502685696756719,52.0102875482988],[4.502749074373262,52.01048018279545],[4.502813103170035,52.01067453896447],[4.502875970394951,52.01085765960494],[4.502935990570758,52.011043356520865],[4.502999364436462,52.01123555038066],[4.503055574392723,52.01140178525211],[4.503093884010592,52.01151256083133],[4.503113791695565,52.011607324322476],[4.503150816987195,52.01178766196668],[4.50320254194627,52.01201961464237],[4.50320116029104,52.01210887001072],[4.503202371319879,52.012225461190816],[4.503199729839525,52.012288487362355],[4.50319902645146,52.01246595290658],[4.503211006759258,52.0126391901852],[4.503232075370627,52.01281250469643],[4.503260081740029,52.01298932291732],[4.50328667553621,52.01316613051863],[4.503316165816933,52.013338636343796],[4.503347710961289,52.013513323836214],[4.503384747230454,52.013693229972986],[4.503401062268193,52.01377966993084],[4.503409317622723,52.013831596095415],[4.503447892130229,52.014110819724216],[4.503454302238279,52.01415438162645],[4.503469496118096,52.01425780159015],[4.503501239586862,52.01445795518211],[4.503535822229064,52.014655981797894],[4.503551255246377,52.01476059003081],[4.503574020119622,52.01484798621177],[4.503626668057445,52.01505262017709],[4.503665531614792,52.01524636434078],[4.503703557843166,52.015447868342356],[4.50374731630201,52.01564164021323],[4.503784584543264,52.01584615865085],[4.50383717776179,52.01604776291525],[4.503820597051047,52.01621343302815],[4.503822714372147,52.01621909375122],[4.503815536864589,52.01626394688302],[4.503785226506282,52.01638116433255],[4.503755679442817,52.016460392734324],[4.503717455404896,52.01655337146902],[4.503656570781911,52.01666000456251],[4.503605959580898,52.01674209499142],[4.503472756743575,52.01693152734615],[4.503423020163924,52.01700690978636],[4.503373366463219,52.0171091057885],[4.503331867371071,52.01722624809968],[4.503305763774853,52.01730809095361],[4.503293302018557,52.01737190624958],[4.503284614639728,52.01742236587594],[4.503258223881394,52.01762511206451],[4.503246657931842,52.01771440773889],[4.503227463094581,52.01790684410489],[4.503205479838964,52.01809882807212],[4.503185517200438,52.01829471926276],[4.503164310998499,52.0185536380689],[4.503153894388239,52.018691732405586],[4.503143760168999,52.01888640302489],[4.503131437256071,52.01908493128247],[4.503125353226652,52.01928697598053],[4.503121460745305,52.01948427318004],[4.503117542514156,52.01968287352534],[4.503116395579298,52.01988278903304],[4.503116604514342,52.020084871977595],[4.503119718530166,52.02028223075953],[4.503128375315318,52.02048221987203],[4.503134399595706,52.02067311972704],[4.503139735043423,52.02077044324182],[4.503145213964515,52.020870095875495],[4.503151818263222,52.021067049390496],[4.503165081864602,52.02145965346968],[4.503173110345045,52.02165532330376],[4.503179670029854,52.02185528763316],[4.503186206511896,52.0220556922223],[4.503194957508865,52.02225093600986],[4.503201337623096,52.022424562425876],[4.503211925701759,52.022774837073335],[4.503215235441914,52.022819768877945],[4.503221243325378,52.023011531439295],[4.503228715426735,52.02320071627723],[4.503237526555367,52.02339293132605],[4.50324348353189,52.02358728219791],[4.503250981340805,52.023775172854705],[4.503264154253533,52.02413626211473],[4.503271796205279,52.02428140415256],[4.503280311220821,52.02445245782658],[4.503289369768774,52.02463215360035],[4.503319289102868,52.0249605422428],[4.503335212134677,52.025111364287824],[4.503358314492818,52.02528382179865],[4.503379528526626,52.02534962463705],[4.503409154390485,52.025404129053236],[4.503461413634608,52.02545249337244],[4.503471053679371,52.02548677625854],[4.503492008787631,52.02556128706135],[4.503492464865023,52.02558913709757],[4.503494448204419,52.02570872702894],[4.503494385276105,52.02576362878642],[4.503492925428063,52.02588048730874],[4.503491342998289,52.026005776194125],[4.503489679675989,52.02613812050274],[4.503487941309268,52.02627722365506],[4.50349018486921,52.026498862833876],[4.503494170199747,52.02662924507807],[4.503497174682499,52.02675321110289],[4.503503797525374,52.02695672621222],[4.503511009542412,52.02718282503794],[4.503516462375047,52.027407247765254],[4.503521110329736,52.02762667578464],[4.503528355317117,52.0278511119468],[4.503536520843155,52.02807764035867],[4.503549161433301,52.02829892605506],[4.503552789673994,52.02852499793387],[4.50355878263493,52.02874938871161],[4.503571596793649,52.02898331361774],[4.503585937564128,52.02912137785577],[4.503614616010563,52.02944348283994],[4.503650552867721,52.02966283997251],[4.503925897660386,52.030645810622836],[4.503946950528654,52.03073547673306],[4.503975427067512,52.03086179099244],[4.503998829256258,52.03098457062562],[4.504008403026879,52.031028947097504],[4.504030781595509,52.031117913032666],[4.504045265947615,52.031168968885765],[4.5040816625873,52.03125799500824],[4.50410523860159,52.03129584292503],[4.504138792011443,52.031347994569806],[4.504152850774045,52.03136816249216],[4.504193765022614,52.03141432900512],[4.504259092057458,52.03147882649035],[4.50433007692648,52.03154463374899],[4.50436362897226,52.03157099711228],[4.504419190556356,52.03160675674037],[4.504469734105228,52.03163611481564],[4.504591806849913,52.03170295207827],[4.50482641098043,52.03182316174913],[4.504965555869029,52.031897092691345],[4.505061285487484,52.03194672570493],[4.505237847590325,52.0320373138064],[4.505555690049002,52.032199349040056],[4.505523722006487,52.03227014631145],[4.505492496316866,52.03230322412012],[4.50500847648422,52.03247116349162],[4.504217489501785,52.03214034280206],[4.503993433412838,52.03209936437551],[4.503622418428156,52.03209846844602],[4.502982136024472,52.0320967900179],[4.502487178021766,52.03209359343417],[4.501993930939539,52.03208936495744],[4.501479529367561,52.032087060634524],[4.500956697313575,52.032083647935984],[4.500450757379679,52.03208088146783],[4.499939794196527,52.03207494695006],[4.49942286793011,52.0320720932773],[4.498901705822519,52.032069726715925],[4.498379709010267,52.03206683020889],[4.498223328837927,52.03206587436985],[4.497582782504835,52.03206429041934],[4.497027485851664,52.03206140597599],[4.496408135134708,52.03205804332824],[4.495801975424532,52.03204577971928],[4.495325648547279,52.032040087377844],[4.494842544298502,52.03203590575792],[4.494340878787135,52.032030017395584],[4.493964380004746,52.031974542698684],[4.493481131203981,52.0319776441288],[4.493009688788604,52.03198136356263],[4.492534000093958,52.03198608253142],[4.492051575206578,52.031990236018736],[4.491580957024339,52.031994989685295],[4.49108501033236,52.03199902737164],[4.490575587432537,52.03200140532525],[4.490045975718294,52.03199893520959],[4.489510473298579,52.031995896462924],[4.488996918893803,52.031993544046095],[4.488487606926713,52.03198965775597],[4.487975732436814,52.03198783504377],[4.487452068299812,52.03198383466463],[4.486925862550488,52.03198085519865],[4.485880172756175,52.031975453012315],[4.485355642906921,52.03197247935529],[4.484093262362694,52.03196432277666],[4.483373037496035,52.031961690796564],[4.482665693408333,52.03195915336183],[4.481959573439529,52.03195445483709],[4.481226526928811,52.03194736965829],[4.480508633952234,52.03194473809389],[4.479786049265074,52.03194206599432],[4.47906467445419,52.031937223550514],[4.477892894108905,52.031934921583264],[4.47763424044356,52.031478927765136],[4.47752717376104,52.03132386529693],[4.477185793431258,52.03139532036659],[4.477087819846358,52.03142111543302],[4.47702982980135,52.03145072505265],[4.476978621011682,52.031481528618386],[4.476931089734572,52.031523551396695],[4.476876620752141,52.03158712910744],[4.476656560448627,52.0319237313962],[4.476471312236799,52.0321951116204],[4.476258739570516,52.03250863443236],[4.476110779470958,52.03275854116911],[4.475864859701816,52.03312710308556],[4.47562640662609,52.03343721552027],[4.475399605502816,52.03374822667772],[4.475166121623145,52.034068776471365],[4.474918109799203,52.034401213024076],[4.474685948523713,52.03472017214778],[4.474631760986681,52.03479891476963],[4.474507316969892,52.0350211460837],[4.474336169262858,52.035337377481085],[4.474169155995122,52.03564084991461],[4.474000615397244,52.03595550106539],[4.473833516153352,52.03626296328852],[4.473662442209567,52.03657439436134],[4.473492693530638,52.036885044470836],[4.473326802649125,52.037196515269635],[4.473152964402956,52.03751592399188],[4.472972361212519,52.03784887967634],[4.472884463904193,52.038024975899496],[4.472854524315581,52.038139312040755],[4.472790032497739,52.03827478171257],[4.472745294619259,52.038364329223455],[4.472923465060084,52.03847843862941],[4.473115317366488,52.03854496049321],[4.473520843303848,52.03865798420775],[4.474355349644839,52.03889564271259],[4.474956190753664,52.03906745062642],[4.474806167596163,52.03934922217736],[4.474668273305374,52.03932607771993],[4.474703974818729,52.039235650512744],[4.474669248923118,52.03913513167989],[4.474575396265768,52.039087259208884],[4.474130014963859,52.038958487748445],[4.473493203960799,52.03877393831085],[4.472978547362009,52.03862612638989],[4.472575447935838,52.038511411812095],[4.472249894118982,52.03848500907507],[4.471975166592435,52.03904977576947],[4.471669557018601,52.039035786896406],[4.471621305451775,52.039113828234974],[4.471573003795086,52.039195024160406],[4.47152242938606,52.039277586636715],[4.471472873040881,52.03935739750999],[4.47142294757303,52.03943956949181],[4.471376282028865,52.03951841405999],[4.471326388366903,52.0395990132444],[4.471276787016259,52.03968098993594],[4.471228477632064,52.039761790161585],[4.471178583430536,52.03984238927909],[4.471133552466419,52.03991966447348],[4.471084355590086,52.03999750947766],[4.471037055718942,52.04007595347829],[4.470989402703448,52.04015597670459],[4.470940136728709,52.04023717385585],[4.470890878849423,52.04031796656276],[4.470843221267073,52.040398187443266],[4.470790720185777,52.040485732269765],[4.470746633518895,52.04049471934057],[4.470606866580453,52.04046970391456],[4.469410838519914,52.04029185241546],[4.468766774953255,52.04019513837039],[4.467594947171921,52.04008165363291],[4.466561089103801,52.039991365843754],[4.46535876838383,52.03986496444362],[4.464601480686644,52.0397894710669],[4.463634279475008,52.039699679715355],[4.462930373390165,52.039629133452124],[4.462482752150246,52.039576289855106],[4.461980685283708,52.039514594468066],[4.461618589783621,52.039476864194555],[4.461389190637196,52.03943775819336],[4.461012234759901,52.039363810980895],[4.460462107236868,52.039268050774545],[4.460083116567778,52.03919889345978],[4.459279126050214,52.03905836095727],[4.458829840372013,52.038962533742634],[4.458730390549736,52.03909125752109],[4.458598651720386,52.03906339674039],[4.458700737326184,52.038927772625904],[4.458528911656754,52.03888538469],[4.458008213561016,52.038778132878285],[4.457667248505764,52.03870451280804],[4.457578219594008,52.0388457671151],[4.457432860505371,52.039081577215114],[4.457287604195,52.039312363315105],[4.457145983883035,52.03954205437702],[4.457113111862929,52.03959768591799],[4.457205071531092,52.03962076686962],[4.457128258632387,52.039741434521886],[4.456766573305118,52.03965810233143],[4.456478899658629,52.03959043689116],[4.456317521356934,52.039854621901384],[4.456190792697178,52.04006599391221],[4.456128868920358,52.04016721942334],[4.455975975996046,52.04041637918071],[4.455784082251991,52.04073601556441],[4.455633873408183,52.040982086048196],[4.45545838579332,52.04127098480177],[4.455286389685716,52.04155239644755],[4.455119872120441,52.041835909595335],[4.454944463483729,52.04212139253654],[4.454772361108191,52.04240759351738],[4.454604871867025,52.04268425791216],[4.454433958155626,52.042966369006244],[4.454267729250124,52.04323621156252],[4.454100219342957,52.0435135671979],[4.453925919482781,52.04379837427225],[4.453763986450882,52.044073724221946],[4.453588546082647,52.04435988802476],[4.453416568794042,52.04463925667327],[4.453247926557399,52.04491727626231],[4.453078146149466,52.045197344972465],[4.452906119862498,52.045478752899896],[4.452738593053688,52.045756106462484],[4.452572257936945,52.04603004458535],[4.452420720094579,52.04628429802804],[4.452082329548395,52.04683965118185],[4.451917150991481,52.0471108740147],[4.45175522205153,52.04738485496224],[4.451577597307015,52.04766826588191],[4.451409997197159,52.04794903263951],[4.451241358475412,52.04822568311266],[4.451074933345003,52.04850304306114],[4.450906276455598,52.048781059177266],[4.450735429951789,52.0490570172287],[4.450642384005414,52.049215420571166],[4.451381508652361,52.04915299138284],[4.451455064854706,52.04946658588475],[4.458387605262505,52.04896428526722],[4.458939613056591,52.048926372874575],[4.460234757132785,52.048832009213896],[4.460631823292021,52.04880307137505],[4.462324045052852,52.04867803786448],[4.464019006361109,52.04855470939024],[4.465716727957241,52.04843137816392],[4.467403257042733,52.04831306758115],[4.469053689896082,52.0481978581708],[4.470729298768971,52.04807086676877],[4.472368601719232,52.047957232208965],[4.474024771525079,52.04783175084049],[4.475680827897729,52.047711368837],[4.476687555762449,52.04764351725872],[4.477203560627204,52.047608737625225],[4.47800118313943,52.04754831047352],[4.478185589935119,52.04753433649088],[4.478542884502822,52.04750863581884],[4.478978913907395,52.047477267233305],[4.479741067123511,52.04742022212967],[4.480696044364473,52.04734874664862],[4.482393591932681,52.04722859875935],[4.48258672705118,52.04721251870814],[4.482589773554211,52.04721469936498],[4.482591699300964,52.04721607143054],[4.482754479365141,52.04733222250392],[4.482806458631842,52.04736934896322],[4.482809232026182,52.04737133875701],[4.482818515907915,52.04737795372658],[4.482995136137242,52.04750399928709],[4.483002191655256,52.04750906907683],[4.483015154768793,52.04751830098521],[4.483160489833118,52.047622030175546],[4.483168364787869,52.04762767252489],[4.483170104348506,52.047628881357355],[4.483172949747733,52.04763091663783],[4.483223523155004,52.047666225414034],[4.483229201383248,52.04767019700156],[4.483253510107238,52.0476871922026],[4.483259533447568,52.047691400140245],[4.483279486624792,52.047705341746976],[4.483288284495314,52.04771148554276],[4.483310667110399,52.04772712665214],[4.483345484381447,52.04775146524691],[4.483355245983236,52.04775825462196],[4.48335586422577,52.04775868182931],[4.483356094176685,52.04775884538823],[4.483365610166132,52.04776552501467],[4.483371159593702,52.04776937875535],[4.48338593748818,52.04777971216553],[4.483387259979343,52.04778063914841],[4.483388122749679,52.0477812300263],[4.483428460571647,52.04780941312524],[4.483440637052409,52.04781790188645],[4.483444820271159,52.04782082830582],[4.483451936371075,52.047825790669876],[4.483453675040034,52.04782704443403],[4.483454997896809,52.047827953441775],[4.48347384443943,52.04784111350602],[4.483479278365573,52.047844912423756],[4.48348008374111,52.047845457917745],[4.48348409404763,52.047848284134616],[4.48348643783853,52.04784989309566],[4.483565877287477,52.04790540479991],[4.483668199887332,52.047966224475225],[4.483723931945584,52.048000952394624],[4.48378334829963,52.048042387053954],[4.48406820250537,52.04824800997745],[4.48435474367128,52.048447460989316],[4.484497629754863,52.04854714283089],[4.484642026335435,52.04864786076601],[4.48466154652132,52.04866162803108],[4.484904124453951,52.04883283126599],[4.485173825682581,52.049024043529016],[4.485444388112532,52.04921097420489],[4.485734074589574,52.04940759647239],[4.485891885056676,52.049515040071526],[4.486005131772216,52.04960928883196],[4.486009820366877,52.04961319877793],[4.486118177965563,52.04970338313985],[4.48618853574217,52.04975627079139],[4.486275144478929,52.04981736342697],[4.486356011515817,52.0498761739291],[4.486375962410149,52.04989467217994],[4.486447914643144,52.049963265896736],[4.486540701932964,52.05004628374355],[4.48665159141112,52.0501259433755],[4.486655165244922,52.05012802009332],[4.486916656551405,52.05027948097334],[4.487216116028129,52.05045186013644],[4.487333671192655,52.050524226389065],[4.487525090328242,52.05065146564201],[4.487800841083997,52.05085034921388],[4.487884562140575,52.0509138814469],[4.488056557319012,52.051008100337455],[4.488212239927915,52.05106741772937],[4.48833385271464,52.05113027706914],[4.488394127044097,52.05116933391713],[4.488441377358313,52.05120208924608],[4.488534761032425,52.051284759469674],[4.488668184937869,52.051414412663235],[4.488722434058874,52.051455149175894],[4.488867014826963,52.0515577957299],[4.488960391554524,52.05162708158842],[4.489060317068407,52.0517100619378],[4.489151399585773,52.05178109190286],[4.489235885482877,52.05184156388042],[4.489337313322267,52.05190566149431],[4.489456838144454,52.051970319417634],[4.48951446327259,52.052009993671135],[4.489655716682594,52.05210934203504],[4.489740432032089,52.05218025110247],[4.489813724829103,52.05223259260913],[4.490060302262971,52.052388768551616],[4.49013889817599,52.05244570744064],[4.490186641427309,52.05247218280335],[4.490267792666183,52.052513662773286],[4.490394322068153,52.05259853439121],[4.49055861804157,52.05271886558883],[4.49077702003573,52.05287929281208],[4.490845898116605,52.05292577547638],[4.49095189637338,52.05301306994706],[4.491012127861761,52.05305741935006],[4.491096926414385,52.05311562721805],[4.491217391528432,52.05320571009301],[4.491446889309704,52.0533874873556],[4.491629384151068,52.05352909648835],[4.49167037769521,52.053564373637215],[4.491724698077913,52.053607644038536],[4.491790193688556,52.05365568240378],[4.491867275247551,52.05370690985104],[4.491999206056651,52.0537873893971],[4.492107569976871,52.053854296762026],[4.492171967535658,52.053894578433834],[4.492317498236007,52.05397893614726],[4.492350709810602,52.053998747552704],[4.492429291992275,52.054040610965274],[4.492451061868617,52.0540522097746],[4.492532946264705,52.05412072228701],[4.492588318022416,52.05416544742068],[4.492686015948694,52.05422845309598],[4.492859847491855,52.05435814756455],[4.492968058363415,52.05444598728693],[4.492978603898197,52.05445455253752],[4.493179143687782,52.054617347370154],[4.493204879141634,52.054638477031595],[4.493243109703064,52.05466984959137],[4.49365159745679,52.055005138881974],[4.493867634239343,52.05516829275246],[4.494162881534121,52.055355246225766],[4.494324449115048,52.05546059438466],[4.494396566387644,52.05553073934388],[4.494467041991927,52.05559547868707],[4.494539331756541,52.05565699585832],[4.494619590968493,52.05571371955931],[4.494713932957842,52.055759601860295],[4.494759699274263,52.0557787706331],[4.495037250701534,52.055896340030976],[4.495056307475731,52.05590441226503],[4.495105066867847,52.05590144680772],[4.49510578212089,52.055901407282015],[4.495210584007944,52.055890722587634],[4.495317050610042,52.05587917851623],[4.495531245430787,52.05587546096098],[4.495567241382712,52.05588592645275],[4.495685909973496,52.05596307449427],[4.495731633795321,52.055990997405914],[4.495872835228612,52.05607743017008],[4.495878237312379,52.056080733889125],[4.496059499452326,52.05591197918817],[4.496159508984313,52.05583072428974],[4.496183590172947,52.0558076081465],[4.49630530366773,52.055664406462505],[4.496353412120522,52.0556201332069],[4.496468759950915,52.05555937108055],[4.49657685794255,52.05550681449752],[4.497021935368853,52.05529278202373],[4.497604631942496,52.05500701607598],[4.497718353940769,52.05494719324383],[4.498026024988087,52.05479423014321],[4.498222229324666,52.05470497176195],[4.49835334558483,52.0546428796587],[4.498469301983795,52.05459085704767],[4.498543120772292,52.054559387819594],[4.498586678429493,52.05454661113788],[4.498638323851842,52.05453332018556],[4.49900979417143,52.054374408996686],[4.499246854885522,52.05427014950872],[4.499268638269178,52.05426057913088],[4.499349009170659,52.05419201813519],[4.499388385670411,52.054158455097294],[4.499411685439588,52.0541385862642],[4.499658596377755,52.05402863854212],[4.499678884456141,52.05401799617373],[4.499696687943192,52.054009123801016],[4.499798209529896,52.053956955174606],[4.499800748675835,52.0539553743438],[4.499842849007609,52.053929274190104],[4.499847456518431,52.053926324704825],[4.499878813639558,52.05390892540983],[4.500026776281332,52.05383230704286],[4.500088901202921,52.05379853759396],[4.500098718057367,52.05373872086935],[4.50009054529625,52.05365229739761],[4.500093869754827,52.05362800842735],[4.500092327702756,52.053607233279344],[4.500096329765013,52.053585538112564],[4.500108201059121,52.053549331783806],[4.500129571761672,52.05348403816243],[4.500142698894755,52.05345140973946],[4.500210463884153,52.05333237244088],[4.500247938588485,52.053274040349095],[4.50033305043941,52.05322285328869],[4.500537998593974,52.05321640545126],[4.500731355803547,52.053212890173626],[4.500889888038374,52.0532105057582],[4.500996995907101,52.05321035888553],[4.501051755326968,52.05321273037703],[4.501108753669267,52.05321763547811],[4.50115707907193,52.053223167427454],[4.501206702073007,52.05323091131042],[4.50125755564076,52.05324278118054],[4.501288819051811,52.053254377845725],[4.501327370694429,52.053268276453345],[4.501328812838151,52.05326834123104],[4.501362853885452,52.05328324857336],[4.501435852447658,52.05333060089156],[4.501610395033401,52.053451982281025],[4.501852515772538,52.053628009361056],[4.502052340244545,52.053772375046194],[4.502273796864649,52.0536559565902],[4.502760631934674,52.053408590194145],[4.502997929139533,52.05329238820668],[4.503252318761795,52.053177365679424],[4.503253438214192,52.05317678982548],[4.503350908170439,52.05312718544304],[4.503644009172996,52.052978008470596],[4.504236640831808,52.05267640176293],[4.504471430937012,52.052556816325364],[4.504983419494673,52.05229694650411],[4.505305690169576,52.05213336854943],[4.50565993075563,52.051953544019845],[4.506014465955282,52.051774161077056],[4.506322570357105,52.051620316831105],[4.50659569167916,52.051560850566815],[4.506636162631366,52.05155130170245],[4.506844269861106,52.051508319152354],[4.507013981893865,52.05147459514466],[4.507053632464083,52.05146672086361],[4.507146813164044,52.05152810774236],[4.507201545694981,52.05155252506733],[4.507261781225607,52.051566970247144],[4.507324385631455,52.05157735229581],[4.507332392838618,52.05157719638696],[4.507666723664937,52.05157083074687],[4.507735987236225,52.05156730310371],[4.50781111777733,52.05156346867087],[4.50798617781721,52.05157662246279],[4.508006539175264,52.05157545313732],[4.508012275312748,52.05157512742465],[4.508049875296511,52.05156921498033],[4.508207806641288,52.051544389859735],[4.508417237256655,52.05147772961876],[4.508497385975963,52.05145219790731],[4.508639209723636,52.05157355845562],[4.508705168112189,52.05162998609385],[4.508851263232036,52.05175439838399],[4.509073305260321,52.05194491214183],[4.509271930929057,52.05211775025104],[4.509466695528563,52.052286073960985],[4.509666075879229,52.05245403623031],[4.509856270195767,52.05261988034069],[4.510041925459463,52.05278082753299],[4.510241293231363,52.0529503976468],[4.51044525940608,52.05312124205724],[4.510651771622441,52.053296167865795],[4.510844571837499,52.05346407011039],[4.511037453178802,52.05362790082632],[4.511427130681795,52.05395763976856],[4.511622608711953,52.054123106733826],[4.511749320374965,52.05422703915395],[4.511833837377258,52.05429441611131],[4.512016882936654,52.054455322704406],[4.51220963879835,52.05462526269841],[4.512401762750344,52.05479478419959],[4.512588682214183,52.0549606084002],[4.512791997272694,52.05513062580897],[4.512981527929948,52.05529727771421],[4.513190025587927,52.055473840568844],[4.513385443602041,52.055643798319274],[4.513395797145919,52.05565270185785],[4.513590635086019,52.055820335912266],[4.513797787057199,52.05599811011075],[4.514007915380173,52.05617363189849],[4.514307076472019,52.056438916345286],[4.514364595743623,52.05648992099938],[4.514343518898125,52.056500757783965],[4.51434451544219,52.056537887772514],[4.514344590924104,52.05654074668248],[4.51453047738676,52.056694479451465],[4.514692084970022,52.05682814048077],[4.514762321404992,52.056887301834756],[4.514870574452065,52.05697847417287],[4.514882779552175,52.056979939802254],[4.514925416085263,52.05698512731836],[4.514947568065945,52.05697524218619],[4.515144830353881,52.05714326904555],[4.515188660052389,52.0571807790359],[4.515320837137869,52.057293943194466],[4.515516911662897,52.05746470211543],[4.515707149893151,52.05762973677325],[4.515899979647574,52.05779804412576],[4.516096050364705,52.05796922447877],[4.516292802614831,52.05813917810478],[4.516487572205317,52.05830993468997],[4.516678409082076,52.05847904394457],[4.516873853607464,52.05864898689938],[4.516905850542,52.05867650345413],[4.51697840656318,52.058738907454966],[4.517249365251865,52.05896475889422],[4.517453963994824,52.05913884025474],[4.517656714417259,52.05930681338894],[4.517864040902737,52.059477255820745],[4.51788783141991,52.05949640614738],[4.517814901290997,52.05953271185171],[4.517813613393897,52.05953895835395],[4.517810763728238,52.05955278862595],[4.517808381570024,52.05956432128809],[4.517799718337471,52.059580913070576],[4.51755555413084,52.059785891599944],[4.517508866760538,52.059832179344376],[4.51750626651284,52.05984067227182],[4.517507897015339,52.059851317724174],[4.517513829339545,52.05986346006422],[4.517523511807401,52.059874722250164],[4.517534731043163,52.05988344304217],[4.517548915194936,52.059891170019284],[4.517565476781826,52.05989736852106],[4.517603530837408,52.05990815701919],[4.517726803329825,52.05994146156896],[4.517842031346632,52.05995650487647],[4.517899732603217,52.059964040614375],[4.517996306137809,52.05998078875318],[4.518093246849579,52.05999590361166],[4.518190744521912,52.06000862256513],[4.518315795653193,52.060015693151485],[4.518370950249642,52.06001770890236],[4.518424138103094,52.06003390298752],[4.518488304057002,52.060005891594635],[4.518583541367028,52.060087751185215],[4.518669541807207,52.060161686631574],[4.518866281712812,52.060333271619555],[4.519062406408292,52.06050282032871],[4.519259164070797,52.060674395778285],[4.519456572445013,52.060845580185564],[4.519658595399131,52.061018011682904],[4.519857974089968,52.06119001886905],[4.5202488490257,52.06153316521574],[4.520445631420405,52.06170392982541],[4.520642400560325,52.06187470298511],[4.520843769656103,52.06204673207063],[4.52104120505969,52.06221789594526],[4.521448454177446,52.062568888671684],[4.521652476651365,52.06274052235273],[4.521850558363872,52.06291251651207],[4.522010428204334,52.063045561137116],[4.52221885387151,52.06321444869176],[4.522167304642561,52.06324072110358],[4.522131956415991,52.06325874416187],[4.522071243777088,52.06337429499797],[4.5220659761072,52.06341821011024],[4.521953530947319,52.06358606259916],[4.521945999707922,52.06359468119293],[4.52204071058099,52.06367657894696],[4.522055742690532,52.06368957885857],[4.52208467394533,52.06371459060863],[4.522100064533909,52.063727907744564],[4.522175009610679,52.06380255931634],[4.522177073693778,52.063818753782854],[4.52246909162985,52.06407014889006],[4.522622013366941,52.06422043551278],[4.522682436313306,52.06426028454185],[4.522700849987572,52.064272644033906],[4.522722662222364,52.06427968929027],[4.522747035093225,52.06428176471213],[4.522772211169714,52.0642784978624],[4.522860249277445,52.06425525237789],[4.522973660683181,52.06422456172769],[4.522998675933784,52.064213761283284],[4.52310763817058,52.06417632345417],[4.523147940008947,52.064168385583976],[4.52318956045434,52.064164663990915],[4.523235414084349,52.064165269933284],[4.523303540968888,52.064135442325046],[4.523463283476788,52.06427402089308],[4.523616687500374,52.06440556870534],[4.523665306950027,52.06444726322574],[4.523868010717264,52.06462009671356],[4.524075939507766,52.064795826465016],[4.52428190156371,52.06497153244195],[4.524486600834015,52.06514398394934],[4.524686649051374,52.06531721000177],[4.524872205542103,52.06548951167437],[4.525209920257592,52.06581922747782],[4.525388992664333,52.06598537766819],[4.525581145586468,52.06615773542085],[4.525758956541833,52.06632061297541],[4.525934058653736,52.066487146743476],[4.526117680672119,52.06665740083098],[4.5262921058842,52.06682514254426],[4.52647307566869,52.06699618563841],[4.526656655956185,52.067168065464124],[4.526842214936116,52.06733951001708],[4.526953148647227,52.06744631242875],[4.526977721099339,52.06746996980001],[4.526823568373175,52.067564427805586],[4.526755807607363,52.06760540585725],[4.526524845941093,52.06775319750146],[4.526489431997533,52.067817763815135],[4.526537872363145,52.06785469188413],[4.526747496377926,52.06796937023706],[4.526807935043045,52.06800581954567],[4.526825663211148,52.06801604309243],[4.526871374680876,52.06804169749626],[4.526889820717066,52.068051755493926],[4.526953443563341,52.06808493818879],[4.52716536283941,52.06819033843894],[4.527182921203102,52.06819878096944],[4.527200736117914,52.06820677594528],[4.527218937447215,52.06821439622218],[4.527237568766546,52.068221651106604],[4.527256572089726,52.068228522198076],[4.527275903840616,52.06823500018986],[4.527295593184539,52.06824108529468],[4.527315596372583,52.06824677719309],[4.527335463753761,52.06825194676419],[4.527356472401295,52.068256926914344],[4.5273772580893,52.068261366123885],[4.527397863702081,52.06826530964835],[4.527419553630343,52.06826899142748],[4.527440307418562,52.068272055153415],[4.527608579938131,52.06828841963572],[4.527640780444615,52.06830300020662],[4.527650278696281,52.06830737499266],[4.527659489099761,52.06831003087558],[4.527666476184423,52.06831150203301],[4.527673228308085,52.06831229733885],[4.527680196158396,52.06831249198903],[4.527688271016498,52.0683120026009],[4.5277150434567,52.06830924968883],[4.52774067237488,52.06830984113693],[4.527764983294269,52.06831526776306],[4.527779228411599,52.06832080971616],[4.527790948367189,52.068325695064516],[4.527802415928678,52.06833081227144],[4.527813601930405,52.068336161124286],[4.527821675916605,52.06834027382934],[4.527868421501328,52.06832048057127],[4.527875523883099,52.06831746729894],[4.527935872558276,52.06837158674163],[4.528124724234773,52.068546765454045],[4.528310956734145,52.06871866193454],[4.52868682132284,52.06905881144431],[4.528875055069588,52.06923153054448],[4.528999490647634,52.069346644793605],[4.52925338033406,52.06958147557984],[4.529440925118342,52.06975460219292],[4.529635007357729,52.069931443383695],[4.529836361615386,52.070107923690266],[4.530048415159323,52.07027797381373],[4.530272895319118,52.070454217108896],[4.530430157939624,52.070574539177706],[4.530500078272138,52.07062803474676],[4.530523012881416,52.07064600770332],[4.530723921353429,52.070803454570196],[4.530948391155799,52.070980514413826],[4.531024503899388,52.07103975336535],[4.531174861778227,52.07115677040061],[4.531200144861708,52.071176288326654],[4.531402669222879,52.07133262217786],[4.531627848437509,52.071506423017745],[4.531694118498454,52.071558740822596],[4.531848442126852,52.07168060359431],[4.532310583479605,52.072036432133004],[4.532335542583485,52.07205616318055],[4.532527255382618,52.072207733592464],[4.53296255004555,52.07255155387757],[4.53311462325683,52.07268086804959],[4.533296538666341,52.07284011421882],[4.53338460154395,52.07291323552144]]]]}},{"type":"Feature","properties":{"id":11,"statcode":"WS08","geometry_g":"polygon","gag_id":"11000017","hierarchie":"2","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.08.08_Vallei & Veluwe_p","sde_id":"1","land_code":"NL","inspire__1":"NL.08.08_Vallei & Veluwe_v","inspire__2":"NL.08.08_Vallei & Veluwe_l","wbh_code_o":"08","einde_leve":"1899/12/29","laatste_wi":"2013/04/25","admin_code":"43","waterschap":"Vallei & Veluwe","publiceren":"08","Aangemeld":1,"Actief":1,"KVK":56804636,"tnostatus":2,"CPT":268,"GMW":182,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[6.166268915961873,52.23101377654567],[6.166802726219096,52.23076995439538],[6.167540497023861,52.23043104433996],[6.167676948712703,52.23037412815476],[6.167902898600873,52.23026228656543],[6.168189325072913,52.2301317715686],[6.168470115380593,52.23001966498773],[6.168657376058548,52.22995713538327],[6.168703692571774,52.22994228595999],[6.169178086917604,52.22972567586434],[6.169682154479771,52.22948617204046],[6.169865713691617,52.22934653748802],[6.170288193649463,52.229032673352286],[6.170591942776693,52.228804389975814],[6.17093419404261,52.22852258627879],[6.171422815178818,52.22812958738979],[6.171761175592454,52.227898356582706],[6.171887319670444,52.2277714141088],[6.172010682651916,52.227644507956846],[6.172128390940042,52.227509064538715],[6.172386037043955,52.22724306287877],[6.172668568346147,52.22697158305905],[6.172964601055557,52.22667246389612],[6.173189478841661,52.22646521852134],[6.17336803953329,52.22633062702359],[6.173519257225323,52.226234102556646],[6.173975790079104,52.22595945612708],[6.174198712940732,52.22584080935283],[6.174454731118519,52.22570250901266],[6.174655957885847,52.22559778491806],[6.174891054601269,52.22550148114063],[6.175335478971378,52.22533166745781],[6.17578139855563,52.225163001570564],[6.176222196128418,52.225004470934344],[6.176702099238982,52.22484848144741],[6.177176300355645,52.22469219558072],[6.177655870867299,52.22452526577441],[6.17793823447336,52.22442676983324],[6.178135198841226,52.22435806597768],[6.178603138457103,52.22419426618597],[6.179070882642692,52.22402872212027],[6.179326944630301,52.223936268523005],[6.179538420488628,52.22384437426344],[6.180019681697832,52.223601607976974],[6.180497926976457,52.22333361211763],[6.180817456379123,52.22315576333475],[6.180986871245576,52.22303969229128],[6.181147821053047,52.222905288075545],[6.181436078294428,52.222655751289466],[6.181616069931633,52.22251665230179],[6.181895662013432,52.22229686068153],[6.182114312455043,52.2221247207111],[6.182272088992092,52.22199820993897],[6.182443778196499,52.22186161934137],[6.182585046441781,52.221738491043105],[6.182756906366983,52.22159682049103],[6.182878954634429,52.22149729852771],[6.183026099491214,52.22136737993541],[6.183176315346114,52.22123574167656],[6.183338020409663,52.22110911306096],[6.183691593497302,52.220869142935015],[6.184553054668442,52.22032979683729],[6.184987624322934,52.220060827969824],[6.185464323103735,52.219791150150684],[6.185604759119011,52.21971629940833],[6.185951988479585,52.2195155718075],[6.185970846750173,52.21950466734792],[6.186489504318315,52.21919583638036],[6.186898005072528,52.2189864938251],[6.18717727805121,52.218836332140654],[6.187358397437452,52.218726823667836],[6.187555583482096,52.21857819715097],[6.18791973783985,52.218312975322654],[6.188268813035038,52.21805984493952],[6.18859706956175,52.21779583527989],[6.188930680680188,52.21753034120839],[6.189062847185759,52.21742442522942],[6.189254605115343,52.217267545524656],[6.18940881764222,52.217128034210155],[6.189528652017708,52.21700459358352],[6.189744389355357,52.21667223493464],[6.18986730353635,52.216479464874595],[6.189996668580092,52.216211122823566],[6.190133270369965,52.21595061405296],[6.190265202319177,52.21568846506563],[6.190374305105076,52.215424682588626],[6.190399450826402,52.215354439346065],[6.190469174862049,52.21515961266145],[6.190554914932458,52.21489385875161],[6.190645144380324,52.214628002299804],[6.190717271800409,52.21436293411262],[6.190786770039419,52.21410141613401],[6.190856305332494,52.21381118048038],[6.190956852013658,52.21341183231556],[6.190957863474734,52.21340787959901],[6.191079265737805,52.21293511729027],[6.191128430572836,52.212167448849215],[6.191116772010553,52.21134557310058],[6.191103526990124,52.211012182170336],[6.19100770321577,52.21023207249054],[6.190871554589066,52.20964630204127],[6.190836231543669,52.209554458153974],[6.190832475839987,52.20954497418003],[6.190664052195268,52.20911960240275],[6.190372840635127,52.208600365996006],[6.190009296632375,52.2081376355086],[6.189597345196276,52.207731598184516],[6.189440912197399,52.207615994340145],[6.189160079284015,52.20740781194718],[6.188651482490455,52.20708319620307],[6.188021151093871,52.2066834358051],[6.187532877254304,52.20638568701397],[6.187335596194828,52.20626537790263],[6.186888422433352,52.20596493898415],[6.186423600346957,52.20560762352874],[6.185910284761415,52.20525417579923],[6.185145987834257,52.20478033585081],[6.184356442855054,52.20442589039346],[6.184037244366046,52.20429824688404],[6.1836940060819,52.20418664695746],[6.1833214486319,52.20408792620666],[6.183231776849967,52.20406694132805],[6.183230293053139,52.20406659180672],[6.182820893948288,52.20397073354022],[6.182163460498785,52.20385445174611],[6.18162992221407,52.203809417993554],[6.180853929544093,52.20374181619349],[6.180235709542099,52.203671495434584],[6.180221651847216,52.20366990010654],[6.179563125807515,52.20357215392945],[6.178889249429261,52.20343035689565],[6.17836554429441,52.20330095088237],[6.177735390220294,52.203122227167256],[6.177002177149786,52.20290532474637],[6.175866567069788,52.20241922269398],[6.175150479327204,52.20208506884424],[6.174519231923036,52.20177487359067],[6.173891486621533,52.201541563877136],[6.173480774512647,52.20143099537104],[6.173036447901946,52.20134195136643],[6.172119283109401,52.20120999578903],[6.171368331256699,52.20114628193873],[6.170743319942072,52.20112022379019],[6.169992577334667,52.20110818208673],[6.169062382232307,52.201100659253235],[6.167247683277196,52.20114695777487],[6.167048818063958,52.20116483732186],[6.165670557949344,52.20130709719145],[6.164286162461995,52.20141427335275],[6.16337964100713,52.201402280428745],[6.162482386927921,52.201305784383116],[6.162270846425741,52.20128303151363],[6.161430626233042,52.201093556336744],[6.161265424407707,52.201051146040584],[6.160842619224308,52.200936208810006],[6.160511009106624,52.200835664882476],[6.160222517904081,52.20073307591063],[6.159889297847697,52.20059772944347],[6.159201424159551,52.20028088462079],[6.15875323610495,52.20007039950237],[6.158203240457691,52.19974311990009],[6.157750885383385,52.1993841280116],[6.157366584360387,52.19903018208722],[6.157085062380689,52.19872029879021],[6.157009512624109,52.19861367011149],[6.15678679840352,52.19830553268132],[6.156604863484944,52.19795901893542],[6.156591281761185,52.19793315851099],[6.156459412431729,52.19760409679576],[6.156354844975489,52.19734317639983],[6.156297856409395,52.19714645424839],[6.156258011714085,52.197031134463714],[6.156225297849415,52.19686030191821],[6.156184034788338,52.19666106837904],[6.156149195894189,52.196459447035465],[6.156121570251054,52.1962520082407],[6.156099849862937,52.19602907122374],[6.156092038182409,52.19570942023873],[6.156078785918185,52.19546523380574],[6.156082225052591,52.195123713054386],[6.156107799470098,52.19487324251717],[6.15611955464944,52.194673789256946],[6.15614457805941,52.19448041544785],[6.156202629145767,52.19415580512112],[6.156296383991742,52.1938169583986],[6.156350295410074,52.19360089871011],[6.156404386000895,52.19346134555511],[6.156486729416529,52.19323515947387],[6.15668280678109,52.19283823747901],[6.156856242682674,52.19248716790933],[6.157018414123087,52.192207205469686],[6.157158251264916,52.1920119227661],[6.157336679155895,52.191752940147325],[6.157567715583525,52.19143412971428],[6.157734566323176,52.191240890005695],[6.15796733474292,52.19100225139297],[6.158280008850576,52.19069165173682],[6.158589047795053,52.19042645654173],[6.158813871178591,52.19024554558527],[6.159033219618955,52.19009229981397],[6.159332116095219,52.18993183687861],[6.15957725869949,52.18982499828458],[6.159780030903278,52.189747567457104],[6.160065246865654,52.18964941772407],[6.160354160666967,52.18956386254035],[6.160556056364134,52.18951191774231],[6.160799825592693,52.1894517974162],[6.161071005600567,52.18940461962966],[6.161437811705215,52.189359006920185],[6.16171678990976,52.18935922535213],[6.162034885731043,52.189384533072946],[6.162275657257846,52.18942129555361],[6.162299646445859,52.189424957971404],[6.16343451887569,52.189622591119544],[6.163773507889321,52.18968184908799],[6.164099944293153,52.18972987254894],[6.164421466316068,52.18977111439891],[6.164755843867905,52.189808163038784],[6.164970250471562,52.18982137382371],[6.165187110253529,52.18982598428084],[6.165399187743047,52.18982723731525],[6.165556945787804,52.189819051123045],[6.165739866486807,52.189812190744995],[6.165923589893278,52.18980189127967],[6.166130471407148,52.189789515172706],[6.166305600266192,52.18977363622339],[6.166513939213064,52.18975094930136],[6.166685984619684,52.18972769283271],[6.166858793229897,52.18970042231598],[6.167277301431349,52.18963102646252],[6.167531033595234,52.189580776307764],[6.16773299751366,52.18953820246295],[6.168180027758983,52.189437506425065],[6.168383713886156,52.18939146857726],[6.168647347551509,52.18933307002846],[6.16881139103975,52.18929565303582],[6.169018621564345,52.18924498862808],[6.169160195854143,52.18920391799831],[6.169313836332927,52.18916209310036],[6.16941485770394,52.18913023425493],[6.169500943096518,52.18910062253793],[6.169533199755998,52.189089532901754],[6.169654929269263,52.18904020721961],[6.169806636166117,52.18897327236463],[6.169952955063737,52.18891100199894],[6.170102779604472,52.188843521973986],[6.170267909667398,52.18876323979678],[6.170397146454806,52.188692660254674],[6.170583176028778,52.188600050848166],[6.170742462772484,52.18852189206248],[6.170771982768163,52.188507404724305],[6.171090558922571,52.18833388290205],[6.171357574247653,52.188173160583595],[6.171560248195496,52.18805515506373],[6.171791854594411,52.1878927076803],[6.172052049858775,52.187701244367375],[6.172383350564844,52.187450398349824],[6.172874897353595,52.1870736466885],[6.1737522651014,52.18640117884445],[6.174716145199228,52.18564337666715],[6.175683294781273,52.18489864938717],[6.175889610928181,52.184732596656694],[6.176125734140508,52.18456778236943],[6.176598653460647,52.184231856059064],[6.177285171702025,52.183748195793456],[6.177794829530583,52.18342353248932],[6.178460063080896,52.18299185209852],[6.178942086278952,52.18267316647452],[6.179455330221509,52.182354188292116],[6.180040994537967,52.18198451275322],[6.18071810959619,52.18159598200641],[6.18114132885376,52.181365515974534],[6.181636861138292,52.18116696417446],[6.182348130549763,52.180919174838166],[6.183158652932845,52.18067438778599],[6.1843878285925,52.180376756265325],[6.18454626294195,52.18035447329367],[6.185224279462734,52.180273902200234],[6.185875607453606,52.18019076645287],[6.186121085633876,52.180158103840114],[6.187107680357148,52.18003190166595],[6.187981550904132,52.17991855460656],[6.188912864070189,52.1796978772345],[6.189366879277825,52.179536777252316],[6.189690071169704,52.17940628068646],[6.189937010904985,52.17930657459363],[6.190235394832227,52.17916998947056],[6.190601794440502,52.17899286170082],[6.191271887196423,52.17862625774884],[6.191329023838439,52.17858724568819],[6.191458014179942,52.178499171130596],[6.191603266731169,52.17839999288311],[6.191869858716956,52.17820534032623],[6.191976832660441,52.178127239539435],[6.192245026771466,52.177910562886375],[6.192498048154071,52.17767155442947],[6.192882377994105,52.177300905198926],[6.193342322703625,52.17681488572376],[6.193500601623578,52.176612736176125],[6.19362111565368,52.1764486043346],[6.193779055650813,52.176187448628134],[6.193946621341115,52.17586045060502],[6.194183183521064,52.17523660065985],[6.19426740705979,52.174964335592335],[6.194363021117228,52.17431990443155],[6.194369806439372,52.17399049122851],[6.194317670242322,52.17352506592093],[6.194268044720091,52.17322091821138],[6.194231373588859,52.17299519454282],[6.194174403734205,52.172733485786104],[6.194090169076473,52.17246766709016],[6.194050337923549,52.17236534720428],[6.193858977511695,52.171928953201984],[6.193619756160129,52.171367867947865],[6.193434723242992,52.170958367873475],[6.193231002331162,52.170578279046936],[6.19312897964782,52.1703945543758],[6.192799512809477,52.16980127667893],[6.192670109775302,52.169525033350915],[6.192605654468228,52.16936691998842],[6.192566817190355,52.16928286598917],[6.192561128492589,52.16926735508328],[6.192480901552656,52.16904853454203],[6.19242103025563,52.168896492828395],[6.19239971695723,52.168848685777085],[6.192335163047817,52.1687206297829],[6.192298603381815,52.16865255930665],[6.192210320196342,52.16849990245423],[6.192124823010837,52.16836389081914],[6.19203128342771,52.16823093608636],[6.191918626825119,52.16807946099204],[6.191878462689407,52.16802786355166],[6.191855874838447,52.1679952373344],[6.191728236573359,52.16784781011869],[6.191702926175862,52.167821449305826],[6.191513530684993,52.16763591922627],[6.191125441991019,52.16729615585181],[6.19104961007507,52.167229763805885],[6.190925460070066,52.167127199494224],[6.190885446613848,52.16709683104106],[6.190804538570025,52.167039102187616],[6.190745152596713,52.166998717884574],[6.190659993517566,52.166943543603125],[6.190572875466147,52.16688996454294],[6.190395690821156,52.16678786874217],[6.190178499370979,52.166656491524655],[6.190111668993346,52.166614180159044],[6.189781370616261,52.16639328467449],[6.189398641346992,52.16615349194443],[6.189286879884694,52.16608188723383],[6.189185850568419,52.166013705894116],[6.188770552054305,52.16574164889035],[6.187893874012927,52.16519206388438],[6.187062990851896,52.164661756349524],[6.186749593236141,52.16449000267091],[6.1860813089156,52.16367229077845],[6.185940780855964,52.163500325706686],[6.185610164998981,52.16308612749648],[6.185422585908832,52.1628402819225],[6.1852304389719,52.16258898409604],[6.185143086483611,52.162449555431095],[6.185101623542285,52.16237936769792],[6.1850323555206,52.16225080030352],[6.184946067856609,52.16208666444989],[6.18488736764901,52.161966267757094],[6.184854269718635,52.161860348811494],[6.184805228602668,52.16169323749127],[6.184764069314885,52.16155168050643],[6.184739542899815,52.161463284669416],[6.184710095528777,52.16135714324972],[6.184678620151871,52.16122257656151],[6.184673128995476,52.16119910030475],[6.184366812637938,52.159657619625804],[6.184265335547643,52.158768077289],[6.184222739370895,52.15862928019686],[6.184132705708714,52.15841850175129],[6.184092471247896,52.158348062655186],[6.183759667260775,52.15777218338653],[6.183311297164908,52.15718764562359],[6.182898664114396,52.156593804832504],[6.182180544789142,52.15536994679445],[6.181938288713618,52.15479089921159],[6.181721849774043,52.154111987876995],[6.181546316756186,52.153625060433555],[6.181520848642816,52.15348151795667],[6.181509015845416,52.15335530296838],[6.181537705001924,52.15297635147859],[6.181594984375214,52.15275466453227],[6.181614933191176,52.15270722468723],[6.181703980542606,52.15249547146303],[6.181788498796588,52.15229447172897],[6.18204706928466,52.15177724968138],[6.182275792818188,52.151399241436735],[6.182420690251886,52.151210139078074],[6.182499499946362,52.15110727568234],[6.183284362979706,52.15022117915592],[6.183660561662709,52.14977471505123],[6.187116266149935,52.14566404718654],[6.187369539546817,52.145199830033434],[6.187400105708186,52.145156194616675],[6.190177011339834,52.140784719682394],[6.19030602252312,52.14054621461702],[6.190487986355799,52.14016802405664],[6.190619013919274,52.139851982276824],[6.190835102029511,52.139315701818695],[6.190973835410966,52.138819275844284],[6.191031621046075,52.138542490509046],[6.191087069532003,52.13833875131131],[6.191108913149578,52.138119222204416],[6.191145172528755,52.13768725786422],[6.19117445126975,52.13728510866461],[6.191133136991882,52.13629611567784],[6.191164463479571,52.13561531382159],[6.191227692195854,52.135235691424135],[6.191261595238227,52.13468492418434],[6.191266279962186,52.13415935095158],[6.191243341096411,52.133734809912994],[6.191172117196656,52.13331509051408],[6.191011640760653,52.13248925696616],[6.190999268383746,52.13241811946385],[6.191038543148782,52.13234380477122],[6.191027808518199,52.13234489185161],[6.190785360830061,52.13150137044834],[6.19076052886498,52.131441656644306],[6.190722905449421,52.13135118021454],[6.190467065813224,52.13073593476673],[6.190435313165932,52.130659570392176],[6.189997891137695,52.12983121763977],[6.189517907817537,52.128990389454096],[6.188913703743417,52.12813575316801],[6.188317154962568,52.12739719125284],[6.187612564709979,52.12657756598862],[6.18691727157461,52.12569666276855],[6.186778686419702,52.125496173914726],[6.186496752684936,52.125088306984495],[6.186370973947285,52.12490633670118],[6.186185023408869,52.124518266733375],[6.186035573292411,52.12420635011344],[6.185816012781649,52.12360597767364],[6.185648657627396,52.12306902355345],[6.185545257590706,52.122671306076505],[6.185461662945967,52.122335006627985],[6.185370122876618,52.12163250333863],[6.185349672682487,52.12092289412085],[6.18545510838536,52.12010890439207],[6.185542203352399,52.119547467795705],[6.185587129557224,52.11935372497402],[6.185812349145926,52.11859218825349],[6.18588605478916,52.11835776668559],[6.186050482668797,52.11795063899091],[6.18615459519203,52.11775677335142],[6.186360121150543,52.11741827136231],[6.186539279576293,52.117147738060744],[6.186690896686831,52.11694641295047],[6.186945092104127,52.11663965019447],[6.187070305017399,52.11650583558174],[6.187118484583713,52.116454346811224],[6.18743034396041,52.11616702889829],[6.187856684525892,52.11580580310365],[6.187989113607061,52.11570016192731],[6.188252063453884,52.115516090889265],[6.188571461933124,52.11531692147769],[6.188772364489612,52.115201627676484],[6.189094724973335,52.115040834988946],[6.18959738317066,52.114820137938736],[6.190177206828364,52.11461785149368],[6.190356348463036,52.114555348103124],[6.1907060808991,52.11445260007493],[6.191230367271822,52.11434415711487],[6.191677340447712,52.11427436825638],[6.191992492915521,52.114233881192305],[6.192190593238417,52.11421418299293],[6.192503385217133,52.11419344016451],[6.192768730773161,52.11418744716491],[6.193097358551205,52.11418587458105],[6.193671730359968,52.1141899722235],[6.195215382148808,52.11419722299172],[6.195919480740443,52.114204932369866],[6.196294182593081,52.11420157858792],[6.196850591380618,52.11420857045855],[6.198214854858399,52.11420364847111],[6.199211754143556,52.114190501257355],[6.199980170065503,52.114159929100516],[6.200347234247733,52.114133236320804],[6.200935493090389,52.11410860171894],[6.201600032989714,52.114070233150194],[6.202408287320049,52.11401241368255],[6.202943376077588,52.11396565686339],[6.203514803019408,52.11390215223197],[6.203814831088889,52.11386881211126],[6.204449920737507,52.113795504885886],[6.20473756644902,52.113758949534585],[6.205139823974005,52.11370671332819],[6.205347742241727,52.11368304185333],[6.205732694493312,52.11362982716549],[6.206206747506966,52.113555121018976],[6.206737183909795,52.113461387957635],[6.207359021910129,52.113344374701114],[6.207946664758898,52.1132281625592],[6.208508517621952,52.11311092275706],[6.208836859667179,52.11303471357383],[6.20896841157328,52.113001177482396],[6.20940375389027,52.112887835551476],[6.209636824004892,52.11282230182206],[6.210087955662655,52.11268656492737],[6.210480314967586,52.11254804599034],[6.210874815539849,52.11239831122607],[6.21117384369533,52.11227676513877],[6.211474483945861,52.112144564745876],[6.211829135255327,52.11197339847238],[6.211988847166772,52.11189419861977],[6.212247016064324,52.111754212886176],[6.212481036067894,52.111613406964125],[6.212609581957953,52.11154397017799],[6.212783135208388,52.111434201613775],[6.213012504414452,52.11126627323925],[6.213251007320672,52.111085525845105],[6.213467952003741,52.11090826380179],[6.213688176495413,52.110713468939444],[6.213869859208065,52.110547104675575],[6.214226648016623,52.11020079501017],[6.214601919303349,52.10983118235225],[6.214665347521414,52.10976566096985],[6.215352609793546,52.10896626739081],[6.215450145408957,52.1088208865801],[6.21556019651609,52.108647463767376],[6.215828258837946,52.10824755459086],[6.216064965304543,52.107856566082305],[6.21635422430668,52.10736910324043],[6.216383405313102,52.10731485061715],[6.216606027913533,52.10690094069822],[6.216877694449025,52.106377817397046],[6.216930996855043,52.10627054293723],[6.217152787822456,52.10582419854494],[6.217302937368812,52.105492043806905],[6.217540000441887,52.10489706647464],[6.217677750276054,52.10452636635206],[6.217837986291102,52.10406196510227],[6.217998669781404,52.10355115324024],[6.218084709788387,52.10314658920464],[6.218164363090263,52.10274873052815],[6.21824134208387,52.10226679499329],[6.218299616624599,52.101833214154546],[6.218357219994183,52.10121058456943],[6.21838066375661,52.10076033308423],[6.218377379372874,52.10017805043876],[6.218350240897071,52.09962056428086],[6.218295392764301,52.09913556740244],[6.218213358611977,52.098727640187256],[6.218120810832607,52.09842373815092],[6.218078761127861,52.09831449277171],[6.217979632607971,52.09805689144521],[6.217898944695539,52.09788130522272],[6.217885301203847,52.09785159580007],[6.217778650988393,52.09761949355256],[6.21764768683865,52.097379490972585],[6.217499215968393,52.09713347252152],[6.217381267209211,52.09696623808856],[6.217171374706272,52.09669990669987],[6.217021244031596,52.096512000512476],[6.216265916024112,52.095662455767076],[6.215321262769483,52.094885982685554],[6.214667899037152,52.094458922062486],[6.21420750951371,52.0941609434766],[6.213068776381299,52.0935099448051],[6.212044726439034,52.09298117491328],[6.211893636806901,52.09290316144325],[6.210534343747157,52.09245183197814],[6.209191500874569,52.09227220904332],[6.208021356660339,52.092275288863526],[6.206829611843037,52.09242063224495],[6.206706163957036,52.092447251811436],[6.206592570917858,52.09248209902037],[6.206298813382507,52.09258530637687],[6.205687726521352,52.092798875618314],[6.205073670212029,52.09300998146567],[6.203727560242601,52.09342206239224],[6.203249199385154,52.09354589337309],[6.203043037353886,52.093588757751725],[6.202626126319489,52.09365829307907],[6.202148201276974,52.0937222896592],[6.201711961652687,52.093773951641076],[6.201451680523222,52.093795705045885],[6.201165833583631,52.093809535944025],[6.200813471909361,52.09381701228213],[6.200607921653336,52.09381670580039],[6.199887935341952,52.09380687944367],[6.199734354175178,52.093798698639006],[6.199630525825908,52.09379077678879],[6.198924419552161,52.093712716680514],[6.198512766683859,52.09364865138649],[6.198112677671563,52.09356957531851],[6.197932522188699,52.093541198348206],[6.197812495464599,52.09351229955483],[6.197718519430262,52.09348672690719],[6.197212782691474,52.09332969900088],[6.197025090637572,52.093268654653635],[6.196867082251251,52.09322136501825],[6.196651733715848,52.0931407715927],[6.196432063412261,52.09306000971597],[6.19618419077376,52.092965005702446],[6.195773086111533,52.092817703437795],[6.195460192873301,52.09270667736797],[6.19505989113293,52.092570650879075],[6.194494795527603,52.0923949809411],[6.194349098838974,52.09235681670552],[6.194091998293258,52.09228287745071],[6.193818427178128,52.09220914028965],[6.193565174485976,52.09213242309451],[6.193443449183528,52.0920955497955],[6.193136508886552,52.092008152322414],[6.192679540156623,52.091875192962185],[6.192440508676737,52.091810052075445],[6.192227884676401,52.0917583746673],[6.192175270511617,52.09174819077059],[6.19135542946671,52.09159288812494],[6.191096237211112,52.091542488295005],[6.190935064232391,52.09151327904181],[6.190655467083816,52.09146418594224],[6.190363964988285,52.091421689936205],[6.190066675832309,52.09137950230128],[6.189818110850649,52.09133974142743],[6.189758874377398,52.09133208237143],[6.1895746710682,52.091308268388964],[6.189323059343503,52.091281641307745],[6.188551351816612,52.09120959265366],[6.188105696534943,52.091174197700795],[6.187425948013287,52.091126306522256],[6.186833777961605,52.09111154152243],[6.186374629378009,52.091104014768995],[6.185614143551018,52.09110750819374],[6.185231030442338,52.09111686321254],[6.184845256584931,52.091130855037775],[6.184459264547005,52.09115308045045],[6.183997432415485,52.09118492279905],[6.183181449617882,52.09125308784304],[6.182631352980708,52.091319721998225],[6.182369178536233,52.09135777798876],[6.182045763863025,52.09140756297222],[6.181754027878518,52.0914474619046],[6.181377438191197,52.09149072753442],[6.181076665140356,52.09151647504685],[6.180747305428447,52.09153729994571],[6.18061401491824,52.0915420267275],[6.180338571372783,52.091534758166986],[6.180132432013405,52.091528586516176],[6.179891713302688,52.091512795892015],[6.179613981907464,52.09149251684737],[6.179298030810109,52.091462211396305],[6.178963458665276,52.091419455480036],[6.17864798294919,52.091366494340136],[6.178594057992339,52.09135542335008],[6.178296801598288,52.09129709865129],[6.178135670176538,52.091262280873295],[6.17795550695137,52.09122147851077],[6.177780758155055,52.09117822166241],[6.17752277977203,52.09110631962511],[6.177368901474726,52.09105743924039],[6.177183020115398,52.09099189305169],[6.176978956023434,52.09091552958996],[6.17674356475954,52.090820248426205],[6.176576387914102,52.09075031543348],[6.176419960539604,52.09067676876752],[6.176293607657303,52.090617258077266],[6.176169689139378,52.090552625542145],[6.176012529321522,52.09046643657447],[6.175834145768254,52.090359967843746],[6.175736382749129,52.09029729001563],[6.175635217343179,52.09023032044832],[6.175298091794001,52.089990689490115],[6.175178293494509,52.08990382702547],[6.175140821903489,52.089872384574505],[6.174956367471103,52.089717597570356],[6.174899349333059,52.08966662812631],[6.174858335766461,52.08962295808769],[6.174791908468857,52.08955224107998],[6.174518512100442,52.089247860892996],[6.174367694872954,52.089067321130294],[6.1742690803726,52.088931140695664],[6.174210019580864,52.088847754439946],[6.173989215718072,52.088511688129685],[6.173894612965942,52.08834713119045],[6.173527003977457,52.087692084361635],[6.173454720986431,52.087555278061316],[6.173410915885007,52.08746386181691],[6.173307087431433,52.08721749966016],[6.173163345732461,52.08688435108991],[6.173084066750629,52.08670301777398],[6.172957291242785,52.08640687783355],[6.172831933488822,52.08609749737506],[6.17279736956138,52.08600955170363],[6.172765911710567,52.08592233134553],[6.172690127040244,52.08567312103785],[6.172619052770514,52.08541625710854],[6.172454196781284,52.084833982141504],[6.172414663431551,52.084694763694976],[6.172373058864078,52.0845156865014],[6.172332924235259,52.08434635190544],[6.172320294721457,52.08426025530987],[6.172289647159716,52.08410605684663],[6.172268900525054,52.083992240186205],[6.172250584418692,52.083881400459816],[6.172203245906997,52.083545181252475],[6.172160790535808,52.0832926024919],[6.17202075028293,52.08257565898355],[6.171966163952096,52.08233502563601],[6.171892237342883,52.08202731481259],[6.171827543684198,52.08167620035613],[6.171772600667164,52.08143091327793],[6.171714827590306,52.08109330715138],[6.171680657851219,52.08091023421366],[6.171601376489798,52.08065629149743],[6.171574326698272,52.08056967959807],[6.171482124052543,52.080290960910034],[6.171375644097484,52.08004822789094],[6.171233146337163,52.07976390248233],[6.17096767720546,52.079299386707355],[6.170719254393856,52.078903239596976],[6.170599636579905,52.07875868371769],[6.170352835066813,52.07849389958335],[6.169778825750746,52.077945628829156],[6.169085911938145,52.07725389872489],[6.168854993823049,52.076919543627504],[6.168741514681455,52.07675081125939],[6.168706697024156,52.07670840127995],[6.168498552585462,52.07649661309132],[6.168336513338136,52.07634118169593],[6.168160922802798,52.076199906787416],[6.167874832145762,52.07600502016219],[6.167781657416602,52.07594285366992],[6.167268300455966,52.07565091363672],[6.166853475369013,52.075463789163614],[6.166669604888157,52.075374250196376],[6.16616858883524,52.07515522757389],[6.165766236087349,52.07499608760439],[6.165346604136319,52.07484888018358],[6.164851092994025,52.07467980015217],[6.164677023313278,52.074623315662],[6.164133820649705,52.074463598759486],[6.163466708479042,52.074272841185255],[6.162801741071518,52.07409271698966],[6.16263052092328,52.074046340660054],[6.162103225099921,52.07390053162894],[6.162031064990186,52.07388031506],[6.161952400177883,52.073856779571905],[6.161784715850296,52.07379632089662],[6.16166418870541,52.07374840532733],[6.161529796679098,52.07369666184562],[6.161465794864402,52.07366908372363],[6.16088012720058,52.073397347911],[6.160258780071512,52.07308968305312],[6.159958915839047,52.07294120298482],[6.159592809326258,52.07274748651922],[6.159215166586451,52.07252578274742],[6.15901855799659,52.072338036212884],[6.158585140167385,52.07192748104282],[6.158396896732573,52.07175508481284],[6.158390539049394,52.071749266003486],[6.15800248300033,52.07140575279036],[6.157833264593309,52.071257104352455],[6.157399945537821,52.07095606790947],[6.156970669911775,52.070675218378156],[6.156726641027737,52.070512559005664],[6.156246000218395,52.0702416600535],[6.155707687721435,52.06993638632809],[6.155417932226783,52.069789248996294],[6.154882041938615,52.06951652970253],[6.153937534550613,52.06913272071685],[6.153494046122853,52.06896578927561],[6.153062315333464,52.068810716315156],[6.152835706143827,52.068726179713245],[6.152741620012389,52.06868619072314],[6.152584784480752,52.06862287111026],[6.152391686546866,52.06853539237958],[6.151860935962483,52.06828493526129],[6.151665986740237,52.068187103740996],[6.151444893889826,52.06807254336165],[6.151284528115728,52.06797820798369],[6.151228278846926,52.067945127069756],[6.151124049748903,52.06787297018681],[6.1509624842094,52.06774587043956],[6.150780129179895,52.06759355797235],[6.150581541169249,52.0674163626896],[6.15052554580532,52.067362193003504],[6.150393535149244,52.067219045370635],[6.150265824580388,52.06707143844554],[6.150014398029747,52.066778553268506],[6.149733060560296,52.066435067764864],[6.149320338216478,52.065887756981866],[6.149121202158316,52.065639922929286],[6.148959865192625,52.065468910619664],[6.148488994619226,52.06506172475952],[6.148448940939096,52.06502275828629],[6.148321307501467,52.06494236404927],[6.148086470089663,52.06480451640068],[6.147885332757645,52.06468701607591],[6.147688843206081,52.06458120627505],[6.147590710414394,52.06453057909],[6.147402662840729,52.06445375583922],[6.147192440697902,52.06436528261273],[6.146506814600018,52.064086121264125],[6.146235302012247,52.063970995408965],[6.146054598219775,52.063888370106824],[6.145758118556073,52.06377393436076],[6.145471837177631,52.063682909916004],[6.145133348571583,52.06357205982017],[6.144795503744589,52.063462957354155],[6.144403720587231,52.06333335665723],[6.144075529814494,52.06322145758688],[6.143743558376439,52.0631161434304],[6.14361506562846,52.06307724910837],[6.143459503656541,52.06302866821313],[6.143295775510799,52.06298526293579],[6.143136825361931,52.06294670746303],[6.142967282262413,52.06290520864706],[6.142827379620218,52.06286760912016],[6.142823101965864,52.06286645908796],[6.142676926533617,52.062828719865585],[6.142499257790774,52.06278613098146],[6.142355078280784,52.0627473808472],[6.142213342700389,52.062704803785515],[6.142077801680427,52.06266375082679],[6.142012691742612,52.06263798497393],[6.14186383064222,52.062581862703595],[6.141684476802386,52.062508426212396],[6.141401302711471,52.06239140452814],[6.141260604348894,52.06235400599143],[6.141152622519813,52.06231356647573],[6.140998855835795,52.062247452459495],[6.14078662641957,52.06214232521375],[6.140520114262423,52.0619830931236],[6.140189624223739,52.0618027243567],[6.13998270856224,52.06167516259797],[6.139762980321698,52.06155305742637],[6.139458346880502,52.0613663553311],[6.139390467964329,52.06129885460307],[6.139230313109894,52.061142958004645],[6.13897548092077,52.06089622665894],[6.138798831675161,52.060727895959474],[6.138651531928861,52.06057224010921],[6.138530798444835,52.060393799753456],[6.138268967214702,52.06009709108635],[6.137847476925352,52.059611510748],[6.137684169613539,52.0594104294771],[6.137504415710256,52.059214576166724],[6.137469310302331,52.05918111131649],[6.137163975096526,52.05889010637864],[6.13683727463929,52.058613465315005],[6.13657750784197,52.05839954092764],[6.136408388956794,52.058280091603194],[6.136129183070327,52.05805447915569],[6.135847747655182,52.05783052510397],[6.135324249524903,52.05746342226653],[6.134724007849116,52.05710695225808],[6.134020496409184,52.05671015612399],[6.133894300767521,52.05664303109942],[6.133459619590552,52.056420438582535],[6.133176861340973,52.05627313968058],[6.132879707175158,52.056117572059264],[6.132394738515481,52.05588218900546],[6.132073718565886,52.05573259489026],[6.131789427995551,52.05560220057137],[6.131359422968163,52.055407920208395],[6.130843458757896,52.05517173797722],[6.130787845218701,52.05514694864351],[6.130328088405601,52.054942012413996],[6.129994202971949,52.054800035136715],[6.129435914508646,52.0545631250537],[6.129335894718491,52.054526246919785],[6.128338298026112,52.05417135860905],[6.128187310449717,52.05411702125645],[6.127773098722098,52.053974851104336],[6.127635365969228,52.05392757545653],[6.127357737232717,52.053840578547664],[6.12700282520249,52.05372472846414],[6.126629550917248,52.05361545529562],[6.126234510449506,52.05350440304404],[6.125873021605367,52.05340403292699],[6.125475726517069,52.05329395404652],[6.125082231736038,52.053184335389496],[6.124533085344631,52.05301189061226],[6.123888885081827,52.05282181858474],[6.123496407672347,52.052702651598686],[6.122837815165346,52.05246134908364],[6.122289791727171,52.05226211044649],[6.121760645872213,52.05205885053494],[6.12121709774112,52.051838537173666],[6.120564593388742,52.05155885753605],[6.120108844835285,52.05134337622362],[6.119683884132091,52.05112386357463],[6.119231611881489,52.050882398769254],[6.118776967169469,52.050633738285605],[6.11816460124148,52.05028615832887],[6.117636038981101,52.04996689009486],[6.117324409384164,52.04977152772904],[6.11697482831959,52.049548077351325],[6.116462565627115,52.04922064026051],[6.116106939006198,52.048979032254394],[6.115715273612758,52.048712937085604],[6.11526056553882,52.048381998100304],[6.114497669114255,52.04886046847956],[6.114503443202564,52.048865915731774],[6.11369813655936,52.049372611100274],[6.113740337860927,52.04947656213659],[6.113619171353453,52.04956882963891],[6.113580750403231,52.04959808122974],[6.113505688278345,52.04956952977701],[6.11344121744596,52.04954501165281],[6.11347421622121,52.04956972392569],[6.113600161085072,52.04966405313841],[6.113634282477148,52.04970043436532],[6.113632449407189,52.049713245149896],[6.113617557427385,52.04971998844645],[6.113658536197293,52.049806096098145],[6.113647186433429,52.04981101986257],[6.11363880982632,52.04981499048801],[6.113575457584941,52.04986301086788],[6.113565943081068,52.04986873225692],[6.113539579888328,52.04988729414639],[6.11350073699818,52.049865413335006],[6.113468541257987,52.04984797671553],[6.113444762270633,52.04986407779917],[6.113415705308763,52.049883743872925],[6.11326068192331,52.04987606214867],[6.1131489108529,52.04985293213697],[6.113041066149307,52.04996761483689],[6.113030219327423,52.04998198224269],[6.113024444824677,52.049985496350715],[6.113015858506071,52.049990924344016],[6.113002275812368,52.05000110204497],[6.112985545577978,52.05001406757299],[6.112984235946002,52.050017814818176],[6.112976089412946,52.05002339290014],[6.112961321275263,52.05003329027531],[6.112941935764626,52.05004523849979],[6.112920821516415,52.05005846474059],[6.112912744651717,52.05006294580456],[6.112904284403234,52.05006715957932],[6.112893740759889,52.05007235694164],[6.112883123353134,52.05007750082729],[6.112862670169634,52.05008744221913],[6.112734163266242,52.05014350383895],[6.112671083671576,52.05017245766109],[6.112649637535355,52.050182306261554],[6.112589148094687,52.05021006659981],[6.112518760928287,52.050242409044756],[6.112475755631667,52.05026593593719],[6.112462767237109,52.05027321565099],[6.112452036875702,52.05028039156988],[6.112443094298379,52.05028633405357],[6.112430203538883,52.050295141189096],[6.112416323683263,52.050304988080974],[6.112406386311413,52.050312518646706],[6.11239359450678,52.050322035251625],[6.112386117531116,52.050327555237416],[6.112379066647689,52.05033327933128],[6.11237361563554,52.050338768860705],[6.112368487072446,52.05034436426452],[6.112361780667891,52.05034885482573],[6.11235302404692,52.05035637811423],[6.112343591575401,52.05036627850044],[6.112334079659561,52.050375774897496],[6.112324758119813,52.05038532405159],[6.112317275530293,52.05039409786564],[6.11231005664198,52.050402950950655],[6.112299512709561,52.0504162378141],[6.112253282263617,52.050481877129],[6.112179585775008,52.05058716257492],[6.112152216784458,52.050625594687965],[6.112120937879907,52.05066565979056],[6.112101413372134,52.050691558713964],[6.11194394265641,52.05077417871226],[6.11192198993728,52.05076717706083],[6.11191198191441,52.05077125647592],[6.111899867883293,52.05077492639883],[6.111887170190204,52.05077766512026],[6.111878424659012,52.05077868070834],[6.111869568061576,52.05077913969903],[6.111862018640358,52.05077929402649],[6.111854549844444,52.050779025402825],[6.111843697628013,52.05077778888002],[6.111833069484753,52.05077598470838],[6.111823199083488,52.050774157895376],[6.111810968918413,52.05077065578716],[6.111801127896708,52.05076614126234],[6.111795338362455,52.05076333656187],[6.111789692858104,52.050760423114006],[6.111782409629347,52.05075540747283],[6.111794978181369,52.050726684116555],[6.111756333965823,52.05071436515931],[6.111675997325493,52.05068874825249],[6.111661406549241,52.05069792529873],[6.111586497506919,52.050676166907074],[6.111577269451071,52.050673491212606],[6.111578683178398,52.05069958480423],[6.111572696675751,52.05072424084143],[6.111549556297385,52.05075464712572],[6.111546701159299,52.05075839487396],[6.111532211057746,52.05077199357319],[6.111498802629974,52.050798526101964],[6.111290968548781,52.050924931886605],[6.111000782504779,52.051104920043166],[6.110989307231763,52.051112037486654],[6.110909560941473,52.05115990550954],[6.110867496530531,52.05119393974073],[6.110848280425439,52.051209487321835],[6.110828626827426,52.051225389034684],[6.110821873240734,52.051229864516095],[6.110772476780661,52.05126398512228],[6.110604154885508,52.05138025690679],[6.110535300730466,52.05142781955378],[6.110530241366339,52.05143131386326],[6.110499299150103,52.05145715502279],[6.110484920837676,52.05146904420969],[6.110303991800958,52.05162029941289],[6.110240180157045,52.05167365089516],[6.110170484713878,52.05173191017842],[6.110170024901413,52.05173232646781],[6.110013881969197,52.051868713218184],[6.109943394047638,52.05193752060774],[6.109721969822767,52.05223054383853],[6.109812138743287,52.05225912183327],[6.109769808212625,52.05231290747681],[6.10976480757298,52.05231201236201],[6.109741105645933,52.05233846683029],[6.10973865662191,52.05234119635263],[6.1096829349318,52.052399063974114],[6.109587730715242,52.052518285866974],[6.109555618840146,52.052558454244],[6.109456355268986,52.052684559069185],[6.109368217322249,52.05279361650326],[6.10936967158766,52.05279429070076],[6.109312413527365,52.0528672410866],[6.109314204833984,52.05286802107834],[6.109289551406203,52.052899694551094],[6.109291119689384,52.05290020625935],[6.10926238654556,52.052936560730984],[6.109264119686098,52.052937350068554],[6.109249225337045,52.05295670352291],[6.109251264331554,52.05295747300821],[6.109228070318602,52.05298653088516],[6.109170388966442,52.0530667104562],[6.109016793541672,52.05332987037546],[6.108964693227995,52.0534171434129],[6.108687393860476,52.05389067026808],[6.108669463951136,52.053920729434395],[6.108650816914039,52.05395062221255],[6.108636476698532,52.053972731622494],[6.108621682648697,52.05399472696227],[6.108609200854979,52.05401273526683],[6.108596396872906,52.05403065566009],[6.108579002014583,52.05405502188586],[6.108559380811376,52.05409413371101],[6.108509741183162,52.05419306736481],[6.108508847065908,52.05419458289088],[6.108407044217702,52.054367990215916],[6.108547896286344,52.05438113127373],[6.108544055577551,52.05439793611673],[6.108528660531418,52.05442878868276],[6.108503102816581,52.05446776608491],[6.10846006157963,52.05454552759709],[6.108401856520648,52.05464408222219],[6.107862245912882,52.05555872730751],[6.107838216996078,52.05559945691908],[6.107804264548263,52.055656848799146],[6.107744389420147,52.055759619853504],[6.107624440819399,52.055960138570974],[6.107378582768428,52.056377849557826],[6.107349643004981,52.05643059060805],[6.107296111443283,52.056528109354815],[6.107290598366209,52.05653616969411],[6.107218614811662,52.05664141440414],[6.107207119191696,52.05665826600411],[6.107098588196817,52.05681653185545],[6.107068865197787,52.056860504960866],[6.106986172958723,52.056981742395905],[6.106906627174087,52.05709737875345],[6.106835810050487,52.0572018251058],[6.106815655835206,52.057231547010986],[6.106774523263845,52.05728789395735],[6.106738445320444,52.057337315914275],[6.106706386285314,52.057381233087476],[6.10669936426901,52.057392221144006],[6.106690527343991,52.057406048033734],[6.106501296554428,52.05760217106883],[6.106340467156262,52.05775103921011],[6.106160271634877,52.05790800705136],[6.105731877809252,52.05826515951388],[6.105559773134229,52.058408648400274],[6.105357078655435,52.058561428822735],[6.105328210584241,52.05855436924304],[6.105218638147869,52.058534858543844],[6.105154626325242,52.05856581832359],[6.105129418429772,52.058578762478355],[6.105093326675526,52.05860950704865],[6.105085141628783,52.05861647799944],[6.10486944338574,52.058796877226065],[6.104804824103086,52.058850913671904],[6.104799730608844,52.05885517823743],[6.10463213154788,52.05899534852962],[6.104585100266482,52.05903320647643],[6.104527070507727,52.0590799220359],[6.104371345257484,52.059209548155025],[6.104239680219289,52.05932105080432],[6.103955972065319,52.0595555589705],[6.10395335298364,52.05955773212231],[6.103357799642102,52.06005229163084],[6.103298875409751,52.060101591669465],[6.103060399784533,52.0603011004472],[6.103021879251177,52.060333333220754],[6.102705164989954,52.06059831175313],[6.102584925013518,52.06069892107367],[6.102570691489429,52.06070978460084],[6.102524387295935,52.06074956079377],[6.102480178753793,52.060786161230816],[6.102458713446229,52.060803932191504],[6.102348332719099,52.06089531593498],[6.102319328518027,52.06091720798143],[6.101733723744616,52.06139596895837],[6.101726873318876,52.06140165522163],[6.101543925825836,52.0615535001208],[6.101263976543104,52.06178590248619],[6.100577330694168,52.06235586395448],[6.100540106103701,52.06239642924389],[6.100488110854696,52.06245722692006],[6.10032255752927,52.062651488456474],[6.100132809731027,52.062873202882585],[6.099943848350478,52.06303547217225],[6.099823560453595,52.063135701360615],[6.09954980951105,52.06336381949763],[6.099179681445522,52.063675680056214],[6.098753604672524,52.06403508437172],[6.098428024687766,52.064307933466075],[6.098035748824285,52.064637577220395],[6.09769273604281,52.06492440747489],[6.097402612694662,52.065167989339464],[6.096936704408392,52.06552070605182],[6.09636796629324,52.06594571331797],[6.095811878539784,52.066351523411086],[6.095419610642216,52.06663979373042],[6.095359517531944,52.066687290043284],[6.095209488732493,52.06679591756131],[6.095144040876618,52.06684329315208],[6.094547942693873,52.06728888640045],[6.094035787789802,52.067664762434994],[6.093282490214356,52.06821758877907],[6.093200282831079,52.06827712611138],[6.092830570603041,52.068544893746804],[6.092303575639982,52.06892583051721],[6.091663488313361,52.06939529353106],[6.091132542157794,52.06978499422566],[6.090484548121023,52.07025035429899],[6.090268904517137,52.07040532278828],[6.090262816807136,52.07040969780501],[6.090214618401339,52.07044433449044],[6.090184005418164,52.07046690090267],[6.089776206374538,52.07045916135409],[6.089775705885835,52.07045951937946],[6.089507439097586,52.07044664820199],[6.089180990717692,52.070437448909075],[6.088927057603422,52.070428967169875],[6.088884892494933,52.070427555553714],[6.088877930165988,52.070427322890644],[6.088870290716326,52.0704270672963],[6.088811615780974,52.070425149100835],[6.088865218701425,52.07027854713497],[6.088902386881672,52.07016543206905],[6.088983821730163,52.06992407715052],[6.089020282698352,52.069823558925606],[6.089128710161833,52.069496500936815],[6.089151712039793,52.06942130215696],[6.089191400391867,52.06929786232366],[6.089235444047596,52.06916014099285],[6.089263951964723,52.06906964714983],[6.089286101434551,52.069002426082506],[6.089395198138345,52.068674581814044],[6.089480335091999,52.06842226557978],[6.089530765981685,52.06827113225961],[6.089545306722813,52.06822755901263],[6.089551304602686,52.06820958249823],[6.089560501074422,52.068149728167],[6.08958541622468,52.06805157061523],[6.089584628204528,52.06800603135085],[6.08956557704832,52.06790827084079],[6.089555381535821,52.06788127671573],[6.089483935299423,52.067691994696276],[6.089464548312677,52.06764063402913],[6.089396952775562,52.067461548743935],[6.089360531640382,52.067356314585986],[6.089317177606463,52.067234933731676],[6.08924727569965,52.067062144961454],[6.089246851156624,52.06706111383208],[6.089208122897136,52.066961232457],[6.089197397392224,52.06691623779257],[6.089116325280149,52.06659383252436],[6.089114087639867,52.06657019751093],[6.089112768291468,52.06654653005904],[6.089112281684071,52.06652109592694],[6.08911220339352,52.06649565936104],[6.089112884867584,52.06647867630468],[6.089113072115196,52.06644506774504],[6.089117729881615,52.06639057956535],[6.089120283861072,52.0663646689037],[6.089123348654223,52.0663387821623],[6.08912627057835,52.06631773200506],[6.08912933860841,52.066296698953494],[6.089138119393013,52.0662540238548],[6.089149343609492,52.066205347948745],[6.089155647917438,52.066180511509856],[6.089162448873453,52.06615572604019],[6.08917166821379,52.06612241418575],[6.089181004483311,52.06608911961002],[6.08919631187428,52.066040428346625],[6.089208521312331,52.065999710239325],[6.089213142744398,52.06598473506149],[6.089229587340022,52.06593881441424],[6.089236421691209,52.06592266654589],[6.089249075405128,52.06589186173444],[6.089250796146252,52.065887670094966],[6.089259429567591,52.065866654194586],[6.08913534779136,52.0658471880428],[6.089135211192448,52.06584749805631],[6.089102725498126,52.06585632050248],[6.089065465725104,52.065863886058814],[6.08900797050524,52.06586260182301],[6.088975970558968,52.06585776803333],[6.088873881898077,52.065843725344166],[6.088826902062326,52.06583688648259],[6.088766439355094,52.06582213728206],[6.088624298031696,52.06577983990791],[6.088624101583465,52.06577977456421],[6.088565322693265,52.06576013994995],[6.08854353260834,52.06575286152476],[6.088469186458966,52.06572695941598],[6.088377182452141,52.06569380992794],[6.088259070357034,52.065644636764304],[6.088167838823257,52.06560306042995],[6.08797866777125,52.065502222439925],[6.087202123795059,52.06508827139922],[6.087155593140817,52.065063470479075],[6.085408803065514,52.06417342317171],[6.085133685783421,52.06418258628136],[6.078604523967957,52.06433045418539],[6.075288691779448,52.064401684546255],[6.072608869777189,52.06445918031267],[6.071441749331428,52.0644842049528],[6.068661352811572,52.064542770461806],[6.068443614042579,52.064547398212945],[6.068268345647258,52.064706663355416],[6.068055765188542,52.06490710830047],[6.068007838725061,52.06495229920037],[6.067748666044563,52.06519667376371],[6.066790465695219,52.06481959192762],[6.066701977469926,52.06478407820844],[6.06623619982892,52.064597140720046],[6.065477079856226,52.06429246426793],[6.064961898975533,52.06474256684696],[6.064904876788656,52.064783908785124],[6.064405287622849,52.06458145335124],[6.064332140626028,52.064551816990075],[6.063086169394028,52.064046597657835],[6.062984970255777,52.06400556247243],[6.062786413937612,52.06392504905092],[6.062371201042405,52.06430016575813],[6.062320605030036,52.064343997115266],[6.061537013989724,52.06402967794074],[6.060423818723549,52.06358522856308],[6.059496824669944,52.06321694434228],[6.059456376056803,52.06325509523427],[6.058435196769716,52.0640954330113],[6.058429970692552,52.064100913322974],[6.058425636186533,52.06410545736153],[6.058359747114753,52.06417453969659],[6.058358187160286,52.06417729182538],[6.057424003492863,52.06379251626651],[6.05671795780618,52.06350202105237],[6.055693622306952,52.06460435347158],[6.055421079639797,52.0648554315164],[6.05539584537599,52.06487863964557],[6.055376466629835,52.06489649525386],[6.055285502287341,52.06486302649455],[6.054604694121293,52.064621955069576],[6.052624297631103,52.06391634166682],[6.05085338172951,52.06328901107042],[6.050774806693259,52.063414724147144],[6.050648727649024,52.06357834791435],[6.05054735676681,52.06371852563465],[6.050350990363107,52.063979895712464],[6.050344210242789,52.06398892041929],[6.050269377011142,52.06408852525446],[6.050267996807958,52.064090352262525],[6.049446771609285,52.06382919959615],[6.049321660292197,52.06433182809934],[6.049320192602996,52.06433828996655],[6.049318645521235,52.064344511393045],[6.049318505359955,52.06434450049628],[6.049240166871728,52.06433821138351],[6.049153038835945,52.064332795856224],[6.048768036184225,52.064184692666],[6.047951831985695,52.063845750625],[6.047491440571957,52.06365283704103],[6.047218153649607,52.06353919994328],[6.046886506501657,52.06339191691005],[6.046639321230148,52.063286841933134],[6.046431617854982,52.0631860431736],[6.045894797302155,52.06318652148026],[6.045497596970503,52.063431984535754],[6.045376826974479,52.06353968353403],[6.045318253296277,52.06360039443237],[6.045202109354549,52.0637448565816],[6.04499142832902,52.06404546148761],[6.044892585140488,52.064203307350795],[6.044943660133957,52.06434543479254],[6.044912490334854,52.06430262675032],[6.044877518073895,52.06427951356713],[6.04475212428568,52.06425942563583],[6.044300633950862,52.06419031613749],[6.043597037384918,52.0640692504002],[6.043435981407494,52.06404150226361],[6.043338599377532,52.06403586094453],[6.043231688701455,52.06403280553721],[6.042469766253371,52.06405221282478],[6.042309229273854,52.06404411771049],[6.042177175959411,52.06400412620872],[6.042037692697754,52.063955464400486],[6.041899534437526,52.06384107428977],[6.041835801942793,52.06361278560826],[6.04178605376741,52.06340492869343],[6.041623416963685,52.06340863699712],[6.041076192015923,52.0634307770418],[6.040785448701135,52.063399528024824],[6.039712109379879,52.06326672963861],[6.039510072661742,52.06322543312624],[6.038808567081738,52.063026511853614],[6.038714551209975,52.063001480073275],[6.038708193312583,52.06297145652624],[6.038637228719215,52.062730011316546],[6.038485173821948,52.062427496752186],[6.03831355390839,52.062063852772305],[6.038189026679729,52.06188421587229],[6.037988999146222,52.0616505035629],[6.037668529638703,52.06129807167615],[6.037278269439033,52.061458086826455],[6.035655554392894,52.062094620705686],[6.035615329531711,52.06211039828553],[6.035572264070731,52.06212729076303],[6.035570359407002,52.0621285865792],[6.0355427049135,52.062147398584216],[6.035459442322591,52.06220403394898],[6.035180071870239,52.06234320065177],[6.034476757955174,52.06271081495243],[6.032683151228526,52.06326866864658],[6.032426816966696,52.06333271479217],[6.032417908569636,52.06336984577454],[6.032399126065934,52.06344813349846],[6.03202186330982,52.06502051940936],[6.032021765426493,52.065020507361716],[6.031913662614478,52.06500678267858],[6.029649026357667,52.06474754176538],[6.029507958759535,52.06531738965437],[6.029436665262832,52.06526325004366],[6.029254719125643,52.065124586408835],[6.02888081794161,52.06484649490383],[6.028686711270923,52.064695937718945],[6.028500209415139,52.0645640794171],[6.02844116613544,52.06452270419728],[6.028381821173672,52.06448977959736],[6.028239460360881,52.06443292163605],[6.028105292326918,52.06437786151686],[6.028001810145427,52.06434942840486],[6.027686118321251,52.064257272013286],[6.027385634006031,52.06420253131282],[6.027062053479263,52.064179599121715],[6.026499661763127,52.064146718403556],[6.026417236179302,52.06414561986843],[6.026028189750864,52.06414802767024],[6.025441548501346,52.06422050850853],[6.025087281148641,52.06425043563252],[6.025046371638775,52.064251933568016],[6.024987862000764,52.06425407510075],[6.024902894604408,52.064257185011705],[6.02491599758191,52.064394359143854],[6.02463639388802,52.06433290813703],[6.024452428553951,52.06429247493037],[6.024235240264257,52.064261485410945],[6.023225273599508,52.06412430842662],[6.022927636234943,52.064088837085265],[6.022590325410199,52.064083630554165],[6.022524691624374,52.06408564391883],[6.022501511495036,52.06408635501468],[6.022395357755214,52.064089464162855],[6.022337575714626,52.06409539172012],[6.020403268098642,52.06429062790617],[6.020127668891361,52.06431402299496],[6.019952410737426,52.064328724131364],[6.019045007863799,52.064406061857646],[6.017051130376644,52.064595383939],[6.015100099842986,52.064786982038896],[6.015018209682778,52.064763824382126],[6.013724297535013,52.06452971070314],[6.013639088961532,52.06451443630123],[6.012693721476127,52.064338849014355],[6.012444984002828,52.064280065250095],[6.011873652885343,52.06415978700126],[6.011102073227879,52.064026250564666],[6.010361381746754,52.06390208940301],[6.008833595835626,52.06365877089639],[6.007823152083094,52.06348630148461],[6.007794357827057,52.063496279238336],[6.006332187014038,52.06431350272668],[6.00625955534059,52.06435409548569],[6.006125874442745,52.0644288023533],[6.006106433534639,52.06443966620931],[6.006095640146385,52.06469673405159],[6.006095636704284,52.0646968014818],[6.006080590421503,52.06505831309546],[6.006075934786637,52.065232198007465],[6.005991187855892,52.06520792466945],[6.00594209613883,52.06519386338152],[6.005593451201815,52.065093733417406],[6.005278185766564,52.06500325862045],[6.005133149189493,52.06496160405448],[6.00503484652449,52.064931525520166],[6.005034752799817,52.064931497249404],[6.004918043516591,52.06489585706227],[6.004759920754617,52.064847569915166],[6.004698801930022,52.064975956432846],[6.004509655812369,52.06494754383654],[6.004432075734788,52.0649358909136],[6.004358623839191,52.06492494615337],[6.004360244475926,52.06508892175458],[6.004360155200487,52.06508889885289],[6.004300827105573,52.065108815018874],[6.003589983450887,52.06534660369651],[6.003514798568101,52.06537175364786],[6.003514730364414,52.065371778273196],[6.002114070718957,52.06586836968124],[6.00181977114672,52.06597447036352],[6.001819726990917,52.06597444093266],[6.001758283642594,52.065996603131644],[6.001732220048626,52.06600598809034],[6.001732267145654,52.06600601930357],[6.001720448636365,52.06601028120237],[6.00127153388276,52.06617217575947],[6.001271464726567,52.066172131178696],[6.001267475677497,52.066169555264956],[6.001178340959396,52.066111998865466],[6.000867662391636,52.065911382807705],[6.000852593050459,52.0659015023183],[6.000293367874377,52.065534735160796],[6.0001266861904,52.06542474225979],[5.999922154169997,52.0652897689932],[5.998702176020528,52.064489412088456],[5.998051498848416,52.06406264591965],[5.997926393863745,52.06398059003411],[5.997810356638162,52.063904481283146],[5.997584088506168,52.06375437255457],[5.997496166235013,52.06378616051872],[5.997201001486322,52.0638928797737],[5.996745524840599,52.06405754874908],[5.995541504993166,52.06449907741986],[5.995475680379507,52.064523215725224],[5.995315940542381,52.064581793149515],[5.995063004498125,52.06467454583408],[5.994030885082923,52.065046815576984],[5.992309172601629,52.065667794935585],[5.992191922784794,52.06571007600539],[5.992290071198339,52.06580128810009],[5.992293993998207,52.06580493695781],[5.992300090913867,52.06581061048856],[5.992304169022469,52.0658144203369],[5.992249975210898,52.06583464378248],[5.992082374387548,52.06592706836567],[5.991919768782326,52.06603520552653],[5.991858399541034,52.066094610476554],[5.991799880463516,52.06615125753863],[5.991689390495959,52.06633861730175],[5.991599706187236,52.06659945178506],[5.991576332525937,52.06679169611889],[5.991575352903335,52.066804788074336],[5.99154941801083,52.06715214090838],[5.991523614298495,52.06756158583451],[5.991527356503462,52.06761943493286],[5.991489422712532,52.06766175583176],[5.991135876811073,52.06785654051263],[5.990363049321233,52.068369091903854],[5.990149079964035,52.068510997869325],[5.990061220689575,52.06856931595784],[5.989702535059219,52.06880709369581],[5.988437215627007,52.06971463259435],[5.988143250054949,52.06990207510981],[5.987528117716947,52.0702386213846],[5.987186485336804,52.07040664710647],[5.986254474781235,52.070786930395826],[5.986065227459361,52.07089579251446],[5.986042901451421,52.070908635222644],[5.985848236938607,52.07102061290032],[5.985840018369461,52.07102564945551],[5.985645546081166,52.07136451566739],[5.985496799550412,52.07162845947061],[5.98521142285384,52.07213546362888],[5.984857870229761,52.07276357840678],[5.98440501202149,52.07356808688731],[5.982172580574961,52.07319608159943],[5.979806509194615,52.07278910415085],[5.979603952754658,52.07275426005186],[5.979476012618383,52.072732188407144],[5.979280419304904,52.07269850057851],[5.97507929201021,52.07380794010324],[5.975078464919467,52.07387118378215],[5.97507651776068,52.07403352763954],[5.975073166228302,52.07465793488503],[5.97508536511843,52.074929013593376],[5.975100669132992,52.075233225459556],[5.97512329946484,52.07543784687369],[5.975146363771001,52.07567102178302],[5.975159810766545,52.07588386832803],[5.97518149164353,52.07611607939071],[5.975202308776173,52.07633139684477],[5.975220661810985,52.076561206660244],[5.9752339697446,52.07676342975304],[5.975251360649994,52.07702321117382],[5.97527704255846,52.07730556561797],[5.97529606279322,52.07753724161338],[5.975312552634628,52.07772957069652],[5.975348233502339,52.07795911415708],[5.975266361750653,52.07794648101218],[5.974740898244296,52.07786537788114],[5.973706749388503,52.07769935632767],[5.973544897717526,52.07767337181098],[5.971284385161788,52.077310431886204],[5.971156558722173,52.07728836141333],[5.971047241876658,52.07726948874761],[5.968358239425758,52.07680516140206],[5.968045526391021,52.07675535416994],[5.967932097868374,52.07673642699246],[5.966997439410782,52.07658842939954],[5.964693211740078,52.07621564650053],[5.962946175957104,52.07562107068451],[5.962836556520185,52.07558376600397],[5.962800734623191,52.075571573257875],[5.960400286423289,52.07475443866915],[5.959745179900031,52.074531741699005],[5.958805210617314,52.07421011522628],[5.957714927087656,52.07383581038821],[5.957665519248075,52.07380416752863],[5.957613307091504,52.073774283747106],[5.957345417845855,52.07369440811309],[5.957167504044981,52.07364136678875],[5.956650442706777,52.07346434586626],[5.956472508716442,52.07339926833945],[5.956359932786717,52.07335229161142],[5.956217722339639,52.07328960270277],[5.956138199377088,52.07324895287663],[5.956135069259439,52.07324735281082],[5.956124578225091,52.07325199917815],[5.956086259538486,52.07326912531519],[5.955940218956611,52.0733343967866],[5.955935663330755,52.073336432152225],[5.955930935717246,52.07333859238594],[5.955903977508193,52.073352235486894],[5.955646723726344,52.07348242992999],[5.953588800425656,52.07452388446452],[5.953254377631648,52.07468312796345],[5.951913530460239,52.07532156357281],[5.950522023890938,52.0759527028908],[5.95030690935464,52.076048845060846],[5.947650625010302,52.07723592631265],[5.947230981930306,52.07741357939445],[5.946974084984114,52.077522191994476],[5.946803859600677,52.077594160711214],[5.946380941939633,52.0777729588079],[5.946102840372955,52.077890532551216],[5.946068683488539,52.077734721917764],[5.946067790729037,52.07773098705119],[5.945884797045625,52.077773614523046],[5.94580137867383,52.07778360062425],[5.945539951129208,52.07781487887651],[5.94505912078654,52.07783174517994],[5.942188028855994,52.07659036389527],[5.940963502412383,52.076051728818015],[5.939706227479495,52.07548582060624],[5.939405845601304,52.075349188186834],[5.938281043719828,52.07484259510436],[5.93722314743794,52.07437522707936],[5.936908840094229,52.07423180432353],[5.936530859832478,52.0740653802581],[5.935820407693965,52.073747236975294],[5.93441320407133,52.073121929466915],[5.934163083576898,52.073009929597],[5.934046530239352,52.07295773692457],[5.93336867473969,52.072654374973396],[5.932965118283455,52.07247561841583],[5.932729687913705,52.072371573923085],[5.931506823733612,52.071828348112675],[5.930403354734332,52.07133659184836],[5.929975807824002,52.07114646676707],[5.929761221707761,52.071051029885254],[5.929351643562075,52.07086884624859],[5.929026565364635,52.070725533022994],[5.928914071588963,52.07067636362343],[5.928547606753105,52.07051404958588],[5.928010160162459,52.07026587322922],[5.927806644649903,52.070174606427265],[5.926839474256686,52.0697403359794],[5.926358836292161,52.069524519047306],[5.925383000090024,52.069087696740404],[5.925169622494929,52.06899287517933],[5.925000538844902,52.068917409339406],[5.924850635381691,52.06885050236482],[5.924690644143256,52.06877910218892],[5.924481883357033,52.068685921136534],[5.924315910624248,52.068611842287595],[5.924189279667914,52.068555326573964],[5.924150158383913,52.068537861070745],[5.924123046282377,52.068525760701],[5.924112694049301,52.068521134022824],[5.923982952762443,52.06846304135315],[5.923592953783385,52.06828841547969],[5.923582161778464,52.068283593017235],[5.923574109748905,52.068279827672825],[5.92312141626137,52.068077262755224],[5.922135522263332,52.06763314300353],[5.922131445916779,52.06763130994602],[5.921698425328438,52.06743975067302],[5.921161006165072,52.06719978526513],[5.920685576072774,52.06699048306321],[5.920337723362113,52.06683436899607],[5.920145035741822,52.06674591621722],[5.920047856265662,52.06670129800943],[5.918696186203865,52.06610110569605],[5.918145404926251,52.06585566811945],[5.917614395673723,52.06561681717061],[5.917335623498645,52.065493199101994],[5.917190527707437,52.06542885836898],[5.916708939196808,52.065209869597616],[5.916263032888072,52.065011157779196],[5.915810572634207,52.064812833229574],[5.915450302699955,52.06464460844229],[5.915035438192964,52.06446051140237],[5.914704156342639,52.06431130830786],[5.914314958544991,52.064137861651886],[5.914126285010519,52.06405391116094],[5.913677644446433,52.063845188942366],[5.913257807830946,52.06365741373379],[5.912804140365449,52.06345953248249],[5.911968674844913,52.06308186136136],[5.911246196693814,52.06275784459283],[5.910723522332666,52.062524597168995],[5.910201644992566,52.062300430991016],[5.909948163863658,52.06218244461859],[5.909791921888087,52.062113326598784],[5.909752077549152,52.06209915821938],[5.909743438134605,52.062096095621456],[5.909706897085273,52.0620863257867],[5.909675265076456,52.06208110017739],[5.909639072603676,52.06207994848406],[5.909576535885925,52.06208307520396],[5.90934220302739,52.06210865241384],[5.908742577586936,52.062174092606014],[5.908383295064684,52.06221666972737],[5.908048762341097,52.06225457924508],[5.907333229673331,52.0623336746658],[5.907059571543584,52.06235979853565],[5.906791093379357,52.06238998855314],[5.90654896496489,52.062418875295684],[5.906513270265767,52.062422933615714],[5.905648571361314,52.06252126420657],[5.90525355190425,52.062567278794454],[5.903980586749086,52.06270677002972],[5.903527215329932,52.062760063686596],[5.90310676060612,52.062807440940595],[5.902760606206506,52.06284364261175],[5.902737611773847,52.06284638582626],[5.902451586111039,52.06288048072838],[5.901502061795309,52.062984338169365],[5.901443323509616,52.06299076062758],[5.899847721179911,52.063168512344404],[5.899002553644038,52.06326341033409],[5.898124467466385,52.063361995433],[5.898449317082266,52.06181572635668],[5.898204848979916,52.0616067867918],[5.898176154520551,52.06158155554918],[5.898027453525676,52.06145080197008],[5.89806631486599,52.061010237532074],[5.898066514085238,52.06100852890579],[5.898097581224207,52.060741030489375],[5.89834611130728,52.05872792921394],[5.898689715884,52.055875722195495],[5.89877189495112,52.05519254738433],[5.899296158660969,52.050833501098666],[5.899401428589365,52.049958182147535],[5.884232770899546,52.049479601933285],[5.882063239321633,52.049410786861394],[5.868298348186479,52.05101252369571],[5.861683200841279,52.05178168093811],[5.860707999054384,52.051895065780904],[5.859667966442067,52.05201743028586],[5.859346447925299,52.052003098673445],[5.858966115273017,52.05198855247375],[5.858563948182383,52.05197307680333],[5.858201394287319,52.05195913106564],[5.857639361664425,52.051937496635475],[5.857069294489936,52.05191844424371],[5.853325570230841,52.051742740722574],[5.850045320890213,52.05160172393277],[5.850027502874345,52.05159443264341],[5.849986976771166,52.05157784693372],[5.844156716066764,52.049191729067466],[5.837918124360606,52.04663184219606],[5.837709611269551,52.04645383799555],[5.83345897339172,52.04282477189487],[5.833001476716656,52.04243728007553],[5.83214372984486,52.04170905608605],[5.831930479634877,52.041522017406706],[5.831472764950984,52.04113484403981],[5.831015544124449,52.04074081801272],[5.830648189471366,52.040427857897015],[5.828967450321592,52.03898629414728],[5.828704710163486,52.03876468693032],[5.827666709390993,52.03787444661993],[5.827238510970179,52.037505239580426],[5.826585121938487,52.03694186359761],[5.82652685299357,52.03690904942844],[5.826477711769718,52.03689151707954],[5.826403261357761,52.03686717621042],[5.826328098066121,52.03684295480091],[5.826264724328308,52.03680674402719],[5.826203618087668,52.03677436272896],[5.826153562804555,52.03673195427889],[5.826091088967346,52.03666411951945],[5.826035713315052,52.03659335506774],[5.825977357442224,52.036490621634826],[5.825937797901851,52.03641420750218],[5.825910869060634,52.03635809559206],[5.824814807230672,52.03537896431782],[5.824767295642377,52.03533706713513],[5.824442493123641,52.035050615428474],[5.824306678479495,52.03493381472259],[5.824277372748403,52.03490860375743],[5.824103332478303,52.03475892206722],[5.823801990697338,52.03449975061161],[5.823432111232516,52.034169978339605],[5.822804616692682,52.03360694375613],[5.821943580110697,52.03287603296846],[5.821511997345937,52.03249815292808],[5.821458145549232,52.03245100172168],[5.821031512513401,52.03208078657826],[5.820384997519031,52.031407308036286],[5.818848374294173,52.02980093514275],[5.818691854893061,52.02963729436892],[5.81859845616353,52.02953965620532],[5.818462119647791,52.029397117381635],[5.817653356889961,52.0285524713246],[5.814321626567334,52.025072543361674],[5.814104509626818,52.02484124631674],[5.813373690850282,52.02407058455587],[5.812928721537156,52.023601365112405],[5.812756323046129,52.02341956370928],[5.811629791976772,52.022231533129556],[5.811566452352245,52.022164727390546],[5.810746410500053,52.02129987775292],[5.810021495767425,52.020535852061634],[5.809692284317977,52.02018839025025],[5.809261000289526,52.01973318328736],[5.80913009769827,52.01959511720623],[5.808338312728249,52.01875993635376],[5.808301823601245,52.0185713590816],[5.808174091270371,52.017911235212345],[5.808160802786178,52.01782416883023],[5.807391699702351,52.01278628988797],[5.807385057493558,52.012742810545745],[5.807225965551839,52.01170050942357],[5.806620820682374,52.01061585551936],[5.8054477394936,52.00851304461187],[5.805446347195407,52.00851055981899],[5.804118805647477,52.00613062851341],[5.803054027455286,52.004221546155605],[5.803008101970892,52.00413921438093],[5.80298935252296,52.00410558372087],[5.802983369406451,52.00409486391492],[5.802960636168883,52.00405409268732],[5.805815621185846,52.0033862254458],[5.806321722299248,52.00326781875607],[5.807004347226894,52.003108117196646],[5.809527620693621,52.00272523677536],[5.809911767826337,52.00266694335242],[5.812625195744776,52.002250083306635],[5.812784694883625,52.00222469877282],[5.812804029800366,52.00222115036403],[5.813006196926256,52.00218493309795],[5.813228227590207,52.00214260343812],[5.813478148745106,52.00210365973226],[5.81350188371292,52.0020988099429],[5.814047590247142,52.00201557718011],[5.815167155403119,52.00181186215388],[5.815381219543532,52.00177291002268],[5.816366946140162,52.00159245587846],[5.81658905950896,52.0015517913721],[5.817247736244324,52.0014312075385],[5.818826717218057,52.001124290684565],[5.820027543421928,52.00087108327198],[5.820373700566836,52.00079809172475],[5.822190339064647,52.00041318882226],[5.823889835284607,52.00005046228795],[5.82406420495224,52.00001184839809],[5.825045871449792,51.999794448564955],[5.825054473629041,51.99979254698604],[5.825180977351199,51.99976452699707],[5.826275936476731,51.99955567424508],[5.82692528055463,51.999485378213954],[5.827625259003792,51.99940960391692],[5.8293958678602,51.99920933576707],[5.830307920704189,51.99910593604172],[5.831403504457514,51.998981729540134],[5.831710029060627,51.99894922949664],[5.831775201911743,51.998941298222],[5.83248308785914,51.998862831527944],[5.833525915491728,51.99874723592578],[5.833807519220987,51.99871739561197],[5.834202838311192,51.9986922458507],[5.834349437892613,51.99867830511943],[5.834392015938873,51.998675338913756],[5.835465164930021,51.99861054734245],[5.836294755139068,51.99855915184984],[5.837116226474137,51.99859997425061],[5.837436253321287,51.99860037660188],[5.838612526677557,51.99863722335902],[5.838789624083328,51.998642772455355],[5.839058279586389,51.99865060316735],[5.839177222198471,51.99865517063737],[5.840012018010746,51.99868982758486],[5.840290409046575,51.99869266546899],[5.840537809558556,51.99869519070012],[5.840755889226628,51.9986839685565],[5.842640212962213,51.998586993741824],[5.844000685712493,51.998518494726575],[5.844037628544471,51.99851704795436],[5.844140052238042,51.99851244360516],[5.844189478140692,51.9985099326171],[5.845052742361164,51.998466083419444],[5.846262508772208,51.99840463428371],[5.846263003572634,51.998404605387826],[5.846669228987103,51.99837182100029],[5.84676735554491,51.998368552424274],[5.847122145177845,51.99835672134965],[5.847307366881743,51.998330955645955],[5.847397374825501,51.998318433410894],[5.848125938566151,51.99822230940353],[5.849044986276167,51.998114161818535],[5.849672927839222,51.998039671538436],[5.850697263449816,51.99767254916739],[5.8512660418499,51.99747514403794],[5.851840950558082,51.997275410924225],[5.85205247678673,51.997199046644596],[5.852061849702306,51.99719580078639],[5.852139575060511,51.997168870297465],[5.852271477223994,51.997123164762215],[5.852346541921408,51.99709805129989],[5.852416745421931,51.997074565918204],[5.852456630868979,51.997063559305666],[5.852464995212824,51.99706135105679],[5.852774635894825,51.99697968074767],[5.853329055499088,51.99684124958577],[5.853376953843345,51.99682929410068],[5.853436209433711,51.99681449822336],[5.854481102650479,51.9965477142463],[5.85467922658481,51.99649664654379],[5.855814433268319,51.99620402789045],[5.855924290712933,51.996175708507394],[5.856186786272304,51.99610804101757],[5.856194962003936,51.99610593212538],[5.856212969014059,51.99610129427687],[5.856341583500522,51.99609830958889],[5.856428185383222,51.996096301311944],[5.856436468506065,51.99609610647913],[5.856550525570586,51.99609345827276],[5.856579261785141,51.9960927863299],[5.859179351355006,51.99603238003012],[5.85921540989233,51.996031543236924],[5.860493441306478,51.99600183365808],[5.860919504715861,51.99599192117379],[5.863358838426446,51.99589792329766],[5.863385110004531,51.99589690912595],[5.863739622894824,51.99589002648397],[5.86373407449771,51.99585983033536],[5.863732666826777,51.99583836301611],[5.863672371070002,51.995615167402185],[5.863672734977999,51.995615156939785],[5.863667099745889,51.995593221376595],[5.863611898718299,51.99537804061839],[5.863533254114931,51.99506544081498],[5.863453976025119,51.994746560698],[5.863423872432246,51.994628450614805],[5.863369058602234,51.99441495525354],[5.863328562137672,51.994260918771964],[5.86322876311931,51.99387132077192],[5.863182103669331,51.99368129938124],[5.863150617379331,51.99355309196959],[5.863042613708148,51.993185817944926],[5.863012515160338,51.99301819121359],[5.862949461318675,51.99277998687917],[5.862891202928348,51.99255182100955],[5.862859168971048,51.9924253594472],[5.862834186821929,51.99232678699574],[5.86278924398653,51.9921541598096],[5.862709940971045,51.9918429192359],[5.862630443428307,51.99152696052984],[5.862591597713538,51.99135799380688],[5.862560108615207,51.99122096869793],[5.862890212664044,51.99120039911302],[5.862926717860134,51.991198121237105],[5.862931053684558,51.991197852027284],[5.864553477719906,51.99109437560606],[5.864588242412708,51.99109136723791],[5.864702471129415,51.99108146582714],[5.864700201253756,51.99105289226218],[5.864426387807633,51.99008903808648],[5.864375042437591,51.98990204715434],[5.864370043766811,51.989886535657405],[5.864353910884184,51.98982483353197],[5.864300079701922,51.989618986210424],[5.864278013437348,51.98953463066725],[5.864232743323728,51.98935339449319],[5.86418682918498,51.98917864147267],[5.864094249191936,51.98881311227985],[5.864073802193418,51.98873583290398],[5.864057708813643,51.98867502939962],[5.864052460403556,51.98865517755153],[5.864052035669747,51.98865357036821],[5.863955200780181,51.98826556957202],[5.863939374452031,51.988201782648105],[5.863911154892419,51.98808804674485],[5.863871225220278,51.98792711399646],[5.863833230764524,51.98777399950108],[5.863832713350217,51.98777188934765],[5.863821746643311,51.98773450651269],[5.863813685372836,51.987707493388214],[5.863810681205038,51.98769742069058],[5.863788912854948,51.98762447897076],[5.863739156074566,51.98745767798214],[5.863715214109952,51.987377446554554],[5.863712179916361,51.98736728409272],[5.863702850575391,51.98733600665492],[5.863700858203747,51.98732935439696],[5.863685598990936,51.98729215072844],[5.86332681041351,51.98592090153006],[5.86329175682001,51.98578529311945],[5.863251191996551,51.985652978747325],[5.863248996575575,51.9856532393066],[5.863192684947117,51.98545549988337],[5.863192352196145,51.985454323762575],[5.863189676013838,51.98544495080671],[5.863186258493647,51.98543293829035],[5.863153870540928,51.98529055085086],[5.863116542398343,51.985162735453876],[5.863349817691256,51.985147032415114],[5.863519391735317,51.98513562268187],[5.863950664097677,51.984897024371314],[5.863973176889132,51.98488538313501],[5.864132145638808,51.98475978315964],[5.864167726220739,51.98473129873792],[5.864255605858265,51.98468182120767],[5.864381660879188,51.98464800813258],[5.864412099213026,51.98464383089793],[5.864531956931839,51.984632297849096],[5.864964435584767,51.98459119089266],[5.864981436321568,51.984601925767215],[5.864991980626915,51.98459555516246],[5.86507268647867,51.98464069907768],[5.865083062141551,51.984636261635465],[5.865374812668152,51.984511585419604],[5.865452325631928,51.984478462912634],[5.865206648023209,51.98433269172203],[5.865201973360142,51.98429838438664],[5.86520385928438,51.98425271613264],[5.865209482080235,51.98422029942734],[5.865222662310559,51.9841840050083],[5.865246985144102,51.984144222773004],[5.865278745500292,51.98410570461326],[5.865348360107178,51.9840500086919],[5.865410335068407,51.98401506183785],[5.865467637728213,51.983988358251764],[5.865520642427501,51.98397359959987],[5.865553168487509,51.98396458685655],[5.865615301050393,51.983945800225506],[5.865648620388499,51.98393064521584],[5.865691187661364,51.983903614970984],[5.865726489616347,51.98386418344696],[5.865748883394225,51.98382375280744],[5.865789289606421,51.98368974351553],[5.865860960299137,51.983466784515734],[5.865874399567133,51.98342482633028],[5.865934663571606,51.98323657261363],[5.866024116241806,51.98294500526554],[5.866088450218033,51.98273723924331],[5.866130629257857,51.98259767680252],[5.866161322882456,51.98252079164979],[5.866221217080702,51.98240033806749],[5.86627135122052,51.98231602125739],[5.866391669274336,51.98215205169774],[5.866552270804431,51.98189478095851],[5.866590842108316,51.98181417836464],[5.866616037335483,51.981739140121825],[5.866636793026187,51.98166684342997],[5.86664449093189,51.98162169972277],[5.866637976114025,51.981567841370385],[5.866638281201035,51.98155008821596],[5.866645654908411,51.98148415587032],[5.866694693950277,51.98124179289401],[5.866723466133537,51.98124266428745],[5.866738422772605,51.98124336730421],[5.86673941250263,51.98123519289481],[5.866751331075126,51.98113692903219],[5.866753311006165,51.9811206251525],[5.866763264343753,51.981038683083455],[5.86676604126875,51.981015783926615],[5.866768584023599,51.98099480742526],[5.866773684306732,51.980952739311576],[5.86678713168529,51.9808885528782],[5.866797483095687,51.98083703460981],[5.866797860983496,51.980835756728595],[5.866994424765648,51.98085071231472],[5.86701659799694,51.980672796213504],[5.867057782661835,51.980529174725966],[5.867141258186223,51.98054798815786],[5.867227354644299,51.980564157256936],[5.867229070029704,51.98055987181877],[5.867277428132219,51.98046094680264],[5.867318891825388,51.980376107631955],[5.867367130109443,51.98031224646645],[5.867369817201493,51.98028996245925],[5.86735799374281,51.9802691848197],[5.867336463520806,51.9802390720031],[5.867328503510401,51.98022702421302],[5.867324449066815,51.980211329198674],[5.867313488752615,51.98016784355606],[5.867302489725011,51.98015064888098],[5.867283886153031,51.98013557053911],[5.867238849228167,51.98013271634586],[5.86732899580367,51.98007996444078],[5.867501737714801,51.97998161000571],[5.867240662971895,51.979831287712166],[5.867088430600672,51.979743634844574],[5.867077298276941,51.97973722486834],[5.866721435741681,51.979533778980105],[5.866273551052311,51.97927803544449],[5.866220159542642,51.979198814248406],[5.866243730945301,51.979165326647795],[5.866260950850475,51.979140880194706],[5.866286690222658,51.97911822365732],[5.866343985973447,51.97907788436488],[5.866394773798301,51.97904557116221],[5.866439792485989,51.979015501562216],[5.866469824285224,51.97899545207755],[5.866554501856172,51.97894182421203],[5.866575661141055,51.97892781506025],[5.866679910682129,51.97885877325337],[5.866885978049682,51.978728851677005],[5.866991635497897,51.97866224866714],[5.86706541640535,51.97861194562153],[5.867119441128473,51.97857617636776],[5.86743934899116,51.978369424431044],[5.867443997720143,51.97837266820364],[5.867518322304991,51.978324295136105],[5.867635330375712,51.97824813553887],[5.868200008151839,51.97857486232919],[5.868372583156228,51.97867463666024],[5.868548895658862,51.97877810761358],[5.868356214723211,51.97890447190003],[5.868384084778891,51.97892042896484],[5.86853466810978,51.97900662182007],[5.868668483894538,51.9789192648712],[5.868726878229316,51.97888114901397],[5.86879118013007,51.97891876244243],[5.86898142051939,51.97903003149426],[5.869153214057348,51.97891727920391],[5.869972177411419,51.97837978023628],[5.870698761340253,51.977903605115245],[5.87128005764393,51.97752450421683],[5.871412616538703,51.977437569927226],[5.871469959807391,51.977399963058375],[5.8715364066149,51.9773563872746],[5.871545180712328,51.97735063276744],[5.871552271096339,51.97734598266845],[5.871552314448294,51.97734595372728],[5.871951950543975,51.97708386594669],[5.871962266596304,51.9770771001574],[5.8719779964792,51.97706678413325],[5.872298928434794,51.97685630693766],[5.872315649579049,51.976845340518175],[5.872447924038495,51.976758584184054],[5.872463820232682,51.97674819010799],[5.8724632757436,51.97674763867457],[5.872450516693977,51.97673455040569],[5.872303747727282,51.97658399762807],[5.871608205073632,51.975870506759115],[5.870860324363396,51.97511299373972],[5.870110680849058,51.97441919241004],[5.870059053089428,51.97437140679962],[5.869272547785234,51.97365116404126],[5.868727345814605,51.97317734958896],[5.868194781970712,51.97274506987474],[5.867775650734427,51.97241415287925],[5.867452538308156,51.97218161491232],[5.867136219530795,51.97195395595316],[5.866689580057232,51.971666246377445],[5.866130117365802,51.971341711165195],[5.865628965354229,51.97106531119517],[5.865320986203362,51.97091530848838],[5.864989685397756,51.970780733827965],[5.864651906529911,51.97065807609344],[5.864182310854411,51.97050385491883],[5.863478062811176,51.97028016812483],[5.863042034759108,51.97014666832578],[5.862811035005951,51.97008553861703],[5.862264246532537,51.9699569960695],[5.862064847493369,51.96991011852667],[5.861411741068684,51.969792346933026],[5.861004384104842,51.969725597069335],[5.860435408023243,51.969654516890685],[5.859467677344362,51.969554997368334],[5.859120874066985,51.969536327947026],[5.858585675012382,51.96951330761477],[5.858030417606603,51.96950636438374],[5.857593655383692,51.969511501196436],[5.857285409526595,51.96952268409688],[5.857068880843619,51.969530533545296],[5.856437317011328,51.96956447896386],[5.855860803105061,51.969622047576806],[5.855371734221524,51.9696741778052],[5.854694447744835,51.969764365035154],[5.854158469351263,51.969862211534085],[5.853620744390137,51.96998964306179],[5.853613066839816,51.969991632971436],[5.852950080567355,51.970163430229604],[5.8528786309953,51.9701833616995],[5.850101189700434,51.970958075502274],[5.849334135425766,51.9711720126622],[5.848351839945193,51.97144996803723],[5.847112452392417,51.97178315654495],[5.845696447249764,51.97215221900026],[5.844871956019288,51.97233213237919],[5.844031875701424,51.972503867235396],[5.84242106449685,51.972807906332605],[5.841698321344057,51.97292186966644],[5.840319936830625,51.97311589016424],[5.83985282107579,51.97317418087124],[5.839056072008617,51.97327911890373],[5.838357937791022,51.97334537401711],[5.837113399762217,51.97346348527055],[5.836740811967027,51.97349375383125],[5.835903881780546,51.97354483135505],[5.835342718151025,51.97355872820342],[5.834504852239871,51.97361256772797],[5.833508234180939,51.97364307711615],[5.832988332955109,51.97364867168397],[5.832142557813092,51.97364801031295],[5.832123172239359,51.973647993786706],[5.831459652784874,51.973641532353064],[5.83035838616992,51.9736169885441],[5.828704308984237,51.973530991190735],[5.825429927652282,51.9732313108672],[5.824420541805761,51.97310881003405],[5.823617521239379,51.97297358931334],[5.82319284232242,51.972902080999795],[5.82204519358013,51.97270546956734],[5.820883510723338,51.972484738183496],[5.820210738187798,51.972340906310514],[5.819816436076012,51.97225357140053],[5.819063229005342,51.97207883951935],[5.818659359214263,51.971972220033926],[5.817917671002375,51.97177153429531],[5.817289369314281,51.9715964413036],[5.816827545864348,51.97145508103158],[5.816319451227296,51.97130044134967],[5.816002471848091,51.971194987657626],[5.815085086155614,51.97088009928292],[5.814340012899084,51.970618354858296],[5.813743719762701,51.970399551428024],[5.812452300134206,51.96991780996872],[5.81190600129522,51.96971623572284],[5.811507343982833,51.96956277085869],[5.810890249053783,51.9693125690377],[5.810394276752724,51.96910694144757],[5.80927403548975,51.96864870943358],[5.809206477997904,51.96862164550678],[5.808601852824705,51.96837940450894],[5.807953926756214,51.96812151396245],[5.807758707527105,51.968035421479584],[5.807056142632491,51.96775656299303],[5.806788472315202,51.967654728454626],[5.804250731068844,51.96672117367254],[5.803705258163348,51.966522003318524],[5.801927361691192,51.965872808228355],[5.801438559675691,51.96569288711401],[5.798388767669554,51.964570223740786],[5.795070110794444,51.96335175449404],[5.791857349768359,51.96211507546508],[5.791391293249609,51.9619362514088],[5.790586973776624,51.961627629089875],[5.789575210597438,51.9612393957227],[5.787995982609889,51.960631357579906],[5.786773424141026,51.960158645606356],[5.785796073453654,51.95982528916393],[5.784952900684426,51.95960761741967],[5.783574719455752,51.95933796794258],[5.782460081100749,51.959169397650555],[5.782350840373829,51.95915364891407],[5.781180912209986,51.95904483576346],[5.78075107993678,51.959004857573724],[5.780346484866948,51.95899078755392],[5.780255107410635,51.95899452666462],[5.780018269970988,51.95899484198153],[5.778965544424006,51.958996251982924],[5.777610627643115,51.9591266588833],[5.77618129499228,51.95930011664625],[5.774979618988995,51.95949270628414],[5.774597903380952,51.95956583527448],[5.774283359748617,51.95963732169596],[5.773503362084711,51.95980342954524],[5.772150969691056,51.96016316423022],[5.770016517436607,51.960828275123475],[5.769517497946713,51.96097804411582],[5.769414318312739,51.96100767247325],[5.768461107112825,51.96131032055585],[5.767352648420315,51.96166224245102],[5.765733779992741,51.962176194451814],[5.765496907981062,51.96225031034853],[5.764912452056628,51.96243318678465],[5.764807996843688,51.962465871194695],[5.764754971035456,51.962482463106156],[5.761901348445399,51.96353089058782],[5.758428268553399,51.964984653954794],[5.757684930336657,51.96528603890043],[5.756327367377906,51.96584318722158],[5.756237411137225,51.96588010585152],[5.754766861856709,51.96651489879517],[5.754498827090574,51.96664272285535],[5.75430806894531,51.96673095435411],[5.753251440765812,51.96721777324792],[5.752091054776197,51.967767633794935],[5.751837749316809,51.967885150401365],[5.750995915741662,51.9682757191459],[5.750474954147136,51.968517406760284],[5.749107493287203,51.96911181196198],[5.747875887940891,51.96960881901424],[5.746451965964847,51.969997562024226],[5.744892284898985,51.97022164937348],[5.743186915167933,51.97023456455322],[5.741610375802876,51.970112853970626],[5.739916796728059,51.96987408678133],[5.738820218701861,51.9696379963004],[5.738540166078884,51.96957550229667],[5.736450605232596,51.969109170693045],[5.735475527639178,51.96889154543149],[5.731634463876779,51.968030371586885],[5.731253465408563,51.96800309334789],[5.730773403292236,51.96796871509023],[5.729733281677231,51.967630106579094],[5.72845033912968,51.96714209006678],[5.727657511968402,51.966711694022536],[5.726608799292633,51.96596151033808],[5.726568756354373,51.96593286351049],[5.725667796486853,51.96528830626319],[5.724644189815232,51.964617129458325],[5.723608153341224,51.96422461544852],[5.722605635372404,51.96405077099256],[5.722059586616983,51.96395906557344],[5.721859870958378,51.96392630585575],[5.721503110717917,51.963867791748854],[5.720338220161412,51.96368706422418],[5.720073853367406,51.96364555934089],[5.718417754309072,51.963387366760884],[5.717464040020328,51.96323820253491],[5.71628216222518,51.96316704051917],[5.715002807870653,51.96309660589707],[5.714340044200307,51.96310169705187],[5.713233255246542,51.96310884380896],[5.711509245719853,51.96312338324262],[5.710996101108613,51.96313667138362],[5.710384411542118,51.963091849531544],[5.709475666901112,51.9630305728732],[5.708846910238643,51.96296100020549],[5.708593126335449,51.96293028041873],[5.706632480219887,51.962705723267554],[5.70450638579542,51.96244114203294],[5.70408279635869,51.962391896577685],[5.702465377403188,51.962203852211],[5.700910545742882,51.96201303896557],[5.69945760592126,51.96182664438883],[5.698775602900325,51.9617363875067],[5.697506984976045,51.96155902563905],[5.696459779027073,51.96140511133208],[5.695103604860831,51.96118301262616],[5.693272313117561,51.96088327352795],[5.692737804505529,51.96079446705208],[5.692154371630408,51.96069753387725],[5.691127180457094,51.96055005466612],[5.690132591613247,51.960407668691595],[5.689804473536261,51.96036607137178],[5.688896349478955,51.96023746500006],[5.688849027794613,51.960229811618035],[5.687968539990274,51.96009064685462],[5.686334824846742,51.95984696502429],[5.684562650577724,51.95958352215975],[5.683513159329632,51.959420060800305],[5.682132551900158,51.959195806967244],[5.681918310504527,51.959158845390824],[5.681349034979218,51.95903974801462],[5.680389995149467,51.95881051702826],[5.67982710036341,51.95867133459548],[5.679153691654704,51.95848424701139],[5.678171416608987,51.958166018035946],[5.677964626683277,51.95809901904063],[5.677455642299757,51.9579316215715],[5.67707647074977,51.957781321034254],[5.676552960143558,51.957574769402214],[5.676034257821418,51.957363641187854],[5.675429637207686,51.95708113268736],[5.675327654309216,51.95703348434854],[5.67481612791106,51.95679519134365],[5.674709882811208,51.956740587003395],[5.674612291340039,51.956683291893576],[5.673380058966965,51.95590753860004],[5.672505896233115,51.95537175292955],[5.671362883717972,51.954688080215064],[5.670710305985941,51.954343069193435],[5.670423553282443,51.95419367472498],[5.669963119773305,51.953942024732704],[5.669698313367294,51.953821032506276],[5.669500794056117,51.95373330539168],[5.669249066715682,51.95362832477178],[5.668819533146029,51.95347703090765],[5.668000929136051,51.95319297445499],[5.667933205396788,51.95318005834378],[5.667606349986472,51.95310525645373],[5.666806601294409,51.95292668680357],[5.666409064062955,51.95284674666831],[5.66598906746013,51.95279947685337],[5.66575186263471,51.95277277796176],[5.665214110796731,51.95272065214416],[5.664869441253494,51.952692479912805],[5.664742002311869,51.95268148272034],[5.663589054197167,51.95266634034931],[5.663507120610629,51.952665265677936],[5.662190626446045,51.952643240494204],[5.660865129015026,51.95274996030302],[5.659863282769568,51.95283624836106],[5.658732220448941,51.95302700036684],[5.657019708095702,51.953326235877896],[5.655667095955041,51.953569742491496],[5.654462328656338,51.95378203171705],[5.653760629395274,51.953910476647046],[5.653591589639207,51.953922293010606],[5.652819208135404,51.95396100103036],[5.652158023842131,51.95399484234345],[5.651121675662298,51.954000284318866],[5.649956601323666,51.95400846783389],[5.649406376102968,51.95400932829523],[5.648922622951637,51.95400129259206],[5.648729795143513,51.95395288873377],[5.648672592925641,51.95449898918947],[5.648655317390426,51.95461494905897],[5.648472587290139,51.95460224160976],[5.647658683547816,51.954440021808104],[5.646879958768088,51.95428498115059],[5.645860384641623,51.95393357815421],[5.645465209237421,51.95379902138186],[5.645405060382564,51.95377430105296],[5.644549843528749,51.95339201934151],[5.643651301549854,51.95292491398809],[5.6429014659711,51.952400286050214],[5.64228051267417,51.951967404305194],[5.641423129452773,51.95128185898683],[5.640909423466723,51.9508872615434],[5.639944264791612,51.95001268144272],[5.638857391376367,51.94903065687676],[5.638389533042433,51.94861973536372],[5.637851787103349,51.948179039189284],[5.637258570594058,51.94769286119962],[5.63575675949946,51.946539475213356],[5.635629254808078,51.94643332394226],[5.634943071444299,51.945988937379695],[5.63445708597314,51.945662527959826],[5.634187220377299,51.94548127214814],[5.63418551376092,51.94548037691011],[5.634455214922991,51.94532296461403],[5.634550276079227,51.94526748676036],[5.634871760910205,51.945082676129836],[5.634877282697055,51.945079132105654],[5.63445235336247,51.94480362923471],[5.634379766167145,51.944756566655755],[5.634086878836899,51.94456131937381],[5.633885480938309,51.94443845048733],[5.633796113154659,51.94439439789107],[5.633540477482083,51.944270635550986],[5.630644986769761,51.94320500094311],[5.6295060538684,51.94279945029112],[5.628765498299401,51.94260461780514],[5.62777427870879,51.942336302868895],[5.62725721130338,51.94222596904288],[5.626224431785455,51.94200711643313],[5.625844438869063,51.94193457169886],[5.624566300012242,51.94170171359697],[5.624144159020846,51.941647036279804],[5.62289505520589,51.941467671471116],[5.621588725948738,51.94137571950662],[5.621366776917347,51.94137138034992],[5.620315187416747,51.94132400928959],[5.620211290904351,51.941318148326935],[5.619794671718243,51.94131979182644],[5.619061571478852,51.94132495309507],[5.618522124411824,51.941338339398634],[5.617907991489993,51.94135880884907],[5.61788778085402,51.94135112762498],[5.616517249497868,51.941493686030036],[5.61494736234095,51.94166965590125],[5.613020355977253,51.94188326945253],[5.610118059732511,51.942234114051466],[5.607708125216265,51.94273220703244],[5.605939723325338,51.94312478509547],[5.605782401094767,51.94315970963775],[5.605356913993177,51.943324239463614],[5.604251206348135,51.943751790320896],[5.603820309247183,51.94391840173689],[5.603791827438524,51.943929419913175],[5.603071953433312,51.944183791033616],[5.602441551779665,51.94444240706619],[5.602005281941962,51.94462300645422],[5.601499014388476,51.94486589463215],[5.601000623652761,51.94510864044516],[5.600882020009875,51.94516759441481],[5.600147362990564,51.94557850472188],[5.599987326195055,51.945666358178336],[5.599896352349182,51.94571879855061],[5.599542594900366,51.94593524623682],[5.59889999786626,51.946331340398665],[5.598383803178765,51.94660188078498],[5.597432171502742,51.94709514556979],[5.596661956824348,51.94748320447902],[5.596211215399881,51.94768776168969],[5.595205320472757,51.94814512491259],[5.594947629681019,51.94826273359616],[5.594441402837989,51.948493771554624],[5.593400782050716,51.94891339393405],[5.592736633932963,51.94918256003733],[5.591935349464721,51.94945340853272],[5.591867555092762,51.94947632981454],[5.590991857882351,51.94977578518899],[5.590842734353545,51.94981406311023],[5.590694165569204,51.94985219786683],[5.590552337921296,51.94988860221647],[5.590463172846869,51.94991148866592],[5.590462656031799,51.94993097426164],[5.590705938390722,51.95050235510974],[5.590724691573883,51.950546397343935],[5.590883507521911,51.950919328989926],[5.590883663370268,51.95091969454094],[5.591041409121157,51.95099250431191],[5.591059108139703,51.95100067357128],[5.591271673239562,51.95109878506262],[5.591382509198741,51.951149942289994],[5.591484895228853,51.95119719972851],[5.591518815641543,51.95121224727342],[5.593297811494183,51.952284613087144],[5.593771571461342,51.95258336796568],[5.594042582476781,51.95275844938176],[5.594318862709176,51.952936936412314],[5.594433315280178,51.95300688597467],[5.594498026069358,51.95304643600297],[5.594498206958899,51.95304654623911],[5.594539776821779,51.95307696996955],[5.594437491847249,51.953336910402],[5.594303581872237,51.95367589508245],[5.594275364520339,51.95374604405204],[5.594124761052039,51.95412167598836],[5.594039938335736,51.95433654524153],[5.593997504921896,51.95443452875435],[5.59403305058222,51.95462528636889],[5.594068573075116,51.95480149206049],[5.594083417830565,51.95489435930497],[5.594484446892912,51.95483799737678],[5.594656956090466,51.95482368925097],[5.595027964917892,51.95478763794399],[5.595436906314522,51.95476589941783],[5.595523094215582,51.95476010472538],[5.595572341646586,51.95486038360225],[5.595602826288745,51.95493973428051],[5.595664683413507,51.955099713960074],[5.59574792212549,51.955312093002895],[5.595826429308367,51.9555172808088],[5.595931064455734,51.95578804522502],[5.596133136533958,51.956316904157624],[5.596190172328851,51.95646854204104],[5.59628761213971,51.95672090202245],[5.596363648942946,51.95691938861127],[5.596422815236318,51.95707582588863],[5.596432348338678,51.95710103078633],[5.596443292566978,51.957129966881126],[5.596464357591841,51.95718564560804],[5.59639657083301,51.95725150892203],[5.596370815111276,51.9572765330642],[5.596625871868032,51.9573575345868],[5.597162369845305,51.957527913498566],[5.597102410132035,51.95757907556479],[5.596973632276777,51.957688957442095],[5.596940031777348,51.957717627855615],[5.596803262609335,51.95777010609943],[5.596691758554452,51.95781185393544],[5.596490500996757,51.957871951041554],[5.595468475115647,51.95818115539467],[5.594929452712785,51.958343969553695],[5.594501862793926,51.95847096434984],[5.593980257465357,51.9586263461031],[5.593555821328391,51.95874747157354],[5.593468515476448,51.958776045637954],[5.593346199896549,51.95881606914626],[5.593160495164128,51.958903526666944],[5.593100103504219,51.95894153585816],[5.593090093829002,51.958947836168],[5.593033995570488,51.95900522540732],[5.59300839837099,51.95904196018522],[5.592989934262504,51.959085962928796],[5.592967092058431,51.95916509033742],[5.592905670187826,51.959406819383155],[5.59285774436256,51.95958407019898],[5.592879836574864,51.95968710850733],[5.592846559306612,51.959695786459044],[5.592758003968283,51.959718888346536],[5.592451685693338,51.95979731576667],[5.592165963761666,51.959865325061834],[5.591956484071343,51.95991877473053],[5.59178589764455,51.959960390728774],[5.591547385625346,51.96001888766379],[5.591446538814732,51.96004281887597],[5.591011868383051,51.96017340851716],[5.590998757190647,51.960177349224736],[5.590659460002308,51.96019739670783],[5.589624992361467,51.96025787912172],[5.587347680542461,51.96039099486371],[5.586774044302325,51.96042451780392],[5.585969159839586,51.960471551256774],[5.585843727396941,51.96047888024533],[5.58584421690054,51.960512530426804],[5.585845690539393,51.96061398070687],[5.585828711992768,51.96093730499983],[5.585673374257143,51.96092211852054],[5.585647465753102,51.96118141677077],[5.585610116882526,51.96117932626286],[5.58539035471259,51.96116702643305],[5.585134278553153,51.96115269311239],[5.584244466793822,51.961102883838166],[5.58344108760196,51.96105507349865],[5.583292339394514,51.96105279703403],[5.583242612128798,51.96105203601498],[5.583186833509076,51.961157411700086],[5.583010831018432,51.96148967609933],[5.582991430557445,51.96152630127333],[5.582166222943326,51.961322348245666],[5.581907610776173,51.961260719681896],[5.581880624198137,51.96125428838295],[5.581817584101397,51.96136418393395],[5.581814580538452,51.96136942095217],[5.58173741604808,51.961503937016225],[5.581695156398892,51.96157760702008],[5.581494310699938,51.9615532216845],[5.581351940220601,51.96153969424558],[5.581079145752192,51.961541829060124],[5.581057990015302,51.96153998003368],[5.581057086146199,51.96153990063088],[5.580909711969469,51.961579186708725],[5.580903391722233,51.96158930887601],[5.580876225551879,51.96161575745299],[5.580839931238053,51.96163351148078],[5.580403799178914,51.96171652913529],[5.580058728845888,51.96177523720709],[5.579962444824838,51.96179034170988],[5.579957403875293,51.96179113285333],[5.579873955671071,51.961796466704016],[5.579696036528642,51.96180783898585],[5.579190667298846,51.96184013985227],[5.579059891724488,51.96184849768174],[5.579139211111395,51.96221576162425],[5.579227246677284,51.9625462152806],[5.579294487254619,51.96285254791504],[5.579300815794031,51.96287819893361],[5.579452551148885,51.96370073316982],[5.579577969204344,51.96438058631481],[5.579690254511615,51.96501497051794],[5.579794671608557,51.9656122353413],[5.579899123428225,51.96616343536762],[5.57989202269535,51.96646820320887],[5.579524930352065,51.96642458256516],[5.579500304594786,51.96642165675539],[5.579108191114123,51.96639643328291],[5.579036136039334,51.96639179796609],[5.578653258446737,51.96639242238447],[5.578389635839638,51.96641897493572],[5.577998573936731,51.966472134064574],[5.577675309038295,51.96653585821861],[5.577454398791551,51.96660980618669],[5.577233578825789,51.96670453973447],[5.576953431650205,51.96685751163309],[5.576631010133248,51.967068131302426],[5.576173017491755,51.967426150147176],[5.576046120328845,51.96754536256625],[5.575959020635152,51.9676271873763],[5.575722564366289,51.967849319621074],[5.575316132457949,51.96830696396109],[5.575002720257392,51.96866474842462],[5.574913978642004,51.9687585545538],[5.574773859933722,51.96890667030162],[5.574570295562363,51.96905417878521],[5.574247803715184,51.96925439797228],[5.573823151356053,51.969438770549594],[5.572990186968429,51.96969232112736],[5.571865391241883,51.97003424199754],[5.571367903930618,51.97020495735918],[5.570595130635929,51.97044884749959],[5.569914006786066,51.97064427667413],[5.569324644443069,51.97081512617583],[5.568348709489322,51.97109498858753],[5.566517287963255,51.97157885339106],[5.566202677221423,51.971649920107886],[5.56620205365816,51.97166213512899],[5.566160847185945,51.97167302148486],[5.566094751066838,51.97169194342339],[5.565990753191646,51.97172172951415],[5.565184698115973,51.97195259004598],[5.564824869770378,51.972055644949045],[5.564413167908909,51.9721592533603],[5.564274675466969,51.97219410625904],[5.564111948216763,51.972189999261516],[5.564001555802288,51.97218721367419],[5.563152066154584,51.972255339335796],[5.562178795401166,51.97230426287251],[5.561313694223793,51.97233419683622],[5.559383129752209,51.97250894079681],[5.558966011492012,51.97254747066246],[5.557714864092794,51.97259704352262],[5.557035147916772,51.972645776786074],[5.556834900626178,51.97278903415612],[5.556678287865384,51.97300296629837],[5.556604152189349,51.97310423449774],[5.5545618853598,51.976445154816915],[5.553852735529348,51.977646645745125],[5.553607556571699,51.978072755843606],[5.553177103968523,51.97882084340471],[5.553028293102331,51.97908419360449],[5.552984914367247,51.97916096004005],[5.552977595872718,51.97917391156322],[5.55269360846104,51.979841161948464],[5.552644549825242,51.979956429074846],[5.552640515104367,51.97996590830828],[5.552637282450838,51.98006529888322],[5.552628261299131,51.980342588281665],[5.55264529172543,51.98064310602806],[5.552610160647794,51.98079311714098],[5.552598046124039,51.980844844147434],[5.552479872056702,51.981239086795966],[5.552470319223773,51.981328734050486],[5.552469301038653,51.98155705256595],[5.552489611106758,51.98172162740389],[5.552506728375247,51.982046582074894],[5.552539844468657,51.982699304443045],[5.552540827403307,51.98271952648228],[5.552562996502053,51.9855215604049],[5.551374727493279,51.98545075993038],[5.551323546533034,51.98551262337809],[5.551272635336171,51.98555954267219],[5.550057368261872,51.9866794994546],[5.54887786371508,51.98776643100167],[5.548760809501564,51.98780023292403],[5.548753689301243,51.9878022893199],[5.548721863621213,51.9878114794335],[5.54845090562517,51.98788972418483],[5.548124825773968,51.987983885462725],[5.545292965818719,51.988801577773025],[5.543632552523023,51.989326879965304],[5.541193328647408,51.990098508523594],[5.54134969410769,51.99027063833198],[5.541432635691974,51.99036194196208],[5.539631846412308,51.99094123503761],[5.539591900767562,51.99095408420082],[5.539442520699947,51.99100213622596],[5.539391577531426,51.99104427584713],[5.53882855538715,51.991509982463135],[5.538765371866456,51.99156224480078],[5.538702521841318,51.9916141462483],[5.538662152503988,51.99164748328235],[5.538566222215064,51.991667549826346],[5.536587866922392,51.99224785337746],[5.535856756059333,51.99246870836445],[5.535643551603735,51.99252487348021],[5.535548773380627,51.992549991051206],[5.535464901553635,51.992572004654384],[5.534452014761718,51.99282404173143],[5.534328424167924,51.99286056444838],[5.534112432094433,51.99292293390832],[5.533943043192778,51.992959841526336],[5.533481473032388,51.99308653712823],[5.532962726472933,51.99320908099505],[5.532950904378513,51.99321190535845],[5.533036932994279,51.99336234869466],[5.533127867939172,51.99355183228113],[5.532960565894427,51.99415312192017],[5.532749754465376,51.994179506389735],[5.532496754457174,51.99424301884045],[5.532286088994613,51.99431377868462],[5.532075483747287,51.99440335930103],[5.531756422009992,51.994582390209814],[5.531636070714034,51.994653039566614],[5.531522127741469,51.99480569796327],[5.531306681242079,51.99530059196943],[5.531298772620836,51.99538767543444],[5.531226756910199,51.995491970717175],[5.531076387412471,51.99556630726369],[5.530853467172101,51.995648595162024],[5.530787463089176,51.99571187521165],[5.53071590131453,51.99595745101285],[5.530662208747606,51.99609879974953],[5.530512023266635,51.996303463746386],[5.530359931909308,51.996410665793526],[5.530095079594916,51.99654496568946],[5.529023587654343,51.99700718919046],[5.528289815717296,51.99803097929185],[5.528196414487851,51.9981612939045],[5.527977058275174,51.998467337733935],[5.52792701510634,51.99847161131279],[5.527871515796646,51.998477295351606],[5.527755977223444,51.998490635389885],[5.527436190488776,51.99852640736759],[5.527274458294756,51.99853839629086],[5.527195759814386,51.99854607426654],[5.527046544245985,51.998558891056746],[5.526070304146171,51.99865358298043],[5.52489775936515,51.99876478529502],[5.524796992013226,51.998773893267064],[5.521664411836797,51.99907075767085],[5.521017513826029,51.99913385226217],[5.520888084622126,51.99914495252983],[5.520759565241564,51.99915549075988],[5.520691111865691,51.999165682008126],[5.520535966136996,51.999175687574585],[5.520402462001737,51.99919353305093],[5.519488506153095,51.999277144961965],[5.517640815488651,51.99945447931274],[5.516801243391352,51.99953630158086],[5.516727289662943,51.99953329298088],[5.513228434178846,52.00142123964681],[5.513154298069773,52.00143620710569],[5.512062952145012,52.0014924241232],[5.511144976414741,52.00154255027227],[5.511007994840821,52.001543255520794],[5.510920842472434,52.001540537604605],[5.510846235721768,52.001551010026056],[5.509958042312882,52.00159322914189],[5.509018211696285,52.001641957573064],[5.508915166085831,52.00165329953642],[5.508401220830238,52.001677424613256],[5.507915718613967,52.001702641751045],[5.507709358389653,52.0017090337994],[5.507609930363041,52.001713067134844],[5.506676021866153,52.00176513954786],[5.506267408928635,52.00178409322992],[5.506190503537953,52.00178501241621],[5.506092453783934,52.00179269585972],[5.504883473932495,52.001856549434834],[5.504773357923791,52.00186227725365],[5.503521606225203,52.00192924974669],[5.503463586011119,52.00193043068344],[5.503364620936981,52.00193698923968],[5.503311868737374,52.00195136489721],[5.501849362873326,52.002000551342455],[5.499745921474847,52.002071398063],[5.498368690179164,52.00036159096819],[5.496520615206537,52.00416053904963],[5.49373303703247,52.004611663802685],[5.490647443200316,52.00659911712161],[5.490597090680001,52.00667162747139],[5.487236593871977,52.00848312027669],[5.485105592333372,52.00962697022705],[5.484911277739491,52.00974903454981],[5.484700529614769,52.009953970265535],[5.484184620992744,52.01048891118768],[5.484017493680995,52.010662068922194],[5.480821245231358,52.01401246003795],[5.479675521385877,52.015234910561524],[5.479469985537693,52.015454159697946],[5.478019994474487,52.016963611257495],[5.476897278935515,52.018158491082545],[5.476666275575147,52.018404435014226],[5.476357368075006,52.018736387500994],[5.475955101196475,52.01916868307135],[5.475651181189667,52.019495294541294],[5.475635973307948,52.01951665279144],[5.475587617946367,52.01958438056196],[5.473872707375691,52.019731434778784],[5.467253664981355,52.01478198778549],[5.465357293720029,52.014803488221375],[5.464450987371275,52.014816166047694],[5.463293641254776,52.01483517644956],[5.462707555398448,52.01483555470021],[5.462644701921719,52.01413929702429],[5.462463555834794,52.014155422910285],[5.461627170317182,52.01418769481393],[5.460764631328133,52.0142362690486],[5.460653793991427,52.0142380228003],[5.460036125033247,52.01426593455734],[5.459819005422306,52.014275900235106],[5.459705211662739,52.01427990375235],[5.458108892858824,52.01433817602909],[5.457909096224559,52.014363574726524],[5.457843069265349,52.01434929097676],[5.457771585181653,52.01433837922164],[5.45770034564596,52.01433842201241],[5.457634815745255,52.014351100447556],[5.456997424823941,52.01457983531769],[5.456362302599135,52.014806600583825],[5.45563822824363,52.01506543540723],[5.455355481769715,52.015174018296584],[5.455296327186555,52.01519230751126],[5.455254242682722,52.01520525504467],[5.454190578726905,52.01562578139123],[5.453591396197488,52.01585812693203],[5.45328907437807,52.01597542360787],[5.452981977463462,52.0160977789017],[5.452348671149751,52.01634979963988],[5.452208771253115,52.01640689428094],[5.452140312666502,52.01644232382342],[5.4520699337282,52.016254735526566],[5.451993669131338,52.0160884972391],[5.451949656075543,52.0160303809031],[5.450820840620366,52.01612986564233],[5.449664964834988,52.016251545645005],[5.448484502309485,52.01637350755961],[5.446909608214298,52.016519533190575],[5.446335850070179,52.016563640767195],[5.440307281502373,52.01832285924993],[5.440277473888454,52.018331300002544],[5.439599746322424,52.0186433792993],[5.43911884036107,52.01889610365517],[5.438423084528693,52.01918066068529],[5.436416929030668,52.019326731495106],[5.435884516931153,52.019339594533434],[5.431690593593473,52.01970752622735],[5.430313413760667,52.01969680543608],[5.430134509723032,52.018053448206764],[5.429509288333336,52.01811631011112],[5.428585291514251,52.01827870836478],[5.428531742792253,52.01821581037563],[5.428098181210419,52.01753791976729],[5.428055761341049,52.01744693157483],[5.427935593843928,52.01746719667312],[5.427083243514794,52.01756186326632],[5.426471161878436,52.01754858951932],[5.426063261113402,52.01754198257095],[5.424434681294397,52.01758969891288],[5.422565875196559,52.01781947502157],[5.422445677582229,52.01780602905087],[5.422390866692806,52.017859976077446],[5.422225947425709,52.01799681218181],[5.421887381902958,52.01817218314759],[5.421679619708267,52.01824639471001],[5.421472032282167,52.01825319671345],[5.421242311302938,52.018192595643775],[5.418740148341711,52.019292092536354],[5.419032403571436,52.0195841274734],[5.41921835494354,52.01987366152445],[5.419382786559341,52.020298307044484],[5.419448618194657,52.020675790061],[5.419416077337497,52.02100611248196],[5.419339887600241,52.02141733995023],[5.418837895009469,52.022637331679064],[5.417430255161981,52.02616750769449],[5.416982075570844,52.027331020579695],[5.416971177368918,52.027371469858004],[5.416971190694911,52.02739141267879],[5.415626452414296,52.027203276975634],[5.415534695699696,52.02719655813729],[5.414489832405149,52.02705103001423],[5.413195667135442,52.026879146588335],[5.412817255790573,52.02683148160741],[5.412593673811743,52.02680512687303],[5.412447501780211,52.02679167634312],[5.412302236321507,52.02676305889483],[5.412200912790842,52.02674398085477],[5.412107556667856,52.026719844318514],[5.412068624114001,52.02671507811693],[5.413101185710432,52.029224784225846],[5.41299737909866,52.029250926608235],[5.41153434653323,52.02973547631243],[5.411307516820411,52.029810307054746],[5.411057085844261,52.02989292408123],[5.409867083179904,52.030285489991336],[5.409789000099821,52.03031134771546],[5.408905043025599,52.030602224787174],[5.406957244558614,52.03124100470645],[5.404770115957644,52.03196152825413],[5.404692936217035,52.03198709843084],[5.403675043453961,52.032322334032315],[5.40338681922507,52.032415626000834],[5.403076504334899,52.03251594178134],[5.402742739675957,52.03262974382772],[5.402391224491985,52.03276236473814],[5.402202701677803,52.03279777893453],[5.402192000578856,52.03280087042278],[5.402141228604864,52.03281548261686],[5.401128081222083,52.03315238171165],[5.399012254929255,52.03384076669974],[5.396269534505847,52.034737576924826],[5.395814372041791,52.0348791761339],[5.395157932277204,52.035091565337254],[5.39433526033917,52.03535058976421],[5.392367916722807,52.03597705441852],[5.392044118465691,52.03607762210197],[5.391964423424516,52.036102342738445],[5.391931633676113,52.03611245392068],[5.391831667964222,52.03615122011306],[5.391866743574075,52.03620121588544],[5.391622185740198,52.036298971246644],[5.391340744496918,52.036407680350166],[5.391076826749861,52.036498133349134],[5.390648961706204,52.03663802544333],[5.390485692358958,52.036700666603245],[5.390440378428107,52.036729316588854],[5.390337683774304,52.03679476365926],[5.390293279027089,52.03682285270495],[5.388305552104224,52.03761637100087],[5.387835307086578,52.03780596826143],[5.387761981511268,52.03783546227872],[5.387203152107684,52.03806016502776],[5.386517927198567,52.03832812253926],[5.386294068216462,52.03841603571087],[5.386030588671306,52.0385208008047],[5.385953162378095,52.038550574085754],[5.385803544669043,52.03860955609729],[5.385285913531925,52.038814310952176],[5.384874852429996,52.0389791781587],[5.384798791636598,52.03900979378711],[5.384308479385489,52.03920639803903],[5.38386120670349,52.03938024894741],[5.383783092426023,52.03941058163622],[5.382669670448508,52.03984281724415],[5.382591557444134,52.03987342956896],[5.382039280084531,52.040089684345276],[5.381566250405212,52.040285715224044],[5.381488817778834,52.04031801301338],[5.381469685544849,52.0403258766926],[5.380647285031622,52.040661202287254],[5.380568256727842,52.0406923758711],[5.379714638748939,52.041034716510055],[5.379436093047797,52.0411532284365],[5.379358427190522,52.041184962151014],[5.378917262370658,52.0413646944105],[5.377813766183984,52.04180081605102],[5.377733366590152,52.04183255027405],[5.376236041049388,52.04242366989813],[5.376179551644924,52.04244585450243],[5.37612670938783,52.04246663547775],[5.375809654675484,52.04259187809175],[5.3753866878812,52.042758675743016],[5.375132035115388,52.04285920543555],[5.375050494724012,52.04289121633728],[5.375002890534714,52.04291003074577],[5.374179940487687,52.04324137959605],[5.374101579293459,52.043273111555244],[5.373908426615901,52.04335145553762],[5.372901415792979,52.0437378250158],[5.37282214954531,52.0437681502754],[5.372706193186489,52.04381278006016],[5.371578222655392,52.04424689151053],[5.371499864175987,52.044277215996985],[5.371007615912864,52.04446786467451],[5.370336546331314,52.044724776808934],[5.370259326375092,52.0447542575466],[5.369552652641608,52.04502475730419],[5.368929469918791,52.04526328965905],[5.368851562887626,52.0452930515916],[5.367635116274286,52.04575771052558],[5.367558577991693,52.04578691096949],[5.366312945570241,52.046262223835186],[5.366234354685221,52.04628804892745],[5.3658552924369,52.04641381635396],[5.36577600989647,52.046452280062134],[5.365640695711169,52.046503095762134],[5.365475763439844,52.046553904088945],[5.365459364664916,52.04655895778219],[5.365390562418819,52.046591525168154],[5.365293960037276,52.04665105343896],[5.365211484508473,52.046694856896764],[5.365096211879289,52.04674707782385],[5.364950193163152,52.0467807576442],[5.364927869799996,52.04678636921076],[5.364866816068391,52.04680714178062],[5.364725115075956,52.0468635709792],[5.363581483012411,52.04730854117472],[5.363544804984919,52.047322296418706],[5.361972169022249,52.0479118170188],[5.360901839924362,52.048333179392266],[5.360126086150542,52.0486270839677],[5.359087391748656,52.04902962138157],[5.35901311972353,52.04905825234448],[5.357497767451183,52.0496409838124],[5.354275000632553,52.05101418419631],[5.350995059242332,52.05269764957364],[5.350308419121073,52.05304431970352],[5.350236860964045,52.05308024967429],[5.349768078368056,52.05331688236468],[5.348257511157685,52.0541191431316],[5.348189591860444,52.05415479262343],[5.345670878452263,52.0554878191542],[5.345590417654904,52.05553132729972],[5.344063979765797,52.05633717940926],[5.343968059274895,52.05634585021811],[5.34381425853506,52.05637191680906],[5.342400836182509,52.05710082922646],[5.341838734593594,52.05739047837609],[5.341712000459828,52.05745587361981],[5.340564981420966,52.05804723718534],[5.339864036715951,52.058408726572985],[5.339819128971259,52.0584320218349],[5.339508885967798,52.05859171572455],[5.339395420373626,52.05966995780581],[5.339355106712518,52.06008507880724],[5.339348028161303,52.060099399326916],[5.339168560668403,52.06173880748763],[5.339200869096536,52.06178207478227],[5.338612555657661,52.06600734567595],[5.348290902633176,52.06606794716767],[5.345418362629332,52.07053740177903],[5.346278271756818,52.07119467158117],[5.346517627510294,52.07136974074471],[5.346555186839889,52.07141862529169],[5.346556070776003,52.07144755813449],[5.347469899638604,52.072252016984365],[5.347401953855174,52.07228906985204],[5.347133361254433,52.072433629266015],[5.34680659525273,52.072641366788545],[5.3466471817727,52.072765742804854],[5.346517170400548,52.072885632897645],[5.346396160492668,52.07312770590149],[5.346646388687526,52.07339209633772],[5.346688728316874,52.07344407255623],[5.347203417846321,52.07412481376303],[5.347247116249678,52.074188868372815],[5.34744786941774,52.07448385542615],[5.347565652132016,52.07479903925607],[5.347618661262307,52.07490550783853],[5.347695527967933,52.075353812357385],[5.347708220620192,52.075692833108576],[5.347695003245312,52.07595039372562],[5.347629591569605,52.07620765465832],[5.347511443207015,52.076562362421136],[5.347147569427694,52.077197861674804],[5.347126569101459,52.077234649815495],[5.347108534190095,52.077266662710954],[5.34709050216873,52.0772986774021],[5.346641681462056,52.07809424659473],[5.345943354743155,52.07929025769409],[5.345907980082972,52.07934024042771],[5.345545107273431,52.07983221019617],[5.345327477335798,52.08002088218791],[5.345127445842778,52.08015843966037],[5.34500225954657,52.080211482019],[5.344986756154104,52.08021681178684],[5.345241251720625,52.08082499891135],[5.345326310135461,52.081028383425114],[5.345382677257514,52.0812031092579],[5.345423239749778,52.08145928267075],[5.345441363851574,52.08158231373417],[5.345454522864292,52.08164804250428],[5.345486364701331,52.08172248547301],[5.345676611231487,52.08255872025179],[5.344684750038502,52.08525786823444],[5.342790276289466,52.09041265134701],[5.344251749560181,52.09441033161757],[5.343604339709903,52.09449548096348],[5.341761991064375,52.09473746224895],[5.340769546237801,52.09486571869156],[5.340276054926676,52.09493124968933],[5.339910025049912,52.094997108291075],[5.338890088495083,52.09523572155626],[5.338090914732802,52.09542807386945],[5.337483309173752,52.095578649663324],[5.336608167978221,52.09578977725935],[5.336200826718706,52.09587892156694],[5.336073557382205,52.09591144815993],[5.335756973399477,52.09599192255497],[5.335500830915685,52.09605697214494],[5.335435596501299,52.096074360578434],[5.334897530503059,52.096217649796415],[5.334221006043202,52.096402165532346],[5.333955023788309,52.09649361054718],[5.333611467698645,52.09662406016693],[5.332097296803979,52.09726460501932],[5.331470119741385,52.097532545706926],[5.331147744383046,52.09767002494282],[5.330586500759252,52.097904847960784],[5.327530293904283,52.0992237411913],[5.327267910140203,52.099332025423756],[5.32685355325515,52.09951241608957],[5.326463162152255,52.09967400210933],[5.326124777214748,52.09982269075928],[5.324794954952034,52.10057024793433],[5.324318195394368,52.10084019816766],[5.323948687654688,52.10105458970847],[5.323902141757321,52.10107310165654],[5.323208295158079,52.10148561555311],[5.321231820707794,52.10256280928137],[5.317753478359265,52.10452694252056],[5.315032691378366,52.10608191921158],[5.314145647891711,52.106547628474445],[5.311426199855396,52.10810982778665],[5.310944928381477,52.108387022618636],[5.310621102972592,52.10849242393544],[5.306498862535847,52.110315365091026],[5.302259309248643,52.11103564560783],[5.299704252199524,52.10971254439537],[5.295927683742681,52.107745525146306],[5.293336103606023,52.106399225884715],[5.290675560957621,52.105059553905974],[5.290352445399187,52.1049284005293],[5.288410418822944,52.107537807388155],[5.288419868061081,52.10769959937598],[5.287863747202311,52.10844766632933],[5.285223510430554,52.11212824875133],[5.284810699199551,52.112703964618674],[5.284749385644012,52.11268312758533],[5.282791181508241,52.11216235522688],[5.282677204696367,52.11213248073199],[5.282321582275389,52.11203891486918],[5.282221969636593,52.11200961713881],[5.282109839598199,52.112163435062],[5.281974351147594,52.112355713274866],[5.281275761376794,52.113378596802924],[5.280629311770649,52.11433270742673],[5.280594514873528,52.11438463920939],[5.27903444096909,52.11674650177801],[5.278808770128401,52.11705076124558],[5.278776939819386,52.11710101084505],[5.277809861100856,52.11852134482664],[5.27778441011525,52.118573563034715],[5.27764427764594,52.11878408819282],[5.277617572179117,52.1187879947559],[5.277624386690684,52.11880036316115],[5.277608099280489,52.118836860851914],[5.277568964637298,52.11888766058722],[5.277497444182283,52.11893422024781],[5.277439109652101,52.11909201848859],[5.277277055964753,52.11930814210369],[5.274667031802602,52.12307445729396],[5.271886220894534,52.127157372201346],[5.264347773153256,52.12512045194852],[5.256309761190884,52.136304089096164],[5.254929856038494,52.1388677721101],[5.256766422395295,52.143036577366416],[5.256484253782965,52.1439867416323],[5.251347213189944,52.142617303051395],[5.246989903437075,52.14148590474348],[5.244437556388605,52.14085256541929],[5.242136297675015,52.141924102118764],[5.241108247150515,52.14248177416892],[5.240093128499679,52.14319308991172],[5.239202525806756,52.14413599111392],[5.238273824279033,52.14547375022395],[5.237245520703416,52.14701978078653],[5.237153554409249,52.147010115149286],[5.236953301565467,52.147025869838856],[5.235678359661656,52.147293879178],[5.234567505912961,52.14757135534884],[5.233323243395577,52.14807053644523],[5.232603420118905,52.147883378334264],[5.227643121507632,52.147728195710044],[5.227266574974986,52.15005360110824],[5.223954552307343,52.15121553700864],[5.225613115537143,52.15286991297598],[5.225366872272689,52.15296872536128],[5.225102772403358,52.15326721229977],[5.224795158167351,52.15448184652886],[5.223995761441417,52.15730885785063],[5.223648444969386,52.15831277772365],[5.22380547230836,52.15901883046727],[5.223803900687276,52.1593230124452],[5.223795938527274,52.16100009450687],[5.223773111994887,52.163057456472565],[5.223777669871489,52.165306692145144],[5.22375752187964,52.166443638815494],[5.223144062514045,52.16906276810239],[5.222800010095194,52.17076269105533],[5.222747998022505,52.17161422575677],[5.222609781717387,52.174596333385644],[5.222485330355913,52.17458605029041],[5.2212230089818,52.17448064171383],[5.221135323012663,52.17447321488011],[5.220954698185555,52.1744580749982],[5.220953580147412,52.17451256175508],[5.220953312352716,52.174523233627305],[5.220904204645372,52.17452316449548],[5.220926751950543,52.17509336790874],[5.220941246527048,52.1751268143618],[5.221124501399697,52.17529475247818],[5.221134859716591,52.17613288805523],[5.221089884098585,52.176371847528735],[5.221081026426816,52.17641930202762],[5.221079082763405,52.17645131962596],[5.221077124888028,52.176485584181826],[5.221068094714298,52.17664145421184],[5.221067116815422,52.17665830516898],[5.221029526041971,52.1773073465831],[5.221021955328099,52.177437099775865],[5.22100096110844,52.17779995887004],[5.220969957926584,52.17833469580028],[5.220723915129775,52.178277329991836],[5.220350286590975,52.17819001556039],[5.220255791283527,52.17816797311463],[5.220100815751462,52.178131802339045],[5.219993772589361,52.17810693410828],[5.219289881594428,52.17794274750889],[5.219203152973025,52.177922401390596],[5.219122353799421,52.17790374798028],[5.21874759223327,52.177816146427375],[5.218635295638342,52.17778986375998],[5.218387660482856,52.177732213968845],[5.218321700153352,52.177716951682164],[5.216923306425144,52.17739194007891],[5.216821970095307,52.177368200680036],[5.216464785041618,52.17728510757299],[5.216333095123106,52.17725458473699],[5.215927756654748,52.17716018544145],[5.215718239734896,52.17711157141694],[5.215631741351635,52.17709150342465],[5.21466336670777,52.17686623807648],[5.214007433144795,52.176716136247826],[5.213859081675176,52.17668221394665],[5.213720091004409,52.176650271763236],[5.212544262432562,52.17638114844313],[5.212449551508798,52.176359379835475],[5.212080963472379,52.17627513306633],[5.212178962925766,52.176390997709895],[5.212310130301732,52.17678637974147],[5.212713586345202,52.178002873687056],[5.213514639893061,52.18031338416585],[5.213581060759079,52.180504757046975],[5.213622311791106,52.18058907929445],[5.214221003028706,52.18243725057893],[5.214280830814655,52.18262159018659],[5.214302741693597,52.182686784554825],[5.214628216873173,52.183653179536925],[5.214630478752333,52.183659643344654],[5.214640132429722,52.183821437866925],[5.214635764406975,52.18382873505402],[5.214670267693222,52.18382766376402],[5.21492509015603,52.184635540980906],[5.214960527712876,52.18474794140016],[5.215231154846639,52.185606960427364],[5.21552229087817,52.186483423450106],[5.215869456846491,52.18752820949096],[5.215984880799367,52.18787581468328],[5.215976079128687,52.1882047013208],[5.213374806777804,52.190173464331785],[5.213436128305727,52.19156302840774],[5.213348684775117,52.191649489078955],[5.209128741040721,52.19582160721729],[5.208987208616819,52.19596152029508],[5.208729383152172,52.196216390560366],[5.209107515661549,52.196853801140925],[5.211677045488189,52.19981579191199],[5.211721209660072,52.19986670192795],[5.211742396294992,52.19989111750013],[5.211810936263864,52.19997011483835],[5.211821012711226,52.19998172415563],[5.211846334826333,52.20001091840898],[5.212084226453566,52.200288421362586],[5.212701130621153,52.20100802250226],[5.214450810994063,52.20304883624678],[5.21544625850464,52.20420981241303],[5.215500798059564,52.204273426917034],[5.215508036865646,52.20428165234692],[5.215683676662435,52.20448133024014],[5.215819584169921,52.204635822160434],[5.21612110713713,52.204980755060056],[5.216210824498116,52.20508429032814],[5.216371573991535,52.205269798713374],[5.216470002187467,52.20538339480524],[5.216529372603548,52.20545073677418],[5.216769419862185,52.20572296618318],[5.217086052003583,52.2060840155939],[5.217120889022665,52.206124996477676],[5.217192704127819,52.20620948688368],[5.217214149718326,52.206232787317475],[5.217205234121844,52.206234446234774],[5.216499729490563,52.20636551485369],[5.21648664586282,52.20636680818104],[5.216500634378583,52.20639283028169],[5.21664732004749,52.206757158447665],[5.216731300942883,52.2069657351552],[5.216808830239955,52.207143860598585],[5.216923544404911,52.20740746022272],[5.217161678490969,52.20795466062783],[5.217572738667707,52.20891541562023],[5.217599742056524,52.20897802786228],[5.217836902859397,52.209527786878596],[5.218265105183047,52.210520722282695],[5.21846304988301,52.210975646856625],[5.218616700326119,52.21132873838286],[5.218908581417209,52.21200542762688],[5.218960393739485,52.21212871590352],[5.219287617505844,52.21290719691565],[5.219527591796424,52.213474707114884],[5.21957850686437,52.213604051624124],[5.219919951968134,52.214404157620365],[5.22017586360711,52.215025984493295],[5.220424247059641,52.21562423397211],[5.220444607570443,52.21567328243005],[5.220495843456015,52.21579256054965],[5.220506453029192,52.215815773151746],[5.220577570830289,52.21597137220485],[5.220587730508695,52.21599361347688],[5.220621827908277,52.21607100197519],[5.220688107675555,52.21622146207361],[5.22076802649051,52.21639911160131],[5.220818456643603,52.21649948698566],[5.220912133138408,52.216700182637275],[5.22112972956057,52.217228731304886],[5.22122337269156,52.21741952202727],[5.221232378744778,52.21743736656068],[5.221261150542405,52.2175111971745],[5.221337164014336,52.21771716148955],[5.22134589520381,52.217714513339786],[5.221462488335078,52.217971360766896],[5.221516859210284,52.218091146104356],[5.221662158362051,52.21841281793403],[5.221901450437433,52.21894759699607],[5.222256109648042,52.2197423840773],[5.222290043487202,52.219818073105735],[5.222374196748141,52.2200056858554],[5.222491138562446,52.220266442346535],[5.222525023991795,52.22033960564873],[5.222587350756191,52.22047419550667],[5.22272444665897,52.2207943355064],[5.222779625098935,52.22092318106142],[5.222794758279688,52.22095850634708],[5.222822659529837,52.22102368002828],[5.222849298623695,52.22108588595995],[5.222869147403414,52.22113223688318],[5.223191740612304,52.22186133803934],[5.223451088944691,52.22246805310778],[5.223465004040436,52.22250060835531],[5.22386552360391,52.22335617537589],[5.224130149201688,52.22392140821813],[5.224325865683513,52.22433386913704],[5.224436084896974,52.224566140755954],[5.224538837884499,52.224775249328374],[5.224730312641905,52.2251970959544],[5.224709395592721,52.225197867120464],[5.224536074563572,52.22520366856705],[5.224347952822506,52.225210590824396],[5.22408319252534,52.225219312472625],[5.223927230497293,52.22522474151384],[5.223767038207995,52.225230317293565],[5.223616373038377,52.225236058833936],[5.223601355086956,52.22523655934436],[5.223586278560154,52.225237068759654],[5.223329231305815,52.22524568255149],[5.223321429583531,52.225245941370645],[5.223132124017915,52.22525231179245],[5.222983185684518,52.225258054921845],[5.222901318114247,52.225260952084426],[5.222911867098945,52.22527375643261],[5.222932086888163,52.22529938188129],[5.222979586274438,52.225365068047694],[5.223026149443879,52.22542271777131],[5.223058686240913,52.22546596746766],[5.223167711635066,52.225607982756834],[5.223228215727492,52.22568754610159],[5.223279369101622,52.22575481008114],[5.223362014070996,52.225863192081555],[5.223371524656596,52.225875869118106],[5.223376054197545,52.22588190802843],[5.223464574707928,52.22599859116911],[5.223469287389412,52.226004584491434],[5.223507964824335,52.22605380149619],[5.223545619356513,52.22610260363136],[5.223587090576767,52.22615630940487],[5.223693467352733,52.226295120853806],[5.223717499514447,52.226327060893],[5.223758543579383,52.22638161985692],[5.22379370847524,52.22642699410368],[5.223835896666204,52.22648091648514],[5.223924695297021,52.22659624518424],[5.224007341455387,52.22670515699716],[5.224050705948772,52.22676174132029],[5.22407241014147,52.2267900469877],[5.224077681052093,52.226797523148285],[5.224081203435314,52.226802866780055],[5.224086480235748,52.22680873412672],[5.224135726628545,52.226873873959896],[5.224194621296477,52.22695022591257],[5.224204336861767,52.226963011015705],[5.224215701052659,52.22697723644392],[5.22426734489022,52.227043269320454],[5.224284416455715,52.22706571748468],[5.22432971735548,52.22712528832918],[5.224417953676472,52.22724299764154],[5.224482140640038,52.227329288283805],[5.224496885326215,52.227347706665405],[5.224531984032505,52.227391579624374],[5.224576504680622,52.2274485608016],[5.224646004412989,52.22753909192702],[5.224724425998992,52.227643485516786],[5.224797492820841,52.227739351234334],[5.224811085594603,52.22775664451403],[5.224882080143372,52.227846916900965],[5.224891445613785,52.22785948575651],[5.224987270936161,52.22798806234103],[5.225136937616881,52.22818297992416],[5.225235848992953,52.22831256716552],[5.225243846435744,52.22832303995374],[5.225256490602257,52.22833966678117],[5.225328597548355,52.22843447027725],[5.225358117017333,52.22847147762841],[5.225394223944246,52.228520330957096],[5.225469925400927,52.22861698178767],[5.225532693104484,52.22870020504291],[5.225591185099454,52.22877590859504],[5.225641921643241,52.228843027131724],[5.22568162807034,52.228896406164566],[5.225731337985624,52.228960125860056],[5.225787312786716,52.22903188021687],[5.225846122160785,52.22910910301335],[5.225858723157521,52.2291256488241],[5.225900474046179,52.22918046862257],[5.225937909736594,52.22923052795931],[5.225991385591271,52.22930137103595],[5.226099190713925,52.22944196176166],[5.226183101307564,52.229552239858194],[5.22619689606385,52.22957064773711],[5.226226531797936,52.22960829315614],[5.226300171990657,52.229705246211225],[5.226322148552907,52.22973593359167],[5.226358555523245,52.229783339980806],[5.226390972564118,52.22982910514682],[5.226394030808324,52.22983341447495],[5.226450831662377,52.22990400121027],[5.226505080929096,52.2299718881015],[5.226571151582483,52.230061640430925],[5.226581202052509,52.230075288616256],[5.22664812205928,52.23016095259462],[5.226754404635036,52.23030277196048],[5.226779270879375,52.23033598875229],[5.226852051821343,52.23043240101277],[5.226864639284309,52.23044884782709],[5.226930796480475,52.230535283556684],[5.227000199603449,52.23062685569345],[5.227006754437218,52.230635753533114],[5.227032332889873,52.23067047220086],[5.227100891340714,52.230760964592626],[5.227236370502898,52.2309376418683],[5.227353972817087,52.23109544734798],[5.227387867085244,52.23113800557227],[5.22749021249375,52.231276951808695],[5.2275409998503,52.23134373701285],[5.227558056727641,52.231367119396886],[5.22759088870777,52.23141212980133],[5.227628140007998,52.231461595133275],[5.227668424684138,52.23151422825957],[5.227679497521794,52.23152869561857],[5.22775329390771,52.2316287667127],[5.22778551696199,52.23167224830965],[5.227833035889327,52.23173636858013],[5.227903904697655,52.231832543902584],[5.227942463910031,52.231884860032544],[5.228007344464113,52.23196926216525],[5.228023123879657,52.23198979361956],[5.228088461372835,52.232077494851254],[5.228125327201075,52.232128640223095],[5.228188498927344,52.23221627556795],[5.228218526593183,52.232255808435234],[5.228332810093075,52.232406229432414],[5.22846183816285,52.23257626356004],[5.228549473674425,52.23269202747284],[5.228623122740447,52.232789338540265],[5.228765817225909,52.23297392395579],[5.228933893608866,52.23319614820682],[5.228985642151621,52.23326554950434],[5.22903258306283,52.233324392647326],[5.229069803597132,52.23337105326382],[5.229144541656868,52.233467376788525],[5.229193806692874,52.23353141793093],[5.229207077171258,52.233549761827206],[5.229217550846035,52.233564228234975],[5.229233629581746,52.23358735739998],[5.229278604598106,52.2336476178897],[5.229361833945924,52.23375631086272],[5.229368564862434,52.233765352605545],[5.229370997940739,52.23376860944369],[5.229406794667932,52.23381657128234],[5.229429677344423,52.23384885011076],[5.229443972126737,52.23386735712679],[5.22946202653681,52.233890695615194],[5.229470449023941,52.233901582111436],[5.229498148589205,52.23393778604064],[5.229511204253654,52.23395485334455],[5.229527740347912,52.23397705733238],[5.229590971158389,52.23406192372369],[5.229645323528782,52.234132415716324],[5.229693728256522,52.234195916225595],[5.229705660403027,52.234211993350385],[5.229762451323561,52.23428845644573],[5.229823593514838,52.23436809800399],[5.22987621931048,52.23443857859967],[5.229924787278314,52.2345016388243],[5.229945858269962,52.23452898082671],[5.230020676080224,52.23462868329816],[5.230087597216085,52.23471784150608],[5.230231941152923,52.234907244735254],[5.23030916107539,52.235011084600245],[5.230353732198703,52.23507046332033],[5.230359239837584,52.2350778046842],[5.230373109769485,52.23509662559282],[5.230391860362519,52.235122085980876],[5.230394861624172,52.235126161441805],[5.230455950673593,52.23520907415273],[5.230548494692661,52.23533067611641],[5.230647810398639,52.235462506116576],[5.230713141651566,52.23555073610411],[5.230803151196526,52.23566911686719],[5.230882011824084,52.2357733899262],[5.230950862167515,52.235864428627],[5.231021790175535,52.23596003583989],[5.231070505264153,52.236023823780144],[5.231200290821352,52.23619672289743],[5.231233221870432,52.23624059092147],[5.231284875686806,52.236309811285295],[5.231332509155788,52.23636914871877],[5.231336109379432,52.23637362939588],[5.231352084398864,52.23639353149701],[5.231393409997392,52.23644825882978],[5.231437673657914,52.23650428426319],[5.231491612573852,52.23657329183557],[5.231596702647528,52.236709056281384],[5.231656159971315,52.236782582919794],[5.231666882783934,52.23679741792853],[5.231683229253934,52.236820034791045],[5.23169144619362,52.23683140619357],[5.231738808976719,52.23689311588297],[5.231812011611877,52.236988096444236],[5.231879408307606,52.23707726320481],[5.231879816363046,52.237077794021786],[5.231957020778442,52.237179862142],[5.231960110127312,52.237183946664786],[5.232043615067777,52.23729714990907],[5.232070064751023,52.23733194048224],[5.232105622504878,52.2373787147618],[5.232152990164717,52.23743935473474],[5.232224469018853,52.23753378451234],[5.232260622037858,52.237582078463525],[5.232278705896548,52.23760622544442],[5.232304544520074,52.23764002650291],[5.232355385777824,52.237703888578125],[5.232388121117541,52.23774574274009],[5.232398628869785,52.23775940898233],[5.232466484763486,52.23784770417682],[5.232521597117389,52.237921206699816],[5.232541913268928,52.237947621487095],[5.232581029942909,52.23799848073841],[5.232607706965917,52.2380355004602],[5.232625771008119,52.23806124718992],[5.232673116175107,52.23812456528341],[5.232709284830971,52.23817285012383],[5.232775594885179,52.23825977696596],[5.232829872100503,52.23832953931908],[5.23289875903341,52.238420756638654],[5.232966641726554,52.23851034581279],[5.232993485920212,52.23854577481926],[5.233051161772973,52.23862357660027],[5.233118311188611,52.238713712983746],[5.233178608001625,52.238791527103],[5.233254411664244,52.23888971876757],[5.233291443439561,52.238938552801876],[5.233353431591308,52.23902278632493],[5.23339734227585,52.239080733924766],[5.233465395336087,52.239168201898494],[5.233503307841143,52.23921649774009],[5.233542896525911,52.23927122203006],[5.233546030333584,52.23927523466488],[5.233593723094384,52.23933615307991],[5.233661754920389,52.23942576000642],[5.233702248090267,52.239477276767644],[5.233736704321047,52.23952181114065],[5.233791818955153,52.239595861303904],[5.233824799485361,52.23963958483282],[5.233826140264136,52.23964136615787],[5.233832290428047,52.239649517088715],[5.233958026045187,52.23981424685988],[5.234015292024907,52.239888740104874],[5.234075181787584,52.2399666341098],[5.234131166843824,52.240039076417425],[5.234162167033789,52.24007985827164],[5.234214684475321,52.24015174779373],[5.234230632947799,52.24017162249156],[5.234252602300934,52.24019897384253],[5.234299329821766,52.24026016034624],[5.234312024709244,52.24027677723958],[5.234361991576459,52.24034117655269],[5.234393866950575,52.240383029023604],[5.23443262331334,52.240433464742644],[5.234450604250863,52.24045842014587],[5.234464452988369,52.24047587437858],[5.234472362536742,52.24048763165742],[5.234485030520998,52.24050359238673],[5.234510104187869,52.240535162978006],[5.234539956440099,52.24057361540469],[5.234562908102522,52.240604949561686],[5.234583003632601,52.24063237033221],[5.234592784465026,52.24064493892034],[5.234606705103491,52.2406628066675],[5.234612845034587,52.240669753176796],[5.234697148248916,52.24078031307619],[5.234783192338297,52.24089139644954],[5.234866599639931,52.24099874642158],[5.234943881909827,52.24109915884812],[5.234970239398535,52.24113654610046],[5.235021160906381,52.24120063177872],[5.23505981884819,52.241254581388105],[5.235084384783118,52.241285018735745],[5.235108728194634,52.24131631862106],[5.235153756310994,52.24137421304997],[5.235218743124679,52.24146127157664],[5.235284599489252,52.24154672236613],[5.235387335819337,52.24167971202723],[5.235464618639241,52.241780654379575],[5.235532218225542,52.241866107262055],[5.235627935461852,52.24199268838582],[5.23571661236598,52.24210590453441],[5.235774582424876,52.24218174596234],[5.235840429913103,52.24226612686886],[5.235954573682486,52.24241246851608],[5.236015176488473,52.24249365194289],[5.236074013221456,52.242568955057564],[5.236178502202217,52.2427046066307],[5.236233836390136,52.24277671451936],[5.236326045297759,52.24289848209989],[5.236443723044987,52.243052835894474],[5.236525418088084,52.243162330546994],[5.236597438540991,52.243257926667],[5.23663431913937,52.243305995452026],[5.236689201685388,52.24337787784806],[5.236737072797755,52.24344058373969],[5.236842472005353,52.243581053319375],[5.236947866237281,52.24371885341787],[5.237006691524398,52.24379415603361],[5.237098038976995,52.243916461158896],[5.237161276031508,52.24399924714372],[5.237214860013524,52.24407028278403],[5.237336074953144,52.24423264826637],[5.237368871418939,52.24427655927292],[5.237409859748569,52.2443314547494],[5.237488920090513,52.244437745711934],[5.237553044611673,52.244522662709635],[5.237553467354263,52.244523220488134],[5.237575347852623,52.244552116984444],[5.237660202423925,52.24466419431289],[5.237770860669924,52.24480999944211],[5.237842895680078,52.244907212591166],[5.237879949933867,52.244956701261735],[5.237892864656774,52.244974055030525],[5.237933811522431,52.24502859974057],[5.238004393358007,52.245122728137744],[5.238049693096253,52.24518048694126],[5.238109827065318,52.245259646399774],[5.238190850548554,52.24536660444343],[5.238200323669742,52.24537985540494],[5.238233115191846,52.24542575245772],[5.238262306957762,52.2454666207888],[5.23832069357623,52.245543099570945],[5.238348568100696,52.24557946333512],[5.238393883716664,52.24564150920002],[5.238407789648468,52.245660320180285],[5.238427467842784,52.24568694881602],[5.238436578167023,52.2456992645704],[5.238485373941923,52.24576718380758],[5.238559441924348,52.24587041189211],[5.238626535451634,52.24595757896189],[5.238674461774414,52.2460185494586],[5.238711930589155,52.24606722048771],[5.238761601777961,52.24613193206153],[5.238874878700222,52.24628061549235],[5.238942853775775,52.246367253200525],[5.239023897681085,52.246473680393215],[5.23911800840162,52.24659615811693],[5.239227802352233,52.246740549655094],[5.239300992473551,52.24683575005429],[5.23932540003258,52.24687158794992],[5.239363738219327,52.2469234595053],[5.239382913997717,52.246951804015346],[5.239439556217829,52.24702561066495],[5.23946656508853,52.247063051607476],[5.239511010109477,52.24711919994377],[5.239582461196766,52.247218145899126],[5.239643465070347,52.247301574830345],[5.239721021553605,52.247405327797516],[5.23976982469607,52.24747217694121],[5.239831696735191,52.2475545373056],[5.239883978141243,52.24762352982905],[5.239940627836915,52.247700014599445],[5.240008593019382,52.24779092984517],[5.240071340989232,52.24787436071597],[5.240133219455254,52.24795511210847],[5.240188123425674,52.24802838594193],[5.240202821465549,52.248047233637166],[5.240246507373977,52.248103254912216],[5.240345857121073,52.24823321596793],[5.240425161141807,52.24833644034243],[5.24048180918156,52.248413985399026],[5.240603805686315,52.248568546944455],[5.240676136059766,52.24866427566841],[5.240719718479703,52.248720961729425],[5.240740636670054,52.24874984743386],[5.240770780365308,52.2487875885437],[5.240814655069028,52.248840068643844],[5.240893330409844,52.248939193479906],[5.240957293041094,52.24902384770182],[5.241028192204347,52.249114397463806],[5.241106836326317,52.24921886984843],[5.241156989700547,52.2492815677021],[5.241237378729716,52.24938551187119],[5.241272804592989,52.249433721154325],[5.241288989715212,52.24945485344224],[5.24130723023983,52.24947437046123],[5.24135600348628,52.249538351778355],[5.24138792215782,52.24957994168714],[5.241436717924511,52.249646062091195],[5.241489898236789,52.249714839274056],[5.241538672009126,52.24977882051309],[5.241598111032339,52.249859343406165],[5.24164332772043,52.24991852972923],[5.241699190930187,52.24999104004819],[5.241739933050923,52.25004385747313],[5.241750607127782,52.2500576848323],[5.241753333907363,52.25006123836227],[5.241802911524519,52.25012593051143],[5.241828709938706,52.25015854295855],[5.241846341534607,52.250180836369495],[5.241935033706335,52.250299215648596],[5.242015741523467,52.250405316726116],[5.242107979171879,52.25052796043342],[5.242214371703274,52.25066604446245],[5.242272876920407,52.25074175738969],[5.242297708075086,52.250774817934214],[5.242388124737949,52.25089050263472],[5.24247768726336,52.251007804019665],[5.242504285477079,52.25104245751943],[5.242560149748342,52.25111550668233],[5.242623088950869,52.251197075900464],[5.242707342984789,52.25130798029808],[5.242729523860298,52.251336624506756],[5.242766547469432,52.25138533858961],[5.242821404776373,52.2514575774931],[5.242879746612656,52.25153463807541],[5.242914569728046,52.25158012280943],[5.242965082599129,52.25164646934338],[5.243023412032565,52.25172299056937],[5.243048665136188,52.251757237851216],[5.243102663715035,52.251823597559934],[5.243161874830497,52.25190385870759],[5.243217595689725,52.25197663773794],[5.243275067170814,52.252051548976254],[5.243346465506818,52.252144659414355],[5.243425713506864,52.252246866000405],[5.243480569494449,52.25232017412931],[5.243528461814703,52.25238224802979],[5.243589420581562,52.25246144153017],[5.24361053557935,52.252489455127275],[5.243637542014526,52.25252522334182],[5.243728853878229,52.25264250788497],[5.243810408401214,52.25274753916405],[5.243890233481567,52.2528531165438],[5.244008171358427,52.253006662877006],[5.244126998209254,52.25316181897597],[5.244226302078386,52.25329030257577],[5.24431132597107,52.25340108986923],[5.244384240174509,52.25349779659766],[5.244477215781502,52.253618120417336],[5.244572247844034,52.25374125082865],[5.244644028056848,52.25383570907671],[5.244698035427109,52.253905429467665],[5.244734276320764,52.253952946589045],[5.244759200199867,52.25398562023063],[5.244773030989721,52.25400668627087],[5.244808511654747,52.254053842941765],[5.244855237525508,52.254115465488034],[5.244888126965558,52.25415779257679],[5.244946970090077,52.25423603009626],[5.24499110320445,52.254293362296465],[5.245006684338201,52.25431212055267],[5.245059457732388,52.254383385186166],[5.245093194539189,52.25443106995117],[5.2450574310404,52.25443564669722],[5.244859835154893,52.25445493053148],[5.244765739732043,52.25446411062304],[5.243980339410402,52.254534857748496],[5.244064218664557,52.25464235427903],[5.244081200098219,52.25466278607804],[5.244082308860199,52.25466411761122],[5.244104390930231,52.254692401911065],[5.2441387238113,52.25473664534774],[5.244146322573084,52.25474643324366],[5.244188232805237,52.25480260362661],[5.244214434473522,52.25483416443805],[5.244259833911365,52.25488926047889],[5.244300011894832,52.25494222907728],[5.244384492534374,52.25504534904866],[5.244474519872452,52.25515895540185],[5.24456888362848,52.25527685408379],[5.244661490459662,52.255394741582364],[5.244765391295829,52.2555212259353],[5.244780972792591,52.25553997522938],[5.244794827800013,52.25555820115154],[5.24481491237543,52.255583966330114],[5.244831175532572,52.2556048195782],[5.244910797055597,52.25570770861528],[5.244976603316068,52.255789163109],[5.24509693817993,52.255938675631754],[5.245167920400035,52.25602764102794],[5.245234565109008,52.25611284428264],[5.245277862943393,52.25616642744796],[5.245352308397236,52.25625807524214],[5.245431957179167,52.25635774632182],[5.245600764009359,52.25656996120712],[5.245676958140897,52.25666481053077],[5.245741870393862,52.25674734204503],[5.245856152743952,52.256890420264845],[5.245918492022357,52.25696705262204],[5.245959171561635,52.257020102121636],[5.246064771422433,52.25715354385507],[5.246124514621959,52.25722695537774],[5.246165219449367,52.25727679619756],[5.246237064995171,52.257367361779224],[5.246293324666776,52.257440238782976],[5.246324501510781,52.25747882448783],[5.246383358338822,52.25755491317591],[5.2464612789626,52.25765138182854],[5.246537458755138,52.25774730010331],[5.246583358294703,52.257803573209905],[5.246619708031866,52.25785073033267],[5.246692376222263,52.25795039223216],[5.246725265168166,52.257994327586665],[5.246797956917831,52.258091311089316],[5.246876698544337,52.258197406337715],[5.246913901275144,52.258248303291985],[5.24692861876786,52.25826759952134],[5.246951107430278,52.25829813968074],[5.246996968180073,52.25836242966851],[5.247028952504258,52.258410111764185],[5.247058633842876,52.258449612248036],[5.247071235928059,52.25846629949816],[5.247116441093861,52.25852492636313],[5.247174893992644,52.25859526198635],[5.247244785256806,52.25867517410462],[5.24733153966323,52.258776928434415],[5.247404122692732,52.2588627126539],[5.247473176576325,52.258943693187774],[5.247524503499404,52.259002821449016],[5.247555531671184,52.259042799745316],[5.247648579338934,52.259160577474255],[5.247695579154788,52.25922187559451],[5.247789504712492,52.25934018452181],[5.247817037760172,52.25937856779161],[5.247894103896088,52.25947395592189],[5.2480031041477,52.25961037480941],[5.248102380109307,52.259737219169175],[5.248136076392136,52.259781460647744],[5.248204955172819,52.25986780623151],[5.248209623957287,52.25987365376868],[5.248245758833789,52.25992035174145],[5.24826282700781,52.259942409804694],[5.248350544220566,52.26005165130253],[5.248461299945692,52.260189671634066],[5.248552562429174,52.260303716603545],[5.248590673104717,52.260351144791656],[5.248686372427776,52.26047051561254],[5.248815745572138,52.26063251879232],[5.248917623736768,52.26075773869699],[5.248979649455189,52.26083501612807],[5.249101044035785,52.26098688943176],[5.249188791317073,52.26109720885008],[5.249243716093215,52.261164348636605],[5.249337662871214,52.26128318658686],[5.249429833034208,52.26139883173248],[5.24950691913282,52.26149474907088],[5.249586661520623,52.26159386909255],[5.249665575731971,52.26169566645034],[5.249712581002616,52.26175696374122],[5.24975157944987,52.26180705295117],[5.249796746119169,52.261861409514154],[5.249884175596503,52.261947649796696],[5.249955727663674,52.26201951812917],[5.249996367508049,52.26205998326077],[5.25007325306253,52.2621409263631],[5.250101572932367,52.26217234447001],[5.250134360087884,52.26221338465682],[5.250186629967768,52.26227786053368],[5.25024420076601,52.26234766328153],[5.250303527873804,52.26241798932316],[5.250372650988658,52.26250378562315],[5.250407180153321,52.26254534004883],[5.250473611833868,52.262625264163745],[5.250521472084174,52.26268548357676],[5.250574644685502,52.262752099406676],[5.250641989982669,52.26283522412321],[5.250698671943295,52.26290396505881],[5.250734220111044,52.262947794465845],[5.250765143065868,52.2629904860692],[5.250816702911366,52.26305303745582],[5.250879619685874,52.26313324489002],[5.250915465857017,52.2631851186338],[5.250964407297601,52.26325142382277],[5.250989225146562,52.26328364657526],[5.25100722940543,52.26330702650538],[5.25104919381708,52.26336531552647],[5.251106001591868,52.263441246615635],[5.251193397850099,52.263554601947575],[5.251254576089615,52.26363855507262],[5.251272057768443,52.263660469354484],[5.251289537791457,52.26368293188537],[5.251341976356789,52.26375564920447],[5.251364707001126,52.263785595573346],[5.251410152116591,52.26384601855689],[5.251472210061059,52.26392997257376],[5.251523781708878,52.26399894990399],[5.251577078780967,52.264064181291175],[5.251598053585425,52.26409358633444],[5.251635641278179,52.264141713947836],[5.251659233341667,52.26417272180076],[5.251715159404912,52.264240625501],[5.251820032840559,52.26437376445535],[5.251922279901524,52.26450370066609],[5.252035027419423,52.26464432624419],[5.252116762703916,52.2647469340199],[5.252623842275685,52.26538540035096],[5.252658139307503,52.26542764588667],[5.252698341739885,52.265478975764736],[5.252781370646244,52.265581099193845],[5.252886245458506,52.265711028534525],[5.252994609102704,52.26584523092241],[5.253087246183511,52.26595805147439],[5.25310910665849,52.265985848432436],[5.253176395657648,52.26607140726587],[5.253204363425223,52.26610455884121],[5.253233316145642,52.26614144144538],[5.253247179645025,52.26615909112792],[5.253318854259466,52.26624785448493],[5.253377398027622,52.266318959972736],[5.253417606900639,52.26636868978232],[5.253471791927054,52.266437669181336],[5.253510254586035,52.26648845753996],[5.253545201080399,52.26652963399866],[5.253629982165101,52.2666349674178],[5.253706020821937,52.26672960446432],[5.253766330371579,52.26680339009649],[5.253794289427137,52.26683975014699],[5.253824004626236,52.266871825009446],[5.253844099830949,52.266897489737225],[5.253887804543511,52.26694935341971],[5.253963830986266,52.26703864256385],[5.253984806917565,52.26706376899305],[5.254042478620912,52.267133282323655],[5.254062578879281,52.26715733820974],[5.254115030597524,52.267223636999724],[5.254188447416074,52.26731881902781],[5.254264473510448,52.26740863824874],[5.2542962546787,52.267445730478535],[5.254323506839366,52.26748361752351],[5.254362309410905,52.26753403747709],[5.254407182003397,52.26758768184756],[5.254437363651391,52.26762576988378],[5.254508952668341,52.26771535028072],[5.254543435376328,52.26776039963643],[5.254596911741886,52.26782745432437],[5.25464176550154,52.267882698401955],[5.254687475701484,52.2679406307604],[5.254716798288795,52.26797710895174],[5.254738372272713,52.268003395332364],[5.254754740590168,52.268026458264735],[5.254815946898368,52.26810529546362],[5.254871140009583,52.26817663910313],[5.25492371741168,52.268245822729966],[5.254948731465735,52.26827800888466],[5.254975454821169,52.268311796764664],[5.254987540214674,52.2683268198229],[5.255037558693791,52.26838957429178],[5.255074684133103,52.26843303560518],[5.255131650324328,52.268499563660896],[5.255151489425279,52.268523169675376],[5.255204966052064,52.268590754355],[5.255266253116159,52.26866264386615],[5.255305062548865,52.26871145469682],[5.255339594110816,52.26875538039566],[5.255354963405444,52.268774649295125],[5.255381206555782,52.268807546756854],[5.255453969184636,52.26890281711504],[5.255531070531579,52.2690023614384],[5.255618565075431,52.26911475178181],[5.255708685570237,52.26922607543323],[5.255778877057796,52.269314386203526],[5.25588718452685,52.26944872957636],[5.255986838230006,52.26957182855724],[5.256062235230949,52.269663892818606],[5.25620002246611,52.26983249392928],[5.256257211286376,52.26990420760242],[5.256332609409959,52.2699962716859],[5.256423605683231,52.270104926377066],[5.256521547710982,52.27022321455002],[5.256590522615009,52.27030782052157],[5.256597033585368,52.27031570097977],[5.256608201578122,52.27032919493519],[5.256639393419071,52.27036879344389],[5.256661063923956,52.27039292250586],[5.25668794762788,52.27042286340217],[5.256804097518698,52.27056256226513],[5.256909849277707,52.2706862064233],[5.256933060074362,52.27071476809147],[5.257016444118404,52.27081733820819],[5.25707181867267,52.27088409722466],[5.257081760743651,52.270896070855436],[5.257088374178399,52.27090404127575],[5.257118703988734,52.270943117415534],[5.257125694466543,52.270952418435364],[5.257152488900958,52.27098806634629],[5.257193186717313,52.27103881097443],[5.257199273873458,52.271046403324476],[5.257252123964843,52.27111491209099],[5.257302158100577,52.27117949009431],[5.257341817192461,52.27122984705559],[5.257385504765899,52.27128542131814],[5.257430941208481,52.271344197121174],[5.25745715212485,52.27137411912299],[5.257506940020244,52.27143289966695],[5.25756283654556,52.27149701661801],[5.257637978369326,52.27158838749943],[5.257700865047376,52.27166212892938],[5.257761140302998,52.271732128564025],[5.2578310203425,52.27181441593471],[5.257877129549579,52.27186894108945],[5.257894363569461,52.271892606693335],[5.257934535026807,52.271943557199286],[5.2579346080465,52.27194363816881],[5.257954230093601,52.27196735131106],[5.257973480280937,52.27199299640998],[5.258010223473899,52.27203893696857],[5.258053956681653,52.27209449304869],[5.258126575969229,52.27218744269829],[5.258195676313602,52.27227131083855],[5.258246380799136,52.27232793499917],[5.258332107364885,52.272433167078404],[5.258381959377762,52.27249085080479],[5.258457169403155,52.27258006416036],[5.25846791619246,52.272592676675835],[5.258511868021645,52.27264394566179],[5.258581504580305,52.272720201528635],[5.258695789951652,52.272850126754335],[5.25874564974809,52.27290543756509],[5.258800682289253,52.27296558038777],[5.25885297986019,52.273034267565464],[5.25888518561923,52.27307926819431],[5.258897516329045,52.2730965020891],[5.258972307126221,52.27319463948361],[5.258983704513295,52.27321038039158],[5.259067690986429,52.27331561901941],[5.259182275875942,52.273454504865775],[5.259270627196871,52.27356561706451],[5.259412356350363,52.273742433349554],[5.259558446009185,52.273926731966164],[5.259650316492989,52.27404264712195],[5.259740415238404,52.27415322157423],[5.259835773116428,52.27427448804505],[5.259945136757294,52.27441177667232],[5.260069346152787,52.27456347951189],[5.260116588657032,52.274623307747376],[5.26023033129779,52.27476700906495],[5.260236974227504,52.27477531188056],[5.260349306398965,52.274915506345366],[5.260483167999612,52.27508484404578],[5.260622287119785,52.27526059547332],[5.260764012393077,52.27543741006877],[5.260885609230905,52.27558751839507],[5.260963473522072,52.275684732020224],[5.261058794025473,52.2757904935685],[5.26110251803185,52.27583642259365],[5.261174230676651,52.27591761336269],[5.261255602139142,52.27601856942416],[5.261371951552571,52.276160124303836],[5.261392073031939,52.276184700208006],[5.261458565995059,52.27626749405486],[5.261533807327439,52.27636044431343],[5.261596217821603,52.27644145417156],[5.261628400301249,52.27648098046093],[5.261711269791375,52.2765814344725],[5.261757097241485,52.27663539153078],[5.261791476354751,52.27667545936704],[5.26188404277034,52.27678767050616],[5.261954585732337,52.276874225227466],[5.262017161674773,52.276949033488606],[5.262135298967531,52.2770922252483],[5.262239343655082,52.277218855576194],[5.262312496167354,52.2773054128313],[5.262412120046603,52.27742563007747],[5.262514389136666,52.27754851938219],[5.26259726113226,52.27764950302861],[5.262673084573581,52.27774033204069],[5.262722489054186,52.2778049968721],[5.262823966515779,52.27793912872731],[5.262952747483409,52.27810318237817],[5.263026860698675,52.27819830549773],[5.263102691662517,52.278292342853824],[5.263172371824003,52.27837998343172],[5.263297603812631,52.278535476645715],[5.263432533723388,52.27870271784933],[5.263544546414177,52.27884378962275],[5.263727090798017,52.27906766701012],[5.263836473650411,52.27920660565849],[5.263947600983642,52.27934552804283],[5.264050776872937,52.2794721647975],[5.264078125207908,52.27950743416453],[5.264127500093498,52.27956835046762],[5.264161895306552,52.279609487146175],[5.264260636946929,52.279729171580925],[5.264353227673239,52.279842441290334],[5.264457604190223,52.279970265303604],[5.264467447506945,52.27998231008905],[5.264483757780025,52.28000327741248],[5.264540201119849,52.280073269490074],[5.264596076586951,52.280142011656245],[5.264626628524304,52.280179603045575],[5.264782728170318,52.28037356713043],[5.264874433567855,52.28048469641939],[5.264992612860359,52.28063003332575],[5.265069331353474,52.28072407028728],[5.265178723949699,52.28086246839004],[5.265214881052993,52.28090842399223],[5.265235526217641,52.28093596570865],[5.265237906131423,52.280939131843255],[5.265269881364619,52.28098714130931],[5.265355050693066,52.28109932402926],[5.265451637498566,52.28122700429425],[5.265547360272231,52.28135468358875],[5.265610596430623,52.28143908945177],[5.265641300141427,52.28147540446632],[5.265663331368394,52.2815053652282],[5.265701028379522,52.2815566160309],[5.265738804951585,52.28160559300647],[5.265741418838495,52.28160896608846],[5.265769237729446,52.281644613015715],[5.265774772317541,52.281651701026824],[5.265816905344253,52.28170458312151],[5.265865281557285,52.28178420111526],[5.265913562404217,52.2818450975453],[5.265977761556565,52.28192616974153],[5.266291457766541,52.28188557846898],[5.266305632166715,52.28188419086225],[5.266347261213038,52.28188011699622],[5.266611387802801,52.2818480485443],[5.266852863012245,52.28181977625773],[5.267241671192056,52.28177516939792],[5.267519763451146,52.28174253785547],[5.267681916149742,52.281724573456515],[5.267910302364022,52.281696852018804],[5.268108196060393,52.281673467499445],[5.268454273265335,52.28163321763569],[5.268603340400608,52.281614744518315],[5.26883612301682,52.28158653137189],[5.269020044461869,52.28156536929738],[5.269128988738789,52.281552212135836],[5.269207658081209,52.28154439037216],[5.269332324064777,52.28153200366478],[5.269971458924738,52.28146669543599],[5.270014524193066,52.28146229814266],[5.270152885431467,52.281446562716965],[5.270380032860749,52.28142069574314],[5.270505335503221,52.28140555818115],[5.27078730343711,52.281374046239485],[5.271050994334078,52.281343702071624],[5.271347728047829,52.28130836552074],[5.271658410761082,52.28127347325362],[5.271895115128693,52.281245949967015],[5.272152695086673,52.281215103063076],[5.272490336572632,52.28117579487081],[5.272849717883322,52.28113314530737],[5.273166471849602,52.28109554963479],[5.273414490077566,52.281066892763285],[5.273623329272509,52.28104165806009],[5.273773005020599,52.28102424854773],[5.273967918295094,52.281000698571155],[5.274151540889408,52.280979887736045],[5.274275975061791,52.28096528461163],[5.27442422793862,52.280948241414215],[5.274678192779248,52.28092007289451],[5.274921121901667,52.280892306797085],[5.275130818820237,52.28086912843483],[5.275284611806479,52.28085145127469],[5.275375492521083,52.28084083277929],[5.275503958481153,52.28082512668007],[5.275691831539185,52.28080340071456],[5.275994167819651,52.28076908237921],[5.276076531684479,52.2807595158953],[5.276185529285899,52.280746846605616],[5.276470393741376,52.28071401161566],[5.276679125030912,52.28068955334545],[5.276699558415332,52.280687154722656],[5.276742169468915,52.280682161364034],[5.276752899118618,52.28068093106919],[5.276913433509361,52.28066246715953],[5.27708644119758,52.280642774328975],[5.277356440327599,52.28061198156475],[5.277670150445028,52.280575593330845],[5.27776802108112,52.280564485138484],[5.277955893235006,52.28054222529753],[5.278153380538733,52.28051895840248],[5.278177623054234,52.28051684165294],[5.278195079414494,52.28051532082734],[5.278260874209722,52.28050958431138],[5.278329805567515,52.28050357202398],[5.27835415103781,52.28050129355375],[5.278463449029468,52.28049110305392],[5.278563877105225,52.28048269287159],[5.278664265672763,52.28047244008257],[5.278706273789902,52.28046814650619],[5.278941275949426,52.280444058839066],[5.279052216889672,52.28043304242609],[5.279456686352564,52.280391914912684],[5.279845443960786,52.28035175142963],[5.280055101314573,52.28033070337622],[5.280229815621033,52.280313164545504],[5.28040104098947,52.280296134609564],[5.280561771797753,52.28028010159785],[5.280783804334299,52.280249509440324],[5.281034683452482,52.280215365623384],[5.281333610081006,52.280175664897136],[5.281497064968811,52.28015376406064],[5.281651714961716,52.28013715790968],[5.281875356132393,52.28011352164092],[5.282075462436513,52.280090268498945],[5.282243200000421,52.28007267555769],[5.282338461320996,52.28006102200366],[5.282698399895986,52.280022791918626],[5.282955286279193,52.27999403298003],[5.283172814329905,52.27997089218605],[5.283499820983674,52.27992174657214],[5.283666812792368,52.27989665518852],[5.28378707988683,52.279900678964445],[5.283889046259845,52.27990403054354],[5.284006707585068,52.27990696430623],[5.284153143484774,52.279861416211006],[5.284254851880597,52.279830541964586],[5.284354464206315,52.279818908544925],[5.284543209108329,52.27979664798016],[5.284629408303808,52.27978718671536],[5.284744951448723,52.27977440735151],[5.284885559797573,52.27975825217804],[5.285051480647962,52.279739485276274],[5.28522353134738,52.27971861130502],[5.285412171993508,52.279696708772185],[5.285556227076731,52.27968537318921],[5.285754406792663,52.27966992250459],[5.285888863730164,52.27965856031531],[5.285942443343929,52.27966860051556],[5.286010831362074,52.279681412584104],[5.286107532961993,52.279699362814725],[5.286372919049708,52.27968144291231],[5.286671470382796,52.27966147441588],[5.286897561879557,52.279647177967895],[5.286997954380941,52.27963999190922],[5.287141432423799,52.2795917323006],[5.287263906152664,52.279552505434935],[5.287343520369453,52.27952545662672],[5.287350492975245,52.27952654103584],[5.28758626525186,52.27950103474495],[5.287880544054206,52.279470894473896],[5.288083114073405,52.2794506351312],[5.288219334112875,52.27943659342286],[5.288388816242795,52.2794098167441],[5.288605467878176,52.2793762214755],[5.288733893877196,52.279354667925894],[5.288833380927943,52.27935229698009],[5.289010539820306,52.279345874015235],[5.289198334189631,52.279320756117514],[5.289366015855145,52.27929931526035],[5.289593087585021,52.27927111044404],[5.289660456231007,52.27924776191181],[5.289730446549482,52.27922496375131],[5.289933911952872,52.27920310215741],[5.290146134478798,52.279176978219475],[5.29025880644005,52.279162339638965],[5.29046924971664,52.279138892008355],[5.290599456453478,52.27911305972569],[5.290611872904916,52.27911070608255],[5.290705194097177,52.27909304039693],[5.290855497027984,52.27906406052803],[5.291051090076001,52.279043242169074],[5.291244955019694,52.27902188282187],[5.291485987481116,52.278994242922664],[5.291883300642992,52.27895101789874],[5.292178456674233,52.27891871956526],[5.292479739552087,52.278885373831955],[5.292670127663974,52.27886525866045],[5.292968741068601,52.27883279034713],[5.293210634854042,52.27880567789276],[5.293649859251953,52.27875936145183],[5.293850696575852,52.278738021315284],[5.294415655112426,52.27867922725847],[5.294941322871551,52.278622467070036],[5.295216055397358,52.278593695389674],[5.295552563781536,52.27855845479823],[5.29565297367752,52.27854805278131],[5.296025005653397,52.27850313155443],[5.296326285036576,52.278468697485664],[5.296941070545935,52.278396133419214],[5.297054580604986,52.27838522789648],[5.29746756868969,52.2783457798703],[5.297773218913449,52.27830814579254],[5.298064900065622,52.27827262151433],[5.298326155441575,52.278239931782174],[5.29835746208257,52.27823601864922],[5.298537354708719,52.27821514016956],[5.298698049713315,52.27819528065783],[5.299058734327273,52.2781503144365],[5.299185349271778,52.278136234964215],[5.299286215279357,52.278123969739006],[5.299400114806861,52.2781081100116],[5.29957542180633,52.27808633676598],[5.299938274639596,52.2780406774095],[5.300075310086477,52.27802513966226],[5.300256607067599,52.27800460113302],[5.300585417867029,52.27796747111175],[5.300989241264431,52.27792023867425],[5.301237823493848,52.277892117022674],[5.301502952595302,52.27786187673179],[5.301739106722386,52.2778346977306],[5.301742814706028,52.27783427798319],[5.301925092173732,52.27781358481075],[5.30206027763308,52.277799265761615],[5.302121346901239,52.27778595388214],[5.302246094577882,52.277758783648636],[5.302322863079934,52.27774224734284],[5.302323977157235,52.27774200547254],[5.302364743446199,52.27773322670631],[5.302489435483748,52.27772745597085],[5.302631582053992,52.27772008876628],[5.3027772149093,52.27771327212811],[5.302896675781755,52.27770749723342],[5.303129577605267,52.27767133439218],[5.303387762153188,52.277631450091725],[5.303592738601629,52.27760114454761],[5.303713982444844,52.277582005325044],[5.303804657795762,52.27757994811241],[5.303906691038581,52.27757682927935],[5.304049695418718,52.27757266959384],[5.304147382039059,52.27755885209714],[5.304301760391615,52.277537066148724],[5.304528540061626,52.2775062439665],[5.304703849103872,52.277480724218],[5.304807222243976,52.27746601136378],[5.304849521227393,52.27745999204122],[5.305060648312519,52.27743062295265],[5.30509023978744,52.27742650911644],[5.305189024701341,52.27741270050804],[5.305269049201185,52.27740153022058],[5.305417328984609,52.27738079914801],[5.305488733440852,52.27737187867977],[5.30551936465203,52.277368053061046],[5.305535104969955,52.27736625738215],[5.305585609636462,52.27736004572437],[5.305646578292085,52.27735276272357],[5.305709264252453,52.277343863080866],[5.305759446674195,52.27733756124971],[5.305789389030426,52.277333806989134],[5.305825735462463,52.27732958975951],[5.305834499644486,52.27732857117977],[5.305908262963796,52.277359836239256],[5.306123412118411,52.277454687488785],[5.306187831157081,52.277483878796296],[5.306268882161402,52.277520595181585],[5.306298765281205,52.27753336919448],[5.306411738506908,52.27758169247367],[5.306470492680635,52.27760790482164],[5.30671921406878,52.277718874893154],[5.306875129480893,52.27778692801427],[5.307163445518287,52.277913931148305],[5.30727495457048,52.27796269300736],[5.307507520402874,52.27806397970575],[5.307667801941823,52.278133643517705],[5.307669999276112,52.2781339865272],[5.307685870349022,52.27814113344402],[5.307741843759954,52.2781663276757],[5.307878612368423,52.278225280020386],[5.308028442337465,52.278289579651414],[5.308342026285717,52.278425162093086],[5.308631232674732,52.27855055341615],[5.308859473934774,52.27864808668698],[5.308977939421875,52.278701129692415],[5.309381254781171,52.27887635955108],[5.309654785516258,52.2789947815515],[5.30977761673677,52.279049444401004],[5.309982725929799,52.279138269231794],[5.310110949792343,52.27919326779473],[5.310305867066298,52.27927891275873],[5.310410313860119,52.279322768745544],[5.310552563107193,52.279385685122215],[5.310660537307144,52.27943219454992],[5.310739315070546,52.27946573371486],[5.310850847390774,52.27951402483541],[5.311030306104517,52.27959226173057],[5.311265513826041,52.279692464166686],[5.311566932174535,52.279824282323965],[5.312109654333663,52.28005951295242],[5.31232222414013,52.28015274241882],[5.312479023911681,52.28021918885168],[5.312638454653879,52.28028991489054],[5.312968629432008,52.28043191267364],[5.313183811172681,52.28052515120695],[5.313443419747888,52.28063873827109],[5.313659466295446,52.280733046011974],[5.313849389801422,52.280816093535265],[5.313932913104823,52.280853992547115],[5.313934699589817,52.280854775584366],[5.314220026099067,52.28097945870579],[5.314510057507754,52.28110452150653],[5.315117403464765,52.281368385825395],[5.31593712388223,52.28172412166147],[5.316934256370326,52.28215782679399],[5.317906086552393,52.28258137950922],[5.318568537678519,52.28286872516881],[5.319338488330724,52.28320468039859],[5.319982606080162,52.28348507805535],[5.320862712609559,52.283868019634276],[5.321580266921312,52.284180985185024],[5.322817889593447,52.28472146660261],[5.32354508071238,52.2850376250283],[5.324108842866928,52.28528328227003],[5.324531887634928,52.285468069549715],[5.32455753353114,52.28547923686794],[5.32462401371675,52.28550819446957],[5.325849543602934,52.28603989254578],[5.326432181545414,52.286293969911505],[5.327139752964495,52.28660152176662],[5.327886635926521,52.286924053591164],[5.328346113256957,52.28712302799273],[5.328580195074396,52.287225469133006],[5.329162148054592,52.28747796877333],[5.329920673044867,52.287808043061986],[5.331345459137193,52.28842653839255],[5.332096222697545,52.28875383576594],[5.332852198371234,52.28908279346323],[5.333648748539974,52.28942929067192],[5.3341872796769,52.28966340191064],[5.334644673557156,52.28986241369009],[5.334802304746726,52.28992992453573],[5.334904895217853,52.289973862208385],[5.334914824661588,52.28997811507784],[5.3351870974966,52.290098040999794],[5.335315177546343,52.29015422536133],[5.335336170223766,52.29016343436502],[5.335461511194046,52.29021841661105],[5.335628670787739,52.29011709457395],[5.336162309729099,52.28979362676196],[5.336416543565648,52.289639517573136],[5.339563659264061,52.28773172540302],[5.341327071112104,52.28666262175949],[5.343237861262862,52.28550407358944],[5.343264960621909,52.285487645092445],[5.350671104674313,52.28099629515637],[5.357899089707966,52.276611656611394],[5.358075740828678,52.27650447908411],[5.36547440543511,52.27201491415134],[5.365478889947225,52.27201219168443],[5.365820048296166,52.27180514894093],[5.372554457992982,52.26771739908927],[5.372880534787654,52.26751944033896],[5.378067256714971,52.26437030610327],[5.378869728992867,52.26388302138805],[5.379277492327021,52.26363540930621],[5.380280019409117,52.26302661347818],[5.380280663980952,52.26302621805384],[5.384679481233533,52.26035469616388],[5.387203965847773,52.258821291752234],[5.387679332067565,52.25853253131924],[5.393236246146695,52.25515656511898],[5.395155454155704,52.25403837043531],[5.39761441056218,52.25260557018361],[5.397907260169455,52.252434919739315],[5.398200092888469,52.252264277552925],[5.401847684605426,52.25013854661491],[5.402868303660197,52.2495437020733],[5.402896838026368,52.24952707085864],[5.403177004466247,52.24954366030732],[5.404643400659195,52.249630479539526],[5.406728277160914,52.2497538851916],[5.426659069378204,52.253319095976074],[5.430639242128409,52.2540306041958],[5.43113913643402,52.25411995483048],[5.451745439215753,52.25780099684873],[5.456249365990677,52.25860500650571],[5.460438022174521,52.25942683646437],[5.46337158010527,52.26000229771384],[5.463376415246066,52.26000324729302],[5.464760946761747,52.26063706947237],[5.464459382273042,52.26182787617733],[5.469273599574378,52.26269337164331],[5.469128253855969,52.26299789709048],[5.46907522791243,52.26310898666172],[5.469054872531038,52.26315162973042],[5.46981189985044,52.26324709111807],[5.470551802585536,52.26334031282022],[5.47144690357896,52.263540643082045],[5.472299076640759,52.26373991901112],[5.472320129503263,52.26369581886665],[5.472520092883978,52.26327680889598],[5.473443112521592,52.26344268072789],[5.476121595162592,52.26392405343091],[5.476566273744134,52.26299249567862],[5.476772451837182,52.2625605583142],[5.476849189646903,52.26239980784619],[5.480184072761068,52.26298969922115],[5.489743783137096,52.26468005888866],[5.50443048650984,52.26727522161453],[5.51903322613542,52.26985343648675],[5.519056253755477,52.26985750019192],[5.522166120545647,52.270406291583946],[5.529673815463234,52.271928082864385],[5.529969195104296,52.27198794392695],[5.533281177593513,52.272740840328126],[5.534812286275493,52.27408071696904],[5.536205811121392,52.27635385506348],[5.537005513195882,52.27786673869012],[5.538034382282251,52.27981306333477],[5.538611496833965,52.28090470344628],[5.543360827243197,52.28988624896085],[5.545165927499199,52.29329891255807],[5.545167949288571,52.29330274760944],[5.548112093650283,52.298867587437506],[5.548464501751099,52.2995335903383],[5.552671054790867,52.307481744657665],[5.552865341345437,52.307848718554055],[5.553655456512852,52.309341083907036],[5.555483320211408,52.312793631752655],[5.555483704245116,52.31279435920824],[5.555506302644306,52.312837027515144],[5.557620556992793,52.316829642065706],[5.560650765356369,52.3225506784122],[5.560805626277644,52.32284301763708],[5.560806172990497,52.32284404142825],[5.562377639233889,52.3258103578604],[5.565863666279405,52.33238908514336],[5.565864080175667,52.33238985745593],[5.567136604001256,52.33479086566371],[5.569516765217354,52.339281041531734],[5.571897408542061,52.343771165290676],[5.574278534137736,52.34826123690806],[5.575604079063233,52.35076038816818],[5.575657519653641,52.35080912376543],[5.577785557319692,52.35274944756411],[5.578014251826724,52.35295795998087],[5.585681771680234,52.359947309790705],[5.587707386085513,52.36145426006515],[5.588333466771929,52.361719589511225],[5.591157284416528,52.36291621611684],[5.592356888556397,52.36306613946966],[5.592723613742986,52.363111959628974],[5.592726052240859,52.3631122699572],[5.592739052516934,52.363113892094525],[5.594542943450494,52.36333930688348],[5.59463322410083,52.3633500505262],[5.595456181388033,52.36344798010822],[5.596584151007008,52.36354413302683],[5.596986678610579,52.36356849507365],[5.597404556606108,52.363579077431226],[5.597936957308477,52.36359152144316],[5.598290179329068,52.36358972309881],[5.598596692235254,52.36358315389653],[5.604955076926517,52.363391865085454],[5.605468764668252,52.363360719770235],[5.605902650369286,52.36331282312335],[5.606301065066386,52.36324701538731],[5.606836909064156,52.36312504822933],[5.607398319272463,52.362948835753855],[5.607419271242362,52.36294040231372],[5.607504426958171,52.36290611776084],[5.607812815043427,52.36278197223944],[5.608096809085864,52.36264752673631],[5.60835785907882,52.36250503460499],[5.608595687200127,52.36235764218058],[5.60885182528841,52.36217300624556],[5.609051853854202,52.36201229218802],[5.609209942375823,52.36186118339399],[5.609393990700525,52.361681894385214],[5.610082544301239,52.36101111140904],[5.610858994309663,52.36025549477238],[5.611637768912781,52.35950031786083],[5.612328180943761,52.36029272890885],[5.613531769102757,52.36167404788414],[5.6140393077805,52.36225650637547],[5.614060169627032,52.36226232628277],[5.614066609048598,52.36226412942798],[5.614344400146625,52.36234165363274],[5.614541625792753,52.36239669228828],[5.614567721755632,52.36240399398809],[5.615272036369985,52.36260100342686],[5.620737442802197,52.36412960081427],[5.624206571686846,52.36509802640361],[5.629447758989657,52.36656086345762],[5.636770449768549,52.36860486229697],[5.636813303154892,52.36861682425382],[5.643918929585472,52.370599606278724],[5.644867323935123,52.3708642065052],[5.645245618226755,52.37059671960531],[5.649282125641363,52.36774227801833],[5.652554565935951,52.36542777125484],[5.652650729003907,52.365478721994734],[5.655277528006711,52.36687030043238],[5.659123765160597,52.36890764165871],[5.659679506658023,52.36920199241764],[5.660234887238246,52.369496143667156],[5.662240673662729,52.370558425573265],[5.664469285745525,52.371738626046174],[5.666204592353028,52.37265751074012],[5.668442992571536,52.37384270014262],[5.67680874329968,52.37827128304499],[5.677658715210979,52.378721150008666],[5.678921660210269,52.37884126280062],[5.68471146137762,52.37939171654655],[5.685735840772771,52.37948907843641],[5.68848383905986,52.37975021309055],[5.688610020072709,52.37976220473609],[5.693802376725511,52.38127948865269],[5.694478503564153,52.38147704380498],[5.6956355240901,52.38161929107578],[5.698762500533195,52.3820036592128],[5.699271986186351,52.382299042322416],[5.700333378640666,52.38291437863952],[5.705646680309756,52.38599437469707],[5.706116232622577,52.386266530896165],[5.706752061975094,52.38663505433581],[5.706891612378619,52.386672470262575],[5.713349351527838,52.38840378992855],[5.713734154578575,52.38850693996315],[5.714763125898787,52.3887827567269],[5.715185738660151,52.388398714512945],[5.715583743519914,52.388037028280245],[5.71633925323224,52.38839551185848],[5.718913776968184,52.38961701796802],[5.720520759104636,52.39037939643106],[5.722297507137237,52.391222268718565],[5.725093404478622,52.39254850078317],[5.727331339761649,52.393609951270314],[5.728791253799637,52.39531114233254],[5.73284062401943,52.396910977939086],[5.733471979652253,52.3971603985707],[5.733287938314544,52.397334756838006],[5.729446920330052,52.40097322495401],[5.733397026934891,52.40253330603585],[5.737421976002285,52.39872040046452],[5.737472298743398,52.398712890719736],[5.739427886818798,52.398421039368976],[5.740012836880139,52.39871036928985],[5.742585276568454,52.39998263207124],[5.743702477176111,52.400768059159496],[5.744641379609549,52.401428116098565],[5.746585415608292,52.40299002416512],[5.753050552566588,52.40504167778843],[5.754586635043276,52.40598132673116],[5.755036911548627,52.406256754971935],[5.755983935857929,52.40683602408032],[5.756068318842324,52.407298262090215],[5.75629189703148,52.407426492068275],[5.758108789481607,52.40846854057346],[5.761915679283168,52.40992548204677],[5.761992131932734,52.40996373383426],[5.763716926460197,52.41082661374159],[5.768675247756919,52.41319730215802],[5.772111865234081,52.41519004896542],[5.77278640270644,52.41558115032643],[5.776672585804249,52.41757229977481],[5.777949956612695,52.41833075841051],[5.77940928199703,52.419197206471246],[5.783054971788908,52.42102141453001],[5.783866958880667,52.42111288693465],[5.784113998205079,52.421219307759266],[5.787257139019792,52.42257328569755],[5.789213281431222,52.42367824299413],[5.789757811639157,52.42411894081086],[5.79128870665985,52.42535787517025],[5.792557358144004,52.426234356410596],[5.79256792230725,52.42624165409954],[5.795195439632531,52.427751528684084],[5.800184867917955,52.43017157067121],[5.801701351830801,52.43078066223497],[5.804330750327169,52.43214751533077],[5.805627245590468,52.43305149398783],[5.806423588220341,52.43360671519218],[5.806897711705977,52.43410779982205],[5.810010893271938,52.43572751874865],[5.810643310040146,52.436243868204194],[5.811474944911569,52.436922840571526],[5.809586405855138,52.437658570503736],[5.81371069313867,52.4415338172021],[5.814215820035545,52.44200839103894],[5.818981217791073,52.446484887712394],[5.819184997402775,52.44667628843165],[5.81922055141003,52.44670967329882],[5.822410752354697,52.44970585445698],[5.822411153223513,52.4497062304607],[5.820848392590509,52.45097183308398],[5.815608065898812,52.455215033966326],[5.815841131419313,52.45548381653212],[5.817308638971978,52.45717613228741],[5.817445246508653,52.45733364580674],[5.818545969752983,52.45860285986611],[5.819411025550952,52.45960028724593],[5.819726013531734,52.45996345559502],[5.819945081115433,52.46021603162108],[5.824641893715707,52.46563045710684],[5.827498068378487,52.46892233629903],[5.829275033727984,52.470970082805636],[5.831385256313956,52.473401577762765],[5.840256109631511,52.47105821178776],[5.841472469079198,52.47227468713511],[5.842576772229582,52.47446791010306],[5.842648625303712,52.474610607069756],[5.843476807455115,52.47562139068084],[5.845296705557907,52.47784236976751],[5.845591258738476,52.47820180903888],[5.845567892131151,52.4803197108445],[5.847813667846624,52.484957802544386],[5.847866986410887,52.48516783939565],[5.848285909781184,52.48681826137829],[5.849257735139991,52.49064591687618],[5.849368973305642,52.49094719251041],[5.850762603837044,52.494721446840835],[5.8510094484513,52.49538985836501],[5.851528818565821,52.49579306990949],[5.856698050117378,52.4998056538465],[5.857133215527376,52.50119022631885],[5.857285219951098,52.50168880470849],[5.858716441217524,52.50464250845837],[5.858767671476429,52.50475195154975],[5.860180804990419,52.50777091196762],[5.862875084319486,52.51352561911561],[5.862912034310177,52.513722834834844],[5.863249910240301,52.51552579482774],[5.864175230187295,52.51783631508436],[5.864206719471284,52.51791493981716],[5.864310248625132,52.51817343479422],[5.86435695954391,52.51818861716565],[5.864422373212224,52.51820987795306],[5.865673326453495,52.51861646089173],[5.865697529548378,52.51862432610355],[5.865795554448772,52.51865618644276],[5.867686265655825,52.519266678756146],[5.868130940468227,52.51941121865484],[5.868152585125585,52.519418123099626],[5.870519304165066,52.52017336780001],[5.870815132545693,52.52026704214123],[5.870883683056585,52.52029217903512],[5.870886242279379,52.520293121265055],[5.871827355392406,52.520593279135866],[5.872210896189275,52.520729623350476],[5.873299425916485,52.52107943330753],[5.873414635579964,52.52111611507957],[5.874253933418752,52.52138336369374],[5.875764508596839,52.521874434084],[5.876065326219734,52.52196156792134],[5.876205472580007,52.52202502557984],[5.876475557573327,52.52187700342401],[5.876476480195765,52.52187649632264],[5.876584472768847,52.52181731801262],[5.877195228285724,52.52146971549763],[5.877198229838648,52.52146801346268],[5.877421290688918,52.521341061150196],[5.87776275870021,52.52114850487697],[5.877860529233552,52.521207875808976],[5.878044218117502,52.521299497503556],[5.878472863274892,52.521496111225325],[5.878717834883924,52.52160112094307],[5.878909826746754,52.52167329406159],[5.878945618183298,52.521677495592996],[5.878986183709617,52.52167114406134],[5.879022647582016,52.52166164595095],[5.879073803895615,52.521628593781266],[5.879138114836436,52.52159529829539],[5.879215432454748,52.5215577427079],[5.879264438434626,52.52153139500375],[5.87926792420501,52.52152952014643],[5.879451937361445,52.521430551047715],[5.879707441468653,52.52134242024561],[5.87978062723091,52.52130173584365],[5.879870344515038,52.52124787906766],[5.880054427507113,52.521155388663054],[5.8803198521781,52.52100463587483],[5.88032254609223,52.52100310580033],[5.880329105134331,52.52099937571233],[5.880346955267733,52.52098422958838],[5.880448189078779,52.52089838317987],[5.880507176853665,52.52086357222741],[5.880610607775413,52.520766077823794],[5.880931259798389,52.520524024308806],[5.880946969797406,52.52050726027649],[5.880948134554651,52.52050601516316],[5.881000229668095,52.52045045372531],[5.881292698696122,52.520198459603826],[5.881470764023089,52.52006263668196],[5.881559021077511,52.52000641200526],[5.881724525223818,52.51993836130723],[5.881783768406166,52.51988184400521],[5.881814317533892,52.51985878968859],[5.881859598449688,52.519813250294945],[5.881860225004313,52.519812627549385],[5.881869665807213,52.519803133402476],[5.881898359632275,52.51976967037321],[5.881899623140289,52.519768038378956],[5.881932447853172,52.519737703711066],[5.881997505523882,52.519665002650385],[5.882005418820889,52.519637540009526],[5.882007516795543,52.51962623406086],[5.881996046482057,52.519607138691455],[5.88197715723721,52.51959783461589],[5.881762548358534,52.51952123108459],[5.881829911283443,52.51944125865817],[5.881890979385502,52.519395150112395],[5.882292536633791,52.51919187760009],[5.882433190110351,52.51910093078835],[5.882543803722634,52.519015366913465],[5.882604470928269,52.51896122490467],[5.882679124716848,52.518978402599075],[5.882730101286167,52.518996784624534],[5.882956165036082,52.51909247277005],[5.883306627156208,52.51922534248552],[5.883318754468679,52.51923075611597],[5.883344035760235,52.51923592598567],[5.883363581958837,52.51923157519176],[5.884798436086915,52.51843365466674],[5.884912182681457,52.518370400188985],[5.88530146004598,52.5180209973048],[5.885295324343566,52.518003416691805],[5.885270873823932,52.51795824068578],[5.885254819165321,52.51792856868957],[5.885430147028773,52.51787318871585],[5.885548847891666,52.517819637203814],[5.885818520527392,52.51767013924161],[5.885760174432233,52.51763580087221],[5.885893127880662,52.51757636524005],[5.886177130733494,52.51750619219946],[5.886316560451277,52.51747236100492],[5.886416292432564,52.51743521860709],[5.886534798053785,52.517377640547366],[5.887276735751928,52.51690619729006],[5.887404488198969,52.5167937919463],[5.887512549772142,52.51665599912995],[5.887602609163845,52.516554708247035],[5.887854185991473,52.51633075808749],[5.888204634372768,52.51605445135027],[5.888257761648824,52.51601256294675],[5.889769458910652,52.51482063171411],[5.889775802839937,52.51481627288425],[5.889824946408826,52.5147825145024],[5.88987706973417,52.51474522938035],[5.889907161179706,52.51472276804146],[5.891404773840376,52.513605122148036],[5.891789134099608,52.51331826186923],[5.892214871342538,52.51298910894747],[5.892349137614086,52.51282109199685],[5.892617881654704,52.51258228292475],[5.892619660839864,52.51258071152642],[5.892634023168394,52.51256910144637],[5.892737639027368,52.512485346160396],[5.892807572713999,52.51243185132405],[5.892877131241001,52.51238419988658],[5.892880799894231,52.51238168573299],[5.893024491591126,52.51228327153451],[5.893469692777713,52.51197545703763],[5.893638148261027,52.5118607050263],[5.894008743073578,52.51159120596897],[5.894133506998703,52.51149973769383],[5.894270469617303,52.51138795042338],[5.894328838829565,52.51134109191439],[5.894353792946051,52.511300110272174],[5.894440469874079,52.51122212393814],[5.895280178486237,52.51061128313568],[5.895528681173723,52.51042088851127],[5.896153962271304,52.50990061911898],[5.896464573404898,52.50963614193376],[5.896784493174802,52.5093719294826],[5.897247506097468,52.50896975445347],[5.89744899146095,52.50882420759001],[5.897941699075047,52.50849052124903],[5.898425346708616,52.5081662637682],[5.898553842438218,52.50807686870805],[5.898745832244693,52.50794645048007],[5.898962746624512,52.50784684124158],[5.899117647765896,52.50770008147012],[5.899423985580366,52.507482736019135],[5.899730451178511,52.50725001165569],[5.900078933966139,52.50699051085634],[5.900289438221888,52.50683553712871],[5.900465226177733,52.506670548461834],[5.900846309248478,52.50631856701804],[5.90094304290738,52.50622947763751],[5.901079828818967,52.50610158648582],[5.901258647741566,52.50594948047828],[5.902691068269016,52.50474891753838],[5.902906672128233,52.50456820370649],[5.903101285920118,52.50440508838592],[5.903525040601881,52.50399898754545],[5.903835586605019,52.50370476916307],[5.904715728008883,52.502862453796986],[5.904883046998839,52.50269639882821],[5.904901230401665,52.50267836246573],[5.905361888558383,52.50223333968121],[5.905574817538215,52.50201742856829],[5.906112149505743,52.50148738751947],[5.90684730203172,52.50079752457787],[5.907477216529216,52.5001408331546],[5.908386127883992,52.49918386265948],[5.908685337594441,52.49887179579537],[5.909119310250601,52.49843445161805],[5.909559928272567,52.497954583665475],[5.910003008334763,52.49740236283965],[5.910090564352162,52.497385835212185],[5.910171089795289,52.49734266366174],[5.91021720331254,52.49730468583869],[5.91024022978413,52.49724708230476],[5.910228829576566,52.497194654642264],[5.910220045841458,52.497143069247954],[5.911310005356268,52.49577915871022],[5.911500251958649,52.49554303398209],[5.911781859887094,52.49519353193114],[5.913787112932063,52.49272895259723],[5.914346696863555,52.49204415267044],[5.914359470279408,52.492026282644524],[5.914408203840859,52.491958156372284],[5.915258601246212,52.490867476855485],[5.916574937065633,52.489085090642014],[5.91708478824702,52.4883513553197],[5.91756982095804,52.48762303130343],[5.918106224906948,52.48680209241647],[5.918302929862572,52.48652524965373],[5.918532379768129,52.48620232458168],[5.918878938231178,52.48569081903373],[5.919370703507171,52.48491396917569],[5.919848950336069,52.48414272493336],[5.920037910503088,52.483837988728396],[5.920645907614229,52.48285744672866],[5.920767628272039,52.48269953633251],[5.920787133656876,52.48266662609196],[5.920793842238439,52.482655307562545],[5.92193220524457,52.48068615138151],[5.922371327102741,52.4798887641576],[5.922733564958942,52.479172646256835],[5.922936165083335,52.47878258849543],[5.923175056963365,52.47835343224286],[5.923379615263359,52.4779895185051],[5.923620479330759,52.477586515052444],[5.923664487854004,52.47751357974148],[5.923721972792813,52.47741830330759],[5.923885967937203,52.477096552986865],[5.923922115013386,52.47690965522796],[5.923979701502783,52.476690763583015],[5.924025933199382,52.476579225557565],[5.924089744416031,52.4764535873213],[5.924895974829171,52.475114419948454],[5.925137345596715,52.474702252462386],[5.925171922208412,52.4746130379568],[5.925284396988377,52.474424229355016],[5.925420811486658,52.47422043754055],[5.925559519113703,52.47405759138362],[5.925615825909931,52.474076524021505],[5.926053972022713,52.47422390585253],[5.926275506926659,52.47429842979471],[5.926887532353794,52.474504308417536],[5.927304922368765,52.4746447069493],[5.927382618538354,52.47466983256103],[5.928263172248385,52.47495464887108],[5.929015468586623,52.47518811499389],[5.929349783592632,52.47533795451074],[5.929657645667254,52.47547652693723],[5.929687576866836,52.47548918821207],[5.929690965005013,52.47549061969947],[5.929757367155879,52.47551871640325],[5.929966136752668,52.4755882588765],[5.930438260645702,52.47572302120292],[5.93070757415852,52.4758024407972],[5.931795138902111,52.47615218718689],[5.932191411242272,52.47627962466391],[5.932790923055377,52.476478439263744],[5.933050812919547,52.47659260682688],[5.933053149156966,52.47659346785991],[5.933287532314746,52.47668024149179],[5.933316627826497,52.47668944549848],[5.933705022572892,52.476812330578646],[5.934340578279645,52.477018062344776],[5.934351839358818,52.477021704243406],[5.934352607826225,52.477021952347314],[5.934631328573893,52.477112176583354],[5.935242673823486,52.47730674496019],[5.935409779657441,52.47739203693535],[5.935539255800568,52.47733672185512],[5.935582873314647,52.47731809559797],[5.935635685649991,52.477295535173646],[5.935799210243831,52.4771693572385],[5.935828763069281,52.47714656285084],[5.935937952876533,52.477035366787256],[5.936028550589369,52.476921695256536],[5.936119577511508,52.47679640076667],[5.936198375270802,52.47668792462011],[5.936297739765194,52.47656442482561],[5.936333424393826,52.476554229404606],[5.93633668043136,52.47655329758983],[5.936490462766083,52.476509345935476],[5.936622536385815,52.476479766935554],[5.936737429868688,52.476477176159605],[5.93675506738288,52.47647988052491],[5.936765552641079,52.47648149460618],[5.936879960830457,52.47649905602437],[5.937198983094081,52.47662467802409],[5.937546978611953,52.476797924473196],[5.937565229765206,52.476809703292275],[5.937661812514039,52.47687202382488],[5.937767532241241,52.47695175565535],[5.93777157379207,52.47695480163606],[5.937983898436222,52.47712260133718],[5.938260447835991,52.47732606126276],[5.938406392974884,52.47740424838441],[5.938464373768597,52.477445671971005],[5.93866586653203,52.47758960496359],[5.938807492755872,52.477690756892706],[5.939124787516922,52.477893782514464],[5.939434207921932,52.478073062926455],[5.939624559758932,52.47817426547384],[5.939782862237379,52.47824793548824],[5.939946011181494,52.478320683937],[5.939968896959521,52.47833102074152],[5.940673060186106,52.47864894074829],[5.940678122955587,52.478651226907665],[5.941041053570087,52.47881344655179],[5.94124786463064,52.47891077684894],[5.941527874564096,52.47904653676462],[5.941678139751921,52.479129067611495],[5.941979293713388,52.479289730906515],[5.942178798596567,52.47940037737129],[5.942179450976643,52.479400751793754],[5.942451391623794,52.479556904104136],[5.942580321457354,52.47962813754105],[5.942677397070682,52.47968176971483],[5.943139798479668,52.47995795518524],[5.943971006275182,52.48045144258388],[5.943971911407439,52.48045201353529],[5.944547660512646,52.48081333034536],[5.94473709319482,52.48093081445363],[5.944979954936562,52.481128179805],[5.945002472831566,52.48114648033535],[5.945720153303373,52.481628284566774],[5.945782204103353,52.481670449341905],[5.945853213739921,52.48173308143782],[5.94589384422893,52.481820500520286],[5.945936150340567,52.48188558663233],[5.945982031594398,52.4819458475404],[5.946040295918247,52.48198886587027],[5.94620635451325,52.4820918800276],[5.946207051922962,52.4820923171284],[5.946312510295196,52.482156161584626],[5.946320105496247,52.48216075434509],[5.946794901619246,52.48243421578443],[5.947012901482876,52.48253623763732],[5.9474500135642,52.48273605074168],[5.9477650448165,52.482855605646115],[5.947835911501762,52.4828671520382],[5.947937743094575,52.482858320960084],[5.948182744519672,52.48295556638029],[5.948401086988897,52.48305281168203],[5.948855810601091,52.4832671679609],[5.949176752602192,52.483431853521296],[5.949525443065856,52.483590465824165],[5.949707661961921,52.48368512989034],[5.949784064215008,52.48373124190486],[5.94988974750158,52.48380856343257],[5.950013339017834,52.48383555049593],[5.950119370989005,52.48384890582655],[5.950231859292653,52.48387215264447],[5.950240272683775,52.48387389221746],[5.950441057348138,52.48391537756553],[5.950459197846081,52.48391912905306],[5.950717390242853,52.48398896647046],[5.951012281447595,52.48407243365321],[5.951146947699358,52.48410424710018],[5.95125684725681,52.48412065675643],[5.95145157629036,52.48413276197275],[5.952164828325428,52.48417026716612],[5.952259430621272,52.48417845329614],[5.952394839092202,52.48420489622812],[5.952526831915205,52.48425431846735],[5.952626733355312,52.48431535274942],[5.95264746045688,52.48433138652433],[5.952761215020205,52.48439470036295],[5.952881580089596,52.48443847958017],[5.952985441524519,52.48444769945414],[5.953123195188337,52.48443531316556],[5.95329164880995,52.48440496680717],[5.953399271258066,52.48436188781879],[5.953782181321143,52.48414154416998],[5.954644425193838,52.484141805861675],[5.954659691530207,52.484141813672096],[5.955546994760351,52.4841423263183],[5.95642361529031,52.48414551697239],[5.956540639900449,52.4841354731275],[5.95657345780162,52.4841300398168],[5.956588370514988,52.484127739278044],[5.956870109311891,52.48408419816225],[5.957049540105717,52.48405946483984],[5.957191131872703,52.484052636632924],[5.958155522698194,52.48407991943954],[5.958301047254483,52.484063013899586],[5.958405653175189,52.48402275797969],[5.958413138680185,52.484019881845526],[5.958569640351988,52.48388876324839],[5.958697107376592,52.48383821398529],[5.959060785819536,52.48344807221298],[5.959324240636437,52.48315946903583],[5.959460821508617,52.48297399878159],[5.959493877882355,52.482907511076036],[5.959527364238265,52.482840131516525],[5.959581371795035,52.482675030083406],[5.959626798277136,52.48243960651609],[5.959659651776575,52.482359782207375],[5.959670869151894,52.48233251372933],[5.959752983703043,52.48217809746761],[5.959760758318589,52.48216348210642],[5.959771004554482,52.48214420824186],[5.959791626567558,52.48210543519528],[5.960451853852146,52.48142775531753],[5.961290133943249,52.48055973374525],[5.96153890122239,52.48030213166123],[5.961918680872215,52.479915938036086],[5.96421643252256,52.4775393208328],[5.964429071425348,52.47732207167034],[5.964786147333326,52.47695725256608],[5.965257668526071,52.47646271393255],[5.965270005267549,52.47645388190155],[5.965283619700227,52.47644820726146],[5.965302422853457,52.47644424191357],[5.965326731168968,52.47644479742059],[5.965360823598285,52.47645629699322],[5.965487124762638,52.47654834267754],[5.96623015036999,52.47712760392703],[5.966305771099915,52.47717989264504],[5.966324873123787,52.477193100915684],[5.966365186403055,52.477220972114964],[5.966424015075128,52.477259960318854],[5.966500780639021,52.477311964703546],[5.966763647306883,52.477490044564085],[5.966768683162252,52.47749355205461],[5.968950482389161,52.479012763431385],[5.96945999228087,52.479367796059144],[5.970042974638074,52.47977834993045],[5.970342615825673,52.479984614773755],[5.970540256790138,52.48013129001229],[5.970544389439083,52.48013435240912],[5.970578194445621,52.48015944109731],[5.970578818587461,52.48015988740378],[5.970691342261005,52.48024032050336],[5.970477313839856,52.480396759826775],[5.970477432543698,52.480396831143175],[5.972928941967772,52.48197181175111],[5.975485414092687,52.48371047754658],[5.977747527362433,52.48525286464593],[5.977771388327679,52.485269139086384],[5.97779368582963,52.485284091152394],[5.978410371975412,52.4856976535251],[5.978416774615203,52.48570194460992],[5.978414534439757,52.4857160662483],[5.978443793992132,52.48575067521125],[5.979141925729995,52.48623707615292],[5.980707197762056,52.48732757457999],[5.982216396221002,52.48838764129796],[5.982504081702525,52.48857763200083],[5.983369385976624,52.48910141056571],[5.985692029326917,52.49047585876644],[5.986613318830375,52.49102593423581],[5.98675826671932,52.4911316139495],[5.986764422217617,52.491134935178195],[5.987012185930365,52.49126864804564],[5.989518926104235,52.492658573115506],[5.990597545637652,52.493256602767296],[5.990906701893162,52.49342884824961],[5.991555914192864,52.4937905522391],[5.991722490124143,52.4938988029273],[5.99232454993127,52.494335591451275],[5.99296736958959,52.49482417064838],[5.993149574231293,52.49497198356958],[5.993393531724661,52.49515261760271],[5.993407351997858,52.49516285566366],[5.99443470202108,52.49588357696228],[5.994807097676,52.49614922854808],[5.994924731698109,52.49623314458791],[5.995188881099225,52.496420448045995],[5.997529581678759,52.49799405091241],[5.997969899926272,52.49829362144413],[5.998055689915907,52.49834752720859],[5.998757878362234,52.49882454371642],[5.998921363791788,52.498935604359154],[6.000595211368899,52.500078738330075],[6.000702330640635,52.50009751636674],[6.000702935898673,52.50009762108576],[6.000731938694204,52.50011497876425],[6.000788474381065,52.50014882991428],[6.000788977682686,52.50014901604833],[6.00079884219794,52.500156253902595],[6.000825906141283,52.500176093166154],[6.000893917909528,52.50021974421537],[6.001147895305171,52.500392158745534],[6.001310381662555,52.50050147768852],[6.001412501713635,52.50057473651555],[6.001553592435973,52.500668284956866],[6.001569066019077,52.50067854046413],[6.001736273132121,52.50079040480332],[6.00177480469348,52.50081618809879],[6.00177536903731,52.500816526700575],[6.001812528393329,52.50083894676631],[6.001846227402911,52.50086140273218],[6.001944188151429,52.50092668374623],[6.002021486667269,52.50097819504402],[6.002198791669946,52.501091651095535],[6.002462503036353,52.501256939131636],[6.003228038072979,52.501733807225236],[6.00338960568531,52.501834607904854],[6.0034251048163,52.50185613733919],[6.003471328847551,52.50188528638809],[6.003629049868881,52.50198475860151],[6.003678427547965,52.50201613806192],[6.003686555575134,52.50202129959364],[6.003760540368557,52.50206830625282],[6.003856173520347,52.50213103634254],[6.003965271069041,52.50220558684557],[6.004210778137264,52.502370911759826],[6.00436008115237,52.50247164012213],[6.004457758490315,52.50253930223758],[6.004606810902238,52.50263993273116],[6.004765669596249,52.50274665944754],[6.004871788755128,52.502819696746535],[6.004939609907369,52.50286704035291],[6.005105595689479,52.50294830372652],[6.005330881337466,52.50305726295831],[6.005598266245309,52.50318345603657],[6.00588892365171,52.50332336791237],[6.006204959350248,52.50347483940011],[6.006969235825024,52.50383855478043],[6.007126574631823,52.503912886194236],[6.007121484499491,52.50402660522139],[6.007198912569166,52.50405295634212],[6.007231534526085,52.50406861284218],[6.007262614280645,52.50408352244375],[6.007396498804564,52.50415097484144],[6.007610029811739,52.504260036172134],[6.007756253268535,52.50432926605618],[6.007856397632129,52.50437687923665],[6.008001707017064,52.50444389368022],[6.008086532471935,52.50448194322833],[6.00815603856514,52.50450728366156],[6.008372442328964,52.504593104771565],[6.008577263916338,52.50467114005359],[6.008658285405845,52.504693139400466],[6.008756426892984,52.50472285014766],[6.00884639870796,52.5047560189071],[6.008849345019589,52.50475710892977],[6.008853001914994,52.50475845586609],[6.008912415704039,52.50478036159679],[6.009146483836488,52.504861100603236],[6.009478023274795,52.504977161044586],[6.009611113912663,52.50502442909678],[6.009723135053439,52.505070090986216],[6.009931789601833,52.50514387068411],[6.010084547773651,52.5051987192747],[6.010109003052486,52.50522522989575],[6.010296484595347,52.50521067376179],[6.010352166218532,52.505227897899154],[6.010421531621287,52.505249355130566],[6.010456808517199,52.50526096138741],[6.010554014260192,52.50529933057434],[6.010957922152194,52.50545392252735],[6.011174732480236,52.505537570407704],[6.011236395450576,52.505560056321876],[6.011381804505084,52.50561264110971],[6.011519574776433,52.505662461822084],[6.011587407062621,52.50566290458285],[6.01166730380546,52.505685330218355],[6.01204183936634,52.505788179088704],[6.01209087070242,52.50580164470997],[6.012365626951009,52.505907049483945],[6.01236751894762,52.50593977214111],[6.012397318990511,52.50594106203357],[6.012539981705497,52.50594722125117],[6.012561027477687,52.50594813485067],[6.012561764120998,52.50594814894116],[6.012694969874231,52.505951113339215],[6.012744264035033,52.5059519138568],[6.012800620866892,52.5059511671885],[6.012820721988563,52.50595089936967],[6.012877145834741,52.5059496849592],[6.012879441457484,52.50594953803424],[6.013054082926265,52.50593819093656],[6.013368596824592,52.50591904090215],[6.013613650257125,52.505904121604765],[6.013780260435423,52.50587901997937],[6.013907475589265,52.50585944694408],[6.014086751829391,52.50583120420904],[6.014228889292067,52.505807642362],[6.014317730683692,52.50579291833867],[6.014450909166989,52.505776359960656],[6.014542671719947,52.50577442756861],[6.014626397532716,52.50578840963097],[6.014674624567058,52.505803262524495],[6.014729715353032,52.50581915758334],[6.014820657882322,52.505857969857054],[6.015052390185132,52.505957646370234],[6.015072855878362,52.50596644467232],[6.015080448221851,52.505962791480975],[6.015117824899277,52.505944816216136],[6.015122140452622,52.50594274420525],[6.015159475566793,52.505925991453275],[6.015163121179983,52.50592445325352],[6.015174570294372,52.50591961125236],[6.015185799895811,52.50591486927549],[6.015197420370089,52.50590964888776],[6.015206640572218,52.505905501740266],[6.015272670928941,52.505873461961755],[6.015317479869286,52.505859231026335],[6.015416491772933,52.505825389725686],[6.015633306064994,52.50576163371965],[6.015900837725401,52.5056807657828],[6.016017183676881,52.50565513657023],[6.016373929180618,52.505569318667185],[6.016862000954558,52.50544469525698],[6.017554764252944,52.50527743252267],[6.01766537439129,52.505259750202406],[6.018034115494765,52.50516658358556],[6.018191757882609,52.505129614942305],[6.01867141063835,52.505017413677436],[6.018912017903856,52.50496191031926],[6.018995646395306,52.50494130572612],[6.019118133410672,52.50490765080384],[6.019140948816156,52.504902568096455],[6.019173394209057,52.504890109211495],[6.01926426457235,52.50485685630098],[6.019337619320298,52.504827489436444],[6.019508699699708,52.504852785048506],[6.019939459722761,52.50491411030643],[6.020521951781054,52.504996805039994],[6.020544414378958,52.504999992493424],[6.020901616938357,52.5050516769888],[6.021201929806515,52.50509455119691],[6.021540023452856,52.50514366663196],[6.021937341518914,52.50520096634614],[6.022196720191215,52.50523732545822],[6.022298641818058,52.50525161810541],[6.02258313392353,52.50529312655654],[6.022661293509875,52.50530400511026],[6.022673085385335,52.505305649556774],[6.022714925001328,52.50531147396663],[6.022739320327952,52.505314866349075],[6.022759716216057,52.505317704957875],[6.022851473743834,52.50533188084085],[6.022925751080055,52.50536670489386],[6.022988002616504,52.50540920583191],[6.02302264965832,52.50542695023889],[6.023064891474793,52.505448419697295],[6.023070212998144,52.5054517974455],[6.023085656930752,52.50546157397835],[6.023170310810126,52.50551632156568],[6.023328439337668,52.50561656542369],[6.023462384669195,52.50570050957944],[6.023537722705687,52.50573118429818],[6.02396346665317,52.50591452791623],[6.024239101010857,52.506032824677604],[6.024289761784813,52.50605583927256],[6.024536054795902,52.50616576378538],[6.025002749284793,52.50637326682697],[6.025085612365003,52.50641082050944],[6.025108661351168,52.506420879424326],[6.02512434903033,52.506428101916825],[6.025145028139296,52.50643826344833],[6.025160053853599,52.506445543422416],[6.025188741559018,52.506465620070564],[6.025216375535503,52.5064831049785],[6.025249383272573,52.50650552209607],[6.025329232028397,52.50656072540296],[6.02534655888549,52.50657333157666],[6.02536576431257,52.50659056521532],[6.025463102950866,52.506674722079204],[6.025642584612977,52.50683107405618],[6.02580245384257,52.50696948437148],[6.02582060456713,52.5069860765121],[6.025837764883357,52.50700242233211],[6.025882967572729,52.507051205987764],[6.026009347930726,52.507186839471494],[6.02644166103527,52.507647251984466],[6.026643405412874,52.50786150606039],[6.026776243846427,52.50800336822073],[6.026839667609599,52.50807238307771],[6.026869751688048,52.50810636451426],[6.026919939168977,52.50816456679876],[6.026976350057565,52.50823039288054],[6.027013222025971,52.50829163284883],[6.027094742865104,52.50842219553255],[6.027242729219832,52.50865466878597],[6.027323104556352,52.508780294337825],[6.027384373400228,52.50887731674389],[6.027397504558815,52.50889810595985],[6.02744366756686,52.50897121312337],[6.027464291780419,52.509003879368564],[6.02754287355906,52.509127627064316],[6.027555156853119,52.509146821056646],[6.027636331945857,52.50927363741479],[6.027780242459118,52.509488759055984],[6.027857570858751,52.50960620404827],[6.028203008369366,52.50948862280787],[6.028581105720537,52.50935111828318],[6.029052023896885,52.50919096489779],[6.029555864473517,52.50903921441843],[6.030342077026273,52.508841199765534],[6.03090542007454,52.5087037579371],[6.031004162156878,52.508679666470364],[6.031471665746619,52.508565603808044],[6.032036951159474,52.50843052232764],[6.032446419283851,52.508329486035],[6.033735160986004,52.50807374563574],[6.035028853016384,52.50777492271369],[6.035290385966683,52.50771241432926],[6.036651334610037,52.50738712414435],[6.038113956661308,52.50697107006264],[6.038540317075773,52.506852762623915],[6.039191056313403,52.50666142761349],[6.039800628342376,52.50647649000856],[6.040509189203365,52.50625771402187],[6.041846362062521,52.50579371778323],[6.042409246041355,52.50559558795881],[6.04310417236484,52.50531643924896],[6.043887273129314,52.504976087148584],[6.044411204283842,52.504730061935895],[6.044970497166913,52.50446358025067],[6.045180214255061,52.50435676791709],[6.045308353243092,52.50429365615615],[6.046184744817377,52.50386202338138],[6.046191629333061,52.50385850693284],[6.047545716564578,52.503166381836586],[6.048763433754647,52.50253174945096],[6.049573446932783,52.50213996191474],[6.049933599463314,52.501963482742326],[6.05066459759003,52.50160527540042],[6.0512426332337,52.501322013783245],[6.052702417207508,52.50058747156025],[6.053145310479581,52.500368968472735],[6.053468746848434,52.50019719634654],[6.054411441514224,52.49968276694325],[6.054666044186772,52.49954668202774],[6.055019906207128,52.49931532636016],[6.055535920347277,52.49897794591288],[6.055814798115259,52.49877366761698],[6.055990597334785,52.4986371073821],[6.056259999684403,52.498427830423445],[6.05689483364224,52.497795088201975],[6.05741870381314,52.49719534300061],[6.057585532026001,52.49699141505997],[6.057589609227828,52.496986439842885],[6.057694373572767,52.49685865501663],[6.057700850564844,52.496850736268954],[6.058314532971426,52.496100296225926],[6.058397625942091,52.496003137305046],[6.058937964320143,52.495259283446316],[6.059194262416083,52.49489942359707],[6.059271565429528,52.494797506444506],[6.059279880421886,52.49478654836472],[6.05974289399244,52.49410723737488],[6.060012992457667,52.49370494774009],[6.060584935874448,52.49262606415525],[6.0606684869388,52.492474714636735],[6.061114085628243,52.49155347834199],[6.061571285857116,52.49071248742142],[6.061791213548444,52.49037195391781],[6.061820800766919,52.49032614647071],[6.061945621954773,52.490093393968905],[6.062136848856917,52.48981847988504],[6.0623224771975,52.48954733619497],[6.062556661226008,52.48920686375743],[6.062783079693859,52.488899904951474],[6.062971164572285,52.48864837511686],[6.063081494240504,52.48850171538851],[6.063200170936129,52.48834445649293],[6.063255444461396,52.488274424364015],[6.063315685954826,52.48819808153078],[6.063423270825623,52.4880617369248],[6.063557284254002,52.48790145121639],[6.063697169620101,52.48772568212347],[6.06376074753729,52.48764714500671],[6.0638110484338,52.48758708128562],[6.063945313359001,52.487436671069666],[6.063949763887134,52.48743214286706],[6.064402435834659,52.48697242963149],[6.064491208893624,52.48688571324484],[6.064575966258869,52.48679829173577],[6.064657624551419,52.48671713426968],[6.064739998835128,52.486637563461855],[6.064899178939198,52.48648017912224],[6.064965136573721,52.48641210728733],[6.065070559084507,52.486310079215436],[6.065180111318073,52.48620952836167],[6.065377680883991,52.48602507777071],[6.065567227196825,52.48584842906668],[6.065649906073709,52.485773565370984],[6.065792437163389,52.48564450518571],[6.066061501100318,52.485415595799815],[6.06623596860521,52.4852716394349],[6.066371259676632,52.485170778229346],[6.066671938776939,52.48494750127882],[6.067208995907881,52.4845553474968],[6.067437425680651,52.48438935666451],[6.067583641411551,52.484292745409725],[6.067905136431581,52.48407308462421],[6.068141486317519,52.48391028246679],[6.068423030366337,52.48372652161647],[6.068688234451192,52.48357255813681],[6.068942663380313,52.4834235452896],[6.069097040744126,52.48333441682156],[6.069293408138009,52.4832198811829],[6.069476214229089,52.48311284704758],[6.069659102466217,52.48300737599962],[6.069757075114849,52.48295606776268],[6.07002678173853,52.48281685097181],[6.070191359459498,52.482732668407536],[6.070551869210848,52.48255383999054],[6.070739418351335,52.482457831318946],[6.071041112742749,52.48230466766255],[6.071425414910918,52.48210748135352],[6.071730884930539,52.48196363227347],[6.072130279940988,52.48178798074316],[6.072713058809375,52.481538926017976],[6.073114072987759,52.48137703981409],[6.073476878385069,52.481234696868945],[6.073716630607863,52.481140628093335],[6.074217510325977,52.48095179896903],[6.074655296583337,52.4807906111075],[6.075104941761251,52.48063398142958],[6.075511611180393,52.480501695445426],[6.076044325424334,52.48033705714346],[6.076421352672763,52.48022335593844],[6.076845956464168,52.48009848371798],[6.077274760045567,52.47998159350741],[6.077638031818537,52.479885755026636],[6.078084313135238,52.4797666120182],[6.07822997932374,52.47973427023485],[6.078660138154852,52.479635773776934],[6.078864640625491,52.479588420154506],[6.079037710451714,52.47954923066337],[6.079056823084954,52.47954490390763],[6.079262573449039,52.47950021164269],[6.079791856125738,52.4793887653016],[6.080393680754232,52.47927007077114],[6.082009285622598,52.47893135844783],[6.083266806987925,52.47865067535861],[6.083876008894272,52.47851469040076],[6.084391665234993,52.47838258694604],[6.085986651301353,52.47799591133334],[6.0868107063225,52.47771911104458],[6.087814031989867,52.477386456746366],[6.088155310291469,52.47725423488529],[6.088688037653079,52.47704388190942],[6.08893414206307,52.476945430380724],[6.089106720258282,52.476876488828104],[6.089267611008112,52.476811265235426],[6.089339192066806,52.47677706561561],[6.089617957480766,52.476646324235844],[6.089704041362088,52.476605953802505],[6.089934308870495,52.47649396872911],[6.090235895700271,52.476350921277586],[6.090304917677883,52.47631786868878],[6.090376071158739,52.47628187343609],[6.090455552533417,52.47624106526954],[6.090525890535973,52.476201938068755],[6.090835341664328,52.476038143811856],[6.091218279390795,52.47582889307227],[6.091578992800404,52.47564210749093],[6.091886975640183,52.47547810345792],[6.091997962714611,52.47541855638569],[6.092070808033749,52.47537714844952],[6.092308115555133,52.475240382758564],[6.092989800043935,52.474853298224716],[6.093587458679853,52.47450391942665],[6.094171283836064,52.47415984189702],[6.094246493607756,52.47411100366395],[6.094532013377029,52.47392050512816],[6.094878248048688,52.47368984599036],[6.095293882341801,52.47341093884205],[6.095411489160783,52.47332147393198],[6.095596783639362,52.473186072821676],[6.095782074166064,52.47304774145467],[6.09597584234488,52.47290673469335],[6.096098546018947,52.47281679820605],[6.09635981547946,52.47263953522608],[6.096737796701881,52.47237984809688],[6.097142886960371,52.47208005611644],[6.097491687748169,52.47181482512958],[6.097901211233439,52.4714902428536],[6.098270990212675,52.471182947192496],[6.098651672968661,52.47081916920895],[6.098924320844541,52.470548333249134],[6.099146625064896,52.4703108197956],[6.099303924654559,52.4701547923472],[6.099483438253412,52.46997089519055],[6.09976174771311,52.46967303316977],[6.099900331867058,52.46951846555982],[6.100175234478587,52.46920042767118],[6.100390251067523,52.46893164249842],[6.100529603945891,52.46874564852895],[6.100637348858581,52.46857268805917],[6.100699982325445,52.46846235564455],[6.100971088507854,52.468009298615584],[6.101205228042294,52.46758941247993],[6.101207759402338,52.467584867434105],[6.101359100395498,52.46727147156694],[6.101515731261608,52.46690034261387],[6.101631639125388,52.46658192905224],[6.101701308348659,52.466347280798615],[6.101776956269728,52.46597636997083],[6.101827536326038,52.46568155623577],[6.101840965194596,52.465581019800744],[6.101871935065201,52.46528113836625],[6.101902547870472,52.46485451456975],[6.10190987696306,52.46469436355284],[6.101934170222972,52.4641636014041],[6.101962582172997,52.46333969853147],[6.101992483864056,52.46278002490357],[6.102046311013517,52.46214120498627],[6.102081234717024,52.46186494605218],[6.102175488387837,52.46111932385205],[6.102261210085512,52.460650610180004],[6.102440813577937,52.459834125735],[6.102573131515925,52.45932654620996],[6.102630766753504,52.45913664751463],[6.102690231039872,52.45894069799818],[6.102796923664359,52.45863651188339],[6.102811902684883,52.458592022146675],[6.102912416649946,52.458293445590044],[6.103101734118376,52.45760936185337],[6.103162060382147,52.45736149378954],[6.103278924077628,52.45680998469759],[6.10335076015109,52.456431707113296],[6.103427942472905,52.45570321779961],[6.103449241215493,52.45553034517627],[6.103498424926888,52.45503446522395],[6.10352366523297,52.45468353105096],[6.10353976454668,52.45437500223151],[6.10354600486454,52.45396372248223],[6.103558704755855,52.45308205830006],[6.103488431196173,52.45233830884363],[6.103439018769055,52.45181521654301],[6.10342309018081,52.451720950729005],[6.103413620700058,52.45166489761642],[6.103359286165653,52.45142552346695],[6.103300767465119,52.451208437161874],[6.103232844820317,52.45097744971508],[6.103160422562476,52.450749257629376],[6.102973783917279,52.450255359368505],[6.102768655791412,52.44975037373903],[6.102698783734231,52.44960498782438],[6.102607569643811,52.4494151605973],[6.102365949387119,52.448914430040894],[6.102151219647221,52.44837883508221],[6.10206944066376,52.44813811588615],[6.101986014357768,52.447799952620166],[6.101940019171953,52.4473767642471],[6.101920870354466,52.44705377087156],[6.101934565632077,52.44691727248251],[6.10195769464845,52.446797479293906],[6.10209661327854,52.44635995424184],[6.10229471187076,52.445771904753656],[6.102409716998395,52.44554329961332],[6.102544442809983,52.44526450460828],[6.102704505073215,52.44499540697231],[6.102862358733224,52.44473810535918],[6.103083333023734,52.44441950324611],[6.103337924044617,52.444065249851626],[6.103477025584397,52.44391108712665],[6.103861459407881,52.44353079190419],[6.104374160814199,52.443073682690674],[6.105023722142727,52.442586576781004],[6.10618605580647,52.44189592064954],[6.106790100885108,52.44161566432685],[6.107262947882516,52.441404104803986],[6.107852554232975,52.441186314687464],[6.108005824546169,52.44112969415014],[6.109040299744708,52.44075105104237],[6.109468765684126,52.440576171366786],[6.109580092951906,52.44053073358249],[6.109909325293428,52.440396362958666],[6.110534442517983,52.44015727540831],[6.111043692591731,52.439931763003116],[6.111832999211444,52.43951661071685],[6.112539177085933,52.43909749517375],[6.11315603789838,52.43871212347634],[6.114106757969463,52.438006470803565],[6.114669965644905,52.43755905416563],[6.115495283164489,52.43676853360391],[6.116306556529508,52.43598602967181],[6.117033444510896,52.43524594084002],[6.117733024515213,52.43455450475132],[6.118066500212187,52.434261873135455],[6.118250920481871,52.434100051786245],[6.118494346248813,52.43386855219471],[6.118706384558311,52.4336625734537],[6.119472204267512,52.432917923385006],[6.119362462327587,52.43285477958612],[6.119776015275641,52.432462953218284],[6.120389298365172,52.431909142861954],[6.120895572857355,52.43151818549153],[6.121556412155337,52.43100784476213],[6.121934713495468,52.43071880661595],[6.12208888917778,52.430606617411094],[6.122279790698824,52.430457907433386],[6.122741280337727,52.43007176765377],[6.123034114461023,52.4298441218397],[6.123505897927447,52.42949418971567],[6.124144250440248,52.42896947656129],[6.124756186607287,52.428406285851715],[6.124958580300766,52.42821423264269],[6.124920543337223,52.42820012505345],[6.125042551560342,52.42808644251978],[6.125410438788053,52.427713601706856],[6.125580855042138,52.42754843142328],[6.125706509304681,52.42743670275859],[6.125792866192316,52.42737367218455],[6.125875163137041,52.42732111067647],[6.126137258324288,52.42718208846023],[6.126578327402292,52.426960258509666],[6.126891537760264,52.42679737646977],[6.126943003687268,52.42676345868047],[6.12701532910727,52.42671701641213],[6.127099059640281,52.42664219130965],[6.127630376769376,52.426197076066614],[6.127895729153876,52.42598193885625],[6.128274807361571,52.425503708830725],[6.128424399950889,52.425277026292555],[6.12858143103715,52.42503020027515],[6.128829919696018,52.4246691866436],[6.129275411948101,52.423867228230066],[6.129315938355772,52.4237940742665],[6.129346303145441,52.42373926514548],[6.12989411112355,52.422750453722024],[6.13009999985582,52.42247693090325],[6.130392795245513,52.42255867147721],[6.130437174940794,52.42247090571389],[6.130487673265358,52.422371066863946],[6.130789571421509,52.42175370498318],[6.13114625919869,52.4210493466266],[6.131878262321216,52.419540528717825],[6.131999045761663,52.41928486591044],[6.132030092955196,52.41921848441907],[6.132069585066948,52.41915252615631],[6.132465660720047,52.418499910001906],[6.132762131489812,52.41803218763801],[6.133648157029678,52.41670412121445],[6.133783046240391,52.41647882715237],[6.134032491136382,52.4160700342751],[6.134342494950362,52.415461985294115],[6.134848188315281,52.414283726053654],[6.134856304566054,52.414284405519915],[6.134928574562628,52.4139995430732],[6.135148650043895,52.413220870141394],[6.135142605215092,52.412142369386494],[6.134923422510633,52.411307324060466],[6.134807291275024,52.41101230209323],[6.134682914158896,52.410718454634086],[6.134549837572957,52.410426066738545],[6.134408749430214,52.41013513403735],[6.134259189889818,52.40984565850515],[6.134101396019512,52.40955791903567],[6.133935594299066,52.40927191596618],[6.132814939030865,52.40732047403765],[6.132490804138358,52.40673971041434],[6.132183152148921,52.406155470826],[6.131892211742175,52.40556775575651],[6.131618225686167,52.404977405060244],[6.131500310030284,52.40471047694184],[6.131163852747511,52.403530691010715],[6.131020479557209,52.40217133900823],[6.130922394301311,52.4013209189961],[6.130745731828421,52.400466778793],[6.130738690391474,52.40041600215485],[6.13055294937323,52.399978160905555],[6.130529895910434,52.399909578305355],[6.130308514237167,52.399250952006774],[6.130066830204566,52.39877142131538],[6.129849464755612,52.39839156556658],[6.12977739902342,52.39826563052175],[6.129582891351475,52.397981639068945],[6.129141356829386,52.397536506681675],[6.128596144213026,52.39701501410746],[6.128106667398782,52.3965256522957],[6.127683778111905,52.39609372675426],[6.127135145501907,52.39552810951629],[6.126731177184777,52.39511161128079],[6.126278851001824,52.39463967094],[6.126130193662627,52.3944403856064],[6.125976042658141,52.39422170263576],[6.125705372901551,52.39373510854276],[6.125460878566696,52.39323463510614],[6.12532705804251,52.39295273874084],[6.12520852540737,52.39262717379492],[6.125157105102302,52.39240398443256],[6.125120887166178,52.39191243081293],[6.125118885849057,52.391417383274565],[6.125162775157962,52.39104649545421],[6.125171996873784,52.39096863009643],[6.12517510110525,52.390942438107416],[6.125283429788322,52.39042028727006],[6.125550092407658,52.389259163573854],[6.125790135372768,52.388296180669485],[6.125909584130905,52.387823302892976],[6.126042158069179,52.387345732238614],[6.12613257082972,52.38686730110576],[6.126173988143114,52.38654625666415],[6.126189207611327,52.38642830377172],[6.126200035483388,52.38590608611929],[6.126199184939984,52.38550539436948],[6.126139969003976,52.3850725938145],[6.126005551856875,52.38452107450247],[6.125830054005724,52.38405853960837],[6.125578144740754,52.38359562729307],[6.125280979145727,52.383089944749024],[6.124918161484039,52.382601702678635],[6.124574674015067,52.38218807320595],[6.124444134999652,52.38206311013554],[6.124129984784981,52.38176238202141],[6.12407767146225,52.38171229476104],[6.123903074172766,52.38155122248644],[6.123522275881586,52.381199910408036],[6.122916836183806,52.38068826596787],[6.12262857282238,52.38048504416441],[6.122215604199463,52.38020574988205],[6.121542750346712,52.37988735190544],[6.121328001053841,52.37978572809032],[6.120853358014751,52.37954169356289],[6.120779974050471,52.379503958971405],[6.119659763340634,52.37897310775909],[6.119000236980909,52.378694662889664],[6.118310424395157,52.37842714197308],[6.117866950145308,52.37826875514693],[6.117494187058865,52.37815001626274],[6.117073145625171,52.37803270643255],[6.116152172310941,52.37781137596173],[6.115344772906094,52.37762550683023],[6.115076422617753,52.377563730168745],[6.11424867203964,52.37738292208478],[6.113371149244801,52.3772088309856],[6.112587773317816,52.377057273184064],[6.111440141243844,52.37686515764904],[6.110491566094057,52.376705869652014],[6.109257496824932,52.37653183254959],[6.108124117271764,52.37635014976147],[6.106794922914478,52.37614748288982],[6.106499328797737,52.3761024081586],[6.105262862847892,52.37589080177813],[6.103737940681996,52.37563486658889],[6.102198441459312,52.375359972578856],[6.10085802926478,52.37509729505033],[6.099629674258686,52.37482951481292],[6.098176691192755,52.37451584939167],[6.096697176493249,52.3741864886591],[6.095133444649066,52.37384113858844],[6.09504602191133,52.374012961177414],[6.094050662657835,52.373802932406775],[6.093048696756128,52.37361177325687],[6.092111095972711,52.373448758720386],[6.091567145771416,52.3733643300471],[6.091133768393254,52.3732970641181],[6.090162229962325,52.37315996830127],[6.089158133131177,52.373026985359324],[6.088154406862942,52.37290126290229],[6.087204911464366,52.372802156766845],[6.08615527390769,52.37271535472179],[6.085163094999324,52.37261880320602],[6.084169478803496,52.37249313120659],[6.083724610908045,52.37241104897214],[6.082880603485205,52.37220356785126],[6.08246338098746,52.372069296670496],[6.081570207518112,52.371733344099255],[6.081202238495475,52.37157616603453],[6.08090568466406,52.371437011276775],[6.080638725888973,52.37128500049558],[6.080016699840291,52.37087984039645],[6.079701290348699,52.370664854652844],[6.079389860612112,52.37042806722197],[6.07910779715506,52.37017403933335],[6.078749568725736,52.369805878746185],[6.078506386613092,52.3695230497967],[6.078345927418115,52.3692830856314],[6.07820324046084,52.369046172199766],[6.078111077537627,52.368860886442945],[6.077965544128428,52.3685683365295],[6.077868505138737,52.368337600484544],[6.077798399643143,52.36809106829393],[6.077681804510058,52.36756615679437],[6.077584189503987,52.367069050685565],[6.07750027938402,52.36654295055913],[6.077441406833586,52.36606507693751],[6.077437094908293,52.36577394034566],[6.077467558156896,52.36552383718126],[6.077515775598074,52.365327728355936],[6.0776456431106,52.36499980344732],[6.077991555748254,52.364355296022914],[6.077845004181944,52.36429706532144],[6.077931216774324,52.36414818141623],[6.078009145954328,52.36400668888928],[6.078119226368087,52.36385097850878],[6.078286059247898,52.36364305859197],[6.07845719904327,52.36345346648502],[6.078644505197198,52.36326786013561],[6.078850638382482,52.36306763700464],[6.079093913808416,52.36287306538511],[6.079273291610419,52.362752666403054],[6.079503245040392,52.362625643765895],[6.079820431367899,52.36246934887354],[6.08014371492768,52.36231160631241],[6.080281517172679,52.36225644952719],[6.080570437694721,52.362143397025015],[6.080882100040988,52.36203611550894],[6.081101716756581,52.36197052848628],[6.081332921788957,52.361912800369986],[6.081956428667448,52.3617937994263],[6.082397741568955,52.361728238178884],[6.082846849880484,52.36167865482357],[6.083183418067088,52.36165561689217],[6.08350518213904,52.36163878586856],[6.083774073638994,52.36162250793435],[6.084133358961297,52.361601751288724],[6.08478906311377,52.3615750758741],[6.085435872524262,52.36153272053349],[6.085903567380176,52.3615021330767],[6.085952965178192,52.36149723956086],[6.086261963880331,52.36146236585114],[6.086853260852761,52.36139390637092],[6.087458759151768,52.36132029071465],[6.087793635024084,52.36126850643235],[6.088164757860827,52.361207473640725],[6.088487420581726,52.361145666356144],[6.088923527827188,52.36104808774072],[6.089256213017053,52.360957385788346],[6.089576635865162,52.360865596252836],[6.089957006468002,52.360736302875715],[6.090314374090314,52.36060540131764],[6.090712936704399,52.360444162297235],[6.091220338000917,52.360201527194555],[6.091514268967342,52.360048808342434],[6.091903038528208,52.35983911594608],[6.09198318094253,52.359791200520434],[6.092226602728752,52.35964565646514],[6.092518927180789,52.359460678137474],[6.092737151206751,52.359307571615595],[6.092932711408139,52.35915840174821],[6.09312116153367,52.35900993008668],[6.093522136598331,52.358671713537845],[6.093745780845915,52.35843818507454],[6.094071491546203,52.35807844065002],[6.094254990742569,52.357859351887335],[6.094502261052864,52.35750890106934],[6.0947410602605,52.357140227973105],[6.094857509991708,52.356967988598534],[6.095523554947334,52.35588832816954],[6.097250751577609,52.35347098764814],[6.100776564857068,52.350179580177766],[6.101263442745265,52.349809541879395],[6.101606692626735,52.349549628744924],[6.101942770844569,52.349286107027005],[6.102271218074828,52.34901897776528],[6.102591808418909,52.3487482450855],[6.102904772451322,52.34847418718031],[6.103209881296485,52.348196804596554],[6.103507136530267,52.34791609918276],[6.10379608795245,52.34763263367241],[6.103857691981451,52.34757074896538],[6.10451933460408,52.346397186722285],[6.104838428520379,52.34517120891937],[6.104804822759058,52.343929956072174],[6.104673116913073,52.34337153721962],[6.104104400385174,52.342388560849066],[6.103265679480899,52.34148108655677],[6.1029878929842,52.34124627315636],[6.102883384272427,52.34116376724913],[6.102776600704568,52.34108239850348],[6.102667542284859,52.34100216691326],[6.102556210484474,52.34092307246337],[6.102326729807161,52.34076857536387],[6.102208809843196,52.34069317221611],[6.102073104908376,52.34060973068794],[6.101615673239816,52.34033836278303],[6.101150763352086,52.34007209306958],[6.100678140382432,52.339810644251145],[6.100198272552127,52.339554573361205],[6.099955274136158,52.33942824134342],[6.097841312533722,52.33829528156979],[6.096080653779924,52.33695484962366],[6.095129231910567,52.33596457359054],[6.094227134384851,52.3344414601497],[6.093770276296127,52.332845462118485],[6.093714285872756,52.332121987522726],[6.093643434566079,52.331573584103445],[6.09364424413525,52.331048347661444],[6.093679063640035,52.330542848630905],[6.093693875215227,52.33036440621034],[6.093713731488736,52.33018621406608],[6.093738636800889,52.33000827216938],[6.093768591182711,52.329830862737914],[6.093803818842561,52.32965342088422],[6.093830987721303,52.32953135961809],[6.094195795509197,52.32722124475944],[6.094139204937567,52.32612898608596],[6.093642620454933,52.32460905864564],[6.093110893329637,52.32368759809791],[6.092682749964205,52.32296606254348],[6.0923868750816,52.32198561256718],[6.092373331771923,52.320988592406366],[6.092434142806993,52.32064724924132],[6.092809249145676,52.319648471853945],[6.093135669672597,52.31911988579459],[6.094513616748537,52.317562351182296],[6.095468425129821,52.31676485159169],[6.095591628774342,52.31667339167403],[6.095717373713221,52.31658332031519],[6.095845662875655,52.31649463748953],[6.095976488864113,52.31640706370757],[6.096109862078404,52.31632115884867],[6.096203796560343,52.31626245513905],[6.096720792954151,52.31594814451525],[6.097246584093482,52.315639678464734],[6.097780935255979,52.31533677605998],[6.097882691069888,52.31528027007274],[6.098862035068389,52.31474802120544],[6.099100835353416,52.3146210332826],[6.101169252885716,52.31300392590265],[6.101640649033642,52.312537355280476],[6.101752609052343,52.312417868389154],[6.101861345119636,52.31229755870196],[6.101966622401096,52.31217586589902],[6.102068443948157,52.31205306949724],[6.102166582531493,52.311929172677296],[6.102261494169658,52.311804170892636],[6.102352495727465,52.31167835050595],[6.102440043123099,52.311551427444286],[6.102465776024522,52.31151307285239],[6.102834318936547,52.31077972706728],[6.102886661400174,52.31061537867847],[6.103036572625458,52.30955304712185],[6.103030491908444,52.30934636035454],[6.103008336817819,52.309123199766724],[6.10299683138638,52.30904911857462],[6.102983037222663,52.30897505123832],[6.102967184654577,52.30890127678759],[6.102949273706533,52.308827796120305],[6.102929302787788,52.30875432792135],[6.102907040247132,52.308680873592174],[6.102884644094221,52.30861331888045],[6.102554956592378,52.30784599866388],[6.101787434503949,52.30632268320232],[6.101215352793703,52.30475464706946],[6.101157296032788,52.304449406112724],[6.101133386571222,52.304287485388755],[6.101114055688922,52.30412525657836],[6.101099306376459,52.30396300009078],[6.101089134062972,52.30380043463103],[6.101083543233549,52.30363784239586],[6.10108276556588,52.303475501513056],[6.101086337524011,52.303312853931324],[6.101094719487047,52.30315017639614],[6.10110265299482,52.30304508133341],[6.101175136566576,52.30230959476656],[6.101268476065957,52.30157482422781],[6.101317471527746,52.3012453429394],[6.10131792445362,52.301245336607884],[6.101322145591506,52.30123650287115],[6.101326957492057,52.30122638747228],[6.101327153193128,52.301225975538614],[6.101343158773343,52.30116359832665],[6.10158224726549,52.300519307873785],[6.10172416759568,52.30022599862387],[6.101927101364564,52.29982045564491],[6.102048955339604,52.29962698013409],[6.102223078590802,52.29942748092682],[6.102375498550588,52.29926505344479],[6.102578761623846,52.299090004489095],[6.102883508176408,52.29883981224345],[6.103191682378519,52.29859238470293],[6.103440013656258,52.29838880292827],[6.103880100658192,52.29800371380758],[6.104142789454562,52.29777179415583],[6.104314145641637,52.29758989803469],[6.104535370987556,52.29729527704947],[6.10477631081991,52.29693803334704],[6.104857054538637,52.29679815712873],[6.104906495909286,52.296712506819055],[6.104985962993944,52.296487306126636],[6.104994431299295,52.29625016907013],[6.10496097511513,52.29587246251451],[6.104878299079134,52.29557403242655],[6.104825377793388,52.29542055097309],[6.104779627226443,52.2951782424143],[6.104770706737688,52.29476203493798],[6.104989695013687,52.293907122899675],[6.10512134898256,52.29360255546096],[6.105212665319969,52.29341618259094],[6.105422152730548,52.29306900609677],[6.105448350728045,52.29302024870707],[6.105485363678658,52.29295136433956],[6.105567502333773,52.29281403160753],[6.10586453805399,52.29240797190803],[6.106335163918597,52.29193671680167],[6.10689575135742,52.2915379575505],[6.107347025835831,52.291254971244484],[6.107637359379059,52.29107002596871],[6.107889426420484,52.29091172910522],[6.108609462145823,52.290482319646934],[6.108675037942734,52.29045330148851],[6.109237158956624,52.29020458548124],[6.10956284153036,52.28998328756066],[6.109723486015889,52.28987237305707],[6.110253083834739,52.28945067873859],[6.110392759835766,52.2893394511729],[6.110932148737035,52.28878084214255],[6.111321692275877,52.28821082619947],[6.11152228565784,52.28778818433035],[6.111530949826526,52.28776942714339],[6.111607724251953,52.287603253294606],[6.111697277123501,52.28718165118869],[6.111743294299479,52.286945855769794],[6.111738658150137,52.28677924614985],[6.111734262270312,52.286497013049114],[6.111728655772296,52.28622861993287],[6.111730440898498,52.28557214126021],[6.111665181647973,52.28516416118533],[6.111640051343814,52.28482634728995],[6.11152534785788,52.284023673124075],[6.111459565383745,52.28357972593101],[6.111401458867133,52.28313099493377],[6.111368315573491,52.282803979661956],[6.111344361185972,52.28257859868384],[6.111252196842571,52.28195877326635],[6.111228594720302,52.281207041641515],[6.111248354875043,52.28092940591341],[6.111267170094963,52.28072062433033],[6.111296962829617,52.28056502060762],[6.11133616884088,52.280412451070994],[6.111404439664994,52.28020447188544],[6.111480599534069,52.27997166426851],[6.111687483222926,52.279491360411],[6.111825186719601,52.27921451126561],[6.112040687503702,52.27881647532437],[6.11206362535067,52.278778126446014],[6.112174619480448,52.278592561461544],[6.112364764052757,52.27830504461273],[6.1126273648685,52.27792757068618],[6.112712599313403,52.27782942821808],[6.112971300724805,52.27753837050227],[6.113178249415943,52.277305090752606],[6.114020939028263,52.27657272322944],[6.114418403107853,52.27628889779389],[6.114421517730228,52.276286712504564],[6.11464785791441,52.276128037357005],[6.11517753507216,52.275795569827],[6.115189036510162,52.275788353464215],[6.11519995778167,52.27578150019693],[6.115474090187243,52.275609442351225],[6.116445524839421,52.275071241201516],[6.116707285662223,52.27492890837565],[6.117333665144735,52.27457753419811],[6.118259505716175,52.274058303727216],[6.119246216173895,52.27334939125613],[6.119872470920203,52.27289341905501],[6.120391039589684,52.27253349304361],[6.121109392377686,52.27202558476841],[6.121670017755112,52.27144024975922],[6.122217929093027,52.27073190850428],[6.122410964522886,52.270408071838226],[6.12261478060461,52.27006300082376],[6.12276899720201,52.269723909709974],[6.122982031960837,52.26925544633102],[6.123073352506003,52.26879884994356],[6.123098697922299,52.26871299083664],[6.123126484524263,52.2686161870241],[6.123157163966756,52.26846137415935],[6.123200811061679,52.268242089965],[6.123247124621551,52.26792636511414],[6.123277581894212,52.26767056361697],[6.123290635442678,52.267516588536566],[6.123305933504548,52.26734421885908],[6.123323509157672,52.26699969543223],[6.123336326270248,52.26662083124149],[6.123358940969991,52.266255073496986],[6.123373956851174,52.26591525771459],[6.123395827190376,52.265772705396635],[6.123420115177034,52.26564788945025],[6.123446172046265,52.2655202042637],[6.123493354034584,52.26538019058821],[6.123553610004512,52.26520787314904],[6.123627828675114,52.26503482149095],[6.123726468923181,52.26483447353265],[6.123818408618104,52.264659468696216],[6.123907276430037,52.264506881223085],[6.123965161259259,52.26441089608115],[6.12401250047403,52.26433801312367],[6.124124735326049,52.264186511093925],[6.124424464429635,52.26379401912522],[6.124547489102307,52.26365732460067],[6.124683673397249,52.26352274986785],[6.124797298842408,52.26341030965639],[6.124880317236653,52.263329329989666],[6.12511173488029,52.26311647604533],[6.12526596492717,52.26299085686166],[6.125529790702903,52.26279709699359],[6.125722122016983,52.26266636751458],[6.126062493543949,52.262446880337585],[6.126320051348958,52.26228710584715],[6.126540355164244,52.26215542700649],[6.126831292449378,52.26198946538547],[6.12694228575904,52.26193510253856],[6.127153605048155,52.26184030297187],[6.127677976948863,52.2615982217567],[6.128063715053774,52.26144761661378],[6.128494741151633,52.26128377417596],[6.129156873326435,52.261030045021414],[6.130069170062657,52.26069139262342],[6.133514933089714,52.2597722056718],[6.133949007822312,52.25968879965898],[6.13464390844259,52.25954199912971],[6.135177909944836,52.259395932996355],[6.135747971098718,52.25927153991784],[6.136281572197388,52.259114800627714],[6.136903744058039,52.25889149001505],[6.137437917880239,52.25875636178957],[6.137847235375382,52.25865517992692],[6.138273344453525,52.25847691578781],[6.138735557632905,52.25830938587314],[6.139072560520745,52.258153875521266],[6.139624201180024,52.25799673112823],[6.140015701036934,52.25788440926722],[6.140407389196565,52.25778332362035],[6.140834412379697,52.25766010362594],[6.141154291432023,52.257548238483075],[6.141580559636423,52.25738092674497],[6.142255850833608,52.25713533359329],[6.142717817154668,52.256968068138065],[6.143338774011398,52.25668967169845],[6.143853186798754,52.25644510982791],[6.14456322258314,52.25614450901471],[6.145148828119654,52.25588852841319],[6.145716402934074,52.255621695160194],[6.146141885081833,52.255410554750085],[6.146514562253664,52.25524356030706],[6.146903229332745,52.25496692369672],[6.147327939245357,52.254711966848575],[6.147771820924685,52.25453356259588],[6.148321696100292,52.2542777870946],[6.148711641238109,52.2540778119827],[6.149170738568889,52.25374595084699],[6.149577770491422,52.25350176868007],[6.149771500317036,52.25333619550455],[6.149948315402354,52.25322523877881],[6.150301057376206,52.25293786618467],[6.150724409516975,52.25260621718847],[6.151289834990509,52.25221859896351],[6.151748309672101,52.25185358155888],[6.152100838010874,52.25155525546776],[6.152382307436771,52.25129024385537],[6.152664727602687,52.25108000440725],[6.152947510406134,52.25089166956909],[6.15321263267066,52.25071440330538],[6.153442982216228,52.25060336004091],[6.153832872202082,52.25040337159337],[6.154347907060018,52.25020257444227],[6.154721050751339,52.250079646341796],[6.155201150159894,52.24992289316961],[6.155503663168544,52.24984423895897],[6.155966258971853,52.24972045351619],[6.156446906304787,52.24959654328406],[6.157051913907371,52.24943924574843],[6.157372075144536,52.24934924550238],[6.157870583021661,52.24922548979763],[6.158385164732706,52.24901372127886],[6.158900355741683,52.24882385418486],[6.159522284493605,52.2486004244603],[6.160001738867734,52.24842173194291],[6.160498849832199,52.24823226012213],[6.160960113581372,52.2480208239379],[6.16138564402081,52.24782057490858],[6.161881783982464,52.24757605120411],[6.16228869749025,52.247332105597756],[6.162801747185955,52.24702145088759],[6.163207692640729,52.24672274185815],[6.16345300202647,52.24643603308509],[6.163574463316934,52.246237775980795],[6.163749729619905,52.24602821561042],[6.163905000381924,52.24570923717635],[6.164093664364063,52.24525831219079],[6.164122464874549,52.244863201609036],[6.164188120393511,52.244522622281],[6.164180843203965,52.24410584307288],[6.164171653918991,52.24357954145498],[6.164020840408058,52.24313084756091],[6.163835086913994,52.24272618967493],[6.163576806178236,52.242267247119415],[6.163373616109459,52.24188490563825],[6.163009004675346,52.24148143082906],[6.162715811703345,52.24106653294547],[6.162422037049215,52.24061876668132],[6.162146507092934,52.240192800253546],[6.161852568111111,52.23973408786174],[6.161593169980145,52.23920941426918],[6.161372542305641,52.23884881091946],[6.161131568318212,52.23835688696253],[6.160981562002974,52.237951991954596],[6.160902001582752,52.237480922794305],[6.160838722910828,52.23693305813861],[6.16088675037665,52.2366035540672],[6.160933601555899,52.23621956067006],[6.16103343307724,52.23579112413511],[6.161170473463883,52.23545008712067],[6.161324580307578,52.23506539040181],[6.161462381088888,52.234768154489956],[6.16170571303115,52.23437192632445],[6.161952082433723,52.23416189979304],[6.162161831146658,52.23388609863048],[6.162531210017508,52.233543813378105],[6.162988457981751,52.23312398219547],[6.163305052536724,52.23283680789533],[6.16367594530479,52.232582143576636],[6.163760254158414,52.23253227106055],[6.164294898579215,52.232216010354215],[6.164737148960817,52.23196087296925],[6.164800535747664,52.23192490823829],[6.164824299789537,52.231911424977675],[6.165108788771938,52.23175000744949],[6.16558670199241,52.231494631854275],[6.165827468579329,52.23130768047239],[6.165839845384217,52.231298070495335],[6.165957010193694,52.23120709251928],[6.166230447790451,52.2310376521705],[6.166232269481195,52.23103652202283],[6.166247018421007,52.23102738350951],[6.166267697310629,52.23101456925385],[6.166268915961873,52.23101377654567]]]]}},{"type":"Feature","properties":{"id":12,"statcode":"WS13","geometry_g":"polygon","gag_id":"1","hierarchie":"2","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.13.13_HH van Rijnland_p","sde_id":null,"land_code":"NL","inspire__1":"NL.13.13_HH van Rijnland_v","inspire__2":"NL.13.13_HH van Rijnland_l","wbh_code_o":"13","einde_leve":null,"laatste_wi":null,"admin_code":"13","waterschap":"HH van Rijnland","publiceren":"13","Aangemeld":1,"Actief":1,"KVK":51137747,"tnostatus":2,"CPT":516,"GMW":85,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[4.693662677431648,52.002354899695],[4.693661365192061,52.00235876597628],[4.693625070431869,52.002652707478006],[4.693561354286376,52.00316868134219],[4.693491546805312,52.00356808425692],[4.693421540757958,52.003934120894606],[4.693399993130134,52.0040202738103],[4.693312402688018,52.00437059381366],[4.693290871467771,52.004440603585536],[4.693201604749299,52.004730691143855],[4.693061056591368,52.00506688346879],[4.692768832950388,52.00559500960032],[4.692377142127055,52.00616446990487],[4.692175428271185,52.00643010046249],[4.691747279198169,52.006961223469794],[4.691357693207934,52.00739346651045],[4.691144801333534,52.00758279838406],[4.690906956428321,52.007787226642016],[4.690407048378776,52.00816544962705],[4.690153513186882,52.00834814835141],[4.690123426550302,52.008382485738466],[4.689598620432919,52.00872841525548],[4.689021390136543,52.009104897773355],[4.688851921232732,52.009147000983745],[4.688702385717265,52.0092680327508],[4.687414127807727,52.01008548284447],[4.686124686212628,52.010976527086235],[4.685871327677249,52.01118396283437],[4.685266517010528,52.01172053534804],[4.684597454204524,52.01248940465041],[4.684122620983134,52.01307780125922],[4.684192861144378,52.0131131227965],[4.684146494722454,52.01317723896332],[4.684019387841085,52.01313901602739],[4.683414552047934,52.01298942956241],[4.683366715716162,52.01305061540132],[4.683969641105538,52.01321523731781],[4.684062194269577,52.01325077311809],[4.683947293572082,52.01346140461158],[4.683797417767844,52.013708167210346],[4.68363377159832,52.014032138770595],[4.683341346590193,52.014624390665624],[4.683277636294851,52.01471486470434],[4.683237398967676,52.01475305859409],[4.683170772557856,52.01479081601475],[4.682944130897101,52.01488843191292],[4.682834613783458,52.01495796728986],[4.682538407223594,52.015163332847784],[4.682400948342869,52.01526344996282],[4.682279272214761,52.015421483948295],[4.682232496423086,52.0155251909106],[4.682215682627209,52.01563836232317],[4.682219946024232,52.015749808337155],[4.682254317977232,52.01585957404217],[4.682342657665991,52.01598266012733],[4.682413636340375,52.016061077613436],[4.682473577250341,52.01615311834702],[4.682573795035362,52.01626203769303],[4.682618257985565,52.01631471529415],[4.682622935685782,52.01637763527233],[4.682591805822072,52.01646742305348],[4.682330572874594,52.0172345669554],[4.682243408078457,52.01744784360098],[4.682206610068831,52.017534828897745],[4.682038205009026,52.017819822841716],[4.681957997377923,52.017878746857164],[4.68187727098376,52.017914154004664],[4.681742406192571,52.01797285826633],[4.681640236740336,52.017997045048446],[4.681516899616445,52.018004566169544],[4.681385755625213,52.0179971735111],[4.681157465162054,52.017950341198656],[4.680912067170038,52.01788440428832],[4.680658967920285,52.01779692034165],[4.680411282273417,52.01770616959589],[4.680053352759628,52.01755772464691],[4.679904584574142,52.01747914402805],[4.679787965822013,52.01740074741666],[4.679708215907409,52.01736224715486],[4.679564600769277,52.017296919035665],[4.679436531194265,52.01726473462802],[4.679329602058817,52.01725086976288],[4.679187597529215,52.017253323571126],[4.679022420512688,52.01728125482349],[4.678772389527587,52.01733926286721],[4.678661944086443,52.017378264117404],[4.678535091406149,52.017438666809696],[4.678442936877309,52.0175075386259],[4.678331340248897,52.01761927594509],[4.678235914921626,52.01772449506521],[4.678216173701478,52.01778719626861],[4.678206787659538,52.017873096030975],[4.678230189777468,52.017917873470154],[4.678285831175758,52.01795622956186],[4.678403023997669,52.017998254970784],[4.678523080124069,52.01802873838677],[4.678552705918077,52.01801899349981],[4.678585128044511,52.018001005076734],[4.678621133586952,52.017926833607845],[4.678681441630013,52.01783958641942],[4.678719459325001,52.017806755795974],[4.678795378555928,52.01774935417367],[4.678876408523564,52.017706859091355],[4.679042109535774,52.017645871773226],[4.679133375521237,52.01763319875286],[4.679213726003768,52.01763368198833],[4.679320682136511,52.01764589324696],[4.679528659645763,52.01770665594112],[4.679760432740593,52.017787398703696],[4.679708715738766,52.01783998478102],[4.679668447559871,52.01784469540165],[4.679615067798173,52.01783280648542],[4.67948460333322,52.017782433156235],[4.679401885550834,52.01776209842716],[4.67931356074609,52.017758259633304],[4.679273553540812,52.01774645096825],[4.679206865454701,52.01772952022993],[4.679139927847779,52.01772746379159],[4.679059472818642,52.01773358636792],[4.679000340912119,52.01774646162897],[4.678981343766405,52.017761223187875],[4.678970167013954,52.01779090762882],[4.67896946168688,52.01783553989039],[4.678939392095349,52.0178733800194],[4.678893531104179,52.017894586436874],[4.678836803433456,52.01792400578987],[4.67882302465135,52.017948712951416],[4.678836098112867,52.017968629061926],[4.678875881734593,52.017993667486984],[4.678942245042461,52.018032087774046],[4.678992462725479,52.01807537250746],[4.67903250784582,52.01808387375543],[4.679195890745035,52.01808485643127],[4.679294832970889,52.01809537463209],[4.679369681639338,52.018105738903884],[4.679444202519969,52.018135938603294],[4.679544937831669,52.01820267197071],[4.679571622218201,52.01820943885408],[4.679622687345075,52.01819817768005],[4.679668249855733,52.01819679764275],[4.679705588638918,52.018206945253766],[4.679787994417778,52.01824710634591],[4.679843939106061,52.0182672799389],[4.679900025734588,52.018277540129645],[4.679932238862785,52.01827277204902],[4.679983631557228,52.01824167524185],[4.680006908366196,52.01820958259001],[4.680010788523997,52.018133563857454],[4.680021729959581,52.01811875374485],[4.680059865854279,52.01807930792513],[4.680054896483465,52.018054479022936],[4.680017609796207,52.01804103308475],[4.679969419331636,52.018039089730756],[4.679894663500156,52.01802376478967],[4.679814793551382,52.017991870377145],[4.679751385338532,52.017936938635465],[4.679733223172582,52.017898817460505],[4.67974696393636,52.01787740871662],[4.679795635471223,52.01784794052014],[4.679831012724661,52.01781343980562],[4.680321257831586,52.01798003659899],[4.680890206775685,52.01816776791586],[4.681327651804928,52.0182860994631],[4.681554148593943,52.0183618454177],[4.681617756301308,52.018405209273084],[4.681696963292805,52.01847841824143],[4.681727979449483,52.01854968452113],[4.681734095093048,52.0186720445595],[4.681690347505943,52.01878298712148],[4.681673151309854,52.01882126461775],[4.68163089196377,52.0189153897556],[4.681596453654965,52.01899207029014],[4.681560942421282,52.01908969638665],[4.681498047544367,52.01912775387536],[4.68143344682956,52.0192741205331],[4.681397645414092,52.01938920933538],[4.681315342887295,52.01958089726561],[4.681250465822472,52.01974472665698],[4.681203399521012,52.019856260342145],[4.68115117623554,52.019936312608024],[4.681064856555186,52.0200231443525],[4.680944344610749,52.020123747914916],[4.68082803049285,52.020216799305004],[4.680555495666618,52.02040108026472],[4.680224561297454,52.020601323907144],[4.679845839573416,52.020814321718525],[4.679478566192514,52.02097193759061],[4.679175337321377,52.021090801918625],[4.678939185764009,52.02116531567779],[4.678840598672454,52.02119642471042],[4.678523465484669,52.02128408580856],[4.678378624556059,52.021324120172565],[4.678139289097632,52.02137410175009],[4.677870571492556,52.02143021569429],[4.677713391368308,52.02145538895315],[4.676745241977541,52.02161044346813],[4.676390312790584,52.02166292378912],[4.67629518388416,52.02167699155798],[4.676177397350009,52.02167281974251],[4.676003919690226,52.02164060011443],[4.675920404879644,52.02159853314865],[4.675820379267722,52.021535594123726],[4.675754405663073,52.02144861002868],[4.675722168339108,52.02135837821649],[4.675724917391545,52.021185232911925],[4.675749125982439,52.02107455197893],[4.675738953343695,52.0210086862793],[4.675690315865104,52.02089064404287],[4.675625468999889,52.02080067352724],[4.675574991452755,52.02073064525043],[4.675409836297789,52.02052877363203],[4.675327629624488,52.020403607188825],[4.675245548209453,52.02027150237964],[4.675175014349748,52.02011869510283],[4.675126324330558,52.02000411283228],[4.675105086220267,52.01992779850695],[4.675100743353831,52.01984811683743],[4.675124237409348,52.01978245469557],[4.675164901406511,52.01969612414779],[4.675216232137854,52.01964448149852],[4.675295894605724,52.01957569844583],[4.675392437138932,52.01950355685553],[4.675370633485073,52.01946375012851],[4.674907976539361,52.0191756862864],[4.674859464928265,52.01916638637111],[4.674650301276148,52.01915911635113],[4.674579386000074,52.019146885322414],[4.674324522171839,52.01931077430685],[4.674255736964328,52.019378013651306],[4.67420569559795,52.01948317178388],[4.674185942252745,52.01960941141685],[4.674206576211936,52.01973091605438],[4.674275715668061,52.01984475067749],[4.674414187788915,52.020058506882556],[4.674532583257895,52.02021741087872],[4.674627698848258,52.02031946589283],[4.674802405652095,52.020485685428994],[4.674859146783646,52.02056760767237],[4.674922562927289,52.020635647204664],[4.675043353318436,52.020745820938316],[4.675139804880025,52.02086479981108],[4.675202399912971,52.02098457157214],[4.675245238124881,52.02113009250111],[4.675246972031546,52.02122361851668],[4.675195718457383,52.02150686627474],[4.675165465879738,52.02158428933945],[4.675089782141219,52.021679342551565],[4.674984951787256,52.021782183142555],[4.674874188005651,52.021853141769334],[4.674744330247574,52.021908075246515],[4.67463421548918,52.021937259398946],[4.673260501300733,52.02213787316567],[4.672079068154335,52.02231278159965],[4.671262934298642,52.02243019900395],[4.67078776178676,52.02250093276255],[4.670286547084182,52.022587424534464],[4.66998565229391,52.02264926595251],[4.669853707448639,52.02273302519945],[4.669635841362894,52.02284512249933],[4.669365923657444,52.02298674362144],[4.668921904473677,52.02322580625437],[4.668580394699731,52.02340678954572],[4.668336225006458,52.02355055191607],[4.66820571575443,52.02364527498218],[4.66809783699987,52.02373614526525],[4.667817603279108,52.024015995737834],[4.667731984952822,52.02412691105354],[4.66766196416742,52.02422283006631],[4.667577923941574,52.024337952507615],[4.667532857115352,52.024399679194104],[4.667492766067002,52.02445459608886],[4.667483617732525,52.02446717789033],[4.667441084260833,52.02454624071843],[4.667398746244367,52.024624918223516],[4.667282717748924,52.02475120625628],[4.667122023964287,52.02489871233838],[4.667006636518702,52.024985931347175],[4.666903179422761,52.025081465613475],[4.66675530761521,52.025223395919575],[4.666723666208229,52.02525382586118],[4.666585954817871,52.025400833667966],[4.666412176452773,52.02558337647076],[4.666340165189222,52.02566141352918],[4.666126089505904,52.025780098124805],[4.665823605231325,52.02589824071127],[4.665558223241555,52.025962616475425],[4.665504558860254,52.02599425937467],[4.66541626534441,52.02606894226165],[4.665326287829163,52.02615045494796],[4.665255308840472,52.026232075068975],[4.665173885611555,52.026372253592804],[4.665089033788925,52.026528041898715],[4.665003284967577,52.02664181275518],[4.664858210526439,52.026801141458954],[4.66467515158796,52.026960236903086],[4.664330707102911,52.027209187362885],[4.664126194432314,52.02732320813637],[4.66391864527051,52.027429389977414],[4.663738417116918,52.02750936729599],[4.663572752107235,52.02757087275014],[4.663343624466325,52.02763980777195],[4.663016005149393,52.027729618956755],[4.6627089416228,52.02782053545402],[4.662610151041632,52.02785900921493],[4.662555179440105,52.02788651704885],[4.662517557383264,52.027905331972676],[4.662395625615421,52.0280042271189],[4.662286245395982,52.0281090598663],[4.662190923381092,52.02822667971604],[4.661999424022523,52.02851466696669],[4.661829798982538,52.02882037900199],[4.661698370847943,52.029015930347754],[4.661540235506353,52.0291986163179],[4.661077844064519,52.0296891132893],[4.660762307984323,52.0300075952939],[4.66009271121265,52.03067754010026],[4.65999586892365,52.030790268075236],[4.659872894144598,52.03095167763715],[4.659737940428784,52.031168687343644],[4.659584763490614,52.031435416093196],[4.659501486753337,52.03159023037243],[4.659347481611185,52.03190775624017],[4.659032905666488,52.032653153530774],[4.658925428299958,52.03293287361263],[4.658828658967891,52.033235121882925],[4.658726564888199,52.03357347056665],[4.658539793443931,52.03421038481218],[4.658088627536147,52.03607157411341],[4.658115165994058,52.036402934555],[4.658209418983761,52.03689271251577],[4.658326545905211,52.03740461759109],[4.658410120027385,52.037694642625006],[4.658465505484815,52.03800360251693],[4.65847650407122,52.03810068251105],[4.658492587987942,52.03824263715777],[4.658497813350839,52.0384930057514],[4.658476856071105,52.03892378950527],[4.658460622716881,52.03907676169476],[4.658442099669266,52.03925130987266],[4.658449376871472,52.03937556575182],[4.658455395049367,52.03939804705372],[4.658507786219043,52.03959377029258],[4.658571384697162,52.039969672595724],[4.658687995281451,52.04051405793501],[4.658956741340937,52.04170623468326],[4.659026543305957,52.041891072438894],[4.659077691278606,52.041998629350175],[4.659079353517686,52.04200218105908],[4.659043822592597,52.04200989814786],[4.658888724102498,52.04204357143824],[4.658851877497628,52.04206585952853],[4.658006655843185,52.042231975317684],[4.65790853654362,52.04228341064284],[4.657048438203407,52.04245138693082],[4.655705757711272,52.04271730941695],[4.655553047827479,52.04274811687625],[4.655235284177873,52.04281222517085],[4.654378991003894,52.04298870871726],[4.654269334429746,52.04300015171492],[4.654199240883122,52.04299452018565],[4.654129515746436,52.042966383930604],[4.653830777658611,52.04301405021907],[4.653727612658177,52.04303051271452],[4.653563321488948,52.04304828418869],[4.653582617950932,52.04315167222811],[4.652545726190453,52.04334924573675],[4.651972135980158,52.04345853385519],[4.651504160783666,52.043547697771594],[4.651139652362454,52.043617147769965],[4.651037358261335,52.04361950155447],[4.650914449359109,52.04362471951624],[4.650780760794597,52.043630391275215],[4.650708028328463,52.04361766729009],[4.650662091758674,52.043588751930045],[4.650556007155251,52.04358848394009],[4.649504966584148,52.04396481166626],[4.649266126865489,52.04401339886201],[4.649037448412325,52.0440521530199],[4.647559852166965,52.04431525872367],[4.647402003207586,52.04433881467081],[4.645557748157757,52.04466432618571],[4.645347225423508,52.04469872028551],[4.645151101849666,52.044737671975085],[4.644991215612372,52.04476348593408],[4.644820511674049,52.04480696563291],[4.643310042886048,52.04510659158375],[4.642271913252306,52.04531347801229],[4.641471950613882,52.045416321565426],[4.641259426906061,52.04545054290952],[4.641206743292053,52.045466370401584],[4.641146405159447,52.045475282232495],[4.640603448496254,52.04555547888394],[4.64054242326459,52.0455644939118],[4.640249067054786,52.04560131994916],[4.639585270874299,52.04570099639406],[4.639347787634374,52.04573173913484],[4.639013025427356,52.04578625803968],[4.638973579335882,52.04579408803941],[4.637744447075386,52.045947920863],[4.637518561470205,52.045977996672775],[4.635553191775241,52.04618765509392],[4.635348400532763,52.0462071112188],[4.635248241680039,52.04628329584061],[4.634469167274172,52.04636425760652],[4.634461801204797,52.04633676887659],[4.632987956726578,52.046486875656804],[4.632395152218677,52.04656498957208],[4.632338116382866,52.04658448845184],[4.630736010544883,52.04671507603729],[4.630341538916242,52.04674345298717],[4.629987529812083,52.04678590397142],[4.629746530950621,52.046820352969426],[4.628950699156116,52.04694191507007],[4.627823585986462,52.047076976225654],[4.626877652951818,52.04716748121489],[4.625923887445775,52.04724942494262],[4.624983931611458,52.0473343266276],[4.624512047271764,52.04737350850546],[4.624025611682936,52.047411929065895],[4.623068418111409,52.047496793678796],[4.621161368498917,52.047693710373686],[4.620213771388375,52.04780148081806],[4.619252951214456,52.047904771084795],[4.618287482513962,52.04800089535478],[4.617312340255518,52.048095555287205],[4.616346707409177,52.04819310075655],[4.61539050948833,52.04827923989482],[4.614429266867098,52.04837110876264],[4.613470782074092,52.048460066674885],[4.612507177609484,52.04854474058467],[4.61202854343462,52.048592627823226],[4.611549077253936,52.0486556621509],[4.611240804979977,52.04870517134074],[4.611156422686598,52.048719617098314],[4.610147182901447,52.04881826266848],[4.610056866710391,52.048859579884116],[4.609939910108735,52.04889700900458],[4.609876176196923,52.04891698317185],[4.60974244926121,52.048958885522495],[4.609643908767096,52.048979294953156],[4.609002449500593,52.049040862910935],[4.608942790606683,52.04903520149859],[4.608904166022984,52.04902297367303],[4.608880665540984,52.048909752772836],[4.608763838470253,52.04891954212715],[4.60825224364602,52.04897358698809],[4.608050527221135,52.049000045038426],[4.607730641020604,52.049084064752584],[4.607537111415214,52.04915688456281],[4.607328065279086,52.04925924520336],[4.606545634003595,52.04968477013963],[4.605486987392145,52.0502733410545],[4.605386938822225,52.050326400934665],[4.605313869342965,52.050381491447],[4.605268113785264,52.050421950290584],[4.605233967220424,52.05048470561961],[4.605238679009828,52.05055883762471],[4.605310768980325,52.05090296233781],[4.605450126810309,52.05152355951323],[4.605577476324522,52.052144076762204],[4.605828007838657,52.05327948679894],[4.60585830879444,52.05343714726472],[4.606030299304928,52.053909758539525],[4.606237376801588,52.054438177647924],[4.606438452709335,52.05496655654687],[4.606645604416299,52.055491272063406],[4.60684375106683,52.05601592749551],[4.607050977010515,52.05653693043877],[4.607240122887161,52.05706152546534],[4.607393282293879,52.05758217867213],[4.607445392293536,52.057867816420156],[4.607448398357173,52.058040117568865],[4.607415834862338,52.0583566902551],[4.607461780543189,52.058389379700536],[4.607931400255338,52.06154411754321],[4.608031088720663,52.06223339811592],[4.608151469898818,52.06310971163486],[4.608148131096669,52.063301520473175],[4.608138264358908,52.063524017553206],[4.607903281136128,52.06510627717508],[4.607819305796156,52.0653467371694],[4.607747246461294,52.0653610104417],[4.607174041293685,52.06528835641185],[4.601786844200142,52.06447050006669],[4.591016872329444,52.06284267694775],[4.589075329597157,52.06255409752061],[4.586982329822643,52.062259531590065],[4.586204024504511,52.062183170614524],[4.585332571209811,52.06213586831381],[4.585171441319378,52.06213530176033],[4.58479005940561,52.062094503775626],[4.584437186268976,52.062040766702864],[4.583815692442443,52.0618761221839],[4.582529158660399,52.06165560062245],[4.579508777616383,52.0612050313419],[4.578637011320146,52.06107072292485],[4.576400622374115,52.06072170039442],[4.57544995768017,52.060598501233216],[4.575442688619405,52.060597282644125],[4.574903364135244,52.06050954989837],[4.570341175390532,52.05980721230026],[4.56959754503518,52.05969082119908],[4.568622246701979,52.05953816524774],[4.567665044974258,52.05940017941101],[4.566989425359862,52.05930278810895],[4.565630657201821,52.059096022612124],[4.565565030403,52.05907265328459],[4.565499622716866,52.059036557776345],[4.565446608094874,52.059000548684324],[4.565374458460166,52.0588829435765],[4.565296505070542,52.058630372008025],[4.565264790473162,52.05855887215841],[4.565232468300502,52.05852046360611],[4.565203758145,52.05851007933347],[4.565121473231218,52.05849423370943],[4.565076010484916,52.05849646016664],[4.564997831649203,52.05850793210819],[4.564901818109536,52.058538523817994],[4.56455209052671,52.058696454293695],[4.563794270750519,52.05904247399355],[4.562578249075682,52.05959011152389],[4.561593794041066,52.06003644175802],[4.560550589090486,52.060517900983506],[4.56035890101614,52.06061202225594],[4.560257541234052,52.06066636516741],[4.56001249354196,52.06078186339856],[4.559918468676806,52.06083853160843],[4.559850631056515,52.06091585041571],[4.559815409415692,52.06093505409531],[4.559731853447826,52.06096415613399],[4.55966687413197,52.06097597794125],[4.559613225453329,52.06097754257044],[4.559514934049334,52.061022001107865],[4.559414240508797,52.0610796377615],[4.559357458189675,52.061097665113046],[4.559264378465313,52.06110315908626],[4.559192406904322,52.061089341309554],[4.559134681939596,52.06106845981992],[4.559095401170893,52.061037479076624],[4.559012299213525,52.061042009315095],[4.558882712502894,52.06106206831711],[4.55883458740212,52.061015735905315],[4.558807473807259,52.06098132612826],[4.558743460413921,52.06094094916874],[4.5585974383483,52.06083346268734],[4.558422407616789,52.060721520389286],[4.556733126055867,52.06129517779136],[4.55248002101613,52.06327140924948],[4.552400136337464,52.06332914245314],[4.552398686750083,52.063406855532115],[4.552770421013544,52.06375925766321],[4.552792699129704,52.06383228502304],[4.55275221324592,52.063890288521996],[4.552696145618389,52.0639384740803],[4.549090294797719,52.065630125005484],[4.548315335797819,52.06597679585603],[4.548131543904037,52.06611150962121],[4.547899079548483,52.06631874594289],[4.547643992190839,52.06647237511584],[4.54603774894724,52.06722359900608],[4.543060224295604,52.06858922479222],[4.5399949145036,52.07000271845971],[4.538894364423113,52.070468438468936],[4.538194821340571,52.07077915595036],[4.537780656097818,52.07100449613042],[4.537256869046489,52.07119016894377],[4.536736660395841,52.07139530735748],[4.536346030451997,52.07162566619811],[4.535939553376156,52.071860763040476],[4.535565328015871,52.0720572254275],[4.534268113267559,52.07270365941159],[4.53364724314389,52.07296987832796],[4.533515518006785,52.07301778537921],[4.533292049240857,52.07283765479233],[4.533125048981176,52.072681051485716],[4.532880035194137,52.072485105976774],[4.532164060494842,52.0719252779497],[4.531771877183921,52.07162049002595],[4.531332145478865,52.07128005758075],[4.530803358913482,52.070866510980125],[4.530277565459701,52.07045483532773],[4.529860265142482,52.07012478026972],[4.529547374569971,52.06985400783892],[4.529104566889757,52.06943921858878],[4.528814200427143,52.06917325523243],[4.528194813630956,52.06861318013554],[4.527895508955449,52.068341576389486],[4.527823716296581,52.06831225360071],[4.527622439451343,52.068274552636076],[4.527452572444234,52.068250086892874],[4.527314332602367,52.068226777557925],[4.527185562629835,52.068181245721355],[4.526682722664956,52.067911865142705],[4.526533549835289,52.067829950932236],[4.526527923478949,52.067808544175506],[4.526549810792779,52.06776782438955],[4.52698769532399,52.06749509356476],[4.526759924357805,52.067267675208875],[4.526377821185871,52.06691371233202],[4.525884956242263,52.06644001162245],[4.525485039020135,52.06607197433025],[4.525022919563707,52.06564680792841],[4.524793576480487,52.06542402115553],[4.524334133780793,52.06501652495358],[4.523734938672744,52.06450951563805],[4.523304862600759,52.06414403603826],[4.523211962225964,52.0641154903863],[4.523107895378154,52.06411843937271],[4.522937880264561,52.06418036342915],[4.522796879496134,52.064222995081956],[4.522739567337916,52.0642244351633],[4.522703710190583,52.06420837923762],[4.522669806888201,52.064168185527],[4.522540969386713,52.064049247872916],[4.522140364765969,52.06371928708149],[4.522008565488917,52.06359754063738],[4.522014997248045,52.06357714801024],[4.522106697335106,52.06343381657609],[4.522115151542804,52.0633865002412],[4.522198582516459,52.06320316308843],[4.521498526932771,52.06261365089216],[4.520859578428884,52.0620617512807],[4.520143574022514,52.061441453641294],[4.519485405035114,52.06087175139334],[4.51876065108875,52.06023838319606],[4.518480366647767,52.060003127516765],[4.518381225631747,52.05998566872414],[4.518154034264946,52.05996541360875],[4.517927005434564,52.05993679993391],[4.517716756556601,52.05989715492718],[4.51759702043262,52.0598544654957],[4.517585179400296,52.059843223334916],[4.517596009432435,52.05982844526708],[4.517859598426854,52.05960462626373],[4.517888901041297,52.05957047042529],[4.51790020009682,52.05953153465958],[4.51789171977248,52.05950267287236],[4.517703374658351,52.059345206200845],[4.516985395810492,52.058753673291996],[4.516451843928412,52.05828985989487],[4.516152661362228,52.058019151876245],[4.515576138223272,52.05751877488702],[4.514929891903859,52.05696121503771],[4.514336566156411,52.05647371372542],[4.514135162526414,52.056291057405],[4.513650531193013,52.05587125069396],[4.513331911122335,52.055594827187704],[4.512747931657945,52.0550934547067],[4.512086932388683,52.05452367958901],[4.511749174445886,52.05422480891394],[4.511611210650295,52.0541132245078],[4.511400735785025,52.05393328234429],[4.510782605936416,52.05340749365079],[4.510321603017003,52.05301572198263],[4.510011807341433,52.05275235227543],[4.50944866789435,52.05226784569626],[4.508901860203562,52.05179645553341],[4.508464618185066,52.05142436762273],[4.508267521026978,52.05148514260634],[4.508146360997633,52.05151582413019],[4.507984803578703,52.05153227174931],[4.507816129350913,52.05152729126995],[4.507416636848437,52.05153546270034],[4.50731285388866,52.051525393295826],[4.507198933282273,52.05149480812162],[4.507070688491376,52.05142603136206],[4.506919907907871,52.05143047745399],[4.50672161773185,52.051475448082044],[4.506444425704659,52.051547701852506],[4.506091365440361,52.05172343877584],[4.505114275894987,52.05221316463266],[4.504141467934088,52.05271313452702],[4.503203671268944,52.05319477991677],[4.503080561460654,52.05324773320933],[4.502692474081342,52.05344085060535],[4.502056128169632,52.053765886819804],[4.501642847135246,52.053479416609406],[4.501346941438496,52.05327837396016],[4.501281155906475,52.053251866336126],[4.501194165990552,52.0532307720697],[4.501113064280429,52.05321715555942],[4.500994205184274,52.05320697617362],[4.50022672617545,52.053229072725195],[4.500134171238162,52.05341232625109],[4.500111935771702,52.053469757374366],[4.500069653790193,52.053626450795825],[4.500068715025193,52.05367382233476],[4.500075986298187,52.053763061420696],[4.500069578909865,52.05378252728875],[4.500048171540933,52.0537981589232],[4.499640160286524,52.05400690914261],[4.499314722152291,52.05415496058898],[4.499255874498576,52.05423441613727],[4.499082385803636,52.054319506036975],[4.498661250068158,52.05450585336239],[4.497967872826218,52.05481649620493],[4.497560138023597,52.05501037432084],[4.497150550977927,52.05522096472173],[4.496423201646942,52.05557222174102],[4.496313746332921,52.055619698379516],[4.49615921547745,52.05581177421873],[4.495881742124094,52.056047511785884],[4.495609237091031,52.055882864645355],[4.495574827928263,52.05586959776332],[4.495534264305734,52.05586371780881],[4.495477036179453,52.05586142395315],[4.495093690319469,52.055889181167544],[4.49498289977384,52.05585210919874],[4.494651114093405,52.05571302361968],[4.49454230751768,52.05565181404169],[4.494198304160879,52.055369563880504],[4.493622431170313,52.05500100760394],[4.493256231648641,52.05469908106622],[4.493002883212541,52.054480686800375],[4.492844427440388,52.0543410601003],[4.492594837178158,52.0541617127549],[4.49240430773599,52.05404320761993],[4.492165907950882,52.053906684909364],[4.49194121188357,52.05376375815312],[4.491829615064814,52.05369230481493],[4.491759742728992,52.053644394993405],[4.491614219640843,52.05353644168409],[4.491357417837456,52.053341252912595],[4.491093267558218,52.05313671349282],[4.490763824675899,52.05288150244385],[4.490465270672546,52.052664619109414],[4.490310734308498,52.05255566969679],[4.490145607068137,52.05244850903425],[4.489907423499301,52.05230268911709],[4.489679948571395,52.05214859095108],[4.489503253204229,52.052017179974946],[4.489124267925859,52.05175415306228],[4.488766421559053,52.05148850867937],[4.488675910169221,52.05141813892869],[4.488590029845491,52.05134223153266],[4.48848663355328,52.05123831690042],[4.488412436262026,52.05118107786492],[4.488338071349236,52.05113219686158],[4.488236723605346,52.051076611139145],[4.488084268059349,52.05101413646481],[4.487903758112426,52.05092356487764],[4.487615639445616,52.0507132615052],[4.487336090385174,52.05052717514298],[4.487202101556576,52.050446252048665],[4.48702330256388,52.05034547216217],[4.486697132805917,52.05015438982315],[4.486601977847138,52.05009048165945],[4.48629946718285,52.04984754430968],[4.486013421284915,52.049610305047445],[4.485882907707753,52.049506189544644],[4.485445974101916,52.049204613455665],[4.485061057770078,52.04893875022196],[4.484518732548191,52.04855833354311],[4.483830859181035,52.048072737346665],[4.483622298200179,52.047925495676196],[4.483598914557425,52.04791393674601],[4.483573983272439,52.04790393893642],[4.483550701109501,52.0473636731644],[4.483535900433653,52.04727357503637],[4.483494638461739,52.04702251329938],[4.483475863782982,52.046908304286],[4.477298840837801,52.04747475300872],[4.477201807787393,52.04736431571925],[4.476932532661829,52.047385191641],[4.476691603779502,52.047429404714244],[4.476277210031234,52.04751580743993],[4.475493557475618,52.04756162575497],[4.475089175565484,52.04758862439994],[4.473178670837858,52.04771622793306],[4.473061081072603,52.04772414207219],[4.471179470762831,52.04785257568581],[4.47079935849387,52.04786736212007],[4.470712150868415,52.04785169057316],[4.470533237727641,52.04783355245856],[4.47049931723657,52.04785190379712],[4.469876472491031,52.047897417260046],[4.468698276445156,52.04798065525701],[4.467073894552363,52.048084890366894],[4.465590362309844,52.048191230063274],[4.465039334426919,52.048228309336785],[4.464944766634213,52.048258606442445],[4.464076251813114,52.04831594478179],[4.462612934498528,52.0484182797233],[4.462310405141594,52.048444874577946],[4.46219213908784,52.04848532924787],[4.45973284464149,52.048641877076875],[4.45826373374032,52.04872730378292],[4.457689267907655,52.048760721231076],[4.456312386481756,52.04883291017633],[4.455065442151581,52.04889381509826],[4.454641036467921,52.04891644142545],[4.453685229004219,52.04896595598874],[4.453065626382829,52.04901027383695],[4.452287437614292,52.04908307295458],[4.451429439291967,52.04916087769919],[4.451342457513195,52.04916877068385],[4.450576465084453,52.049236711704054],[4.449156844824232,52.04935947856825],[4.448481057304721,52.0494178054846],[4.447015569494178,52.049547749413165],[4.446427010540297,52.049598041914244],[4.445742633812586,52.04965681487174],[4.444357937775095,52.049780000934035],[4.442331312747312,52.0499669742632],[4.441723479125455,52.05002024368254],[4.44092890394643,52.05009609025811],[4.440236951762455,52.050162141094],[4.439594545150327,52.05021474404917],[4.438488487638539,52.05028395090641],[4.437879594659313,52.05027467617926],[4.437141879528436,52.05031764374171],[4.437050237986259,52.0503229807823],[4.434454516425751,52.050474134775925],[4.432869332286392,52.050579231739476],[4.43240377668949,52.050706135099425],[4.432278042413054,52.050740405066925],[4.430407344302655,52.05087099150583],[4.43032864058735,52.05089232930167],[4.428576375162854,52.052327379079664],[4.428051740711633,52.05270400082002],[4.427934013999062,52.052742466164695],[4.427561117581923,52.053094002777286],[4.424720014398432,52.05534556280406],[4.423425585251642,52.05662402798146],[4.422999298610045,52.0570634626403],[4.422985211541941,52.05708992668376],[4.422861452960917,52.05729121149083],[4.422620083230965,52.05768375481026],[4.422230159845681,52.058510750273605],[4.421768435818282,52.059480973908165],[4.42156981257043,52.059931059993765],[4.421367858796739,52.06051907576856],[4.420863689638267,52.06242260455704],[4.420778603394712,52.06319486472436],[4.42074451396766,52.06331138314271],[4.42068959448005,52.06341798699005],[4.420629606250374,52.06351483252774],[4.420436626035543,52.06367870242373],[4.419895864034165,52.06410657085509],[4.417191027571647,52.06626722473516],[4.416579740590012,52.06705635215242],[4.416063746665907,52.06768477251494],[4.415560510511736,52.068223382734935],[4.415184915813668,52.06860405338448],[4.414864721935507,52.06892107329624],[4.414589469015203,52.06915855457831],[4.414324512374593,52.06941942773108],[4.414058611496758,52.06972357267945],[4.413986366903889,52.06981621482248],[4.413952225671452,52.069895841580255],[4.413911984691045,52.06998230321569],[4.41280104655729,52.07119955392847],[4.411957022176193,52.072083620792256],[4.411894944649908,52.07207884632046],[4.41181267319756,52.072218216845464],[4.411326261295935,52.072550551897784],[4.41044406783949,52.07320940574768],[4.409302172002233,52.07405643178216],[4.409227865443885,52.07410249290185],[4.409009454988116,52.07424989079605],[4.408872884243323,52.074344917066306],[4.408555541844115,52.07458765281325],[4.408221920293649,52.074836886052644],[4.407932205306905,52.07504669069143],[4.407642182763802,52.07526975027702],[4.407079033313994,52.07568203091544],[4.406487857934121,52.076127243615595],[4.405751565646816,52.076662883632714],[4.405377476713988,52.07695856656243],[4.405266928099519,52.07705431788992],[4.404806087153176,52.0774837367267],[4.404466691173774,52.077705675814975],[4.40486018256072,52.07796391012123],[4.404354809690013,52.078166676548165],[4.403789935112245,52.07808767247818],[4.403514516631326,52.07825642683631],[4.403278162776444,52.0782992167176],[4.402376426299551,52.078338253380046],[4.40211753912963,52.078352223857216],[4.400826147532115,52.078402327234684],[4.400701062726847,52.07840844398028],[4.398810494146524,52.07848216298228],[4.398728549090952,52.07851788847309],[4.398669703438193,52.07854674264707],[4.398573982983789,52.07856877065472],[4.398520936335238,52.07857484231289],[4.398468033688897,52.07857439840516],[4.398396523572954,52.07867393156493],[4.398429735748533,52.07874943604193],[4.398407409710066,52.07883746301639],[4.398374342894238,52.07888869032198],[4.398119165760169,52.07912657174516],[4.398047767083418,52.07920119816132],[4.397562627381015,52.07971849152927],[4.397895657682017,52.079827524612796],[4.398069897041882,52.079901228926914],[4.397972256898201,52.080040919356165],[4.397929489478083,52.08011314340907],[4.397892464614866,52.08018099325979],[4.397967967818381,52.08019923586088],[4.398008974237817,52.08021719780857],[4.397998308164014,52.08025354813046],[4.397972624224353,52.08030071152357],[4.397931728491956,52.08038394437046],[4.397912736868577,52.080437222265374],[4.397898776978733,52.08047737407552],[4.397906152252571,52.08051989823408],[4.397940845951371,52.080670263492614],[4.397940714513721,52.08073029737469],[4.397926317471634,52.080790211489294],[4.397885651934178,52.08085575664793],[4.397780530747345,52.08099847618753],[4.397644110171491,52.081062929555905],[4.397557899247194,52.0810920657235],[4.39745299085856,52.0811275165856],[4.397214600953848,52.081162466193206],[4.397179662930855,52.08116758380302],[4.397171039214451,52.08125531217863],[4.397112344494522,52.08136413860046],[4.397106061180171,52.08137578898722],[4.396855812824619,52.081521899363274],[4.396591092486016,52.081676462694695],[4.396326385103974,52.08183101655856],[4.396061661106716,52.08198557868355],[4.395796935479259,52.0821401312183],[4.395568214343405,52.082273674145526],[4.395104876218709,52.08253735628965],[4.394260655636558,52.08302550952234],[4.394075125166226,52.08312953534543],[4.393966359322577,52.08319052324926],[4.393810229549139,52.08328849544815],[4.393696517784962,52.08336455128112],[4.393662010247803,52.08338763075099],[4.393609600592916,52.08345011818128],[4.393591370561285,52.08349968951324],[4.393589964810419,52.08356296653341],[4.393604994799399,52.083602274659654],[4.393720087364642,52.08370646136904],[4.394229433729638,52.08413675211272],[4.394051287258307,52.084266790269915],[4.393566886761472,52.08460174845927],[4.393190826993211,52.08484946722672],[4.393115067537905,52.08490156438019],[4.39306889517172,52.084942612399544],[4.393044867449984,52.08497857989465],[4.393029388379238,52.08501461051791],[4.393014585062544,52.085072749853154],[4.39300845261397,52.08511429744176],[4.39275176374503,52.08510098565858],[4.392676221659627,52.08508027655504],[4.39257613356081,52.0850236933862],[4.392215521941413,52.08468484327596],[4.391816613334891,52.084673896999035],[4.391730764711546,52.08466004842597],[4.391549196056817,52.08456653390145],[4.391540541061774,52.08456207432638],[4.391537348683446,52.084564564166925],[4.391403192131835,52.08466928955219],[4.391141569672497,52.084869771848474],[4.390794375402987,52.08514274236553],[4.390666392094277,52.08522956884427],[4.390601957366514,52.08525520778114],[4.390539161099065,52.0852505329329],[4.390476735177291,52.08522924122284],[4.389791891788559,52.08491066060216],[4.389160187865133,52.084627123215085],[4.389075545281647,52.08459457759012],[4.389039677514488,52.08459150528169],[4.389001363320304,52.08459671772762],[4.387906420435751,52.08523930163229],[4.387752045880934,52.08531134859462],[4.387702560064019,52.08531369737506],[4.387662322456721,52.08530505059384],[4.387494780090203,52.08521876775847],[4.387357847286017,52.08514824977505],[4.387046693905494,52.084982870255615],[4.386394402231653,52.08465508994711],[4.38573263970481,52.0843212929705],[4.385375506692408,52.084132579192755],[4.385231080640651,52.08411287961019],[4.384786737153745,52.08392062697981],[4.384541844093204,52.08380848670761],[4.384174612975119,52.083624806816864],[4.38362071094452,52.08330103925258],[4.383263164842301,52.08308273383143],[4.382876769215334,52.082838177297525],[4.382274438238474,52.082447312782065],[4.382128731801506,52.08239789099209],[4.382113040843894,52.08240858846119],[4.382087170692289,52.08242622821487],[4.38197872284691,52.082500322276424],[4.381767919182539,52.08264810366371],[4.38166657744942,52.0827227614378],[4.381564272465316,52.0827980670756],[4.381353488986379,52.08296558694645],[4.381253733826663,52.083052024036625],[4.381153652106223,52.08313869195989],[4.380965447822839,52.08331607568803],[4.380877289066698,52.08340775298658],[4.380820127394285,52.083466005547066],[4.380788873388757,52.08349786400312],[4.380623852542323,52.08368485629368],[4.380554357230874,52.08377311529949],[4.380522036645774,52.0838140970275],[4.380483918562875,52.0838624358529],[4.380373134340577,52.08402707798314],[4.380360047553338,52.08404648948234],[4.380349294855135,52.08406267602613],[4.379664048961318,52.08524258181071],[4.379447650273656,52.08568565980292],[4.379232853771204,52.086125434290885],[4.378769122008643,52.08676866642131],[4.378109918181601,52.08766503285715],[4.377869553362585,52.08799923015894],[4.377840191638636,52.088038816295075],[4.377813174731854,52.08808958638942],[4.377090204578403,52.08890992343212],[4.376242574769249,52.08987166557432],[4.376237392677598,52.089885301817425],[4.376228690694545,52.08990875940519],[4.376130591974617,52.090167338717436],[4.376098952362268,52.090250742435956],[4.376059735090827,52.09035433251643],[4.376023521449308,52.090448986689786],[4.376020046705023,52.09045809831358],[4.375991114528533,52.090531457965405],[4.375937894453672,52.090666379072104],[4.37589232407645,52.09076952806791],[4.375846345336822,52.09087330274538],[4.375744968450751,52.091078560000625],[4.375689699338488,52.09118014255305],[4.375633570344217,52.0912823109483],[4.375512845411047,52.09148352782937],[4.375451494308087,52.09157718401937],[4.3753882055268,52.091673268449235],[4.375256005325364,52.09186043619353],[4.375186313042595,52.09195249255725],[4.375115428650917,52.092045626266845],[4.374897004974639,52.09231749004793],[4.37486970867987,52.09235133147868],[4.374856090409481,52.09236822098814],[4.374827802612105,52.09240331230069],[4.374823643717823,52.09240846301475],[4.37477502504325,52.09246880850195],[4.374751481735997,52.0924980170469],[4.374747817936059,52.09250256977333],[4.37467772730996,52.092589570807135],[4.374548723180818,52.09275006000457],[4.374520608826309,52.09278455948485],[4.374499106057474,52.09281128667437],[4.374497784858704,52.092812920240796],[4.374470936456097,52.09284628903146],[4.374469494868512,52.092848083358334],[4.374458803853628,52.09286135758146],[4.374439118352073,52.0928858082757],[4.374411984501963,52.0929195341453],[4.374373843986547,52.09296693599992],[4.374347460933285,52.09299972450096],[4.374311152225449,52.093044849977645],[4.374284318948149,52.09307818290169],[4.374283027525216,52.09307978975572],[4.374280886735374,52.093082171320525],[4.373030526792638,52.09463501743175],[4.372980100565818,52.09469762974362],[4.372811341668425,52.09490394054133],[4.372699056109102,52.094872439690235],[4.372574732734877,52.09502156047147],[4.372402204088327,52.09519835553595],[4.372207958103025,52.095371295964775],[4.372022049518129,52.09552598906664],[4.371862656228773,52.0956479490048],[4.37156684618079,52.0958407681363],[4.37118741427618,52.096048748610656],[4.37075208454295,52.096273333203555],[4.370500975370968,52.09641769996873],[4.370308077468712,52.0965308116321],[4.370048292220748,52.096708072880304],[4.369763831669636,52.09692418514089],[4.369450210546888,52.09720110468332],[4.369023848362816,52.097553974216176],[4.368342644681022,52.09812687443413],[4.36741632051191,52.09892721980624],[4.366526840664837,52.09967536548263],[4.365822627308747,52.100298118739055],[4.365511599108612,52.10054696094225],[4.365124219236922,52.100839103678965],[4.364753702269712,52.101087428049254],[4.364247350996415,52.10137975832937],[4.363759636663753,52.10163683308002],[4.363280797495284,52.101933775598084],[4.36281821765435,52.10225723014144],[4.362524532700661,52.10246259346692],[4.362147421707482,52.10274581819661],[4.361705227185669,52.103115889956705],[4.361094784202575,52.10360103316994],[4.360076321839368,52.10433999008098],[4.359379669207832,52.10480009500616],[4.358283415144785,52.105489792723844],[4.357075327221636,52.10622749116801],[4.355970936758538,52.10696242621514],[4.355106183669037,52.10749053562186],[4.353998989689418,52.10815579294894],[4.353499872028765,52.10848353827144],[4.351882115544476,52.10940409625041],[4.351818541896758,52.109443645180306],[4.351808055117388,52.10945015971969],[4.350650677872745,52.11017000957877],[4.350038647271777,52.110569492566164],[4.349824697895611,52.110709136094286],[4.348919843604039,52.11127166976519],[4.348865339966932,52.11130014211006],[4.348258862966104,52.11161700540835],[4.347203525979736,52.112101571664205],[4.346327302727889,52.11241132614098],[4.345638511510117,52.112585860311476],[4.345171653968508,52.11269117134293],[4.344149170368125,52.11285654473524],[4.343455532266557,52.11291726313966],[4.342851409198246,52.11295088772774],[4.342539632259879,52.11294641756012],[4.34220076709829,52.11294156263846],[4.342135425649585,52.11294062387882],[4.341872555109536,52.11292942152967],[4.341438993541883,52.112910933876016],[4.341025996422802,52.11287590824507],[4.340346853657899,52.11278757049397],[4.339655918601336,52.112659924554116],[4.339336019220281,52.112582916263385],[4.338937391520141,52.11248695114156],[4.338660205455969,52.112400316432115],[4.338498822081392,52.11234987484059],[4.338415441848003,52.112323821064656],[4.338199114999181,52.112256207322176],[4.337303215670503,52.11190860497701],[4.336172469475724,52.11144804515963],[4.33468864090647,52.11085460722646],[4.333212444328818,52.110263582563775],[4.332263388743218,52.10989895387353],[4.331940476534056,52.10978520661327],[4.331286255055866,52.10958831247933],[4.330379845348784,52.10936555885515],[4.329491979985903,52.109168914852404],[4.329121541776955,52.10907820273736],[4.3291295565327,52.109051065994876],[4.328911109182583,52.109003352804066],[4.303931122866741,52.12784026208166],[4.302465122983521,52.12894507439764],[4.305980580468806,52.1313456120179],[4.308352153097592,52.1330563008634],[4.310723950631504,52.13476514469005],[4.312853282772617,52.136602065928045],[4.315015352483727,52.13842126739692],[4.317333153583585,52.140150156300166],[4.319628945446459,52.14189048401293],[4.321801921583647,52.14370336277184],[4.324267118691433,52.14533906130443],[4.326532279581643,52.14709964750695],[4.328711930813236,52.14889986999104],[4.330833888900183,52.150737286020515],[4.332945900767099,52.152570079029765],[4.335140454446781,52.15438019840207],[4.337369213840192,52.156172602524386],[4.339492084169358,52.15800087571135],[4.341694981167434,52.15978936969518],[4.343830016579658,52.16161227619746],[4.346016163145792,52.16344458203229],[4.348079585454215,52.16528205690073],[4.350158732009037,52.167079183790605],[4.352457402812845,52.168998644241675],[4.35465240464779,52.17079490684075],[4.356676476139275,52.17265704834353],[4.358703743349163,52.17451468708882],[4.360634943883537,52.1762339293442],[4.362793733880509,52.178044999561074],[4.364917263732258,52.17987100369931],[4.366935049735136,52.18172481712165],[4.368858244862881,52.18362991161995],[4.370940858897958,52.18547702185654],[4.372911419777437,52.18737166868918],[4.374933875348146,52.18924245714504],[4.377053680874931,52.19108438048163],[4.379101357775944,52.19295441125071],[4.380960642888659,52.19488392070418],[4.382740529570579,52.19683879024106],[4.38457022947595,52.198732034058324],[4.386405803218338,52.20069630653999],[4.388307243754306,52.20260088355429],[4.390012397722003,52.20458916083185],[4.3917750523317,52.20656441403295],[4.393609240871183,52.20855372395165],[4.395415355011238,52.21049692692194],[4.397550161569439,52.21233948915358],[4.398491286638689,52.21456931040016],[4.400122622915466,52.21662782245774],[4.402385139163291,52.21840844098256],[4.404313386051331,52.22029049833704],[4.406211085168751,52.222237884165914],[4.408265129605743,52.22407148251083],[4.410023428284743,52.22605000646736],[4.411818863326639,52.22801083257173],[4.413527321288376,52.2300068662964],[4.415093196958767,52.232036754960944],[4.416852307769129,52.23400618916809],[4.418613408984359,52.23595853401935],[4.420402827799324,52.237894903766204],[4.422223788899216,52.23986925356279],[4.423932071536083,52.24184804793437],[4.425503654722386,52.24385806132479],[4.427267288556363,52.24586421988062],[4.428950766408241,52.24785981321066],[4.430594571684654,52.24986854224523],[4.432305072527566,52.2518472255911],[4.433976536003359,52.25387769988034],[4.43559591358781,52.25588525867768],[4.437423173521393,52.25783604084047],[4.439198970988956,52.259803458061214],[4.44081833990596,52.261832512382455],[4.442373048214933,52.263878103717346],[4.444071330895516,52.26586100210232],[4.445663405192161,52.26788527331725],[4.447154835576261,52.26996444833034],[4.448813743924872,52.271959544234704],[4.450494132193671,52.27398534560045],[4.452032060146577,52.27596415432839],[4.453672212223204,52.27796621955511],[4.455236543318646,52.28002698510842],[4.456917265391198,52.28199516668905],[4.458659342045803,52.283979983583336],[4.460150807021264,52.286041904632064],[4.461733923792307,52.288073064020665],[4.463410297946507,52.29006717884421],[4.464847716416823,52.292140298310485],[4.466445548114226,52.29418948110567],[4.468062711420508,52.296232499241846],[4.469520546746653,52.29825987609587],[4.470971780354658,52.300329426822465],[4.472715033241672,52.302322120830375],[4.474033978452332,52.304421167568776],[4.475618380645113,52.30645213685369],[4.477084843905364,52.308520824902146],[4.478822891953863,52.31065359786639],[4.480201447681985,52.312588544042896],[4.48162856916172,52.314664958702664],[4.48326874053167,52.3165847915536],[4.484639654784991,52.31819245481304],[4.486312858485237,52.32023203708017],[4.487803144436684,52.32225761999258],[4.489178960260222,52.324365004463715],[4.490606514437096,52.326459281334444],[4.492151693325772,52.32847443512967],[4.493686309880561,52.33051105890994],[4.49493228078079,52.332608401407356],[4.496313821610982,52.334682482333456],[4.497861470047374,52.33674790738424],[4.499199368785885,52.33881623063212],[4.500635606094412,52.340889768163905],[4.502098531795855,52.342956295877116],[4.503602947805511,52.34500963164778],[4.505039607770725,52.34708221540809],[4.506243537344792,52.34920338107128],[4.507666980145524,52.351289313565104],[4.509185392233171,52.35333009288639],[4.51060930010757,52.35540610346039],[4.511964177929999,52.35749057294429],[4.513347036300731,52.35957702958492],[4.514662164255314,52.361680046529465],[4.51589358225234,52.36379052039901],[4.517154354703435,52.36590748734278],[4.518428724199774,52.36801105709442],[4.519733483797229,52.37014359597011],[4.520977508444518,52.37223432965797],[4.522510530738256,52.37427143430348],[4.523948840813548,52.376352766990955],[4.525416567651419,52.37843878875945],[4.526842036148651,52.38051459688827],[4.528253125643004,52.3825812940026],[4.529664276723924,52.38465156840002],[4.530856003336695,52.38675708847671],[4.532197922669507,52.38885019766581],[4.533471120710725,52.390932907931095],[4.534900821872721,52.39298167643291],[4.536071848843227,52.39511844691127],[4.537327261371778,52.39722794724497],[4.538748981521882,52.399329636324424],[4.540304441990055,52.401360359611054],[4.541684185195569,52.403442835476824],[4.54307736767564,52.40552089553622],[4.544538565620706,52.40758414207161],[4.545696069190019,52.40970363344374],[4.547035004994408,52.411794738839795],[4.54824719956498,52.41391009619964],[4.549606168295381,52.415965359727004],[4.550633200605289,52.41809016589392],[4.551877990274249,52.42021020571782],[4.553009306984531,52.42235100297943],[4.554000726334636,52.424509678792205],[4.555062924104447,52.4266625504366],[4.556011617724205,52.42883618582611],[4.556777454979289,52.43104268474875],[4.557358417661606,52.433309899070906],[4.557858686110707,52.435570252968695],[4.558440872858144,52.43777814799079],[4.558445515635555,52.44012221197143],[4.558519529298954,52.44245327808175],[4.558482302480648,52.44499118430003],[4.558627342510249,52.447300274876156],[4.557925031435679,52.44976881492484],[4.557139931691495,52.45225474584638],[4.55390828747754,52.46138805538511],[4.553887181868381,52.46144769396419],[4.553874981657607,52.46148216634696],[4.553956368843256,52.46150080389717],[4.554568832897591,52.46164108353997],[4.554652081373847,52.46166014712046],[4.554720102584592,52.46171115425257],[4.554735439266255,52.46177738526903],[4.554792959662112,52.461884420535824],[4.554838928423001,52.46195866802704],[4.554830777640546,52.462011782687014],[4.55479507385083,52.46205590482682],[4.554785186919128,52.462100405958665],[4.554723736363737,52.462159959124094],[4.554660260571807,52.462211400018894],[4.554603226224752,52.46226693063176],[4.554579377140085,52.46232381775902],[4.554577220599768,52.46232894364084],[4.554585940134368,52.462361325042544],[4.554662431833325,52.46240405998306],[4.554797821459218,52.46245722982764],[4.554813931736983,52.46246204356385],[4.555001256590271,52.462517986533584],[4.555166400179795,52.46253517089806],[4.555195829949019,52.46251481332716],[4.555202523879245,52.46251018664297],[4.555411397843264,52.46250868630663],[4.555564761455069,52.46249970484632],[4.555700999872657,52.46247335547631],[4.555742292301414,52.462465367303814],[4.55585105698309,52.4624414315446],[4.555923827644044,52.46242542221893],[4.55607368178622,52.462361212376024],[4.556120084092828,52.46234752567307],[4.556140806479426,52.46233477343072],[4.556166768845399,52.462318804328596],[4.556172921477839,52.462291290835694],[4.556135868670943,52.46226786952273],[4.556074740557711,52.462286854671476],[4.555993137348421,52.4622842872777],[4.555887407498077,52.46229396281806],[4.555853605793616,52.462305823386444],[4.5557783590557,52.46233223217442],[4.555766138810778,52.46233652353717],[4.555579778688775,52.46237169796128],[4.555440996523025,52.462382309667284],[4.555337853985879,52.46236940751891],[4.555334399523423,52.46236765762091],[4.555265281920514,52.46233260551255],[4.555262870184073,52.4623286159771],[4.555223883351617,52.46226409752889],[4.555242780093904,52.462179439142616],[4.555256990888645,52.4620959162846],[4.555321268287665,52.46206361574477],[4.55542924552666,52.462015785250934],[4.55553935710062,52.461971816414184],[4.555655410715119,52.46193188872868],[4.555861800376391,52.461869828302504],[4.555926789367902,52.4618473830656],[4.555942236892924,52.46184204476562],[4.556047317912984,52.461805760716075],[4.556066986340746,52.461798969002785],[4.556067619845267,52.461799710444346],[4.55633338069062,52.46171730357047],[4.556338535635689,52.46171704310002],[4.556341882853253,52.46171823497329],[4.556342336071044,52.461718390942345],[4.556350224253768,52.461715974576606],[4.558566696243441,52.46103615446342],[4.558584292843729,52.46103074096406],[4.558767672370809,52.4609743657411],[4.558838724135426,52.46095252751444],[4.559016811712552,52.460898200103514],[4.559019786202028,52.46089729513828],[4.559048915120974,52.46088735138565],[4.559049491272806,52.460885656714595],[4.559051016355075,52.46088121840293],[4.559051327424633,52.46088032179505],[4.559015978466657,52.460829536414884],[4.559006043391021,52.460826554960505],[4.559004916608152,52.460826223527846],[4.558998710558229,52.460827618222496],[4.558968094095651,52.46083449571568],[4.55896470514338,52.46083553260121],[4.558962100481495,52.46083633229509],[4.558956299135236,52.46083811629062],[4.558946413491079,52.46084113903261],[4.558945333105081,52.4608414730214],[4.558929942038108,52.46084619194604],[4.558925265380509,52.460847633273175],[4.558450729943115,52.4609931550835],[4.558442649565455,52.460995633159264],[4.558363148333551,52.46102000056649],[4.558266968427856,52.4610494732205],[4.558263549849779,52.46105051886679],[4.557964929463533,52.460728473487755],[4.557931372281731,52.460669305694225],[4.557915143186463,52.46054919592165],[4.557923442088285,52.46050444973967],[4.558086903959961,52.46020594843997],[4.558091459667369,52.460197612649374],[4.558123743535938,52.46013865369397],[4.558128436858636,52.460130040242184],[4.558141943210375,52.46010183208006],[4.558674213783645,52.458988925479645],[4.559010417272474,52.45829422487124],[4.559031548187582,52.458279938063676],[4.559054661271645,52.45826429895177],[4.559107093897302,52.458233153946495],[4.559135942553051,52.45820428887075],[4.559167039012904,52.458153590114115],[4.559169596782082,52.458097119572],[4.559170591697217,52.458050255073566],[4.559177940742383,52.457952402150234],[4.559215128590094,52.457862379301055],[4.559218780491915,52.45785356978632],[4.559234301525179,52.457818266203184],[4.559444311437212,52.457342048429275],[4.559519576822542,52.45718274363866],[4.559597588668806,52.457040184295316],[4.55959769500787,52.457040005281385],[4.559597801346936,52.45703982626748],[4.559597907686001,52.457039647253545],[4.559598014025065,52.457039468239635],[4.559598120364127,52.45703928922569],[4.559598241414141,52.45703911031449],[4.559598347753203,52.45703893130056],[4.559598453924144,52.457038761273274],[4.559598560263202,52.457038582259386],[4.55959866660226,52.45703840324546],[4.559598787652271,52.45703822433422],[4.559598893991327,52.45703804532031],[4.559599000330383,52.457037866306415],[4.559599121380391,52.45703768739516],[4.559599227887564,52.457037499394595],[4.559599575990385,52.45703698053152],[4.559599727639127,52.45703673891919],[4.559599879287866,52.45703649730691],[4.559600030768484,52.45703626468123],[4.55960018241722,52.457036023068916],[4.559600333897837,52.45703579044325],[4.55960048554657,52.45703554883094],[4.559600606596566,52.457035369919694],[4.55960068233687,52.45703525360689],[4.559600758413414,52.45703511932078],[4.559600849032788,52.45703499412401],[4.55960095503559,52.457034833083334],[4.55960107642182,52.457034636198856],[4.559601197639927,52.45703444830095],[4.559601318858036,52.457034260403105],[4.559601439908024,52.4570340814919],[4.559601561126128,52.45703389359403],[4.559601682176114,52.457033714682794],[4.559601803057981,52.457033544758204],[4.559601909060776,52.45703338371761],[4.559602015399807,52.457033204703656],[4.559602136113552,52.45703304376572],[4.559602242284464,52.45703287373844],[4.559602438402263,52.45703261446093],[4.559602544573173,52.45703244443365],[4.559602680838458,52.45703223866521],[4.559602847366235,52.45703198816896],[4.559602953200903,52.457031836114986],[4.559603058867454,52.457031693047604],[4.559603164534001,52.45703154998026],[4.559603285583974,52.45703137106902],[4.559603406802064,52.457031183171146],[4.559603542562987,52.45703100436261],[4.559603663781073,52.45703081646475],[4.55960379971011,52.457030628669585],[4.559603935639146,52.457030440874384],[4.559604056857229,52.45703025297656],[4.559604192618145,52.457030074168024],[4.559604328547176,52.457029886372865],[4.559604449765259,52.457029698474976],[4.559604585694289,52.457029510679824],[4.5596047214552,52.45702933187132],[4.559604857384227,52.45702914407616],[4.559604978602304,52.45702895617826],[4.559605114363211,52.457028777369736],[4.559605250292236,52.45702858957456],[4.559606307461902,52.45702713194104],[4.559606533842138,52.45702682793573],[4.559606729959888,52.45702656865821],[4.559606820579227,52.45702644346144],[4.559606956340122,52.45702626465288],[4.559607137410681,52.45702602324598],[4.55960731831312,52.457025790825725],[4.559607499383678,52.45702554941878],[4.559607665575165,52.45702531689584],[4.559607846477599,52.45702508447552],[4.55960802754815,52.457024843068595],[4.559608193403398,52.457024628518944],[4.559608328828043,52.45702446768369],[4.559608449709858,52.45702429775906],[4.559608585302619,52.457024127937174],[4.559608706184432,52.4570239580126],[4.559608841609073,52.457023797177364],[4.559608977201831,52.45702362735547],[4.559609098083642,52.457023457430886],[4.559609233508279,52.45702329659563],[4.559609369101035,52.45702312677372],[4.559609489982843,52.457022956849144],[4.559609625407478,52.457022796013916],[4.559609761000229,52.45702262619198],[4.559609881882033,52.457022456267424],[4.559610017306667,52.45702229543218],[4.559610152899415,52.45702212561027],[4.559610288324046,52.457021964775],[4.559610423916792,52.457021794953114],[4.559610544798591,52.457021625028545],[4.559610680223218,52.457021464193296],[4.559610815815963,52.457021294371415],[4.559610951240589,52.457021133536166],[4.559611086833331,52.45702096371428],[4.559611222257954,52.457020802879015],[4.559611357850694,52.457020633057134],[4.559611493275316,52.45702047222188],[4.559611628868051,52.457020302399975],[4.559611764292672,52.457020141564726],[4.559611899885408,52.457019971742845],[4.559612035310025,52.4570198109076],[4.559612170902759,52.457019641085665],[4.559612306327374,52.45701948025045],[4.559612863241123,52.4570188100522],[4.559613043471038,52.45701861357848],[4.559613239252478,52.45701837227423],[4.559613435033918,52.457018130970035],[4.559613645526299,52.45701788976846],[4.559613856018679,52.45701764856697],[4.559614051800111,52.45701740726272],[4.559614262292485,52.4570171660612],[4.559614458073913,52.45701692475695],[4.559614668566284,52.45701668355545],[4.559614879058652,52.457016442353904],[4.559615089551017,52.45701620115236],[4.559615285332437,52.45701595984814],[4.559615495824798,52.45701571864659],[4.559615706317159,52.45701547744504],[4.559615916641398,52.457015245230146],[4.559616081992223,52.4570150576404],[4.55961623229587,52.45701488792119],[4.559616487761636,52.45701460209455],[4.559616667991516,52.45701440562081],[4.559616818463273,52.457014226914964],[4.559616983645977,52.45701404831181],[4.559617148828679,52.45701386970867],[4.559617299300432,52.45701369100286],[4.559617464651247,52.457013503413066],[4.559617629833943,52.457013324809914],[4.559617795016638,52.45701314620677],[4.559617960199332,52.4570129676036],[4.559618125382025,52.45701278900048],[4.559618275853773,52.45701261029463],[4.559618441036464,52.45701243169148],[4.559618606219151,52.45701225308836],[4.559618771401838,52.45701207448518],[4.559618936584524,52.45701189588205],[4.559619191882137,52.457011619042035],[4.559619357064823,52.457011440438905],[4.559619491985039,52.45701130656353],[4.559619612194312,52.45701117258554],[4.559619732403588,52.45701103860749],[4.559619867323804,52.457010904732144],[4.559620032674594,52.457010717142346],[4.559620212736328,52.45701052965527],[4.559620347824658,52.45701038679331],[4.559620468033927,52.457010252815266],[4.559620602954137,52.45701011893991],[4.559620723163406,52.45700998496188],[4.559620858083615,52.45700985108652],[4.559620978292882,52.45700971710848],[4.559621113381205,52.4570095742465],[4.55962123359047,52.457009440268486],[4.559621368510676,52.45700930639314],[4.559621503430883,52.4570091725178],[4.559621623640147,52.45700903853979],[4.559621758560349,52.45700890466444],[4.559621878937724,52.45700876169972],[4.559622013857927,52.457008627824415],[4.559622148778129,52.457008493949076],[4.559622283698328,52.45700836007373],[4.559622403907587,52.45700822609569],[4.559622538827788,52.45700809222037],[4.559622673747985,52.45700795834503],[4.559622793957242,52.45700782436698],[4.559622928877439,52.457007690491665],[4.559623063797635,52.45700755661632],[4.559623198885946,52.457007413754326],[4.559623319095197,52.45700727977624],[4.559623468894447,52.45700713701701],[4.559623618693697,52.457006994257675],[4.559624008743328,52.457006592528984],[4.559624293630876,52.45700630690772],[4.559624578518422,52.457006021286446],[4.55962486340596,52.45700573566516],[4.559625148293499,52.457005450043894],[4.559625433012918,52.457005173409286],[4.559625717900448,52.457004887787996],[4.559626002787975,52.457004602166734],[4.559626287675496,52.45700431654545],[4.559626587105845,52.45700404001354],[4.559626871993358,52.45700375439225],[4.559627171423696,52.457003477860326],[4.559627456311204,52.45700319223903],[4.559627755909649,52.45700290672047],[4.559628040629035,52.457002630085825],[4.559628340227473,52.45700234456723],[4.559628639657792,52.4570020680353],[4.559628924377169,52.457001791400664],[4.559629223975593,52.457001505882076],[4.559629523405902,52.45700122935014],[4.559629822836206,52.45700095281819],[4.559630122434619,52.45700066729959],[4.559630421864917,52.45700039076767],[4.559630721295211,52.45700011423568],[4.559631020725501,52.456999837703755],[4.559631334866726,52.45699956127452],[4.55963163446512,52.456999275755905],[4.559631933895397,52.45699899922395],[4.55963224803661,52.456998722794715],[4.559632547466882,52.45699844626276],[4.559632861608089,52.456998169833525],[4.559633161038351,52.45699789330157],[4.559633475011438,52.456997625858946],[4.559633774441691,52.45699734932699],[4.559634088582882,52.4569970728977],[4.559634402724067,52.456996796468474],[4.559634716865251,52.45699652003921],[4.559635016127378,52.456996252493894],[4.559635330268553,52.456995976064626],[4.559635644409723,52.456995699635364],[4.559635958382779,52.45699543219275],[4.559636272523941,52.45699515576351],[4.559636601207927,52.45699488842355],[4.559636915349082,52.456994611994304],[4.559637229322121,52.45699434455168],[4.559637543463269,52.4569940681224],[4.559637872147237,52.45699380078246],[4.559638186120266,52.45699353333983],[4.559638500261401,52.45699325691054],[4.559638828945359,52.45699298957062],[4.559639142918374,52.456992722128],[4.559639471602324,52.45699245478807],[4.559639800454381,52.456992178461505],[4.559640114427387,52.45699191101886],[4.559640443111324,52.456991643678954],[4.559640771795257,52.456991376338976],[4.559641100479188,52.45699110899904],[4.559641429163112,52.45699084165909],[4.559641757847034,52.456990574319164],[4.559642086530951,52.45699030697922],[4.559642415046755,52.45699004862592],[4.559642743730665,52.456989781285955],[4.559643072414571,52.456989513946034],[4.559643401098471,52.456989246606085],[4.559643654882809,52.45698905064577],[4.559644013492906,52.45698875655131],[4.559644297035329,52.456988542823126],[4.55964562614557,52.456987491539316],[4.559646969630463,52.45698645833143],[4.559648327826229,52.45698542522621],[4.559649700732865,52.45698439222375],[4.55965108835037,52.45698335932392],[4.559652490342528,52.45698234450003],[4.55965389250273,52.45698132068951],[4.559655323748516,52.45698031505766],[4.559656769873278,52.456979300541796],[4.559658215829866,52.45697829501263],[4.559659676329214,52.45697729857274],[4.55966116625036,52.45697630233819],[4.559662656003329,52.45697531509028],[4.559664175178098,52.45697432804773],[4.559665679473762,52.456973349889154],[4.559667227734043,52.45697238102524],[4.559668761451431,52.45697140307194],[4.559670324086298,52.456970452283976],[4.559671901768236,52.45696948362541],[4.559673478945793,52.45696854192673],[4.559675071002314,52.45696759134406],[4.559676692144417,52.456966658940075],[4.559678313454556,52.45696571754937],[4.559679949139347,52.45696479423467],[4.559681584824069,52.456963870919935],[4.559683249762477,52.456962956797184],[4.559684929411743,52.45696204277711],[4.559686608724735,52.45696114673028],[4.559688302916689,52.456960241799486],[4.559690011483297,52.45695935494464],[4.559691734760764,52.45695846819247],[4.559693472412883,52.45695759951624],[4.559695210064939,52.45695673083996],[4.55969696225975,52.45695587125305],[4.559698729165417,52.45695501176871],[4.559700510445745,52.45695417036038],[4.559702291894102,52.45695331996536],[4.559704102428041,52.45695248774897],[4.559705898082894,52.45695166441654],[4.559707737702351,52.45695085037872],[4.559709562778917,52.45695002725161],[4.559711402062045,52.456949231187075],[4.559713256056032,52.45694843522516],[4.559715124592779,52.45694764835254],[4.559716993129459,52.456946861479935],[4.559718876040805,52.45694609268323],[4.559720773663006,52.456945323989196],[4.559722670948955,52.45694457326844],[4.559724582945758,52.45694382265031],[4.559726509485327,52.45694308112147],[4.559728435856735,52.45694234857926],[4.559730391481832,52.456941625229035],[4.559732332395943,52.45694090177606],[4.559734302227556,52.4569402054884],[4.559736257516277,52.45693950011134],[4.559738241890594,52.45693881291291],[4.559740226264849,52.456938125714466],[4.559742225013784,52.456937456591916],[4.559744223762655,52.45693678746935],[4.559746236886208,52.456936136422705],[4.559748250009701,52.45693548537604],[4.559750277507877,52.456934852405325],[4.559752305005994,52.456934219434515],[4.559754346878798,52.45693360453967],[4.559756403462463,52.45693298974749],[4.559758459709894,52.456932392928564],[4.559760515957273,52.45693179610958],[4.55976258657934,52.45693121736652],[4.559764657201355,52.45693063862344],[4.559766742198062,52.45693007795624],[4.559768827194715,52.45692951728906],[4.559770926566064,52.456928974697774],[4.559773025937361,52.45692843210648],[4.559775139683357,52.4569279075911],[4.559777238550305,52.456927391959645],[4.559779366670952,52.456926885520154],[4.559781480080633,52.45692637897792],[4.559783607696941,52.456925899498316],[4.559785750192199,52.456925411134634],[4.55978787764033,52.456924940641564],[4.559790019631251,52.45692447923777],[4.559792175996884,52.45692403590988],[4.55979431781964,52.45692358349264],[4.559796473849028,52.45692315813795],[4.559798629878377,52.456922732783255],[4.55980080028244,52.45692232550446],[4.559802955975551,52.45692191812295],[4.559805140754294,52.45692152892004],[4.559807310822087,52.45692113961441],[4.559809480553689,52.45692076828204],[4.559811664828093,52.456920406038925],[4.559813848934386,52.45692005278244],[4.559816018161654,52.456919708409835],[4.559818216642641,52.4569193732292],[4.559820400244611,52.45691904693254],[4.559822598221311,52.45691873871169],[4.559824781655142,52.45691842140159],[4.559826979295638,52.45691813115401],[4.559829176936104,52.4569178409064],[4.559831374072327,52.456917577618675],[4.559833556665682,52.45691730524157],[4.559835768344693,52.456917051043085],[4.559837965144697,52.45691680572848],[4.559840161776608,52.45691656940054],[4.559842358240425,52.45691634205915],[4.559844569247062,52.45691612380702],[4.559846765374696,52.4569159144389],[4.559848961166174,52.456915723043956],[4.559851156957633,52.456915531649],[4.559853367123852,52.456915358329944],[4.559855562579141,52.45691518490818],[4.559857757698279,52.456915029459665],[4.559859952817403,52.4569148740111],[4.559862162311293,52.45691473663845],[4.559864356926193,52.456914608149745],[4.559866551373014,52.45691448864763],[4.559868731108914,52.45691436904278],[4.559870925051522,52.456914276500555],[4.559873119162182,52.45691417497159],[4.559875312768648,52.45691410040253],[4.55987749166419,52.45691402573073],[4.559879670391666,52.4569139600456],[4.559881848951075,52.456913903346994],[4.559884027174355,52.456913864621704],[4.559886205397631,52.45691382589636],[4.559888383452845,52.456913796157565],[4.559890546629085,52.456913775302766],[4.559892915421965,52.45691377385845],[4.55989372469016,52.456913770518376],[4.55989400419748,52.45691377246898],[4.559894342716505,52.45691376584363],[4.559894798754764,52.45691376902621],[4.559895254793022,52.45691377220883],[4.559895710831281,52.45691377539137],[4.55989616686954,52.456913778574005],[4.559896622907798,52.45691378175659],[4.559897079114118,52.45691377595254],[4.559897535152376,52.456913779135114],[4.559897991190634,52.45691378231769],[4.559898447060836,52.456913794486915],[4.559898888388184,52.45691379756682],[4.559899344426443,52.45691380074939],[4.5598998004647,52.456913803932004],[4.559900256502962,52.456913807114546],[4.559900712373163,52.45691381928374],[4.559901168411423,52.45691382246632],[4.559901565606037,52.45691382523825],[4.559901962632593,52.4569138369968],[4.559902418670854,52.45691384017936],[4.559902874541057,52.456913852348535],[4.559903330579314,52.456913855531134],[4.559903786449519,52.4569138677003],[4.559904242319722,52.456913879869504],[4.559904698357983,52.45691388305208],[4.559905139517276,52.45691389511862],[4.559905595387479,52.456913907287806],[4.559906051257683,52.456913919457],[4.559906507295946,52.456913922639565],[4.559906963166153,52.45691393480873],[4.559907419036358,52.45691394697791],[4.559907874906562,52.4569139591471],[4.559908286644032,52.456913971008305],[4.559908551272387,52.45691398184287],[4.559909213095357,52.456913995449305],[4.559909624832827,52.45691400731053],[4.559910021691333,52.456914028055685],[4.559910433428804,52.45691403991686],[4.559910830455365,52.45691405167542],[4.559911242192839,52.45691406353657],[4.559911639219398,52.45691407529511],[4.559912050788816,52.45691409614291],[4.559912447815378,52.45691410790144],[4.559912859552851,52.456914119762615],[4.559913256411357,52.4569141405078],[4.559913668148833,52.45691415236896],[4.559914065007337,52.45691417311412],[4.559914476744814,52.45691418497529],[4.559914873603321,52.45691420572045],[4.559915285340796,52.456914217581605],[4.559915682199306,52.45691423832677],[4.559916093936781,52.456914250187914],[4.55991649079529,52.45691427093309],[4.559916902364713,52.45691429178089],[4.559917299223223,52.45691431252603],[4.5599177109607,52.456914324387206],[4.559918107819211,52.45691434513234],[4.559918519388634,52.45691436598013],[4.559918916247145,52.456914386725295],[4.559919327816568,52.45691440757308],[4.559919724675083,52.45691442831824],[4.559920136244508,52.45691444916603],[4.559920533103019,52.45691446991117],[4.559920944672444,52.45691449075894],[4.55992134153096,52.456914511504095],[4.559921797233121,52.456914532659844],[4.559922561528326,52.456914573944786],[4.559922884832284,52.456914594176595],[4.559923193425328,52.45691461430577],[4.55992351689734,52.45691462555093],[4.559924354579054,52.45691467633583],[4.559924692593922,52.45691469667028],[4.559925001186969,52.45691471679945],[4.559925324490929,52.45691473703129],[4.559925633083973,52.45691475716045],[4.559925941677021,52.45691477728958],[4.559926264980978,52.456914797521385],[4.559926573574027,52.45691481765053],[4.559926896877987,52.45691483788236],[4.559927205471035,52.45691485801149],[4.559927528774996,52.4569148782433],[4.559927837368043,52.45691489837247],[4.559928145961091,52.456914918501624],[4.559928469265053,52.456914938733426],[4.559928777858103,52.45691495886257],[4.559929101162065,52.45691497909438],[4.559929644793605,52.45691501883936],[4.55992999735134,52.45691504826315],[4.559930350077127,52.456915068700255],[4.559930717345773,52.456915098226666],[4.559931452051122,52.45691514829288],[4.559931848741596,52.4569151780246],[4.559932216010246,52.456915207551056],[4.559932583278898,52.45691523707743],[4.559932935836635,52.45691526650122],[4.559933303105287,52.45691529602759],[4.559933670373938,52.45691532555403],[4.559934037810642,52.456915346093794],[4.559934405079296,52.45691537562018],[4.559934772347948,52.456915405146624],[4.559935124905689,52.45691543457036],[4.559935492174344,52.456915464096774],[4.559935859442999,52.45691549362319],[4.559936226711654,52.45691552314957],[4.559936579101349,52.456915561559974],[4.559936931827141,52.45691558199707],[4.559937240252148,52.45691561111284],[4.559937504712471,52.456915630933985],[4.559937783883704,52.45691565085781],[4.559938062886888,52.45691567976823],[4.559938944197229,52.456915757820894],[4.55993931129784,52.456915796333966],[4.55993969327741,52.45691582596301],[4.559940060378022,52.45691586447603],[4.559940427646684,52.4569158940024],[4.559940794747296,52.45691593251549],[4.559941176726871,52.4569159621445],[4.559941543827483,52.45691600065753],[4.559941911096148,52.45691603018394],[4.559942278196762,52.45691606869697],[4.55994266000829,52.456916107312665],[4.559943027276955,52.45691613683907],[4.559943394377573,52.45691617535208],[4.559943761646237,52.45691620487846],[4.559944143457768,52.456916243494135],[4.5599445252693,52.45691628210981],[4.559945127408421,52.45691634023864],[4.559946052515429,52.45691643657251],[4.559946566389081,52.45691649408538],[4.559947065719871,52.45691654250897],[4.559947579593523,52.456916600021856],[4.559948078924313,52.45691664844543],[4.559948592797969,52.456916705958285],[4.559949091960715,52.45691676336848],[4.559949605834372,52.456916820881396],[4.559950119876082,52.456916869407586],[4.559950619038831,52.45691692681778],[4.559951132912493,52.45691698433067],[4.559951632075244,52.456917041740866],[4.559952145948912,52.456917099253715],[4.559952644943618,52.456917165650545],[4.559953158817287,52.45691722316341],[4.559953657980043,52.45691728057358],[4.559954171853713,52.45691733808643],[4.559954670848425,52.45691740448327],[4.559955184722101,52.45691746199612],[4.559955683716816,52.45691752839295],[4.559956065360321,52.45691757599521],[4.559956447171875,52.45691761461089],[4.559956946166595,52.45691768100768],[4.559957459872228,52.45691774750713],[4.559957959034996,52.456917804917325],[4.559958458029722,52.45691787131416],[4.55995897173536,52.456917937813614],[4.559959470730085,52.456918004210415],[4.559959969724814,52.45691807060725],[4.559960483430458,52.456918137106726],[4.559960982425188,52.4569182035035],[4.559961481419922,52.456918269900285],[4.559961921739046,52.456918326899824],[4.559962934439432,52.4569184597961],[4.559963242696434,52.45691849789843],[4.559963550785389,52.45691854498741],[4.559963873585259,52.45691859217905],[4.559964181842261,52.45691863028137],[4.559964489931219,52.45691867737039],[4.559964798188222,52.45691871547269],[4.559965106277181,52.456918762561685],[4.559965414366141,52.45691880965067],[4.5599657224551,52.45691885673963],[4.559966030712106,52.45691889484194],[4.559966353511981,52.456918942033596],[4.559966661600944,52.456918989122585],[4.559966969689905,52.456919036211545],[4.559967277946913,52.456919074313866],[4.559967600578746,52.45691913049214],[4.559968525013687,52.45691926277242],[4.559968803680825,52.456919309656065],[4.559969082516011,52.45691934755309],[4.559969346640282,52.45691938534747],[4.559970124134138,52.4569195076145],[4.559970359004627,52.45691953621691],[4.559970593707073,52.45691957380598],[4.559970828409517,52.45691961139503],[4.55997104840105,52.45691964888141],[4.559971283103497,52.45691968647046],[4.559971517973987,52.45691971507285],[4.559971752676435,52.45691975266192],[4.559971987378884,52.45691979025094],[4.559972222081332,52.45691982784],[4.55997245678378,52.456919865429036],[4.559972691486228,52.45691990301807],[4.559972911477765,52.45691994050446],[4.559973146180212,52.4569199780935],[4.559973380882664,52.45692001568254],[4.559973630296028,52.45692005337426],[4.559973982349705,52.456920109757796],[4.559974261016856,52.45692015664146],[4.559974554394921,52.45692020362775],[4.559974847772986,52.45692025061407],[4.55997512644014,52.456920297497724],[4.559975419818207,52.456920344484004],[4.559975698485361,52.45692039136767],[4.559975991863428,52.45692043835394],[4.559976285241496,52.456920485340234],[4.559976578619566,52.45692053232651],[4.559976857286722,52.45692057921015],[4.559977150664793,52.456920626196435],[4.559977444042866,52.45692067318275],[4.55997772254198,52.45692072905301],[4.559978015920052,52.456920776039325],[4.559978309298126,52.45692082302562],[4.559978631929987,52.456920879203835],[4.559978969272762,52.45692093548474],[4.559979291904624,52.45692099166296],[4.559979614536487,52.45692104784121],[4.559979937168351,52.45692110401947],[4.559980274511132,52.45692116030034],[4.559980597142995,52.45692121647861],[4.559980919774862,52.45692127265681],[4.559982034107446,52.45692147816459],[4.559982400704016,52.45692154363746],[4.559982782011504,52.45692160921294],[4.559983148608079,52.45692167468579],[4.559984175011278,52.45692186160434],[4.559984585572558,52.45692193637175],[4.559984981422925,52.45692201103651],[4.559985362730422,52.45692207661204],[4.559985758580792,52.45692215127679],[4.559986139720251,52.45692222583888],[4.559986535570624,52.45692230050365],[4.559986931589037,52.45692236618178],[4.559988749356948,52.456922720403135],[4.560885943236557,52.45708470048036],[4.561154286424124,52.45713146476439],[4.561530526060723,52.45719209319941],[4.56204647287134,52.457287064707764],[4.563008261959911,52.457455877556995],[4.56330032258074,52.457506037460206],[4.564109659581512,52.45764504765626],[4.565042852387451,52.457811991598525],[4.565097918360919,52.457903321111864],[4.565098303874379,52.457903952931844],[4.565201580965843,52.45807548237539],[4.565201388215884,52.45807556192914],[4.565201165876311,52.45807565026555],[4.56520095824805,52.45807573870395],[4.565200750786774,52.45807581815573],[4.565200409754766,52.45807595959595],[4.565198645081486,52.45807670233576],[4.565198378273983,52.4580768083394],[4.565198111299493,52.458076923329735],[4.565197844491987,52.458077029333424],[4.565197577517494,52.45807714432372],[4.565197310542999,52.458077259314074],[4.565197043735489,52.458077365317706],[4.565196776760993,52.458077480308056],[4.565196509953481,52.45807758631169],[4.565196242978982,52.45807770130204],[4.565195976004481,52.45807781629233],[4.565195709196964,52.45807792229602],[4.565195442222461,52.458078037286334],[4.565195175247955,52.458078152276656],[4.565194908440436,52.45807825828033],[4.565194641465927,52.458078373270624],[4.565194374491417,52.45807848826094],[4.565194107683894,52.458078594264606],[4.565193840709382,52.45807870925493],[4.565193573734867,52.45807882424521],[4.565193306760353,52.45807893923556],[4.565193039952825,52.45807904523924],[4.565192772978307,52.45807916022952],[4.565192506003788,52.458079275219816],[4.565192239029266,52.45807939021014],[4.565191972221733,52.4580794962138],[4.56519170524721,52.45807961120409],[4.565191438272684,52.45807972619441],[4.565191171298158,52.45807984118471],[4.56519090449062,52.45807994718838],[4.565190637516091,52.45808006217868],[4.565190340784953,52.45808019493827],[4.565189925528342,52.45808037181503],[4.565189599207581,52.45808051335727],[4.565189332233045,52.45808062834759],[4.565189109726433,52.4580807256706],[4.565188887219821,52.45808082299363],[4.565188664880194,52.45808091133003],[4.565188442373579,52.45808100865303],[4.565188219866963,52.458081105976056],[4.565187997527334,52.458081194312435],[4.565187775020718,52.458081291635466],[4.565187552514098,52.45808138895847],[4.565187330174466,52.45808147729485],[4.565187107667846,52.45808157461787],[4.565186885161224,52.4580816719409],[4.5651866626546,52.458081769263906],[4.565186455026284,52.458081857702304],[4.565186262276268,52.45808193725602],[4.565186054480961,52.45808203468107],[4.565185832141323,52.458082123017434],[4.565185624513,52.458082211455825],[4.565185416717688,52.45808230888084],[4.565185209089366,52.458082397319224],[4.565184986749725,52.45808248565559],[4.565184779121399,52.45808257409395],[4.565184571326085,52.45808267151902],[4.565184363697757,52.4580827599574],[4.565184141358112,52.45808284829377],[4.565183933562794,52.458082945718765],[4.565183725934465,52.45808303415714],[4.565183518306134,52.45808312259553],[4.565183295799496,52.45808321991853],[4.565183073292858,52.45808331724156],[4.565182836074902,52.45808341446256],[4.565182583811648,52.458083529554834],[4.565182242612531,52.458083679981726],[4.565181901413413,52.45808383040854],[4.565181560381282,52.45808397184873],[4.565181219182159,52.4580841222756],[4.565180877983033,52.45808427270241],[4.565180536783905,52.458084423129236],[4.565180195584776,52.458084573556064],[4.565179854385642,52.4580847239829],[4.565179513186509,52.45808487440975],[4.56517917198737,52.4580850248366],[4.565178830788232,52.45808517526344],[4.565178489589089,52.45808532569024],[4.565178148556938,52.45808546713042],[4.565177807357789,52.45808561755727],[4.565177466158641,52.45808576798407],[4.565177124959491,52.45808591841092],[4.565176783760336,52.45808606883773],[4.565176442561181,52.458086219264565],[4.565176101362022,52.458086369691365],[4.565175774874179,52.45808652022021],[4.565175433675019,52.45808667064702],[4.565175092475853,52.45808682107385],[4.565174751276684,52.45808697150069],[4.565174410077517,52.458087121927505],[4.565174068711351,52.45808728134097],[4.565173727512176,52.45808743176779],[4.565173386312999,52.458087582194615],[4.565173059825139,52.458087732723435],[4.565172763093897,52.458087865482945],[4.565172540754204,52.458087953819295],[4.565172288490897,52.45808806891158],[4.565172021349277,52.45808819288851],[4.565171813720901,52.45808828132686],[4.565171546746273,52.458088396317116],[4.565171279604649,52.45808852029401],[4.565171027341335,52.45808863538631],[4.565170760366703,52.45808875037657],[4.565170508103387,52.458088865468824],[4.565170241128749,52.45808898045911],[4.565169944397491,52.45808911321864],[4.56516927654341,52.45808942316089],[4.565168638612937,52.458089706347245],[4.565168208310845,52.45808990109522],[4.565167911579573,52.458090033854766],[4.565167614848302,52.45809016661432],[4.565167317950033,52.45809030836049],[4.565167021218755,52.458090441119985],[4.565166798712044,52.458090538442995],[4.565166590916651,52.458090635867954],[4.565166353531627,52.458090742075605],[4.565166101435281,52.45809084818119],[4.56516586388326,52.4580909633755],[4.565165626498231,52.45809106958311],[4.565165374234889,52.458091184675354],[4.565165136849858,52.45809129088301],[4.56516489929783,52.45809140607725],[4.565164647201479,52.45809151218285],[4.565164409649451,52.458091627377144],[4.565164172264415,52.458091733584745],[4.565163920001065,52.45809184867702],[4.565163682616028,52.45809195488464],[4.565163430352674,52.458092069976885],[4.565163192967633,52.458092176184486],[4.565162955415597,52.458092291378776],[4.565162703152241,52.45809240647102],[4.565162465767197,52.458092512678604],[4.56516222821516,52.45809262787288],[4.565161976118792,52.45809273397847],[4.565161738566751,52.458092849172786],[4.565161501181701,52.45809295538037],[4.565161248918337,52.45809307047262],[4.565161011533286,52.45809317668022],[4.565160773981241,52.4580932918745],[4.56516052171787,52.458093406966746],[4.565160284332817,52.458093513174354],[4.565160046780767,52.458093628368594],[4.565159809395711,52.45809373457625],[4.565159527375707,52.45809386743775],[4.565155149127277,52.45809590427364],[4.56515473387038,52.458096081150295],[4.565154436972031,52.45809622289645],[4.565154021548132,52.45809640875974],[4.565153620668555,52.458096603711645],[4.565153219955972,52.45809678967699],[4.565152819076387,52.458096984628945],[4.565152418363795,52.458097170594236],[4.565152002772884,52.458097365444196],[4.565151602060286,52.458097551409494],[4.565151201180687,52.458097746361446],[4.565150800468083,52.458097932326744],[4.565150399588479,52.45809812727869],[4.565149998875866,52.45809831324399],[4.565149583284933,52.45809850809392],[4.565149182572313,52.4580986940592],[4.565148781692696,52.45809888901115],[4.56514838098007,52.458099074976424],[4.565147980100444,52.45809926992837],[4.565147579387811,52.458099455893645],[4.565147178508179,52.458099650845604],[4.565146777628542,52.45809984579753],[4.565146376915899,52.4581000317628],[4.565145976036257,52.45810022671475],[4.565145575156608,52.458100421666664],[4.565145174443956,52.45810060763194],[4.565144773564303,52.45810080258388],[4.565144372684645,52.4581009975358],[4.565143971971981,52.458101183501086],[4.565143571092317,52.458101378452994],[4.565143170212648,52.4581015734049],[4.565142769332979,52.458101768356826],[4.565142368453301,52.45810196330876],[4.565141967740624,52.45810214927402],[4.56514156686094,52.45810234422594],[4.565141165981255,52.45810253917787],[4.565140779812888,52.45810273423178],[4.565140378933195,52.45810292918368],[4.565139978220497,52.45810311514895],[4.565139577340799,52.458103310100846],[4.565139176461096,52.458103505052755],[4.565138775581388,52.458103700004656],[4.565138374701679,52.45810389495657],[4.565137988533288,52.45810409001051],[4.565137587653571,52.45810428496241],[4.565137186773849,52.45810447991433],[4.565136785894125,52.45810467486619],[4.56513639972572,52.45810486992012],[4.565135998845989,52.45810506487199],[4.565135597966254,52.458105259823895],[4.565135197086516,52.45810545477578],[4.565134810918098,52.4581056498297],[4.565134410038352,52.45810584478161],[4.565134009158603,52.45810603973347],[4.565133608278851,52.45810623468538],[4.565133222110418,52.45810642973928],[4.565132821230661,52.458106624691176],[4.565132420350896,52.45810681964306],[4.565132034182454,52.458107014696935],[4.565131633302683,52.45810720964883],[4.565131246967232,52.45810741368936],[4.565130846087456,52.45810760864125],[4.565130445207677,52.45810780359314],[4.565130059039218,52.45810799864701],[4.565129658159428,52.4581081935989],[4.565129271990963,52.4581083886528],[4.565128796719537,52.458108628027816],[4.565128351204761,52.458108849633625],[4.565128172998847,52.4581089382759],[4.565127994792936,52.45810902691823],[4.565127816587021,52.45810911556055],[4.565127638381107,52.45810920420282],[4.565127460175192,52.45810929284515],[4.565127281969276,52.458109381487446],[4.565127118474684,52.45810947023176],[4.565126940268766,52.45810955887409],[4.565126747184522,52.458109656401014],[4.565126167764781,52.4581099579685],[4.565125841109593,52.45811011748383],[4.565125514287399,52.4581102859858],[4.56512520234353,52.45811044560319],[4.565124875688335,52.45811060511852],[4.565124549033136,52.458110764633844],[4.565124236922259,52.45811093323786],[4.565123910267058,52.45811109275319],[4.565123598323178,52.45811125237055],[4.565123271500967,52.458111420872534],[4.565122944845756,52.45811158038786],[4.565122632901871,52.45811174000522],[4.565122306079655,52.458111908507206],[4.565121979424437,52.45811206802254],[4.565121667480545,52.458112227639866],[4.565121340658318,52.45811239614185],[4.565121058471081,52.45811253798993],[4.565120820751822,52.45811266217077],[4.565120597910892,52.45811277746694],[4.56512037506996,52.45811289276314],[4.56512015222903,52.458113008059335],[4.565119929555098,52.45811311436889],[4.565119706714163,52.45811322966512],[4.565119483873227,52.4581133449613],[4.56511926103229,52.458113460257486],[4.565119038191352,52.45811357555369],[4.565118815350413,52.45811369084986],[4.565118592676477,52.45811379715939],[4.565118369835536,52.45811391245561],[4.565118146994592,52.458114027751776],[4.565117924153649,52.45811414304798],[4.565117716191033,52.45811424945957],[4.565115769968796,52.458115260573386],[4.565115056977935,52.45811562412915],[4.565114833969971,52.458115748412],[4.565114581539349,52.4581158724908],[4.565114343820057,52.458115996671616],[4.565114105933757,52.45811612983908],[4.565113853503132,52.45811625391786],[4.565113615783837,52.458116378098715],[4.565113378064536,52.4581165022795],[4.565113125466903,52.45811663534497],[4.565112887747602,52.45811675952578],[4.565112650028297,52.45811688370658],[4.56511239743066,52.458117016772],[4.565112159711354,52.45811714095282],[4.565111921992048,52.458117265133644],[4.565111669394406,52.458117398199086],[4.565111431675096,52.45811752237989],[4.565111193955785,52.45811764656071],[4.565110941525143,52.4581177706395],[4.565110703638825,52.458117903806986],[4.565110465919508,52.458118027987766],[4.565110213488863,52.45811815206656],[4.565109975602539,52.45811828523399],[4.56510973788322,52.45811840941482],[4.5651095001639,52.458118533595616],[4.565109247566242,52.45811866666106],[4.565109009846919,52.45811879084191],[4.565108772127593,52.45811891502268],[4.565108519529936,52.45811904808811],[4.565108281810605,52.45811917226894],[4.565108043924271,52.45811930543636],[4.56510780620494,52.45811942961715],[4.56510755377428,52.45811955369594],[4.56510734564461,52.45811966909416],[4.565107063457278,52.45811981094219],[4.565106736467935,52.458119988430745],[4.565106424356926,52.458120157034735],[4.565106112245912,52.458120325638696],[4.565105800134899,52.458120494242664],[4.565105488190886,52.45812065385997],[4.565105176079869,52.45812082246391],[4.565104863968845,52.45812099106789],[4.565104551857821,52.45812115967183],[4.5651042399138,52.45812131928912],[4.565103927802772,52.458121487893095],[4.56510361569174,52.45812165649704],[4.565103303580705,52.45812182510095],[4.565102991636677,52.45812198471827],[4.565102679525639,52.45812215332222],[4.565102367414599,52.458122321926155],[4.565101371735124,52.458122854289854],[4.565101163605418,52.458122969688056],[4.565100895962371,52.45812312062475],[4.565100613774995,52.45812326247277],[4.565100346131942,52.45812341340945],[4.565100063777554,52.458123564244154],[4.565099781423171,52.45812371507881],[4.565099513947119,52.458123857028866],[4.56509921671439,52.45812401674816],[4.565098934359999,52.45812416758285],[4.565098637127266,52.45812432730212],[4.565098354605864,52.458124487123484],[4.565098102008139,52.458124620188876],[4.565097760140388,52.458124806562104],[4.565097373637619,52.45812501958916],[4.565096972423518,52.458125232514234],[4.565096585920744,52.458125445541306],[4.565096199417964,52.4581256585684],[4.56509581291518,52.458125871595456],[4.565095411701066,52.45812608452052],[4.565095025198275,52.458126297547615],[4.565094638695482,52.45812651057465],[4.565094252192685,52.45812672360176],[4.565093850978551,52.45812693652677],[4.565093464308736,52.45812715854053],[4.565093077805928,52.45812737156759],[4.565092691303115,52.458127584594656],[4.565092304800298,52.45812779762172],[4.565091903586147,52.45812801054676],[4.565091517083325,52.458128223573816],[4.565091130413487,52.458128445587555],[4.565090743910655,52.45812865861461],[4.565090357407819,52.458128871641655],[4.565089970904982,52.45812908466872],[4.565089584235129,52.45812930668242],[4.565089197732284,52.458129519709495],[4.565088796518101,52.45812973263452],[4.565088410015247,52.45812994566156],[4.565088023345381,52.45813016767528],[4.565087636842518,52.45813038070233],[4.565087250339653,52.458130593729386],[4.565086967651157,52.45813076253735],[4.565086729764697,52.45813089570474],[4.565086150010385,52.45813121524529],[4.565084008865124,52.45813242273859],[4.565082522032855,52.45813325728154],[4.565082284313378,52.458133381462275],[4.565082016503188,52.45813354138563],[4.565081644878612,52.45813374552801],[4.565081287798355,52.45813395875906],[4.565080916173772,52.45813416290144],[4.565080559093508,52.45813437613254],[4.56508018746892,52.45813458027494],[4.565079830388648,52.458134793506005],[4.56507945876405,52.45813499764839],[4.565079101683773,52.45813521087945],[4.56507873005917,52.45813541502185],[4.565078372978883,52.458135628252926],[4.565078001354274,52.458135832395314],[4.565077644273981,52.458136045626325],[4.565077272649366,52.45813624976877],[4.565076915569065,52.45813646299983],[4.565076543944442,52.45813666714219],[4.565076186864138,52.45813688037328],[4.565075815239506,52.45813708451565],[4.565075458159193,52.45813729774668],[4.565075101078877,52.45813751097773],[4.565074729454236,52.45813771512013],[4.565074372373914,52.458137928351164],[4.565074015293587,52.458138141582246],[4.565073643668935,52.45813834572459],[4.565073286588603,52.45813855895568],[4.565072929508266,52.458138772186686],[4.565072557883603,52.458138976329046],[4.565072200803261,52.45813918956012],[4.565071843722914,52.458139402791126],[4.56507147209824,52.458139606933536],[4.565071115017887,52.45813982016458],[4.565069002626418,52.45814106380825],[4.565068720104801,52.458141223629504],[4.565068452294515,52.458141383552764],[4.565068184484229,52.45814154347605],[4.565067886917241,52.458141721168566],[4.565067306828623,52.45814205868233],[4.565067083653377,52.458142191951765],[4.565066786086381,52.45814236964424],[4.565066503397733,52.45814253845214],[4.565066205997745,52.458142707158046],[4.565065923309092,52.458142875965926],[4.565065655498786,52.458143035889165],[4.56506537281013,52.45814320469707],[4.565065119878173,52.458143355735736],[4.565064896702912,52.45814348900509],[4.565064599302914,52.45814365771099],[4.565064376127651,52.45814379098038],[4.56506418270909,52.458143906480494],[4.56506392961011,52.458144066505795],[4.565063676678141,52.45814421754444],[4.565063483259577,52.45814433304457],[4.56506328984101,52.4581444485447],[4.565063036909039,52.45814459958333],[4.565062769265727,52.458144750519935],[4.565062486577046,52.45814491932785],[4.565062233478055,52.45814507935313],[4.565062010302778,52.45814521262251],[4.565061757370798,52.458145363661146],[4.565061563952223,52.45814547916125],[4.565061340776943,52.45814561243065],[4.565061013453195,52.45814580789243],[4.565060730764502,52.45814597670029],[4.565060477832512,52.45814612773893],[4.5650601949768,52.45814630553345],[4.565059897576765,52.45814647423931],[4.565059644477753,52.4581466342646],[4.565059421302461,52.45814676753397],[4.565059227883872,52.458146883034104],[4.565056966040131,52.45814825147041],[4.56505662383799,52.458148455816776],[4.565056281468831,52.458148669149786],[4.565055939099668,52.4581488824828],[4.56505559689752,52.45814908682916],[4.565055239817013,52.45814930006017],[4.565054897447841,52.45814951339319],[4.56505455524568,52.45814971773957],[4.565054212876503,52.45814993107255],[4.565053870507321,52.458150144405586],[4.565053528305153,52.45815034875194],[4.565053185935963,52.45815056208494],[4.565052843566771,52.45815077541796],[4.565052501197576,52.45815098875097],[4.565052158995393,52.458151193097315],[4.565051816626196,52.45815140643033],[4.565051474256989,52.45815161976335],[4.565051131887781,52.458151833096345],[4.565050789685585,52.45815203744271],[4.565050447316373,52.4581522507757],[4.565050104947153,52.458152464108714],[4.565049762577932,52.458152677441696],[4.565049420208708,52.4581528907747],[4.565049077839479,52.4581531041077],[4.565048735637266,52.45815330845409],[4.565048393268031,52.45815352178706],[4.565048050898793,52.45815373512003],[4.565047708529551,52.45815394845304],[4.565047366160306,52.45815416178608],[4.565047038502399,52.45815437522104],[4.565046696133148,52.45815458855407],[4.565046353763893,52.458154801887055],[4.565046011394636,52.45815501522005],[4.565045669025375,52.45815522855301],[4.565045326656111,52.45815544188601],[4.565044998998182,52.458155655321015],[4.565044656628912,52.45815586865404],[4.565044314259636,52.45815608198698],[4.565043971890361,52.458156295319995],[4.56504364423242,52.45815650875498],[4.565043301863136,52.45815672208798],[4.565042959493849,52.45815693542093],[4.565042617124558,52.458157148753926],[4.565042289466605,52.458157362188935],[4.565041947097308,52.4581575755219],[4.565041604728005,52.45815778885488],[4.565041277070045,52.45815800228988],[4.565040934700738,52.45815821562286],[4.565040592331426,52.45815842895587],[4.565040264506435,52.45815865137751],[4.565039922137118,52.45815886471048],[4.565039579767798,52.458159078043444],[4.565039252109815,52.45815929147844],[4.56503890974049,52.45815950481138],[4.565038581915481,52.45815972723305],[4.565038239546147,52.45815994056602],[4.565037897176811,52.45816015389898],[4.565037569518812,52.45816036733397],[4.56503722714947,52.45816058066691],[4.565036899324444,52.458160803088596],[4.565036556955095,52.45816101642152],[4.565036229297085,52.4581612298565],[4.565035886927728,52.458161443189496],[4.56503555910269,52.458161665611094],[4.565035306003502,52.45816182563635],[4.565034456767672,52.45816239496633],[4.565033995204371,52.458162688362926],[4.565031999833423,52.45816396876877],[4.565031791369303,52.4581641021401],[4.565031552814411,52.45816427125402],[4.565031210445007,52.45816448458693],[4.565030882619923,52.45816470700854],[4.565030554961859,52.45816492044355],[4.565030212425423,52.45816514276313],[4.565029884600331,52.45816536518475],[4.565029556942255,52.45816557861972],[4.56502921440581,52.45816580093932],[4.565028886747728,52.45816601437427],[4.565028558922621,52.45816623679588],[4.565028231264533,52.45816645023083],[4.565027888728073,52.45816667255041],[4.565027560902957,52.45816689497205],[4.565027233244859,52.458167108407],[4.565026905419737,52.458167330828616],[4.56502657759461,52.45816755325023],[4.565026235225156,52.45816776658317],[4.565025907400024,52.45816798900479],[4.565025579574888,52.458168211426404],[4.56502525191677,52.45816842486133],[4.565024924091626,52.458168647282946],[4.565024596266479,52.45816886970455],[4.565024268441328,52.458169092126134],[4.565023940783198,52.458169305561114],[4.565023598246698,52.458169527880706],[4.565023270421539,52.45816975030228],[4.565022942596374,52.458169972723894],[4.565022614938231,52.458170186158824],[4.565022287113061,52.458170408580465],[4.56502195928789,52.458170631002],[4.565021631462712,52.45817085342364],[4.565020841740007,52.45817138721503],[4.565020662865533,52.4581715118038],[4.565020469112689,52.458171645277154],[4.565020290238213,52.45817176986589],[4.565020096652391,52.4581718943526],[4.565019902899541,52.45817202782595],[4.565019724025063,52.458172152414726],[4.565019530439238,52.45817227690141],[4.565019336686386,52.45817241037475],[4.565019157811904,52.458172534963516],[4.565018964226076,52.458172659450234],[4.565018785351591,52.458172784038936],[4.565018591598735,52.45817291751231],[4.565018398012901,52.45817304199903],[4.565018218971391,52.45817317557442],[4.565018010507185,52.458173308945746],[4.565015506598286,52.458175035214744],[4.565014567757665,52.45817567582563],[4.565014374004785,52.45817580929899],[4.565014165373531,52.458175951656955],[4.565013971620649,52.45817608513031],[4.565013777867764,52.45817621860363],[4.565013569236505,52.4581763609616],[4.565013375483621,52.45817649443496],[4.56501316685236,52.45817663679294],[4.56501297309947,52.45817677026628],[4.56501277934658,52.458176903739606],[4.565012570715317,52.458177046097575],[4.565012376962423,52.45817717957096],[4.565012183042503,52.45817732203093],[4.565011974578262,52.45817745540226],[4.565011780658339,52.458177597862246],[4.565011586905441,52.458177731335574],[4.565011392985518,52.45817787379563],[4.56501118452127,52.45817800716692],[4.565010990601344,52.45817814962692],[4.565010796848439,52.45817828310024],[4.565010588384189,52.458178416471576],[4.565010394464259,52.458178558931536],[4.565010200711353,52.45817869240491],[4.565009992080073,52.458178834762855],[4.565009798160138,52.45817897722285],[4.565009604407229,52.45817911069621],[4.56500941048729,52.45817925315618],[4.565009202023032,52.458179386527526],[4.565009008103093,52.45817952898753],[4.565008814350178,52.458179662460836],[4.565008620430235,52.458179804920825],[4.56500839692057,52.458179956163384],[4.565008054049855,52.45818019645622],[4.565007785905063,52.45818037435265],[4.565007547182965,52.45818055245316],[4.565007293749517,52.45818073045163],[4.565007070239842,52.458180881694176],[4.565006921122041,52.458180988513696],[4.565006742247489,52.45818111310241],[4.565006488814033,52.45818129110087],[4.565006250258951,52.45818146021468],[4.565005996992519,52.45818162922649],[4.565005758437432,52.45818179834033],[4.565005519715319,52.458181976440855],[4.565005281327257,52.45818213656804],[4.565005087407292,52.45818227902801],[4.565004938289482,52.458182385847486],[4.56500478917167,52.458182492666985],[4.565004640220884,52.45818259049984],[4.565004491103071,52.458182697319295],[4.565004341985258,52.45818280413878],[4.565004192867444,52.45818291095827],[4.565004058460977,52.45818301787977],[4.565003909510187,52.458183115712615],[4.56500376039237,52.4581832225321],[4.565003611274554,52.45818332935153],[4.565003462156737,52.45818343617104],[4.565003313038917,52.458183542990504],[4.565003163921097,52.458183649809996],[4.565002970168146,52.45818378328333],[4.565002403286584,52.45818420177864],[4.565002105050933,52.458184415417605],[4.565001806982312,52.458184620069915],[4.565001508746656,52.45818483370886],[4.565001210510998,52.45818504734782],[4.565000927153716,52.45818525210214],[4.565000628918053,52.45818546574108],[4.565000330682388,52.45818567938006],[4.565000032446719,52.458185893019],[4.564999749089426,52.45818609777333],[4.56499945085375,52.4581863114123],[4.564999152618075,52.45818652505124],[4.564998869093744,52.45818673879223],[4.564998570858061,52.458186952431156],[4.564998272622374,52.45818716607007],[4.564997989265065,52.45818737082441],[4.564997691029373,52.458187584463346],[4.56499739279368,52.4581877981023],[4.564997109269333,52.45818801184331],[4.564996811033633,52.45818822548222],[4.564996512797931,52.45818843912117],[4.564996229273573,52.45818865286213],[4.564995931204897,52.458188857514415],[4.564995647680536,52.458189071255376],[4.56499534944482,52.45818928489432],[4.564995051209104,52.4581894985333],[4.564994767684736,52.458189712274226],[4.564994469449013,52.45818992591317],[4.564994185924637,52.45819013965413],[4.56499388768891,52.45819035329308],[4.56499360416453,52.45819056703403],[4.564993305928795,52.45819078067295],[4.56499303744982,52.45819097654265],[4.564992843529778,52.45819111900263],[4.564992649609734,52.45819126146259],[4.56499245568969,52.458191403922534],[4.564992261602615,52.45819155536919],[4.564992067682567,52.45819169782915],[4.564991873762518,52.458191840289096],[4.564991679842469,52.458191982749064],[4.564991485922416,52.45819212520901],[4.564991277123983,52.45819227655361],[4.56499108320393,52.45819241901358],[4.564990889283875,52.4581925614735],[4.56499069536382,52.45819270393351],[4.564990501443762,52.45819284639342],[4.564990307356673,52.45819299784005],[4.564990113269583,52.45819314928666],[4.564989531676424,52.4581935676799],[4.564989307665536,52.45819374588238],[4.564989069110319,52.4581939149962],[4.564988845266455,52.45819408421202],[4.564988606544207,52.458194262312475],[4.564988367988987,52.45819443142629],[4.564988143978087,52.45819460962877],[4.564987905422864,52.45819477874259],[4.564987681411958,52.45819495694505],[4.564987442856734,52.45819512605884],[4.564987219012857,52.45819529527472],[4.564986980290594,52.45819547337515],[4.564986756446715,52.458195642591],[4.564986517724449,52.458195820691444],[4.564986293880566,52.458195989907274],[4.564986055158296,52.45819616800773],[4.564985831314409,52.458196337223576],[4.564985592592136,52.458196515324005],[4.564985368748246,52.45819668453983],[4.564985144737323,52.458196862742305],[4.564984906182076,52.458197031856116],[4.564984682171148,52.45819721005861],[4.564984443615898,52.458197379172425],[4.564984219604967,52.45819755737491],[4.564983980882681,52.45819773547531],[4.564983757038778,52.45819790469117],[4.564983533027842,52.45819808289364],[4.56498329447258,52.45819825200743],[4.564983070461641,52.458198430209926],[4.564982831739346,52.45819860831034],[4.564982607895434,52.458198777526164],[4.564982354127717,52.458198973497915],[4.564981816835505,52.45819938321051],[4.564981309300056,52.45819977515393],[4.564981025608523,52.45819999788152],[4.564980727205633,52.45820022050704],[4.564980443681126,52.45820043424799],[4.564980159989584,52.45820065697558],[4.564979861586685,52.45820087960114],[4.564979577895137,52.458201102328694],[4.564979294203587,52.45820132505629],[4.564979010679067,52.45820153879722],[4.564978712276156,52.45820176142276],[4.564978428584596,52.45820198415033],[4.564978144893034,52.458202206877914],[4.56497786120147,52.45820242960548],[4.564977562798548,52.45820265223104],[4.56497727927401,52.45820286597194],[4.564976995582436,52.45820308869954],[4.564976711890861,52.458203311427106],[4.564976428199281,52.458203534154705],[4.564976144507701,52.45820375688224],[4.564975846104759,52.458203979507786],[4.564975562413172,52.45820420223533],[4.564975278721582,52.458204424962915],[4.564974995029988,52.45820464769047],[4.564974711338393,52.45820487041806],[4.564974427646794,52.45820509314563],[4.564974143955193,52.458205315873194],[4.564973860263586,52.45820553860077],[4.56497357657198,52.45820576132832],[4.564973292880368,52.458205984055894],[4.564973009188756,52.45820620678345],[4.564972725497141,52.45820642951102],[4.564972441805521,52.45820665223859],[4.564972158113899,52.45820687496616],[4.564971874422274,52.45820709769371],[4.564971590730647,52.458207320421245],[4.564971307039015,52.45820754314879],[4.564971023347383,52.45820776587636],[4.564970739655747,52.45820798860395],[4.564970455964109,52.45820821133149],[4.564970172272466,52.45820843405906],[4.564969888580822,52.4582086567866],[4.56496960472214,52.45820888850083],[4.56496932103049,52.458209111228356],[4.564969037338837,52.458209333955914],[4.564968768358538,52.45820955678548],[4.564968484666879,52.458209779513076],[4.564968200975217,52.45821000224059],[4.564967917283552,52.458210224968155],[4.564967633424851,52.45821045668236],[4.564967364444538,52.45821067951193],[4.564967080752865,52.45821090223951],[4.564966797061188,52.458211124967015],[4.564966513369511,52.45821134769458],[4.564966229510793,52.45821157940878],[4.564965960530466,52.45821180223835],[4.564965676838781,52.458212024965924],[4.564965393147089,52.45821224769347],[4.564965123999718,52.45821247950967],[4.564964840308023,52.45821270223721],[4.564964556616325,52.45821292496478],[4.564964287468946,52.458213156780985],[4.564964003777241,52.45821337950856],[4.564963720085533,52.45821360223607],[4.564963451105181,52.45821382506567],[4.564963167246434,52.45821405677984],[4.564962883554718,52.45821427950735],[4.564962614574359,52.45821450233696],[4.564962330715602,52.458214734051154],[4.564962061735236,52.45821495688072],[4.564961778043509,52.45821517960826],[4.564961508896102,52.45821541142448],[4.564961225204368,52.458215634152005],[4.564960941345595,52.45821586586617],[4.564960672365216,52.45821608869576],[4.564960388673477,52.45821631142329],[4.564960119526055,52.45821654323951],[4.564959835834308,52.45821676596705],[4.564959566686881,52.45821699778325],[4.564959297706489,52.45821722061283],[4.564959013847695,52.45821745232701],[4.564958744867298,52.45821767515658],[4.564958461008499,52.45821790687075],[4.564958192028097,52.45821812970031],[4.564957908336329,52.45821835242782],[4.564957639188882,52.45821858424406],[4.564957370208471,52.45821880707361],[4.56495708634966,52.45821903878779],[4.564956817202204,52.458219270604],[4.564956548221783,52.45821949343358],[4.564956264362961,52.458219725147735],[4.564955995382536,52.45821994797727],[4.564955726235068,52.45822017979348],[4.564955442543275,52.458220402521015],[4.564955173395806,52.45822063433723],[4.564954904415369,52.45822085716681],[4.56495463526789,52.45822108898296],[4.56495435140905,52.45822132069716],[4.564954082428604,52.45822154352672],[4.564953813281119,52.45822177534289],[4.564953544300668,52.458221998172455],[4.564953275153177,52.458222229988664],[4.56495299129432,52.45822246170284],[4.564952722313862,52.45822268453237],[4.56495245316636,52.458222916348575],[4.564952184018859,52.458223148164784],[4.564951915038392,52.45822337099431],[4.564951645890883,52.45822360281054],[4.564951376743372,52.45822383462672],[4.564951093051535,52.458224057354215],[4.564950823904018,52.458224289170424],[4.564950554756498,52.45822452098664],[4.564950285776012,52.45822474381617],[4.564950016628488,52.45822497563234],[4.564949747480962,52.45822520744856],[4.564949478333429,52.45822543926474],[4.564949209352935,52.45822566209431],[4.564948940205398,52.45822589391045],[4.564948671057858,52.45822612572669],[4.564948401910318,52.45822635754284],[4.564948132762774,52.458226589359064],[4.564947863782264,52.45822681218857],[4.564947594634715,52.45822704400479],[4.564947325487161,52.458227275820946],[4.564947056339604,52.458227507637154],[4.56494680190341,52.45822773955538],[4.564946532922887,52.4582279623849],[4.564946263775322,52.458228194201084],[4.564945994627756,52.458228426017286],[4.56494563570865,52.45822873810106],[4.564945426241727,52.458228925392135],[4.564945216941844,52.4582291036966],[4.564944992763556,52.458229290885654],[4.564944783296628,52.45822947817673],[4.56494457399674,52.458229656481194],[4.56494436452981,52.45822984377227],[4.564944155062879,52.45823003106335],[4.564943945762984,52.45823020936783],[4.564943736296049,52.458230396658884],[4.564943526829114,52.458230583949984],[4.564943302817849,52.4582307621524],[4.564943093350907,52.458230949443504],[4.564942883883967,52.45823113673458],[4.564942674417023,52.45823132402565],[4.564942450071671,52.45823152020135],[4.564941971457114,52.45823193930862],[4.564941821837862,52.458232073087935],[4.564941672218612,52.458232206867294],[4.564941522766397,52.45823233166002],[4.56494135843578,52.458232465337296],[4.564941208816525,52.45823259911666],[4.564941059197269,52.45823273289597],[4.564940909578011,52.45823286667534],[4.564940759958755,52.45823300045467],[4.564940595628133,52.458233134132016],[4.564940445841831,52.45823327689798],[4.564940296222573,52.45823341067734],[4.564940146603311,52.45823354445666],[4.564939996984048,52.45823367823601],[4.564939847364787,52.45823381201535],[4.564939683034157,52.458233945692655],[4.564939533414892,52.45823407947202],[4.564939383795626,52.45823421325134],[4.56493923417636,52.458234347030704],[4.564939084557092,52.45823448081004],[4.564938920226457,52.458234614487345],[4.564938770440148,52.45823475725334],[4.564938620820877,52.45823489103271],[4.564938471201605,52.45823502481201],[4.564938321582335,52.45823515859135],[4.564938157251695,52.458235292268654],[4.564938007632421,52.45823542604803],[4.564937857846107,52.458235568814],[4.56493770822683,52.45823570259333],[4.564937558607554,52.458235836372694],[4.564937408988275,52.45823597015201],[4.56493724465763,52.458236103829336],[4.564937079825862,52.458236264466564],[4.564936915328173,52.45823640713053],[4.564936765708892,52.458236540909844],[4.564936660891874,52.458236639048714],[4.564936496394182,52.45823678171268],[4.564936286927186,52.458236969003735],[4.564936062581776,52.45823716517942],[4.564935852947734,52.45823736145716],[4.564935643480731,52.45823754874823],[4.564935419135319,52.45823774492391],[4.564935209501269,52.458237941201624],[4.564934985322894,52.458238128390676],[4.564934775688842,52.458238324668365],[4.564934566054787,52.45823852094608],[4.564934341709365,52.45823871712177],[4.564934132242349,52.458238904412845],[4.564933922608289,52.45823910069056],[4.564933712974227,52.45823929696829],[4.564933503674248,52.45823947527269],[4.564933339009494,52.45823962692332],[4.5649332042686,52.45823975181803],[4.564933069527706,52.45823987671276],[4.564932934953854,52.45823999262081],[4.564932800212956,52.45824011751559],[4.564932650760691,52.45824024230827],[4.564932516019794,52.45824036720298],[4.564932381445939,52.458240483111034],[4.564932246705037,52.45824060800577],[4.56493211196414,52.45824073290047],[4.564931977223237,52.45824085779523],[4.564931842482338,52.45824098268993],[4.564931707741435,52.458241107584676],[4.564931573167573,52.45824122349276],[4.564931438426671,52.45824134838747],[4.564931303518724,52.45824148226882],[4.564930884584637,52.458241856850975],[4.564930719919866,52.45824200850155],[4.564930555088052,52.4582421691388],[4.564930375711911,52.45824232068737],[4.564930211047137,52.458242472337915],[4.56493004638236,52.45824262398851],[4.564929881717583,52.45824277563912],[4.564929717052803,52.4582429272897],[4.564929552388024,52.4582430789403],[4.564929387723244,52.458243230590874],[4.564929223058463,52.45824338224147],[4.564929058393679,52.45824353389206],[4.564928893728898,52.45824368554264],[4.56492872889707,52.45824384617987],[4.564928549520913,52.458243997728424],[4.564928384856128,52.45824414937903],[4.56492822019134,52.458244301029595],[4.564928055526549,52.458244452680155],[4.564927890861759,52.45824460433074],[4.564927726196967,52.45824475598134],[4.564927561532175,52.45824490763193],[4.564927396700337,52.458245068269186],[4.564927232035541,52.45824521991977],[4.564927067370748,52.458245371570335],[4.564926902705949,52.45824552322094],[4.564926738041151,52.45824567487152],[4.564926573376351,52.45824582652211],[4.564926408544507,52.45824598715933],[4.564926243879704,52.4582461388099],[4.5649260792149,52.458246290460494],[4.564925914550097,52.458246442111054],[4.564925734839835,52.45824661163292],[4.564925150906757,52.45824715583889],[4.564924971029446,52.45824733434741],[4.564924776440762,52.45824751275383],[4.564924581852079,52.4582476911603],[4.564924402141807,52.45824786068212],[4.564924207553118,52.458248039088566],[4.564924012964429,52.458248217495],[4.564923818375739,52.45824839590148],[4.564921796259183,52.458250323242076],[4.564921556868182,52.45825053728896],[4.564921347066968,52.4582507425533],[4.564921122387337,52.45825095670226],[4.564920747754233,52.45825132260383],[4.564920493150719,52.45825156350863],[4.564920223668785,52.45825181329808],[4.564919969065263,52.45825205420289],[4.564919714294695,52.45825230409438],[4.56491945969117,52.458252544999155],[4.564919204920598,52.45825279489062],[4.564918950317066,52.45825303579545],[4.564918695546486,52.45825328568688],[4.564918440942948,52.45825352659168],[4.564918186172363,52.45825377648316],[4.564917916857449,52.45825401728591],[4.564917662086858,52.4582542671774],[4.564917407483309,52.458254508082184],[4.564917152712711,52.45825475797365],[4.564916898109158,52.45825499887846],[4.564916643338554,52.45825524876991],[4.56491638856795,52.4582554986614],[4.564916148675761,52.45825573966822],[4.564915893905151,52.45825598955969],[4.564915639301583,52.45825623046448],[4.564915384530965,52.4582564803559],[4.564915129760347,52.45825673024739],[4.564914875156769,52.45825697115215],[4.564914620386144,52.45825722104361],[4.564914365782562,52.45825746194843],[4.564914111011931,52.45825771183989],[4.564913870952674,52.45825796183336],[4.564913616349081,52.45825820273817],[4.564913361578443,52.458258452629636],[4.564913106807801,52.45825870252106],[4.5649128522042,52.45825894342586],[4.564912612144928,52.45825919341938],[4.564912357374277,52.4582594433108],[4.564912102603624,52.458259693202244],[4.564911848000014,52.45825993410706],[4.564911607940729,52.458260184100524],[4.564911353170067,52.45826043399195],[4.564911098399401,52.45826068388342],[4.564910858507155,52.45826092489024],[4.564910603736485,52.458261174781704],[4.56491034896581,52.45826142467314],[4.56491010890651,52.45826167466661],[4.564909854302877,52.458261915571384],[4.564909599532196,52.45826216546286],[4.564909359472886,52.45826241545635],[4.564909104702198,52.45826266534775],[4.564908864642883,52.45826291534122],[4.564908609872192,52.45826316523272],[4.56490835526854,52.458263406137505],[4.564908115209215,52.45826365613098],[4.564907860438515,52.45826390602238],[4.564907620379186,52.45826415601585],[4.564907365608479,52.4582644059073],[4.564907125549144,52.45826465590077],[4.564906885489807,52.45826490589427],[4.56490663071909,52.458265155785675],[4.564906390826796,52.45826539679255],[4.564906136056074,52.45826564668395],[4.564905895996726,52.45826589667742],[4.564905641225999,52.45826614656887],[4.564905401166645,52.45826639656231],[4.564905161107289,52.458266646555806],[4.564904906336554,52.45826689644722],[4.56490472629203,52.458267083942324],[4.564904576338454,52.458267235694926],[4.564904426551922,52.4582673784609],[4.564904291476767,52.458267521328885],[4.564904141690232,52.458267664094826],[4.564904006448026,52.45826781594944],[4.564903856661492,52.45826795871539],[4.564903721586333,52.4582681015834],[4.564903586511172,52.45826824445137],[4.564903436724635,52.45826838721731],[4.564903301482422,52.45826853907194],[4.564903151695884,52.45826868183792],[4.564903016620719,52.45826882470593],[4.564902866834177,52.458268967471874],[4.564902731759013,52.458269110339806],[4.564902596516797,52.45826926219444],[4.564902446563204,52.45826941394705],[4.564902221549289,52.45826964606925],[4.564901981489898,52.45826989606275],[4.564901726719125,52.45827014595415],[4.564901486492679,52.45827040493423],[4.564901246433279,52.45827065492771],[4.564900991662498,52.458270904819145],[4.564900751436043,52.458271163799274],[4.564900511376634,52.458271413792694],[4.564900271317224,52.45827166378618],[4.56490003109076,52.4582719227663],[4.564899776319965,52.45827217265772],[4.564899536093496,52.45827243163783],[4.564899296034074,52.4582726816313],[4.564899055974649,52.45827293162474],[4.564898815748172,52.45827319060484],[4.564898575688741,52.45827344059833],[4.564898320750881,52.458273699476386],[4.564898080691444,52.45827394946982],[4.564897840632005,52.45827419946331],[4.564897600405515,52.458274458443405],[4.56489736034607,52.45827470843685],[4.564897120119573,52.458274967416955],[4.564896880060123,52.458275217410424],[4.564896639833622,52.45827547639051],[4.564896399774165,52.45827572638398],[4.564896159714708,52.45827597637746],[4.564895919488198,52.458276235357566],[4.564895679428733,52.458276485350986],[4.564895439202218,52.45827674433105],[4.564895199142749,52.45827699432457],[4.564894958916226,52.45827725330465],[4.564894718856753,52.45827750329806],[4.564894148130815,52.45827812848579],[4.564893998344212,52.45827827125175],[4.564893863101941,52.45827842310637],[4.564893728026715,52.45827856597436],[4.564893592784443,52.458278717828975],[4.564893442830786,52.45827886958156],[4.564893307755559,52.45827901244954],[4.564893172346231,52.45827917329081],[4.564892962377699,52.45827938754175],[4.564892797044457,52.45827957513886],[4.564892616999831,52.45827976263394],[4.564892436955208,52.45827995012904],[4.564892271621961,52.458280137726184],[4.564892091577331,52.45828032522127],[4.564891911532702,52.45828051271634],[4.564891746032401,52.45828070930012],[4.564891565987767,52.458280896795195],[4.564891385943132,52.458281084290284],[4.564891220609877,52.45828127188743],[4.564891040565239,52.45828145938246],[4.56489087523198,52.458281646979636],[4.564890695187339,52.4582818344747],[4.564890514975648,52.45828203095643],[4.564890349642384,52.458282218553535],[4.56489016959774,52.45828240604867],[4.564890004264474,52.45828259364574],[4.564889824219825,52.458282781140845],[4.564889658886556,52.45828296873799],[4.564889478674854,52.458283165219704],[4.564889313341582,52.458283352816856],[4.56488913329693,52.45828354031192],[4.564888953252273,52.458283727806986],[4.564888787918998,52.45828391540413],[4.564888607874339,52.458284102899206],[4.564888442374009,52.45828429948297],[4.564888262329348,52.45828448697804],[4.564888096996066,52.458284674575175],[4.564887931662783,52.4582848621723],[4.564887751618118,52.458285049667374],[4.564887586117781,52.45828524625117],[4.564887406073112,52.45828543374622],[4.564887240739824,52.458285621343364],[4.56488706069515,52.4582858088384],[4.564886895194808,52.45828600542217],[4.564886715150132,52.458286192917235],[4.564886549816839,52.45828638051438],[4.564886384483541,52.45828656811153],[4.564886204271811,52.458286764593225],[4.564886038938512,52.458286952190356],[4.564885858893831,52.45828713968546],[4.564885693560528,52.458287327282534],[4.564885528060175,52.458287523866304],[4.564885348015487,52.4582877113614],[4.564885182682181,52.45828789895851],[4.564884972212412,52.4582881401694],[4.564884761909693,52.458288372393596],[4.564884581697948,52.45828856887535],[4.564884416364635,52.45828875647243],[4.56488425103132,52.45828894406956],[4.564884070986623,52.458289131564605],[4.564883905486253,52.45828932814837],[4.564883740152935,52.45828951574551],[4.564883560108233,52.45828970324059],[4.564883394607862,52.45828989982433],[4.564883229274538,52.45829008742147],[4.564883063941215,52.4582902750186],[4.564882883729452,52.458290471500305],[4.564882718396126,52.458290659097415],[4.564882553062798,52.45829084669454],[4.564882387562418,52.45829104327828],[4.564882207517702,52.45829123077336],[4.564882026971828,52.45829144522837],[4.564881891729474,52.45829159708297],[4.564881756320066,52.45829175792426],[4.564881621077709,52.45829190977885],[4.564881500546737,52.45829206173552],[4.564881365304379,52.45829221359014],[4.564881229894969,52.45829237443139],[4.564881079941224,52.458292526183946],[4.564880343046289,52.45829338390196],[4.564880162834502,52.45829358038367],[4.564880012546642,52.45829375010955],[4.564879862091731,52.45829392882203],[4.56487971180387,52.45829409854787],[4.564879561348956,52.45829427726039],[4.564879411061091,52.45829444698624],[4.564879260606174,52.45829462569875],[4.564879095606924,52.458294795322594],[4.564878945152003,52.45829497403507],[4.564878794864137,52.45829514376094],[4.564878644409214,52.458295322473454],[4.564878509166835,52.458295474328054],[4.564878358711911,52.45829565304058],[4.564878193211493,52.45829584962432],[4.564878027711075,52.45829604620809],[4.564877847499266,52.45829624268979],[4.564877712256884,52.458296394544426],[4.564877591725884,52.45829654650107],[4.564877456483501,52.45829669835563],[4.564877321241115,52.45829685021028],[4.564877170786181,52.458297028922786],[4.564877035543792,52.45829718077735],[4.564876885255909,52.45829735050326],[4.564876719755479,52.458297547087],[4.564876554087992,52.458297752657394],[4.564876388587558,52.458297949241185],[4.564876238299671,52.458298118967036],[4.564876087844727,52.45829829767952],[4.564875937556836,52.45829846740536],[4.564875787101893,52.45829864611789],[4.564875651859495,52.45829879797247],[4.564875531328484,52.45829894992915],[4.564875381207642,52.45829911066835],[4.564875245631133,52.458299280496234],[4.564875110221678,52.458299441337495],[4.564874960100833,52.4582996020767],[4.564874824524322,52.45829977190463],[4.564874689114863,52.45829993274584],[4.564874538826964,52.458300102471725],[4.564874403417504,52.45830026331296],[4.56487426800804,52.45830042415418],[4.564874132431526,52.458300593982116],[4.564873982310672,52.4583007547213],[4.564873846734156,52.45830092454923],[4.564873711324689,52.45830108539046],[4.564873575748168,52.45830125521835],[4.564873440338701,52.45830141605959],[4.564873290217845,52.45830157679882],[4.56487315464132,52.4583017466267],[4.564873019231849,52.458301907467956],[4.564872883655324,52.45830207729583],[4.564872733534463,52.45830223803508],[4.564872597957934,52.458302407862995],[4.56487246254846,52.458302568704205],[4.564872326971929,52.45830273853212],[4.564872191562453,52.45830289937336],[4.564872055985922,52.45830306920126],[4.564871905865054,52.45830322994047],[4.564871770455573,52.458303390781694],[4.564871634879038,52.4583035606096],[4.564871499469556,52.45830372145083],[4.56487136389302,52.45830389127874],[4.564871213270983,52.45830407897792],[4.564870656921649,52.458304722240825],[4.564870491254107,52.458304927811234],[4.56487035567756,52.45830509763912],[4.56487022026807,52.45830525848037],[4.564870084858577,52.45830541932162],[4.564869949282031,52.45830558914951],[4.564869813872536,52.458305749990764],[4.56486967846304,52.458305910831996],[4.564869542886488,52.458306080659916],[4.564869407476993,52.45830624150112],[4.564869271900441,52.45830641132903],[4.564869136490939,52.45830657217028],[4.564869001081441,52.45830673301153],[4.564868865504884,52.45830690283942],[4.564868730095382,52.458307063680664],[4.564868594518825,52.45830723350855],[4.564868459109319,52.4583073943498],[4.564868323532759,52.45830756417769],[4.564868188123252,52.45830772501894],[4.564868052713746,52.45830788586019],[4.564867917137184,52.45830805568807],[4.564867781727673,52.458308216529325],[4.564867646151107,52.45830838635722],[4.564867510741598,52.45830854719844],[4.564867375165029,52.458308717026334],[4.564867239755516,52.4583088778676],[4.564867119057393,52.45830903881088],[4.564866983480821,52.45830920863879],[4.564866848071307,52.45830936948002],[4.564866712494734,52.45830953930796],[4.564866577085215,52.45830970014913],[4.564866441508642,52.458309869977036],[4.56486630609912,52.45831003081829],[4.564866170522544,52.45831020064617],[4.564866035113021,52.45831036148743],[4.564865899703499,52.45831052232865],[4.564865778838311,52.458310692258614],[4.564865643428784,52.458310853099846],[4.564865507852203,52.45831102292772],[4.564865372442674,52.45831118376898],[4.56486523686609,52.458311353596834],[4.564865101456562,52.45831151443811],[4.564864965879976,52.45831168426601],[4.564864845181837,52.45831184520926],[4.564864679514242,52.45831205077966],[4.564864513846646,52.45831225635004],[4.564864378270054,52.458312426177955],[4.564864242860519,52.45831258701918],[4.564864107283928,52.458312756847064],[4.564863971874389,52.45831291768828],[4.564863851009187,52.45831308761823],[4.564863715599648,52.45831324845949],[4.564863580023051,52.45831341828737],[4.56486344461351,52.45831357912862],[4.56486330903691,52.4583137489565],[4.564863188338759,52.458313909899786],[4.564863052762158,52.45831407972768],[4.564862917352613,52.458314240568896],[4.564862781776011,52.458314410396795],[4.564862660910799,52.45831458032672],[4.564862525501251,52.45831474116795],[4.564862389924643,52.45831491099587],[4.564862269226488,52.458315071939126],[4.564862103558868,52.45831527750951],[4.564861983361877,52.45831541149284],[4.564861787603244,52.45831565280573],[4.564861606723058,52.45831588523401],[4.564861425675813,52.45831612664894],[4.564861229917171,52.45831636796183],[4.564861049036979,52.45831660039012],[4.564860853278335,52.45831684170295],[4.564860672231082,52.45831708311789],[4.56486047663949,52.458317315444155],[4.564860295592235,52.458317556859086],[4.56486009983358,52.45831779817192],[4.564859918786318,52.45831803958686],[4.564859737906112,52.458318272015134],[4.564859542147452,52.45831851332801],[4.564859361100187,52.45831875474295],[4.564859180052917,52.45831899615785],[4.564858984461307,52.458319228484086],[4.564858803414036,52.458319469899],[4.564858622366762,52.45831971131394],[4.564858426608089,52.458319952626816],[4.564858245727867,52.45832018505508],[4.564858064680585,52.458320426469975],[4.564857883633303,52.458320667884884],[4.564857687874623,52.458320909197774],[4.564857506994392,52.45832114162605],[4.564857325947104,52.458321383040975],[4.564857144899813,52.458321624455905],[4.564856949141125,52.45832186576874],[4.56485676809383,52.458322107183676],[4.564856587046532,52.45832234859861],[4.56485640616629,52.45832258102688],[4.564856225118989,52.45832282244181],[4.564856044071687,52.4583230638567],[4.564855848312987,52.4583233051696],[4.564855667265679,52.458323546584474],[4.564855486218369,52.458323787999404],[4.564855305338116,52.4583240204277],[4.564855124290803,52.45832426184261],[4.564854943243487,52.458324503257515],[4.564854762196171,52.45832474467244],[4.564854581148849,52.45832498608734],[4.56485440010153,52.45832522750225],[4.564854219054208,52.45832546891718],[4.564854038006883,52.458325710332105],[4.564853857126614,52.458325942760375],[4.564853676079284,52.45832618417527],[4.564853495031954,52.45832642559019],[4.564853313984622,52.45832666700512],[4.564853132937285,52.45832690842004],[4.564852951889947,52.458327149834936],[4.564852770842612,52.458327391249874],[4.56485258979527,52.458327632664755],[4.564852408747927,52.458327874079686],[4.564852227700583,52.45832811549458],[4.564852046653234,52.45832835690951],[4.564851865605887,52.458328598324414],[4.564851699269932,52.45832883984138],[4.56485151822258,52.45832908125629],[4.564851337175226,52.458329322671226],[4.564851156127868,52.458329564086114],[4.564850975080511,52.45832980550102],[4.56485079403315,52.458330046915925],[4.564850627697185,52.45833028843292],[4.564850446816878,52.45833052086113],[4.564850265602455,52.45833077126272],[4.564850084555085,52.458331012677604],[4.564849903507715,52.458331254092535],[4.564849737171742,52.45833149560947],[4.564849556124367,52.45833173702437],[4.564849375076991,52.458331978439304],[4.564849208741011,52.45833221995627],[4.564849027693629,52.458332461371164],[4.564848846646249,52.45833270278607],[4.564848680310263,52.45833294430302],[4.564848499262876,52.45833318571792],[4.564848318215487,52.458333427132835],[4.564848151879498,52.458333668649814],[4.564847970832107,52.45833391006471],[4.564847789784712,52.45833415147961],[4.564847623448714,52.45833439299656],[4.564847442401316,52.45833463441146],[4.564847276065318,52.45833487592846],[4.564847095017914,52.4583351173433],[4.56484692851485,52.45833536784693],[4.564846747467444,52.45833560926184],[4.564846566420037,52.45833585067674],[4.564846400084027,52.45833609219368],[4.564846219036616,52.4583363336086],[4.564846052700602,52.458336575125536],[4.564845871653186,52.458336816540445],[4.564845705317169,52.45833705805741],[4.56484553898115,52.45833729957435],[4.56484535776667,52.45833754997591],[4.564845191430646,52.458337791492845],[4.564845010383222,52.458338032907754],[4.564844844047193,52.45833827442472],[4.564844662999764,52.4583385158396],[4.564844496663735,52.458338757356564],[4.564844330160642,52.45833900786016],[4.564844149113206,52.45833924927507],[4.564843982777171,52.45833949079203],[4.564843816441134,52.458339732308964],[4.564843635393693,52.458339973723874],[4.56484346889059,52.45834022422745],[4.564843302554548,52.45834046574441],[4.564843121507099,52.45834070715931],[4.564842955171053,52.45834094867625],[4.564842788835005,52.458341190193195],[4.564842622331893,52.45834144069679],[4.564842441284439,52.4583416821117],[4.564842274948384,52.45834192362864],[4.564842108612327,52.458342165145574],[4.56484194210921,52.45834241564917],[4.564841775773148,52.458342657166135],[4.564841594725685,52.458342898581016],[4.564841428389619,52.45834314009795],[4.564841261886494,52.45834339060155],[4.564841095550427,52.458343632118535],[4.564840929214358,52.45834387363545],[4.564840762878288,52.458344115152364],[4.56484058166375,52.45834436555392],[4.564840415327676,52.45834460707089],[4.564840248991599,52.458344848587835],[4.56484008265552,52.45834509010477],[4.564839916152377,52.458345340608346],[4.564839749816295,52.45834558212533],[4.564839583480212,52.45834582364225],[4.564839416977065,52.458346074145815],[4.564839250640977,52.458346315662794],[4.56483825229029,52.45834778273775],[4.5648380707416,52.45834805111257],[4.564837919618085,52.45834826577162],[4.564837798418562,52.4583484536748],[4.564837662340572,52.458348650462646],[4.564837526429643,52.458348838263795],[4.564837405063055,52.45834903515362],[4.564837269152124,52.45834922295477],[4.564837147785534,52.45834941984462],[4.564837011707537,52.45834961663243],[4.564836890508006,52.45834980453562],[4.564836754430008,52.45835000132344],[4.564836633230475,52.45835018922666],[4.564836497152474,52.45835038601444],[4.564836375952941,52.458350573917635],[4.564836239874937,52.45835077070546],[4.564836118675401,52.458350958608634],[4.564835982597395,52.45835115539645],[4.564835861397856,52.45835134329968],[4.564835740031253,52.458351540189504],[4.564835604120308,52.45835172799066],[4.564835482753701,52.45835192488051],[4.564835346842753,52.45835211268164],[4.564835225476145,52.45835230957152],[4.564835089565195,52.45835249737264],[4.564834968198586,52.45835269426251],[4.564834846831975,52.45835289115234],[4.56483471092102,52.458353078953486],[4.564834589554407,52.45835327584335],[4.56483445364345,52.45835346364453],[4.564834332276837,52.45835366053436],[4.564834211077284,52.45835384843756],[4.56483407499926,52.458354045225335],[4.564833772083903,52.458354510490025],[4.564833680975405,52.45835466265074],[4.564833575155501,52.4583548147094],[4.564833484047004,52.458354966870104],[4.564833378394161,52.458355109942126],[4.564833287285663,52.45835526210283],[4.564833181465755,52.45835541416152],[4.564833090357254,52.45835556632217],[4.564832984537349,52.45835571838088],[4.564832893595908,52.45835586155491],[4.564832787776,52.45835601361358],[4.564832696667498,52.4583561657743],[4.564832590847587,52.45835631783295],[4.56483249973908,52.458356469993646],[4.56483239391917,52.458356622052314],[4.564832287932195,52.458356783097614],[4.564832166732625,52.4583569710008],[4.564832045365991,52.45835716789065],[4.564831909287949,52.45835736467847],[4.56483180330097,52.458357525723784],[4.564831712025397,52.45835768687111],[4.564831606038416,52.45835784791644],[4.564831500218498,52.458357999975064],[4.564831394231518,52.45835816102039],[4.564831302955943,52.45835832216775],[4.564831197136021,52.45835847422639],[4.564831091149037,52.4583586352717],[4.564830999873458,52.45835879641906],[4.564830893886474,52.458358957464384],[4.564830788066551,52.458359109523016],[4.564830696790972,52.45835927067038],[4.564830590803985,52.45835943171568],[4.564830484984059,52.458359583774346],[4.564830393708478,52.458359744921694],[4.564830287721489,52.458359905967],[4.564830181734497,52.458360067012286],[4.564830090625976,52.45836021917302],[4.564829984638983,52.45836038021831],[4.564829878651991,52.45836054126362],[4.56482978754347,52.458360693424325],[4.564829681556474,52.45836085446962],[4.564829575569478,52.4583610155149],[4.564829484293892,52.45836117666229],[4.564829378473958,52.45836132872093],[4.564829287198369,52.45836148986829],[4.56482918121137,52.45836165091358],[4.564829075224371,52.4583618119589],[4.564828984115843,52.458361964119604],[4.564828878128842,52.45836212516492],[4.56482878685325,52.45836228631225],[4.564828680866249,52.45836244735757],[4.564828589757718,52.458362599518274],[4.564828483770715,52.458362760563574],[4.564828377783711,52.45836292160889],[4.564828286508114,52.45836308275624],[4.564828180521107,52.45836324380155],[4.564828089412575,52.45836339596225],[4.564827983425566,52.458363557007544],[4.564827892149967,52.45836371815489],[4.56482778616296,52.458363879200185],[4.564827695054421,52.45836403136091],[4.564827589067413,52.458364192406215],[4.56482749779181,52.45836435355354],[4.564827391804799,52.458364514598856],[4.564827285984851,52.458364666657516],[4.564827194709246,52.45836482780488],[4.564827088722233,52.45836498885018],[4.564826997446628,52.458365149997505],[4.564826891459611,52.458365311042826],[4.564826800351067,52.45836546320352],[4.564826709075462,52.45836562435087],[4.564826603088444,52.45836578539621],[4.564826511812834,52.45836594654353],[4.564826405825817,52.45836610758883],[4.564826314717271,52.45836625974955],[4.56482620873025,52.45836642079486],[4.564826117454637,52.45836658194218],[4.564826011467614,52.4583667429875],[4.564825920192003,52.45836690413485],[4.564825799159443,52.458367083051385],[4.564825708050891,52.45836723521207],[4.5648255866842,52.45836743210192],[4.564825434558172,52.45836770068086],[4.564825267720733,52.458367969157734],[4.564825115761767,52.45836822874997],[4.564824948924326,52.458368497226864],[4.564824782253943,52.458368756717086],[4.564824630127906,52.458369025295994],[4.564824463290457,52.458369293772854],[4.564824311331483,52.458369553365124],[4.56482414449403,52.458369821842005],[4.564823992367986,52.458370090420914],[4.564823825697593,52.45837034991115],[4.564823673571545,52.45837061849003],[4.564823506901148,52.458370877980265],[4.564823354775098,52.458371146559195],[4.564822975796478,52.45837174611328],[4.564822854262697,52.45837195198976],[4.564822747774457,52.458372139995035],[4.564822641453278,52.45837231901361],[4.564822534965036,52.45837250701887],[4.564822428643857,52.45837268603743],[4.564822322322676,52.458372865056006],[4.564822201123019,52.45837305295925],[4.564822094801837,52.45837323197782],[4.56482198831359,52.45837341998305],[4.564821881992407,52.45837359900165],[4.564821775504157,52.458373787006884],[4.564821669182971,52.45837396602548],[4.564821562861785,52.45837414504409],[4.564821456373533,52.458374333049306],[4.564821335340932,52.45837451196584],[4.564821228852678,52.45837469997108],[4.564821122531492,52.45837487898969],[4.564821016043234,52.45837506699494],[4.564820909722043,52.4583752460135],[4.564820803233785,52.458375434018784],[4.564820696912591,52.45837561303734],[4.564820590591398,52.45837579205593],[4.564820484103136,52.458375980061184],[4.564820377781941,52.45837615907976],[4.564820271293679,52.458376347085014],[4.56482016497248,52.458376526103635],[4.564820058484218,52.45837671410883],[4.564819952163019,52.45837689312741],[4.564819845841818,52.45837707214603],[4.564819739353551,52.458377260151245],[4.564819633032351,52.45837743916987],[4.564819465526576,52.4583777435933],[4.564819374417983,52.458377895754],[4.564819283142321,52.45837805690136],[4.56481919186666,52.45837821804871],[4.564819100758065,52.45837837020938],[4.564819009482404,52.45837853135674],[4.56481891820674,52.45837869250407],[4.564818827098142,52.4583788446648],[4.564818735822477,52.458379005812155],[4.564818644546812,52.45837916695949],[4.564818553271146,52.45837932810684],[4.564818462162545,52.4583794802675],[4.564818370886879,52.458379641414886],[4.564818279611211,52.45837980256223],[4.564818188502609,52.45837995472292],[4.564818097226938,52.45838011587028],[4.564818005951269,52.45838027701763],[4.564817914675598,52.458380438164944],[4.564817823566994,52.45838059032567],[4.564817732291322,52.45838075147301],[4.564817655727064,52.45838091272241],[4.564817564451393,52.458381073869745],[4.564817473342785,52.45838122603044],[4.564817382067109,52.4583813871778],[4.564817290791435,52.458381548325164],[4.564817199682826,52.45838170048586],[4.56481710840715,52.45838186163316],[4.564817017131472,52.45838202278051],[4.564816925855793,52.45838218392788],[4.564816834747182,52.45838233608857],[4.564816758182917,52.45838249733796],[4.564816651861691,52.45838267635654],[4.564816150179574,52.458383544693675],[4.564816028478661,52.458383759556774],[4.564815937202977,52.458383920704115],[4.564815845760226,52.45838409083811],[4.564815754484539,52.458384251985436],[4.564815663041788,52.45838442211946],[4.564815571599032,52.458384592253445],[4.564815480323345,52.45838475340075],[4.564815388880589,52.45838492353476],[4.564815297437834,52.45838509366878],[4.564815191450727,52.45838525471408],[4.564815100007969,52.458385424848046],[4.564815008565211,52.45838559498204],[4.564814917289519,52.458385756129395],[4.564814825846759,52.45838592626338],[4.564814734403999,52.458386096397376],[4.564814643128304,52.45838625754471],[4.564814551685543,52.458386427678725],[4.564814460409847,52.458386588826066],[4.564814368967083,52.458386758960046],[4.564814277524321,52.45838692909404],[4.564814186248623,52.45838709024136],[4.564814094805857,52.45838726037535],[4.564814003363091,52.45838743050937],[4.564813912087392,52.45838759165671],[4.564813820644624,52.458387761790696],[4.564813729201856,52.45838793192468],[4.564813637926155,52.45838809307202],[4.564813546483386,52.45838826320604],[4.564813455040616,52.45838843334],[4.564813363764912,52.45838859448735],[4.564813272322141,52.45838876462133],[4.564813180879368,52.45838893475531],[4.564813089603661,52.458389095902675],[4.564812998160889,52.45838926603667],[4.564812906718114,52.45838943617065],[4.564812830153825,52.458389597420044],[4.564812738711048,52.458389767554024],[4.564812647268272,52.458389937688025],[4.564812555825495,52.45839010782201],[4.564812464549783,52.458390268969346],[4.564812373107006,52.45839043910337],[4.564812281664226,52.458390609237334],[4.564812174841761,52.45839081521584],[4.564812053307877,52.45839102109235],[4.564811961865095,52.45839119122635],[4.56481188513373,52.4583913614624],[4.564811793858014,52.45839152260971],[4.564811702415231,52.458391692743696],[4.564811610972446,52.45839186287772],[4.56481151969673,52.45839202402502],[4.564811428253944,52.458392194159],[4.564811336811157,52.458392364293026],[4.564811260079786,52.45839253452903],[4.564811168804068,52.45839269567641],[4.564811077361277,52.4583928658104],[4.56481098591849,52.45839303594437],[4.564810894642768,52.458393197091716],[4.564810817911396,52.458393367327744],[4.564810726468603,52.45839353746173],[4.56481063502581,52.45839370759573],[4.564810543750086,52.45839386874309],[4.564810452307294,52.45839403887706],[4.564810330272191,52.45839427171345],[4.564810223282639,52.458394486678664],[4.5648101014146,52.45839471052842],[4.564809995093317,52.45839488954698],[4.564809903316386,52.458395077654295],[4.564809811539452,52.458395265761574],[4.564809705218165,52.45839544478014],[4.564809613441231,52.45839563288743],[4.564809521664293,52.4583958209947],[4.564809415343006,52.4583960000133],[4.564809323566068,52.45839618812059],[4.56480923178913,52.45839637622787],[4.564809140012191,52.45839656433515],[4.564809033690899,52.45839674335371],[4.564808941913959,52.458396931461],[4.564808850137018,52.45839711956828],[4.564808743648654,52.45839730757353],[4.564808652038781,52.45839748669417],[4.564808560261837,52.458397674801446],[4.56480846848489,52.4583978629087],[4.564808361996526,52.458398050913985],[4.56480827021958,52.45839823902124],[4.564808178442632,52.45839842712852],[4.564808086665685,52.45839861523581],[4.564807980344384,52.45839879425437],[4.564807888567435,52.45839898236166],[4.564807796790483,52.45839917046896],[4.564807690302113,52.458399358474175],[4.564807598525161,52.458399546581454],[4.56480750674821,52.45839973468874],[4.564807414971256,52.45839992279603],[4.564807308482879,52.45840011080125],[4.564807216705926,52.458400298908536],[4.564807109716346,52.45840051387368],[4.564807002726762,52.45840072883886],[4.564806911283941,52.45840089897285],[4.564806834719607,52.458401060222236],[4.564806743276785,52.45840123035623],[4.564806666545384,52.45840140059226],[4.564806575269628,52.45840156173961],[4.564806498538226,52.45840173197565],[4.5648064070954,52.4584019021096],[4.564806330363995,52.45840207234567],[4.564806239088236,52.458402233493025],[4.564806162356829,52.458402403729046],[4.564806070914001,52.45840257386303],[4.564805994349665,52.45840273511243],[4.564805902906836,52.45840290524642],[4.564805826175427,52.458403075482465],[4.564805734899664,52.4584032366298],[4.564805658168255,52.458403406865834],[4.564805566725422,52.458403576999814],[4.564805489994012,52.45840374723585],[4.564805398718248,52.45840390838317],[4.564805321986836,52.458404078619225],[4.564805230544001,52.458404248753205],[4.564805153979655,52.45840441000262],[4.564805077248242,52.45840458023865],[4.564804985805405,52.458404750372615],[4.564804909073989,52.45840492060866],[4.564804817798221,52.45840508175599],[4.564804741066805,52.45840525199204],[4.564804649623965,52.458405422126035],[4.564804573059617,52.45840558337542],[4.564804496328197,52.45840575361143],[4.564804404885356,52.45840592374544],[4.564804328153937,52.458406093981466],[4.564804251589586,52.45840625523085],[4.564804160146743,52.45840642536485],[4.564804083415322,52.45840659560088],[4.564804006850969,52.45840675685029],[4.564803915408123,52.45840692698425],[4.564803838676699,52.45840709722028],[4.564803761945278,52.45840726745634],[4.564803670669498,52.458407428603664],[4.564803593938074,52.45840759883973],[4.564803517206647,52.45840776907574],[4.564803425763798,52.458407939209714],[4.56480334919944,52.45840810045913],[4.564803272468013,52.45840827069518],[4.564803181025161,52.45840844082915],[4.564803104460802,52.45840860207854],[4.564803027729374,52.458408772314534],[4.564802950997943,52.45840894255056],[4.56480285955509,52.458409112684606],[4.564802782990729,52.458409273933974],[4.564802706259297,52.45840944417002],[4.564802614816441,52.45840961430397],[4.564802538085007,52.45840978454004],[4.564802461520644,52.458409945789434],[4.564802384789209,52.458410116025455],[4.564802308057776,52.458410286261476],[4.564802216614917,52.45841045639548],[4.56480214005055,52.45841061764484],[4.564802063319113,52.458410787880894],[4.564801986587676,52.45841095811695],[4.564801895144814,52.45841112825091],[4.564801818580446,52.45841128950031],[4.564801649904936,52.45841165683027],[4.564800577669555,52.458413932294974],[4.564800485892542,52.45841412040227],[4.564800378568756,52.458414353340714],[4.564800240652628,52.45841464898162],[4.564800102569431,52.45841495360916],[4.564799964653301,52.458415249250066],[4.564799826570101,52.45841555387757],[4.564799688653966,52.45841584951846],[4.564799550570761,52.45841615414599],[4.564799412487553,52.45841645877351],[4.564799274571413,52.45841675441443],[4.564799136488203,52.45841705904195],[4.56479899857206,52.45841735468282],[4.564798860488844,52.45841765931035],[4.564798722405629,52.458417963937904],[4.564798584489478,52.458418259578785],[4.564798446406259,52.45841856420632],[4.564798308323035,52.458418868833846],[4.564798185118309,52.458419164576796],[4.564798047035082,52.4584194692043],[4.564797909118924,52.458419764845196],[4.564797771035694,52.458420069472716],[4.564797632952462,52.45842037410025],[4.564797509747727,52.45842066984321],[4.564797371664491,52.45842097447073],[4.564797233581254,52.45842127909826],[4.564797095665083,52.45842157473916],[4.564796972293271,52.45842187946874],[4.564796834210027,52.45842218409626],[4.564796696293853,52.45842247973716],[4.564796572922035,52.458422784466755],[4.564796434838784,52.458423089094275],[4.564796296922605,52.45842338473515],[4.564796127578719,52.4584237880117],[4.564796050847237,52.458423958247714],[4.564795988827183,52.45842412858581],[4.5647959120957,52.45842429882185],[4.564795835364215,52.45842446905789],[4.5647957587998,52.45842463030726],[4.564795682068317,52.458424800543305],[4.564795620048257,52.45842497088138],[4.56479554331677,52.45842514111742],[4.564795466585283,52.45842531135346],[4.564795389853797,52.458425481589444],[4.564795327833737,52.45842565192758],[4.564795251102248,52.458425822163605],[4.56479517437076,52.458425992399654],[4.564795097639269,52.45842616263566],[4.564795035786277,52.45842632398708],[4.564794959054786,52.45842649422313],[4.564794882323295,52.45842666445919],[4.564794820303233,52.458426834797294],[4.564794743571738,52.45842700503328],[4.564794666840244,52.45842717526933],[4.564794590108751,52.45842734550533],[4.564794528088687,52.45842751584347],[4.564794451357192,52.45842768607946],[4.564794374625694,52.45842785631549],[4.564794312605628,52.45842802665357],[4.564794235874132,52.45842819688961],[4.564794159309706,52.458428358138995],[4.564794097289636,52.458428528477086],[4.564794020558137,52.45842869871311],[4.564793958538068,52.45842886905123],[4.564793866593926,52.45842906614514],[4.564793604637567,52.45842970246218],[4.564793527738993,52.45842988168484],[4.564793450673347,52.45843006989419],[4.564793373607701,52.458430258103526],[4.564793296542055,52.45843044631285],[4.564793219643478,52.45843062553551],[4.564793142577829,52.45843081374489],[4.564793065512182,52.45843100195418],[4.564792988613603,52.45843118117688],[4.564792911547953,52.45843136938618],[4.564792834482304,52.45843155759551],[4.564792757583722,52.45843173681817],[4.56479268051807,52.45843192502755],[4.564792603452417,52.45843211323683],[4.564792526386763,52.45843230144615],[4.564792449488182,52.45843248066884],[4.564792372422526,52.45843266887815],[4.564792295356871,52.45843285708751],[4.564792218458288,52.45843303631019],[4.564792141392631,52.45843322451949],[4.564792064326974,52.45843341272883],[4.564791987261314,52.45843360093816],[4.564791910362729,52.45843378016084],[4.564791833297068,52.45843396837015],[4.56479175623141,52.458434156579486],[4.564791679165748,52.45843434478879],[4.564791616978591,52.45843452411355],[4.564791539912929,52.45843471232287],[4.564791462847266,52.45843490053219],[4.564791385781604,52.45843508874151],[4.564791308883012,52.45843526796422],[4.564791216604701,52.45843548303141],[4.564790984906487,52.45843607461931],[4.564790938099042,52.458436218099536],[4.564790876747239,52.458436352491034],[4.564790830106865,52.458436486984596],[4.564790768755059,52.458436621376066],[4.564790722114688,52.45843675586964],[4.564790660762879,52.45843689026113],[4.564790614289578,52.458437015768006],[4.564790552937771,52.45843715015953],[4.564790506297395,52.458437284653044],[4.564790444945589,52.458437419044536],[4.564790398305213,52.45843755353811],[4.564790351664838,52.45843768803166],[4.56479029031303,52.458437822423164],[4.564790243672653,52.4584379569167],[4.564790182487915,52.45843808232155],[4.564790104921024,52.458438297490815],[4.564790027521207,52.45843850367344],[4.564789950121388,52.45843870985606],[4.564789858010134,52.45843891593663],[4.564789780777384,52.45843911313261],[4.564789703377561,52.458439319315225],[4.564789625977742,52.45843952549785],[4.56478951815262,52.45843978539622],[4.564789425206001,52.45844003641006],[4.564789347806177,52.45844024259263],[4.564789270406351,52.45844044877527],[4.564789193006525,52.45844065495791],[4.564789101062336,52.4584408520518],[4.564789023662506,52.45844105823441],[4.564788946262679,52.458441264417054],[4.564788868862852,52.45844147059969],[4.56478879146302,52.458441676782265],[4.564788714063189,52.458441882964905],[4.564788636663359,52.45844208914752],[4.564788559430598,52.4584422863435],[4.564788482030766,52.45844249252613],[4.564788404630932,52.45844269870875],[4.564788327231097,52.45844290489137],[4.564788249831262,52.458443111073976],[4.564788172431427,52.45844331725663],[4.564788095031592,52.45844352343921],[4.564788017631754,52.45844372962185],[4.564787925687553,52.45844392671574],[4.564787848287713,52.45844413289835],[4.564787770887875,52.458444339081],[4.564787693488034,52.4584445452636],[4.564787630799628,52.458444751548306],[4.564787553399788,52.458444957730904],[4.564787475999946,52.45844516391352],[4.564787398600103,52.45844537009614],[4.564787321200259,52.45844557627877],[4.564787243967487,52.458445773474715],[4.564787166567642,52.458445979657334],[4.564787089167797,52.458446185839975],[4.564787011767951,52.45844639202258],[4.564786934368102,52.458446598205235],[4.564786856968253,52.45844680438784],[4.564786779568404,52.45844701057046],[4.564786702168557,52.458447216753044],[4.564786624768706,52.45844742293569],[4.564786547368855,52.458447629118304],[4.56478648468044,52.458447835402964],[4.564786407280588,52.458448041585605],[4.564786330047808,52.45844823878154],[4.564786252647954,52.458448444964205],[4.564786175248098,52.45844865114681],[4.564786097848243,52.45844885732942],[4.564786020448387,52.45844906351205],[4.564785957759967,52.45844926979669],[4.564785880360111,52.45844947597934],[4.564785802960253,52.458449682161955],[4.564785725560394,52.45844988834459],[4.564785648160535,52.45845009452717],[4.564785585472111,52.458450300811855],[4.564785508072251,52.45845050699447],[4.56478543067239,52.45845071317708],[4.564785353272527,52.45845091935969],[4.564785260158788,52.45845117936015],[4.564784669547368,52.45845287395846],[4.564784592314572,52.45845307115441],[4.564784514914701,52.45845327733703],[4.564784452059196,52.4584534926084],[4.564784374659324,52.45845369879101],[4.564784297092377,52.45845391396023],[4.564784234403944,52.45845412024492],[4.564784156836995,52.45845433541418],[4.564784079437121,52.45845454159679],[4.564784001870173,52.45845475676609],[4.564783939181735,52.45845496305074],[4.564783861614784,52.45845517822001],[4.564783784214907,52.458455384402626],[4.564783721359396,52.45845559967394],[4.564783643959518,52.458455805856545],[4.564783581104003,52.45845602112789],[4.564783503537049,52.45845623629716],[4.564783426137167,52.45845644247977],[4.564783363281652,52.45845665775108],[4.564783285881769,52.45845686393369],[4.564783208314814,52.45845707910299],[4.56478314562637,52.45845728538762],[4.56478306805941,52.4584575005569],[4.564783005370965,52.458457706841564],[4.564782927804007,52.45845792201084],[4.56478286511556,52.45845812829551],[4.564782787548598,52.45845834346479],[4.564782710148711,52.458458549647396],[4.564782647293186,52.45845876491873],[4.564782569726224,52.45845898008798],[4.564782507037775,52.45845918637266],[4.56478242947081,52.45845940154193],[4.564782351569697,52.4584596346845],[4.564782101651255,52.45846041488993],[4.564781368278047,52.458462665741884],[4.564781321470543,52.45846280922206],[4.564781274830114,52.4584629437156],[4.564781228022609,52.458463087195796],[4.564781181215104,52.45846323067599],[4.564781134574672,52.45846336516955],[4.56478108776717,52.458463508649714],[4.564781040959663,52.458463652129936],[4.564780993650936,52.45846382257006],[4.564780916083956,52.45846403773933],[4.564780822803089,52.45846430672642],[4.564780760114624,52.4584645130111],[4.564780697259084,52.458464728282394],[4.564780619692101,52.45846494345168],[4.564780557003633,52.458465149736334],[4.56478049414809,52.458465365007676],[4.564780431459621,52.458465571292315],[4.564780353892637,52.45846578646159],[4.564780291204166,52.45846599274626],[4.564780228348621,52.45846620801761],[4.564780165493075,52.45846642328891],[4.56478008809316,52.45846662947155],[4.564780025237615,52.458466844742865],[4.564779962549141,52.45846705102753],[4.564779899693594,52.45846726629885],[4.564779836838043,52.458467481570146],[4.564779759438126,52.45846768775277],[4.564779696582576,52.45846790302409],[4.5647796338941,52.458468109308754],[4.564779571038548,52.45846832458008],[4.564779508350072,52.458468530864764],[4.564779445494519,52.45846874613606],[4.564779367927522,52.458468961305336],[4.564779305239044,52.45846916759002],[4.56477924238349,52.458469382861324],[4.564779179527934,52.45846959813264],[4.564779116839453,52.45846980441733],[4.564779053983897,52.45847001968865],[4.564778991295415,52.45847022597329],[4.564778928439857,52.45847044124466],[4.564778865584299,52.458470656515935],[4.564778787683149,52.458470889658514],[4.564778661470807,52.45847134716108],[4.564778614663285,52.45847149064126],[4.564778567020392,52.4584716790547],[4.564778488785088,52.45847193017057],[4.564778410549786,52.45847218128644],[4.56477833231448,52.458472432402274],[4.56477826879062,52.458472683620194],[4.564778190555312,52.45847293473605],[4.564778112320004,52.45847318585189],[4.564778048963215,52.45847342808315],[4.564777970727905,52.45847367919901],[4.564777892492597,52.45847393031485],[4.56477782896873,52.45847418153278],[4.564777750733418,52.45847443264862],[4.564777672498106,52.45847468376447],[4.564777608974237,52.45847493498236],[4.564777530738923,52.458475186098234],[4.564777451835308,52.45847547316069],[4.564777373432917,52.45847573326317],[4.564777310243195,52.4584759665078],[4.564777232174952,52.458476208637],[4.56477716898523,52.4584764418816],[4.564777105795504,52.458476675126214],[4.564777042438704,52.4584769173575],[4.564776964537531,52.45847715050006],[4.564776901347805,52.45847738374467],[4.564776838158078,52.45847761698928],[4.564776774801277,52.45847785922054],[4.564776696900102,52.45847809236307],[4.564776633710371,52.458478325607736],[4.564776570520642,52.458478558852306],[4.564776507163837,52.458478801083594],[4.564776443974106,52.45847903432818],[4.564776380784373,52.45847926757283],[4.564776302716119,52.45847950970202],[4.564776239526386,52.458479742946636],[4.564776176336651,52.458479976191235],[4.564776113146916,52.45848020943586],[4.564776049790106,52.45848045166712],[4.56477598660037,52.458480684911734],[4.564775923410635,52.45848091815633],[4.564775860053821,52.45848116038759],[4.564775796864083,52.45848139363222],[4.564775733674344,52.45848162687685],[4.564775670484605,52.458481860121424],[4.564775607127789,52.45848210235271],[4.564775543938049,52.458482335597296],[4.564775480748306,52.458482568841944],[4.56477541805979,52.458482775126626],[4.564775354535898,52.45848302634449],[4.564775307060053,52.4584832057713],[4.564775259417131,52.45848339418473],[4.564775197062763,52.4584835824961],[4.564775149419841,52.45848377090954],[4.564775101943995,52.45848395033632],[4.564775054301072,52.45848413874974],[4.564775006658151,52.45848432716321],[4.5647749591823,52.45848450658996],[4.564774911539378,52.4584846950034],[4.564774863896455,52.45848488341687],[4.564774816420605,52.458485062843614],[4.564774768777681,52.45848525125704],[4.564774721134755,52.45848543967049],[4.564774673491831,52.458485628083906],[4.564774626015979,52.458485807510705],[4.564774578373053,52.45848599592416],[4.564774530730126,52.458486184337566],[4.564774483254275,52.45848636376435],[4.564774435611347,52.458486552177774],[4.564774387968419,52.45848674059119],[4.564774340325491,52.45848692900464],[4.564774292849637,52.458487108431406],[4.564774245206709,52.458487296844844],[4.564774197563779,52.45848748525829],[4.564774149920848,52.458487673671726],[4.564774102444994,52.4584878530985],[4.564774054802061,52.45848804151195],[4.56477400715913,52.458488229925365],[4.5647739595162,52.45848841833879],[4.564773912040343,52.45848859776559],[4.564773849184736,52.45848881303688],[4.564773769445696,52.45848914503257],[4.56477370608886,52.45848938726384],[4.564773657944698,52.458489602637236],[4.564773609800539,52.4584898180106],[4.56477354677785,52.45849004226855],[4.56477349863369,52.45849025764192],[4.564773435778076,52.458490472913226],[4.564773387633915,52.458490688286645],[4.56477333948975,52.45849090365998],[4.564773276634135,52.45849111893129],[4.564773228489972,52.45849133430467],[4.564773180345806,52.45849154967808],[4.564773117323115,52.458491773936004],[4.564773069178948,52.4584919893094],[4.564773021034782,52.45849220468279],[4.564772958179164,52.458492419954084],[4.564772910034996,52.45849263532745],[4.564772861890829,52.458492850700814],[4.564772813746659,52.45849306607421],[4.564772750891041,52.45849328134552],[4.564772702579795,52.458493505705555],[4.564772654435627,52.45849372107892],[4.564772606291455,52.45849393645232],[4.564772558147285,52.45849415182568],[4.564772495291662,52.458494367097],[4.564772447147488,52.458494582470365],[4.564772399003316,52.45849479784374],[4.564772350859145,52.45849501321714],[4.564772302547894,52.45849523757713],[4.56477223969227,52.45849545284846],[4.564772191548096,52.45849566822185],[4.564772143403922,52.45849588359521],[4.564771998303089,52.458496565661896],[4.564771790346626,52.45849746299994],[4.564771743037825,52.45849763344009],[4.564771711108782,52.45849776803568],[4.564771679012662,52.45849791161794],[4.564771646916545,52.45849805520017],[4.564771629698952,52.45849818989781],[4.564771597602831,52.45849833348008],[4.564771565506711,52.45849847706233],[4.564771533577667,52.45849861165795],[4.564771501481546,52.45849875524021],[4.564771469385426,52.458498898822434],[4.564771437289305,52.458499042404696],[4.564771405360259,52.45849917700026],[4.564771373264136,52.45849932058252],[4.564771341335091,52.458499455178135],[4.564771308236511,52.45849965268027],[4.564771260593557,52.45849984109369],[4.564771212282298,52.45850006545373],[4.564771163971036,52.45850028981374],[4.564771131373686,52.45850046035595],[4.56477095584746,52.458501196138414],[4.564770923083032,52.45850137566726],[4.564770875607149,52.45850155509406],[4.56477084284272,52.458501734622885],[4.56477079519976,52.4585019230363],[4.564770762435331,52.45850210256517],[4.5647707296709,52.458502282094024],[4.564770682195015,52.4585024615208],[4.564770649263509,52.45850265003627],[4.564770601787624,52.45850282946306],[4.564770569023191,52.45850300899191],[4.564770536258761,52.458503188520744],[4.564770488615797,52.45850337693418],[4.564770455851364,52.45850355646302],[4.564770423086932,52.45850373599185],[4.564770375443968,52.4585039244053],[4.564770342679535,52.458504103934125],[4.564770309915104,52.45850428346297],[4.564770262439214,52.45850446288975],[4.564770229507703,52.45850465140522],[4.564770196743269,52.45850483093409],[4.564770149267379,52.458505010360845],[4.564770116335869,52.45850519887635],[4.564770083571434,52.458505378405185],[4.564770036095542,52.45850555783195],[4.564770003331107,52.4585057373608],[4.564769970399593,52.4585059258763],[4.564769922923702,52.45850610530307],[4.564769890159265,52.45850628483195],[4.564769857227751,52.45850647334742],[4.564769824463315,52.458506652876274],[4.564769776486194,52.458506859263004],[4.564769694408022,52.45850731707173],[4.564769646597977,52.45850751447178],[4.564769613833535,52.45850769400065],[4.564769581069098,52.45850787352946],[4.564769548304658,52.45850805305834],[4.564769515707295,52.45850822360048],[4.564769482942856,52.458508403129365],[4.564769435466959,52.45850858255616],[4.56476940270252,52.45850876208499],[4.564769369938079,52.45850894161381],[4.564769337173638,52.45850912114268],[4.564769304576272,52.45850929168482],[4.56476927181183,52.45850947121367],[4.564769239047389,52.45850965074254],[4.564769206282945,52.4585098302714],[4.564769173518505,52.45851000980022],[4.564769126209681,52.45851018024038],[4.564769093445238,52.45851035976919],[4.564769060680795,52.45851053929803],[4.564769027916351,52.45851071882687],[4.564768995151907,52.458510898355684],[4.564768962554539,52.4585110688979],[4.564768929790096,52.45851124842677],[4.564768897025651,52.458511427955585],[4.564768864261207,52.458511607484425],[4.564768831496761,52.45851178701327],[4.564768798732316,52.45851196654211],[4.564768766134948,52.4585121370843],[4.564768733370502,52.45851231661314],[4.564768700606056,52.458512496141985],[4.564768667841609,52.45851267567082],[4.564768635077163,52.458512855199665],[4.564768522072364,52.45851339368411],[4.564768473761073,52.45851361804414],[4.564768439994166,52.45851385149287],[4.564768391682876,52.45851407585292],[4.564768357915968,52.45851430930161],[4.5647683094376,52.45851454264828],[4.564768275837769,52.45851476711037],[4.5647682273594,52.45851500045706],[4.56476819359249,52.45851523390576],[4.564768145281197,52.45851545826579],[4.564768111514287,52.45851569171449],[4.564768063035916,52.4585159250612],[4.564768029436082,52.45851614952327],[4.564767995669169,52.45851638297199],[4.564767947190796,52.45851661631866],[4.564767913590962,52.458516840780746],[4.564767865112589,52.458517074127435],[4.564767831345676,52.458517307576166],[4.564767797745837,52.45851753203822],[4.564767749267465,52.4585177653849],[4.56476771550055,52.45851799883361],[4.564767667189252,52.45851822319364],[4.564767633422337,52.45851845664235],[4.564767599655419,52.458518690091104],[4.564767551344121,52.45851891445112],[4.564767517577205,52.45851914789984],[4.564767483810287,52.458519381348566],[4.564767450210446,52.45851960581066],[4.564767401732069,52.458519839157326],[4.56476736796515,52.458520072606014],[4.564767334365309,52.458520297068105],[4.56476728588693,52.4585205304148],[4.564767252120008,52.458520763863525],[4.564767218687243,52.458520979338964],[4.564767185254476,52.458521194814395],[4.564767151988787,52.45852140130315],[4.564767118556021,52.45852161677859],[4.564767085123253,52.458521832254014],[4.564767051857563,52.4585220387428],[4.564767018424795,52.45852225421824],[4.564766984992027,52.45852246969364],[4.564766951726334,52.45852267618245],[4.564766918293564,52.4585228916579],[4.564766884860796,52.45852310713333],[4.564766851595104,52.4585233136221],[4.564766818162335,52.458523529097526],[4.564766784729563,52.45852374457296],[4.564766751129716,52.458523969035056],[4.564766635117479,52.45852466927917],[4.564766601517629,52.45852489374124],[4.564766551869702,52.45852518999446],[4.564766516933234,52.45852548634973],[4.564766467285306,52.458525782602926],[4.564766417637376,52.45852607885614],[4.564766382700911,52.458526375211406],[4.564766333052979,52.45852667146459],[4.564766298116509,52.45852696781985],[4.564766248635656,52.458527255086416],[4.564766213699184,52.458527551441655],[4.564766164051251,52.45852784769489],[4.56476612911478,52.45852814405013],[4.564766079466846,52.45852844030336],[4.564766044530373,52.458528736658586],[4.564765994882439,52.458529032911784],[4.564765959945966,52.45852932926707],[4.564765910298027,52.45852962552028],[4.564765875361554,52.458529921875545],[4.564765825713615,52.45853021812873],[4.56476579077714,52.45853051448399],[4.564765755840663,52.45853081083924],[4.564765706192723,52.45853110709248],[4.564765671256248,52.45853140344773],[4.564765636319772,52.458531699803],[4.564765586671828,52.4585319960562],[4.564765551735351,52.45853229241146],[4.564765516798872,52.45853258876672],[4.564765481862394,52.45853288512199],[4.564765432214447,52.45853318137517],[4.564765397277968,52.458533477730434],[4.564765362341487,52.458533774085716],[4.564765327405006,52.45853407044097],[4.564765292468524,52.458534366796236],[4.564765242820578,52.458534663049434],[4.564765207884095,52.4585349594047],[4.564765172947611,52.45853525575997],[4.564765138011128,52.45853555211524],[4.564765103074643,52.4585358484705],[4.564765068138159,52.45853614482577],[4.564765033201674,52.458536441181],[4.564764998265187,52.45853673753629],[4.564764963328701,52.45853703389154],[4.564764928392217,52.458537330246806],[4.564764893455729,52.45853762660208],[4.564764858519242,52.45853792295733],[4.564764823582752,52.45853821931261],[4.564764788646266,52.45853851566787],[4.564764753709778,52.458538812023136],[4.564764718773287,52.458539108378346],[4.564764683836796,52.458539404733635],[4.564764648900305,52.4585397010889],[4.564764613963816,52.45853999744417],[4.564764593738792,52.45854029390149],[4.564764558635222,52.4585405992434],[4.564764523698729,52.45854089559866],[4.564764488762239,52.458541191953934],[4.564764453825743,52.4585414883092],[4.564764433600719,52.4585417847665],[4.564764398664226,52.45854208112177],[4.564764363727731,52.458542377477066],[4.564764328791236,52.4585426738323],[4.564764308566208,52.458542970289585],[4.564764273629712,52.45854326664487],[4.564764238693215,52.45854356300013],[4.564764217465722,52.45854391337736],[4.564764200248089,52.45854404807502],[4.56476418286338,52.45854419175933],[4.56476416547867,52.4585443354436],[4.564764147759806,52.45854449710124],[4.564764129372629,52.4585446947054],[4.564764110818376,52.45854490129626],[4.564764093099509,52.45854506295387],[4.564764074211101,52.45854528751799],[4.564764054654381,52.458545548028745],[4.564764019717883,52.458545844384005],[4.564763999492851,52.45854614084133],[4.56476396455635,52.458546437196595],[4.564763944164239,52.45854674264056],[4.564763909227738,52.458547038995825],[4.564763889002706,52.45854733545315],[4.564763853899126,52.458547640795075],[4.564763833674093,52.45854793725237],[4.564763813449061,52.458548233709706],[4.564763778512557,52.45854853006496],[4.564763758120445,52.45854883550893],[4.564763723183941,52.45854913186419],[4.564763702958905,52.45854942832149],[4.56476368273387,52.45854972477885],[4.564763647630288,52.45855003012075],[4.564763627405252,52.45855032657804],[4.564763607180216,52.45855062303539],[4.564763572076632,52.45855092837729],[4.564763551851596,52.45855122483459],[4.564763531626557,52.45855152129195],[4.56476349669005,52.458551817647184],[4.564763476297935,52.45855212309121],[4.564763456072896,52.458552419548504],[4.564763435847858,52.458552716005826],[4.564763415455742,52.458553021449795],[4.564763380519233,52.45855331780506],[4.564763360294195,52.45855361426236],[4.564763339902076,52.45855391970636],[4.564763319677039,52.45855421616364],[4.564763300788621,52.45855444072779],[4.564763282568514,52.458554629345365],[4.564763255827439,52.45855527628193],[4.564763238108565,52.45855543793954],[4.564763234767007,52.45855561767251],[4.564763216713978,52.458555797303426],[4.56476319866095,52.4585559769343],[4.564763195319394,52.45855615666728],[4.564763176430974,52.4585563812314],[4.564763157542555,52.458556605795515],[4.564763154200999,52.458556785528486],[4.564763136147969,52.458556965159396],[4.56476313280641,52.45855714489236],[4.56476311475338,52.45855732452327],[4.564763111411823,52.45855750425622],[4.564763093358793,52.45855768388711],[4.564763075305762,52.45855786351802],[4.564763071964204,52.458558043250996],[4.564763053744096,52.458558231868544],[4.564763050402539,52.45855841160147],[4.564763032349508,52.458558591232375],[4.564763029007949,52.45855877096533],[4.564763010954918,52.45855895059625],[4.564763007613358,52.458559130329206],[4.56476298956033,52.458559309960116],[4.56476298621877,52.458559489693044],[4.564762968165738,52.458559669323954],[4.56476296482418,52.458559849056925],[4.564762946771146,52.4585600286878],[4.564762943429589,52.458560208420785],[4.564762940088031,52.458560388153735],[4.564762922034999,52.45856056778462],[4.564762918693441,52.45856074751758],[4.564762900640408,52.45856092714846],[4.564762858018301,52.458561636889556],[4.564762838294489,52.458561906386926],[4.564762833783384,52.458562149026406],[4.564762814727883,52.45856238257719],[4.564762810216778,52.4585626252167],[4.564762791161277,52.45856285876747],[4.564762786650171,52.45856310140698],[4.564762767594669,52.45856333495775],[4.564762763083563,52.45856357759727],[4.564762743860985,52.45856382013467],[4.564762739516957,52.45856405378756],[4.564762720294375,52.45856429632498],[4.564762715950349,52.45856452997784],[4.564762696727766,52.458564772515274],[4.564762692383739,52.45856500616812],[4.564762687872633,52.458565248807616],[4.564762668817131,52.45856548235839],[4.564762664306024,52.45856572499786],[4.564762659961995,52.45856595865074],[4.564762640739414,52.458566201188155],[4.564762636395385,52.458566434840996],[4.564762631884279,52.45856667748049],[4.564762612828774,52.45856691103129],[4.564762608317667,52.45856715367079],[4.564762603806563,52.458567396310286],[4.564762584751056,52.458567629861065],[4.564762580239949,52.458567872500545],[4.564762575895921,52.4585681061534],[4.564762571384814,52.458568348792895],[4.564762552329308,52.45856858234369],[4.564762547818201,52.458568824983196],[4.564762543474171,52.45856905863603],[4.564762452900647,52.45857234754507],[4.564762446384601,52.45857269802432],[4.564762442875963,52.45857288674392],[4.564762439367321,52.45857307546354],[4.564762435858682,52.45857326418315],[4.564762432350043,52.45857345290274],[4.564762428674324,52.45857365060899],[4.564762425165685,52.458573839328615],[4.564762421657043,52.45857402804822],[4.564762418148405,52.45857421676782],[4.564762414639764,52.45857440548741],[4.564762411131123,52.45857459420701],[4.564762407622485,52.45857478292664],[4.564762403946766,52.458574980632896],[4.564762400438125,52.45857516935249],[4.564762396929485,52.45857535807208],[4.564762393420846,52.458575546791735],[4.564762389912204,52.45857573551134],[4.564762386403564,52.458575924230914],[4.564762382727846,52.45857612193717],[4.564762379219207,52.458576310656795],[4.564762375710565,52.45857649937639],[4.564762372201923,52.45857668809602],[4.564762368693285,52.458576876815584],[4.564762365184644,52.458577065535245],[4.564762361508926,52.458577263241445],[4.564762358000285,52.45857745196107],[4.564762354491644,52.458577640680694],[4.564762350983003,52.4585778294003],[4.564762362185843,52.45857801822198],[4.564762358677202,52.45857820694157],[4.564762355001482,52.45857840464783],[4.564762351158687,52.45857861134073],[4.564762354843008,52.458579204561545],[4.56476233932195,52.45858162217395],[4.564762336147465,52.458581792920256],[4.564762347517383,52.45858197275527],[4.56476234417582,52.45858215248824],[4.564762341001336,52.45858232323452],[4.564762337659772,52.458582502967516],[4.564762349196769,52.45858267381591],[4.564762345855208,52.45858285354885],[4.564762342680721,52.45858302429515],[4.564762354050639,52.45858320413017],[4.564762350709077,52.45858338386312],[4.56476234753459,52.45858355460941],[4.564762344193028,52.4585837343424],[4.564762355730025,52.45858390519079],[4.564762352388462,52.458584084923736],[4.564762349213977,52.458584255670054],[4.564762360583894,52.45858443550507],[4.564762357242332,52.458584615238],[4.564762354067848,52.458584785984335],[4.564762365437766,52.45858496581935],[4.564762362263282,52.45858513656567],[4.5647623736332,52.45858531640067],[4.564762370458714,52.458585487147],[4.564762367117152,52.458585666879955],[4.56476237848707,52.45858584671495],[4.564762375312585,52.458586017461265],[4.564762371971022,52.45858619719422],[4.56476238350802,52.458586368042596],[4.564762380166456,52.45858654777557],[4.564762391703455,52.458586718623955],[4.564762388361891,52.45858689835692],[4.564762385020328,52.45858707808985],[4.564762396557324,52.45858724893823],[4.564762393215761,52.45858742867119],[4.56476240475276,52.45858759951954],[4.564762401411196,52.4585877792525],[4.564762412948194,52.4585879501009],[4.56476240960663,52.458588129833856],[4.564762406265068,52.45858830956681],[4.564762417802065,52.458588480415166],[4.564762414460502,52.45858866014813],[4.5647624259975,52.458588830996504],[4.564762422655938,52.45858901072943],[4.564762434025858,52.45858919056449],[4.564762430851371,52.4585893613108],[4.564762442221292,52.45858954114581],[4.564762439046807,52.458589711892124],[4.564762450416726,52.45858989172715],[4.564762447242242,52.458590062473455],[4.564762458612163,52.458590242308475],[4.564762455270599,52.458590422041446],[4.564762466807598,52.45859059288982],[4.564762463466034,52.45859077262277],[4.564762475003033,52.458590943471144],[4.564762471661468,52.45859112320407],[4.564762483031389,52.45859130303911],[4.564762494568389,52.45859147388749],[4.564762491226825,52.45859165362046],[4.564762502763825,52.45859182446882],[4.564762499422262,52.45859200420176],[4.564762510792181,52.4585921840368],[4.564762507617698,52.45859235478309],[4.564762518987619,52.45859253461812],[4.564762529689227,52.45859275039973],[4.564762547416725,52.45859337966919],[4.56476256731624,52.45859389211225],[4.564762609295895,52.45859559109904],[4.564762633706521,52.45859586090257],[4.56476262919541,52.45859610354208],[4.564762639562863,52.45859633729701],[4.564762649763239,52.458596580038545],[4.564762660130692,52.4585968137934],[4.564762670331068,52.45859705653499],[4.564762680698522,52.4585972902899],[4.564762690898899,52.458597533031444],[4.564762701099276,52.458597775772986],[4.564762726178214,52.45859800962998],[4.564762736378592,52.458598252371516],[4.564762746746048,52.458598486126434],[4.564762756946422,52.458598728868],[4.564762767313877,52.45859896262286],[4.564762777514256,52.458599205364436],[4.56476278788171,52.45859943911935],[4.564762798082088,52.45859968186091],[4.564762808449542,52.458599915615814],[4.56476281864992,52.45860015835736],[4.564762829017374,52.458600392112274],[4.56476285392924,52.45860063495587],[4.564762864296696,52.4586008687108],[4.564762874497073,52.45860111145237],[4.56476288469745,52.4586013541939],[4.564762895064906,52.458601587948834],[4.564762905265284,52.458601830690355],[4.564762930344228,52.45860206454733],[4.564762940544607,52.458602307288864],[4.564762950912063,52.458602541043795],[4.56476296111244,52.45860278378534],[4.564762986191387,52.458603017642325],[4.564763032172324,52.45860371002245],[4.564763043876407,52.458603871884186],[4.564763040869001,52.45860403364386],[4.564763066616258,52.45860423155421],[4.564763063441775,52.458604402300516],[4.564763074477543,52.458604600108856],[4.564763100057725,52.45860480700588],[4.564763096883242,52.45860497775215],[4.564763107751933,52.458605184547125],[4.564763132162569,52.45860545435068],[4.564763143198338,52.45860565215902],[4.564763154234109,52.45860584996732],[4.56476316526988,52.458606047775625],[4.564763176305652,52.45860624558392],[4.564763202052911,52.45860644349431],[4.56476321325576,52.45860663231599],[4.564763224291531,52.45860683012429],[4.564763235327303,52.4586070279326],[4.564763246363075,52.45860722574094],[4.564763257398846,52.45860742354924],[4.564763283146106,52.45860762145963],[4.564763294348956,52.45860781028128],[4.564763305384728,52.45860800808958],[4.564763316420501,52.458608205897924],[4.564763342167763,52.458608403808306],[4.564763353203535,52.45860860161659],[4.564763364239306,52.45860879942489],[4.564763375442157,52.4586089882466],[4.564763401189419,52.458609186156984],[4.564763412225192,52.458609383965275],[4.564763423260966,52.4586095817736],[4.564763434296739,52.458609779581884],[4.564763460044001,52.45860997749229],[4.564763471246853,52.45861016631392],[4.564763482282626,52.458610364122244],[4.56476350802989,52.45861056203262],[4.564763519065663,52.458610759840944],[4.564763530101438,52.45861095764926],[4.56476354130429,52.45861114647092],[4.564763567051553,52.4586113443813],[4.564763578087327,52.458611542189615],[4.564763603834593,52.4586117401],[4.564763614870367,52.45861193790833],[4.564763626073217,52.45861212672998],[4.564763651820485,52.45861232464036],[4.564763662856257,52.458612522448675],[4.564763673892034,52.45861272025698],[4.5647636996393,52.45861291816734],[4.564763710675074,52.45861311597567],[4.564763736589416,52.45861330489941],[4.564763747625193,52.458613502707706],[4.564763758660968,52.458613700516025],[4.564763784408235,52.45861389842641],[4.564763809320112,52.458614141270004],[4.564763819520498,52.45861438401154],[4.564763845267767,52.458614581921935],[4.564763856303542,52.45861477973022],[4.564763882050809,52.4586149776406],[4.564763893253662,52.45861516646229],[4.564763919000931,52.45861536437267],[4.564763930036707,52.45861556218095],[4.564763955783976,52.458615760091355],[4.564763966819754,52.45861595789966],[4.5647639927341,52.4586161468234],[4.564764003769877,52.45861634463172],[4.564764029517147,52.4586165425421],[4.564764040552924,52.458616740350394],[4.564764066300193,52.45861693826078],[4.56476407750305,52.458617127082455],[4.56476410325032,52.45861732499279],[4.564764114286099,52.45861752280114],[4.564764140033368,52.458617720711516],[4.564764150902067,52.458617927506495],[4.564764177651806,52.458618071496964],[4.564764189690053,52.4586182153854],[4.564764201728297,52.45861835927382],[4.564764213933622,52.45861849417562],[4.564764225971869,52.45861863806403],[4.564764238010114,52.45861878195244],[4.56476425004836,52.458618925840845],[4.564764299537968,52.458619429501375],[4.564764337323489,52.458619771300185],[4.564764387481411,52.458620239014124],[4.564764437806413,52.4586206977414],[4.564764488131416,52.458621156468695],[4.564764538456417,52.45862161519595],[4.564764588614346,52.458622082909926],[4.564764638939351,52.458622541637205],[4.564764689264358,52.45862300036452],[4.564764739589366,52.45862345909176],[4.564764789747295,52.45862392680569],[4.564764840072306,52.45862438553298],[4.564764890397315,52.45862484426024],[4.564764955433824,52.45862530308961],[4.564765005591759,52.45862577080356],[4.564765055916772,52.45862622953082],[4.564765120953285,52.458626688360184],[4.5647651712783,52.45862714708746],[4.564765236147735,52.45862761490347],[4.564765286472754,52.45862807363073],[4.56476535150927,52.458628532460054],[4.564765401834291,52.45862899118736],[4.564765466870809,52.45862945001671],[4.564765531740252,52.458629917832695],[4.564765582065275,52.45863037655997],[4.564765647101797,52.458630835389314],[4.56476571213832,52.45863129421864],[4.564765777174845,52.458631753048],[4.564765842044294,52.458632220864],[4.564765907080821,52.45863267969334],[4.564765957405853,52.45863313842064],[4.564766022442383,52.458633597249964],[4.564766087478913,52.458634056079305],[4.564766167226945,52.458634515010736],[4.564766232096401,52.45863498282673],[4.564766297132936,52.45863544165606],[4.564766362169475,52.458635900485426],[4.564766427206012,52.458636359314724],[4.564766492242551,52.45863681814408],[4.564766571990591,52.45863727707547],[4.564766637027134,52.45863773590486],[4.564766701896599,52.45863820372083],[4.564766781644646,52.45863866265223],[4.564766846681191,52.45863912148158],[4.564766926429239,52.45863958041296],[4.564766991465789,52.45864003924232],[4.564767071213839,52.458640498173715],[4.564767136250391,52.45864095700305],[4.564767215998446,52.45864141593447],[4.5647672957465,52.45864187486587],[4.56476736061598,52.458642342681856],[4.564767440364039,52.45864280161326],[4.564767520112099,52.458643260544626],[4.56476759986016,52.458643719476065],[4.564767679608225,52.458644178407475],[4.564767759356291,52.458644637338864],[4.564767839104358,52.45864509627027],[4.564767904140924,52.45864555509961],[4.564767998600496,52.45864601413306],[4.564768078348569,52.45864647306447],[4.564768158096641,52.458646931995915],[4.564768237844716,52.45864739092728],[4.564768317592793,52.45864784985868],[4.564768397340873,52.458648308790075],[4.564768477088951,52.45864876772147],[4.564768570880228,52.45864926270153],[4.564768611673196,52.458649442740665],[4.56476863825589,52.458649595717795],[4.564768664671507,52.458649757681584],[4.564768691087126,52.45864991964536],[4.56476871766982,52.458650072622504],[4.564768758796943,52.45865023468834],[4.564768785212561,52.45865039665214],[4.564768811795256,52.458650549629255],[4.564768838210874,52.458650711593016],[4.564768864626492,52.45865087355685],[4.564768905920694,52.45865102663601],[4.564768932336315,52.4586511885998],[4.564768958751933,52.45865135056357],[4.56476898533463,52.458651503540736],[4.564769026461754,52.45865166560656],[4.564769052877374,52.45865182757033],[4.564769079460071,52.45865198054746],[4.564769105875691,52.45865214251124],[4.564769147169896,52.45865229559047],[4.564769173585515,52.458652457554244],[4.564769200001136,52.45865261951802],[4.564769226583834,52.45865277249515],[4.564769267710961,52.45865293456098],[4.56476929429366,52.45865308753808],[4.564769320709281,52.45865324950188],[4.564769361836409,52.45865341156773],[4.564769388419109,52.45865356454489],[4.564769414834731,52.458653726508636],[4.564769456128936,52.45865387958785],[4.564769482544559,52.45865404155162],[4.564769509127258,52.45865419452877],[4.564769589710747,52.45865460852693],[4.56476964337738,52.45865488752126],[4.564769683000817,52.45865513046692],[4.564769737335757,52.458655373514645],[4.5647697916707,52.45865561656237],[4.564769831294139,52.458655859508056],[4.564769885629084,52.458656102555786],[4.564769939964028,52.45865634560351],[4.564769979587467,52.45865658854917],[4.564770033922413,52.45865683159691],[4.56477008825736,52.45865707464467],[4.5647701278808,52.45865731759033],[4.564770182215748,52.458657560638045],[4.564770236550697,52.4586578036858],[4.564770276341214,52.45865803764483],[4.564770330676165,52.45865828069255],[4.564770385011115,52.458658523740276],[4.564770439346064,52.45865876678803],[4.564770478969509,52.45865900973369],[4.564770533304461,52.45865925278139],[4.564770587639413,52.45865949582915],[4.564770641974364,52.45865973887688],[4.564770696309318,52.458659981924605],[4.564770735932766,52.458660224870265],[4.564770790267718,52.458660467918016],[4.564770844602673,52.45866071096573],[4.564770899104706,52.45866094502683],[4.564770953439662,52.458661188074544],[4.564771007774618,52.45866143112228],[4.564771062109577,52.458661674169996],[4.564771116444533,52.45866191721775],[4.564771170779493,52.458662160265476],[4.564771387952254,52.45866314144304],[4.564771591583056,52.45866405961201],[4.564771754755024,52.45866477976856],[4.564771876465699,52.45866535583256],[4.564771917592847,52.45866551789838],[4.564771958719994,52.45866567996427],[4.564771985135632,52.45866584192803],[4.564772026262779,52.458666003993855],[4.56477206738993,52.45866616605971],[4.564772108517078,52.45866632812553],[4.564772134932717,52.45866649008933],[4.564772176059868,52.45866665215516],[4.564772217187018,52.45866681422098],[4.564772258314167,52.45866697628684],[4.564772284729808,52.458667138250625],[4.56477232585696,52.458667300316485],[4.564772366817032,52.45866747136895],[4.564772407944182,52.45866763343479],[4.564772448904259,52.458667804487284],[4.564772489196026,52.458668011486346],[4.564772543865153,52.458668236560825],[4.564772598033049,52.458668488595166],[4.564772667079535,52.45866873174495],[4.56477272141451,52.458668974792694],[4.564772775582409,52.45866922682706],[4.564772844628895,52.45866946997686],[4.564772898796796,52.45866972201125],[4.564772953131775,52.458669965058974],[4.564773022178263,52.45867020820876],[4.564773076346166,52.458670460243155],[4.564773145392654,52.458670703392926],[4.564773199727635,52.45867094644065],[4.564773268607051,52.458671198577086],[4.564773322942032,52.45867144162484],[4.564773377109938,52.4586716936592],[4.564773446156431,52.458671936809004],[4.564773500825567,52.458672161883435],[4.564773568869604,52.458672458953124],[4.564773609829686,52.45867263000556],[4.564774267195984,52.45867525900561],[4.56477432219928,52.45867546610677],[4.564774362992293,52.4586756461459],[4.564774403952384,52.458675817198355],[4.564774444912474,52.458675988250874],[4.564774500584075,52.458676159405385],[4.564774541544167,52.458676330457905],[4.564774582504256,52.45867650151038],[4.564774623464349,52.45867667256285],[4.564774679135954,52.458676843717434],[4.564774719928969,52.45867702375655],[4.564774760889061,52.45867719480904],[4.564774801849153,52.458677365861526],[4.564774857520759,52.458677537016094],[4.564774898480853,52.45867770806856],[4.564774939440947,52.45867787912104],[4.564774995112554,52.45867805027558],[4.564775036072646,52.45867822132807],[4.564775077032744,52.45867839238054],[4.564775132537275,52.45867857252176],[4.56477517349737,52.45867874357423],[4.564775214457466,52.45867891462675],[4.564775255417562,52.458679085679215],[4.56477531108917,52.45867925683376],[4.564775352049268,52.45867942788624],[4.564775407720878,52.4586795990408],[4.564775448680976,52.458679770093305],[4.564775489641073,52.458679941145746],[4.564775545312684,52.458680112300314],[4.564775586105706,52.45868029233946],[4.564775627065806,52.45868046339195],[4.564775682737417,52.45868063454647],[4.564775723697518,52.45868080559899],[4.564775764657617,52.45868097665145],[4.564775820329231,52.45868114780602],[4.564775861289332,52.4586813188585],[4.564775916960946,52.458681490013014],[4.564775957921047,52.458681661065505],[4.56477599888115,52.458681832118],[4.564776054552765,52.45868200327255],[4.564776095345791,52.458682183311694],[4.564776151017407,52.458682354466234],[4.56477619197751,52.458682525518704],[4.564776232937613,52.4586826965712],[4.564776288609232,52.45868286772574],[4.564776329569336,52.458683038778254],[4.564776385240953,52.45868320993277],[4.564776426201058,52.458683380985285],[4.564776481872678,52.45868355213981],[4.564776522832782,52.45868372319229],[4.564776578504402,52.45868389434687],[4.564776619464507,52.45868406539933],[4.564776675136129,52.4586842365539],[4.564776715929161,52.45868441659303],[4.564776771600782,52.458684587747555],[4.564776812560889,52.45868475880006],[4.564776868232512,52.4586849299546],[4.564776909192619,52.458685101007056],[4.564776964864244,52.45868527216162],[4.564777005824354,52.45868544321413],[4.564777061495976,52.45868561436865],[4.564777102456083,52.45868578542115],[4.56477715812771,52.45868595657565],[4.564777199087819,52.45868612762817],[4.564777503861626,52.45868714536468],[4.564777628245643,52.458687577642294],[4.564777738920599,52.45868795589798],[4.564777849428483,52.45868834314033],[4.564777904097661,52.458688568214725],[4.564777973645431,52.458688784404565],[4.564778043026129,52.45868900958104],[4.564778097862383,52.45868922566884],[4.564778167410156,52.45868944185871],[4.564778236790854,52.458689667035166],[4.564778291627111,52.458689883122965],[4.564778361007811,52.45869010829948],[4.564778430555586,52.4586903244893],[4.564778499936288,52.458690549665796],[4.564778554772547,52.45869076575359],[4.564778624153248,52.45869099093009],[4.564778693701026,52.45869120711991],[4.56477876308173,52.4586914322964],[4.564778817917992,52.45869164838419],[4.564778887298697,52.45869187356068],[4.564778956846476,52.458692089750514],[4.564779026227183,52.458692314927006],[4.564779095607888,52.45869254010346],[4.564779165155673,52.458692756293324],[4.564779234536379,52.45869298146981],[4.564779289372646,52.45869319755759],[4.564779358753356,52.4586934227341],[4.564779428301139,52.458693638923954],[4.564779497681852,52.45869386410043],[4.564779567062565,52.45869408927692],[4.564779636610352,52.45869430546677],[4.564779705991064,52.45869453064326],[4.564779775538853,52.458694746833096],[4.564779844919568,52.45869497200958],[4.564779928510575,52.45869522424809],[4.564780039185572,52.45869560250377],[4.564780066603707,52.458695710547616],[4.564780107897987,52.45869586362684],[4.564780163736711,52.45869602579473],[4.564780219575436,52.45869618796261],[4.564780275247087,52.45869635911717],[4.564780316374293,52.458696521183015],[4.564780372213018,52.458696683350915],[4.564780428051746,52.4586968455188],[4.564780483890471,52.45869700768669],[4.564780524850605,52.45869717873918],[4.564780580689332,52.45869734090709],[4.56478063652806,52.458697503074966],[4.564780692199713,52.45869767422948],[4.564780733326923,52.45869783629536],[4.564780789165652,52.458697998463236],[4.56478084467023,52.458698178604415],[4.56478091455218,52.458698376820976],[4.564780969722611,52.45869857493549],[4.564781067523929,52.45869885423596],[4.564781164656945,52.458699169483026],[4.564781261789967,52.45869948473011],[4.564781373634508,52.45869980007928],[4.564781470767529,52.45870011532635],[4.564781567900554,52.458700430573444],[4.564781679745099,52.45870074592256],[4.564781777045201,52.45870105218301],[4.564781888889752,52.45870136753212],[4.564781986022781,52.45870168277923],[4.564782083155809,52.45870199802634],[4.564782195000364,52.45870231337545],[4.564782292133398,52.458702628622525],[4.564782403977956,52.45870294397168],[4.564782515822512,52.4587032593208],[4.564782612955551,52.45870357456791],[4.564782724800111,52.45870388991704],[4.564782821933151,52.45870420516414],[4.564782933777716,52.45870452051329],[4.564783045622284,52.458704835862406],[4.56478314275533,52.458705151109505],[4.564783254599897,52.458705466458625],[4.564783366444467,52.45870578180779],[4.564783463744591,52.45870608806821],[4.564783575589165,52.45870640341734],[4.56478368743374,52.45870671876647],[4.564783799278317,52.45870703411564],[4.564783896411372,52.4587073493627],[4.564784008255954,52.45870766471184],[4.564784120100534,52.45870798006098],[4.564784204025739,52.458708214326165],[4.564784273740646,52.45870842152937],[4.564784343956776,52.45870860177263],[4.564784399628457,52.458708772927174],[4.564784455133065,52.45870895306833],[4.564784525516271,52.45870912432494],[4.564784581187952,52.45870929547949],[4.564784636692562,52.458709475620665],[4.564784707075768,52.45870964687727],[4.564785084405081,52.45871071904394],[4.564785139909694,52.45871089918512],[4.564785209958756,52.45871108841503],[4.564785280174893,52.45871126865826],[4.564785350391032,52.45871144890153],[4.564785405728573,52.45871163802933],[4.564785475944713,52.45871181827257],[4.564785545993778,52.45871200750248],[4.564785601498393,52.4587121876437],[4.564785671547462,52.458712376873535],[4.564785741763602,52.458712557116826],[4.564785811979746,52.45871273736007],[4.564785867317289,52.458712926487905],[4.564785937533432,52.45871310673112],[4.564786007582503,52.45871329596103],[4.564786077798647,52.458713476204295],[4.564786147847719,52.458713665434146],[4.564786203352339,52.45871384557538],[4.564786273401412,52.45871403480529],[4.564786343617558,52.45871421504853],[4.564786413833707,52.45871439529174],[4.56478648388278,52.458714584521616],[4.564786539387403,52.45871476466283],[4.564786609436476,52.458714953892695],[4.564786679652627,52.458715134135964],[4.564786749701703,52.45871532336587],[4.564786819917853,52.45871550360911],[4.564786890134005,52.45871568385237],[4.564786945471559,52.45871587298021],[4.564787015687712,52.45871605322345],[4.564787085736788,52.45871624245331],[4.564787155952943,52.45871642269657],[4.564787239711108,52.458716665948415],[4.564787352224029,52.458716945350986],[4.564787450025425,52.45871722465143],[4.56478756253835,52.458717504053986],[4.564787660172676,52.45871779234113],[4.564787772685603,52.45871807174367],[4.564787885198532,52.4587183511462],[4.564787982999935,52.45871863044669],[4.564788095345792,52.4587189188359],[4.564788193147197,52.45871919813639],[4.564788305660132,52.45871947753894],[4.56478841817307,52.45871975694147],[4.564788515807404,52.4587200452286],[4.564788628320342,52.45872032463116],[4.564788740833283,52.45872060403369],[4.564788825092684,52.458720820325574],[4.564788881098544,52.458720973506814],[4.5647889650238,52.45872120777202],[4.564789049283204,52.4587214240639],[4.564789133542606,52.4587216403558],[4.564789217802009,52.4587218566477],[4.564789302061414,52.45872207293957],[4.564789386487896,52.45872228024484],[4.564789470747303,52.45872249653674],[4.564789555006709,52.458722712828624],[4.564789639266118,52.458722929120505],[4.564789723525529,52.45872314541241],[4.564789807784937,52.45872336170432],[4.564789892044349,52.45872357799616],[4.564789976303762,52.45872379428807],[4.564790060563172,52.45872401057997],[4.564790144989659,52.458724217885226],[4.56479025766969,52.45872448830111],[4.564790355638196,52.458724758614956],[4.564790439897613,52.458724974906865],[4.564790524157028,52.45872519119873],[4.564790608416448,52.45872540749061],[4.564790692675867,52.45872562378252],[4.564790777102359,52.458725831087754],[4.564790876073308,52.45872604748172],[4.56479096033273,52.4587262637736],[4.564791044592152,52.458726480065486],[4.564791128851574,52.458726696357374],[4.564791213110997,52.45872691264928],[4.564791297370423,52.458727128941185],[4.564791381796922,52.45872733624641],[4.564791466056348,52.458727552538306],[4.564791565027304,52.458727768932256],[4.564791649286732,52.45872798522415],[4.564791733546159,52.45872820151604],[4.56479181780559,52.458728417807926],[4.564791902232093,52.45872862511315],[4.564792001203054,52.45872884150712],[4.564792085462486,52.45872905779901],[4.564792169721919,52.4587292740909],[4.564792253981351,52.45872949038276],[4.564792338240786,52.458729706674674],[4.564792437378824,52.45872991408199],[4.564792521638262,52.458730130373866],[4.564792605897699,52.45873034666578],[4.564792690157137,52.45873056295765],[4.564792789128107,52.4587307793516],[4.564792873387544,52.458730995643506],[4.564792957814059,52.45873120294871],[4.56479305678503,52.4587314193427],[4.564793141044472,52.458731635634564],[4.564793225303914,52.45873185192642],[4.564793324274889,52.458732068320415],[4.564793408701407,52.458732275625636],[4.564793492960852,52.458732491917544],[4.564793591931829,52.45873270831148],[4.564793676191277,52.45873292460337],[4.564793760450724,52.45873314089526],[4.564793859588778,52.45873334830255],[4.564793943848226,52.458733564594446],[4.564794042819209,52.4587337809884],[4.564794127078661,52.45873399728027],[4.564794211338111,52.45873421357215],[4.564794310476169,52.458734420979475],[4.564794394735624,52.45873463727136],[4.564794507749852,52.45873488971393],[4.564794592343453,52.458735088032554],[4.564794662726738,52.45873525928912],[4.564794732942951,52.458735439532354],[4.564794818037773,52.45873561089104],[4.564794888253987,52.458735791134266],[4.564794958637276,52.45873596239086],[4.564795043565026,52.458736142736164],[4.564795113948313,52.458736313992745],[4.564795184164531,52.45873649423598],[4.564795269259355,52.45873666559466],[4.564795339475572,52.458736845837876],[4.564795424570396,52.45873701719654],[4.564795494786617,52.45873719743978],[4.564795565169911,52.45873736869635],[4.564795650264737,52.45873754005503],[4.564795720480958,52.45873772029826],[4.564795805575786,52.45873789165691],[4.564795875792009,52.45873807190017],[4.564795946175304,52.45873824315675],[4.564796031103061,52.45873842350203],[4.564796101486359,52.45873859475863],[4.564796186414116,52.45873877510392],[4.564796256797415,52.45873894636052],[4.564796341725175,52.45873912670582],[4.564796412108474,52.45873929796239],[4.564796497203307,52.458739469321046],[4.564796567419535,52.45873964956429],[4.564796637802835,52.45873982082088],[4.564796722730599,52.4587400011662],[4.564796793113901,52.45874017242276],[4.564796878041665,52.45874035276807],[4.564797019309488,52.458740668321326],[4.564951914428629,52.45899914454512],[4.56494942834374,52.45899990924106],[4.563262871606963,52.45951679935597],[4.562022922644206,52.45989679894468],[4.561821736769228,52.459958510804164],[4.561282905743529,52.46012375588596],[4.559630015621059,52.4606304751851],[4.559574682389442,52.460647435382754],[4.559568925229006,52.460649219716586],[4.55944750764085,52.46068680389246],[4.559448990873756,52.46068853091992],[4.559432031331099,52.460696870032656],[4.559430191852191,52.46070710329028],[4.55943614023958,52.46071790322986],[4.559450939185864,52.4607408895181],[4.559462423737366,52.46075149442711],[4.559484032568832,52.46075497078704],[4.559515798804177,52.46074640249264],[4.561543822781626,52.460125573332554],[4.562370001050788,52.45987186437698],[4.562768517228416,52.46016278547784],[4.562962385681335,52.460340564137596],[4.563243122529595,52.460577052401824],[4.563316382120474,52.460638759503446],[4.56366668515256,52.46092852451712],[4.563921333155717,52.46116385919734],[4.564137599219392,52.46138548109351],[4.564311037732518,52.4616219227982],[4.56440814698056,52.46180575020876],[4.564410242861529,52.46181015080146],[4.564412265012973,52.46181455987016],[4.564414287164816,52.461818968938935],[4.564416235252776,52.461823404456965],[4.564418183341125,52.46182783997501],[4.564420042820168,52.4618322928536],[4.564421916844981,52.461836754820986],[4.564423717140185,52.46184122526439],[4.564425517435754,52.46184569570782],[4.564427229121956,52.46185018351185],[4.56442895535391,52.46185468040455],[4.564430607689038,52.46185919476006],[4.564432245311929,52.46186370901338],[4.564433809205127,52.461868231742834],[4.564435387644053,52.46187276356095],[4.564436877640684,52.46187730375311],[4.564438367470458,52.461881852931874],[4.564439768857901,52.46188641048464],[4.564441184958211,52.46189096813948],[4.564442512448998,52.46189554315497],[4.56444385465264,52.461900118272524],[4.56444510824673,52.46190471075076],[4.564446361841076,52.46190930322896],[4.564447526992989,52.46191390408115],[4.564448706857735,52.46191850503548],[4.564449798112858,52.4619231233504],[4.564450889368206,52.46192774166535],[4.564451906893647,52.461932368456374],[4.5644529244193,52.4619369952474],[4.564453853335262,52.461941639399086],[4.564454782418574,52.46194627456413],[4.56445562289216,52.46195092708984],[4.564456478078522,52.46195557971763],[4.56445724498944,52.461960231732796],[4.564458011566201,52.46196490172125],[4.564458690034636,52.46196956211042],[4.564459383048664,52.46197423158835],[4.564459972907409,52.4619789093382],[4.564460577478888,52.46198358719014],[4.564461093607656,52.461988273416104],[4.564461624449146,52.46199295974417],[4.564462052302432,52.46199764535753],[4.564462494701266,52.46200234005963],[4.564462834111857,52.462007034047],[4.564463188235139,52.462011728136446],[4.564463453915598,52.46201643059995],[4.564463719596117,52.46202113306345],[4.564463911713559,52.462025835016455],[4.564464089118408,52.462030536867296],[4.564464192792997,52.46203524719432],[4.564464296467602,52.46203995752133],[4.564464297153804,52.46204466713363],[4.564464312552637,52.46204937684803],[4.564464254388295,52.462054086051914],[4.5644641815113,52.46205879515369],[4.564464020358458,52.46206350364288],[4.564463873751063,52.46206822122079],[4.564463639034941,52.46207292919944],[4.564463389438971,52.46207764606262],[4.564463066446875,52.46208235342869],[4.564462743454707,52.462087060794744],[4.564462332186582,52.462091767548145],[4.564461935463859,52.462096483390276],[4.564461435919652,52.46210118953109],[4.564460951255144,52.46210588678736],[4.564460363434796,52.46211059231556],[4.564459790326976,52.46211529794584],[4.564459129110246,52.46211999397688],[4.564458467893372,52.462124690007876],[4.564457733280213,52.46212937654175],[4.564456983787078,52.46213407196014],[4.564456146184958,52.46213875777929],[4.564455323295321,52.46214344370048],[4.564454412296669,52.46214812002246],[4.56445350129782,52.462152796344405],[4.56445250202276,52.46215747205373],[4.564451502914644,52.46216213877636],[4.564450430242952,52.46216680498852],[4.564449343025516,52.46217146211186],[4.56444818224447,52.462176118724734],[4.564447021630339,52.46218076635096],[4.564445772739885,52.46218541336453],[4.56444453872901,52.46219005149353],[4.56444320189626,52.46219467992116],[4.564441879775912,52.46219930845086],[4.564440469546335,52.462203927381296],[4.564439059316461,52.46220854631171],[4.564437575690014,52.462213155744934],[4.564436077517728,52.462217756089416],[4.564434505781672,52.46222235592331],[4.56443293437961,52.462226937783896],[4.564431289413754,52.46223151913395],[4.564429629734857,52.46223610038187],[4.564427896826457,52.46224066314593],[4.564426178630394,52.46224522601212],[4.564424357779406,52.46224977019023],[4.564422551640742,52.46225431447041],[4.56442065739265,52.46225884915128],[4.564418763311332,52.46226337484546],[4.564416795833262,52.46226789104245],[4.564414828521956,52.462272398252786],[4.564412787813867,52.46227689596586],[4.564410747272526,52.462281384692275],[4.564408618621669,52.46228586381939],[4.564406490137545,52.46229033395974],[4.564404288256583,52.46229479460297],[4.564402101255059,52.46229924636156],[4.564399811598409,52.46230367943209],[4.564397551366736,52.46230811270678],[4.564395188479902,52.462312527293385],[4.564392840305319,52.462316941982],[4.564390418900988,52.46232133818678],[4.564387997663348,52.46232572540484],[4.564385488483212,52.46233009403695],[4.564382994015303,52.462334462771054],[4.564380426317602,52.462338813021304],[4.564377858786568,52.46234315428483],[4.564375203312984,52.462347476962364],[4.564372562551611,52.46235179974193],[4.5643698485604,52.46235610403758],[4.564367134735834,52.46236039934655],[4.56436434784858,52.46236466718494],[4.564361560793607,52.462368944009896],[4.564358700675927,52.462373193364314],[4.564355855437615,52.46237743383413],[4.564352922256655,52.46238165571791],[4.564350003787879,52.46238587770373],[4.564347012256352,52.46239007221897],[4.564258528303276,52.46238162967978],[4.564203752261885,52.46237969455782],[4.564076184734588,52.46238398591196],[4.563956441012103,52.46238930213934],[4.563924748909523,52.462390708860184],[4.563822748037947,52.46239776596479],[4.563745865036378,52.46240008111805],[4.563714947739109,52.46239701723966],[4.563693097600319,52.4623874732162],[4.563690587086158,52.46238637724174],[4.563237953018376,52.46237909792717],[4.563230028744224,52.46238425577821],[4.563209205195546,52.46239780846113],[4.563198331629133,52.46240488717686],[4.563200467728013,52.462629866681766],[4.56320482364945,52.46263300673549],[4.563234589184953,52.46265446076949],[4.566175388424967,52.46264331555461],[4.56872825134951,52.462635082169335],[4.569203029062755,52.46251136135715],[4.569286991376956,52.462426197070606],[4.569440159093568,52.46227083906473],[4.569450161384598,52.4622606889333],[4.569257405328035,52.461985887567714],[4.569193636477718,52.46189497643889],[4.568756422781328,52.46127164815284],[4.568277911736359,52.46058671808205],[4.56787708618796,52.46001477819436],[4.567867609927547,52.4600013029033],[4.567654517810367,52.45969826228509],[4.567828369840399,52.45965090290266],[4.567900167257737,52.45963213825189],[4.568180803239127,52.45955737547619],[4.568940388985759,52.45935502046281],[4.569269062463856,52.45926746448758],[4.570025895461081,52.46034378680931],[4.570833034485855,52.461495561296026],[4.571106941226676,52.461886384927276],[4.571338127407031,52.46221626425952],[4.571972465866487,52.46243220049029],[4.572010091640367,52.46244495224053],[4.572540145286614,52.46262457663674],[4.573497743639227,52.46261848007425],[4.574113959053491,52.46261246170782],[4.574208571827471,52.462528553412206],[4.574209753466214,52.46252750994372],[4.574242342707723,52.46253892321455],[4.574342450054039,52.46257396993932],[4.57445698784352,52.46259886942378],[4.574614769563587,52.46261350454359],[4.574769446370682,52.46262414557313],[4.575003930879466,52.462643871562676],[4.575223324757513,52.46267045927178],[4.575518048357802,52.46268636354407],[4.575726005395847,52.46269953414135],[4.57590066433737,52.462719055576954],[4.576121847310848,52.46273960507985],[4.576392805476677,52.462756414132926],[4.576516995568199,52.46275654437244],[4.57658107894315,52.46274848010291],[4.576661100530117,52.46273628252861],[4.57677185306333,52.46274540728532],[4.576836141982031,52.46273897107272],[4.576945475618782,52.46274522785226],[4.577048570154515,52.46275309564948],[4.577102130553357,52.46275718258073],[4.577081248629257,52.462852076751375],[4.577189369142523,52.46286192012956],[4.577235628939908,52.462866127888255],[4.577237611522152,52.46285589535623],[4.577240942124601,52.46284035126382],[4.577258538964168,52.46276171150576],[4.577537459580634,52.4627880993893],[4.577781024633834,52.462813481278246],[4.577915981335522,52.46282754272255],[4.578013686783407,52.462836424463006],[4.578029792020428,52.46283843979475],[4.578061948249152,52.46284382723702],[4.578086742344281,52.46284867009872],[4.578255446522613,52.462876065655905],[4.578325936022603,52.46287736448761],[4.578383688188079,52.46287352524703],[4.578425680147255,52.46286972227153],[4.578475312109548,52.46286172916184],[4.578534047522528,52.4628475695899],[4.578571704388241,52.46283620522959],[4.578596584840898,52.462826668116996],[4.578624751209274,52.46281124843458],[4.578642441142655,52.46280304639113],[4.578691618534816,52.462770810034286],[4.578719547271899,52.46274826139518],[4.578746838232498,52.46272035168045],[4.578764332229585,52.462695493916534],[4.578785732588002,52.462654152224786],[4.578795909072401,52.462624696740065],[4.578804517906079,52.462578764942094],[4.578804589240062,52.4625780823568],[4.57880466057404,52.462577399771504],[4.578804731908019,52.46257671718616],[4.578804803241995,52.462576034600865],[4.578804859863117,52.462575351915234],[4.578804931197088,52.462574669329925],[4.578804987982452,52.46257397765765],[4.578805044603568,52.46257329497202],[4.578805101224683,52.4625726122864],[4.578805157845795,52.462571929600735],[4.578805199754058,52.462571246814825],[4.578805256375167,52.4625705641292],[4.57880529844767,52.46256987235657],[4.578805340355927,52.46256918957066],[4.578805382264182,52.46256850678467],[4.578805424172436,52.46256782399874],[4.578805451532086,52.46256713212582],[4.578805493440338,52.46256644933988],[4.57880552063574,52.46256576645358],[4.578805547995386,52.46256507458066],[4.578805575190787,52.46256439169437],[4.578805602386188,52.46256370880811],[4.578805615032983,52.462563016834864],[4.578805642228382,52.462562333948576],[4.578805654710933,52.462561650962016],[4.578805667357726,52.46256095898874],[4.578805679840277,52.462560276002115],[4.578805692322828,52.462559593015555],[4.578805704969621,52.46255890104228],[4.578805702739323,52.46255821795536],[4.578805700673271,52.46255752588177],[4.578805698442974,52.4625568427949],[4.578805696212677,52.462556159707965],[4.578805694146625,52.4625554676344],[4.578805691916328,52.46255478454746],[4.578805674973188,52.46255410136025],[4.578805672907134,52.46255340928664],[4.578805655963995,52.462552726099446],[4.5788056391851,52.462552033925554],[4.578805607529116,52.46255135063798],[4.578805590750221,52.46255065846405],[4.578805573807085,52.462549975276865],[4.578805542151104,52.462549291989305],[4.578805510659368,52.462548599715056],[4.578805479003392,52.4625479164275],[4.578805447347412,52.462547233139944],[4.578805415855681,52.462546540865745],[4.578805369486866,52.462545857477835],[4.578805337995135,52.46254516520362],[4.57880529162632,52.46254448181572],[4.578805245257508,52.46254379842788],[4.578805199052941,52.46254310605334],[4.57880513797129,52.462542422565114],[4.578805091602482,52.462541739177276],[4.578805030685079,52.46254104670239],[4.578804969603435,52.462540363214174],[4.578804908521791,52.46253967972599],[4.578804847604394,52.46253898725113],[4.578804786522754,52.46253830376291],[4.578804710728278,52.46253762017441],[4.578804649810886,52.462536927699524],[4.578804574016415,52.462536244111],[4.578804498221944,52.46253556052248],[4.578804422427478,52.46253487693397],[4.578804346797257,52.462534184358795],[4.578804256289957,52.462533500669934],[4.578804180495496,52.46253281708144],[4.578804089988202,52.46253213339257],[4.57880399948091,52.46253144970374],[4.578803909137865,52.462530757028226],[4.578803818630578,52.46253007333936],[4.578803713410458,52.46252938955021],[4.578803622903178,52.462528705861395],[4.578803517683066,52.46252802207221],[4.578803412462955,52.46252733828305],[4.578803307242847,52.46252665449389],[4.578803202022743,52.46252597070469],[4.578803082089807,52.46252528681519],[4.578802976869711,52.46252460302603],[4.578802856936784,52.46252391913656],[4.578802737003858,52.462523235247076],[4.578802617070936,52.46252255135759],[4.578802497138021,52.462521867468084],[4.578802362492275,52.46252118347829],[4.578802242559365,52.4625204995888],[4.578802107749381,52.462519824585634],[4.578801973103648,52.46251914059584],[4.578801838457917,52.462518456606034],[4.578801703812189,52.46251777261624],[4.578801554289391,52.462517097512745],[4.578801419643674,52.46251641352294],[4.578801270285127,52.46251572943278],[4.578801135475176,52.46251505442965],[4.578800971403806,52.462514370239234],[4.578800822045276,52.46251368614908],[4.578800672522505,52.46251301104561],[4.578800523163982,52.46251232695548],[4.578800358928389,52.46251165175167],[4.578800194857047,52.46251096756124],[4.578800030621464,52.46251029235741],[4.578799866385887,52.462509617153664],[4.578799702314559,52.46250893296319],[4.578799523366163,52.46250825765907],[4.5787993591306,52.462507582455295],[4.57879918034646,52.462506898164506],[4.578799001398077,52.46250622286039],[4.578798822449704,52.46250554755626],[4.578798628788506,52.462504872151825],[4.578798449840142,52.46250419684772],[4.578798256178956,52.46250352144325],[4.578798077230604,52.46250284613915],[4.57879788356943,52.46250217073474],[4.578797689908259,52.462501495330244],[4.578797496247098,52.46250081992585],[4.578797287873114,52.46250014442107],[4.578797094211963,52.46249946901663],[4.578796885837994,52.46249879351188],[4.578796677464029,52.46249811800709],[4.578796468925827,52.46249745148898],[4.578796260551875,52.46249677598424],[4.578796052177929,52.462496100479456],[4.578795828926919,52.46249543386103],[4.578795620552986,52.462494758356286],[4.578795397301991,52.462494091737874],[4.578795174215248,52.462493416132794],[4.578794950964266,52.462492749514325],[4.578794727877535,52.46249207390925],[4.578794489913744,52.462491407190534],[4.578794308173313,52.46249088465969],[4.578794126268641,52.46249037111556],[4.578793944528218,52.462489848584745],[4.578793762787801,52.462489326053955],[4.578793580883141,52.46248881250981],[4.578793399142732,52.462488289979014],[4.578793202689506,52.462487767347845],[4.578793020784859,52.46248725380372],[4.578792824331642,52.462486731172596],[4.578792627714182,52.462486217528145],[4.578792445973794,52.46248569499731],[4.578792249356344,52.46248518135283],[4.578792052903145,52.462484658721735],[4.578791856285702,52.46248414507727],[4.578791659832511,52.462483622446115],[4.57879144850226,52.46248310870133],[4.578791252049078,52.4624825860702],[4.578791040718835,52.46248207232541],[4.578790844101417,52.46248155868095],[4.578790632935432,52.462481035949466],[4.5787904216052,52.46248052220467],[4.578790224987797,52.46248000856022],[4.578790013821825,52.462479485828744],[4.57878980249161,52.462478972083964],[4.578789576448583,52.46247845823884],[4.578789365118378,52.46247794449405],[4.578789153952425,52.46247742176257],[4.578788927909413,52.46247690791748],[4.578788716579224,52.4624763941727],[4.578788490536222,52.462475880327545],[4.578788279206042,52.46247536658276],[4.578788053163049,52.46247485273766],[4.578787827120064,52.46247433889251],[4.578787601077082,52.46247382504739],[4.578787375034104,52.46247331120228],[4.578787134278317,52.46247279725686],[4.57878690823535,52.46247228341173],[4.578786682192389,52.462471769566584],[4.578786441436618,52.46247125562113],[4.578786215393667,52.46247074177602],[4.578785974637907,52.46247022783058],[4.57878573388215,52.46246971388514],[4.5787854931264,52.46246919993966],[4.578785252370657,52.462468685994196],[4.578785011450671,52.46246818103546],[4.578784770694938,52.46246766709001],[4.578784529939209,52.462467153144516],[4.578784274306424,52.462466648085424],[4.578784033550709,52.46246613413996],[4.578783778082181,52.46246562009421],[4.578783537162229,52.462465115135416],[4.578783281693716,52.46246460108965],[4.578783026060961,52.462464096030516],[4.578782770592457,52.46246358198473],[4.578782514959713,52.46246307692563],[4.578782259491223,52.46246256287984],[4.57878200385849,52.462462057820744],[4.578781748390012,52.46246154377496],[4.578781478044477,52.46246103861553],[4.578781222411761,52.462460533556396],[4.578780952230489,52.46246001941029],[4.578780696597786,52.462459514351174],[4.578780426252276,52.46245900919174],[4.578780155906771,52.46245850403231],[4.578779885725522,52.46245798988615],[4.57877961538003,52.462457484726755],[4.578779345034548,52.46245697956728],[4.578779074689068,52.462456474407844],[4.578778789630785,52.46245596914808],[4.578778519285315,52.4624554639886],[4.578778234227045,52.46245495872885],[4.57877796388159,52.46245445356937],[4.578777678823332,52.46245394830961],[4.578777393765081,52.462453443049846],[4.578777108542586,52.46245294677675],[4.578776823484345,52.462452441516994],[4.578776538426114,52.46245193625719],[4.578776253367886,52.46245143099743],[4.578775968309668,52.46245092573762],[4.578775668374395,52.46245042936421],[4.578775383316188,52.46244992410441],[4.578775083380929,52.462449427730995],[4.578774798322735,52.4624489224712],[4.578774498551739,52.46244841711109],[4.5787741986165,52.46244792073763],[4.578773898681267,52.46244742436422],[4.578773598910293,52.46244691900411],[4.578773298975072,52.46244642263066],[4.578772999204111,52.46244591727055],[4.578772699268906,52.462445420897126],[4.578772384620899,52.46244492442333],[4.578772084685707,52.4624444280499],[4.578771770201965,52.462443922589436],[4.578771470266788,52.46244342621601],[4.578771155618808,52.46244292974224],[4.578770840970837,52.46244243326848],[4.578770526322873,52.46244193679469],[4.578770211674917,52.462441440320895],[4.578769897026967,52.46244094384712],[4.578769582379023,52.46244044737334],[4.578769267731087,52.462439950899565],[4.57876893837035,52.462439454325434],[4.578768623722428,52.4624389578517],[4.578768294197458,52.46243847026424],[4.57876797954955,52.46243797379044],[4.578767650188843,52.462437477216355],[4.578767320663894,52.462436989628884],[4.578766991303202,52.46243649305477],[4.578766661942518,52.462435996480664],[4.578766332417591,52.462435508893236],[4.578766003056921,52.462435012319105],[4.578765658819203,52.46243452463132],[4.578765329294298,52.462434037043884],[4.578764999933651,52.46243354046975],[4.578764655695954,52.46243305278199],[4.578764311458268,52.46243256509422],[4.578763982097644,52.46243206852008],[4.57876363785997,52.46243158083232],[4.578763293622305,52.46243109314454],[4.578762949384648,52.462430605456724],[4.578762605146998,52.462430117768946],[4.578762260909357,52.46242963008116],[4.57876191667172,52.46242914239336],[4.578761557721292,52.46242865460529],[4.578761213483673,52.46242816691747],[4.578760854369006,52.46242768811602],[4.578760510131402,52.46242720042825],[4.578760151181003,52.46242671264014],[4.578759734364923,52.462426170530684],[4.578759317548855,52.46242562842128],[4.578758900732796,52.46242508631186],[4.578758469203946,52.462424544102106],[4.578758052387908,52.4624240019927],[4.578757620859079,52.46242345978293],[4.57875718933026,52.46242291757317],[4.578756757801454,52.46242237536341],[4.578756326108404,52.46242184214033],[4.578755894579616,52.46242129993053],[4.578755463050841,52.4624207577208],[4.578755016645021,52.46242022439736],[4.578754585116267,52.4624196821876],[4.578754138710471,52.46241914886417],[4.578753692304683,52.462418615540734],[4.578753246063161,52.46241807323064],[4.578752799657398,52.46241753990721],[4.578752353251643,52.46241700658378],[4.578751892133102,52.46241647316001],[4.57875144572737,52.462415939836575],[4.57875098460885,52.46241540641279],[4.578750523490341,52.462414872989015],[4.578750062371844,52.46241433956525],[4.578749601253358,52.46241380614149],[4.578749139970629,52.46241328170436],[4.578748664139367,52.462412748180256],[4.578748203020914,52.46241221475647],[4.578747727025421,52.462411690219035],[4.578747251029938,52.462411165681594],[4.578746775198724,52.46241063215745],[4.578746299203261,52.46241010762004],[4.578745823207815,52.462409583082575],[4.578745347212376,52.462409058545106],[4.578744856504157,52.46240853390732],[4.578744380508742,52.46240800936985],[4.578743889800544,52.46240748473206],[4.578743399092359,52.4624069600943],[4.578742908384185,52.46240643545649],[4.578742417676021,52.4624059108187],[4.578741912090817,52.46240539506727],[4.578741421382678,52.46240487042945],[4.578740915797499,52.46240435467796],[4.578740425089383,52.462403830040195],[4.578739919504226,52.4624033142887],[4.578739413919084,52.462402798537234],[4.578738908498209,52.46240227379909],[4.578738402913088,52.462401758047626],[4.578737882615187,52.462401242195796],[4.57873737703009,52.462400726444336],[4.578736856732214,52.46240021059252],[4.578736350982884,52.462399703827685],[4.57873583068503,52.46239918797589],[4.57873531038719,52.462398672124074],[4.578734789925104,52.46239816525892],[4.578734269627287,52.46239764940711],[4.578733734452431,52.46239714244162],[4.578733213990382,52.46239663557643],[4.578732678979809,52.46239611962428],[4.578732143804992,52.462395612658796],[4.578731608630188,52.462395105693304],[4.578731073455394,52.462394598727776],[4.578730538280611,52.462394091762285],[4.578730003105846,52.46239358479679],[4.578729467766828,52.46239308681793],[4.578728917879296,52.46239257975212],[4.578728382704561,52.46239207278659],[4.578727832652794,52.46239157470741],[4.578727282601036,52.46239107662824],[4.578726732713553,52.46239056956236],[4.578726182661822,52.46239007148318],[4.578725632610104,52.46238957340399],[4.578725067845609,52.46238907522447],[4.578724517793916,52.46238857714528],[4.578723953029444,52.46238807896576],[4.578723388264986,52.46238758078621],[4.578722823336283,52.46238709159335],[4.578722258571848,52.462386593413804],[4.578721693643169,52.46238610422095],[4.578721128878763,52.46238560604137],[4.578720563950109,52.462385116848516],[4.57871998430868,52.462384627555274],[4.57871941954431,52.46238412937575],[4.578718839902907,52.46238364008253],[4.578718260261513,52.46238315078929],[4.578717680620136,52.462382661496086],[4.578717100814509,52.46238218118952],[4.578716521173156,52.46238169189629],[4.578715926654767,52.46238121148938],[4.578715347013442,52.462380722196144],[4.578714752495078,52.46238024178923],[4.578714172853777,52.46237975249597],[4.578713578335441,52.46237927208908],[4.578712983817117,52.462378791682156],[4.578712389298806,52.46237831127527],[4.578711794780509,52.46237783086834],[4.578711200262225,52.4623773504614],[4.578710590866906,52.462376878940816],[4.578709996348646,52.46237639853387],[4.578709387117617,52.46237591802663],[4.578708777722337,52.46237544650602],[4.578708183039855,52.462374975085744],[4.578707573644599,52.46237450356514],[4.578706964413621,52.462374023057826],[4.578706340305609,52.46237355143692],[4.578705730910393,52.46237307991631],[4.578705121350928,52.46237261738233],[4.578704497242955,52.462372145761336],[4.578703873134997,52.46237167414039],[4.578703263575569,52.462371211606445],[4.578702639467637,52.46237073998548],[4.578702015195453,52.46237027735117],[4.578701390923283,52.462369814716865],[4.578700766651124,52.462369352082526],[4.578700127666197,52.46236888934789],[4.578699503394066,52.46236842671358],[4.578698864409166,52.46236796397893],[4.57869824013706,52.46236750134459],[4.578697600987922,52.462367047596615],[4.57869696200306,52.46236658486191],[4.578696322853949,52.46236613111393],[4.578695683704849,52.46236567736591],[4.578695044555763,52.46236522361791],[4.578694405406691,52.462364769869886],[4.578693766257629,52.462364316121864],[4.578693112395803,52.46236386227352],[4.578692458533989,52.46236340842516],[4.578691819384969,52.462362954677154],[4.578691034586559,52.462362419045775],[4.578690743944822,52.46236221933238],[4.578690482400114,52.462362037793085],[4.578690220855409,52.46236185625369],[4.578689944597926,52.462361674614016],[4.578689683053224,52.46236149307466],[4.578689421508526,52.462361311535325],[4.578689145251051,52.46236112989565],[4.578688883870622,52.46236093936963],[4.57868860761315,52.4623607577299],[4.578688346068458,52.46236057619059],[4.57868806981099,52.462360394550906],[4.578687808266306,52.46236021301152],[4.578687531844575,52.4623600403585],[4.578687270299894,52.462359858819156],[4.578686994042436,52.462359677179464],[4.578686470788815,52.46235932308742],[4.578686049046249,52.462359050577696],[4.578685642180734,52.462358769181655],[4.578685235150957,52.46235849677228],[4.578684813408405,52.462358224262566],[4.578684406378638,52.46235795185321],[4.578683984636097,52.462357679343484],[4.578683562893563,52.462357406833725],[4.578683155863811,52.46235713442437],[4.578682734121284,52.462356861914664],[4.578682312378764,52.46235658940491],[4.57868190518476,52.462356325982206],[4.578681483442249,52.46235605347247],[4.578681061699746,52.46235578096275],[4.578680639957245,52.46235550845302],[4.578680218050482,52.46235524492997],[4.578679796307993,52.46235497242026],[4.578679374401242,52.46235470889716],[4.578678952658763,52.46235443638742],[4.578678530752019,52.462354172864366],[4.578678109009553,52.46235390035461],[4.57867767239004,52.4623536367312],[4.578677250647583,52.46235336422147],[4.578676828740862,52.462353100698394],[4.578676406834146,52.46235283717532],[4.578675970378926,52.46235256456523],[4.578675548472219,52.46235230104219],[4.578675111852741,52.46235203741874],[4.578674689946042,52.46235177389565],[4.578674253326576,52.46235151027224],[4.57867383141989,52.46235124674913],[4.578673394800432,52.46235098312574],[4.578672958180977,52.462350719502275],[4.578672536274308,52.46235045597918],[4.578672099654866,52.46235019235576],[4.578671663035428,52.46234992873233],[4.578671226415996,52.46234966510891],[4.578670789796569,52.46234940148547],[4.578670367725653,52.46234914694904],[4.578669931106236,52.462348883325596],[4.578669494486827,52.462348619702134],[4.578669057703149,52.46234836506541],[4.578668621083749,52.46234810144197],[4.578668169587307,52.46234784670482],[4.578667732967917,52.46234758308138],[4.57866729618426,52.4623473284446],[4.57866685956488,52.46234706482116],[4.578666422781233,52.46234681018434],[4.578665971449089,52.46234654646055],[4.578665534665454,52.46234629182379],[4.578665097881822,52.462346037187],[4.578664646385421,52.46234578244982],[4.578664209601802,52.46234552781308],[4.578663758269684,52.46234526408927],[4.578663321486073,52.46234500945249],[4.578662869989695,52.46234475471534],[4.578662418493321,52.4623444999782],[4.578661981709724,52.46234424534139],[4.578661530049088,52.46234399959094],[4.57866107855273,52.462343744853776],[4.578660627056374,52.46234349011663],[4.578660190272801,52.46234323547982],[4.578659738776456,52.46234298074266],[4.578659287115846,52.46234273499218],[4.578658835619514,52.462342480255025],[4.578658384123186,52.46234222551791],[4.57865793246259,52.46234197976738],[4.578657480966271,52.462341725030235],[4.578657029305687,52.462341479279736],[4.57865657780938,52.46234122454257],[4.578656111436032,52.462340978691735],[4.57865565977546,52.462340732941236],[4.57865520827917,52.46234047820404],[4.57865475661861,52.46234023245358],[4.57865429024528,52.462339986602736],[4.578653838584732,52.46233974085221],[4.578653386924186,52.462339495101716],[4.578652920550875,52.462339249250874],[4.57865246889034,52.462339003500375],[4.578652002517037,52.462338757649526],[4.578651550856513,52.46233851189899],[4.578651084483222,52.462338266048135],[4.578650618109934,52.46233802019727],[4.578650166449425,52.46233777444677],[4.578649700076149,52.462337528595924],[4.578649233538602,52.46233729173171],[4.578648781878108,52.46233704598116],[4.578648315504848,52.46233680013029],[4.578647848967319,52.46233656326609],[4.578647382594069,52.4623363174152],[4.578646916056545,52.462336080551005],[4.578646449683307,52.462335834700134],[4.578645983145797,52.46233559783592],[4.578645516608291,52.4623353609717],[4.578645050235067,52.46233511512084],[4.57864458369757,52.462334878256634],[4.57864411716008,52.46233464139244],[4.578643650622595,52.46233440452821],[4.578643184249391,52.462334158677294],[4.578642702999147,52.46233392171275],[4.578642236461675,52.46233368484849],[4.578641769924209,52.46233344798428],[4.57864130338675,52.46233321112007],[4.578640822136525,52.46233297415547],[4.578640355434799,52.462332746277916],[4.578639874184584,52.46233250931333],[4.578639407647143,52.4623322724491],[4.578638926396938,52.46233203548453],[4.578638459695231,52.462331807606944],[4.578637978445038,52.46233157064238],[4.578637511907618,52.46233133377812],[4.578637030493154,52.462331105800196],[4.578636549242977,52.46233086883562],[4.578636082541294,52.462330640958044],[4.578635601126847,52.4623304129801],[4.578635119876683,52.46233017601552],[4.578634638462246,52.46232994803759],[4.578634157047815,52.46232972005967],[4.578633675633388,52.4623294920817],[4.578633209096013,52.46232925521745],[4.578632727681597,52.462329027239505],[4.578632246267187,52.46232879926157],[4.578631764852776,52.46232857128365],[4.578631283438376,52.462328343305686],[4.57863078731121,52.4623281152274],[4.578630305732539,52.46232789623612],[4.578629824318154,52.46232766825817],[4.578629342903772,52.46232744028021],[4.578537722697768,52.46228436607014],[4.57853606088783,52.462283509883164],[4.578514033487906,52.46227222376704],[4.578513274832717,52.46227186806849],[4.577931135674566,52.461999268827036],[4.577801885175494,52.46194369579983],[4.577596538894957,52.46184834434719],[4.577581508351185,52.46184230077657],[4.577540059329912,52.46182211875071],[4.577312805228874,52.46171547232216],[4.57712806701825,52.46163024625476],[4.577155056463746,52.46149347473586],[4.577160684699412,52.46148905524795],[4.577161064261703,52.46148921962157],[4.577161443988572,52.46148937500852],[4.577161823715443,52.461489530395426],[4.577162218154802,52.4614896858829],[4.577162612594163,52.46148984137033],[4.577163007198102,52.46148998787109],[4.577163416514525,52.461490134472406],[4.577163825830953,52.46149028107373],[4.577164235147384,52.461490427675045],[4.577164659340876,52.46149056539021],[4.577165068657311,52.46149071199152],[4.577165493015379,52.46149084072003],[4.577165931921363,52.461490978535714],[4.577166356279437,52.461491107264216],[4.577166795349998,52.46149123609323],[4.577167234420562,52.46149136492225],[4.577167688368187,52.46149148486511],[4.577168142315813,52.46149160480798],[4.577168596263443,52.46149172475084],[4.577169050211073,52.461491844693725],[4.57716950432328,52.461491955649905],[4.577169973147973,52.461492066706654],[4.57717044213724,52.46149216877671],[4.577170911126511,52.46149227084675],[4.57717139482827,52.46149237301733],[4.577171863982112,52.4614924661007],[4.577172347848446,52.46149255928463],[4.577172831714781,52.46149265246851],[4.577173315745688,52.461492736665775],[4.577173814489083,52.46149282096353],[4.577174313232482,52.46149290526127],[4.577174797427966,52.461492980471846],[4.577175311048423,52.46149305588344],[4.577175810120966,52.461493122207905],[4.57717630919351,52.46149318853231],[4.577176823143113,52.46149324597057],[4.577177322380233,52.46149330330832],[4.577177836329836,52.46149336074661],[4.577178350444012,52.46149340919818],[4.577178864558189,52.46149345764978],[4.577179393549425,52.46149349721525],[4.577179907828173,52.46149353668021],[4.577180436819408,52.461493576245616],[4.57718095126273,52.4614936067239],[4.577181480418536,52.46149363730268],[4.577182009738913,52.46149365889478],[4.577182539223857,52.46149367150022],[4.577183053996318,52.461493684005184],[4.577183583316696,52.461493705597256],[4.577184112966211,52.46149370921605],[4.577184657328213,52.46149371293532],[4.577185187142297,52.46149370756744],[4.577185716956381,52.46149370219956],[4.577186246935034,52.461493687844964],[4.577186776749116,52.461493682477105],[4.577187306892335,52.46149365913584],[4.577187837035553,52.461493635794625],[4.57718836717877,52.461493612453395],[4.577188912199042,52.46149358022598],[4.577189442506825,52.46149354789806],[4.577189972979176,52.46149350658351],[4.577190503451525,52.46149346526893],[4.577191034088441,52.461493414967684],[4.577191550012866,52.461493364565925],[4.577192080649781,52.46149331426467],[4.577192611451258,52.46149325497677],[4.577193127704815,52.461493186601665],[4.577193658670859,52.46149311832707],[4.577194174924411,52.46149304995194],[4.577194691342529,52.461492972590186],[4.577195207760647,52.461492895228396],[4.577195724343328,52.46149280887993],[4.577196240926008,52.46149272253152],[4.57719675767325,52.46149262719638],[4.577197259708006,52.46149253176077],[4.577197761742758,52.461492436325095],[4.57719827865456,52.4614923320033],[4.577198766141386,52.46149222748053],[4.577199268505264,52.46149211407151],[4.577199770869137,52.46149200066255],[4.577200258685087,52.461491878166385],[4.577200746501035,52.4614917556702],[4.57720123431698,52.46149163317402],[4.577201707585001,52.4614915015907],[4.577202195565506,52.46149137010786],[4.577202668833522,52.46149123852448],[4.577203142266098,52.46149109795451],[4.577203600986188,52.461490957283935],[4.577204074583324,52.46149080772724],[4.57720453346797,52.461490658070026],[4.577204992352614,52.461490508412815],[4.577205436689334,52.461490349668416],[4.577205895738536,52.46149019102452],[4.577206325362764,52.4614900321796],[4.577206769864036,52.461489864448545],[4.577207199652823,52.46148969661693],[4.577207644154088,52.46148952888587],[4.577208059394946,52.46148935196709],[4.577208489183719,52.461489184135495],[4.577208904589134,52.46148899823002],[4.577209305117496,52.46148882121076],[4.577209720522902,52.4614886353053],[4.57721012121582,52.461488449299345],[4.577210521908737,52.46148826329334],[4.577210907889163,52.46148807718686],[4.577211294034149,52.4614878820937],[4.577211680179134,52.46148768700055],[4.577212051611628,52.46148749180688],[4.577212423208683,52.461487287626525],[4.577212794641172,52.461487092432876],[4.577213151525734,52.46148688815199],[4.577213508410294,52.46148668387116],[4.57721386529485,52.461486479590285],[4.577214207631482,52.46148626622221],[4.577214549968111,52.46148605285416],[4.577214892140176,52.461485848472776],[4.577215219764312,52.4614856350042],[4.577215547553008,52.46148541254899],[4.577215860464656,52.461485198979865],[4.577216173376301,52.4614849854108],[4.577216486452504,52.461484762855044],[4.577216784816221,52.46148454019876],[4.577217083015372,52.461484326529174],[4.577217381379083,52.46148410387288],[4.577217665030308,52.46148388111609],[4.577217948681529,52.46148365835929],[4.577218232497309,52.461483426615814],[4.577218501436042,52.46148320375851],[4.577232461145216,52.4614818251345],[4.577232958736694,52.46148197233864],[4.577233617342694,52.46148216558178],[4.577234290825743,52.46148234993882],[4.577234949596311,52.4614825341953],[4.577235637791855,52.46148271865278],[4.577236311439477,52.461482894023106],[4.577236999799587,52.46148306949395],[4.577237688324261,52.46148323597811],[4.577238376848942,52.46148340246228],[4.577239065538182,52.46148355995979],[4.57723976893991,52.46148371755778],[4.577240472506202,52.461483866169104],[4.577241176072499,52.46148401478045],[4.577241879803356,52.461484154405134],[4.577242598246701,52.46148429413028],[4.577243302142124,52.46148442476831],[4.577244020750035,52.461484555506786],[4.577244739522506,52.46148467725862],[4.577245473007467,52.46148479911098],[4.577246191779945,52.46148492086277],[4.577246925594022,52.4614850247418],[4.577247644531064,52.461485137506955],[4.577248378509705,52.46148523239926],[4.577249112323794,52.461485336278244],[4.577249846466997,52.46148542218391],[4.577250595158132,52.46148551717674],[4.577251329465894,52.46148559409571],[4.577252078486143,52.46148567111518],[4.577252812793909,52.46148574803416],[4.577253561978719,52.461485816067004],[4.57725431116353,52.46148588409981],[4.577255045800414,52.46148594304542],[4.577255795314337,52.46148599310486],[4.577256544828261,52.46148604316435],[4.577257294506742,52.46148608423715],[4.577258044185225,52.461486125309925],[4.577258793863708,52.46148616638271],[4.577259543871297,52.461486189482194],[4.577260293714337,52.461486221568265],[4.577261043886483,52.46148623568104],[4.577261808771111,52.46148624989437],[4.577262558943258,52.46148626400712],[4.577263309279958,52.46148626913322],[4.577264059616656,52.46148627425931],[4.577264810117908,52.4614862703987],[4.577265546071227,52.461486257450964],[4.577266296737031,52.461486244603734],[4.577267047567384,52.46148622276979],[4.577267798397736,52.46148620093586],[4.577268534680157,52.46148617001475],[4.577269285675058,52.46148613919417],[4.577270022122026,52.46148609928636],[4.577270773281477,52.461486059479114],[4.577271509892994,52.46148601058467],[4.577272246504509,52.46148596169021],[4.577272983280573,52.46148590380905],[4.577273720056634,52.46148584592793],[4.577274442284759,52.46148577895963],[4.577275179225368,52.46148571209181],[4.577275901618038,52.46148563613684],[4.577276624010707,52.46148556018184],[4.577277346567923,52.461485475240195],[4.577278069125135,52.46148539029849],[4.577278791846894,52.46148529637018],[4.57727935207313,52.46148523728291],[4.577279867832814,52.46148519586742],[4.577280383757046,52.46148514546523],[4.577280899681279,52.46148509506308],[4.577281415770058,52.46148503567426],[4.577281916981803,52.46148498517159],[4.577282433070578,52.46148492578275],[4.577282949159352,52.46148486639394],[4.577283465412675,52.461484798018425],[4.577283966788963,52.46148473852911],[4.577284483042282,52.461484670153546],[4.577284999460147,52.46148459279141],[4.577285501000978,52.46148452431539],[4.57728601741884,52.46148444695323],[4.577286519124215,52.461484369490535],[4.577287020994136,52.46148428304118],[4.577287537411993,52.461484205679],[4.57728803928191,52.46148411922963],[4.577288541316373,52.46148402379364],[4.577289043186289,52.461483937344276],[4.57728955993323,52.46148384200873],[4.577290061967686,52.46148374657271],[4.577290564002142,52.46148365113666],[4.577291051488658,52.461483546613465],[4.577291553687654,52.461483442190755],[4.577292055886649,52.46148333776808],[4.577292543373157,52.461483233244834],[4.577293045736692,52.46148311983547],[4.577293533387742,52.46148300632561],[4.577294035751273,52.461482892916216],[4.577294523566865,52.46148277041966],[4.577295011217906,52.461482656909745],[4.57729538083999,52.46148256056914],[4.577295735749587,52.461482464128025],[4.577296223565169,52.461482341631466],[4.577296711545292,52.46148221014821],[4.577297184812932,52.46148207856451],[4.577297672793049,52.46148194708126],[4.577298146060683,52.461481815497535],[4.577298619492858,52.461481674927114],[4.57729909292503,52.46148153435671],[4.577299566357199,52.46148139378628],[4.57730003995391,52.46148124422921],[4.577300513386072,52.461481103658805],[4.577300972270294,52.461480954001196],[4.577301431154513,52.461480804343644],[4.577301904915756,52.46148064579989],[4.577302363799967,52.46148049614227],[4.577302808136238,52.46148033739754],[4.577303267349533,52.46148016976659],[4.577303726398281,52.461480011122326],[4.577304170899086,52.461479843390876],[4.577304615235343,52.46147968464613],[4.577305059736142,52.461479516914665],[4.577305504401481,52.46147934019655],[4.577305948902272,52.461479172465104],[4.577306378855123,52.461478995646495],[4.577306823520452,52.461478818928406],[4.577307253473294,52.46147864210977],[4.577307683426135,52.46147846529114],[4.577308113543515,52.461478279485874],[4.577308528948408,52.46147809358004],[4.577308959065778,52.46147790777477],[4.577309374470667,52.46147772186895],[4.577309686065466,52.461477580192934],[4.57732336150368,52.46146922509188],[4.577452726020194,52.461367351346034],[4.577558762222043,52.4612858822087],[4.577696232239587,52.46117762829539],[4.577784814485104,52.46110913498703],[4.577827083040889,52.461076456351],[4.577945094781531,52.460986161726964],[4.577949735748378,52.46098261626605],[4.578895383033667,52.46024514815488],[4.579013497262432,52.46015302864932],[4.579328520622616,52.45990734645737],[4.579336876133088,52.45989939527441],[4.579338583167201,52.45989777112899],[4.579346225783789,52.459887765871244],[4.579350096051318,52.45988048517098],[4.57935249283692,52.45987090254339],[4.579353411920517,52.45986086045678],[4.579347732704264,52.45984392471116],[4.57934409801307,52.459837500636446],[4.579337501745814,52.45982969023612],[4.579330153143369,52.45982279146328],[4.579321280843507,52.459816340683965],[4.579306491902268,52.45980756668538],[4.579323911182363,52.459793970022574],[4.57933006771574,52.45978396362654],[4.579330153119526,52.45977848165635],[4.579328752619315,52.45977298956051],[4.57932509916706,52.45976839886651],[4.579319945099988,52.459763797946316],[4.579245049568819,52.45972768690376],[4.579423035623185,52.45958942724584],[4.579457946503291,52.45956228830279],[4.579484517141531,52.45953823825287],[4.579494410409949,52.4595282573072],[4.579508976421735,52.45950733410356],[4.579527591747825,52.459467707929406],[4.579532389514559,52.459449917826426],[4.579534211008927,52.45943074130228],[4.579534498589581,52.45941337884941],[4.579533477795098,52.45940562441909],[4.579531849556151,52.459393264101436],[4.579526914288235,52.45937587505375],[4.579322921912829,52.45897803361826],[4.579290387311124,52.45891294700711],[4.57928527503564,52.458906063469705],[4.579273447753555,52.45889868477951],[4.579076953501823,52.458804231968315],[4.578708501146053,52.458624633272045],[4.578483851454201,52.45851630801903],[4.577999094038019,52.458284503434534],[4.577944368608703,52.45825833490243],[4.577886900846497,52.45823087135638],[4.578001714526585,52.45814124688517],[4.578026940523535,52.45812152908154],[4.578002290370621,52.45810976657012],[4.577926405166561,52.458072470506465],[4.578031981938048,52.4579923100119],[4.579473754800725,52.45868203283662],[4.579479694383343,52.458683897826965],[4.579489410355232,52.458684422402136],[4.579656818226671,52.458631285597924],[4.579823870487986,52.45857826297806],[4.579837956841206,52.45858520760917],[4.579849807046404,52.45859213700996],[4.579865379272809,52.458599091756895],[4.579881726885324,52.458604676649905],[4.579906273322068,52.458611683517155],[4.579924896901349,52.45861590877067],[4.579945764837777,52.4586196999144],[4.579965165654577,52.458621647554835],[4.579977047330846,52.45862201606883],[4.579999546686335,52.45862187267088],[4.580021992325332,52.458620641380094],[4.580070561821771,52.458609314902176],[4.580085827675307,52.45860322624783],[4.580103927783396,52.45859420889167],[4.580116765658548,52.458586521852105],[4.580130395461798,52.45857655730334],[4.580142549604583,52.458565216562725],[4.580150950456613,52.45855475803668],[4.580161814404367,52.45853106827234],[4.580179683767154,52.45849275811944],[4.580249823406185,52.45850962930321],[4.580332674005678,52.45852335135353],[4.580559406834411,52.458747647738754],[4.580612741266906,52.45875822974431],[4.5844437383959,52.457320239059875],[4.584558441792774,52.457277182276606],[4.585377402761312,52.456969742528614],[4.585408696034022,52.45695761394883],[4.586357540126627,52.45658778080778],[4.58639307700672,52.45657445829799],[4.586459629983088,52.45654884326947],[4.586501706991664,52.45653265285962],[4.586808021449934,52.456829646723506],[4.586777356103504,52.456841249631],[4.586763638301877,52.45684643284032],[4.586843145131752,52.456923743341264],[4.586854821072468,52.45693546135589],[4.586858321629561,52.45693877451979],[4.586876227535663,52.4569322444423],[4.586896532712518,52.456924840768394],[4.587217597762009,52.45723875824106],[4.587211745599558,52.45724100164747],[4.587158559271796,52.457261296657315],[4.585361970975084,52.45793965427848],[4.585094250297354,52.45804030395925],[4.582924361774219,52.458858761670136],[4.581770171448063,52.45929644147124],[4.58174888202771,52.459323853391425],[4.581701165454812,52.45938528428797],[4.581696027473182,52.45939190932938],[4.58178895180194,52.45948441384878],[4.581581329095632,52.45972588912753],[4.581577648572091,52.45973004343811],[4.581539177048662,52.45977339973497],[4.581535839474475,52.459777304716795],[4.581425629072637,52.45990597984226],[4.581268474770024,52.4601343248865],[4.581259822465036,52.46014485368124],[4.581250162180279,52.46015659796202],[4.581157100846472,52.4602605471724],[4.581061589598534,52.460371337332504],[4.581042946915482,52.460393949667214],[4.580855757816432,52.46061017211356],[4.580837221025071,52.46063261436803],[4.580662997840589,52.46085180078914],[4.580650257446134,52.46086782921638],[4.580645980675139,52.46087320178056],[4.580509485551027,52.461051894014936],[4.580509223313178,52.461052557326774],[4.580508975787675,52.46105322073874],[4.580508728262158,52.46105388415071],[4.580508495285097,52.46105455664947],[4.580508276856489,52.461055238235],[4.580508073304117,52.461055910933965],[4.580507854875494,52.46105659251946],[4.580507680420029,52.461057283392],[4.580507491416096,52.46105796517773],[4.58050733167297,52.46105865615039],[4.580507157053597,52.461059356009564],[4.580507026571272,52.46106005616908],[4.580506881376592,52.46106075622848],[4.580506765606613,52.46106145648812],[4.580506634960385,52.4610621656343],[4.580506548615105,52.46106286609413],[4.580506447229683,52.46106358442725],[4.580506375432861,52.461064293973855],[4.580506303472142,52.46106501250719],[4.580506246223774,52.46106573114056],[4.580506203687761,52.46106644987407],[4.580506175864099,52.46106716870771],[4.580506147876544,52.461067896528014],[4.580506149477592,52.46106861556186],[4.580506136202391,52.46106934348226],[4.580506167064256,52.46107007170297],[4.580506183213768,52.46107079982361],[4.580506243500346,52.46107152824453],[4.580506288910678,52.461072265552055],[4.580506363909619,52.461072994073085],[4.580506438744669,52.46107373158081],[4.580506528292078,52.46107446918865],[4.580506632551847,52.46107520689661],[4.580506751687867,52.461075935717965],[4.580506885372359,52.46107667362615],[4.580507033769213,52.46107741163444],[4.580507182166071,52.46107814964271],[4.580507359987652,52.4610788878512],[4.58050753780924,52.46107962605968],[4.58050774505555,52.46108036446839],[4.580507937589506,52.46108110277694],[4.580508174424438,52.46108183239924],[4.580508396383128,52.46108257090803],[4.580508662478904,52.46108330971714],[4.580508914026223,52.46108403943951],[4.580509194834376,52.461084778348734],[4.580509475806431,52.46108550827135],[4.580509786203216,52.46108623839413],[4.580510096600011,52.46108696851692],[4.58051043642154,52.46108769883992],[4.580510761530718,52.46108842906281],[4.580511130940882,52.46108915059936],[4.580511485638697,52.461089872035785],[4.580511869761247,52.46109059367245],[4.58051225388381,52.46109131530909],[4.580512667595,52.461092028159285],[4.580513081306203,52.46109274100948],[4.580513524442148,52.461093454059885],[4.580513967578106,52.461094167110296],[4.580514425590333,52.46109487127414],[4.580514883602572,52.46109557543798],[4.580515371203445,52.46109627081534],[4.580515858640443,52.461096975179395],[4.580516375829967,52.461097661770296],[4.580516892855614,52.46109835734789],[4.580517424757534,52.461099044038896],[4.580517971371836,52.46109973083004],[4.580518532862408,52.46110040873459],[4.580519094352997,52.46110108663917],[4.580519670719859,52.461101755657175],[4.580520261799105,52.46110242477525],[4.580520867754623,52.46110308500678],[4.580521473710157,52.46110374523831],[4.580522109254334,52.46110439668337],[4.580522729922275,52.46110505701501],[4.58052339505511,52.461105699673574],[4.580524045475596,52.46110634223206],[4.58052471077236,52.46110697590396],[4.580525390781509,52.46110760967603],[4.580526085666934,52.46110823456146],[4.580526780716266,52.4611088504602],[4.580527490477984,52.46110946645914],[4.580528214952091,52.4611100825581],[4.580528939753994,52.46111068068371],[4.580529679104398,52.461111287896145],[4.580530433494966,52.4611118772353],[4.580531187885551,52.46111246657447],[4.580531957152415,52.461113047027055],[4.580532741131667,52.46111362757975],[4.580533525274828,52.46111419914576],[4.580534309581894,52.46111476172509],[4.580535123477607,52.461115315517986],[4.580535937209453,52.461115878297505],[4.580536751432978,52.461116414117036],[4.580537580205009,52.4611169590233],[4.580538423853313,52.46111749504303],[4.580539252953155,52.46111802197595],[4.580540111641643,52.461118540122406],[4.580540970330151,52.46111905826889],[4.580541829182565,52.46111956742864],[4.580542702911253,52.46112006770184],[4.580543576803845,52.46112055898837],[4.58054446540883,52.461121050375034],[4.580545354177717,52.461121532774946],[4.58054625782288,52.46112200628832],[4.580547161468065,52.46112247980171],[4.580548065441033,52.461122935341706],[4.580548984126394,52.461123390981825],[4.580549902811773,52.46112384662194],[4.580550821824935,52.46112428428872],[4.580551755714374,52.461124713068884],[4.580552689603829,52.46112514184904],[4.580553623657185,52.46112556164255],[4.580554572586815,52.46112597254944],[4.580555521516463,52.461126383456346],[4.580556470610009,52.46112678537659],[4.580557419867453,52.46112717831015],[4.580558384001171,52.46112756235716],[4.580559348298785,52.46112793741744],[4.580560312596417,52.46112831247774],[4.580561277057945,52.461128678551304],[4.580562256395746,52.46112903573833],[4.580563221185066,52.461129383838596],[4.580564200686776,52.461129732038934],[4.580565180352381,52.46113007125261],[4.580566160345763,52.4611303924929],[4.580567140175276,52.46113072271988],[4.580568252088433,52.46113107182109],[4.580568471463039,52.461131145216],[4.580568705550022,52.46113121871099],[4.580568925088507,52.46113128311923],[4.580569173887867,52.46113135671429],[4.580569481045097,52.4611314576698],[4.580569890861202,52.46113157729938],[4.580570300513431,52.46113170591561],[4.580570710329539,52.46113182554516],[4.580571119981773,52.4611319541614],[4.580571544510264,52.46113207389105],[4.580571925065506,52.46113218433374],[4.580572320333126,52.46113229487649],[4.580572730149246,52.461132414506075],[4.580573154677746,52.461132534235716],[4.580573579206249,52.46113265396537],[4.580573989186253,52.46113276460822],[4.58057441371476,52.46113288433787],[4.580574838407145,52.46113299508084],[4.580575204413905,52.461133096436775],[4.580575541323666,52.46113317961908],[4.580552439741001,52.46115901511685],[4.580547014222822,52.46115718064408],[4.580412069096522,52.4613105197744],[4.580411220409845,52.46131268005547],[4.58040043402072,52.46134015421701],[4.581539805360104,52.46245977227041],[4.581588949782589,52.4624671796083],[4.583867953822461,52.461601068251596],[4.585305477871711,52.46105614619608],[4.587294152024907,52.46030211411923],[4.587818237837712,52.46010313639171],[4.587817151419642,52.46008509058837],[4.587816424705382,52.46007319485313],[4.58791138662814,52.46003661672423],[4.588248643395779,52.45990946599031],[4.588256916579533,52.45990679844694],[4.588508579966618,52.459811516012806],[4.589002848524951,52.45962454659055],[4.589252241253464,52.45953016405245],[4.589501624654471,52.45943623930676],[4.589509897836503,52.45943356268863],[4.590006408853793,52.45924660419483],[4.590256563967674,52.4591513169167],[4.590264078495056,52.45914909352316],[4.590340995140945,52.45911918691494],[4.590436203015467,52.45908342631651],[4.590750785099307,52.45896615546149],[4.591235261222012,52.45878184328237],[4.591728756656284,52.4585948483813],[4.591997731991211,52.45849331139545],[4.592436995939572,52.45832552516691],[4.59271347562178,52.458221313578065],[4.593050842191027,52.45809387137517],[4.593409127900444,52.45795746366993],[4.593687358685954,52.457853800814604],[4.593699030517486,52.457849456951955],[4.593618413612302,52.45777503776408],[4.593615142703882,52.45777201394938],[4.593690813585335,52.457757160361275],[4.593726092412931,52.45775159038942],[4.593756119624098,52.457745967282776],[4.593756931001525,52.45774584688434],[4.593845400375995,52.45773273260868],[4.593963886046406,52.45771705986814],[4.594107034335201,52.45770118350638],[4.594180958935744,52.45769590788525],[4.594198844466467,52.45769375361886],[4.594241817010389,52.457690706598434],[4.594303938736853,52.45768723938593],[4.594437765170733,52.457684961703],[4.59452146016377,52.457685377556466],[4.594626745204227,52.45768874188319],[4.594711783708353,52.457694649130055],[4.59479155282661,52.457702318649915],[4.594857103472581,52.45771030652295],[4.594959101502552,52.45772551245344],[4.59512653252708,52.457752821635964],[4.595155912112596,52.457758707193555],[4.595168402695333,52.457761217344824],[4.595192153264477,52.45776594181307],[4.595228629487324,52.45777319596747],[4.595244000186231,52.457776731982754],[4.595333894341474,52.45779742915257],[4.595404405994352,52.45781596556049],[4.595435546168975,52.457825421967776],[4.595488884248002,52.45784333132157],[4.595556203966663,52.45787005216333],[4.595587241298241,52.45788361525834],[4.595789613559059,52.45798101881357],[4.595798497383988,52.457985293387715],[4.595829700075155,52.458000313542094],[4.595866510818862,52.458022606284025],[4.595866962209926,52.45802286994268],[4.595914874968598,52.458050458675146],[4.595960494186,52.4580804228288],[4.596002333453875,52.45811360632492],[4.596014383449917,52.45812348342339],[4.596035894889847,52.45814318439021],[4.596064056297213,52.45817113557222],[4.596084055495681,52.45819312730901],[4.596106235597645,52.45822151491755],[4.596135005569845,52.45826727492957],[4.596140052187461,52.45828784567566],[4.596139133822282,52.45830793621739],[4.596130749733669,52.45832754552809],[4.596120117979119,52.458345315320855],[4.596099793895534,52.458361231867194],[4.596075008737714,52.45837484473225],[4.596015731178651,52.458400226082986],[4.595930205261937,52.458434644682576],[4.595230520143123,52.458682565030564],[4.595228387192146,52.45868335968148],[4.595177789476272,52.45870217460868],[4.59517576014828,52.458702933999824],[4.594552914545647,52.458922953338174],[4.594541683464012,52.45891254230114],[4.593276434513861,52.459360753817776],[4.593278412937509,52.45936283425585],[4.593285777261709,52.459370613062205],[4.592689012876794,52.459583364426514],[4.590596024411461,52.46032434658358],[4.588085697339231,52.46121376197798],[4.587985346516932,52.46124795811012],[4.587993820671108,52.461256985040166],[4.588156173193854,52.46142990773948],[4.588144710881615,52.46143397385096],[4.588143511376829,52.46143439717972],[4.587477227523646,52.46167075011738],[4.5873443896481,52.46171694095559],[4.586265391892532,52.46210085852715],[4.585280213880201,52.46244969251722],[4.585042532588343,52.46253384600117],[4.584488796756895,52.46272971673677],[4.584371191789683,52.46260675851329],[4.584218176305279,52.462660925195884],[4.584075894926883,52.46284434575953],[4.584097196499153,52.462868145893296],[4.583604350989898,52.46304247681307],[4.583452126581173,52.46292098171073],[4.583427112156213,52.46289988857361],[4.583413622480187,52.46289077338709],[4.583389873701011,52.46287695993693],[4.583353828084086,52.462858029950546],[4.583306732920836,52.46283984291907],[4.583263108002573,52.462826649643056],[4.583232436989289,52.462821282674064],[4.583197996551839,52.46281766971534],[4.583128959148869,52.46281581739927],[4.583096524487668,52.46281761967071],[4.583073629049179,52.46282000792531],[4.58301665620936,52.46282957096362],[4.582988464952649,52.462835922842494],[4.582939321541144,52.462851893313875],[4.582919911122861,52.46285926643527],[4.582897357230317,52.462872001908906],[4.582585506044128,52.46302736080207],[4.582554736545418,52.46304358163986],[4.582536757717846,52.46305233055769],[4.582520150297017,52.463063344713845],[4.58250722717275,52.463074860226605],[4.582498006497204,52.46308507067634],[4.582494057345092,52.463090229821546],[4.582489475366262,52.46309620255933],[4.58248397005235,52.4631060158001],[4.582477475678065,52.463121664384914],[4.582472458815001,52.463137790362694],[4.582470377857685,52.4631534958668],[4.582470132244875,52.46317912735071],[4.582475313648071,52.46319763240953],[4.582488943935883,52.463225703886735],[4.582511355336973,52.46325478766683],[4.582521948906876,52.46326617518339],[4.582549670965897,52.46329129543765],[4.582563353981601,52.46329867739246],[4.58260468750717,52.463314084342606],[4.582635203484511,52.46332394431029],[4.582655599787562,52.46332872041665],[4.582683374557766,52.463333151126115],[4.582707525489359,52.463336182108804],[4.583025279961776,52.46337501696448],[4.583646846202749,52.463415128549684],[4.584087053006187,52.46343084698512],[4.586738816783985,52.46352377421254],[4.5873729570283,52.46354667662089],[4.588083701609664,52.463571350275636],[4.588342665284599,52.46357980932852],[4.58875154053593,52.463592620951715],[4.588951939821287,52.46359857212515],[4.589484004709762,52.46361328012156],[4.589797167142761,52.46362157936118],[4.590035119417935,52.46362752961022],[4.590373552625424,52.46363555683649],[4.59043186591316,52.4637059365211],[4.590436337303053,52.46374852367141],[4.590435149254401,52.46377689907148],[4.590454512294929,52.46380478343607],[4.590451843209594,52.4638557441416],[4.590450793485282,52.463895229356595],[4.59057476067515,52.4638964668257],[4.590628124449171,52.46389690626296],[4.590627897126794,52.46390544311869],[4.590668372360205,52.463905777967284],[4.590668591744616,52.463897681458995],[4.590727700191558,52.46389779993525],[4.590784374467496,52.463898261541644],[4.590784124209304,52.463907256619756],[4.590811358096541,52.46390746652046],[4.590812290155452,52.46389983317553],[4.590920468037793,52.463900254188864],[4.590930523600747,52.463909776859374],[4.590971023269525,52.46390875461525],[4.590987269229321,52.46390709312795],[4.590998375398798,52.46390403098064],[4.591008102905213,52.46389826324257],[4.591012705172579,52.46389110393197],[4.591014458908469,52.46388033038358],[4.591018146880932,52.46385202569479],[4.591019022283986,52.46384753768781],[4.591017661425721,52.46384302567565],[4.591014029225986,52.46383798610742],[4.59151655434954,52.46384343590105],[4.591515883682208,52.4638439077519],[4.591513854708062,52.463847902680804],[4.59151200908337,52.4638515213538],[4.591507992096781,52.46389240672747],[4.591509338293271,52.463896918635335],[4.591519385899192,52.463906890590465],[4.591525193143637,52.46390963488277],[4.591530318398537,52.46391102643228],[4.591536133565723,52.46391333037647],[4.591554477864025,52.46391526901406],[4.591554031261356,52.46390492109289],[4.59155766480742,52.46390498142822],[4.591643752511104,52.463906377006566],[4.591664377045922,52.46390671312909],[4.591670778682599,52.46391486305269],[4.591697276751465,52.463915076800326],[4.591708538704655,52.46390662296966],[4.591814462581952,52.46390882559759],[4.591814332790179,52.463913588245205],[4.591814235326895,52.463917371442705],[4.591824542580524,52.46391700018971],[4.591837862328344,52.46391440220255],[4.591841092136352,52.46391318355734],[4.591846040487773,52.46391132033354],[4.59185425743765,52.46390689954635],[4.591861113601445,52.463897957769355],[4.591861912460461,52.46389526679721],[4.591863517832508,52.46386245422879],[4.592613208574799,52.46380342516],[4.592656581809245,52.46381690988407],[4.59288118912257,52.463886757898585],[4.592884316713347,52.463895326221184],[4.593706605069553,52.46377673830353],[4.59370988028807,52.46377626589637],[4.593823788196076,52.46377716301133],[4.593824494434227,52.46377716773728],[4.593858409062596,52.46377736771725],[4.593858608143978,52.46377529287482],[4.593867420923716,52.463775378808165],[4.593867605355552,52.463777402290255],[4.594304989496766,52.46378103822213],[4.594305101405141,52.46377889988168],[4.59431410658719,52.46377892415415],[4.59431411270783,52.46378104530839],[4.594735920859358,52.46378427888623],[4.594736148521146,52.46378224917239],[4.594745006249276,52.463782290402094],[4.594745204307525,52.46378437688805],[4.595183712128595,52.46378772049121],[4.595183981174088,52.46378584384511],[4.595192721358043,52.463785875268314],[4.59519283228406,52.46378789825699],[4.59562283203264,52.46379139910581],[4.595623103472014,52.463789387658274],[4.595631887314574,52.4637894463039],[4.595631848071859,52.46379163905702],[4.596912136898301,52.463801249531194],[4.597028086165555,52.46373401193339],[4.597055891239124,52.46371789343607],[4.597449294954042,52.46371969673193],[4.597479450821235,52.46371943023767],[4.597783358778232,52.463720348658626],[4.597972457078956,52.46371978307474],[4.598001153762701,52.463719650538586],[4.598450028565349,52.46371758650694],[4.598601889921326,52.46371663736941],[4.598620211357467,52.463715743614706],[4.598639946577158,52.463713960483965],[4.598673802971072,52.46370917048983],[4.598863975809101,52.46367803425684],[4.598916207859187,52.46366930390695],[4.599168684834114,52.46365214395387],[4.599813706658596,52.463647783218896],[4.601602613204481,52.463665833838704],[4.604465126603485,52.463679823404355],[4.604539920098363,52.46365088225588],[4.60472156553395,52.463652350855476],[4.60477033880107,52.463652744642395],[4.604864954443739,52.46365284772215],[4.605012940828845,52.46365381514684],[4.605403430410982,52.463655617758285],[4.605489535271615,52.46365603271653],[4.605577288181305,52.463656449489406],[4.606168896055657,52.46365861361112],[4.606828962737893,52.46366135122695],[4.607330723283943,52.463664212373494],[4.607830306971349,52.46366702113494],[4.608502440260706,52.46367058372267],[4.609065829860002,52.46367330301698],[4.609752152221841,52.46367665504605],[4.610655734333034,52.46368210037916],[4.610997318070245,52.46368352827826],[4.611361356770192,52.46368580318041],[4.611552323036038,52.463686090981994],[4.612417741486399,52.46369114737313],[4.612437263857454,52.46369140077654],[4.612814014790859,52.4636929274139],[4.613276371260676,52.463695658804916],[4.613740957052406,52.463697971523665],[4.613761759494516,52.46369823305968],[4.613821461727755,52.463697193462636],[4.61384492415274,52.463695126532414],[4.61390510341945,52.46368531796083],[4.613951674082342,52.46368039981849],[4.614006306740608,52.463677268870114],[4.614065303853335,52.463675316789214],[4.614591406083341,52.46367717347125],[4.614687998606173,52.46367698499653],[4.615360868936852,52.46368048653071],[4.615379691512533,52.46368036639605],[4.616832191853375,52.46368724262752],[4.616850396312751,52.463687127230756],[4.617588754048264,52.46369115844299],[4.618305285558463,52.46369711069128],[4.618322665759868,52.46369700769841],[4.619058787839608,52.463700143442765],[4.619775505130585,52.463704730856435],[4.61979389275743,52.463705083555936],[4.62124629033808,52.46371369358728],[4.62126558358834,52.46371358454644],[4.622044779742935,52.463718247277654],[4.622514420948985,52.46371840117451],[4.622720239114347,52.46372013290914],[4.62273896595728,52.463720442400195],[4.623470574954339,52.46372419572464],[4.623579539136728,52.46372592218402],[4.623865839062869,52.463726489554055],[4.624187819514205,52.46372810374714],[4.624206849010562,52.46372792961597],[4.624589362144183,52.463728970567665],[4.624954449100274,52.46373107564529],[4.625355608007983,52.46373286314015],[4.625611772746676,52.46373507513518],[4.625631736470095,52.463735338187846],[4.626028377676922,52.46373713932516],[4.626607664732378,52.46374046150024],[4.627129313325268,52.46374206319096],[4.627148283964956,52.46374188821031],[4.627291437674438,52.463742383401346],[4.627571893450106,52.463744800774435],[4.627803747302323,52.46374540524297],[4.628405831687073,52.46374851412383],[4.62846501715343,52.46374927038033],[4.628467885954914,52.46374930671461],[4.628468445217646,52.46374930130587],[4.628468989766998,52.46374929580297],[4.628469549029731,52.463749290394176],[4.628469961312787,52.4637492750571],[4.628470241021234,52.463749267859335],[4.62847052072968,52.463749260661594],[4.628470800438125,52.463749253463824],[4.628471080300729,52.46374923727934],[4.62847134529579,52.463749229987414],[4.628471625158392,52.46374921380289],[4.628471905020994,52.46374919761839],[4.628472184729439,52.46374919042064],[4.628472464592043,52.46374917423613],[4.628472729741259,52.463749157957444],[4.628473009758018,52.46374913278619],[4.62847328962062,52.463749116601676],[4.62847356948322,52.46374910041714],[4.628473849499979,52.46374907524589],[4.628474114649194,52.46374905896721],[4.628474394665953,52.463749033795956],[4.628474674682708,52.46374900862468],[4.628474954699464,52.46374898345339],[4.628475220002838,52.46374895818801],[4.628475500019594,52.46374893301673],[4.62847578003635,52.46374890784544],[4.628476045339722,52.46374888258003],[4.628476325510634,52.46374884842197],[4.628476605527386,52.46374882325071],[4.628476870984914,52.46374878899856],[4.628477151001668,52.463748763827304],[4.628477416459196,52.463748729575094],[4.628477696630105,52.46374869541706],[4.628477962087628,52.4637486611649],[4.628478242258538,52.463748627006865],[4.628478507870219,52.463748583767924],[4.628478788041125,52.463748549609896],[4.628479053498649,52.46374851535769],[4.628479333823711,52.46374847221294],[4.628479599435391,52.46374842897399],[4.628479864892913,52.4637483947218],[4.628480145217974,52.463748351577046],[4.628480410829651,52.46374830833809],[4.628480676441328,52.46374826509918],[4.628480942053002,52.463748221860214],[4.628481207818833,52.46374816963452],[4.628481488143892,52.46374812648976],[4.628481753909721,52.46374807426405],[4.628482019521396,52.463748031025126],[4.628482285287224,52.463747978799425],[4.628482551053052,52.46374792657371],[4.628482816664723,52.46374788333477],[4.628483082430552,52.46374783110911],[4.628483333637148,52.46374776980247],[4.628483599402974,52.46374771757679],[4.62848399805171,52.463747639238235],[4.628484515024128,52.46374752570596],[4.628484913827017,52.46374743838069],[4.628485238908833,52.463747359571336],[4.628485549123113,52.4637472896546],[4.628485859337389,52.463747219737876],[4.62848616970582,52.46374714083439],[4.62848648007425,52.4637470619309],[4.628486790442677,52.4637469830274],[4.628487100811105,52.46374690412392],[4.628487411179531,52.46374682522043],[4.628487706834575,52.46374674622279],[4.628488017357151,52.46374665833254],[4.628488327725575,52.463746579429056],[4.628488623534767,52.46374649144466],[4.628488934057341,52.4637464035544],[4.628489229866533,52.463746315570035],[4.628489525675723,52.463746227585624],[4.628489791903991,52.463746148399686],[4.628490043418878,52.46374606911954],[4.628490383522366,52.46374597243086],[4.62849073864754,52.46374585786286],[4.628491093772713,52.463745743294815],[4.628491434184502,52.46374562863263],[4.628491789463824,52.46374550507786],[4.628492144588993,52.463745390509786],[4.628492485154929,52.46374526686086],[4.628492766559029,52.463745160808784],[4.628493047808974,52.463745063743495],[4.628493388374904,52.46374494009454],[4.62849374380837,52.463744807553],[4.628494069660916,52.463744683809914],[4.628494410380994,52.46374455117419],[4.62849475110107,52.46374441853851],[4.628495091975296,52.46374427691605],[4.628495403114453,52.46374415307878],[4.628495743988674,52.46374401145633],[4.628496025701064,52.463743887430766],[4.628496322126832,52.46374376349938],[4.628496603839217,52.46374363947379],[4.628496885551601,52.46374351544821],[4.628497167263983,52.46374339142266],[4.628497449130514,52.46374325841032],[4.628497730842895,52.463743134384764],[4.628498012709422,52.46374300137241],[4.628498294575949,52.463742868360114],[4.628498576442476,52.463742735347765],[4.62849884359562,52.463742602241325],[4.628499125462141,52.46374246922897],[4.628499392769432,52.46374232713573],[4.628499659922569,52.46374219402926],[4.62849994194324,52.463742052030184],[4.628500209250523,52.46374190993692],[4.628500476557808,52.463741767843686],[4.62850072915171,52.46374162565633],[4.628500996458991,52.463741483563105],[4.628501263920421,52.463741332483075],[4.628501516514318,52.4637411902957],[4.628501783975744,52.463741039215726],[4.628502036723789,52.46374088804158],[4.62850228931768,52.463740745854174],[4.62850254221987,52.463740585693316],[4.62850279496791,52.463740434519146],[4.628503047715946,52.46374028334502],[4.628503300463981,52.463740132170884],[4.628503538652785,52.46373997191582],[4.628503791554967,52.46373981175491],[4.628504029589617,52.46373966048665],[4.628504267778416,52.46373950023158],[4.628504505967213,52.46373933997655],[4.628504744156007,52.46373917972148],[4.628504982498951,52.46373901047968],[4.628505205974363,52.46373885013048],[4.628505444163153,52.4637386898754],[4.628505667792711,52.46373852053946],[4.628505891422268,52.46373835120352],[4.628506129611053,52.46373819094843],[4.628506338527226,52.463738021518346],[4.628506562156776,52.463737852182405],[4.628506785786326,52.463737682846435],[4.628506994856645,52.46373750442958],[4.628507218486191,52.463737335093626],[4.628507427402357,52.46373716566353],[4.62850763647267,52.46373698724663],[4.628507845388831,52.46373681781653],[4.628508054459143,52.46373663939968],[4.628508263529451,52.46373646098283],[4.628508457886378,52.46373628247179],[4.628508652089155,52.46373611294751],[4.628508861159458,52.463735934530675],[4.62850905567053,52.46373574703287],[4.628509250027452,52.4637355685219],[4.628509429670991,52.46373538991669],[4.628509624027909,52.46373521140569],[4.628509803825595,52.463735023813754],[4.62850999818251,52.46373484530274],[4.628510177980194,52.46373465771084],[4.628510357623727,52.46373447910564],[4.62851052270803,52.46373429141958],[4.628510702505709,52.463734103827655],[4.628722629172577,52.4636988437414],[4.628960201420177,52.463661140848465],[4.629180176968362,52.463625850532125],[4.629334902190137,52.463601952620934],[4.62940448842467,52.46358911353347],[4.629537455338955,52.46356662217743],[4.630215596566791,52.4634176770318],[4.630957128978019,52.46321339943414],[4.631317599583046,52.46310738695899],[4.631374671307862,52.46303717910846],[4.631375008174779,52.463037271133366],[4.631375345041699,52.463037363158236],[4.631375682062182,52.46303744619637],[4.631376033795823,52.463037529328275],[4.631376385683027,52.463037603473474],[4.631376722703515,52.46303768651155],[4.631377074590724,52.46303776065671],[4.631377426477933,52.463037834801895],[4.631377778365144,52.46303790894703],[4.631378130252354,52.46303798309219],[4.631378497006284,52.463038048344416],[4.631378849047062,52.46303811350283],[4.631379215800993,52.46303817875501],[4.631379567841773,52.4630382439134],[4.631379934749273,52.46303830017883],[4.63138030165677,52.463038356444294],[4.631380653851115,52.46303841261591],[4.63138102091218,52.46303845989457],[4.631381387819681,52.463038516160005],[4.631381769593903,52.463038563532464],[4.631382136654968,52.46303861081115],[4.6313825038696,52.46303864910308],[4.631382870930667,52.46303869638177],[4.631383252858452,52.46303873476745],[4.631383620226647,52.46303876407262],[4.631383987441279,52.4630388023645],[4.631384369522629,52.46303883176348],[4.631384736890824,52.46303886106865],[4.631385118972176,52.463038890467566],[4.631385486493935,52.46303891078597],[4.631385868728849,52.46303893119815],[4.631386250963762,52.46303895161036],[4.631386618485522,52.46303897192872],[4.631387000873999,52.46303898335417],[4.631387383108915,52.463039003766376],[4.631387750937798,52.46303900611124],[4.631388133326275,52.463039017536616],[4.631388515868315,52.463039019975305],[4.631388883697197,52.46303902232017],[4.631389266239239,52.46303902475883],[4.631389648781276,52.46303902719751],[4.631390016763722,52.46303902055561],[4.631390399459321,52.463039014007535],[4.631390767595326,52.46303899837886],[4.631391150290927,52.46303899183078],[4.631391533140087,52.463038976295934],[4.631391901276093,52.4630389606673],[4.631392269412097,52.46303894503862],[4.631392652414817,52.46303892051701],[4.631393020704382,52.46303889590157],[4.631393388993944,52.46303887128619],[4.631393771996664,52.46303884676456],[4.631394140439787,52.46303881316238],[4.63139450888291,52.4630387795602],[4.631394877326032,52.46303874595805],[4.631395245922713,52.46303870336911],[4.631395614365834,52.463038669766945],[4.631395968249359,52.46303862708421],[4.63139633684604,52.46303858449529],[4.631396705596281,52.46303853291959],[4.631397059479802,52.46303849023685],[4.631397428230037,52.463038438661144],[4.63139778226712,52.46303838699165],[4.631398180597224,52.4630383266168],[4.631398696939689,52.46303824901879],[4.631399213435708,52.46303816243401],[4.631399729931728,52.46303807584924],[4.631400231714589,52.46303798917064],[4.631400748210604,52.463037902585825],[4.631401264860174,52.46303780701424],[4.631401781509747,52.46303771144269],[4.631402283446157,52.46303761577736],[4.631402800249281,52.463037511219035],[4.631403302339246,52.46303740656692],[4.631403819142363,52.46303730200861],[4.631404321385882,52.463037188369746],[4.631404823629401,52.46303707473085],[4.631405325872915,52.46303696109199],[4.631405828269985,52.463036838466365],[4.631406330667051,52.463036715840694],[4.631406833064114,52.463036593215044],[4.631407335461176,52.463036470589415],[4.631407838011791,52.463036338977005],[4.63140832584925,52.4630362072708],[4.631408828553417,52.46303606667164],[4.63140931639087,52.46303593496544],[4.631409804535432,52.463035785285754],[4.631410292526436,52.463035644592786],[4.631410780517435,52.46303550389981],[4.631411268661989,52.46303535422011],[4.631411742246941,52.46303519545985],[4.63141223039149,52.46303504578015],[4.631412703976436,52.46303488701983],[4.631413177561377,52.463034728259544],[4.631413651146317,52.463034569499264],[4.631414124884809,52.46303440175223],[4.631414583910144,52.46303423391142],[4.631415057648629,52.463034066164354],[4.631415516827513,52.463033889336806],[4.631415976006392,52.463033712509166],[4.631416435185268,52.46303353568162],[4.631416894364141,52.46303335885401],[4.631417338983412,52.463033172945856],[4.631417798315831,52.46303298713151],[4.631418242935094,52.46303280122335],[4.631418687554356,52.46303261531517],[4.631419132327165,52.463032420420305],[4.631419562386818,52.46303222543162],[4.631420007159621,52.46303203053667],[4.631420437219268,52.46303183554796],[4.631420867432465,52.463031631572505],[4.631421282932506,52.463031427503246],[4.631421713145695,52.463031223527786],[4.631422128645727,52.46303101945853],[4.63142254429931,52.46303080640252],[4.631422959952889,52.463030593346524],[4.631423360893312,52.46303038019668],[4.631423776546883,52.463030167140666],[4.631424177640853,52.463029945004116],[4.631424578581262,52.46302973185429],[4.631424964962071,52.46302950962391],[4.631425351496429,52.46302927840685],[4.631425752590381,52.46302905627022],[4.631426124258026,52.46302883394611],[4.631426510792372,52.46302860272899],[4.631426882613563,52.46302837141805],[4.631427254434749,52.46302814010712],[4.631427641122636,52.46302789990323],[4.631427894010177,52.463027739736056],[4.631428087584446,52.46302760615401],[4.631428295871868,52.46302747266569],[4.631428489446137,52.46302733908361],[4.631428682866852,52.46302721448832],[4.631428876441117,52.463027080906215],[4.631429084728532,52.4630269474179],[4.631429278302797,52.46302681383588],[4.63142947187706,52.463026680253776],[4.631429665604873,52.46302653768493],[4.631429844465983,52.46302640400906],[4.631430038040241,52.46302627042697],[4.631430231768051,52.463026127858136],[4.631430425342309,52.46302599427609],[4.631430604356966,52.46302585161342],[4.63143079793122,52.463025718031375],[4.631430976945875,52.46302557536873],[4.631431155806977,52.463025441692864],[4.631431349534778,52.46302529912404],[4.63143152854943,52.46302515646141],[4.631431707564082,52.46302501379879],[4.631431886578731,52.46302487113614],[4.631432065593377,52.46302472847352],[4.631432244608025,52.463024585810885],[4.63143242362267,52.463024443148214],[4.631432587924164,52.463024300391815],[4.631432766938806,52.46302415772917],[4.631432946107,52.46302400607982],[4.631433110408492,52.46302386332338],[4.63143328942313,52.46302372066077],[4.631433453878171,52.463023568917585],[4.631433618179658,52.46302342616116],[4.631433782634698,52.46302327441797],[4.631433946936183,52.463023131661565],[4.631434126104368,52.46302298001217],[4.631434275846252,52.46302282817518],[4.631434440301287,52.463022676432026],[4.631434604602767,52.4630225336756],[4.631434769057797,52.46302238193243],[4.63143491879968,52.46302223009545],[4.631435083254708,52.46302207835228],[4.631435232996587,52.4630219265153],[4.631435397451613,52.46302177477213],[4.631435547193492,52.46302162293516],[4.631435697088917,52.463021462111435],[4.631435846830792,52.46302131027445],[4.631435996572664,52.46302115843748],[4.631436146314537,52.4630210066005],[4.63143629620996,52.463020845776775],[4.63143644595183,52.46302069393982],[4.631436595693697,52.46302054210286],[4.631436730875969,52.463020381185345],[4.631436880617836,52.46302022934836],[4.631437015800104,52.46302006843085],[4.63143715082882,52.46301991650007],[4.631437300724236,52.463019755676356],[4.6314374359065,52.46301959475885],[4.631437570935213,52.46301944282806],[4.631437706117477,52.46301928191058],[4.631437841299737,52.463019120993074],[4.631437976482,52.46301896007553],[4.63143809695111,52.4630187990642],[4.63143823213337,52.463018638146714],[4.631553300975792,52.46291875389873],[4.63164586275462,52.462840000079254],[4.631811084884822,52.462700952063344],[4.631961910098124,52.46262855503322],[4.631961459281607,52.462624795288015],[4.631954945747616,52.4625702072285],[4.631958848222065,52.46257002536994],[4.631973648137305,52.462569337713454],[4.631994633189448,52.462568356907376],[4.631995847875577,52.462579087013275],[4.632157408138882,52.46257168551715],[4.632156148200925,52.462561018039025],[4.632157606014993,52.462560955421175],[4.632187791898594,52.462559727592605],[4.632202325132284,52.462559146062155],[4.632231966172394,52.46255794171597],[4.632233423986257,52.46255787909719],[4.632234780939505,52.46256976053652],[4.632396545272148,52.46256246786706],[4.63239505539862,52.462550612546714],[4.632413080207177,52.462549783587306],[4.632416010700219,52.462549649452164],[4.632430633739183,52.46254897858809],[4.632434020641666,52.46254882938263],[4.632434992619424,52.46254878164396],[4.632439195446686,52.46258446274524],[4.632439828872714,52.462584421839004],[4.632440462145398,52.46258438991953],[4.632441095418081,52.462584358000036],[4.632441728690761,52.462584326080545],[4.632442362116787,52.46258428517428],[4.632442995236123,52.46258426224155],[4.632443628508801,52.462584230322086],[4.632444261781479,52.46258419840254],[4.632444895054157,52.46258416648305],[4.632445528326833,52.46258413456355],[4.632446161446164,52.46258411163078],[4.632446794565495,52.46258408869802],[4.632447427838168,52.4625840567785],[4.632448060957497,52.462584033845744],[4.632448694076825,52.46258401091299],[4.632449327196151,52.46258398798023],[4.632449975028487,52.462583965141114],[4.632450608147813,52.46258394220833],[4.632451241267137,52.46258391927554],[4.632451874233122,52.46258390532952],[4.632452507352444,52.46258388239675],[4.632453155031431,52.46258386854437],[4.632453788150755,52.462583845611604],[4.632454421116735,52.46258383166554],[4.632455054082715,52.46258381771948],[4.632455687048695,52.46258380377345],[4.632456334727681,52.46258378992108],[4.632456967693659,52.462583775975],[4.632457600506295,52.462583771015716],[4.632458248185277,52.462583757163294],[4.632458881151257,52.462583743217245],[4.632459513963894,52.46258373825795],[4.632460146776528,52.462583733298594],[4.632460794302169,52.46258372843298],[4.632461427268146,52.46258371448691],[4.632462060080781,52.46258370952758],[4.632462707606422,52.462583704661895],[4.632463340265716,52.462583708689344],[4.632463973078352,52.46258370373002],[4.632464620603992,52.46258369886439],[4.632465253263287,52.46258370289179],[4.632465886075919,52.46258369793244],[4.632466533448222,52.46258370205349],[4.632467166107515,52.46258370608094],[4.632467798766809,52.46258371010831],[4.632468446139112,52.46258371422941],[4.632469078798404,52.4625837182568],[4.632469711457698,52.46258372228418],[4.632470358830002,52.462583726405256],[4.632470991489297,52.462583730432634],[4.632471638708259,52.46258374354046],[4.632472271367556,52.462583747567834],[4.632472903873509,52.462583760582],[4.632473551092475,52.462583773689765],[4.632474183598433,52.46258378670391],[4.63247481610439,52.46258379971804],[4.632475463323352,52.46258381282581],[4.632476095829311,52.46258382583997],[4.632476728335271,52.46258383885405],[4.6324773754009,52.46258386094859],[4.63247800790686,52.46258387396272],[4.632478654972489,52.46258389605723],[4.63247928747845,52.46258390907134],[4.632479919831074,52.46258393107221],[4.632480566896704,52.46258395316672],[4.632481199249329,52.462583975167576],[4.632481831601955,52.46258399716844],[4.632482478667588,52.46258401926295],[4.632483111020215,52.462584041263774],[4.632483743219507,52.4625840722514],[4.632484375572135,52.46258409425222],[4.632485022484433,52.46258412533349],[4.632485654683727,52.46258415632107],[4.632486287036357,52.46258417832189],[4.632486933948659,52.46258420940313],[4.632487566147955,52.46258424039072],[4.632488198347251,52.4625842713783],[4.632488830546551,52.462584302365876],[4.632489477305519,52.462584342433836],[4.63249010950482,52.462584373421414],[4.632490741704122,52.46258440440898],[4.632491373750086,52.46258444438329],[4.632492005796053,52.46258448435763],[4.63249265255503,52.46258452442558],[4.632493284754335,52.462584555413144],[4.632493916800305,52.46258459538746],[4.632494548846277,52.46258463536174],[4.632495180738916,52.462584684322785],[4.63249581278489,52.46258472429709],[4.632496459543874,52.462584764365054],[4.632497091436516,52.4625848133261],[4.632497723482494,52.46258485330037],[4.632498355375141,52.462584902261405],[4.632498987267787,52.46258495122247],[4.632499619160434,52.462585000183495],[4.632500251053083,52.462585049144494],[4.632500882945734,52.46258509810553],[4.632501514838388,52.46258514706655],[4.632502146731042,52.46258519602758],[4.632502778623697,52.4625852449886],[4.632503410363022,52.462585302936375],[4.63250404225568,52.46258535189737],[4.632504673995007,52.46258540984514],[4.632505305734336,52.4625854677929],[4.632505922760657,52.462585525647015],[4.632506554499992,52.46258558359475],[4.632507186239326,52.46258564154252],[4.63250781797866,52.46258569949025],[4.632508449717997,52.46258575743801],[4.632509081457338,52.46258581538578],[4.63250969833034,52.46258588222661],[4.632510330069681,52.46258594017436],[4.632510961655694,52.462586007108825],[4.63251159324171,52.46258607404332],[4.632512210268048,52.46258613189739],[4.632512841854066,52.462586198831886],[4.632513473440087,52.46258626576634],[4.63251409015977,52.462586341593926],[4.632514721745795,52.46258640852838],[4.632515338618814,52.46258647536921],[4.632515970204842,52.46258654230366],[4.632516586924535,52.46258661813125],[4.632517218357236,52.46258669405246],[4.632517835230263,52.462586760893245],[4.632518466662971,52.46258683681448],[4.63251908338267,52.46258691264205],[4.63251971481538,52.46258698856323],[4.632520331535086,52.46258706439081],[4.632521167723283,52.4625872135172],[4.63252201877782,52.46258735375053],[4.632522854966028,52.46258750287693],[4.63252369115424,52.462587652003364],[4.632524527342459,52.46258780112975],[4.63252537824369,52.4625879503498],[4.632526214431921,52.46258809947622],[4.632527050620157,52.46258824860257],[4.632527886808397,52.46258839772898],[4.632528737709653,52.46258854694898],[4.632529573897905,52.46258869607536],[4.632530409932836,52.462588854188475],[4.632531246121102,52.462589003314825],[4.63253208230937,52.46258915244117],[4.632532918344317,52.46258931055425],[4.6325337545326,52.46258945968063],[4.632534590567562,52.462589617793725],[4.632535441468862,52.462589767013675],[4.632536277503836,52.462589925126764],[4.632537113538813,52.462590083239824],[4.632537949573798,52.462590241352906],[4.632538785762116,52.46259039047921],[4.632539621797109,52.462590548592246],[4.632540457832111,52.462590706705335],[4.63254129386712,52.46259086481836],[4.632542129902135,52.46259102293143],[4.632542965937155,52.46259118104443],[4.632543787105849,52.46259134805058],[4.63254462314088,52.46259150616359],[4.632545459175918,52.462591664276594],[4.632546295210963,52.46259182238961],[4.632547131092688,52.46259198948937],[4.632547967127746,52.462592147602386],[4.632548803009485,52.4625923147021],[4.632549624331544,52.462592472721454],[4.632550460213294,52.46259263982121],[4.632551296095053,52.46259280692094],[4.63255213213014,52.4625929650339],[4.632552953298899,52.46259313203996],[4.632553789180676,52.46259329913964],[4.632554625062459,52.46259346623938],[4.632555460944247,52.462593633339104],[4.632556282113034,52.462593800345154],[4.632557117994835,52.46259396744482],[4.632557953876645,52.462594134544496],[4.632558775045449,52.46259430155055],[4.632559610773948,52.462594477636976],[4.632560431942766,52.46259464464304],[4.632561267824598,52.462594811742676],[4.632562088840107,52.462594987735436],[4.632562924721954,52.462595154835086],[4.632563745737475,52.46259533082782],[4.632564581619334,52.4625954979275],[4.632565402634867,52.46259567392019],[4.632566238516741,52.46259584101982],[4.632567059532287,52.46259601701258],[4.632567895260852,52.46259619309896],[4.632568716276413,52.46259636909167],[4.632569552004992,52.46259654517802],[4.632570373020567,52.46259672117075],[4.632571194036145,52.462596897163436],[4.632572029764744,52.462597073249796],[4.632572850780338,52.462597249242464],[4.632573671795937,52.46259742523517],[4.632574492811545,52.46259760122786],[4.632575328386852,52.462597786300925],[4.632576149402473,52.462597962293614],[4.632576970418099,52.46259813828624],[4.632577791280413,52.462598323265674],[4.632578627009067,52.462598499352005],[4.632579447871395,52.4625986843314],[4.632580268733731,52.46259886931079],[4.63258108974939,52.46259904530343],[4.63258191061174,52.4625992302828],[4.632582731474097,52.462599415262204],[4.632583552336459,52.462599600241596],[4.632584373352145,52.462599776234185],[4.632585194214524,52.46259996121355],[4.632586015076907,52.46260014619293],[4.632586835939296,52.462600331172276],[4.632587656648379,52.46260052513838],[4.632588477510786,52.46260071011773],[4.632589298373198,52.46260089509707],[4.632590119235616,52.462601080076375],[4.632590939944727,52.46260127404246],[4.632591760807157,52.462601459021805],[4.632592581669598,52.46260164400112],[4.632593387665716,52.46260183787353],[4.632594208528169,52.46260202285283],[4.632595029237316,52.4626022168189],[4.632595849946467,52.46260241078491],[4.632596656095928,52.4626025956706],[4.632597476805096,52.462602789636634],[4.632598297514272,52.46260298360267],[4.632599103510438,52.46260317747506],[4.632599924219627,52.462603371441084],[4.632600744928824,52.46260356540709],[4.632601550925013,52.46260375927945],[4.632602371634223,52.46260395324547],[4.632603177630427,52.46260414711782],[4.632603998339653,52.46260434108384],[4.632604818895573,52.46260454403657],[4.632605624891799,52.46260473790889],[4.632606430888031,52.46260493178123],[4.632607251443973,52.462605134733955],[4.63260805744022,52.46260532860632],[4.632608877996178,52.462605531559014],[4.632609683992437,52.46260572543135],[4.632610504548411,52.46260592838405],[4.632611310391375,52.462606131243106],[4.632612116387658,52.462606325115374],[4.632612922230638,52.46260652797445],[4.632613742786639,52.46260673092714],[4.632614548629633,52.46260693378617],[4.632615354472636,52.462607136645225],[4.632616160315645,52.462607339504245],[4.632616980871675,52.46260754245691],[4.6326177867147,52.46260774531594],[4.632618592557731,52.46260794817494],[4.632619398400771,52.46260815103394],[4.632620204090508,52.4626083628797],[4.632621009933562,52.46260856573869],[4.632621815776623,52.46260876859767],[4.632622621466384,52.46260898044342],[4.63262342730946,52.4626091833024],[4.632624232999234,52.462609395148114],[4.632625038842327,52.46260959800712],[4.632625844532117,52.4626098098528],[4.632716028537172,52.46267030502294],[4.632717250482864,52.462671130682935],[4.632730532957511,52.462680041163736],[4.632871330184497,52.462774508363104],[4.632876581986019,52.462778038005816],[4.632882897113912,52.462780477909924],[4.632958342600777,52.46280961977864],[4.633060276551877,52.462849005339834],[4.633078651864889,52.4628561056897],[4.633079280544512,52.46285634336962],[4.633079924090458,52.46285657215633],[4.633080567483193,52.462856809929804],[4.633081196162837,52.462857047609695],[4.633081839708803,52.46285727639641],[4.633082483254775,52.46285750518314],[4.63308312664754,52.46285774295658],[4.633083770193525,52.46285797174327],[4.633084413892735,52.46285819154323],[4.633085072151834,52.46285842042351],[4.63308571569784,52.4628586492102],[4.633086374110168,52.46285886910371],[4.633087017809403,52.46285908890362],[4.633087676221743,52.46285930879711],[4.633088334634093,52.46285952869062],[4.633088978333347,52.46285974849056],[4.633089636745708,52.46285996838405],[4.63309029531129,52.46286017929075],[4.633090953723665,52.46286039918428],[4.63309162700236,52.46286061018454],[4.633092285567961,52.462860821091276],[4.633092944133567,52.46286103199796],[4.633093602699184,52.46286124290469],[4.633094275977904,52.46286145390502],[4.633094934696746,52.46286165582493],[4.633095608128692,52.46286185783845],[4.633096281407433,52.462862068838746],[4.633096954839393,52.46286227085225],[4.63309761371147,52.462862463785434],[4.633098287143444,52.462862665798944],[4.633098960575421,52.462862867812426],[4.63309963416062,52.462863060839176],[4.633100322458922,52.46286325395951],[4.633100996044133,52.462863446986255],[4.633101669629348,52.46286364001296],[4.63310234321457,52.46286383303971],[4.633103031512896,52.46286402616],[4.633103705251343,52.46286421019995],[4.633104393549685,52.46286440332024],[4.63310506728814,52.4628645873602],[4.633105755739704,52.462864771493706],[4.633106444191273,52.462864955627246],[4.63310713279606,52.46286513077403],[4.633107821247642,52.462865314907546],[4.633108495139337,52.46286548996069],[4.633109183590929,52.46286567409425],[4.633109886908841,52.46286584933455],[4.633110575666867,52.462866015494534],[4.633111264271685,52.462866190641236],[4.633111952876512,52.46286636578801],[4.633112641634552,52.46286653194799],[4.63311334495249,52.46286670718828],[4.633114033710543,52.46286687334827],[4.633114737181703,52.46286703960179],[4.633115426092973,52.46286719677494],[4.633116129564144,52.46286736302849],[4.633116818475426,52.462867520201655],[4.633117521946606,52.4628676864552],[4.633118225571002,52.46286784372199],[4.633118914482297,52.46286800089515],[4.633119618106703,52.462868158161875],[4.633120321884322,52.46286830644185],[4.633121025508735,52.462868463708624],[4.633121553341956,52.46286857491857],[4.633122389077896,52.46286875100105],[4.633153936917109,52.462873957817955],[4.633155700498126,52.46287408587494],[4.633157552051383,52.46287423246682],[4.6331865626314,52.462876358320756],[4.633187224874375,52.462876353544715],[4.633187887117346,52.462876348768674],[4.63318854936032,52.462876343992626],[4.633189211603292,52.46287633921658],[4.633189873846265,52.46287633444051],[4.633190536089238,52.462876329664475],[4.63319119833221,52.46287632488839],[4.633191846015273,52.462876311032],[4.633192508258245,52.46287630625593],[4.633193170654411,52.462876292493085],[4.633193832897382,52.46287628771704],[4.633194495293548,52.4628762739542],[4.633195157536518,52.462876269178075],[4.633195819932685,52.462876255415246],[4.633196482328848,52.462876241652395],[4.633197144725012,52.462876227889545],[4.633197807121176,52.46287621412667],[4.633198469517338,52.462876200363844],[4.633199131913501,52.46287618660095],[4.633199794309663,52.46287617283806],[4.633200456705825,52.46287615907518],[4.633201119101987,52.462876145312315],[4.633201781651341,52.46287612256267],[4.633202429334393,52.46287610870627],[4.633203091883747,52.46287608595656],[4.633203754279905,52.46287607219369],[4.633204416829256,52.46287604944403],[4.633205079378606,52.46287602669438],[4.633205741774765,52.462876012931474],[4.633206404324113,52.46287599018182],[4.633207066873462,52.46287596743213],[4.63320772942281,52.46287594468247],[4.633208391972157,52.46287592193278],[4.633209054521504,52.4628758991831],[4.633209717070848,52.462875876433394],[4.633210365060277,52.462875844603424],[4.633211027609622,52.46287582185371],[4.633211690158966,52.462875799104],[4.633212352861499,52.462875767367564],[4.633213015410841,52.46287574461787],[4.633213678113372,52.46287571288137],[4.633214340815903,52.46287568114494],[4.633215003365241,52.46287565839521],[4.63321566606777,52.4628756266587],[4.633216314057191,52.46287559482864],[4.633216976759718,52.46287556309216],[4.633217639462245,52.462875531355685],[4.63321830216477,52.46287549961922],[4.633218964867292,52.462875467882704],[4.633219627723004,52.46287542715945],[4.633220275712419,52.46287539532937],[4.63322093841494,52.46287536359284],[4.633221601270649,52.46287532286959],[4.633222263973168,52.46287529113309],[4.633222926828874,52.462875250409816],[4.633223589531389,52.46287521867327],[4.633224237673987,52.462875177856425],[4.633224900529689,52.46287513713314],[4.633225563385391,52.46287509640986],[4.633226226241091,52.46287505568656],[4.633226874230497,52.462875023856434],[4.633227537239383,52.46287497414638],[4.63322820009508,52.46287493342305],[4.633228862950774,52.462874892699766],[4.633229511093361,52.462874851882866],[4.633230173949054,52.46287481115958],[4.633230836957932,52.462874761449484],[4.633231499813622,52.462874720726155],[4.63323214810939,52.46287467092251],[4.63323281096508,52.46287463019915],[4.633233473973951,52.462874580489064],[4.633234122269716,52.46287453068538],[4.633234785278585,52.46287448097529],[4.633235448134268,52.46287444025194],[4.633236096430029,52.46287439044826],[4.633236759438893,52.46287434073815],[4.633237422447758,52.462874291028015],[4.633238070896699,52.46287423223759],[4.633238733905559,52.462874182527436],[4.633239382201313,52.46287413272379],[4.63324004521017,52.462874083013624],[4.63324070837221,52.46287402431674],[4.63324135666796,52.46287397451303],[4.633242019829996,52.46287391581613],[4.633242668125743,52.46287386601237],[4.633243331287776,52.46287380731548],[4.633243979736703,52.46287374852502],[4.633244642898733,52.4628736898281],[4.633245291347654,52.46287363103758],[4.633245954509682,52.462873572340655],[4.633246602958601,52.46287351355017],[4.633247266120624,52.46287345485325],[4.633247914569541,52.462873396062726],[4.63324857773156,52.462873337365814],[4.633249226180474,52.462873278575294],[4.633249874782565,52.462873210798016],[4.63325053794458,52.46287315210108],[4.633251186546671,52.4628730843238],[4.633251849708681,52.46287302562683],[4.633252498310765,52.462872957849555],[4.633253146912849,52.46287289007223],[4.633253810074855,52.46287283137527],[4.633254458676936,52.46287276359799],[4.633255107279013,52.46287269582069],[4.633255770594195,52.462872628136935],[4.633256419196268,52.462872560359614],[4.63325706779834,52.462872492582314],[4.633257716400411,52.462872424805],[4.633258379868764,52.462872348134496],[4.633259028470831,52.46287228035714],[4.633259677072894,52.46287221257982],[4.633260325828135,52.46287213581576],[4.633260974430194,52.4628720680384],[4.633261637898539,52.462871991367884],[4.633262286500594,52.46287192359056],[4.633262935255828,52.46287184682644],[4.633263584011058,52.46287177006233],[4.633264232766287,52.46287169329825],[4.633264881521513,52.4628716165341],[4.633265530276738,52.462871539769964],[4.633266179031962,52.462871463005854],[4.633266827787181,52.46287138624171],[4.633267476542399,52.462871309477606],[4.633268125297615,52.46287123271349],[4.633268774206006,52.462871146962605],[4.633269422961218,52.46287107019843],[4.633270071716426,52.46287099343432],[4.633270720624811,52.462870907683396],[4.633319428885555,52.462862984646684],[4.633350140413993,52.46285596277551],[4.633352120852739,52.462855454079275],[4.633376063763552,52.46285101358224],[4.633792449840917,52.46277386719675],[4.634334596458463,52.46270819543656],[4.634864606361055,52.46264399007878],[4.634960935533884,52.46263231507622],[4.635036046103998,52.46262843256347],[4.635591701619053,52.46259972642319],[4.636068860281858,52.462590581011405],[4.636779035681503,52.46258250433192],[4.638399574358804,52.46257175505701],[4.639243717907187,52.46257107069556],[4.640051591969949,52.4625868150115],[4.641175222841455,52.46258187405006],[4.641430313370472,52.462588952426145],[4.641838824024958,52.46257211684213],[4.641838682625465,52.462570902610096],[4.641837104038114,52.46255804922427],[4.642912161765585,52.46256355371814],[4.64291228756983,52.46257356683444],[4.64301185140453,52.4625767713036],[4.643327190599387,52.46258693804761],[4.643719671805218,52.462582623165126],[4.644011535781666,52.46258349137065],[4.64401978838794,52.46258099957522],[4.644059660529066,52.46256899923318],[4.644062896339572,52.462569082429376],[4.6441075366583,52.4625701801099],[4.644111485707997,52.46257072614912],[4.644136471735989,52.46257419023162],[4.64416517186326,52.46257817191055],[4.644959894997653,52.462583248757966],[4.64496040995408,52.46258325198181],[4.64588984578662,52.46258917486489],[4.647124533793124,52.462582031733234],[4.647175863745451,52.46258082422015],[4.647193808119736,52.46258038797194],[4.647200829850929,52.46258021609321],[4.64720785158207,52.46258004421406],[4.64721487331316,52.46257987233448],[4.647221895194536,52.46257969146773],[4.647228917075861,52.46257951060055],[4.647235938806788,52.46257933871972],[4.647242960688001,52.46257915785173],[4.64724998256916,52.4625789769833],[4.647256989737216,52.46257879602261],[4.647264011768597,52.46257860616656],[4.647271033649588,52.46257842529688],[4.647278055680854,52.46257823544001],[4.647285077561732,52.46257805456948],[4.647292099592883,52.462577864711776],[4.647299121623975,52.46257767485366],[4.647306143655009,52.46257748499511],[4.647313165685986,52.462577295136164],[4.64732017315418,52.46257709619818],[4.647327195185039,52.462576906338384],[4.647334217366158,52.46257670749137],[4.647341239396899,52.462576517630744],[4.647348261577898,52.462576318782915],[4.647355283758834,52.46257611993471],[4.647362306090025,52.46257591209927],[4.647369313557792,52.46257571315835],[4.647376335738547,52.46257551430888],[4.647383358069548,52.46257530647221],[4.647390380400482,52.46257509863509],[4.647397402581049,52.46257489978437],[4.647404410198816,52.46257469185461],[4.647411432529562,52.46257448401628],[4.647418455010546,52.46257426719072],[4.647425477341165,52.46257405935155],[4.647432485108971,52.46257384243334],[4.647439507439461,52.46257363459334],[4.64744652992018,52.4625734177661],[4.647453552400835,52.46257320093849],[4.647460560168376,52.46257298401863],[4.647467582648897,52.46257276719018],[4.64747460527964,52.462572541374485],[4.647481613046981,52.46257232445345],[4.647488635677589,52.462572098636954],[4.647495658157836,52.46257188180682],[4.64750266607526,52.46257165589767],[4.647509688705658,52.46257143007994],[4.647516711335989,52.46257120426178],[4.647523719403484,52.46257096936465],[4.647530742033672,52.46257074354563],[4.647537764814069,52.46257050873946],[4.647544772731072,52.46257028282786],[4.647551795511323,52.46257004802081],[4.647558818291506,52.46256981321338],[4.647565826358569,52.46256957831375],[4.647572849138605,52.462569343505464],[4.647579857355794,52.46256909961824],[4.647586880135682,52.46256886480912],[4.647593903065764,52.46256862101282],[4.64760091128273,52.462568377124306],[4.647607934062397,52.46256814231397],[4.647614942429474,52.46256788943788],[4.647621965359256,52.462567645639886],[4.647628973575919,52.46256740174974],[4.647635996505549,52.46256715795092],[4.647643004872317,52.462566905073174],[4.647650027952051,52.462566652286775],[4.647657036318665,52.46256639940815],[4.647664059247989,52.4625661556077],[4.647671067764697,52.46256589374148],[4.647678090844118,52.462565640953386],[4.647685099210418,52.46256538807315],[4.647692122439929,52.462565126297434],[4.647699130806072,52.462564873416376],[4.64770613932238,52.462564611548075],[4.647713162551648,52.46256434977114],[4.647720171067792,52.46256408790202],[4.647727194296901,52.462563826124224],[4.647734202963123,52.4625635552675],[4.647741211479024,52.46256329339714],[4.647748234858121,52.462563022631336],[4.647755243524093,52.46256275177334],[4.647762252039749,52.46256248990175],[4.647769275568827,52.46256221014789],[4.647776284234546,52.462561939288676],[4.647783292900183,52.462561668429046],[4.647790316278776,52.462561397660735],[4.647797325094471,52.46256111781347],[4.647804333910078,52.462560837965796],[4.647811342575376,52.46256056710451],[4.647818366103851,52.46256028734776],[4.6478253749192,52.46256000749887],[4.647832383884679,52.462559718662725],[4.647839392699853,52.462559438813],[4.64784641622798,52.46255915905457],[4.647853425193195,52.46255887021726],[4.647860434158319,52.46255858137946],[4.647867443123354,52.462558292541296],[4.647874452088299,52.46255800370268],[4.647881475766195,52.46255771495542],[4.647888484730962,52.46255742611597],[4.647895493845843,52.46255712828935],[4.647902502810429,52.46255683944908],[4.647909511925128,52.46255654162163],[4.647916521039733,52.462556243793756],[4.647923530154247,52.462555945965434],[4.647930539268669,52.46255564813676],[4.647937548382997,52.46255535030764],[4.64794457236047,52.46255504358303],[4.647951581474612,52.46255474575312],[4.647958590738855,52.46255443893596],[4.647965600003002,52.4625541321184],[4.647972609267055,52.46255382530041],[4.647979618531012,52.46255351848203],[4.647986627794873,52.462553211663206],[4.64799363705864,52.462552904843974],[4.648000646472496,52.46255258903757],[4.648007655736071,52.46255228221753],[4.648014650436692,52.46255196631852],[4.648021659850254,52.46255165051085],[4.648028669263718,52.462551334702795],[4.648035678677085,52.46255101889427],[4.648042688090353,52.462550703085384],[4.648049697653696,52.462550378289265],[4.648056707066767,52.462550062479565],[4.648063716629911,52.462549737682586],[4.648070726192953,52.462549412885245],[4.648077721042855,52.46254908799575],[4.648084730605696,52.46254876319754],[4.648091740168437,52.46254843839897],[4.648170500721033,52.46254354572282],[4.648845937981772,52.46250156614407],[4.649621124876632,52.462449813514446],[4.650237354588318,52.46238447606661],[4.650630052933658,52.4623439820684],[4.650854068425606,52.46232088204645],[4.650859138513576,52.4623203832599],[4.650864194038062,52.462319875394975],[4.650869264125803,52.46231937660801],[4.65087431965006,52.462318868742635],[4.650879389737575,52.462318369955206],[4.650884445261601,52.462317862089385],[4.650889515498485,52.46231735431474],[4.650894571171877,52.46231683746174],[4.650899626695559,52.462316329595296],[4.650904696932093,52.462315821820006],[4.650909752605138,52.462315304966346],[4.650914808278062,52.46231478811243],[4.650919878663838,52.4623142713497],[4.650924934336531,52.46231375449538],[4.650929990009105,52.46231323764084],[4.650935045681562,52.46231272078611],[4.650940116216454,52.46231219503572],[4.650945171888677,52.462311678180534],[4.650950227710363,52.46231115233835],[4.650955283531933,52.46231062649597],[4.650960339353382,52.46231010065333],[4.650965395174711,52.4623095748105],[4.650970451145502,52.46230903998062],[4.650975506966591,52.46230851413737],[4.650980562937141,52.462307979307084],[4.650985618907568,52.462307444476586],[4.6509906747283,52.46230691863269],[4.650995730848059,52.462306374814986],[4.651000786818123,52.462305839983834],[4.651005842788065,52.462305305152476],[4.651010898907457,52.46230476133413],[4.651015940164191,52.462304226410964],[4.651020996283338,52.46230368259217],[4.651026052402361,52.462303138773166],[4.651031108521261,52.46230259495397],[4.651036149927073,52.46230205104316],[4.651041206195292,52.462301498236734],[4.65104626231382,52.46230095441687],[4.651051303868824,52.4623004015186],[4.651056359987106,52.46229985769828],[4.651061416254826,52.46229930489102],[4.651066457809455,52.46229875199213],[4.651071514226482,52.462298190197586],[4.651076555780862,52.46229763729828],[4.651081612048079,52.46229708449011],[4.651086653751762,52.46229652260356],[4.651091710168281,52.46229596080818],[4.651096751871711,52.46229539892123],[4.651101793575013,52.462294837034065],[4.651106849991151,52.46229427523803],[4.6511118916942,52.462293713350405],[4.65111693354667,52.462293142475765],[4.651121990111974,52.4622925716923],[4.651127031814636,52.462292009804074],[4.651132073666722,52.4622914389288],[4.651137115518677,52.46229086805335],[4.651142157520047,52.46229028819089],[4.651147199371743,52.46228971731498],[4.65115224122331,52.46228914643888],[4.651157297937248,52.4622885666671],[4.651162339938095,52.46228798680376],[4.651167381938811,52.4622874069402],[4.651172423939395,52.46228682707645],[4.651177451226889,52.46228624712113],[4.651182493227212,52.46228566725695],[4.651187535376938,52.46228507840574],[4.651192577376997,52.462284498541116],[4.651197619526459,52.462283909689496],[4.651202661675785,52.462283320837656],[4.651207703824978,52.462282731985596],[4.651212731261081,52.46228214304196],[4.651217773559539,52.46228154520273],[4.651222815708334,52.462280956350014],[4.651227843293563,52.46228035841898],[4.651232885591614,52.46227976057905],[4.651237927889531,52.462279162738916],[4.651242955474356,52.462278564807264],[4.651247997772002,52.462277966966695],[4.651253025356557,52.462277369034574],[4.651258067803453,52.46227676220681],[4.651263095387735,52.46227616427425],[4.651268137834357,52.46227555744603],[4.651273165567888,52.4622749505263],[4.651278193301281,52.46227434360631],[4.65128323574749,52.46227373677748],[4.651288263630125,52.46227312087026],[4.651293291363104,52.462272513949635],[4.651298333958414,52.462271898133395],[4.65130336169112,52.462271291212325],[4.6513083895732,52.46227067530431],[4.651313417455138,52.46227005939604],[4.651318445486447,52.46226943450079],[4.651323473368108,52.46226881859209],[4.651328501249629,52.46226820268322],[4.651333529280517,52.46226757778732],[4.651338557311263,52.462266952891206],[4.651343585341868,52.46226632799486],[4.651348613372333,52.462265703098296],[4.651353641402658,52.46226507820157],[4.651358669432839,52.462264453304606],[4.651363697612377,52.462263819420606],[4.651368725642277,52.46226319452324],[4.651373739108581,52.462262560547536],[4.651378767287692,52.462261926662926],[4.651383795466661,52.46226129277809],[4.651388823645488,52.46226065889304],[4.651393837111219,52.46226002491647],[4.65139886543925,52.46225938204421],[4.651403879054186,52.462258739080454],[4.651408907232437,52.46225810519455],[4.651413920847085,52.46225746223036],[4.651418949174535,52.46225681935723],[4.651423962788893,52.46225617639259],[4.651428991265542,52.46225552453228],[4.651434004879607,52.46225488156722],[4.651439018643011,52.462254229615134],[4.651444046969738,52.462253586740985],[4.651449060732849,52.462252934788474],[4.651454074495814,52.46225228283578],[4.651459103121061,52.46225162198737],[4.651464116883733,52.46225097003425],[4.651469130646255,52.462250318080926],[4.65147414455811,52.46224965714059],[4.651479158469813,52.46224899620001],[4.651484172231895,52.462248344246056],[4.651489186292778,52.462247674318284],[4.651494200204035,52.46224701337707],[4.651499214115145,52.46224635243566],[4.651663698688559,52.46222385213841],[4.651827661576046,52.46219997325679],[4.652164046244232,52.4621567251663],[4.652170416710382,52.462155892852444],[4.652176772612707,52.462155051460236],[4.652183128514794,52.46215421006769],[4.652189484715299,52.462153350701215],[4.652195840766232,52.4621525003212],[4.652202197115579,52.46215163196724],[4.652208553315347,52.46215077259973],[4.652214895100609,52.46214989516711],[4.652221251598535,52.462149017825325],[4.652227593532614,52.462148131405215],[4.652233935466447,52.46214724498479],[4.652240292411578,52.46214634068159],[4.65224663449422,52.46214544527368],[4.652252962162326,52.46214453180063],[4.652259304393767,52.46214362740524],[4.652265646923587,52.462142705035916],[4.652271974740223,52.46214178257506],[4.652278317418828,52.46214085121827],[4.652284645384252,52.462139919769946],[4.652290973498721,52.46213897933447],[4.652297301762234,52.46213802991189],[4.652303630025473,52.462137080488944],[4.652309943724836,52.46213612198769],[4.652316272286146,52.46213515459047],[4.652322585984964,52.46213419608855],[4.652328899982116,52.4621332196127],[4.652335228841199,52.4621322342409],[4.652341528274183,52.4621312486864],[4.652347842419798,52.46213026322272],[4.652354156863727,52.46212925978512],[4.652360456445165,52.46212826524281],[4.652366771037821,52.462127252817766],[4.652373070917279,52.46212624030118],[4.652379370945743,52.46212521879748],[4.652385670973917,52.46212419729343],[4.652391971151091,52.46212316680225],[4.652398256615067,52.462122136219534],[4.652404556940942,52.46212109674092],[4.652410842702903,52.462120048183955],[4.652417128613851,52.4621189906399],[4.652423414375217,52.462117942082266],[4.652429685721946,52.46211687545956],[4.652435971781276,52.46211580892768],[4.652442243276681,52.46211473331748],[4.652448529484687,52.46211365779815],[4.652454801278037,52.46211256421373],[4.652461072921802,52.46211147961577],[4.652467330150907,52.462110376952694],[4.652473601943329,52.46210928336726],[4.652479859321084,52.46210817171676],[4.652486131411432,52.462107060157074],[4.652492388937827,52.46210593951908],[4.65249864646391,52.462104818880775],[4.652504889426041,52.462103689164145],[4.652511147100755,52.46210255953835],[4.652517390360778,52.46210141184752],[4.652523633471217,52.46210027314314],[4.652529876879857,52.46209911646483],[4.652536120288172,52.4620979597862],[4.652542348983262,52.462096803016045],[4.652548592540184,52.462095637349954],[4.652554821533139,52.46209446260557],[4.652561050675016,52.46209327887407],[4.652567265103664,52.46209209505107],[4.652573494244878,52.46209091131892],[4.652579708971365,52.46208970952167],[4.652585938261162,52.462088516802055],[4.652592153136228,52.462087306017374],[4.652598353298058,52.46208609514122],[4.652604568321689,52.46208487536911],[4.652610768632085,52.462083655505445],[4.652616969091382,52.462082426654725],[4.652623184263234,52.462081197894825],[4.652629370158192,52.46207995996551],[4.652635570765701,52.46207872212696],[4.652641756958447,52.46207746622343],[4.652647943150841,52.4620762103195],[4.652654129342886,52.46207495441526],[4.652660315683817,52.46207368952394],[4.652666487460737,52.46207241555431],[4.652672673950192,52.46207114167553],[4.652678845875635,52.462069858718465],[4.65268501780072,52.46206857576111],[4.652691175161786,52.46206728372546],[4.652697347384611,52.46206598279386],[4.652703504894184,52.4620646817708],[4.652709662552622,52.46206337176063],[4.65271580564703,52.462062052672145],[4.652721963304741,52.46206074266132],[4.652728106547641,52.46205941458544],[4.652734249790174,52.46205808650921],[4.652740393181556,52.462056749445935],[4.65274653657257,52.46205541238229],[4.652752665399544,52.46205406624038],[4.65275879437536,52.46205271111138],[4.652764923350801,52.46205135598208],[4.65277105247508,52.462049991865634],[4.652777166886099,52.46204862765774],[4.65278328144595,52.46204725446273],[4.652789396154633,52.462045872280655],[4.652795510713728,52.46204449908498],[4.652801610857973,52.46204310782432],[4.652807711001835,52.46204171656336],[4.652813811294518,52.462040316315246],[4.652819911736017,52.46203890708],[4.652825997464251,52.462037497753364],[4.652832097904977,52.46203608851752],[4.652838169217953,52.46203466112553],[4.65284425509422,52.46203324281112],[4.652850341268489,52.46203180652286],[4.652856412580295,52.46203037912989],[4.652862484190092,52.46202893376302],[4.652868555799496,52.462027488395925],[4.652874612844818,52.46202603395054],[4.652880669889742,52.46202457950479],[4.652886727083459,52.46202311607202],[4.652892784276776,52.462021652638896],[4.652898826906005,52.462020180127546],[4.652904869684016,52.462018698629095],[4.652910912461624,52.46201721713034],[4.652916955388009,52.46201572664447],[4.652922983601118,52.462014236067205],[4.652929011963001,52.462012736502814],[4.652935040473654,52.462011227951336],[4.652941054121847,52.4620097282952],[4.652947068067987,52.462008210665175],[4.652953082013717,52.462006693034844],[4.652959096108207,52.46200516641739],[4.653566314507169,52.461875637520066],[4.654370874692598,52.46170186560832],[4.655181968480151,52.46150100366719],[4.655806944308335,52.46136813966653],[4.65685530716202,52.461115450624305],[4.657730762648217,52.46093538786879],[4.658199892704945,52.460759319024966],[4.659148408129163,52.460477136236904],[4.659360871680709,52.460413926951674],[4.659517935667904,52.460377637007674],[4.659894483627449,52.46029850092363],[4.660568233032994,52.460144169835885],[4.661026606239572,52.4600386673676],[4.66115863090012,52.460008279605816],[4.661673385897182,52.45988472206468],[4.661779607933497,52.459857555087595],[4.661784424883174,52.459856317293706],[4.661785503440706,52.459856045274],[4.662399177758978,52.45969906232889],[4.662515643616974,52.45966536033885],[4.662703494929455,52.45961217772071],[4.662863054132496,52.45956782764289],[4.662978783836572,52.45953411171448],[4.663153806738499,52.45947985238377],[4.663560522306632,52.45935186994514],[4.66370319252875,52.45930638206586],[4.663845285078636,52.45925661233927],[4.664213731742816,52.45911843578193],[4.664403321538076,52.459048633813744],[4.664792321879703,52.45890218625096],[4.665028679612917,52.458811888663675],[4.66526852622464,52.458716911278785],[4.665466221068846,52.4586370997227],[4.66564404186947,52.458557930836015],[4.665749245696314,52.45851436053108],[4.665785730590263,52.45849925850053],[4.665846650164012,52.45847266604806],[4.665930348436147,52.458433269842935],[4.66602500135771,52.45839427276338],[4.666101176877871,52.45835602604203],[4.666183182317231,52.45832748550829],[4.666197698256513,52.45832243281826],[4.66627816817907,52.45828879583471],[4.666307446694496,52.4582743868147],[4.66638089465431,52.45824368199596],[4.666476561236514,52.45819840830906],[4.666579590462096,52.458152747888974],[4.666685702697613,52.45811019789044],[4.666793296040552,52.45806251582554],[4.667136513018717,52.45789313335071],[4.667254745828746,52.457837129953816],[4.667388481788703,52.45776961743253],[4.667522885188269,52.45770446359379],[4.667625303293171,52.457651913970906],[4.667781353239127,52.45757833492318],[4.667952974607179,52.45749354359933],[4.668115961049079,52.45741495510139],[4.668283220864228,52.45732415102904],[4.668364573171758,52.457289421486145],[4.668405904295646,52.45726841614715],[4.668439210919095,52.457249591095604],[4.668482325217771,52.45722930657063],[4.668525401654213,52.457207727569745],[4.668561245599345,52.457186670937254],[4.668597570119046,52.457171351368316],[4.6686872072551,52.45710659893357],[4.668744466977933,52.45702791699185],[4.668840521029852,52.456895948266464],[4.668861037837029,52.456726051998274],[4.668784571929718,52.456372982616],[4.668776000670869,52.45633002332165],[4.66869386327565,52.455918598186166],[4.668618026864334,52.45553871309215],[4.668617427758995,52.455535743514105],[4.668704825402844,52.45549634980737],[4.66882613613018,52.45544598082738],[4.668950071846685,52.45539883624287],[4.669077660176447,52.45535324156763],[4.669207815700528,52.45531080800497],[4.669336942910856,52.45527189125807],[4.670499892200736,52.45508749841195],[4.670526326564112,52.455084063136546],[4.670531316672727,52.455084803333506],[4.670571229976245,52.45515295580111],[4.670622714364109,52.455228835731134],[4.670665650936726,52.45529928033024],[4.670710522796461,52.455361063463535],[4.670742225141915,52.45539754745886],[4.670769744352285,52.455427067648976],[4.670817998428534,52.45546443358151],[4.670871995614134,52.45549329586748],[4.670945114046941,52.45552789996787],[4.671002942858022,52.45554728532886],[4.671079939823606,52.45556497093448],[4.671148164739529,52.45557742658191],[4.671207166942608,52.4555852247782],[4.671272891108332,52.4555867541644],[4.671347744180081,52.45558510306212],[4.671411732323957,52.45558117533348],[4.671471093070267,52.455565904100524],[4.671500235571221,52.45555695751325],[4.671564286665227,52.4555373105703],[4.671630440057618,52.455514117147786],[4.671654824086422,52.455505564222506],[4.671740485967106,52.45546871032266],[4.671819660032897,52.45542546289658],[4.671893675200309,52.45538735222537],[4.6719536055218,52.45535229324188],[4.67202699929946,52.4553152932153],[4.672087655998594,52.45527533125437],[4.672103418688589,52.45526494666329],[4.672203639629069,52.455212020341484],[4.672419062812117,52.45509583202665],[4.673560482101114,52.4544802196395],[4.673697344218975,52.45440646340452],[4.674236254400707,52.45411605915222],[4.674252742359536,52.45410717059916],[4.674377581297009,52.454039893317],[4.674377996804454,52.45403967112261],[4.675260406666108,52.453564122116504],[4.675649688172029,52.45335193160821],[4.676203120842739,52.45305519738332],[4.676698132590158,52.45277922259142],[4.677761427116728,52.45220623370902],[4.678335399918903,52.45189371323031],[4.678958856843607,52.45155423489187],[4.679637655463246,52.45119392655127],[4.679638783001766,52.451193331104534],[4.680227487055916,52.45087601809275],[4.680722401143442,52.45061410075152],[4.681117248601871,52.450396443034194],[4.68119188403679,52.45035530141848],[4.681286992857754,52.450296854497815],[4.681307731989195,52.4502841075908],[4.681348091642778,52.4502604945253],[4.681422934776905,52.45022290414935],[4.68160586736788,52.45013104222712],[4.681884156597486,52.44997796588444],[4.682065283796361,52.44987834510284],[4.682230908511353,52.44979792847688],[4.682384189166978,52.44971391503971],[4.682459830093551,52.44967137652398],[4.68247565284683,52.449662482877486],[4.682617656910932,52.44958264430017],[4.682717696017602,52.44952567256418],[4.682826872140098,52.44946948304357],[4.68286917583271,52.44943915820249],[4.68290538691665,52.449430250825905],[4.682999194080453,52.44937938043613],[4.683135801821963,52.449310375331464],[4.683209384760078,52.44926395939778],[4.683282177323988,52.449222832490044],[4.683379438237851,52.449166553729576],[4.683499944397705,52.44910264750179],[4.683618750428607,52.44903925234844],[4.683778804359842,52.448953560664954],[4.683932369182299,52.448869807564655],[4.684097942158561,52.4487736775064],[4.684277801507713,52.44867360544041],[4.684338112629676,52.448639306437265],[4.684375336154638,52.448621237146305],[4.684455323509111,52.44857060722544],[4.684538085259634,52.4485166233033],[4.684597752757615,52.44846817368711],[4.684674705595508,52.448414074348754],[4.684761752061939,52.44835052577134],[4.684812298681686,52.44830673156037],[4.684887117175344,52.44824063881059],[4.684924376802351,52.44820635572042],[4.684969229116482,52.448176548544254],[4.685028761412791,52.448126363281084],[4.685041854292178,52.448115161254506],[4.68510181061665,52.4480623450653],[4.685164437151658,52.44800439469852],[4.685240369568626,52.4479273612835],[4.685327205679235,52.44784079350164],[4.685427650848271,52.4477456870072],[4.685463134257699,52.4477166869971],[4.685535921087511,52.44763480836548],[4.685567736047893,52.44759874023794],[4.685598286808968,52.447571895005005],[4.685671598339833,52.44748565136443],[4.68570740418502,52.447443710875824],[4.685762664029502,52.44737898479448],[4.685862529900834,52.447273898135236],[4.685899355168135,52.44723350950741],[4.685916584170129,52.447217460512164],[4.685934852445597,52.447201732233104],[4.68594610678477,52.44719141800109],[4.686023079166203,52.44709592047428],[4.68610480142329,52.44700883653268],[4.686189891595297,52.44691247915178],[4.686290703534879,52.446801393929],[4.686400047694393,52.44670415521352],[4.686490806698787,52.44663057904729],[4.686610339589525,52.446556813376084],[4.686803949474463,52.4464550391941],[4.686949189197941,52.446374073125924],[4.68703909022183,52.44632487515366],[4.687076553065016,52.4463054313106],[4.687093513702912,52.4462979278798],[4.687315026883224,52.44617553806848],[4.687450943790687,52.44610172449032],[4.687622929314963,52.446000765025396],[4.687682499637318,52.445960824654435],[4.687881367376945,52.44585457690252],[4.688065801161343,52.445754139626466],[4.688207993990635,52.445679535331244],[4.688362374501771,52.44559689580111],[4.688415227504937,52.445567763635765],[4.688436065736441,52.44555778428779],[4.688453775328723,52.445548460571544],[4.688513177585309,52.445516284183306],[4.688535054280532,52.445502014809634],[4.688560378846136,52.44548550084917],[4.688586815150541,52.445464715281574],[4.688598546160795,52.44545395422178],[4.688617041034537,52.4454433318903],[4.688669573684272,52.44541956339224],[4.68873288908909,52.445392919427526],[4.688785493778059,52.445368306457226],[4.688824098128373,52.445351924614926],[4.688889172435333,52.44531540443941],[4.688950815698317,52.445279124660175],[4.689039944511978,52.445230109369916],[4.689063853455189,52.44521659785002],[4.689079599750957,52.44520770287511],[4.689118260483526,52.44518586572392],[4.68922966968651,52.4451258457263],[4.689310852678984,52.445080720064325],[4.689425988513212,52.44502126108811],[4.689481526918384,52.444991506130044],[4.689578051276148,52.44493980170373],[4.689632632658156,52.44490449561955],[4.689769275623867,52.444829847809636],[4.689863284702233,52.44478184028006],[4.690056069155099,52.444672668047595],[4.690229996760519,52.44457747736651],[4.690373013253402,52.444503333702386],[4.690578170694033,52.4443966061225],[4.690749224665686,52.4443147086063],[4.690906677575287,52.44425587432324],[4.691021192475105,52.444207563916656],[4.691118802049504,52.44417173692791],[4.691323622920799,52.44410584628444],[4.691408750189152,52.4440818275386],[4.691464918081214,52.44407174946849],[4.69158544430544,52.44404330071341],[4.691724713010346,52.444014584327576],[4.691870449056484,52.44397957836453],[4.692205506959317,52.443880162006934],[4.692376353798203,52.44382425342285],[4.692503796882604,52.4437757926836],[4.692677644764157,52.44370480188835],[4.692792395697344,52.44366841786449],[4.692842868349174,52.44365192449661],[4.692905478253533,52.44361836262426],[4.693050733907235,52.44356320193576],[4.693129320826274,52.44352749557171],[4.69323048349121,52.443485297389515],[4.693325008210196,52.443442440109195],[4.693466597501507,52.4433752678325],[4.693560032740006,52.443327757338125],[4.693661435791117,52.44326828580047],[4.693758844113185,52.44320842230862],[4.694129454867675,52.4430066946103],[4.694303571162344,52.44291068120025],[4.694364555761386,52.442876515869465],[4.694393845389303,52.44285921495108],[4.694447663571377,52.442832791053156],[4.694521290610036,52.442789621937024],[4.694559876025425,52.44277322913671],[4.694626423636833,52.44273506069494],[4.694788988516422,52.4426486768254],[4.694893328834826,52.442593975900884],[4.694999961590981,52.44253374285022],[4.695045485634513,52.44251848691663],[4.695071946846633,52.44250238265623],[4.695090205612769,52.44248598782462],[4.69515710178074,52.442445223670575],[4.695419178861141,52.44230699456473],[4.695592143233576,52.442213749751716],[4.695890624675626,52.44205821496254],[4.695943710929054,52.442029566152414],[4.695958543587103,52.44202156371115],[4.696178006912763,52.44190316296521],[4.696545125623047,52.44170042772442],[4.696650984341184,52.441657472069096],[4.696791734248337,52.441583073808395],[4.696842844082592,52.44155565338973],[4.696934236399318,52.44150662739833],[4.697040403610783,52.44145326541395],[4.69709382814468,52.441429237748665],[4.697150164995841,52.44140519106438],[4.697181133496875,52.44139704873335],[4.697248002585614,52.44139081406569],[4.697318436280214,52.44138517532291],[4.697469424234503,52.4413756642747],[4.697566415580417,52.44136556024356],[4.697597574096257,52.44137070275906],[4.697631124208141,52.4413667725964],[4.697683385097789,52.44135887984058],[4.697743892145102,52.441346568134165],[4.697781169683409,52.44133655695036],[4.697811961818823,52.44132745174314],[4.698040998980176,52.44121138613041],[4.698047863582573,52.441207848932734],[4.698050513180283,52.441206758849376],[4.697943542829029,52.44113236561833],[4.697548401794559,52.44085755038191],[4.697873414700731,52.4406603990596],[4.69974793329151,52.43967968038338],[4.700880903946079,52.43905203705398],[4.701480426141392,52.43871379411261],[4.702079924469426,52.43837554801271],[4.702478462051549,52.43817542074788],[4.702887489702726,52.437970014012016],[4.703858005629097,52.43743450802482],[4.704828483371485,52.43689899390247],[4.706975780483403,52.43575493277947],[4.707549538321903,52.4354557607631],[4.708814820187108,52.434932249300026],[4.709218487721544,52.43477047944325],[4.71040207708908,52.43440058721726],[4.713003033568729,52.43375442850074],[4.715443912460152,52.43329332446654],[4.715712904654626,52.43367155122189],[4.715782215863796,52.43376901129524],[4.715807071097814,52.43376390328299],[4.715934872554971,52.433725036349],[4.716034914876301,52.433696581627096],[4.716206684265104,52.433651842764796],[4.716465467414171,52.43359315290128],[4.716539396635445,52.433572243444985],[4.716732752991074,52.43352547792028],[4.716918385322197,52.43347506431933],[4.717305459251897,52.43338376271915],[4.717534594295136,52.43332606234862],[4.717750853763038,52.43327669232043],[4.717902812955793,52.43324359503528],[4.717996479926289,52.43322720012625],[4.718064647658527,52.43320796485371],[4.718102805379689,52.43319830279596],[4.718141902103937,52.43318975151663],[4.718153584554592,52.43318637517524],[4.718178706902573,52.43317912011052],[4.718233823070354,52.433165302555366],[4.718383398668398,52.43313030377995],[4.718721579399322,52.43306101116533],[4.718847638786247,52.433029114732015],[4.719023556228752,52.432994641193325],[4.719177034057032,52.43295432471674],[4.719194356051537,52.43294848147724],[4.719214449887142,52.43294020021219],[4.719237304966708,52.43293213223718],[4.719289498202238,52.43291610471455],[4.719322404603184,52.43290750018267],[4.71934871303891,52.43289957747646],[4.719420732400907,52.43287253483028],[4.71945774488489,52.43285102007232],[4.719482555039692,52.43283323835546],[4.719496616684586,52.432820294380186],[4.71952645679889,52.43278586877741],[4.719542902879263,52.43276009478153],[4.719545631562864,52.432736139910666],[4.719548037512419,52.432715059291176],[4.719540762069539,52.43268071218216],[4.719536128514784,52.43267106921865],[4.719530643546375,52.43264962957174],[4.719522461836567,52.4326373511912],[4.719499686519799,52.432611868518045],[4.719475111391333,52.43258970115503],[4.719464013441694,52.43257968921916],[4.719443766933174,52.432557159767335],[4.71943217349748,52.43254587776807],[4.719431637339176,52.432545353459275],[4.719423045516089,52.43253979557392],[4.719421168484652,52.43253068043813],[4.719419918367404,52.432515097677545],[4.719409014835615,52.432506821461445],[4.719396218106374,52.43250025123021],[4.719378282174086,52.43249124332804],[4.719368701112179,52.432486929156845],[4.719357378230971,52.43248208388127],[4.719335186439794,52.432473492386826],[4.719327558018681,52.43247717929863],[4.719319666626623,52.43248172754888],[4.71930915055372,52.432483834322184],[4.719305999453821,52.43248412214533],[4.719296242748163,52.43248365372193],[4.719280924002446,52.43247661089031],[4.719274666694917,52.432472261518214],[4.719269089141066,52.43246574094904],[4.719254980228101,52.432455505305015],[4.719247448687423,52.432451795865084],[4.719229608313224,52.43244620381194],[4.719220622997183,52.43244138967436],[4.719213020615628,52.43243457906998],[4.719207483312056,52.43242929004217],[4.719201739080163,52.432424071749445],[4.719189461899299,52.43241718086618],[4.719179693992277,52.43241355768066],[4.719168234598922,52.4324109405715],[4.719159011585059,52.43240823720319],[4.719149061548683,52.43240499047262],[4.719138430071101,52.43240305210667],[4.719130494005197,52.43240276469976],[4.719118342168376,52.43240413422941],[4.719104767160789,52.43240626867837],[4.719092398571498,52.432407385327274],[4.719083922363319,52.43240586355455],[4.719075007173521,52.43240322482912],[4.719067672494553,52.4323991390034],[4.719058560604942,52.43239686766424],[4.719049508725268,52.432396466108294],[4.719044369091971,52.432397956055006],[4.719033923683659,52.432390509256926],[4.719020612267181,52.432381024061655],[4.718965694104523,52.432341860492116],[4.718953287306501,52.43234356111277],[4.718930180401973,52.43235761343395],[4.718907856554608,52.43235388347014],[4.718900786451824,52.4323478577786],[4.718881015027756,52.432342587328215],[4.718872950347802,52.432347898527794],[4.718859965400413,52.432340167760586],[4.718859338726024,52.43233979572989],[4.718845570040235,52.432340149488425],[4.71874729743157,52.432313072448764],[4.718668543947091,52.43228363381902],[4.718576207935076,52.43222081001388],[4.718443177066826,52.432147816073375],[4.718331370437346,52.43206570239941],[4.718228857473019,52.43201082893492],[4.718171814287327,52.43198002954949],[4.718157724940088,52.43197241829696],[4.718137822353288,52.4319622217097],[4.718020420965745,52.431902051125356],[4.717968972164687,52.43187568721401],[4.717955241766886,52.43186865317818],[4.71793676930093,52.43185918365067],[4.717909932967732,52.43183979836578],[4.717825206434517,52.431792179223464],[4.717737477249445,52.43175352179045],[4.717404572168184,52.43165251508702],[4.717396137708064,52.43164533116375],[4.717390357004233,52.43164546026943],[4.717383254745583,52.43164255304292],[4.717378984697948,52.431639050659214],[4.717376718718534,52.43163429233417],[4.717380198015063,52.43162785881576],[4.717385550060121,52.43162301772145],[4.717394789000334,52.431618818748944],[4.717402943145593,52.43161245659118],[4.717407149289753,52.43160657543117],[4.717414151883824,52.43160246268224],[4.717423325091755,52.43159969238382],[4.717433730836532,52.43159417880779],[4.717442697574985,52.431587560596036],[4.717448302235813,52.43158059982422],[4.717451049906347,52.431573928488014],[4.71743764455633,52.43155611096177],[4.717346201665279,52.43151805239764],[4.717288954041748,52.431488213109674],[4.717246573228177,52.43146317639646],[4.717233181391297,52.43145710587571],[4.717220566393927,52.43145314287237],[4.717210378915625,52.43145200674927],[4.717199015237861,52.431452805323325],[4.717189408788427,52.43145116917093],[4.717178611226628,52.431446623249],[4.717171918460144,52.431439979432184],[4.717160536997378,52.43142543585981],[4.717152759460594,52.4314166288551],[4.717144420783856,52.43140895113002],[4.71713870261955,52.431401063528455],[4.717136194604296,52.43139481186795],[4.717133763313513,52.43138446223973],[4.717133749453179,52.431376633854995],[4.717132756105661,52.43137037278336],[4.717126260207094,52.43136335259265],[4.71711701737991,52.43136003778624],[4.71710784006966,52.43135919497328],[4.717096991013582,52.43135999644745],[4.717079286238455,52.43136297912053],[4.717048581468956,52.43136995072646],[4.717021874652724,52.431377996497694],[4.717010949910682,52.43137991201359],[4.71700605834958,52.431379587754975],[4.717000364493072,52.43137592451375],[4.716995741203536,52.431370505733156],[4.71698854368171,52.43136418260909],[4.716974520902022,52.43135705692682],[4.716967029776828,52.43135458787394],[4.716948609658107,52.43135043022984],[4.716942667921538,52.43134857211606],[4.716924571886631,52.43133757664417],[4.716916065999549,52.43133511982388],[4.716907923348052,52.43133489401277],[4.71689363655973,52.431336466943144],[4.716886174889577,52.43133885142206],[4.716875971679071,52.43134069910501],[4.716868035955048,52.43134040255991],[4.716852487947212,52.43133689927544],[4.7168422858024,52.431335763037495],[4.71683388093513,52.43133343261093],[4.716830226710965,52.43133005053097],[4.716823230317165,52.43132695512697],[4.716815163352338,52.43132561526001],[4.716806101254429,52.43132881755069],[4.716800480888592,52.431338753140196],[4.716791286609821,52.43134388704242],[4.716782911835805,52.43134248251785],[4.716769531632102,52.43132982400906],[4.716756170379257,52.43132076968279],[4.716745939196505,52.431310870242356],[4.716708839350864,52.431285719408066],[4.716694422935486,52.43127934643381],[4.716685442759771,52.43127422654722],[4.716675969473544,52.43126283043906],[4.716649298098882,52.43124329300463],[4.716636452022509,52.43122838158408],[4.716623345660058,52.43121318108204],[4.716602621750446,52.431192212292345],[4.71656890264708,52.431174917838774],[4.716561391562542,52.43117182849407],[4.716538942588151,52.43116864562282],[4.716528170484217,52.431165340090665],[4.716504657198049,52.43115670462902],[4.716493385069024,52.43115340525145],[4.716480179798596,52.431150562293034],[4.71646561084582,52.43114941029446],[4.716432707677249,52.4311432921602],[4.71641680650229,52.43113787243386],[4.716326988012796,52.43108879433058],[4.716286687468248,52.43106529695806],[4.716219831195915,52.43102629818108],[4.716187480253216,52.43101091676134],[4.716150761911643,52.43099943823696],[4.716121469416982,52.430987938839344],[4.716099384203346,52.43098307723971],[4.716085018057815,52.43097825036338],[4.716074493819824,52.4309731486484],[4.716048164498885,52.43096211539999],[4.716040209292703,52.43095728887572],[4.716016030525098,52.43094697783019],[4.715987222301561,52.43093845607851],[4.715961381398329,52.430934004591194],[4.715946423584074,52.43093329072425],[4.715897561584097,52.430934308172134],[4.715884108624473,52.43093326128851],[4.715868737556905,52.43092877022644],[4.715855876171529,52.430923619300835],[4.715813014336594,52.43091002970248],[4.715785449338114,52.43089516062369],[4.71575520755288,52.43088615434351],[4.715730155145852,52.430877222398564],[4.715719560509767,52.4308690105001],[4.71570451979481,52.43085437414724],[4.715697338387704,52.4308450671097],[4.71568014225706,52.43083003206774],[4.715670399759188,52.43082671431574],[4.715656799910109,52.430827598934584],[4.715647600970989,52.43083303830495],[4.715638255101124,52.43084040920277],[4.715630449795002,52.43084509251291],[4.715622296160249,52.43084753590504],[4.715602547274845,52.43085054272396],[4.715593106794592,52.430850579098596],[4.71558148108907,52.4308492729045],[4.71557012924837,52.430843483386724],[4.715570484614831,52.43083459654093],[4.715568314721049,52.43082933541154],[4.715562480046865,52.43082430516771],[4.715555136022916,52.4308199044975],[4.715544295137922,52.43080660413512],[4.715541000569385,52.43079793927068],[4.71554710545489,52.43079097243435],[4.715573897965521,52.430782118585334],[4.715592758372441,52.43078049084558],[4.715598438310359,52.4307763347561],[4.715596980530298,52.430771625914204],[4.715587884871966,52.43076637946037],[4.715577218718529,52.43076288569904],[4.715568339923187,52.430757883141304],[4.71556008443776,52.43074280887589],[4.715554194551633,52.43073560328915],[4.715547179989544,52.43072499396759],[4.715543854343005,52.430718378128255],[4.715532331963316,52.43070638610965],[4.715524144279462,52.430704290500806],[4.71551300327747,52.43070205232368],[4.715490443042744,52.43070234687124],[4.71547381896432,52.43070388840611],[4.715460477024898,52.43070328250185],[4.715431981640279,52.43069451073067],[4.715423320758514,52.43068677712872],[4.715384146888494,52.43066369926618],[4.71536942770294,52.43065695591509],[4.715326444622678,52.43064653811798],[4.715287036421048,52.430633093735885],[4.715258985412699,52.43062605008555],[4.715212301886941,52.43061821770465],[4.715134513749773,52.43059915400353],[4.715114639319741,52.43059687524627],[4.715107056815013,52.43059850395914],[4.715100967773399,52.43060248693821],[4.715101108233549,52.43060776352979],[4.71510301488418,52.43061389498464],[4.715099778007289,52.430617903127526],[4.715090685874724,52.430620179381336],[4.715078606163934,52.43061682136113],[4.71506807697538,52.43061109038669],[4.715056361454655,52.43060698844856],[4.715012963724732,52.43059967793836],[4.714999323814681,52.43059933093587],[4.714982400151211,52.43060801594436],[4.714973373953863,52.43060885452708],[4.714963843636919,52.43060609515904],[4.714949469960433,52.430590159271894],[4.714941778120887,52.43058446235742],[4.714928800585699,52.43057825910714],[4.714906514753411,52.43057016955169],[4.714859832039762,52.430558418387456],[4.71484169102744,52.43054947153862],[4.714822737980329,52.430536871062735],[4.714811416791046,52.43052810670779],[4.714808479528601,52.4305249713007],[4.71479143324131,52.43051849329247],[4.714777512568811,52.43052017589736],[4.71475307212945,52.43048259434505],[4.714735858888653,52.43045419431704],[4.714737778681548,52.430453647972215],[4.715027274231832,52.43037183038158],[4.715085994850458,52.43032962453542],[4.714967987100581,52.43026733531713],[4.714947464964217,52.43025349464058],[4.714940578167946,52.43025482170668],[4.714914350450582,52.43025844776007],[4.71426445618787,52.43036413065705],[4.714238482888203,52.43036842309775],[4.713775546376886,52.430442072073305],[4.713745604377764,52.43044433758981],[4.713728925111618,52.4304408094881],[4.712719109044413,52.42991011997323],[4.712711815639743,52.42990628563919],[4.712613799280819,52.42997686558284],[4.712613516786432,52.42997707069245],[4.712597448388384,52.42998847452513],[4.712553380037271,52.429965412790274],[4.712551717112528,52.42996454050102],[4.712665430227013,52.42988282428487],[4.712668091245958,52.42988091605788],[4.712662531547618,52.4298781341659],[4.71265593578768,52.42987483407555],[4.712636229008267,52.42986447588628],[4.711643873632343,52.429342702382726],[4.711632761006497,52.42932996633006],[4.71166529426293,52.42921082169278],[4.711666641336312,52.42920155403355],[4.711713121157453,52.42903658854128],[4.711717237904318,52.42902118007321],[4.711768355310676,52.428839406968585],[4.711826919036455,52.42863115347924],[4.711831226830379,52.42861574609503],[4.71184213878911,52.42858861140844],[4.711848710632355,52.42857225523958],[4.711758872422577,52.4284981516465],[4.711748245263315,52.42849312085545],[4.711744537581342,52.42849135610128],[4.711731140028426,52.42848673194049],[4.711729706647382,52.4284862384324],[4.711729494925927,52.42848662369803],[4.711722603867456,52.42849884368414],[4.711715688578558,52.428493375674485],[4.711723647416445,52.428486338709206],[4.711719065744425,52.428485000383404],[4.711710502710435,52.428482488932424],[4.711702563568066,52.428478596926475],[4.71169755129288,52.42847753476487],[4.711681982511303,52.42848030411296],[4.711676515363721,52.428481108805755],[4.711669220932681,52.428482181701185],[4.711654591878231,52.42848214324251],[4.711590728191497,52.428473986783224],[4.711577836615843,52.42847089340432],[4.711567429326204,52.428465908789185],[4.711559162478319,52.42846133183745],[4.711550239475939,52.428454468259794],[4.711542241511293,52.42844479679558],[4.711539108717711,52.42843811902303],[4.711533941857075,52.42843177118628],[4.711526235553276,52.42842514822526],[4.711512092857761,52.42842310825774],[4.711500517640081,52.42842143345033],[4.711489240355213,52.428421432058954],[4.711476463645104,52.42842237481592],[4.711453474708833,52.428425784888944],[4.711435450098693,52.42842087366405],[4.711422853613564,52.428410007562135],[4.711414517927952,52.42839934551251],[4.711409718687191,52.42839492314148],[4.711392613763044,52.42838659282867],[4.711385048496513,52.42838132781032],[4.711379608389923,52.428375544635465],[4.711372981874766,52.4283713904613],[4.711364683789928,52.42836886252067],[4.711354911318715,52.42836852816505],[4.711341234750449,52.428373519242655],[4.711336342562851,52.42837711339626],[4.711335921316021,52.42838351924723],[4.711340396631255,52.42839086078693],[4.711353864487259,52.42840725033551],[4.711361762709256,52.42841382047605],[4.711387375946655,52.42841379578736],[4.711402200430711,52.42841644183609],[4.711408171381255,52.42841923512222],[4.711412142905597,52.42842297869292],[4.711400733791473,52.42842583464034],[4.711390254520856,52.42842556815864],[4.711382561084422,52.428426773576824],[4.711372979250299,52.428429361323126],[4.711353658708096,52.42843614472282],[4.711345257618768,52.4284413276682],[4.711342135392798,52.42844937185693],[4.711332480532064,52.42846059639465],[4.711332508069814,52.42846842486694],[4.711333803511467,52.42847506520235],[4.711331833055143,52.428480860039045],[4.711333482391614,52.42848550711624],[4.711331976859986,52.42848974073915],[4.711327367400096,52.428492150124185],[4.711315958262693,52.42849500606334],[4.711306911051187,52.428498208019526],[4.711296107706193,52.428500869681955],[4.711284476641491,52.42850285254216],[4.711272775725122,52.42850266895925],[4.711262303551272,52.42849519434514],[4.711267907306044,52.42847773618182],[4.711267655803119,52.42845761121349],[4.711264499318432,52.42844670906399],[4.711260740834512,52.42843960529147],[4.711257866224597,52.428431428032695],[4.711252674232157,52.42842383973297],[4.711245679560317,52.428416834340325],[4.711236806960614,52.42841245164058],[4.711227085265713,52.42840975379038],[4.711218105430352,52.42840854314723],[4.711206627472956,52.42840531398805],[4.711196193316432,52.428406908207236],[4.711184258143887,52.42841243947724],[4.711181996781827,52.428411285134445],[4.711178140093916,52.42841157770316],[4.711171097692973,52.42841444056459],[4.71116734068578,52.428417834469535],[4.71116914906054,52.42842650896084],[4.711170259369078,52.42843179109432],[4.711166835446737,52.42843648113303],[4.71115162041187,52.42843726614065],[4.711147351166322,52.42843376353138],[4.711137723778304,52.42842007421439],[4.711130069776722,52.42840810382459],[4.711123948082998,52.42840362895824],[4.711114378610615,52.4283996287459],[4.711098943121435,52.42839655675146],[4.711083870414772,52.428395724770425],[4.711072315329365,52.42839658457666],[4.711064500074886,52.428400952961205],[4.711062458291213,52.42840756527036],[4.711062343894517,52.428417945449304],[4.71106720188238,52.42842814728205],[4.711065322486306,52.42843375389166],[4.711059360565741,52.42843518487421],[4.71105216291289,52.42843184530695],[4.711042083139861,52.42841312027029],[4.711040036284875,52.42840562180917],[4.711037058104388,52.42840422969229],[4.71102767837557,52.42840706123275],[4.71101958606122,52.4284083901796],[4.711012125737797,52.428406846657666],[4.711007341666979,52.42840335908102],[4.710996663668922,52.42839203651868],[4.710988774371344,52.428389699626784],[4.71097708352163,52.428389821654875],[4.710970627869314,52.4283879603051],[4.710962008084508,52.42838146691007],[4.710961562842109,52.42836922307652],[4.710951939294207,52.428359137846954],[4.71094138511411,52.42835607571291],[4.710928426743259,52.428355435533],[4.710898836877714,52.42835398141396],[4.710875149928939,52.42834725821569],[4.710866896271095,52.42834567420562],[4.710846684286987,52.428346322800884],[4.710836286098143,52.42834556240754],[4.710808451225115,52.42833124784878],[4.710789709905479,52.42832609875307],[4.710761149992551,52.42832267317734],[4.710746077454879,52.428321832166446],[4.710723369252806,52.428315527960535],[4.710661774644103,52.42829842318167],[4.710635897027329,52.42828881135333],[4.710590117795448,52.42827301017737],[4.710569074262709,52.42826938480363],[4.710559269192878,52.428260601726336],[4.710527761748392,52.428223958574534],[4.710515520963498,52.42820811520118],[4.710502207948611,52.42819701122694],[4.710469251538941,52.42817821841168],[4.710445970313145,52.42816323771616],[4.710406440085957,52.42814935958068],[4.710378703877486,52.42814207389093],[4.71034560689864,52.42813633042779],[4.710313311524174,52.428133934971456],[4.710300809252295,52.42813039428972],[4.710291431584557,52.428125397467284],[4.710287102528485,52.42812004301149],[4.710285489310997,52.42811304133883],[4.710288946813303,52.42809846500914],[4.710289873970314,52.428087828828026],[4.710285741948405,52.428082089025104],[4.710273079754402,52.428072660460806],[4.710259615153699,52.42806378455072],[4.710247744667035,52.428057389372896],[4.710234454436722,52.42805441939755],[4.710226342240428,52.4280551280229],[4.710211378209678,52.4280616215547],[4.710206606326646,52.428065998282285],[4.710197002788952,52.42807481430962],[4.710190822558908,52.42807898526024],[4.710180998909478,52.42808007956482],[4.710170100798252,52.42807932524422],[4.710160213678051,52.428074954641886],[4.710153749182251,52.42806886896145],[4.710137567249548,52.42806462417046],[4.71011132960847,52.428060303944605],[4.710085798892571,52.42805590686274],[4.710073557578197,52.4280535720044],[4.710062961791778,52.428042663261344],[4.710054224776256,52.428024619890124],[4.710053791008616,52.428024141061435],[4.710048760294226,52.42801852194279],[4.710043254449268,52.4280141673794],[4.710033921894059,52.42801103125512],[4.710026278237762,52.428010906684925],[4.710017870229633,52.42801076875844],[4.710002716489278,52.42800659273879],[4.709986870290633,52.427996741499214],[4.709982637191366,52.4279908842672],[4.709978945048755,52.42798234279394],[4.709973560122116,52.42797873490023],[4.709963581947076,52.42797455250328],[4.70995517182959,52.42796109473732],[4.709947530818138,52.42795695265969],[4.709931954739922,52.42795251357272],[4.709921637322735,52.427950324510405],[4.709909247139355,52.42794330617415],[4.709902833957559,52.427935791723066],[4.709899721365402,52.4279297341745],[4.709899556940203,52.427924142863546],[4.709893102392578,52.42791837179606],[4.70988110120244,52.42791091528113],[4.709872546502713,52.427906911779786],[4.709864889408332,52.427905744545015],[4.709857376816484,52.42790954835323],[4.709845015329183,52.427907383550995],[4.709811667896254,52.42789592230633],[4.709782888989395,52.42788472983806],[4.709767731739638,52.42788078744901],[4.70975622903204,52.42787630871135],[4.709748265039984,52.4278711761233],[4.709741962909423,52.42786409370941],[4.709734417844614,52.427859448853134],[4.709722789431001,52.427854537982185],[4.709714916544271,52.42784921717029],[4.709703586018884,52.42784405634392],[4.709690921597888,52.427841512308646],[4.709677797277743,52.42784115864984],[4.709669776347034,52.427841670028656],[4.709652492419699,52.42784122966961],[4.70964284720587,52.42783835237073],[4.709639158803378,52.4278334149895],[4.709637171818605,52.42782778629346],[4.709632402757902,52.42782428975827],[4.70962136390428,52.42782216844631],[4.709587731099984,52.42781879446794],[4.709563603088968,52.427817865571896],[4.709546643202874,52.42781450603638],[4.709537886717606,52.42781024071232],[4.709528883484588,52.4278048055708],[4.709517472943658,52.4277962289294],[4.709507350390428,52.4277870754501],[4.709494381701541,52.427773672469016],[4.709482763362105,52.427769067214825],[4.709407672797973,52.42775195649122],[4.709350614694311,52.42775746315157],[4.709329090385099,52.427758373612065],[4.709296002672524,52.42775685414238],[4.7092791638625,52.42775423225533],[4.709273638216737,52.427749257388435],[4.709269693234713,52.42774283555113],[4.70925087752344,52.42773489059817],[4.709238602006835,52.427731917327954],[4.709222587391597,52.42772636115864],[4.709120786293088,52.42767343408956],[4.709108687933932,52.42766945519303],[4.709070170701916,52.42764805068073],[4.709050461272152,52.427640864538525],[4.709036550752788,52.427638088608035],[4.70902666225107,52.42763670183041],[4.709011599864887,52.42763617522646],[4.708985855096263,52.427639056747054],[4.70897131742454,52.4276388297365],[4.708962656672456,52.42763407957956],[4.708957242082501,52.42762953674455],[4.708952923257507,52.42762448788018],[4.708948877349201,52.42761793962583],[4.708948586815499,52.42761099044272],[4.708949503188011,52.42760395829032],[4.708948560911386,52.42759924332312],[4.708944079794506,52.42759519116818],[4.708919211229043,52.42758886525972],[4.708855015245777,52.427583320846146],[4.708854268661907,52.42758214816655],[4.708857257683871,52.4275799453065],[4.708881954355293,52.42757253698286],[4.70890130842383,52.42757028399606],[4.708916824688369,52.42757285342827],[4.708931546544486,52.427579292025705],[4.708955057523493,52.42758401933184],[4.70896570261939,52.427586884434774],[4.70897242977484,52.427591165149956],[4.708974851736725,52.42759430674448],[4.70897816108072,52.42759998795953],[4.708982046291932,52.42760454900343],[4.708987975574406,52.42760908579542],[4.708994103354287,52.42761026230983],[4.70900481070148,52.4276081036209],[4.709012959035412,52.42760503151159],[4.709021547117652,52.427599166732456],[4.709019631553626,52.427592720550194],[4.709009608540512,52.42758667735385],[4.708994598668862,52.427580803345144],[4.70897613693141,52.427570874084],[4.708956098665522,52.42756692162877],[4.708947119063918,52.42756571081368],[4.708935871923992,52.427566635087764],[4.708924151499069,52.42756582201855],[4.708900771304028,52.42756215600774],[4.708882780717453,52.42756178339275],[4.708865325110769,52.42756295972811],[4.708853690586848,52.42756133824741],[4.70881766241937,52.427552144258975],[4.708792537285231,52.427544333878295],[4.708769566140009,52.427540840950336],[4.708757088743387,52.42753761481727],[4.708746170888577,52.427536240098085],[4.708726230935511,52.42753930758894],[4.708715529886597,52.427538176777176],[4.708705944504106,52.42753716020537],[4.708694808368958,52.42753851650355],[4.708689153164303,52.427543921702764],[4.708692371366605,52.42754979114662],[4.70870040117844,52.42755349513345],[4.708711976127893,52.427553246838954],[4.708724616540054,52.42755063188131],[4.708738094631984,52.42754900138186],[4.70876028941368,52.42755038674057],[4.708789034466114,52.427557040459185],[4.708820489342748,52.427566280176805],[4.708820790824592,52.42756963432846],[4.708816967713115,52.42757445683158],[4.708806992108236,52.427577797086215],[4.708797517718586,52.42757721256867],[4.70878935712596,52.42757244728682],[4.708781146710119,52.4275661358285],[4.708772784017087,52.42756112671954],[4.708762720149552,52.42755775262592],[4.708753240564298,52.427556547921256],[4.708743109089217,52.427557586417514],[4.708733713080652,52.42756340161211],[4.708727276313463,52.42756607905401],[4.708714519832077,52.427567632794386],[4.708696463106954,52.42756869781025],[4.708672441054703,52.42756758059627],[4.70866241341248,52.42756184292683],[4.708656116182067,52.42755445489886],[4.708623865473615,52.427528070966176],[4.708614543002975,52.42752524935742],[4.708602341261618,52.427528981294806],[4.708594864848403,52.42753042145587],[4.708589247370598,52.427533364226555],[4.708583600764398,52.427536288854675],[4.708578143762645,52.427539313433456],[4.708567474790677,52.42754760194012],[4.708561549359505,52.42755528847082],[4.708554281596135,52.427569016060374],[4.708548240467556,52.42758041386306],[4.708542475368544,52.42758819118843],[4.70852749797992,52.427600346706065],[4.708519843607618,52.42760572247187],[4.708511450785227,52.427609395325454],[4.708504148056909,52.427610054542534],[4.708497936451138,52.427609551602835],[4.708491955700461,52.42760837590485],[4.708487617570034,52.427606508571515],[4.708485635725207,52.427603432401924],[4.708485476363077,52.427599440934095],[4.708485967176345,52.42759523748452],[4.708489696670068,52.427582136750225],[4.70849897694255,52.42757140462005],[4.708524347841085,52.42755070736972],[4.708535399135807,52.427540497680994],[4.708541981841556,52.427530217459974],[4.708541568809771,52.427519753368806],[4.708537623164574,52.427512423741106],[4.708534182221714,52.427507658508844],[4.708530243731837,52.42750369932316],[4.708519962403113,52.42750012623309],[4.70850630913933,52.42750167481481],[4.70849025169564,52.42750659800143],[4.708454868392174,52.42751960730578],[4.708437492480436,52.427524217350125],[4.708421627124465,52.42752524094998],[4.708409879009706,52.42752335813052],[4.708398371946741,52.42752013751796],[4.708375777815949,52.42751123605547],[4.708353135221402,52.427501660230746],[4.708321083870767,52.42749009813491],[4.708277057832617,52.42747129520813],[4.708255159641089,52.42746303583908],[4.708234409563064,52.42745756924295],[4.708215666258996,52.42745642825579],[4.708199714879917,52.42746114529298],[4.708190052125948,52.42746709373229],[4.708184350465868,52.42747168974514],[4.7081815623271,52.427476131686014],[4.708182503367885,52.42747900416663],[4.708185754617359,52.427481755069195],[4.708196110436728,52.42748718008907],[4.708206432032295,52.427492919482766],[4.708209662381428,52.427496074713076],[4.708211677006791,52.42749988806975],[4.708213489726539,52.42750823907666],[4.70821297353873,52.42751697219932],[4.708210889245671,52.4275253727782],[4.708206667532398,52.4275350912946],[4.708200367247358,52.427545166397636],[4.708193350574031,52.427552100675065],[4.708190009278977,52.42755330386109],[4.708186583859496,52.427552322544855],[4.708179744681678,52.42754480555747],[4.708168350217624,52.4275284904348],[4.70815864222187,52.42752013013484],[4.708146771541148,52.42751281799366],[4.708134041834898,52.42750591436437],[4.708121475227846,52.42749892179102],[4.708082330494824,52.42748491925365],[4.708002816575634,52.42744951920137],[4.707963268650987,52.42743305167311],[4.707924392827531,52.42742069538037],[4.707886592638101,52.427414897301716],[4.707850286033477,52.42741812247465],[4.707837207767916,52.427422442498916],[4.707824234650178,52.427428533708934],[4.707805057499985,52.427439379811275],[4.707786147174148,52.4274500836366],[4.707773722686261,52.42745587240364],[4.707761445455356,52.427459729650174],[4.707726932884563,52.42745910034492],[4.707695416665206,52.427444296574116],[4.70766559542133,52.42741964296664],[4.707605657673825,52.42735796690775],[4.70759515268799,52.427348856007626],[4.707572909517298,52.42732955759075],[4.707536534361157,52.42730851538158],[4.707466440140244,52.427280179429175],[4.707428919531113,52.42726671626673],[4.707390340730544,52.427255143434216],[4.707351187578285,52.42724650628423],[4.707311899391441,52.427241876877794],[4.707272945023893,52.42724231845814],[4.707260551429993,52.427244179707266],[4.7072343357948,52.427250922872595],[4.707209213856108,52.42725729482335],[4.707198194529814,52.42725870557756],[4.707188780278228,52.42725804038639],[4.707179875664136,52.42725291121322],[4.707174299229078,52.42724360386531],[4.707170849875408,52.42723173823078],[4.70716549737595,52.427206892367664],[4.707161176920969,52.427197178790884],[4.707154163629817,52.427191440315774],[4.707139326979893,52.42719154391032],[4.707119693876282,52.42719856749681],[4.707097394564452,52.4272097460883],[4.70705328906157,52.427233499188624],[4.707035743670328,52.42724052575667],[4.707024023712105,52.42724064722643],[4.707020155576442,52.42723498971095],[4.707020475010705,52.42722568024733],[4.707023645008921,52.427212657234676],[4.707029750535604,52.42718751762472],[4.70703002620934,52.42717531385799],[4.707026077740358,52.42716531480368],[4.707015801033595,52.42715571083587],[4.707001378045822,52.427147071717684],[4.706983823728785,52.42713936732298],[4.706964168148724,52.42713254064929],[4.706943411554013,52.42712656148688],[4.706902759131194,52.42711695389262],[4.706876052266674,52.42711356497686],[4.706847590333195,52.42711340156423],[4.706807853437394,52.427115977580144],[4.706759359943405,52.42711910547849],[4.706731623071763,52.42711864061841],[4.706706011167634,52.427114799577396],[4.70668224719631,52.42710647527394],[4.706660961175175,52.42709476783145],[4.706641178593197,52.427080902974694],[4.706602300721424,52.42705150547908],[4.706581256955936,52.42703838833833],[4.706557863782044,52.42702794503279],[4.706538807954778,52.42702228115128],[4.706518587051144,52.42701780594343],[4.706482279553009,52.42701153963848],[4.70645534234197,52.42700688203287],[4.70643488402124,52.42700254925054],[4.706415457508527,52.42699708993749],[4.706395005332136,52.42698853294592],[4.706375838153106,52.42697768247253],[4.706339268707694,52.42695403232995],[4.706320799345541,52.426943698158155],[4.706301480651122,52.42693601048622],[4.706280779141317,52.42693219756853],[4.706263907295026,52.426932711781845],[4.706246451004888,52.42693585604187],[4.706213875809363,52.42694503406381],[4.706192021331487,52.42695118190803],[4.706173643454943,52.42695497696592],[4.706155374328568,52.42695648077235],[4.706142029089333,52.426956170389616],[4.706114880974381,52.42695375842905],[4.706087894065798,52.426949468951214],[4.7060620298089,52.42694388269819],[4.706046025050536,52.426938685662044],[4.706030065549868,52.42693150259339],[4.705985044070352,52.42690869353987],[4.705971851345137,52.4269042047156],[4.705959989391851,52.42690304900433],[4.705946799105774,52.42690891406784],[4.705936611431723,52.42692221127829],[4.705928530832421,52.42693998750896],[4.705915123836412,52.42697713764594],[4.70590800651077,52.426990596310425],[4.705899429103518,52.42699670359612],[4.705888213993614,52.42699268450783],[4.70587722965879,52.42697940038543],[4.70585407355848,52.42693827415858],[4.705840991173327,52.42691705976975],[4.70582628905899,52.42689982662228],[4.705809519109532,52.426889897602614],[4.705783754680521,52.42688833837012],[4.705754386584896,52.42689547651615],[4.705722221734353,52.42690855744236],[4.705652583264253,52.426941474478404],[4.705616694380546,52.42695578325253],[4.705581133972928,52.426964988868846],[4.705556643039555,52.42696856891233],[4.705531619081378,52.42697143585295],[4.705506223399425,52.42697361758154],[4.705454815193065,52.426976027133875],[4.70540354752857,52.426975992807215],[4.705388660998467,52.42697552067981],[4.705373763226836,52.42697482379231],[4.705358897349311,52.42697396530718],[4.705317919682969,52.426970233277586],[4.705284781276882,52.42696536895321],[4.705220375374846,52.426953493986524],[4.70518633240014,52.42694722234088],[4.70515330247235,52.42694199909432],[4.705119897986237,52.42693818475776],[4.705097383936566,52.42693655420829],[4.705052011645788,52.426934639276254],[4.705029247149406,52.426933995923584],[4.705006468090815,52.42693334349496],[4.704961053503407,52.426931311443866],[4.704947850700938,52.426930345641566],[4.704926589322491,52.42692852454172],[4.70490362369759,52.42692662172306],[4.704880603584631,52.42692539266682],[4.704855319487876,52.42692510326972],[4.70482997993122,52.42692555054258],[4.70480464870462,52.42692641129409],[4.704778079101559,52.42692748960182],[4.704750224939924,52.42692892001514],[4.704722423348843,52.42693075517304],[4.704694761704536,52.426933049505244],[4.704674604827159,52.42693588138395],[4.704653734819623,52.42694014719005],[4.704604599352992,52.42695058652975],[4.704592631237929,52.42695250387743],[4.704574723759196,52.4269534343082],[4.704559025592556,52.42695124972999],[4.70454637179322,52.426945190996435],[4.704536518413033,52.42693582293079],[4.704528449550541,52.42692419124666],[4.704513497476279,52.42689840915222],[4.704504523379148,52.426886367802624],[4.704493180877363,52.42687631707321],[4.704458737867885,52.426854997433864],[4.704438916466141,52.426844655176396],[4.704418178061792,52.42683561984197],[4.70439715690065,52.42682871296926],[4.704376472663741,52.42682474702576],[4.704356730190505,52.42682454338164],[4.704343726781591,52.426827811887115],[4.704329985703718,52.42683410500897],[4.704312510390237,52.42684419639908],[4.704290288373618,52.426857001691815],[4.704279489880804,52.42686125357364],[4.704270871025363,52.426861455557294],[4.704265961024231,52.42685759848132],[4.704263523312982,52.42685073577276],[4.70426232281448,52.42683801119946],[4.704260806068002,52.426821959339065],[4.70425801980683,52.42681291060025],[4.70425257221306,52.4268057788873],[4.704243379124672,52.42679936258146],[4.704231510818372,52.42679290389259],[4.704217900138739,52.42678692948567],[4.704203449972059,52.42678200180422],[4.704189093021828,52.42677865650083],[4.704175776414575,52.426777447287215],[4.704164388748332,52.4267789095625],[4.704159085344836,52.42678149442512],[4.704149656607394,52.42679035591461],[4.70414062896672,52.426799902783785],[4.704135841497618,52.42680335344267],[4.704130639744651,52.42680506707899],[4.704123747051815,52.42680488354182],[4.704115835243588,52.42680309431134],[4.704107501528825,52.426800062339794],[4.704091841543935,52.42679159548788],[4.704085695681388,52.42678684149326],[4.704081415359561,52.4267821971182],[4.704079810817898,52.42677851188165],[4.704079941141558,52.42677006415562],[4.704081430083913,52.42676122880133],[4.704080538254565,52.42675327849612],[4.704072333782629,52.42674472879359],[4.704058285012499,52.4267385630999],[4.704040153736443,52.42673399166131],[4.703998556996638,52.426726570630464],[4.703978570736489,52.42672215925426],[4.703961459823242,52.42671625451322],[4.703950236633648,52.426709916356195],[4.703918914422238,52.42668551378121],[4.703908888982442,52.42667873313966],[4.703898887819794,52.42667419058509],[4.703888793323837,52.426672838139886],[4.703880141774401,52.42667516101362],[4.703871783142036,52.42668041557987],[4.703858739800992,52.42669198847568],[4.70384662055248,52.42670274881469],[4.703837604098458,52.42670870961654],[4.703827965889684,52.426712087350005],[4.703813367943098,52.42671292889884],[4.703795467343537,52.42671151345048],[4.703776330315298,52.426708284332115],[4.70375797911675,52.42670367563075],[4.703742494809752,52.42669812177382],[4.70373192919041,52.42669204803322],[4.703728333775509,52.42668589765493],[4.703729886017444,52.426681538565376],[4.703733555936187,52.426676194050955],[4.703738937996714,52.42667041901244],[4.703745597123097,52.42666477716794],[4.703753127919877,52.42665981443129],[4.703761110013545,52.42665609460554],[4.703769093628715,52.42665418132424],[4.703774312434375,52.42665422041184],[4.70379233588784,52.42665815313987],[4.703803753628278,52.426660456937825],[4.703808531674493,52.42666047550643],[4.703816277849683,52.426657751955766],[4.703822405084089,52.42665227780653],[4.703827032512568,52.426644907581604],[4.703830294110654,52.4266364869015],[4.703832294313103,52.426627870204186],[4.703832973206597,52.42661341284196],[4.703824457864084,52.42660214703069],[4.703804298593551,52.426594660819],[4.703775762399181,52.42658980463708],[4.703706583420412,52.426583365861056],[4.70367248962216,52.42657946624876],[4.703643087193909,52.426573580435345],[4.703622061427475,52.426566035267456],[4.703582863361466,52.426547060702156],[4.70355857979988,52.42653530843989],[4.703551607975192,52.42653263480796],[4.703538672745472,52.42652767983385],[4.70352005701807,52.42652402226959],[4.703503148949622,52.42652593796814],[4.703495932847138,52.4265295633311],[4.703489557889077,52.426534892230436],[4.703483189574879,52.426541695157596],[4.70347124514906,52.42655446073413],[4.703464029300823,52.42655997352264],[4.703455588547676,52.426563879424485],[4.703448029466782,52.42656591197502],[4.703430872004844,52.42656874297398],[4.703412786300229,52.426569798028595],[4.703395848558148,52.42656887341394],[4.703385907081608,52.426567135335844],[4.703375715278651,52.42656447007469],[4.703365682841106,52.4265610058233],[4.703356248446628,52.42655689790494],[4.703347792106459,52.42655229231671],[4.703340737935154,52.42654733531035],[4.703335510185712,52.42654216415084],[4.703332456967688,52.42653708643058],[4.70333075016566,52.42653145924079],[4.703330483603444,52.42651920740874],[4.703332896823861,52.426506701410226],[4.703335877944421,52.426497407313356],[4.703339834168288,52.42649066237525],[4.703343788031506,52.42648407021502],[4.703345559871578,52.4264778699102],[4.703341972321206,52.426469310849846],[4.703332523023821,52.426460457315066],[4.70331900912505,52.42645203869598],[4.70330325717054,52.42644478455264],[4.703287078863402,52.42643943334794],[4.703272286043405,52.4264367145588],[4.703260690410381,52.42643736664989],[4.703254839720282,52.42644016401917],[4.703249696604204,52.42644474504551],[4.703240448562021,52.42645713070197],[4.703230864872924,52.42647030534169],[4.703225265584357,52.426475863397826],[4.703203705230191,52.4264915124343],[4.70317625063658,52.426508017228414],[4.703145588814081,52.426523703592174],[4.703114362261576,52.42653692404621],[4.703085213902511,52.426546004152925],[4.703060815652074,52.426549296607945],[4.703043825142336,52.42654512706293],[4.703038686485445,52.4265389497773],[4.703036073296067,52.42653013568877],[4.703034628982936,52.426514183093175],[4.703032983054216,52.42649605429954],[4.703030098217431,52.42648483891487],[4.70302454467337,52.426475064135694],[4.703013178800514,52.42646274821564],[4.702999290977929,52.42645093902156],[4.702983115713356,52.42644063554619],[4.702974227962122,52.426436359986354],[4.702958046939554,52.42643023577494],[4.702940187329877,52.42642522533598],[4.702921681666608,52.42642206263871],[4.702905255477298,52.42642133863804],[4.70289018675543,52.426422204317426],[4.702875304961001,52.42642429340749],[4.702861802415685,52.4264275139292],[4.702852394252862,52.426432178159466],[4.702845069584738,52.42643902046818],[4.702826560536554,52.426462713114084],[4.702818578216916,52.42646834726524],[4.702808183716424,52.42647119027107],[4.702800444501818,52.42647155900747],[4.702795078845765,52.42647151004097],[4.70278978947372,52.42647128175996],[4.702780965449595,52.426470493798135],[4.702766930305879,52.42646821972154],[4.702759591681483,52.42646645168614],[4.702749266679963,52.426462895814865],[4.702742126026347,52.426458783120836],[4.702736590327092,52.426453565216875],[4.702728520382229,52.42644108855256],[4.702721314084414,52.426427906844744],[4.702713531177703,52.42641778662621],[4.702710242102088,52.426413705166595],[4.702706953027081,52.42640962370688],[4.702699960328919,52.42640164713508],[4.702691871550821,52.42639419450798],[4.702681694377151,52.426386783742586],[4.702670348174455,52.42637986054882],[4.702658034452288,52.42637370471058],[4.702644383458654,52.42636845789527],[4.702620876053431,52.426362632846114],[4.70260460640369,52.426359393139734],[4.702568802372047,52.42635201405859],[4.702540650646019,52.42634703397071],[4.702483559407569,52.42633857916358],[4.702426011313549,52.426331146291446],[4.702373511396485,52.42632432677026],[4.702325865479136,52.42631831721475],[4.702278049799975,52.426312827947946],[4.702254078572978,52.426310379536424],[4.702219236851403,52.426307329016694],[4.702197542324568,52.426305972283984],[4.702175848355189,52.42630457959947],[4.702154324858599,52.4263026216687],[4.702140427079518,52.42630097745371],[4.702126576463679,52.426299135779345],[4.702112847351136,52.42629704314906],[4.702091739321852,52.42629293953802],[4.702069584533461,52.42628712219942],[4.702050221295768,52.42628142885072],[4.702022689740653,52.42627343234306],[4.701990885136737,52.4262660402616],[4.701954868097264,52.42625913611274],[4.701918504042415,52.42625280516165],[4.701882169956583,52.42624643842173],[4.701824473673204,52.42623624516172],[4.701795572070647,52.42623127853418],[4.701766655912612,52.426226302827594],[4.701708989780119,52.42621606474673],[4.70165805135098,52.42620621608279],[4.701613825918221,52.42619675675931],[4.701569600226132,52.42618731539322],[4.701524933888109,52.42617879719843],[4.701490300792817,52.42617272778847],[4.701455471582764,52.42616698079225],[4.701437940808041,52.42616448859715],[4.701402594881074,52.42616077881306],[4.701386440114934,52.4261596247604],[4.701370193385036,52.42615871284235],[4.701353923881543,52.42615832207954],[4.701341025604862,52.426158597945296],[4.701331397874064,52.42615939605405],[4.701321814106966,52.426160203404265],[4.70131229847035,52.42616040896912],[4.701298279261255,52.42615901560898],[4.701284456094217,52.42615635610986],[4.701270682182852,52.4261533643477],[4.701242198814636,52.426148930282594],[4.701175384906385,52.426141739756524],[4.701154240117997,52.42613812110309],[4.701134575105821,52.42613293815814],[4.701129856595804,52.42613097847315],[4.701116942722424,52.42612561890775],[4.701114828472511,52.42612448319799],[4.701112759022122,52.426123302808804],[4.701110704690637,52.4261220955439],[4.701108665199579,52.42612087937716],[4.701106640548941,52.426119654308565],[4.701104586357038,52.42611843805661],[4.70110253188676,52.426117239778506],[4.701100244566686,52.42611588736048],[4.701097987345106,52.426114490177945],[4.701095744824734,52.426113093080474],[4.701093472623882,52.42611171378657],[4.701091140644191,52.426110397060775],[4.701088719205035,52.426109160706616],[4.701086163646229,52.426108040416466],[4.701083912493203,52.42610720050902],[4.701081571880653,52.42610644097324],[4.701079171628442,52.426105735018545],[4.701076726576872,52.42610507374311],[4.701074251705503,52.42610443925823],[4.701071776694954,52.42610381376018],[4.7010693310866,52.42610318843238],[4.701054502907629,52.42609992090789],[4.70103920493308,52.42609755842338],[4.701023558391321,52.4260958679993],[4.701007684650257,52.42609460766925],[4.700991704799574,52.42609355344072],[4.700975769749182,52.42609245453078],[4.700959985749079,52.426091095848854],[4.700949019100661,52.42609006165994],[4.70093802137932,52.426089135143066],[4.700927008400271,52.42608824448777],[4.700915995700233,52.42608733585756],[4.700905013656317,52.42608634651416],[4.700894077666068,52.42608523160808],[4.700883218106706,52.42608392840097],[4.700871877313316,52.42608237074862],[4.700860568151524,52.4260806694745],[4.700849290342846,52.42607884255243],[4.700838073150178,52.426076899139694],[4.700826901733254,52.42607484813812],[4.700815805354945,52.42607269870494],[4.700804754473912,52.426070459656806],[4.70079377932815,52.42606807724244],[4.70078289489742,52.426065533573095],[4.700772071083178,52.426062873413215],[4.700761292627197,52.42606013262534],[4.700750514451185,52.42605737386266],[4.700739750977564,52.426054615184164],[4.700728942287601,52.42605192814466],[4.700353760817229,52.4259689361906],[4.70018524384083,52.42592337105271],[4.700137716799862,52.42590595585233],[4.700108779692963,52.425890985243264],[4.700036727253542,52.42585475124921],[4.7000037427748,52.425829636939454],[4.69995530073041,52.425789720027346],[4.699924362678232,52.42576632523572],[4.699899023400238,52.42574405941587],[4.699896364961585,52.42571357553272],[4.699891391849275,52.42570150310531],[4.699879493945561,52.42568280249162],[4.699644108408587,52.425437725129775],[4.699573197472549,52.42537160421901],[4.699558557309073,52.4253609856183],[4.699527498121142,52.4253577315598],[4.699506219953773,52.425364627500954],[4.699493775064521,52.42536412386196],[4.699480665896935,52.4253590595779],[4.699380991927177,52.42522991129389],[4.699223889757135,52.42505361231493],[4.699151494948595,52.42497236513142],[4.699135038022538,52.42495851831282],[4.699119254330982,52.42495338453048],[4.699109771811455,52.424956205544845],[4.699106810361148,52.42496229102922],[4.699178229355603,52.42505334719664],[4.699200531810586,52.42508177012784],[4.699204590309438,52.42509780986148],[4.699187507210556,52.425100604726325],[4.699178158448178,52.425098600101606],[4.699163449133089,52.4250905515454],[4.699135030146842,52.42506026857641],[4.69911620718085,52.42505581818966],[4.699101718006923,52.4250553655521],[4.699090301990751,52.425058669663045],[4.699077904982813,52.42506644397503],[4.699064373073908,52.42507061659519],[4.699047438615685,52.42506857689398],[4.699029997831783,52.425061276416415],[4.699018065138199,52.425052417094946],[4.699008617918048,52.425045396720826],[4.698984208377009,52.42501728507341],[4.698972906470652,52.4250018953171],[4.69896555762491,52.42498567468407],[4.698955158830994,52.42496042162253],[4.698938198317421,52.424926007880266],[4.698759069171376,52.424786996318424],[4.698743310095834,52.42478217719966],[4.698729163351274,52.424782400586956],[4.698719208158576,52.42478441891396],[4.698714958490545,52.424791090095425],[4.698714297170392,52.42479769224908],[4.698707040439309,52.424803923533574],[4.698694299667228,52.42480544033436],[4.69867882395625,52.424800362208835],[4.698659912041895,52.42478462261777],[4.698651387356251,52.42477501011528],[4.698638577863037,52.42474879930161],[4.698635821889748,52.42473599371785],[4.698641925012148,52.42472169372204],[4.698660057823554,52.424702439477535],[4.698668756287509,52.42469047340111],[4.698668022755118,52.42467524388974],[4.698660491074887,52.42466322844071],[4.698637694137075,52.42464016821652],[4.698602303868626,52.42462143880124],[4.698584808665513,52.424616708436815],[4.698574821786265,52.424616039230095],[4.69856158616251,52.42461818228315],[4.698554102895296,52.42462385500136],[4.698543874770262,52.42462262714945],[4.69853315737083,52.42461788224258],[4.69853050580402,52.42461254608338],[4.698533637033969,52.4246078367253],[4.698533660130587,52.424602570037756],[4.698371820139823,52.42440041155005],[4.698361158854123,52.424385447880326],[4.69834446176391,52.424367222517304],[4.698327883248058,52.42436027746891],[4.698307585182276,52.42435711261178],[4.698287256801675,52.42435684163082],[4.698274457321899,52.42435741433098],[4.698247216063049,52.42435639311776],[4.698227893390142,52.42435195765761],[4.698211630440587,52.42434363031399],[4.698199414543975,52.4243322077514],[4.698192411640917,52.42432401514007],[4.698186057705655,52.42431096392849],[4.698178719834049,52.42429122909568],[4.698169862970286,52.42428124612731],[4.698146128140023,52.42427124854156],[4.698121571245562,52.42427062039509],[4.698103315971412,52.42426372847788],[4.698065133817498,52.424251552708235],[4.698044985669085,52.42424253765138],[4.697989169595527,52.424201498488905],[4.69796929157692,52.42418457576865],[4.697948303282359,52.424163422343106],[4.697939405838878,52.42414943957129],[4.697936675575427,52.424135942061376],[4.69794825352064,52.424109944929974],[4.697940530720088,52.42409605886838],[4.697916924516522,52.42408252979738],[4.697899624102793,52.42407002605772],[4.697877487963055,52.42405650553059],[4.697877309945198,52.42403960752102],[4.697874210040577,52.42402152410523],[4.697854711603627,52.42400855818382],[4.697824131952257,52.42399912288968],[4.697798312388955,52.42398612018216],[4.697781405487611,52.42397667454998],[4.697763234420799,52.42397288384377],[4.697751437765714,52.423975152019416],[4.697744598651853,52.42398005548864],[4.697738740988901,52.42398802050408],[4.69773592562424,52.42399887930248],[4.697727021546199,52.424013657282615],[4.697708777708371,52.42401453977587],[4.697690519797684,52.42400688381973],[4.697677773788431,52.423994586304815],[4.697665961582305,52.42397896875419],[4.697645786981415,52.423962224007056],[4.697623524960953,52.4239473545362],[4.697599668370287,52.42394047488055],[4.697580963901055,52.423933175818355],[4.697583653288531,52.42392096812727],[4.697583261204296,52.42390838299168],[4.697564966918627,52.423893626479426],[4.697525441165446,52.423873353735445],[4.697468671234982,52.423836982400196],[4.697445317326677,52.42382615102779],[4.697423817075651,52.4238190154204],[4.697401985011555,52.42380486743008],[4.697381481586643,52.42379036766053],[4.697364598637742,52.42376995704857],[4.697352582193367,52.423748586114264],[4.697329166757451,52.42373227183084],[4.697313724479946,52.42371375702728],[4.697309922015984,52.42369360232065],[4.697295139173218,52.42367050759976],[4.697273815435818,52.423652048423],[4.697251371689887,52.423639424760324],[4.697227575531795,52.42362868064627],[4.697205277460239,52.423597273418196],[4.697180963342071,52.42358203240155],[4.697152533181829,52.42356676740912],[4.697128242905387,52.423549998602184],[4.697110430537855,52.42353263837551],[4.697095177437103,52.42351142831765],[4.697085535629745,52.423488633144025],[4.697076837515795,52.423452451712684],[4.697067414105836,52.423434511196426],[4.697052802230517,52.42341932666244],[4.697005148696486,52.42339235546085],[4.696983759381379,52.42337812009225],[4.696960726450455,52.42336558281828],[4.696935732086369,52.423356269704776],[4.69691825581469,52.42334565222147],[4.696892712779857,52.42332438218923],[4.696872730599465,52.423304762345346],[4.696850808001694,52.42328701862092],[4.696831115552833,52.42327710723263],[4.696808079807623,52.42327418680923],[4.69679078540354,52.42328019771212],[4.696773693924975,52.423292051835375],[4.69675188170443,52.42329551983619],[4.69672616362782,52.423285483440424],[4.696700157296659,52.423265648706746],[4.696670996841312,52.423240672565385],[4.696617496225581,52.423192725660556],[4.696592741683221,52.42316804481071],[4.696569144954115,52.42314453911209],[4.696540000069611,52.42311857437494],[4.696510239184486,52.42309440359054],[4.696480887094154,52.423072302365156],[4.696456059804387,52.423052294694095],[4.696440732887842,52.423035847627865],[4.696427797237313,52.423016897928946],[4.696401257674419,52.42300299193715],[4.696377848391139,52.42299575512891],[4.696355780342262,52.422987357727806],[4.69633510540227,52.42297447456773],[4.696313617173351,52.42295718266156],[4.696295529590066,52.42293865229492],[4.696293471839034,52.422933912736724],[4.696286446873981,52.42291774774012],[4.696287644341679,52.42289753227264],[4.696304208515928,52.422862936122236],[4.696300405180862,52.42284287124993],[4.696282915462651,52.42282371522396],[4.696258529259826,52.422803719069364],[4.696240671401359,52.422789315412935],[4.696218435681796,52.42277282802735],[4.696187990449616,52.42275485471926],[4.696127537999914,52.422728527532854],[4.696088224316264,52.42269477390012],[4.696063413979413,52.42268312485576],[4.696035720907481,52.42267721115443],[4.696012705164187,52.422673032405285],[4.695990118080178,52.42266022790626],[4.695962811898153,52.422638947381415],[4.695911504833409,52.42260125898484],[4.695898710923126,52.4225826695622],[4.695897433428159,52.42256091173793],[4.695884419890875,52.4225375575211],[4.695857511339827,52.422519065495486],[4.695799131095992,52.42250128859776],[4.695789494058839,52.42248766085003],[4.695804174146182,52.42245134609749],[4.695800270052676,52.42243775180328],[4.695773691746915,52.42242636201283],[4.695742451271874,52.42242168582689],[4.695671935608882,52.42241848808945],[4.695647788956216,52.42241142658588],[4.695637869215796,52.42239707815468],[4.695637848878175,52.42237955190965],[4.695633214061768,52.42236568371184],[4.695617632626707,52.422356155622],[4.695596435801291,52.422348482182194],[4.695571782610474,52.42233620480696],[4.695544877119432,52.422317532971185],[4.695461201569731,52.42225332129144],[4.695429147247475,52.42223017042896],[4.695404528064234,52.42221101758215],[4.695383246529388,52.42218995185005],[4.695349759448976,52.42215030006432],[4.695329299581256,52.42213310385567],[4.69527708173898,52.42210673443245],[4.695250002835471,52.42208976918905],[4.695227339482264,52.422072470216506],[4.695207784148002,52.42205384122757],[4.69519499209489,52.42203516185822],[4.695183691085844,52.42201514303204],[4.695166651136673,52.42200488734217],[4.695140634558146,52.42199520836184],[4.695115466265691,52.42198769139267],[4.695091653255632,52.42197811515027],[4.695066984961299,52.42196682623276],[4.695047318780972,52.42195529689809],[4.695037756052174,52.42194634315463],[4.69503012113864,52.42193632214131],[4.695022112659963,52.42192198482108],[4.695011484936719,52.42190592452459],[4.69499716966727,52.421890651582416],[4.694977712342014,52.421875168842156],[4.694927091916026,52.42183128246413],[4.694902825911089,52.42181307528782],[4.694854331894509,52.421774234446914],[4.694831417014761,52.42175423759874],[4.694817860721453,52.42173744115],[4.694806941934606,52.42172119937803],[4.694731319619346,52.42165919128851],[4.694668944817431,52.42160552931867],[4.694653744979427,52.42159043091812],[4.694638658418262,52.42157749023993],[4.694619822494435,52.42156929115615],[4.694600874141712,52.42156828161974],[4.694578150290862,52.42156428404946],[4.694554929822846,52.42155444152789],[4.694503602721376,52.42151819042734],[4.694479838492222,52.4214961213586],[4.694459597951568,52.42147434251957],[4.694440615720527,52.42145670540362],[4.694400572287292,52.42142276717002],[4.69435813826071,52.42138189436809],[4.694337796601831,52.42136658610325],[4.694317992319203,52.42135451657099],[4.694300368911088,52.42134211825427],[4.694274079405897,52.42132361150334],[4.694258355096971,52.421304465490856],[4.694249708773253,52.42128769768935],[4.694248225027751,52.421284812928434],[4.694242486518936,52.42126635445805],[4.694234358138774,52.42125030870529],[4.694220396397995,52.42123126287344],[4.69419803349925,52.421213605944274],[4.694149272816239,52.42118249271903],[4.694124700840513,52.42116509248678],[4.694102487820187,52.42114725666054],[4.694065979811032,52.421112889602576],[4.694048394822122,52.42109241147484],[4.694065090050331,52.42106829611592],[4.694076040002397,52.42105246082406],[4.693896814962478,52.42091309058688],[4.693813095627717,52.42091772369986],[4.693729422416554,52.42085369052582],[4.693564569882311,52.42087618360506],[4.69354653979913,52.42086349518411],[4.693559868497443,52.4208478446324],[4.693669809965591,52.42077397966988],[4.69367187504097,52.420754757947364],[4.6936227460321,52.42071905858429],[4.693550429533317,52.42075593444757],[4.693511603368625,52.42072883372858],[4.69358043144561,52.42068942089378],[4.6935070054208,52.42063758102368],[4.69346261715609,52.42064648864883],[4.693457663876551,52.420634236289885],[4.693450499967935,52.42062046104281],[4.693462404459066,52.42061314280567],[4.693475133065482,52.420607644920565],[4.69348494012518,52.42060096151941],[4.693486703436647,52.42059162457079],[4.69347482041287,52.420580679803145],[4.693457934034092,52.42057006524915],[4.693444017114076,52.420553823765125],[4.693433391649471,52.420541430339064],[4.693420246840972,52.42053596071251],[4.693386933168777,52.420532350288816],[4.693390712148864,52.42052572147353],[4.693391014579851,52.42052518397877],[4.69340125838603,52.42051877277483],[4.693399820271329,52.42050734989533],[4.693354634915284,52.42049207573106],[4.693330916578995,52.42048591503101],[4.693306493415741,52.420487210041394],[4.693280825320733,52.42049290175921],[4.693257636366196,52.420499866278334],[4.693256028450844,52.4205086648683],[4.693263813933925,52.42051841725056],[4.69326346125498,52.42052497625168],[4.69326319131075,52.42053000781768],[4.693248768340897,52.420540439025714],[4.69323547927157,52.42054511571758],[4.693234588112452,52.42054475997523],[4.693224172266559,52.42053400353067],[4.693216673732223,52.42052470221463],[4.69321638538128,52.42052434101518],[4.693195662681863,52.4205052554561],[4.693165358725434,52.420479381935266],[4.692955943576692,52.4203090952379],[4.692943663509149,52.42029910977968],[4.692943358490518,52.42029887431055],[4.69291477386874,52.42027774734919],[4.692900538747122,52.42028557316476],[4.692885523586008,52.42026813879256],[4.692873240682658,52.42025458516813],[4.692852344496284,52.42023720620516],[4.692811938289286,52.42020873883839],[4.692775283349889,52.42018291787069],[4.692752075280386,52.42017235603985],[4.69272575364285,52.420163483629565],[4.69270007352995,52.42015119962357],[4.69268018243653,52.420135354440696],[4.692666848149893,52.42012323267325],[4.692666265403179,52.42011352247231],[4.69265434142025,52.42009583655688],[4.692632656886054,52.42008186828289],[4.692588054147787,52.420057609473425],[4.692560820669937,52.42004127183593],[4.692516811220884,52.42000730969217],[4.69249287681243,52.419996204284985],[4.692469013281739,52.419989952681185],[4.692459020395733,52.419980367056205],[4.6924513254079,52.41996486298032],[4.692432453548397,52.419949652874564],[4.69240264909746,52.41992853660868],[4.692365828640679,52.41990486261595],[4.69232337573337,52.419874774265246],[4.69223240511602,52.41980764136435],[4.692134666215973,52.41974091807406],[4.691965123363318,52.41962227348937],[4.691975946657113,52.419616405073754],[4.691959535829223,52.419603636027794],[4.691936323757494,52.41958399636723],[4.691914872748876,52.41956454679178],[4.691895787685502,52.4195442123203],[4.691859059025504,52.41949600210416],[4.691837089277386,52.41947214546434],[4.691772550101899,52.419416312151235],[4.691699877355465,52.41936357677462],[4.691626544849726,52.41931542123958],[4.691494032232241,52.41922593395725],[4.691432912999563,52.419186388392156],[4.691414063156771,52.419179177360476],[4.691396906575904,52.41917647015321],[4.691385756617646,52.41917786967785],[4.691381882801689,52.419178359230195],[4.691366474540599,52.419176650940486],[4.691350233629719,52.4191624447628],[4.691332447880193,52.41914364574841],[4.691306240101882,52.419127583472395],[4.691278931286011,52.41910675120679],[4.691253403286416,52.41908485086312],[4.691226528421762,52.4190644705224],[4.691160328664984,52.419020850474084],[4.691124374598574,52.41899825970701],[4.691097026399251,52.41897994374166],[4.691067585096523,52.418963862413584],[4.691032250224864,52.41894864522527],[4.690994388352745,52.41893521073068],[4.69096224343812,52.41892279847378],[4.690931489233633,52.41890608025242],[4.690911949817505,52.41888664172322],[4.690890908059163,52.41886926154798],[4.690858106001223,52.41885190212802],[4.690828601285829,52.4188398648622],[4.690792777592612,52.418827700569246],[4.690762051801782,52.41881853219504],[4.690725862085306,52.418801602213165],[4.69065329193758,52.41876118002374],[4.690589779919535,52.41872431627708],[4.690564887049968,52.41870880083074],[4.690533190526857,52.41866789986655],[4.690507167060212,52.418649501673784],[4.690483803491859,52.418630220339836],[4.690464532917731,52.4186124011137],[4.690437234664494,52.418600286846456],[4.690416543700254,52.418588660819424],[4.690393638125799,52.418568303628426],[4.690375419134184,52.41854905252894],[4.690348632597747,52.418532447366104],[4.690317275401267,52.41851671408981],[4.690290373030636,52.418498130923076],[4.690269241280111,52.41847715499726],[4.690252210987023,52.418457101971164],[4.690224144114265,52.41843779291722],[4.690187580431109,52.41841663631597],[4.690159995476447,52.41840407090839],[4.690130065741612,52.418400389590325],[4.690105806182039,52.41840069624487],[4.690082975571622,52.41839427047541],[4.690027503441971,52.41836032981226],[4.68996087330622,52.418325514559534],[4.689947740903023,52.41831932559207],[4.689924311806886,52.418305166787746],[4.689912024143541,52.418291073550535],[4.68990935453047,52.41828323847932],[4.689896062428906,52.41827785746539],[4.689874669212946,52.418273507302004],[4.689865710242535,52.418273005183565],[4.689858971601742,52.41827152747824],[4.689854033561991,52.41826772355053],[4.689847605870539,52.41826516914238],[4.68983863416734,52.418265475846205],[4.689832291201863,52.41826687655461],[4.689823315253189,52.41826745286535],[4.689817461350617,52.41826580060992],[4.689805608067656,52.41825773172395],[4.689804953713574,52.41825727848378],[4.689795500204347,52.418250841520994],[4.689786011320792,52.41824665129161],[4.689776174883104,52.41823652708758],[4.689770630521061,52.41823388799724],[4.68976520059602,52.41823331676736],[4.689758610363984,52.41823175005218],[4.689756459376347,52.418228322037486],[4.689753911306063,52.41822210547661],[4.689751038134832,52.41821786431123],[4.689752789399734,52.4182093362391],[4.689744663010773,52.41820263745141],[4.689737302484025,52.41820331314293],[4.689715907705413,52.418208400099786],[4.689706078167238,52.418207173822545],[4.68969749526559,52.4182014609987],[4.689693590381952,52.418197393513445],[4.689699683449136,52.41818385785189],[4.689707740882797,52.41817626568261],[4.689709414316415,52.41817268042627],[4.689706289641897,52.41816574144813],[4.689692159569899,52.418157569269],[4.68968368403554,52.41815437365177],[4.689666855893972,52.4181495110601],[4.689655025209097,52.418144677888854],[4.689640596939401,52.4181367735809],[4.689628239187462,52.41812807256264],[4.689616439651822,52.418121262261465],[4.689610502487016,52.41811556500882],[4.689606624512307,52.418109790002674],[4.689604325365686,52.41809710370943],[4.689601610524198,52.41809214445085],[4.68959448475627,52.418087249098186],[4.689583253354647,52.41808170042663],[4.689567820296367,52.41807226227229],[4.689556882869192,52.418066715329154],[4.689549909756149,52.418061461361845],[4.689546341332461,52.41805469952162],[4.689541390603575,52.41805170440512],[4.689525007714252,52.418046574781684],[4.689516109665592,52.41804220825404],[4.689507273906853,52.41803388747359],[4.689501702933017,52.41802360860882],[4.68949904048677,52.418015324181304],[4.689498526411837,52.41800130023207],[4.689496406599992,52.41799589508646],[4.689488964241562,52.41799243590617],[4.689463809096134,52.41798428865002],[4.689449597012997,52.41798132886515],[4.689436302226432,52.41797612753827],[4.689418801559126,52.41796730633096],[4.689409134640292,52.417965092331734],[4.689394949468427,52.417960425022336],[4.689383770780804,52.417942203885346],[4.689379389601736,52.41794038052661],[4.689374496678098,52.41794304803892],[4.689369525878504,52.4179506583662],[4.689366146679438,52.41795054858507],[4.689361330214243,52.41794836315099],[4.689354365638708,52.417942569955905],[4.689349248128729,52.417940832136736],[4.689344804648734,52.41794296302882],[4.689341231739976,52.41794581807031],[4.689337852262669,52.41795505556822],[4.689341482671431,52.41796721044254],[4.689342262479737,52.41797369521842],[4.689343689698131,52.41798573824987],[4.689334902983942,52.41799296658836],[4.689330524633876,52.41799096348909],[4.689325007233322,52.41798661685995],[4.689323168665984,52.417982022267076],[4.689322971269903,52.41796656213881],[4.689319391560332,52.41796051924661],[4.689313884076854,52.417955543531356],[4.689306758362723,52.417950648161344],[4.689294362494473,52.417944373580966],[4.689274652871618,52.41793580897314],[4.689239576582948,52.4179229295845],[4.689225216437661,52.417910711496326],[4.689217511305456,52.41790527344108],[4.689207855740226,52.41790234047055],[4.689198892603906,52.417902107909896],[4.689189622754982,52.41790268244093],[4.689181708328494,52.417901197769474],[4.689170765326734,52.41789601026815],[4.689150337830435,52.417886362877326],[4.68912104352871,52.41787037179969],[4.689092471414548,52.417855193869435],[4.689075246414851,52.417847542645184],[4.689063489535039,52.41783803620789],[4.68904076136015,52.41782513964334],[4.689038029599365,52.417821258804096],[4.689031637434783,52.41781645761752],[4.689007611934978,52.417801935602704],[4.688986929227725,52.41778983301769],[4.688957470640266,52.41777494642645],[4.688929020123952,52.417761386971435],[4.688918046016244,52.41775817657269],[4.688904713104288,52.41775540165897],[4.688893310803933,52.41775137983476],[4.688880917883914,52.417744925472356],[4.688875599966334,52.41773725452203],[4.688869400532849,52.41772023109327],[4.688866829945262,52.417715452422755],[4.688861588169249,52.417712275806316],[4.688845533456645,52.417704990956906],[4.68883785107861,52.41769811496711],[4.68882869784799,52.41768197290197],[4.688811821162757,52.41766156105614],[4.688781324745141,52.417637923200466],[4.688773173099866,52.41763284199431],[4.688767183675319,52.4176304698656],[4.688758371830102,52.41762996853005],[4.688739291477844,52.41761880108737],[4.688725536504015,52.41760550797195],[4.688723881844144,52.41759857763265],[4.688725137064453,52.417593551880465],[4.688734322634518,52.41757967498679],[4.6887360173819,52.41757474170339],[4.688732711907189,52.4175699586973],[4.688720889982546,52.41756458621642],[4.688706237138194,52.417561623742884],[4.688698586990373,52.41756202802892],[4.688684960187398,52.41755925135731],[4.688670915117415,52.41755503417459],[4.688649437753671,52.41754672867152],[4.688643557060246,52.41754678387596],[4.688641025768236,52.41754883613867],[4.688642888342333,52.41755190296316],[4.688648710924588,52.417555532402616],[4.688652877020514,52.417561668651224],[4.688652133606623,52.417562203534345],[4.688638019087024,52.41756238994647],[4.688620338730088,52.41756498203005],[4.688610249420083,52.41756159706403],[4.688603113924938,52.417557330737075],[4.688594387579753,52.417542089947204],[4.688593378986611,52.41753147842893],[4.688596680625712,52.41752718376663],[4.6885973890376,52.4175195483375],[4.68859080887564,52.41751735247185],[4.688574787859209,52.4175172580014],[4.688567638199367,52.41751389036591],[4.688546382987862,52.417500822634665],[4.68854072724903,52.4174959358858],[4.688543119094763,52.41748408613121],[4.688541289134689,52.41747895230976],[4.688536061585888,52.41747487698521],[4.688528755030962,52.41747213756618],[4.688510365312987,52.41747310765108],[4.688498388915869,52.41747753090851],[4.688486914421979,52.417478092382616],[4.688476044866999,52.41747757889062],[4.688463722508437,52.41747597829682],[4.688452742834269,52.417473127332414],[4.68842457339847,52.41746972559444],[4.68841941202718,52.41747077368528],[4.688416876475677,52.41747309555125],[4.688415663758841,52.4174754252194],[4.688424722273829,52.41748824128353],[4.688423752479021,52.417493807982524],[4.688416020106168,52.417499424673274],[4.688411166873117,52.417499575803944],[4.688407379376302,52.41749739639944],[4.688400483053921,52.41748728941877],[4.68839636095397,52.41747836721108],[4.688392299346685,52.4174749279012],[4.688385139782334,52.4174721893402],[4.688382492694783,52.417472263604495],[4.688380557829015,52.41747378011327],[4.688378622963113,52.417475296622],[4.688373456854563,52.41748596159935],[4.688371688820487,52.41748622080389],[4.688367314817946,52.41748394806089],[4.68835572360165,52.417473274118336],[4.68834192413122,52.41745722144864],[4.68833421612102,52.41744825112315],[4.688329994777726,52.417445619768365],[4.688328659181641,52.41744642078947],[4.688326272026372,52.41744865365118],[4.688327030548844,52.41745647748762],[4.68832204119018,52.41746525607316],[4.688318324108742,52.41746793047828],[4.688314494078103,52.41746844715164],[4.688308918702386,52.41746778511869],[4.688306415760507,52.41746803998704],[4.688299076605414,52.4174673675491],[4.688289568178333,52.41746443537075],[4.688260817012461,52.417451323367764],[4.688231901863656,52.41743928892291],[4.6882084179546,52.41742773590305],[4.68819925598098,52.417421480285554],[4.688187606671576,52.41741449097021],[4.688175863466581,52.41740600014165],[4.688167695727754,52.41740008293531],[4.68815222633147,52.41739298119945],[4.68813961997427,52.417390749752016],[4.688138086864304,52.41738543792009],[4.688143432091483,52.41738205410546],[4.688148312261557,52.417380195467906],[4.688155235986275,52.41737924766501],[4.688163756648584,52.417379567572205],[4.688173438978507,52.41738079311003],[4.688184904941235,52.41738077088239],[4.688186880940085,52.41737664816536],[4.688168619429057,52.417360182674365],[4.688157095846557,52.417354542263624],[4.688126424709123,52.41734387256083],[4.688103735637705,52.41733598223319],[4.688070457983882,52.4173209560411],[4.688057125257001,52.41731818103201],[4.688039138234464,52.41732158011862],[4.688028706829468,52.4173212489265],[4.688008652695506,52.417315917669924],[4.688003511193665,52.41731570757165],[4.688002323995407,52.41731641958715],[4.688000687341735,52.417317668216526],[4.688000893346625,52.417323241851534],[4.688005503111782,52.41732920098655],[4.688002833333565,52.41733071315208],[4.687988487320833,52.417334394364076],[4.6879802515801,52.41733651181224],[4.687973036733442,52.4173372781313],[4.687957352308937,52.41733448923168],[4.687952404605656,52.41733131430988],[4.687948495702608,52.4173275163748],[4.68794384253533,52.417314995907084],[4.687940586823164,52.417307067451304],[4.687944273272804,52.41729702290317],[4.687944195812031,52.41729261843721],[4.6879394390779,52.417286658432296],[4.687932713421081,52.41728437179326],[4.687918478964232,52.417282849734534],[4.687906221947702,52.41727711509235],[4.687899261924698,52.41727105220333],[4.687895867756037,52.4172625836626],[4.687898471428579,52.417255948078534],[4.687895763923823,52.41725053943366],[4.687883343496445,52.41723653507311],[4.687867857763987,52.41722116445161],[4.687850846067901,52.417200032645496],[4.687841242424585,52.417184516985934],[4.687832434112569,52.41717448856208],[4.687827979881438,52.417167991071736],[4.687820266535878,52.41716309214144],[4.687812680306023,52.41715945224933],[4.687807407452307,52.41715825271201],[4.687801386924357,52.417157857660314],[4.687780042706196,52.41715045156075],[4.687763927555329,52.41714608723192],[4.687746085133226,52.41714126331483],[4.687734791758621,52.41713966871944],[4.687722158529438,52.41713914474538],[4.687714382754029,52.417138200059895],[4.68769231359247,52.417130160520195],[4.687692534375786,52.41712548818147],[4.687696004341305,52.41711984637143],[4.687701133668804,52.41711151802634],[4.687697815566886,52.41710754381537],[4.687692863649694,52.417104638490756],[4.687676807930609,52.4170974433521],[4.687657478906871,52.41709274546067],[4.687641746329835,52.4170930120774],[4.687629573927968,52.41709123252611],[4.687614216220259,52.41708637832165],[4.687597662800622,52.417082775342855],[4.687583339639605,52.41707756773242],[4.68757693070587,52.41707384489936],[4.687573322915913,52.41706959934092],[4.687570454286617,52.41706508851407],[4.687566545439778,52.417061290566295],[4.68754699346196,52.417052097453144],[4.687518691580553,52.4170477959385],[4.687495580861214,52.41704055911019],[4.687476818506563,52.417037212701814],[4.687454961052639,52.417034387276615],[4.687436504022423,52.417030323643225],[4.687421761254423,52.417023765368604],[4.687410845653123,52.417016870186735],[4.687396234942367,52.41700195405899],[4.687386632231459,52.41699569577392],[4.687374956183834,52.416990413896166],[4.687365118461936,52.41698972664107],[4.687336311798134,52.41698946659922],[4.687324292097251,52.416987328407394],[4.687311698678034,52.416984288047686],[4.687294729942918,52.41697906477339],[4.687259106821235,52.416982269675664],[4.687246576597104,52.41698453246923],[4.687229769749316,52.41698766877206],[4.687222143831621,52.416986545183995],[4.68721659551777,52.416984175582016],[4.68720854002312,52.4169823304331],[4.687199920753939,52.41697895403093],[4.687191906449481,52.41697450266966],[4.687178120893128,52.416963186499636],[4.687176411106368,52.416959761042975],[4.687180651531883,52.41695187685639],[4.687184080359871,52.416948841272486],[4.687186684120322,52.41694220570375],[4.687191411620776,52.416940705714445],[4.687195975097645,52.416940283288774],[4.687199976220007,52.41693823974092],[4.687203860187802,52.41693430806809],[4.687204209537912,52.416930804900176],[4.687202639628827,52.416927829659016],[4.687194954800068,52.41692113330096],[4.687185032610112,52.41691649091098],[4.687174910890401,52.4169151728178],[4.687166752460914,52.41691054084765],[4.687163385446375,52.416900364767876],[4.687165298339259,52.41689093890734],[4.687164654342988,52.416885182926485],[4.687160054679558,52.416878594673044],[4.687151629286156,52.41687225344718],[4.687136475502668,52.41686380527515],[4.687131895731402,52.41685595884966],[4.68712621824864,52.4168431626615],[4.687116991954896,52.41683169366899],[4.687111183797949,52.41682716546053],[4.687084140328088,52.41681765836794],[4.687061844910666,52.41681465052588],[4.687035558322255,52.416813057136686],[4.687020687828898,52.41681458705377],[4.686998434692664,52.41681820343962],[4.686959823358359,52.416824473397654],[4.686939507514355,52.41682642050881],[4.686925993928366,52.4168258013682],[4.686918833139028,52.4168231525879],[4.686913299070439,52.41681988427822],[4.686909266055959,52.41681464753033],[4.686908004338264,52.41681077532932],[4.686901082888889,52.41680228590898],[4.686883132306694,52.4167940908057],[4.68687245112534,52.41679097182443],[4.686815636296423,52.416777154306395],[4.686792819792211,52.41676991907882],[4.686772144033052,52.41676674100165],[4.686764800754425,52.416766338076854],[4.686759496710478,52.41676711561856],[4.686754309800962,52.416769781285325],[4.686748279387154,52.416770015265605],[4.686728601219061,52.416768820389386],[4.686705774784528,52.416762214230424],[4.686641019750511,52.416739272027876],[4.686630038955498,52.416736510763954],[4.686592170927759,52.41673296135914],[4.686585473855129,52.41672887725668],[4.6865696862632,52.416714043942676],[4.686561407964793,52.41670770354403],[4.686541549599696,52.4166993173506],[4.686504176571826,52.416692355490184],[4.686467500063372,52.41668782443695],[4.686444074419433,52.416681933705085],[4.686429703181979,52.41667978151298],[4.686409521037285,52.41667328081492],[4.686385046649452,52.4166686421565],[4.686337003532623,52.41666344164433],[4.686302431189389,52.41665970492389],[4.686274038663671,52.416661154750095],[4.686261975016403,52.41666180240024],[4.686251545203025,52.416661381182514],[4.686245711557404,52.41665847057982],[4.686241210677963,52.4166549387179],[4.686232983637869,52.416645362999986],[4.686223379746639,52.41663919448987],[4.686204236458496,52.416632070758894],[4.686187896209639,52.41663359187501],[4.686154429608609,52.41663986504828],[4.686125985882965,52.41664455013539],[4.686097540728831,52.41664932508493],[4.686085184547097,52.416649881108135],[4.686071479949324,52.41665204694989],[4.68605200760931,52.41665642560001],[4.686029200275397,52.41665790842123],[4.686009157717502,52.41665652252528],[4.685992198587272,52.416655352606654],[4.685979381547566,52.416657164179824],[4.685955697037477,52.416667629571094],[4.685942838731066,52.416672047351085],[4.685917186139664,52.4166768387867],[4.685886676122405,52.41668205085212],[4.685875301824246,52.4166855786318],[4.685833488644333,52.416689824995274],[4.685822833581274,52.416694345683176],[4.685811609100076,52.41669769458815],[4.685807449594061,52.41669766996327],[4.68579955682118,52.41669762323646],[4.685781964880563,52.4166946429984],[4.685773923730365,52.41669189905865],[4.685753997208478,52.41668782646151],[4.685746113002741,52.4166844543047],[4.68573689175527,52.41668197300866],[4.685724791089983,52.416684957206726],[4.68572077853658,52.41668771965948],[4.685716716168008,52.41669362753871],[4.68571031067385,52.41669898227769],[4.68568933926923,52.416686634728904],[4.685680874269555,52.41668280973994],[4.685671360491573,52.4166802368289],[4.685662119321782,52.416679013697724],[4.685641851885086,52.41667790502911],[4.685625685625055,52.416677719420655],[4.685605349503551,52.41667166706211],[4.685597545385651,52.41667251962444],[4.685572740464965,52.416679473071746],[4.685563623499651,52.41667968871265],[4.685555698025446,52.41667892275385],[4.685534946601845,52.41667125012386],[4.685524560927088,52.41666804289289],[4.685501851806102,52.41666332462867],[4.685483031389586,52.416663662547336],[4.685460938994766,52.416666407782444],[4.685445507634294,52.416666226502215],[4.685434310184991,52.41666786785417],[4.685425160472502,52.41667015047899],[4.685408758955617,52.41667553586877],[4.685397861156168,52.4166768194812],[4.685385807459872,52.41667683795674],[4.685356160436146,52.41667396599915],[4.685340876052456,52.41667378557602],[4.685322186944469,52.41667511290245],[4.685307894386264,52.41667727517276],[4.685296972373339,52.41668008655449],[4.685272306970952,52.41667823274476],[4.685262603513002,52.41667835500992],[4.68525081528974,52.41668017259989],[4.685241955250488,52.416682726560175],[4.685232336103037,52.416686803944074],[4.685215613537124,52.416693895082474],[4.685207952113982,52.41669501809799],[4.685200888576681,52.416695515511265],[4.68518855088777,52.41669490313967],[4.685180816551715,52.41669135207761],[4.685173828506733,52.416687086415024],[4.685168608483609,52.41668256159531],[4.685161464915845,52.416678834277036],[4.68515574555723,52.41667799148621],[4.68514613922281,52.41668126003918],[4.685140833736542,52.41668212737772],[4.68513219616604,52.41667991912652],[4.685123002019269,52.41667573026561],[4.685111740198025,52.41667215829521],[4.685101470193254,52.4166709290233],[4.68508942504587,52.41667040825275],[4.685067576474855,52.41666704317142],[4.685055752387896,52.416661850063626],[4.685047859692372,52.416659017076384],[4.685039795799979,52.41665771099601],[4.685033615564612,52.416658123756584],[4.685024264716914,52.41666382051361],[4.68501723703527,52.4166713285943],[4.685017478279383,52.416674655501474],[4.68501622551442,52.41667950147596],[4.685010267998186,52.4166844094437],[4.684997976137886,52.416690178645304],[4.684987519260013,52.41669146483342],[4.684976796919148,52.41669095189178],[4.684967669975213,52.41669179657202],[4.684946683329018,52.416689694866044],[4.684934546769145,52.41668566830496],[4.684924973189123,52.41668686984553],[4.684917735598012,52.416689073887824],[4.684903901051792,52.41669016029125],[4.684893922156728,52.416689112482494],[4.684882303694119,52.41668949299789],[4.684872273500089,52.4166916804829],[4.684856603953225,52.41669724989118],[4.684849775943221,52.41670143366829],[4.684830005228373,52.416706079982546],[4.68479333173263,52.416701368672584],[4.684779666961439,52.41670101802375],[4.684774477090545,52.41670386334233],[4.684770570124597,52.41670923284439],[4.684765220446248,52.41671288611496],[4.684739489138424,52.416713362696484],[4.684724321965991,52.41672432773211],[4.684713990671603,52.416726962807246],[4.684701667234286,52.41672545169177],[4.684695669599214,52.416723618573265],[4.684681722266873,52.416722547215564],[4.68467283367859,52.41672689851951],[4.684658623907281,52.41673310570219],[4.684642250783504,52.41673669359922],[4.684627685596691,52.41673750600439],[4.684606161071782,52.41674151273668],[4.684597867516596,52.416745418174976],[4.684589996365049,52.41675049452861],[4.684571576925811,52.416753351258194],[4.684562126065033,52.416756081419415],[4.684517614318096,52.416763636792254],[4.684502890735062,52.41676516726484],[4.684489771090367,52.416767516148994],[4.684481040859767,52.41677114935571],[4.684463202192787,52.41677445890209],[4.684405874804064,52.41679299318198],[4.684395366550315,52.41679751461289],[4.684385336307938,52.416799702056515],[4.684372319419865,52.416804837748096],[4.684363456453232,52.416807571381135],[4.684341383883178,52.416809058236716],[4.684335070901851,52.41680857139575],[4.684308687440632,52.41681308851463],[4.684299533362024,52.41681564066018],[4.684285467637081,52.41682202840848],[4.684277011370967,52.416826921514456],[4.684236781947962,52.416842501310995],[4.684198260558554,52.41685233905167],[4.684158930079381,52.41686684562271],[4.684141490920662,52.41687276394692],[4.684133524068565,52.416874604102766],[4.684122624757178,52.41687597746701],[4.684115681054551,52.416878183204545],[4.684103296253884,52.416880536406914],[4.684098587201238,52.41688086797184],[4.684090949969661,52.41688046313676],[4.684086823128863,52.41688115766752],[4.68407372058522,52.41689168548442],[4.68404914220968,52.416902864213604],[4.68403698002321,52.416909712618825],[4.684021036309341,52.41691402200106],[4.68401325066636,52.41691370615789],[4.684006482467207,52.41691411537533],[4.684001597895273,52.41691624345005],[4.684000362133461,52.41692001098172],[4.683996784683429,52.41692313547004],[4.683985218963048,52.41692944814361],[4.683972348970325,52.41693458466343],[4.683959664479399,52.416937295583075],[4.683954147750827,52.416942206114435],[4.683949083375397,52.416946400308504],[4.683935103172642,52.416947395856795],[4.683929054170542,52.416948797994365],[4.683891764111704,52.41696439512231],[4.683860858379705,52.41697598564012],[4.683848410746738,52.41698229306488],[4.683810761039431,52.416992764999385],[4.683791525199751,52.41700073979412],[4.683758317662233,52.4170184283075],[4.683725669471897,52.417037917688305],[4.683702134062167,52.41704820376098],[4.683648753003143,52.41707736668601],[4.6836324738327,52.41708428047951],[4.683589619718695,52.41709849630401],[4.683569100944801,52.417103946866014],[4.683562892080507,52.417106156935496],[4.683548175489579,52.41710723794263],[4.683543141038634,52.41710954486394],[4.683537764084176,52.41711490559503],[4.68353247128879,52.417124221447686],[4.683526328019046,52.41713155493779],[4.683512821448755,52.41713974347126],[4.683496986031129,52.41714648012636],[4.683482787383392,52.41715196821255],[4.683465911670558,52.417159417706564],[4.68345037162768,52.41716606623217],[4.683444716401048,52.41717043665064],[4.683435757633208,52.41717919145616],[4.683432369940932,52.41717962072155],[4.683424976647078,52.41718236301477],[4.683418005730508,52.4171862762276],[4.683408323475032,52.417194307711114],[4.683403377439843,52.41720030014036],[4.683397562371526,52.41720547850698],[4.683387202325851,52.417209910851575],[4.683373123491832,52.41721710731409],[4.683357195199675,52.417229685453954],[4.68334746865234,52.41724050288027],[4.683332173968071,52.41725020869231],[4.683316434050146,52.41726018149048],[4.683298001338988,52.41727310425432],[4.683266982402959,52.41729179428924],[4.683248234277614,52.41730606333788],[4.683218724960866,52.41733150316266],[4.68321180242497,52.417341618217],[4.683209372166114,52.41734654705368],[4.683202208514512,52.41735333519725],[4.683194649626801,52.417357244903144],[4.683180537860269,52.417366508335896],[4.683168301131437,52.41737802985346],[4.683160847791464,52.41738454663978],[4.683152822237913,52.41739007136978],[4.683144080346907,52.41739442343136],[4.683128801279001,52.41740314065455],[4.683048177677247,52.417444544544516],[4.682973929279877,52.41751025327196],[4.682938432000407,52.41753323073464],[4.682917313586354,52.41753939664213],[4.682885593902661,52.41754666793535],[4.68282715639627,52.417551713190356],[4.682807263834896,52.41755474064438],[4.682787187128332,52.41756010382218],[4.682748479220231,52.41757236668463],[4.682726886939874,52.41758059692943],[4.682692382864889,52.41759656975849],[4.682673006727385,52.41760409414939],[4.682655243096325,52.4176118977595],[4.682640710203676,52.41761990033518],[4.682630272788151,52.41762918555334],[4.682626127004724,52.417640305742076],[4.682627991759672,52.41765245033045],[4.682637152728616,52.41766796378585],[4.682664571860798,52.417700033447574],[4.682673276180957,52.41771653283988],[4.682684880129693,52.41773556605143],[4.682699517830176,52.41775794277871],[4.682717544966459,52.417770542981714],[4.682715120099488,52.41778436973898],[4.682703092762104,52.41780119524168],[4.682692812053829,52.4178191096624],[4.682678718363619,52.41783646214188],[4.68266361722578,52.41785246046233],[4.682655699651015,52.4178696699102],[4.68265186757016,52.41788879108583],[4.682649626566446,52.417909539522746],[4.682637620613636,52.41792501697931],[4.682622596629435,52.41793616235398],[4.682592744502983,52.41794614100874],[4.682583196322039,52.41794572471244],[4.682564479710392,52.41793950171023],[4.682516618147181,52.41791728687269],[4.682488120903394,52.417906781429316],[4.682459660550942,52.4179031967864],[4.682372311539317,52.417896026219715],[4.682342058805128,52.417894228440865],[4.682317615307906,52.4178968692271],[4.682297662485794,52.417903671103794],[4.682277516904803,52.41791334791878],[4.68225105676802,52.41792262764738],[4.682225844004913,52.417927420903986],[4.682200885149435,52.41793473224359],[4.682189763792553,52.41795003516359],[4.682182563765798,52.41796832738343],[4.682171032555125,52.41799090796181],[4.682159998073931,52.41800998626212],[4.682148006228567,52.41802456497582],[4.682130132548878,52.4180300310308],[4.682104668664775,52.41803212643442],[4.682078786719672,52.41803278130018],[4.682057337166425,52.41803202449637],[4.682034957066548,52.418034317994255],[4.682018289283595,52.41803790377668],[4.682009913698947,52.41804693157907],[4.68201678003067,52.41805883631317],[4.682047960432805,52.418094703369185],[4.68205467148835,52.41813482879491],[4.682054118054383,52.41819729054707],[4.68204421472594,52.41821179180255],[4.682041776354199,52.41821537240037],[4.682027268516094,52.41823101466002],[4.682022548504211,52.418250490041295],[4.682039027904085,52.418351071462695],[4.682048085018678,52.418391570360875],[4.682064150198773,52.41843507693342],[4.682099038805286,52.418459641444066],[4.682095760411615,52.418471665552914],[4.682085573728498,52.41848364854764],[4.682079580926281,52.418499970633704],[4.682083263373359,52.41851796810113],[4.682096715423852,52.41855479917415],[4.682104251355588,52.41857543501658],[4.682117466770273,52.41858557997278],[4.682138831124014,52.418582471514],[4.682155397895956,52.41857600902496],[4.682178059359071,52.41857452607752],[4.682205073155723,52.41857666413424],[4.682227095181221,52.41857841297172],[4.682245843829548,52.418573401496765],[4.68226697141247,52.41856669649593],[4.682286694595113,52.41856510616751],[4.682308880766534,52.41856577743341],[4.682331763248216,52.41856887953703],[4.682362542886354,52.418574545194396],[4.682389913271315,52.418581988117744],[4.682409180888459,52.41859055124499],[4.682428360159032,52.41859542885568],[4.682470858276282,52.418596310793106],[4.68245586438144,52.41861293886806],[4.682436760278796,52.418621813005174],[4.6824096091566,52.41862830244878],[4.682366653686065,52.418630293856815],[4.682309670241965,52.41863624628935],[4.682249224931857,52.4186380437197],[4.682185431855666,52.41863775400987],[4.682142173811871,52.41864028280261],[4.682088880697751,52.41864526843461],[4.682054420302662,52.418649197719475],[4.682033178572079,52.418653834814855],[4.682019580079009,52.418658517398946],[4.68200537901537,52.41867150109949],[4.681999963789503,52.41869862992501],[4.682001102287709,52.418701908251776],[4.68201147920175,52.418714912412504],[4.682026054709524,52.41872272865223],[4.682255396995054,52.41871204983405],[4.682296470007463,52.418717507119545],[4.682334443459506,52.4187237548504],[4.682359839082507,52.41872597312205],[4.682360455278119,52.41872604869007],[4.682334479990237,52.41873993306296],[4.682307850930648,52.41875055996592],[4.682213138132238,52.41878109413441],[4.682210240976363,52.4187876379712],[4.682226631869898,52.418792229389],[4.682245401372551,52.41880438468845],[4.682261594883942,52.418821378056435],[4.682272606707598,52.41884067741364],[4.682286263615009,52.41887850732344],[4.682285791605871,52.41890816417214],[4.682276818363507,52.41894549992692],[4.68226598434443,52.418979678888306],[4.682256851210417,52.419017822589524],[4.682255158943502,52.41905025838701],[4.682266800995158,52.41908537997657],[4.682298914390461,52.419155046537824],[4.68230110498388,52.41919289810067],[4.682299453885893,52.41923198509531],[4.682303468071247,52.41927533004926],[4.682320735464889,52.41931722592985],[4.682341130007376,52.4193473664276],[4.682350580258725,52.41938166606707],[4.682348892010717,52.41942308966088],[4.682342946825253,52.41946412841828],[4.682341519647467,52.41950762075242],[4.682348085618983,52.41954765540682],[4.682357168999757,52.41958653662604],[4.682356398436548,52.41962571873417],[4.682349612448721,52.41967340344059],[4.682346773694259,52.4197224597947],[4.68235299059369,52.41974748278899],[4.682371183699067,52.419768173019676],[4.682391877067689,52.419788788243075],[4.682397057926168,52.41981425446011],[4.682392493475026,52.41983319150869],[4.682380970781177,52.41984597547841],[4.682362219855425,52.41986033424596],[4.682348387895907,52.419879665549054],[4.682338490315676,52.41990117732227],[4.68233442940257,52.41992542015002],[4.682337933613421,52.419945393852885],[4.682353436964177,52.41995959688697],[4.682379455260728,52.419968919195654],[4.682417424076503,52.41997552637704],[4.682456247672033,52.41998384630735],[4.682487520460509,52.41999553666738],[4.682507777601719,52.420006622235334],[4.682515240617001,52.420027248622105],[4.682512035768674,52.420042041409836],[4.682510163727654,52.420050676512666],[4.682485998673452,52.420100414921144],[4.682475501409536,52.42013189956522],[4.682459758236159,52.42016047691803],[4.682444263567438,52.420182674428446],[4.682422668214921,52.42020025188376],[4.682400603585573,52.42021036669258],[4.682382409009624,52.42022670608223],[4.682383995235234,52.4202471177613],[4.68239372713534,52.42027297055953],[4.682385458940984,52.420302940533624],[4.682368238265129,52.42034121587828],[4.682344454447801,52.42037621657804],[4.682326496221731,52.420405409878924],[4.682329852044353,52.42042547257475],[4.682358484987614,52.42043678775083],[4.68238832931318,52.420455120588045],[4.682390870357593,52.42046079800009],[4.682396847030727,52.42047413545539],[4.682391899538398,52.420507900046424],[4.682379374730788,52.42056516752347],[4.682354699747089,52.4206561567394],[4.682322957253018,52.420757080329224],[4.682298090628625,52.420813914859984],[4.682278096158002,52.42086943020677],[4.682252278791292,52.42093057320069],[4.682225773242338,52.420998003533455],[4.682195761942045,52.421082489764245],[4.6821601629315,52.42121322975545],[4.682152277418113,52.421265311901394],[4.682144196247144,52.42132044872393],[4.682148975846046,52.42135265338356],[4.682160667420098,52.42137546201384],[4.68217871124492,52.42139633113179],[4.682188109588338,52.42141544112773],[4.682184175961508,52.42141966893681],[4.682172554617529,52.42143215570058],[4.682147669233739,52.42144396135417],[4.682126251617704,52.42145956250202],[4.682107538177594,52.421480752155986],[4.682091397654471,52.421506540881374],[4.682077610462756,52.42153225373198],[4.682063557495705,52.42156542484835],[4.682038593813864,52.42163753794952],[4.682024064418489,52.421663695764785],[4.682010624474807,52.421676827796006],[4.681991390566535,52.42168453267877],[4.681969235345938,52.421691051760504],[4.681947807940699,52.42169802455875],[4.68192292419523,52.42170048289443],[4.681900354153488,52.42169612429251],[4.681881486197511,52.421690080047966],[4.681860667228984,52.42168654076159],[4.681840631473268,52.42168920769546],[4.681827287369941,52.42169631847078],[4.681810694606595,52.42171356608402],[4.681798281679624,52.42173605148635],[4.681778783960719,52.421797231994894],[4.681727088504235,52.421941627297144],[4.681722165642021,52.421983031603396],[4.681736654389643,52.42200558729446],[4.68176581033695,52.42202104009433],[4.681801309073749,52.422025925080895],[4.681838453408576,52.42202902229943],[4.6818767761576,52.42204120416823],[4.681895745036194,52.42205938250168],[4.681899401935155,52.42207899760686],[4.681896554303524,52.422095338395735],[4.681893255003128,52.42211419307128],[4.681877399680426,52.42216820505813],[4.681855331788021,52.42222460675671],[4.681820784363541,52.42228920290444],[4.68178919959937,52.42232469630916],[4.68176487636483,52.42235654795384],[4.681735496993363,52.42241047940035],[4.681686531079766,52.42252190581116],[4.681659626135499,52.42257737989221],[4.681633999724813,52.42263564778842],[4.681601406449931,52.42270304171404],[4.681584621434012,52.42273601674343],[4.681577228490903,52.42276635137291],[4.68158328691992,52.42279209246941],[4.681596268638136,52.42281697601796],[4.681593702810907,52.422839609913524],[4.681580366422663,52.42285543884185],[4.681556279229362,52.42286322260504],[4.681555244792258,52.42286355797965],[4.681447046494921,52.42288178787025],[4.681410801564145,52.422886784881115],[4.681380410821516,52.42289343455248],[4.681354074462587,52.422903973109136],[4.681328206306161,52.42291280677326],[4.681320715948859,52.422921570162735],[4.681345941499299,52.422943830349546],[4.68135949447402,52.422960538457936],[4.681367143119026,52.422978739312846],[4.681372403964433,52.42299917288509],[4.681392148148384,52.42301483933819],[4.681409510794906,52.42302312163221],[4.681418562677651,52.42303629769218],[4.681423705198619,52.42305493300336],[4.681417437577463,52.42306999511947],[4.68140125845102,52.423079695412206],[4.681383335368857,52.423088127026666],[4.681374352073509,52.423098319568844],[4.681378993955406,52.42311146936119],[4.681394361127696,52.42312504255311],[4.681411498041878,52.42313826677398],[4.681424986910046,52.42315439028704],[4.681402793218537,52.42319555687892],[4.681391767654326,52.42320474860253],[4.681386469137861,52.42320604722968],[4.681373171108691,52.423209311463744],[4.681284680876827,52.4232361969867],[4.681223722646332,52.42326055015915],[4.681106319434109,52.42332123703672],[4.681051710089825,52.4233530878024],[4.681016379305743,52.423383705279306],[4.680986986051484,52.42342918795111],[4.680938828526858,52.423508173019975],[4.680908437803528,52.42357009734024],[4.680837207986595,52.42366692036778],[4.680796171208224,52.423732645931565],[4.680773358195448,52.42378032484291],[4.680749308129782,52.42382260371392],[4.680738710478965,52.42385103174913],[4.680732358689043,52.423880563630654],[4.680732138666042,52.42390357100168],[4.680739351273846,52.423930667183186],[4.680740969175042,52.42395826927317],[4.680730461140984,52.423990292947934],[4.680704668473386,52.42404963817505],[4.680693961771609,52.42408489625754],[4.68067876752121,52.4241249809746],[4.680662193538886,52.4241593951695],[4.680637266126429,52.42419214175197],[4.680596812930294,52.42423045803572],[4.680559034442779,52.424285417624475],[4.680490540572508,52.42437650458322],[4.680478621736773,52.42439557743646],[4.680498559839731,52.424417536625405],[4.6805082234181,52.42443844587803],[4.680504375486251,52.42445846564624],[4.680494399247782,52.42447557277835],[4.680475546781164,52.42449613219686],[4.680454695035036,52.42451299470344],[4.680433432379278,52.42452796732454],[4.680410614333167,52.42453906592474],[4.680378165671707,52.42454561318893],[4.680355699739223,52.42454386137385],[4.680336213322242,52.42454886815362],[4.680319274685053,52.4245692592092],[4.680310282156682,52.42459841580052],[4.680290225492056,52.42462993307978],[4.680250137236249,52.42468218245865],[4.680200202383631,52.4247341933167],[4.680101025271892,52.42481323311444],[4.680052462754444,52.42485293886095],[4.680012292412381,52.42489188577608],[4.679981244169198,52.4249396052563],[4.679980982776513,52.424940322717376],[4.679960965247698,52.42499421970956],[4.679949204878358,52.42504016687274],[4.679930772604282,52.425080411918074],[4.679827866817883,52.425199514662545],[4.679775773719297,52.42525771401403],[4.679685241591959,52.425375272709346],[4.679641561111841,52.425440622567116],[4.679614823236842,52.42549456924554],[4.679606808849334,52.4255268773392],[4.67958827069774,52.425564515245284],[4.679560131011137,52.425604971892376],[4.679518288803766,52.42563806660711],[4.679483805583502,52.42567066599446],[4.679446837087159,52.425720776667866],[4.679412556816268,52.42577746445508],[4.67936160456518,52.42584699502005],[4.67935182849876,52.42586440883388],[4.67933496953785,52.42589447105733],[4.67931338065722,52.42594817879196],[4.679272427129976,52.42600842177601],[4.679186276119133,52.426118456536486],[4.679082455944887,52.42625768575302],[4.678995019054093,52.42638371090725],[4.678878441939704,52.42658505901879],[4.678742804624276,52.426801392496834],[4.67867486053051,52.426921961538646],[4.678635087741645,52.427000186882914],[4.678615299990067,52.427079070989116],[4.67860357649065,52.42712259153136],[4.678597223117799,52.42716129079419],[4.678590750525503,52.42717895797954],[4.678588459349628,52.42718523571175],[4.678571770090252,52.42721749185136],[4.678554724621987,52.427244443078486],[4.678529265126112,52.42728266856281],[4.678498598542982,52.427333895154014],[4.678477316350916,52.42738670578525],[4.678464426586507,52.42742959019301],[4.678462722852061,52.42747173260639],[4.678481081062007,52.42756486574301],[4.678496517144557,52.42763847795532],[4.678491071882986,52.42768473235988],[4.678446230212298,52.42775807392481],[4.678435351056287,52.42780393631385],[4.678398519638654,52.427909591834236],[4.678364430215691,52.42813785680225],[4.678337239879091,52.42825660222248],[4.678334264134581,52.42837818881989],[4.678325873674296,52.42841552770949],[4.678270179748476,52.42851459915148],[4.67824416177491,52.42872538621747],[4.678242326127815,52.428803299111394],[4.678235403797211,52.42887749658945],[4.678239315543466,52.42892704254749],[4.678233565979775,52.42898309176646],[4.678209414217204,52.429086486251364],[4.678225148954513,52.42911390318082],[4.678232049066448,52.4291237411213],[4.678239584992664,52.429139784419014],[4.678209131680596,52.42914086050312],[4.6782103095192,52.42914994518682],[4.678168645250217,52.4291532910009],[4.678167554456468,52.42916631672468],[4.678213423323394,52.42916668104868],[4.678208567567189,52.42923118410493],[4.678213718077557,52.42924928031612],[4.678232161122174,52.429272848711214],[4.678255181275773,52.42932277861967],[4.678272215604013,52.4293792337761],[4.678278693837114,52.429419097290086],[4.678279496967471,52.42942403637414],[4.678282288242772,52.4294306141366],[4.678264109971879,52.429510802016786],[4.678260670525333,52.429600721935714],[4.678287140585542,52.429630800540316],[4.67827828684064,52.42965665029161],[4.678245446308377,52.429692926140504],[4.678158766017148,52.4298188742616],[4.678121285307035,52.42987494930468],[4.678112653372293,52.429887857999205],[4.678104046424767,52.429964391178444],[4.678096061145182,52.43004801042885],[4.678095129441512,52.430061198881326],[4.678085522584679,52.430165273549],[4.678082786505898,52.43019656153419],[4.678081385533893,52.43021242552961],[4.678075515890238,52.43024657084497],[4.67807087934415,52.43027349738226],[4.678063395541506,52.4302798968193],[4.678059990468219,52.43028501743943],[4.678056540567263,52.43029018272996],[4.678056073565754,52.43029088098034],[4.678045663032933,52.430306502315894],[4.678053234665131,52.430314816363634],[4.677991923279532,52.43037334621106],[4.677936556754034,52.43042699530569],[4.677925517686206,52.43043503618959],[4.677889516225992,52.430438191109886],[4.67785233173848,52.4304546138544],[4.677842469532242,52.43046078333419],[4.67781071473989,52.430480626952594],[4.677772171620576,52.430522189282286],[4.677724509062535,52.43055843017543],[4.677701502746308,52.43061132019693],[4.677655197657248,52.43064358761351],[4.677658578368202,52.43067577503687],[4.677659867165221,52.43068802407806],[4.67760090138693,52.430746927277696],[4.677570294465757,52.430749260568],[4.677548461782341,52.4307509273752],[4.677476508676903,52.43075042455647],[4.67742283856487,52.43074312860638],[4.677333560780451,52.43073366899104],[4.67729216679301,52.43064944840659],[4.677198595103984,52.43064644313759],[4.677196217803487,52.43061038798824],[4.677195543764776,52.430600155882104],[4.677382065833293,52.43060363707057],[4.677404614852449,52.43060405974457],[4.677431432562686,52.430595025898405],[4.677459800008759,52.43057828983261],[4.677466829850889,52.43056627935437],[4.67746939740692,52.430545533013536],[4.677452073158471,52.430531965593296],[4.677423694748399,52.43052645689297],[4.677423677589325,52.430525692830805],[4.677418998952473,52.430317661141736],[4.677418806365868,52.43031591636324],[4.677417933095472,52.430308019881615],[4.677419078512369,52.43029894011951],[4.677434667187541,52.43007038493456],[4.677434589935725,52.43005410764228],[4.677449627892631,52.429816786081346],[4.677480187620182,52.429419251803616],[4.677482958656629,52.429416994496975],[4.6774916145222,52.42940993702124],[4.677488480463824,52.42940365378271],[4.677484046157123,52.42939960070867],[4.677479293158885,52.429395249129655],[4.677462038323202,52.42938930374117],[4.677449486720776,52.429383476397916],[4.677442847650662,52.42937570716002],[4.677441411937234,52.4293643739841],[4.677441959525265,52.429348558807675],[4.677453321658671,52.429318517868026],[4.677456832703843,52.42930128239948],[4.677465648011668,52.429283359679474],[4.67748469420321,52.429264689335966],[4.677493208447027,52.429252705719634],[4.677521774536658,52.42921251277566],[4.677553916643291,52.42916111552859],[4.677572691590091,52.42912725423282],[4.677582652512411,52.4290928907642],[4.677589905129556,52.42906237581294],[4.677590293897654,52.429028943674986],[4.677592350290872,52.42899237580718],[4.677591363035102,52.42887966338598],[4.677581731454062,52.42884760928237],[4.677573371313787,52.42882796590075],[4.67755868082552,52.4288179913893],[4.677542512951942,52.42880845741631],[4.677535592876783,52.42879987760104],[4.677536064082619,52.42878882547797],[4.677544184592322,52.42877754953225],[4.677552715907038,52.42876816347581],[4.677572906356307,52.428756061034804],[4.67757653562966,52.42874979133663],[4.677569624895102,52.42867640982706],[4.67756299627669,52.428567078962956],[4.677535929073021,52.42856698876629],[4.677528739594792,52.428566963684766],[4.677527842886007,52.428549522058745],[4.677530375225112,52.428538302523854],[4.677538217970075,52.42852967630409],[4.6775546213802,52.428511664202645],[4.677560559609486,52.428498937144624],[4.677562665286749,52.42848681627775],[4.677534122848115,52.42838795972909],[4.677532019553006,52.42838066704622],[4.677525432374581,52.428360495011276],[4.677514434678603,52.428340296561046],[4.677509493513786,52.42831833683084],[4.677508521821036,52.42829640087401],[4.677514242341692,52.42827890900045],[4.677523632525943,52.42826179861471],[4.677526104929236,52.428254317629],[4.677536148752887,52.42822394522119],[4.677546491595777,52.42820243653585],[4.677559880014803,52.42818355253939],[4.677568408223939,52.42816517870117],[4.677570884251835,52.428148296537735],[4.677566291951033,52.42813209106559],[4.67755619378074,52.428119986990374],[4.677539159905669,52.42810945917441],[4.677517878400247,52.42809791726288],[4.677516348841385,52.42809702730164],[4.677496029005664,52.42808511365965],[4.677462702163767,52.42806370293473],[4.677452599715767,52.428051868457544],[4.677443422507381,52.42802817567587],[4.677438846191511,52.42802014915704],[4.677433461247922,52.42800753403606],[4.677438063331994,52.42799560787826],[4.677462038344133,52.42797669742506],[4.677462914594631,52.427967894666835],[4.677457594557395,52.427960402959776],[4.677449368771422,52.42795073678524],[4.67744496540822,52.42794109350531],[4.677453336601116,52.42793251539444],[4.677491187256791,52.42791018281722],[4.677504225035641,52.42790124617854],[4.67752017658668,52.427890313730586],[4.677540636088199,52.427870573308205],[4.677547900155258,52.427848506917215],[4.677554048478193,52.42781349146645],[4.677563429587915,52.427769417735696],[4.67757144987766,52.42770933763764],[4.677571288244287,52.42769190041087],[4.677567132821586,52.42768513470373],[4.677554845471504,52.42768119638021],[4.677543208755933,52.42767886177365],[4.677534341987679,52.42767708302087],[4.677523921755822,52.427674989379724],[4.677499708894007,52.42767205815879],[4.677483625085993,52.42766647929261],[4.677477644997492,52.427663477513725],[4.677300253794328,52.42764974216086],[4.677297304507213,52.42764111421525],[4.677289720425471,52.42761894090741],[4.67720856520484,52.42760946691309],[4.677211352659715,52.42759150808918],[4.677305269603105,52.42759917110657],[4.677311201804477,52.42759965603387],[4.677325791851599,52.42752415635526],[4.677489655759181,52.42753790053097],[4.677517138881848,52.42753860439974],[4.677526824179136,52.42750307086576],[4.677507719189923,52.427475004501574],[4.677497773960866,52.42746254182451],[4.677498684670525,52.42744241469034],[4.677527881294398,52.42738757545745],[4.677632994909199,52.427190123632926],[4.6776460117297,52.42717330458452],[4.67768741769652,52.42711531181355],[4.677723864797921,52.42707041147158],[4.67775592044389,52.427042651454045],[4.677761713263973,52.42703806642603],[4.677793894006413,52.42701259003912],[4.677827292516465,52.42696524471758],[4.677844982517628,52.42693479222285],[4.677863394432085,52.42689598542686],[4.677873853802773,52.4268726798537],[4.677895107454916,52.42682535168817],[4.677914172287409,52.42679167181743],[4.677937748405592,52.42676089503095],[4.677968092805901,52.426729799240185],[4.677972576473923,52.42672708480865],[4.67800595080757,52.42670692727639],[4.678042086571611,52.42669060606089],[4.678064865811601,52.426672856737405],[4.678082619070603,52.426647617488044],[4.678100872349766,52.42661869624507],[4.678164003062916,52.42653252185426],[4.678165050107695,52.426530487897104],[4.678200733870385,52.42646065976966],[4.678239525836987,52.42639779776941],[4.678295186932047,52.42630061354272],[4.678362869271806,52.42619640086802],[4.67836472635794,52.42617223489094],[4.678373200339232,52.42614801861873],[4.678399952194127,52.42611168832217],[4.678434894559227,52.426068845943284],[4.678459846237745,52.42603475180639],[4.678490770619029,52.426004108737885],[4.678521268617367,52.42598173185477],[4.678543287491185,52.42595633829135],[4.678572466196816,52.425878588873765],[4.678589764875331,52.425854155726995],[4.678609943642587,52.42584268218227],[4.678633755925033,52.425833836813915],[4.678653568420022,52.42581768743377],[4.678655614375417,52.42580008364876],[4.678653081147108,52.42577463312601],[4.678718552392556,52.425670676654725],[4.678767579246503,52.425583698584404],[4.678817231685962,52.425503554934586],[4.678909304016176,52.42538178185198],[4.678967529433147,52.42528955589965],[4.679022446742756,52.42519272638608],[4.679056823161374,52.425157609917214],[4.679099904968973,52.42512973567457],[4.679146908047984,52.42509568328994],[4.679193536130713,52.42505749427377],[4.679242580890856,52.425015275183796],[4.679272996445807,52.42497959572075],[4.679296609439315,52.42494639218362],[4.679301446577975,52.42493626490672],[4.679312276883915,52.42491359056181],[4.679318350598429,52.42489232584184],[4.67933400124419,52.4248697701699],[4.679361142754865,52.42484575522053],[4.67940204532535,52.42482541757343],[4.679430695611484,52.42479898492391],[4.679441843572548,52.424772986990845],[4.679452618011148,52.424742762575455],[4.679477101285413,52.42471028322134],[4.679574835984993,52.424620360129154],[4.679626780688817,52.42457141737353],[4.679659788044202,52.424529911239354],[4.679687759845386,52.424490711847575],[4.679710192803486,52.424448513414326],[4.679720782968277,52.42440219977101],[4.679721531235767,52.424382970418094],[4.679738022444212,52.42437219368527],[4.67976983367613,52.42435953110924],[4.679797887381861,52.424342801596715],[4.679824651904493,52.42431473979516],[4.679842576907077,52.424278626105206],[4.679867422809898,52.42422340978421],[4.679893731509986,52.424168651577986],[4.679915147758587,52.424144063058776],[4.679927675713562,52.424114478208935],[4.679913382170223,52.4240981250301],[4.6799155021808,52.42407584802255],[4.679929603492322,52.424039801371535],[4.679999855676722,52.423875474918745],[4.68002590095233,52.423809570276724],[4.680037410770371,52.42375166786951],[4.680044488345391,52.42368591965042],[4.680055617190098,52.42364266502799],[4.680063367662529,52.42361763541087],[4.680082828212751,52.423577396472204],[4.680109054467173,52.42352776074918],[4.680173790200767,52.42345103200083],[4.680186270436905,52.423424412799655],[4.680188023881429,52.42339745995805],[4.680196066802749,52.42337252195415],[4.680210103096381,52.42334051937409],[4.680233705236604,52.42329868732302],[4.680279645957884,52.423202073281026],[4.680303141802484,52.42316689153001],[4.680340645665034,52.42312909701227],[4.680369418339155,52.42310410290632],[4.680384585216859,52.42308415065903],[4.680381319705325,52.42306768356252],[4.680366147199292,52.42305114543532],[4.680348561025276,52.42303845764749],[4.680337318807378,52.42302436966062],[4.680340296163787,52.42300362567693],[4.680365297020202,52.422957038424855],[4.680384072163271,52.42293207455175],[4.680402790647895,52.42290144804328],[4.680410624682406,52.42288037351771],[4.68041691486567,52.42285470602014],[4.680438533141859,52.422808188452045],[4.679987309467211,52.422784015313084],[4.67998790429094,52.422782670697984],[4.679999620074415,52.422760648688254],[4.680035222414512,52.42269370456588],[4.680054288867288,52.42265786728073],[4.680099488562684,52.42264447562181],[4.680128585450549,52.42263783653307],[4.680168542171797,52.422628709714],[4.680195369080001,52.42262428603028],[4.680242777211204,52.422619895264226],[4.680256685452912,52.422614315953275],[4.680268757308967,52.42260405204397],[4.680351278765868,52.42257344668594],[4.680408694224247,52.422549971604624],[4.680461506782963,52.42252934512681],[4.680515985030905,52.422505672718586],[4.68054836261407,52.42249427160075],[4.680590652144578,52.42247897496738],[4.680608131268086,52.42247072058003],[4.680644782465423,52.42244945837514],[4.68065148483578,52.42244401580311],[4.680651291205716,52.422437723209796],[4.680646101080525,52.42243131094376],[4.680636382698808,52.4224230741204],[4.680623142107582,52.422414456781155],[4.68059634400248,52.422398658251225],[4.680591306623261,52.42239188738284],[4.680595961060133,52.42238580345688],[4.680604844016798,52.4223819018125],[4.680616782379261,52.42237999569759],[4.6806326452307,52.42238089919311],[4.680648525288404,52.42238072425678],[4.680665036349982,52.42237785675009],[4.680693084917486,52.42237056415278],[4.680707435450993,52.422364897548775],[4.680715348190149,52.42235730512552],[4.680717848488895,52.42233880522826],[4.680717963181532,52.422331615696386],[4.680721068003076,52.422321298273985],[4.680724860500512,52.422313950915786],[4.680725537376384,52.42230838253446],[4.680718929656946,52.422307893747],[4.680708160129975,52.42231025623001],[4.680696989752888,52.42231009974633],[4.680688783699239,52.4223084330166],[4.680675855765556,52.42229864913722],[4.680676561322147,52.42229128337314],[4.680681261616047,52.42228232363087],[4.680692633379435,52.42226064103619],[4.680702391028997,52.42223876906038],[4.680703407778868,52.422230326619285],[4.680697383672223,52.42221168601524],[4.680684566161222,52.42219498221201],[4.680681177301646,52.42218624386765],[4.680675863743785,52.42215071049148],[4.680661855264729,52.42214415576397],[4.680648390330057,52.42214039048481],[4.680636267009667,52.42213546479446],[4.680627103703888,52.4221292984668],[4.680612563862923,52.42210997793095],[4.68059278668256,52.42210563573584],[4.680570119058164,52.42210738798297],[4.680550511119834,52.42211086615026],[4.680534961002781,52.42210879609837],[4.68052536963255,52.422101818310296],[4.680524375781232,52.422090397914396],[4.680528691021362,52.42207793065079],[4.680553195698771,52.42205318067574],[4.680569591677494,52.4220381700185],[4.680575723432364,52.42203255327983],[4.6805868191342,52.422018958041185],[4.680592673141811,52.42200218582214],[4.680583742163991,52.42198146068815],[4.680570064293128,52.42196340357471],[4.680569629005475,52.42194461653827],[4.680579958857119,52.421923736638476],[4.680598262338424,52.421900657347315],[4.680615190473798,52.42187163792272],[4.680633871067917,52.421843347967865],[4.680668736954399,52.42181416587033],[4.680718647973915,52.42178183787481],[4.680750062720791,52.421775464113054],[4.680794337107296,52.42177393053151],[4.6808233274485,52.42176286865527],[4.680840281331735,52.42175065648329],[4.680870410184843,52.421723513273406],[4.680886273273231,52.42169673440364],[4.68091020388994,52.42167108215524],[4.680937039365972,52.42165686168633],[4.68096762074713,52.42164742705764],[4.681002403357385,52.421641882203],[4.681050876581548,52.4216351606452],[4.681135723527698,52.42162452145481],[4.681154548092736,52.42161483696152],[4.681154594517597,52.421602703747716],[4.681147201804055,52.42155924876165],[4.681149225758568,52.42149315576783],[4.681151174459959,52.42142993841135],[4.681166868503581,52.421386081731065],[4.68118528750195,52.421355722942494],[4.681213947667755,52.42134690594664],[4.681248395911535,52.421343875604144],[4.681281398559603,52.42133930871779],[4.681303253099686,52.421323979957485],[4.681324617591168,52.42129327918502],[4.681342675671749,52.421257885070005],[4.681357984706377,52.42122894577046],[4.681376992915594,52.4211985005843],[4.681394254360582,52.42116696645702],[4.681405624578059,52.42113611625543],[4.68141170444477,52.42110514466118],[4.681410584489437,52.4210739504228],[4.681401128357781,52.421049267599486],[4.681381792178576,52.42102650322875],[4.681352036690511,52.42100259825082],[4.681332546401973,52.420980282342164],[4.681321952521974,52.420962423440116],[4.681325170262335,52.42094500633294],[4.681342032561274,52.42092928831228],[4.681359311477862,52.42091510069239],[4.681371164007249,52.420909329249454],[4.681409094807471,52.42091836322191],[4.681430200722528,52.420913096282796],[4.681444551204677,52.42089817218492],[4.681462419991609,52.42087464078102],[4.681476563820387,52.42085423290746],[4.681486486378855,52.42083119343548],[4.681493793133547,52.42080625095028],[4.681499338834489,52.42078111821999],[4.681503894749615,52.42074429549044],[4.681509448098861,52.42070945601114],[4.681512253481977,52.42066255654964],[4.681504935459475,52.42063285331458],[4.681490728371489,52.42061110816347],[4.681468687769273,52.42059201268263],[4.681462014525467,52.42056797558153],[4.681466610035778,52.420537893916915],[4.68149012027845,52.42048320854004],[4.681498691393037,52.42045548737437],[4.681504364283912,52.42042882747841],[4.681516982691729,52.42040265833869],[4.68153750423874,52.420378693333305],[4.68155416390387,52.42035722190041],[4.68156423043664,52.4203343630331],[4.681570914770962,52.42028389155932],[4.68156838875818,52.42025790185182],[4.681558272214335,52.42022854146137],[4.681557090604773,52.42020121159418],[4.68156865707339,52.42017647422674],[4.681587983950702,52.4201536705075],[4.681599637908056,52.42014189402671],[4.681607257832934,52.42013419194553],[4.681628830568633,52.420118052546464],[4.681651786330514,52.42009814651457],[4.681662249342704,52.420078076208824],[4.681664903260947,52.42005912781106],[4.681662910738788,52.42000887429359],[4.681671729635689,52.41999050187318],[4.681679928104853,52.419964935538914],[4.681685968962056,52.41993639039098],[4.68168437064902,52.41990753012086],[4.681673859386056,52.41983835155088],[4.681667054901076,52.41981332502089],[4.681618768457296,52.419808453708974],[4.681604921975729,52.41981022273046],[4.681592548535369,52.419811802792],[4.681571579187882,52.4198085321873],[4.68156427603484,52.41979635519759],[4.681567346649243,52.41978077969769],[4.681569241143164,52.419777204858924],[4.68157580278918,52.4197648767609],[4.681603658670845,52.419723429263385],[4.681606398251168,52.4197175585867],[4.681613703556505,52.41970191842671],[4.681616721604215,52.41967856818782],[4.681624658521401,52.41966019051745],[4.68163835805555,52.41963995973095],[4.681651640949362,52.419618198540164],[4.681658447745118,52.41959693804981],[4.681669933827568,52.419577233345024],[4.681688182797625,52.41955747903232],[4.68169014897255,52.4195355605714],[4.681687939811966,52.41950813470533],[4.681682933584591,52.419480961816596],[4.681673510097225,52.41946346941982],[4.681650531751395,52.419457131021716],[4.681627830207963,52.41945187280042],[4.681613564256266,52.41944306970189],[4.681616407616908,52.419430683506306],[4.681623520784516,52.41941787334966],[4.681630016406589,52.41939768953998],[4.681635184837496,52.41937776745948],[4.681648026673837,52.419328321296106],[4.681659003479522,52.41930367028273],[4.681661099465115,52.41928283112707],[4.681646520958915,52.419247512235415],[4.681640803714316,52.41922806459531],[4.681624741529832,52.41918437823435],[4.681619535417145,52.41916052962712],[4.681620772399215,52.41913824731185],[4.681616211701407,52.41910156800512],[4.681617027482311,52.41905036052101],[4.681619691139603,52.418996656451746],[4.681617890077347,52.418996214312656],[4.68160733716795,52.41896842417956],[4.681603232262968,52.41889944552061],[4.681593537689866,52.41885376583636],[4.681585830989663,52.418792189627005],[4.681522228661541,52.41871440809434],[4.681504634986596,52.418686593989335],[4.681439358509932,52.418538616893436],[4.681407271452211,52.41844619318972],[4.681342882366659,52.41827670457908],[4.681338206675513,52.41826478589385],[4.681315718305894,52.418207453699374],[4.681302581044352,52.418173976848216],[4.681194709171994,52.4180617778008],[4.681181205172059,52.418051316447084],[4.68115289860887,52.41803716278048],[4.681132805768003,52.4180176923539],[4.681128498368222,52.41799835194999],[4.681125821598105,52.41797723269597],[4.681115656063058,52.41795007396389],[4.681101914869394,52.41792498807282],[4.681076998711221,52.41790655843553],[4.68105571441285,52.41789359703272],[4.681032410311804,52.417887463286185],[4.681022048262204,52.41788369855961],[4.681009948265441,52.4178709267074],[4.680986591817956,52.417832122067026],[4.680961668819622,52.41780214306915],[4.680934023321692,52.41777328029642],[4.680908388806216,52.41775289599227],[4.680886794311232,52.417739114821174],[4.680856025554754,52.41772544073059],[4.68082628285647,52.417715637494055],[4.680798786835712,52.417704139967626],[4.680766388600969,52.417674664611226],[4.680722685901705,52.417655358917294],[4.680703324301515,52.417646282647134],[4.680674006950127,52.417624564113865],[4.680600586481036,52.41756257794529],[4.680565622373408,52.4175225715278],[4.680543561018497,52.4174883133476],[4.680480493459781,52.41742791677345],[4.680471229691098,52.41740139250443],[4.680454819655236,52.41730684204235],[4.680419316918531,52.417204807698496],[4.68041008097383,52.41718299318561],[4.680390796301491,52.41716634961078],[4.680341564117428,52.417132504506526],[4.680305746058584,52.41712117291707],[4.680269001360662,52.41711816745947],[4.680204803040897,52.41711669685644],[4.680176140270913,52.41711202293209],[4.680153710250393,52.417098128783714],[4.680120897584411,52.41707256944225],[4.680092323033329,52.41704303582401],[4.680059533884574,52.41700219737882],[4.680024053898119,52.41697798823172],[4.679999905597954,52.41695940116341],[4.679963686864162,52.41693911524806],[4.679865732034526,52.41689482289065],[4.679819539390459,52.41686950713993],[4.679728095619844,52.416816077017984],[4.679690189187699,52.41679839638357],[4.67965446901785,52.41679016596358],[4.67961704322073,52.416780127789785],[4.679545011161818,52.41674642479584],[4.679505205619638,52.41673813397715],[4.679474127831853,52.41673375103998],[4.679394832846651,52.41672038885546],[4.679306085253555,52.41670065172773],[4.67925701189407,52.41669466024786],[4.679241346628923,52.4166962383668],[4.679216699570741,52.41669601019307],[4.679210830695379,52.41670268899446],[4.679194391180042,52.41672143813095],[4.679136441618561,52.416814618664496],[4.679066793546695,52.4169140836082],[4.679013746653075,52.41700030987757],[4.67898055320272,52.4170565277614],[4.678980671053431,52.41705926973912],[4.678994146108277,52.41707240953504],[4.67899763329592,52.41708230795159],[4.6788230967601,52.417362366344676],[4.678819130085609,52.41737142028604],[4.678816635683531,52.417391358244686],[4.678811114710419,52.41740292845874],[4.678792482532288,52.417434669746655],[4.678770406775765,52.41744091907068],[4.67875147701883,52.41742968799386],[4.678759552643868,52.417415553565405],[4.678765616561109,52.41739944777109],[4.678768107709589,52.41736960525965],[4.678771804183151,52.41735630747181],[4.678781320057974,52.417342190641484],[4.678802106802888,52.41732186773138],[4.678818875134191,52.417303722797385],[4.678831394481508,52.41728379085131],[4.678837814882998,52.41726837025581],[4.678877916371304,52.417203026177326],[4.678904691139053,52.41715202780156],[4.678933404546107,52.417101130886785],[4.678943303744599,52.41707682419098],[4.678966323849969,52.41706390255899],[4.678972671175388,52.4170466120605],[4.679017365067362,52.41697441973343],[4.679047447979705,52.41692886971838],[4.679083089641325,52.416870293673604],[4.679132192814316,52.41680362817819],[4.679187127519609,52.41669766697976],[4.679171277328121,52.41669242225807],[4.67916445279746,52.41668440032302],[4.679139462974105,52.41666699443398],[4.679121700706781,52.41665722641166],[4.679048702961529,52.416621441163464],[4.678887242828356,52.41656006908429],[4.678771019403262,52.41650930323786],[4.678751422067249,52.41650307436013],[4.67868187159002,52.41647695338675],[4.678613138367334,52.41645488176215],[4.678595902789707,52.416448037839174],[4.678589164263376,52.41644751219501],[4.678557809285278,52.41644026025536],[4.678558721346725,52.41643837827638],[4.678424412803091,52.41640818479821],[4.67834609365498,52.41649831307588],[4.678303849974058,52.41648350010858],[4.678353826599045,52.41642843439352],[4.678371545356943,52.4164050822926],[4.678355537434048,52.41639501007748],[4.678274122439266,52.41636630129578],[4.678236080846031,52.41635528831655],[4.678221040721385,52.41637658923726],[4.678205661532512,52.41638233926227],[4.678213979783479,52.41636773895523],[4.67821587297971,52.41635966127996],[4.678214642243588,52.416353901733686],[4.678212476417706,52.4163514620713],[4.678201529333871,52.41634663303483],[4.678169294951332,52.41634014867819],[4.678153303162087,52.416338255414544],[4.678138170221658,52.41633780533422],[4.678127048837126,52.41633468292643],[4.678117633638065,52.416335165842625],[4.678093595491666,52.41633088758851],[4.678084477125754,52.416331192523046],[4.678047813518565,52.41633510745099],[4.678028174848282,52.41634065220126],[4.678020337551059,52.41634357125632],[4.678012905213358,52.41634873968076],[4.678006039200961,52.416355259662325],[4.678000112609584,52.416358190153694],[4.677980554504965,52.41635870221973],[4.67797659330232,52.41635822911763],[4.677964343589555,52.41635213397153],[4.67795743687957,52.41634283520806],[4.677955655681366,52.416334735539955],[4.677947615083925,52.416331991069654],[4.677939661025258,52.41633302198591],[4.677920087292318,52.41634369014358],[4.677895202391957,52.41636475232885],[4.677892333541148,52.41636949867813],[4.677897622047201,52.41637887763508],[4.677898292175136,52.41638292614959],[4.677892175420918,52.41638855183204],[4.677884153710369,52.41639380659769],[4.677865970379874,52.41640025881278],[4.67785673092623,52.416398945203895],[4.677825156260237,52.41637880327287],[4.677834077112532,52.416372475360774],[4.677840940274391,52.41636613512773],[4.677841124672461,52.416363799408145],[4.677839267214567,52.416360462806836],[4.677829836002631,52.416352766721374],[4.677824145612917,52.41635012619256],[4.677818864492457,52.4163494654263],[4.677811646755261,52.41635041086499],[4.67780514231629,52.4163527087418],[4.677797915942288,52.416354193394945],[4.677793948984666,52.416354079763586],[4.677788847946905,52.41635135288414],[4.677777645655623,52.416334928039504],[4.677762522479155,52.41631551374647],[4.677754512125012,52.41631088200951],[4.677739460655648,52.416304428526665],[4.677687459716709,52.416284865284204],[4.677687593149832,52.41626644112684],[4.677687736961884,52.416248286665],[4.677687247491232,52.41622194952734],[4.677687643193235,52.41621376402609],[4.677688442111092,52.416198759211674],[4.677689053154348,52.4161762125215],[4.677683097596853,52.41613231646951],[4.67767923281675,52.41610380204886],[4.677690526093277,52.41610261139231],[4.677682212767728,52.41607101448363],[4.677670580012993,52.41607229298409],[4.677658953768831,52.416027284434215],[4.677639296812285,52.41593854715375],[4.67761543125558,52.41583083841131],[4.677614609146828,52.41582710355676],[4.677608235037233,52.415798331431986],[4.677594169096593,52.415782671352645],[4.67758967791141,52.41577766521947],[4.677551754758311,52.41573544713702],[4.677544432966886,52.41572729629764],[4.677513745075972,52.41569312965783],[4.677509600026514,52.41568853903294],[4.67750353505025,52.415681761862906],[4.677507517785683,52.41568088694246],[4.677486160634521,52.415651503763804],[4.677444380875081,52.41559404622158],[4.67740966418033,52.41554621195893],[4.677409002640329,52.41554530022923],[4.677367386149882,52.41549968054928],[4.67736433841173,52.4154963278202],[4.677341309036279,52.41547683014607],[4.677299956532884,52.41543400722429],[4.677319485363432,52.41542612511261],[4.677272241419996,52.41538404881636],[4.677296892606842,52.41535921048829],[4.677290863621448,52.415357529596776],[4.677281917006858,52.4153489645534],[4.677274944339682,52.41534379973313],[4.677272496189044,52.415340639337956],[4.677272559564666,52.415336685092],[4.677296160300901,52.41531318863715],[4.677297555083837,52.41530870310202],[4.677296477231127,52.41530258494899],[4.677291993047796,52.415298064186054],[4.677279452654566,52.415291787468625],[4.677258371185872,52.415283742900804],[4.677260217713449,52.41528133625166],[4.677267439551918,52.41527095369647],[4.677269874677563,52.41526575537289],[4.677268048448814,52.41526506135767],[4.677272219002352,52.41525705126864],[4.677288573446508,52.41525463268933],[4.677294942299047,52.4152516150056],[4.677298984052046,52.41524705545362],[4.677300276507754,52.415239783091565],[4.677295609285879,52.41522834063673],[4.677290159666646,52.41521985946271],[4.677280407478231,52.41521386908625],[4.677264718667368,52.41520227070698],[4.677262300773003,52.41519722305769],[4.677263676830888,52.41519390582283],[4.67727526327534,52.41519550317704],[4.67727882371491,52.41518428977985],[4.677260885657426,52.4151754641354],[4.677258896032974,52.415174876994286],[4.677278012270706,52.4151523782768],[4.677189441645988,52.41509342688858],[4.677181712554543,52.415089605697],[4.677174111710801,52.41508695368572],[4.677137394250893,52.41507594828077],[4.677135735765403,52.41507854479861],[4.6770814722829,52.41506177190669],[4.677134015065651,52.4150024978122],[4.677186225192129,52.41501898874091],[4.67718501483392,52.415021138555836],[4.677198785814588,52.415025831820756],[4.677203054529563,52.41502728646116],[4.677208112723006,52.41502900647853],[4.677218812961415,52.41503086816113],[4.677228082359745,52.41503029456575],[4.677236520332838,52.41502657026197],[4.677242785394865,52.415020855623105],[4.677243175848195,52.41501483614608],[4.67724031704685,52.415009785853876],[4.677234057697325,52.41500597347326],[4.677224013792336,52.41500259678939],[4.677219800123145,52.41500137616199],[4.67720626675814,52.414997448285376],[4.677204170241134,52.41499986242338],[4.677150071088988,52.41498201201275],[4.677201600719927,52.41492174315928],[4.677255846792407,52.41493959442726],[4.67725360762902,52.41494173807776],[4.677266897902561,52.414946158820605],[4.677271093989831,52.41494755909667],[4.677297180887536,52.41495602013187],[4.677306856621785,52.41495760603397],[4.677438056101946,52.41497052563412],[4.677439038768311,52.41496699033344],[4.677470702841515,52.414969552803925],[4.677491744467614,52.41496815093295],[4.677499995117134,52.41496694206841],[4.677524366616671,52.41495953832236],[4.677534246925266,52.41495753031679],[4.677558190570339,52.414958482642035],[4.677572516061058,52.41495425431325],[4.677580073592489,52.414950434833514],[4.677609117972128,52.41494494649465],[4.677630374020039,52.414935663594875],[4.677639566528499,52.41493071245498],[4.677645162207263,52.41493374788965],[4.677648778002414,52.41493191806151],[4.677669096923636,52.414916904322325],[4.677693730498933,52.41490231188216],[4.677710916096379,52.414893876405905],[4.677718820810123,52.41488673351557],[4.677725260111869,52.41487931221546],[4.677733895366222,52.41487244333266],[4.677740562397075,52.41486915777715],[4.677749550763826,52.414867773557425],[4.677759915140363,52.41486307209607],[4.677773629661139,52.414860278130185],[4.677795553062184,52.41485888148567],[4.677803966487662,52.41485668491834],[4.677824964700536,52.41484881152233],[4.677839062387588,52.41484044741575],[4.677858155519297,52.41482303555359],[4.677864828290033,52.41481939051398],[4.677869982403955,52.41481879222866],[4.677883212628619,52.41480952414444],[4.677917299340694,52.4147975587628],[4.677977034759564,52.414825095447064],[4.678019400169857,52.414793640148915],[4.678130847261966,52.41471088259964],[4.67802711217244,52.4146084839886],[4.678019557315941,52.41457450088259],[4.678015822378924,52.414569085852804],[4.677990450528817,52.41454718352655],[4.677865290731528,52.414450894032996],[4.677816133971737,52.41441815378861],[4.67782591466846,52.414413179192884],[4.677796715994481,52.41439161342092],[4.677789801154011,52.41439202140382],[4.677780935224221,52.41438576674047],[4.677852917083859,52.414342427234224],[4.677868052400021,52.41435186515539],[4.677865785952981,52.41435571633366],[4.67790400043053,52.41438335788502],[4.677908155914802,52.41438086618398],[4.6780065599962,52.41443151726963],[4.678060587660577,52.41442626825256],[4.678060095705124,52.414424863213064],[4.678071074414105,52.414423095420354],[4.678079496375193,52.41442035961752],[4.678091932595795,52.4144147717499],[4.678136382862446,52.414402715544256],[4.678144806038223,52.41440816761781],[4.678155637072201,52.41440185111335],[4.678150093572513,52.41439831269857],[4.678182790039455,52.414376757939756],[4.678203019766463,52.414361779526395],[4.678216023701653,52.41435745333348],[4.678225657369143,52.41435247782502],[4.6782375603257,52.41434347139188],[4.678257712087053,52.41432417836497],[4.678261770915644,52.41431854034783],[4.67830422230301,52.414265137286286],[4.6783574513614,52.41421425236179],[4.678368944980098,52.414203266153116],[4.678379943812847,52.4142066664299],[4.678465880913857,52.41411969345232],[4.678529494119121,52.414066506784216],[4.678563982576212,52.41403581307261],[4.678573928090438,52.41402695667729],[4.678668881925942,52.4139441179409],[4.678701038474707,52.413918605183945],[4.678751999167291,52.413875319172114],[4.678765599038864,52.413861289672674],[4.678790561353078,52.413843544257595],[4.678828756614977,52.413818166441224],[4.678840096242997,52.41381679619848],[4.678891024902218,52.413788366747816],[4.678894435945094,52.41378646375538],[4.678882537435132,52.41375476459219],[4.678882655270845,52.41374739531107],[4.67888594750735,52.41374373000222],[4.678890696500455,52.413740882303834],[4.678905757752332,52.41373656833605],[4.678914222640066,52.41373113639466],[4.678913291570266,52.4137250191327],[4.678898198759637,52.41369913394699],[4.678873292632976,52.41365638292304],[4.678899873589465,52.413644947601796],[4.678898864926313,52.41364368328094],[4.678978029115878,52.41361063211312],[4.678979784118066,52.41361118187199],[4.679004193417259,52.413601351346784],[4.679126013792627,52.41367667814996],[4.679141909855115,52.41368450265463],[4.679162204934074,52.413692982593325],[4.679185319721556,52.41369977170061],[4.679209111445904,52.41370099242071],[4.679221007308577,52.41370160277903],[4.679237020839535,52.413701159208586],[4.679258357516772,52.413700567690164],[4.679307205764818,52.413697444225896],[4.679349483488678,52.413691585146786],[4.679382502163827,52.41368567073291],[4.6794254723007,52.413681550406636],[4.679431316440541,52.41368099212743],[4.679631858380902,52.413661760813945],[4.679655868032797,52.41365945953349],[4.679682512729267,52.413656904351576],[4.679729289851537,52.413645409702625],[4.679728338576672,52.413640550616925],[4.679775062136702,52.41363240807459],[4.679792292432769,52.413629401187976],[4.679832545389586,52.41362238839756],[4.679902418766035,52.41363173045673],[4.679919550005564,52.41363216528253],[4.680005800653721,52.41364405872033],[4.680022358559905,52.413646341592774],[4.680117100824482,52.41365940911129],[4.680175506251204,52.41366620193267],[4.680189002997182,52.4136678104043],[4.680319188923958,52.41368694931604],[4.680336229065738,52.41368848903563],[4.680388896254183,52.41369473520943],[4.680405606257792,52.413697621117294],[4.680413178379724,52.41370207030801],[4.680418621603105,52.41370821447673],[4.680426351808417,52.41371473180053],[4.680432249421226,52.41371819133138],[4.680442529363597,52.41372243197993],[4.680452230536448,52.41372333470618],[4.680469077487417,52.41372685056701],[4.680483405894803,52.41373160969135],[4.680495522600828,52.4137368050098],[4.680506880091049,52.41374352372174],[4.680518796787076,52.413752043325466],[4.680521373413484,52.413756372832566],[4.680528471675037,52.41376288637996],[4.680531615597671,52.41376390277769],[4.680533297284112,52.41376444308829],[4.680683581550182,52.41377864135833],[4.680701014320142,52.413791507976754],[4.680689509896534,52.413825332308875],[4.680686826637278,52.413833216570445],[4.680675072718058,52.413842134259],[4.680669968253518,52.413848844656286],[4.680661659216634,52.41387216334511],[4.680657512622211,52.413892540888604],[4.680651788060735,52.413910482318805],[4.680645396018359,52.413924195508656],[4.680637775932015,52.41395039439586],[4.680634417962172,52.41397661870223],[4.680629334298957,52.41399123847289],[4.680620753457282,52.41400394995052],[4.680615109143247,52.41401685869748],[4.680611744737704,52.414052699894874],[4.680616446416926,52.4140712427747],[4.680625008783618,52.41409654951908],[4.680628811449205,52.41411616557053],[4.68063903562089,52.4141294385927],[4.680644567456325,52.41413279706525],[4.680662387467345,52.41413982393707],[4.680676463656727,52.41414197507512],[4.680823358742619,52.41413835713466],[4.680972816170098,52.41413996720207],[4.681004090777845,52.41414204106796],[4.681026648288147,52.4141469390563],[4.68103146965858,52.41414876535228],[4.681038077597266,52.414149164251675],[4.68104177048258,52.41414801785168],[4.681048392747678,52.41414751805742],[4.68106484054194,52.414148424995496],[4.681093832395526,52.41414617109466],[4.681106223751867,52.41414336885797],[4.681120348669074,52.41414246438676],[4.681136633735468,52.41414435900138],[4.681155033686262,52.414142671103924],[4.681164318605604,52.41414110863755],[4.681177997444888,52.41413130359422],[4.681197493501262,52.41412539796358],[4.681204696481056,52.41412535101049],[4.681211732438136,52.414126561351516],[4.6812209858417,52.414126976005555],[4.681243954753397,52.41412450642068],[4.681268758301403,52.414200601000715],[4.681695076427327,52.414150508082365],[4.681695092028832,52.4141495285068],[4.681675153792564,52.41408168681544],[4.681696205888349,52.4140795922025],[4.68177761680905,52.414071511628634],[4.681820792130441,52.41406466835616],[4.681829270606606,52.414067594928326],[4.681834403114582,52.41406834450997],[4.681935589119725,52.41405528549252],[4.681940032563921,52.41405315487651],[4.681942272886585,52.41405092126727],[4.681942763875809,52.41404777846568],[4.681928788620546,52.41395619962504],[4.68192839942133,52.41391602191163],[4.681913300602039,52.413839625733665],[4.681910995089837,52.41381272055649],[4.681910719078269,52.41381066969838],[4.681910653815457,52.41379261285037],[4.681912266106893,52.41377535691441],[4.681915870634825,52.41377052496952],[4.681928059469852,52.41376196925933],[4.68194052587846,52.41373597889789],[4.681939236222467,52.41371727662803],[4.681938460942309,52.41370873361704],[4.681940036512555,52.41370209203579],[4.681944458862963,52.41369205204338],[4.681946369862772,52.41368280600123],[4.681944536934437,52.41366868426736],[4.681953462777122,52.413652739146045],[4.681960454726585,52.41364747797574],[4.681962145783195,52.413642814394336],[4.681961356970536,52.41363696763836],[4.681945437532341,52.41363058142045],[4.681941799084209,52.413628312814204],[4.681936755336091,52.41362199133868],[4.681936949521783,52.41361902652563],[4.681948218270615,52.413603634619264],[4.681948168999128,52.4135882652135],[4.681944543835426,52.41357593036712],[4.681938159180711,52.41356151190237],[4.68193382882077,52.41355654284125],[4.681899548786713,52.41354016074797],[4.681897577082313,52.413534756338336],[4.681901112304531,52.413515813158334],[4.681894290043743,52.413491954911116],[4.68188972442621,52.41348329945568],[4.68187795498334,52.41346736594397],[4.681946950029042,52.41343402756248],[4.681946526294283,52.413432946505694],[4.681955411625262,52.41342877514134],[4.681935677222346,52.41341274928057],[4.681931243858084,52.413414250811414],[4.681897386650764,52.41338978222683],[4.681884450639441,52.41337972876971],[4.681865358321478,52.413364920070634],[4.681867954256796,52.41336435132012],[4.681959105171187,52.41334449170149],[4.681962940641123,52.41334361575533],[4.682012512792279,52.413294981340975],[4.682017105412973,52.413292707805475],[4.68202523688627,52.41329895777977],[4.682026950503414,52.413300262221085],[4.682027734686575,52.4133008600827],[4.682034676764703,52.41330611432017],[4.682048627972141,52.41331702764329],[4.682050529644478,52.413318521947076],[4.682079390625012,52.41334107331591],[4.68207699050285,52.41334411487754],[4.682097919265512,52.41335897941136],[4.682100766224317,52.41335741450566],[4.682106816011109,52.413354089080784],[4.68210768494389,52.41335490315312],[4.682173453575489,52.41332293854431],[4.68219155885869,52.413330506152455],[4.682207214324754,52.413335003332186],[4.682245026173557,52.41334187930123],[4.68226879491082,52.41334453731617],[4.682309624786501,52.41334648794096],[4.682328686270234,52.413349387569056],[4.682342717960976,52.41335432445877],[4.682362545051023,52.4133673039437],[4.682363083255371,52.413367657669404],[4.682373298080409,52.413372302213155],[4.682385952736196,52.41338064626339],[4.682404762584568,52.41339936288376],[4.682412329137715,52.41340417142462],[4.682449083407886,52.41342209601187],[4.682461013259982,52.4134298065972],[4.682476607310891,52.413438168123164],[4.682490968435143,52.41345011742693],[4.682492567213741,52.41345125041032],[4.682542420468193,52.41348655437199],[4.682574581673653,52.41350678842369],[4.68264350593564,52.413544407777344],[4.682682721718916,52.41356468375373],[4.682703834134605,52.41357448914807],[4.682712236181148,52.41358499190526],[4.682731177740926,52.413595440493665],[4.682745934393628,52.41360101079072],[4.682761756988501,52.41360425060027],[4.682773076434133,52.41360413815147],[4.682785707164959,52.4136047525212],[4.682797617343488,52.413604463826864],[4.682805251139943,52.413605048483284],[4.682812128657619,52.41360697681021],[4.682821468917965,52.41361116672547],[4.682834129442441,52.4136191512503],[4.682839669955185,52.41362197040478],[4.682896308026906,52.41364657415121],[4.682932820193384,52.413661261544235],[4.682962008227177,52.41367437746461],[4.682974102350086,52.41368101043961],[4.682987764559662,52.41369070858104],[4.682998622935033,52.41370110907718],[4.683010687069229,52.413709629304705],[4.683019714859844,52.41371498575867],[4.683038138476842,52.41372381341738],[4.683065046527886,52.413738893072505],[4.683073750393924,52.41374613503159],[4.683079547608842,52.41375037577018],[4.683085519187991,52.41375474337381],[4.68310563886704,52.41376968380742],[4.683106568899547,52.413770354430845],[4.683127591897299,52.413780249094806],[4.683144791432737,52.41378933909536],[4.683205913098064,52.413818553106495],[4.683266227162019,52.413852346056444],[4.683295559412223,52.4138748999227],[4.683328036603302,52.41389378747553],[4.683341708951849,52.41390285649054],[4.683362113353593,52.4139137630564],[4.683362682394444,52.41391402708282],[4.683377243021319,52.41392084543735],[4.683377870421871,52.4139211367738],[4.683391164706485,52.41392624891225],[4.6834101365572,52.41393481013555],[4.683484659901338,52.41397165335233],[4.68350378732546,52.41397967621748],[4.683538566307853,52.413992465691436],[4.683554467548458,52.41400001999692],[4.683574559549705,52.414012093081865],[4.683584590565779,52.414019073251254],[4.683617377616929,52.41403882539072],[4.683636566431233,52.4140503897851],[4.683709963614631,52.414089679834326],[4.683711770774954,52.41409065225821],[4.68375331336872,52.41411255949145],[4.683786557177518,52.414129474155935],[4.683833390783094,52.41415141277576],[4.68384821053977,52.41416228609972],[4.683864024851467,52.41417532239407],[4.683872716091643,52.41418337311835],[4.683905851845332,52.414208951329314],[4.683916132381142,52.414216885656124],[4.683927484807396,52.414223963517934],[4.683953706982756,52.41423876926205],[4.683968401228162,52.414248293658176],[4.683985974976393,52.41426161001305],[4.684005607754777,52.41427484870907],[4.684026286460951,52.41428701507598],[4.684044448125978,52.4143003349115],[4.684054420792827,52.41431099968435],[4.684066342604735,52.41431924932358],[4.684085290504178,52.41432933821757],[4.684122521417944,52.41435436545253],[4.684147025780182,52.414375542283324],[4.684164469777213,52.41438777930714],[4.684245676758073,52.414429604977926],[4.684269608940787,52.41444053231665],[4.684310525499245,52.41445376242673],[4.684310950290635,52.414453854824856],[4.684314211356339,52.41445490776762],[4.684381628930971,52.41449503372971],[4.684424119196339,52.41452210533133],[4.684441289915219,52.414533046451844],[4.684500250358022,52.4145688979205],[4.684511257777911,52.414574571584865],[4.684529700609944,52.41458408219264],[4.684545763814344,52.414595349276716],[4.684564574734112,52.41460945481813],[4.684581352648121,52.41462663110817],[4.684620486178069,52.41465220873357],[4.684710723869054,52.414708557961475],[4.684767901141885,52.41474565700947],[4.684815804789433,52.414774342413],[4.684907431275565,52.41482656534238],[4.68497163911718,52.4148559764755],[4.684995243571852,52.414869058789556],[4.685035727379194,52.41489293659973],[4.685055372147535,52.41490545616618],[4.685083357356217,52.41492036198158],[4.685109190690703,52.414931929559216],[4.68512884831668,52.41494364028926],[4.685145369662893,52.41495847815355],[4.685185795237358,52.41498604055594],[4.685222547671275,52.41500423388905],[4.685246630227544,52.415014982162134],[4.685271416332331,52.4150277119102],[4.685302205929976,52.415048386467305],[4.685314757310993,52.41505681946337],[4.685327104815141,52.415066060150366],[4.685359351645071,52.41509959584996],[4.685389192520954,52.415127275231356],[4.685402887030041,52.415134995967136],[4.68543353369198,52.41514892880798],[4.685451935651153,52.41515640778896],[4.685472398098737,52.41516371921608],[4.685518233288319,52.41518385368733],[4.685541257301027,52.415196483063525],[4.685559308408754,52.41520755506125],[4.6855924014187,52.41523408523914],[4.685610508068359,52.41524165232402],[4.685636051732623,52.415255752622826],[4.685646062321367,52.41526127647218],[4.685677071788798,52.415280154675706],[4.68570274997459,52.4152922604695],[4.685756546604898,52.41532017147755],[4.685785442620304,52.415333284960596],[4.685840898762021,52.41535850942123],[4.685879097331534,52.41537823903026],[4.685912425850434,52.415399198088025],[4.686019581623799,52.41545483754047],[4.686129446272071,52.41551579571322],[4.686174734527325,52.41554266752308],[4.686211402496302,52.41556625271053],[4.68626283395331,52.415595048267654],[4.686306385683784,52.41562020207432],[4.686332444020189,52.41563617472252],[4.686350509724458,52.41564634790573],[4.686364655441864,52.41565344205292],[4.686414581269405,52.415675218169724],[4.686444085518918,52.41568707679838],[4.686467733503092,52.415697462737334],[4.686496521384435,52.41570814870458],[4.686533221805025,52.41572040938294],[4.68655540433434,52.41573051700395],[4.686570840199527,52.41573968594474],[4.686596615266421,52.41576428512461],[4.686611945966725,52.41578010439298],[4.6866218996848,52.41579202711916],[4.686636884707402,52.41580182252947],[4.686649285284903,52.41580773791155],[4.686668862111041,52.41581531352535],[4.68668393527111,52.41581953702906],[4.686713093982192,52.415825371735984],[4.68674145386795,52.41583524621237],[4.686755172991142,52.415841439012254],[4.686778066354456,52.41585307871551],[4.686803503799599,52.41586185736597],[4.68682737993417,52.41586712154809],[4.686846101957337,52.41587298440143],[4.68686435179641,52.41588082177147],[4.686888699342981,52.415893458704616],[4.686912050747379,52.41590402255596],[4.686924296061489,52.41590674633043],[4.686934461415753,52.415909008420776],[4.686953373069329,52.415912176044884],[4.686963881495472,52.415916911798945],[4.686974375716946,52.41592254624577],[4.686982524,52.41592780731533],[4.68700062122679,52.415936003273096],[4.687015754779109,52.41594570963473],[4.687028532451051,52.41595567170453],[4.687035169150104,52.415962640502315],[4.687036195779222,52.415963716114966],[4.687049912426533,52.41597007064556],[4.687057792059353,52.41597373029799],[4.687108566299676,52.41599488198748],[4.687135041312968,52.41600591364114],[4.687153137179614,52.416014199444966],[4.687171933849974,52.41602464645309],[4.687178752282412,52.41603034904001],[4.687179614896388,52.41603250221537],[4.687181297025727,52.416036745397],[4.687174319519401,52.41604110817959],[4.687166641214659,52.41604330975465],[4.687151006954826,52.416055980016644],[4.687148132013417,52.416061175939014],[4.687162366735208,52.41607195550334],[4.687172478319858,52.416073902683095],[4.68718343341989,52.416078281545445],[4.687235630813014,52.41610519376467],[4.687250815599635,52.41611166479882],[4.687277997131675,52.416121711938615],[4.687317673872378,52.41614100041917],[4.68734149058073,52.41615003901122],[4.687378556550765,52.41615780769559],[4.687395071271134,52.41616383717807],[4.687418769426318,52.416171077499044],[4.687434409392028,52.41617665242035],[4.687460648093795,52.416190558692456],[4.687483757696188,52.4162071428107],[4.687505184504869,52.41621859395384],[4.687527243241719,52.41622726261472],[4.68754646540841,52.416238700730354],[4.687562151606259,52.41625065722809],[4.68764348018206,52.41628520114576],[4.687728479072486,52.41632003630959],[4.687766317849279,52.416334730020886],[4.68780082014939,52.416346617813346],[4.687825550152382,52.41635368438781],[4.68784195350263,52.41635746620602],[4.687852986780178,52.41635690219096],[4.687862026217316,52.41635228190681],[4.687864780355689,52.41635007818364],[4.687871703225287,52.41634451966417],[4.687880564464919,52.41634187563726],[4.687893330258097,52.416343299155436],[4.687903119604793,52.416347041925235],[4.687909074758079,52.41635157096286],[4.687912351677268,52.41635815138032],[4.687912464025895,52.416369656395275],[4.68791464375099,52.4163731115787],[4.687917770262953,52.416378046345436],[4.68792997879444,52.41638683654573],[4.687941935937096,52.41639292892863],[4.687940369681458,52.416399031371135],[4.687936634222954,52.41640287406684],[4.68793772917849,52.41640800356112],[4.687943322287434,52.41641684459193],[4.687954668827819,52.416424371413505],[4.68799462732352,52.41644447022637],[4.688019591787793,52.4164553130089],[4.688039771233841,52.4164619931719],[4.688056499806607,52.4164637995689],[4.688065767950027,52.41646331499524],[4.688073543614608,52.416464259657594],[4.688080831535141,52.41646816740685],[4.688091199787556,52.41648180012889],[4.688095191777073,52.416489643048976],[4.688115318234099,52.416508995648165],[4.688127499891714,52.41651949334617],[4.688147597119812,52.41653138591449],[4.688161847837446,52.41654117679517],[4.688179634557047,52.416550449270666],[4.688200676087063,52.416558392780644],[4.688227185615909,52.416564481114214],[4.688253385595405,52.416571556270775],[4.688322821855768,52.41659596324845],[4.688340646915733,52.416602809226596],[4.688387939570757,52.41661459253724],[4.688435280454754,52.416623320270176],[4.688457399119621,52.41662821424391],[4.688480191724085,52.41663697693087],[4.688518714883192,52.416654910033465],[4.688558303339804,52.41667985986888],[4.688585314005987,52.41670078090337],[4.688624054683125,52.41672356865145],[4.688628380433419,52.41672889694407],[4.68863388768782,52.41673387269206],[4.688645734469037,52.41674697481533],[4.688652433152277,52.41675096893221],[4.688662376719158,52.41675426315895],[4.688673247516159,52.41675468676423],[4.688686891078076,52.41675638500465],[4.688704162355031,52.41676107059673],[4.688717732226271,52.416767442041284],[4.688720333921264,52.41677024358957],[4.688721867080159,52.416775555414716],[4.688725609181365,52.41678061062947],[4.688734347165106,52.41678578517497],[4.688750726662337,52.416791094646854],[4.688764059274514,52.416793869577944],[4.688777270416213,52.416795025992265],[4.68878151864849,52.416795949813235],[4.688792010475685,52.41680176383747],[4.688802243772224,52.41680532939351],[4.688815868933855,52.416808195921014],[4.688832594835591,52.41681018194731],[4.688863159101511,52.416820158780794],[4.688875418949976,52.416825713585695],[4.688896218828783,52.41683967735428],[4.688900917554476,52.41684932196605],[4.688915024028191,52.416868279432734],[4.688923754967502,52.4168739033111],[4.688928875171129,52.416875461410115],[4.688957110853726,52.41687463916707],[4.688960749928172,52.416876907557366],[4.688958932337164,52.41688031219906],[4.688955062696803,52.41688334523594],[4.688954101482538,52.416888372723825],[4.688962060697887,52.41689632887205],[4.689000714400004,52.41691533212952],[4.689006667544887,52.41691813544644],[4.689014284219579,52.41692171252706],[4.689038806846846,52.416932642365474],[4.689053811204954,52.41694126916736],[4.689074386308272,52.41696017485432],[4.689097176373073,52.4169691171612],[4.689108903611864,52.41697116357182],[4.689143120209676,52.41697325261248],[4.68917232391111,52.41697630076373],[4.689188724775136,52.41698026213431],[4.689217836432447,52.41698915178415],[4.68922890495381,52.41699568818838],[4.68924037051847,52.41700501314006],[4.689264416611807,52.41702753435036],[4.689273014807438,52.4170322586433],[4.689287032864669,52.41703818327317],[4.689289900251244,52.41704278392815],[4.689291270931101,52.417049083443175],[4.689294391214476,52.417056292041764],[4.689300051228786,52.417060909146954],[4.689310131981906,52.41706483327078],[4.689330631348913,52.417069897296535],[4.689337007863206,52.41707568703079],[4.689338808164354,52.41708270809754],[4.689339234668551,52.417092956670224],[4.68933852639172,52.41710059210471],[4.689330388381731,52.41711330680556],[4.689332704391579,52.417124914673934],[4.689337277501049,52.41713321036159],[4.689346279852467,52.417140273850336],[4.689394918563226,52.417159973922196],[4.689429923505961,52.417177346735016],[4.689461295012586,52.4171920916852],[4.689494478196244,52.417213138736244],[4.6895007148498,52.41721847824908],[4.689510754604213,52.41722500856792],[4.689519686462468,52.41722721823121],[4.689526017964136,52.41722653649407],[4.689534678510541,52.41722730651504],[4.689547098276657,52.41723205329139],[4.689563814232956,52.41724401558168],[4.689569465806433,52.41724917189022],[4.689581553403178,52.41725634340533],[4.68959891674968,52.41726453463834],[4.68961426199933,52.41727019741026],[4.689630087826046,52.417273346433596],[4.689647246391563,52.41727587415757],[4.689668543072579,52.41727698819885],[4.689696455316551,52.417278051306454],[4.689726315109684,52.4172767890521],[4.68975099943262,52.41727747363306],[4.689784891205127,52.417281537884676],[4.689817171852109,52.417285233132176],[4.689826881799537,52.41728470608187],[4.689829088637897,52.417284584255135],[4.689844018449474,52.417288626752885],[4.68984880373883,52.417292789294024],[4.689849838056635,52.41729618377185],[4.68986015490457,52.41730939360581],[4.689869873887736,52.417317629682316],[4.689903434637324,52.417342723336475],[4.689909644477365,52.417349770346114],[4.689921443853226,52.41735658061889],[4.689955770839588,52.41737035417555],[4.689964991053469,52.417372925012835],[4.689986260769994,52.41738509379665],[4.689994966484083,52.41739233524487],[4.690002244824814,52.417396871961415],[4.690013192045033,52.417401789778275],[4.690023575389422,52.4174051763549],[4.69003646024961,52.417408397895066],[4.690045270651145,52.41740898900491],[4.690052599922038,52.41741029042039],[4.690093313556056,52.417429224546716],[4.690112527007058,52.41744129133085],[4.690124293908176,52.41745016857931],[4.690136237496788,52.41745715943424],[4.690151437314757,52.417462731402374],[4.690168713265636,52.41746714717281],[4.690188449724396,52.41747400411427],[4.690210675563707,52.4174795994338],[4.690218318028926,52.417481549800975],[4.690253633068138,52.417497935536275],[4.690300675497172,52.41752571483486],[4.690327064295227,52.417539531466225],[4.690356599051453,52.41755893901292],[4.69036550357183,52.41756569626294],[4.690392188318375,52.4175859318883],[4.690441174166269,52.41762100265375],[4.690445346171861,52.417626779362124],[4.690459120047463,52.41763890397665],[4.690472241011737,52.41764581184319],[4.690485320948381,52.41766467320144],[4.690500488335578,52.41768165940159],[4.690509083962994,52.41768656334332],[4.690511880869598,52.41768631015704],[4.6905207816657,52.41767928912139],[4.690535822014835,52.41769687675045],[4.69054836638647,52.417703062196274],[4.690559948318222,52.41770501772971],[4.69057566413546,52.417705829158464],[4.690602276444592,52.41770544636468],[4.69061978686242,52.41770617846137],[4.690624602234356,52.41770656628378],[4.690635692342847,52.41771175451537],[4.690663364627421,52.41772809519198],[4.69067516464482,52.41773674788488],[4.690687434454834,52.41775852548252],[4.690693050894221,52.41776592847198],[4.690698273023362,52.417770363179045],[4.690710913557848,52.41778913205049],[4.690714041045074,52.41779309606687],[4.690716001007085,52.41779558821327],[4.690716822557413,52.41779662663632],[4.690740705890609,52.41782022511395],[4.690749421724704,52.41783618470132],[4.690745054667747,52.41785215726027],[4.690755619112541,52.41787208233248],[4.69078809959234,52.417891147573485],[4.690830731829017,52.41790964333043],[4.69088318230765,52.41793008420744],[4.691006548297241,52.41798392690581],[4.691181021319332,52.418059550489694],[4.691365997333575,52.41814222798256],[4.691401020737281,52.41815665232327],[4.691453856256761,52.418180690312944],[4.691488172341962,52.41820177939802],[4.691516460905271,52.41821916607111],[4.691601227449432,52.41826828760103],[4.691670532127229,52.41831165600714],[4.691758826060228,52.41837113406252],[4.69185391539796,52.41842849486826],[4.691953257675156,52.41848650969643],[4.692104933840502,52.4185818610858],[4.692385325514647,52.41876514852802],[4.692518356030686,52.41885913173987],[4.692616538758151,52.4189255877004],[4.69266101494904,52.418957844879436],[4.692710548373445,52.41899570410009],[4.692757260506879,52.41902599703979],[4.69281128964862,52.4190584000306],[4.692980070432099,52.41916939935194],[4.693227970474076,52.41934404586332],[4.693413462531211,52.41948632997537],[4.693624148868931,52.41964195531259],[4.69361595566409,52.419667630330544],[4.693580430941331,52.41977896051378],[4.693630484207042,52.41981471025509],[4.693812612590236,52.41994482256849],[4.693856269573272,52.419976004946065],[4.69390796584471,52.42001294157844],[4.69404602010299,52.419999593590845],[4.694061979436422,52.41999805118381],[4.694112684141603,52.41999315287689],[4.694129454800644,52.42001585520313],[4.694144778410889,52.42003239244493],[4.694188252541777,52.42007246252594],[4.69421930492459,52.42009843902875],[4.694294407609799,52.42015586068152],[4.694324796228703,52.42018668666559],[4.694338813158081,52.42020312636212],[4.694348903646011,52.42021495933748],[4.694377675442227,52.420245775852536],[4.694406913555952,52.42027497728972],[4.694434971561376,52.42030444145215],[4.694461384586162,52.4203356935422],[4.694491475244661,52.42036678737212],[4.694522806533176,52.42039375407662],[4.694585342487858,52.42043699128328],[4.69463062221412,52.420469755712396],[4.694632293787756,52.420470969843294],[4.694661769147538,52.42049442043436],[4.69468990193812,52.420519121457346],[4.694721843905698,52.420544653634884],[4.694766480946964,52.420585629067986],[4.694788462660751,52.420608856076846],[4.694811654055528,52.42062993308785],[4.694837188920563,52.42065156305403],[4.694855606843538,52.4206657904513],[4.694866384572711,52.42067411318175],[4.694889001353152,52.42068775394112],[4.694899795786235,52.42069030662353],[4.694924900598244,52.42069243061633],[4.694951727181786,52.42069726099168],[4.694975130803289,52.420704767690935],[4.694996004657606,52.4207142369135],[4.695014940930059,52.4207254024874],[4.69502466394434,52.42074289554513],[4.695019598232305,52.4207848387936],[4.695030353020545,52.42080215812298],[4.695059739880416,52.420812485964234],[4.69511856419859,52.42082990632644],[4.695158266374496,52.42085746101841],[4.695176186435686,52.420867811731846],[4.695197579576107,52.42088168795357],[4.69525113290964,52.420907166448025],[4.695280541924316,52.420925493469724],[4.69529231620755,52.42093214126887],[4.695337370911511,52.42095773187361],[4.69536091850775,52.42097485623934],[4.695356642210589,52.420982282122516],[4.695321026973673,52.42104409868609],[4.695352279639337,52.42106675057953],[4.695423504633078,52.42112792370858],[4.695392017630097,52.42114850159028],[4.695545073213644,52.421260124352315],[4.69557918042519,52.42128827538031],[4.695607580196262,52.421277116576476],[4.695675457625559,52.42132676567718],[4.695729251769897,52.421374534997426],[4.695940847492263,52.421550222066514],[4.696032331414585,52.42161331056035],[4.696076007689063,52.42165005563067],[4.69618234208549,52.42174127243213],[4.696273946602491,52.42181552423217],[4.696312562802601,52.42184682907501],[4.696349964544994,52.421899445784355],[4.696393024134839,52.42192863742147],[4.696377900104613,52.42193690785715],[4.696455037405045,52.42198679024041],[4.69646969766314,52.42199882942254],[4.696483633107867,52.421991360944446],[4.696513429681062,52.42201319513542],[4.696559315465805,52.42199315027666],[4.69657426274091,52.42200564050649],[4.696529649466744,52.42202892838121],[4.696522328883069,52.422036435424154],[4.69652778722752,52.42204464610071],[4.696545155138812,52.422052746443406],[4.696597925378721,52.42207201819688],[4.696615046966284,52.42207706125614],[4.696630603438974,52.42207876972094],[4.696643637280609,52.42207255425535],[4.696661338730585,52.42205926566343],[4.696680473439946,52.42206719652795],[4.696704800567935,52.42208153895635],[4.696722848866725,52.42209314846298],[4.69673940898792,52.422105917702915],[4.69677112642219,52.42213657102273],[4.69678385483421,52.42214994707148],[4.696799595946416,52.42216810418429],[4.696818568214754,52.422186459877054],[4.696834091009872,52.4221997623245],[4.69684887042084,52.42221359970396],[4.696854760034178,52.42222244202053],[4.69684874984405,52.42223076561617],[4.696847293778053,52.42223929550106],[4.696862829208244,52.42225178912002],[4.696886107900439,52.42226738368739],[4.696903690114493,52.422280608246105],[4.69692877895433,52.42230268453516],[4.696956390521138,52.422332684740255],[4.696962477520325,52.422347729752616],[4.696963304659876,52.42237955122749],[4.696973271048467,52.42239093385828],[4.696983598669689,52.422398004469606],[4.697034336746,52.42241564639084],[4.697049793861956,52.422433172671475],[4.697075882490124,52.422447705036596],[4.697057983645973,52.42245479098825],[4.6971115650744,52.422497525275624],[4.697119853008156,52.422493978443526],[4.697168235009491,52.42253075050368],[4.697238459688669,52.42258095161572],[4.69726945402274,52.42260144442204],[4.69725727830441,52.42260919287126],[4.697314040891276,52.42264592379178],[4.697333842373759,52.4226676995735],[4.697344031510624,52.42266479293799],[4.697356976522114,52.42265484695882],[4.697367033365937,52.42266043297971],[4.697384141270393,52.42266637462175],[4.697401130176525,52.4226705180175],[4.697413409514058,52.42267499350376],[4.697439848391763,52.422685932723965],[4.697461926295034,52.42269370083784],[4.697478127035945,52.422701254981284],[4.697490950998286,52.42270851983374],[4.697505305140519,52.42271192885713],[4.697531195206473,52.422710911148066],[4.697541186958157,52.42271123893851],[4.69757614636366,52.42274146151706],[4.69759637216253,52.42275488111142],[4.697650167096707,52.422774517861995],[4.6976669209155,52.42278432213659],[4.697677660353517,52.422793282511044],[4.697687234961212,52.422797742228674],[4.697691525965315,52.422799744505234],[4.697709056861063,52.42281629411165],[4.697721445579504,52.422832634038066],[4.697733474458186,52.422843758971624],[4.697750704298565,52.42285131906533],[4.697767953828884,52.4228670581276],[4.697775205982913,52.42288282889503],[4.697776628512254,52.42289533015064],[4.697767931928591,52.42291568175135],[4.697797829190001,52.42294057203219],[4.697741328282792,52.422971970049296],[4.697749080207846,52.422983968869254],[4.697762084970477,52.42299851482433],[4.697781224579813,52.423015613044754],[4.697804057399606,52.423031564342125],[4.697863846322563,52.42306283007003],[4.697886340310474,52.42307221831954],[4.697918306684277,52.42307752730223],[4.697943979361433,52.4231037141685],[4.697980208873958,52.42314304860583],[4.69799088412505,52.42315614294393],[4.698003747611174,52.42317032853953],[4.698016381438635,52.42318037843121],[4.698031239711852,52.42317974583285],[4.698041032826671,52.42318339789414],[4.698058568200032,52.42319967783981],[4.698062874738965,52.42320635382471],[4.698054911673663,52.42321736244743],[4.698058929964442,52.423233114386974],[4.698100255931799,52.42326049775185],[4.698125919770587,52.42327403875645],[4.698158030703326,52.423288965410265],[4.698199636427366,52.42329837486004],[4.698224486820982,52.42330750711381],[4.698257223766101,52.42332944782792],[4.698276345329778,52.42333827712802],[4.698296964875488,52.42334531758372],[4.698318250933977,52.42335676590989],[4.69838017322101,52.4234021545471],[4.698403416708977,52.42342008541894],[4.698414793379116,52.42342590371497],[4.698442005219758,52.42341554622611],[4.698470105386316,52.42343314580573],[4.698535371244593,52.423480980488044],[4.698599106861391,52.423523233833755],[4.698655766935173,52.42356670431352],[4.698716568333316,52.42360858103335],[4.698740064156513,52.42362920962923],[4.698755620473996,52.423649881968004],[4.698799726654825,52.42368761715151],[4.698814179642922,52.423703609440935],[4.698830619111311,52.42371475988307],[4.698882891923318,52.42375676672214],[4.698966192929447,52.42381719890166],[4.699032351683838,52.42386440934552],[4.699062984939773,52.423879866432145],[4.699089450258076,52.42389012236125],[4.699096888595282,52.42389300568756],[4.699122785287265,52.423901065295624],[4.699152119307606,52.42391498689633],[4.699171609706804,52.42392849182147],[4.699262104325381,52.42399719833841],[4.699291101882245,52.42402048318706],[4.699360721746718,52.42407964028213],[4.699395657663724,52.42410584464468],[4.699438114038163,52.424134384524955],[4.699525175259337,52.42419039817759],[4.699659551684629,52.42428114535549],[4.699719926313247,52.42432033173257],[4.699815441666908,52.42438014210894],[4.699934162878749,52.4244509262329],[4.700033208998917,52.42451251850759],[4.700073855622503,52.42453646390676],[4.700124250047748,52.42456322505438],[4.700227831925344,52.424614885037535],[4.70026875681821,52.42463701645652],[4.700315479536414,52.42466354951688],[4.700408203549263,52.424718588704415],[4.70046953895144,52.42475657590121],[4.700491229222892,52.42477047982652],[4.700491594508546,52.42477062574744],[4.700504054207397,52.424778697052446],[4.70052698025752,52.42479349791989],[4.700533357955213,52.424797480500956],[4.700534755837462,52.42479835142566],[4.700541555952926,52.42480258811117],[4.700550292441183,52.4248080493635],[4.70059058484971,52.42483211835747],[4.700604895192662,52.42484030822832],[4.700613595257835,52.42484527493868],[4.700620590258516,52.42484927007954],[4.700631767561583,52.424855662218974],[4.70064178386386,52.42486107695344],[4.700659586085357,52.42487068015099],[4.700673976505128,52.42487844805311],[4.700711497503118,52.424897315017105],[4.700742191207995,52.4249118013343],[4.700758866249494,52.42491919598825],[4.700769481753027,52.424923895163154],[4.70077860782029,52.424927938590976],[4.700790216147939,52.42493308391509],[4.700838761926068,52.42495396504444],[4.700886178582803,52.424974659858705],[4.700891844703889,52.42497712835689],[4.700899232971606,52.42498041572681],[4.700900298879315,52.42498088926339],[4.700949461989882,52.42500273561133],[4.700961642848654,52.42500793816073],[4.700968711889318,52.42501095404499],[4.700991014467395,52.42502046641441],[4.701007810678562,52.425027637040856],[4.70102070136265,52.42503257406231],[4.701067996444698,52.42505068861513],[4.701094321688739,52.42505962207914],[4.701109535522854,52.42506454557932],[4.701112549250667,52.42506550674285],[4.701134347641982,52.42507245465757],[4.701160971521377,52.42508109324003],[4.701175038713795,52.425086010092926],[4.701185712047605,52.42508982876562],[4.701189031013494,52.42509101638806],[4.701203264096778,52.4250956645656],[4.701222303625497,52.42510038550593],[4.701246691913391,52.425104337497906],[4.701271637635683,52.42510742090024],[4.701296386405525,52.425110880642634],[4.701321081611766,52.42511495123658],[4.701345715931769,52.425119156289185],[4.701370138461174,52.425123746583864],[4.701375178116837,52.42512489922163],[4.701414733299088,52.425133963113744],[4.701446738438574,52.42514258783729],[4.701478203508901,52.42515191047092],[4.701506073031633,52.42516081682849],[4.701530300953395,52.42516943247446],[4.70154613323054,52.42517524928378],[4.701546908056915,52.42517553238746],[4.701554334574361,52.425178253709326],[4.701558604653258,52.425179734432724],[4.70157072757381,52.42518393894369],[4.701578682764884,52.42518669927401],[4.701620363760041,52.42519995469962],[4.701662715914492,52.42521259383892],[4.701705696933267,52.4252244996058],[4.701749294478818,52.425235519136486],[4.701793466254961,52.42524553534498],[4.701838199505577,52.425254422328436],[4.701889275627594,52.42526290558007],[4.701894321849443,52.42526363580951],[4.701896463713564,52.42526393580492],[4.701900967258286,52.42526458200576],[4.701912689125899,52.42526620467866],[4.701924411272524,52.42526780937656],[4.701942342257226,52.42527007013453],[4.701955857345846,52.425271721149116],[4.701969269669021,52.42527336258009],[4.701974241694137,52.42527413731578],[4.701980871153934,52.42527516430501],[4.701986943235583,52.42527610718097],[4.702006333698346,52.42528001213892],[4.702025435393875,52.42528452659062],[4.702044355817054,52.425289354562196],[4.702077588967963,52.42529844458978],[4.702123947919593,52.425313443544276],[4.702169615789972,52.42532940017398],[4.702176885389513,52.42533181496589],[4.702205773380149,52.42534142808955],[4.702215763572354,52.42534474839343],[4.702235044994657,52.42535095354633],[4.702254326144361,52.42535717666994],[4.702273894399233,52.42536289813618],[4.702304675738988,52.42536987079465],[4.70232605227207,52.425373697302085],[4.702347880535671,52.42537683435996],[4.702369970530019,52.42537920896824],[4.702392190502497,52.42538078441408],[4.70241439455546,52.42538148795246],[4.702444780219461,52.42538077376498],[4.702461584989655,52.42537885762171],[4.702478375335503,52.4253769234172],[4.702491392790978,52.425376531276505],[4.702495040679777,52.42537641753956],[4.702499755058779,52.425376741376986],[4.702504043530809,52.42537703578992],[4.702508801873463,52.42537736886872],[4.70252258024157,52.425379111217154],[4.702535890101774,52.425381677729504],[4.702539359191048,52.42538266845086],[4.702545272619552,52.425384365352],[4.702549019774443,52.42538543856939],[4.702552802695207,52.425387051258085],[4.702557754318413,52.4253891470499],[4.702561800187402,52.42539086911057],[4.702573965503566,52.42539709600575],[4.702586057596866,52.42540330450113],[4.702597231738241,52.42540897741472],[4.702608212548629,52.42541479301417],[4.702619327058788,52.425420519507625],[4.70263047764219,52.425425814796554],[4.702641514650453,52.42543084878372],[4.702652790070043,52.42543567742895],[4.702664394606594,52.42544013947689],[4.702676766923669,52.42544439025321],[4.702689497203497,52.42544831054953],[4.702702529142985,52.42545173826107],[4.702714999142246,52.425454425729896],[4.702726931462534,52.425456705642986],[4.70273099498594,52.42545728635611],[4.702733855678892,52.4254576893538],[4.70273463315712,52.42545780169778],[4.702739034105786,52.425458429298494],[4.702751093365203,52.42545915506241],[4.702764557563209,52.42545839697459],[4.702778056046662,52.42545637181114],[4.702791402403516,52.42545372561304],[4.70280340945359,52.42545117054304],[4.702814097037109,52.425448374169456],[4.702824713059523,52.42544545155321],[4.702835515191532,52.42544285356976],[4.702854404892073,52.42543921477753],[4.702854888631137,52.4254393074488],[4.70286453103892,52.42543754761285],[4.702886725071389,52.42543509630604],[4.702912954036832,52.425434124311366],[4.702930484784213,52.425434701899476],[4.702947228730594,52.42543672196853],[4.702963428987592,52.42544062632217],[4.702986423725562,52.42544915365732],[4.703007115401857,52.42545924953297],[4.703027611880621,52.425473415726415],[4.703036280979775,52.4254794606072],[4.703050032658187,52.42548769189192],[4.703065690733554,52.4254962397652],[4.703070709510934,52.425498749359384],[4.703076297318637,52.42550154085874],[4.703081928813135,52.42550435957332],[4.703098808754659,52.42551185394265],[4.703123369885338,52.425520821705945],[4.703149243583481,52.42552857470814],[4.703175625866299,52.42553576441264],[4.703215553446535,52.42554646561901],[4.70325794650442,52.42555650696171],[4.703270090093999,52.42555939021819],[4.703285404080213,52.42556261533105],[4.703310448646941,52.425567891882366],[4.703310888424496,52.42556797531028],[4.703325484293662,52.42557105246939],[4.703381198343744,52.425581997520815],[4.703435557319279,52.42559120009176],[4.703450749011633,52.425593777359836],[4.703500477662623,52.42560102081692],[4.703501181779584,52.42560112374484],[4.703556235498307,52.42560913489878],[4.703591169948988,52.42561472010649],[4.703634445221048,52.4256228610016],[4.703643065078428,52.42562448358301],[4.703677471700015,52.42563188124458],[4.703711787353407,52.42563945812628],[4.703741843499598,52.42564581505958],[4.703746254466327,52.42564674826374],[4.703771579285639,52.42565197240707],[4.703796934206268,52.42565715177988],[4.703822472478414,52.425661882817444],[4.70384827273732,52.42566583342655],[4.703887485099455,52.42567049950407],[4.703941926243689,52.42567534325959],[4.70401715658921,52.42567921933687],[4.704078613019107,52.42568486743475],[4.704124732787757,52.42569066077204],[4.704160284537227,52.42569626734529],[4.704190559352599,52.42570179855232],[4.704210191519697,52.425706261781],[4.704238014643942,52.42571442124095],[4.704264800960098,52.42572403073321],[4.704317179822231,52.42574534595165],[4.704368430410242,52.42577023176673],[4.704395119171834,52.42578140453436],[4.704422244365106,52.425790018303786],[4.704450716766146,52.42579707596212],[4.704480147635187,52.425802997692564],[4.704570549563162,52.42581841121488],[4.704619983297628,52.42582860048068],[4.704679241124523,52.42584241444689],[4.704719042401564,52.4258508584922],[4.704739202242417,52.4258544798239],[4.704769202193388,52.425858777978256],[4.704799615142109,52.42586203592528],[4.704922898698845,52.42587126622756],[4.704953506934413,52.42587425562708],[4.705018158959264,52.4258834088791],[4.705031093648959,52.425884579849615],[4.705044053008232,52.42588510384325],[4.705056981278199,52.42588478280865],[4.705069906337307,52.425883715771505],[4.705121774175456,52.42587715669932],[4.705134814623993,52.42587623412323],[4.705158819523862,52.42587553643624],[4.705182946350869,52.42587551352687],[4.705218830129689,52.425876762636975],[4.705246046057245,52.42587949875532],[4.705253253728919,52.425880223305114],[4.705286933765759,52.42588614232556],[4.705320101831514,52.42589380201229],[4.705418836351337,52.4259199852119],[4.705452228854718,52.42592739449596],[4.705499508609043,52.42593617790036],[4.705547137157937,52.425944271236155],[4.705690856362314,52.42596693812862],[4.705786022227466,52.425983330819854],[4.705878524044669,52.426001829223516],[4.706108496118157,52.42605070544561],[4.706146597598481,52.42605785399182],[4.706262241740934,52.426077276025616],[4.706300313728834,52.42608443334039],[4.706337679026095,52.42609261118474],[4.706374051820323,52.42610223034103],[4.706428499998276,52.42612101297712],[4.706450942532042,52.426127271551216],[4.706466820562897,52.42613017593244],[4.706483198237592,52.426132139469054],[4.70655053626911,52.426136849392314],[4.706567016995787,52.426138804521514],[4.706590863916554,52.42614265343341],[4.706637854586897,52.42615209981363],[4.706760241827019,52.426181464577716],[4.706937454950292,52.426228984641554],[4.706976455555307,52.42623791765379],[4.706991058111972,52.4262425043377],[4.707007428600623,52.426249725588455],[4.707022606577303,52.42625800953283],[4.707033611854349,52.42626515504387],[4.707055108639938,52.42628417965304],[4.707067178485329,52.426292850199495],[4.7070843817268,52.426302332142065],[4.707096837742935,52.42630787716829],[4.707103389763338,52.426310134745506],[4.707116487867924,52.426313121948944],[4.707129859771467,52.426314555843234],[4.70715061296091,52.42631498952019],[4.707165371599227,52.4263142024095],[4.707197104521534,52.426308129051925],[4.707204894261972,52.426307337894734],[4.707212566879668,52.426307471802126],[4.707217848941675,52.42630817619397],[4.707228265575749,52.426310572781944],[4.707272850220452,52.42632448998416],[4.707295945433,52.42633325972154],[4.707318322442722,52.42634284321797],[4.707383823508907,52.426373381878086],[4.707408284614004,52.426384163695545],[4.707399849930542,52.42642600716173],[4.707414713704577,52.42643178167302],[4.707649285954883,52.426481022808304],[4.70767754263608,52.426457169613016],[4.707699198077854,52.42645917223428],[4.707712161307116,52.42646041497654],[4.707725141306824,52.42646152299742],[4.707729356965125,52.42646178085208],[4.707733954578819,52.42646205887225],[4.707740828947673,52.42646247577569],[4.707759242654016,52.42646303074702],[4.70776845851267,52.426463200430355],[4.707769017020312,52.4264632126205],[4.707777688934708,52.42646337918422],[4.70779610195248,52.4264639790845],[4.707824072904037,52.42646545166593],[4.707832209784999,52.426465992643145],[4.707839392053335,52.426466465232615],[4.707841242749945,52.42646658369599],[4.707852008802202,52.426467292537055],[4.707879804946955,52.42646961793831],[4.707887393197437,52.426470461349645],[4.707902730998891,52.42647217605869],[4.707918127468491,52.42647390008986],[4.707931651647902,52.426475954920264],[4.707952583255955,52.42647913972737],[4.707966708809455,52.42648128787841],[4.708014813615108,52.426490030064144],[4.708062587845911,52.426499237698074],[4.708123495887104,52.42651198984853],[4.708183496809244,52.42652637253791],[4.708242818301847,52.42654191970972],[4.708360493805419,52.426574752042356],[4.708365881817124,52.42657622094749],[4.708478577162039,52.42660688554965],[4.708552129019933,52.42662543508891],[4.708567830091078,52.426629353787966],[4.708569236040113,52.42662971236173],[4.708625786189685,52.426643832393715],[4.708638013816775,52.4266470301487],[4.708684903692887,52.4266592793092],[4.708716256411479,52.42666746690857],[4.708735900554916,52.42667312482048],[4.708803471689978,52.42669147817952],[4.708853474937407,52.42670684586673],[4.708854599639455,52.42670732865543],[4.708855068015389,52.42670746615275],[4.708863992126307,52.42671132804085],[4.708866196188001,52.426712374248005],[4.708874355971731,52.42671622277213],[4.708876858189667,52.42671700105376],[4.708885067339402,52.42671954663768],[4.70889468156754,52.42671962863623],[4.708895858496419,52.42671958144691],[4.708898524798102,52.42671924618782],[4.708917446154922,52.42671546280706],[4.708957489783707,52.42670338780185],[4.708978155955037,52.426697996605526],[4.708984422580948,52.4266968191285],[4.708991805100525,52.426696699603305],[4.709000353234965,52.426698231505036],[4.709013147922773,52.426701845902635],[4.709053560388458,52.426711765970765],[4.709088898588551,52.4267218097783],[4.709123605451067,52.42673275772391],[4.709157861659147,52.42674433222229],[4.709259852439215,52.42677993200534],[4.709380966406913,52.42682066523506],[4.709423192312322,52.42683603313043],[4.709440075918427,52.426842430104756],[4.709486023989475,52.426861486263974],[4.709536686769941,52.426884703727175],[4.709601493006412,52.42691660331068],[4.709645964012287,52.42694091777448],[4.709661628828196,52.42694914124622],[4.709667435968409,52.4269520505261],[4.709691955369802,52.42696388376574],[4.709713199023787,52.42697264244104],[4.709757653474585,52.42698843639298],[4.709803419138974,52.42700309638126],[4.709848916771952,52.42701797951295],[4.709878696232336,52.42702524105991],[4.709900481898492,52.42702644411283],[4.709911074047586,52.4270260372927],[4.709920077484131,52.42702568430524],[4.709937233850604,52.42702867641475],[4.709958548497014,52.42703472115492],[4.709986475478572,52.427041019387055],[4.710019105656275,52.42705223381916],[4.710077977567861,52.427067462924825],[4.710104506164483,52.42707483166654],[4.710194031528853,52.42711036839556],[4.710281998953858,52.427141069742],[4.71034576793101,52.42717163280265],[4.710352671709212,52.42717494377294],[4.710520127430303,52.42723513832333],[4.710650671545643,52.42728720370047],[4.71071292844545,52.42731090927319],[4.710802467056715,52.42733986659019],[4.710890133983709,52.42736623367638],[4.710895124686366,52.42736773614889],[4.71094279269423,52.427382074003916],[4.711036715676604,52.42741856092234],[4.71105642078488,52.427425081616555],[4.711209893049001,52.42747583915889],[4.711308771725853,52.427519041004395],[4.711443546914619,52.42757336757693],[4.711596625782432,52.42762780734041],[4.711742711605922,52.427690583610534],[4.711890001581579,52.427745771925444],[4.712014809888633,52.427796221252144],[4.712108391619929,52.427831096562045],[4.712164950234501,52.42785833702911],[4.712259406026179,52.42791015907426],[4.712326810716161,52.42794350998375],[4.712469467950412,52.428018183552076],[4.71251258645492,52.428036871889404],[4.71259123661702,52.428076191613535],[4.712879473844264,52.42821334023179],[4.713033771551875,52.428293247294924],[4.713482224836618,52.42851781273663],[4.713776549754039,52.42865819337999],[4.713840908735913,52.4286879669639],[4.713868441678588,52.42870191059173],[4.713927805164318,52.428723719576666],[4.713958483421446,52.4287377439679],[4.714008587105411,52.42876611527223],[4.714020962349024,52.428776108028835],[4.714028079121267,52.428779950267774],[4.714050115900832,52.42878984511462],[4.714059412973677,52.42879534449166],[4.714070477536386,52.42879870584064],[4.71408040703363,52.42879742307237],[4.714073201047987,52.42878687548333],[4.714075231227395,52.428782932414414],[4.714086180569725,52.42878226660444],[4.71409385804213,52.42878404484644],[4.714102776230446,52.42879028804947],[4.714109508091897,52.42879817257554],[4.714115688701402,52.428812336393264],[4.714110628610939,52.428820216853815],[4.71411465138896,52.42882254056233],[4.714139982358065,52.428841100299486],[4.714223923202774,52.42889141400188],[4.71430549612322,52.428922435517705],[4.714354018355625,52.42893782839944],[4.714464011893948,52.428989242553335],[4.714482066392886,52.42899899787033],[4.714505682112385,52.42901433917087],[4.714516795934064,52.429023174284275],[4.714538526559605,52.42904742969203],[4.714546056545562,52.429055049091076],[4.714556145745317,52.42906358178943],[4.714582557567152,52.42908070054063],[4.714612922360433,52.42909796755042],[4.714641850110471,52.42910723630528],[4.714719851559503,52.42913046287609],[4.71476192690675,52.429152137376086],[4.714834493007423,52.42919151093859],[4.714939731438927,52.42924726569901],[4.715057476823236,52.42931406532115],[4.715108359882204,52.42934155078711],[4.715123119105382,52.429345625046274],[4.715137383747365,52.429350316651835],[4.715150275165316,52.42935732828926],[4.715163493328143,52.429367999783594],[4.715173315438157,52.4293737986441],[4.715194692951193,52.42937872831012],[4.715207245361136,52.42938773329438],[4.715214709590655,52.42939679031324],[4.715227927780785,52.42940746180033],[4.715229590626102,52.42941221674996],[4.715231464321108,52.42941761102388],[4.715240291064083,52.42942796101233],[4.715272173520071,52.42945570715863],[4.715304653425441,52.429476059783674],[4.715324146671224,52.42948598490652],[4.715349208275665,52.429495222578275],[4.715374295551046,52.429501800022855],[4.715428064854871,52.429513519262535],[4.715439058780787,52.42951670931482],[4.715450501341484,52.42952231062017],[4.715461460844439,52.429530677406184],[4.715463167917152,52.42953154990475],[4.715473249244325,52.42953965106751],[4.715481051410339,52.429549698634595],[4.715485259459613,52.429558233865464],[4.715497013607335,52.42957140459878],[4.71551228653037,52.429583301043365],[4.715530502639675,52.42959503441348],[4.715620704889566,52.429625339964616],[4.715676945254398,52.429641863552845],[4.715677486921417,52.42964201941371],[4.715680599696403,52.429643277359474],[4.715693518408718,52.42964850053369],[4.715709589901397,52.42965622218447],[4.715722834064209,52.42966422440728],[4.715723902407215,52.429665524693625],[4.715741139110686,52.42968658174157],[4.715758550927821,52.429705788307395],[4.715829377288279,52.42974462111538],[4.715845639790163,52.42975526484065],[4.715862650374552,52.42976408829317],[4.715878879249624,52.429766283360294],[4.715895022351716,52.42976928683466],[4.715912704515051,52.429776487305894],[4.71592537819599,52.429786238880546],[4.715936087864852,52.42979848690417],[4.715951637851936,52.42981248798819],[4.71596462478495,52.4298229154124],[4.71598233678302,52.429831059753255],[4.71601216954194,52.429835965260224],[4.716023562313833,52.42984001135057],[4.716031537459116,52.42984544915619],[4.716033479448265,52.429853135673476],[4.716027773775995,52.42985996998063],[4.716024122207669,52.42986709454117],[4.716026034257286,52.429873846165414],[4.71603780290244,52.429890926586324],[4.716061827858839,52.429910377278404],[4.716226817107186,52.429976364745464],[4.716376458740034,52.43004897893125],[4.71640193962865,52.4300587220632],[4.716434256339967,52.430065645786414],[4.716471829042931,52.43006824020312],[4.716497149599236,52.43007206848354],[4.716523540034219,52.43007806885549],[4.71654767134384,52.43008760658782],[4.716554482516837,52.43009029651388],[4.716569312239605,52.43009944905453],[4.716584783022411,52.43010899169332],[4.716629874763438,52.43013258798588],[4.716856831339496,52.43024394471888],[4.717042509031113,52.43034407558927],[4.717057153051456,52.43034802312492],[4.717075143794026,52.430351378419076],[4.717093513171025,52.43035789054283],[4.717114389814113,52.430369728586506],[4.717185005488451,52.4304158304474],[4.717222752103893,52.43043513378714],[4.717241787263699,52.43044332136843],[4.717251609406254,52.430453038701195],[4.717268094697215,52.43046454630832],[4.717448219496852,52.43054404527554],[4.717597773673323,52.430620755802174],[4.71764436390699,52.4306474249828],[4.717661030500467,52.43066153999822],[4.717705724606064,52.430694004510464],[4.717714989213635,52.43070073472972],[4.717736240844601,52.43070821573432],[4.717755136445021,52.430708142725656],[4.717772386570508,52.430703117170914],[4.717783775538533,52.43070355000346],[4.717793290348281,52.43070929298036],[4.717823034719255,52.43073663088513],[4.717837480381731,52.430751766918156],[4.717858518229815,52.430769501685134],[4.717944962743408,52.43080742378306],[4.71818774808787,52.43092555418194],[4.71821282510647,52.43093775727499],[4.718298523611769,52.43097059683658],[4.71834759731691,52.431006177598675],[4.718392369943024,52.43104031400563],[4.718442973532193,52.43107196673911],[4.718461155331538,52.43108606322672],[4.718501315817638,52.43110820191849],[4.718576341284865,52.431151649475],[4.718594715829578,52.43115785580933],[4.718608891169658,52.43115976029378],[4.718624723122486,52.4311551759999],[4.718636365322103,52.4311505321159],[4.718665647819003,52.43116469119757],[4.718675798773577,52.43117116569636],[4.718703396069583,52.431180075420066],[4.718729942502725,52.431199180273445],[4.718744081374556,52.431206423242514],[4.718822075773821,52.431250956926775],[4.718902678681999,52.4313048524993],[4.718957201086956,52.43133117941444],[4.718974252855611,52.43134125193789],[4.719013474826981,52.43136227967112],[4.719028164800297,52.43136808767766],[4.719029579313393,52.431368868597204],[4.719279321141278,52.4314541588622],[4.71931452869282,52.431469366788264],[4.719367881851329,52.431489404505264],[4.719521783986637,52.431561966762615],[4.719629810788381,52.431621768479815],[4.719752844452735,52.431700528830994],[4.719806158043665,52.43170566448558],[4.719820842743942,52.43171086119793],[4.719837283832881,52.431720498745335],[4.719840004643904,52.43172339013783],[4.719844299082119,52.43173894510142],[4.719862622992723,52.43175048965702],[4.719865257238128,52.43175717337914],[4.719865795923718,52.43177313860265],[4.719864875727116,52.43178346031063],[4.719872876112595,52.43179313121021],[4.719880029256548,52.43179852817157],[4.719886444936876,52.43180212343583],[4.719905319973351,52.431808323394854],[4.719920167026738,52.43180860472622],[4.7199293802421,52.43180707476488],[4.719933560545732,52.431803862723875],[4.719940779584148,52.43180391235942],[4.71995128962793,52.43180902263529],[4.719973187753864,52.431825377752496],[4.720007205684857,52.43184540517672],[4.720022697394984,52.431861454584336],[4.720037331137075,52.43187198968769],[4.720090648668951,52.43189932490175],[4.720124013478401,52.43191391104497],[4.720149923005994,52.431924608470595],[4.720168490180164,52.43193075272796],[4.720184185394772,52.431932324043885],[4.720240085128444,52.43193564955089],[4.720259550612744,52.43194072931111],[4.720268491207714,52.431944608395895],[4.720495689811612,52.432085052649654],[4.720630454210828,52.43217105925288],[4.720699737324725,52.43222699303148],[4.720762953759707,52.43226982450973],[4.720781126852673,52.43227969635651],[4.720839858591504,52.432308850229646],[4.72090275285935,52.432332068620006],[4.720977348519433,52.43235844453512],[4.721055343276315,52.43238466874303],[4.721076162352066,52.43239167035998],[4.721110183287466,52.4323988540302],[4.721192223358101,52.43241618506893],[4.72129501638208,52.432432212606564],[4.721386111052253,52.43244097516829],[4.721474735070538,52.43243998109542],[4.721569213775132,52.432429052462936],[4.721687980374853,52.43241250801514],[4.72260382240053,52.43223978076367],[4.723010761732064,52.43215677777967],[4.723373971569906,52.432098109858764],[4.723522022734004,52.43207306345621],[4.723651448193742,52.432043769243144],[4.723722046620085,52.43202100317757],[4.723789809579597,52.43199316111272],[4.723889478475236,52.43193504721774],[4.723918612294272,52.43191805273403],[4.723983084062071,52.43187235152174],[4.724051230375732,52.43179238269971],[4.724105331415685,52.431719453520294],[4.72413451350468,52.43165994735529],[4.724166774152073,52.43159418498096],[4.724181015853126,52.43156517142348],[4.724215903963726,52.43152523645739],[4.724240040170524,52.4315012214917],[4.724258639772263,52.4314904953444],[4.724277092111095,52.431484693639106],[4.724347035930705,52.43146923055491],[4.724356133819528,52.43146654917731],[4.724351143555921,52.43145120619564],[4.724347643048906,52.431440464269876],[4.724381725507055,52.431435666720674],[4.724385213471701,52.43144626477184],[4.724389501027825,52.431445686575614],[4.724543953338719,52.431425042735654],[4.724550098027667,52.43142416933592],[4.724546310318324,52.43141394709772],[4.724603637189636,52.43140638541534],[4.724616595182967,52.43140417498652],[4.724619945899305,52.43141510480876],[4.72462438020924,52.431414545400024],[4.724780770662796,52.4313940738673],[4.724783422559033,52.431393729182176],[4.72477975134567,52.43138357950445],[4.724812971938857,52.43137937919085],[4.724816498147503,52.43138939324124],[4.724822436368192,52.43140625143781],[4.724835791886179,52.43140990319807],[4.724853421863785,52.43141286881803],[4.724953408117764,52.43142969538347],[4.725176447443705,52.43150198049898],[4.725395279080084,52.431567581795285],[4.725529513182789,52.43160891988502],[4.725675280571853,52.43164402181494],[4.725763721939403,52.43166104388949],[4.725878731696589,52.431673288897834],[4.725981135413988,52.43167304243579],[4.726160187133596,52.431653432514366],[4.726695157446467,52.43158821666271],[4.727187113337352,52.431518282959125],[4.727682120081631,52.43145665086907],[4.728166475263791,52.431391362394734],[4.72867499826239,52.43132537038888],[4.729953002865718,52.43115403222029],[4.730302252996263,52.431114373568484],[4.730471460763142,52.43109395659771],[4.730653960050976,52.43106962248061],[4.730842140283279,52.43104789902139],[4.731202163249131,52.4309965684246],[4.731429394895637,52.43097297505313],[4.73144369630328,52.430969378217945],[4.731455564239396,52.43096528257906],[4.731479499546038,52.43095951009572],[4.731524349396117,52.43095634292398],[4.731663932173255,52.430936605182616],[4.732082082683583,52.43088594397091],[4.732093744643241,52.4308828447656],[4.732129454898773,52.430876265435984],[4.732195285302122,52.43087023905289],[4.732381743672582,52.43084950127232],[4.732403961169761,52.43084752091264],[4.732496164726958,52.430835905924646],[4.732562006475872,52.43081717077693],[4.732574588362971,52.43081549666469],[4.732589600222285,52.430815552627],[4.732605325160846,52.4308171044864],[4.732620836912719,52.43081716320609],[4.732641340500781,52.43081275564056],[4.732679572354642,52.430808661694186],[4.732902143787491,52.43078090541748],[4.733311662741554,52.430728080105695],[4.733863304559543,52.43065457436474],[4.733965257727734,52.430641843584695],[4.734135074793122,52.4306187554016],[4.734222720827474,52.43060404015979],[4.734503001296866,52.430568402062804],[4.734887669931752,52.4305183644361],[4.735235406057122,52.43047402730545],[4.735881491670845,52.43039598065287],[4.736119975970905,52.430360711188804],[4.736169278868351,52.43035462774666],[4.736256717397108,52.430344942981165],[4.73660962015839,52.430301034653134],[4.736798610555642,52.43027377876007],[4.737262084584457,52.430212805470454],[4.738116498008964,52.43010473765803],[4.738497575695576,52.430059378226865],[4.738703816145929,52.43003680644823],[4.738844927761293,52.43001867743226],[4.738846508242693,52.43002320689647],[4.738855731456062,52.43002192717728],[4.738902887967899,52.43001576794284],[4.738922048755183,52.430013625837496],[4.738937645363051,52.43001188665377],[4.738939250693477,52.43001170669374],[4.738953241969701,52.43001014746805],[4.738958838506232,52.430009521979905],[4.739006205791621,52.430004028947856],[4.73906303690049,52.429996888981535],[4.739118142573641,52.42998909243687],[4.739171473645898,52.4299829938268],[4.739226793187884,52.42997766103314],[4.739263379913341,52.429974364864734],[4.739313849995909,52.42996884373637],[4.739384538390927,52.42996426897161],[4.739426743288415,52.42995987101409],[4.739444251328726,52.42995712660133],[4.739471192217266,52.42995183629802],[4.739503908678743,52.42994574169921],[4.739525920994816,52.429938635891766],[4.739558164433618,52.429927685330625],[4.739563720595721,52.4299298188195],[4.73959414797191,52.42990028073206],[4.739586108606502,52.429874909437494],[4.739630022708536,52.429869253481826],[4.739634494102366,52.429882220215006],[4.739639050033082,52.42989543906576],[4.73963937885668,52.42989607898985],[4.739639899600304,52.429896666036456],[4.739640612658266,52.429897173244555],[4.73964145935234,52.42989759130587],[4.739642425242985,52.42989790216602],[4.739643481188227,52.42989808769037],[4.739644568378397,52.429898147557495],[4.739645657540094,52.42989807261984],[4.739646704434618,52.42989787162326],[4.739647664823283,52.42989755331377],[4.739648494598836,52.42989711745035],[4.739649178533123,52.429896599900594],[4.739649687089881,52.42989600949089],[4.739649990601417,52.429895364034465],[4.739650088542004,52.429894699479306],[4.739649965946366,52.42989403371901],[4.739645410012531,52.429880814868696],[4.739640938615641,52.429867848135906],[4.73968563337686,52.4298620975608],[4.739694041277333,52.429887407948215],[4.73974855131258,52.42990926729117],[4.739753709049929,52.42990446008422],[4.739819586745279,52.42989804325989],[4.739864118224142,52.4298913929547],[4.739867494142887,52.42989079124414],[4.739881616763572,52.42988828891726],[4.739895739514047,52.42988577760169],[4.739918559939938,52.42988172296853],[4.739997137620859,52.429870540027686],[4.740076114985494,52.4298591704756],[4.740091220076733,52.42986590386424],[4.740123300229879,52.429880198727844],[4.740147462520087,52.42989097210699],[4.740258998387864,52.42987625702393],[4.740575028684704,52.42983455329946],[4.740564164573812,52.429800196927836],[4.740577998200359,52.42979834904378],[4.740582226315734,52.42979778791385],[4.740592376863919,52.42979643223041],[4.740600847927459,52.429795301062626],[4.740714286704228,52.42978013756206],[4.740581379577838,52.42939463967816],[4.740180202130936,52.428231085115684],[4.739565574231275,52.42753020030291],[4.737597395169666,52.421820620137],[4.737564524023202,52.42172139519373],[4.737525179881491,52.42156236637636],[4.737503783558163,52.42141550646885],[4.737499901038193,52.42134746607469],[4.737496908143895,52.42129494337176],[4.737501962450024,52.421140804628706],[4.73753628328844,52.42092068567753],[4.737576403352326,52.4207762212337],[4.737631682937229,52.420593426338726],[4.740702959391822,52.41037292556621],[4.740862640741173,52.40984120115287],[4.740887690585328,52.409764204998154],[4.740948969563553,52.40962565168735],[4.741020611477573,52.409505094407535],[4.74111384864638,52.40938008908758],[4.741238391232404,52.409244873554044],[4.741379398558951,52.40911938251252],[4.741521589635691,52.409013455088726],[4.741681115055774,52.40891305055065],[4.741844230752477,52.40882642559561],[4.742000789737793,52.40875503488602],[4.742175991897774,52.408686091284345],[4.742286726075136,52.40864801990534],[4.742430402452102,52.40860438455636],[4.742567899925401,52.40856823815342],[4.742712494972558,52.40853617469088],[4.742880514792079,52.40850621576622],[4.743122458678089,52.40847315332926],[4.743597208198724,52.40841079712007],[4.746040567693852,52.40808981040573],[4.746749191856607,52.409966877646745],[4.746853931840776,52.41029161362391],[4.746895825860123,52.41038974350455],[4.746932944265883,52.4104542603787],[4.7471430149031,52.410725557964085],[4.747821870967726,52.411582582377505],[4.748030396604373,52.41179668098762],[4.748072849597154,52.41183087467497],[4.748123745418257,52.41186462855364],[4.748183832001455,52.4118970388857],[4.748227800981977,52.41191683335431],[4.748688937184911,52.41208008322629],[4.748910767460595,52.412137317127986],[4.749393825596178,52.41218807502784],[4.749624430535866,52.41221272036686],[4.749884371063272,52.41219556833417],[4.749980230158624,52.4121832584794],[4.750051778128281,52.41218124357122],[4.750149711128112,52.412188241395626],[4.750215759936926,52.41219966942893],[4.750434710236779,52.41224680074448],[4.750741832571808,52.41233076973684],[4.751283539990373,52.41238657151285],[4.751302347429156,52.412385944458144],[4.751321584819753,52.41238403446263],[4.751352022621273,52.41237797832034],[4.751380264715094,52.4123682254162],[4.751401156687638,52.41235753428633],[4.751419107534765,52.41234490399446],[4.751434472174386,52.412329159053805],[4.751445601877827,52.41231047935995],[4.751450481009503,52.41229105609186],[4.751450090729905,52.41227728479263],[4.751446519617797,52.41212362934164],[4.751355424280059,52.411818411392446],[4.750954041859076,52.410621498971715],[4.750948905054829,52.41060769318565],[4.75094756122693,52.4105876702821],[4.750950431551965,52.410575084893026],[4.750955556656364,52.410564120418094],[4.750966108126115,52.41054986861138],[4.750983460634297,52.410534853419826],[4.75100013729043,52.41052493962985],[4.751015181214488,52.410518189740124],[4.751035292288291,52.410511673776924],[4.751083366914958,52.410503465480275],[4.75113316376814,52.41049711788449],[4.751793166420396,52.41041217545148],[4.751816536487159,52.410405910517085],[4.751836998669227,52.41039642136114],[4.7518532951717,52.41038430341779],[4.751864835321233,52.41036975125106],[4.751870354358674,52.41035077179018],[4.751868933574745,52.41033813640298],[4.751805379720329,52.410139589025576],[4.751613098661619,52.409505452449594],[4.751583873228268,52.409406655234584],[4.751579210907971,52.40938333400497],[4.75157292336942,52.40933909857857],[4.751567828605691,52.40930494480466],[4.751571232570692,52.40926231625609],[4.751597262618419,52.40919762737045],[4.751628827908314,52.40913638351583],[4.751643287863984,52.409100635972585],[4.751649597576738,52.409066489458255],[4.751647034407335,52.409034119851974],[4.751639286049406,52.40900053604556],[4.751453759317809,52.40838985731817],[4.751411728807906,52.40825150817475],[4.751143843216834,52.40741921646674],[4.756800713248664,52.40667559277904],[4.757061681533667,52.40663121570492],[4.757289990079301,52.406578925951415],[4.757579083661022,52.40649431538755],[4.757835870151245,52.406402791677216],[4.757991120081381,52.406335255670534],[4.758191370643907,52.406241642323],[4.758345252775019,52.406150290073505],[4.758560723702933,52.40599990047203],[4.758719443804329,52.405862628094866],[4.75886104934084,52.40571348180029],[4.75897527753202,52.40555491480059],[4.759097326822705,52.40527788582284],[4.759362902975671,52.40439624829371],[4.759515484434843,52.40388258065085],[4.759797638703595,52.4029362641268],[4.760178571039861,52.401658633197364],[4.760248120064742,52.40150481657238],[4.760396906998035,52.40127356738396],[4.760518119717881,52.4011394285147],[4.760568380834953,52.40108381760652],[4.760808748606217,52.40088086942],[4.761034208521977,52.40073346709721],[4.761425097370934,52.40054184691611],[4.761756537449285,52.400422712299324],[4.762113222741322,52.40032939696542],[4.762342398049506,52.400285847196514],[4.76258876454255,52.40025272354819],[4.766853402518932,52.39970119612727],[4.767504829402236,52.39961266145456],[4.767880531294752,52.39953984844405],[4.768227936548844,52.39944464171405],[4.768656109393174,52.39929368238174],[4.768908545747743,52.39918809116744],[4.769174092464588,52.3990568449045],[4.769290004537791,52.39898754298646],[4.769376638143886,52.398935758142976],[4.769642564472752,52.398739100018915],[4.769792386706528,52.398610745179894],[4.769939819362852,52.39846717043628],[4.770055378615649,52.39833226439167],[4.770153063785584,52.398191503974225],[4.770271793771068,52.39799021278092],[4.770392885092111,52.39775114029579],[4.770485293025101,52.397535421286406],[4.770520817079713,52.39746067542011],[4.770555610550219,52.397396189743645],[4.770588250747012,52.39734389820437],[4.770622770158406,52.397300154796326],[4.770651193414539,52.397263704657284],[4.770691140918194,52.39721948617084],[4.770741660083821,52.3971641509262],[4.770825223788219,52.39707389048232],[4.771026907402711,52.396855306335844],[4.77117940709051,52.39669001503589],[4.771231554589644,52.396633717373064],[4.771507401585721,52.396317830261836],[4.771709927606612,52.396099456040034],[4.771855698295189,52.39594225381694],[4.772083368570902,52.395696740759576],[4.772428627727114,52.3953244273691],[4.772537180364306,52.39520840171241],[4.772591790310369,52.395155450679695],[4.772660914044669,52.395090971747344],[4.772709791768721,52.39504770667257],[4.772759229605076,52.39500854289639],[4.772837881983432,52.39494979354983],[4.772805232213685,52.39489074544875],[4.772802680895716,52.394886139474664],[4.772799685248463,52.394880731286015],[4.772664368868719,52.39487993937721],[4.772667215069817,52.39486645454745],[4.772459872790773,52.394634114789085],[4.772452176326779,52.394625491541134],[4.772444928424516,52.394617364947145],[4.772366387243337,52.39452935366323],[4.77236069991907,52.39452311360455],[4.772354820619321,52.39451694445103],[4.772348764159555,52.3945108372917],[4.772342515599744,52.39450481002454],[4.772336089880008,52.39449884475158],[4.772329486875728,52.39449295045986],[4.772322706337596,52.394487145123584],[4.772315748639664,52.39448140178136],[4.772308613407945,52.39447574739452],[4.772301315457877,52.39447017305222],[4.772293854789484,52.39446467875438],[4.772286216587373,52.394459273411805],[4.772278430233025,52.394453957177056],[4.772190378165023,52.39439496277219],[4.772175136157396,52.394384853295925],[4.772159731187239,52.39437484183664],[4.772144148563865,52.394364928318026],[4.772128417793391,52.3943551039054],[4.772112509245011,52.394345386420376],[4.772096452424822,52.39433576702836],[4.77208023264213,52.39432624565304],[4.772063849772207,52.39431683128139],[4.772047318630446,52.39430751500255],[4.772030624401427,52.394298305727304],[4.772013781900537,52.394289194544726],[4.771996776187611,52.39428019935272],[4.771979636893432,52.39427130232953],[4.77196234920256,52.394262512385986],[4.771944912990212,52.394253838509044],[4.771927328505837,52.39424526272455],[4.771909610190558,52.39423680308288],[4.771891743353653,52.39422845950763],[4.771873742810484,52.394220223087984],[4.771855608436227,52.39421210281103],[4.771837325664939,52.39420408961322],[4.771818923753081,52.39419619263428],[4.771800388009932,52.39418841179776],[4.771781733126057,52.39418074718004],[4.771762929595313,52.39417320761537],[4.771744021739094,52.394165775358566],[4.771724979926472,52.39415846823113],[4.771705819097571,52.39415126833505],[4.771686538877914,52.394144202631644],[4.771667139516986,52.39413725314662],[4.771647635705317,52.39413041995627],[4.771567510313291,52.39410269870846],[4.771554147503954,52.39409799156899],[4.771540889029661,52.39409317711734],[4.771527749830743,52.39408823745575],[4.771514729657604,52.39408319055839],[4.771501813944532,52.3940780273619],[4.771489032072788,52.39407274801904],[4.771476383917591,52.39406736151685],[4.771463854788383,52.394061867779165],[4.771451444810058,52.3940562578188],[4.771439183114155,52.394050549762845],[4.771427040569219,52.39404472548425],[4.771415046431624,52.39403879412306],[4.771403200576544,52.39403276466629],[4.771391488438265,52.39402662805064],[4.771379909891955,52.394020393263105],[4.771368494318803,52.394014060456605],[4.771357227153097,52.394007620567635],[4.771346108269985,52.39400108258337],[4.771335137544608,52.39399445549098],[4.77132432991728,52.393987721392655],[4.771313670322812,52.393980907173315],[4.77130318851696,52.393973986024534],[4.771292854743947,52.39396698475488],[4.771282698509768,52.39395989453009],[4.771272705248721,52.39395270628663],[4.771262874711023,52.39394543799884],[4.771179081206619,52.3938825283391],[4.771169295895562,52.39387517938879],[4.771160019385508,52.393868219557405],[4.77114200442774,52.39385469815228],[4.77110582926387,52.39382753773725],[4.77109687421629,52.39382070540153],[4.77108809683176,52.39381377512409],[4.771079511550929,52.39380676495554],[4.77107111849867,52.39379966590883],[4.771062917550021,52.393792486971115],[4.771054894014426,52.39378522806606],[4.771047077397771,52.39377788035935],[4.771039467325218,52.393770470812406],[4.771032034790489,52.393762972311094],[4.771024823615158,52.393755403058925],[4.771017804293228,52.393747771890155],[4.771011006455483,52.39374006098354],[4.771004400470991,52.393732288160386],[4.770998001155104,52.393724444510106],[4.770991823073285,52.39371653909624],[4.770985851410025,52.39370858082949],[4.770980100980648,52.39370056079927],[4.770974557094584,52.393692478929125],[4.770969234317275,52.39368434428263],[4.770955419204415,52.39368365224607],[4.770776441362353,52.39335761589221],[4.770791603362932,52.39335441427555],[4.770806927330224,52.39335118653669],[4.770845104900523,52.39334312547984],[4.77060418901294,52.3926517828056],[4.770602082073845,52.39265222122403],[4.770592006819162,52.392634058445545],[4.770663509362982,52.3926192323986],[4.770670073312859,52.39263106748922],[4.77067067817305,52.392631942450066],[4.770671504260103,52.39263275564818],[4.770672507878652,52.39263347989301],[4.770673689028699,52.39263411518441],[4.770674989449743,52.39263462526814],[4.770676423706909,52.39263501920775],[4.770677918724559,52.392635269659614],[4.770679474377685,52.39263538561077],[4.770681032030777,52.39263535776821],[4.770682562303572,52.392635185979124],[4.770684035565811,52.392634888064656],[4.770685422687237,52.3926344458977],[4.770686679222472,52.392633886210156],[4.770687805046522,52.39263321798916],[4.7706887411489,52.39263245890301],[4.770689472714491,52.39263161786233],[4.770690014058442,52.39263072190494],[4.770690320860401,52.39262978877559],[4.770690392870397,52.392628836448566],[4.770690229713455,52.39262789188513],[4.770689845954714,52.39262696414881],[4.770683267435035,52.392615119995675],[4.770755343832199,52.39260022497864],[4.770761707016458,52.392611708496815],[4.770762311878199,52.39261258345714],[4.770763137966575,52.39261339665468],[4.770764141586186,52.39261412089869],[4.770765308046919,52.39261475611274],[4.770766623158574,52.39261526627192],[4.770768042850794,52.392615651146905],[4.770769552433454,52.392615910661135],[4.770771093396027,52.392616026534625],[4.770772651048385,52.392615998690886],[4.770774181320161,52.39261582690058],[4.770775669396241,52.39261552007436],[4.770777041701053,52.39261508681694],[4.770778312924703,52.3926145272049],[4.770779424056766,52.39261385890655],[4.770780360157167,52.392613099819656],[4.770781106410816,52.392612258854896],[4.770781633062562,52.392611362820595],[4.770781939862458,52.392610429691],[4.770782011870452,52.39260947736392],[4.770781848836603,52.39260852381347],[4.770781464951133,52.39260760506457],[4.770775072882027,52.39259608544614],[4.770848773001918,52.392580632595056],[4.770858432583442,52.39259805619255],[4.770860686918398,52.3925975825856],[4.771029151949285,52.39280568979748],[4.771469088767275,52.3927110179298],[4.771412213903031,52.39264053686442],[4.771658632900525,52.392588430587686],[4.771686274659726,52.3925825884043],[4.771713916661233,52.39257672824021],[4.771963149115998,52.39252403377329],[4.772127672984362,52.39248926086915],[4.772129204244202,52.39248901716447],[4.772130793516122,52.392488827687544],[4.772132411544674,52.392488683298744],[4.772134910479098,52.392488579435756],[4.772137407667692,52.39248860139217],[4.772139903110475,52.392488749167995],[4.772142367302615,52.39248903159779],[4.772144770988671,52.39248943954181],[4.772147128858744,52.39248997307643],[4.772149382152536,52.39249063189646],[4.772151560499617,52.39249139818025],[4.772153605014984,52.39249228060977],[4.772155530638118,52.392493261287164],[4.772157307988866,52.39249434005977],[4.772158922501845,52.39249550786424],[4.772160374301746,52.39249675571351],[4.77216164882318,52.39249807454411],[4.772162746190835,52.39249945536902],[4.772105103857922,52.39239317243049],[4.772452927286547,52.39232030811555],[4.772644255192184,52.39224252342172],[4.77276067685465,52.39219518680628],[4.77287861117575,52.39209592668616],[4.772890707404976,52.392047824060604],[4.772916084015097,52.38951161109307],[4.772899929188578,52.3891338976506],[4.772861589363223,52.38913381561147],[4.772831960469611,52.389133751786765],[4.772802831001019,52.389133690545655],[4.772744072514705,52.38913357443778],[4.772685314028817,52.38913345830074],[4.772626555543361,52.38913334213451],[4.772567797058334,52.38913322593918],[4.772509038698348,52.38913310072753],[4.772450280214191,52.389132984473875],[4.772391521730466,52.38913286819102],[4.772332763247167,52.389132751879],[4.7722740047643,52.38913263553786],[4.772215246281862,52.38913251916755],[4.77215648792454,52.38913239378094],[4.77209774413194,52.389132277428565],[4.772038985650805,52.3891321609708],[4.771980227170098,52.38913204448385],[4.771931795531274,52.3891319456683],[4.771921468814556,52.389131918980596],[4.771919294722981,52.389131916673094],[4.771906793789972,52.38913189666371],[4.771895688433401,52.389131874916096],[4.771883187625166,52.38913184591709],[4.771870686816954,52.38913181691675],[4.771862710334724,52.389131802435365],[4.771858185884017,52.38913179690221],[4.771803951855322,52.389131685860924],[4.77174519337635,52.38913156925732],[4.771686434897809,52.38913145262456],[4.771627676419699,52.38913133596266],[4.771568918066825,52.38913121028445],[4.771510159589588,52.38913109356421],[4.771451401112784,52.38913097681486],[4.771414574257859,52.38913090217362],[4.771392650958527,52.389131318455306],[4.771333919444137,52.389132433110895],[4.771275202615878,52.3891335478137],[4.771216471095827,52.38913466241101],[4.77115773944805,52.38913578596631],[4.771099007922318,52.389136900505314],[4.771040276393755,52.389138015015234],[4.77098154486236,52.38913912949598],[4.770922813328129,52.38914024394758],[4.770864081791069,52.38914135837005],[4.770805364940143,52.38914247283986],[4.770746633272448,52.38914359619117],[4.77068790172688,52.38914471052625],[4.77062917017848,52.389145824832156],[4.770570438627248,52.38914693910896],[4.77051695278478,52.38914795484385],[4.770511708823447,52.3891479275371],[4.770452952954673,52.389147621562856],[4.770394637755837,52.389147317854636],[4.770394391169464,52.38914709187632],[4.770377888578751,52.389131663817864],[4.770373046739667,52.38912701889056],[4.770368308349545,52.389122329562994],[4.77036367328332,52.38911760482239],[4.770362862331281,52.389116764736784],[4.770359141540967,52.38911284466874],[4.770354698433511,52.38910804902554],[4.770354293520386,52.38910758854067],[4.770354076312347,52.38910736271533],[4.770353251922232,52.38910643268204],[4.770350373338836,52.389103218045754],[4.770348970894726,52.389101601931785],[4.770348117502076,52.38910064478413],[4.77034748156753,52.38909989548761],[4.770346136879014,52.38909835157649],[4.770343246734031,52.38909491218579],[4.770342365089209,52.38909387400108],[4.770342047309613,52.389093485872145],[4.770338003183541,52.38908852153903],[4.770337570268466,52.389087962042936],[4.770336804634842,52.389087032315565],[4.770335780102601,52.389085705778186],[4.770335245865612,52.38908503790118],[4.770334076569936,52.38908355781782],[4.770332792764095,52.389081861431784],[4.770331450577737,52.3890801377783],[4.770330282657926,52.38907855883669],[4.770326577130537,52.38907354234028],[4.77032630304288,52.38907318140217],[4.770324732837135,52.389070953246325],[4.770322975051853,52.38906848144383],[4.770322240672605,52.38906741706275],[4.770321362030191,52.38906616318728],[4.770320397630282,52.3890647380976],[4.770319490735613,52.38906340318512],[4.770318354195468,52.3890616806027],[4.770316627289479,52.38905910110782],[4.770314744182899,52.38905613432553],[4.770312846512695,52.389053158479584],[4.7703124443518,52.38905250027822],[4.77031211375971,52.38905197726609],[4.770311281060579,52.389050588813426],[4.770309701169826,52.38904800109645],[4.770308596259395,52.389046116899],[4.770307806501743,52.38904480955985],[4.770307347586225,52.38904400725863],[4.770306644461521,52.38904280822387],[4.770303705515492,52.389037597989116],[4.770292916137228,52.38901803834544],[4.77027411689562,52.38898397566799],[4.77025533237171,52.38894991306389],[4.77023653318769,52.3889158503801],[4.770217748721348,52.388881787769655],[4.770198949594913,52.3888477250795],[4.770180165186134,52.388813662462695],[4.770161366117287,52.388779599766174],[4.770142581766072,52.388745537143045],[4.770136090971696,52.38873377429443],[4.770123797443631,52.38871147451671],[4.770105013149969,52.38867741188723],[4.770086228885082,52.388643349254586],[4.770067444648974,52.388609286618724],[4.770048660441638,52.38857522397976],[4.77002987626308,52.38854116133753],[4.770011092113296,52.38850709869217],[4.77000791128587,52.38850132994743],[4.76999230799229,52.38847303604365],[4.769975243129419,52.388442101105795],[4.76997349439747,52.38843898222593],[4.769966542912667,52.38842655187148],[4.769954459875022,52.38840497219222],[4.769943551917701,52.388385510760415],[4.769935410692981,52.38837096207868],[4.769926380672512,52.38835483590531],[4.769916376228775,52.388336952038486],[4.769907346222116,52.388320825863566],[4.769897327104999,52.38830294191844],[4.769886233375722,52.38828311101415],[4.769878292699037,52.38826893187169],[4.769871125943193,52.38825614087836],[4.769859243633527,52.388234921745145],[4.769846071394638,52.38821139501901],[4.769840209285807,52.388200911691904],[4.769826621359024,52.388176645799845],[4.769821101398845,52.38816691023967],[4.769820743068856,52.38816627024048],[4.769801846029013,52.38813295295388],[4.769791522916203,52.388114752842306],[4.769782590813757,52.38809898667772],[4.769763335627915,52.38806502039822],[4.769762374897454,52.38806333467759],[4.769744110224193,52.388031027307235],[4.769724928414922,52.38799707039113],[4.769709703042917,52.387970144556355],[4.769705363855805,52.38796317439017],[4.769698467061102,52.387952101455625],[4.76968442890892,52.38792958581165],[4.769671928396059,52.38790952285544],[4.769663508807409,52.38789598831868],[4.769654039869447,52.38788080354863],[4.769642573923795,52.38786239973238],[4.769624771688383,52.38783381568715],[4.769620990397883,52.38782897852687],[4.769600063371755,52.38780221168577],[4.769595027512899,52.38779674782621],[4.769586229107094,52.38778721086262],[4.769572065022757,52.387774796793536],[4.769564723575476,52.38776928495709],[4.769562469393813,52.387767655403124],[4.769561436275866,52.38776694896945],[4.769546847607463,52.38775759751022],[4.769528705917101,52.38774705910833],[4.769519251002098,52.38774247097312],[4.769515544915975,52.3877406720657],[4.769472518715657,52.38772067456031],[4.769468169345041,52.38771865658953],[4.769424552678615,52.38769992326119],[4.769422347741759,52.38769897703144],[4.76937413077468,52.38768147797306],[4.76932358990194,52.387663139895736],[4.769284244569408,52.38764886875585],[4.769272720914238,52.387645159595046],[4.769235502873594,52.387633191418615],[4.769220014970649,52.38762934472536],[4.769201701718847,52.38762480021597],[4.76917794970199,52.387619463360664],[4.769140603071699,52.38761356122383],[4.769117445584205,52.38761088783735],[4.769107200936544,52.38761026813882],[4.769089103855288,52.38760918502938],[4.769083583251973,52.38760899443497],[4.769062895866398,52.38760826629976],[4.769048578383262,52.38760792193342],[4.769033864312115,52.3876075754952],[4.768989844897034,52.387607210892945],[4.768983426293598,52.387607159410315],[4.768931093465684,52.38760673341151],[4.768872342161068,52.387606246913876],[4.768813590857862,52.387605760387],[4.768786065826413,52.38760553576436],[4.768776900608301,52.38760546093989],[4.768754836797945,52.387605471547424],[4.76869607847595,52.38760548824043],[4.768637320154032,52.38760550490425],[4.768578561832191,52.387605521538916],[4.768519818073464,52.38760554720828],[4.768504702527935,52.3876055491297],[4.768461057870335,52.38760569859128],[4.76840229691428,52.3876059038678],[4.768343550771709,52.38760610020476],[4.768284789814822,52.38760630542292],[4.768246081103095,52.38760643566278],[4.768226029359419,52.38760647466345],[4.768167284345073,52.38760659002902],[4.768108524767593,52.38760669630152],[4.768049765064441,52.38760681153194],[4.767991020049556,52.38760692681],[4.767932260346037,52.38760704198208],[4.767881712365142,52.38760713715538],[4.767873500642334,52.38760715712505],[4.767814740561771,52.38760729920017],[4.767755995043828,52.38760745031003],[4.767697234962744,52.387607592326844],[4.767646451463556,52.387607722118716],[4.767638475007,52.38760772532736],[4.767579716683924,52.38760774146632],[4.767520973049379,52.38760775765297],[4.767462214600834,52.387607782720714],[4.767403456277984,52.3876077987722],[4.767344697955217,52.387607814794514],[4.767317566252332,52.38760782557111],[4.767285939883863,52.387607812813435],[4.767227182063996,52.387607792828994],[4.767168438932753,52.38760777289233],[4.767109680987534,52.3876077618367],[4.767075998110813,52.38760774724245],[4.767050924048186,52.38760767885502],[4.766992167989267,52.38760753293441],[4.766933412056595,52.387607377997604],[4.766874655998708,52.38760723201871],[4.766815900067091,52.38760707702355],[4.76675714413601,52.387606921999236],[4.766698388079674,52.38760677593292],[4.766639632149647,52.387606620850285],[4.766580876094342,52.38760647472557],[4.766556360194647,52.387606409158536],[4.76652211953626,52.38760636452015],[4.766490934326694,52.38760631791124],[4.766124040724908,52.38760584133886],[4.766110835056208,52.38760582600765],[4.76605207787155,52.38760576050451],[4.766051064368762,52.38760575518859],[4.765993320435329,52.387605712946424],[4.765934562747473,52.387605683333376],[4.765875805185773,52.38760564470406],[4.765817047624298,52.38760560604563],[4.765758290063048,52.38760556735796],[4.765699532502024,52.3876055286412],[4.765640789629669,52.387605489972316],[4.765582032069096,52.387605451197224],[4.765523274508748,52.38760541239294],[4.765464516948625,52.38760537355953],[4.765405759388728,52.38760533469696],[4.765347001829057,52.38760529580523],[4.765288244269612,52.38760525688431],[4.765229486710393,52.38760521793427],[4.7651707291514,52.38760517895507],[4.765111986281077,52.38760514002379],[4.765053228722535,52.387605100986285],[4.764994471164222,52.38760506191958],[4.76495865846849,52.38760503553279],[4.764935713353846,52.38760504079795],[4.764876955165183,52.38760504660845],[4.764818196976627,52.38760505238979],[4.764759438788179,52.38760505814199],[4.764700695288281,52.38760506394222],[4.764641937100048,52.38760506963607],[4.764592080739236,52.38760507716306],[4.764583178911923,52.387605075300776],[4.764524420976359,52.38760506296212],[4.764465663167191,52.38760504160723],[4.764406905231952,52.38760502921023],[4.76434814742313,52.38760500779698],[4.764289404176656,52.38760499541897],[4.764230646368183,52.387604973947404],[4.764226121949246,52.38760497710996],[4.764171890328069,52.38760482662722],[4.764113134414782,52.3876046702908],[4.764054378628354,52.38760450493812],[4.763995622716153,52.38760434854337],[4.763936866930836,52.38760418313237],[4.763878111019721,52.38760402667931],[4.76386232044057,52.38760397951615],[4.763819357004696,52.387603735390535],[4.763760603496095,52.387603408124235],[4.763701849988486,52.38760308082874],[4.763643096481868,52.38760275350411],[4.763584342976238,52.387602426150295],[4.76352558959803,52.38760208978028],[4.763491512545572,52.38760190132272],[4.763466834577098,52.38760187021337],[4.763408077660067,52.38760178542391],[4.763349320743384,52.387601700605266],[4.76329056382705,52.38760161575745],[4.763231806911064,52.38760153088048],[4.763173049995425,52.387601445974326],[4.763132860277979,52.387601386983036],[4.763114293586189,52.38760132509066],[4.763058637576511,52.38760113962821],[4.763055538189594,52.38760113228096],[4.762938027271762,52.38760075556126],[4.762526753577453,52.38759944968195],[4.762467998060492,52.387599265567786],[4.762462460393513,52.387599245342166],[4.762409242417485,52.38759909041162],[4.762399959072809,52.38759905940903],[4.762350486268397,52.38759895117466],[4.762296974017904,52.387598830592],[4.762291729993119,52.387598820895654],[4.762281344762605,52.38759880204479],[4.76223297359162,52.387598699574596],[4.76220857508728,52.38759864271448],[4.762174217317269,52.38759856923727],[4.762078650051756,52.387598370392375],[4.762002942438017,52.3875982134028],[4.761997948116812,52.38759820501165],[4.761955055733636,52.3875981313522],[4.761939191590798,52.38759809253188],[4.761898532230198,52.38759800367863],[4.76188043722018,52.38759782724228],[4.761847507779404,52.38759750955477],[4.761840561037566,52.38759740995711],[4.761833615309945,52.3875972384622],[4.761827889356248,52.38759702846944],[4.761826670723345,52.387596986082976],[4.761821723510247,52.38759676222674],[4.761819741712689,52.38759667087126],[4.761812813716348,52.38759628376232],[4.761808675254679,52.38759600126208],[4.761808234982012,52.38759597197371],[4.761805901549569,52.38759581584665],[4.761798814262758,52.38759526611581],[4.761792124070936,52.387594682530576],[4.761789043557053,52.38759437865344],[4.761788647476498,52.38759434061062],[4.761785258885926,52.3875940081431],[4.76177840940383,52.38759326193604],[4.761771590313111,52.387592443986854],[4.761769625613213,52.387592181953174],[4.761764786925373,52.387591554218055],[4.761763672759936,52.387591395541726],[4.761760051690625,52.387590882090315],[4.761758013802287,52.38759060169438],[4.76175127119746,52.387589568441534],[4.761750538424171,52.38758944773043],[4.761744558857346,52.387588472433734],[4.761741921279388,52.3875880091149],[4.761741071252289,52.38758786980894],[4.76174023604042,52.38758772159344],[4.761737876908763,52.387587304683954],[4.761731225224946,52.38758607417928],[4.761724604059515,52.38758476294539],[4.76172308077389,52.38758444931575],[4.761722348381148,52.3875843016432],[4.76172142567281,52.3875841080266],[4.76171802772054,52.38758339802136],[4.761713663882398,52.38758243125691],[4.761712946304947,52.38758227467475],[4.761711481900003,52.38758195236818],[4.761707470077233,52.38758102341387],[4.76170498103277,52.38758044403771],[4.761704029454927,52.3875802143174],[4.761703370631258,52.38758005804552],[4.761698525118864,52.38757887302994],[4.761695275826846,52.38757803798045],[4.761694822007215,52.38757792773016],[4.761694412252867,52.38757781771268],[4.761692114285108,52.387577230357735],[4.761685777654775,52.38757553415051],[4.76167942760454,52.387573747994345],[4.761677686782927,52.387573235484176],[4.761676925901304,52.38757302474643],[4.761676253023434,52.38757282346132],[4.761673151630974,52.38757191729032],[4.761668120243007,52.38757037178088],[4.761666935426073,52.38757001499948],[4.761660764301439,52.38756804104427],[4.761659550741818,52.38756763917214],[4.761658936617802,52.38756743819726],[4.761654652691902,52.387566013476516],[4.761654243318192,52.38756587649756],[4.761650851835695,52.38756470814831],[4.761648600724285,52.387563923309074],[4.761642608398605,52.38756177054199],[4.761636675841692,52.38755954618815],[4.761634937303763,52.38755887190954],[4.761634016752159,52.38755852551153],[4.761632921207657,52.38755808831143],[4.761630802799939,52.38755726822183],[4.761626157879354,52.38755540119236],[4.761625748886273,52.387555237251995],[4.761625003961774,52.38755493672052],[4.761619264892423,52.38755253363252],[4.761618520221646,52.387552215126775],[4.761617702489235,52.38755186927182],[4.761616403209456,52.387551296178806],[4.76161358533827,52.387550076932],[4.761609760814613,52.387548367027776],[4.761607979987738,52.387547566696576],[4.761605105012,52.387546230306896],[4.761602448967658,52.38754499393919],[4.761601923735633,52.387544739507],[4.761596977589626,52.38754235858221],[4.761594264313938,52.38754101405868],[4.761591580288425,52.38753967867745],[4.761586709614767,52.38753715434658],[4.761586272006112,52.387536936328296],[4.761581037927459,52.38753414044431],[4.761579755239447,52.38753343262201],[4.761579332446098,52.38753320569421],[4.761578705790524,52.38753285186062],[4.761575878052476,52.387531291025525],[4.76157211849999,52.38752914106259],[4.76157079238116,52.38752838807184],[4.761565067395978,52.387524987413144],[4.761563654542038,52.38752413509864],[4.761560989138536,52.387522521194185],[4.761545360634122,52.38751307337079],[4.761519186899075,52.387497251428854],[4.761477399268829,52.387471990713415],[4.761435597124686,52.38744672091846],[4.761414768941527,52.3874341268455],[4.761393809716585,52.38742145118632],[4.761378705624566,52.38741232068369],[4.761352007540897,52.387396190348845],[4.76131489560525,52.387373749481554],[4.761310220228096,52.3873709205871],[4.761281075233189,52.38735331229698],[4.761226630930207,52.38732038992864],[4.761184829072023,52.387295120044826],[4.761143813831595,52.387270321668524],[4.761143027261504,52.38726985014619],[4.761103002369689,52.387245659171676],[4.761101225371734,52.38724458921985],[4.761099637545072,52.38724364609689],[4.761095777506471,52.387241333807395],[4.761094874192421,52.38724080774087],[4.761089833539343,52.387237842089746],[4.761082096491636,52.387233379200126],[4.761080930819091,52.38723270794208],[4.761080610214723,52.387232526491545],[4.761070962327528,52.3872271097824],[4.761066676838619,52.387224759291406],[4.76106010242114,52.38722118334895],[4.761058163473038,52.3872201395035],[4.761057259652151,52.387219649385095],[4.761048525710092,52.38721504640576],[4.761047169725223,52.3872143292022],[4.761043509235462,52.387212449379064],[4.761036640294014,52.38720892580466],[4.761032541694741,52.38720686390926],[4.76102288506045,52.38720206730604],[4.761015239800297,52.38719838683336],[4.76101083351034,52.387196269383594],[4.760998633557128,52.387190578528454],[4.760986299762136,52.387185003805314],[4.760973832252262,52.387179536227],[4.760961230900517,52.38717418478066],[4.760948495579903,52.387168958453245],[4.760937393924806,52.38716454966325],[4.760936882754632,52.38716434024128],[4.760935641105599,52.38716384833537],[4.760925750074861,52.38716004812714],[4.76092265278926,52.38715885434927],[4.760909545319111,52.38715397657259],[4.760896318568133,52.3871492239924],[4.760882987224529,52.38714459668637],[4.760875063122823,52.38714193933569],[4.760869536726911,52.38714008558966],[4.760866656086374,52.387139153601474],[4.760855966821266,52.387135708676375],[4.760842307138009,52.38713144812772],[4.760841151589057,52.38713110048056],[4.760839454859381,52.38713058819105],[4.760828528046554,52.387127321762456],[4.760814659177315,52.38712331176172],[4.760812215631866,52.38712263374179],[4.760806509172338,52.38712104867348],[4.760800700276249,52.387119436099724],[4.760786636654977,52.3871156946987],[4.760772483128659,52.38711207864922],[4.760762630304514,52.387109734648284],[4.760753712705013,52.387107737129035],[4.760752716950477,52.38710751615507],[4.760742713435952,52.38710544098848],[4.760741688050999,52.38710523783322],[4.760732634703109,52.38710349125189],[4.760729967915124,52.38710301876801],[4.760723022820802,52.38710176867845],[4.760722495313149,52.38710167601014],[4.760712280450718,52.387100004172574],[4.760710580040771,52.387099752507105],[4.760702019746259,52.3870984579204],[4.760694645137696,52.38709745721447],[4.760694219940006,52.38709740103838],[4.760691712945686,52.38709705522779],[4.760685891229577,52.387096350345466],[4.760685421967114,52.387096293936196],[4.760681345360637,52.387095796017086],[4.760676784041511,52.387095295533406],[4.760670946621556,52.3870946624694],[4.760660501659074,52.387093681468386],[4.760650025542378,52.38709282613043],[4.760639517890342,52.3870921234168],[4.760636391449408,52.38709195408307],[4.760628993645152,52.38709155543099],[4.760628024600809,52.38709152334051],[4.760618452806717,52.387091122173025],[4.760607895247919,52.387090832630015],[4.760597335656916,52.38709068687966],[4.76058677403361,52.38709068492192],[4.760576210504921,52.387090817769746],[4.760565644943727,52.38709109441023],[4.760562440869901,52.38709122126018],[4.760557766953492,52.38709141223451],[4.760555106726453,52.387091514998794],[4.760544581291759,52.38709207047061],[4.760541067239875,52.38709230353297],[4.760534539045097,52.38709273635168],[4.760534083200787,52.387092769890565],[4.760523597892201,52.38709360419378],[4.7605131546154,52.387094582522856],[4.760496016235841,52.387096370270726],[4.760478905452802,52.387098283990966],[4.760461836954408,52.38710032376132],[4.760444810613466,52.38710249856891],[4.760427841372205,52.38710479051729],[4.760410914288112,52.38710721750296],[4.760394029488104,52.3871097705388],[4.760377201787378,52.38711244071551],[4.7603604162434,52.387115245929536],[4.760343702359645,52.387118177349336],[4.760327045574785,52.38712122591006],[4.760310445761619,52.38712440059885],[4.760293284106233,52.38712783295642],[4.760276179294999,52.387131400429],[4.76025916083142,52.38713509418506],[4.760242213899999,52.38713892313398],[4.760225353315978,52.38714287836639],[4.760208578952132,52.38714696886948],[4.760191890808332,52.387151194643295],[4.760175289138665,52.38715553771369],[4.760158773688804,52.387160016054814],[4.760142359274022,52.387164620757474],[4.760126045767094,52.38716936080877],[4.760109818733852,52.387174218156716],[4.760093692735364,52.387179201866296],[4.760077682459819,52.38718431201536],[4.760061773218827,52.38718954852606],[4.760050762101034,52.38719328305323],[4.760045979827714,52.38719490248921],[4.760030302159258,52.387200382891926],[4.760014725652214,52.3872059806694],[4.75999927955595,52.38721170496431],[4.75998394930923,52.38721754671181],[4.759968734911974,52.38722350591195],[4.75995365105242,52.387229582642625],[4.759938697730499,52.38723577690385],[4.759929474368618,52.38723981748553],[4.759920381673955,52.3872439666119],[4.759911419646484,52.387248224282985],[4.759902588413332,52.38725258151171],[4.759893902535633,52.38725704736297],[4.75988534745222,52.38726161277198],[4.759876952539708,52.387266277894305],[4.759868688421451,52.38727104257443],[4.759860599162404,52.38727590704574],[4.759852640824771,52.38728086208776],[4.759844857473522,52.38728590793397],[4.759619231891444,52.38743505091023],[4.759611166862925,52.3874402750038],[4.75960294165981,52.3874453993825],[4.75959454159372,52.3874504239684],[4.759585981480264,52.387455339852266],[4.759577261192218,52.38746015602111],[4.759568395545211,52.38746486356575],[4.759559369978104,52.38746945342104],[4.759550198924839,52.38747394363914],[4.759540867951518,52.38747831616785],[4.759531421123341,52.38748257124076],[4.759521814375174,52.38748670862427],[4.75951209177223,52.38749072855198],[4.759502223810516,52.38749463985506],[4.759492240248606,52.38749841572806],[4.759482140832061,52.38750207414509],[4.759471910999785,52.387505606041145],[4.75946158000138,52.38750902055909],[4.759451133403015,52.38751229964674],[4.759440571077505,52.387515452291204],[4.75942992252898,52.387518469661096],[4.75941917281459,52.3875213696527],[4.759408337004602,52.38752412538259],[4.759397400156163,52.38752675474704],[4.759386391773432,52.387529248914674],[4.759375297295362,52.38753159882052],[4.759364131155908,52.387533822516616],[4.759352893482429,52.3875359110158],[4.759341584402301,52.387537855331054],[4.759330218476747,52.38753966452721],[4.759318795833153,52.387541329617264],[4.759307331032742,52.387542859666084],[4.759295809514499,52.387544245608744],[4.759284245839647,52.387545496510164],[4.759272640135583,52.387546603383306],[4.759261007090828,52.38754756630596],[4.759249332017081,52.387548385200276],[4.759237644291277,52.38754906022197],[4.759210817189032,52.3875503829705],[4.759183977433755,52.38755156184155],[4.759157125025708,52.387552596835036],[4.759130259965148,52.38755348795098],[4.759103367436601,52.38755424409859],[4.7590764770718,52.38755484745942],[4.759049588616349,52.3875553160077],[4.759022672821008,52.38755564060055],[4.758995773623931,52.38755583045871],[4.758988707860248,52.387555837915535],[4.758963577300878,52.38755664831707],[4.758872054473027,52.387557151409695],[4.758792318043375,52.38755520039966],[4.758592868175728,52.387542457761484],[4.758515099903432,52.387536382636604],[4.7584935041231,52.38753653762073],[4.758477330307578,52.38753762016399],[4.758460125784584,52.38753991058199],[4.758463734372309,52.3875174782858],[4.758515286787213,52.38719690647475],[4.758513066623977,52.387194980292726],[4.758501705372329,52.38718506937834],[4.758282318092359,52.38699462196405],[4.758168083601417,52.38689802581316],[4.75798925661185,52.38675722603135],[4.757951899673987,52.38672943507128],[4.757929409868707,52.38670981209758],[4.757875674854519,52.38666647511041],[4.757834769790055,52.38662994711556],[4.757808783012325,52.38660832822275],[4.757775136612405,52.38657786059361],[4.757739568048851,52.38654828151497],[4.75765703423594,52.38647450254393],[4.757633271261845,52.38645145738925],[4.757605427568535,52.38642614359054],[4.757532346865671,52.38634872979895],[4.757513429788068,52.38632580026327],[4.75746846743115,52.38626471393647],[4.757447598784565,52.386234404035896],[4.757423017255602,52.38619661453229],[4.757378085736532,52.38612303532455],[4.757325157593524,52.38601265356158],[4.757300820130636,52.385947362733745],[4.757278849909825,52.38588191372428],[4.757268146317146,52.385848503150214],[4.757259049946696,52.385806391969375],[4.757235574756364,52.38572178199211],[4.757415718432122,52.385676363245494],[4.757729883984225,52.385595705598554],[4.758156778076814,52.3854896713121],[4.758159296667082,52.3854881567688],[4.758243634006201,52.38540367024949],[4.758358185973036,52.3852912123819],[4.758478065684868,52.385175906601205],[4.758474269842754,52.3851742686482],[4.758476260483011,52.38515819109708],[4.758693042779029,52.384962958943156],[4.758825218722475,52.38487952581353],[4.758824159124676,52.384838212368535],[4.758856913905604,52.38483101619661],[4.758881890036567,52.384817154751616],[4.758893683608337,52.384804814194496],[4.758902751713999,52.38478682383953],[4.758906489191698,52.384763556339486],[4.758901332535705,52.38475222235624],[4.758881312365722,52.38473975793923],[4.758885614038637,52.38472124796728],[4.758885894229867,52.384701476344354],[4.758900950504183,52.38469418625301],[4.758903099555959,52.3846803924297],[4.758905541890281,52.384664559936994],[4.758908240999714,52.38464719189669],[4.758905060586253,52.38463114981557],[4.758907472702242,52.38460397458751],[4.758934948755472,52.384474840174846],[4.758935061627776,52.38447413073928],[4.758944565431372,52.38446581354033],[4.758954987062553,52.38444662599926],[4.758960114738302,52.38443719806119],[4.758960437939941,52.38442371810959],[4.758960761141367,52.384410238157905],[4.75896097329794,52.38440148518812],[4.758961352700231,52.38438507551906],[4.758961675901047,52.38437159556728],[4.758961995154019,52.38435839421566],[4.758962292333556,52.384345714038005],[4.758959501864435,52.384345690246015],[4.75896295430945,52.38431247176016],[4.758965182570983,52.384291011780626],[4.758965708468678,52.38428706893619],[4.758966392743355,52.38428335162645],[4.758967267698496,52.384279653303814],[4.758968348021381,52.38427597404629],[4.75896960433731,52.384272313697934],[4.758971065893546,52.38426868140177],[4.758971399711295,52.38426792819943],[4.758972809437511,52.38426484388268],[4.758974380342051,52.384261787384425],[4.758976083050245,52.38425875854865],[4.758976852732616,52.38425730661193],[4.758977490483733,52.38425583599972],[4.758977996430949,52.38425433772495],[4.75897835563228,52.38425282968386],[4.758979078066381,52.3842484924198],[4.758979565630621,52.384244144921894],[4.758979818325066,52.384239787190246],[4.758979836022444,52.384235428211845],[4.758979633410142,52.384231068064686],[4.758979180986261,52.384226715580056],[4.758978507998155,52.3842223799008],[4.758977585198609,52.38421805188405],[4.758976441707633,52.3842137496598],[4.758975062837983,52.38420947315019],[4.758973463277028,52.38420522243304],[4.758972553341895,52.384203096490104],[4.758971437147923,52.384201014391756],[4.758970114695133,52.384198976138045],[4.758968585856215,52.38419699071606],[4.758966865191142,52.38419506719086],[4.758964952572597,52.38419321454944],[4.758962862687888,52.384191432869805],[4.758960610096987,52.384189731216914],[4.758958179985258,52.384188118499964],[4.758955601727301,52.38418659487476],[4.758952860508471,52.3841851692505],[4.758950000135972,52.38418385983513],[4.758947006177182,52.384182648576555],[4.758929579319964,52.38417791842522],[4.758910660517304,52.384173782536585],[4.758882664676357,52.38416858286408],[4.758865215161175,52.384165452407494],[4.758870630940481,52.383654768603684],[4.758873173564275,52.38341523081521],[4.758749516917214,52.38315285046916],[4.758280521877664,52.38212599610621],[4.758200762266025,52.38195138923465],[4.758187200493564,52.3819217204267],[4.758458150376788,52.38176276343834],[4.758462642310057,52.38175983030871],[4.75846722159708,52.38175695156944],[4.758473502827943,52.38175316511283],[4.758483737335119,52.3817471437125],[4.758526053156268,52.381722220565756],[4.758568398430193,52.38169728857248],[4.758610743529093,52.38167236555099],[4.75865307376653,52.38164745142326],[4.758695404211165,52.381622519306],[4.758737749167251,52.381597596238464],[4.758756426201196,52.38158658646376],[4.758536943963753,52.38144718032269],[4.757906804317056,52.381818857420434],[4.756890638019095,52.3811712575731],[4.756956977676468,52.38113119261354],[4.756834900159309,52.38105548580114],[4.756690372314456,52.38096281620987],[4.756462449929444,52.38081133556955],[4.75642924672537,52.380790351977126],[4.755516933045523,52.38021392823897],[4.755274285050916,52.38035736387928],[4.755264667670703,52.38036232773886],[4.754959094296182,52.38016919374566],[4.754945196836251,52.38016016770298],[4.754904872026114,52.38013400463435],[4.75486456156503,52.38010786859166],[4.754824266221895,52.38008170565228],[4.754793342270266,52.38006165051997],[4.754784207695448,52.38005541813464],[4.754753037250866,52.3800341123724],[4.754745318888824,52.380028471754564],[4.754707643474751,52.38000089370977],[4.754693747456828,52.379990744170996],[4.754668680692016,52.37997399184766],[4.754663923402881,52.379970811720646],[4.754645034786474,52.3799616241625],[4.754654080168383,52.37995660337056],[4.754661541467013,52.37995246390699],[4.754665478936055,52.37995030989583],[4.754709236004953,52.37992631255621],[4.754752992770135,52.37990233317445],[4.754767070288002,52.37989460696363],[4.754775114775199,52.37989797541154],[4.754797395289716,52.37988559239553],[4.754827521840998,52.37986886523697],[4.75483439432554,52.37985863788478],[4.754847553977366,52.37983906085659],[4.754865029888313,52.37982887215315],[4.754869280224651,52.37982640523342],[4.754906632832254,52.37980348810548],[4.75494811913891,52.379778040505926],[4.754989605397938,52.379752592891634],[4.755031091737462,52.37972713627548],[4.755046115624967,52.37971792311119],[4.755056465246046,52.37972443159723],[4.755061783061151,52.379721260334165],[4.755072128201318,52.37972808336756],[4.75508970442343,52.37973969954281],[4.755094302236509,52.37973964319747],[4.755089000132214,52.379742742643515],[4.755103452093217,52.379752014300806],[4.755113159397713,52.37975824971931],[4.755118461502183,52.37975515027217],[4.755144236179909,52.37977169956047],[4.755170709520154,52.37978869297393],[4.755186536336176,52.37978085022163],[4.755232168214838,52.379758210864786],[4.755277829418548,52.37973557164691],[4.755284648245833,52.379732192677544],[4.75531196349228,52.37970659742089],[4.75534410144673,52.37967649804754],[4.755370136231577,52.379652118283936],[4.755377114742236,52.379646807786656],[4.75541386450391,52.37961875525512],[4.755447421568945,52.379593157320016],[4.755450628776781,52.379590711777425],[4.755458810386791,52.37958445498862],[4.755494134640095,52.3795667667353],[4.755539577146873,52.379543991433245],[4.755585034548748,52.379521198217724],[4.755630491519907,52.37949843194581],[4.755655461131835,52.37948591930746],[4.755678066578779,52.37947750147443],[4.755681285346417,52.37947630528992],[4.755730624500357,52.379461441975906],[4.755783311868058,52.37944557188802],[4.755810127336189,52.37943750902808],[4.755835624407249,52.37942920544974],[4.75588748894394,52.37941232429585],[4.755939353569142,52.37939543413201],[4.755991218026966,52.37937855293242],[4.756043082317447,52.37936168069712],[4.756094946696426,52.37934479945184],[4.756126847304004,52.37933441781073],[4.75614689774322,52.379328017511476],[4.756198979003574,52.37931137105925],[4.756207801576319,52.379308568945625],[4.756251059969139,52.37929474255813],[4.75630314102357,52.37927810504687],[4.75635520735332,52.37926146743436],[4.756364679271534,52.3792584440739],[4.756399889286932,52.37923841811767],[4.75644290252282,52.37921393982438],[4.756485930396853,52.379189461593555],[4.756528958223381,52.37916498334685],[4.756561591703611,52.37914642660458],[4.756569507468001,52.37913922460562],[4.756602272187745,52.37910937090027],[4.756635051165532,52.37907954422518],[4.756667547878251,52.37904994073263],[4.756667771740171,52.37904969026662],[4.756696343288886,52.379018286281934],[4.756724929610405,52.37898687338118],[4.756729241460923,52.37898213281181],[4.756743228486296,52.378952835190994],[4.756759698156841,52.37891832888134],[4.756774457357571,52.37888739959027],[4.756774715977898,52.37888367103464],[4.756777238701838,52.37884775128429],[4.756779790664826,52.378811840677116],[4.756782313380322,52.378775920926124],[4.756782900475661,52.37876768224892],[4.75678097342504,52.378740007572766],[4.756778473319217,52.37870408804226],[4.75677730434982,52.37868713983493],[4.756772048109961,52.378668435222494],[4.756762139264572,52.37863298854886],[4.756752215493928,52.378597559770164],[4.756742277181372,52.378562121925135],[4.756732338629041,52.37852670205325],[4.756722415033428,52.378491264284264],[4.756712491325784,52.37845583550135],[4.756702567761662,52.37842039773026],[4.75670023273198,52.37841212551731],[4.756690496315851,52.37838521815436],[4.756677777455481,52.378350125007245],[4.756665073300482,52.378315031936786],[4.756652383850817,52.37827993894294],[4.75664181338916,52.37825075322248],[4.756640738868157,52.37824472568054],[4.756634447280411,52.37820898368304],[4.756628141017389,52.37817324160671],[4.756621834764414,52.378137499529835],[4.756619946095906,52.37812675804939],[4.756631114188993,52.3781025504902],[4.756647056108603,52.3780679604904],[4.756651298709639,52.37805878857361],[4.756666966717439,52.37803416457245],[4.756688253619661,52.37800066358919],[4.756709555302626,52.37796715369288],[4.756730886068198,52.37793366192303],[4.756752187686566,52.377900152018526],[4.756765166626317,52.377879755923516],[4.756774805957782,52.377866999644105],[4.756799355740979,52.37783434288962],[4.756823964100882,52.37780169542957],[4.756848557739297,52.377769047885955],[4.756873151469153,52.377736391349856],[4.756897730222081,52.37770375270442],[4.756922323879335,52.37767109615755],[4.756937097831685,52.37765149153613],[4.756947283095645,52.37763854940479],[4.756972768768028,52.37760615824129],[4.756998239590278,52.377573775981034],[4.757023725315751,52.3775413758189],[4.75704921074849,52.37750899362525],[4.757074696271621,52.37747660243871],[4.757100181757438,52.377444211246434],[4.757125652520888,52.37741181997024],[4.757151137804397,52.37737943775355],[4.757176637990987,52.377347037635026],[4.75720210864252,52.37731464634156],[4.757227593941765,52.37728225512048],[4.757253079076032,52.37724987288074],[4.757278564428309,52.37721747266104],[4.757304034802982,52.37718509033168],[4.757329534637944,52.377152699165656],[4.757352836433801,52.37712306454166],[4.757354595418693,52.377120197805034],[4.757375164095431,52.37708653109474],[4.757395762238336,52.377052855549714],[4.757416330980017,52.377019179844595],[4.757436928932549,52.3769855132789],[4.757457497611533,52.376951837566075],[4.757478080816444,52.37691817091463],[4.757498649432742,52.37688449519407],[4.75751923244735,52.37685083752195],[4.757539815813419,52.376817152884676],[4.757560399020521,52.37678347723062],[4.7575809967535,52.37674981063791],[4.757601550528234,52.37671613482002],[4.757622148198489,52.3766824682196],[4.757642716595358,52.376648792472054],[4.757663314075305,52.37661513485101],[4.757683882537053,52.376581450108674],[4.75770445071232,52.37654778333666],[4.757725048353325,52.37651410772981],[4.757745616465903,52.37648044095009],[4.757760410655487,52.37645625255716],[4.757765818704447,52.376446682343754],[4.757785025284916,52.37641271172183],[4.757804246648114,52.37637873218741],[4.757823423800115,52.37634476140257],[4.757842630292003,52.376310790770425],[4.757861836754361,52.37627682013493],[4.757881043442256,52.376242831521736],[4.75790024971802,52.37620886986655],[4.757919456219311,52.37617489023371],[4.757938648006437,52.376140910519425],[4.757957854321151,52.37610693986692],[4.757977060606336,52.376072969210995],[4.757996281674094,52.376038989642616],[4.758015487900208,52.37600501897989],[4.758026876323973,52.3759848569614],[4.758033727592438,52.375970854434286],[4.758050575920443,52.375936421846475],[4.758067439161713,52.37590197135976],[4.758084287437155,52.37586753876658],[4.758101150498338,52.37583309726163],[4.758118013278257,52.375798673728205],[4.758134876286843,52.3757642322179],[4.758151753826147,52.37572979976999],[4.758168572728675,52.37569535802022],[4.758185435530915,52.37566092548898],[4.758202298561788,52.375626474980805],[4.758219146626987,52.37559204236615],[4.758221430130555,52.375587389831544],[4.758233767984702,52.375557220432995],[4.75824800816156,52.37552235153403],[4.758262263255226,52.37548746473688],[4.758276503259602,52.37545260482106],[4.758290758180761,52.37541772700699],[4.758305013079381,52.3753828491909],[4.758319267955468,52.37534797137287],[4.758333522681579,52.37531310253994],[4.758347762955685,52.3752782156528],[4.758362017636743,52.375243346815836],[4.758376272167845,52.37520848696403],[4.7583904978175,52.3751735910058],[4.758404767115285,52.37513872224083],[4.758419021833648,52.375103844408784],[4.758433276529475,52.375068966574744],[4.758447516518505,52.37503408866072],[4.758452095746255,52.37502287823427],[4.758460642647784,52.374999052037374],[4.758473226458548,52.37496394063022],[4.758485810376676,52.374928820234345],[4.758498394147352,52.37489370882398],[4.758510963341177,52.37485858834687],[4.758523576440168,52.37482347708918],[4.758536160150704,52.374788365673965],[4.758548743968588,52.374753245269964],[4.758561327639036,52.374718133851495],[4.758573911416828,52.37468301344423],[4.758586495047188,52.37464790202256],[4.758599093341633,52.374612790677155],[4.758610163719309,52.37458186851909],[4.758611090459006,52.374577613224],[4.758618908702286,52.37454198216971],[4.758626668323898,52.37450634181563],[4.758634471857778,52.374470710681805],[4.758642245883491,52.37443508837836],[4.75865004964681,52.374399439268686],[4.758657823647273,52.3743638169637],[4.758665627130552,52.374328185826656],[4.758673416044515,52.37429254562379],[4.758681204818476,52.37425691440723],[4.758689008136435,52.374221292254965],[4.758696797012467,52.374185652049725],[4.758704585748503,52.37415002083082],[4.758712374471902,52.37411438961113],[4.75872017786661,52.37407875846855],[4.758727951880784,52.374043127169294],[4.758729222402573,52.374037408686895],[4.758736268678162,52.374007534701654],[4.758744629259113,52.37397196044122],[4.758753019449025,52.37393636836158],[4.758761394686768,52.373900794177345],[4.758769784722175,52.37386521108304],[4.758778189300522,52.373829637052914],[4.758786564752235,52.37379404489182],[4.758794954619549,52.37375847078204],[4.758803329916788,52.37372288760631],[4.75881173444077,52.37368731357271],[4.758820124522003,52.373651721486056],[4.75882849977852,52.37361613830772],[4.758836889705264,52.37358055520643],[4.758845264807323,52.37354498101346],[4.758853669517993,52.373509389001256],[4.758862044592912,52.373473814806566],[4.758869185029027,52.3734435009083],[4.758869979651458,52.37343820232473],[4.758875274173064,52.373402396073075],[4.758880583242392,52.37336659888595],[4.758885892430341,52.37333079271122],[4.758891187053223,52.37329497747092],[4.758896510652837,52.3732591893473],[4.758901805003722,52.37322339208021],[4.758907114284214,52.37318757691634],[4.758912423301384,52.373151779726115],[4.758917717753541,52.37311597347039],[4.758923041436952,52.373080176357135],[4.758925137152612,52.37306595979344],[4.758926471944896,52.37304429729481],[4.758928669534465,52.37300837573848],[4.758930881931239,52.372972445272644],[4.758933079513425,52.37293652371566],[4.758935291902794,52.372900593249206],[4.758937489350297,52.37286468067878],[4.758939701732258,52.372828750211674],[4.758941913983207,52.372792828731455],[4.758944111674243,52.37275689818585],[4.758946323917787,52.372720976704926],[4.758947068050644,52.37270887408844],[4.758948242742481,52.37268503569119],[4.75895001434728,52.372649120859336],[4.758951786330991,52.37261317906584],[4.758953558184404,52.37257724625915],[4.758955330162123,52.37254130446507],[4.758957101882246,52.37250538064494],[4.758958873726671,52.37246944783738],[4.758960645695402,52.37243350604241],[4.758962417406541,52.37239758222142],[4.758964189241982,52.372361649412944],[4.758965961074428,52.37232571660423],[4.758966001516014,52.37232493488027],[4.758963533082023,52.37228978847326],[4.75896103142211,52.37225387792669],[4.75895851521009,52.37221795831473],[4.758956013558045,52.37218204776753],[4.758953497481217,52.372146119167844],[4.758950995837044,52.37211020862004],[4.758948479640813,52.372074289006875],[4.758946367797525,52.37204403385317],[4.75894558130153,52.37203839432896],[4.758940655658342,52.37200256079521],[4.758935715085141,52.37196674515735],[4.758930789457642,52.37193091162277],[4.75892586345607,52.37189510504902],[4.75892092316103,52.37185927143557],[4.758915997429751,52.37182344688669],[4.758911057023116,52.37178762225945],[4.758906131180214,52.371751806696786],[4.758901220155619,52.37171598222451],[4.758896265089377,52.37168015751797],[4.758891339269992,52.371644341953974],[4.758886457635144,52.371608517636176],[4.758882887684878,52.37158272167715],[4.758881091083206,52.37157271770778],[4.75887469583113,52.37153697523412],[4.75886828565152,52.37150125065617],[4.758866040671588,52.37148869177122],[4.758861302587238,52.371465541012746],[4.758854010425678,52.37142988365496],[4.758846689164243,52.371394208166336],[4.758843229410584,52.37137722083517],[4.758847392990533,52.37137665872563],[4.758854323095659,52.37137567988429],[4.758901833338602,52.3713689664787],[4.758911068043847,52.371368044803255],[4.758974623533198,52.37136165019911],[4.759062142187775,52.37135120337292],[4.759058782441093,52.37133959128394],[4.758971569180469,52.37134921285041],[4.758959816423829,52.37135063347351],[4.758906053522425,52.371357151940146],[4.758897860297289,52.37135815104471],[4.758848398664401,52.371362679044054],[4.758841267454645,52.371363342244685],[4.758840400263493,52.37136340055676],[4.758839397153245,52.37135854182005],[4.758837103851842,52.37134732186011],[4.758833295880302,52.37132278292701],[4.758827708904885,52.37128699979959],[4.758822136748698,52.37125120776248],[4.758817264201194,52.37121993131444],[4.758816299925407,52.37121544128341],[4.758808611144978,52.371179799791236],[4.758801749241843,52.37114798250292],[4.75880084883458,52.37114416689578],[4.758796941625469,52.37112767151636],[4.758792410356178,52.37110858433737],[4.758784749571364,52.37107615163665],[4.758783868855871,52.37107301920683],[4.758774327655817,52.37103753864696],[4.758764756723054,52.37100208489165],[4.75875518606015,52.370966613161045],[4.758745615412439,52.37093114142939],[4.758743451962225,52.370895214687124],[4.758741288515394,52.370859287944555],[4.758739124817271,52.3708233791759],[4.758736976187398,52.37078744352355],[4.758734812750702,52.37075151678006],[4.75873263463455,52.37071558995836],[4.758732148771051,52.370707390503135],[4.758722915701897,52.37068022528931],[4.758710962450462,52.37064502851429],[4.758698994535088,52.37060983165987],[4.75868809897784,52.37057771432546],[4.758687173721173,52.37057461760924],[4.758676750081947,52.370539249194046],[4.758666282665642,52.37050386256963],[4.758655815011219,52.37046849391828],[4.758647422101273,52.37044007486489],[4.75864700830608,52.370433008254615],[4.758644918371995,52.37039708189685],[4.75864436289808,52.370387578839576],[4.758642828568526,52.37036114655161],[4.75864075332367,52.370325220271226],[4.758638663272004,52.37028930289964],[4.758636573350957,52.37025337654073],[4.758635994373531,52.37024345991937],[4.758630133924328,52.37021766975952],[4.758622033711948,52.370182071001466],[4.758618951537311,52.370168501029],[4.758605848263207,52.370110855586674],[4.75859774821684,52.37007524783912],[4.758589662738608,52.37003964915586],[4.758582031740556,52.37000617400666],[4.75858143044725,52.37000404969223],[4.758571360170879,52.36996862921227],[4.758561260545328,52.36993320857533],[4.758551160808421,52.36989779692447],[4.758541060832782,52.3698624032467],[4.758533003642558,52.3698341387564],[4.758531049605266,52.36982696510008],[4.758521420521505,52.369791502018074],[4.758511791580405,52.36975602994797],[4.758502162272451,52.3697205848382],[4.758492867398577,52.36968640878386],[4.758492533361919,52.36968511276609],[4.758491682059267,52.369681980489204],[4.758490467482596,52.36967754305145],[4.75848928214376,52.369673114756765],[4.758488067694951,52.36966866833181],[4.758486867546718,52.369664248946286],[4.75848565309839,52.36965980252133],[4.75848290433929,52.36964964968007],[4.758473260649475,52.369614186515065],[4.758464358584715,52.369581306787545],[4.758463616974966,52.369578723349015],[4.758453355761299,52.3695433198169],[4.758443094309114,52.36950793425792],[4.758432818445555,52.369472530645574],[4.758422571835712,52.36943713617521],[4.758412310559709,52.36940174162575],[4.758402049299971,52.36936634707518],[4.758391802993676,52.36933093462721],[4.758381541639054,52.36929554906153],[4.758371295237851,52.369260145598446],[4.758361034043148,52.3692247510434],[4.758356401104095,52.369208719152866],[4.758350787547034,52.36918935656521],[4.75834054106716,52.369153962085946],[4.758330280176049,52.3691185495533],[4.758322554222659,52.36909179675432],[4.758320063093255,52.36908315522775],[4.758309905010617,52.36904774323881],[4.75830016702503,52.36901377152931],[4.758299761498936,52.3690123403139],[4.758298893501631,52.36900935175133],[4.758297620105905,52.36900492298619],[4.758296346710428,52.36900049422105],[4.758295087870053,52.368996074521014],[4.758293814602504,52.36899163676874],[4.758292541080363,52.36898721699069],[4.758289588766239,52.368976928244784],[4.758279430731917,52.36894151625255],[4.758269272586277,52.36890611324639],[4.758259114456737,52.36887071023907],[4.758248971280373,52.36883528933441],[4.758241667030986,52.36880986896396],[4.758238769009001,52.368799895078055],[4.758228419804488,52.36876450902766],[4.758218070743809,52.36872911398904],[4.758207706762496,52.36869373684552],[4.758197372416786,52.3686583418826],[4.758187023277873,52.3686229558277],[4.7581799096101,52.3685985970259],[4.75817668883749,52.368587569849666],[4.758166383777716,52.368552184026534],[4.758156078989164,52.36851678022801],[4.758145788644145,52.36848139448065],[4.758135483760801,52.368445999667024],[4.758125164084266,52.36841061376138],[4.758114844678992,52.368375209880334],[4.758104554271802,52.368339833115634],[4.758103461711915,52.36833611534538],[4.758095117095906,52.3683043440422],[4.758085768154594,52.368268846448785],[4.758076448592155,52.36823334901049],[4.758067114235053,52.36819786048029],[4.758057794702228,52.36816236304005],[4.758048445692782,52.36812687442993],[4.75804731801958,52.368122527325816],[4.758038861404346,52.36809141153178],[4.758034032433466,52.36807368887444],[4.758029188911932,52.36805595715163],[4.758019546053696,52.368020484952204],[4.758016544699093,52.368009521850816],[4.758015344897011,52.36800508448487],[4.758014145095168,52.368000647118876],[4.758012945166092,52.367996218740075],[4.758011730682792,52.36799178129604],[4.758010530626716,52.36798736190426],[4.758009902955816,52.36798503072605],[4.758009316271373,52.36798291547307],[4.758000245446273,52.36794955844663],[4.757990587697109,52.36791410414037],[4.757980930090747,52.367878640846016],[4.75797127237223,52.36784318653776],[4.757961614796522,52.36780772324137],[4.757951957236141,52.36777225994395],[4.757942299691089,52.36773679664552],[4.757939578880094,52.36772676077686],[4.757932303714225,52.36770138547394],[4.757922102080189,52.36766598219586],[4.757911915271629,52.367630570007584],[4.757901728351727,52.367595166805316],[4.75789155612976,52.36755976368],[4.757881354560363,52.36752436039748],[4.757871182498168,52.367488948282855],[4.75786099551534,52.36745355406331],[4.757850823612914,52.367418132959315],[4.75784834671231,52.36740953643393],[4.757840548571993,52.367382738269285],[4.757837636560454,52.36737272834438],[4.75783025886564,52.36734734350005],[4.757820013093201,52.36731195795101],[4.757809723546937,52.367276554192436],[4.757799448571154,52.36724115949791],[4.757789158929985,52.36720576472422],[4.75777886930512,52.36717036994941],[4.757774810044036,52.36715636333518],[4.757768594378213,52.3671349752515],[4.757762952738383,52.367115558549784],[4.757758981161359,52.36709951216819],[4.757750147361051,52.36706396334983],[4.757746814165539,52.36705052682681],[4.757745702505699,52.36704608992571],[4.757744605527695,52.36704165310268],[4.757743508677434,52.36703720729248],[4.757742411699866,52.36703277046943],[4.757741314084887,52.367028378582006],[4.757740188637213,52.36702387869288],[4.757732508910705,52.36699288384079],[4.757723689706561,52.36695734408491],[4.757714855962383,52.366921795262996],[4.757712813951302,52.36691359650979],[4.757704860348125,52.36688638406698],[4.75769449745582,52.36685098889242],[4.757684149133946,52.366815602781934],[4.757673800828466,52.366780216670314],[4.757663452411844,52.36674483954472],[4.757653089585197,52.36670944436563],[4.757642726519881,52.36667406715971],[4.757632393089041,52.366638672134485],[4.757625993464251,52.366616806708286],[4.75762244190301,52.36660324318965],[4.75761321114465,52.36656774617251],[4.757608559067336,52.36654999746841],[4.757608196992365,52.36654861141992],[4.757603907121264,52.36653223977694],[4.757594647156964,52.36649673361461],[4.75758538682471,52.36646125441276],[4.757576097399439,52.36642575707948],[4.757566837479283,52.36639025091429],[4.757557562764887,52.36635475365722],[4.757548288192779,52.366319247412044],[4.757539013507841,52.36628375015304],[4.757529753518985,52.36624825297113],[4.757529334892104,52.36624671382868],[4.757518846555692,52.366212935772026],[4.757507925055894,52.36617760950644],[4.757496944592968,52.36614230090157],[4.757488702490593,52.36611577896594],[4.757487355723549,52.36611135878644],[4.75748597908386,52.36610697439928],[4.757484603337462,52.36610252710212],[4.75748324163477,52.36609812481873],[4.757481865378619,52.36609371347012],[4.75748048937789,52.366089284147215],[4.757475028273402,52.36607164797378],[4.75746404799013,52.36603633037803],[4.757453082405498,52.36600101285915],[4.757442116838218,52.365965695338986],[4.757431151288285,52.36593037781766],[4.757430743649082,52.36592909937972],[4.757420876794477,52.365894992068775],[4.757410646615795,52.36585958857876],[4.757403004505266,52.365833213632214],[4.757400431134541,52.36582418516583],[4.757390156689495,52.36578879941355],[4.757379912005887,52.36575338685503],[4.757369652402152,52.36571799219153],[4.757359422304603,52.365682588696],[4.757349162605765,52.36564720301743],[4.757343312220192,52.36562700323813],[4.75733965306504,52.36561172246297],[4.757331172494548,52.36557615750407],[4.757328359130873,52.36556438647561],[4.75732730640163,52.365559940894734],[4.757326238991474,52.36555549523571],[4.75732517158153,52.365551049576666],[4.75732411898052,52.365546595008595],[4.757323066124515,52.36554215841479],[4.757322677511633,52.365540574491966],[4.757321984161692,52.365537703690464],[4.757314196968122,52.36550500953138],[4.757305687203512,52.365469435426625],[4.757297221368074,52.36543387054248],[4.75728872618395,52.36539830550127],[4.757280216715112,52.36536271341967],[4.757275561056066,52.36534316711545],[4.757270530478947,52.365327276856064],[4.757259388793729,52.36529197635151],[4.757248232317489,52.36525668475469],[4.757237075986509,52.3652213841695],[4.757225934226551,52.36518609264827],[4.757214777930844,52.36515079206053],[4.757210759375909,52.365138079881774],[4.757203209692025,52.36511555219384],[4.757191406320764,52.36508032904996],[4.75717961752146,52.36504511496999],[4.757167799378875,52.36500990073235],[4.757155981254944,52.3649746864933],[4.75714417795822,52.36493946334383],[4.757132359743943,52.36490425808915],[4.757120556484495,52.36486903493691],[4.757108753116034,52.364833820770386],[4.75710217515805,52.36481421029826],[4.757097758618295,52.364798512041816],[4.757089749467093,52.36477009488041],[4.757088520227006,52.36476567532044],[4.757087793585272,52.36476308296208],[4.757087261880743,52.3647612376299],[4.757086032768796,52.36475680908276],[4.757084774295378,52.364752380379315],[4.757083545183921,52.36474795183213],[4.757082286711001,52.364743523128695],[4.757077872610598,52.36472765411568],[4.757067878247472,52.36469222487754],[4.757057913261846,52.364656795794595],[4.757047948164367,52.36462137569772],[4.757037983338003,52.36458593762551],[4.757028018399786,52.36455050853938],[4.757018053605035,52.364515070465046],[4.757008088443095,52.36447965935104],[4.756998108999198,52.36444422119643],[4.756995957445838,52.36443651617252],[4.757031215252945,52.36441847657505],[4.757076263676355,52.36439541995405],[4.75712131205295,52.3643723633157],[4.757166375191089,52.364349297751055],[4.757211408793323,52.364326240999915],[4.757228608554072,52.36431745256999],[4.757256471837789,52.36430317540058],[4.75729854725814,52.364281648779055],[4.757301214539678,52.36427991933547],[4.757301718277267,52.36427959845449],[4.7573031564693,52.36427860845962],[4.757304802232731,52.36427747576411],[4.757307754827221,52.364275298447765],[4.757310590741449,52.36427306658363],[4.757313309847816,52.3642707891588],[4.757315912529137,52.364268439211926],[4.757318383594315,52.36426605261344],[4.757320737851668,52.36426362045426],[4.757322975301199,52.36426114273447],[4.757325066581539,52.36425861929784],[4.757327026245801,52.36425605920957],[4.75732886897469,52.36425346254785],[4.757330565406841,52.364250829156404],[4.757331408324067,52.36424936862744],[4.757332115414681,52.364248168022414],[4.75733353367892,52.36424547922402],[4.757334820199581,52.364242762761116],[4.757335960295995,52.36424001855571],[4.757336953840592,52.364237255594915],[4.757337800705801,52.36423448286584],[4.75733850127444,52.364231673407076],[4.757339069589237,52.364228872232474],[4.757339576239416,52.36422524385074],[4.757340123855037,52.36421976419699],[4.757340541258349,52.36421414903312],[4.757340793984195,52.364208757688495],[4.75734090156197,52.364203248729936],[4.757340876886055,52.36419774805552],[4.757340690722751,52.36419224652188],[4.757340372305862,52.36418675327238],[4.757339892401695,52.36418125916361],[4.757339526129279,52.36417810249154],[4.757339265690979,52.36417576427378],[4.757338506599239,52.36417028665517],[4.757337586020393,52.36416480817733],[4.757336533060624,52.364159346970766],[4.757335333166925,52.36415389397018],[4.757333971658685,52.36414844909747],[4.757332477642084,52.36414303048319],[4.757332295215002,52.36414243631671],[4.757330836691707,52.364137620074864],[4.757329063360662,52.36413222693776],[4.7573270293511,52.364126580754814],[4.757321638745861,52.36410710243914],[4.757311864917931,52.36407164742733],[4.757305943641512,52.36405025188226],[4.757301649921279,52.36403624399387],[4.757290846568025,52.36400091831887],[4.75728143216929,52.36397013888052],[4.757280071699806,52.363965655708796],[4.757278738677668,52.363961307500354],[4.75727737718786,52.36395689622572],[4.757276030506519,52.363952476041995],[4.757274683825447,52.363948055858316],[4.757273322336442,52.36394364458361],[4.757269225487431,52.363930248912766],[4.757258407760121,52.3638949051817],[4.757247604475272,52.36385957950182],[4.757237193886254,52.36382555015596],[4.757236845632011,52.363824227093716],[4.75722736592688,52.363788746674196],[4.757217915597852,52.36375326640994],[4.757208450603306,52.36371778606661],[4.757198985623788,52.363682305722264],[4.757190510010004,52.36365056058615],[4.75718926636883,52.363647156572796],[4.757189152881268,52.363646877346525],[4.757187890220559,52.36364377881768],[4.757186352331866,52.36364041817737],[4.757184696616623,52.36363708387344],[4.757182893586258,52.36363378473672],[4.757180943496047,52.36363050279294],[4.757178846090772,52.36362725601636],[4.757176630603798,52.363624053550346],[4.757174282609918,52.36362087734258],[4.757171787301044,52.36361773630196],[4.757169173910538,52.36361463957192],[4.757168089976775,52.3636134294356],[4.757166427757933,52.363611587074324],[4.75716354884325,52.36360857880912],[4.757160551846986,52.36360561485453],[4.757157436641524,52.36360270419758],[4.757154188674033,52.36359983777304],[4.757150822497369,52.36359702464617],[4.757147337983911,52.36359427380405],[4.757143735388937,52.363591567272465],[4.75714047976508,52.36358924007578],[4.757133558996848,52.363584475648736],[4.757094564694218,52.363557601243265],[4.75707505281634,52.363544168451114],[4.757068975359057,52.36353998372939],[4.757055541077928,52.363530726668614],[4.757029370428102,52.363512692611934],[4.757010921321284,52.36350919700431],[4.756954812422783,52.36349858028007],[4.756947740409784,52.36349723040718],[4.756924534084774,52.363494796984114],[4.756920430711511,52.3634942718189],[4.756916357848338,52.363493665925624],[4.756912315750641,52.36349296132998],[4.756908318715839,52.363492185071664],[4.756904381807432,52.36349131026733],[4.756900475281524,52.36349036372208],[4.756898091307831,52.363489721881514],[4.756896658115246,52.36348932777437],[4.75689287145918,52.363488211098606],[4.756889159354659,52.363487013929294],[4.756885521801694,52.3634857362665],[4.7568819588003,52.36348437811019],[4.756878470222804,52.36348294844752],[4.756875070749651,52.36348144735666],[4.756871760508534,52.363479865850444],[4.756870084133545,52.36347902105722],[4.756868538988708,52.36347823987748],[4.756865406956309,52.363476515514954],[4.756862393133763,52.3634747378549],[4.756859468287892,52.3634728977538],[4.756856647099132,52.363470995289866],[4.75685394424791,52.36346903054128],[4.756852332469242,52.36346777265217],[4.756851359606528,52.36346701249514],[4.756848893174981,52.36346494115155],[4.756846530400528,52.36346280744517],[4.756844300260934,52.36346063849368],[4.756842203011579,52.36345841632288],[4.756840223844325,52.36345614984175],[4.756838377311891,52.36345384811562],[4.756837844479423,52.36345311726512],[4.756837441599987,52.36345253989947],[4.756836678222384,52.3634515022355],[4.756835571580998,52.363449824608615],[4.756835312696565,52.36344944574171],[4.756835096959541,52.36344913001931],[4.756833648459167,52.36344671357101],[4.756832347146271,52.363444270942956],[4.756831193020832,52.36344180213527],[4.756830128893504,52.363439198989525],[4.75682905532618,52.36343519369401],[4.756819576029214,52.36339971323971],[4.756810082066897,52.36336423270623],[4.756800588119652,52.36332875217177],[4.756797716565285,52.363317996437864],[4.756796322339548,52.36331279405457],[4.756794928114134,52.363307591671244],[4.756793533889048,52.36330238928795],[4.756792139664282,52.363297186904575],[4.756791094059776,52.3632932806235],[4.756790745439842,52.363291984521226],[4.7567893658961,52.363286782216],[4.756783845042522,52.36326616172482],[4.756774138165014,52.36326013313205],[4.756736271283263,52.36323660807727],[4.75673290949601,52.3632345229747],[4.756712273350415,52.36322170429264],[4.756691695427234,52.36320892186826],[4.756687358490937,52.36320623837454],[4.756643540446801,52.36320890804433],[4.756642351511867,52.363203724728216],[4.756634224664054,52.36316813461905],[4.756626098084632,52.363132526534905],[4.756617971390405,52.363096927437],[4.756609830028805,52.36306132826016],[4.756602657155844,52.363029895601485],[4.756601527069287,52.36302573720949],[4.756591871621755,52.36299027377029],[4.756582201509287,52.362954810251885],[4.756572545964664,52.3629193557978],[4.756562890435363,52.36288390134272],[4.756553235049127,52.362848437899515],[4.756543579678215,52.3628129744552],[4.756533909642423,52.362777510931735],[4.75652423949422,52.36274205639436],[4.756521240138558,52.36273100337315],[4.75652002581873,52.362726574896726],[4.756518826051569,52.362722155485606],[4.756517611987734,52.3627177090349],[4.756516412348807,52.36271328063658],[4.756515198157698,52.36270884317296],[4.756514569489116,52.362706592868825],[4.756513983839069,52.36270441469647],[4.756509449007608,52.362687772058614],[4.756504531728634,52.362671181309764],[4.756494038388207,52.36263580327352],[4.756483544936641,52.36260043422325],[4.756473066181826,52.362565065250045],[4.756462572891253,52.3625296872103],[4.756452094169642,52.36249431823479],[4.756441600784528,52.36245894917988],[4.756441237245628,52.362457670972454],[4.756431107543808,52.362423571136716],[4.756420599384083,52.362388210988385],[4.75641093243361,52.36235564154546],[4.756410106176614,52.36235283294291],[4.756409867732246,52.362352049731996],[4.756408802903275,52.362348466905615],[4.756407850148258,52.362345262164894],[4.75640678544739,52.36234167035137],[4.756405706066636,52.36233807845962],[4.75640464136611,52.362334486646056],[4.756399583497891,52.36231746372691],[4.756389060708049,52.36228210349693],[4.756378538062649,52.36224673427864],[4.756368015561707,52.36221135607205],[4.756357492821853,52.362175995838555],[4.756346970226449,52.36214062661679],[4.756340063075566,52.36211737426748],[4.756336359440046,52.36210526591159],[4.756325542767523,52.36206993107131],[4.756314726112114,52.36203459622983],[4.756303924153769,52.3619992614654],[4.756293092852651,52.36196392654323],[4.756282290800714,52.36192860076354],[4.756271474341567,52.36189325693004],[4.756260643091838,52.36185792200428],[4.75624984121902,52.36182258723376],[4.756239024683422,52.361787252383785],[4.756228208164941,52.36175191753264],[4.756217391663577,52.36171658268024],[4.756206575179331,52.36168124782667],[4.756195773392027,52.36164591305009],[4.756184956942003,52.361610578194075],[4.756174125829292,52.361575243258606],[4.756163324093305,52.361539908478406],[4.756152507694631,52.36150457361874],[4.756141691313076,52.361469238757905],[4.756130874948634,52.36143390389581],[4.756120073281054,52.361398569110776],[4.756117000567912,52.36138855827185],[4.756127705028915,52.36136363818343],[4.756135372803106,52.361345784308554],[4.756136531574405,52.36132830917302],[4.756138730996153,52.36129547041008],[4.756137937586664,52.36129241930881],[4.756128664936957,52.36125693089396],[4.756119377750115,52.36122143341281],[4.756110119937367,52.36118593608719],[4.756100832779995,52.36115043860408],[4.756091560444855,52.361114932211144],[4.756082287996604,52.3610794348044],[4.756080812110373,52.36107379157111],[4.756077668736758,52.361062558009834],[4.756076425146935,52.361058129370974],[4.756075181557358,52.36105370073212],[4.756073937968026,52.3610492720932],[4.756072694378942,52.361044843454316],[4.756072456970196,52.3610439883454],[4.756071450790103,52.36104041481537],[4.756070221881136,52.361035986254684],[4.756062522946386,52.36100855931177],[4.756052588938327,52.360973130277074],[4.756042640266429,52.36093770116304],[4.756032706417736,52.36090226313908],[4.756025063306778,52.36087504321038],[4.756022684251684,52.36086684261868],[4.7560124121655,52.360831447728046],[4.756002154775135,52.3607960529145],[4.755991882721491,52.360760658021576],[4.755981610684125,52.36072526312756],[4.755971353342543,52.36068986831067],[4.755970905206658,52.3606883469789],[4.755961654861036,52.360654404570205],[4.755951970946542,52.360618949894096],[4.755942301854753,52.3605834863082],[4.755932617843106,52.360548040617225],[4.75592294878201,52.36051257702924],[4.755913265056816,52.36047711336195],[4.755909665989264,52.36046386409188],[4.755903742948565,52.360441641567654],[4.755894309059793,52.360406161254964],[4.755894894094915,52.36039496554703],[4.755900462066135,52.360288408641985],[4.755773206262003,52.359888535685634],[4.755769229558852,52.35987603937224],[4.755677970728238,52.35957217749183],[4.755662157751414,52.359512521821046],[4.755565344408223,52.3591472703033],[4.755532289613651,52.35903968939248],[4.755515958824727,52.35896384385587],[4.755507228783923,52.358923307109315],[4.755495423780541,52.35888840729442],[4.75549533954557,52.3588881372101],[4.755495198386252,52.35888774099238],[4.755464882403689,52.35879815931334],[4.755426175322059,52.35865559453806],[4.755389796462487,52.35855366715152],[4.755326977717116,52.35833433442713],[4.755302956224998,52.35823986995324],[4.75528736354837,52.358146259374784],[4.755277044078063,52.358077168775864],[4.755268511734515,52.35799494751096],[4.755268978860593,52.35796008621872],[4.755269686692188,52.35790626189324],[4.755268151678679,52.357848093459936],[4.755267538246853,52.35782519818556],[4.755293104088256,52.3576040093882],[4.755303181604178,52.35750350735538],[4.755312282903514,52.35741279684238],[4.755355681457764,52.357256721171524],[4.75544069058259,52.35706080882047],[4.755486220062402,52.35696637401784],[4.755525411735843,52.356885072545325],[4.75566862037697,52.356649106251666],[4.755769245167639,52.35652853207194],[4.756027669453866,52.35628318544484],[4.756130435697597,52.35620079369296],[4.756142180853687,52.35619137415109],[4.756146397851116,52.356187990245964],[4.756164290247706,52.356173642192815],[4.756216898155887,52.356131464136524],[4.75633272752397,52.35604601408093],[4.75651570315431,52.35594164281239],[4.756689178034866,52.35583228633353],[4.756961409758644,52.35569829854396],[4.757399073215701,52.35548971068892],[4.758207659208301,52.35517497830548],[4.758294505909727,52.35514341614482],[4.758312978907891,52.355136701521516],[4.758330020651599,52.35513050957303],[4.758364340113705,52.35511804603194],[4.758521419205999,52.35506095388573],[4.758897446208215,52.35490950130779],[4.759022709310281,52.35485904339367],[4.75947687359843,52.35466771120408],[4.759524935653396,52.354648732129654],[4.759526205165743,52.35464822655553],[4.759575406498776,52.35462860637846],[4.759576484185454,52.35462817168927],[4.759624593237933,52.354608977115795],[4.759673779806529,52.35458935681972],[4.759722981009163,52.35456973658086],[4.75977216761791,52.354550107256436],[4.759790206555827,52.35454291374753],[4.759820339338249,52.35452958273692],[4.759841476599837,52.35452023058784],[4.759867946088423,52.35450852492142],[4.759915523438506,52.35448746693103],[4.759963115420926,52.35446640899915],[4.760010692680754,52.35444535097017],[4.760017826981656,52.35444219809412],[4.76006171626151,52.35442762769222],[4.760113333194803,52.35441050073289],[4.760159508335764,52.35439516945201],[4.760164935537862,52.35439336468594],[4.760216552518556,52.35437622869416],[4.760233084641717,52.35437074381178],[4.760244971278358,52.35436679820286],[4.760268184009904,52.35435910174462],[4.76031978636053,52.35434195664266],[4.760371403094862,52.3543248295701],[4.760397786658817,52.354316071339184],[4.760420471237334,52.35431043026761],[4.760423351088866,52.3543123059988],[4.760463522642471,52.35433853848967],[4.760503679693063,52.354364761901955],[4.760527197974108,52.35438012079702],[4.760547743052039,52.3543721495129],[4.760597349266501,52.354352908545124],[4.76064694076057,52.35433366747874],[4.760675072112146,52.35432275237101],[4.760666029881018,52.354308216123805],[4.760645117560539,52.35427462575428],[4.760624220075918,52.35424102647149],[4.760619526781348,52.354233478811544],[4.760656960570748,52.35421762470693],[4.760705247925601,52.35419717234341],[4.760753535235979,52.354176719960044],[4.760801822375022,52.354156276544],[4.760850109596455,52.3541358241209],[4.760898396773413,52.35411537167799],[4.760946683905894,52.35409491921517],[4.760994956316569,52.35407446665484],[4.76104325803743,52.35405401422999],[4.761091544909685,52.35403357069477],[4.761139817186959,52.35401311807491],[4.761188118774379,52.35399266559043],[4.761236405513248,52.35397222199565],[4.761284677657123,52.353951769316204],[4.761332979237856,52.35393130778497],[4.761381265843323,52.35391086413063],[4.761429537853791,52.35389041139165],[4.761477824497061,52.35386995871041],[4.761526125646406,52.35384951507406],[4.761574397523477,52.35382906227555],[4.761622684033328,52.35380860953471],[4.761658212214303,52.353793562935394],[4.761672343934272,52.35378964702471],[4.761725835118709,52.353774830154876],[4.761740954381399,52.35377062285628],[4.761779326267498,52.35376001326074],[4.761832817507288,52.353745187355216],[4.761864352270706,52.35373644702755],[4.761885442767993,52.35372931426207],[4.761936827023771,52.35371192463413],[4.761968477409462,52.35370122554251],[4.761987357312488,52.35369367662913],[4.762036395178468,52.3536740455817],[4.762042550641246,52.35367158846479],[4.762048676748945,52.35366913119253],[4.762054817533164,52.353666673997466],[4.762060958316702,52.353664216802116],[4.76206711377676,52.35366175968396],[4.76207325455894,52.35365930248792],[4.762085668975598,52.35365433486958],[4.762134810001363,52.35363466837506],[4.762183950983611,52.35361500185997],[4.762211894369358,52.3536038247487],[4.762233671035799,52.35359590461553],[4.762284158431212,52.353577557391645],[4.762288156699443,52.35357610449736],[4.762334645911475,52.35355920115895],[4.762349842226931,52.353553681966346],[4.762384539937781,52.353540248575136],[4.762434129623568,52.353521015741116],[4.762483748367676,52.353501801015476],[4.762533367195363,52.3534825772817],[4.762570928098078,52.35346802648038],[4.76258310162626,52.35346347996692],[4.762633227111003,52.3534447531959],[4.762683337749896,52.35342603531327],[4.762733477827255,52.353407308576955],[4.762739144064155,52.35340519038037],[4.762782516691251,52.35338756038504],[4.762831439865026,52.35336768573296],[4.762880348444356,52.35334780199594],[4.762929257106319,52.35332790925136],[4.762954382894445,52.353317705765804],[4.762978035274098,52.35330789895665],[4.763026624871189,52.35328772586651],[4.763075228974815,52.35326756182086],[4.763117380989212,52.35325007805993],[4.763123949186984,52.35324748824583],[4.763173335400836,52.35322806528598],[4.763207932522632,52.35321444237955],[4.763214102154872,52.35321201224017],[4.763220271786434,52.35320958210042],[4.763222721950592,52.35320861534393],[4.763226441417324,52.35320715196041],[4.763232625724588,52.35320472189741],[4.763238795354125,52.35320229175672],[4.763244964982989,52.35319986161575],[4.763272108330744,52.35318917436825],[4.763321494667669,52.35316973337185],[4.763370880835028,52.35315030134181],[4.763420281762531,52.353130860381256],[4.76346965329275,52.35311141924523],[4.763519054007476,52.353091987230286],[4.763568425451263,52.35307254605278],[4.763617826079549,52.35305311399628],[4.763667212113894,52.35303367285457],[4.763716597978744,52.353014240679265],[4.763765983926639,52.352994799496045],[4.763815355154332,52.35297535821477],[4.763864755692744,52.352955917067305],[4.76391414138473,52.35293648480901],[4.76396352715972,52.352917043542746],[4.76401291289148,52.35289760225574],[4.764062298580011,52.352878160947974],[4.764111684099132,52.352858728606606],[4.764161084378149,52.352839287334625],[4.764210455260072,52.352819845887346],[4.764259855326463,52.35280041356097],[4.764309226121952,52.35278097207217],[4.764358626228035,52.35276153071716],[4.76440801161398,52.352742089264055],[4.764434313026696,52.352731738858466],[4.764440482650913,52.35272929966754],[4.764446652022225,52.352726878450625],[4.764452821518978,52.35272444824618],[4.764457396956693,52.35272264779029],[4.764458991015055,52.35272201804144],[4.764465175313458,52.3527195789264],[4.764471344682074,52.35271715770816],[4.764506782256179,52.35270320629569],[4.764556167512436,52.35268376478041],[4.764605552725464,52.35266432324432],[4.764654952446059,52.352644890751876],[4.76470432289577,52.35262544909709],[4.764753707979123,52.35260600749877],[4.764803107696093,52.35258656595684],[4.764852477890106,52.352567133226955],[4.764901877520617,52.352547691643565],[4.764951247754229,52.352528249885026],[4.765000647172269,52.352508817247255],[4.765050031996262,52.35248937552438],[4.765099416777026,52.35246993378074],[4.76514880151456,52.35245049201638],[4.765198186082906,52.352431059218404],[4.765247570733995,52.352411617412514],[4.765294328138912,52.35239321335759],[4.765296970018639,52.352392175662985],[4.765346339906483,52.35237273373847],[4.765376773423264,52.352360760061266],[4.765395796804389,52.35235336415321],[4.765445369688287,52.35233409402278],[4.765494942403277,52.352314832858646],[4.765544500398521,52.352295571596464],[4.765589881794945,52.35227793315137],[4.765594058602551,52.35227629233908],[4.765643457459191,52.35225685943107],[4.765672370553763,52.352245488866124],[4.765678539790738,52.35224306758453],[4.765684709152899,52.35224063731542],[4.76569089319112,52.35223820712304],[4.765697062426073,52.35223578584044],[4.765703246462944,52.352233355647456],[4.765709415822405,52.35223092537705],[4.765742254791109,52.35221801152711],[4.765791653518106,52.352198578556795],[4.765808169008797,52.35219207718645],[4.765840515832338,52.352178666394806],[4.765889117319111,52.35215851017213],[4.765937748240991,52.35213834509621],[4.765986349639518,52.35211818883332],[4.766034950993933,52.352098032550224],[4.766040398642902,52.35209577823156],[4.766084335034321,52.352078581405515],[4.766133805959598,52.35205921158662],[4.766183262039302,52.352039850657086],[4.766232718075895,52.35202048970677],[4.766282188871776,52.3520011198254],[4.76632789608127,52.35198323114843],[4.766328737302483,52.351982903011525],[4.766329770577463,52.35198248600379],[4.766331615846018,52.35198173171798],[4.766380579536129,52.35196188278047],[4.766429542931061,52.351942051796954],[4.766478506407972,52.351922211805835],[4.766527455164514,52.35190237171734],[4.766576418553949,52.35188253168543],[4.766625381773976,52.351862700620245],[4.76667434507594,52.35184286054751],[4.766723293657559,52.35182302037741],[4.766772256872051,52.35180318026383],[4.766821219917167,52.35178334911703],[4.766870183169804,52.35176349997549],[4.766900871766508,52.351751068865475],[4.766920173593602,52.351744716760976],[4.766971871569734,52.351727677124934],[4.767023584057199,52.35171064653025],[4.767075281828474,52.351693615835906],[4.767126979434562,52.35167659410609],[4.767178691803158,52.351659563443256],[4.767230374779037,52.35164253260398],[4.767282072391845,52.351625501818845],[4.767307935922689,52.35161698200104],[4.767333784767089,52.351608462100714],[4.76738548230064,52.351591431270165],[4.767437194345588,52.35157440948092],[4.767488891799905,52.35155737860494],[4.767540589214603,52.35154034770627],[4.767592301266186,52.35152331686168],[4.767643998601637,52.351506285917594],[4.767695696022921,52.351489245963634],[4.767747407955611,52.35147221505094],[4.767799105046756,52.351455193025885],[4.767850802223723,52.35143816199094],[4.767876665411117,52.351429651035346],[4.767888992506697,52.351425590124634],[4.767902514037543,52.35142113101009],[4.767920842542099,52.35141508822419],[4.767932255424942,52.35141132811173],[4.767954211260665,52.351404090942594],[4.767971964485029,52.35139825185898],[4.768003867401164,52.351385008924645],[4.768052467414157,52.351364824845746],[4.7681011540626,52.351344740066274],[4.768150087157863,52.35132487226387],[4.768199020084007,52.35130501342822],[4.768247953091734,52.351285145584995],[4.768296871379266,52.351265277644636],[4.768340135973627,52.351247716958156],[4.768389068729807,52.35122785804334],[4.76843800156753,52.351207990121004],[4.768452673859104,52.35120204498013],[4.768460777812045,52.35119874387322],[4.768467316919253,52.35119609069683],[4.76848700686642,52.35118818547205],[4.768536084376035,52.35116846207087],[4.768585161967336,52.35114872966196],[4.768634239389776,52.35112900621979],[4.768683331319751,52.35110929182094],[4.768732408655027,52.35108956833773],[4.76878148607195,52.351069835846815],[4.76883056332005,52.35105011232261],[4.768879655200911,52.351030388854554],[4.768928732361837,52.35101066528933],[4.76897780947918,52.3509909417036],[4.769026901229266,52.350971218174024],[4.769075992935753,52.35095149462393],[4.769125070172657,52.350931753002335],[4.769174146865335,52.350912047308945],[4.769216109493498,52.35089518055564],[4.769223223639612,52.350892332607884],[4.769272373251265,52.35087265421813],[4.769298114099173,52.3508623447482],[4.76932150814309,52.3508529757312],[4.769370642866267,52.350833306210944],[4.769419792222206,52.35081363674667],[4.76946892685835,52.3507939671853],[4.7695180468998,52.35077428853958],[4.769567196125169,52.35075461901371],[4.769616330755818,52.350734940403484],[4.769665465217887,52.3507152707599],[4.769714614437715,52.35069559218513],[4.769763748812741,52.35067592250044],[4.769812868468028,52.35065625271865],[4.769862002756033,52.350636582992884],[4.769911151801731,52.3506169043359],[4.769960286127678,52.350597225581836],[4.770009420285112,52.35057755579442],[4.770058569075224,52.35055788606295],[4.770107688469441,52.350538216157915],[4.770156822621283,52.35051853732166],[4.770205971405764,52.35049885854136],[4.770255105345604,52.35047918865118],[4.770304239241931,52.35045951874045],[4.770353387770895,52.350439848885664],[4.770402521580187,52.35042017893384],[4.770451640794716,52.35040049989779],[4.770482207291085,52.35038826495866],[4.77050078919311,52.35038082998134],[4.770549937547977,52.35036116004438],[4.770599071183198,52.35034149001032],[4.770648219451019,52.350321820032235],[4.770697352874367,52.35030215894425],[4.770746486503879,52.35028247986141],[4.770795649192409,52.35026281888523],[4.770844782610053,52.350243148748454],[4.770893915984181,52.350223478591126],[4.770943049314801,52.35020380841325],[4.770992197153193,52.350184147278405],[4.771041330521557,52.35016446807227],[4.771090478397681,52.350144797909145],[4.771139626105532,52.35012513671264],[4.771188759218571,52.350105466431984],[4.771237892288098,52.35008579613082],[4.771287039865423,52.350066134872634],[4.771336187648658,52.350046455619584],[4.771385320587632,52.350026785256716],[4.771434468034414,52.35000712393689],[4.771483600886365,52.34998745353297],[4.771532733694801,52.349967783108454],[4.77158189568705,52.34994812180329],[4.771631028533107,52.349928442350546],[4.77168016121099,52.349908771864385],[4.771729308396705,52.349889110421216],[4.771778440987567,52.349869439893986],[4.771827573534916,52.34984976934624],[4.771876735266058,52.349830107917676],[4.771925867850965,52.349810428341605],[4.771943475175599,52.34980338353676],[4.77197498559182,52.34979075765588],[4.772024132765611,52.34977107811504],[4.772073250544001,52.34975139840103],[4.772122382954791,52.349731718742774],[4.772171500521595,52.34971204797489],[4.772220633094392,52.34969235030118],[4.772269765374581,52.349672670581334],[4.772318882935337,52.34965299076464],[4.772368029679856,52.349633320067106],[4.772417147153572,52.34961364020934],[4.772466264708243,52.34959395134386],[4.772515411446649,52.34957427159748],[4.772564528789778,52.34955459167809],[4.772613646089391,52.34953491173822],[4.772662792697182,52.34951523193016],[4.772711910034169,52.34949554296199],[4.772761027203194,52.349475862960496],[4.772810159004535,52.3494561830146],[4.772859290637942,52.34943651203536],[4.772908422352224,52.349416832048405],[4.77295753934716,52.349397151964745],[4.77300667109875,52.34937746294951],[4.773055802682431,52.34935778290092],[4.773104919546785,52.34933810275562],[4.773154065719192,52.34931842274205],[4.773194519200674,52.349302211853065],[4.773203182496495,52.34929874255572],[4.773252299230274,52.34927906234881],[4.773301445272071,52.349259382273615],[4.773350561918797,52.34923970202566],[4.773399693197759,52.34922002183323],[4.773448809757441,52.3492003415442],[4.773497941073611,52.34918065232352],[4.773547072221971,52.34916097206947],[4.773596188526823,52.34914130070598],[4.773645334263856,52.34912162048696],[4.773694450605912,52.3491019400952],[4.773743566904446,52.34908225968292],[4.773781481450432,52.34906706903436],[4.773792712635077,52.34906257041504],[4.773841828846551,52.34904288996168],[4.773890945014503,52.34902320948779],[4.773939027880512,52.34900395505521],[4.773940090366128,52.34900353813263],[4.773989249977402,52.34898389379452],[4.7740384095452,52.34896424943585],[4.774087583869329,52.34894459614545],[4.774136743226015,52.3489249607328],[4.774185917339024,52.34890531638843],[4.774235091408542,52.34888567202347],[4.774284250758929,52.34886602756196],[4.774333410065839,52.348846383079824],[4.774382583880808,52.348826747640324],[4.774431743100766,52.34880710311708],[4.774480902277245,52.34878745857326],[4.774530076209911,52.34876780509763],[4.774579235299417,52.3487481605127],[4.774628394221411,52.34872852489435],[4.774677582575148,52.348708880420155],[4.774678305647842,52.34870859655183],[4.774726697879521,52.34868920858407],[4.774775827939981,52.3486695278162],[4.774824972508477,52.348649856090894],[4.7748740879303,52.34863016621882],[4.774923217736184,52.34861049437654],[4.774972362298073,52.348590813602414],[4.77502147734137,52.34857114164306],[4.775070607016707,52.3485514697391],[4.775119751571936,52.348531779916144],[4.775168881160222,52.34851210797109],[4.775217996153394,52.34849242694242],[4.775267140330164,52.348472755032205],[4.775316269787903,52.34845308302551],[4.775365384650518,52.34843340193522],[4.775414528820597,52.34841372097615],[4.775463658271646,52.34839403992066],[4.775512772879824,52.34837436775596],[4.775561754622167,52.348354748811246],[4.775611045992089,52.34833502359246],[4.775660175145212,52.34831535144199],[4.775709319054093,52.348295670359576],[4.77575846267182,52.348276007231014],[4.775807591694392,52.348256335018895],[4.775856720673454,52.348236662786206],[4.775905864160655,52.34821699959597],[4.775954993052698,52.34819732732224],[4.776004136700399,52.348177646116504],[4.776053280180809,52.348157973877434],[4.776102408818554,52.34813831052922],[4.776151537536537,52.348118638173275],[4.776200680886396,52.348098965872495],[4.776249809393638,52.34807930246265],[4.776298952780159,52.348059621133636],[4.776308486262475,52.34805580557617],[4.776337470609359,52.34804419011192],[4.776348168386817,52.348040021047524],[4.776397687927714,52.348020728095825],[4.776447222100961,52.34800143519898],[4.776496756231189,52.34798214228132],[4.776546290318391,52.347962849342736],[4.776595824362575,52.34794355638325],[4.776645358363738,52.34792426340293],[4.776694936595089,52.34790495265448],[4.776698978896427,52.34790342759967],[4.77670219641249,52.34790211399808],[4.776705341169801,52.34790075508192],[4.776708428090909,52.34789933295257],[4.776711442500479,52.34789784753423],[4.776714369475959,52.347896316725716],[4.776717223939894,52.34789472262821],[4.77672000564506,52.34789308321624],[4.776722700039744,52.34789138942679],[4.776725307000336,52.347889650247176],[4.776727826526838,52.34788786567735],[4.776730258866468,52.34788601774289],[4.776738107489548,52.347880917188185],[4.776778284886728,52.34785470918719],[4.776818462236441,52.34782850117236],[4.776858654213982,52.34780229321929],[4.776898831592329,52.347776076189525],[4.776939008676065,52.34774987712026],[4.776979200511174,52.3477236691257],[4.777019406974062,52.34769746119286],[4.777059554688447,52.34767125294356],[4.777099746381125,52.34764504490736],[4.777139938026322,52.347618836857315],[4.777179981760145,52.34759270892175],[4.777185030847805,52.347589472364135],[4.777190271083163,52.34758620982803],[4.77719561330323,52.34758300174435],[4.777201028281064,52.3475798389746],[4.777206515893163,52.34757673050599],[4.777212090814747,52.34757367641405],[4.777217738494111,52.34757066763604],[4.77722286735282,52.34756803367261],[4.777223458684245,52.34756772214629],[4.777229266183875,52.34756483103326],[4.777235146317795,52.347561994221245],[4.777241084287293,52.347559220621825],[4.777247109689816,52.34755649241192],[4.777253207479651,52.34755383647741],[4.777259348676894,52.34755122570544],[4.777265562261475,52.34754868720886],[4.777270239990724,52.34754684184753],[4.777271848480412,52.34754620301327],[4.777279579290895,52.34754325889497],[4.777319150249224,52.3475269611627],[4.777367857480744,52.347506899654974],[4.777416579219992,52.34748684718982],[4.777465301038711,52.34746678571731],[4.777514008138243,52.34744672414896],[4.77756272986895,52.34742666263604],[4.777611436757057,52.34740661001443],[4.777660143724612,52.3473865483855],[4.777708865323319,52.347366486811936],[4.77775758687802,52.347346425218156],[4.777806308388713,52.347326363604154],[4.777820389041261,52.347320567052996],[4.777830661666608,52.34731634173901],[4.777855000381757,52.34730631080607],[4.777903721804458,52.347286249151644],[4.777952443183151,52.34726618747706],[4.778001149842726,52.34724612570667],[4.77804987113341,52.347226063991656],[4.778098592133428,52.34720602023079],[4.778102282243919,52.34720448432782],[4.778147269557479,52.347185940274386],[4.778195961612605,52.347165860373345],[4.77824466829879,52.347145780527605],[4.778293360265869,52.347125700586155],[4.778299382216177,52.34712321497653],[4.778342066863992,52.347105620700034],[4.778390744067963,52.347085540642716],[4.778439435779718,52.34706546962791],[4.778488142245767,52.34704538968119],[4.778536833992745,52.347025309638816],[4.778585525695699,52.34700522957625],[4.778634217231414,52.346985158480685],[4.778682908846339,52.34696507837775],[4.778731615092255,52.34694499833008],[4.778780306619128,52.34692491818675],[4.77882899810198,52.346904838023256],[4.778877689417645,52.34688476682675],[4.778926380689306,52.34686469561009],[4.7789750867151,52.34684461546145],[4.779023778021884,52.34682453521718],[4.779072469161515,52.346804463939954],[4.779076587118498,52.34680275943637],[4.779121145828425,52.34678437459272],[4.779169837126264,52.346764285300694],[4.779218513705112,52.34674419591316],[4.779267204914873,52.34672410658079],[4.77931588140566,52.34670401715283],[4.77936455785242,52.34668392770473],[4.779413248930076,52.346663838311805],[4.779461925288773,52.346643748823375],[4.779510616278353,52.34662365939007],[4.779559292425957,52.34660357884846],[4.779583645158156,52.346593538645415],[4.779597061408417,52.34658799911959],[4.779607968652575,52.34658348929948],[4.779656659510056,52.346563399805646],[4.779705335648614,52.3465433102163],[4.779754026418021,52.34652322068213],[4.779802702468517,52.34650313105243],[4.779845415643707,52.34648550941861],[4.77985129140957,52.346482969053085],[4.779899257157181,52.3464622286148],[4.779926524780571,52.34645044168444],[4.779947744515227,52.34644197617645],[4.779996898511867,52.34642233831107],[4.780046067016955,52.346402709487634],[4.780095250276347,52.34638307173173],[4.780144418817434,52.346363433879965],[4.780155914050005,52.34635884613509],[4.780193471391319,52.34634368755903],[4.780242480511618,52.34632389605585],[4.780291504263055,52.346304104607505],[4.780340513173139,52.346284322050614],[4.780389507364784,52.34626453939803],[4.780438516310432,52.34624474781308],[4.78048752508957,52.34622496519488],[4.780536533947891,52.34620517356901],[4.780585557314489,52.34618539098513],[4.780621240228579,52.3461709866316],[4.78063452242963,52.34616557213116],[4.780683357270314,52.34614561777185],[4.780732206619084,52.34612567245467],[4.780781041126467,52.346105736029195],[4.780829875712787,52.3460857905962],[4.780878710378018,52.34606583615572],[4.780927559551349,52.346045890757274],[4.780951733239764,52.34603602012533],[4.780959496575379,52.3460328062992],[4.780967393332494,52.34602949428988],[4.780976393760613,52.34602596323779],[4.781007747886981,52.34601364873429],[4.781025416733576,52.34600618047034],[4.781032790909105,52.34599599907734],[4.781038254636746,52.34597418663367],[4.781192863844764,52.34591288150682],[4.781294904908339,52.345871961089],[4.781320630132651,52.345870978302194],[4.781404076138349,52.34586559933963],[4.781472315614234,52.345863629766505],[4.781565285240639,52.34586046550147],[4.781652536575291,52.345848311037564],[4.781720950214761,52.34583357050522],[4.781795152445607,52.34581190296457],[4.78186367677708,52.345789037917456],[4.781913209673685,52.34576840354795],[4.781953244518969,52.34575120786137],[4.782000962330038,52.34572591746415],[4.782077294585871,52.345686851212136],[4.782183674050964,52.3456473183639],[4.782208237577919,52.34563788088502],[4.782258028386233,52.34561875764567],[4.782306193847197,52.345598286891196],[4.782354403777315,52.34557778039315],[4.782402628337489,52.34555727395027],[4.782450838056135,52.34553677639983],[4.782454897312657,52.34553505350354],[4.78249943953561,52.34551660439343],[4.782548069830345,52.345496468465726],[4.782596700080994,52.34547633251786],[4.78264531573543,52.34545618748771],[4.782693945897905,52.34543605149959],[4.782742576016291,52.34541591549132],[4.782772403562872,52.345403556773576],[4.782791002850134,52.345395616644],[4.782839168802418,52.345375073773255],[4.782860085421902,52.345366156805525],[4.782888132264048,52.345355236006135],[4.782937660401902,52.345335958347455],[4.782987203171263,52.34531668074284],[4.783036746019953,52.345297394130164],[4.783086303377792,52.345278116558674],[4.783099065411909,52.345273139531024],[4.783135411410048,52.34525842323286],[4.783184389040711,52.345238603391564],[4.783233351830939,52.34521879244217],[4.783282329496487,52.3451989635728],[4.783318852322385,52.34518418520607],[4.783331234479681,52.34517908038545],[4.783379907317699,52.34515899826119],[4.783428594908377,52.345138907204436],[4.783477282332783,52.345118825114724],[4.78352596971317,52.34509874300481],[4.783574642497342,52.34507865181264],[4.783623329789688,52.34505856966239],[4.783672017160205,52.34503847850469],[4.783720704364502,52.34501839631409],[4.783769391646953,52.34499830511605],[4.783785227174768,52.34499177081577],[4.783818238104565,52.344978376490566],[4.783867186017409,52.34495853824051],[4.783910969278248,52.34494077679479],[4.783916105026383,52.34493866387165],[4.783964820993257,52.34491860869104],[4.784013551346251,52.344898571539474],[4.784062267225168,52.344878516318445],[4.784110982937997,52.34485847006442],[4.784123409058584,52.344853356397444],[4.784143751601103,52.34484777076327],[4.784162360468646,52.344841250544995],[4.784213320949789,52.34482339973023],[4.784264266715681,52.344805548818655],[4.784315227114959,52.34478769795979],[4.784366172554892,52.34476986497848],[4.784417132994366,52.344752005088246],[4.784468078596555,52.344734154088385],[4.784519038832111,52.344716303141205],[4.784569984352444,52.34469845209722],[4.784620944506133,52.34468060110589],[4.784671889944613,52.344662750017804],[4.784716937092364,52.344646972032486],[4.784723153052964,52.34464527801393],[4.784745866275784,52.344639093173],[4.784771264318337,52.344630800866774],[4.784775701761742,52.3446293134999],[4.784787509875775,52.34462539199892],[4.784803697585949,52.344619919919595],[4.784819812652604,52.34461439354131],[4.784827037674182,52.344611877773104],[4.784847665739991,52.34460470262572],[4.784860996020719,52.344599997935944],[4.784874253781004,52.34459522996075],[4.784877881816669,52.34459390923923],[4.784887468369305,52.34459039884954],[4.784900610315147,52.344585513440194],[4.784913694536627,52.34458055583294],[4.784926720789829,52.344575544002275],[4.784927886395807,52.34457508256704],[4.784942553436168,52.34456919827747],[4.784953798246998,52.34456460879387],[4.78496497053781,52.344559956025314],[4.784976085104738,52.34455523105936],[4.784976586955048,52.3445550179052],[4.784987127029669,52.3445504517957],[4.784998096312581,52.34454561823442],[4.785008993075375,52.34454072138827],[4.785019831870351,52.344535770319155],[4.785023996581388,52.34453383216374],[4.78503059802325,52.344530764952516],[4.785041291655975,52.34452569630099],[4.785059690171836,52.34451627180262],[4.785070143280539,52.3445116243528],[4.78511765443837,52.344490519980965],[4.785165180225256,52.34446941566456],[4.785212691414655,52.34444830226707],[4.785250088824536,52.34443170322565],[4.785259621562601,52.34442674549147],[4.785267883299704,52.3444224463913],[4.785304765871674,52.34440376852526],[4.785350011756639,52.344380872948875],[4.785395272269112,52.34435797742968],[4.785440518304408,52.344335063843886],[4.785485764049358,52.34431216821513],[4.785531009747642,52.34428927256886],[4.785576255642875,52.34426635893066],[4.785607537482264,52.34425052860367],[4.785622705681934,52.34424446702113],[4.785671869291293,52.34422483584388],[4.785721047653095,52.34420519573344],[4.785770211297306,52.344185555527844],[4.785819374898049,52.34416591530165],[4.785868553129426,52.34414627512947],[4.785917701969129,52.34412663478759],[4.785966865317747,52.34410700348689],[4.786016043418714,52.344087363252974],[4.786065206802125,52.34406772292391],[4.786114384816138,52.34404808264883],[4.786163547990924,52.344028451265835],[4.786212711243936,52.34400881087508],[4.786261874453483,52.34398917046375],[4.786311037497907,52.343969539019014],[4.786360200620527,52.343949898566585],[4.786392794018034,52.34393687889477],[4.786406253986637,52.34392798636094],[4.786446174465137,52.34390163896786],[4.786486109691861,52.343875282648334],[4.786493024725154,52.34387071597994],[4.786533586986334,52.343854411221784],[4.786567465291877,52.343840777863484],[4.786583877917975,52.343835998746016],[4.786607023674714,52.34382924951109],[4.786636382073614,52.34381995229216],[4.786658990347411,52.343812795867116],[4.786687108158776,52.343801910482036],[4.786704943721288,52.34379499946464],[4.786736068046713,52.343782080098265],[4.786784650865095,52.343761915231454],[4.786833248191798,52.34374175940627],[4.786839830219812,52.343739024545705],[4.78688143958639,52.34372123300089],[4.786929572848244,52.343700661341984],[4.786977720739467,52.343680089737745],[4.787012127066803,52.34366537140322],[4.787025897326448,52.34365956319869],[4.787074248133703,52.34363917234106],[4.787122598775084,52.34361879045068],[4.787170934941125,52.34359839049159],[4.787219270819836,52.343578008487015],[4.787267636123475,52.34355761762412],[4.787315971913451,52.34353723557975],[4.78736432245441,52.34351684460267],[4.787412658277091,52.34349645353128],[4.787454691879805,52.343478726850606],[4.787461095679824,52.3434761438455],[4.787510170918781,52.34345641259329],[4.787559231440275,52.34343668124621],[4.787608291796801,52.343416958865866],[4.78765735235253,52.34339721849064],[4.787706427417144,52.34337748715646],[4.787724044970246,52.34337039512499],[4.787755502195452,52.34335777377617],[4.787804606035195,52.34333807849854],[4.78785371007408,52.34331836522587],[4.787885314691914,52.34330569066217],[4.787903002038588,52.34329885960473],[4.78795265643789,52.343279679360265],[4.788002310673014,52.343260508082075],[4.788004774180311,52.343259558857575],[4.788050689217595,52.343240170894305],[4.78808991829011,52.343223616183394],[4.788099082634259,52.343219815786455],[4.788147707876615,52.34319967754032],[4.788196333074887,52.34317953927411],[4.788244958107813,52.34315940997493],[4.7882935978917,52.34313927174266],[4.788342208283951,52.34311913334177],[4.788370099313727,52.343107590299],[4.78839092013618,52.34309908531264],[4.788410678499824,52.343091015350446],[4.788411165522123,52.34309081109462],[4.78843976279606,52.343079127803705],[4.78848860492722,52.3430592062233],[4.788537447378176,52.34303925766092],[4.788586274990339,52.34301931799128],[4.788635117232407,52.342999378375545],[4.788655731309459,52.342990962175364],[4.788684191423322,52.34297964663291],[4.788703784271162,52.34297187238327],[4.788733439232071,52.3429600955046],[4.788782672566065,52.34294052630702],[4.788831935082961,52.342920966224376],[4.788881168330215,52.34290139698557],[4.788905305438272,52.34289180317256],[4.788931501837078,52.34288293879179],[4.788958862897105,52.342873675840444],[4.78898430550568,52.34286738714479],[4.788989562057442,52.342866074529844],[4.788991741150787,52.34286553728739],[4.789033130185351,52.34284763602099],[4.789033882902676,52.342847316263764],[4.789076133765603,52.34282317279638],[4.789085302764286,52.342817925306136],[4.78912245008148,52.342801162000356],[4.789153366705097,52.34278721633813],[4.789170276551781,52.34278033622358],[4.789219161805723,52.34276043253632],[4.789268061447408,52.34274054687729],[4.78931694661376,52.34272064314933],[4.789365831615277,52.342700748388225],[4.789398456072485,52.342687467401355],[4.789414513562646,52.34268067282471],[4.789462789687096,52.34266021770255],[4.789511051093468,52.34263976248641],[4.789523123563176,52.34263466444398],[4.789559863276977,52.34261981335072],[4.789608864237762,52.34260000895349],[4.789657850360298,52.342580213448954],[4.789706865786359,52.34256041807219],[4.789755851942529,52.342540613539605],[4.789775195442171,52.342532801903054],[4.789807065857278,52.342523193019986],[4.789812340766753,52.34252160183857],[4.78985861420075,52.34250599886213],[4.789910017703412,52.34248866014554],[4.789961435960439,52.34247131249335],[4.78997530761861,52.34246663692526],[4.7900108415139,52.342451950375846],[4.790059479360133,52.34243183837408],[4.790108131835871,52.34241172642622],[4.790112986749107,52.3424097196721],[4.790156798941091,52.34239161453218],[4.790205451207863,52.34237151153122],[4.790254088877933,52.34235139944884],[4.790302755850989,52.342331287494325],[4.790328196178111,52.34232076523108],[4.790351350137429,52.3423111212263],[4.790399857063665,52.342290900570845],[4.790448393534353,52.342270662068934],[4.790496915045728,52.342250441447355],[4.790545436633725,52.34223021181854],[4.790593958177532,52.342209982169685],[4.790613467142019,52.3422018476689],[4.790619167334714,52.34219918005593],[4.790626227268649,52.34219579128313],[4.790633214317253,52.34219236619116],[4.790640128722063,52.3421888868056],[4.790640941439008,52.342188468474504],[4.790646955688842,52.342185362039686],[4.790653695338355,52.34218178290626],[4.790660421158683,52.34217814078791],[4.790667044746732,52.342174462202564],[4.790673581017496,52.342170729249645],[4.790680074112117,52.342166933163966],[4.790684423251196,52.34216433962802],[4.790686479527161,52.34216310967243],[4.790692768157236,52.34215924065278],[4.790699028284615,52.34215530857429],[4.790705186300484,52.34215133104161],[4.790711271431007,52.342147317189905],[4.790716928615195,52.34214348093752],[4.790724441353246,52.342138063191456],[4.790740089146164,52.342126781443056],[4.79076243477191,52.34211066204596],[4.790766317248426,52.3421078504471],[4.790773353967653,52.34210400316916],[4.790778304826851,52.342101403674604],[4.790783342880909,52.3420988675341],[4.790788467767608,52.34209642170928],[4.790793665296487,52.342094030177364],[4.790798964814424,52.342091693086196],[4.790804380632654,52.34208943747137],[4.790807847724809,52.34208805284279],[4.790809795242969,52.342087271728516],[4.790815326515812,52.342085160500346],[4.790820974330457,52.34208311277401],[4.790826606022357,52.34208117282016],[4.790832354497559,52.34207927839369],[4.790834343862036,52.34207865927085],[4.790838204478987,52.34207747435681],[4.790844053373375,52.34207575120461],[4.790849974668637,52.34207410031964],[4.79085596836479,52.342072521701866],[4.790859884776926,52.34207155277622],[4.790862019667705,52.34207102426455],[4.790868128456683,52.3420696169949],[4.790874280299776,52.34206828184454],[4.790880460282136,52.34206703671399],[4.790886653730372,52.34206588152923],[4.790892978394096,52.342064789920165],[4.790899257709331,52.3420637969484],[4.790905550731977,52.342062875948024],[4.790911945381908,52.34206203634989],[4.790914061614593,52.34206180434165],[4.790916177967969,52.34206156334619],[4.790918382603307,52.34206130481984],[4.790924833652931,52.342060636273956],[4.790931298168674,52.34206005767385],[4.790937687989308,52.34205957756317],[4.790944164884684,52.342059169793544],[4.790950757960272,52.34205885248723],[4.790957173747598,52.34205862416558],[4.790963250839035,52.34205848401543],[4.790974513149521,52.342059053064666],[4.791033009719299,52.3420620081684],[4.791046618452304,52.3420626878976],[4.791091491623553,52.34206496316932],[4.791150003003236,52.34206790930193],[4.791208499596717,52.342070864318934],[4.791266996198105,52.34207381930701],[4.791288992953567,52.342074927724894],[4.791317536671064,52.342088993604975],[4.791363282644999,52.34211152274977],[4.791409014233179,52.342134033828486],[4.791454760179416,52.34215657192504],[4.791467851317021,52.3421630191868],[4.791488624768345,52.3421853057244],[4.791498649971294,52.3421960517074],[4.791517819298345,52.34221649664745],[4.791530072998608,52.34222958169305],[4.791547190795302,52.34224762553888],[4.791576665650805,52.34227871000375],[4.791606140547539,52.3423097944612],[4.791635630279591,52.34234086999774],[4.791665105017659,52.34237197241466],[4.791694594832195,52.34240304793626],[4.791708543740727,52.34241775930234],[4.791724069773315,52.34243414135102],[4.791753559549782,52.34246522584487],[4.791783019899818,52.34249631917084],[4.791812495085192,52.34252740357594],[4.79182551797969,52.342541139583126],[4.791827360856304,52.34254050173097],[4.791842344173198,52.342556872045165],[4.791847203629696,52.342562181335865],[4.791845905965467,52.34256265116247],[4.791869621895078,52.342587684733175],[4.791899097201613,52.34261876911631],[4.791928587223002,52.342649853565796],[4.791958062370998,52.34268095590845],[4.791987537801249,52.34271204026913],[4.792016998599077,52.34274312454862],[4.792046473991288,52.34277421788161],[4.792075949424743,52.34280531120713],[4.792102574302405,52.34283339724374],[4.79210499300178,52.342835782193156],[4.792105528217616,52.342836360105586],[4.792134885862156,52.34286748877478],[4.792138517639453,52.342871335851505],[4.792164331951447,52.342898590917564],[4.792193807670301,52.34292967522598],[4.792223268636207,52.342960768440385],[4.792226220520239,52.342963884081975],[4.792243266356865,52.342981864545905],[4.792252729763782,52.342991852660084],[4.792282205365433,52.34302295492058],[4.792311666455015,52.34305404811256],[4.792341127706252,52.34308513230987],[4.792370588878276,52.34311622548696],[4.792400079439099,52.34314731880406],[4.792429540693588,52.3431784119662],[4.7924590019893,52.34320950512089],[4.792462561657604,52.343213261946545],[4.792486639949966,52.34323868368553],[4.792488463205835,52.343240607255304],[4.792517924704394,52.34327169140782],[4.792547400797616,52.343302784613805],[4.792576862378615,52.34333386875138],[4.79260632376007,52.34336497085598],[4.792620374544876,52.34337979047535],[4.792635814771246,52.34339605512604],[4.792651456952518,52.343412581436205],[4.792665261681666,52.34342714815472],[4.792694723307182,52.343458241249664],[4.792724184973919,52.34348933433714],[4.792753646681881,52.34352042741715],[4.792783108431068,52.343551520489676],[4.792785944686972,52.34355450970628],[4.792802295292288,52.34357183947048],[4.792812496370469,52.343582649135136],[4.792841884471366,52.34361376878595],[4.792871257939466,52.34364488835561],[4.792883629583051,52.34365799182249],[4.792880266714472,52.343659260193355],[4.792908121250144,52.34368874532875],[4.792913735461728,52.34369469649942],[4.792917541055398,52.343698724180506],[4.792931296578388,52.34369944037924],[4.792931818224205,52.34369993732916],[4.793022229917028,52.34366710039544],[4.793051012422529,52.34365686396423],[4.793053574348619,52.3436595192474],[4.793054862528472,52.34366085591306],[4.793075928324628,52.34365263894573],[4.793087086543048,52.343663210720145],[4.793083599791518,52.343669349876606],[4.793082593181133,52.34367109744919],[4.793110992960773,52.34370042349266],[4.793115552478605,52.34370513802689],[4.793148757371316,52.34368244866976],[4.793161642304374,52.34367365135153],[4.79320035690141,52.34366910909396],[4.793227078057457,52.3436659626561],[4.793211305671599,52.34364927398954],[4.793195374529819,52.343632386791754],[4.79317954566282,52.34362979074869],[4.793174867790312,52.34362405101065],[4.793171460540922,52.343619863556455],[4.793192475900521,52.34361212267008],[4.793215433624482,52.3436039870769],[4.793266244241456,52.34358598781891],[4.793317054937511,52.34356797955172],[4.793367850798238,52.34354998017617],[4.793390012219264,52.34354212816392],[4.793418429875024,52.34353172803206],[4.793440860216826,52.34352351784659],[4.793468936261924,52.34351342157478],[4.793478639054913,52.34350992905026],[4.793458166091616,52.343483707713325],[4.793432845428822,52.34345127842561],[4.793407539597053,52.34341884021869],[4.793382204334244,52.343386410846165],[4.793356883902471,52.34335397255451],[4.793331563387408,52.3433215432445],[4.793306272256951,52.34328911407619],[4.793301005882245,52.343282391716194],[4.793296661681024,52.343276941267455],[4.793292406004808,52.343271455311545],[4.793288268080992,52.34326594298288],[4.793284233355949,52.343260395220675],[4.793281497152099,52.343256507735326],[4.793280316263002,52.34325483007308],[4.793276502368765,52.34324922949193],[4.79327261907435,52.34324333196408],[4.793269140275083,52.343237912820975],[4.793265779468424,52.343232449330785],[4.793262521619792,52.34322696838162],[4.793260256064175,52.343223002367345],[4.793259366729152,52.34322146997336],[4.793256344384589,52.34321593627895],[4.79325341032413,52.343210385051904],[4.793251966146611,52.34320754663829],[4.793248301996739,52.34319952908226],[4.793244740925557,52.343191485079984],[4.793243503144433,52.3431885757995],[4.793241312040127,52.34318343275319],[4.793236121203972,52.3431710664139],[4.793232767734887,52.3431628616723],[4.793229192232866,52.34315370310647],[4.79322835557969,52.343151523853074],[4.793226535532466,52.343146068094924],[4.793224818322454,52.343140603865],[4.793223233297186,52.3431351313107],[4.793221751229301,52.343129641297445],[4.793220081646348,52.34312281115682],[4.793219232238369,52.34311829500429],[4.793212519491657,52.343082579638],[4.793210587940147,52.343072296856676],[4.793209678876995,52.34306785230719],[4.793208652303673,52.34306341615575],[4.793207522893973,52.34305898847593],[4.793206261180153,52.34305457810772],[4.793204896630025,52.34305017621111],[4.79320385262063,52.34304704320704],[4.793203429243614,52.34304578278615],[4.793201829432934,52.34304141565998],[4.79320011211228,52.34303705693179],[4.79319737808909,52.34303081464446],[4.793195152479317,52.343026057900445],[4.793192809119262,52.34302132752887],[4.793190362802963,52.34301661461607],[4.793188100150652,52.34301243290695],[4.793187813530448,52.34301191916213],[4.793182978274735,52.34300368900533],[4.793179402561368,52.34299783795706],[4.79317569430425,52.34299202219464],[4.793171897765161,52.34298622396461],[4.793166932858577,52.34297890991469],[4.793165580105537,52.3429769168145],[4.793161030396595,52.3429703778016],[4.793156406839289,52.34296387436914],[4.79315166553272,52.34295739730891],[4.79314680635667,52.342950955608075],[4.793143056372797,52.342946065381284],[4.793142464852561,52.34294530743447],[4.793137976973144,52.34293963156242],[4.793133385897764,52.342933991123495],[4.793127042636116,52.342926598249896],[4.793121246393865,52.3429199990508],[4.793116561988386,52.342914753607076],[4.793116026998972,52.34291415772475],[4.793110054194357,52.342907593590056],[4.793103428651936,52.34290045994503],[4.793096714468026,52.34289337079377],[4.793089911762928,52.34288631714904],[4.793086668514269,52.34288303828547],[4.793082976515565,52.34287929878975],[4.793075952747079,52.34287231593698],[4.793056764618113,52.34285210484468],[4.793027273671603,52.34282102067627],[4.79299778288664,52.34278992751313],[4.792968291902342,52.34275885231698],[4.792938801079588,52.342727768126124],[4.792934083759353,52.34272279214435],[4.792932519337418,52.34272126534546],[4.79293088106611,52.34271977412703],[4.792929139477833,52.34271832732887],[4.79292730924624,52.342716925024675],[4.792925375697687,52.34271556714078],[4.79292335350582,52.34271425375085],[4.792921257223981,52.3427129939158],[4.792919086852165,52.3427117876356],[4.792916827716725,52.34271063483661],[4.792914494370995,52.34270954457966],[4.79291210172924,52.342708498964065],[4.792909634756872,52.34270752487777],[4.792907108368154,52.342706604419966],[4.792904522442768,52.342705746577934],[4.792901891534036,52.3427049604126],[4.792899201088617,52.34270423686296],[4.792897065594761,52.342703713832464],[4.792896465780148,52.3427035760028],[4.792893685608619,52.34270297783205],[4.792890875007027,52.342702460398876],[4.792888034215992,52.342702005728825],[4.792885163235508,52.34270161382188],[4.792882276498561,52.34270130272617],[4.792879359572139,52.342701054393615],[4.792876441562868,52.342700886945934],[4.792873522711377,52.34270078240879],[4.792870602777009,52.342700758756585],[4.79286763797947,52.34270079779382],[4.792864701446309,52.342700917863354],[4.792861778744511,52.34270110091706],[4.792858869633421,52.342701364929454],[4.792855989027313,52.342701691999686],[4.792853122132205,52.34270209104137],[4.792850283621731,52.34270256212813],[4.792847473616197,52.34270309627277],[4.79284472134256,52.34270370260996],[4.792841997453515,52.34270438099227],[4.792839950236548,52.342704936943434],[4.792839316863351,52.34270511351894],[4.792836679331407,52.34270591816442],[4.7928353526871,52.34270636089279],[4.792788923601935,52.34272269226218],[4.792738027184223,52.34274058303052],[4.792713492999296,52.34274921393023],[4.792698227126623,52.342733093968064],[4.792668780651622,52.342702000943945],[4.792639319544191,52.342670907838695],[4.792609858477982,52.34263981472594],[4.792580412246983,52.34260871269226],[4.792550951263215,52.34257761956458],[4.792521490320667,52.342546526429466],[4.792519233024055,52.34254414229946],[4.792492206345075,52.34251537126117],[4.792462922410538,52.34248421608555],[4.792433638517056,52.34245306090248],[4.792404354785042,52.34242189672487],[4.792403761718997,52.342421255608166],[4.792374982450764,52.34239077703344],[4.792345610278047,52.34235964834734],[4.792316238026039,52.3423285286411],[4.792286851141658,52.34229740885364],[4.792257479092369,52.34226628014529],[4.792228092410735,52.34223515135576],[4.792198720323288,52.34220403161979],[4.792169348397434,52.34217290288919],[4.792139976392256,52.34214178313837],[4.792110589754764,52.34211066330637],[4.792081217831858,52.34207954354073],[4.79205184607057,52.34204841478041],[4.792022459556519,52.34201729492613],[4.79199308787752,52.341986166151],[4.791963701445769,52.34195504628184],[4.791934329728551,52.34192392647907],[4.791904943499607,52.34189279760781],[4.791875586538029,52.34186167786404],[4.791846200270858,52.34183055796519],[4.791839848461887,52.341823830076095],[4.791835033227326,52.34181851201866],[4.791866406593679,52.34180759684682],[4.791917447215518,52.341789841995535],[4.791919319526765,52.341789195302205],[4.791968502349411,52.34177209618309],[4.791994627123056,52.34176300607056],[4.792007946543477,52.34175789607158],[4.792009304803617,52.341757282742705],[4.792010295266596,52.3417567394666],[4.792011198292045,52.34175615081157],[4.792011999327126,52.3417555077166],[4.792012712804188,52.34175482822993],[4.792013338723232,52.34175411235155],[4.792013847737609,52.341753359933904],[4.792014239606341,52.341752588951415],[4.792014529002758,52.34175179947784],[4.792014607670995,52.341751404408974],[4.792014686580216,52.34175099136565],[4.792014741444389,52.34175018273684],[4.792014678921956,52.341749373517665],[4.792014498892436,52.34174857269533],[4.792014201355832,52.341747780269785],[4.792013786071172,52.341747014215514],[4.792013267832271,52.34174626561911],[4.791988090025724,52.34171975071475],[4.791958541643758,52.34168868395449],[4.791943695065807,52.34167307830468],[4.791940253794418,52.3416692591424],[4.791936930392027,52.34166540462164],[4.791933695512018,52.3416615145947],[4.791930578380455,52.34165759819647],[4.791930275664117,52.341657192221376],[4.79192756444453,52.341653646365906],[4.791924653704218,52.3416496591031],[4.791921845918484,52.341645654382404],[4.791919156001611,52.34164161430327],[4.791916569039263,52.341637556766244],[4.791914085272438,52.341633463796974],[4.791911719253889,52.34162934445647],[4.791909470863072,52.341625207731965],[4.791908726893213,52.341623783912276],[4.791907325426676,52.341621053549645],[4.791905297738468,52.34161687299612],[4.791903373125138,52.34161266599757],[4.791901566018915,52.34160845060229],[4.791899876540275,52.341604217823],[4.791898304809703,52.34159995867256],[4.791896835912866,52.34159569105156],[4.791895499316793,52.341591406120386],[4.791894770050752,52.34158888585922],[4.791894265554392,52.34158711271867],[4.791893149419415,52.34158280193303],[4.791892150791322,52.341578482750656],[4.79189126967007,52.341574155171564],[4.791890491382363,52.34156981912193],[4.791889845274699,52.34156547474941],[4.791889316553263,52.34156113096735],[4.791888905459051,52.34155676980141],[4.791888645647441,52.34155316437428],[4.79188859695722,52.34155241813935],[4.79188842063529,52.34154805815444],[4.791888361819965,52.34154368977282],[4.791888405596924,52.34153933089508],[4.791888581433159,52.3415349726817],[4.791888980290193,52.34152930336693],[4.791891650817881,52.341520562653926],[4.791892763663254,52.34151745846266],[4.791893525887673,52.34151533218116],[4.791895503549226,52.34151011121228],[4.791897598355239,52.341504908808275],[4.791899810305669,52.341499724969225],[4.791902139279967,52.34149456868229],[4.791904570845882,52.34148942189923],[4.791907134229345,52.34148429375488],[4.791907947432697,52.34148274295087],[4.791909785290095,52.34147919301499],[4.791912568168315,52.341474110913786],[4.791915453396995,52.3414690562909],[4.791918441096609,52.341464020159044],[4.791921545819849,52.341459011579275],[4.791924767566683,52.34145403055157],[4.791928121492328,52.341449041200796],[4.791931518111318,52.34144415093088],[4.791935061582286,52.341439252411696],[4.791938707403503,52.34143438137075],[4.791942470127654,52.34142954686904],[4.791946320649282,52.341424730784496],[4.791950287953287,52.34141996022639],[4.791953239643501,52.3414165147586],[4.791954357607437,52.3414152171465],[4.791958529491199,52.341410510531986],[4.791964768785975,52.3414037381273],[4.791984492187091,52.34138613130599],[4.792017701136374,52.34135648569915],[4.792050909920768,52.34132684906998],[4.792084118781245,52.34129720344399],[4.792117327476847,52.341267566795686],[4.792150536248521,52.3412379211506],[4.792183744975787,52.34120827549592],[4.792209230640282,52.34118552960722],[4.792212675520347,52.34118250904064],[4.792216207836526,52.34117953385282],[4.792217201656603,52.34117873893256],[4.792219842261951,52.34117660411736],[4.792223549570784,52.341173710699586],[4.792227373541533,52.341170871795214],[4.79223127039568,52.34116806920849],[4.792235254565464,52.34116532098762],[4.79223934084446,52.34116261821914],[4.792243499886398,52.34115996075549],[4.792247746243966,52.34115735765764],[4.792252079917169,52.34115480892563],[4.792256575114725,52.341152252017686],[4.792260979984655,52.341149865424285],[4.792265546378944,52.34114747065488],[4.79227018541575,52.34114513017754],[4.792274911647763,52.34114285305319],[4.792279695849178,52.34114063014701],[4.792284552693128,52.34113846153286],[4.792289482059187,52.34113635619793],[4.792294469394674,52.34113430508116],[4.792301077998961,52.341131722844686],[4.792303644489905,52.341130738097426],[4.792329442534977,52.34112081040057],[4.792331818876253,52.341119779757676],[4.79233481618489,52.341118401710816],[4.792335731939358,52.341117956922595],[4.792336278457406,52.34111769003491],[4.792337726177179,52.34111696929798],[4.792340563526236,52.341115482592926],[4.792343328232056,52.341113941595644],[4.79234602029464,52.3411123463062],[4.792348624920444,52.341110705637945],[4.792350550006812,52.34110940309142],[4.792351127556783,52.34110901053002],[4.79235355730904,52.34110727910438],[4.792355899865367,52.34110548432548],[4.792358140311814,52.34110364409419],[4.792360292960241,52.34110178544583],[4.79236234361922,52.34109987235782],[4.792364292047916,52.341097922804536],[4.792366138366761,52.34109592779883],[4.792367897008034,52.34109390538885],[4.79236953862553,52.34109185542719],[4.792371078012781,52.34108976900025],[4.79237250037628,52.341087655021596],[4.792373820389147,52.341085513565005],[4.79237503805139,52.3410833446304],[4.792376138569505,52.3410811571313],[4.792377121943503,52.341078951067736],[4.792377547119839,52.34107788365294],[4.792377988173409,52.34107672643965],[4.792378751932334,52.341074483320845],[4.792379383753677,52.34107223055099],[4.792400249811421,52.34104488659469],[4.792425074527454,52.34101231363767],[4.792449928553119,52.34097974082266],[4.792474767748771,52.340947176915655],[4.792485656557293,52.34093288705962],[4.792487236928078,52.34093212204836],[4.792488729862432,52.34093131165853],[4.792490150153807,52.340930446976586],[4.792491483129144,52.34092952792886],[4.792504847806644,52.340916634639555],[4.792536319233929,52.34088628809203],[4.792567790618125,52.34085594153589],[4.792599261959237,52.34082559497115],[4.792630718584252,52.34079524832405],[4.792662204512204,52.34076490181582],[4.792693661051068,52.34073455515145],[4.792725132219847,52.34070420855227],[4.792743224021131,52.3406867641765],[4.792756618018514,52.34067386201809],[4.792788103653742,52.340643524462564],[4.792819589125556,52.34061319588564],[4.792851074794927,52.34058284932561],[4.792882560300881,52.3405525117442],[4.792914045763743,52.340522174154145],[4.792945545856425,52.340491836629184],[4.792977031353385,52.34046149003467],[4.792987734536305,52.340451180809424],[4.792992980466274,52.34044734238329],[4.792998313951561,52.34044354034788],[4.793003749424476,52.34043979275134],[4.793009257539228,52.34043609944625],[4.793013402275167,52.3404334059324],[4.793014882555065,52.34043244267926],[4.793020550746669,52.34042884904362],[4.793026321166455,52.340425291872286],[4.793032164107799,52.340421797979616],[4.793038094484149,52.34041834946485],[4.793044112295508,52.34041494632797],[4.79305020262843,52.340411606469665],[4.793055833650836,52.34040859685476],[4.793056365603208,52.34040832090281],[4.793062615892726,52.34040508970095],[4.793068938944382,52.340401903803325],[4.793075334517633,52.34039878118422],[4.793081802492225,52.34039573083098],[4.793088343469515,52.34039270780734],[4.793094942175288,52.34038975697582],[4.793101628075583,52.34038686949655],[4.793102233151262,52.34038661188715],[4.793108371944926,52.34038403623491],[4.793115173783329,52.340381257190884],[4.793122048143419,52.34037854142538],[4.793128980352341,52.3403758888647],[4.793135985082984,52.34037329958253],[4.793143047782751,52.340370764517914],[4.793150153538276,52.340368301571715],[4.793152069790205,52.34036765507955],[4.793157331935837,52.34036589291671],[4.793164568062072,52.340363556453745],[4.79317184748464,52.34036127413465],[4.793179184635931,52.34035906400754],[4.793186565083604,52.34035690802432],[4.793194003260045,52.34035482423308],[4.793201499165289,52.3403528126338],[4.793204841810171,52.340351939616994],[4.79320902369412,52.340350855104695],[4.79321660595181,52.340348969767525],[4.793224216592653,52.34034715647504],[4.793231885202894,52.340345397400014],[4.793239582076111,52.34034371935678],[4.793242171834526,52.34034318409762],[4.793243466773829,52.34034291197442],[4.793247322125682,52.34034210444462],[4.793255105351631,52.340340552663534],[4.793259945347859,52.340339633233505],[4.793262916960895,52.34033907292697],[4.793270771626371,52.34033766530871],[4.793278125370169,52.34033640796891],[4.793316038439993,52.34032903947875],[4.793371973830588,52.34031816628326],[4.793399573672563,52.34031280422635],[4.793403854892331,52.34031197186495],[4.793409295748124,52.34031110937085],[4.793417281498099,52.3403097743033],[4.793425253536348,52.340308367263724],[4.793428180886264,52.34030782470658],[4.793433167724078,52.340306897018515],[4.793441068200011,52.34030535480133],[4.793448925498215,52.34030374945216],[4.793456739859049,52.34030206299655],[4.793462406093836,52.34030080616624],[4.793463465784201,52.34030056881165],[4.793464510801703,52.34030033138337],[4.793472253479774,52.34029851873744],[4.793479938307147,52.34029664288593],[4.793483442584052,52.34029575269654],[4.793487594749676,52.340294694988835],[4.793495178668604,52.34029268381259],[4.793502748755293,52.340290609651625],[4.793510261111359,52.34028846329787],[4.79351771561659,52.34028625373864],[4.793525112270965,52.340283980973815],[4.793532465747305,52.34028164507715],[4.793536445201309,52.340280334841964],[4.793539761372741,52.34027924597496],[4.793547013820092,52.34027678374088],[4.793554193743655,52.34027425822773],[4.79356131581625,52.34027166950912],[4.793568379917686,52.340269026572294],[4.793575371615447,52.34026631136912],[4.793582319894687,52.34026355100864],[4.793586643309899,52.34026175715431],[4.793589181217545,52.340260709321086],[4.793595999121848,52.34025782247612],[4.793602729829406,52.34025487227856],[4.793609402565711,52.34025186786281],[4.793616002778083,52.34024880016815],[4.793622530346345,52.340245678181674],[4.79362898527049,52.34024250190351],[4.793633565209198,52.340240179052124],[4.793635367430352,52.340239280320844],[4.793638751419536,52.340237508715994],[4.79364167730655,52.34023597748478],[4.793647899625469,52.34023263825787],[4.79365404930024,52.34022924473933],[4.793660126451015,52.340225787941854],[4.793666116164656,52.34022228576634],[4.793672033113986,52.34021873828643],[4.793676708894615,52.34021583170497],[4.793677848193661,52.34021512738047],[4.793683590509028,52.34021147117009],[4.793689274732902,52.34020776972895],[4.793694827621341,52.340204013701864],[4.793700307745477,52.340200212370384],[4.793705700432496,52.34019636566096],[4.793711005682405,52.34019247357363],[4.793715660281686,52.340188955711824],[4.793716223615352,52.34018852712113],[4.79372135399106,52.34018454427798],[4.793726382256871,52.34018051598337],[4.79375032592848,52.34015995506053],[4.793755729057831,52.34015532645983],[4.793756444644809,52.34015448519224],[4.793781357705156,52.34012946217204],[4.793811922552738,52.340098769201674],[4.793842472565104,52.340068085136814],[4.793861599630376,52.3400488841662],[4.793873037328051,52.340037392150144],[4.793903602168775,52.34000669016809],[4.793934166847063,52.33997599716514],[4.793964716810293,52.33994530408049],[4.793995281403943,52.33991461106124],[4.794025845955263,52.33988391803387],[4.794056395671485,52.33985323391201],[4.794086960138174,52.33982254086834],[4.794117524562536,52.33979184781654],[4.794148074271902,52.339761154683],[4.794178653284285,52.33973046168841],[4.794209202909022,52.33969976853864],[4.794239752611484,52.33966906639346],[4.794270331376842,52.33963838236166],[4.794300880874643,52.33960768918745],[4.794331430330139,52.33957699600508],[4.794362023761138,52.33954630303513],[4.794392558459403,52.33951560976299],[4.79442312246055,52.33948491662971],[4.7944536717468,52.339454223414805],[4.794484250335869,52.3394235303387],[4.794514799417514,52.33939284609474],[4.794545348576837,52.33936215285539],[4.79457591236639,52.339331459681404],[4.794606476233577,52.339300757512],[4.794637025265962,52.339270064248254],[4.794660553957812,52.33924644519953],[4.794667793384004,52.33923944397625],[4.794699174345892,52.33920907842403],[4.794730570177137,52.33917869496222],[4.794761965725499,52.33914832946634],[4.794793361470694,52.33911794598739],[4.794824757052944,52.339087571487084],[4.794856152472264,52.33905720596544],[4.79488753341595,52.339026822387325],[4.794918943301785,52.33899646590921],[4.79491952331928,52.33899588460311],[4.794936597718172,52.33896219378467],[4.794953974290713,52.338927848364136],[4.794971350716382,52.33889351192802],[4.794988712442695,52.338859175415614],[4.794991756341253,52.338853186776326],[4.795016177263808,52.33882754985905],[4.795045776657996,52.33879650121117],[4.795075361218512,52.33876546146947],[4.795104945857447,52.33873441273283],[4.795134530574785,52.33870335500138],[4.795164115130819,52.33867230624948],[4.795193684853268,52.338641266403755],[4.795223283998721,52.33861021770995],[4.795252868550248,52.33857915994786],[4.795282452940497,52.33854811116533],[4.795312022497225,52.338517071289026],[4.795341621476853,52.33848602256461],[4.795371205742768,52.33845497375914],[4.795400790087034,52.33842391595879],[4.795430374150265,52.33839287612524],[4.795459958291847,52.33836182729682],[4.79548954239198,52.33833077846079],[4.795519126450667,52.33829972961709],[4.795548710587674,52.33826867177846],[4.795573368734556,52.338242802247905],[4.795575631479061,52.338240368870004],[4.795578074840155,52.338237594857375],[4.795607703030623,52.33820652823636],[4.79563733094007,52.338175479582134],[4.795666944016133,52.33814443983412],[4.795696542258853,52.33811340899234],[4.795726169924104,52.33808236930232],[4.79575576820364,52.338051329458],[4.795785381113823,52.338020289679314],[4.795799726253978,52.33800525282469],[4.795808736474101,52.3379875558706],[4.795818605381115,52.337968182482115],[4.795825438508611,52.337953099093966],[4.79583709470971,52.337927326310066],[4.795840001336456,52.337919512432066],[4.795840471612228,52.33791835535164],[4.795843069115483,52.337911717335025],[4.795846224566697,52.33790394963949],[4.795849482721219,52.3378961824571],[4.795852857891951,52.337888442822916],[4.795855080160195,52.33788353758288],[4.795856350198541,52.33788072174965],[4.795859959640929,52.33787301923732],[4.795863671547012,52.337865335212555],[4.795867500588787,52.337857669748665],[4.795871446646499,52.33785003183293],[4.795871943152692,52.33784910856715],[4.795875509839797,52.337842412478075],[4.795879675496579,52.33783481161075],[4.795883943497112,52.337827238218246],[4.795888343185414,52.33781969244712],[4.795891074538803,52.33781512230017],[4.795892830665026,52.337812165090156],[4.795897449832301,52.337804665354554],[4.795902141999078,52.33779719294706],[4.795906995197477,52.33778974830753],[4.795911921514978,52.33778232200884],[4.795912385563638,52.337781632264374],[4.795917398475207,52.33777431425215],[4.795939879598543,52.3377499167589],[4.795957477310556,52.33773082464756],[4.7959697986148,52.337719004292545],[4.795996269792927,52.33769357514756],[4.796001090174683,52.3376885930069],[4.796031038570495,52.337657671683935],[4.796043178791625,52.337645122401995],[4.796062519584139,52.337627351206784],[4.796088024846747,52.33760393049085],[4.796095256001945,52.33759751334763],[4.796128576023396,52.337567921066054],[4.796132422001689,52.33756448894824],[4.79616103514126,52.33753796496169],[4.796172712164894,52.33752713901711],[4.796192253441434,52.337507526295866],[4.796214649631738,52.33748507868608],[4.796223208800386,52.33747699643021],[4.796255171693938,52.33744683110145],[4.796259614576148,52.33744264698231],[4.796284549817662,52.337415736097256],[4.79628621711247,52.33741393786843],[4.796313811481872,52.33738456860148],[4.796343102329097,52.33735341023194],[4.796372378463269,52.33732225178168],[4.796374015689701,52.337320507328464],[4.796393971455733,52.337296196005475],[4.796400047228888,52.33729059096796],[4.796432520512568,52.337260643847365],[4.796464993752385,52.337230696717604],[4.796497466828772,52.33720075856593],[4.79652992530905,52.33717081134462],[4.796562413208664,52.33714085527342],[4.796566973644806,52.337136653753724],[4.79659243360421,52.337109979106216],[4.796605468767435,52.33709631075365],[4.796622687630728,52.33707918498787],[4.796649557090556,52.337052436472156],[4.796653671857289,52.337048646165336],[4.796685283908851,52.337019440667376],[4.796686057120441,52.33701867157216],[4.796716793036343,52.336988041615506],[4.796726324566033,52.33697854409728],[4.796744388466662,52.336956344403454],[4.796765286470766,52.3369306625802],[4.796770625361184,52.3369241910145],[4.796775218353576,52.33691864147391],[4.796801200122617,52.33689353326817],[4.796832621977596,52.33686316735093],[4.796845241260549,52.33685097090193],[4.796863240788697,52.33683250082041],[4.796883487035026,52.33681168713145],[4.796893888661868,52.33680185240259],[4.796921721222936,52.33677547713056],[4.796925616821177,52.33677161381825],[4.796948008445195,52.33674945365694],[4.796955709833166,52.3367407558963],[4.796961608825052,52.336734089383356],[4.796987452100395,52.336710553317026],[4.797008067488629,52.33669176371091],[4.797022605512414,52.336682021504316],[4.797053541643689,52.33665505949537],[4.797055925660473,52.336652321107394],[4.797070542518076,52.33663554181263],[4.79708207435808,52.33662014923335],[4.797092903842606,52.33660571484866],[4.79710991716312,52.33658857001096],[4.797123048862364,52.33657534248643],[4.797137731062985,52.336556954686515],[4.797151518264372,52.33653966792568],[4.797165296819534,52.33652523925192],[4.79718044438106,52.33650937036116],[4.79718894249058,52.33649260548109],[4.797206360242663,52.3364582689157],[4.797210594855663,52.336449868427124],[4.797234433781341,52.33642697842486],[4.797266001127506,52.33639665805646],[4.797297553520136,52.33636635558073],[4.797329120779977,52.33633603519498],[4.797360687757864,52.336305732775045],[4.797378730493375,52.33628839529736],[4.797395768564366,52.33627710162303],[4.797434610929725,52.3362513743041],[4.797435719530502,52.33625075966876],[4.797459562074001,52.33623752257524],[4.797474573666899,52.33622414259961],[4.797489333089779,52.33621096808562],[4.797507804184261,52.33619451353098],[4.797541093104479,52.336164902719666],[4.797567774998727,52.33614114600924],[4.797573856551863,52.33613508256034],[4.7975950302679,52.33611398575977],[4.79760381711471,52.33610418786137],[4.797619871872045,52.33608627420766],[4.797632916196267,52.3360729742882],[4.797663139807473,52.336042152787456],[4.797693363257334,52.33601134026596],[4.797705931488976,52.33599853229756],[4.797724214553829,52.33598075556033],[4.797734530395572,52.3359707225975],[4.797755401460809,52.33595030733598],[4.797786529997218,52.33591983184915],[4.797817673162236,52.33588935642694],[4.797848816284439,52.33585888099629],[4.797879944573169,52.33582841447134],[4.797895954508534,52.3358127565037],[4.797916393518156,52.33580056293249],[4.797958439844239,52.335775480546125],[4.797970596905233,52.335768215997305],[4.797998534119592,52.335751547855864],[4.798000296945547,52.33575028036079],[4.798038149072274,52.33572282224843],[4.798057689702568,52.335708664831415],[4.79807607427035,52.33569538246343],[4.79809508062732,52.335681680759905],[4.798114087091787,52.33566797006605],[4.798152041061756,52.33564056635132],[4.798160988857559,52.33563410370004],[4.798192238152868,52.335614396135966],[4.798233001178417,52.3355886960914],[4.798234860610608,52.33558788745337],[4.798276692822574,52.335564538540936],[4.798320062485233,52.33554031645718],[4.79836343198139,52.33551610334455],[4.798380504830987,52.335506571317666],[4.798406219823122,52.335491491856985],[4.798433960491515,52.335475236075474],[4.79845222555136,52.335469844375325],[4.798505032458565,52.33545423458779],[4.798549812847389,52.335430936197994],[4.798594519237328,52.33540768236233],[4.798597486504145,52.3354063129957],[4.798599362856884,52.33540533366723],[4.798601181358519,52.33540429113612],[4.798602897637916,52.335403212145124],[4.798643433898523,52.33538794571022],[4.798693451499016,52.33536912229507],[4.798716189479601,52.33536056211838],[4.798720163932439,52.3353595842347],[4.798724551561668,52.33535842864902],[4.798728910681978,52.335357210006535],[4.798733212070011,52.335355919174106],[4.798737455606643,52.3353545651389],[4.798741641172753,52.33535315688826],[4.798744913906789,52.33535198676948],[4.798745783677769,52.3353516765206],[4.798749853541016,52.33535014186458],[4.798753865552816,52.33534854400587],[4.798757805041935,52.33534688287146],[4.798761686560479,52.335345167521616],[4.798772874660953,52.335341250535116],[4.798789075270141,52.3353355249548],[4.798795090068053,52.33533337082025],[4.798805203471812,52.335329727109524],[4.798821273698958,52.33532387504676],[4.798845078081396,52.335314556181864],[4.798894515929239,52.33529518154124],[4.798936107458244,52.33527887766396],[4.798944011704386,52.33527586109502],[4.798993840468918,52.33525687483344],[4.799043669190876,52.33523788855073],[4.799093497989296,52.335218893259665],[4.799134640906759,52.33520321623176],[4.799140201577716,52.33520100589574],[4.79914319637089,52.335199771469824],[4.799145689606386,52.33519874127146],[4.799151134335113,52.335196422504694],[4.799156491869383,52.33519404038951],[4.79916177676134,52.33519160398603],[4.79916700380117,52.33518910437997],[4.799172158198665,52.33518655048572],[4.799177225282654,52.33518394223025],[4.799182219724297,52.33518127968659],[4.799189107784973,52.335177440158304],[4.799193867129452,52.335174803409394],[4.799198377182546,52.33517215643363],[4.79920281471236,52.33516944618245],[4.799207164690693,52.33516669954468],[4.79921144202673,52.33516389861881],[4.799215617378151,52.33516104325894],[4.799219719849255,52.33515815158541],[4.79922372033575,52.33515520547803],[4.799227633389791,52.33515221399682],[4.799228997417385,52.33515114223427],[4.799231458892373,52.33514918612909],[4.799235197081525,52.33514610390038],[4.799238833048074,52.33514298521222],[4.799242352239888,52.33513982100457],[4.799245783880283,52.33513662041041],[4.799249127969275,52.33513338342975],[4.799253354197105,52.33512890152287],[4.799256198870804,52.33512570699973],[4.799258941203046,52.33512248500447],[4.799260298649873,52.335120802036016],[4.799261581193845,52.335119235537135],[4.79926411896222,52.335115949610504],[4.79926653983704,52.33511262715163],[4.79926885825147,52.335109286207945],[4.799271045101245,52.33510590865915],[4.799273173504106,52.335102512844266],[4.799275155552206,52.335099089338605],[4.799277035259002,52.33509563836094],[4.799278797834375,52.3350921688256],[4.7992804289642,52.335088653697916],[4.799281107728912,52.33508725496785],[4.799298069455165,52.335052843924],[4.799299471352685,52.33505001972054],[4.799300389578853,52.33504715716267],[4.799301425411884,52.335044277213406],[4.799302578375784,52.335041415821784],[4.799303848470535,52.33503857298779],[4.799305235696111,52.3350357487114],[4.799306710591262,52.335032951834066],[4.799308317288326,52.33503017358726],[4.799310026445039,52.33502741382514],[4.799311852494526,52.33502469059507],[4.799313780884638,52.33502199483696],[4.799315811734352,52.33501931756358],[4.799316259245167,52.335018762541026],[4.799319092091866,52.335015352249485],[4.799321341341835,52.33501280189078],[4.799323692813386,52.335010287991224],[4.7993261318354,52.33500781047798],[4.799328687750089,52.33500536949673],[4.799331331096231,52.33500297388898],[4.799334076663921,52.33500061474041],[4.799336924334156,52.3349983010382],[4.79933985955481,52.33499602372224],[4.799342408091074,52.33499413994995],[4.799345458895284,52.334991998025636],[4.799348597130928,52.334989901474806],[4.799349514473391,52.33498932182279],[4.799351837469111,52.33498785037031],[4.79935515044863,52.33498585355363],[4.799358536069496,52.33498391102473],[4.799362009002809,52.33498202285652],[4.799365554696452,52.33498017998888],[4.799369172912469,52.334978400396274],[4.799372878440941,52.33497667516434],[4.799375107102829,52.33497567959817],[4.799395424495168,52.33496707131499],[4.799443702304266,52.334946612142595],[4.799491950726732,52.33492615280463],[4.799498236175974,52.33492349665983],[4.799540590704061,52.33490603692948],[4.799589259503761,52.334885957128826],[4.799637957482687,52.33486588644102],[4.799686640746558,52.33484581566014],[4.799735338637507,52.33482574493194],[4.799784021813418,52.334805674110704],[4.799832704945349,52.3347856032693],[4.799881388152174,52.334765523420465],[4.799930071196137,52.334745452538705],[4.799978768867144,52.334725381709546],[4.800027451941988,52.33470530180018],[4.800076134853998,52.33468523085784],[4.800124817722031,52.33466515989532],[4.800173500664901,52.33464507992542],[4.800222183444966,52.33462500892257],[4.800270880733239,52.33460494695956],[4.800319563544136,52.3345848669291],[4.800368260863229,52.33456479593846],[4.800416928796406,52.334544724782106],[4.800465611475328,52.33452464469109],[4.800514308662454,52.334504573639904],[4.800562991134648,52.33448450249578],[4.800611688352524,52.33446442241693],[4.800660356065817,52.33444435115971],[4.800709038406064,52.33442427995505],[4.800757735373252,52.33440420880294],[4.800806417744222,52.33438412857065],[4.800855099833844,52.33436406629272],[4.800903796669069,52.334343995080005],[4.800952464237179,52.33432391471448],[4.801001160984426,52.33430384346144],[4.801049843016804,52.3342837721155],[4.801098525123829,52.334263691762125],[4.801147221739103,52.334243620448525],[4.801195888968674,52.3342235489694],[4.801244585614575,52.33420346862813],[4.801293267427036,52.33418339718128],[4.801341949195518,52.3341633257143],[4.801390645590854,52.33414325429974],[4.801439327271374,52.33412318279235],[4.801487994237096,52.33410311119216],[4.801536690619015,52.334083030729836],[4.801585372167589,52.334062959161884],[4.801634068342987,52.33404288764641],[4.801682749922107,52.33402280705089],[4.801731416667946,52.33400273534986],[4.801780112711381,52.33398266377382],[4.801828794158524,52.333962583117746],[4.801877490113973,52.333942511501334],[4.801926171236214,52.33392244877943],[4.80197485255139,52.333902368062795],[4.80202353370413,52.33388229631329],[4.802072214812894,52.333862224543566],[4.802120895996098,52.33384214376645],[4.802169591569216,52.33382208101616],[4.802218272664436,52.333802000198645],[4.802266953715659,52.33378191936098],[4.802315634604508,52.33376184749039],[4.802364315449377,52.333741775599584],[4.802413011039322,52.33372169477389],[4.802461691796221,52.33370162284273],[4.802510387061484,52.33368155995116],[4.802559053178085,52.33366147891994],[4.80260773380305,52.333641406928244],[4.8026564290547,52.33362133498885],[4.802705109710003,52.33360125396955],[4.802753790203019,52.33358118191736],[4.802802470652057,52.33356110984493],[4.802851151057117,52.33354103775234],[4.802899846207088,52.33352095672479],[4.802948526524179,52.33350088459187],[4.802997206797292,52.33348081243878],[4.8030209421117,52.333471025028096],[4.803045887026427,52.33346074026545],[4.803094567211584,52.33344066807199],[4.803143262023358,52.33342059593077],[4.803191942238753,52.333400514709666],[4.803218332710741,52.33338963486049],[4.803236129741244,52.33338625339009],[4.803244013030445,52.33338478233945],[4.803253940730508,52.333382925912936],[4.803264794212889,52.3333809572125],[4.803268307218755,52.33338046224252],[4.803272820660566,52.33337975650157],[4.803277305588339,52.33337898770482],[4.803280305950786,52.333378427289816],[4.803284733732307,52.33337754136889],[4.80329823129404,52.33337198159081],[4.803346954807076,52.33335194545903],[4.803395678394335,52.333331900319756],[4.80341323242862,52.33332467981738],[4.803431848527063,52.333317024148215],[4.803444401819486,52.33331186414755],[4.8034931252007,52.333291827955094],[4.80353419282408,52.333274926685355],[4.803541848656105,52.333271782755226],[4.803552808880842,52.33326727099702],[4.803590557397016,52.33325173746273],[4.803639280646407,52.333231701209684],[4.80368798929943,52.33321165587681],[4.803688564520573,52.333211425029724],[4.803736712579031,52.333191610596046],[4.80378543557852,52.333171583269646],[4.803834158770227,52.33315153794845],[4.803882749175111,52.33313154587969],[4.80388911478007,52.33312833265171],[4.803895730018721,52.33312510267829],[4.803902432689134,52.333121918074745],[4.803909193096157,52.33311880565814],[4.803916011593964,52.33311573846669],[4.803922917287457,52.33311273461953],[4.803929718515823,52.333109865074555],[4.803930161109693,52.33310967851174],[4.803935192788177,52.33310749230703],[4.803940296874265,52.333105378361715],[4.803945458933566,52.333103318629],[4.803950678730005,52.33310133108335],[4.803955971406264,52.33309937984805],[4.803961321701643,52.333097509787045],[4.80396672997029,52.33309569393862],[4.803972195976133,52.33309395027723],[4.803979119199578,52.333091845296934],[4.803980163873312,52.3330916167624],[4.803985578548363,52.33309043009332],[4.80399208108195,52.333089078017025],[4.803998612129878,52.33308778899575],[4.804005171574137,52.333086572016796],[4.804011774085246,52.33308542715245],[4.804018419663232,52.33308435440271],[4.804028195247792,52.33308290161436],[4.804036430076605,52.33308146819509],[4.804092882603979,52.333071653069254],[4.804094911851212,52.33307130355601],[4.804114114929796,52.33306809066411],[4.804128025893813,52.33306566958409],[4.804141893670915,52.33306318537478],[4.804149320790019,52.333061810882356],[4.804155733049535,52.33306062912118],[4.804200618581605,52.33304455533906],[4.804211113987518,52.33304079620817],[4.804249456922881,52.3330246542202],[4.804297817229825,52.33300428335877],[4.804346177374465,52.33298392146471],[4.804391793555371,52.33296470546641],[4.804394522922289,52.33296355049117],[4.804442897648725,52.33294318862953],[4.804491243107891,52.33292281761618],[4.804539617745663,52.332902455714674],[4.804587962998256,52.33288209364877],[4.804636337665277,52.332861722720146],[4.804684682829234,52.3328413606144],[4.804733042737167,52.332820989573726],[4.804781402482888,52.33280062750041],[4.804829762302153,52.332780256419895],[4.804878121959222,52.33275989430672],[4.804926481689816,52.3327395231864],[4.804974841140398,52.332719170020646],[4.805023200782331,52.332698798860456],[4.805071545591754,52.33267843659541],[4.805119919815369,52.332658065467605],[4.805168264536153,52.332637703162746],[4.805177824278386,52.332633678696546],[4.805194612887298,52.332626606958975],[4.805216638671086,52.33261733199506],[4.805264983303236,52.33259696965039],[4.805313357231719,52.33257660743013],[4.805361701892992,52.33255623605838],[4.805410061062505,52.33253587372612],[4.805458420305434,52.332515502386684],[4.805506779386293,52.33249514001458],[4.80555513854055,52.33247476863533],[4.80560349753276,52.332454406223384],[4.805651856598347,52.332434034804315],[4.805700215501906,52.33241367235259],[4.805748574478824,52.33239330089363],[4.80578855387372,52.33237646539903],[4.805796933293734,52.33237293840203],[4.805845277511732,52.33235256683117],[4.80589365090824,52.33233220437186],[4.805941995037582,52.332311832761185],[4.805990368345427,52.332291470261964],[4.806038712268492,52.332271107598764],[4.806087085605293,52.33225073607246],[4.806093045537827,52.33224823077309],[4.806135429322125,52.33223038235666],[4.806183787900046,52.3322100107185],[4.806232146316055,52.332189648047645],[4.806280504805309,52.33216927636965],[4.806305805139567,52.33215862416571],[4.806328863132665,52.33214891365899],[4.806377221533251,52.332128541941124],[4.806402094035232,52.33211806737327],[4.806419615427584,52.33210429413277],[4.806453887221532,52.3320773640206],[4.806454775209882,52.33207565170208],[4.806472710886649,52.332041415181465],[4.806476592981363,52.33203400129336],[4.806485492872603,52.332006371422345],[4.806491532618153,52.33198766142381],[4.806493792232407,52.33198427511112],[4.806495949507995,52.33198086133262],[4.806497989774815,52.331977420016344],[4.806500250604095,52.33197169687175],[4.806504393402974,52.33196117447038],[4.806508723405921,52.33194979914302],[4.806512950950886,52.33193840533698],[4.806514028705455,52.331936765852],[4.806516514360625,52.33193292226849],[4.80652018010769,52.33192746666569],[4.80652394819205,52.33192203852845],[4.806527833283783,52.33191663792887],[4.806531820595231,52.33191127378214],[4.806535925031503,52.33190592818574],[4.806537566124138,52.33190384207325],[4.806540117017325,52.33190061897019],[4.806544425892878,52.33189534627947],[4.806548837105549,52.33189010105428],[4.806553350537793,52.33188489228196],[4.806557980977193,52.331879711047144],[4.806562698848508,52.33187457518037],[4.806565049391114,52.331872088096304],[4.806567519056836,52.33186946677918],[4.806572441484641,52.33186439483066],[4.806577480801987,52.33185935940691],[4.806582592881083,52.33185436927921],[4.806587821967184,52.33184940668896],[4.806593153155167,52.33184448953867],[4.806596300226547,52.33184167381255],[4.806599180415985,52.331839072484875],[4.806604389540727,52.33183451424856],[4.806609700884938,52.33182999246503],[4.806615114331098,52.33182551612146],[4.80662061532662,52.33182107615853],[4.80662620363649,52.3318166905508],[4.806631271795399,52.331812814697365],[4.806631894165776,52.331812341395725],[4.806637672126887,52.331808037608575],[4.806644055789523,52.33180341323095],[4.806646469804639,52.33180168143503],[4.806652111620095,52.33179769155344],[4.806657855420049,52.33179375609902],[4.806663686651921,52.33178986601251],[4.806669605315705,52.331786021293865],[4.806669945664396,52.331785798267816],[4.806675596623847,52.331782230858366],[4.806681690033956,52.33177848586272],[4.806687856088425,52.33177479515017],[4.806694094787256,52.33177115872071],[4.806697331849204,52.33176931411989],[4.806703966168095,52.331765715582264],[4.806710673248785,52.33176216234042],[4.806712637758966,52.331761147364865],[4.80671746752637,52.33175867244083],[4.806724334448288,52.33175523682427],[4.806731274014546,52.331751855490765],[4.806738271555099,52.33174852836825],[4.806745356410063,52.33174525560068],[4.806757310338376,52.331739867613415],[4.80675899247399,52.33173912987483],[4.806765189722508,52.3317364189856],[4.806773127080793,52.33173302456869],[4.806781122295781,52.33172969334992],[4.806788246221183,52.33172679826068],[4.806798023556913,52.33172293651246],[4.806807915432213,52.33171929103344],[4.806858214852291,52.33170077114739],[4.806908514230457,52.33168225123994],[4.806958813684142,52.331663722323604],[4.806994489045199,52.331650586280816],[4.807008721467384,52.33164484992762],[4.807057745843744,52.33162509237107],[4.80710675574131,52.33160531674768],[4.807155780030476,52.33158555915022],[4.807204804276054,52.33156580153232],[4.807253814042798,52.33154602584756],[4.807302838201185,52.33152626818876],[4.807351847646008,52.331506510437585],[4.807400886621869,52.33148673483523],[4.807449895979505,52.33146697704318],[4.807498905410888,52.33144721024341],[4.807547929468619,52.331427443495045],[4.8075969386955,52.33140768564167],[4.807645977335964,52.33138791892428],[4.807694986592948,52.331368152042685],[4.80774399568907,52.33134839412793],[4.807793019528787,52.3313286272773],[4.807842043324897,52.33130886040621],[4.807891066960155,52.331289102501934],[4.807940075999162,52.331269335518115],[4.80798908499457,52.33124956851386],[4.807995559421019,52.33124696677128],[4.808040945116816,52.331232790419456],[4.808093224883642,52.33121645476036],[4.808145489942188,52.33120011900626],[4.808197769515028,52.33118379228802],[4.80820796324678,52.33118060654913],[4.808253982825965,52.331174063891865],[4.808275868198435,52.331170953329924],[4.808311789697565,52.33116813613315],[4.808369989387074,52.33116358540706],[4.808428203851755,52.33115902573682],[4.808449733174815,52.33115734246727],[4.808485245328876,52.33115103593469],[4.808541609098965,52.33114101153946],[4.808553152337356,52.33113896483836],[4.80859752896831,52.33113014907779],[4.808653349165674,52.33111905241862],[4.808700358566597,52.3311097192105],[4.808707782220688,52.33110632215259],[4.808754817839802,52.331084837494814],[4.808769842104707,52.33107797233416],[4.808802216530445,52.33106363321624],[4.808849745565616,52.33104255538558],[4.808871997456219,52.331032696639234],[4.808896897353776,52.3310211521299],[4.808943715201695,52.33099947758832],[4.808990518334133,52.33097780295638],[4.809037336207704,52.330956119390144],[4.809084124696001,52.330934435661916],[4.809130942478183,52.33091275205829],[4.809177760097687,52.33089107742328],[4.809224563118712,52.330869393710664],[4.809271366094051,52.33084770997938],[4.809318169023703,52.330826026229396],[4.809364986577412,52.33080434253239],[4.809411803968491,52.33078266780396],[4.809458592091346,52.3307609839263],[4.809505409507975,52.33073930017321],[4.809552212209189,52.33071761632983],[4.809599014864717,52.33069593246776],[4.809645832027377,52.33067425764594],[4.809692634591533,52.3306525737465],[4.809739451779693,52.33063088990003],[4.80978623958279,52.330609205891655],[4.809833056562715,52.33058753099503],[4.809879873613795,52.330565847092515],[4.809926675949516,52.330544163099646],[4.809973478239549,52.33052247908818],[4.810020280483897,52.33050079505801],[4.810067097235398,52.33047912006798],[4.810113899388377,52.33045743600043],[4.810160701495668,52.330435751914216],[4.810185807149433,52.33042412724743],[4.810208678601498,52.330415089165186],[4.810257990088385,52.330395601322316],[4.810307301415282,52.33037612244601],[4.810356612815692,52.33035663456172],[4.810405924172864,52.330337146656746],[4.810455235486789,52.330317658731104],[4.810504561310346,52.33029817984354],[4.810553857868216,52.33027869180495],[4.810603183721992,52.3302592038887],[4.810652480193389,52.330239715808794],[4.810701805960667,52.33022022785113],[4.810751102345593,52.330200739729804],[4.810800428026374,52.330181251730764],[4.810849738994363,52.330161763639495],[4.81089903524958,52.33014227545615],[4.810948360800614,52.330122787395034],[4.810975065841781,52.33011223990351],[4.810997236684107,52.330102901658655],[4.811045575931666,52.3300825369336],[4.81109394447393,52.33006217233149],[4.811142298302362,52.33004180763808],[4.811190652203045,52.33002143393748],[4.811239005826277,52.330001078191465],[4.811287359638304,52.32998070445104],[4.811335713289458,52.329960339677925],[4.811384066896293,52.32993997488496],[4.811432435128268,52.32991961014343],[4.8114464633813,52.329913692507894],[4.811472234896832,52.32989365819315],[4.811508543545113,52.32986540633226],[4.811544851914167,52.32983717243459],[4.811556841101877,52.32982784746262],[4.811587724541964,52.32981295207291],[4.811633842777254,52.32979072480858],[4.811679961082862,52.32976848853884],[4.8117260646729,52.329746252179554],[4.811734198869952,52.329742328105866],[4.811774316113603,52.32972581482798],[4.81182301737048,52.3297057571334],[4.811871733019919,52.32968571746448],[4.811920434072467,52.329665668716814],[4.811969120528118,52.32964561089032],[4.812014178372652,52.32962707232416],[4.812017763630135,52.32962549890609],[4.812065478440897,52.32960456449632],[4.812113178420975,52.32958363898311],[4.812160878472494,52.329562704463285],[4.812208593032041,52.329541778982595],[4.812256292993671,52.329520844423925],[4.812304007463337,52.32949991890445],[4.812351722004391,52.32947898437834],[4.812379312055485,52.329466876987],[4.812400798665032,52.32945935069898],[4.812451744592526,52.32944150567158],[4.812502675693528,52.329423669538095],[4.812553621422955,52.3294058334538],[4.812604567111509,52.32938799734748],[4.812655512875457,52.32937015223176],[4.812706443929238,52.32935230702283],[4.812757404164418,52.3293344709215],[4.812808335136427,52.32931662566841],[4.812859280736809,52.32929878046449],[4.812896299818777,52.329285819939685],[4.812909675837891,52.32928039329639],[4.812958593576369,52.32926053391909],[4.813007496601894,52.32924067445027],[4.81305641425294,52.32922081503225],[4.81310531719105,52.32920095552268],[4.813154234754671,52.32918109606394],[4.813203152274574,52.329161236584824],[4.813211676378767,52.32915777268119],[4.813249471838933,52.329139207401916],[4.813295269189403,52.329116717288166],[4.81330746410468,52.32911072762505],[4.813348310312383,52.329102423246894],[4.813403997892153,52.32909108103932],[4.81345968521135,52.32907975678005],[4.813462965263253,52.329079089609905],[4.813516116027968,52.32906992808067],[4.813572604219501,52.32906019849881],[4.813629092618513,52.32905045091534],[4.813685595429869,52.32904072135053],[4.813706723423924,52.3290370758337],[4.813740476227475,52.32902822463105],[4.813794424733544,52.32901407859366],[4.813819905006545,52.329007389296684],[4.813845161670817,52.328996429687734],[4.813893048887092,52.328975657159944],[4.813940936174605,52.32895487562533],[4.813988837970463,52.328934103129484],[4.814036725052408,52.328913330543045],[4.814084612089583,52.32889255793708],[4.814132484644807,52.32887176726597],[4.814180371592425,52.32885099462093],[4.814228258495273,52.328830221956395],[4.81427614535335,52.32880944927226],[4.814324032166656,52.328788676568635],[4.814371919167033,52.32876788587088],[4.814419820559853,52.328747113199185],[4.81446770723882,52.32872634043692],[4.814515593873018,52.328705567655135],[4.814563465909266,52.32868478579551],[4.814589489284877,52.328673497189],[4.814604099099274,52.32868726535937],[4.814636101962182,52.32871739467267],[4.814668090083543,52.32874753289352],[4.814679801351124,52.32875855472546],[4.814703073334882,52.32877634641018],[4.814734465657194,52.32880036101225],[4.81474053656291,52.328803967545085],[4.81478266898303,52.328828995796876],[4.814805773480281,52.3288427151603],[4.814821728847021,52.32885567191926],[4.814857065731965,52.32888437924588],[4.814861871176622,52.32888828523721],[4.81488386777309,52.32891626292318],[4.814909328359358,52.32894865241221],[4.814930574726797,52.328975655773746],[4.814935687738515,52.328980740656235],[4.814966452458763,52.32901135821945],[4.814997217337187,52.32904196678729],[4.815027982142191,52.32907258433423],[4.815058747105355,52.329103192885796],[4.815074767000987,52.32911912489533],[4.815070811144246,52.329131257321606],[4.815069180060284,52.329136021975614],[4.815068555235285,52.3291378344972],[4.815066167418562,52.32914440204704],[4.815063677148212,52.329150951125705],[4.815061069754992,52.32915748166231],[4.81505835979228,52.32916400271501],[4.815055306994986,52.329170944538106],[4.815054536171448,52.3291727024266],[4.815052318315434,52.32917746424286],[4.815049998005968,52.329182207588],[4.815047545904572,52.32918693232008],[4.815045006018881,52.32919163865193],[4.815042334456978,52.329196317383456],[4.815039560441494,52.32920097764379],[4.81503699885761,52.329205090673334],[4.815036684203974,52.32920560145841],[4.815033690843587,52.32921020673086],[4.815030595145325,52.329214784544845],[4.815027382439923,52.32921933482941],[4.81502406751238,52.32922384866817],[4.815020650131089,52.32922834403572],[4.815017115858368,52.3292328028865],[4.81501347936343,52.32923722529155],[4.815012943049627,52.32923786083429],[4.815009740530465,52.329241620238],[4.815005899359445,52.329245987725926],[4.815001956081935,52.329250309780726],[4.814997910466328,52.329254604376985],[4.814993762744194,52.32925885354009],[4.814989512683925,52.329263075244654],[4.814985160517094,52.329267251516036],[4.814983393569716,52.329268896732444],[4.814980720797134,52.32927139141246],[4.814976178970582,52.32927548587571],[4.814971534921623,52.32927954389307],[4.814966803319496,52.32928356553547],[4.814961969610736,52.329287541744655],[4.814957048464584,52.32929147259159],[4.814952025211775,52.32929535800525],[4.81494869220339,52.3292978584791],[4.814946914521559,52.329299198056646],[4.814941716393927,52.32930299274568],[4.814936416159613,52.32930674200151],[4.814931057826392,52.32931044603689],[4.814925597386479,52.32931410463902],[4.814920049624938,52.32931770889145],[4.814914414541771,52.32932125879428],[4.814909224399869,52.32932443335985],[4.81490869202116,52.329324763334725],[4.814902896732375,52.32932822258374],[4.814897014237777,52.329331618495814],[4.814891044305738,52.32933496904542],[4.814885001721343,52.329338265316345],[4.814878871815332,52.32934150723753],[4.814872698595524,52.329344695021824],[4.814866423384837,52.32934782838545],[4.814865404718831,52.329348326776746],[4.814860090306919,52.329350898554],[4.814853669791586,52.32935392336003],[4.814847191409044,52.329356884970935],[4.814840640490035,52.32935978331576],[4.814834016918743,52.32936262738169],[4.81482652426831,52.32936574586597],[4.814817778820451,52.32936931666877],[4.814768963433011,52.329389258197786],[4.814720133332469,52.32940919963556],[4.814671317857409,52.329429141124066],[4.814622502222668,52.3294490915795],[4.814573672106551,52.329469023969104],[4.814524856384172,52.329488974384006],[4.81447602606454,52.32950891572031],[4.81442721037042,52.3295288571073],[4.814378379963151,52.32954879840303],[4.814329564065481,52.32956874873673],[4.814280733686513,52.329588681004566],[4.814231917701202,52.32960863129772],[4.814183087118656,52.32962857251222],[4.814134271161663,52.3296485137775],[4.814085440491485,52.32966845495143],[4.814036624330881,52.32968840516339],[4.814010431842377,52.32969909963206],[4.81398779368906,52.32970833730946],[4.813938977440817,52.32972828748084],[4.813890146595358,52.32974822857354],[4.813841330375493,52.32976816971707],[4.813792499442402,52.32978811076922],[4.813743683018866,52.32980806085945],[4.813707461675465,52.32982285004617],[4.81369485211419,52.329827992883715],[4.813681475445145,52.32983346455147],[4.813646035603012,52.32984794293337],[4.813597204494641,52.3298678839043],[4.813548388127995,52.32988781593879],[4.8134995568159,52.32990776585644],[4.813450740361651,52.32992769785035],[4.813401908961901,52.3299476477274],[4.813353077634442,52.329967588596844],[4.813304261048788,52.32998752052988],[4.813255429517554,52.330007470346075],[4.813206612728135,52.33002741122574],[4.813157781225406,52.33004735201403],[4.813108964348367,52.3300672928532],[4.813074586031409,52.33008133581107],[4.813060132758003,52.33008723360087],[4.813011315793343,52.33010717439946],[4.812962484115346,52.33012711510652],[4.812913652277309,52.33014706478057],[4.812893402801391,52.33015533416907],[4.812881191104991,52.330160326058135],[4.812864835297431,52.330166996531005],[4.812816018041286,52.33018694623565],[4.812767186188009,52.33020688686155],[4.812718368960474,52.33022682753836],[4.81266953701956,52.33024676812364],[4.812620704918548,52.33026671767592],[4.812571887675854,52.33028664930458],[4.812523055603486,52.33030658982899],[4.812474238156891,52.33032653040434],[4.812425405996889,52.33034647088812],[4.812376603015948,52.330366420481425],[4.812327770884646,52.330386351937356],[4.812278953146461,52.330406301418826],[4.812230120811186,52.330426241821456],[4.81218130321809,52.33044617328778],[4.812132470678807,52.33046612263707],[4.81208365288172,52.33048606305005],[4.812034820371173,52.330506003371504],[4.811986002486462,52.330525943743915],[4.811937169771862,52.33054589301201],[4.811888351915945,52.33056582435659],[4.811839519113687,52.330585773584104],[4.811790686384038,52.33060571380403],[4.811741868396718,52.33062564508769],[4.811693035462974,52.330645594254285],[4.811644217271571,52.33066553448468],[4.811595384366648,52.3306854746234],[4.811546566087623,52.33070541481318],[4.811497732978558,52.33072536389858],[4.811448914728419,52.330745295060545],[4.811400081648226,52.33076523511803],[4.811389167545246,52.330769693898176],[4.811351263193955,52.33078517522669],[4.811302430026125,52.33080511524363],[4.811287415801287,52.330811243771],[4.811280955251471,52.330813926651146],[4.811274567350314,52.33081666381158],[4.81126825209781,52.330819455252325],[4.81126200937739,52.33082230996058],[4.811255824635846,52.3308252188778],[4.811254525421742,52.33082585069002],[4.81124972709612,52.330828191134025],[4.811243687535248,52.3308312175992],[4.811237735409295,52.33083428942882],[4.811231855815384,52.3308374245261],[4.811226048870061,52.33084061390375],[4.811220329243087,52.33084385763323],[4.811214682381259,52.330847146655785],[4.811210542325528,52.3308496341081],[4.811209122837776,52.3308504900302],[4.811203650612636,52.330853887756454],[4.811198251036074,52.33085733976311],[4.811192939010994,52.33086082814707],[4.811187714304258,52.33086437088294],[4.811182591585642,52.330867968042064],[4.811177541748754,52.33087160150713],[4.811172579230222,52.33087528932414],[4.811171260330977,52.33087630751653],[4.811167718816402,52.33087902257719],[4.811162945954105,52.33088279220762],[4.811158260410186,52.330886616189964],[4.811153677087582,52.33089047662117],[4.811149195986312,52.3308943735012],[4.811144802203448,52.330898324733226],[4.811140496088746,52.33090230335537],[4.811137138632207,52.33090553161788],[4.811136306748616,52.33090632748508],[4.811132204960098,52.3309103879923],[4.811128205392984,52.330914484948366],[4.811124307930713,52.330918627340644],[4.811120512806473,52.33092279719453],[4.811116820020283,52.3309269945101],[4.81111324400878,52.33093123733325],[4.811109740995792,52.33093550747531],[4.811108636893744,52.33093693116546],[4.811106369543912,52.330939814209096],[4.811103100430173,52.3309441484046],[4.811099933654596,52.33094851006179],[4.811096883887008,52.330952899252146],[4.811093936341043,52.33095732489142],[4.81109109124991,52.33096176900523],[4.811088363166845,52.33096624065218],[4.811086097658827,52.33097011236638],[4.811085737422075,52.33097073976086],[4.811082702650198,52.33097623452766],[4.811067697821513,52.331004248453716],[4.811049400411392,52.33103840301251],[4.811031117526259,52.33107256662688],[4.811012819943048,52.33110673016676],[4.810994522564811,52.331140875729005],[4.810976224925104,52.331175039262654],[4.81095795671353,52.33120919394885],[4.810939659017346,52.33124335747632],[4.810921361292912,52.33127752100068],[4.810905349,52.33130740845597],[4.810903380705637,52.331310985015584],[4.810902990540536,52.33131165720289],[4.81090129551814,52.33131452505439],[4.810899093087599,52.331318055534375],[4.810896788433802,52.33132154956502],[4.810894381440099,52.33132501613366],[4.810891857436551,52.33132845516879],[4.810889231093053,52.33133186674193],[4.810886502526224,52.33133524186575],[4.810883656949488,52.331338589456024],[4.810880723819309,52.3313419006685],[4.81087850697529,52.33134428063491],[4.810877673795822,52.33134517536017],[4.810874536102226,52.33134842266119],[4.810871281631929,52.33135162445417],[4.810867939608134,52.33135478986925],[4.810864495477539,52.331357909847696],[4.810860963676785,52.33136100243549],[4.810845464466404,52.33137395929958],[4.810831463241303,52.33138566516173],[4.810853724369761,52.33140220336195],[4.810891068648325,52.33142993297705],[4.810928427643481,52.331457662651744],[4.81096575734534,52.33148539217166],[4.811003101763788,52.331513121751144],[4.811010324878242,52.331518387845854],[4.811057728727778,52.331518223214545],[4.811116414844242,52.331518032605395],[4.811175100960315,52.3315178419672],[4.811233787075996,52.33151765129986],[4.811292458637856,52.331517451544755],[4.811319967772469,52.33151736074155],[4.811319441380197,52.3315364573287],[4.81131843240107,52.331572403757356],[4.811317423420196,52.33160835018572],[4.811316627483762,52.33163691863848],[4.811304599462727,52.33163675224218],[4.811287056212158,52.331636505073135],[4.811248170525229,52.33163596527058],[4.811245926244758,52.33163593637045],[4.81121883397534,52.33163555283074],[4.811187249648404,52.331635381100384],[4.811128569905809,52.33163506845743],[4.811069890397349,52.3316347378108],[4.811011225326681,52.33163442518108],[4.810995968619909,52.33163434189682],[4.810952545703549,52.33163410346355],[4.810949597029071,52.3316340891029],[4.810948978110859,52.33166030360319],[4.810942121633055,52.331659569159335],[4.810937461694799,52.33165915099932],[4.810936201238425,52.33165905498217],[4.810932771366937,52.33165881358166],[4.81092808022276,52.33165853907466],[4.810923388145618,52.3316583364656],[4.810918680465463,52.33165820568307],[4.810913971852295,52.33165814679847],[4.810909262189468,52.33165816879909],[4.810904551710215,52.33165825371038],[4.810899840297886,52.331658410519616],[4.810894438111132,52.33165866283031],[4.810889812852755,52.33165896386414],[4.810885216117927,52.33165932795158],[4.810880633119965,52.3316597640084],[4.810877753478398,52.33166008253214],[4.810876063858845,52.33166027203467],[4.810871523004577,52.33166085210178],[4.81086699588711,52.3316615041383],[4.810862511963123,52.33166221929992],[4.810858056445928,52.331663006502396],[4.810853629335502,52.33166386574575],[4.810849245418505,52.331664788114225],[4.810844889908242,52.331665782523515],[4.810840577591371,52.33166684005792],[4.810836323021264,52.33166796977618],[4.810829780131542,52.3316702028389],[4.810824827553942,52.33167198526852],[4.810823161674675,52.33167260630202],[4.810819932839545,52.331673830894665],[4.810815095988335,52.331675739717326],[4.810810331786988,52.3316777028207],[4.810805640118843,52.33167972919203],[4.810801006313854,52.3316818187599],[4.810796445158699,52.33168396260856],[4.810791956653374,52.33168616073795],[4.81078755546791,52.33168841321957],[4.810783212262228,52.331690719910476],[4.810778487285045,52.33169305170488],[4.810776286983331,52.33169415547728],[4.810770586783084,52.331697021790525],[4.810762744143265,52.33170105507237],[4.81075498882232,52.331705142706085],[4.810747320936912,52.331709275704476],[4.810739710913611,52.331713471899114],[4.810732129062305,52.331717758108866],[4.810724752940253,52.33172201835697],[4.81071739032014,52.33172636854873],[4.81071011501888,52.3317307730925],[4.810702912483088,52.33173522292951],[4.810696716376921,52.33173899459429],[4.810690253175106,52.33174299864111],[4.810688212255878,52.33174425598167],[4.810679795453115,52.33174957172084],[4.81067146608531,52.331754932824666],[4.810663224152469,52.33176033929309],[4.810655069537916,52.33176580011345],[4.810650081152884,52.3317692091594],[4.810647002358341,52.33177130629845],[4.810639007943678,52.331776857776646],[4.810631115634074,52.331782454691016],[4.810614719751658,52.3317977889314],[4.810597195278545,52.33181416924639],[4.810589260744863,52.331829796375914],[4.810571811389294,52.33186411677154],[4.810561076310267,52.331885266757176],[4.810553996187561,52.33189836347879],[4.810535551543571,52.33193249926146],[4.810517107104548,52.331966617066485],[4.810498662637086,52.332000734868366],[4.810486293182619,52.33203588891509],[4.810473909155013,52.33207103390147],[4.810462545360791,52.33210330775228],[4.810462096660998,52.332106226611344],[4.810456731444203,52.33214203495554],[4.810452957237525,52.33216717350718],[4.810452392782533,52.332177875266574],[4.810451434773038,52.332196286669415],[4.810458770489211,52.33221321955479],[4.810466220304481,52.332230404655085],[4.810475679596021,52.33224762651291],[4.810491788896856,52.332276969419404],[4.810494176966021,52.332281744610995],[4.81051130653002,52.33231612567441],[4.810519556979632,52.332332667549025],[4.810526436530357,52.332350838527354],[4.810539684558248,52.33238586576811],[4.810541641598547,52.33239107027399],[4.810544463264064,52.332399739309686],[4.810551389543161,52.33242109220717],[4.810556623316371,52.332437205936536],[4.810558115948764,52.332456707822345],[4.810559521295293,52.332475022888666],[4.810559290504014,52.33247584864462],[4.81055905469444,52.332477060852945],[4.810558936247259,52.332478273633285],[4.810558935162476,52.33247948698555],[4.810559051440102,52.332480700909784],[4.810559285196852,52.33248190641871],[4.810559636432735,52.332483103512324],[4.810558736017017,52.3324925633131],[4.810558310907142,52.33249705515823],[4.810554507904777,52.33250520656525],[4.810539231608638,52.332519036294215],[4.810538076703669,52.332519848558526],[4.810537009237001,52.33252070618812],[4.810536043878947,52.33252160925453],[4.810533209286845,52.33252410304532],[4.810499669092851,52.33255360841595],[4.810470670268401,52.332579109363174],[4.810465647767997,52.332582877748244],[4.810428563602527,52.33261074801448],[4.810391494177563,52.33263860935308],[4.810386679149974,52.332642216965226],[4.810353229441627,52.332665871655735],[4.810321867484004,52.33268805352301],[4.810313451316111,52.33269217385714],[4.81026761989046,52.332714626700856],[4.810255202234305,52.332720713831165],[4.810230569432471,52.332728592890945],[4.81021725170541,52.3327328151468],[4.81020587864103,52.33273641773583],[4.81018114476399,52.33274417046282],[4.810164999802264,52.33274918783045],[4.810163541360907,52.332749648085354],[4.810149505850088,52.33275604188887],[4.810148193528319,52.3327565477953],[4.810146600133304,52.33275723208763],[4.810145079389466,52.3327579706613],[4.810143645850405,52.332758772575026],[4.810142285079306,52.33275961978283],[4.81014099695938,52.33276052127188],[4.810139825735384,52.332761459282395],[4.81013874194975,52.33276244265849],[4.810137745602478,52.33276347140017],[4.810136866267936,52.33276452767604],[4.810136074488559,52.3327656203302],[4.810135414625906,52.33276672261562],[4.810134842201633,52.33276787026656],[4.810134401577311,52.332769036536],[4.810134078316131,52.332770203377805],[4.810133857514127,52.332771388694965],[4.810133754075284,52.33277257458451],[4.810133767999614,52.33277376104646],[4.810133913957523,52.33277494815232],[4.810134162608223,52.33277613575902],[4.810134374255219,52.33277678391526],[4.810134528972497,52.33277729697633],[4.810135012816772,52.332778449778715],[4.810135599587449,52.3327795851074],[4.810136318742121,52.332780694118284],[4.810137126269602,52.3327817765966],[4.810138051627487,52.33278282369826],[4.810139065474976,52.33278383528008],[4.810140182482481,52.33278481141373],[4.81014138821318,52.33278573405304],[4.810142697103895,52.33278662124414],[4.810172498097055,52.33280328621607],[4.810215830418805,52.33282752200516],[4.810259192128724,52.332851757921375],[4.810297659648656,52.33287327360929],[4.810302524545134,52.3328759936786],[4.810339433694929,52.33289662993493],[4.810345871679308,52.33290022949144],[4.810354275931054,52.3329049351491],[4.810383824379213,52.33288232200491],[4.810395931181474,52.332873060640715],[4.810426618661953,52.33288813003498],[4.810472409260126,52.332910625084416],[4.810518185350994,52.33293311105731],[4.810563961488259,52.33295559701242],[4.810609752225687,52.332978092008595],[4.810655528339075,52.33300058691551],[4.81070131940271,52.33302306390163],[4.810747095608917,52.33304555877303],[4.810757577540342,52.33305070593969],[4.810792827383415,52.333068089361355],[4.810838559321008,52.33309061094475],[4.810884276401232,52.33311315041347],[4.810930008198422,52.33313568993589],[4.810975725371547,52.333158229369204],[4.81102145749488,52.33318075088172],[4.811067174760889,52.33320329027963],[4.811112892073345,52.333225829659845],[4.811158711659797,52.33324840547135],[4.811204415677013,52.333270845884805],[4.81125020718105,52.33329333164533],[4.811295984177478,52.333315808329424],[4.811341775774324,52.333338294054435],[4.811355771311854,52.33334516595519],[4.81138756741758,52.33336077976168],[4.811433373894382,52.33338325653534],[4.811479267625595,52.333405796630316],[4.811524868457159,52.33342829933091],[4.811570571330327,52.333450856437075],[4.811616274482951,52.33347339555102],[4.8116619627784,52.33349595255041],[4.811707665790947,52.333518509603515],[4.811753368966434,52.33354105765166],[4.811799072188366,52.333563605682095],[4.811844775456753,52.333586153694846],[4.811890478655148,52.33360871067719],[4.811936181900016,52.333631267641834],[4.811981885424195,52.33365380661425],[4.812026480773508,52.33367581888776],[4.81202735530842,52.333675131075914],[4.812036767239901,52.33366776186612],[4.812063520814173,52.33364681544569],[4.812099686157372,52.33361850879154],[4.812135510770093,52.33359045212953],[4.812135933542615,52.333590660904306],[4.8121818592818,52.33361303909849],[4.812227814641425,52.3336353994428],[4.812273740589622,52.33365776861398],[4.812319681138476,52.33368014682584],[4.812365607179307,52.33370251596127],[4.812378758022507,52.333708925256595],[4.812363415260949,52.3337211011337],[4.81237622810113,52.33372755372634],[4.812421961406105,52.33375008368407],[4.812467694641201,52.33377262261135],[4.812513428155389,52.33379514354638],[4.812559146928947,52.3338176733797],[4.8126048803034,52.33384021225386],[4.812650613956884,52.333862733135724],[4.81269634754052,52.33388526298719],[4.812742066383554,52.33390780173697],[4.812787800060082,52.33393033155297],[4.8128335338993,52.333952852364014],[4.812879267552468,52.333975391131865],[4.812925001368328,52.33399792089475],[4.812970720559821,52.334020450568715],[4.813016454468563,52.33404298029619],[4.813057654381734,52.33406327699994],[4.813062188423753,52.33406551000594],[4.813107892735128,52.3340880665174],[4.813153597209162,52.334110614023935],[4.813199301845821,52.334133152525496],[4.813245006296581,52.33415570898388],[4.813290725580837,52.334178256508515],[4.813336430240681,52.33420080394425],[4.813382134946981,52.334223351362304],[4.813427839699732,52.33424589876268],[4.813473544382813,52.33426845513261],[4.813519249228477,52.33429100249761],[4.813564968907609,52.33431354092871],[4.813568351080715,52.334315220073385],[4.813610673846175,52.33433608825833],[4.813656393502122,52.33435863564135],[4.813702113320611,52.33438117401941],[4.813747818398538,52.33440372129592],[4.813793538309927,52.33442625963855],[4.813839258151718,52.33444880695074],[4.813884963485048,52.33447134518691],[4.813930683419756,52.334493892463726],[4.81397640351695,52.334516430735555],[4.814022108989607,52.33453896891868],[4.814067829063693,52.334561516142344],[4.814111858019101,52.334583228277495],[4.814113549184245,52.33458406334836],[4.814159284486207,52.33460657465868],[4.814205034273654,52.33462910399682],[4.814250769552496,52.33465162425891],[4.814296519664755,52.334674135587065],[4.814342254920505,52.33469666480105],[4.814388005009691,52.33471918508102],[4.814398152179726,52.33472418649482],[4.814433992432626,52.33474150875971],[4.814444257445119,52.33474647478859],[4.814477151878725,52.334765823017854],[4.814519482026045,52.334790735430765],[4.814561812452685,52.33481562985396],[4.814604142810912,52.33484053324925],[4.814646458545541,52.33486543655826],[4.814688789114635,52.334890330935885],[4.814731119615343,52.334915234285525],[4.814773450163549,52.334940137619995],[4.814815795430384,52.33496504101022],[4.814858111518299,52.33498993525603],[4.814900442208994,52.335014838544886],[4.814942772947185,52.33503974181855],[4.814971532244988,52.33505666117196],[4.814986110521589,52.33506393990737],[4.815031624145456,52.3350866475353],[4.815044657140739,52.335093154826076],[4.815070869043959,52.335106233023545],[4.815077019751682,52.33510940850176],[4.815121911373592,52.33513257146613],[4.815166788371178,52.335155734342486],[4.815211680086818,52.335178897272684],[4.815256557178114,52.33520206011492],[4.815301449103234,52.33522521402375],[4.815346340959458,52.335248376902754],[4.815391218191318,52.335271539693785],[4.815436110141269,52.335294702538654],[4.815480987582557,52.33531785630828],[4.815525879741935,52.335341010131756],[4.815537117228947,52.33534681663036],[4.815571305088764,52.33536378003717],[4.815616923175486,52.335386398062866],[4.815662541424397,52.33540900708371],[4.81570815960413,52.33543162507419],[4.815753777830373,52.33545424304702],[4.815799381431823,52.33547686093139],[4.815844999635435,52.33549948785624],[4.815858981187039,52.335506413076],[4.81586036617295,52.33550710283798],[4.81589122565389,52.33552163235533],[4.815892946462193,52.33552244956785],[4.81593774803563,52.33554355357126],[4.815984270578965,52.33556546578159],[4.816030793168256,52.33558737797358],[4.816077315803508,52.335609290147296],[4.816079313755865,52.33561023452424],[4.816126212255408,52.33562916453486],[4.816165724997268,52.33564511087834],[4.816175866930203,52.33564826960809],[4.816228154421073,52.33566459215102],[4.816280442181576,52.335680896696296],[4.816285776085169,52.33568256720322],[4.816295893661303,52.33568533932865],[4.816306640836679,52.335688213356825],[4.816317681903133,52.33569105285064],[4.816328095106098,52.335693655630905],[4.81633429681956,52.335695159553616],[4.816338567804614,52.33569619578251],[4.816349070886968,52.335698655189326],[4.816359618677868,52.33570106088395],[4.816370211408362,52.33570339489184],[4.816380834407024,52.33570565714218],[4.816389453551082,52.33570743337051],[4.816391502229654,52.33570785669302],[4.816444850138378,52.33571931285421],[4.816500246755412,52.33573119231201],[4.816555628730792,52.33574307167311],[4.81661101062041,52.33575495999556],[4.816666392539783,52.33576684829208],[4.816721789275776,52.335778727646186],[4.816777171254643,52.33579061589092],[4.816807005901993,52.33579701523403],[4.816823451427143,52.33580060874546],[4.816832538014622,52.33580254897534],[4.816887934955327,52.33581441926439],[4.816890978414081,52.33581507206835],[4.816943317138906,52.33582629844412],[4.816998714023639,52.33583817766861],[4.81705409638208,52.335850047809224],[4.81710949321088,52.33586193596914],[4.8171408058462,52.335868647934305],[4.817164980059494,52.33587367174368],[4.817220557619622,52.33588520120902],[4.817276134978002,52.33589674862283],[4.817331712480726,52.33590828702328],[4.817349579836307,52.3359119951625],[4.817361447816916,52.335914434088565],[4.817373302165409,52.335916792057354],[4.817385171993958,52.335919087184735],[4.817387455435082,52.33591951162043],[4.817397086760749,52.33592131062474],[4.817409046465731,52.33592346237734],[4.817421021765945,52.33592554230122],[4.817433027217468,52.335927559454326],[4.817443920868501,52.33592931959386],[4.817445077607025,52.33592950492],[4.817458271333335,52.335931536779846],[4.81747093896412,52.335933404324386],[4.817483636746088,52.33593520909796],[4.817496350238358,52.33593693305541],[4.817501052165825,52.33593754888924],[4.817509108553157,52.33593859431255],[4.817521867791368,52.335940183670154],[4.817534642624389,52.33594170119886],[4.817549674211215,52.335943436310316],[4.817558655825174,52.33594441428179],[4.817562831541793,52.33594487478697],[4.817575989910893,52.335946232376756],[4.817589178430771,52.335947527195415],[4.817602397101383,52.33594875924298],[4.817615616810319,52.335949910403656],[4.817616628103639,52.33594999616196],[4.81762885211369,52.33595098973535],[4.817637251137897,52.33595163234714],[4.817650238871926,52.33595256667966],[4.817663242200195,52.335953429183164],[4.817674912270164,52.33595414146314],[4.817676246451178,52.33595421978714],[4.817689280852465,52.33595494762001],[4.817702316291612,52.33595559456605],[4.817715352653289,52.335956169612544],[4.817733434500798,52.33595688578089],[4.817790759786934,52.33595914795532],[4.817791991383298,52.33595921679658],[4.817797563198047,52.335959504255044],[4.817804365687274,52.33595993245254],[4.817811152467938,52.33596044146444],[4.817817923770566,52.335961013316236],[4.817824664808475,52.335961656924596],[4.817831404924629,52.3359623724307],[4.817838114776127,52.33596315969341],[4.817845482884806,52.335964102915945],[4.817849935405095,52.33596471753585],[4.817851942054228,52.33596498783774],[4.817858385630534,52.33596594458671],[4.817864784270816,52.335966973021726],[4.817871167433277,52.33596806429667],[4.817877520331236,52.33596922732828],[4.817883828293256,52.335970462045864],[4.817890091434593,52.335971759462254],[4.817896324311509,52.33597312863527],[4.817902526924033,52.33597456956494],[4.817905920334743,52.335975394794964],[4.817908684715948,52.33597607319338],[4.817915674979705,52.33597787742469],[4.817921479504927,52.33597946923118],[4.817927239209569,52.335981123736474],[4.817932953978432,52.33598284992794],[4.817938594699037,52.335984629689754],[4.8179441904839,52.335986481137745],[4.817949726776786,52.335988395213995],[4.817955203577714,52.335990371918605],[4.81795826995505,52.33599152812331],[4.817960620886697,52.33599241125151],[4.817967613728904,52.33599515921349],[4.817972824140538,52.33599731439221],[4.817977931045824,52.335999531987575],[4.817982993245901,52.33600180329452],[4.817987966726333,52.336004128101465],[4.8179928660434,52.336006515466245],[4.817997705983801,52.33600895647207],[4.818002471760852,52.33601146003573],[4.818005269330604,52.33601298344686],[4.818007163604974,52.33601400818266],[4.818013150267134,52.336017416400864],[4.818045509727996,52.33603519717022],[4.818048391026202,52.336035912079005],[4.818049707889257,52.336036197035405],[4.81805093695378,52.33603646359386],[4.818053513145998,52.33603694335166],[4.818056134159137,52.33603736041022],[4.818058770880603,52.33603769665388],[4.818061437751477,52.336037970127734],[4.818064105543959,52.3360381717034],[4.818066803601022,52.336038301521974],[4.818069502579672,52.33603835944233],[4.818072202479889,52.33603834546449],[4.818074888630171,52.336038259517906],[4.818077575701999,52.33603810167307],[4.818080249023863,52.33603787185946],[4.818082908595755,52.33603757007713],[4.818085539746166,52.33603719625542],[4.818088142359895,52.33603675938166],[4.818090701880631,52.33603625039802],[4.818093232979852,52.33603566937506],[4.818095720870868,52.33603502522945],[4.818098165553669,52.336034317961236],[4.818100537800452,52.336033538442],[4.818102866723817,52.336032704787485],[4.818104946001378,52.336031887907886],[4.818105742408653,52.336031568176494],[4.818154969582307,52.336012004745676],[4.818168802612946,52.336006516793184],[4.818175441520582,52.33600368160315],[4.818182138307084,52.33600090960583],[4.818188892972463,52.3359982008012],[4.818195734974873,52.335995546343085],[4.818202620299884,52.33599294601984],[4.818204153274024,52.33599239614626],[4.81820956327349,52.335990426863795],[4.818216578912696,52.33598796198368],[4.818223652546036,52.33598555130898],[4.818230769271729,52.3359832127436],[4.818237943991602,52.335980928383606],[4.818249359986997,52.33597742409648],[4.818256031844401,52.335975451891315],[4.818262997130644,52.3359734810966],[4.818269887792208,52.33597160880869],[4.818276821661525,52.335969799642896],[4.818283813410095,52.335968053669774],[4.818290995426609,52.33596634456224],[4.818297911628896,52.33596476899363],[4.818305018099188,52.33596323029071],[4.818310358350663,52.33596212349927],[4.818312167777366,52.33596175470983],[4.818317522009082,52.33596070191222],[4.818324316232053,52.33595948526856],[4.818331138991591,52.33595833167648],[4.818337990172576,52.335957250123165],[4.818344869775042,52.33595624060872],[4.818351763127555,52.335955303062526],[4.818358699688213,52.335954428638416],[4.81836564999898,52.33595362618254],[4.818367266162855,52.3359534541953],[4.818372628616218,52.33595290475277],[4.818379621098766,52.335952246304004],[4.818386627446653,52.335951650836215],[4.818393662101114,52.33595113639446],[4.818401429983235,52.3359506524403],[4.818425617881412,52.33595004069261],[4.818484252827711,52.335948569891976],[4.818542902441703,52.33594709913278],[4.818585040441139,52.33594603434434],[4.818601510914727,52.33594540345129],[4.818660082273557,52.3359431682931],[4.818718668298066,52.335940933176396],[4.818777239760375,52.335938688972966],[4.818835811101835,52.33593645372775],[4.818836677178161,52.33593642193641],[4.818882221062653,52.33593406117924],[4.818894290089859,52.33593340910603],[4.818923596292605,52.335931833177796],[4.818952741682339,52.33593021153089],[4.818964972438574,52.33592953326369],[4.819006334713894,52.33592717035378],[4.819011180205121,52.335926888034656],[4.819047683348385,52.335924726473536],[4.819069576889759,52.335923393540114],[4.819089018111849,52.33592221959749],[4.819127975060069,52.33591978218216],[4.819130353905522,52.335919631821575],[4.81917166115633,52.33591698097945],[4.819186345947526,52.33591600888371],[4.819212969321971,52.33591425822477],[4.819244689206627,52.335912100606556],[4.819254249174294,52.33591145442937],[4.819295529826088,52.33590858770866],[4.819302990740124,52.33590801234394],[4.8193611955394,52.33590345622166],[4.819419414768442,52.3358989181157],[4.819477648657135,52.335894380051435],[4.819535853191139,52.335889841817746],[4.819594072499681,52.33588529463849],[4.819652277010085,52.33588075634747],[4.81971051085158,52.3358762181685],[4.819768730124688,52.33587167090321],[4.819781874961075,52.33587064640988],[4.819826865721241,52.33586678167088],[4.819884988011591,52.33586178449236],[4.819943095502712,52.335856796202215],[4.820001217767119,52.335851798966544],[4.820059340133338,52.33584679271503],[4.820117462256995,52.335841804409505],[4.820175584482467,52.33583680708809],[4.82023369202353,52.33583180966781],[4.820291814108296,52.33582682127652],[4.820349921623417,52.335821823799094],[4.820396998036945,52.33581778009048],[4.820408043682264,52.33581683535066],[4.820466165842866,52.33581183788637],[4.820491488740003,52.335809658283914],[4.820524120191704,52.33580619246681],[4.820581948790891,52.335800052086576],[4.820639777259508,52.33579392066539],[4.820697605712257,52.33578778921581],[4.820755419707025,52.335781639693174],[4.820813248128013,52.33577550818703],[4.820871076647758,52.33576936766532],[4.820919854727376,52.33576419043983],[4.820928905151608,52.335763227115315],[4.820986718853557,52.3357570954541],[4.821024962612163,52.33575303619442],[4.821041227463038,52.33575126252494],[4.821044533456378,52.33575089186639],[4.821060872350246,52.335749064621545],[4.821080488923987,52.335746785689054],[4.82110007695499,52.335744443702],[4.821102193074259,52.33574418419105],[4.821119651229156,52.335742029743365],[4.821139197074993,52.335739543742896],[4.821158729163811,52.33573698577083],[4.82115964039454,52.33573686430034],[4.821178218152715,52.33573435568685],[4.821197693269857,52.33573166261858],[4.821217022472584,52.33572890593439],[4.821236558218,52.33572606035678],[4.821255962720215,52.335723151233424],[4.821273898133214,52.33572038787378],[4.821275044792869,52.33572021360141],[4.82129465698037,52.33571712570865],[4.821320651439073,52.33571289991752],[4.821330635190154,52.335711230987876],[4.821340118853349,52.335709658531925],[4.821359543281379,52.33570633604721],[4.82137893916541,52.33570295050808],[4.821387130254189,52.335701488709276],[4.821398306619886,52.33569949292722],[4.821417645530201,52.335695972292015],[4.821436941339409,52.33569237954501],[4.821443339309083,52.33569116082801],[4.821456208718808,52.335688714756365],[4.821484862658534,52.33568303662964],[4.821499219712667,52.335680139286694],[4.821506971911369,52.33567857651538],[4.821529038061596,52.335674044288425],[4.821551075666002,52.33566944900612],[4.82155482717136,52.335668658035424],[4.821573070282098,52.335664772623865],[4.821595036237712,52.335660042173615],[4.821610176355015,52.33565671714478],[4.821616944418974,52.33565523954058],[4.821638824168543,52.335650364865046],[4.821665252819683,52.33564429857041],[4.821691137135011,52.33563834651012],[4.821720171187803,52.33563161856813],[4.821735740303685,52.335628016951006],[4.821775017197825,52.33561885730433],[4.821780314910036,52.33561762432383],[4.821824831840051,52.335607150514015],[4.821829806093029,52.33560596991276],[4.82185583970946,52.33559981181003],[4.821869320092953,52.33559662262354],[4.821884594956505,52.335593082495755],[4.821898515934142,52.33558985945958],[4.821927769650966,52.33558315947967],[4.82193957085464,52.33558048355715],[4.82195705190083,52.33557652254358],[4.821986377240787,52.33556995770866],[4.821994675674972,52.33556812788003],[4.822027766476698,52.335560826043775],[4.822050038943821,52.3355562138149],[4.822073782543749,52.335551294034076],[4.822105660662638,52.33554474136138],[4.82211954757713,52.335541886637216],[4.822161325108771,52.33553336795184],[4.822166017730117,52.335532410687186],[4.822198620663795,52.335525394083895],[4.822216745945934,52.33552153497416],[4.822231266800725,52.335518440592644],[4.822257777260409,52.33551285091109],[4.822272281608698,52.33550990025085],[4.822275664932529,52.335509215353426],[4.822293595815332,52.33550564291415],[4.822311555123221,52.335502142510364],[4.822328204450266,52.3354989683998],[4.822329557527605,52.335498714212214],[4.822347588471565,52.33549534896228],[4.822365662512169,52.335492055817916],[4.822384426788055,52.33548871203847],[4.822386029620159,52.33548843207896],[4.822403204246328,52.33548548516072],[4.822420392512724,52.335482619195474],[4.822437624105,52.335479807361416],[4.822441064280327,52.335479266535785],[4.822454884008981,52.33547707655045],[4.822468526651764,52.33547496660868],[4.822498085529944,52.33547079352203],[4.822542739955786,52.33546448145976],[4.822555234913976,52.33546262667814],[4.822557248769357,52.335462330701986],[4.822571800795485,52.33546024306339],[4.822586366577325,52.335458227391186],[4.822600960786253,52.33545628375537],[4.822612526647747,52.33545480202312],[4.822615583422341,52.335454412155975],[4.822630219928618,52.33545260353576],[4.822644884747914,52.33545087593911],[4.82265956343753,52.335449211321624],[4.822670156647018,52.335448066480424],[4.822674270554572,52.33544761874045],[4.822689006099107,52.335446098195675],[4.822703755399901,52.33544464961726],[4.822718518457022,52.33544327300514],[4.822728124915878,52.33544242004964],[4.822733295499044,52.335441950384876],[4.822748085954782,52.33544072669275],[4.82276393308635,52.33543948107569],[4.822786315116189,52.33543778128489],[4.822844546576904,52.33543335839606],[4.822902807368721,52.33542893561847],[4.822961038920643,52.335424503684926],[4.823019270346855,52.33542008071001],[4.823077531104163,52.33541565784634],[4.823135762507375,52.335411234814025],[4.823193993899094,52.33540681175305],[4.823239962193479,52.33540331887812],[4.82325223995061,52.33540238873331],[4.823310486104759,52.33539795669757],[4.823368717461972,52.33539353355054],[4.82342696347898,52.33538911044473],[4.823485194813199,52.33538468724027],[4.82354345559258,52.33538025515968],[4.823583989867149,52.33537717666953],[4.823601755012828,52.335376245662],[4.823616378221403,52.33537547944362],[4.82364878021792,52.33537386316419],[4.823660246133209,52.33537331558689],[4.823681181413707,52.335372309786834],[4.823713596366136,52.335370828368646],[4.823718763737299,52.33537061030454],[4.823758972673883,52.33536888736603],[4.823777322155145,52.33536815684653],[4.823800648165482,52.335367216335634],[4.823835906488406,52.33536597311755],[4.823839766974058,52.335365838704256],[4.823878899539396,52.33536453302798],[4.823894487509597,52.33536404999053],[4.823918045747675,52.33536330829405],[4.823953110715627,52.33536227084046],[4.823957176484553,52.33536214638834],[4.823996335650041,52.335361056507494],[4.824011746536518,52.33536065350214],[4.824025689724714,52.33536028844859],[4.824070394175059,52.33535926088649],[4.824078451557464,52.33535907453584],[4.824129027252716,52.3353578591847],[4.824138611131557,52.33535762616684],[4.824187661238422,52.335356385555585],[4.824198756942179,52.335356105799235],[4.824246296017948,52.33535484898649],[4.824258903660324,52.335354513502836],[4.824304905324631,52.33535300668128],[4.824306343793546,52.335352959597195],[4.82433655289325,52.33535187196701],[4.824363489385098,52.33535084066552],[4.82436677757413,52.3353507125007],[4.824397003164762,52.33534948112846],[4.824422032729441,52.33534841378032],[4.824427214879816,52.33534818676774],[4.824457412946962,52.33534681144404],[4.824480550711288,52.335345672171904],[4.824487583036442,52.335345328125754],[4.824515419821566,52.335343878643485],[4.824539014328496,52.33534258873888],[4.824597479304156,52.335339397429685],[4.824655929600246,52.33533620602179],[4.824714394445466,52.335333023642036],[4.824772859396246,52.33532983224609],[4.824831295110013,52.335326631694485],[4.824889759930375,52.335323449228035],[4.824948210184999,52.33532025767566],[4.825006674988804,52.33531707515139],[4.825065125340624,52.33531387455396],[4.825123575570355,52.335310682914894],[4.825182025678041,52.33530750023424],[4.825240490562457,52.33530430860706],[4.825268930184608,52.33530275395673],[4.825298940881043,52.335301107894026],[4.82535740563514,52.335297925196336],[4.8254158558234,52.335294733412795],[4.825474306003368,52.33529154160037],[4.825532770846298,52.33528834982867],[4.825591221009672,52.33528515795845],[4.825604846168221,52.33528441372106],[4.825618805127987,52.33528395867645],[4.825632763064515,52.33528358451575],[4.825643109938992,52.33528334600931],[4.825649816295392,52.33528325200609],[4.825659824480535,52.3352831107569],[4.825676538226339,52.33528293841306],[4.825693250949169,52.3352828469524],[4.825708495523268,52.33528282941316],[4.825709977547675,52.33528281846993],[4.825750984624618,52.33528294114486],[4.825767181353317,52.33528304495746],[4.825772800331782,52.33528308060535],[4.82579462991495,52.335283283042315],[4.825817808117913,52.33528358175162],[4.82582584637714,52.33528374571621],[4.825884504699863,52.33528497669531],[4.825943148354691,52.33528620757576],[4.826001806684142,52.33528743849673],[4.826060465016955,52.33528866938863],[4.826119123466696,52.33528989126417],[4.826177767134964,52.33529112202832],[4.826236410806592,52.33529235276343],[4.826295069152846,52.335293583539006],[4.826353727502464,52.33529481428549],[4.826412371297684,52.33529603594608],[4.826471029654015,52.3352972666344],[4.826529688127189,52.335298488306414],[4.826588331818966,52.33529971886703],[4.826646975514106,52.33530094939867],[4.826705633883874,52.335302179970626],[4.826764292370438,52.33530340152632],[4.82682295074692,52.3353046320402],[4.826881609126763,52.33530586252498],[4.826916988968908,52.33530660527208],[4.826940153698123,52.335307973247915],[4.82694214762999,52.33530809054246],[4.826967290714369,52.33530964763631],[4.826992418222166,52.33531127655358],[4.826998531266408,52.33531169197059],[4.827017530040118,52.335312986281615],[4.827041189857628,52.335314653179424],[4.827056768866954,52.33531603914906],[4.827114864008224,52.33532121250373],[4.827172929707237,52.3353263946783],[4.827214991499278,52.33533014392774],[4.827230963923924,52.335331747443874],[4.827288874891464,52.33533756696423],[4.827326212211541,52.33534132078218],[4.82733842686977,52.335343059296754],[4.8273464810038,52.33534429278334],[4.827350654387206,52.33534494167605],[4.827362851656622,52.335346895813466],[4.827375018791381,52.33534891272178],[4.827387155678225,52.3353510013883],[4.827399247645919,52.33535316174354],[4.827403038897692,52.3353538627535],[4.827411324037089,52.33535539392641],[4.827424394791289,52.33535789145874],[4.82746073013094,52.33535849475812],[4.827519406557249,52.335359464365],[4.827578068314943,52.33536043387337],[4.827636715290765,52.33536141227058],[4.827695391725104,52.33536238179017],[4.827754053490827,52.33536335121132],[4.827812729817293,52.33536432966],[4.827871391588372,52.33536529902294],[4.827930053475321,52.335366259369565],[4.82798872980984,52.335367237730935],[4.828047376917644,52.33536820693731],[4.828106053370704,52.33536917625322],[4.828129259846786,52.33536956452121],[4.828164393859102,52.33536653085052],[4.828176526262792,52.335365482666674],[4.828193065031427,52.33536405983407],[4.828221536306557,52.33535881961883],[4.828237227793168,52.33535593675124],[4.828279201322189,52.33535271964712],[4.828337447257864,52.335348258173546],[4.828395678397552,52.33534380558931],[4.828453894967473,52.33533934391985],[4.828512126197078,52.33533488229096],[4.828570371973299,52.33533042968992],[4.828628603179719,52.33532596800369],[4.828686834374539,52.33532150628874],[4.828745065557762,52.33531704454509],[4.828803311287639,52.33531259182931],[4.828861542560682,52.33530812104101],[4.828919773709107,52.335303659211334],[4.828977990061674,52.33529920627105],[4.829036235858182,52.33529474445318],[4.829094466971818,52.33529028253743],[4.829152698073859,52.335285820593036],[4.829210929051359,52.335281367607195],[4.829228376358041,52.33528002980463],[4.829239933569525,52.33525586213649],[4.829256433031489,52.33522136380649],[4.82927293258064,52.33518685648664],[4.829289431991125,52.33515235815148],[4.829305344067607,52.3351190614122],[4.829305359763222,52.33511781217968],[4.829305790835364,52.33509050922589],[4.829319852388508,52.33509122264475],[4.829378357067798,52.335094158852684],[4.82943684697084,52.33509710394983],[4.829495336881751,52.33510004901807],[4.829524369276975,52.33510150705787],[4.829534354869486,52.33508446827998],[4.829554190943314,52.335050632755845],[4.829559333544749,52.335041866906735],[4.829600258253276,52.335050867822375],[4.829655492585706,52.335063027957695],[4.829710712390121,52.33507517901082],[4.829765947008875,52.33508732111999],[4.82979164014314,52.335092978649],[4.829810939340558,52.33509722193036],[4.829821181545117,52.33509947219064],[4.829834408554575,52.33510238363218],[4.829876416111683,52.3351116232356],[4.829931650595781,52.33512378324201],[4.82993956640561,52.33512551921819],[4.829953744465587,52.335128641844975],[4.829986885335782,52.33513592524803],[4.830042119880549,52.33514808520292],[4.83009733989719,52.335160236075694],[4.830136377309623,52.33516882346767],[4.830152574615378,52.33517238699169],[4.830159305229668,52.335173865714836],[4.830179892071123,52.33517839361964],[4.830190909182877,52.335180863203085],[4.830201896276971,52.33518338657117],[4.830207674504379,52.335184761942514],[4.830212838343999,52.33518599061659],[4.830223750280715,52.33518865743389],[4.830234602744683,52.335191386884944],[4.830245410294448,52.33519418802613],[4.83025617304278,52.335197051870175],[4.830261831761971,52.3351985974449],[4.830266890989719,52.335199978417066],[4.830277564022579,52.3352029766541],[4.830288192254116,52.335206037594034],[4.83029876101313,52.33520916116781],[4.830309270186934,52.33521235636275],[4.830314794727155,52.33521407207192],[4.830319734672236,52.335215605273326],[4.830330154243646,52.33521892587413],[4.830340514342665,52.33522230910882],[4.830350814969318,52.33522575497743],[4.83036105612364,52.33522926347999],[4.830366431814096,52.33523114925473],[4.830371237805659,52.3352328346165],[4.830381374686655,52.335236468455996],[4.830391437424153,52.33524016486046],[4.830401455473384,52.33524391498065],[4.830406712219551,52.335245926023276],[4.830412347939588,52.33524813658089],[4.830416552075112,52.33524984607224],[4.830417924298999,52.33525040078577],[4.830423426513843,52.335252727556224],[4.830427760325041,52.33525462640146],[4.830444718805684,52.335229081932724],[4.830462365215256,52.33520249811162],[4.830473349625859,52.33520523714933],[4.8304827398302,52.33520757322171],[4.830485297177686,52.33520371150506],[4.830524074363533,52.33521316936248],[4.830578590737207,52.33522645815197],[4.830633136598759,52.335239738067074],[4.83068766770913,52.335253026875385],[4.830742198739599,52.33526632464586],[4.830745007175124,52.335267011938875],[4.830753140070557,52.33526899155229],[4.8307512537616,52.33527199359996],[4.830750072544305,52.33527375864482],[4.83081410207513,52.33528895253851],[4.830816091512114,52.33528942925923],[4.830818841602997,52.335290089312686],[4.830820395568199,52.335287849665654],[4.831029303834949,52.335337707493544],[4.83112142303187,52.3352047253098],[4.831674533022763,52.33435909822817],[4.831675509572406,52.33435726929836],[4.831675764600593,52.334356821104855],[4.831676305910283,52.33435577207175],[4.831676531371652,52.33435534171503],[4.831677222314263,52.33435405970111],[4.831677573800842,52.33435293787428],[4.831677816181855,52.3343523278407],[4.831704254186559,52.334321884395266],[4.831731808664758,52.33429015193939],[4.83175937788685,52.33425841055845],[4.831786932398536,52.33422666910193],[4.831814486983165,52.33419491865145],[4.831842041303513,52.33416318616893],[4.831869595696802,52.334131444692424],[4.831897164721508,52.33409970327805],[4.831902434412775,52.3340936342687],[4.831928122176699,52.334069191113294],[4.831959883115273,52.33403895234515],[4.83197621625478,52.33402341714846],[4.83198250417076,52.33401687655896],[4.83198964264425,52.33400802110347],[4.831995693175216,52.334000517703096],[4.832002838884403,52.33398990965648],[4.832007037064136,52.33398270314994],[4.832010810799461,52.333975413761415],[4.832011143333813,52.333974633381594],[4.832015615010263,52.33396432736125],[4.832018873612522,52.3339536471486],[4.832021092445657,52.33394398666848],[4.832022002682048,52.333939245372],[4.832022842260855,52.33393428803644],[4.83202412294605,52.333924560239794],[4.832024868993595,52.33392004286835],[4.832026147157158,52.333911690195805],[4.832027292046903,52.33390343576392],[4.832028351608047,52.33389496522407],[4.832029277783139,52.33388660191215],[4.832030086703784,52.33387822906228],[4.832030778257681,52.33386985566171],[4.832030922928128,52.333867672301],[4.832031824161025,52.3338530893028],[4.832032385927374,52.33383632067233],[4.832032619281377,52.333831737980596],[4.832034447668792,52.333795804279426],[4.832036276053135,52.333759870577936],[4.832038104434412,52.333723936876176],[4.832039947483361,52.333688003242976],[4.832041761075398,52.333652078459075],[4.832043604118184,52.33361614482529],[4.832045417816464,52.33358021105355],[4.832047260853091,52.33354427741918],[4.832049103886625,52.33350834378452],[4.83205091757572,52.33347241001194],[4.832052760490736,52.333436485364004],[4.832054588844366,52.33340055165965],[4.832056417194929,52.33336461795501],[4.832058245542421,52.33332868425013],[4.832060073886844,52.33329275054492],[4.832061902340551,52.333256807852116],[4.832062426193062,52.333246591160965],[4.832063481278805,52.33322087297625],[4.832064972078573,52.333184946674436],[4.832066433759391,52.33314900226013],[4.832067910108287,52.33311305791432],[4.832069386342331,52.33307712255558],[4.832070862686225,52.333041178209236],[4.832072353585791,52.33300524291878],[4.832073829924671,52.332969298571896],[4.832075306036357,52.33293337219931],[4.83207676769976,52.33289742778305],[4.832078243918808,52.332861492422666],[4.832079335741359,52.33283518121226],[4.832078502374878,52.33282556033664],[4.832078450883385,52.33282498487471],[4.832077033147139,52.33280460283865],[4.832076339981878,52.33278963486863],[4.832076084978774,52.33278421401763],[4.832075606489991,52.33276380942444],[4.832075600961576,52.33275368911465],[4.832075582672664,52.332743415952066],[4.832076043091714,52.33272301576357],[4.832076284973467,52.33271775003657],[4.832076972963707,52.33270261777749],[4.832078372063297,52.33268223996832],[4.832078406684507,52.33268181770325],[4.832079247657501,52.332672051889624],[4.832080240502191,52.33266187334877],[4.832082068222271,52.3326459375328],[4.83208257827974,52.332641517918866],[4.832083908429698,52.33263134994819],[4.832085370500221,52.332621191584245],[4.83208694993317,52.332611033770846],[4.832087064085251,52.33261011754887],[4.832088809142416,52.33259727315455],[4.832090135966147,52.33258619739842],[4.832092206419135,52.33257431622724],[4.83209299813285,52.33256966425122],[4.832095512243651,52.33255867495542],[4.832100133277624,52.33254227588891],[4.832101496638119,52.33253883995014],[4.832106267443281,52.33252689055643],[4.832112680090074,52.332515047730745],[4.832119324155067,52.33250464404141],[4.832120431330421,52.332502923574104],[4.832128579294056,52.33249192475535],[4.832137736137419,52.3324812003033],[4.832145985346248,52.33247266462074],[4.832147798605877,52.33247079467242],[4.832160724526704,52.33245900936069],[4.832176136129911,52.33244672340148],[4.832180531859795,52.33244365221065],[4.832188642529245,52.33243798298954],[4.83220192083493,52.33242969558789],[4.832215941706296,52.3324218610586],[4.832222569117505,52.33241865652845],[4.832230554396722,52.332414802255876],[4.832241323035456,52.33241010719436],[4.832257954494282,52.33240351623533],[4.83227139346233,52.33239880673144],[4.832274502713479,52.33239771581171],[4.832305276317792,52.33238884534918],[4.832314579513497,52.33238636339994],[4.832324705256428,52.33238380441696],[4.832333344692432,52.332381606963814],[4.832342792005418,52.33237933240804],[4.832352282542329,52.33237712096895],[4.832365141113541,52.33237424224795],[4.832379343215081,52.33237068675111],[4.832420801404739,52.332360320453105],[4.832433678678895,52.33235711825087],[4.83247650477388,52.332346470736624],[4.832488072004923,52.33234361291174],[4.832532251333451,52.332332684111215],[4.832542479182459,52.332330170527335],[4.832588040971407,52.33231896956408],[4.832596958892888,52.33231679137269],[4.832643888358266,52.33230532716393],[4.832651467125517,52.33230347524144],[4.832699764490347,52.33229172981124],[4.832706018550835,52.33229022220227],[4.832755683589232,52.332278213524],[4.832760613169039,52.3322770322552],[4.832811645879584,52.33226476032742],[4.832815236310043,52.33226390533133],[4.832867665919688,52.332251379277615],[4.832869902644328,52.33225084149936],[4.832923714481409,52.332238061249676],[4.832924626730182,52.332237849815336],[4.83297937956379,52.332224903179764],[4.832979806235222,52.33222480631227],[4.833034175366938,52.332212037610596],[4.833037486044585,52.33221126218787],[4.833077688101298,52.33220159981503],[4.833088827239426,52.3321989466466],[4.833117933366355,52.332192000545575],[4.833143536751582,52.33218593681765],[4.833158221839899,52.332182464379535],[4.833198435711629,52.33217302671653],[4.833235808791943,52.33216433071686],[4.833253214138837,52.332160367684665],[4.833266279093601,52.33215739995398],[4.833307188600978,52.3321462937764],[4.833344594466499,52.33213614186921],[4.833361978271971,52.33213390438147],[4.833377246087591,52.33213193560956],[4.833419757891308,52.33212763168392],[4.833463576906249,52.3321232080311],[4.833474028049502,52.33212278058586],[4.833477829432089,52.33212265457021],[4.833484478296064,52.33212242503807],[4.833494942316209,52.33212214145635],[4.83350540543976,52.332121929772086],[4.833515867666767,52.33212178998523],[4.833526343667515,52.33212172216446],[4.83353665739929,52.33212172548599],[4.833547278309502,52.33212180214651],[4.833557751621078,52.33212195001804],[4.833568209366134,52.33212216971831],[4.833578666214953,52.33212246131606],[4.833589122167584,52.33212282481127],[4.833595119490758,52.33212307756672],[4.833599577224078,52.33212326020386],[4.833610016714258,52.33212376742523],[4.833620440638168,52.33212434647541],[4.833630848995865,52.33212499735444],[4.8336516484653,52.332126505748846],[4.83365348033977,52.3321266671117],[4.833664222529011,52.33212760715969],[4.833701236739942,52.332132391062586],[4.833741136514829,52.33213754796375],[4.833871390293237,52.332151369245864],[4.834026849210618,52.33216753720169],[4.834182538592485,52.33218287915067],[4.83433845876606,52.33219736812995],[4.83436730959323,52.332200307129284],[4.834372538707688,52.3322009876713],[4.834375731789163,52.33220140704163],[4.834378207146875,52.332201733180405],[4.834396267269791,52.332204091475695],[4.834419415863972,52.33220782171305],[4.834461621626913,52.332215137232154],[4.83451807148314,52.33222493699297],[4.834574550816762,52.332234727876624],[4.834631000834842,52.3322445185963],[4.834687465548188,52.33225430935753],[4.83474393006292,52.33226411806642],[4.834745716147346,52.332264423003636],[4.834752947724331,52.332265706074224],[4.834754148115746,52.332265918398534],[4.83482549444091,52.332278843419566],[4.834958939537811,52.33230390418348],[4.834990114395418,52.33230990973508],[4.834995851740186,52.332311015048795],[4.835091922967076,52.33232952887461],[4.835224665011046,52.33235570054633],[4.835274567117498,52.33236588283937],[4.835357059296385,52.33238271530144],[4.835488991928736,52.332410293987614],[4.835620562144071,52.33243871569137],[4.835676104193629,52.33245077559536],[4.835710863267245,52.33245880194569],[4.835745028619979,52.332467382763404],[4.835778596793196,52.3324767966551],[4.835811952342218,52.332486793754484],[4.835840374596253,52.332495914014174],[4.835891074099749,52.33251279568487],[4.83589183383453,52.332513050883556],[4.835893572578549,52.33251362521729],[4.835898087311172,52.33251512924225],[4.835935344897668,52.3325275352462],[4.835958900935071,52.33253510487699],[4.835970401223758,52.332538807506424],[4.835972563960333,52.33253950065584],[4.837047535044842,52.332866662882935],[4.837147002431164,52.33289661433426],[4.837301740802269,52.332942838862856],[4.837456823927676,52.33298849855697],[4.837612724707911,52.333033316989436],[4.837633032126115,52.33303906464474],[4.837639317324183,52.33304096330173],[4.837653437127212,52.33304522618918],[4.837674881295921,52.33305159028805],[4.837692101252461,52.333056676471756],[4.837707567197303,52.333061233214266],[4.837740298014195,52.33307080443743],[4.837745034592564,52.33307217460432],[4.837773088417022,52.33308030402568],[4.837798116676723,52.333087511623035],[4.837805923512727,52.33308974988535],[4.837839783671605,52.33309935328784],[4.837851363064535,52.333102615697385],[4.837877051302642,52.333109844317654],[4.837904728631919,52.333117576495845],[4.837914363741215,52.333120272628896],[4.837951721098356,52.33313062923428],[4.837958183926174,52.33313240286934],[4.837989123262764,52.333140923121135],[4.838011743506339,52.333147103873166],[4.838062613403937,52.33316101043027],[4.838065333130041,52.33316175106513],[4.838105368940267,52.33317263235737],[4.838118997253389,52.33317630870018],[4.838148183959238,52.3331841916302],[4.838172721316656,52.333190767722904],[4.838191029230645,52.333195679125275],[4.83821796524547,52.333202859533536],[4.838226519990144,52.333205128201314],[4.838260578156497,52.333214157181146],[4.838280408166357,52.33321937222871],[4.838303250549309,52.33322539217455],[4.838334341499882,52.33323352656273],[4.838345967864242,52.33323655545826],[4.838388528600122,52.33324733152429],[4.838442775416165,52.33326105584748],[4.83849700748415,52.33327478906509],[4.838540124000562,52.33328571145851],[4.838889684590507,52.33337853113597],[4.838982934242214,52.33340367969172],[4.839075663537362,52.33342939199529],[4.839167957286105,52.33345592908723],[4.839210189941359,52.333468357093835],[4.839230071096306,52.333474201365014],[4.839321092816823,52.33350158628807],[4.839409063032004,52.333528966001595],[4.839409881376422,52.33352923043667],[4.839456453448992,52.33354432086069],[4.839508330184156,52.33356112552832],[4.839560236410938,52.33357792132178],[4.839612113224772,52.33359472594395],[4.839663990077944,52.333611530543365],[4.839715866970449,52.33362833512],[4.839751274899917,52.33363979662226],[4.839753773736091,52.33364060809854],[4.840863708228602,52.33400192500383],[4.840899557653366,52.3340133252834],[4.840936892282141,52.33402445378636],[4.840940869713731,52.33402553270982],[4.840946353380999,52.33402701405023],[4.840950608564652,52.33402817514592],[4.840961042663817,52.334031548803324],[4.840976854421334,52.33403667294375],[4.841015189204001,52.33404521754931],[4.841070350419836,52.33405750683066],[4.841092356297516,52.334062416872776],[4.84111605615589,52.334067972863046],[4.84111655352928,52.334068092],[4.841120955982841,52.33406920883003],[4.841125183049088,52.33407027092367],[4.841141243167433,52.33407429068753],[4.841161575142958,52.33407930983354],[4.84117625951926,52.33408305360977],[4.841179521403487,52.33408385958896],[4.841189613930057,52.33408637780792],[4.841203027799983,52.334089639364244],[4.841216471897704,52.33409282915605],[4.841229946223162,52.33409594718331],[4.84123418918097,52.334096910480426],[4.841243480007597,52.33409900256868],[4.841257043909164,52.33410199517677],[4.841270652709208,52.334104916087924],[4.841279419253964,52.33410669118109],[4.841288976923233,52.33410855980159],[4.841289650237876,52.334108688737274],[4.841298579489909,52.33411035672591],[4.841308212172565,52.33411209087376],[4.84131787519213,52.33411374427047],[4.841327582998497,52.33411533495833],[4.84133730624982,52.33411686280198],[4.841346225032528,52.33411818920196],[4.841347059837919,52.334118309894464],[4.841352508907993,52.33411902709251],[4.84136214800214,52.334120239972556],[4.8413718026515,52.33412138102106],[4.841381487526933,52.334122450305706],[4.841391187957488,52.33412344775883],[4.841400903943115,52.33412437338041],[4.84140393761742,52.334124648019966],[4.841415398116037,52.33412568954075],[4.84142652250984,52.33412662165649],[4.841437662569151,52.3341274729531],[4.841448818072996,52.334128261405226],[4.841459989242239,52.33412896903828],[4.841462291139038,52.33412909649633],[4.841466072588599,52.334129410534295],[4.841501930020872,52.33413182285705],[4.841537783056943,52.33413339928235],[4.841573646586561,52.33413412190316],[4.841609414267293,52.33413428682693],[4.84199575619836,52.33413143882765],[4.842034169718476,52.33413120237458],[4.842048857506878,52.334131090287514],[4.842095033593156,52.33413075476025],[4.842107444963016,52.33413082991091],[4.842119620715782,52.33413097587732],[4.842131927624286,52.33413119434915],[4.842144204308569,52.33413148458292],[4.842156494781426,52.334131846781425],[4.842166188834108,52.334132170055824],[4.842171057811716,52.33413233628779],[4.842178067198113,52.334132638207585],[4.842192053982032,52.33413345760609],[4.842199046050533,52.33413397515233],[4.84220600789495,52.33413456446147],[4.842212954406828,52.33413520762639],[4.842219885034693,52.334135949583654],[4.842224397499041,52.33413647368379],[4.842226785548874,52.33413675431651],[4.84223813807958,52.33413822667512],[4.842244681308637,52.334139452188495],[4.842251194313879,52.334140749464815],[4.842257677095327,52.33414211850403],[4.842264115092393,52.33414355025129],[4.84228011764985,52.33414748870463],[4.84228317471756,52.334148248771086],[4.842295647211656,52.33415171258758],[4.842311828696668,52.334156613556225],[4.842312573715406,52.33415687763341],[4.842315086416343,52.334157761021594],[4.842352853168689,52.33417197388428],[4.842387747861296,52.33418589488912],[4.842421854541635,52.33420066609747],[4.842455473685841,52.334215713673515],[4.842488187782577,52.33423158395203],[4.842520311537034,52.33424773911389],[4.842538500394803,52.334257646513265],[4.842543265166979,52.33426032883672],[4.842557106671473,52.33426821194115],[4.842564565952015,52.33427250649602],[4.842572185291806,52.33427690964082],[4.842598339668967,52.33429170711019],[4.842684098430159,52.33434298176597],[4.84273881928222,52.33437569752897],[4.842793958071288,52.33440903534786],[4.842816128255892,52.334423311120396],[4.842856567242547,52.33444936407029],[4.842895827397696,52.33447463863203],[4.84289700638683,52.334475408018996],[4.842915725380953,52.33448756475008],[4.842935534688647,52.33450054438367],[4.842937179406959,52.33450162149791],[4.842955255430928,52.334513568545624],[4.842974902168667,52.33452664629064],[4.84297698316502,52.33452803998414],[4.842994460340972,52.3345397685641],[4.843015632252777,52.33455410262198],[4.843016417660902,52.334554663478094],[4.84305487730605,52.334581821744216],[4.843093322437293,52.33460897094292],[4.843118239688041,52.3346265757905],[4.843169127426934,52.3346644417153],[4.843182936026336,52.33467502992404],[4.843218867383459,52.3347025899509],[4.843237902336304,52.33471771405899],[4.843241022604798,52.334720505635474],[4.843274287913241,52.334750120585035],[4.84328298145805,52.33475787208544],[4.843312941472113,52.33477704597348],[4.843323437785961,52.33478375418348],[4.843335505737135,52.334792716568046],[4.843373654387555,52.334820142932806],[4.843412649796468,52.334846719334514],[4.843452554753856,52.334873308890444],[4.843493394386834,52.33489905787341],[4.843872812931289,52.3351352116248],[4.843881169126014,52.335140570774506],[4.843921757203079,52.33516653415898],[4.843962345327616,52.335192497529455],[4.844002933389684,52.33521846987326],[4.844043521609177,52.33524443321574],[4.844084109876142,52.33527039654423],[4.844124698080662,52.335296368846045],[4.844165286442583,52.33532233214656],[4.844205874742076,52.335348304420386],[4.844214566149546,52.33535385382819],[4.844246034543569,52.3353745263724],[4.844286046800066,52.335400819536005],[4.844326073775295,52.33542711275333],[4.844366100797935,52.33545340595702],[4.844406113196623,52.33547969907983],[4.844446140314074,52.3355059922563],[4.844486152807555,52.335532285351874],[4.844526180019813,52.33555857850115],[4.844566207279486,52.3355848716368],[4.844606219915161,52.335611164691514],[4.844646247159829,52.335637466787226],[4.844668633463678,52.335652165623046],[4.84467726718126,52.3356576428292],[4.84468527628876,52.33566260486615],[4.844686718108384,52.335663483293615],[4.844693359304195,52.33566752230244],[4.84470153100879,52.33567238621789],[4.844709791292743,52.3356772055998],[4.844718125704232,52.33568196240634],[4.844726534023645,52.335686674612084],[4.84472933238249,52.33568820637981],[4.844735031142009,52.335691324309686],[4.844743602168289,52.335695929406434],[4.844752247322073,52.33570047192769],[4.844760966383763,52.33570496984812],[4.844769759572934,52.33570940519306],[4.844774003600216,52.33571150083055],[4.844778641451221,52.335713787017035],[4.844787582785526,52.33571810619823],[4.844796598027701,52.33572238077851],[4.844805687397304,52.33572659278323],[4.844814850894321,52.335730742212355],[4.844820644280722,52.33573332130346],[4.844824073737508,52.33573483798596],[4.844867009542591,52.3357548708613],[4.844867388804977,52.33575505235564],[4.844914088811846,52.3357768281241],[4.844930589049934,52.335784534386015],[4.844945450809037,52.33579184666169],[4.844960565500021,52.335798872484716],[4.844975722893228,52.33580600635513],[4.844990747809076,52.33581317556777],[4.845005698713957,52.33582039836618],[4.845006792599825,52.335820933658844],[4.845035393162362,52.33583500478767],[4.845050136596192,52.3358423973981],[4.845052411411412,52.3358435492716],[4.845064791347647,52.335849843527235],[4.845079386759711,52.33585734330945],[4.845093893489424,52.335864896610396],[4.845097304783081,52.335866700811415],[4.845108326098566,52.335872512484606],[4.845122684806597,52.33588017295754],[4.845138689330138,52.33588882962648],[4.845141369356543,52.33589044173246],[4.845183259603048,52.33591561971392],[4.84521394922846,52.335934050465234],[4.845225164678285,52.3359407887604],[4.845267055129521,52.335965957724774],[4.845308960190115,52.33599113572872],[4.84535085073638,52.336016304663296],[4.845392755892032,52.33604148263746],[4.845434661095227,52.33606666059672],[4.845476551784041,52.336091829486584],[4.845518457082296,52.33611700741606],[4.845560347866138,52.336142176276134],[4.845602253369077,52.33616734518847],[4.845644129466725,52.33619252293893],[4.845686034955097,52.33621770080877],[4.845727925928988,52.33624286960928],[4.84576983151242,52.33626804744936],[4.845811722471761,52.33629322520735],[4.845853628369406,52.336318385043],[4.845895519423784,52.336343562771255],[4.845937425197341,52.33636874055167],[4.845979316346773,52.33639391825012],[4.846021222324941,52.336419087013454],[4.846063113569418,52.33644426468212],[4.846105019533109,52.33646944240294],[4.846146911091668,52.336494602067184],[4.846162088726675,52.33650372218022],[4.846188817150416,52.336519779758206],[4.846230708584987,52.33654495736728],[4.846272614848296,52.33657012604121],[4.846314521049646,52.336595303687496],[4.846354650263621,52.336619412636274],[4.846356397845583,52.336620490172145],[4.84636404369555,52.33662518978681],[4.84637085884053,52.3366294272264],[4.846377585299535,52.33663371818712],[4.846384223072558,52.33663806266891],[4.846390772269067,52.33664245168453],[4.846396767224223,52.33664656853274],[4.846397247451341,52.33664689428837],[4.846403619385335,52.336651381358955],[4.846409902742796,52.3366559129634],[4.846416112195464,52.336660489168814],[4.846422218290372,52.3366651188283],[4.846428235918175,52.33666978403448],[4.846434077705034,52.33667443046109],[4.846445787451807,52.33668398407937],[4.846451480882941,52.33668876464423],[4.846457085846904,52.3366935807557],[4.846462587562457,52.33669844133417],[4.846468116871576,52.33670344584327],[4.846473310810704,52.3367082780514],[4.846478532343363,52.33671325419018],[4.846483650627541,52.33671827479594],[4.84648866577267,52.33672333088145],[4.846493577778716,52.33672842244666],[4.84649838664566,52.33673354949158],[4.846498951402984,52.336734163242674],[4.84650309237348,52.33673871201621],[4.846507709633932,52.33674391008766],[4.846512209083424,52.33674914357182],[4.846516605503152,52.33675440354843],[4.846519525757039,52.33675798504896],[4.846523585274538,52.33676319854693],[4.846525794600727,52.336766120689404],[4.846527541652703,52.33676844752476],[4.846531380329151,52.33677372292802],[4.846535130647434,52.33677902489089],[4.846538763263936,52.33678435327926],[4.846542278069188,52.33678971708043],[4.846545689844387,52.33679510737419],[4.846548279553945,52.33679932549764],[4.846548998698933,52.336800515173195],[4.846552189851558,52.336805949397714],[4.846558264379488,52.33681678947697],[4.846561119177106,52.33682213228652],[4.84656385638206,52.33682749253431],[4.846566475884886,52.33683287920772],[4.846566733192918,52.336833437626986],[4.846568992466791,52.33683828338642],[4.846571391455918,52.33684370500346],[4.846573687414619,52.3368491531131],[4.846575851218078,52.336854609606746],[4.84657791210046,52.336860083605735],[4.84657985538991,52.33686557504304],[4.846580775574003,52.33686832951438],[4.846581681086382,52.33687108391867],[4.846583403861663,52.33687661029968],[4.846584994590912,52.3368821360774],[4.846586482289464,52.336887688347765],[4.846588256649607,52.33689500353694],[4.846589325659035,52.336901201016225],[4.846589733752701,52.33690383630653],[4.846590277294065,52.336907397959266],[4.846590560782158,52.33690942150979],[4.846591126117057,52.336913603420356],[4.846591842784286,52.33691981726552],[4.846592442076965,52.336926030574446],[4.846592938557466,52.33693225240146],[4.846593302991474,52.336938473625196],[4.846593361250208,52.33693971420802],[4.84659354994136,52.33694470330005],[4.846593694188351,52.336950932505665],[4.846593706388697,52.33695716110805],[4.846593572098375,52.33696457543097],[4.84659355397921,52.33697208915043],[4.846593481084734,52.33697566596251],[4.846593418485145,52.33697960233365],[4.846593151053679,52.33698710592635],[4.846592780809633,52.336994618037096],[4.846592293299931,52.33700212062433],[4.84659168830567,52.3370096316626],[4.846591488388667,52.33701159009004],[4.846590817803915,52.337018462694765],[4.846586958328811,52.33704743072292],[4.846583116912716,52.33707612021146],[4.846582164276844,52.33708326116153],[4.846577370217034,52.33711909159963],[4.846572576149375,52.337154922037314],[4.846567782073876,52.33719075247455],[4.846562987990529,52.33722658291131],[4.846558193899339,52.3372624133476],[4.846557741281517,52.33726584461978],[4.846553414472269,52.337298243850505],[4.846548620365402,52.33733407428588],[4.846543826250689,52.33736990472082],[4.846539032128131,52.33740573515526],[4.846534237997729,52.33744156558928],[4.846529443859479,52.337477396022834],[4.846524649713388,52.33751322645595],[4.846519855559451,52.3375490568886],[4.846515061397668,52.337584887320745],[4.846511590287186,52.337610873168245],[4.846510223321264,52.33762070856408],[4.84650525307874,52.33765653819084],[4.846500297609631,52.337692358896916],[4.846495327569754,52.33772817054813],[4.846490371974979,52.33776400024053],[4.846485401809415,52.337799820878125],[4.846480431635722,52.33783564151526],[4.846475476126061,52.33787146221897],[4.846470491154506,52.33790729177538],[4.846469846805483,52.33791200742614],[4.846465447814444,52.337943094101284],[4.846460360230658,52.33797891420012],[4.846455287420214,52.33801472537826],[4.846450214492023,52.3380505455432],[4.846445141555537,52.33808636570766],[4.846444082666943,52.33809379377938],[4.846441706708839,52.33811057213208],[4.846440068720221,52.338122176884355],[4.846434981204362,52.33815798799348],[4.846430902645941,52.33818685614375],[4.846430494914556,52.33819382881308],[4.846428984535788,52.33822025502973],[4.846444455243892,52.338221026774804],[4.84650296597638,52.3382238916079],[4.84656147660709,52.33822676539934],[4.846619957900936,52.33822963902782],[4.84667846865642,52.33823250377412],[4.846736979310164,52.338235377478824],[4.846788099191074,52.33823788485445],[4.846795475299311,52.338238251087596],[4.84683767936364,52.33824031327478],[4.84685398607779,52.33824111574711],[4.846858546750212,52.33824133430349],[4.846854814327878,52.338268307621895],[4.846853977649881,52.33827436157818],[4.846849007719038,52.33831018222772],[4.846848380154671,52.338314727188504],[4.846844111141634,52.33834600321182],[4.846839214446843,52.33838183318278],[4.846834317853422,52.33841765416593],[4.846829406470263,52.33845348406892],[4.84682450986081,52.338489305051155],[4.84681961324335,52.338525126032934],[4.8468147165085,52.338560956001494],[4.846809819875023,52.338596776982335],[4.846804923124149,52.33863260695002],[4.846800026474654,52.3386684279299],[4.846795129707763,52.338704257896616],[4.84679023304225,52.33874007887559],[4.846785336368728,52.33877589985407],[4.846780439577806,52.33881172981937],[4.846775542888266,52.338847550796956],[4.846770646081323,52.338883380761345],[4.846767005413993,52.338910039919995],[4.846765778720769,52.33891920187197],[4.846760969932919,52.338955032237486],[4.846756161137195,52.33899086260252],[4.846751337661066,52.339026692900084],[4.846746528849596,52.339062523264204],[4.846741720030256,52.33909835362787],[4.846736911203047,52.3391341839911],[4.84673210247737,52.339170005366526],[4.846727293634426,52.33920583572882],[4.846722484783609,52.33924166609064],[4.846717675924927,52.33927749645202],[4.846713126108917,52.33931133270502],[4.846712852385739,52.3393133267459],[4.846708058183951,52.33934915717337],[4.846707541176015,52.33935305551608],[4.846704314961861,52.339377002248725],[4.84670224966216,52.33939237093702],[4.846711179512818,52.33939288807603],[4.846886213956791,52.33940298076516],[4.846921773400446,52.33940493168976],[4.846978261895572,52.33938117418198],[4.847045576931854,52.33935399677563],[4.847082205147749,52.33933804883848],[4.847086852722832,52.33933595791838],[4.84709208840573,52.33933377081653],[4.847097454611254,52.33933171013931],[4.847102922212811,52.33932975777818],[4.847108490882448,52.339327940695064],[4.847114175511491,52.33932624098225],[4.847119990881937,52.33932464971945],[4.84712596612044,52.33932318501506],[4.847133233643773,52.33932163633011],[4.847140425617005,52.33932026705588],[4.847147659967912,52.33931903279154],[4.847154980386507,52.33931796069987],[4.847162108092803,52.339317049508715],[4.84716867670828,52.33931626159485],[4.847175508228495,52.339315573746156],[4.847182396908665,52.33931501198706],[4.84718929851232,52.33931459409133],[4.84719621325815,52.33931430208428],[4.847203140927593,52.33931415394058],[4.847210243029001,52.339314141409375],[4.847215626464723,52.33931428281578],[4.847220803390557,52.33931451315753],[4.847226023241316,52.33931483357293],[4.847231652286377,52.33931529067218],[4.847237747030326,52.33931606446898],[4.84724348897545,52.339316890582474],[4.847249155918131,52.33931785117047],[4.84725148362083,52.339318293205494],[4.847254733622969,52.339318910216804],[4.847260178181384,52.33932005853332],[4.847271562562002,52.339322654022524],[4.847278130575403,52.33932432875627],[4.847284623477442,52.339326146951755],[4.847290938778285,52.33932809016567],[4.847297178858566,52.339330185828665],[4.847303299700426,52.33933243373985],[4.84730557770357,52.33933334291252],[4.847309257613842,52.339334806736574],[4.847315081725551,52.339337322927314],[4.847320757581511,52.339339964270586],[4.847326241163816,52.33934273056552],[4.847331562036326,52.33934560397148],[4.847331955356398,52.339345839448576],[4.84733673454385,52.33934861151735],[4.847341700214383,52.339351734960694],[4.84734647393912,52.33935495639401],[4.847351070172147,52.33935829385876],[4.847355459677437,52.33936173823382],[4.847359613437498,52.33936526242346],[4.847363575142428,52.33936889359039],[4.847367301211347,52.339372595584685],[4.847370820770976,52.33937638651473],[4.847374104585242,52.33938025725947],[4.847377152763377,52.339384198831574],[4.84737995063267,52.33938821116419],[4.847382513084274,52.33939227634959],[4.847384840118132,52.33939639438782],[4.84738690238886,52.33940056514509],[4.847388729350994,52.33940477976786],[4.847390276877198,52.33940904704274],[4.847391574968356,52.33941331317978],[4.847403671403362,52.339521482565175],[4.847456981539763,52.340252829002324],[4.847462155782866,52.34027139442342],[4.847475283559129,52.34029475965026],[4.847483941512659,52.34030800220821],[4.847499913045653,52.340324369921404],[4.847519348874081,52.34033821887275],[4.847544197008074,52.34034984555333],[4.847563801368902,52.34035948897763],[4.847590162192366,52.34036859697591],[4.847665597395011,52.34037848596014],[4.848440699337915,52.340423019559715],[4.848570732910991,52.34044889414624],[4.849467036366598,52.34065267007143],[4.849602168836086,52.34067321895091],[4.853109470069657,52.3411399004574],[4.854292999943939,52.34129437030862],[4.854433884408193,52.34130428003718],[4.854726078072551,52.34131626360524],[4.855082579059879,52.341309445557435],[4.85530069214337,52.34129497607295],[4.857418828850626,52.341127345898045],[4.857690569695295,52.341105840953986],[4.857617926740743,52.34074225648603],[4.857613650250298,52.34072064868186],[4.857609593860661,52.34069904186237],[4.857605757678715,52.340677427040255],[4.857602141704142,52.34065580421559],[4.857598746043828,52.34063416440113],[4.857595570804665,52.3406124986095],[4.857592600884422,52.34059084272433],[4.857589836604424,52.34056916978373],[4.85758732198356,52.34054747998464],[4.857585012895091,52.34052578211747],[4.857582909338717,52.340504076182164],[4.857581040553011,52.34048237129739],[4.857579377405981,52.34046064935726],[4.85757793435593,52.34043892840197],[4.857576711724167,52.34041718146971],[4.857575691498882,52.340396918428304],[4.857574832570342,52.34037666509642],[4.857574164498748,52.34035640363085],[4.857573643157652,52.340336142821855],[4.857573283327048,52.340315873747876],[4.857573099358061,52.340295623436404],[4.857573117437529,52.3401477294504],[4.857575176488079,52.33936623237049],[4.857575861957589,52.339301388529755],[4.857584350722542,52.33918881849154],[4.857596170104752,52.33909594661805],[4.857607772068381,52.338904432760856],[4.857608096698028,52.33877019256176],[4.857608416152614,52.33874341037271],[4.857608472557707,52.33868947488783],[4.857608645286919,52.3386626920417],[4.857611339732501,52.33830147575182],[4.85761110119808,52.33819845660773],[4.857612646951075,52.33781052342291],[4.857613261980805,52.33778356279565],[4.857613025039194,52.337729617],[4.857613493346182,52.337702655715795],[4.857612693541841,52.337665146074485],[4.857612937145485,52.33762995995324],[4.857614045214583,52.33737221296349],[4.857579655407086,52.336031115965675],[4.85756878791101,52.335458724420974],[4.857565714096932,52.33535109077615],[4.857531262786429,52.335097804234806],[4.857516853974389,52.33498471817617],[4.857477268098536,52.33474741588461],[4.857400760253554,52.334339854160575],[4.857411277225601,52.333689544037526],[4.857439463940512,52.332968650843725],[4.857446477128425,52.332588606062984],[4.857447074664245,52.33256557300022],[4.85744632501928,52.332510348584755],[4.85743348136042,52.33227598804897],[4.857438410476133,52.33198946995921],[4.857439323050557,52.331936338149816],[4.857450593646695,52.33104687458976],[4.85717276290556,52.331045387710574],[4.856482257100391,52.3310416814235],[4.856483160308829,52.33097346802769],[4.856484523751261,52.330910936988694],[4.856484697275569,52.33089150613017],[4.856678499477527,52.3308937234031],[4.856678549019978,52.330884663916784],[4.856680568147214,52.330526517875185],[4.856601965017376,52.3301346835071],[4.856603113614077,52.33012572781386],[4.856607158119177,52.33009418077106],[4.856614381575451,52.330048276479],[4.856622335328185,52.32999772876442],[4.856623542340378,52.329990022637986],[4.856628810903877,52.32998863517731],[4.856640533189319,52.32994191519006],[4.856647032986458,52.329895180771615],[4.856657640433201,52.32984230812241],[4.8566691367307,52.329785026443574],[4.856674737080258,52.32975709048373],[4.856682204136115,52.329727625978116],[4.856693600147593,52.32972540315858],[4.85671005342159,52.329652280218355],[4.856723175799797,52.329593954249425],[4.856727808006236,52.329573374960646],[4.856738854272286,52.32953533415262],[4.856755853279046,52.329519681697505],[4.856753062513864,52.32946715342156],[4.856751887774384,52.32942794333432],[4.856750784129502,52.32938892230947],[4.856749627964332,52.329348157414],[4.856749606891085,52.32934746525827],[4.856763259306527,52.32934546825538],[4.856768527155473,52.32931465469965],[4.856768927600144,52.32929340931493],[4.856790534888349,52.32924565508464],[4.856792997687928,52.32923966226866],[4.856793827218458,52.32923162189835],[4.856794920721764,52.32921130536441],[4.856803553744855,52.32918615123584],[4.856808759738381,52.32918630938986],[4.85681217508694,52.329149690390416],[4.85681377335097,52.32913624280481],[4.856819751474865,52.329086486128055],[4.856819833404494,52.32908208246886],[4.85681996481568,52.329077220653204],[4.856820081557565,52.32907235877178],[4.856826048268513,52.32903952608771],[4.856827352035054,52.32903108339126],[4.856844493156788,52.32892120336701],[4.856850736064192,52.328881208634755],[4.856850114913694,52.328858286936416],[4.856851030842948,52.32883441043208],[4.856848175717108,52.3288339482439],[4.856852223836159,52.32880821631468],[4.85686112602346,52.32880719565543],[4.856867296283673,52.32875608267535],[4.856867560240521,52.32874749151244],[4.856869366684911,52.328688350833566],[4.856866565200884,52.32868831131326],[4.856867297759726,52.328630648808954],[4.856867474177942,52.32862815997635],[4.856869770469809,52.32859310882239],[4.856870022627573,52.32858919126746],[4.856867606841737,52.32855316628482],[4.85686728189421,52.32854843724026],[4.856866130303363,52.32851342455843],[4.856864830332936,52.32847363868406],[4.856864730222505,52.32843410984614],[4.856864711246838,52.3284270992691],[4.856864065960909,52.328393913381305],[4.856863890059379,52.32838530227058],[4.85686445017024,52.328349452405725],[4.856853564174477,52.32834830709838],[4.85685443463907,52.32829506721118],[4.856854655581748,52.32828147863206],[4.856855584283859,52.328224589954104],[4.856855819143512,52.32821106435185],[4.856856745695968,52.328154355419684],[4.856856974685954,52.32814009279049],[4.856841471159806,52.327475284770856],[4.856846942240949,52.32738320219765],[4.856847992709027,52.327344370570195],[4.856848388740157,52.32732963233347],[4.85684654221275,52.32731350890918],[4.856845095169584,52.327293414662485],[4.856843878674982,52.32727244064352],[4.85684212579572,52.327242332602786],[4.856841836185509,52.32722236038555],[4.856841561187022,52.32721222090052],[4.856841114627517,52.327195564482416],[4.856841367042088,52.327151084930044],[4.856843245306104,52.32710312539398],[4.856843426390608,52.3270904174387],[4.856844385374074,52.327029762989824],[4.856844422257349,52.32702790267792],[4.856841653680267,52.32697597666117],[4.856838359996571,52.32691397295172],[4.856835251651758,52.32685610446621],[4.85683337276239,52.32683409387751],[4.856834046509733,52.326804697761105],[4.856822258601243,52.326804177553335],[4.856822408249099,52.32679778788901],[4.856823752360288,52.326741736923566],[4.856823687243006,52.32673859089702],[4.856822491055167,52.326681521908334],[4.85682220895033,52.32667689191988],[4.856818670105366,52.32661945291635],[4.856825812034469,52.32661961974901],[4.856825696687273,52.326616994790456],[4.856823047890866,52.32655627023643],[4.856821514572586,52.326521291780296],[4.856821656920527,52.32648111689143],[4.856822103482098,52.32634790151714],[4.856822302725861,52.32628699199503],[4.856822346611351,52.326275946168344],[4.85682306606171,52.3262316664335],[4.856823321309159,52.326216433232744],[4.856820154489206,52.32611555778524],[4.856818566017282,52.32607782880759],[4.856814616386349,52.326040053293625],[4.85681066633274,52.32600231372859],[4.856810192365384,52.3259977817453],[4.85681069170109,52.32596456502114],[4.856809935287726,52.325925949978576],[4.856808611048749,52.325858724175845],[4.856809107123112,52.32581963839303],[4.856809762245292,52.32576723338125],[4.856810572086479,52.32570309996386],[4.856811216902025,52.32565155773492],[4.85681177918723,52.32560692676542],[4.85681145186703,52.325599941765624],[4.85680907590879,52.32554831409122],[4.856806699097299,52.32549675831495],[4.856804984941473,52.32545972981857],[4.856805019678451,52.32545804925279],[4.856805796984292,52.3254199803509],[4.85680629456937,52.325395508759726],[4.856809239747718,52.32536875624796],[4.856812859181106,52.325335904031725],[4.856814964092358,52.32531318328193],[4.856818179071222,52.325278576628],[4.85681849026433,52.32526111469693],[4.856818581844188,52.3252559021743],[4.856816221091932,52.32523125598802],[4.856813217238881,52.325205186843704],[4.856811968088075,52.3251943239622],[4.85681113460549,52.325136366788186],[4.856809314923522,52.32510203416103],[4.856804822811301,52.325017564502055],[4.856802968364454,52.32498245876591],[4.856803027584608,52.32495170272381],[4.856803157728002,52.32489658102912],[4.856804464914517,52.32484239035568],[4.856805606928765,52.32479466118131],[4.856805664918412,52.32479226169428],[4.856810169022791,52.324792192008026],[4.856809594791976,52.324751834136784],[4.856809536546412,52.324748112919536],[4.856809509606326,52.32474668373592],[4.856802043246991,52.32474668621531],[4.856802994260295,52.32470266815219],[4.85681048994788,52.324702665804224],[4.856810458857015,52.324700355795926],[4.85680966806788,52.32464742299731],[4.856808891948193,52.324594490263934],[4.856808161553932,52.3245450989349],[4.856800961287443,52.32454493183852],[4.856800951161871,52.324543322973874],[4.856800810776508,52.3244912019929],[4.856800670498573,52.324439072024084],[4.856800604513046,52.324417572869265],[4.856800222091305,52.324386949661154],[4.856799597779752,52.32433481752129],[4.856799341616406,52.32431450390538],[4.856798609532697,52.32428368139706],[4.856797334837577,52.3242307374368],[4.856796974574608,52.324215456531654],[4.856795236575492,52.324179200871136],[4.856792122987827,52.32411442069734],[4.856789886196407,52.32402535038151],[4.856786669633323,52.32396428171278],[4.856787321023846,52.32390727490249],[4.856790658060006,52.3238243592638],[4.856801838047981,52.323824130763214],[4.856801305781344,52.32380728520538],[4.856799585523664,52.323753575278076],[4.856797953419841,52.32370231043207],[4.856796320353726,52.32365112647151],[4.856794700563509,52.32360005941162],[4.856793055627272,52.32354864171348],[4.856791435307539,52.32349761958917],[4.856789640732305,52.32344153654101],[4.856787871096121,52.323385822104605],[4.856786076422082,52.323329748042504],[4.856784306901636,52.32327402461749],[4.856782620811621,52.32322114171679],[4.856776116482593,52.32307795456568],[4.856776897418125,52.32305432010111],[4.856777905217957,52.32299694637805],[4.856778047952345,52.32298867822374],[4.856760712004316,52.32298853758402],[4.856757434597563,52.32286992860534],[4.856751268234984,52.32276477941337],[4.856750591236613,52.32268635764573],[4.856750559832755,52.32266196456033],[4.856750786923298,52.322661372382385],[4.856746033125332,52.32264797719116],[4.856746039002458,52.3226155491612],[4.856746024349207,52.322571329018416],[4.856746024255608,52.322527117928345],[4.856746029306592,52.32250458548449],[4.856745534683649,52.32245388296992],[4.856744081618285,52.322310251076516],[4.856740126289186,52.322195602670924],[4.856731892385373,52.32188283450171],[4.856728985083778,52.321772549878844],[4.856722266482901,52.321772618619285],[4.856721487031224,52.32172488978917],[4.856721392237798,52.32171931691445],[4.856720743201175,52.32168891718976],[4.856719407713608,52.321626337983304],[4.856718720618806,52.32159421242553],[4.856718596599682,52.32158863043177],[4.856718664702808,52.32155590607593],[4.856720836567563,52.321555816948496],[4.856716376926364,52.321404801533234],[4.856745344408218,52.32140364616177],[4.85676293915972,52.32140294311076],[4.856765350822016,52.32133977851816],[4.856746362185892,52.3213380665831],[4.856743618219381,52.3212141032147],[4.856742504174521,52.32116368552031],[4.856740817282518,52.32108754210688],[4.856739014924888,52.32100632904223],[4.856736640479543,52.32089932734546],[4.856756751921679,52.320897889591166],[4.856755236255641,52.32085285379936],[4.856735588440837,52.320852316311026],[4.856735176924945,52.320837646337715],[4.856730960189572,52.3206871712604],[4.856729500864886,52.320634963435396],[4.856729448996576,52.32063316563804],[4.856727395516839,52.320559474248675],[4.856727343648691,52.32055767645125],[4.856726643822933,52.32053275906472],[4.856728826780802,52.320431017694695],[4.856732540571114,52.32025757832229],[4.856732598879861,52.32025515187108],[4.856732544974335,52.320249839825],[4.856730441940379,52.32006729666079],[4.856712744514136,52.31990345913035],[4.856712261661229,52.31983335192749],[4.856702250233888,52.31961544214171],[4.856702471006093,52.319553966403],[4.856702477804475,52.31955216886828],[4.856702760763831,52.319473203098205],[4.856701241527449,52.319244240399996],[4.856700040393567,52.319198666733485],[4.856691954854954,52.31913391812375],[4.856662857676611,52.31887341029239],[4.856639595499413,52.318704002265015],[4.856625823830035,52.318589768127104],[4.856616441520892,52.31851081292001],[4.85661066043883,52.31844347714867],[4.856557978647958,52.3181868091276],[4.856482467439176,52.3178498762059],[4.85647023616589,52.31778845243579],[4.856453745348674,52.31770423439388],[4.856435855194028,52.31765490082351],[4.856403219969591,52.31758761530982],[4.856388705218116,52.31751233103626],[4.856384295893505,52.31747629701766],[4.856379462030279,52.31744019817887],[4.856376019518547,52.317414082073945],[4.856371432249925,52.317388032734684],[4.856371378205749,52.31738764601548],[4.856371309388784,52.31738726821781],[4.856371255344611,52.317386881498635],[4.856371186635032,52.31738649471361],[4.856371132483477,52.31738611698177],[4.856371063773899,52.31738573019676],[4.856370995064323,52.31738534341179],[4.856370926247364,52.31738496561411],[4.856370857537791,52.31738457882912],[4.856370788828218,52.317384192044116],[4.85637073467667,52.31738381431227],[4.856370651301693,52.31738342746149],[4.856370582592123,52.31738304067647],[4.856370513775173,52.31738266287883],[4.856370445065606,52.31738227609383],[4.856370376356041,52.31738188930882],[4.856370292873687,52.31738151144537],[4.856370224164124,52.317381124660315],[4.856370140681773,52.31738074679689],[4.856370071972211,52.317380360011896],[4.856369988597247,52.31737997316107],[4.856369905114901,52.3173795952976],[4.856369836405343,52.317379208512634],[4.856369752923001,52.31737883064916],[4.856369669548041,52.31737844379834],[4.856369586065699,52.31737806593489],[4.856369502690743,52.31737767908405],[4.856369419315787,52.31737729223328],[4.856369335833453,52.317376914369795],[4.856369252458498,52.317376527519016],[4.856369168976165,52.31737614965552],[4.856369070935812,52.31737576273891],[4.856368987453481,52.317375384875454],[4.856368904078534,52.317374998024654],[4.856368805930804,52.31737462009541],[4.856368707890456,52.31737423317873],[4.85636862440813,52.3173738553153],[4.856368526367787,52.317373468398685],[4.856368442885467,52.31737309053523],[4.856368344845126,52.3173727036186],[4.856368246697405,52.31737232568932],[4.856368148549683,52.31737194776005],[4.856368050509349,52.317371560843426],[4.856367952361631,52.317371182914194],[4.8563678543213,52.31737079599756],[4.856367756173587,52.31737041806827],[4.856367643360472,52.31737004007321],[4.856367545320146,52.31736965315659],[4.856367447172438,52.31736927522732],[4.856367334466711,52.3173688882449],[4.856367236319008,52.317368510315625],[4.856367123505904,52.317368132320524],[4.856367025465584,52.31736774540393],[4.856366912652485,52.31736736740885],[4.856366799839386,52.31736698941376],[4.856366701691688,52.31736661148449],[4.856366588985978,52.31736622450206],[4.856366476172882,52.31736584650698],[4.856366363359793,52.317365468511916],[4.856366250654087,52.31736508152947],[4.856366137840999,52.317364703534416],[4.856366025027913,52.317364325539295],[4.85636591221483,52.317363947544244],[4.856365784736347,52.31736356948334],[4.856365672030651,52.317363182500934],[4.856365559217573,52.317362804505834],[4.856365431739097,52.317362426444966],[4.856365318926024,52.31736204844989],[4.856365191447551,52.317361670388976],[4.856365063969083,52.317361292328094],[4.856364951263398,52.317360905345666],[4.856364823784933,52.31736052728479],[4.856364696306471,52.317360149223866],[4.856364568828011,52.317359771163005],[4.856364441349551,52.3173593931021],[4.856364313871095,52.31735901504122],[4.85636418639264,52.317358636980344],[4.856364058914188,52.317358258919455],[4.856363931435739,52.31735788085859],[4.856363803957291,52.317357502797655],[4.856363661813448,52.31735712467098],[4.856363534335005,52.31735674661009],[4.856363406856563,52.317356368549184],[4.856363264712727,52.317355990422485],[4.856363137234291,52.317355612361624],[4.856362995090459,52.317355234234874],[4.856362852946629,52.317354856108196],[4.856362710695418,52.31735448696884],[4.85636258321699,52.31735410890798],[4.85636244107317,52.317353730781264],[4.856362298929349,52.31735335265456],[4.85636215678553,52.31735297452785],[4.856362014641716,52.317352596401165],[4.856361872390519,52.31735222726177],[4.856361730246708,52.31735184913506],[4.856361573437506,52.31735147094259],[4.8563614312937,52.3173510928159],[4.856361289042513,52.31735072367652],[4.856361132233316,52.317350345484016],[4.856360990089517,52.31734996735731],[4.856360833280328,52.31734958916479],[4.856360691029151,52.31734922002549],[4.856360534219965,52.31734884183293],[4.856360391968791,52.31734847269354],[4.85636023515961,52.31734809450107],[4.856360078350436,52.31734771630859],[4.856359921433874,52.31734734710342],[4.856359764624701,52.31734696891089],[4.856359607708146,52.317346599705715],[4.856359450898979,52.31734622151321],[4.856359293982428,52.31734585230805],[4.856359137173267,52.31734547411554],[4.856358980256723,52.317345104910366],[4.856358808782173,52.31734472665203],[4.856358651865635,52.31734435744688],[4.856358495056483,52.31734397925437],[4.856358323474556,52.317343609983375],[4.856358166558025,52.317343240778236],[4.856357995083488,52.31734286251987],[4.856357823501571,52.31734249324892],[4.856357666585047,52.31734212404377],[4.856357495110519,52.31734174578544],[4.856357323528608,52.317341376514456],[4.856357151946701,52.3173410072435],[4.856356980364797,52.3173406379725],[4.85635680889028,52.31734025971418],[4.856356637308382,52.31733989044316],[4.856356465726487,52.317339521172215],[4.856342759238087,52.31730339150372],[4.856313100403857,52.31722516315077],[4.856291773397282,52.31716891147549],[4.856283663694153,52.31714676501697],[4.856264235206622,52.317093649621185],[4.856267213553503,52.31709355513444],[4.85621839155174,52.31694127089867],[4.856214285731894,52.31693017047411],[4.856170900430322,52.31681263959498],[4.856158953278583,52.31678026572361],[4.8561300437905,52.31670197776374],[4.856096370053394,52.31661124722282],[4.856083967317822,52.3165666927852],[4.856115654727884,52.316516862705036],[4.856095016650188,52.31641529743006],[4.856091722807177,52.31640988994284],[4.856088105258774,52.3164045708805],[4.856085033595936,52.31640020697907],[4.856081167011116,52.31639609116784],[4.856075622269131,52.31639249810399],[4.856069220077343,52.31638947641129],[4.856062340975585,52.316387090713015],[4.856055194250116,52.31638500939901],[4.856048574501032,52.31638301134119],[4.856041895232676,52.31638108491841],[4.85597216526895,52.31636216699259],[4.855936412444406,52.31635582280462],[4.855901948124137,52.316347201483424],[4.855877350011532,52.316340134422205],[4.8558769700097,52.316340024861454],[4.855876590115346,52.316339906313345],[4.855876210113519,52.31633979675258],[4.855875830219169,52.31633967820448],[4.855875464989884,52.31633955972223],[4.85587508509554,52.31633944117411],[4.855874705201199,52.316339322626014],[4.855874325414338,52.31633919509056],[4.855873960185062,52.31633907660833],[4.855873580398206,52.31633894907286],[4.855873215276413,52.31633882160326],[4.855872850154621,52.31633869413367],[4.855872470367772,52.31633856659818],[4.855872105245985,52.31633843912859],[4.855871740124202,52.316338311658996],[4.855871375109899,52.31633817520203],[4.855871010095601,52.3163380387451],[4.855870644973822,52.316337911275475],[4.855870279959525,52.316337774818535],[4.855869914945234,52.316337638361574],[4.855869550038422,52.31633749291727],[4.855869199689194,52.31633735652615],[4.85586883478239,52.316337211081844],[4.855868484433167,52.31633707469079],[4.855868119526367,52.31633692924646],[4.855867769284629,52.31633678386803],[4.855867419042892,52.31633663848958],[4.855867068908641,52.316336484123795],[4.85586671866691,52.31633633874533],[4.855866368532662,52.31633618437955],[4.855866018290936,52.31633603900111],[4.855865668156692,52.3163358846353],[4.855865332687513,52.316335730335375],[4.855864982553276,52.31633557596958],[4.8558646470841,52.31633542166965],[4.855864311722408,52.316335258382345],[4.855863961588178,52.316335104016524],[4.855863626226491,52.31633494072926],[4.855863290757325,52.31633478642932],[4.855862955395643,52.31633462314205],[4.855862620033965,52.31633445985475],[4.855862299337347,52.31633429663336],[4.855861964083155,52.31633412435869],[4.855861643386541,52.31633396113728],[4.855861308132353,52.316333788862636],[4.855860987435748,52.3163336256412],[4.855860666846625,52.31633345343245],[4.855860346257504,52.316333281223685],[4.855860025668385,52.316333109014906],[4.85585970507927,52.31633293680612],[4.855859384490159,52.316332764597334],[4.855859078566107,52.31633259245442],[4.855858758084483,52.3163324112583],[4.855858452160434,52.316332239115404],[4.855858146343873,52.31633205798517],[4.855857840527314,52.316331876854896],[4.855857534710757,52.31633169572466],[4.855857228894203,52.316331514594395],[4.855856923077652,52.31633133346413],[4.855856617261104,52.31633115233385],[4.855856326217099,52.31633096228212],[4.855856020400554,52.31633078115184],[4.855855729356556,52.31633059110008],[4.855855438205074,52.316330410035725],[4.855855176276226,52.316330238090394],[4.85585491434738,52.316330066145085],[4.85585465241854,52.3163298941998],[4.855854390489697,52.316329722254466],[4.855854128560858,52.316329550309185],[4.855853881404562,52.31632936944238],[4.855853619475728,52.31632919749708],[4.855853372319435,52.3163290166303],[4.855853110498089,52.316328835697654],[4.855852863341801,52.31632865483087],[4.855852616185516,52.316328473964035],[4.855852310906427,52.31632824789704],[4.855851990962283,52.31632802176415],[4.855851758471061,52.316327840963204],[4.85585151142227,52.31632765110908],[4.855851278931053,52.316327470308174],[4.855851031882264,52.316327280454],[4.855850799498536,52.31632709066574],[4.855850567114809,52.31632690087746],[4.855850334731085,52.316326711089225],[4.855850102347362,52.31632652130092],[4.855849869963641,52.31632633151266],[4.855849637579922,52.316326141724396],[4.855849405196204,52.3163259519361],[4.85584918758503,52.31632575322638],[4.855848969866374,52.31632556350397],[4.855848737590147,52.316325364728336],[4.855848519978978,52.31632516601858],[4.855848302367814,52.31632496730883],[4.855848084649164,52.3163247775864],[4.855847881703058,52.316324578942535],[4.855847620741643,52.31632432611107],[4.855847345115176,52.31632407321373],[4.855847142169075,52.31632387456984],[4.855846939222977,52.31632367592595],[4.855846736384365,52.31632346829472],[4.855846533438272,52.31632326965084],[4.855846330599666,52.3163230620196],[4.855846142318629,52.316322863441606],[4.855845939480026,52.31632265581034],[4.855845751306481,52.316322448244996],[4.855845563132937,52.3163222406796],[4.855845374959395,52.316322033114254],[4.855845186785853,52.31632182554888],[4.855844998612314,52.31632161798351],[4.855844810438776,52.31632141041814],[4.855844636930296,52.31632120291869],[4.855844448864246,52.31632098636593],[4.85584427535577,52.316320778866455],[4.855844101847294,52.31632057136695],[4.855843928446307,52.316320354880105],[4.855843754937833,52.316320147380615],[4.855843596201903,52.3163199309596],[4.855843422800919,52.31631971447278],[4.855843263957506,52.31631950703916],[4.855843090556526,52.31631929055231],[4.855842931820603,52.31631907413135],[4.855842773084678,52.31631885771036],[4.855842614348758,52.31631864128936],[4.855842470277892,52.316318424934266],[4.855842311541974,52.31631820851329],[4.855842124120868,52.31631793803652],[4.855832509567043,52.316303927758604],[4.855823827301288,52.31628922061671],[4.855816733810111,52.31627410717067],[4.855719927820153,52.31602496996723],[4.855639882870315,52.31581897768274],[4.855632533473373,52.315795845926765],[4.855618312691715,52.31575866227262],[4.85558424752618,52.31567014979958],[4.85551115371246,52.31548022294359],[4.854923187502941,52.31548709690546],[4.853613807895466,52.3154804609622],[4.853302669348889,52.31548239159378],[4.853146362019825,52.31548863362381],[4.852255016942684,52.31554840182887],[4.852122685797876,52.31555600023795],[4.851945729462372,52.31556462792188],[4.851705516596379,52.315566264082264],[4.851425497880175,52.31555480395305],[4.850964076186453,52.31552912910855],[4.850438292186528,52.315499448456805],[4.850052977636012,52.3154780969795],[4.849806110702639,52.315472149282144],[4.849651376705181,52.31547194956204],[4.849507737368899,52.31548203721673],[4.849223884080736,52.31551241080146],[4.848565936662442,52.315603582337836],[4.848452424023359,52.31561695162963],[4.848328121052057,52.315625184542895],[4.848058935132911,52.315634725426406],[4.847823198344614,52.31564451708429],[4.847602462491269,52.31564480465229],[4.847461186089851,52.3156268944974],[4.847339634038196,52.31559096369635],[4.847223225688919,52.315540891414955],[4.847137851686109,52.31548826435548],[4.847070726474727,52.31542801798056],[4.847024805846659,52.31536672694127],[4.846994141201747,52.31529789285296],[4.846982217826601,52.315207456686984],[4.846971068948367,52.315120870850556],[4.846955103701127,52.314929860264456],[4.846941503213865,52.31472770655879],[4.846919116661548,52.314434034468675],[4.846916700815859,52.31434567295594],[4.846935472205503,52.314127381107795],[4.846954587973635,52.313925376790465],[4.846960247687166,52.31380605308424],[4.846958944569864,52.31370215666433],[4.846953572026571,52.31354699297838],[4.846972734469515,52.313427964615116],[4.846964528454713,52.31319224791855],[4.846933964528597,52.31267625103849],[4.846915028598391,52.31239556404767],[4.846904064853755,52.31222507746892],[4.84687195892736,52.311788966389756],[4.846855774903978,52.31151598550581],[4.846826360776852,52.3109924528717],[4.846814278369216,52.310649933722985],[4.846809908632592,52.31003375182154],[4.846808939107323,52.30919343738787],[4.846791914629499,52.30785502358965],[4.846761699042311,52.307536302099734],[4.846686139512307,52.307112053702696],[4.846625198162338,52.30666506085486],[4.846604312654989,52.306182182755954],[4.846634626698024,52.30601407763492],[4.846648487205941,52.30596669409064],[4.846656399140901,52.305606721667644],[4.84666250511162,52.30515652984268],[4.84665050604703,52.3048158172233],[4.846625047525078,52.30454984002134],[4.846563512706665,52.303963936829554],[4.846524802867016,52.30351220080692],[4.846507118281524,52.303336461216205],[4.846521941641067,52.303213485169884],[4.846566322961453,52.30303984484695],[4.846587511091525,52.3028986255587],[4.846587583287717,52.3027576872339],[4.84658388852206,52.30271671265982],[4.846527476861237,52.30252344045321],[4.846461371309345,52.30231356824716],[4.846316527291079,52.30183453589974],[4.846177599192903,52.30133947805845],[4.846146809340724,52.30121076580357],[4.846028375930443,52.300683588965036],[4.845884672647188,52.30039700931842],[4.845883630489414,52.30039711240269],[4.8457740211512,52.299957148920996],[4.845721362086009,52.299741621449755],[4.845543092181284,52.29906064818436],[4.845034446562528,52.29721777232249],[4.844459195120626,52.295141424341125],[4.843791448996823,52.292733776717114],[4.843667071026632,52.29194398821365],[4.843618276060258,52.29177487262287],[4.843568098222052,52.29160620004192],[4.843519197965707,52.29151527849414],[4.843414778374241,52.29118916734061],[4.843374446781389,52.29102210382551],[4.843360037713536,52.29097782615605],[4.843237677575948,52.290574030896124],[4.843110883760148,52.290131477284405],[4.842950319857924,52.28957898102868],[4.842889092455214,52.28935070347547],[4.842650108324027,52.289384413208204],[4.842175163546949,52.28945140475683],[4.84211806499112,52.2894916409775],[4.842197442234777,52.289753931864475],[4.842222882252686,52.28983802294207],[4.842142901467143,52.28988559567954],[4.842144767161365,52.28994144601809],[4.842169497921652,52.29068244941182],[4.842162397744461,52.29107034278078],[4.842164858939117,52.29113142679976],[4.842174903470723,52.29140969305028],[4.842376996142346,52.291755938840566],[4.84071554370222,52.29212055027138],[4.840226149361507,52.292232325807134],[4.840155069479155,52.29225049406332],[4.8387578015977,52.292561977160524],[4.836988963621481,52.29295488037526],[4.835334672149638,52.29331990808681],[4.834936123975469,52.293405220929436],[4.834838642490081,52.29342558156706],[4.834637105084715,52.293465705644095],[4.833496861006906,52.29369893747658],[4.83343747046097,52.293710280706414],[4.833350818179584,52.29372138837045],[4.83326410494487,52.293725619952966],[4.833188334713619,52.29372216417102],[4.833106217023368,52.293708153783825],[4.833038545444808,52.29368765887015],[4.832854756894087,52.2936054930211],[4.832620850781909,52.2934975842278],[4.832458770759971,52.29342497481974],[4.832089055382196,52.29327733046409],[4.831865333952462,52.29319809438972],[4.831412312278434,52.29304637160621],[4.830892661909273,52.292872061647124],[4.830339726052548,52.29268613308207],[4.829731523076187,52.29248121060938],[4.829045962911949,52.29224928874541],[4.828739587355735,52.29214741150206],[4.828687704233809,52.292131779187805],[4.828451817050615,52.29206278824683],[4.828180016826932,52.29197064501729],[4.828013027206205,52.29191064321684],[4.828060349838166,52.291861119009155],[4.8280729899346,52.291847894672756],[4.828085407231131,52.29183490296676],[4.828097720565754,52.291822018622575],[4.828076604574441,52.29181455769541],[4.828067454813609,52.29181132372935],[4.828058275627261,52.291808098611355],[4.828004527420219,52.29178930242464],[4.827950955254529,52.29177049805802],[4.827902786286185,52.29175330109264],[4.827854663361046,52.291735942543184],[4.827817104790089,52.291722390889504],[4.827779840623538,52.29170874174978],[4.827717185756579,52.29168488804988],[4.827654490040282,52.291660791450035],[4.827582428130958,52.291633199139504],[4.827509893898089,52.291605874185784],[4.827424098986916,52.29157470250936],[4.82733773886225,52.29154419319809],[4.82724536984743,52.291512468966516],[4.827152480731209,52.29148131742395],[4.827065608880924,52.2914530614498],[4.826979162187961,52.29142480742559],[4.826919132987441,52.29140435417435],[4.826859636582994,52.29138349896193],[4.82682516269568,52.29137063569978],[4.826542282950188,52.29127315127868],[4.826541757461147,52.2912729780171],[4.826540910657329,52.291272713353074],[4.826540078623587,52.29127243977119],[4.826539231933122,52.29127216611982],[4.8265383998994,52.29127189253795],[4.826537553208956,52.29127161888651],[4.826536721175255,52.29127134530464],[4.826535874484832,52.291271071653235],[4.826535042451154,52.291270798071324],[4.826534210530814,52.29127051550205],[4.826533363840422,52.291270241850604],[4.826532531920106,52.291269959281344],[4.826531699999801,52.291269676712034],[4.826530868079506,52.29126939414275],[4.826530036159222,52.29126911157343],[4.82652920423895,52.291268829004125],[4.826528372318687,52.291268546434786],[4.826527540398432,52.29126826386546],[4.826526723248257,52.29126797237828],[4.826525891328024,52.29126768980893],[4.826525059521139,52.29126739825225],[4.826524242370996,52.29126710676502],[4.826523410564132,52.29126681520833],[4.826522578757279,52.2912665236516],[4.826521761607168,52.291266232164396],[4.826520944457065,52.29126594067714],[4.826520112763583,52.291265640133076],[4.826519295613501,52.29126534864582],[4.826518478576772,52.291265048171205],[4.826517661426713,52.291264756683965],[4.826516844390003,52.291264456209355],[4.826516027353303,52.29126415573472],[4.826515210316615,52.29126385526009],[4.826514393279937,52.29126355478548],[4.826513576356611,52.291263245323485],[4.826512759319955,52.29126294484881],[4.826511942396647,52.291262635386836],[4.826511140016743,52.29126233498165],[4.82651032309346,52.29126202551964],[4.826509520826916,52.29126171612712],[4.826508703903657,52.29126140666508],[4.826507901637135,52.29126109727253],[4.826507099370624,52.29126078788],[4.826506282447397,52.29126047841796],[4.826505480294249,52.291260160038014],[4.826504678027773,52.291259850645474],[4.826503875874647,52.29125953226556],[4.826503073608195,52.291259222873],[4.82650227145509,52.29125890449305],[4.826501469301998,52.29125858611311],[4.826500667148919,52.29125826773317],[4.826499864995852,52.291257949353216],[4.826499077612862,52.29125762205542],[4.826498275459817,52.291257303675465],[4.826497487963509,52.29125698536496],[4.826496685923828,52.29125665799765],[4.826495898540885,52.29125633069984],[4.826495096387886,52.29125601231985],[4.826494309004967,52.29125568502198],[4.826493521622057,52.291255357724125],[4.826492734239162,52.29125503042627],[4.826491946969618,52.29125469414105],[4.826491159586745,52.291254366843205],[4.826490372203882,52.29125403954533],[4.826489584934374,52.291253703260104],[4.826488797551536,52.291253375962235],[4.826488024938777,52.29125303974646],[4.826487237669306,52.29125270346124],[4.826486450399845,52.29125236717596],[4.826485677787122,52.29125203096021],[4.826484905174409,52.291251694744446],[4.826484117904986,52.29125135845919],[4.826483345405641,52.29125101325605],[4.826482572792963,52.291250677040274],[4.826481800293643,52.291250331837105],[4.826481027794335,52.29124998663399],[4.826480255181694,52.29124965041815],[4.826479482682408,52.291249305215075],[4.826478710183136,52.29124896001187],[4.826477937683873,52.2912486148087],[4.826477179841349,52.29124826967505],[4.826476407455456,52.29124791548452],[4.826475634956231,52.29124757028133],[4.826474877227086,52.29124721616028],[4.826474119384611,52.29124687102661],[4.826473346998766,52.29124651683607],[4.82647258926966,52.291246162715],[4.826471831540563,52.291245808593935],[4.826471073811478,52.291245454472865],[4.826470316082408,52.29124510035178],[4.826469558353351,52.29124474623073],[4.8264688006243,52.29124439210964],[4.826468057665335,52.291244029070704],[4.826467299936311,52.291243674949634],[4.826466556977369,52.29124331191067],[4.82646579924837,52.29124295778958],[4.826465056289452,52.291242594750614],[4.826464298673824,52.29124223164215],[4.82646355571493,52.29124186860319],[4.826462812756051,52.2912415055642],[4.826462069797181,52.29124114252523],[4.826461326951671,52.29124077049889],[4.826460583992827,52.2912404074599],[4.826459841033993,52.291240044420945],[4.82645909818852,52.29123967239455],[4.826458369999783,52.29123930043772],[4.826457627154334,52.291238928411346],[4.826456898852273,52.29123856544184],[4.82645615600685,52.29123819341548],[4.826455427818159,52.291237821458594],[4.826454699742831,52.29123744051436],[4.826453956897444,52.291237068487995],[4.826453228708793,52.29123669653109],[4.82645250052015,52.291236324574236],[4.826451772444873,52.29123594362997],[4.826451059026325,52.29123556275523],[4.82645033083772,52.29123519079833],[4.826449602762479,52.29123480985404],[4.826448889343969,52.29123442897931],[4.826448161268751,52.29123404803503],[4.826447447850266,52.29123366716024],[4.826446734431793,52.29123328628545],[4.826446006469964,52.29123289635382],[4.826445293051516,52.291232515479074],[4.826444579633081,52.291232134604265],[4.826443866328006,52.291231744742106],[4.826443152909595,52.291231363867325],[4.826442454261266,52.291230974074665],[4.826441740956231,52.291230584212514],[4.826439500711229,52.291229234392276],[4.826437260353011,52.29122789355941],[4.826435005338212,52.29122655265697],[4.826432750323545,52.29122521175448],[4.826430509852378,52.291223879908834],[4.82642824018127,52.29122253893678],[4.826425985053659,52.29122120702152],[4.826423729926183,52.29121987510622],[4.826421460142128,52.29121854312137],[4.826419190244855,52.29121722012384],[4.826416920461072,52.29121588813889],[4.826414635907354,52.291214565071755],[4.826412366010485,52.29121324207409],[4.82641008145704,52.29121191900687],[4.826407796790371,52.29121060492696],[4.826405512237198,52.29120928185968],[4.826403227570802,52.29120796777967],[4.826400928247828,52.29120665363012],[4.826398628924994,52.29120533948051],[4.82639632948893,52.29120403431821],[4.826394030166366,52.29120272016857],[4.826391730730576,52.291201415006206],[4.826389416638213,52.291200109774245],[4.826387117202692,52.29119880461181],[4.826384802997238,52.29119750836711],[4.826382474248575,52.29119620306555],[4.826380160043391,52.291194906820806],[4.826377831181637,52.29119361050647],[4.826375516863359,52.29119232324899],[4.826373188001875,52.29119102693458],[4.826370859027161,52.291189739607496],[4.826368515395877,52.29118845221081],[4.826366186421431,52.29118716488362],[4.826363842790421,52.29118587748685],[4.826361499046178,52.29118459907745],[4.826359155302068,52.29118332066797],[4.826356811558093,52.29118204225842],[4.826354453157553,52.29118076377932],[4.82635210941385,52.29117948536971],[4.826349750900208,52.29117821587785],[4.826347392386705,52.29117694638597],[4.826345019216635,52.29117567682453],[4.826342660703399,52.29117440733252],[4.8263402875336,52.29117313777102],[4.826337914250564,52.29117187719681],[4.826335540967661,52.2911706166225],[4.826333167684894,52.29116935604817],[4.826330794288888,52.291168104461136],[4.826328406349694,52.291166843817244],[4.826326018297259,52.291165592160596],[4.826323630244961,52.2911643405039],[4.826321242192793,52.29116308884716],[4.826318854027388,52.29116184617774],[4.826316451318794,52.291160594451384],[4.826314048496962,52.29115935171233],[4.826311645675264,52.291158108973256],[4.826309242853698,52.291156866234104],[4.826306839918891,52.29115563248228],[4.826304436984216,52.2911543987304],[4.826302019392982,52.29115316490896],[4.82629960180188,52.29115193108742],[4.826297184097534,52.29115070625324],[4.826294766506703,52.291149472431655],[4.826292348802624,52.29114824759733],[4.826289916441987,52.29114702269349],[4.826287483968103,52.29114580677692],[4.826285051607734,52.29114458187295],[4.826282619134117,52.291143365956295],[4.826280186660631,52.291142150039555],[4.826277739530592,52.29114093405327],[4.826275307057373,52.29113971813644],[4.826272859814217,52.29113851113744],[4.826270412571191,52.29113730413833],[4.826267965328299,52.29113609713921],[4.826265517972151,52.291134899127364],[4.826263056072841,52.2911336920586],[4.826260594060273,52.291132493977166],[4.82625813204784,52.291131295895624],[4.82625567003554,52.29113009781408],[4.826253207909981,52.29112890871981],[4.826250745897947,52.29112771063812],[4.826248269002578,52.29112653046162],[4.826245792220734,52.29112534129768],[4.826243315439022,52.29112415213365],[4.826240838544051,52.29112297195699],[4.82623836164921,52.29112179178024],[4.826235884754503,52.29112061160346],[4.826233393203244,52.291119431357075],[4.826230901538724,52.291118260097996],[4.826228409874335,52.29111708883887],[4.82622591821008,52.29111591757971],[4.826223426545955,52.291114746320446],[4.82622093488196,52.291113575061196],[4.826218428448023,52.291112412719656],[4.826215922014216,52.29111125037808],[4.826213415580542,52.29111008803648],[4.8262109090336,52.29110893468216],[4.826208402486787,52.29110778132778],[4.826205881396827,52.29110661891648],[4.826203374736877,52.291105474549376],[4.826200853533781,52.29110432112529],[4.826198332217413,52.29110317668854],[4.826195811014578,52.29110202326435],[4.826193274928395,52.291100887745266],[4.826190753612418,52.291099743308365],[4.826188217526494,52.29109860778922],[4.826185696210778,52.291097463352195],[4.826183160125114,52.29109632783293],[4.826180623926176,52.291095201300955],[4.826178073184098,52.29109406571203],[4.826175536985419,52.29109293917999],[4.826172986130195,52.291091812578316],[4.826170449931774,52.29109068604613],[4.826167898963402,52.291089568431694],[4.826165348108565,52.291088441829864],[4.826162782483782,52.29108732414578],[4.826160231402389,52.29108621551854],[4.82615768043453,52.291085097903924],[4.826155114696721,52.291083989207024],[4.826152548959044,52.29108288051009],[4.826149983221492,52.29108177181312],[4.826147417484069,52.29108066311606],[4.826144851633361,52.29107956340631],[4.826142271126115,52.29107846362696],[4.826139705275664,52.291077363917104],[4.826137124768671,52.291076264137644],[4.826134544148394,52.29107517334547],[4.826131846841992,52.29107403706012],[4.826131526096566,52.29107390071981],[4.825881318999498,52.29097311837334],[4.825843881482927,52.29095588162416],[4.825654931330558,52.290868862441386],[4.825654058972376,52.29086830104904],[4.825653171957617,52.29086773958707],[4.825652284942883,52.29086717812513],[4.825651397928173,52.29086661666317],[4.825650510913483,52.29086605520119],[4.825649609128709,52.29086550265698],[4.825648722114064,52.290864941195004],[4.825647820329333,52.29086438865072],[4.825646918544629,52.29086383610645],[4.825646016759944,52.29086328356221],[4.825645100205175,52.29086273993572],[4.825644198420536,52.29086218739147],[4.825643281865812,52.29086164376494],[4.825642365311111,52.290861100138386],[4.825641448869945,52.2908605475245],[4.825640517545183,52.2908600128157],[4.82563960099055,52.29085946918916],[4.82563866966583,52.290858934480354],[4.825637738454648,52.29085839078418],[4.825636807129975,52.29085785607533],[4.825635875805323,52.29085732136652],[4.825634944480696,52.29085678665768],[4.825633998385984,52.29085626086655],[4.825633052404807,52.29085572608813],[4.82563210631014,52.29085520029703],[4.825631160215493,52.29085467450588],[4.825630214120871,52.29085414871478],[4.82562925336968,52.29085362285402],[4.825628307275101,52.290853097062886],[4.825627346410441,52.2908525801895],[4.825626385545799,52.29085206331609],[4.825625424681182,52.29085154644266],[4.825624449159995,52.29085102949962],[4.825623488295423,52.29085051262621],[4.825622512660765,52.29085000467052],[4.82562153702613,52.29084949671481],[4.825620561391518,52.29084898875913],[4.825619585756927,52.29084848080339],[4.825618610122359,52.29084797284768],[4.825617619831223,52.29084746482233],[4.825616629426594,52.290846965784326],[4.825615639021985,52.29084646674634],[4.8256146486174,52.29084596770834],[4.825613658212836,52.29084546867032],[4.825612667694775,52.29084497861966],[4.825611662633668,52.29084447951203],[4.825610672115651,52.29084398946133],[4.825609666941069,52.29084349934101],[4.825608661766509,52.29084300922072],[4.825607656478451,52.29084252808776],[4.825606636647347,52.29084203789783],[4.825605631359335,52.29084155676484],[4.825604611414755,52.29084107556226],[4.825603591470196,52.29084059435963],[4.825602571525664,52.29084011315704],[4.825601551467629,52.290839640941776],[4.825600531409617,52.29083916872648],[4.825599511351628,52.29083869651118],[4.825598476637072,52.290838224226306],[4.825597441922539,52.29083775194138],[4.825596421751093,52.29083728871344],[4.825595372266497,52.29083682534624],[4.825594337438506,52.29083636204866],[4.825593302610537,52.29083589875106],[4.825592267782591,52.29083543545345],[4.825591218184559,52.29083498107357],[4.825590168586546,52.290834526693715],[4.825589118988556,52.29083407231382],[4.825588069390587,52.29083361793392],[4.825587019679118,52.29083317254139],[4.825585970081192,52.290832718161454],[4.825584905713177,52.29083227269929],[4.825583856001772,52.2908318273067],[4.825582791520278,52.29083139083188],[4.825581727152327,52.29083094536968],[4.825580662670875,52.29083050889481],[4.825579598189444,52.29083007241994],[4.825578533708033,52.290829635945066],[4.825577454570058,52.29082919940054],[4.825576389975164,52.290828771913006],[4.825575310837233,52.29082833536853],[4.825574231472268,52.29082791679871],[4.825573152220853,52.2908274892415],[4.825572072969461,52.290827061684304],[4.825570993604559,52.290826643114464],[4.825569914239677,52.290826224544595],[4.825568820218234,52.29082580590512],[4.825567740853393,52.29082538733527],[4.825566646718466,52.29082497768313],[4.825565552697086,52.290824559043585],[4.825564458562195,52.29082414939144],[4.8255633643138,52.290823748726574],[4.82556227017895,52.29082333907439],[4.825561175930593,52.290822938409605],[4.825560067139204,52.29082252868774],[4.825558972890887,52.2908221280229],[4.825557863872478,52.29082173627578],[4.825556754967621,52.29082133554126],[4.825555660605832,52.29082094386373],[4.825554551587484,52.29082055211658],[4.825553442569153,52.29082016036941],[4.825552318780732,52.29081977753998],[4.825551209762443,52.29081938579278],[4.82555008597406,52.29081900296331],[4.825548976842279,52.29081862020346],[4.825547852940403,52.29081824636136],[4.825546743808657,52.290817863601454],[4.825545619906823,52.2908174897593],[4.825544496005004,52.29081711591717],[4.825543372103206,52.29081674207498],[4.825542248087895,52.290816377220175],[4.825541109529552,52.290816003308365],[4.825539985514277,52.29081563845349],[4.82553884684244,52.29081527352907],[4.825537722713671,52.290814917661535],[4.825536584041871,52.29081455273702],[4.825535445256559,52.29081419679987],[4.82553432112784,52.29081384093234],[4.825533182229029,52.290813493982526],[4.825532043443769,52.29081313804535],[4.825530889888416,52.29081279102587],[4.825529750989658,52.29081244407605],[4.825528612090918,52.29081209712621],[4.825527458422082,52.29081175909405],[4.825526319523378,52.290811412144166],[4.825525165854578,52.29081107411202],[4.825524026842371,52.29081073614948],[4.825522873060072,52.29081040710464],[4.825486520358489,52.29080130045176],[4.825416216534879,52.2907855881694],[4.825115754625851,52.290714773734436],[4.824962221201382,52.29067859554303],[4.82493127357278,52.29066978405551],[4.824919127877425,52.29066472903029],[4.824918036480244,52.290664103675574],[4.824916945083092,52.29066347832089],[4.824915853685971,52.29066285296615],[4.824914776945409,52.29066222768114],[4.824913685662009,52.29066159333905],[4.824912608921508,52.29066096805402],[4.824911517638171,52.290660333711905],[4.824910441011389,52.29065969943948],[4.824909364384639,52.290659065167034],[4.82490828775792,52.29065843089461],[4.824907211131231,52.29065779662213],[4.824906149161101,52.2906571624194],[4.824905072648132,52.29065651915955],[4.824904010791724,52.290655875969385],[4.824902934165157,52.29065524169691],[4.824901872308808,52.29065459850675],[4.824900810566152,52.29065394632922],[4.824899748709865,52.29065330313903],[4.824898686853609,52.290652659948854],[4.824897625111046,52.29065200777131],[4.824896577911375,52.29065136465081],[4.824895516168873,52.29065071247321],[4.824894469082926,52.290650060365344],[4.824893421997011,52.290649408257444],[4.824892374911125,52.29064875614952],[4.824891327938933,52.290648095054266],[4.82489028085311,52.29064744294634],[4.82488923388098,52.29064678185104],[4.824888201565403,52.29064612082545],[4.824887154593335,52.29064545973013],[4.824886122277823,52.29064479870452],[4.824885089962338,52.29064413767891],[4.824884057646885,52.29064347665323],[4.824883025445128,52.29064280664026],[4.824881993129735,52.290642145614605],[4.824880960928041,52.29064147560158],[4.824879943382895,52.29064080565824],[4.824878911181264,52.29064013564524],[4.824877893636181,52.29063946570185],[4.82487687609113,52.29063879575852],[4.824875858546108,52.29063812581515],[4.824874841114783,52.290637446884446],[4.824873838340011,52.2906367680234],[4.824872820795082,52.29063609807997],[4.82487180336385,52.29063541914926],[4.824870800589166,52.290634740288176],[4.824869797814518,52.2906340614271],[4.824868795153564,52.29063337357865],[4.824867792378976,52.2906326947176],[4.824866789718085,52.29063200686914],[4.824865801600073,52.29063132807772],[4.824864798939243,52.29063064022925],[4.824863810934963,52.29062995245051],[4.824862822930712,52.290629264671686],[4.824861834926491,52.290628576892914],[4.82486084703597,52.29062788012675],[4.824859859031812,52.29062719234793],[4.824858871141354,52.290626495581776],[4.824857897793771,52.290625807872615],[4.824856909903375,52.290625111106486],[4.824855936669523,52.290624414409955],[4.8248549634357,52.29062371771344],[4.824853990201913,52.29062302101693],[4.824853017081822,52.29062231533303],[4.824852058504608,52.290621618706254],[4.824851085384581,52.290620913022344],[4.824850126807425,52.29062021639551],[4.824849153687459,52.29061951071156],[4.824848195224036,52.29061880509736],[4.824847236760645,52.29061809948315],[4.824846292953795,52.290617393938646],[4.824845334490465,52.29061668832439],[4.824844376140837,52.2906159737228],[4.824843432334078,52.29061526817824],[4.824842488641023,52.29061455364633],[4.824841544947997,52.2906138391144],[4.824840601255003,52.29061312458249],[4.824839657562039,52.29061241005057],[4.824838713869105,52.29061169551862],[4.824837784832711,52.29061098105636],[4.824836841139836,52.29061026652439],[4.824835912217178,52.2906095430748],[4.824834983180874,52.29060882861255],[4.824834054258275,52.290608105162896],[4.824833139992216,52.29060738178299],[4.824832211069675,52.29060665833334],[4.824831282147168,52.29060593488365],[4.824830367881198,52.29060521150372],[4.824829453615259,52.290604488123755],[4.824828539463025,52.29060375575644],[4.824827625197143,52.29060303237646],[4.824826725701477,52.29060230007882],[4.824825811435653,52.290601576698805],[4.824824911940047,52.29060084440121],[4.824823997787963,52.290600112033815],[4.824823098292415,52.29059937973615],[4.824822198796895,52.290598647438514],[4.824821299415085,52.29059790615344],[4.824820414576132,52.290597173925505],[4.824819515080701,52.29059644162782],[4.824818630355485,52.29059570041246],[4.824817745630296,52.29059495919711],[4.824816860791459,52.2905942269691],[4.824815976066329,52.29059348575375],[4.824815091341231,52.290592744538394],[4.824814221386345,52.29059199440535],[4.824813336661305,52.29059125318998],[4.824812466592796,52.29059051204432],[4.824811596524317,52.29058977089859],[4.824810726569548,52.290589020765545],[4.824809856614807,52.29058827063249],[4.824809001202918,52.290587529556504],[4.824808131248235,52.290586779423435],[4.824807275950084,52.290586029360064],[4.824806420651962,52.29058527929669],[4.824805565353868,52.290584529233286],[4.824804710169485,52.29058377018258],[4.824803854871448,52.29058302011915],[4.824802999573442,52.290582270055786],[4.824802159045646,52.29058151107473],[4.824801318517878,52.29058075209366],[4.824800477876457,52.29058000209997],[4.824799637348748,52.290579243118884],[4.824798796821066,52.290578484137804],[4.824797970949912,52.29057772522644],[4.824797130422288,52.29057696624536],[4.824796304664874,52.29057619834663],[4.824795478793803,52.29057543943521],[4.824793972025167,52.29057404813251],[4.824791993179253,52.290572897257654],[4.824791149241314,52.290572407897194],[4.824790305417078,52.2905719095494],[4.824789476135671,52.290571420258644],[4.824788632311473,52.29057092191083],[4.824787803030105,52.290570432620065],[4.82478697386244,52.29056993434196],[4.824786144694792,52.290569436063805],[4.824785315527165,52.29056893778568],[4.824784486359555,52.29056843950753],[4.82478365730565,52.29056793224206],[4.824782828138078,52.29056743396389],[4.824782013740705,52.2905669267681],[4.824781184686854,52.29056641950256],[4.824780370289519,52.29056591230675],[4.824779541235707,52.2905654050412],[4.824778726838409,52.29056489784539],[4.82477791244113,52.290564390649564],[4.82477711281405,52.290563874536076],[4.824776298416809,52.29056336734024],[4.824775484133271,52.29056285115705],[4.824774669849754,52.290562334973835],[4.824773870222749,52.29056181886032],[4.824773070595761,52.29056130274681],[4.824772270968792,52.29056078663332],[4.824771471341842,52.290560270519784],[4.8247706718286,52.2905597454189],[4.824769872201688,52.290559229305394],[4.824769072688482,52.29055870420451],[4.824768287831787,52.2905581791733],[4.824767488318618,52.290557654072416],[4.824766703461962,52.290557129041225],[4.824765918605323,52.290556604010035],[4.824765119092211,52.29055607890909],[4.824764349005791,52.29055554496027],[4.824763564149208,52.290555019929045],[4.824762779406333,52.29055448591046],[4.824761994663477,52.29055395189189],[4.824761224463441,52.290553426930394],[4.824760454377113,52.29055289298146],[4.824759669748004,52.29055234997555],[4.824758899661711,52.29055181602665],[4.82475812957544,52.29055128207774],[4.824757359602878,52.290550739141494],[4.824756604173133,52.29055020526233],[4.824755834200606,52.29054966232606],[4.824755078884588,52.29054911945949],[4.8247543089121,52.29054857652325],[4.824753553596119,52.29054803365668],[4.824752798280157,52.29054749079011],[4.824752043077905,52.290546938936195],[4.82475128776198,52.29054639606958],[4.824750547216252,52.29054584428535],[4.824749791900365,52.29054530141878],[4.824749051354676,52.29054474963457],[4.824748310809005,52.29054419785031],[4.824747555606864,52.29054364599636],[4.824746815061229,52.29054309421209],[4.824746089285793,52.29054253351021],[4.824745348740195,52.29054198172595],[4.824744608194616,52.29054142994172],[4.824743882419235,52.29054086923981],[4.824743141987386,52.29054030846818],[4.824742416098348,52.29053975675363],[4.824741690323023,52.290539196051704],[4.824740964547716,52.2905386353498],[4.824740238886118,52.2905380656605],[4.824739527767333,52.2905375050283],[4.824738801992081,52.29053694432636],[4.824738090873332,52.29053638369411],[4.824737379868293,52.29053581407455],[4.824736654206791,52.290535244385254],[4.824735943201789,52.29053467476565],[4.824735246739598,52.29053411420313],[4.824734535734632,52.29053354458353],[4.824733824729687,52.29053297496392],[4.82473312849494,52.290532396426684],[4.824732432146512,52.29053182687679],[4.824731735798106,52.290531257326904],[4.824731024906926,52.290530678719925],[4.824730343328733,52.29053010025237],[4.824729646980379,52.29052953070248],[4.824728950745738,52.29052895216519],[4.824728269167598,52.2905283736976],[4.824727587589477,52.29052779523006],[4.824726891354892,52.29052721669277],[4.824726224433284,52.29052663829494],[4.824725542968914,52.29052605084002],[4.824724861390862,52.29052547237241],[4.824724179926526,52.290524884917495],[4.824723513004993,52.290524306519615],[4.824722846197173,52.290523719134384],[4.824722164732891,52.290523131679436],[4.824721497925107,52.2905225442942],[4.824720845773821,52.29052195697868],[4.824720178966071,52.29052136959343],[4.82471951215834,52.2905207822082],[4.824718860007107,52.29052019489268],[4.824718207969587,52.29051959858978],[4.82471754116191,52.29051901120453],[4.824716903780905,52.290518414971366],[4.824716251629742,52.29051782765582],[4.824715599592292,52.290517231352894],[4.824714947554861,52.29051663505],[4.824714310173926,52.290516038816804],[4.824713672793008,52.29051544258362],[4.824713035412106,52.290514846350426],[4.824712398031222,52.29051425011721],[4.824711760650357,52.29051365388405],[4.824711123383205,52.29051304866344],[4.82471050065885,52.29051245249993],[4.82470987804821,52.290511847349116],[4.824709240667411,52.29051125111588],[4.824708618056808,52.29051064596506],[4.82470799544622,52.29051004081416],[4.824707387492124,52.29050943573303],[4.82470676488157,52.29050883058215],[4.824706156927509,52.29050822550102],[4.82470553431699,52.29050762035016],[4.82470492636296,52.290507015268986],[4.82470431852265,52.29050640120051],[4.824703710568655,52.2905057961193],[4.824703117271152,52.290505191107876],[4.824702509430891,52.290504577039314],[4.824701916247122,52.290503963040564],[4.824701322949666,52.29050335802909],[4.824700729765931,52.290502744030285],[4.824700136582211,52.29050213003145],[4.824699543398506,52.290501516032656],[4.824652636047431,52.2904520032537],[4.824652231011054,52.29045157889559],[4.824651781891607,52.290451163315666],[4.824650897968054,52.29045035918753],[4.824650014044534,52.29044955505943],[4.824649130121045,52.290448750931326],[4.824648260967758,52.290447937885524],[4.824647377044333,52.29044713375743],[4.824646507891108,52.29044632071165],[4.824645638624204,52.29044551665326],[4.82464476947104,52.29044470360745],[4.824643900317914,52.29044389056171],[4.824643031164816,52.29044307751592],[4.824642162011748,52.29044226447008],[4.824641307515169,52.29044145149402],[4.824640438362166,52.290440638448224],[4.824639583865648,52.290439825472156],[4.824638714712709,52.29043901242633],[4.824637860329968,52.290438190462865],[4.824637005833546,52.29043737748674],[4.824636151450867,52.29043655552328],[4.824635311610958,52.29043574261689],[4.824634457228342,52.29043492065343],[4.82463361750221,52.29043409875964],[4.824632763119657,52.29043327679617],[4.824631923393587,52.29043245490239],[4.824631083667549,52.29043163300862],[4.824630243941542,52.29043081111483],[4.824629404215564,52.290429989221046],[4.824628564603335,52.29042915833989],[4.82462773953387,52.29042833651583],[4.824626899921702,52.29042750563468],[4.824626074852299,52.290426683810594],[4.824625235240192,52.290425852929395],[4.824624410284567,52.29042502211799],[4.824623585215255,52.29042420029387],[4.824622760259693,52.2904233694824],[4.824621949960606,52.29042253874069],[4.824621125005102,52.29042170792921],[4.824620300049633,52.290420877117725],[4.824619489864355,52.29042003738861],[4.82461867956539,52.29041920664689],[4.824617869266456,52.29041837590511],[4.82461705908127,52.29041753617596],[4.824616248782399,52.29041670543421],[4.824615438597275,52.290415865705064],[4.824614643068625,52.29041502604567],[4.824613832883561,52.290414186316525],[4.824613037241255,52.290413355644446],[4.824612227056252,52.29041251591531],[4.824611431527723,52.29041167625586],[4.824610636112946,52.290410827609094],[4.82460985524092,52.29040998801937],[4.82460905971248,52.29040914835993],[4.824608264184072,52.29040830870046],[4.824607483425858,52.290407460123404],[4.824606702553952,52.29040662053366],[4.824605907139355,52.29040577188682],[4.824605126267507,52.29040493229711],[4.824604345509409,52.29040408372],[4.824603579407786,52.290403235212615],[4.824602798649747,52.29040238663549],[4.82460201789174,52.290401538058376],[4.824601251790202,52.29040068955101],[4.824600485688696,52.29039984104359],[4.824599704930775,52.29039899246648],[4.824598953485765,52.29039814402883],[4.824598187498068,52.29039728653405],[4.824597421396676,52.29039643802664],[4.824596655295315,52.290395589519214],[4.824595903964142,52.29039473209416],[4.824595137976561,52.2903938745994],[4.824594386531726,52.29039302616171],[4.82459363520064,52.29039216873663],[4.824592883869585,52.29039131131157],[4.824592132538558,52.29039045388651],[4.824591395863994,52.29038959653115],[4.824590644533026,52.290388739106085],[4.824589907858519,52.290387881750725],[4.82458915652761,52.29038702432563],[4.824588419853161,52.290386166970286],[4.824587683292466,52.29038530062757],[4.824586946618076,52.29038444327222],[4.824586209943714,52.29038358591685],[4.824585488039538,52.29038271964386],[4.824584751478959,52.29038185330109],[4.824584029461113,52.29038099601545],[4.824583307557024,52.29038012974244],[4.824582585652962,52.290379263469426],[4.824581863748927,52.29037839719641],[4.824581141844922,52.290377530923394],[4.824580419940942,52.29037666465036],[4.824579712693422,52.290375798447066],[4.824578990789502,52.29037493217403],[4.824578283542039,52.290374065970724],[4.824577576294604,52.29037319976741],[4.824576869160922,52.29037232457677],[4.824576161913542,52.29037145837343],[4.824575454779917,52.290370583182735],[4.824574762189023,52.29036971704917],[4.824574055055451,52.290368841858474],[4.824573362464609,52.290367975724834],[4.824572669987524,52.290367100603945],[4.824571977510464,52.290366225482934],[4.824571285033432,52.290365350362016],[4.824570592556428,52.290364475241006],[4.82456990007945,52.290363600120045],[4.824569222258925,52.29036272506881],[4.824568529782004,52.29036184994783],[4.824567851961534,52.29036097489658],[4.824567174141091,52.29036009984533],[4.824566496320675,52.29035922479406],[4.824565818614015,52.29035834075544],[4.824565140793653,52.29035746570419],[4.82456447774347,52.290356581735296],[4.824563814579587,52.29035570675375],[4.824563136873033,52.2903548227151],[4.824562473709201,52.2903539477336],[4.824561810659124,52.290353063764705],[4.824561147609075,52.29035217979579],[4.824560499215476,52.2903512958966],[4.824559836051748,52.290350420915054],[4.824559187658201,52.2903495370159],[4.824558524608255,52.290348653046976],[4.824557876214761,52.29034776914777],[4.82455722793502,52.29034687626124],[4.824556579541575,52.29034599236205],[4.824555931148157,52.29034510846286],[4.824555297411184,52.29034422463341],[4.824554649131548,52.29034333174685],[4.824554015394626,52.290342447917375],[4.824398212625985,52.29012672493047],[4.824386105157465,52.29011056098948],[4.824374363043283,52.29009679855496],[4.824322709900397,52.29004594182821],[4.824271148249204,52.28999365643779],[4.824191502879729,52.28992522087406],[4.824111756342947,52.28986479299076],[4.824066463684654,52.28983255341131],[4.823983842491823,52.289780398591574],[4.823621119869022,52.28955745115627],[4.82287447463646,52.289026282357405],[4.822770842286647,52.288948419861974],[4.822714859127228,52.28890638583618],[4.822636021375033,52.28884740832346],[4.822635251571992,52.28884685638594],[4.822634496539004,52.288846295531],[4.822633741391924,52.28884574366347],[4.822632971588939,52.28884519172591],[4.822632216556011,52.28884463087098],[4.822631461408987,52.28884407900341],[4.822630691720174,52.2888435180785],[4.822629936573185,52.28884296621092],[4.822629181540334,52.28884240535597],[4.822628426393385,52.28884185348839],[4.82262767136057,52.28884129263342],[4.822626916327776,52.28884073177848],[4.822626161294998,52.2888401709235],[4.822625406148126,52.28883961905591],[4.822624651115386,52.28883905820091],[4.822623896082667,52.288838497345935],[4.822623141049966,52.288837936490935],[4.822622400673207,52.288837375705924],[4.822621645640544,52.28883681485098],[4.822620890607899,52.28883625399594],[4.822620150231195,52.28883569321092],[4.822619395198589,52.28883513235592],[4.82261865493604,52.28883456258352],[4.822617899903471,52.28883400172849],[4.822617159526842,52.28883344094344],[4.822616419150231,52.28883288015841],[4.822615664231839,52.28883231031602],[4.822614923855266,52.288831749530985],[4.82261418359283,52.288831179758546],[4.822613443216294,52.288830618973485],[4.822612702953896,52.28883004920104],[4.822611962577398,52.28882948841596],[4.822611222315038,52.288828918643524],[4.822610481938576,52.28882835785849],[4.822609741676255,52.288827788085996],[4.82260900141395,52.28882721831356],[4.822608261151667,52.28882664854111],[4.822607535431198,52.28882608782596],[4.82260679516895,52.28882551805347],[4.82260605490672,52.28882494828104],[4.822605329300429,52.28882437857854],[4.822604589038239,52.288823808806065],[4.822603863431983,52.28882323910355],[4.822603123169829,52.28882266933107],[4.822602397563613,52.28882209962857],[4.822601671957412,52.288821529926054],[4.822600931695317,52.28882096015355],[4.822600206203274,52.28882038146365],[4.82259948059713,52.288819811761115],[4.822598754991007,52.2888192420586],[4.822598029499021,52.28881866336869],[4.822597303892935,52.28881809366617],[4.822596578286864,52.288817523963615],[4.822595852794937,52.28881694527368],[4.822595127188905,52.288816375571166],[4.822594401697014,52.28881579688123],[4.822593676091017,52.28881522717865],[4.822592950599164,52.28881464848873],[4.822592239763244,52.28881406986877],[4.822591514157305,52.28881350016618],[4.822590788665508,52.28881292147626],[4.822590077829642,52.28881234285632],[4.822589352337882,52.288811764166354],[4.822588641502053,52.28881118554637],[4.822587930552119,52.288810615913775],[4.822587205060418,52.288810037223776],[4.822586494224643,52.28880945860381],[4.822585783388889,52.28880887998384],[4.822585072553154,52.28880830136385],[4.822584361717436,52.28880772274386],[4.822583636339949,52.288807135066506],[4.822582925504269,52.28880655644649],[4.822582214668605,52.28880597782647],[4.822581518488873,52.28880539927646],[4.822580807653247,52.28880482065644],[4.822580096931767,52.288804233049056],[4.822579386096179,52.28880365442901],[4.822578675374735,52.28880306682167],[4.822577979195093,52.288802488271614],[4.82257726835956,52.288801909651575],[4.82257657229408,52.28880132211414],[4.82257586157271,52.28880073450675],[4.822575165393143,52.2888001559567],[4.822574454671809,52.28879956834925],[4.822573758492277,52.28879898979918],[4.82257304777098,52.28879840219175],[4.822572351705612,52.28879781465431],[4.822571655640261,52.28879722711688],[4.822570959460802,52.28879664856681],[4.822570263395488,52.288796061029316],[4.822569567330194,52.28879547349188],[4.822568871264916,52.288794885954395],[4.822568175199657,52.288794298416946],[4.822567479134416,52.28879371087946],[4.822566783069195,52.288793123341975],[4.822566087003992,52.288792535804504],[4.82256540559471,52.28879194833703],[4.822564709529543,52.288791360799564],[4.822564013578523,52.288790764274694],[4.822563332169297,52.28879017680717],[4.822562636104184,52.288789589269676],[4.822561954694995,52.288789001802144],[4.822561258744049,52.28878840527733],[4.822560577334897,52.28878781780978],[4.82255989603989,52.28878722135491],[4.82255919997487,52.28878663381738],[4.822558518565772,52.288786046349855],[4.82255783727082,52.28878544989496],[4.822557155975888,52.28878485344004],[4.822556474566841,52.28878426597252],[4.822555793271948,52.288783669517585],[4.82255511186294,52.28878308205002],[4.822554430568079,52.28878248559514],[4.822553749273237,52.2887818891402],[4.822553067978414,52.28878129268528],[4.822552401225379,52.28878070528771],[4.822551719930591,52.28878010883276],[4.822551038635823,52.288779512377815],[4.822550371996973,52.28877891599285],[4.822549690702242,52.28877831953793],[4.822549024063427,52.28877772315295],[4.822548342768731,52.288777126697994],[4.822547676129954,52.28877653031304],[4.822547009491194,52.28877593392804],[4.822546328196551,52.288775337473076],[4.82254566167196,52.28877473210077],[4.822544995033255,52.28877413571577],[4.822544328394566,52.28877353933078],[4.822405246721756,52.28864111243446],[4.822380396384651,52.28861744542838],[4.82185599617262,52.28810883049353],[4.821496785591553,52.28771080881462],[4.821487940248788,52.287702183046484],[4.821082939267267,52.28730960334455],[4.820763259870203,52.28699864569478],[4.820400665518651,52.28664564272736],[4.819889510799221,52.28615352110318],[4.819611442029657,52.285884985053634],[4.819199741080408,52.2854848436097],[4.819004522910002,52.28529591450564],[4.818520341507102,52.28482397737043],[4.818109866178572,52.284428080173456],[4.817798523929073,52.28412506368864],[4.817505814989021,52.28384016589121],[4.817148090953266,52.28349651447187],[4.816904114482035,52.283259890481055],[4.816733255000775,52.28309515359899],[4.816732675642117,52.28309462051657],[4.816731675928541,52.28309372588932],[4.816729892737795,52.283092216303515],[4.816453544128795,52.28282393250238],[4.816325269211061,52.28269958554499],[4.815683387672173,52.28207594070044],[4.815644250400772,52.28203791237149],[4.81548315481986,52.281881570590144],[4.81536283967882,52.2817631571131],[4.815106994111262,52.28151995562148],[4.813284376689951,52.279748815344064],[4.813197526218516,52.27966458131457],[4.813139780450628,52.279608575807266],[4.812694390599128,52.279176582789766],[4.812614546833344,52.279099150271456],[4.812308894435018,52.278802698620076],[4.811675231724157,52.27818898481829],[4.811674377932242,52.27818815377256],[4.81141391019715,52.27793613128968],[4.811263880961054,52.277790883596644],[4.810860932396257,52.27739967065252],[4.810598604005499,52.27714268488391],[4.810359824531646,52.2768948373],[4.810127835701533,52.27663766592569],[4.809976213248623,52.27647357904106],[4.809842936922244,52.27632192198409],[4.809695106649376,52.27616498965998],[4.809692635161657,52.27616236209831],[4.809472929948027,52.27592910335568],[4.809281556959865,52.2757223982307],[4.809234818040026,52.27565792398778],[4.808998947308643,52.27538138029404],[4.80873969971468,52.27509316323441],[4.808433370464119,52.27475259404694],[4.807446319088482,52.27365478838211],[4.807016091461124,52.27317557988243],[4.806852738522686,52.2729937609421],[4.806560439429637,52.272669325982505],[4.806535367852935,52.27264148402415],[4.806385501267494,52.272475135981914],[4.806384808017896,52.272474368600804],[4.806021418448385,52.27207100136409],[4.80587333032493,52.271906755575685],[4.805693304002534,52.2717077399184],[4.805451359494445,52.27143621912447],[4.80499541756549,52.27091004918114],[4.80487827598555,52.27077406879022],[4.804852389684073,52.270754904798025],[4.804737951998864,52.27062396184288],[4.804735061148078,52.270610888115],[4.804708003197749,52.27057939584486],[4.8042330875837,52.270026695767115],[4.803759807274931,52.2694786664991],[4.803439142363475,52.26911548019884],[4.803248003561786,52.268887473549654],[4.80310830652502,52.26873065367441],[4.803094625651528,52.26870815215041],[4.802910707984863,52.26849613421961],[4.802825416448502,52.26840009877596],[4.802675533159656,52.26822600709255],[4.802581658948339,52.26811650102424],[4.802465022477911,52.26798556285772],[4.802212464222159,52.267707592166275],[4.802168855702039,52.26768165281892],[4.802143857674876,52.26766312176511],[4.802120890243128,52.26763611613126],[4.802052264877826,52.26754296683808],[4.802045052528491,52.267531067037424],[4.801908784659526,52.267379259952456],[4.801400925112797,52.26683043835622],[4.801318465370638,52.26673677963891],[4.801232166480291,52.26663988414141],[4.801182694213791,52.26658433599451],[4.80101933250191,52.266407928293724],[4.800809571621254,52.26619528442929],[4.800571843481527,52.26593625834645],[4.800417471234082,52.26574727530181],[4.800199692391634,52.265508804056694],[4.800049245314046,52.2653478644472],[4.799944041437572,52.265230875847166],[4.799785334413357,52.26506104170914],[4.799734686044042,52.265003860262006],[4.799598855680594,52.26485670832414],[4.799585945829879,52.26483816490183],[4.799313044180269,52.264539324401696],[4.799171146335681,52.26438816909272],[4.799169111280727,52.264385867038584],[4.799167076344759,52.26438355599708],[4.799165041290226,52.264381253942894],[4.799163006235903,52.26437895188867],[4.799160971300567,52.26437664084708],[4.799158936246664,52.264374338792756],[4.799156901192973,52.264372036738465],[4.799154851491681,52.26436973461124],[4.799152816438411,52.264367432556796],[4.799150766737545,52.264365130429525],[4.799148731684697,52.26436282837506],[4.799146681984252,52.264360526247685],[4.799144632284019,52.26435822412028],[4.799142582583999,52.2643559219928],[4.79914053276541,52.264353628852696],[4.799138483065811,52.26435132672517],[4.799136433366424,52.26434902459761],[4.799134368900667,52.264346731384464],[4.799132319201705,52.26434442925687],[4.799130254736373,52.26434213604367],[4.799128205037834,52.26433983391599],[4.799126140572929,52.26433754070272],[4.799124076108233,52.26433524748942],[4.799122011762534,52.26433294528877],[4.799119961946061,52.26433065214828],[4.799117882834208,52.26432835886199],[4.799115818370364,52.26432606564855],[4.799113753906731,52.26432377243507],[4.799111689443313,52.26432147922154],[4.799109610332313,52.26431918593514],[4.799107545869319,52.26431689272156],[4.799105466758745,52.26431459943503],[4.799103402296179,52.26431230622139],[4.799101323186035,52.26431001293483],[4.799099244076102,52.2643077196482],[4.799097164847598,52.264305435348895],[4.799095085738095,52.264303142062225],[4.799093006628804,52.26430084877546],[4.799090927400941,52.26429856447609],[4.799088848292079,52.26429627118929],[4.799086754416857,52.264293986816924],[4.799084675189633,52.26429170251741],[4.79908258143363,52.26428940915762],[4.799080502206835,52.26428712485807],[4.799078408332472,52.264284840485544],[4.799076314577112,52.26428254712562],[4.799074220703178,52.264280262753026],[4.799072126829459,52.26427797838042],[4.799070032955952,52.26427569400776],[4.799067939082665,52.26427340963505],[4.799065845209587,52.264271125262354],[4.79906373668895,52.26426884081665],[4.799061642697512,52.26426656543124],[4.799059534177306,52.26426428098549],[4.799057440305089,52.264261996612625],[4.799055331785316,52.26425971216679],[4.799053223146963,52.264257436708284],[4.799051114627622,52.264255152262436],[4.799049005989698,52.26425287680387],[4.799046897470786,52.26425059235789],[4.799044788833295,52.26424831689927],[4.799042680314819,52.26424603245324],[4.799040557029989,52.26424375692165],[4.799038448393147,52.2642414814629],[4.799036339756517,52.26423920600409],[4.799034216591138,52.264236921485],[4.799032093307176,52.26423464595327],[4.79902997002343,52.26423237042145],[4.799027861387666,52.26423009496251],[4.799025738104354,52.26422781943063],[4.799023614821258,52.26422554389872],[4.799021476890621,52.26422326829389],[4.799019353489157,52.26422100174927],[4.799017230206712,52.26421872621722],[4.799015092276726,52.26421645061227],[4.799012968875912,52.26421418406754],[4.799010830946362,52.26421190846248],[4.799008707664787,52.26420963293031],[4.799006569616867,52.26420736631253],[4.799004431569165,52.26420509969476],[4.799002293640488,52.26420282408958],[4.79900015559322,52.264200557471725],[4.798998017664978,52.26419828186644],[4.798995879618148,52.264196015248494],[4.798993741571535,52.26419374863051],[4.798991588877388,52.2641914819396],[4.798989450831211,52.26418921532152],[4.7989872981375,52.264186948630524],[4.798985160091759,52.26418468201238],[4.798983007398486,52.2641824153213],[4.798980854705434,52.264180148630174],[4.798978702012601,52.26417788193899],[4.798976549201175,52.26417562423519],[4.798974396508779,52.26417335754394],[4.798972243816601,52.264171090852656],[4.798970091005833,52.26416883314867],[4.798967923666349,52.26416656638445],[4.798965770856017,52.26416430868043],[4.798963603516975,52.264162041916094],[4.798961450707079,52.26415978421196],[4.798959283368477,52.26415751744754],[4.79895711591128,52.26415525967045],[4.798954948454304,52.264153001893305],[4.798952780997549,52.26415074411616],[4.79895061354101,52.26414848633893],[4.798948446084692,52.26414622856169],[4.798946278628596,52.26414397078438],[4.798944111172716,52.26414171300706],[4.798941929069326,52.26413945515677],[4.798939761613886,52.26413719737938],[4.798937579510937,52.26413493952902],[4.798935397408206,52.26413268167861],[4.798933229834611,52.264130432888436],[4.798931047732321,52.26412817503797],[4.798928865511434,52.26412592617478],[4.798926683409587,52.26412366832423],[4.798924501189141,52.26412141946102],[4.798922319087738,52.264119161610346],[4.798920122220008,52.26411691267412],[4.798917940119045,52.264114654823395],[4.798915757899482,52.26411240595997],[4.798913561032416,52.26411015702364],[4.79891136416557,52.26410790808723],[4.798909181946668,52.264105659223716],[4.798906985080267,52.26410341028727],[4.798904788214085,52.264101161350766],[4.798902591348129,52.264098912414205],[4.798900394482391,52.264096663477574],[4.798852917919679,52.26406344134589],[4.798733131684277,52.26393969198661],[4.798731410482061,52.26393802963238],[4.798729674632308,52.263936367205204],[4.798727938782686,52.263934704777995],[4.798726202933191,52.26393304235078],[4.79872446708383,52.26393137992354],[4.798722731234593,52.26392971749625],[4.798720995266628,52.26392806405631],[4.798719244769988,52.263926401556034],[4.798717508802281,52.26392474811607],[4.798715758305904,52.26392308561576],[4.798714007690794,52.263921432102784],[4.798712257075814,52.263919778589795],[4.798710506460962,52.26391812507676],[4.798708755965106,52.263916462576354],[4.798707005350517,52.26391480906327],[4.79870523996953,52.2639131644646],[4.798703489355203,52.26391151095147],[4.798701724093344,52.26390985736539],[4.798699958831619,52.26390820377927],[4.798698193451156,52.263906559180526],[4.798696428189691,52.26390490559432],[4.798694648161836,52.26390326092256],[4.798692882781766,52.263901616323736],[4.798691102754172,52.263899971651874],[4.798689337493232,52.26389831806564],[4.798687557465901,52.26389667339376],[4.798685777438703,52.263895028721876],[4.798683997292764,52.263893393037314],[4.798682217265829,52.26389174836537],[4.798680422591371,52.26389010362045],[4.798678642445828,52.263888467935814],[4.798676847771636,52.26388682319085],[4.798675052978707,52.26388518743323],[4.798673258304778,52.26388354268822],[4.798671463512111,52.26388190693053],[4.798669668719575,52.263880271172816],[4.798667873927173,52.26387863541509],[4.798666064487255,52.263876999584404],[4.798664269695118,52.263875363826614],[4.798662460255465,52.26387372799582],[4.798660665344716,52.26387210122536],[4.798658855905328,52.26387046539452],[4.798657046466075,52.2638688295637],[4.798655222260435,52.263867202647276],[4.798653412702572,52.263865575803756],[4.798651588616075,52.26386393989988],[4.798649779058477,52.26386231305628],[4.798647954853369,52.26386068613974],[4.798646130648395,52.263859059223186],[4.798644306443554,52.26385743230656],[4.798642482238848,52.263855805389916],[4.798640657915393,52.2638541874606],[4.798638833710952,52.26385256054392],[4.798636994859008,52.263850933554274],[4.798635155888316,52.26384931555196],[4.798633331565395,52.26384769762254],[4.798631492713851,52.26384607063279],[4.798629653743562,52.26384445263034],[4.798627814773406,52.26384283462794],[4.798625961155747,52.26384121655251],[4.79862412218586,52.26383959855003],[4.798622268568472,52.26383798047456],[4.798620429479969,52.263836371459384],[4.798618575862849,52.26383475338384],[4.798616722126981,52.263833144295646],[4.798614868510131,52.26383152622009],[4.79861301477453,52.263829917131815],[4.798611146391436,52.26382830797061],[4.798609292774989,52.26382668989491],[4.798607424392164,52.263825080733646],[4.798605570657101,52.26382347164527],[4.798603702274544,52.26382186248395],[4.798601833773238,52.263820262309956],[4.798599965390951,52.263818653148554],[4.798598097008798,52.263817043987125],[4.798596213860268,52.2638154437401],[4.798594345478387,52.2638138345786],[4.798592462330127,52.26381223433149],[4.79859059382963,52.26381063415734],[4.798588710681641,52.26380903391016],[4.798586827533788,52.26380743366299],[4.798584944386069,52.26380583341574],[4.798583046590863,52.26380423309556],[4.798581163443417,52.26380263284828],[4.798579265648484,52.26380103252803],[4.798577382382416,52.26379944126807],[4.798575484587758,52.26379784094776],[4.79857358667434,52.263796249614735],[4.798571688761061,52.263794658281746],[4.798569790847916,52.263793066948715],[4.7985678930538,52.26379146662828],[4.798565980374417,52.263789884209544],[4.79856408246168,52.263788292876434],[4.79856216990146,52.26378670147032],[4.798560271988996,52.26378511013713],[4.798558359310157,52.263783527718346],[4.798556446750347,52.26378193631212],[4.798554534071782,52.263780353893246],[4.798552606864631,52.26377876241402],[4.798550694186337,52.263777179995095],[4.79854878150818,52.26377559757613],[4.798546854182544,52.26377401508419],[4.798544926857048,52.26377243259222],[4.798542999531685,52.263770850100194],[4.798541072206462,52.26376926760818],[4.798539144762478,52.26376769410346],[4.798537217437528,52.263766111611325],[4.798535275346206,52.26376453803365],[4.798533347902632,52.263762964528816],[4.798531405930484,52.263761381963654],[4.798529478487183,52.2637598084588],[4.798527536396409,52.26375823488099],[4.798525594305775,52.26375666130308],[4.798523652215277,52.263755087725166],[4.798521695358406,52.2637535230616],[4.798519753268184,52.26375194948362],[4.798517811178099,52.26375037590563],[4.798515854321642,52.26374881124199],[4.798513897465325,52.26374724657832],[4.798511940728047,52.26374567292727],[4.798509983872005,52.26374410826353],[4.7985080270161,52.263742543599754],[4.798506070160332,52.263740978935964],[4.798504113304704,52.26373941427214],[4.798502141682705,52.263737858522695],[4.798500184827349,52.263736293858805],[4.798498213324534,52.26373472912191],[4.798496241702948,52.26373317337238],[4.798317782586394,52.263595595451704],[4.798307459269957,52.26358755371938],[4.798291628258213,52.263572860416545],[4.79820094916172,52.26350461237402],[4.798198150741625,52.26350244131774],[4.798083940087792,52.263413655265985],[4.797912037750337,52.26328001916007],[4.797906181248059,52.2632764846553],[4.797905817799434,52.263276276120074],[4.79789814512659,52.26327161805239],[4.797830656588198,52.26322099389219],[4.797825357411192,52.263216302715406],[4.797825198194138,52.263216158114055],[4.797824980982577,52.26321596828373],[4.79781348532467,52.263205763550296],[4.797806643871372,52.263198071690574],[4.797603954175139,52.263043294700644],[4.797410825436418,52.262895584663106],[4.797186987645194,52.26272304005876],[4.79703510054151,52.262609249111584],[4.796972700815162,52.26256164285002],[4.796778312711056,52.262412011025454],[4.796594430102669,52.26226999024748],[4.796411574738418,52.26213012243386],[4.795904112480216,52.26174396938185],[4.795852879595439,52.261708282494155],[4.795690406029664,52.26158479271671],[4.795642007014559,52.26154641454047],[4.795506810085629,52.261441558259506],[4.795315713548681,52.26130288778529],[4.795160064147631,52.26118855422046],[4.795158047499939,52.26118709705576],[4.795156030852378,52.26118563989101],[4.79515401420495,52.26118418272623],[4.795151997557654,52.26118272556146],[4.795149980910491,52.2611812683966],[4.795147964263459,52.26117981123175],[4.795145947616561,52.26117835406681],[4.795143930969794,52.261176896901866],[4.795141899556833,52.26117544865088],[4.795139882910329,52.26117399148586],[4.795137866144381,52.26117254330818],[4.795135834851392,52.26117108606971],[4.795133803438961,52.2611696378186],[4.795131786792986,52.26116818065344],[4.795129755380819,52.26116673240228],[4.795127724088362,52.261165275163656],[4.79512569267646,52.26116382691238],[4.795123675911434,52.26116237873447],[4.795121644499795,52.26116093048314],[4.795119613088287,52.261159482231776],[4.795117581676915,52.261158033980344],[4.795115535618928,52.261156585655556],[4.795113504207819,52.261155137404074],[4.795111472796841,52.261153689152565],[4.795109441385995,52.261152240901],[4.795107395328541,52.26115079257608],[4.795105363917963,52.26114934432445],[4.795103317741191,52.26114790498679],[4.795101286330875,52.261146456735105],[4.795099240154369,52.26114501739738],[4.795097194097577,52.26114356907223],[4.795095147921337,52.26114212973445],[4.795093116511549,52.2611406814826],[4.795091070335574,52.26113924214476],[4.795089024159729,52.26113780280682],[4.795086978103602,52.2611363544815],[4.795084931928021,52.261134915143565],[4.79508287110584,52.261133475732116],[4.795080824930526,52.26113203639409],[4.795078778755344,52.261130597056],[4.795076732580293,52.26112915771787],[4.795074671758641,52.261127718306334],[4.795072625583858,52.26112627896814],[4.795070564642883,52.26112484854386],[4.795068518468364,52.26112340920561],[4.795066457647244,52.26112196979393],[4.795064396706667,52.26112053936959],[4.795062335885813,52.261119099957845],[4.795060289592233,52.2611176696068],[4.795058228771645,52.261116230194965],[4.795056167831598,52.261114799770496],[4.795054107011277,52.26111336035856],[4.795052046071497,52.261111929934025],[4.79504997048512,52.26111049943598],[4.795047909545603,52.26110906901137],[4.795045848606221,52.2611076385867],[4.795043787786565,52.2611061991746],[4.795041712200721,52.261104768676475],[4.795039651261734,52.26110333825171],[4.795037575556561,52.261101916740856],[4.795035514617841,52.26110048631598],[4.79503343903253,52.2610990558177],[4.795031363447351,52.26109762531942],[4.795029287742708,52.26109620380839],[4.79502722680452,52.2610947733834],[4.795025151219741,52.26109334288499],[4.795023075515496,52.26109192137388],[4.795020999930985,52.26109049087535],[4.795018924227006,52.26108906936422],[4.795016848523159,52.26108764785301],[4.795014758292328,52.261086217281026],[4.795012682588746,52.261084795769726],[4.7950106068853,52.261083374258426],[4.795008516535265,52.26108195267368],[4.795006440832084,52.26108053116229],[4.795004350482317,52.261079109577466],[4.7950022747794,52.261077688065996],[4.795000184429902,52.26107626648112],[4.79499810872725,52.261074844969606],[4.794996018378016,52.26107342338463],[4.794993927909312,52.261072010787004],[4.794991837560344,52.26107058920196],[4.794989747211511,52.26106916761689],[4.794987656743206,52.26106775501914],[4.794985566394638,52.26106633343401],[4.794983475926601,52.26106492083616],[4.794981385578298,52.261063499250945],[4.794979280463812,52.26106208657969],[4.794977189996171,52.26106067398176],[4.794975099528663,52.26105926138375],[4.794972994534186,52.26105783972501],[4.794970904066944,52.261056427126974],[4.794968798953125,52.26105501445551],[4.794966708486149,52.261053601857384],[4.794964603372596,52.2610521891858],[4.794962498139569,52.2610507855016],[4.79496040767299,52.26104937290339],[4.794958302559837,52.26104796023173],[4.79495619744682,52.261046547560035],[4.794954092214323,52.261045143875684],[4.79495198710157,52.26104373120386],[4.794949881869339,52.261042327519434],[4.794947776756855,52.261040914847605],[4.794945656878184,52.26103951108967],[4.794943551765968,52.26103809841775],[4.794941446534268,52.261036694733136],[4.794939326655999,52.26103529097511],[4.794937221424568,52.261033887290445],[4.79493510166618,52.26103247454496],[4.794932996435015,52.26103107086024],[4.794930876557281,52.26102966710203],[4.794928756679679,52.261028263343825],[4.794926651448912,52.26102685965899],[4.79492453145196,52.26102546488805],[4.794922411574758,52.26102406112971],[4.794920291697692,52.26102265737132],[4.794918171820759,52.26102125361291],[4.79491605182434,52.26101985884184],[4.794913931947673,52.26101845508336],[4.79491181195152,52.261017060312206],[4.794909677428424,52.26101565648025],[4.794907557432539,52.26101426170901],[4.794905437436785,52.26101286693774],[4.794903302914091,52.26101146310565],[4.794901182918603,52.261010068334315],[4.794899048276556,52.26100867348949],[4.794896928281332,52.261007278718075],[4.794894793639553,52.261005883873224],[4.794892934653317,52.261004688145086],[4.794868172231989,52.26098877218468],[4.794843439480649,52.2609728294038],[4.794843047250371,52.260972584762825],[4.794842669786416,52.260972331207874],[4.794842277556148,52.260972086566895],[4.794841900092201,52.26097183301195],[4.794841507861943,52.260971588370964],[4.794841115751322,52.26097133474259],[4.794840738167752,52.260971090175005],[4.794840346057141,52.26097083654666],[4.794839953826899,52.26097059190569],[4.794839576362979,52.260970338350695],[4.794839184132743,52.260970093709716],[4.794838806549196,52.260969849142114],[4.794838414438608,52.260969595513764],[4.794838022208387,52.26096935087274],[4.794837644744488,52.26096909731779],[4.794837252514276,52.26096885267681],[4.794836860403705,52.26096859904842],[4.794836482820182,52.260968354480816],[4.794836090589982,52.26096810983981],[4.794835698479424,52.26096785621143],[4.794835320895915,52.26096761164386],[4.794834928785365,52.260967358015456],[4.794834536555182,52.26096711337445],[4.794834144325004,52.26096686873343],[4.794833766861149,52.26096661517847],[4.794833374630979,52.26096637053746],[4.794832982400814,52.260966125896445],[4.794832604936972,52.26096587234146],[4.794832212706816,52.26096562770043],[4.794831820596303,52.26096537407205],[4.794831428366155,52.26096512943101],[4.794831050782692,52.2609648848634],[4.794830658672192,52.26096463123504],[4.794830266442058,52.260964386594004],[4.794829874211926,52.26096414195297],[4.794829496748118,52.260963888397974],[4.794829104517996,52.26096364375695],[4.794828712287879,52.26096339911591],[4.794828320177405,52.26096314548753],[4.794827942593975,52.2609629009199],[4.794827550363872,52.26096265627885],[4.794827158133772,52.26096241163783],[4.794826766023315,52.26096215800939],[4.794826388439903,52.260961913441804],[4.794825996209815,52.26096166880076],[4.79482560409937,52.260961415172325],[4.794825211869293,52.2609611705313],[4.794824819639219,52.26096092589024],[4.794824427409148,52.26096068124917],[4.794824049945401,52.260960427694194],[4.794823657715339,52.26096018305316],[4.794823265485284,52.26095993841209],[4.794822873255231,52.260959693771035],[4.794822481144823,52.26095944014263],[4.794822103561457,52.26095919557497],[4.794821711331417,52.260958950933926],[4.794821319101381,52.26095870629289],[4.794820926990992,52.26095845266446],[4.794820534760964,52.260958208023396],[4.794820142530942,52.26095796338234],[4.794819750300926,52.260957718741274],[4.794819372837226,52.2609574651862],[4.794818980607221,52.26095722054518],[4.794818588377216,52.260956975904115],[4.794818196147214,52.26095673126301],[4.794817803917218,52.26095648662197],[4.794817411806865,52.26095623299354],[4.794817019576879,52.260955988352485],[4.794816627346894,52.2609557437114],[4.794816235116916,52.26095549907032],[4.794815842886942,52.26095525442925],[4.79481546530365,52.26095500986157],[4.794815073193322,52.260954756233154],[4.794814680963363,52.26095451159208],[4.794814288733403,52.260954266950975],[4.794813896503449,52.260954022309896],[4.794813504273504,52.26095377766881],[4.79481311204356,52.2609535330277],[4.794812719933261,52.26095327939926],[4.794812327703324,52.260953034758245],[4.794811935473394,52.2609527901171],[4.794811543243466,52.260952545476016],[4.794811151013543,52.26095230083492],[4.794810758783625,52.26095205619385],[4.79481036655371,52.26095181155273],[4.794809974323803,52.26095156691165],[4.794809582213538,52.26095131328318],[4.794809189983637,52.26095106864208],[4.794808797753739,52.260950824001014],[4.794808405523847,52.260950579359886],[4.794808013293959,52.26095033471879],[4.794807621064075,52.26095009007771],[4.794807228834197,52.26094984543658],[4.79480683660432,52.26094960079547],[4.794806444374449,52.2609493561544],[4.794806052144585,52.26094911151327],[4.79480565991472,52.26094886687215],[4.794805267684865,52.260948622231055],[4.79480487545501,52.26094837758994],[4.794804483225159,52.26094813294882],[4.794804091114959,52.26094787932037],[4.794803698885118,52.260947634679255],[4.794803306655283,52.26094739003812],[4.79480291442545,52.26094714539698],[4.794802522195623,52.260946900755876],[4.794802129965799,52.26094665611473],[4.79480173773598,52.26094641147362],[4.794801345506166,52.26094616683251],[4.794800938629681,52.26094592211798],[4.794800546399876,52.26094567747683],[4.794800154170074,52.26094543283574],[4.794799761940276,52.26094518819459],[4.794799369710483,52.26094494355347],[4.794798977480695,52.260944698912326],[4.79479858525091,52.2609444542712],[4.794798193021131,52.26094420963006],[4.794797800791353,52.260943964988925],[4.794797393914909,52.26094372027439],[4.794797001685144,52.260943475633255],[4.794796609335737,52.260943239979476],[4.794796217105978,52.26094299533834],[4.794795824876224,52.2609427506972],[4.794795432646472,52.26094250605606],[4.794795040416727,52.260942261414904],[4.794794633540315,52.26094201670035],[4.794794241310576,52.260941772059184],[4.794793849080846,52.26094152741805],[4.794793456851118,52.26094128277692],[4.794762330112471,52.260921515006736],[4.794761836074345,52.26092121592737],[4.794761342036224,52.26092091684797],[4.794760847998109,52.26092061776858],[4.794760339313337,52.26092031861576],[4.794759845275237,52.26092001953634],[4.794759351237142,52.26091972045693],[4.794758842552391,52.26091942130412],[4.794758348514311,52.260919122224664],[4.794757839829572,52.26091882307186],[4.794757345791505,52.26091852399242],[4.794756851753445,52.26091822491301],[4.794756343068725,52.2609179257602],[4.794755848911028,52.260917635668164],[4.794755354872986,52.260917336588726],[4.794754846188288,52.260917037435846],[4.794754352150262,52.26091673835646],[4.794753843465578,52.260916439203584],[4.794753349427564,52.26091614012414],[4.79475284062324,52.26091584995866],[4.79475234658524,52.26091555087921],[4.794751837900583,52.26091525172635],[4.794751343862595,52.26091495264692],[4.794750835177952,52.260914653494055],[4.794750341020326,52.26091436340199],[4.794749832335694,52.260914064249114],[4.794749338297735,52.26091376516967],[4.794748829613117,52.2609134660168],[4.794748335455515,52.260913175924685],[4.794747826770914,52.26091287677183],[4.794747332732981,52.26091257769239],[4.794746823928737,52.26091228752683],[4.794746315244156,52.26091198837397],[4.794745821206241,52.26091168929452],[4.794745312521671,52.260911390141615],[4.794744818364117,52.260911100049526],[4.794744309679561,52.26091080089664],[4.794743800875357,52.2609105107311],[4.794743306837477,52.260910211651634],[4.794742798152941,52.26090991249871],[4.794742289348759,52.26090962233321],[4.794741795310898,52.26090932325369],[4.794741286626383,52.2609090241008],[4.794740777822221,52.26090873393526],[4.794740269137717,52.26090843478236],[4.79473977498023,52.26090814469024],[4.79473926629574,52.260907845537325],[4.794738757491605,52.26090755537177],[4.794738263453792,52.260907256292285],[4.794737754649667,52.260906966126704],[4.794737245965205,52.2609066669738],[4.794736737161096,52.26090637680824],[4.79473622847665,52.26090607765533],[4.794735734319213,52.26090578756317],[4.794735225634778,52.26090548841023],[4.794734716830695,52.26090519824469],[4.794734208146274,52.26090489909176],[4.794733699342205,52.260904608926204],[4.794733205304458,52.26090430984666],[4.7947326965004,52.26090401968109],[4.794732187816008,52.26090372052813],[4.794731679011964,52.26090343036259],[4.794731170207927,52.26090314019698],[4.794730661523555,52.26090284104401],[4.794730283582201,52.26090262343818],[4.794595339904054,52.26082195397848],[4.794579407795817,52.26081171768817],[4.794562909383859,52.26080111004926],[4.794457089539042,52.26074324513072],[4.794312358048463,52.2606672898759],[4.794213710523959,52.260617540899325],[4.794130600875108,52.26057793633533],[4.794042675986198,52.260536959349956],[4.793666259059936,52.26037040998536],[4.793646054914674,52.26036202161025],[4.793349287090099,52.26023876179924],[4.792131745690732,52.25972751375386],[4.791650780479341,52.25952672654392],[4.791452239230277,52.25944456450793],[4.791256924477649,52.259362148764964],[4.791071351112998,52.259285174615705],[4.790864086984327,52.259198293834864],[4.790458004035037,52.25902843864142],[4.788754997977308,52.258262464623094],[4.787217389474893,52.257608792439925],[4.787266480373601,52.257565656683944],[4.787272483177794,52.25756039323723],[4.7872090332421,52.2575344014582],[4.787067241799249,52.25747345306572],[4.787055108259413,52.25746848401321],[4.786952729783231,52.257428255178176],[4.786891631115745,52.25740279647182],[4.786885422402423,52.257408121769345],[4.786839026762031,52.25744796348479],[4.786738720535943,52.257403970039164],[4.78644562976792,52.257275920772635],[4.785593550443267,52.25702292478375],[4.785541773042862,52.257001440570924],[4.784941567147959,52.256752355348645],[4.784306988642216,52.256473341471406],[4.78258499077121,52.255745712033026],[4.781977038275927,52.2554989986957],[4.781512833039351,52.255309903996974],[4.781119196879015,52.255143252882654],[4.781010543284143,52.25509032258606],[4.780965419061451,52.255065643784455],[4.780930141083839,52.25504495221791],[4.780820982951469,52.25493556560682],[4.780785589662476,52.25489970168128],[4.780750181785822,52.25486383766985],[4.780714773966171,52.25482797364766],[4.780660253369061,52.25478998023321],[4.780605732865026,52.25475198679346],[4.780551212331566,52.25471400231581],[4.780498439985006,52.25468959864956],[4.780445667696373,52.25466519495977],[4.780392895465669,52.254640791246324],[4.780335323007234,52.25462365211695],[4.780277750593239,52.254606512959555],[4.780220178223684,52.254589373774095],[4.780143731335789,52.25455908704496],[4.780067299196612,52.25452880034159],[4.779853891031901,52.25444994865031],[4.778495628152204,52.253863630251004],[4.778436260608892,52.253846157373374],[4.7784054536693,52.25383709156936],[4.778383639460775,52.25382906076639],[4.77834397844047,52.253813109469206],[4.778220663092134,52.25375650583183],[4.778061817506186,52.2536957012913],[4.77797887745562,52.25365853082577],[4.777912916152434,52.25363385127202],[4.777846945081382,52.25361096024108],[4.777757215623728,52.25357230754179],[4.777500633013431,52.25345455355466],[4.777265150054316,52.253344673534514],[4.776911450110619,52.25318478456479],[4.776558722901014,52.253048115536586],[4.776542834574135,52.25304052845908],[4.776415875349625,52.25296697070315],[4.776149768876456,52.25287033124438],[4.775939391965717,52.25278404601905],[4.775901586230361,52.252771761602965],[4.775869490137295,52.2527574844136],[4.775820473550167,52.252731884681616],[4.77565955122986,52.2526671114124],[4.77558226431535,52.25263021117419],[4.775504650369273,52.25259473828314],[4.775416215927865,52.25255272897705],[4.775388096845892,52.25253680946548],[4.775369800419971,52.25252225305197],[4.775358866554586,52.252514367896985],[4.775354595852583,52.25251182914608],[4.775277179364955,52.25248865270373],[4.775268267065059,52.25248605396195],[4.775175475502762,52.25245421429741],[4.775123132710653,52.25243625481734],[4.775039682109891,52.25239289587673],[4.775037195888587,52.25238838899928],[4.775033205921603,52.25238567193099],[4.775029179309315,52.25238455453596],[4.775017737489607,52.25238379419822],[4.775008343150381,52.25238217263101],[4.774998358238504,52.25238089853528],[4.774996906152563,52.252381061784384],[4.774959237424353,52.25237376611124],[4.774950310522297,52.25237116726959],[4.774940571053073,52.252366955365915],[4.774920122179896,52.25235664803941],[4.774749064148436,52.252285790053186],[4.774396476261998,52.25213574107963],[4.773614816356912,52.2518017984824],[4.773573078696653,52.25178482812626],[4.773461296252866,52.25173701567937],[4.773428651825317,52.25171694669985],[4.773394467306453,52.251700240210745],[4.77306624873865,52.25156990763458],[4.772663523943835,52.251407512978794],[4.772567767967397,52.251381722727785],[4.772538882978616,52.25136730852841],[4.772511516830126,52.25135531999444],[4.77247910304788,52.251341930031984],[4.772423404101509,52.25132114762846],[4.772185880383202,52.251226076937186],[4.77214638846407,52.25120987275142],[4.771805043726166,52.251069815198946],[4.771495170283642,52.2509394029739],[4.771481783650749,52.25093528862221],[4.771462840868127,52.25092630977299],[4.771423045975264,52.25090875556371],[4.771269415066879,52.25082914808742],[4.771019980327774,52.2507369340399],[4.770556688696308,52.25054271333252],[4.770131191742935,52.2503679404607],[4.769429663694783,52.250072326626416],[4.769160082468384,52.2499614340648],[4.768862525473781,52.24983839550534],[4.768771411188531,52.249790902430924],[4.768588276294365,52.24970743394571],[4.768219229153066,52.249539232230795],[4.768154589355842,52.24954144620351],[4.76805122721724,52.24954498521359],[4.764950361435067,52.25003201625329],[4.764788573467346,52.25005610589717],[4.76187455377572,52.25051507208588],[4.761358932588964,52.250598177812066],[4.760933710243452,52.25066764925749],[4.760787494506363,52.250693119226945],[4.760523335359703,52.250736119357555],[4.760440409966105,52.250746132600504],[4.760435314751181,52.250746060634995],[4.760421579301823,52.2507449541589],[4.760411095880984,52.250744817660006],[4.760393523829269,52.250745776048255],[4.760382895368076,52.25074553990941],[4.760362712604112,52.250747823657825],[4.760355505180483,52.2507490347576],[4.760336389949966,52.25075558448102],[4.760322447878362,52.2507639502593],[4.760314988779541,52.25076743398785],[4.76029844736903,52.25077319742675],[4.760285942967384,52.25077514440115],[4.760269741710601,52.25077547189491],[4.759241405680978,52.250865464249806],[4.759182835424383,52.25086598886628],[4.759170415389437,52.25086610261717],[4.759124863086181,52.2508615013221],[4.759067070859503,52.25085566650526],[4.759050385333229,52.25085398693141],[4.759013345515584,52.25086569914242],[4.759002151247045,52.25086923483584],[4.75899214251826,52.250871779161756],[4.758958532343874,52.25087809880641],[4.758933879044673,52.25088273137777],[4.758924104205236,52.25086351696843],[4.758921867369439,52.25085910095034],[4.758906634494337,52.250829206727076],[4.758889164937136,52.25079488749562],[4.75887480162023,52.25076667864931],[4.758871328183963,52.25076064720082],[4.758851802411943,52.25072675744214],[4.758832276796438,52.250692858692716],[4.75881275108371,52.25065896892724],[4.758808762942643,52.25065205391458],[4.758790595386814,52.25062569433259],[4.758767763725608,52.25059258691083],[4.75874494674146,52.25055947956231],[4.758722115148012,52.25052637213142],[4.758699283588451,52.25049326469591],[4.758697604728863,52.25049082001534],[4.758686411490311,52.25047458205971],[4.758676466705916,52.25046015733375],[4.758653635214112,52.250427049889154],[4.75863680211252,52.25040264777851],[4.758636644591643,52.250402395276275],[4.758636515468645,52.25040220584122],[4.758636328915343,52.2504019352085],[4.758630803883105,52.25039393345267],[4.758621433310219,52.250380329685235],[4.758607987102185,52.25036082607686],[4.758594540778993,52.2503413314542],[4.758593148827737,52.25033931073483],[4.758585155712031,52.25032771861854],[4.75856232435576,52.2502946111557],[4.758539507676452,52.25026150376626],[4.75851667638794,52.250228396294276],[4.758510807200416,52.2502198803847],[4.758493948015509,52.25019526240114],[4.758471248962924,52.25016212865929],[4.758468293301614,52.25015780767516],[4.758465997637809,52.250154451919904],[4.758448535427967,52.250128985847674],[4.758441949729654,52.250119360596415],[4.758425836569778,52.250095843109456],[4.758403137745308,52.250062700366726],[4.758380438954565,52.2500295576195],[4.758357740197542,52.249996414867766],[4.758335041347273,52.24996328109882],[4.758312342657691,52.24993013833808],[4.758302227225117,52.24991537112559],[4.758301882904664,52.24991486596436],[4.758301725006475,52.24991464042366],[4.758301351908012,52.24991409915722],[4.758289644001832,52.24989699557285],[4.758266930736751,52.2498638527251],[4.758244232148345,52.24983070995081],[4.758221548109596,52.249797576237306],[4.758198834945708,52.249764433376036],[4.758176136458467,52.24973129058823],[4.758153438004945,52.249698147795904],[4.758130739585147,52.24966500499907],[4.758120767780276,52.24965044525881],[4.758120466503465,52.24965000324225],[4.758108041199071,52.24963186219771],[4.758085342846718,52.24959871939187],[4.758062629758213,52.24956558549087],[4.758045010748636,52.24953984887926],[4.758039916703447,52.249532451585374],[4.758017086285752,52.249499335026286],[4.757994270417726,52.24946622752792],[4.757991400672996,52.24946205079666],[4.757990453429955,52.24946068856268],[4.75799025249577,52.24946039987631],[4.757989477536535,52.24945928123603],[4.75798788470605,52.24945697182292],[4.757987640859766,52.24945661100393],[4.757971454583561,52.24943312002508],[4.757948624140466,52.24940001243962],[4.757925808501081,52.24936689594024],[4.757907986301764,52.2493410413804],[4.757903036823879,52.249333779670316],[4.757880427013179,52.249300610329605],[4.757862608805558,52.249274477155254],[4.757857802466283,52.24926744989386],[4.757835089715393,52.24923431594763],[4.757823998969742,52.24921812339018],[4.757810831887662,52.24920171304779],[4.757784886370793,52.24916937079329],[4.757759012834256,52.24913711879639],[4.757733124565363,52.24910487570298],[4.757717166052645,52.24908497211778],[4.757709441251624,52.249072042153145],[4.757696896003263,52.24905101527068],[4.757693620104321,52.24904553310583],[4.757689300074824,52.24903829271549],[4.757683792793624,52.24902905964869],[4.757679229561395,52.24902141350166],[4.757669144412917,52.24900453420891],[4.757648988781496,52.24897077569873],[4.757628847823196,52.248937017262975],[4.757624027143564,52.248928938317164],[4.757621838426648,52.248925277521664],[4.757619191823042,52.2489208592932],[4.75761483922754,52.24891385241478],[4.757613178434318,52.2489111741255],[4.757612562910559,52.2489101731763],[4.757608324915918,52.24890334666849],[4.757587449472763,52.24886975508381],[4.757566588703631,52.24883616357329],[4.757559787918743,52.24882520689685],[4.757557873250152,52.24882287778654],[4.757546284143002,52.24880880371691],[4.757543052462369,52.24880330380715],[4.75753611683084,52.24879152850132],[4.757529003460056,52.24876850824133],[4.757527056749164,52.24876223322116],[4.757527474872496,52.248732673868226],[4.7575274785592,52.248732413235444],[4.757537365715541,52.24870323689796],[4.757537978773114,52.2487023413633],[4.75753844248117,52.24870165175715],[4.757541088878169,52.248697801012796],[4.757555532835974,52.24867672019323],[4.757567357782174,52.248665835801425],[4.757581526879909,52.24865279778749],[4.757582181272874,52.2486500149897],[4.757583346423532,52.2486494279891],[4.75760414265697,52.24863891496463],[4.757642873597771,52.248619347693236],[4.757649363213748,52.248616065691664],[4.757674982220867,52.24860312462165],[4.757673581849893,52.24860170604258],[4.757673307581881,52.24860142595293],[4.757681136118431,52.248596659072426],[4.757689023985969,52.248591838579394],[4.757709806741665,52.248579168340974],[4.757730574843007,52.248566498020836],[4.757772111010222,52.24854115736945],[4.757813661772635,52.24851581678129],[4.757816660376371,52.248513981222146],[4.757856968219714,52.24849161801946],[4.757900419774048,52.248467509894795],[4.757923060609053,52.248454948382786],[4.757943871281317,52.24844340175391],[4.757966585939355,52.248430795686716],[4.757992264027918,52.248424020641146],[4.758000759641932,52.248421782923984],[4.758030069826236,52.24840771995449],[4.758039261309893,52.24840287042743],[4.758083684324432,52.24837943252137],[4.758128092649748,52.24835599452047],[4.758172515570753,52.24833255658064],[4.758216938444986,52.24830911862396],[4.758239142416367,52.24829740858766],[4.758261346503045,52.248285689559765],[4.75827556884156,52.24827818836357],[4.758275937695595,52.248277992590516],[4.758280407871021,52.24827564354732],[4.758290661807634,52.2482702154348],[4.758295840277416,52.248267483676265],[4.758305754641334,52.24826225149139],[4.758313721475739,52.248258051550145],[4.758349829385335,52.248238568955635],[4.758393816989735,52.24821483201173],[4.758415773850979,52.248202985807104],[4.758416467375477,52.24820261200098],[4.758416821458922,52.248202425136895],[4.758420776088706,52.248200289057394],[4.758429290255375,52.24819569654828],[4.758430308451236,52.24819514470947],[4.75843078068928,52.24819488656995],[4.758437804547226,52.24819109505124],[4.758481806700202,52.248167358152116],[4.758525794163875,52.24814362115853],[4.75853054556398,52.24814105788983],[4.758569245016391,52.24811951278515],[4.75861262311765,52.248095368056816],[4.758625640982324,52.24808812106359],[4.758654593806859,52.248070299048464],[4.758695940284067,52.24804484022039],[4.758716295839632,52.2480323113416],[4.758718025742612,52.2480311341247],[4.758736212062522,52.248018746500826],[4.758775438046428,52.247992045008644],[4.758794200840478,52.24797927395709],[4.758802259058702,52.247973780194904],[4.758812729621579,52.24796440745059],[4.7588187657992,52.24795900180203],[4.758825528583044,52.247952952880155],[4.758832395256731,52.24794680564217],[4.758837319174535,52.247942391747486],[4.758844769020021,52.24793435113881],[4.758867966217576,52.24790930805191],[4.758872846092362,52.24790282667802],[4.758893977261692,52.24787476161457],[4.758896650946003,52.247870003195445],[4.758915757059529,52.247836013245944],[4.758922140611212,52.24782466836099],[4.758930466095124,52.247801271884434],[4.758940560341136,52.247772905451214],[4.758941667815328,52.247766026519784],[4.758947400420958,52.24773024874616],[4.758949006956453,52.24772017273458],[4.758948199979943,52.247694345875246],[4.758947353207287,52.247667188577836],[4.758945411305479,52.247658486841715],[4.758941430716327,52.24764067839392],[4.758937450130332,52.24762286994601],[4.758935632528702,52.247614699163435],[4.758924325781654,52.24758787273335],[4.758913996253095,52.24756339737017],[4.758907708114577,52.24755345914095],[4.75888649440686,52.247519946872316],[4.75888272710856,52.24751400373722],[4.758860149938447,52.24748787236234],[4.75884228415795,52.247467194799235],[4.758833526418988,52.24745585927829],[4.758808417675489,52.247423386866906],[4.758786760407407,52.247395372886004],[4.75878273538799,52.24739109115984],[4.758753449197142,52.24735995370928],[4.758728086702505,52.247333016548275],[4.758724148278219,52.24732882516076],[4.75872199883135,52.24732653077192],[4.758691166445887,52.24729912409599],[4.758657875397073,52.24726954720911],[4.758648403093471,52.24726111998998],[4.758621901894148,52.24724120537682],[4.758584837689769,52.247213370047646],[4.758567349109875,52.24720021741776],[4.758566465208226,52.24719955658995],[4.758544613985084,52.247187369428175],[4.758501289602763,52.24716318585219],[4.758492557759274,52.247158321814624],[4.758467707031859,52.247147008492085],[4.758454990735911,52.247141215460424],[4.758413466240127,52.24712230840711],[4.758412345911585,52.2471217991163],[4.758407640523996,52.2471200753411],[4.758370944725608,52.247106604755],[4.758357382304932,52.247101625119285],[4.758326630015652,52.247090343274536],[4.75830603786526,52.24708440045287],[4.758304944029744,52.24708408903843],[4.758253026131992,52.24706910830085],[4.75823625497409,52.247064264367594],[4.758199408856301,52.247056257641994],[4.758198518359706,52.24705606415321],[4.758143292817002,52.24704407674509],[4.758142110369535,52.247043818785436],[4.758140722298857,52.24704360467119],[4.758086453234567,52.2470354332478],[4.758048651950889,52.247029740297826],[4.758045115823888,52.24702920915224],[4.758029262173735,52.24702783046155],[4.757971273798114,52.247022767010534],[4.757946235641859,52.24702058440484],[4.757914243741641,52.247020351111935],[4.757912969886872,52.247020344327694],[4.757854403376637,52.24701992454528],[4.757795836740563,52.247019513721135],[4.757753595690539,52.24701920781348],[4.757737277250045,52.247019633199095],[4.757678756501206,52.24702115498516],[4.757620250263393,52.2470226858076],[4.757561729506786,52.24702420753567],[4.757561114288165,52.24702422223338],[4.757518929179806,52.24702617253237],[4.757503337114472,52.24702700621742],[4.757489869792737,52.24702773437967],[4.757476754260217,52.24702843745123],[4.757450323672687,52.24702945604178],[4.757444931979996,52.247029669982126],[4.757386473992349,52.24703192897545],[4.75732801599889,52.24703418793983],[4.7572944649358,52.247035483118715],[4.757269584994524,52.24703660880352],[4.757211180088317,52.247039254477926],[4.757152760660474,52.24704189105802],[4.757094355740637,52.24704453667463],[4.757084011099872,52.24704500281439],[4.757035936171965,52.24704718218427],[4.756984872232416,52.24704948940068],[4.75697753149295,52.24704980976844],[4.756919112801367,52.24705239230892],[4.756886848429173,52.24705382006775],[4.75686064634426,52.24705317696209],[4.756802108571738,52.24705175914132],[4.75678865624932,52.2470514267176],[4.756763927400203,52.24704911967912],[4.756763532574882,52.247049081620474],[4.756744068362484,52.247047261056125],[4.756691510642611,52.247042342796725],[4.756686295281959,52.24704147908118],[4.756629729347289,52.24703214426471],[4.75659661076913,52.24702668256355],[4.75657402043807,52.24702123210383],[4.756572634030802,52.24702090113575],[4.756571524930467,52.24702063456382],[4.756519499851018,52.247008097230726],[4.756505140123994,52.24700463210086],[4.756466979651811,52.24699226761682],[4.756431501229888,52.246980771299775],[4.75641823686902,52.2469764761209],[4.756415294595677,52.246975372863545],[4.756408477801265,52.24697281982695],[4.756398807605836,52.24696909210251],[4.756369202581592,52.246953357813204],[4.756348463085527,52.246942335631644],[4.756326913593072,52.24692854081189],[4.756302374615413,52.246912842542095],[4.756288257017242,52.246901595054084],[4.756252536274107,52.24687311003294],[4.756247859402346,52.2468693819953],[4.756222030035113,52.246842450782154],[4.756202535516356,52.24682211464694],[4.756193290169917,52.24681114483076],[4.756177521335911,52.24679242845502],[4.756167227915082,52.24677895437014],[4.756142371558282,52.246746401835075],[4.756126198164959,52.246725238550205],[4.756117765169374,52.24671377872541],[4.756093673448677,52.24668100556289],[4.756069581635963,52.246648241382644],[4.756045489986058,52.246615468210024],[4.756021398244126,52.246582704019694],[4.756018410078124,52.246578643448565],[4.755998570706363,52.24654959604475],[4.755975934183542,52.24651644414538],[4.755953297821794,52.246483283254236],[4.755930661366246,52.2464501313459],[4.755917119614022,52.24643030332918],[4.755908039841034,52.246416961536646],[4.755889679532027,52.24638998027202],[4.755885432863795,52.246383800788486],[4.755862664350714,52.24635067512464],[4.755839895743978,52.24631755844359],[4.755817127298504,52.246284432770665],[4.755811632565192,52.246276431035064],[4.755793682689449,52.246251492228204],[4.755770003082329,52.246218604353054],[4.755746338024371,52.246185725538574],[4.755730484736539,52.2461637010566],[4.755723172859441,52.24615270558235],[4.755708420145333,52.246130516206684],[4.75570046327906,52.24611957121188],[4.755696901361388,52.24611467167966],[4.755677547983704,52.246086489665366],[4.755665310544476,52.246068663929435],[4.75565502957779,52.246053302379146],[4.755632790417186,52.246020044676754],[4.755610551289733,52.245986786970086],[4.755603596969774,52.2459763955965],[4.755587548024289,52.24595372291058],[4.755573193146103,52.24593343211582],[4.755564765182646,52.245920606096504],[4.755542834777349,52.245887269134165],[4.755520904404817,52.24585393216772],[4.75551302099308,52.245841944941596],[4.755498973937519,52.24582060418433],[4.755477028988907,52.245787267131085],[4.755455083945546,52.24575393906098],[4.755433124293384,52.24572061090834],[4.755411179443131,52.2456872738424],[4.755405761380117,52.2456790388079],[4.755388440920611,52.24565414824065],[4.755365423222119,52.24562109304549],[4.755356927882397,52.245608895811394],[4.755352063256177,52.245601904080715],[4.755342288042804,52.245588064181305],[4.755319005844721,52.24555507946616],[4.755317096918666,52.245552363862885],[4.755295973607261,52.24552202417868],[4.755272956172997,52.24548895997759],[4.75524993864527,52.24545590475917],[4.755226921151648,52.24542284953618],[4.75520390381971,52.24538978532117],[4.755180886394296,52.24535673008885],[4.755157869002986,52.24532367485193],[4.755134851773374,52.24529061062304],[4.755134119989253,52.245289555109785],[4.755111643346164,52.24525760828264],[4.755103806592985,52.24524647513884],[4.755088435080892,52.2452245969502],[4.755065241491361,52.24519158569136],[4.755042047936151,52.24515857442788],[4.755018854415258,52.24512556315968],[4.754995646159692,52.24509256079577],[4.754972452707442,52.245059549518174],[4.754949259289512,52.24502653823588],[4.754926065905901,52.24499352694887],[4.754902872556607,52.244960515657155],[4.754880899117224,52.244929245577566],[4.754879517548944,52.24492754843556],[4.754875890741237,52.24492310691877],[4.754855633446454,52.244894722185784],[4.754836381281182,52.24486773597214],[4.754832175636119,52.244861781368044],[4.754808894194101,52.2448287965492],[4.754785612786505,52.244795811725595],[4.754762331413333,52.24476282689724],[4.754739035561006,52.24472983299849],[4.75471575425669,52.24469684816064],[4.754712811791695,52.244692679942574],[4.754711257650115,52.24469282441954],[4.754692843826937,52.24466455738116],[4.754686696300494,52.24465512299899],[4.754670135768956,52.24463142280601],[4.754647045668744,52.24459838504917],[4.754623955602724,52.24456534728765],[4.754607208378061,52.244541394421],[4.754600689238186,52.24453235351753],[4.754576996653871,52.244499474304675],[4.7545532893356,52.24446660399592],[4.75452959682113,52.244433724773295],[4.754525633643827,52.2444282298451],[4.754506815540699,52.24440060774844],[4.754491755397331,52.244378497455266],[4.754484313625054,52.24436741132266],[4.754461973306096,52.24433417980554],[4.754439647661517,52.24430094836247],[4.754429997425953,52.244286596734014],[4.754417336819021,52.244267708006085],[4.754395040778586,52.2442344587364],[4.754372744643627,52.244201218449746],[4.754355883039534,52.244176060536944],[4.75435036044,52.244167995662885],[4.754327667657812,52.2441348521108],[4.754324182065234,52.24412975520652],[4.754304916089648,52.24410172621518],[4.754282135145437,52.24406860914554],[4.754264533211129,52.24404300683969],[4.754259706897185,52.24403540408027],[4.754238454307238,52.24400189971574],[4.754232267517255,52.24399215051689],[4.754216334735943,52.24396861540302],[4.754193862536159,52.24393541907684],[4.754171390497593,52.243902213758915],[4.754148918364676,52.243869017423904],[4.754132483589221,52.243844751578166],[4.754126431624238,52.24383582100603],[4.754103959558195,52.24380262466217],[4.754094867371229,52.24378920176108],[4.754094637717121,52.2437888769616],[4.754081472884654,52.24376942823544],[4.75407886280824,52.24376557636238],[4.754058148516902,52.24373645201581],[4.754034721186003,52.243703511191555],[4.754011294145339,52.243670552387854],[4.753994527448103,52.24364698580872],[4.753987705322579,52.24363764664028],[4.753963748978769,52.243604846774296],[4.75393977815715,52.24357203783748],[4.753915821883805,52.24353923796147],[4.753908281555279,52.24352892423181],[4.753891145431802,52.24350663195659],[4.753880104920374,52.24349225485178],[4.753866233739767,52.2434740965895],[4.75384138090306,52.24344154355627],[4.753816944886881,52.24340954102158],[4.753816528102628,52.243408990517665],[4.753791998842567,52.2433763403397],[4.753774783941633,52.243353418462355],[4.753773088294476,52.24335116236513],[4.753767557591019,52.24334368164016],[4.753743337137783,52.24331094322669],[4.753739760123344,52.2433061064666],[4.753719410558472,52.243278134479375],[4.753695528192384,52.24324530798793],[4.753671631220691,52.24321248141297],[4.753647748924899,52.24317965491158],[4.753646729383598,52.243178247312386],[4.753639935916664,52.24316896220434],[4.753623763667592,52.24314686380498],[4.75359976393273,52.24311406362755],[4.753575764105249,52.24308127243241],[4.75355325816553,52.24305051154998],[4.753551779081649,52.243048472323466],[4.753527941011786,52.24301563704533],[4.753515289578218,52.24299821331118],[4.753504102977007,52.242982801762246],[4.75348026510524,52.2429499574869],[4.753470902200243,52.242937063375926],[4.753455927183798,52.2429172723087],[4.753431236899235,52.24288465713931],[4.753406561035527,52.24285206001778],[4.753381885335823,52.24281945390366],[4.753369454190731,52.24280302001762],[4.753358062153962,52.24278661866879],[4.753339955360137,52.24276055511747],[4.753335121025512,52.24275353649616],[4.753320187642013,52.24273185814809],[4.753312194443705,52.242720463384835],[4.753289032878947,52.24268744293612],[4.753287368098345,52.242685079140735],[4.75326678251838,52.24265418469481],[4.753244590881148,52.24262091777608],[4.753237523711523,52.24261030094657],[4.753236462194104,52.242608758297926],[4.753236160885241,52.242608325255816],[4.753235931499405,52.24260798247994],[4.753235659087732,52.242607576556935],[4.753222031983755,52.24258773876245],[4.753199296665684,52.24255461272571],[4.753194878760081,52.24254817156661],[4.753176884752595,52.24252139853941],[4.753167894949221,52.24250802105135],[4.753154311315336,52.24248821943384],[4.753143768508808,52.242472856243424],[4.753143596534482,52.24247259466769],[4.753131590866722,52.24245508447482],[4.753108870451844,52.24242194951126],[4.75308613530223,52.24238882345202],[4.75307361337496,52.24237055548759],[4.753063444363769,52.24235567964922],[4.753043235821635,52.242326090449204],[4.753040797508376,52.24232252709039],[4.753018194863984,52.242289356788106],[4.752995577484742,52.242256195390105],[4.752982110487252,52.24223643931752],[4.752973650671264,52.24222286692186],[4.752952723023064,52.24218929214809],[4.752945823693143,52.24217820882325],[4.752932339021505,52.242155585468325],[4.752928034815468,52.24214836295037],[4.752927848587356,52.242148074333684],[4.752914792902789,52.2421261723219],[4.752912028380691,52.242121870190545],[4.752890542571332,52.24208842722874],[4.752877078316227,52.242067457773956],[4.752869056794171,52.242054984262865],[4.752861035404642,52.242042501763834],[4.752847556408847,52.242021541214335],[4.752826070696083,52.24198809824029],[4.752804585015511,52.24195465526225],[4.752801906563841,52.24195047942268],[4.752800732052354,52.24194864854617],[4.752798998605535,52.241945969793626],[4.752798454310453,52.24194512199623],[4.752797938911873,52.2419443013181],[4.752797681020506,52.24194390446004],[4.752783099367133,52.24192121228012],[4.752765395166862,52.241893658782836],[4.752761525652966,52.24188778679694],[4.752739540505947,52.24185446695642],[4.752735097681708,52.24184772904003],[4.752717805173138,52.24182108553684],[4.752696114049818,52.241787686374295],[4.752687804562093,52.241774878746284],[4.752673482395733,52.2417545338211],[4.752657395482561,52.2417316537797],[4.75265297517491,52.2417253923465],[4.752650262859563,52.24172153989043],[4.75263714642748,52.24170289118593],[4.752627014205335,52.241688536810415],[4.752606664244905,52.241659665812726],[4.752603780225725,52.24165553380433],[4.752580766652402,52.24162247804903],[4.752576505487212,52.24161635228802],[4.752558487941976,52.24158922849961],[4.75254782378336,52.24157316353371],[4.752537208257211,52.2415557416354],[4.752523158906302,52.24153270174698],[4.752516207792848,52.24152218436271],[4.752494223009045,52.241488864474874],[4.752472223617899,52.24145554450421],[4.752450238899754,52.241422224607895],[4.75242909953224,52.241390203525455],[4.752428239574285,52.24138890462875],[4.752416301239697,52.24137081948534],[4.752406240281661,52.24135558464528],[4.752384427243035,52.24132255327522],[4.752384240893746,52.24132227364498],[4.752362300483534,52.241288935993026],[4.752340359977953,52.2412556073242],[4.75232939712157,52.241238938533876],[4.752323392354046,52.24122982835536],[4.752318419505134,52.24122227865114],[4.752314793863638,52.241216767481156],[4.752311999534751,52.24121251011463],[4.752296479193237,52.2411889409865],[4.752274538914113,52.24115560331765],[4.752266399194009,52.24114322799546],[4.752251996118511,52.24112242419094],[4.752235182872813,52.241098147039374],[4.752228953672366,52.24108937719472],[4.752213711122393,52.241067894771206],[4.752205558617791,52.24105641817887],[4.752188191792952,52.24103194929622],[4.752182016556653,52.241023503308135],[4.752162528951742,52.24099682994293],[4.752158048303509,52.240990702986],[4.752148799850699,52.240978052054636],[4.752140039805654,52.24096605987414],[4.752133977221031,52.24095792907],[4.752109626860359,52.24092523453981],[4.75210396664307,52.2409176361908],[4.752096496273989,52.2409076103304],[4.752084409058835,52.24089279599417],[4.75205817690542,52.240860648594904],[4.752045499861794,52.240845103053],[4.75203125337835,52.24082873116136],[4.752003653503291,52.24079701680985],[4.751991841582258,52.24078343530411],[4.751975347360342,52.24076555031917],[4.751946482247382,52.240734269564605],[4.751917617174925,52.24070298880285],[4.75188875214297,52.240671708033894],[4.75188063490727,52.240662901053085],[4.751880100540382,52.24066238586173],[4.751858032649912,52.24064110936359],[4.751826577100751,52.24061079434367],[4.751795121722635,52.24058047032787],[4.751763651747453,52.240550146224855],[4.751759420240887,52.240546060875324],[4.751730915219657,52.24052034559475],[4.75171731317718,52.24050807567265],[4.751698429280601,52.24049042945872],[4.751676207595183,52.240469682391996],[4.751666532313921,52.24046028279277],[4.751635239087023,52.24042989668879],[4.751619108726612,52.240414233653446],[4.751604681998988,52.24039922691934],[4.751574934376197,52.240368264891536],[4.751551462214659,52.24034384395532],[4.751545348730615,52.24033724081108],[4.751516756322063,52.24030638385167],[4.751516395973056,52.24030598643934],[4.751487943446445,52.2402745639791],[4.751482639030007,52.240268720179685],[4.751459490959938,52.24024314151192],[4.751431053153286,52.240211719116566],[4.751423558286363,52.24020342776994],[4.751402806730049,52.24018022583965],[4.751374633930392,52.24014870598778],[4.751365022080896,52.24013794951108],[4.751346490578356,52.24011717729932],[4.7513230022215,52.240090832789214],[4.751318479536927,52.2400856133638],[4.751290939444364,52.24005388118352],[4.751263414030686,52.2400221490755],[4.751260648649488,52.24001895242632],[4.751254008474554,52.2400113038194],[4.751235712209812,52.23999046993933],[4.751214131261466,52.23996589732856],[4.75120792207679,52.23995882627312],[4.75118435310789,52.23993198695824],[4.751180705369108,52.23992701491432],[4.751156664986518,52.239894231965195],[4.751151710593977,52.239887464267014],[4.751146325101722,52.23988012800157],[4.751131522044464,52.239861766644125],[4.7511260408892,52.23985497813275],[4.751125681317643,52.23985452679512],[4.75112497642903,52.2398536511608],[4.751105526317237,52.23982955737899],[4.751079545395567,52.23979733919943],[4.751071446069393,52.239787300896076],[4.751054579009933,52.239764820883394],[4.751030083053854,52.23973217027437],[4.751027439446752,52.2397286507059],[4.751007732988133,52.23969893800492],[4.750987768436795,52.23966884641312],[4.750985941185719,52.23966557391673],[4.750966896260254,52.23963157747814],[4.750960957223582,52.23962097556607],[4.750952847557145,52.23960449277731],[4.750949304917289,52.2395972922591],[4.750940854184216,52.239580088589875],[4.750932388946535,52.23956287585384],[4.750927892947405,52.23955374676108],[4.750927295681223,52.23955251218368],[4.750923397078541,52.23954460868079],[4.750916676525452,52.23952825021488],[4.750902372861552,52.23949339847182],[4.750891634309164,52.239467248369984],[4.750888685620376,52.239458442190326],[4.750876905387875,52.239423226536985],[4.750873353150922,52.23941260152303],[4.750867060796502,52.23938779660685],[4.750858051954896,52.239352281296696],[4.750849223165238,52.239317485998214],[4.750849043255987,52.239316756998306],[4.750840049210782,52.23928123277787],[4.750839564573765,52.23927928875181],[4.750831143144872,52.239245700042346],[4.75082632336578,52.239226448672866],[4.750821386722022,52.23921025260577],[4.750813429902145,52.23918410849068],[4.750810486513725,52.23917493382756],[4.750799161137741,52.23913965769802],[4.750794885971501,52.23912635035216],[4.750787043711162,52.239104485156936],[4.750774442176524,52.239069381910745],[4.750774259315016,52.23906885961963],[4.750759038376802,52.239034694992846],[4.75074359055445,52.23900001682353],[4.750738923608143,52.238989538595916],[4.750734824124677,52.238980330738265],[4.750728142756059,52.23896533865199],[4.750725007792169,52.238958302106795],[4.750724383444756,52.238956914585636],[4.7507117262164,52.238930835019794],[4.750696523333651,52.23889951070049],[4.750694840087599,52.23889640974743],[4.750684497400648,52.23887740724448],[4.750684369115582,52.23887716387636],[4.750676294989364,52.23886230809158],[4.750665624350616,52.238842692633476],[4.750664809952686,52.238841286111935],[4.750656633735428,52.23882845208381],[4.750641427147416,52.23880456084275],[4.750637775714356,52.23879883376549],[4.750635312618698,52.2387949826026],[4.75062652054854,52.23878119252203],[4.75061397715163,52.238761495063784],[4.750592856551392,52.238728341235955],[4.750592612181059,52.23872802533789],[4.750567293992342,52.238695603881666],[4.75056696345729,52.23869517067476],[4.750566082018163,52.23869538163785],[4.750528374164835,52.23870419343717],[4.750522257104064,52.23869479493795],[4.750521368874564,52.23869343295766],[4.7505014944994,52.238661184632385],[4.75048076146148,52.238627556506124],[4.750460028326272,52.23859393736343],[4.750439309990017,52.23856030930846],[4.750418576917244,52.238526690158174],[4.750397844004221,52.23849306201674],[4.750377140143712,52.238459452003994],[4.750377011218856,52.23845925357222],[4.750376867911892,52.23845903708687],[4.750362377077455,52.23843834940662],[4.750354012497251,52.23842641314437],[4.750340540240715,52.238407187013905],[4.75033156059987,52.23839321613795],[4.750310063879474,52.23835977261114],[4.750288567191283,52.238326329080245],[4.750275090525629,52.23830536822674],[4.750272770665894,52.238301742528854],[4.750267085045866,52.23829289461158],[4.750245573782963,52.23825945099365],[4.75022407719139,52.238226007450564],[4.750202580503451,52.23819257289081],[4.750181083976287,52.23815912933959],[4.750159587481327,52.23812568578433],[4.750138090889994,52.23809225121237],[4.750122752693152,52.23806838615372],[4.750116594459438,52.238058807648976],[4.750095098061094,52.23802536408152],[4.750073601694955,52.23799192051],[4.75005210536102,52.237958476934416],[4.75003060893069,52.23792504234212],[4.750009112661163,52.23789159875844],[4.74999486285781,52.2378694382913],[4.749987616295232,52.23785816415799],[4.749966120090112,52.237824720566174],[4.749958114525629,52.237812264903916],[4.749949989924698,52.23779994341958],[4.749948069976282,52.237797020938935],[4.749944330109153,52.237791347289765],[4.749936105744185,52.23777883651747],[4.749927050074641,52.237765080911004],[4.749922393128219,52.23775801815624],[4.749913108260425,52.23774391077883],[4.749910328631082,52.237739680394505],[4.749900103688007,52.237724768009436],[4.749897493682798,52.23772096097763],[4.74988599238144,52.23770419017001],[4.749876829614283,52.23769178218752],[4.749863028010826,52.23767309350404],[4.749853678423748,52.23766044183474],[4.749852717812482,52.23765902553031],[4.749830384299629,52.23762579310765],[4.749819245932966,52.23760923996403],[4.749815727455919,52.23760446630879],[4.749807124967939,52.23759280735053],[4.749782983993022,52.237560050520734],[4.749758828286025,52.23752730259418],[4.749734687382,52.23749454575421],[4.749723701076137,52.23747964722069],[4.749710693416534,52.23746175374972],[4.749686817111689,52.237428926422794],[4.749662940841974,52.237396099090894],[4.749639064607386,52.23736327175402],[4.749615188407923,52.23733044441219],[4.749591312114904,52.237297626052715],[4.74957945301496,52.23728132066016],[4.749571101182684,52.23726545663373],[4.749570388676016,52.23726409559418],[4.749565642654299,52.237255081938905],[4.749563693476931,52.23725215929377],[4.74954945088717,52.237230547078056],[4.749527485070483,52.23719722669808],[4.749523860229212,52.2371917064521],[4.749521051779741,52.237187448938265],[4.749505519543994,52.23716388833918],[4.749498555955397,52.237153316768065],[4.749483010100296,52.237130708824466],[4.749460236420718,52.237097581807056],[4.749437462646227,52.237064463772434],[4.749419335562337,52.23703809387262],[4.749418314363885,52.237036821045976],[4.749416257457171,52.23703426632627],[4.749414042228112,52.23703152200294],[4.749411107936431,52.23702787499364],[4.749390269099942,52.23699867719274],[4.749366775429041,52.23696574400575],[4.74934326702541,52.23693281972233],[4.749329532545312,52.23691356508809],[4.749325686369255,52.236908169473075],[4.749320199489906,52.23689978096974],[4.749298395675982,52.23686641647839],[4.749283238866742,52.23684323537263],[4.749276283324495,52.23683313120904],[4.749253465905543,52.236800012900645],[4.749230663030309,52.23676690365409],[4.749207860317668,52.236733785415645],[4.749201478378601,52.23672452023276],[4.749185116322011,52.23670065850153],[4.749167937138696,52.23667558795736],[4.749162401637281,52.23666753174102],[4.749139687115042,52.236634395988695],[4.74913350666733,52.23662537456719],[4.749117472269337,52.2366011281098],[4.749108315908905,52.23658728201153],[4.749095433763278,52.236567816238676],[4.749089186193927,52.23655837201424],[4.749087882161454,52.236556405577645],[4.749080330692275,52.23654498592875],[4.749073233493437,52.236534557417635],[4.749057218134494,52.236511030097574],[4.749050724817221,52.23650136883049],[4.749028363203645,52.23646813609291],[4.749006016133068,52.236434912417394],[4.748983654586068,52.23640167967105],[4.748979583682964,52.23639562670291],[4.748961425076346,52.23636842965741],[4.748939210495846,52.23633516174387],[4.748916995819637,52.236301902813324],[4.748894781305352,52.23626863489109],[4.748890839853635,52.23626274440382],[4.748887759189598,52.23625808094104],[4.748872713723901,52.23623533180607],[4.748863743691521,52.23622177431149],[4.748860978250688,52.23621758891743],[4.748850587363989,52.23620204637514],[4.748828343414373,52.23616879625645],[4.748806099497892,52.236135546133454],[4.74878385587224,52.23610227803141],[4.748761626660427,52.23606902797884],[4.748739382972206,52.23603576885551],[4.748724964607193,52.236014218499],[4.748723732123349,52.236012369289305],[4.748717139188271,52.23600251871515],[4.748694895695199,52.23596925059579],[4.748689764699399,52.23596158302771],[4.748671241284247,52.2359363703198],[4.748647146082861,52.235903604500784],[4.748623065555181,52.235870838755886],[4.74862283585276,52.23587052293273],[4.748618407079512,52.235863910758106],[4.748601608359285,52.23583889611013],[4.748600689808648,52.23583761484278],[4.748579175915424,52.23580758633932],[4.748577153287692,52.235804690243725],[4.748554086902257,52.2357716513366],[4.748531020679864,52.235738603437504],[4.748507954362729,52.235705564521105],[4.748484888208648,52.23567251661271],[4.748461821959814,52.235639477686995],[4.748438755874041,52.2356064297693],[4.748415704331729,52.23557339091346],[4.748392623676041,52.2355403429073],[4.74837660091021,52.23551738169473],[4.748374276966045,52.235514061527965],[4.748369557563808,52.23550730396305],[4.748346491614652,52.235474256026755],[4.748323425699652,52.235441208085795],[4.748322938058609,52.235440504381266],[4.748300359689867,52.2354081691276],[4.748277308481333,52.235375121256524],[4.748254242668789,52.23534207330166],[4.748231176632489,52.235309043316825],[4.748208111017207,52.23527598636532],[4.748185045178161,52.23524294738386],[4.748161979502229,52.23520989941035],[4.748138913731483,52.23517686041961],[4.748115848123858,52.23514381243683],[4.748092782421409,52.2351107734368],[4.748090602062608,52.23510765177781],[4.748065041470529,52.23507912924916],[4.748060762330574,52.23507434243467],[4.74804153476281,52.23504622267318],[4.748018865940772,52.23501307794846],[4.747996197152399,52.23497993321921],[4.747973528526695,52.23494677949813],[4.747950859805653,52.23491363475989],[4.747928191118274,52.23488049001719],[4.747905522593578,52.23484733628261],[4.747882853973531,52.234814191530894],[4.747873734793037,52.2348008668374],[4.747848727506916,52.234785829321275],[4.747823821671109,52.23477086425315],[4.747800915817104,52.234774641090716],[4.747791553959439,52.23477618130398],[4.747744377421905,52.23478397025172],[4.747687824494223,52.23479329031902],[4.747631271413897,52.2348026193465],[4.74761241554558,52.23480572599413],[4.747602994864885,52.23480728385008],[4.747574718439063,52.23481193935953],[4.74751817994954,52.23482126841204],[4.747492559434508,52.234825488880816],[4.747462210171462,52.23483176896316],[4.747460653768973,52.23483209309242],[4.747457042885398,52.23483276561784],[4.747451186193976,52.23483385740742],[4.747449101791277,52.23483425058161],[4.747422798102483,52.234839150427135],[4.747406196840502,52.23484224228783],[4.747368576010161,52.23484925593677],[4.747350012605329,52.23485238210271],[4.747293559004587,52.23486190924474],[4.747237090870956,52.23487142729308],[4.747232556366835,52.23487219367675],[4.747180198427497,52.23487990939052],[4.747123248702262,52.23488830126984],[4.747066313593664,52.234896693200916],[4.747040347236143,52.23490052521192],[4.747033804348477,52.23490148742981],[4.747032308042784,52.23490170402261],[4.747009378463717,52.23490508510449],[4.747007603389798,52.2349053451265],[4.746952825229749,52.23491440481914],[4.746896286093331,52.23492376053536],[4.746839747062493,52.234933107237126],[4.746783222516791,52.23494246297847],[4.74672668330943,52.23495181861334],[4.746670144207684,52.2349611652337],[4.746613604953029,52.234970520814365],[4.74655706580401,52.23497986738053],[4.74650052650206,52.23498922290691],[4.746443987176459,52.23499857840615],[4.746430707172636,52.23500077136361],[4.746410133315008,52.235004228023215],[4.746387490318721,52.23500803297736],[4.746331007687121,52.23501751456284],[4.746315012263198,52.23502020509512],[4.746274539540263,52.235027005188016],[4.746235094054938,52.23503363107964],[4.746218070981359,52.23503652274819],[4.746161645148213,52.23504612140572],[4.746105219290844,52.23505572003622],[4.74605668860649,52.235063977329446],[4.746048778771206,52.23506531856027],[4.746002463976272,52.23507320137144],[4.74599236724463,52.235074935190845],[4.745935955046714,52.23508459673113],[4.74587955746248,52.235094258323954],[4.745823159724436,52.23510392887708],[4.745816276998829,52.23510510489575],[4.745766620629942,52.23511324810206],[4.745710038115535,52.23512253111204],[4.745653470345188,52.235131805187045],[4.745647439337936,52.235132797072325],[4.745597655838845,52.2351426472461],[4.745589243619808,52.23514430928741],[4.745584604391963,52.23514522783595],[4.745541911905878,52.235153669423134],[4.7455100833114,52.235159967934436],[4.745486182453983,52.23516470064061],[4.745450345990724,52.23517178628928],[4.745429999062027,52.23517472270468],[4.745424747359563,52.235175476134906],[4.745398869952926,52.235179209400684],[4.74537304953995,52.235183050827025],[4.74532378538235,52.235190378066264],[4.74531667010474,52.23519245159703],[4.745263804816208,52.235207893426775],[4.745210910214889,52.235223335073734],[4.745176979843363,52.23523325324457],[4.745173957397302,52.23523372217323],[4.74517271017839,52.23523392212014],[4.745156658387274,52.23523645040483],[4.745107461364968,52.235244191369105],[4.745099700188079,52.23524435591043],[4.745041183505827,52.235245619738755],[4.744982666820378,52.2352468835381],[4.744951065601609,52.23524755661811],[4.744950201564436,52.235247578884916],[4.744925055852322,52.23525132501307],[4.744867957294668,52.235259822855085],[4.744834522626555,52.235264800197484],[4.744811049399742,52.23526829474223],[4.744767007764739,52.23527485021204],[4.74475415573242,52.235276793643514],[4.744697304401835,52.23528540060428],[4.744640453049379,52.23529400753763],[4.744583601675057,52.23530261444357],[4.744547114042169,52.235308141344724],[4.744526708180312,52.23531109526042],[4.744469701061238,52.235319332754486],[4.744412708559311,52.235327570300626],[4.744362992249251,52.23533475985921],[4.744355631710494,52.23533556468311],[4.744297978940622,52.23534187513908],[4.744291893993435,52.23534254309207],[4.744291234109529,52.235342620393354],[4.744240326284286,52.23534817657955],[4.744182688120119,52.23535448705887],[4.744175708815413,52.23535524900639],[4.744175092975313,52.2353553175587],[4.744162703241781,52.23535667023119],[4.744124855128843,52.23536009538189],[4.744108921404511,52.235361536613524],[4.744085137740702,52.23536320475086],[4.744078133050484,52.23536369691302],[4.744077649472583,52.23536373023267],[4.744075803119622,52.235363855002],[4.74407115854496,52.235364126322736],[4.744070572370252,52.235364168071875],[4.744069283045474,52.23536424194526],[4.744067803295033,52.23536432377],[4.744066733672193,52.23536438985134],[4.744013870443705,52.23536748155806],[4.744008435538304,52.23536773958541],[4.743990885540941,52.235368578790215],[4.743950057615653,52.2353705315973],[4.743937048946421,52.23537115284425],[4.74392241414442,52.235371855115616],[4.743891616751695,52.23537261318194],[4.743874424038156,52.23537304086489],[4.743862316733452,52.23537308278902],[4.743833065822759,52.23537319313434],[4.743832333785623,52.23537319813578],[4.743774521550367,52.23537229905427],[4.743741634442533,52.23537178737331],[4.743739776047398,52.23537173231084],[4.743716012140982,52.235371018649005],[4.743706193452206,52.23537072248926],[4.743657785741393,52.23536737589995],[4.743639344056878,52.235366098004],[4.74359989169121,52.23536200922768],[4.743545368843867,52.23535635530109],[4.743542167767716,52.23535601429053],[4.743540501358031,52.23535584342634],[4.743539580454259,52.235355748528384],[4.743528953855523,52.235354630039694],[4.743510802386089,52.23535251781647],[4.743487214235318,52.235349773767396],[4.743484598165933,52.23534947189513],[4.743466446570821,52.235347368652434],[4.743427198045746,52.23534234617206],[4.743387891236915,52.23533730538491],[4.743369874383105,52.235334996136515],[4.74331255060956,52.23532765506049],[4.743287096081203,52.2353243974682],[4.743279455544584,52.23532330422085],[4.743255394242413,52.235319874454746],[4.743198360069194,52.23531174395353],[4.743190675752548,52.23531064147369],[4.743189916129774,52.235310529476095],[4.743189331774571,52.23531044539811],[4.743141463119247,52.235303236674774],[4.743087693158801,52.23529513290383],[4.743084611405441,52.23529463973465],[4.743029841186176,52.23528585637998],[4.743027986955703,52.23528551371146],[4.742971877387193,52.23527520404647],[4.742952312765304,52.23527160999095],[4.742915495126895,52.23526553101894],[4.742858947060625,52.2352561896178],[4.742848767838707,52.235254507260805],[4.742802399018191,52.23524684818965],[4.742747691108028,52.235237813378106],[4.742745850479355,52.23523754268378],[4.742688938293055,52.23522908903138],[4.742632025998398,52.235220644338895],[4.742610362587223,52.235217425261254],[4.742574916665292,52.235212665922305],[4.742517729998902,52.235204974673515],[4.742460528584181,52.23519729230446],[4.742403327189315,52.235189609907785],[4.742379438561359,52.23518639661826],[4.742368495070203,52.23518492576128],[4.742355334400007,52.235182903517895],[4.742355027651031,52.23518285690324],[4.742354487213337,52.23518277306082],[4.742346278181621,52.23518151486486],[4.74228947251474,52.23517279195932],[4.74223266687023,52.23516406902648],[4.742223771418009,52.23516269921788],[4.742176300201664,52.235154350789564],[4.742171350132551,52.235153478885394],[4.742119691797882,52.23514515251255],[4.742063053230081,52.23513601695987],[4.742006429323693,52.23512688146],[4.741994978866241,52.23512503928948],[4.741983893579938,52.2351232530406],[4.741949790672375,52.2351177548404],[4.741916739369172,52.23511242415929],[4.741912416271876,52.23511172644182],[4.741902966807904,52.23511020078593],[4.741893106306962,52.23510875377651],[4.741864634825493,52.23510458957985],[4.741856702642773,52.23510342274258],[4.741836148841569,52.23510041630904],[4.741810862083513,52.235096709911595],[4.741779282742824,52.23509183663586],[4.741727648619141,52.23508386974512],[4.741722492461681,52.23508307758841],[4.741671690902974,52.23507524105485],[4.741669588105641,52.23507487903062],[4.74166574741991,52.23507422888034],[4.741609320744006,52.23506462688856],[4.741566986180231,52.23505742080335],[4.741552803137098,52.23505524008589],[4.741495998179292,52.23504648983703],[4.741459934416464,52.235040944825045],[4.741439207881957,52.23503773964087],[4.741382432375418,52.23502898051012],[4.741325627745629,52.23502021220469],[4.741288790165669,52.235014528088826],[4.741268852544729,52.235011435044704],[4.741248053108476,52.23500821145218],[4.741242049918725,52.235007279822234],[4.741238792680063,52.23500677665708],[4.741212077757436,52.23500263089542],[4.741190942437308,52.234999351527854],[4.741155862331127,52.23499260740294],[4.741109103510823,52.23498361530029],[4.741099933788749,52.23498198325324],[4.741043688485934,52.23497200448399],[4.741019888000218,52.23496777575097],[4.740987428700853,52.234962016620564],[4.74093118357912,52.23495202881047],[4.740898446832998,52.234946223197426],[4.740874742188622,52.23494245334993],[4.740818058265851,52.23493345177053],[4.740815107913506,52.23493298622501],[4.740807250153186,52.234931738831754],[4.740804226872005,52.234931254910805],[4.740801963070661,52.23493089199007],[4.740799158837682,52.23493044521976],[4.740798034190817,52.23493026829308],[4.740761374496572,52.23492444117659],[4.740745965727908,52.234921993001244],[4.740713451363241,52.23491700646621],[4.740704599660615,52.23491565475829],[4.740647779889356,52.234906939971026],[4.740613834025693,52.23490173884876],[4.740590898587138,52.23489843154473],[4.740588108343845,52.23489802978621],[4.740587786960718,52.234897983086874],[4.740587100411013,52.23489788046051],[4.740586691330494,52.23489782429309],[4.74053389602673,52.234890210044775],[4.740476893487489,52.234881988517365],[4.740470261159112,52.23488103542777],[4.740465893279602,52.23488040032835],[4.740463307578678,52.23488002665077],[4.740439846239723,52.23487664453384],[4.740419951740309,52.234873614498284],[4.740410574132525,52.23487218798453],[4.740409317877465,52.23487200134553],[4.7403991077334,52.23487044444],[4.740389087492081,52.234868915537504],[4.740379081758888,52.23486739570163],[4.74036325244627,52.23486467553202],[4.740358915412347,52.234863932740915],[4.740351234377104,52.23486261438042],[4.740306857031396,52.23485497421808],[4.740293261983746,52.2348526347837],[4.74025037028821,52.234845515054374],[4.740205813796013,52.234838116550236],[4.740193808159557,52.23483620824751],[4.740158536355894,52.23483058628157],[4.740137124902823,52.234827179379565],[4.740129676129047,52.23482599709757],[4.740080168129973,52.234818841066016],[4.740039133049899,52.234812908864484],[4.740023211247963,52.23481051171233],[4.739966345480591,52.234801958129005],[4.739909465097234,52.234793404438086],[4.739901387426084,52.23479218274357],[4.739900350222087,52.234792033251544],[4.739899079464137,52.23479183753957],[4.739853250100238,52.23478338931347],[4.739797156935723,52.234773051259836],[4.739741078435302,52.23476271325977],[4.739721748116545,52.234759146915195],[4.739684864037963,52.23475266210574],[4.739628574124073,52.23474277229584],[4.739572284366001,52.23473287347176],[4.739515979995143,52.23472297454066],[4.739515439699143,52.234722881697905],[4.739461159697287,52.23471370389539],[4.739459538809977,52.234713425366415],[4.739403082880481,52.23470388507233],[4.739346627106037,52.23469433576395],[4.739290171225162,52.234684795415895],[4.739233730137265,52.23467524613389],[4.739213446341312,52.23467181828476],[4.739177047020478,52.234666234780256],[4.73912024250745,52.23465751933908],[4.739063438016773,52.23464880387056],[4.739006633679264,52.23464007938744],[4.73896298958422,52.23463338648687],[4.738949799041745,52.23463142661504],[4.738892888489418,52.23462296214767],[4.738835977958846,52.23461449765289],[4.738779067450027,52.234606033130774],[4.738722156962958,52.23459756858121],[4.738665261004639,52.23458911307196],[4.738608350561064,52.234580648467585],[4.738578303157376,52.23457617821784],[4.738551379624178,52.23457231832436],[4.738526238381093,52.2345687108887],[4.738525756247791,52.23456864532493],[4.738516406732165,52.234567308695],[4.738511030862393,52.23456653316728],[4.738503612237053,52.23456529701957],[4.738494514315802,52.234563773020305],[4.738438028330661,52.2345543129906],[4.738381542369635,52.23454485293382],[4.738325041663915,52.234535401757],[4.738278150165244,52.23452754928275],[4.738268600974296,52.23452585201417],[4.73821234238092,52.23451586282999],[4.738176408876006,52.23450947265023],[4.738156083288958,52.2345059095684],[4.738099779129758,52.23449603692475],[4.738043475126645,52.23448615526695],[4.738023835836277,52.23448271277824],[4.737987064884219,52.234476533651886],[4.737930594280523,52.23446703751076],[4.737889544690702,52.234460133770185],[4.737874093508071,52.23445760409308],[4.737817517342629,52.23444832303073],[4.737760941069823,52.23443905092865],[4.737749827374445,52.23443722817243],[4.73774909718712,52.2344371073135],[4.737746453770098,52.23443667933063],[4.737704379458512,52.23442977887997],[4.737647803233052,52.23442050672373],[4.737635141477744,52.2344184327673],[4.737591514326655,52.23441060695647],[4.737535316025577,52.234400518911414],[4.73751469975053,52.23439681929935],[4.737496200585372,52.234393499837395],[4.737495543588503,52.23439337937942],[4.737479117750072,52.23439043083964],[4.737422904731205,52.23438035164798],[4.737401660754157,52.234376531718816],[4.737401062046736,52.23437642955701],[4.737400507121585,52.2343763366241],[4.737366479464626,52.234370774592904],[4.737313641874105,52.23436212504103],[4.737309903254018,52.23436151126231],[4.737253312298098,52.234352256811356],[4.7372052939419,52.234344406697765],[4.737196736003609,52.23434300241393],[4.737140159732752,52.234333747989396],[4.737125979107057,52.23433143193081],[4.737083583485522,52.23432449353779],[4.737026992624145,52.234315238978525],[4.736970416555403,52.23430597548543],[4.736942040834468,52.23430133425794],[4.73691384037908,52.234296720952564],[4.736865924345119,52.23428888923978],[4.736857264095144,52.23428747537998],[4.73680067345956,52.23427821172505],[4.736768661370905,52.234272975199765],[4.73674408232256,52.23426898399233],[4.736687476046243,52.23425979210127],[4.736630869793411,52.234250600183096],[4.736574263695366,52.23424139925051],[4.736517657489514,52.234232207278104],[4.736517146349971,52.23423212357027],[4.736461005424003,52.2342231498467],[4.736425442746325,52.2342174622429],[4.736404338743908,52.234214092307475],[4.736347672086977,52.23420503474113],[4.736291005453214,52.23419597714758],[4.736253062122396,52.23418991685226],[4.736234338842624,52.23418691952689],[4.736177672255198,52.234177861879026],[4.736168967872907,52.23417646570144],[4.736121005690939,52.23416880420401],[4.736064353787578,52.23415974658246],[4.736007687269652,52.23415068885313],[4.735951020774896,52.2341416310966],[4.735894354303308,52.234132573312934],[4.735837687854886,52.2341235155021],[4.735833408600042,52.234122835779054],[4.735785315189116,52.23411514645701],[4.735781021429635,52.234114457664056],[4.735732256148408,52.23410666574683],[4.735724355027548,52.23410539979889],[4.735667688648635,52.23409634190655],[4.735611036930591,52.23408728406779],[4.735608802358814,52.234086930196405],[4.735554370466501,52.23407823510842],[4.735497704157074,52.23406917713461],[4.735441037870821,52.23406011913362],[4.735384371607733,52.234051061105454],[4.735327705367813,52.234042003050156],[4.735271053657184,52.23403295403579],[4.735214372825907,52.234023895845354],[4.735177977962594,52.23401807743883],[4.735157706655483,52.23401483770854],[4.735101055145905,52.23400577962535],[4.735069158582223,52.23400067809618],[4.735058584727305,52.23399899288665],[4.735044389021817,52.233996721434195],[4.734987722920898,52.23398766321591],[4.734983808844209,52.23398703940647],[4.734931056843148,52.23397860497045],[4.734874390788567,52.23396954669785],[4.734870754172444,52.233968969357015],[4.7348177246255,52.23396049738537],[4.734761058617246,52.23395143905842],[4.734704407269817,52.23394238078512],[4.734690021706175,52.233940081277105],[4.734647893083737,52.23393295473193],[4.734640971430489,52.233931784002216],[4.734591439184419,52.23392341213989],[4.73453498530941,52.23391386952086],[4.734478531458709,52.2339043268749],[4.73442207763232,52.233894784201944],[4.734365623830239,52.23388524150201],[4.734309184690098,52.23387569885606],[4.734252730936634,52.233866156102266],[4.734196277207479,52.233856613321514],[4.734139823502636,52.23384707051375],[4.734083369953906,52.233837518691715],[4.734026916297692,52.23382797583007],[4.733970462665788,52.233818432941455],[4.733914009058193,52.233808890025905],[4.733857570112516,52.23379934716428],[4.733801116553539,52.23378980419479],[4.733744663018873,52.23378026119836],[4.733688209508518,52.233770718174966],[4.733631756022473,52.23376117512457],[4.733575302560737,52.233751632047245],[4.733541687562856,52.233745945360184],[4.733518849255231,52.233742079955604],[4.733516245824556,52.23377583368307],[4.733513478990682,52.23381174363993],[4.733510820293637,52.23384627003405],[4.733510746968103,52.233847276290746],[4.733510712284136,52.233847644609185],[4.733507959946792,52.23388356363378],[4.733505193099157,52.23391947358974],[4.73350242624693,52.23395538354539],[4.733499659390112,52.233991293500736],[4.733496892528703,52.234027203455774],[4.733494125662702,52.234063113410535],[4.733491358792112,52.23409902336496],[4.733488591916929,52.23413493331909],[4.733485825037156,52.23417084327288],[4.733484977300898,52.234181723119036],[4.733467182025004,52.234204274548155],[4.733441630634408,52.23423662497458],[4.733418748842982,52.234265619648276],[4.733412738654361,52.23426617959798],[4.733354849964505,52.23427159359061],[4.733296961128729,52.23427701654222],[4.733239087048713,52.2342824305591],[4.733181198316981,52.23428784446654],[4.733123309439295,52.234293267332944],[4.733065420679639,52.234298681183596],[4.733007546543798,52.2343040950869],[4.732949657624201,52.234309517868056],[4.732907483358114,52.23431346373683],[4.73289203532022,52.234315724058646],[4.73283506967786,52.234324064028144],[4.732778104014274,52.23433240397013],[4.732750053979568,52.23433650891805],[4.732720913899006,52.23434007752495],[4.732695308255496,52.23434320731585],[4.732663206735517,52.23434607640867],[4.732605262603715,52.234351265025936],[4.73254731845853,52.2343564536148],[4.732489374432091,52.23436163318784],[4.732431444897942,52.234366821800904],[4.732404561665163,52.23436922540312],[4.732402480191925,52.23436941160313],[4.732373500844777,52.23437200131709],[4.73231555664609,52.234377189792106],[4.732257612566199,52.23438236925136],[4.732199682978556,52.234387557750644],[4.732141738871936,52.234392737153],[4.73208379461975,52.23439792551417],[4.732025850354181,52.23440311384694],[4.731990435977831,52.23440627896594],[4.73196781259073,52.23440470640954],[4.731909638041933,52.234400671660495],[4.731908438800455,52.23440059310382],[4.731904665819209,52.23440032949734],[4.73189707594346,52.234399802040436],[4.731868974948815,52.2343775175582],[4.731833117935645,52.23434908714994],[4.731797260968236,52.23432065673076],[4.731761418552078,52.23429223536909],[4.73172556154389,52.23426381391532],[4.731709745695385,52.234251277697595],[4.731689719351485,52.23423538354445],[4.731676855358358,52.23422519160887],[4.73167271685469,52.234221914967],[4.73165386243479,52.23420696206873],[4.731618020201564,52.23417854066332],[4.731582163508662,52.234150110178405],[4.731546321366911,52.234121688751046],[4.73153067928689,52.23410928829396],[4.731500288250818,52.23410138089334],[4.731462182733306,52.23409147126646],[4.731446374758874,52.234087356867505],[4.731392461300981,52.23407333281709],[4.731387415586497,52.23407201951361],[4.731336324320365,52.234063179238625],[4.731289905749342,52.23405513785887],[4.731279976613575,52.23405341993794],[4.731251795384456,52.23404854473058],[4.731223628799215,52.234043669597746],[4.731220796105775,52.234043177501015],[4.731215437183647,52.23404225792555],[4.731185387112124,52.23403704875458],[4.731166585641083,52.23403640506147],[4.731108630034885,52.234034438384974],[4.731108546710624,52.23403413232818],[4.731105703550641,52.23402342074712],[4.73110351261263,52.234015139564335],[4.731102722489365,52.23401213316425],[4.731099144449849,52.233998640191196],[4.73108974207153,52.233963157040606],[4.731083806990822,52.23394073482088],[4.731082905462688,52.233937341315325],[4.731080354345716,52.233927673970314],[4.731070951997115,52.23389219081784],[4.731061549663377,52.23385670766434],[4.731052147344501,52.23382122450995],[4.731042759810503,52.23378573244857],[4.731033357521349,52.23375024929225],[4.731023955247056,52.23371476613496],[4.731014552987626,52.23367928297674],[4.731008368410652,52.2336559156196],[4.731005590531599,52.23364375732016],[4.731004380690789,52.233638438656335],[4.730997478258646,52.23360815549274],[4.730990561330705,52.23357786325992],[4.730989351361016,52.23357255358321],[4.730986518782609,52.23356013432549],[4.730981224608691,52.23353694268557],[4.730976824005959,52.23351768379143],[4.730973097604379,52.233501349761816],[4.730972038586523,52.23349672401596],[4.730970168929188,52.233488498542805],[4.730964970877799,52.23346573886264],[4.730960914771862,52.233447937947105],[4.73095685866914,52.23343013703135],[4.730948731835864,52.23339453511796],[4.730947068372958,52.23338721858388],[4.730945294300287,52.233379461020256],[4.730942582239015,52.233371779138366],[4.730939884948565,52.2333640883504],[4.730937158459606,52.233359372448184],[4.730935573831003,52.233356640262684],[4.730930008592837,52.23334787295078],[4.730929662724052,52.23334750251883],[4.730928941711602,52.23334676149237],[4.730914966619674,52.23333252765863],[4.730913075205606,52.23333074650288],[4.73091242526184,52.23333014968004],[4.730909855159162,52.23332773558946],[4.730891307459821,52.23332479231764],[4.730862960159642,52.233320293590765],[4.730844047457738,52.2333172853671],[4.730834627635117,52.233315785951106],[4.730777933063553,52.23330678846342],[4.730721238515016,52.23329779094848],[4.730694921347776,52.23329360905699],[4.730664437155244,52.23328908941866],[4.730621026007804,52.23328265537221],[4.730607514743254,52.23328065683039],[4.730582142934161,52.23327689361891],[4.730575321567589,52.23327588499253],[4.730550592485459,52.23327221522738],[4.730531559943003,52.23326939503662],[4.730493684754255,52.23326378266569],[4.730436762407304,52.23325534999522],[4.730379854719444,52.233246917378686],[4.730322932548405,52.23323847566611],[4.730293850574169,52.23323417045424],[4.730281507945729,52.23323234015863],[4.730266010266492,52.23323004291338],[4.730221109268665,52.2332233937089],[4.730209133376902,52.2332215115169],[4.730171438294343,52.2332156034379],[4.73015240818708,52.23321262141424],[4.730095668515229,52.233203722215634],[4.730089476048769,52.23320275301155],[4.730038943370953,52.233194832058516],[4.730037731119355,52.233194645553546],[4.73003695706135,52.233194524402705],[4.730034810138267,52.23319418888913],[4.730025317049606,52.23319269798886],[4.730023768933735,52.233192455686954],[4.729982203612048,52.23318594179273],[4.729956528371505,52.23318191610449],[4.729925448442678,52.23317710534227],[4.729868677995296,52.23316831371971],[4.729811892933063,52.23315952198838],[4.729755122398075,52.233150739298615],[4.729698352018286,52.233141947594234],[4.729641567023652,52.2331331557811],[4.729584796556223,52.233124373009474],[4.729528026244024,52.23311558122334],[4.729471241316991,52.233106789328396],[4.729414471049863,52.23309799748767],[4.729375957149873,52.23309203965412],[4.729357685636886,52.23308924148747],[4.729300870175038,52.23308053922087],[4.729244069505649,52.233071828021195],[4.729191329012778,52.233063750598255],[4.729187375038176,52.23306286571989],[4.729141706870161,52.233052679521755],[4.729132143842357,52.233050972446264],[4.729075918986528,52.23304094312785],[4.729065479981006,52.23303907836973],[4.72901969428896,52.23303090479539],[4.729002685221242,52.23302787092979],[4.728963469484018,52.23302087542352],[4.728907244837363,52.23301083703755],[4.728899448428142,52.23300944538185],[4.728850959673984,52.2330009331084],[4.728794674402886,52.232991038139765],[4.728738374386712,52.232981152050044],[4.728682089032969,52.23297126601515],[4.7286539391133,52.232966318453144],[4.728649223087253,52.23296549222497],[4.728647806855609,52.23296524165209],[4.728625789199916,52.23296137088445],[4.728621014758554,52.23296053534143],[4.728569367641494,52.23295178963042],[4.728512916566991,52.23294222616082],[4.728483289246973,52.23293720740372],[4.728456480154162,52.23293266274589],[4.728400028995432,52.23292310820975],[4.728377235339358,52.23291925104404],[4.728343638271681,52.23291342815066],[4.728287307584423,52.23290364953068],[4.728230947514452,52.232893879707945],[4.728199423927121,52.23288840988623],[4.728174602239608,52.23288410095263],[4.728118256856619,52.23287433115779],[4.728114183161898,52.2328736253367],[4.728061911498466,52.232864561336086],[4.728005566165153,52.23285479148754],[4.727949220989716,52.23284501262481],[4.727917273922233,52.23283947744771],[4.727892785354491,52.23283541299147],[4.727836273496943,52.2328260196311],[4.727819436643315,52.23282322923332],[4.727809244047219,52.232821536512255],[4.727806586451467,52.232821090250766],[4.727779746893011,52.232816635149305],[4.727723234950285,52.2328072507222],[4.727707464235553,52.23280462804537],[4.727704572977982,52.23280414452486],[4.727703725879948,52.232804013962784],[4.72768239167985,52.23280046141639],[4.727666647449464,52.23279802763125],[4.72760986303249,52.232789252816794],[4.727553078504892,52.23278048696241],[4.727496294132895,52.23277171209339],[4.727475116847577,52.23276843901563],[4.727439509650256,52.232762946184394],[4.727434105850934,52.23276210707819],[4.727382634037792,52.23275440444062],[4.727367429154669,52.23275212642506],[4.72732574341053,52.2327458895497],[4.727319477349768,52.232744955741],[4.727268867309204,52.23273738370044],[4.727211976725676,52.23272886875478],[4.727209347616848,52.23272847656737],[4.72715516188097,52.23272018343154],[4.727098347058542,52.23271149808099],[4.727041532391615,52.232702803715796],[4.726984717746993,52.23269410932332],[4.726927902991426,52.23268542389085],[4.72690675453081,52.232682186824206],[4.726871210153104,52.2326764155421],[4.72681460769321,52.23266723689806],[4.726758005390044,52.23265804923961],[4.726701388473139,52.232648861472185],[4.726672488616165,52.23264416989673],[4.72664499793618,52.23263921655206],[4.726588819543485,52.232629087435726],[4.726532626405937,52.232618967198206],[4.72647644793124,52.23260884701577],[4.726456549035293,52.232605257334654],[4.726434241272776,52.23260123173698],[4.726420269615534,52.23259871781937],[4.726372296088838,52.232590072585026],[4.726364061250976,52.23258864235641],[4.726352438987556,52.23258662692912],[4.726307716776111,52.232578862711264],[4.726251372326106,52.23256908303927],[4.726195042671536,52.23255929443495],[4.726138698271266,52.232549514709255],[4.726125893352096,52.23254729490391],[4.726107319157459,52.232544206920494],[4.726095710353832,52.2325422724357],[4.726083575813732,52.23254025411491],[4.726082217758627,52.232540030800955],[4.726037388644937,52.23253257147625],[4.726035665728445,52.232532274215124],[4.726034745854953,52.23253211626956],[4.726033767699636,52.23253194002162],[4.72602573727016,52.232530546865654],[4.725969407847829,52.23252074916653],[4.725945988414774,52.232516672313345],[4.725944630494529,52.23251644001051],[4.725913078450398,52.23251095144058],[4.725856734440709,52.23250115360582],[4.725800405093085,52.232491355826156],[4.72574407577036,52.23248155801966],[4.725687731835389,52.23247176010436],[4.72566946641802,52.232468583900285],[4.725631114710818,52.23246261676093],[4.725597363567378,52.23245735846835],[4.725585475367886,52.232455512249075],[4.725574361335759,52.2324537782214],[4.725564941340981,52.23245231433476],[4.725558909686649,52.232451372757104],[4.72551760784982,52.23244494864193],[4.725460854520044,52.232436110047885],[4.72540408657578,52.2324272713446],[4.725347333157736,52.23241844168338],[4.725290579895892,52.232409603007575],[4.725233826523104,52.23240077329184],[4.725177073306541,52.23239193456156],[4.725120320112622,52.23238309580403],[4.725063566807733,52.23237426600657],[4.725018409602546,52.23236723588175],[4.72500675283892,52.23236557965075],[4.724949710782636,52.23235746722505],[4.724892668747252,52.232349354771884],[4.724835436717748,52.23234122324957],[4.724826322279161,52.232339886850035],[4.724825971657006,52.23233983994367],[4.724825591894315,52.23233978388589],[4.724778660999268,52.23233292348499],[4.724721710057953,52.23232459574614],[4.724664744500966,52.23231626789778],[4.724624313657746,52.232310351685776],[4.724607373798115,52.23230959155371],[4.724548991526312,52.232306954137556],[4.724490579853637,52.23230432551563],[4.724432197595917,52.23230168804175],[4.724404593724543,52.23230043662216],[4.724332503929291,52.232051350265685],[4.724321437071039,52.23201498535845],[4.724324389664567,52.23194643195615],[4.724315860107774,52.231867450878354],[4.724299438632203,52.23173254669086],[4.724276280189516,52.23156051093097],[4.724273935792788,52.23149477701556],[4.724242489104035,52.23135836837348],[4.724208999380271,52.23116353478955],[4.724169067445646,52.23089507970143],[4.724146354997607,52.2306892152934],[4.724137687702494,52.23061067382488],[4.724108734323439,52.23034815850841],[4.72403486639492,52.22972531090152],[4.723963703638276,52.2291735560396],[4.72396253517436,52.22916552312992],[4.723956889918221,52.22912686968369],[4.723943207455903,52.22903326297053],[4.723937986955165,52.228997542019215],[4.723896050914029,52.228710569023],[4.723879153476433,52.228532105811695],[4.72382578817993,52.22822341630952],[4.723745691297492,52.227521042730245],[4.723695812255495,52.22711405211948],[4.723685527193888,52.226898568126394],[4.723662809922201,52.22678861520279],[4.723658612010404,52.22673242512778],[4.723651891189579,52.22663828220549],[4.72361151323925,52.2263246051561],[4.723562942952813,52.22596256213594],[4.723522794519207,52.2256266857478],[4.723464270375928,52.225225542488374],[4.723413910068457,52.224914047218284],[4.723329211573269,52.224459394497956],[4.723244188341088,52.2240266438027],[4.72317212782252,52.22350690731504],[4.723128347884868,52.223015399520975],[4.723105905350878,52.222718378956685],[4.723094714723355,52.222502044754954],[4.723073974480202,52.22229800647536],[4.723040495337596,52.22195992914218],[4.723026571365078,52.22181996927119],[4.722885997190885,52.219937019320554],[4.722881586050336,52.21986481116888],[4.722884797586369,52.219841792761486],[4.722891015294952,52.21980756513984],[4.722900054899388,52.21978430088202],[4.723009873196827,52.21950431936616],[4.72310808945455,52.219273149734],[4.723318237072233,52.218881102262735],[4.723502183581278,52.21856784057668],[4.723562217986014,52.218466208046884],[4.723593124430381,52.218402350553355],[4.723613257204039,52.21835639072286],[4.72362620937675,52.21830029691821],[4.7236292892922,52.21820060034428],[4.723625063778927,52.21806181845491],[4.723579663494677,52.217840231611575],[4.723523005892114,52.217545274602365],[4.723476707825323,52.2173152608072],[4.723418268839484,52.21700932823013],[4.723367412827543,52.21678575118686],[4.723342303294281,52.21671398392931],[4.723306595684555,52.21666996625055],[4.723306570973682,52.21666966051648],[4.723244832792174,52.21638591884437],[4.723230131479009,52.2163492546498],[4.723185067516366,52.21622808445412],[4.723182886879846,52.21622123225362],[4.723101173424652,52.215964180663114],[4.723038057069187,52.21574359942195],[4.723022898845303,52.21568165810228],[4.723017457349764,52.2156363724392],[4.72301206711687,52.215563107122414],[4.723015835532959,52.215510556945006],[4.723028263747805,52.21546506618392],[4.723052118223356,52.2153843614039],[4.723080035795021,52.21532262637322],[4.723111169599976,52.21526304858811],[4.723282459301774,52.214940008777596],[4.723340328881381,52.214833115093356],[4.723403855933999,52.21471575508256],[4.723448908033476,52.21465200406673],[4.723457781952215,52.214644683702296],[4.723499010449325,52.21461069772958],[4.72354436838023,52.21457650125791],[4.723596658713435,52.214550388070045],[4.723627278163812,52.21453803970355],[4.723740502612561,52.21449294441274],[4.723755163416771,52.214485144214954],[4.723799042844806,52.21446177898455],[4.723837103124311,52.214429258132874],[4.723872359123113,52.2143885243735],[4.723895035688189,52.21434159006769],[4.723907541148461,52.214308521193054],[4.723910795163204,52.21425997678196],[4.723905693955578,52.214194730498974],[4.723892797441489,52.21412628560915],[4.723863444026347,52.21402117571226],[4.723819469275984,52.213891751762326],[4.72381527789984,52.2138794145241],[4.723808030627753,52.213858081009825],[4.723789736882382,52.21380425638419],[4.723689643901674,52.21349528544901],[4.723677436453882,52.21343759416225],[4.723676566470459,52.213409546406986],[4.723676034284231,52.2133922233511],[4.723691974012612,52.21335059015574],[4.72370241210838,52.21333253778291],[4.723718001189336,52.21330560714312],[4.723741573556564,52.21327513510074],[4.723781459922925,52.21323881356915],[4.72382883835753,52.213201473514125],[4.724036725405059,52.21308283873535],[4.724056559292849,52.213071517250945],[4.72421762321137,52.21297941273698],[4.724248687268232,52.212961682835655],[4.724294464616903,52.21293553277753],[4.724302758212279,52.212930797664065],[4.724363679452013,52.21289285031957],[4.724394898457123,52.212864695055096],[4.724413218784595,52.21284297477395],[4.724420024508361,52.21282612433264],[4.724420042170789,52.212812147938074],[4.724412340935189,52.212794766673],[4.72436724268442,52.212735929124776],[4.724348466734062,52.212711555869944],[4.724323135024333,52.21267739372584],[4.724321958707795,52.2126758142056],[4.724315347140655,52.21266682494658],[4.724342040358791,52.21265273763047],[4.725020146645218,52.21229479790011],[4.725078317586422,52.21229512406903],[4.725214276618502,52.212215281017066],[4.725340441132341,52.21213284827119],[4.72543371670408,52.21207185645802],[4.725479523455183,52.2119923797143],[4.725487626930828,52.211974808446826],[4.725503562375096,52.21194021266287],[4.72551952705529,52.21190561704046],[4.725535462316375,52.21187103023903],[4.72555139768605,52.21183643444783],[4.725567332897426,52.211801847641595],[4.725583282847731,52.21176725192759],[4.725599232506296,52.21173267418584],[4.72561518254027,52.21169806947965],[4.725631132149088,52.2116634917331],[4.725647067502998,52.21162888694013],[4.725663002565208,52.211594300119415],[4.725678937735979,52.211559704308975],[4.72569109230973,52.211533374346594],[4.725699983958516,52.211526763972685],[4.725737339331502,52.21149908314391],[4.72575074321957,52.21148912750307],[4.725783032975736,52.211477426092166],[4.725833431520063,52.211459156922125],[4.725883830156493,52.21144087874308],[4.725934228751633,52.2114226005424],[4.725984641802361,52.211404331389325],[4.726035025551361,52.21138606205082],[4.726085438652871,52.211367783867104],[4.726135822452655,52.21134950549795],[4.726186235338259,52.21133123625829],[4.726236618922188,52.21131296683321],[4.726287031858533,52.21129468856291],[4.726301801211108,52.21128933342093],[4.726337977407296,52.211276997478315],[4.726389153133753,52.21125956831474],[4.726440329086757,52.21124212115417],[4.726468652318716,52.21123246462524],[4.726487791150314,52.21122154330989],[4.72653068719897,52.21119708400679],[4.726573554206694,52.21117260654951],[4.726616435664248,52.21114813814565],[4.726659316941499,52.211123678713435],[4.72670219830488,52.2110992102781],[4.726745079621171,52.21107474182698],[4.726787946127071,52.21105028226563],[4.726796283263097,52.211045529245155],[4.726825531576527,52.211022800119316],[4.72686182555491,52.21099459169132],[4.726898119220975,52.2109664012267],[4.726934427604315,52.21093820184517],[4.726970721311598,52.21091000237043],[4.727007029602966,52.21088180296612],[4.727043308588244,52.210853603386845],[4.727079616920777,52.210825394972375],[4.727083480092368,52.210822396565895],[4.727103875307444,52.210792813890706],[4.727126707371301,52.210759721497844],[4.727140284417461,52.21074001457938],[4.727144549382899,52.21072569341074],[4.727155051780032,52.21069032102268],[4.727158609014003,52.21067834179171],[4.727170911118766,52.210655805480116],[4.727189544803641,52.21062166496542],[4.727210361329729,52.21059227337629],[4.727213250387339,52.210588856068675],[4.727240205105961,52.21055696413553],[4.727242870849958,52.21055380623411],[4.727263997026552,52.21052820035613],[4.727267363540394,52.210525145239465],[4.727296312321587,52.210498890987914],[4.727301315520335,52.21049597084979],[4.727331601630813,52.210478208829464],[4.727345713305264,52.21047277797782],[4.727395288543013,52.21045366765093],[4.727444863472182,52.21043457527783],[4.727484859075602,52.21041915942996],[4.727494438491965,52.21041547389636],[4.727544028099197,52.21039637257567],[4.727550443851945,52.210393900734616],[4.727595346247695,52.21037910547374],[4.727646894710377,52.21036209130268],[4.727690562279645,52.210347684585294],[4.727698558044806,52.210345221560424],[4.727750897773232,52.21032911057328],[4.727803207938172,52.21031301737419],[4.727855532961211,52.210296906258776],[4.727907872443391,52.21028080418906],[4.727944926237319,52.21026938944262],[4.72795975091158,52.210264214165214],[4.728010637296297,52.21024644113957],[4.728061508877706,52.21022867699759],[4.72811239491554,52.21021092190249],[4.728163266548862,52.2101931487291],[4.728195886701109,52.21018175410096],[4.7282146415474,52.210175962569295],[4.728266894308151,52.210159769976194],[4.728319147031002,52.21014357735987],[4.728371385086132,52.21012738463868],[4.72842366672709,52.21011121011385],[4.72847590470644,52.21009501734621],[4.728528157277696,52.21007882463691],[4.728574677360986,52.21006441552849],[4.728580667967245,52.210062983880135],[4.728635243074969,52.21005001282892],[4.728689818151009,52.21003704175244],[4.72874439332816,52.21002406166324],[4.728753334999823,52.21002193640129],[4.728799297257329,52.21001160469169],[4.72882225643345,52.210006438707836],[4.72885275342151,52.20999711730089],[4.728905178378135,52.209981123124706],[4.728956633219473,52.209965429113105],[4.728957545176389,52.20996510163683],[4.728977178917883,52.20995823631169],[4.729006020970334,52.20994505873394],[4.729021517262561,52.209937981590144],[4.729051968899967,52.20992280862618],[4.729097439576417,52.2099001783407],[4.729123086035501,52.20988740536611],[4.729141476593702,52.2098765423695],[4.729169461132562,52.209859998424086],[4.729183645173044,52.209851619660306],[4.72919952635576,52.209842252672466],[4.729223260503723,52.20982521764935],[4.729253057698998,52.209803821222216],[4.729260786225693,52.20979764451783],[4.729296496456497,52.209769162449696],[4.729321162343409,52.20974946313234],[4.729332352009822,52.20974074409714],[4.729368585103161,52.20971251658696],[4.729404847277246,52.209684298215834],[4.729441094908355,52.20965607076449],[4.729477342493507,52.20962784330179],[4.729513575270423,52.20959962473362],[4.729549822763674,52.209571397248205],[4.729586070210966,52.20954316975148],[4.729620733810406,52.209516182769754],[4.729622317479688,52.20951495123072],[4.729658564835072,52.2094867237113],[4.729694826774097,52.20945849626199],[4.729731059407967,52.20943026863838],[4.729767306492896,52.20940205007228],[4.72980355379703,52.20937381352007],[4.72983980079006,52.20934559493125],[4.729876047869704,52.20931736734373],[4.729912294770842,52.20928914873222],[4.729948527129045,52.209260921040574],[4.729957896043348,52.20925362092018],[4.729984948432302,52.209232775282324],[4.73002144217445,52.20920467485651],[4.730057906876568,52.20917655628169],[4.730094400526599,52.20914845583285],[4.730130879766093,52.20912033731644],[4.730167373323997,52.209092236844654],[4.730203852338866,52.20906412729259],[4.730240346069621,52.20903600882313],[4.730276810362907,52.209007899166686],[4.730313289239597,52.2089797895802],[4.730317506716713,52.20897655036059],[4.730350436255545,52.20895200727057],[4.730387626716054,52.20892425215524],[4.730424461653502,52.2088967916582],[4.730424831759619,52.20889649710936],[4.730461615285241,52.208868550957376],[4.730498399029559,52.20884058681901],[4.730535182727676,52.20881262266896],[4.730571951750215,52.208784658425884],[4.730608735355944,52.20875669425248],[4.730645518915476,52.208728730067406],[4.730682302428809,52.20870076587065],[4.730719085763556,52.208672810649574],[4.73075190404362,52.20864784438876],[4.730755869052121,52.20864485541685],[4.730792870410657,52.20861699126587],[4.730829900716793,52.208589145240445],[4.7308668870887,52.208561298959275],[4.730903902805294,52.208533443841546],[4.730940903846292,52.20850558863068],[4.730977890079391,52.20847774231409],[4.731014905524773,52.20844989614831],[4.731051906559236,52.20842203191459],[4.731088892653524,52.20839418556259],[4.731125907960044,52.208366339361305],[4.731162908723332,52.208338484079576],[4.731199820606681,52.20831070019737],[4.731236764877129,52.208282700769104],[4.731273620267697,52.208254772740446],[4.731310460982839,52.20822684461883],[4.731347330777893,52.20819892563534],[4.731384186029786,52.20817099757154],[4.731415448725555,52.208147298797755],[4.73142112834926,52.208143114920226],[4.731458622299088,52.20811552293998],[4.73149611646691,52.208087912972864],[4.731533595694661,52.208060320887135],[4.731571104398663,52.20803271097701],[4.731608598427034,52.208005100973544],[4.731646077515404,52.20797750885142],[4.731683586079928,52.207949898904914],[4.731721079704483,52.20792230683981],[4.731758558917837,52.20789469670665],[4.731796067078551,52.20786710469849],[4.731832540320783,52.207840243958955],[4.731833560828033,52.207839494622306],[4.731870662453646,52.20781168461983],[4.731907763636492,52.20778390156762],[4.731944879666364,52.207756100609934],[4.731981981020858,52.207728299559236],[4.732001922003877,52.20771337311212],[4.732019924602921,52.20770092561069],[4.732058782500292,52.20767405106828],[4.732097625721766,52.207647176431706],[4.732136483657467,52.20762029287594],[4.732175356043166,52.20759341837568],[4.732214199388155,52.207566525725404],[4.732235749144357,52.20755162613873],[4.732253289397717,52.20753976925205],[4.732292654933507,52.2075131760797],[4.732332006057454,52.2074865648382],[4.732371371763331,52.207459953664475],[4.7324107371581,52.20743336045214],[4.732429769892975,52.207420487171866],[4.732450944118203,52.20740723927434],[4.732491933995734,52.20738159879314],[4.732532924090118,52.20735594032278],[4.732573928634196,52.20733029090643],[4.732597804679133,52.207315368197925],[4.732615817309936,52.20730520363928],[4.7326498804054,52.20728598714998],[4.732659401283938,52.20728123129098],[4.73270482420597,52.207258554417784],[4.732750246949828,52.20723588651434],[4.732795655018627,52.20721321851219],[4.732830584463755,52.20719576844006],[4.732841728315623,52.20719107548891],[4.732889969506455,52.20717074208052],[4.732924240403269,52.207156290357524],[4.732938931936902,52.20715110473245],[4.73298966873849,52.20713317594588],[4.733040390606656,52.207115265031014],[4.733091127326745,52.20709733620055],[4.733113760332693,52.20708933632848],[4.733142698365572,52.207080373696485],[4.733194960206839,52.20706418797271],[4.73324720711766,52.207048020119416],[4.733257612318734,52.207044806075146],[4.733301390377158,52.20703448749143],[4.733356017340089,52.207021622415],[4.733410658900376,52.20700875739424],[4.733418072680973,52.2070070098099],[4.733467669616375,52.20700093880108],[4.733525078451025,52.20699390434912],[4.733563902894166,52.206989157833235],[4.73358270630296,52.20698789572511],[4.73364088818873,52.20698401133129],[4.733699055567464,52.20698011784046],[4.733747835997326,52.20697684648284],[4.733757237433183,52.20697623338927],[4.733815418761865,52.20697238485885],[4.733873585320088,52.20696854520618],[4.733931781257722,52.206964696699345],[4.733989947796132,52.206960856989284],[4.734027334343158,52.20695838534467],[4.734048235842203,52.20695771000648],[4.734106651862249,52.20695581304871],[4.734165111632123,52.20695392529213],[4.734223542139598,52.20695203734475],[4.734248615206819,52.2069512232533],[4.734281842285371,52.2069490610875],[4.734340037241634,52.20694527529093],[4.734398217559352,52.20694148938474],[4.734430082830508,52.20693940952973],[4.734456439910895,52.20693782951569],[4.734514674512731,52.20693433147144],[4.734541559012943,52.20693270042506],[4.734573014949603,52.20693159797198],[4.734586335035472,52.20693113230367],[4.734608113296357,52.206935522012486],[4.734623240203423,52.20694554645036],[4.734627586992858,52.20694842868846],[4.734659711062607,52.20697363807381],[4.734661244214038,52.20697484196352],[4.734784284227863,52.20691874400537],[4.734832540657324,52.206896288699305],[4.734899645019946,52.206890511549815],[4.734934445812276,52.206854787340184],[4.734948530628927,52.20684904984055],[4.735081051721505,52.20697182219348],[4.735095136556416,52.206966084676495],[4.735129562870595,52.20696294919206],[4.735147955123722,52.206944786936766],[4.735159789115105,52.20693989984048],[4.735126854777072,52.206910057246205],[4.735124255916818,52.20690769700071],[4.735123884695152,52.20687707249438],[4.735123847842809,52.20687459157529],[4.735123732452295,52.20686447932564],[4.735128108356941,52.206862373310535],[4.735115180870987,52.20685000620121],[4.735108385140181,52.206843515217244],[4.735076744285942,52.20681326629852],[4.7350451033431,52.2067830263586],[4.735030920694504,52.2067694568902],[4.735028251465576,52.20676690750374],[4.73502667876499,52.206765406793046],[4.735013477203387,52.20675277750348],[4.734994359941044,52.2067345069637],[4.734981836346329,52.20672253754642],[4.734960771459817,52.20670239570664],[4.734955321483166,52.20669592113502],[4.734954890118941,52.20669540643056],[4.734951783981137,52.206691722128326],[4.734924908027731,52.20665979174792],[4.734919386233348,52.20665322689685],[4.734900221519849,52.206627208336435],[4.734881702228148,52.20660207417205],[4.734876754357657,52.206594281119564],[4.734855504707942,52.20656078192186],[4.734844207607648,52.20654298598775],[4.734836030813033,52.20652690604218],[4.734818582277041,52.206492591943764],[4.734811059868997,52.20647778293387],[4.734802761886503,52.206457990230575],[4.734793163728312,52.20643507147203],[4.734792881022654,52.20643439580249],[4.734790181019591,52.20642795439265],[4.734788730552672,52.2064231017923],[4.73478575950254,52.206413189477836],[4.73477814419794,52.20638773804076],[4.734774015812487,52.206373936471735],[4.734771655885157,52.20635925485174],[4.734771306589899,52.20635713172996],[4.734770502021805,52.20635212990036],[4.734764734947041,52.206316352357696],[4.734763621024769,52.2063094972699],[4.734763434380167,52.206308255880664],[4.734759678072264,52.206285027848686],[4.734759524161642,52.206280550923914],[4.734758521716669,52.20625208905669],[4.734758879861774,52.20624461293536],[4.734759887782072,52.20622373015724],[4.734761921561021,52.20620872227729],[4.734764708634899,52.20618822682965],[4.73476798951941,52.20617297417341],[4.734771820289098,52.20615513598208],[4.734777973043606,52.20613758026311],[4.734790308189667,52.20610244202353],[4.73480264344771,52.20606729479506],[4.734810063094496,52.206046141845114],[4.734815854553605,52.206032278237515],[4.73483042332422,52.20599745792932],[4.734832818549569,52.20599173675357],[4.734833015691651,52.20599126147334],[4.734844991940411,52.205962646606416],[4.734859546036817,52.20592782621328],[4.734867141257301,52.20590966726726],[4.734874508785916,52.20589307099251],[4.734889879792221,52.205858407906085],[4.734905280688992,52.205823700042124],[4.734920681298605,52.20578901015066],[4.73493606712421,52.20575432916347],[4.734951453057275,52.2057196391867],[4.734966838834758,52.205684958195015],[4.734982224719695,52.205650268213695],[4.734997625077403,52.20561558729827],[4.7350130109142,52.205580897312494],[4.735028396595427,52.20554621631175],[4.735043782384095,52.2055115263214],[4.735059182645505,52.20547684539695],[4.735074568386035,52.20544215540207],[4.735089953971007,52.20540747439232],[4.735099394044405,52.2053861977592],[4.735105193643689,52.20537276561037],[4.735120199897817,52.20533801059673],[4.735135220625192,52.2053032646491],[4.735150226700793,52.205268518618546],[4.735165232752884,52.205233772585835],[4.735180238912932,52.20519901756359],[4.735195244917992,52.20516427152652],[4.735210265527732,52.20512952556809],[4.735225271485755,52.20509477952674],[4.735240277551725,52.2050600244958],[4.73525528346272,52.20502527845014],[4.735258114891232,52.205018732768096],[4.735268245011274,52.20499527582157],[4.735270289350204,52.20499053240227],[4.735285295214175,52.20495578635225],[4.735289262258519,52.20494661342508],[4.735299392345617,52.204923156475495],[4.735300315814205,52.20492103139348],[4.735315321631138,52.20488628533914],[4.735330327424556,52.20485153928265],[4.735345333194464,52.20481679322398],[4.735360339072294,52.20478203817581],[4.735375359423239,52.204747292193545],[4.735390365122595,52.204712546128434],[4.735396361150253,52.20469867463159],[4.735397027521346,52.204697123368184],[4.735405370798441,52.204677800061134],[4.735420376582198,52.20464304500431],[4.735435382211015,52.20460829893264],[4.73545040244433,52.20457355293961],[4.735465408026113,52.204538806863646],[4.735480413715794,52.20450405179821],[4.735495419250552,52.20446930571794],[4.735510424761799,52.2044345596355],[4.735525430249533,52.20439981355094],[4.735540450473092,52.20436505855753],[4.735555455913789,52.20433031246862],[4.735565948877482,52.2043060305918],[4.735569204380353,52.20429848956267],[4.735570461330975,52.20429556637753],[4.735581151273258,52.20427081820495],[4.735585364592086,52.20426080174451],[4.735600005184656,52.204225990719394],[4.73561463112636,52.204191179611506],[4.735629271541591,52.204156377569674],[4.73564391206522,52.204121566538376],[4.735658537938012,52.20408675542426],[4.735673178284311,52.20405195337621],[4.735687818738999,52.2040171423387],[4.735702444542886,52.203982331218405],[4.735717084820251,52.20394752916417],[4.735731710578205,52.20391271803973],[4.735746350940977,52.203877906993974],[4.735760991280763,52.2038430959461],[4.735775616838461,52.20380829380287],[4.735790257132289,52.203773482750876],[4.735804897403134,52.20373867169685],[4.735819522891934,52.20370386954741],[4.735830086025281,52.20367877011513],[4.735831086652518,52.2036763668231],[4.735834163116825,52.20366905848924],[4.735835087584358,52.20366686150341],[4.735848686428458,52.20363423779606],[4.73586320984861,52.203599408113476],[4.735877733245949,52.20356457842883],[4.73589225648915,52.20352975772954],[4.735906765213207,52.20349492796016],[4.735921288542116,52.203460098269424],[4.735935811716899,52.203425277564016],[4.735950335000184,52.20339044786921],[4.735964858260653,52.203355618172374],[4.735979366739406,52.20332079738016],[4.735993889954261,52.20328596767922],[4.736008413146304,52.2032511379762],[4.736022936184236,52.20321631725858],[4.736037444703101,52.20318148747088],[4.736051967695427,52.20314666674915],[4.73606649079623,52.20311183703802],[4.736081013874221,52.203077007324865],[4.736095536798115,52.20304218659702],[4.736110045202988,52.20300735679909],[4.736117018548813,52.20299064142296],[4.736117503694315,52.20298947564444],[4.736124568212551,52.20297252707979],[4.736125568676618,52.20297013277233],[4.736138813802404,52.202937659876504],[4.73615304474239,52.20290279259057],[4.73616727579126,52.20286791631527],[4.736181506686481,52.20283304902543],[4.736190291260467,52.20281150803024],[4.73619573769058,52.20279817274621],[4.736209953913617,52.202763305371775],[4.736224184872958,52.202728429088616],[4.736238415678657,52.20269356179087],[4.736252646593225,52.202658685503785],[4.736266877354161,52.20262381820212],[4.736281108223957,52.202588941911074],[4.736295338940127,52.20255407460548],[4.736309555137818,52.20251919822988],[4.736323785809235,52.202484330920335],[4.7363380165895,52.20244945462142],[4.736352247216154,52.20241458730796],[4.736366477951649,52.202379711005115],[4.736380708533537,52.20234484368771],[4.736394939224263,52.20230996738094],[4.73640149347339,52.20229388783229],[4.736408980000704,52.20227507204936],[4.736422889503475,52.20224014902816],[4.7364367843571,52.202205225924416],[4.736450679188834,52.20217030281878],[4.736464573998679,52.20213537971126],[4.73647848341383,52.20210045668246],[4.736492378048685,52.20206554255857],[4.73650627279285,52.20203061944542],[4.736520182142288,52.20199569641094],[4.736534076842661,52.201960773293976],[4.736547971521142,52.20192585017513],[4.736561880804865,52.201890927135004],[4.736575775439554,52.201856004012384],[4.736589670052355,52.20182108088788],[4.736603564512092,52.201786166748875],[4.736617473708199,52.20175124370117],[4.73663136825532,52.20171632057104],[4.736645262780553,52.201681397438975],[4.736659171910945,52.20164647438559],[4.736673066392386,52.20161155124977],[4.736686960851938,52.201576628112036],[4.736700869785463,52.2015417140404],[4.736714764201229,52.2015067908989],[4.736728658595105,52.20147186775551],[4.736742552967088,52.201436944610236],[4.736756461944153,52.20140202154365],[4.736770356272348,52.201367098394584],[4.736784250578654,52.20133217524362],[4.736798159490008,52.20129725217141],[4.736812053621395,52.20126233800408],[4.736825947862025,52.20122741484746],[4.736833646411019,52.201208078893046],[4.73683976907738,52.20119248229874],[4.736853488144966,52.20115753120946],[4.736867207190918,52.20112258011825],[4.736880926215239,52.20108762902529],[4.736886531999168,52.2010733688095],[4.736889373554731,52.20106609510471],[4.736894645086816,52.20105268691779],[4.736908378694721,52.201017735901665],[4.736922097654138,52.200982784803124],[4.736935816591923,52.20094783370271],[4.736949535376977,52.20091289158785],[4.736963254271502,52.20087794048378],[4.736976973144395,52.20084298937783],[4.736990691864565,52.20080804725747],[4.737000096109043,52.20078408282065],[4.737001052858336,52.20078167028823],[4.737004410694199,52.20077309614779],[4.737018129502201,52.20073814503635],[4.737031848288572,52.20070319392302],[4.737045566922231,52.200668251795264],[4.737059300292062,52.20063330075881],[4.737073019013529,52.20059834963994],[4.737086737582298,52.20056340750663],[4.737100456260506,52.20052845638406],[4.737114174917084,52.200493505259644],[4.737127893552032,52.200458554133405],[4.73714161203429,52.20042361199272],[4.737155330625979,52.20038866086277],[4.737169049196037,52.200353709731],[4.737182767613414,52.20031876758476],[4.737196486140214,52.2002838164493],[4.737210204645383,52.20024886531197],[4.737223937755504,52.20021391425332],[4.737237656086362,52.2001789720997],[4.73725137452663,52.20014402095684],[4.73726509294527,52.20010906981215],[4.737278811342279,52.20007411866558],[4.73729252958663,52.20003917650456],[4.737306247940382,52.200004225354355],[4.737319966272504,52.199969274202246],[4.737333684451977,52.19993433203569],[4.73734740274084,52.19989938087991],[4.737361121008075,52.199864429722275],[4.73737483925368,52.199829478562826],[4.737388571973093,52.19979453646937],[4.73740229017543,52.199759585306225],[4.737416008356135,52.19972463414122],[4.737429726384213,52.199689691961765],[4.737443444521666,52.19965474079302],[4.737453592609474,52.199628883919466],[4.737457133384713,52.1996197894615],[4.737470720103525,52.19958481958994],[4.737484321427269,52.19954984979704],[4.737497922598572,52.19951488898973],[4.737511523879403,52.19947991919318],[4.737525110512445,52.199444949314326],[4.737538711619395,52.19940998850157],[4.737552312835867,52.19937501869959],[4.737565899404587,52.199340048815316],[4.737579500447191,52.19930508799708],[4.737593101599303,52.19927011818964],[4.7376066881037,52.199235148299955],[4.737620289081952,52.19920018747625],[4.737633890169707,52.19916521766332],[4.73764747660978,52.19913024776819],[4.737661077523684,52.199095286939006],[4.737674678547083,52.19906031712067],[4.737688264922833,52.19902534722005],[4.737701865772388,52.19899038638547],[4.737715466731431,52.19895541656165],[4.737729053042858,52.19892044665558],[4.737742653828066,52.19888548581553],[4.737756254722753,52.19885051598627],[4.737769840969857,52.19881554607475],[4.73778344169072,52.19878058522926],[4.73779704252105,52.19874561539456],[4.737810628703834,52.198710645477576],[4.737824229360348,52.19867568462659],[4.737837830126326,52.19864071478645],[4.737851416244788,52.19860574486401],[4.737863466988917,52.19857475721706],[4.737864880097219,52.19857113379193],[4.737865016836957,52.19857078400762],[4.737878763537091,52.19853583294114],[4.737892495458635,52.19850089077982],[4.73790624198454,52.19846594869704],[4.737919973993676,52.198430997544556],[4.737933720476256,52.198396055458105],[4.737947452442083,52.198361104301945],[4.737960788797547,52.19832720257767],[4.737961198881337,52.1983261622118],[4.737974930672969,52.19829122003935],[4.73798867719978,52.19825626895806],[4.737998535239523,52.1982312013926],[4.737998900004086,52.19823025964662],[4.738002408948113,52.19822132678192],[4.738016155431592,52.1981863756969],[4.738029887136621,52.198151433517076],[4.7380436334459,52.19811649141578],[4.738057365238494,52.19808154024485],[4.738071111504448,52.19804659813985],[4.738084843253735,52.198011646965206],[4.738098589476365,52.1979767048565],[4.738112321051489,52.197941762665565],[4.738126067361649,52.19790681156579],[4.738139798893472,52.197871869371106],[4.738153545029453,52.19783692725503],[4.73816727664882,52.197801976069314],[4.738181022741478,52.197767033949525],[4.738194754317537,52.19773208276004],[4.738208500366872,52.19769714063654],[4.738222231768793,52.19766219843079],[4.738224920349304,52.19765535527968],[4.738234246466065,52.19763164197403],[4.738235977905636,52.19762724731623],[4.738249709264256,52.197592305106774],[4.738253567581245,52.1975824753431],[4.738258898882606,52.197568923608905],[4.738262729383139,52.19755899482275],[4.738263367734318,52.19755734451874],[4.738276836310368,52.19752236490906],[4.738290319621671,52.19748737639057],[4.738303802780879,52.1974523968577],[4.738317271423953,52.197417408255255],[4.738330754671424,52.19738241973145],[4.738344223141161,52.19734744011277],[4.738357706346079,52.19731245158539],[4.738371189398915,52.19727747204355],[4.738384657935662,52.197242483432156],[4.738398140945955,52.19720750388676],[4.738411609440174,52.19717251527178],[4.738425092407923,52.19713753572283],[4.738438575485177,52.19710254718464],[4.738452043784817,52.197067567551706],[4.738465526819524,52.19703257900994],[4.73847899507664,52.19699759937345],[4.738492478068797,52.196962610828116],[4.7385059609089,52.196927631268395],[4.738519429233,52.19689264263911],[4.73853291203056,52.19685766307578],[4.738546380312133,52.196822674442934],[4.738559863067151,52.19678769487605],[4.738573345931645,52.196752706320005],[4.738586814018669,52.196717726669156],[4.738600296840618,52.196682738109516],[4.738613764885122,52.1966477584551],[4.738620574510629,52.19663009826842],[4.738620817930908,52.196629452461515],[4.738627247664521,52.19661276989186],[4.738640730291896,52.196577790314244],[4.738654198403356,52.196542801667086],[4.738667680988186,52.19650782208588],[4.738681149057122,52.196472833435145],[4.738694631599413,52.19643785385034],[4.738708114251155,52.19640286527634],[4.73872158212557,52.196367885607664],[4.738735064734765,52.196332897030096],[4.73874853256666,52.196297917357846],[4.738762015133308,52.19626292877668],[4.738775497547961,52.19622794918117],[4.738788965446786,52.19619296051614],[4.738802447818897,52.196157980916986],[4.738814729812919,52.196126086635125],[4.738816032415728,52.19612301086574],[4.738818941235496,52.19611609700456],[4.73882001622476,52.196113586236294],[4.738830711530835,52.19608820860966],[4.738845390622911,52.1960534063515],[4.738857873232884,52.196023805135624],[4.738860244671668,52.1960186410046],[4.738863598245866,52.196011316131376],[4.73887610561398,52.195984033982896],[4.73889198115674,52.195949427039146],[4.738907841918878,52.19591482900005],[4.738922041092476,52.1958838530332],[4.738923994506138,52.19588027750171],[4.738942670424263,52.195846207238176],[4.738961331688595,52.19581213689118],[4.738979992924298,52.195778066540925],[4.738984049642704,52.19577066463169],[4.738984334968305,52.195770153875756],[4.738986318406222,52.19576652457936],[4.738988433469938,52.19576289600565],[4.738988808767559,52.195762232945704],[4.738999324926834,52.19574413469208],[4.739018977737569,52.195710267518166],[4.739038645012778,52.19567640940835],[4.739058312258011,52.19564255129501],[4.73906728343494,52.19562709604731],[4.739067598400781,52.19562655848954],[4.739077964848193,52.19560869309789],[4.739078864955138,52.19560714309531],[4.739098579657751,52.1955750469061],[4.739119223555553,52.19554140985848],[4.739139882047147,52.19550777288729],[4.739160540507465,52.19547413591222],[4.73918118431149,52.19544049885298],[4.739201842709269,52.195406861870175],[4.739222501075774,52.19537322488348],[4.739243159280389,52.19533959688035],[4.739263802959372,52.19530595980567],[4.73927082886228,52.195294520541715],[4.739285131760123,52.1952724792852],[4.739306810221598,52.19523909056082],[4.739328488781107,52.195205692844816],[4.739339978925459,52.19518798639397],[4.73935016717744,52.195172304111956],[4.739371845541208,52.195138915374876],[4.73939350937808,52.19510551756591],[4.739415187676713,52.19507212882034],[4.73943686594278,52.19503874007059],[4.739458544306848,52.19500534232918],[4.739480222507773,52.194971953570935],[4.739501886181835,52.19493855574086],[4.739523564317629,52.19490516697416],[4.739545242420854,52.194871778203215],[4.739566920622059,52.19483838044065],[4.739588598660146,52.194804991661236],[4.7396102767962,52.19477159389024],[4.739631940144355,52.194738205022176],[4.739653618084741,52.19470481623009],[4.739668204739012,52.194682345053145],[4.739675835281626,52.194671556225224],[4.739683824515843,52.194660239065286],[4.739798478537769,52.19449797622355],[4.739872209872944,52.19450486993975],[4.739971395476498,52.194516442156925],[4.739980959272222,52.19451755518503],[4.740180337925084,52.19454083070735],[4.740486662753542,52.1945801423458],[4.740827194990961,52.19463480342591],[4.741135595779251,52.194680317551615],[4.741343825154967,52.19471767897133],[4.741866761192187,52.19480761542081],[4.742238090982671,52.19487396351594],[4.743316638299182,52.1950635497168],[4.744854547517146,52.195342127780975],[4.745637544566454,52.195482330457715],[4.746138758383045,52.19557465551656],[4.746909881425836,52.19572237120514],[4.747292515524486,52.19578988815068],[4.748148837515163,52.19594114937296],[4.749723632066847,52.196224087779214],[4.750418413244506,52.19635029110867],[4.750797721969705,52.19641891120888],[4.751483041739764,52.19653719265326],[4.752492273958449,52.19672098247319],[4.752761542872905,52.196771810375715],[4.753046391399495,52.196815324136026],[4.75378142705817,52.19694371915449],[4.754472503846796,52.19707486704102],[4.754866682600165,52.19715194858523],[4.754995456233896,52.197190118577055],[4.755530914337914,52.197285957480204],[4.756278042367317,52.19742187967856],[4.756483642572543,52.19745559599759],[4.756596795076699,52.19748356018306],[4.756676442421106,52.19752462974158],[4.756711794231533,52.19755264568214],[4.756819093894643,52.197637679784485],[4.756896148904444,52.19771005887186],[4.757553350760174,52.19834178857479],[4.757951490096004,52.198728053375085],[4.758289910664044,52.199056402986045],[4.758557196181219,52.19929083376947],[4.75861397100851,52.19933088139616],[4.75881419837854,52.1995306649714],[4.759014397673131,52.19971388298843],[4.759212533352598,52.19989522015477],[4.759327743481092,52.20000405849262],[4.75944336157082,52.20008396621417],[4.759670825817514,52.20021982597417],[4.759821274371262,52.20029865110988],[4.760175482035436,52.20045280891814],[4.760843217880711,52.20074077219291],[4.761726836728716,52.201116700386244],[4.762720378129647,52.20154228724974],[4.763754877011804,52.20196934923497],[4.764750598390954,52.20238612199252],[4.765658801382832,52.20276719231141],[4.766599715826221,52.20315345183006],[4.767709621232864,52.20361358268756],[4.768235049471197,52.20383028141167],[4.768312485112791,52.20385837957501],[4.768384050959843,52.20386883028958],[4.768451649229804,52.20386791721373],[4.768478374903157,52.203858529892585],[4.768501043320026,52.203850559399335],[4.768588983770454,52.20370465826288],[4.768618310426089,52.203698637090426],[4.768663387644947,52.20369084687442],[4.768732660928634,52.20369254895603],[4.76879510191481,52.203694296107464],[4.768819782039207,52.20369526125198],[4.768847161035292,52.20369571022814],[4.768880164670366,52.20369142496949],[4.768882894624543,52.20368972254174],[4.768892486759489,52.203691094018204],[4.768914443862022,52.203676387649686],[4.768947006630063,52.203592088180386],[4.769007079872845,52.20339115061454],[4.769091047170607,52.203234092068996],[4.76922828253652,52.2029890403225],[4.769246597314596,52.20295634765687],[4.769379327306069,52.20269849109939],[4.769883463185956,52.201793754109026],[4.77000507513647,52.20157979940232],[4.770179738495399,52.201268870759286],[4.770353692007192,52.200965721820836],[4.770475285556359,52.20074853979698],[4.770515001361732,52.20067761554727],[4.770668729325613,52.20042668012424],[4.770839263997795,52.200137569960035],[4.771063219462879,52.19977415520193],[4.771363359960783,52.199276675657906],[4.771515041971588,52.199034437888486],[4.771619769165307,52.198850440590235],[4.771629697346535,52.198837998914186],[4.771650803761514,52.19881156713791],[4.771667451256048,52.19878601990876],[4.771671900892342,52.19876673669903],[4.771963430965846,52.19820537731567],[4.771968464722929,52.198198869207296],[4.771975207933136,52.19818402007446],[4.772005296430303,52.19809387355486],[4.772138828308081,52.19781172316519],[4.772164532576494,52.19774564183367],[4.772190701782917,52.19765645454737],[4.772209968342336,52.19757777432555],[4.77221535485183,52.19753826378929],[4.772206013682342,52.19735655690877],[4.772212087603696,52.197308565197666],[4.772223988726514,52.19726333621678],[4.772276937870811,52.19709894125556],[4.772294585030654,52.197035837923],[4.77233295998245,52.196925933706645],[4.772346001920659,52.196882813864946],[4.772364979452934,52.19683671392227],[4.772404917996672,52.19672688972717],[4.772570577743523,52.19626542296269],[4.772606337434931,52.196165823358506],[4.772653389951448,52.196051263427684],[4.772674212149993,52.195981642216246],[4.772815917044722,52.1956023543134],[4.772918067629946,52.19528166950099],[4.77291875572284,52.19527949796342],[4.772926410633098,52.19526530065739],[4.772947199358295,52.19522671509125],[4.773025250207414,52.194986312238484],[4.773087292872478,52.19479523359299],[4.77308793376784,52.194795425676574],[4.773088619156816,52.194795573051145],[4.773089319294469,52.19479571151434],[4.773090034428382,52.194795823091255],[4.773090749686087,52.194795925680715],[4.773091480187628,52.19479598340902],[4.773092210689173,52.19479604113734],[4.773092956434549,52.19479605400446],[4.773093702179927,52.1947960668716],[4.773094433919365,52.194796034725414],[4.773095180159896,52.19479601164275],[4.773095912518273,52.19479593455934],[4.773096630251761,52.19479585739984],[4.773097319478206,52.194795726163505],[4.773098023081956,52.19479561297815],[4.773098698054872,52.194795454703396],[4.773099490522015,52.194795261087435],[4.773100239733436,52.19479502230602],[4.773101018318407,52.19479477468929],[4.773101724521665,52.194794472767484],[4.773102445473588,52.19479416193438],[4.773103108421108,52.194793814847166],[4.77310377161619,52.19479344978504],[4.773104362305776,52.194793039405354],[4.773104938370465,52.19479262894957],[4.773105456430751,52.19479218223971],[4.773105959742357,52.19479174444123],[4.773106361174909,52.19479127016045],[4.773106762607453,52.19479079587971],[4.77310707653826,52.19479030316762],[4.773107375844175,52.194789810379454],[4.773107587524568,52.19478930814745],[4.77313383200031,52.19472624938956],[4.773134058428746,52.19472573824609],[4.773134168105836,52.19472520851921],[4.773134277906705,52.19472466980489],[4.773134285457314,52.194724121570616],[4.773134293007925,52.194723573336375],[4.773134198184505,52.19472302456969],[4.773134103361086,52.19472247580296],[4.773133876790136,52.19472193533909],[4.773133664844053,52.19472139495126],[4.773133364901248,52.19472087208194],[4.773133035708728,52.1947203490605],[4.773132632896788,52.19471986160849],[4.773132215336215,52.194719383067856],[4.773131724280009,52.19471893110921],[4.773131218475169,52.194718488061966],[4.773130653551994,52.194718089647694],[4.773130088628827,52.194717691233386],[4.773129435337607,52.19471733729995],[4.773128782170176,52.194716974379034],[4.773128055135766,52.194716665002424],[4.773127313600292,52.19471634656235],[4.773126542072417,52.19471608189479],[4.773125741171047,52.19471582606254],[4.773124895652416,52.19471562392674],[4.773124050133793,52.19471542179099],[4.773123174375198,52.1947152914026],[4.773122298616608,52.19471516101425],[4.773121392741823,52.194715093385845],[4.773120515992976,52.19471503489704],[4.773119623876571,52.19471503025684],[4.773118760886103,52.19471503475623],[4.773117911777788,52.19471509325636],[4.773110386306601,52.194715656315495],[4.773177296455813,52.19453960405767],[4.773177884047073,52.19453941836376],[4.773178295769394,52.194539258719445],[4.773178913352874,52.194539019252936],[4.773179516806627,52.194538743760575],[4.773180105635571,52.19453846819217],[4.773180651208957,52.194538147458346],[4.773181196658564,52.19453783571197],[4.773181698852611,52.194537478800186],[4.773182201046652,52.19453712188838],[4.773182630487991,52.1945367376339],[4.773183059805551,52.19453636236693],[4.773183445743785,52.19453595092195],[4.773183802432409,52.19453553932484],[4.773184086244565,52.194535109372524],[4.773184399182547,52.194534688559806],[4.773184609994461,52.19453424923973],[4.773184820682603,52.19453381890713],[4.77318497311908,52.19453337029539],[4.773190942789348,52.19451514652994],[4.773191064985964,52.194514769665645],[4.773191128683408,52.19451439249708],[4.773191207129411,52.19451400641718],[4.773191212451447,52.19451361995694],[4.773191232522043,52.19451322458533],[4.773191193845933,52.19451284688437],[4.773191155417359,52.19451245120852],[4.773191073114407,52.19451205530449],[4.773190976062898,52.19451166831184],[4.773190834889472,52.19451129906589],[4.773190679338795,52.19451091176903],[4.773190479666209,52.19451054221887],[4.773190279993625,52.194510172668686],[4.773190036199132,52.194509820865235],[4.773189792528412,52.19450946007429],[4.773189489987223,52.19450912594151],[4.773197940483056,52.19448811978157],[4.773203776061746,52.19448388078734],[4.773228521828009,52.19446590746385],[4.773254484833948,52.194383963234024],[4.773255125352863,52.194384182279066],[4.773255795492553,52.19438437451386],[4.773256480256998,52.19438456682466],[4.773257195013477,52.19438470536293],[4.773257924147206,52.1943848619521],[4.773258668771967,52.19438495570525],[4.77325941327298,52.19438505844575],[4.773260158516519,52.19438510726161],[4.773260918261055,52.194385165140964],[4.773261678748115,52.19438516909562],[4.773262439235179,52.194385173050264],[4.773263200464759,52.194385123080245],[4.773263946945836,52.194385082021626],[4.773264694045674,52.19438499602574],[4.773265411896009,52.19438490987771],[4.773266115864105,52.19438476972901],[4.773267010325219,52.19438460360658],[4.773267832528835,52.19438437419176],[4.773268684229452,52.1943841269542],[4.773269492798318,52.19438382556369],[4.773270316239428,52.19438350627442],[4.773271052674533,52.19438313260411],[4.773271803734374,52.19438275900989],[4.773272467911961,52.19438232204721],[4.773273146714287,52.19438188516055],[4.773273694636357,52.194381393664806],[4.773274257059413,52.194380911232514],[4.773274717604212,52.1943803923181],[4.773275148899502,52.1943798732516],[4.773275478069039,52.194379335677844],[4.773275807114816,52.19437880709152],[4.773276019533847,52.19437825093447],[4.773300439272109,52.19431490401717],[4.77330063669456,52.19431437474635],[4.773300746492384,52.19431383603182],[4.773300841789225,52.19431328825381],[4.77330083471297,52.19431273994344],[4.773300827760458,52.19431218264567],[4.773300703810133,52.19431162473948],[4.773300579859809,52.19431106683332],[4.773300353412655,52.19431051738228],[4.773300097716053,52.19430996777914],[4.773299753899864,52.19430944468205],[4.773299409959934,52.19430893057242],[4.773298963399442,52.194308433905384],[4.773298516591465,52.19430795521323],[4.773297996288632,52.19430750310317],[4.773297461113592,52.194307068891966],[4.773296866820926,52.19430667931379],[4.773296272528276,52.19430628973565],[4.773295589992294,52.194305935650966],[4.773294892707853,52.194305590477725],[4.773294136429535,52.194305280950054],[4.773293365402758,52.19430498033378],[4.773292549759332,52.19430473341404],[4.773291719491191,52.19430448641826],[4.773290844358905,52.19430431109391],[4.773289969226628,52.194304135769585],[4.773289063978672,52.19430402320524],[4.773288173355446,52.19430391071694],[4.773287252492788,52.19430386997616],[4.773286360879584,52.19430382938743],[4.773285453775416,52.19430385163479],[4.773284575796948,52.19430388302168],[4.773283638329588,52.194303986003966],[4.773315829194517,52.194229660092645],[4.773788710584527,52.19429650867844],[4.773818241508382,52.19427832640376],[4.773766483708313,52.19424517006271],[4.773740803394135,52.19425455501572],[4.773714256135824,52.19424828719213],[4.773369256081164,52.19419785938811],[4.773328373754789,52.194164112254406],[4.773311731359369,52.194152305248075],[4.7733245320427,52.19410745831561],[4.773523823106363,52.19357817901103],[4.773528185306911,52.19356940234361],[4.773543632670521,52.1935351930664],[4.773547759948126,52.19352435690404],[4.773559725684063,52.193499764762464],[4.773576814464893,52.19348549960069],[4.773591078232506,52.193479902250594],[4.773651106174655,52.19346360423332],[4.774227664745816,52.19353118759336],[4.774228827368972,52.19353066333233],[4.774238257335926,52.19348197885998],[4.774020652823153,52.19345691357553],[4.774021311584927,52.19345474187879],[4.773887288430879,52.1934395029795],[4.773877216050403,52.19343279047745],[4.773883794075301,52.193414965311476],[4.773632288417754,52.19338032164373],[4.773625246681966,52.19337763355964],[4.773620985689448,52.19337480712968],[4.773620807909266,52.19337284680161],[4.773637454428371,52.193316317322314],[4.773638081979116,52.19331428927485],[4.773638640921861,52.19331405848934],[4.773639141738015,52.19331380043743],[4.773639671802969,52.19331354253753],[4.773640129240604,52.19331324830781],[4.773640630427765,52.19331296329352],[4.773641058987606,52.19331264194944],[4.773641502048173,52.19331232966883],[4.77364188698215,52.19331199012184],[4.773642286664196,52.193311641663406],[4.773642613347909,52.19331128383749],[4.773642954656016,52.19331092608755],[4.773643237837539,52.19331054107127],[4.773643506270985,52.19331016496646],[4.773643730954901,52.193309779646206],[4.773643955638811,52.193309394325894],[4.773644107324398,52.19330899963813],[4.773663017265748,52.19326228792668],[4.773714553314851,52.19322537200266],[4.773728969894362,52.19321503870537],[4.773831566725204,52.19299924637358],[4.773859911903248,52.19293961383132],[4.773884381316082,52.1928831698965],[4.773884562864706,52.19288273042308],[4.773884686039911,52.19288228165834],[4.773884794467232,52.192881841805054],[4.77388484464476,52.19288138367299],[4.773884909570168,52.192880916629484],[4.773884857377881,52.192880457965586],[4.773884819933476,52.19287999039022],[4.773884709244156,52.19287953142246],[4.773884598554837,52.19287907245467],[4.773884414620609,52.192878622094476],[4.773884245187017,52.19287818079774],[4.773883973383623,52.19287773896918],[4.77388371595725,52.19287731519147],[4.773883399910225,52.192876900097325],[4.773883069115324,52.19287649391465],[4.773882679452534,52.192876114390465],[4.773882289789748,52.19287573486626],[4.773881841382694,52.19287537301306],[4.773881378475015,52.19287500209643],[4.773880885700713,52.192874675965086],[4.773880363801524,52.19287434069435],[4.773879782910824,52.192874041069544],[4.773879216768013,52.19287373253322],[4.773878591386441,52.19287347761775],[4.773877966252124,52.19287320472731],[4.7738772965033,52.19287298553369],[4.77387665612662,52.19287275750458],[4.773875956511176,52.192872583096246],[4.773875271519993,52.19287240876388],[4.773874556909429,52.192872261241966],[4.77387385667588,52.19287213177087],[4.77387314119995,52.192872047161046],[4.77386521308603,52.192871071211705],[4.773955624863679,52.19268830063082],[4.773980904164391,52.19266865813469],[4.774007453742583,52.192638533126306],[4.774047111946002,52.19259106625782],[4.774050606463837,52.192586877979494],[4.774081227678421,52.19254781297198],[4.774099093841838,52.19252377272593],[4.774123864897299,52.192477262148884],[4.774269474071716,52.192239932603826],[4.774273359748484,52.192223243911414],[4.774273484523972,52.192222678309335],[4.77427350705469,52.1922221031883],[4.774273515084904,52.19222151900391],[4.774273406122775,52.19222093421214],[4.774273297284187,52.192220340432904],[4.774273056582133,52.19221976394524],[4.774272816127168,52.192219169482655],[4.774272443561657,52.19221861028658],[4.774272085620199,52.19221805116641],[4.774271595568201,52.19221752731274],[4.77427110539267,52.19221701244653],[4.774270526978733,52.192216533074536],[4.774269948441264,52.19221606269002],[4.774269266670716,52.19221565468621],[4.774268614148265,52.1922152468342],[4.77426788776436,52.19221489252731],[4.774259155793104,52.1922106946929],[4.774247648669971,52.19220517018761],[4.774263598257641,52.192175843954175],[4.774268859451326,52.1921676112113],[4.774353325830831,52.19203092735658],[4.774357960602907,52.19202464177419],[4.774395886260936,52.19195738299822],[4.774416401051449,52.19193320365384],[4.774430972751685,52.1919264393491],[4.774443675226369,52.19192053718571],[4.77454332680147,52.19174193963259],[4.774562122074162,52.191711971994565],[4.774578155439658,52.191682906806946],[4.774695171672374,52.191470864649865],[4.774705402955772,52.191472373803265],[4.774707708948279,52.19147271832663],[4.774708964125964,52.19147290460055],[4.774710250403022,52.19147295621441],[4.774711609922528,52.19147299922017],[4.774712942169645,52.191472898274895],[4.774714347659205,52.19147278872148],[4.774715696875658,52.191472517090396],[4.774717060839345,52.19147223654774],[4.774718309911264,52.191471802611375],[4.774719558859711,52.191471377662474],[4.774720663668781,52.191470799168115],[4.774721724482978,52.19147022943364],[4.774722611292958,52.191469550939246],[4.774723453861171,52.191468899179604],[4.774724063683082,52.19146815633153],[4.77472467288773,52.19146745842074],[4.774725063476094,52.19146670544715],[4.774741468669178,52.191435044606536],[4.774766449878969,52.191395500753906],[4.774796821194528,52.19134577438123],[4.774934364802377,52.19109992638195],[4.774995546842706,52.191003558735055],[4.775079610570247,52.19085646404649],[4.775232386169157,52.19057785216704],[4.775271295259506,52.190516539331085],[4.775343182792807,52.190388058596234],[4.775352113493431,52.190366030119336],[4.775358333405833,52.19035504295026],[4.775379894481312,52.190321665048685],[4.775380555371511,52.19032146174758],[4.775381158014635,52.19032124016841],[4.775381775527801,52.190321000690105],[4.775382364287359,52.19032072511039],[4.775382967793645,52.190320440619054],[4.775383498429433,52.19032013777379],[4.775384043811949,52.19031982601693],[4.77538453119401,52.19031947800702],[4.775385018576063,52.19031912999716],[4.775385447834354,52.19031875472176],[4.775385877092638,52.190318379446374],[4.775386233357117,52.1903179948046],[4.775386604368323,52.19031760125117],[4.775386902632344,52.19031718035641],[4.775387200649741,52.19031677743659],[4.775387411173226,52.190316356087116],[4.775407109686386,52.19027909465846],[4.775407379689588,52.19027860171245],[4.77540753282882,52.19027809917268],[4.775407700714766,52.190277587721276],[4.77540776648346,52.190277057764476],[4.775407846875559,52.19027652788342],[4.775407810280396,52.19027599739609],[4.775407773808539,52.190275457921345],[4.775407649349623,52.1902749359668],[4.775407510390611,52.19027440494903],[4.775407268944446,52.19027388238822],[4.775407041998385,52.19027336889062],[4.775406712318564,52.19027288182495],[4.775406382638749,52.19027239475926],[4.775405964848582,52.19027193420123],[4.775405546935118,52.19027148263067],[4.775405070034808,52.19027106670679],[4.775404896650149,52.19027091301063],[4.775404636141583,52.19027071392247],[4.775493109841596,52.190131362558844],[4.775651794898447,52.18986508544392],[4.775652265308313,52.18986490811887],[4.775652706718138,52.18986471266736],[4.775653148251215,52.18986450822841],[4.775653575284267,52.18986429472623],[4.775654002440571,52.1898640722366],[4.775654400596834,52.18986383162055],[4.775654798753094,52.18986359100454],[4.775655167909313,52.18986333226207],[4.775655522442254,52.18986307344385],[4.775655862598427,52.18986279657493],[4.77565620263134,52.1898625286935],[4.775656484540923,52.18986223354667],[4.775656795697046,52.18986193855137],[4.775657048360077,52.189861643253046],[4.775657301146356,52.189861338967276],[4.77565752468609,52.18986103453],[4.775693250504855,52.18981101208668],[4.77569915475466,52.18979530451342],[4.775704486673629,52.18978400713059],[4.775717709579094,52.18975502609481],[4.775726594529759,52.18973844413775],[4.775749583710677,52.189704327552214],[4.775775011604765,52.189676865796244],[4.775810366440142,52.189642148123916],[4.775893611214248,52.18954160693905],[4.775969212311826,52.189450292846914],[4.776047231638694,52.1893415003887],[4.776138617862169,52.18920596557559],[4.776222760681966,52.18909313308813],[4.776307454078276,52.18897103666087],[4.776346653382239,52.18890861044129],[4.776381189060426,52.18886208698661],[4.776422543855155,52.188810969932725],[4.776490330499367,52.18871666697643],[4.776516841737349,52.18867516226753],[4.77657711067756,52.18856488447367],[4.776611344646778,52.18848802456009],[4.776687270257335,52.18835247226355],[4.776750942641782,52.18823280144048],[4.776796983402248,52.18813627364872],[4.776830589499903,52.18805822399285],[4.776904580118296,52.187910087196755],[4.77695041763906,52.1878294312735],[4.777023861261542,52.18771907753891],[4.777069380316524,52.18765632421488],[4.777126215180125,52.187570251308415],[4.777215963186885,52.18742782229399],[4.777269776123632,52.18734881632406],[4.77731164914918,52.18729063698552],[4.777321681416763,52.18727669434572],[4.777335288439213,52.18726012767196],[4.777435028725136,52.187138665417166],[4.777577200937722,52.18697367713227],[4.777875593514912,52.18665452232638],[4.777999891140185,52.18650679728572],[4.778068515929948,52.18641165285374],[4.778136101024377,52.186341220292185],[4.778182163595365,52.186298413932974],[4.778246058571177,52.18622297387483],[4.778306761688785,52.18615531000085],[4.778501186116688,52.185905985119376],[4.778568594207992,52.18582698573658],[4.778586715263479,52.18580853671419],[4.778687621823805,52.18566433951225],[4.778784354138308,52.18553773738602],[4.778827482591293,52.185484804037934],[4.778880027792436,52.18540937704443],[4.77895874142229,52.18531618056917],[4.778975828965121,52.185293070324974],[4.779012790356429,52.1852430442417],[4.779085491113987,52.18514465753154],[4.779111390235065,52.18512411831717],[4.779144953496298,52.1850819932043],[4.779208940375786,52.185001708507734],[4.779210107415251,52.18500191225682],[4.779211305413389,52.18500199033195],[4.77921254690903,52.18500209559542],[4.779213819853411,52.185002039234995],[4.779215136540329,52.185001992087955],[4.779216396578286,52.18500180982769],[4.779217700603814,52.185001618805785],[4.779218904237829,52.185001283457204],[4.779220107871825,52.185000948108595],[4.779221225368425,52.185000495471044],[4.779222298877428,52.18500005159502],[4.77922322800732,52.18499947215384],[4.779224127403745,52.18499892851194],[4.779224867064269,52.18499830315438],[4.779225577236366,52.184997695621156],[4.779226098061641,52.18499703318412],[4.779312752974841,52.18488862456363],[4.7793129076918,52.184877273388224],[4.779313056161193,52.1848663805738],[4.779511856472926,52.1846105871366],[4.779556434267967,52.18455525216982],[4.779556880383597,52.18455470619206],[4.779557195395146,52.18455412358701],[4.779557510529135,52.18455353199447],[4.779557709058142,52.184552912837404],[4.779557893210503,52.18455227563014],[4.77955794589145,52.18455162875797],[4.779557983950855,52.184550981810546],[4.779557875794867,52.18455033411048],[4.779557767516432,52.18454969539791],[4.779557498401074,52.18454905585735],[4.779557243662362,52.184548434367045],[4.779556856962465,52.18454783916175],[4.77955645539614,52.18454726185608],[4.779555936367726,52.184546719898215],[4.779555446459947,52.18454618707837],[4.779554824223647,52.18454570750588],[4.77976602963045,52.184312942093776],[4.779788426349034,52.18428860970486],[4.779891889677709,52.18417302475887],[4.779892520356691,52.184172884193984],[4.779893107660943,52.18417270745351],[4.779893709586606,52.18417253078825],[4.779894297380368,52.1841723180979],[4.779894885174123,52.184172105407505],[4.779895429470765,52.18417186552905],[4.779895988511194,52.18417161673834],[4.779896489433095,52.1841713406843],[4.779897004976402,52.18417106470549],[4.779897477144977,52.184170752551104],[4.779897934447369,52.18417045829645],[4.779898362996439,52.184170127941464],[4.779898762180296,52.18416980642351],[4.779899147109869,52.184169457867895],[4.779899488175189,52.18416910908657],[4.779899800120052,52.1841687511674],[4.779923145194477,52.18414134071281],[4.779923442272801,52.184141000693266],[4.779923681110247,52.184140642397885],[4.779923919947691,52.184140284102526],[4.779924115043285,52.184139916594035],[4.77992431026125,52.18413954009804],[4.779924446993591,52.18413916330118],[4.779924583848302,52.184138777516814],[4.779924676961173,52.18413838251938],[4.779924755452635,52.18413798744664],[4.779924789957507,52.18413760113576],[4.779924809963348,52.18413720576218],[4.779924786104975,52.18413681016297],[4.779924762124229,52.1841364235512],[4.779924679535493,52.18413604562601],[4.779924611690536,52.18413565878861],[4.779924470616188,52.18413528056253],[4.779925656359419,52.18413410922125],[4.77993705482884,52.18412603362808],[4.779944893801752,52.18412271240472],[4.77995618226557,52.18411627207841],[4.779963009552426,52.184106707906516],[4.779967338773716,52.18410341356724],[4.77997637204677,52.184098291876936],[4.779988046468831,52.184090352519924],[4.779993495966798,52.18408639882284],[4.780008485950693,52.184075510445105],[4.780015391710319,52.18407199566668],[4.780029000852227,52.18406694245012],[4.780037514227657,52.184065638024464],[4.780038276252396,52.18406551611053],[4.78003900952377,52.18406535809631],[4.780039728296106,52.18406519101946],[4.780040447802536,52.18406497001775],[4.780041167186612,52.184064758003494],[4.780041843440634,52.18406449183877],[4.780042519694648,52.18406422567405],[4.78004313807488,52.18406391427115],[4.780043771076484,52.18406360294345],[4.780044331460569,52.184063255289836],[4.780044891966996,52.184062898648726],[4.780045394232593,52.184062523731825],[4.780045896620528,52.184062139827475],[4.78004631164722,52.184061728509455],[4.780046726551555,52.18406132617894],[4.780047068716031,52.18406089650998],[4.780095320754863,52.18400087945972],[4.780105279069812,52.1840040675237],[4.780106458261952,52.18400445108862],[4.780107727261995,52.18400468231768],[4.780109083623215,52.18400494096026],[4.780110500794275,52.18400502914171],[4.780111961707091,52.18400512653612],[4.780113425066614,52.184005044181106],[4.780114932412552,52.18400495306421],[4.780116369220699,52.18400467283438],[4.780117791285133,52.18400440151676],[4.780119113324364,52.18400395891079],[4.780120406120845,52.18400351615439],[4.780121525418304,52.18400292869605],[4.780122600484651,52.18400236797457],[4.780123487185945,52.184001680450876],[4.780124314790105,52.1840010375638],[4.780124938796193,52.18400031273669],[4.780151041381257,52.18397011213058],[4.780151412909052,52.18396967362418],[4.78015172631842,52.183969207854624],[4.780152025106433,52.18396874200985],[4.780152236533322,52.183968248751555],[4.780152462581557,52.1839677555684],[4.780152586524995,52.18396724388394],[4.780152710468429,52.18396673219952],[4.780152746683767,52.18396622006396],[4.780152783021429,52.18396569894087],[4.780152716887326,52.18396518627892],[4.780152650753221,52.183964673617005],[4.780152467526006,52.18396416934102],[4.780152313419161,52.18396367420288],[4.780152071461906,52.183963187601066],[4.78015182938233,52.183962709986695],[4.78015149920769,52.183962258883604],[4.780224947126407,52.18388276829965],[4.780319386332208,52.18377900985888],[4.78033126361862,52.18376582245912],[4.780336507416485,52.183768384062944],[4.780337132096183,52.183768683881866],[4.780337801251185,52.18376893898892],[4.780338470161621,52.18376921207089],[4.780339183791938,52.18376942246609],[4.780339926420253,52.18376965098656],[4.780340684525884,52.18376981666983],[4.780341457252804,52.18376998242833],[4.78034225983374,52.183770103399745],[4.780343047793396,52.18377022429601],[4.780343865851642,52.18377028243029],[4.780344683909888,52.18377034056453],[4.780345488080578,52.18377034469882],[4.780346292251265,52.18377034883305],[4.780347097155678,52.183770299042436],[4.780347872695229,52.18377025808896],[4.780348649090789,52.18377015422319],[4.780349410865059,52.18377005028223],[4.780350173250758,52.18376990140388],[4.780350935636452,52.183769752525535],[4.780351669635574,52.18376954058454],[4.780352418133689,52.1837693377062],[4.780353123501656,52.183769080677486],[4.780353814248333,52.18376882357361],[4.780354461864859,52.18376851231936],[4.780355123980375,52.18376821012776],[4.780355713600891,52.18376786262297],[4.780356303099107,52.18376752410563],[4.780356834845891,52.18376713136278],[4.780357351849096,52.18376674753227],[4.780357796112727,52.18376633636344],[4.780358240254064,52.18376593418215],[4.780358597034548,52.18376550458738],[4.780382047754769,52.183737815953805],[4.780382404290236,52.18373740433396],[4.78038267334261,52.18373697428814],[4.780382957138533,52.183736535330034],[4.780383153451364,52.18373607794599],[4.780383379006741,52.18373562071227],[4.780383502457754,52.183735144977454],[4.780383625908764,52.183734669242625],[4.780383676253408,52.18373419313202],[4.780383712099051,52.183733707958766],[4.780383674593773,52.18373324038465],[4.780383637210774,52.18373276382303],[4.780383526599133,52.18373229587307],[4.780383415987491,52.183731827923125],[4.780383202904666,52.18373136843452],[4.780383004320838,52.18373091800854],[4.780382747007366,52.183730485256845],[4.780382489816176,52.183730043517656],[4.780382144408243,52.183729637277416],[4.780381799244873,52.1837292130622],[4.780381380608314,52.18372881543363],[4.78038096209404,52.183728408817544],[4.780380469862017,52.183728046763015],[4.780379992495834,52.183727666808714],[4.78037944153418,52.18372732242849],[4.780378890450256,52.183726987035705],[4.780378295135684,52.18372667837986],[4.780377684955288,52.183726387623814],[4.780377030544244,52.18372612360468],[4.780376376010925,52.183725868573],[4.780375691745951,52.18372564934093],[4.780375036601241,52.18372543924661],[4.780374322360049,52.18372527378903],[4.780368346348385,52.183723867887885],[4.780428036095714,52.18365496633756],[4.780507529627018,52.18356201551124],[4.780538402827432,52.18352397474839],[4.780538883126735,52.1835241390027],[4.780539407656402,52.18352427652],[4.780539932186069,52.183524414037294],[4.780540442461279,52.18352452451703],[4.780540981856653,52.1835246441345],[4.780541536239975,52.183524736864705],[4.780542076002098,52.183524829519776],[4.78054264549562,52.183524886375224],[4.780543185624484,52.18352495206786],[4.780543769983706,52.1835249910235],[4.78054432510052,52.18352502982884],[4.780544895327526,52.183525032759455],[4.780545450811077,52.183525044602355],[4.780546021282573,52.18352502955802],[4.780546577132866,52.183525014438516],[4.780547133349897,52.18352497235657],[4.78054795299311,52.18352491365225],[4.780548758870835,52.183524791960465],[4.780549579369762,52.183524670343836],[4.780550385980949,52.18352449472719],[4.780551178093171,52.183524310047936],[4.780551956317652,52.183524071368666],[4.780552719920919,52.18352383261428],[4.780553440394032,52.183523539709576],[4.78055414624593,52.18352324672974],[4.780554808967672,52.183522899599645],[4.780555471567159,52.183522561456996],[4.780556061671835,52.18352217800126],[4.780556622534092,52.183521794395254],[4.780557125400499,52.18352137453879],[4.780557613523448,52.18352096359467],[4.7805580289071,52.183520525312396],[4.780585153864265,52.183491444388736],[4.780585554503939,52.18349101501869],[4.780585867783155,52.18349055823538],[4.780586210426991,52.183490092614875],[4.78058645096694,52.18348960849346],[4.78058669162912,52.18348911538459],[4.780586830065181,52.183488612762275],[4.780586983122427,52.183488110215045],[4.78058704869699,52.18348758924211],[4.780587114149315,52.1834870772566],[4.780587077253286,52.18348656474516],[4.780587025736069,52.18348605215852],[4.780586886491696,52.1834855391211],[4.780586761624043,52.18348504413377],[4.780586548907003,52.18348455768307],[4.780586321446539,52.183484080144666],[4.780586020635641,52.183483620205585],[4.780585719824755,52.183483160266476],[4.78058533092001,52.183482726838974],[4.780584942259748,52.183482275436496],[4.780584465383395,52.18348185953312],[4.780584003250479,52.18348143471738],[4.780583452779234,52.18348105438819],[4.780582902430238,52.183480665071514],[4.780582278486342,52.18348031132904],[4.780581654297979,52.18347997556151],[4.780580971258149,52.183479666455845],[4.780580288096087,52.18347936633765],[4.780579574958218,52.18347911999407],[4.78057886182036,52.18347887365042],[4.780578089464311,52.18347868093108],[4.780577346350645,52.183478488362006],[4.78057657326117,52.183478349567515],[4.780574006043747,52.183477886969214],[4.780579018463309,52.183471657008916],[4.780586918758905,52.183463815042565],[4.780594112665048,52.18345738057778],[4.780598574514375,52.18345292743162],[4.780602608267888,52.183449847265145],[4.780605034377579,52.18344778348077],[4.780610569635769,52.18344396501745],[4.780616483256776,52.183439204747366],[4.780672843304155,52.18333983426949],[4.780673068243441,52.183339421972555],[4.78067324944151,52.18333900046274],[4.780673416140652,52.18333856989035],[4.780673509856287,52.18333812995486],[4.780673618193068,52.18333769009448],[4.780673638925199,52.18333724079583],[4.780673674278476,52.18333679157238],[4.780673636403812,52.18333635096071],[4.780673584030224,52.18333590128644],[4.780673473049849,52.18333546029918],[4.780673362191691,52.18333501032442],[4.780673163362239,52.18333457787384],[4.780672979031714,52.18333415448587],[4.780672736094401,52.18333373978485],[4.780672493034873,52.1833333340713],[4.780672176747416,52.18333293696961],[4.780671874958886,52.183332548930494],[4.780671499820212,52.183332178490716],[4.780671124681541,52.18333180805095],[4.780670705435012,52.18333145536072],[4.780670257068427,52.18333109353274],[4.780669764227318,52.18333077641682],[4.780669271630659,52.1833304413259],[4.780668719938337,52.1833301508718],[4.780668182989385,52.183329851505405],[4.780667586944769,52.18332959677587],[4.780667005643524,52.18332933313397],[4.780666365246613,52.183329114128924],[4.780665754214211,52.18332888628666],[4.780665098707288,52.1833287031564],[4.780664457699288,52.18332852908877],[4.780663787082345,52.183328381833235],[4.780668464743639,52.18331988514701],[4.780668861469905,52.183319743375876],[4.780669258562827,52.18331957464229],[4.780669641034609,52.18331940583361],[4.780670023506388,52.18331923702489],[4.780670391601466,52.18331905016612],[4.780670745197623,52.1833188542447],[4.780671113292697,52.183318667385926],[4.780671437891011,52.18331845333932],[4.780671776988243,52.183318248355334],[4.780672087209855,52.18331801625869],[4.780672382565887,52.18331780206183],[4.780672678166355,52.18331756989002],[4.780672959267904,52.18331732865565],[4.780673225626091,52.18331709633359],[4.780673492228718,52.18331684603656],[4.780673714967927,52.1833165955142],[4.780705832595856,52.18328164402053],[4.780706159271356,52.18328127718675],[4.780706456949028,52.18328089222782],[4.780706725384441,52.1832805071186],[4.780706950323113,52.18328009482158],[4.780707175017354,52.183279700499554],[4.780707341593733,52.183279278914576],[4.780707493548982,52.18327885725446],[4.780707587141942,52.1832784263064],[4.780707680734897,52.18327799535832],[4.780707701100019,52.18327757302211],[4.780707736208476,52.18327714177357],[4.780707698211313,52.18327671014939],[4.780707660214149,52.18327627852522],[4.780707548989155,52.18327585551289],[4.780707452140862,52.18327545055067],[4.780707282309161,52.18327503622536],[4.780806242806851,52.18316657288067],[4.780820825222059,52.18314583134521],[4.780831202979694,52.18313429000262],[4.78092436053739,52.183018102932515],[4.780938120128716,52.18300195007692],[4.780957400497218,52.18297873396051],[4.780980714565676,52.18295135908876],[4.781007011625428,52.18291429237996],[4.781024017688964,52.18289272737199],[4.781069234071973,52.18283855457483],[4.781069456928702,52.1828382950642],[4.781069636166761,52.18283801735339],[4.781069844524638,52.18283774878016],[4.781070009263848,52.18283746200677],[4.781070159382076,52.182837175158326],[4.781070294757184,52.18283689722227],[4.781070430376564,52.18283660131124],[4.781070522010865,52.1828363141625],[4.781070628388281,52.18283601810132],[4.781070705523735,52.18283572188998],[4.78107076803821,52.1828354256036],[4.781070801310721,52.18283512916702],[4.78107084932635,52.182834823818055],[4.781070853356903,52.18283452723134],[4.781070842766475,52.18283423056954],[4.781070817555066,52.182833933832676],[4.781100574998688,52.18279722641951],[4.781179323424436,52.182709394530434],[4.781179983198435,52.18270926309617],[4.781180614096895,52.18270910454936],[4.781181274237227,52.18270894615269],[4.78118187662649,52.18270873353086],[4.781182508013395,52.18270853903413],[4.781183096270169,52.18270829038736],[4.78118368440482,52.18270805072802],[4.781184229165108,52.182707774893636],[4.781184788424213,52.18270750812175],[4.781185275189189,52.182707196037164],[4.781185791073922,52.18270689309019],[4.781186248963352,52.182706553893006],[4.781186691987609,52.18270623259579],[4.781187077016564,52.18270587504837],[4.781187476666449,52.182705517575975],[4.781187803333752,52.18270515074086],[4.781216501410419,52.18267321953063],[4.781263119600461,52.18261915272439],[4.781316162926823,52.182557092502684],[4.781396166420263,52.18246506946595],[4.781396657792157,52.182465494428634],[4.78139723725543,52.18246589287912],[4.781397831217501,52.18246630039213],[4.781398484395448,52.18246665428042],[4.781399152194266,52.182467008243705],[4.781399893585677,52.18246732663233],[4.781400635221239,52.18246762704593],[4.781401435950602,52.18246788282231],[4.781402236679974,52.18246813859872],[4.781403082126427,52.18246833168787],[4.781403913074095,52.18246851571448],[4.781404774117975,52.182468636978804],[4.781405635161862,52.18246875824317],[4.781406511559025,52.18246882565767],[4.781407358836541,52.18246888393463],[4.781408221589399,52.1824688793743],[4.781409142825702,52.182468875114026],[4.781410050295619,52.18246880786642],[4.781410987251394,52.182468722793935],[4.781411895819916,52.182468574659026],[4.781412819131362,52.182468417611666],[4.78141371417762,52.182468188514406],[4.781414609101803,52.182467968404644],[4.781415446641138,52.18246766710739],[4.781416284058393,52.182467374797604],[4.78141704946994,52.1824670012254],[4.781417800138545,52.18246663656561],[4.781418478313173,52.18246622659323],[4.781419156487788,52.18246581662086],[4.781419733048766,52.1824653521984],[4.781420280123886,52.18246490560079],[4.781420740084166,52.182464413615634],[4.781468374231541,52.182414099981145],[4.78146886379862,52.182413581183376],[4.781469236765115,52.18241303482297],[4.781469609853656,52.1824124794751],[4.781469881084516,52.1824118876521],[4.781470123195739,52.182411286691526],[4.781470248584332,52.18241066715584],[4.78147037409498,52.182410038632646],[4.781470353397206,52.18240940935916],[4.78147033257738,52.18240878907312],[4.781470180169983,52.1824081681119],[4.781470027640538,52.182407556138116],[4.781469728780628,52.182406952401564],[4.781469444297461,52.18240636671494],[4.781469027738508,52.182405816303024],[4.781468625678355,52.18240527495354],[4.781468106041205,52.18240477794128],[4.781467817286099,52.18240450681642],[4.781467412662782,52.18240415420399],[4.781466949434059,52.18240381027892],[4.781466485961231,52.18240348432883],[4.781475917462944,52.18239484123096],[4.781487081247528,52.18238784285639],[4.781497141143171,52.18238137810254],[4.781505507119424,52.182373673285646],[4.781512017983434,52.182359370669026],[4.781516784497746,52.182348618390535],[4.781524641518927,52.18233639893263],[4.781535070138982,52.18232216135767],[4.781541386839789,52.18231031149546],[4.781546376681139,52.182299263754224],[4.781560637975218,52.182269819994154],[4.781567207064348,52.18224907320255],[4.781567604876545,52.18224885054108],[4.78156798843406,52.18224860084209],[4.781568371869532,52.182248360130586],[4.781568726429529,52.182248092306644],[4.781569066124662,52.18224784238263],[4.781569377066356,52.18224755635867],[4.781569702384764,52.18224728838469],[4.781569969586119,52.182246993148226],[4.781580766061422,52.18223581341187],[4.781581151693308,52.18223541092569],[4.781581464709396,52.182234972114586],[4.781581792346262,52.1822345333785],[4.781582047123267,52.18223407629237],[4.781582287279482,52.18223361913124],[4.781582454575836,52.18223314362006],[4.781582636492974,52.18223266818389],[4.781582716186653,52.182232183235165],[4.781582810623146,52.18223168937398],[4.781582802592123,52.18223120397515],[4.781582794561098,52.182230718576335],[4.781582713426159,52.182230232802446],[4.781582632291223,52.18222974702856],[4.781582448566743,52.182229278704504],[4.781582279341017,52.18222881944297],[4.78158203688935,52.18222836879384],[4.781581951605311,52.182228188594216],[4.781581794071591,52.182227945107144],[4.781611252991098,52.1821991635404],[4.781635737165123,52.18217600996238],[4.781636151671461,52.18217563458851],[4.781636478819266,52.18217523180219],[4.781636835330615,52.18217482017833],[4.781637104483432,52.18217438114206],[4.781637373514225,52.18217395109324],[4.781637569685232,52.18217350269442],[4.781637780599022,52.182173045383145],[4.781637903910242,52.18217257863436],[4.78163802722146,52.182172111885556],[4.781638077428856,52.18217164476173],[4.781638127758271,52.1821711686504],[4.781638090241086,52.18217070107654],[4.781638052601877,52.18217024249014],[4.781637941736831,52.18216979251616],[4.781637830993809,52.18216933355473],[4.781637604382877,52.18216879310593],[4.781650658785614,52.18215607899284],[4.781662681510617,52.18214611893377],[4.781675508005581,52.182136189961014],[4.781692146891801,52.18211793059484],[4.781700996610963,52.18210366692949],[4.781708417336211,52.18209234403149],[4.781716029917526,52.182083044440546],[4.781721433241812,52.18207707709149],[4.781729091612455,52.18206871249741],[4.78173425662899,52.18206198892465],[4.781738967400109,52.18204995105216],[4.781741412798136,52.18204537966232],[4.781748988025537,52.18203236779056],[4.781752847014197,52.18202706662658],[4.781755278426139,52.182027834098584],[4.781755904311039,52.18202804403529],[4.781756560047365,52.182028209184544],[4.781757230526407,52.18202836542133],[4.781757915870164,52.18202850375815],[4.781758616078638,52.182028624195006],[4.781759316775101,52.18202870868193],[4.781760032214279,52.18202878425636],[4.78176076276216,52.18202882395587],[4.781761478689328,52.182028863580385],[4.78176220984719,52.18202885834252],[4.781762941005052,52.18202885310462],[4.781763658152174,52.18202880285434],[4.781764360556584,52.182028761516555],[4.781765063692961,52.18202866625389],[4.781765766707341,52.182028579978684],[4.781766441090258,52.182028448616116],[4.781767115473172,52.182028317253504],[4.781767761102624,52.18202814979106],[4.781768421352789,52.182027982403525],[4.781769053093481,52.182027760941224],[4.781769699332889,52.182027548541335],[4.781770272956684,52.18202729981656],[4.781770890442622,52.182027051316766],[4.781771450055654,52.18202675757962],[4.781771994925971,52.18202647275498],[4.781772511042822,52.182026151830414],[4.78177301253895,52.182025830830874],[4.781773455918184,52.18202548256892],[4.781773913918125,52.18202513438197],[4.78177429905847,52.18202476784509],[4.781774684198806,52.182024401308226],[4.781775011100261,52.182024016496435],[4.781789648800242,52.18200668161506],[4.781790272751254,52.182005956778845],[4.781790648882121,52.18200517674294],[4.781791054864344,52.18200435191957],[4.781791227281174,52.182003498933994],[4.781791371066529,52.182002600861054],[4.781791237058416,52.182001701363305],[4.78179108867358,52.18200078381563],[4.78179066188535,52.18199990978055],[4.781790205977711,52.181999026608054],[4.781789485799449,52.181998222973036],[4.781788794618646,52.181997437462954],[4.781787853543955,52.18199674954032],[4.781786941466726,52.18199607974266],[4.781785837490479,52.181995543782264],[4.781784806373808,52.18199502617177],[4.781783641840939,52.18199464269857],[4.781781997020635,52.18199409497606],[4.781884537992529,52.1818788990204],[4.781885531344193,52.181878967031146],[4.781886525915559,52.1818789451671],[4.781887549728262,52.18187892345303],[4.781888560018022,52.18187882077661],[4.781889584928446,52.18187871817519],[4.781890596681828,52.18187850764903],[4.781891608191263,52.18187831509784],[4.781892547939006,52.18187802330948],[4.781893502185437,52.18187774058356],[4.781894369927532,52.18187736753299],[4.781895237547643,52.18187700346987],[4.781896003920783,52.18187655799467],[4.781896769928,52.181876139481844],[4.781897419945606,52.18187564846941],[4.78189804047793,52.181875175281995],[4.781898559397377,52.18187464764484],[4.781924769013719,52.18184823118484],[4.781997370452106,52.181768132948754],[4.782025641504552,52.181737412745456],[4.782026220244727,52.18173678654533],[4.782026609526504,52.18173611443332],[4.782027043035961,52.18173541558375],[4.782027272466408,52.181734670747325],[4.782027516639411,52.181733916998404],[4.782027527248292,52.18173313508775],[4.782027552477796,52.18173235325201],[4.782027343655427,52.1817315792044],[4.782027149453689,52.181730805231766],[4.782026735576832,52.18173005709715],[4.782026321456105,52.181729326937536],[4.782025716413751,52.18172865871578],[4.78202512587009,52.18172799955649],[4.782024373646045,52.181727402485016],[4.782023650175492,52.18172684151332],[4.782022779401292,52.181726360679356],[4.782016481732621,52.18172281404245],[4.782033463195471,52.181702992454085],[4.782043893529552,52.181692916334875],[4.782057950569919,52.181676333443846],[4.782088424693208,52.18167290341697],[4.782130905857613,52.18162939405687],[4.782168660566066,52.18158938379196],[4.782192399491283,52.1815596829381],[4.782251743556479,52.18149536262145],[4.782333106669467,52.181408460145974],[4.782333729750099,52.18140779821912],[4.782334148752895,52.18140709030595],[4.782334597484224,52.181406346592695],[4.782334827395332,52.18140556580573],[4.782335057793945,52.18140474906886],[4.782335054264331,52.18140393113324],[4.78233503635796,52.181403095147765],[4.782334784279621,52.18140227593849],[4.782334532323174,52.18140144774171],[4.782334031086748,52.181400672196204],[4.782333544348975,52.1813999057131],[4.782332837328509,52.181399210005985],[4.782332144684818,52.18139853234881],[4.782331275376224,52.18139794366735],[4.782330449685428,52.18139737318558],[4.782329476326987,52.181396909804384],[4.782373777014359,52.18134965265268],[4.782475767428369,52.18123925300811],[4.782542039160456,52.18116969201865],[4.782542843893687,52.181169651200456],[4.782543649357927,52.18116955645736],[4.782544469442603,52.18116946178916],[4.782545261139244,52.18116930405881],[4.782546052714045,52.18116915531594],[4.782546830521244,52.181168943585774],[4.78254760845027,52.181168722868144],[4.782548343005314,52.18116846597589],[4.782549063183581,52.18116819103383],[4.782549725489262,52.18116787085471],[4.782550402171704,52.18116756872546],[4.782551006604787,52.1811672033094],[4.782551610794192,52.18116685586829],[4.782552142490575,52.18116646311531],[4.782552659566513,52.18116607028742],[4.782553103905761,52.181165650122615],[4.782592676504086,52.18112846231058],[4.78261685242065,52.18110100164738],[4.782651240280017,52.181067688097016],[4.782695351341298,52.181023584677966],[4.782714189384964,52.181002666962456],[4.782719218021078,52.180991960917346],[4.782739368488293,52.18097669444889],[4.782762946275116,52.18095235855324],[4.782775304201869,52.180941357477074],[4.782793220410293,52.18092911753808],[4.782813467009611,52.18092293852351],[4.782832426682906,52.18092217274359],[4.782858182425247,52.180927014381524],[4.782905977824913,52.18094010308384],[4.783079096053841,52.18099831537546],[4.783150502481551,52.18102455757044],[4.783242120676293,52.18106339660613],[4.78335417837108,52.18110882055789],[4.78337708120811,52.18111920213559],[4.783401686574011,52.18112802848766],[4.783426035186651,52.18113422000667],[4.783447845768097,52.18113780097658],[4.783462982967042,52.18114074560666],[4.783478146268864,52.18114500263152],[4.783503479991233,52.18115295185328],[4.783524770527806,52.181159307473415],[4.783545130422124,52.18116312368487],[4.783564795690093,52.18116532746987],[4.78359478481427,52.18116744922342],[4.783623007934892,52.181170415808914],[4.783656110003086,52.18117264334573],[4.783710906020962,52.18117086523823],[4.783736883022489,52.18116693542497],[4.783766162052245,52.18115886099458],[4.783791379052873,52.1811516646023],[4.783823294722009,52.181138911845956],[4.783855508552912,52.18112357203114],[4.783891480805238,52.18110493480721],[4.78391667961867,52.18109043096665],[4.783943553602214,52.18106990466429],[4.783972485599445,52.18104856196772],[4.783993587985473,52.1810309902087],[4.78401543925444,52.1810088563159],[4.784039939148683,52.18097358635696],[4.784041659309429,52.180968561808534],[4.784044186555535,52.18096115953654],[4.784051593172283,52.18093784628864],[4.784059922369766,52.180912263764036],[4.784064744740105,52.180886510522065],[4.784065511184084,52.18086443066611],[4.784063276347987,52.18083615165855],[4.784064493047261,52.18081970065647],[4.784067277887241,52.18080297903584],[4.78407036447894,52.18078881157859],[4.784074880456457,52.180774903091844],[4.78408051288407,52.1807595262604],[4.784081002738176,52.18074059981531],[4.784078875091868,52.18072926393221],[4.784070982659027,52.18071065418064],[4.784065430635785,52.18069737734526],[4.784051455129278,52.18066583857912],[4.784045404897791,52.18065156151726],[4.784040913654758,52.180636609325454],[4.784025411335183,52.180601206856835],[4.784010535701666,52.18057136223711],[4.784002266753187,52.180546000489436],[4.783995363278425,52.180522380423334],[4.783992168524802,52.18050778539086],[4.783993604842445,52.18049671938568],[4.783997205229898,52.18048672503595],[4.783994798804981,52.18047005777981],[4.78398670140846,52.180459041922795],[4.783985981215316,52.18045823830099],[4.784267578597797,52.18030625908489],[4.784273719418699,52.18029977407621],[4.784284544915543,52.18026580939469],[4.784287377239347,52.18025746492419],[4.784287605895472,52.18025677400805],[4.784287673851512,52.18025607328296],[4.784287727551849,52.18025534552074],[4.784287591311831,52.180254607800215],[4.784287455071815,52.18025387007968],[4.784287128648496,52.18025314037585],[4.784286773106387,52.18025240153516],[4.784286226773581,52.18025171564855],[4.784285695182414,52.18025102084916],[4.784284972436118,52.18025040596627],[4.784284264309981,52.18024979115808],[4.784283394269001,52.1802492564158],[4.784282553225357,52.1802487397978],[4.784281579385664,52.18024831238256],[4.784280649163443,52.18024790316629],[4.784279629884106,52.180247592364296],[4.78419915460969,52.180222751602784],[4.784119661403565,52.1801977360416],[4.784073565842748,52.180175749300865],[4.784031099990459,52.18015673817666],[4.784002194837904,52.180135054965085],[4.783978182080657,52.180117036931755],[4.783903224694346,52.180056127933256],[4.783848199502605,52.18001117579213],[4.783827154819643,52.179974792222446],[4.783820732795012,52.17994369650007],[4.783826788655527,52.17991430938594],[4.783846514961022,52.1798892615011],[4.783859773353064,52.17987650324543],[4.783863629058009,52.17987789813416],[4.783864021853428,52.17987804395162],[4.783864444132014,52.179878171943606],[4.783864851790584,52.17987829986085],[4.783865274190739,52.1798784188653],[4.78386569671246,52.1798785288823],[4.783866148717347,52.179878621073776],[4.783866571482199,52.17987871311579],[4.783867023608652,52.17987879631983],[4.783868000840085,52.179878972088915],[4.783869008527194,52.179879058132634],[4.783870045454339,52.179879144325774],[4.783871112715595,52.17987914978105],[4.783872180098408,52.17987914624882],[4.783873234198397,52.179879043779486],[4.783874302796834,52.179878950372384],[4.783875358233995,52.17987874904072],[4.78387639892957,52.17987855662182],[4.783877367862227,52.1798782649669],[4.783878336673314,52.179877982299494],[4.783879233599914,52.17987760938357],[4.783880101164908,52.179877245305676],[4.783880881739155,52.17987682685452],[4.783881647814933,52.17987639934109],[4.783882297659931,52.17987591730496],[4.783931388211856,52.179839667515495],[4.783938555873953,52.17983076997138],[4.784040248380826,52.17974618128991],[4.784058127478284,52.17974527497141],[4.784218285915561,52.17981772845598],[4.784255419028216,52.17983426750949],[4.784265192984912,52.179818597239304],[4.784280466159639,52.179803880833276],[4.784273574576371,52.17979235883171],[4.784249781404466,52.17978297954374],[4.784211503522841,52.179764601066424],[4.784108473921339,52.17971127855246],[4.784097308864971,52.17970331197126],[4.784099981218719,52.17969490377032],[4.78410829128423,52.179686937827924],[4.784120320365653,52.17967749886117],[4.78425392412783,52.17957276890564],[4.784291038329753,52.17958420260842],[4.78431525513115,52.179590357322446],[4.784346520427055,52.179566132280364],[4.784345281667479,52.179555016654255],[4.784307440473776,52.17953679323498],[4.784453854082066,52.17942752657246],[4.784489533794961,52.17941202452171],[4.784571498720842,52.17936438362202],[4.784607470730517,52.17934347218808],[4.784661743791736,52.17932720214952],[4.784761241799178,52.1793475377864],[4.784846700162936,52.179369230801285],[4.784873453165333,52.17936730006036],[4.784910705821315,52.179345738937876],[4.784851785673124,52.17929904166854],[4.784766779880057,52.17924493086699],[4.784794157750857,52.17922270818941],[4.78503473876395,52.17902591882153],[4.785072254204052,52.17899569445401],[4.785294440048894,52.17880539899812],[4.785303464225479,52.17879865899581],[4.785303922043406,52.178798319782324],[4.785304321867741,52.17879794432071],[4.785304736311736,52.17879756893367],[4.785305077778666,52.17879718418633],[4.7853054196094,52.178796772476545],[4.785305703082737,52.17879635148107],[4.78530598655607,52.178795930485585],[4.785306197173609,52.17879549114239],[4.785306407669877,52.178795060786676],[4.785306545431625,52.17879460309571],[4.785306683072101,52.178794154392286],[4.785306747614253,52.17879370531608],[4.78530679753674,52.17879325616531],[4.785306789101837,52.178792797728846],[4.785306780424395,52.17879235726739],[4.785306698648633,52.17879191643316],[4.785306657700117,52.178791700509784],[4.785306588482434,52.17879141253739],[4.785366125686669,52.17874142766789],[4.785435117419133,52.17867879976396],[4.78558849663197,52.17854589253639],[4.785590168281264,52.17854444498347],[4.785595105321304,52.1785339540624],[4.785630680800297,52.17851417279803],[4.78563628023473,52.17851093865343],[4.785871262543787,52.17837533704448],[4.785938058735362,52.17833340625996],[4.785938589520113,52.178333076403845],[4.785939032830049,52.178332728125945],[4.785939520240804,52.17833236209643],[4.785939920297885,52.17833196865763],[4.785940334853334,52.17833158428082],[4.785940676795764,52.17833116358165],[4.785941004118676,52.17833074280803],[4.78594128794646,52.17833029484847],[4.785941557033584,52.17832985580198],[4.785941753265414,52.17832939840816],[4.785941934635448,52.17832895891479],[4.785942072510359,52.178328492235565],[4.785942181025098,52.1783280343949],[4.785942216563412,52.17832756719438],[4.785942251859447,52.178327117968855],[4.785942214179054,52.178326659383444],[4.785942188695372,52.178326380622316],[4.785942148592179,52.17832610178673],[4.785942093748333,52.17832583186415],[4.785942009907745,52.17832554381762],[4.785941925946017,52.17832526475859],[4.785941812624124,52.178324994538144],[4.785941714042886,52.17832471540464],[4.785941585980343,52.1783244540972],[4.785941443419433,52.17832418372775],[4.78594128611787,52.178323922271375],[4.785941114317939,52.178323651753],[4.785940927656217,52.178323399135174],[4.785940740994496,52.178323146517315],[4.785940524972616,52.17832290273798],[4.785940309071878,52.1783226499712],[4.785939962685805,52.178322315646724],[4.785939688428167,52.17832205359451],[4.785939341678682,52.17832174623254],[4.785939037818608,52.178321510993904],[4.785938733958536,52.178321275755245],[4.785938400859449,52.178321040367656],[4.785938067518082,52.17832082295501],[4.785937704816553,52.17832061438094],[4.785937342236172,52.17832039681937],[4.785936979292369,52.17832020622025],[4.785934946371025,52.17831917122022],[4.785951940776929,52.178315518737406],[4.78599983017767,52.178305219623965],[4.786029528462191,52.17829732653375],[4.786055376464285,52.17828655560844],[4.786065437557323,52.17827988374586],[4.786097105069014,52.1782538806444],[4.786124668965301,52.17822318282134],[4.786168127069405,52.178177160312636],[4.786219391372268,52.17816485597185],[4.786244076236651,52.17814925246962],[4.786296075986892,52.17810839662424],[4.786550295172004,52.17790868955368],[4.786643767991491,52.17782145924108],[4.786710412536237,52.17776786967418],[4.786775264975854,52.17772467019341],[4.78683800332986,52.17767885337273],[4.786861882864416,52.1776589583182],[4.786946288465042,52.17757835981112],[4.786986498386696,52.177544364546186],[4.787025166878457,52.177516266616074],[4.787138933572732,52.17743861256766],[4.787176563945424,52.17740615906636],[4.787204818730354,52.17737834968566],[4.787252608682707,52.17733512612341],[4.787470448817339,52.17715900569865],[4.78756348611202,52.177088697051985],[4.787790820765172,52.17693261382413],[4.787808922818144,52.17691937638958],[4.787859907112745,52.1768777147581],[4.787949909111621,52.176809071170794],[4.787977608328,52.176789905344364],[4.788019792601236,52.176765546015034],[4.78804381022583,52.176749444404294],[4.788099463739402,52.176699726063],[4.78817346237242,52.17664259573278],[4.788243054970252,52.17660110028129],[4.788274288523246,52.17657892332851],[4.78833460295395,52.17652938132561],[4.788403293353515,52.176459227113845],[4.788408590004055,52.176448018850195],[4.788408055389032,52.176442101962856],[4.788407940587415,52.17644085203341],[4.788454142060686,52.17641015833721],[4.788476123734492,52.17640738466295],[4.788487479741811,52.1764032987502],[4.788507162793921,52.17639205560048],[4.788530057598082,52.17637897718805],[4.788616355799171,52.17631817890168],[4.788653170763264,52.17628859698956],[4.788705075444314,52.176240333401715],[4.788776394556055,52.176188842627006],[4.788860440210107,52.17612589357203],[4.788900018768609,52.176096253688115],[4.788990374403385,52.176043520053504],[4.789036522958376,52.17601889283495],[4.789114340650591,52.175967884196595],[4.789186590001679,52.17592654546292],[4.789254635242869,52.17589890124],[4.789334810574045,52.17587484176161],[4.789429596238144,52.175854748077136],[4.789510113389545,52.17584335445578],[4.789609024734724,52.17582521396315],[4.789683677980121,52.17580846058554],[4.789781457142355,52.175780966584654],[4.789871419315409,52.17576513545879],[4.789976395226563,52.175737336170776],[4.790177351858705,52.17569621659775],[4.790331929942254,52.17566091115143],[4.790398434888469,52.175644502605216],[4.79051371496268,52.17562341513092],[4.790594633681692,52.175605991781275],[4.790757044546651,52.17556432584],[4.790821257719127,52.175553100601206],[4.790982443474685,52.175533062535585],[4.791117013280281,52.17550488142841],[4.791252528014444,52.17547052112141],[4.791304550191492,52.17545586352409],[4.791364373973969,52.17544159582516],[4.79149692580385,52.175412316537724],[4.79156334128169,52.175395978790334],[4.79165776881729,52.175368610135244],[4.791713962770881,52.17535463852787],[4.791813477889833,52.175333829771105],[4.79186112516867,52.17532051605232],[4.791918574814939,52.17530117579351],[4.791929089511242,52.17528887916556],[4.791930927464883,52.175280421638135],[4.791916849483457,52.17525736804419],[4.791884845498389,52.17520492280232],[4.791872713463003,52.175185042831686],[4.792351964018783,52.175084563350374],[4.79326978661679,52.17488586559996],[4.793324598338451,52.17487570621814],[4.794095738866488,52.17471313312216],[4.794520318382876,52.1746225086988],[4.795075932352766,52.17450626797868],[4.795087072901705,52.17450401392602],[4.79510495992462,52.17450013091762],[4.79523749530541,52.17447169224132],[4.795654557275647,52.17437434788119],[4.796766639512236,52.1741203579075],[4.797738200558914,52.17390103293295],[4.79799160089697,52.17384173638978],[4.7980841954316,52.17380427779278],[4.798200328658176,52.173777722321795],[4.79830712392815,52.173771927608286],[4.799481036915114,52.17350508900367],[4.801384283026238,52.17307019729164],[4.801512967662499,52.173044923251496],[4.801594376725915,52.173035116727505],[4.801839725214977,52.17298707004084],[4.802207704426611,52.17290709380396],[4.802464393769617,52.1728491522027],[4.802487457224822,52.17284394550916],[4.802866937158177,52.17275629443004],[4.803957360612676,52.17249780638143],[4.805468962779059,52.17215834395113],[4.806484906157173,52.17193682003463],[4.806513438528596,52.171931414763236],[4.807472284160961,52.171724728401664],[4.807692350631785,52.171677291403434],[4.807976466436552,52.17161467286718],[4.808200154600327,52.17156743246116],[4.808448511557315,52.171511666052105],[4.808717044792737,52.17145561152999],[4.808954824667479,52.1714037559667],[4.809169453038274,52.171356082851084],[4.809374389095847,52.171311795347954],[4.809553867578464,52.17126917152374],[4.809725454737806,52.17122632905333],[4.809895846607048,52.17118545786966],[4.810037277603382,52.17114587392289],[4.810281639264552,52.171082183587586],[4.810515967855862,52.17102561622809],[4.810763084289273,52.17097489021309],[4.810946515926422,52.17094288954418],[4.811121091381765,52.17091747858069],[4.811319350913921,52.170891832392925],[4.81149969116897,52.17087277662261],[4.811689395848554,52.170853020229714],[4.811863555114658,52.17083715150302],[4.812094150197943,52.17082047897069],[4.812387642537713,52.17080070585461],[4.812661538799613,52.17078152869782],[4.812953580263704,52.17076086627867],[4.813265830493472,52.17073738927096],[4.813607017240919,52.17071443856542],[4.813926869994081,52.17069081699752],[4.814254037636758,52.17066670876537],[4.814634752136776,52.170639057452945],[4.814805180727808,52.17062669861348],[4.814955476227932,52.170615796851116],[4.815276487490228,52.170592914270216],[4.815552438813837,52.170572868523564],[4.815850338796985,52.17055110380703],[4.816253022641869,52.170519976370755],[4.816657485024479,52.170486896754596],[4.817047017376208,52.170455316544604],[4.817113742661418,52.17045002131536],[4.817488633172585,52.17042026541034],[4.818305755852283,52.170352832575986],[4.818778079585162,52.17031680112843],[4.820367349054129,52.17020043614493],[4.820806258214908,52.1701709142518],[4.821463474602115,52.17012480276481],[4.821768267557769,52.170101932654404],[4.822466663902931,52.17005205811084],[4.822775646025747,52.170031901874935],[4.823384831704154,52.16998867783844],[4.823622633730807,52.16996548288682],[4.823751037093335,52.16995033985486],[4.823895083213726,52.16992925831278],[4.824069453906117,52.16990062748561],[4.824069590721687,52.16989673629387],[4.824096373207732,52.16989419462048],[4.824097846415641,52.16989676325623],[4.824173606394515,52.169883148219284],[4.824260970702086,52.16987201527122],[4.824303558812869,52.169870321917216],[4.824336393506841,52.16987237500698],[4.824365750299068,52.1698754990608],[4.824390841575717,52.16988071496785],[4.824410257668395,52.16988736886602],[4.824427727927073,52.16989183836368],[4.824429727938859,52.16989204563874],[4.824447917271101,52.16989397493186],[4.824497533344146,52.16986935044081],[4.82457269458623,52.16983596747623],[4.824633239812346,52.169816356457524],[4.824691406189699,52.16980223478282],[4.824827273899245,52.16977584610174],[4.824935745362969,52.1697612629344],[4.825026858179841,52.16975190894524],[4.825329005084483,52.16972638353383],[4.825330581981449,52.16972536639862],[4.825357373102918,52.16972096394532],[4.825363508907063,52.16971660696606],[4.825449015122279,52.1697113604834],[4.825461125318937,52.16971314383932],[4.825500476839617,52.169713079469474],[4.825981345842394,52.169685805307786],[4.826961057328565,52.169633933990966],[4.827635971197775,52.16959633895597],[4.827960247542545,52.16957656524425],[4.828080466850136,52.169569234318935],[4.828223086458569,52.16955674234747],[4.828286698940789,52.16954766904203],[4.82832424154781,52.16954029683412],[4.828362585313583,52.16952847930271],[4.82838723485451,52.169518799000414],[4.828406967879514,52.16950951785469],[4.828446704588725,52.169486849277085],[4.82846786369098,52.1694710764829],[4.828481077883063,52.16945940958274],[4.828800924482248,52.16951433059409],[4.828836538876618,52.16951969421316],[4.828951960778689,52.16953476499009],[4.82895702479762,52.16953542709811],[4.829170026425595,52.169538232049305],[4.829286762087728,52.16953709419453],[4.829580975913197,52.16952026581557],[4.829605859920607,52.16951636570955],[4.829656008743115,52.1695085043641],[4.829746115741362,52.169496463532475],[4.829800938446971,52.16949240818835],[4.829847844500354,52.16949371727431],[4.829865199318781,52.169496927088],[4.830434984791016,52.16946355626989],[4.830466846500255,52.169456893604455],[4.830479202764185,52.16945302409717],[4.830615117407668,52.169442430047674],[4.830636158204334,52.16944428195345],[4.830658717657248,52.169448603753644],[4.83125130568379,52.1694093324813],[4.831704176995609,52.169373688010516],[4.831745091463326,52.1693689910614],[4.831791345671125,52.16936159583667],[4.831883413051806,52.16935522509722],[4.831936790295126,52.16935687838508],[4.832017404758196,52.16935462412931],[4.832033665091273,52.169354170322826],[4.832993709485137,52.16928751484334],[4.833452004099066,52.16925399235153],[4.833486953001674,52.16924704675052],[4.833498045788638,52.16924484278447],[4.833587901389078,52.169230550821865],[4.833690928759895,52.16922910162907],[4.833704222771011,52.16923091665477],[4.833728402842442,52.16923422981418],[4.834058518046683,52.16921702834523],[4.834499211082816,52.16919181416575],[4.83454795304137,52.16918414189394],[4.834604176320976,52.16917197463581],[4.834664490886283,52.16916347566908],[4.834777879103397,52.16916460867521],[4.834820357814183,52.169169301546496],[4.834981660300123,52.16915876736803],[4.835019447703661,52.16915630167502],[4.835167027822314,52.16914666476411],[4.835203352321956,52.16914429103845],[4.83533372823047,52.169135786842034],[4.835393416651708,52.16912707784933],[4.835438199284792,52.169116861045545],[4.835491930927665,52.1691087533198],[4.835574756938721,52.1691072799493],[4.835620115149323,52.16911198599154],[4.835994946644675,52.16908150596057],[4.836438536775765,52.169036910772604],[4.837059600451279,52.16894926150665],[4.837127393814536,52.16894231513178],[4.83712775967131,52.1689422808847],[4.837584311048297,52.16889545883272],[4.837853618553107,52.16887788266408],[4.837967093184756,52.16887075295861],[4.838053892996278,52.168865844917626],[4.838166261595638,52.168859500825874],[4.83832556983261,52.16885050774272],[4.838325891617069,52.16885049126308],[4.838326198895565,52.168850465727914],[4.838560970572553,52.16883719440174],[4.838762951499316,52.1688266194557],[4.83881829961778,52.16882487230603],[4.839060698072649,52.16881186012679],[4.839645235925732,52.168780472795795],[4.840017147546456,52.16875281567835],[4.8400858425126,52.1687497636267],[4.840293329828154,52.168734708559334],[4.840363026884177,52.16872860504147],[4.840454321029201,52.16871832320987],[4.840707813762705,52.168694501440164],[4.841086740853544,52.168662019875256],[4.841338110218935,52.16864443364599],[4.841485088266947,52.16862759558923],[4.841641317409992,52.16860131768635],[4.841799607604057,52.168572631307335],[4.841820380939151,52.16856886243023],[4.841835842794909,52.16856553638538],[4.841977270978291,52.168535118039976],[4.842013133550745,52.16852741015253],[4.842416488417621,52.16844065925997],[4.842605441421602,52.168399044668384],[4.843252744548718,52.16826275055162],[4.844261837761659,52.16804547244212],[4.844352817634456,52.16802478694213],[4.844772088248132,52.16793265444711],[4.845538955295659,52.16776178984803],[4.846163502086725,52.16762018024585],[4.846168374089645,52.167613776102094],[4.846171561176298,52.167605287986774],[4.846234101104579,52.16759251499168],[4.846240600407287,52.16759535805307],[4.846252702043385,52.1675978672701],[4.84628013069431,52.16759606055311],[4.846315050367575,52.16759004578741],[4.846384356038529,52.16757501176005],[4.846972067768947,52.16744749317174],[4.847101790348336,52.167418695887584],[4.847582616945383,52.16731195086211],[4.847953458428521,52.16722021481009],[4.848033359358179,52.16719919722589],[4.848404719696562,52.167109124925226],[4.848724925454928,52.16704039844859],[4.849126420928125,52.16696502207034],[4.849464815805946,52.16689926169427],[4.849708677569173,52.16684735190471],[4.850518891411592,52.16666777221245],[4.850603721917516,52.16664990316229],[4.851001824599111,52.1665595128722],[4.85105035943269,52.16654305150133],[4.851080742619853,52.166526408783334],[4.851121028899551,52.16649695808667],[4.851123941311918,52.16649299858433],[4.851153971434957,52.1664522032698],[4.851162214203777,52.16642429676557],[4.8512159088212,52.1662690738002],[4.851307702426544,52.166281076300024],[4.85145855904433,52.16629692412406],[4.851543788766585,52.16630293754412],[4.851596889408965,52.1663066839031],[4.851688261378811,52.16631120610919],[4.851743654280517,52.166313947150435],[4.851761693892897,52.16631249203691],[4.851808830678052,52.166308957860494],[4.851828959410755,52.16630637072806],[4.851871103252484,52.16629868834708],[4.85190729984342,52.166292084509415],[4.85198319207958,52.166272304406554],[4.852079761225715,52.16623468679238],[4.852177437901921,52.16618636032802],[4.852335883855753,52.16610924176443],[4.852408347951867,52.166075442421835],[4.852753015125615,52.1659072549185],[4.853080627723738,52.165744732608815],[4.853217974464625,52.16566801171352],[4.853329391657039,52.165597384124844],[4.853446090951552,52.16551403522236],[4.853545538884082,52.16542611415454],[4.853629859273208,52.16533569782561],[4.853695893140416,52.165247841264666],[4.853760369175098,52.1651411116415],[4.853795080449689,52.165064240679826],[4.853849050983714,52.16491070752051],[4.853896109639144,52.164754572507036],[4.853961708811593,52.164510932387415],[4.854156359301403,52.16377096005245],[4.854297607379936,52.163277496056196],[4.854394670934935,52.16295780573944],[4.854541495309955,52.16247426245764],[4.854543495268374,52.16246588560157],[4.854560019472851,52.162396554193144],[4.854579076080867,52.16221544040558],[4.854583524098383,52.16220032454559],[4.854605642399383,52.16212514915674],[4.854611483429331,52.1621120978541],[4.854659158520724,52.16200548961404],[4.854721128401089,52.16188650634582],[4.855517373245604,52.15928050424901],[4.855762429759936,52.15846992971192],[4.855948422166087,52.157854696512636],[4.856464653481582,52.15617814278708],[4.856525004968377,52.15600244533104],[4.856574638396328,52.155883818978616],[4.856586272987068,52.155856556481496],[4.85659730463744,52.155828383474365],[4.85664228203423,52.155679751871645],[4.856671354394307,52.15560169515894],[4.856722084336994,52.155512464737875],[4.85676709516419,52.15545196149886],[4.856803041978442,52.15541269231869],[4.856839669177196,52.155367808626664],[4.856875920859734,52.15531516650973],[4.856913630795634,52.155252931650075],[4.85694063934241,52.15521077303097],[4.856948582689846,52.15519898039512],[4.856948998660646,52.1551984070264],[4.856949400126114,52.1551978246044],[4.856949816096893,52.15519725123564],[4.856950232067664,52.15519667786689],[4.856950648038422,52.15519610449816],[4.85695106400917,52.1551955311294],[4.856951479979907,52.15519495776068],[4.856951910562714,52.15519438445759],[4.856952326533428,52.15519381108884],[4.856952757116213,52.155193237785774],[4.856953187698985,52.15519266448268],[4.856953618281747,52.15519209117959],[4.85695403425242,52.15519151781083],[4.856954479447237,52.1551909445734],[4.85695490992321,52.15519038025793],[4.856955340505927,52.15518980695486],[4.856955771088635,52.15518923365175],[4.856956216176649,52.15518866940192],[4.856956661371412,52.1551880961645],[4.856957106459405,52.15518753191466],[4.856957537042066,52.15518695861156],[4.856957982130037,52.15518639436173],[4.856958427217998,52.15518583011189],[4.85695888702478,52.15518525694011],[4.856959332112716,52.155184692690256],[4.856959791812718,52.1551841285061],[4.856960236900633,52.15518356425627],[4.856960696600612,52.155183000072086],[4.856961156300579,52.15518243588792],[4.856961616000533,52.15518187170375],[4.856962075700478,52.15518130751958],[4.85696253540041,52.155180743335414],[4.85696299510033,52.15518017915122],[4.856963454800239,52.15517961496705],[4.856963929005456,52.1551790598361],[4.856964403317416,52.155178495717564],[4.856964863017291,52.15517793153342],[4.856965337222472,52.155177376402484],[4.856965811534395,52.155176812283955],[4.856966285739553,52.155176257153045],[4.856966759944699,52.155175702022134],[4.856967248868661,52.15517513796925],[4.856967723073781,52.15517458283832],[4.856968211890964,52.15517402777308],[4.856968686096063,52.15517347264212],[4.856969174913222,52.15517291757689],[4.856969663837122,52.15517235352399],[4.856970152654256,52.15517179845874],[4.856970641364624,52.15517125238106],[4.856971130181734,52.15517069731578],[4.856971618998831,52.15517014225052],[4.856972122427988,52.15516958725089],[4.856972611245061,52.155169032185626],[4.856973114567441,52.15516848617359],[4.85697361799656,52.155167931174],[4.856974106706843,52.155167385096334],[4.856974610135937,52.15516683009666],[4.856975113458266,52.15516628408464],[4.856975631499407,52.15516572915069],[4.856976134821711,52.155165183138685],[4.856976638144004,52.15516463712666],[4.856977156078353,52.1551640911803],[4.856977659400618,52.15516354516825],[4.856978177334945,52.15516299922191],[4.856978695269256,52.15516245327554],[4.856979213203553,52.155161907329145],[4.85697973113784,52.15516136138275],[4.856980249072114,52.15516081543641],[4.856980767006374,52.15516026949003],[4.856981299445938,52.1551597325969],[4.856981817380174,52.15515918665053],[4.856982349819711,52.155158649757404],[4.85698288236599,52.15515810387668],[4.856983414805503,52.15515756698356],[4.856983932739687,52.155157021037176],[4.856984465179175,52.15515648414406],[4.856985012230718,52.155155947316615],[4.856985544670179,52.15515541042348],[4.856986077109629,52.15515487353035],[4.856986624161131,52.15515433670288],[4.856987156600555,52.15515379980972],[4.85698770365203,52.15515326298225],[4.856988250703494,52.15515272615481],[4.856988797754943,52.155152189327325],[4.856989330087565,52.1551516614218],[4.856989891751056,52.155151124659945],[4.856990438695714,52.155150596820086],[4.856990985747112,52.15515005999259],[4.856991532691747,52.15514953215268],[4.856992094355183,52.155148995390874],[4.856992655911857,52.15514846761665],[4.856993202856452,52.15514793977677],[4.8569937644131,52.15514741200256],[4.856994325969732,52.1551468842283],[4.856994887526352,52.15514635645408],[4.856995449082958,52.155145828679814],[4.856996010639553,52.155145300905595],[4.856996586808197,52.155144773197016],[4.856997148258015,52.1551442544104],[4.85699772442663,52.15514372670179],[4.856998285983171,52.15514319892751],[4.85699886204501,52.15514268020653],[4.856999438106842,52.15514216148557],[4.857000014275405,52.15514163377698],[4.857000590337206,52.15514111505598],[4.857001166398994,52.15514059633499],[4.857001742460767,52.15514007761401],[4.857002333134588,52.15513955895865],[4.857002909196337,52.155139040237685],[4.857003499870132,52.15513852158232],[4.857004090543914,52.15513800292699],[4.857004666605619,52.15513748420597],[4.857005257172628,52.155136974538244],[4.857005847846367,52.15513645588288],[4.857006438413348,52.15513594621513],[4.85700702908706,52.15513542755977],[4.857007634266075,52.15513491795764],[4.857008224833015,52.155134408289896],[4.857008815506688,52.155133889634556],[4.857009420685658,52.15513338003244],[4.857010025864615,52.155132870430336],[4.857010616431502,52.15513236076255],[4.857011221610433,52.15513185116046],[4.85701182678935,52.15513134155834],[4.857012431861506,52.15513084094382],[4.857013037040397,52.1551303313417],[4.857013656831329,52.15512982180524],[4.857014261903447,52.15512932119074],[4.857021375152812,52.15512343898639],[4.857026247407167,52.155119227486026],[4.857030203157403,52.15511467031984],[4.857033867733199,52.15511002196424],[4.857036993263466,52.15510523636516],[4.857040670978014,52.155098251163786],[4.857043546629964,52.15509112753708],[4.857046422089738,52.15508155914769],[4.857048494846734,52.15507190625872],[4.857049605652366,52.155063273690466],[4.857049986069338,52.155054619864366],[4.857049621272571,52.15504596268994],[4.857048540166343,52.1550373292614],[4.85704002916927,52.155010794116876],[4.857019201952648,52.15492992452573],[4.85705666702729,52.15484150619645],[4.857070879381663,52.15481246659937],[4.857065780725386,52.15479267887016],[4.857062212122555,52.15479047872952],[4.857062771891282,52.154786409637374],[4.857093809489928,52.15477162884555],[4.857101862404205,52.15475429103633],[4.857110915169227,52.15472904819455],[4.857114911208376,52.15472232507534],[4.857122450233706,52.15470519168215],[4.857211114331013,52.154719215920395],[4.85728763678344,52.15453615752526],[4.857341234721482,52.15439345155254],[4.857355131814559,52.15435401127759],[4.857352810597938,52.15433782228176],[4.857339155946548,52.154328521201926],[4.85730168962081,52.15431987717383],[4.857214822803639,52.15430346125158],[4.856978200965035,52.1542653672249],[4.856572574035017,52.154198730596285],[4.856434888796523,52.15417342102362],[4.856309791856842,52.15414508501267],[4.855910964237269,52.1540352709107],[4.855768396569095,52.153999143867196],[4.855629498024047,52.15397150895636],[4.855381575285132,52.153934133778364],[4.85514368206259,52.15389756729244],[4.854733215071307,52.15381701587825],[4.854212659101231,52.15371204845798],[4.853735921048961,52.15361499762745],[4.853285395189511,52.15352808520787],[4.852946309004642,52.15345788125034],[4.852602119699692,52.15339537397043],[4.852323105377526,52.15333624407276],[4.852061765719156,52.15326793593231],[4.851887940085715,52.15322394162426],[4.851665293748949,52.153172777677895],[4.851314899670941,52.15310406363798],[4.851084594674391,52.153062894527594],[4.850857976367085,52.15302868952719],[4.850486136961313,52.15297067024127],[4.849848838148561,52.15287518310438],[4.849330455323687,52.15280029611675],[4.848968490238524,52.15275621265317],[4.848392140507651,52.15270342847859],[4.848235492140367,52.15269191830943],[4.847987471052427,52.15266377584994],[4.847709425664975,52.152629329748684],[4.847562927651981,52.15260859836003],[4.84734769682033,52.152565953907775],[4.847195093684745,52.15253053452762],[4.84700639425752,52.15247257829836],[4.846697738512844,52.15237780530076],[4.846485293791766,52.15231279164679],[4.846001712347782,52.15216089556278],[4.845696731666728,52.15207308459067],[4.845572922772741,52.1520431970994],[4.845361498515639,52.15199670159227],[4.844853546174977,52.15189097760069],[4.844639634202841,52.151843705369295],[4.844255623783939,52.15175706417293],[4.843706325880724,52.151646516073995],[4.842882987206995,52.15148455680175],[4.842383813082538,52.1513788626248],[4.842252511980519,52.15134662709051],[4.841848670913034,52.15124059794215],[4.841117265222368,52.15104895898888],[4.84097219244093,52.15101511232448],[4.840873263383352,52.15100153163415],[4.840701659015792,52.150982994366096],[4.840308183255144,52.15095339788853],[4.839789341838578,52.15091781665131],[4.839513599625265,52.1509018773623],[4.839262577701819,52.15088614211633],[4.838549483191563,52.15083353743215],[4.838306278087827,52.150821449719544],[4.837923551928653,52.15081145342104],[4.837643254124726,52.150800108436805],[4.837262175903415,52.150777345556925],[4.836763990031911,52.15074489424301],[4.835966267140154,52.15069736182227],[4.835296049789197,52.15065770987583],[4.834627218759134,52.150625376936155],[4.833922808938208,52.15059194758516],[4.833021154587659,52.150548464774346],[4.832585166602604,52.150527253426795],[4.83237176351466,52.150505253827916],[4.832111160271658,52.150460210952296],[4.832009731792668,52.15042821237661],[4.831919394806545,52.15038435665853],[4.831899280951683,52.15036273544885],[4.831876946621319,52.15033873092107],[4.831835596094567,52.15027064902667],[4.831753330158919,52.150099541433626],[4.831716621750024,52.15004944859748],[4.831674225939781,52.15000082998574],[4.831619105581562,52.14996029467453],[4.831583357745794,52.149934006857656],[4.83145279106292,52.14986251159569],[4.831181578359183,52.14974641951337],[4.830901355285883,52.14963827475447],[4.830750366402884,52.14957716255789],[4.830672196378806,52.149533866587085],[4.830626531693314,52.149486229850964],[4.830619531032251,52.14946177610204],[4.830608652443837,52.149423740984155],[4.830613564313057,52.149354384853616],[4.830641345571503,52.14920975323853],[4.830698920054319,52.14895244325294],[4.83078792413223,52.14864686245072],[4.830895267430451,52.14830342918248],[4.831054455982987,52.1478349547696],[4.831198199374258,52.147369894718956],[4.831365984782254,52.146797126205705],[4.831504483680461,52.14629275391997],[4.831680243502167,52.14569135931158],[4.831767001227482,52.14540791381048],[4.831819962868574,52.14522337626604],[4.831867891018909,52.14500653863783],[4.831886987117223,52.14492536687579],[4.83194658457503,52.144789836800996],[4.832037403826751,52.144469675710106],[4.832155500447567,52.14443016232949],[4.832164723841674,52.14441684037915],[4.832074365293911,52.14426169360224],[4.831956561403936,52.144132006778534],[4.831847095428566,52.144060251615045],[4.831715948761595,52.14398505067966],[4.831525181365953,52.14390289060214],[4.831152386236436,52.14376310335618],[4.83101196334491,52.14370678690365],[4.830834113384377,52.143604652056716],[4.830704857413388,52.14351396336291],[4.830564271245784,52.14339467476403],[4.830426723003449,52.1433024546018],[4.830285555979514,52.14323102471348],[4.830144244855671,52.14317001121645],[4.82997563175295,52.14312759086715],[4.829844347196595,52.14309668067586],[4.829702472889474,52.14307851939144],[4.829538129205444,52.143063945843004],[4.82930499339233,52.14304811199074],[4.82910177175708,52.14303151140003],[4.828903130116706,52.14300848764364],[4.828731442754046,52.142981906023294],[4.828583893879299,52.14293979011995],[4.828415665178809,52.14287734379338],[4.828302676908084,52.14282158546322],[4.828038408489322,52.14266481149526],[4.827760719522279,52.142504297135076],[4.827604708182741,52.142420731534095],[4.827469160623548,52.1423759117947],[4.827206735374452,52.142310248400804],[4.826951928548798,52.1422335831728],[4.826628366455506,52.14215289656764],[4.826264302440294,52.14208215510517],[4.826038686764863,52.1420635911733],[4.825725957280694,52.14207314954436],[4.825387648192123,52.14209546526535],[4.82480433837865,52.14209452840798],[4.824331383624067,52.142118958472935],[4.823828755480958,52.142123920443865],[4.82341740199256,52.14212655716592],[4.823182652341766,52.14211991631202],[4.82305872508029,52.142102758597055],[4.822832469608243,52.14201700813278],[4.822622741696404,52.14192397504646],[4.822347373059459,52.14181867307405],[4.822245965798412,52.141795177834815],[4.822117563855524,52.14177616411576],[4.821970994016594,52.141776378715676],[4.821789728921718,52.14179851968796],[4.821514895211758,52.14188646329449],[4.821202928437459,52.14199145836716],[4.820993476515373,52.142067041168275],[4.820815609359773,52.142104485779875],[4.820684671201781,52.14212300177914],[4.820569654535477,52.14211287700825],[4.820464118027991,52.14209131082909],[4.820358849034503,52.14204867764377],[4.820229053317998,52.14197720938259],[4.820084333074035,52.141855883926766],[4.819871853084897,52.141678712697335],[4.819711538810679,52.14155922624843],[4.819371674791654,52.14136611645352],[4.818954550527585,52.14113051509242],[4.818506292690575,52.14089667661851],[4.818061028907891,52.14067242323268],[4.817919112874071,52.140575996755075],[4.817820755966133,52.14047978934769],[4.817729281349897,52.14033191528215],[4.817578829144008,52.139929095295585],[4.817423631748802,52.1396545399433],[4.817319324226453,52.13953723513939],[4.817227120111832,52.139446800356914],[4.81706962895718,52.13935222102332],[4.816896274283006,52.13928053848062],[4.816738099732335,52.13923956069165],[4.816576432611442,52.13922729190697],[4.81640191927363,52.139247506814634],[4.816121104518133,52.13930550536977],[4.81572120396474,52.139429942006316],[4.815395947035446,52.139556653615564],[4.81483522781576,52.139844970430985],[4.814569325514677,52.13995281401116],[4.814409898281877,52.14000948322708],[4.814200699797943,52.14006399600163],[4.813969942829547,52.140101173371065],[4.813630717878469,52.140103353396775],[4.81341321736242,52.140077398479185],[4.813217879751106,52.140022842862194],[4.813054059565919,52.139935876269895],[4.812604211483746,52.139587120929725],[4.812280886008775,52.13932132096995],[4.811960034623537,52.13910529954328],[4.811811667555701,52.139027987915625],[4.811663029511501,52.13897174299791],[4.811384135956461,52.138880383587626],[4.811223054210395,52.1388240683784],[4.811062131136954,52.13875435239081],[4.810957433240191,52.13866083160492],[4.810874437928496,52.13853823223547],[4.810839410783446,52.138402286095086],[4.810903474016176,52.1382826702042],[4.811030490291635,52.1381294135426],[4.811146244309802,52.13799421286826],[4.811210466666585,52.13786101648811],[4.811226254906718,52.137777368953344],[4.811176416668545,52.13765040164416],[4.811096505058505,52.1375730728079],[4.811009042388342,52.13751155314244],[4.810892046442641,52.13745893120364],[4.810741763197798,52.137419736562876],[4.810503010812661,52.1373982023848],[4.81016479067893,52.137389753288595],[4.80991065759656,52.13742019305983],[4.809645628226006,52.137439262849114],[4.809450942906409,52.13742247232595],[4.809223540967593,52.1373760939646],[4.809022519859732,52.13728006808016],[4.808949739645006,52.13722088385389],[4.808897179887403,52.137138816008246],[4.808890157363328,52.13703589418228],[4.808898019277329,52.13694538606395],[4.808952079169116,52.13677279989789],[4.809104825895152,52.13634038247051],[4.809128370290696,52.136200570263426],[4.809131606648934,52.13607917412537],[4.809090472413279,52.13593487442344],[4.809017583594829,52.13577817718603],[4.808956452027699,52.1357197511151],[4.808837149585334,52.135626965697575],[4.808620095832238,52.13553571405981],[4.808396451104242,52.1354504337647],[4.80819237536237,52.13536324474379],[4.808066208983989,52.13529648150569],[4.807950125937499,52.13520571533981],[4.807866873388568,52.13509506671906],[4.807819240231906,52.13500062787633],[4.807801232183897,52.134882282228],[4.80780922807977,52.134768073028994],[4.807843019630841,52.13467404311417],[4.807942626305402,52.1345282140927],[4.808020866055149,52.13441148259628],[4.808086778107068,52.134282340791785],[4.80813679368551,52.13418173021792],[4.808169248900193,52.13407013976959],[4.80824886566962,52.13373662946807],[4.808302050870208,52.13356380552686],[4.808377341199451,52.13339382243873],[4.808431689010764,52.13330141221578],[4.80848811825689,52.13321855760543],[4.808548740075545,52.13315479641159],[4.808805851879601,52.13300192853824],[4.809013700430125,52.13292328553346],[4.809497700394101,52.132790115661415],[4.809874651061605,52.13271250599819],[4.810114810763595,52.1326412367017],[4.810309433581312,52.132567407282295],[4.810458519706208,52.13249101796566],[4.810580994906918,52.13241683529162],[4.810646481953255,52.13234471085653],[4.810696900757105,52.13226316504947],[4.810724717367457,52.132167487223704],[4.810703140757346,52.132073904900935],[4.810643834111623,52.13196144277118],[4.810553969725168,52.13186285274528],[4.810308876370035,52.13172844968097],[4.810085872766931,52.13164790339056],[4.809896470122556,52.13161192266037],[4.809736991511783,52.13161114196548],[4.809209072353826,52.1316179037946],[4.809030819906047,52.131600671688226],[4.808871674146066,52.13157418531092],[4.808747065631858,52.13151982504051],[4.808671970999084,52.13145402290254],[4.808605197186962,52.13133217539959],[4.808434817944351,52.13070738117578],[4.808364975570347,52.13052943231489],[4.80827566420035,52.13038877860767],[4.80814853491368,52.1302362545508],[4.808062991493906,52.130097956093046],[4.808018488128385,52.130015945259544],[4.807992969756565,52.12993402764237],[4.80798622418423,52.129868560672904],[4.807994757345476,52.12979615796643],[4.808030475038184,52.12967715029348],[4.808100970792466,52.129511574912286],[4.808365459951061,52.12902679325024],[4.808373871221701,52.12896373760364],[4.808359834256397,52.128874865629186],[4.80831903758415,52.12879988385206],[4.808221469807146,52.12871060184079],[4.808108654419303,52.12862591872798],[4.807788740374679,52.128407013624525],[4.807494922023641,52.128225626683275],[4.807374181991567,52.128166610061115],[4.807257512105039,52.12808658101381],[4.807025023304404,52.12786109288233],[4.806680364543376,52.127501847533125],[4.806496631822204,52.127323336780584],[4.806263543102564,52.12714458262509],[4.805992276318259,52.12698199832931],[4.805860060284681,52.126929934344226],[4.805663270155699,52.1268798887438],[4.805231780923812,52.12677525921878],[4.804648343268651,52.126676241278446],[4.80435966645176,52.126598478452394],[4.8041641957031,52.12651247517721],[4.803985026624979,52.126397124910724],[4.803848509022841,52.126272179245355],[4.803628154704307,52.126016373237476],[4.803470650221847,52.12586603054705],[4.80332138132527,52.12566665297852],[4.803240330096281,52.12547696071492],[4.803140052326198,52.12530586857575],[4.802810600085364,52.124949023821486],[4.802667768486694,52.124838480456134],[4.802502158470898,52.12472782398306],[4.802332293919423,52.12465220006302],[4.802181014713409,52.1246070481299],[4.801980258800866,52.12457099819727],[4.801809538457942,52.124560803202066],[4.801608262388613,52.12456447779688],[4.801326769377687,52.12460514438879],[4.800892679386231,52.1247011379986],[4.799765745807904,52.12493623345387],[4.799388812643641,52.125016147747054],[4.799012401118855,52.125056335691184],[4.798647624833645,52.1250778850903],[4.798408873436674,52.12504397637916],[4.798178547285771,52.124947012244725],[4.797548596586775,52.12463538991756],[4.797295526256717,52.12453597338987],[4.797038475362985,52.12445055795602],[4.796278285321467,52.12422708017676],[4.79583144573072,52.124138374038004],[4.795248121156518,52.124034959632105],[4.794433711972573,52.12389299019497],[4.793714187764617,52.12375382958432],[4.793574340688403,52.12370638716374],[4.793362983000539,52.12361184594728],[4.793227368069835,52.123531707428874],[4.792855346505084,52.12324239093532],[4.792622955640694,52.12301687437793],[4.792459274682321,52.12276366074211],[4.792409205409531,52.122532052292605],[4.792418633342824,52.12239422105339],[4.792450279165274,52.12229856658153],[4.792473959012006,52.12223091507167],[4.792449126744954,52.12209992182654],[4.792433413011756,52.121878472498636],[4.792382259040615,52.121510148183255],[4.792349719302821,52.12128799376452],[4.792344248678678,52.12099695557061],[4.792325267838302,52.120878395487004],[4.792249392337546,52.120682474641775],[4.79215588506732,52.120548582153276],[4.792084070356368,52.1204688540375],[4.791973131463015,52.120380874983645],[4.79182657722033,52.120300769432895],[4.791683545856207,52.120237938814256],[4.791543962102718,52.120195825238596],[4.791299828257484,52.12014743078221],[4.790926864076549,52.1200926410134],[4.790473509367041,52.120039735279306],[4.79002398479977,52.11998110373881],[4.789861715874275,52.11995842259822],[4.789721995497794,52.119927811048925],[4.789571201469676,52.119885638326274],[4.789396281083755,52.11983184720613],[4.789249132220695,52.119797745968626],[4.78907370464811,52.11978189994751],[4.788842010785181,52.11978187501849],[4.788193667409037,52.11977858345503],[4.78781050202742,52.119788141381534],[4.787548551658584,52.11981441237281],[4.787188971359182,52.11987584223585],[4.786746509739783,52.11998746153609],[4.786252952528866,52.12014597986475],[4.785626344418318,52.12033257070492],[4.785226983336997,52.1204340497863],[4.784929068643562,52.12049463706105],[4.784736323684657,52.12051551179459],[4.78456988256852,52.12052615724794],[4.78442410843922,52.120527713184494],[4.784280310912316,52.12052237611245],[4.784157180530661,52.12050794963021],[4.784021045878195,52.12048769506974],[4.783832814864454,52.12045107594901],[4.783726753259055,52.12041832852227],[4.783594838319685,52.120362447874655],[4.783474354634157,52.12029050976541],[4.783361548642817,52.12020367246214],[4.783267571728631,52.120106568089504],[4.783170293649309,52.11997610051751],[4.783143068357246,52.11991730408377],[4.783125266206163,52.11985164399054],[4.783131914478695,52.11977461324042],[4.783159570833392,52.119664334899475],[4.78320635161858,52.119520799303885],[4.783313603794207,52.11932696982489],[4.783520447232821,52.11909223250967],[4.783967550345179,52.11863673360791],[4.784237926688809,52.11840117852104],[4.784357260245804,52.118281014219946],[4.784402918638549,52.1182202896646],[4.78445631580199,52.118140046326836],[4.784513620866898,52.118047176541445],[4.784552190676165,52.117958803949264],[4.784558277802046,52.11792317887153],[4.784554020888147,52.11782309149127],[4.784521453466793,52.117743559242854],[4.784464669000951,52.117659301244316],[4.784383636608499,52.11757261828116],[4.784296890439423,52.11749281797232],[4.784193169957005,52.117425568205874],[4.784096692675214,52.11737447123612],[4.78399825289473,52.11733140858681],[4.783864260649642,52.117291615422445],[4.783713309240703,52.11726324020885],[4.783573369500149,52.11724871805943],[4.783270893485441,52.11723336341017],[4.783024154116426,52.11724130337054],[4.78273478517282,52.11727269023218],[4.782447748370507,52.11731081152032],[4.78204695891182,52.11738121824545],[4.781421011420551,52.11752062903556],[4.780993587772239,52.11762541005702],[4.780556895527379,52.11772553090355],[4.780399683676842,52.1177442713504],[4.78020531413885,52.11774787294121],[4.780013046765836,52.11773537817651],[4.779875022307093,52.11771741901937],[4.779763270007268,52.11769154160922],[4.779640618125405,52.11764259813402],[4.77956650816698,52.11759620565608],[4.77949450165711,52.117532575608344],[4.779441135999549,52.11747248407489],[4.77941035175557,52.11740101299773],[4.779340958441429,52.11714530941052],[4.779319058572304,52.116969216461115],[4.779313319157642,52.11684266890458],[4.779319263619337,52.11667936589026],[4.779320906350072,52.11655859984705],[4.779298489493609,52.116421611892235],[4.779203311092159,52.116139322950545],[4.77910008127774,52.11589839207143],[4.779030352705403,52.11580602018524],[4.778989664428683,52.11577475606721],[4.778930335507074,52.115741085808644],[4.778833057917709,52.115702294197334],[4.778731322706744,52.11567564953475],[4.778466640833043,52.11562942327532],[4.778300482686272,52.11562052092401],[4.778014116335701,52.115658149501506],[4.777441163664564,52.11574835082592],[4.777128697144431,52.11578124032351],[4.776904420282445,52.11578698268552],[4.776766308943643,52.11577591336268],[4.776606023830467,52.115747480686586],[4.776472200163664,52.11569617503529],[4.776312623051905,52.11561598253127],[4.776173948869144,52.11550944582871],[4.776093109386894,52.11541011165391],[4.775954093599035,52.115192002269445],[4.775810648510456,52.11502562385547],[4.775687713280711,52.11486166159701],[4.775556172579372,52.11475582626322],[4.775468172566851,52.11471050959335],[4.775260366260552,52.11464397017205],[4.775121034405802,52.11460930750527],[4.7749558975643,52.114589053612846],[4.774814279786279,52.11457740650991],[4.774306360060035,52.114568700464105],[4.774109285491281,52.11458101443905],[4.773799712411269,52.11461092605632],[4.773286766441179,52.11468220253725],[4.772912044854444,52.1147251021328],[4.772394707090498,52.11480234699862],[4.772067472140511,52.11485405727087],[4.771869895032432,52.11490273119655],[4.771528263200551,52.114972467106355],[4.771325023048207,52.11500292739735],[4.770960403925079,52.1150264770046],[4.770690530944643,52.1150335511561],[4.770600127362982,52.11502096233408],[4.77051572004209,52.11500233775869],[4.77044132181641,52.114970426967204],[4.770333948583001,52.11490319071753],[4.770158810125261,52.11475194645851],[4.770054178645296,52.114628961411675],[4.770004153071969,52.114543841834106],[4.769964350140462,52.114432098724],[4.769943891317459,52.114344707068454],[4.769888463989165,52.11393830235397],[4.769866886593809,52.11379028829119],[4.769835036842101,52.113672528701585],[4.769777747081795,52.11354373318335],[4.769687118014696,52.113405055761106],[4.76960742832998,52.11332947891748],[4.769428273247875,52.11318427052269],[4.769330510256977,52.11313406241222],[4.769216826533543,52.1130970913159],[4.769085272042518,52.113069733702005],[4.768892532065682,52.11305296680128],[4.768496995447982,52.113035126641456],[4.768024538669263,52.11302658852484],[4.767282504344261,52.113005719798686],[4.766947868834052,52.11299789290245],[4.766576121445859,52.11296805531113],[4.766154945533144,52.11295371255817],[4.765957960103255,52.112959955300035],[4.765664228595801,52.11298386195542],[4.765246252018897,52.11302287790971],[4.765031343928714,52.11304235409528],[4.764565065165693,52.11315627225735],[4.763695373440814,52.11339292039896],[4.763141956202088,52.11354152506756],[4.762958443868543,52.11356964852894],[4.762782985997144,52.11358448482698],[4.762582278483902,52.11357372347692],[4.762388074191645,52.113521776259766],[4.762276520825338,52.11347269362033],[4.762167260615283,52.11340058621604],[4.761892699206723,52.113180923377755],[4.761610817615439,52.112921205472766],[4.761292220617413,52.11261159608379],[4.761040030321408,52.11234113165806],[4.760883077421243,52.11216087509211],[4.760701254323097,52.111927150031285],[4.760538426080692,52.11174444393216],[4.760188310935257,52.111157044554965],[4.75998502027729,52.11077045821495],[4.759898404857148,52.11062816317855],[4.75981915964969,52.110523487073976],[4.759704679449314,52.110402858041596],[4.759582331981852,52.11028218701511],[4.759307889945047,52.11005524708442],[4.759243597091973,52.110007617600985],[4.759181004792171,52.10997818931651],[4.759090855618939,52.109947409774136],[4.758721891238914,52.10986300355411],[4.758129303257121,52.10971922242234],[4.757791930644043,52.1096277103496],[4.757493856617608,52.10954246526987],[4.756955005316131,52.10935774515527],[4.756494803192945,52.10918192820095],[4.75616352073956,52.10907832787218],[4.755761646711176,52.108954942964964],[4.755626154444069,52.10892876255806],[4.755413881122464,52.108903375002754],[4.755093657771406,52.10885316708918],[4.754942550972514,52.10881841728419],[4.754605260403715,52.10872204282055],[4.754425311817184,52.108638646066225],[4.754325914212352,52.10856658417832],[4.754232651653192,52.10847879876492],[4.754213435966387,52.10844205056417],[4.753953871395853,52.108507187638175],[4.753799173171583,52.10854781038995],[4.75362312937136,52.10859485268121],[4.753504490610703,52.10859094335825],[4.752808858744378,52.10842577366389],[4.752700969844545,52.10841428137078],[4.752232395675827,52.10835285880653],[4.751797607294648,52.10828180130688],[4.751583690859305,52.10825119378633],[4.751254808138929,52.108207975498814],[4.750860543208236,52.10815349169926],[4.750546052693301,52.108095069100465],[4.750376470232866,52.108061427057144],[4.750220874555863,52.10804095620112],[4.749692129608624,52.10797592668443],[4.749346561488778,52.107930958996604],[4.748870432001191,52.10786670478379],[4.748077774541364,52.10775225061021],[4.747692429290923,52.107705408584984],[4.747351333264755,52.10765729542644],[4.746704495592848,52.10756125821113],[4.745986995609812,52.10746210970485],[4.745232933088547,52.10734461945883],[4.744081874782787,52.10717415790372],[4.743273412707617,52.10706413315336],[4.743255551552894,52.10706169865437],[4.743064338261534,52.10704070019897],[4.742515327292615,52.10697551867824],[4.74251670073449,52.106955185786354],[4.742484908385793,52.10695111103581],[4.742479123860797,52.10695037831985],[4.742242253545977,52.10691303987952],[4.742060734940174,52.10688589992379],[4.741969768978523,52.106874517347954],[4.741739808199993,52.10684092785518],[4.741425487706595,52.10679340248036],[4.741108999671401,52.10674742834113],[4.740870727899764,52.10671327927095],[4.740741886551094,52.10669458738195],[4.740647223526255,52.10668151169591],[4.740539837873534,52.106661966517564],[4.740409672586854,52.106637945959115],[4.740360047736768,52.106627490015185],[4.740308000878366,52.10662099356675],[4.740241742369963,52.10661307986003],[4.740141771447051,52.1066057001538],[4.740045557722245,52.10659893421114],[4.73995360925243,52.106589953532115],[4.739893240583022,52.10658255732949],[4.739821903756239,52.10656850349405],[4.739732464236983,52.106553604174344],[4.739623153662216,52.10653296899638],[4.739484210975706,52.10650831496299],[4.739374513847499,52.106489187455594],[4.739305864716251,52.10648207801568],[4.739221780334636,52.106479422767535],[4.739158693866333,52.10648028942808],[4.739122077057915,52.10648079822095],[4.738972057540206,52.106482184569714],[4.738852295056709,52.10648274841772],[4.738817448779364,52.10648296125222],[4.738763340496106,52.10647973349427],[4.738717622658961,52.10647469129549],[4.73866864838304,52.10646973902458],[4.738603579272656,52.10646539927298],[4.738552380630682,52.10646787698773],[4.738511380980066,52.1064716601648],[4.738473621990206,52.10647644087893],[4.738446981883298,52.106485525220464],[4.738422893604711,52.106501832175574],[4.738399146002416,52.106524837247136],[4.73836224029751,52.10656435322121],[4.738315827338963,52.10661322755543],[4.738277634337282,52.10665091180302],[4.738239396676827,52.10668261860599],[4.738192270611924,52.1067102137778],[4.738144190319679,52.10674219893192],[4.737876162961948,52.106863412667195],[4.737856263803829,52.10687167113018],[4.737685850596136,52.10694237775621],[4.737497021889522,52.10701864525228],[4.7372537162019,52.107092859427574],[4.737227851155644,52.1070987928919],[4.737190078829089,52.107107456047565],[4.737078271788843,52.10712195779608],[4.736933514926299,52.10714072689057],[4.736813514431431,52.107153511382045],[4.736689217694971,52.10716059147205],[4.736505209710694,52.10717526053721],[4.73638422400958,52.107179500316356],[4.736303678766653,52.107182327384585],[4.736143127980601,52.107189008997025],[4.736000964542268,52.10719304154951],[4.735887065938257,52.10719376061628],[4.735797419279181,52.10719508096148],[4.735689651452509,52.107193802366275],[4.735520608138483,52.107191250207094],[4.734788680055767,52.10715958126678],[4.734499555380767,52.107142323429144],[4.733932436090202,52.107103382157774],[4.733574676928078,52.107078056765985],[4.733138066780676,52.10704953347155],[4.733007982954892,52.10704008412931],[4.732884629015797,52.107031597783994],[4.732805593906486,52.10702200907571],[4.732717295982493,52.1070129800948],[4.732486025250749,52.10697954501749],[4.73237694092227,52.10696753309251],[4.732282629473772,52.106959477068905],[4.732004996642645,52.10694310385948],[4.731929697561356,52.10693758003958],[4.731900111595456,52.10693541121509],[4.731606947948238,52.10688617057448],[4.731483720425952,52.10686712226318],[4.731481491983076,52.10686678629175],[4.731476816948369,52.106866059205885],[4.731407561272827,52.106855562205986],[4.731214210929222,52.10683041599237],[4.731219054515442,52.106813688834194],[4.7312427937609,52.10673581184828],[4.731251856036653,52.106711117601485],[4.731255121574206,52.106711405417926],[4.731263925420145,52.10668741081627],[4.731263987232897,52.1066871774655],[4.73126404904565,52.10668694411476],[4.731264096262453,52.106686710682794],[4.731264158075203,52.10668647733206],[4.731264205292004,52.106686243900135],[4.731264267104754,52.106686010549396],[4.731264314321554,52.10668577711744],[4.731264361538353,52.10668554368549],[4.731264408755155,52.10668531025353],[4.731264470567901,52.10668507690277],[4.731264517784701,52.10668484347082],[4.731264550405551,52.106684609957675],[4.731264597622349,52.106684376525756],[4.731264644839146,52.1066841430938],[4.731264692055943,52.10668390966183],[4.731264724676794,52.106683676148684],[4.731264771893589,52.10668344271676],[4.731264804514438,52.10668320920358],[4.731264851731232,52.10668297577163],[4.731264884352081,52.106682742258485],[4.731264916972928,52.10668250874534],[4.731264949593775,52.106682275232174],[4.731264982214623,52.10668204171903],[4.731265014967353,52.10668179921833],[4.731265047588197,52.10668156570518],[4.731265080209043,52.106681332192004],[4.731265098233944,52.106681098597655],[4.731265130854788,52.106680865084506],[4.731265148879688,52.10668063149013],[4.731265181500532,52.106680397976966],[4.731265199657314,52.10668015539507],[4.731265217682212,52.106679921800726],[4.731265250303055,52.10667968828757],[4.731265268327953,52.1066794546932],[4.731265286352851,52.106679221098844],[4.731265304509631,52.10667897851694],[4.731265307938583,52.106678744841375],[4.731265325963481,52.106678511247],[4.731265343988378,52.10667827765265],[4.731265362013274,52.10667804405828],[4.731265365574109,52.10667780139521],[4.731265369003061,52.106677567719636],[4.731265387027956,52.106677334125266],[4.731265390456909,52.10667710044968],[4.731265393885861,52.10667686677413],[4.731265397446694,52.10667662411102],[4.731265400875646,52.10667639043544],[4.731265404304597,52.10667615675987],[4.731265407733547,52.10667592308428],[4.7312654111625,52.10667568940873],[4.731265400127389,52.106675446664426],[4.73126540355634,52.10667521298886],[4.731265406985292,52.10667497931328],[4.731265395818298,52.106674745556504],[4.731265384651305,52.106674511799724],[4.731265388080259,52.10667427812418],[4.731265377045148,52.10667403537983],[4.731265365878154,52.10667380162308],[4.731265354711161,52.1066735678663],[4.73126534354417,52.10667333410954],[4.731265332377179,52.10667310035274],[4.731265306614243,52.10667286651472],[4.731265296370432,52.106672569845315],[4.731262499333377,52.10664532885663],[4.731260789975924,52.10663747259892],[4.731257266326216,52.10662791645477],[4.731252901873955,52.1066189578456],[4.731288812292663,52.1064994790115],[4.731289633703598,52.106497218540895],[4.731331041463283,52.10636120492071],[4.731331321157904,52.10636104468811],[4.731331689218781,52.106360831017525],[4.731332057411525,52.10636060835942],[4.731332425472396,52.10636039468885],[4.731332779069289,52.106360171949554],[4.73133314726202,52.10635994929149],[4.731333500858909,52.106359726552185],[4.731333869051633,52.10635950389411],[4.731334222648513,52.10635928115481],[4.73133457624539,52.10635905841552],[4.731334929842262,52.10635883567622],[4.731335283570999,52.10635860394939],[4.731335637167865,52.10635838121009],[4.731335976300754,52.106358149402084],[4.731336330029479,52.106357917675254],[4.731336669162363,52.10635768586721],[4.73133702289108,52.106357454140436],[4.731337362023954,52.10635722233238],[4.731337701156826,52.10635699052437],[4.731338040289693,52.10635675871634],[4.731338379554424,52.10635651792077],[4.731338718687285,52.10635628611275],[4.731339043356167,52.10635604523599],[4.731339382620888,52.106355804440454],[4.731339707289765,52.106355563563696],[4.731340046554477,52.10635532276814],[4.731340371223347,52.10635508189141],[4.731340695892214,52.10635484101462],[4.731341020692942,52.106354591150364],[4.731341330765962,52.10635435019243],[4.731341655434817,52.106354109315646],[4.731341980235535,52.10635385945136],[4.73134229044041,52.1063536095059],[4.731342600645281,52.10635335956041],[4.73134291085015,52.10635310961489],[4.731343221055014,52.10635285966944],[4.731343531259877,52.10635260972397],[4.731343841464733,52.106352359778484],[4.731344137073748,52.106352109751796],[4.731344447410466,52.10635185081876],[4.731344743019474,52.106351600792095],[4.731345038760346,52.10635134177791],[4.731345348965186,52.106351091832416],[4.731345630110211,52.10635083273701],[4.731345925851073,52.10635057372279],[4.73134622159193,52.1063503147086],[4.731346502736945,52.10635005561318],[4.731346798477797,52.10634979659898],[4.731347079622805,52.10634953750355],[4.73134736076781,52.10634927840815],[4.731347642044678,52.10634901032522],[4.731347923189676,52.1063487512298],[4.731348204466538,52.10634848314685],[4.731348471015694,52.106348223970244],[4.731348752292548,52.1063479558873],[4.731349018973562,52.1063476877232],[4.731349285654572,52.106347419559064],[4.731349552203715,52.106347160382455],[4.731349818884718,52.10634689221827],[4.731350070969882,52.10634662397299],[4.731350337782744,52.10634634682131],[4.731350589867903,52.10634607857595],[4.731350856548893,52.10634581041185],[4.731351108634045,52.1063455421665],[4.731351449876582,52.106345166558086],[4.731351820838244,52.10634475516193],[4.731352206395733,52.10634434384703],[4.731352577357383,52.1063439324509],[4.731352933723187,52.10634352097359],[4.731353304684819,52.10634310957742],[4.73135367577831,52.10634268919377],[4.731354032144095,52.10634227771646],[4.731354403105709,52.10634186632032],[4.731354759603343,52.10634144585547],[4.731355116100969,52.10634102539063],[4.731355472466728,52.10634061391327],[4.731355828964343,52.10634019344842],[4.731356170866117,52.10633977290235],[4.731356527363717,52.106339352437516],[4.731356869265476,52.10633893189146],[4.731357211167231,52.10633851134542],[4.731357553068978,52.106338090799326],[4.731357894970719,52.106337670253275],[4.731358236872453,52.1063372497072],[4.731358578906043,52.10633682017361],[4.731358906211931,52.10633639954638],[4.731359233517812,52.10633597891912],[4.731359575551385,52.10633554938553],[4.731359902989115,52.106335119770726],[4.731360230294978,52.10633469914347],[4.731360543136864,52.10633426944747],[4.731360870574576,52.10633383983271],[4.731361183416448,52.10633341013672],[4.731361510854149,52.10633298052196],[4.731361823696011,52.10633255082594],[4.731362136537866,52.106332121129974],[4.731362449379715,52.10633169143399],[4.731362747625727,52.106331261656784],[4.731363060467563,52.10633083196082],[4.731363358845425,52.1063303931961],[4.73136367168725,52.10632996350011],[4.7313639700651,52.1063295247354],[4.731364268311081,52.1063290949582],[4.73136456668892,52.10632865619349],[4.73136485033906,52.10632822633513],[4.731365148716884,52.106327787570415],[4.731365432498875,52.10632734872449],[4.731365716280859,52.10632690987862],[4.731366014526807,52.1063264801014],[4.73136628371295,52.10632604117425],[4.731366567494917,52.10632560232841],[4.731366851276879,52.10632516348247],[4.731367120463005,52.10632472455537],[4.731367404376818,52.10632427672192],[4.731367673562933,52.106323837794825],[4.731367942749042,52.10632339886769],[4.731368211935147,52.10632295994062],[4.731368466657279,52.1063225119448],[4.731368735843373,52.10632207301765],[4.731368990433633,52.106321634009376],[4.731369259751578,52.10632118609473],[4.731369514341827,52.10632074708645],[4.731369769063932,52.10632029909062],[4.731370009190203,52.10631985101357],[4.73137026378044,52.10631941200527],[4.73137051850253,52.106318964009446],[4.731370758628788,52.106318515932415],[4.73137099875504,52.10631806785536],[4.731367322097655,52.10631695083543],[4.731393415419008,52.10626662692756],[4.731421013155465,52.106208275880746],[4.731474572351518,52.10608867044747],[4.731490115180943,52.10605603065351],[4.731515574791818,52.10599913277742],[4.731558652210598,52.10590445636099],[4.731592958560706,52.10582657514563],[4.731598723641833,52.10581766388962],[4.731632967283156,52.10572414274641],[4.731654406996279,52.10566562257564],[4.731676595607445,52.10560778967222],[4.731695391326038,52.10556432809895],[4.731704673395382,52.105542529255345],[4.731732683954148,52.105475875277776],[4.731738951466709,52.10546056716905],[4.731752927512183,52.10542524911532],[4.73176350968067,52.105404374297194],[4.731786770502624,52.10536199814697],[4.731806740790884,52.105330003112925],[4.731842134214757,52.10527847244676],[4.731866209810379,52.10524721928414],[4.731924630795562,52.105177165960704],[4.731928554450813,52.10517337674806],[4.732019668720747,52.105104520762076],[4.732121887481212,52.10502891331027],[4.732169656063942,52.10499247068679],[4.732216134665728,52.10495540068746],[4.732255825073947,52.104922364639194],[4.732293938597529,52.10488935577091],[4.732379069119149,52.10481837200365],[4.732429361867045,52.10477399767589],[4.732571371578395,52.10464440264593],[4.732595014648616,52.10462269246247],[4.732638150628107,52.104582583682436],[4.73265655309922,52.10456488910554],[4.732739892583894,52.10448256094146],[4.732780787888439,52.104439949923076],[4.73282254780821,52.10439410791686],[4.732859890277606,52.1043508929135],[4.732893508655882,52.10430980542299],[4.732954013164788,52.10423083781318],[4.732968965007025,52.10421053541957],[4.73299961814396,52.10416659115357],[4.732999623322308,52.10415426828053],[4.733014557622018,52.104136158918735],[4.733024091046037,52.104122055313546],[4.733015947114809,52.104119008044414],[4.733038281397888,52.104094935585906],[4.733128690874035,52.1039612515167],[4.733164835488634,52.10393801066853],[4.733176325874233,52.10392482572191],[4.733201177156199,52.10389630902],[4.733245319718684,52.10384517700894],[4.733255267983686,52.10383363733974],[4.73326521624354,52.10382209766967],[4.733309466882904,52.10377454356091],[4.733311482959184,52.103772424526014],[4.733307090002322,52.10372848352939],[4.733405813436932,52.103635013887285],[4.733509824661744,52.1035382478276],[4.733720132624797,52.10334004521975],[4.733981265966486,52.10309161884363],[4.734180413925821,52.102902719344236],[4.734370931164382,52.10272201394871],[4.734432007536304,52.102664530684415],[4.73449417753093,52.10260610967635],[4.734778521925715,52.10233582476512],[4.735112273535916,52.10201820166314],[4.735359484024507,52.10178564039782],[4.735557377375298,52.101597900113326],[4.735743544178923,52.10142050310002],[4.735917921806736,52.10125476135332],[4.736063582430125,52.10111553789112],[4.736204996761317,52.1009731808621],[4.736267563033192,52.10090827158506],[4.736331210844074,52.100842244713725],[4.736454508811272,52.100706043188794],[4.7365561942032,52.100595671357674],[4.736691254366399,52.10044041647363],[4.736821292464613,52.100286194342154],[4.736936892081346,52.10014021555243],[4.737059234618807,52.09998113299952],[4.737142848427163,52.099872764245944],[4.737169468447675,52.09983469295082],[4.73724998734355,52.099719314187524],[4.737329610851755,52.0996022496277],[4.737401895360279,52.09949103187049],[4.737425417526302,52.09945419280902],[4.737482692254718,52.09936447308154],[4.737567352639957,52.09922410259297],[4.737644536891197,52.09909098032777],[4.737718051952747,52.0989501977725],[4.737790798294228,52.09881005808999],[4.737863470157791,52.09865491654111],[4.737923582700862,52.098515372311965],[4.73798781789097,52.09836828263842],[4.738040233646283,52.09823107784642],[4.738096284010947,52.098077723158355],[4.738154978496614,52.0978950093559],[4.73817583532778,52.09782853913816],[4.738204281690832,52.097737896320055],[4.738239807921461,52.097606908203396],[4.738279883854992,52.097449007293974],[4.738284094084288,52.09743041577697],[4.738297722349474,52.09737026044363],[4.738320270071844,52.097311942871634],[4.738356600677815,52.09719185291723],[4.738399517152859,52.09698196149798],[4.738434932782177,52.09677503085561],[4.738461630535182,52.0965674410163],[4.73848321425709,52.096393457108746],[4.738503981113558,52.09619831032108],[4.738512820905832,52.0960406508624],[4.738527723175109,52.09587954630247],[4.738553224630663,52.09560848368603],[4.738583048036302,52.09532718023516],[4.738610363250773,52.09505075258162],[4.738618850837907,52.094966633151465],[4.73862858220583,52.094870206637296],[4.73864794901136,52.09468295276531],[4.73866428437891,52.09457691816894],[4.738689003796974,52.094431111670225],[4.73871814610018,52.09426206785885],[4.738735913161196,52.09414483275281],[4.738745560082731,52.09401797147697],[4.738752368421811,52.093923829855875],[4.738761668996638,52.09367794401538],[4.738770834740983,52.09343430449036],[4.738777912474126,52.09322294832122],[4.738785364151044,52.093016996151924],[4.73879149205565,52.09288824593231],[4.73879702172572,52.09281383549953],[4.738805821916047,52.092745339361755],[4.738809201089687,52.092720613242726],[4.738812692303015,52.09269520463132],[4.738829237178247,52.09259477082742],[4.738913778299918,52.09222891887272],[4.739008217414371,52.09182239541669],[4.739075466721313,52.09152179295264],[4.739127225127302,52.091246901606745],[4.739167212051826,52.0909847627857],[4.739187557403736,52.090802205982],[4.739193617655227,52.09075153645445],[4.739204773473568,52.0906573557472],[4.739218211245532,52.09058393251675],[4.739238106142004,52.0905120008822],[4.739249397014944,52.090475966048444],[4.739261895872438,52.09043611783803],[4.739288246618152,52.090331513357164],[4.739350138244268,52.090124476120714],[4.739453291677552,52.08983099169256],[4.73951502468424,52.089662009838875],[4.739568229428495,52.08951261148057],[4.739630550497147,52.089334195104364],[4.739672567016984,52.089234898782706],[4.739719231137258,52.08914413987291],[4.739873746178086,52.08886442859361],[4.739943278332168,52.08873808477017],[4.74003694839412,52.088572109315436],[4.740137190116577,52.08839460195281],[4.74022618099529,52.08823426326867],[4.740264803477896,52.08816467232391],[4.740275037596745,52.08814510709242],[4.740326846167501,52.0880536031806],[4.740362764327879,52.08799845949599],[4.740424037910833,52.08790926354268],[4.740477852171084,52.08783037213244],[4.740532402227743,52.087751035320615],[4.740601664695292,52.087661262915454],[4.740669886115147,52.087572833],[4.740726784698242,52.08749954910195],[4.740810625652567,52.08739139461735],[4.74087996566631,52.087307285087036],[4.740888341632979,52.08729712932523],[4.740987768110995,52.08717561371836],[4.741084195152251,52.08705766790646],[4.741196386421377,52.08691601645429],[4.74122319519587,52.08688834467787],[4.741243536894069,52.086865958510856],[4.741246887599147,52.086862273705194],[4.741250786811712,52.086857989691104],[4.741260480596567,52.086847499570794],[4.74127017437687,52.08683700944967],[4.741282424428139,52.08682631761853],[4.741301834736762,52.08680982264657],[4.741313955078493,52.086800028928984],[4.741321882814953,52.08679361879128],[4.74133322095072,52.08678444097629],[4.74136233439578,52.08676084449886],[4.741370336103875,52.08675436285706],[4.741398901618019,52.086728291592024],[4.741417870801945,52.08671000551683],[4.741438689603198,52.08668993191749],[4.741475128406914,52.08665514919082],[4.74152185908094,52.086615937686275],[4.741593979478846,52.08654725786196],[4.741644370124262,52.08650717651806],[4.741896229216354,52.08631218889245],[4.741898988410078,52.08631005580151],[4.742047618753633,52.086216177996214],[4.742097036677618,52.08618076503898],[4.742119491026647,52.08616460118428],[4.742239945819531,52.08608593887257],[4.742321153313815,52.0860375499322],[4.742406856446735,52.08599914454253],[4.742509608911294,52.08595310243505],[4.742653417973047,52.08588481408612],[4.742725711477666,52.08585049670176],[4.74286752190194,52.085783158909486],[4.743000109384044,52.08571896137406],[4.743072181783033,52.085689828805506],[4.743164744552007,52.08565725779603],[4.743180182494157,52.08565107732731],[4.743327614661547,52.08561171425634],[4.74342306889971,52.08558096548499],[4.74349297843797,52.085550014202326],[4.743723164217609,52.08545598647739],[4.743734749495309,52.08546101125915],[4.743866961063526,52.08541569507037],[4.7439434822719,52.0853896153049],[4.744009452369514,52.08536775632855],[4.744264105441768,52.0852918825718],[4.744436819957822,52.08525862425312],[4.744590002415287,52.08522912414435],[4.744765758440129,52.08519536060873],[4.744908833815003,52.08516759365962],[4.74491076510664,52.08516721768882],[4.745023823902689,52.085143835081205],[4.745120930468908,52.085125893248836],[4.745157286596967,52.08512300833215],[4.745251587358704,52.08510639036041],[4.745273147559544,52.085102597894156],[4.745574531491551,52.08506010662084],[4.745828554981732,52.08502681251907],[4.745966787189021,52.08501214081509],[4.746073896763158,52.085000661264054],[4.746243672021929,52.08498092964653],[4.74628594531365,52.084976440696316],[4.746337131987747,52.08497101148909],[4.746665284257621,52.08495212238506],[4.74680869883205,52.08494434490276],[4.746880023952865,52.0849457481139],[4.746928558404207,52.084947225212176],[4.747088524081652,52.084949217676915],[4.747128179971647,52.08494818368314],[4.747222225198219,52.084932012163854],[4.747281246177245,52.08491743008328],[4.747278944181124,52.08491210551376],[4.747270033824775,52.08489142005392],[4.747253483057674,52.08485306709973],[4.747239531155243,52.08482070545769],[4.747167212576126,52.084827566281355],[4.747161126031813,52.08481550691534],[4.747103615000411,52.08469909302591],[4.746970011462338,52.08445979152593],[4.746884546993678,52.08430670629771],[4.746868761322729,52.084252654922416],[4.747548906078655,52.084151814693755],[4.748268711683464,52.084021739981495],[4.748789463287496,52.08388572911794],[4.749131351452966,52.083797185533626],[4.749433721318673,52.08372457005608],[4.750589474133905,52.08352418730955],[4.751545985162262,52.083330799253524],[4.752140091763472,52.08319356035883],[4.752828697385159,52.083045528921375],[4.75333082016502,52.082927158611696],[4.754451435652005,52.08261517542246],[4.755009168719948,52.08245513030145],[4.755330153664016,52.08236161198543],[4.75570125345304,52.08224414694046],[4.756088304881772,52.08211062321949],[4.756396443781605,52.081997654503084],[4.756844276698363,52.081827332066766],[4.757545395546743,52.081530826882144],[4.758143651880287,52.081282197341906],[4.758530778527681,52.08114220346905],[4.758981001992146,52.080986410749325],[4.759849437622551,52.08071499811911],[4.760501842916437,52.080526371964744],[4.76084936329028,52.08040714749497],[4.761768737818563,52.08023769378346],[4.762335956530639,52.080145462990345],[4.763039088733549,52.08007654590509],[4.763682866459631,52.08003636968422],[4.764254191690685,52.08002486606064],[4.764888163570858,52.08002982444048],[4.766098114504548,52.08006526660494],[4.767019961398979,52.08009433585546],[4.767483395845546,52.08011614349791],[4.7686165990466,52.080207656409],[4.769752187672109,52.08031692272293],[4.771300945783713,52.08048322042279],[4.771572966620253,52.08051692757503],[4.772223899538734,52.080623637242574],[4.773068069330563,52.080776552411756],[4.773305964778279,52.08081492238567],[4.77328805173502,52.08059367290016],[4.773275727453425,52.08053710848599],[4.773260056742203,52.080341702931776],[4.77325948358329,52.08019318689128],[4.773231583355997,52.07955379629853],[4.773204896325515,52.07920659344552],[4.773153845955121,52.0785364141525],[4.773118374020827,52.07787599630238],[4.773094148116163,52.07734962506291],[4.773098656838466,52.07721244267131],[4.773135593067583,52.077193256443955],[4.773182706554717,52.077196737712306],[4.773237571497889,52.077208321822134],[4.77328431622834,52.07723761542965],[4.773312208686061,52.07730556821581],[4.773332391881697,52.07755265293061],[4.773396270067195,52.07881694244764],[4.773433450002188,52.07954354957457],[4.773440527853286,52.07979218380975],[4.773424835399825,52.08017145169517],[4.773403752860617,52.08037151048639],[4.773411893742026,52.08054266242468],[4.773472352178841,52.08071893149688],[4.773496934911674,52.0808369046067],[4.773907074368293,52.080924589957974],[4.774784912673793,52.081108335925606],[4.775576348079484,52.081286791255124],[4.776830509112135,52.08154188168285],[4.777985583314062,52.081762560801785],[4.779119786569957,52.08197826720457],[4.779689510806147,52.08208613430728],[4.779876332051065,52.082084436667806],[4.779920462169441,52.0820576993088],[4.779999969446164,52.082004179444745],[4.780253021633197,52.08174032943441],[4.780488890598833,52.08155998119287],[4.781004568732092,52.0811860269406],[4.78109454028492,52.08111368482991],[4.781231861747678,52.08099215072131],[4.781267760841351,52.08092672103909],[4.78138973216597,52.08053815663012],[4.781495144129862,52.080187257646514],[4.781549508300807,52.08005091555151],[4.781598778113934,52.079967577964325],[4.781661066838759,52.07989239668248],[4.781793897354571,52.07977892826935],[4.781939612523211,52.07968350239547],[4.781960144106537,52.079675518411435],[4.782051083495964,52.079639133566594],[4.782336810529666,52.079546223730844],[4.782547340053778,52.0795122498995],[4.782757468536339,52.0795079348818],[4.78289735992453,52.079519438208955],[4.783080612484673,52.07956082490296],[4.784373986115519,52.08025504943651],[4.784556637699571,52.08034137200941],[4.784673167996102,52.08035455140336],[4.785508039177605,52.08043252054116],[4.785634914192579,52.0804358647189],[4.785718171719947,52.080428200249955],[4.785749143806423,52.080403191213],[4.785854935288868,52.079478839794035],[4.785943967640439,52.078932808196136],[4.786109989188561,52.078628054452885],[4.786132956310657,52.0785472773003],[4.786174658450699,52.077832024835544],[4.786225189925958,52.076785150607854],[4.786242466724365,52.076041909761386],[4.786258903840985,52.07568695735535],[4.786246782579542,52.07539477710978],[4.786216924890403,52.07533709997832],[4.786202063563863,52.075248939238854],[4.786276248007572,52.075155839660866],[4.786301635287859,52.07511192664622],[4.786315766199144,52.074928638196184],[4.786313840707234,52.07474616669203],[4.786317993111546,52.07302493574549],[4.786299336160617,52.07289361196618],[4.78611769892455,52.07229946016976],[4.785972872915217,52.07189694589226],[4.785905849323875,52.0716745937524],[4.785866038933819,52.0715979903427],[4.785714277628895,52.07149474954314],[4.785661099980217,52.07143605435702],[4.785479203392656,52.071079190299336],[4.785346521709394,52.07075044094444],[4.785278862193663,52.070575722958594],[4.785283834217886,52.070422947813974],[4.785273472479736,52.07032582159459],[4.785048808555205,52.069679316061],[4.784772671370013,52.06884828732137],[4.784487709581039,52.068023504440085],[4.784195527195955,52.06719418963603],[4.783940871368564,52.06639472740769],[4.78400204228753,52.06629257426383],[4.784074225164233,52.06623901413747],[4.784240104056453,52.06621614308138],[4.784141358989197,52.065802527635036],[4.784126105188349,52.06574402577399],[4.784025426564078,52.06553138711889],[4.78397588192664,52.06552843698904],[4.783947220897496,52.06538268018755],[4.783929858024385,52.06529566567565],[4.783908970134633,52.06519103406661],[4.783895272015556,52.065125349513316],[4.78376290638326,52.06499164517629],[4.783464766523806,52.06417398229657],[4.783096906067548,52.06312046814293],[4.782924999523232,52.062567706204455],[4.782288122732393,52.060704762466486],[4.781661687347404,52.058828385795714],[4.780370153552357,52.05514283329341],[4.780042877665355,52.054225239893405],[4.779104815392523,52.051476274424466],[4.778936816116438,52.05100335058626],[4.778798701415104,52.05061451356027],[4.778453700575751,52.04961143445602],[4.778138352447141,52.04835863263462],[4.777973548383386,52.04793533008824],[4.77795710522767,52.047750984806214],[4.778040724705261,52.04756874797564],[4.778056258876417,52.04753487948578],[4.778322886719067,52.047009543399625],[4.778875924589923,52.04611087389701],[4.779515438707746,52.045175795884475],[4.780459480188537,52.04403285592234],[4.780835408557094,52.04361324024629],[4.781066897838017,52.043310626969316],[4.781452629347855,52.04281196265383],[4.781582763095462,52.042674211914054],[4.78159931839964,52.04263564731237],[4.782119917197361,52.041971390473854],[4.782213172078575,52.041865807480036],[4.782460652220293,52.041672930961624],[4.782563269388631,52.04152155538369],[4.783369380449612,52.040435409006605],[4.783956419312261,52.03970407229858],[4.78430163655835,52.03928698471118],[4.784664220761656,52.03877021470063],[4.785336939558783,52.03795032510549],[4.785752940144235,52.03746977794055],[4.786073025091116,52.03696806664241],[4.78633472425749,52.036581107000856],[4.786937308855797,52.03555232146622],[4.787062056470298,52.035161066723546],[4.787643011139482,52.034112392957496],[4.788110306092804,52.0332788576972],[4.788247941987605,52.033121363430695],[4.788435919388832,52.03268638597609],[4.788499151520884,52.03253480490139],[4.788611154864386,52.03233223829784],[4.788667368408563,52.03226960579837],[4.78872487851503,52.03210990602857],[4.788755462773618,52.032002201642186],[4.789024666304491,52.03148584226585],[4.789176595548367,52.03123943515091],[4.789306018299064,52.031041450489475],[4.78935581907578,52.030913170369594],[4.789401829839007,52.03085048571736],[4.790025648195255,52.02974808757379],[4.790501475727579,52.02892357418299],[4.790919503966758,52.02817067273206],[4.791112210377015,52.0278148120256],[4.791171711397803,52.02772343233111],[4.791224774347845,52.02767786046473],[4.791286017556979,52.02767457508689],[4.791344382548834,52.027668578616186],[4.7913679102124,52.02765251868951],[4.791639350125861,52.02718290378764],[4.792177555419093,52.02626522042155],[4.792698255103012,52.02534744616283],[4.792828253192202,52.02510362001847],[4.79288545307422,52.02496548854178],[4.79293735205217,52.02489743921548],[4.793002005791991,52.024856419206316],[4.793102928014366,52.02482726698271],[4.793168669078366,52.024814116175044],[4.793278118305604,52.024801185804144],[4.793399103884425,52.02479730183458],[4.793534563580765,52.02480068137758],[4.794225753844009,52.024868880158635],[4.795085583660089,52.02496578682723],[4.795932565588653,52.02504284837729],[4.796575482522051,52.02512607106798],[4.796694857778967,52.02513386045018],[4.796785342732302,52.02512262937717],[4.796921549587128,52.0250693823383],[4.796961514688507,52.02502194457398],[4.797106377611606,52.024753919821066],[4.797405512199524,52.02405612708872],[4.798145868808444,52.02282214114768],[4.79820521887955,52.022740644304115],[4.798316992485652,52.022661207297446],[4.798423899121525,52.02261949680844],[4.798541263380963,52.022558064193454],[4.798659300145349,52.02244540137706],[4.798691764282518,52.02241410451065],[4.798714242787303,52.02236657874382],[4.79871932153714,52.02231267418301],[4.79870376819479,52.0222766431498],[4.798664881542695,52.02224229315059],[4.798620427225188,52.022188140992824],[4.798630136327887,52.02211448526673],[4.798680849699757,52.02202485551574],[4.798790504148128,52.02177373046642],[4.798860604116633,52.021650041883134],[4.7992848888822,52.02107061657861],[4.799439498367247,52.020834995528226],[4.799507176476635,52.02067354349576],[4.7995279771454,52.02053163177064],[4.799689914586915,52.020292451628535],[4.799773438940293,52.0201445609958],[4.801175963582936,52.017728297192825],[4.801795796459391,52.0166716568009],[4.802698785133986,52.015123858687716],[4.803230382079638,52.01423755077716],[4.803292980700457,52.01424055776812],[4.803339446478959,52.01414011890255],[4.80339033367466,52.01414756192613],[4.803448405058364,52.014050775901126],[4.803410756058321,52.0140335113832],[4.803361442648122,52.01401708784066],[4.802593452529347,52.01392968522055],[4.801979769624475,52.01385023540023],[4.801643873619897,52.01380452236181],[4.800687252349431,52.01366134006785],[4.8002004164156,52.01357352448571],[4.799877916128891,52.01350630117942],[4.799709412933509,52.01347040591501],[4.799547028508017,52.01343558359812],[4.799520576921179,52.013429914743156],[4.799190937329372,52.013351867904056],[4.799032878903519,52.01329714832878],[4.798397153029756,52.013011736729396],[4.797568667177329,52.012431437719144],[4.796611934274092,52.01174712353573],[4.796185391356601,52.01139713414233],[4.795808672304331,52.01102492261504],[4.794672075768848,52.00962691297397],[4.794369662304606,52.00925507063435],[4.794067360871574,52.008875138533355],[4.793876463951609,52.00866205157243],[4.793617676953606,52.00840637674956],[4.793239821778921,52.008013477745166],[4.792822853490584,52.00760509980442],[4.792492033084317,52.00718097656695],[4.792230421361048,52.0069198912995],[4.792038849460329,52.006758930252424],[4.791590090778214,52.0064429670603],[4.790791034142318,52.00596523515237],[4.790370904068515,52.00568806217801],[4.789886825851315,52.005291916935406],[4.789467618328864,52.00494643385988],[4.78900850472875,52.00453603030516],[4.788750045184713,52.00425967288833],[4.788481851050324,52.003949109615526],[4.7880928607234,52.00352377881323],[4.787880798634624,52.00337259371323],[4.787469341647897,52.0032123029326],[4.785599177752679,52.003012206183975],[4.784258842180153,52.00283367040006],[4.78410152162412,52.00283645977754],[4.782986750133853,52.00299522968973],[4.781683000520404,52.003019989306615],[4.780964435339613,52.00306392892345],[4.779439579193512,52.0030695479754],[4.778655268641601,52.003021452704715],[4.777427800570266,52.00289825151844],[4.776613795771526,52.00278527255389],[4.775284101475821,52.0025770279759],[4.773981823622147,52.002281723985895],[4.773762822162202,52.00221586657425],[4.771495134708032,52.00170157637045],[4.770606149834158,52.00153692973189],[4.770382454644283,52.00149531000667],[4.770035232310971,52.001435065471185],[4.769627049688488,52.00136011867494],[4.769494748430396,52.001344144197084],[4.767923166278828,52.001362851142396],[4.766041293564895,52.00138888837301],[4.763974052934539,52.00134020946171],[4.763020748918373,52.00130010324845],[4.761053489131589,52.00118359147844],[4.760583110068307,52.00118378474633],[4.759500047077731,52.00125890921603],[4.75824245446386,52.00131781098714],[4.757780041449013,52.00137286475025],[4.757569835422238,52.00140859283614],[4.757394716078655,52.00143462107604],[4.757283819682694,52.001450206722375],[4.757086762986882,52.00148801771678],[4.757086742615226,52.00148843107332],[4.756467530649537,52.00160852501163],[4.756263008082906,52.00165416844612],[4.755159589286492,52.00193228136504],[4.75415262114943,52.00218573528679],[4.753350869760108,52.00234411021723],[4.752674162170813,52.0024132700243],[4.752431151734959,52.00242836353579],[4.751489134883093,52.00248687234892],[4.749047371190903,52.00255545351396],[4.749024153747573,52.00255571413466],[4.747901067199062,52.00256810864502],[4.746554047295339,52.00276661878786],[4.745823780730175,52.002913646714184],[4.745304944764608,52.00304204888385],[4.745124941371016,52.00310308698983],[4.744573291296586,52.00328523727562],[4.744302264988757,52.003397010958516],[4.744069344440952,52.003491914293875],[4.743621889699946,52.00371957135557],[4.742929761043199,52.00414992417845],[4.74242387103201,52.00449051055119],[4.742369575450909,52.00451897596276],[4.742177481047131,52.00465747719004],[4.742089961622408,52.00472058142464],[4.741443912151419,52.00518533396983],[4.740083063109898,52.006031757364184],[4.740014045294959,52.00607092682443],[4.739948108683314,52.00609842828173],[4.739475901374615,52.006322338205905],[4.73934254436693,52.00637912999531],[4.738988176477037,52.006511106077426],[4.738455313961452,52.00669872433889],[4.738234365911773,52.00676941352478],[4.737448298559955,52.00704191954127],[4.736817260696426,52.00726943621862],[4.7355985172906,52.00774806916242],[4.734624168349478,52.00814535148223],[4.734259486280713,52.008283548091285],[4.733806986023934,52.008450917845224],[4.733475691296529,52.00859648806868],[4.733038129974801,52.00883764264665],[4.732826321298017,52.008979380804135],[4.732673975228423,52.00903875603327],[4.732488840010065,52.00904941139364],[4.732250145640869,52.009037297502054],[4.732004300695641,52.00901615493519],[4.732004812998833,52.008981103061444],[4.731633059943544,52.00900420080688],[4.73143189093778,52.009015664048974],[4.731437569024727,52.00912535405577],[4.731564356136045,52.009120667254464],[4.731643428889464,52.009390759369225],[4.731157137164283,52.00947703527981],[4.730739142378495,52.00947470500166],[4.730414964737719,52.009431550120304],[4.729585079702972,52.00920939780726],[4.729015940159629,52.00898600129552],[4.728450313427654,52.00872217388649],[4.728042858843926,52.00849877847896],[4.727704230750524,52.00834947210455],[4.727522286179766,52.00824238954122],[4.727161974823481,52.008082173993415],[4.727017130800707,52.00802743135849],[4.726770910015683,52.007933469705],[4.726527430821908,52.00785120783447],[4.726421234750162,52.00784252219255],[4.726289975619919,52.00785436905082],[4.726284812635503,52.007809398077114],[4.725767393918322,52.007636611087975],[4.725167865533209,52.00750111130524],[4.724861303429979,52.00744995054949],[4.724687996528911,52.00744897525851],[4.724640874955193,52.00748376479151],[4.724598662168652,52.007580601889124],[4.724537192565387,52.0077977751065],[4.724553659371968,52.00786617963376],[4.7246213385019,52.007918693315865],[4.724570059805092,52.007939077983345],[4.724483814726923,52.0079601646142],[4.724191859673788,52.00780751545839],[4.724073659161726,52.00774884750163],[4.723704600659353,52.007565678562386],[4.723462984678632,52.007456455620286],[4.723114856126197,52.00736011391751],[4.72228167989061,52.00716845173906],[4.72194154733928,52.00712248675792],[4.721887822476316,52.00711139703025],[4.72103549665715,52.00693489802995],[4.720753206640606,52.00691712098645],[4.718224401800052,52.007040298921694],[4.716329279700139,52.007057377291005],[4.715242597895632,52.00706481431691],[4.715192928410024,52.00706409932093],[4.715155269037168,52.00706182597251],[4.715030506037953,52.00705805753649],[4.714980779253167,52.00705727920493],[4.714792341241999,52.00705630179472],[4.714604210280168,52.00704456671365],[4.714435889351044,52.00703076037299],[4.714387560053001,52.00702323948373],[4.714329353252252,52.00701589581037],[4.714267795942622,52.00700762512463],[4.714185071409726,52.00699579082334],[4.714104661416084,52.006985012354136],[4.713971498252918,52.0069664717474],[4.713930318918137,52.00696001624136],[4.713836859602814,52.00694629564703],[4.713760028466709,52.00693579807832],[4.713428351781538,52.0068860816942],[4.713427451417521,52.00688590576077],[4.713357944922091,52.0068755127736],[4.713356816921518,52.00687594674827],[4.71302370114423,52.00680188935847],[4.71268973976933,52.00672796100115],[4.712350281649525,52.00665256203157],[4.712322934054871,52.006625161369605],[4.71231468833269,52.00662627359795],[4.712200296469449,52.006662182528196],[4.71215499651677,52.00662086369238],[4.712082623158656,52.00655136370053],[4.712062326008742,52.00653163457426],[4.711978740719737,52.006450367298065],[4.712042808859318,52.006425297598014],[4.712028641221331,52.00638540666505],[4.712016039318609,52.006302479213936],[4.711997633410548,52.00623745034633],[4.71196799394458,52.00618432060895],[4.711866886926804,52.0060983236998],[4.711406890023898,52.005768523440935],[4.711254276700933,52.00565221796083],[4.711269300405281,52.005621743634514],[4.71136724511146,52.005500962477576],[4.711245479206162,52.005366335936365],[4.711240304492508,52.00532316184044],[4.7111287198829,52.005189492480945],[4.710940929218906,52.00499066863428],[4.710837948376096,52.004866036830016],[4.710753370746151,52.00477656550706],[4.710684500472739,52.00470785775141],[4.710489912018017,52.004573710664694],[4.710131116361747,52.00431907289065],[4.709598631823269,52.00389714854651],[4.709042762500469,52.00348137888713],[4.70779968451082,52.00257357072734],[4.707480005624858,52.002334430768016],[4.707110059022076,52.00204915853371],[4.707053622443929,52.00202546252971],[4.70695925708849,52.00200604150805],[4.706867654162617,52.00199652363995],[4.706827140273532,52.00197921145595],[4.70651777315964,52.00173293769469],[4.706129235191633,52.001425982575796],[4.70605866157264,52.001374340174756],[4.706022899343238,52.00133188762626],[4.705993248549716,52.00127059475177],[4.705957595706338,52.00122095207773],[4.705905952582261,52.00116941914988],[4.705783682124099,52.00106983868501],[4.705626628660198,52.00095927056453],[4.705367214949488,52.00078069612266],[4.704523748098139,52.000225715286824],[4.703888542834624,51.99976631604027],[4.702524994793978,51.998750789049915],[4.702025574198743,51.998365874439635],[4.701833882588205,51.998236223778335],[4.701660749771436,51.9981309496604],[4.701496092936074,51.99804280268256],[4.701316766309036,51.99796176072364],[4.700940449944613,51.99781215678624],[4.700827539017656,51.997768353885995],[4.70068983437446,51.997727102783884],[4.699923993752893,51.997530280632404],[4.69970634676874,51.997479573078806],[4.699594466699163,51.99746363914603],[4.699547859956795,51.997464265683305],[4.699484933646593,51.99748457139277],[4.699443260129823,51.9974483741433],[4.698813227128361,51.997416826579496],[4.698564356713312,51.99740817990792],[4.698484247569517,51.99740950883328],[4.698444851988456,51.99741467134857],[4.69819161962024,51.99750037690992],[4.697853397506277,51.997620639046154],[4.697070029743825,51.99742818981303],[4.696856588553654,51.997388287755776],[4.696643009341158,51.997357372934296],[4.696501913270644,51.99734755652998],[4.696294949948664,51.99735982438904],[4.696204385515784,51.99737816841042],[4.696065107223579,51.99743937079142],[4.696013059620025,51.99748406123952],[4.695966313517618,51.99761464033184],[4.69596288585107,51.99783605927703],[4.695952237916774,51.99786744727083],[4.695869186539332,51.997868766126935],[4.695536579096895,51.99789915229024],[4.695374412091743,51.997902459660416],[4.695300691721974,51.9977614651421],[4.695251538339012,51.99759398227855],[4.695202762981253,51.99740202610118],[4.695163208555611,51.99728252596869],[4.695115879906726,51.997220488117755],[4.695075142612722,51.997177652355596],[4.695020386753798,51.99714964594733],[4.694941376981732,51.997127887632104],[4.694751982989988,51.99710760112716],[4.693736178992598,51.997014935644415],[4.693529159614265,51.99699604438093],[4.693060636213165,51.99695707653038],[4.692760896583914,51.99693400568181],[4.692619488787382,51.99693317121141],[4.692512493342234,51.996936800220794],[4.692419069852702,51.99695542107502],[4.692349721098612,51.996978435527694],[4.692283474491231,51.99702490111631],[4.692224114838813,51.99707139834784],[4.69215055584339,51.99714337481229],[4.692094052343178,51.99722823352507],[4.692068873654963,51.99729410489265],[4.692081719495171,51.997355940324915],[4.692205518189406,51.99752249015823],[4.692551792787877,51.99796248710561],[4.6927106107014,51.99817639640438],[4.692885955743711,51.99821363638534],[4.692968336615316,51.99823968546598],[4.693009363813366,51.998290064963264],[4.693159447810633,51.99855948862752],[4.693284354513956,51.99877065340602],[4.693415322582487,51.999001430582965],[4.693467044332001,51.99909762408591],[4.693539390147083,51.99923216693135],[4.693730694396292,51.99964736447322],[4.693886686125052,51.99997322434864],[4.694003181793342,52.00024758135793],[4.694008766889053,52.00033280661953],[4.693994139871349,52.00038595895846],[4.693958952868681,52.00043047815181],[4.693885636227873,52.00048754529443],[4.693780963709625,52.00056359998798],[4.693711083093615,52.000620687266036],[4.69367557228739,52.00066351464175],[4.693661579480485,52.0007283556383],[4.693651618060276,52.00077452444859],[4.69364755747118,52.00079790639934],[4.693648559561129,52.00080184923777],[4.693611258433883,52.000806006795656],[4.693605678336637,52.000825002423866],[4.693503121679825,52.00083575040093],[4.693504956978086,52.000842313785334],[4.693511510361163,52.00086112924568],[4.693510241156581,52.000861274568535],[4.693572370560481,52.00108406848003],[4.693578409154791,52.001083447911476],[4.693871314705317,52.00205604114236],[4.693855561440136,52.00205766513457],[4.693878375689928,52.00213528878687],[4.69388198675632,52.00214757027747],[4.693869353716601,52.00214895198697],[4.693709178569506,52.00216653349643],[4.693714981652957,52.00218585686041],[4.693749178613341,52.00229961817462],[4.693741987385699,52.002300366787956],[4.693739390927042,52.002300639120065],[4.693743958502048,52.002316045235574],[4.693747294155123,52.00232730042632],[4.693747362516309,52.00232758845887],[4.693747443771303,52.002327984428504],[4.693747510464434,52.002328380312406],[4.693747577157567,52.002328776196244],[4.693747614587963,52.002329180896155],[4.693747637456496,52.00232958551026],[4.693747645763161,52.002329990038575],[4.693747639368958,52.00233040346869],[4.69374761827388,52.00233082580065],[4.693747582755943,52.00233123905922],[4.693747532537132,52.00233166121956],[4.693747467756454,52.0023320832941],[4.693747388413907,52.00233250528289],[4.693747279947627,52.002332927100085],[4.693747156780471,52.00233335781907],[4.693747033752318,52.00233377955045],[4.693746866899554,52.00233421001207],[4.693746700185791,52.00233463148608],[4.693746518910158,52.002335052874294],[4.693746308371782,52.002335483078525],[4.693746083410535,52.002335904209346],[4.693745844026425,52.002336316266785],[4.693745575379568,52.00233673714022],[4.693745306871708,52.002337149026076],[4.693745009240107,52.00233756074031],[4.693744697046633,52.00233797236878],[4.693744370430289,52.00233837492378],[4.693744014829207,52.00233876831966],[4.693743659228117,52.0023391617155],[4.693743274642289,52.002339545952125],[4.693742875494582,52.00233993010299],[4.693742476485876,52.002340305266195],[4.693742151815574,52.002340581994666],[4.693741827145267,52.002340858723144],[4.693741370167076,52.002341215567974],[4.693740913188878,52.00234157241282],[4.693740441926815,52.002341911196595],[4.693739941541003,52.00234224980883],[4.693739441294191,52.00234257943342],[4.693738926763514,52.002342890997014],[4.693738397670959,52.00234320247479],[4.693737868717402,52.002343504964955],[4.693737325340974,52.00234379838174],[4.693736767541675,52.00234408272506],[4.693736195458512,52.00234434900744],[4.693735623375344,52.002344615289736],[4.693735036869302,52.00234487249865],[4.69373445064127,52.00234511173234],[4.693733849990367,52.00234534189262],[4.693733249339457,52.00234557205291],[4.693732634404686,52.00234578415217],[4.693732019608917,52.0023459872638],[4.69373140495215,52.002346181387836],[4.693730790573392,52.00234635753664],[4.693730161632759,52.00234653359963],[4.693729532970136,52.00234669168739],[4.693728918869382,52.002346849860984],[4.693728290484767,52.00234698997352],[4.693727662239159,52.002347121098495],[4.693727019570683,52.00234724314999],[4.693726391603084,52.0023473562997],[4.693725778336363,52.002347460547576],[4.693725150646775,52.002347555722054],[4.693724523235204,52.00234763292131],[4.693724056282239,52.00234769308908],[4.69366962209063,52.0023540867146],[4.693662677431648,52.002354899695]]]]}},{"type":"Feature","properties":{"id":13,"statcode":"WS31","geometry_g":"polygon","gag_id":"1","hierarchie":"2","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.31.31_HH Amstel, Gooi en Vecht_p","sde_id":null,"land_code":"NL","inspire__1":"NL.31.31_HH Amstel, Gooi en Vecht_v","inspire__2":"NL.31.31_HH Amstel, Gooi en Vecht_l","wbh_code_o":"31","einde_leve":null,"laatste_wi":null,"admin_code":"11","waterschap":"HH Amstel, Gooi en Vecht","publiceren":"31","Aangemeld":1,"Actief":1,"KVK":34360267,"tnostatus":null,"CPT":38,"GMW":0,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[4.772805232213685,52.39489074544875],[4.772837881983432,52.39494979354983],[4.773129636531213,52.39466121802129],[4.773172420988404,52.39473850977901],[4.773177508745102,52.394747739609656],[4.773185377678485,52.39476195408294],[4.773202864270464,52.39479353780514],[4.773211492165339,52.39480917627522],[4.773272049813856,52.394796619737576],[4.773329676984058,52.394785611848434],[4.773418298200943,52.3948927916571],[4.773431994284812,52.39490635324218],[4.77346462798079,52.39492842549117],[4.773475596429479,52.394940561860366],[4.773482406371769,52.39495380913644],[4.773483778531646,52.394979916664816],[4.773486668139151,52.39499511194309],[4.773494046442233,52.395009755264226],[4.773505792674619,52.39502301912892],[4.773551322578125,52.39506762754211],[4.773592803862381,52.39511390465858],[4.773630141395896,52.39516129274935],[4.773646907530197,52.39518552069251],[4.773683494331988,52.39524469679994],[4.774245269709767,52.396255356410904],[4.774379554788766,52.3965223132011],[4.774444629868122,52.396656063949415],[4.774571776421948,52.396924107027786],[4.774694192965417,52.39719324895679],[4.774753646197821,52.39732780629742],[4.774869408747593,52.39759803707606],[4.774980346073344,52.39786880002062],[4.775087016260812,52.39814010701671],[4.775271555774597,52.398633148292575],[4.775457351623025,52.399268588438275],[4.775554388519779,52.399648533865545],[4.775633632692714,52.40000508211207],[4.775641082553491,52.400029558231765],[4.775653688028292,52.40005629891556],[4.775670654062187,52.400082226251264],[4.775692032428262,52.400106783264555],[4.775717309386215,52.40012993135004],[4.775746385315303,52.40015143630972],[4.775778956012228,52.40017098199991],[4.775814540339728,52.400188296302105],[4.775852907056931,52.40020309940041],[4.775893596721054,52.400215676528504],[4.775914743238005,52.40022083676984],[4.775958150565229,52.400229203664914],[4.776002723948216,52.40023505999489],[4.776025077685041,52.400236856044764],[4.776070653504686,52.40023821466594],[4.778721024326264,52.4002375329676],[4.778759356750907,52.40023885334372],[4.778778478217633,52.40024063227015],[4.778827168302175,52.40024847699482],[4.778852465431345,52.40025422425556],[4.778875656235635,52.400262486246504],[4.778896035469449,52.40027325934693],[4.778913214079903,52.40028598432098],[4.778926677822582,52.40030065852912],[4.778933938162071,52.40031445603292],[4.778937424820344,52.40035589840089],[4.778935924002319,52.40052198400334],[4.778936021041899,52.400530972234705],[4.778936118204863,52.40053995147893],[4.778936999566765,52.40061919185851],[4.778941314458006,52.40069664333417],[4.778939870433595,52.40073975906028],[4.778934555372795,52.400752305604406],[4.778713398854603,52.400751169713786],[4.778695465960721,52.400933555525306],[4.778920071300035,52.400926503357354],[4.778915630856035,52.40108621951786],[4.778915375384897,52.4010951969502],[4.778915134483239,52.401104183445064],[4.778911045734259,52.40125112085129],[4.778910901487344,52.40125841814869],[4.778910856870837,52.40126488009864],[4.778910915105349,52.401271342576756],[4.77891106137456,52.40127781449471],[4.778911281355577,52.401284268815694],[4.778911604064374,52.401290732651994],[4.778912000485051,52.401297178891326],[4.778912499633592,52.40130363464592],[4.778913086940382,52.401310090853215],[4.778913747712441,52.401316547437816],[4.778914511459204,52.401322995563454],[4.778915348918026,52.40132942609215],[4.778916288981556,52.40133587512319],[4.778917317450247,52.40134230663274],[4.778918419384386,52.40134873851955],[4.778919609477041,52.40135517085903],[4.77892088809832,52.40136157668995],[4.778922269694584,52.40136797406188],[4.778923724633087,52.401374380798195],[4.77892526785361,52.40138077900007],[4.778926914172592,52.40138715975587],[4.778928633957279,52.40139354088893],[4.778930427454406,52.401399904425],[4.778932323680039,52.40140627747629],[4.778934308434593,52.40141262401896],[4.77893636677834,52.40141896195176],[4.778938513404364,52.40142529135009],[4.778940763129114,52.40143160330236],[4.778943086443158,52.40143790664474],[4.778945498162946,52.40144419246554],[4.778947998041797,52.40145047873899],[4.778950571633394,52.40145674741541],[4.778953263016972,52.4014629987212],[4.778956013296941,52.40146924134161],[4.778958837289749,52.401475466365],[4.778961778951295,52.40148168300476],[4.778964764939597,52.40148788189661],[4.778967868843409,52.40149405443065],[4.778971046336839,52.40150021835476],[4.778974297543261,52.40150636468177],[4.778977637155787,52.40151249348722],[4.778981065297799,52.40151859578392],[4.778984566782851,52.40152470744484],[4.778988171737232,52.40153077469826],[4.778991850158065,52.40153684232879],[4.778995587598973,52.40154289228679],[4.778999443202387,52.401548897912704],[4.779003372149003,52.40155491290282],[4.779007375178892,52.40156088333451],[4.779011451798718,52.401566845156175],[4.779015616948291,52.40157278046906],[4.779019870504295,52.40157869826019],[4.779024212590103,52.401584589542544],[4.779028613696183,52.40159046315228],[4.779033103208778,52.4015963192403],[4.779037681251254,52.40160214881949],[4.779042318437403,52.401607951738924],[4.779047058723267,52.40161373721204],[4.779051872969299,52.401619487113784],[4.779056746112403,52.40162522832997],[4.779061707908835,52.40163093405019],[4.779066743665496,52.401636604198906],[4.779071867828871,52.401642256825895],[4.779077080398987,52.40164789193098],[4.779082352236264,52.40165349138923],[4.779087653831114,52.40165906403683],[4.779093102605303,52.40166461946425],[4.779098581383751,52.40167013010684],[4.779104163262178,52.40167562330294],[4.779109804284519,52.40168108983923],[4.779115533837069,52.40168652986652],[4.779121337473341,52.401691925335186],[4.779178667512499,52.40174488772954],[4.779183486455697,52.40174922657605],[4.779187073003656,52.4017523547406],[4.779190704124837,52.401755447182914],[4.779194438345305,52.401758522178866],[4.779198217385617,52.40176154347833],[4.779202099648534,52.40176453834434],[4.779206040931262,52.401767515537664],[4.779210027033839,52.40177043903457],[4.779214116359046,52.40177333609793],[4.779218250257506,52.401776197439],[4.779222458238861,52.401779014221546],[4.779226725486642,52.401781795357174],[4.779231052000847,52.40178454084594],[4.779235437781483,52.401787250687796],[4.779342925975818,52.401852594878676],[4.779347094330592,52.40185508789501],[4.779351729909718,52.401857799014365],[4.779356410185374,52.40186046542422],[4.779361149850755,52.40186308719998],[4.779365963352522,52.40186568239131],[4.779370821674076,52.401868223886],[4.779375739262078,52.40187072973367],[4.779380716363058,52.40187318196017],[4.779385752483948,52.40187561651382],[4.779390833547865,52.401877988383795],[4.779395973878214,52.4018803246067],[4.779401158905044,52.40188261612008],[4.779406403321556,52.401884862999324],[4.779411721820954,52.40188706531979],[4.779417026243966,52.401889222629165],[4.779422404749845,52.40189133537975],[4.77942782795216,52.40189340342078],[4.779433325237329,52.40189542690298],[4.779438837955744,52.40189739653779],[4.779444424756991,52.40189932161376],[4.779450041561415,52.40190120190475],[4.779455688369008,52.40190303741079],[4.77946137999622,52.40190481922008],[4.779467116196539,52.40190656530694],[4.779472897216451,52.401908257696995],[4.779478708362721,52.40190989631502],[4.779484549512089,52.401911490147995],[4.779490435481001,52.40191303028427],[4.779496351576221,52.40191451664841],[4.779502297674493,52.40191595822754],[4.779508273899035,52.401917346034516],[4.779514295066294,52.401918671157674],[4.779520345990073,52.40191996946998],[4.779526427040074,52.40192121401018],[4.779532509076304,52.40192238665322],[4.779538620992245,52.401923523498354],[4.779544777727567,52.401924606646716],[4.779550935079354,52.401925644859254],[4.779557122557264,52.40192662929964],[4.779563354854497,52.40192756004321],[4.779569602584592,52.401928436939286],[4.779575836361072,52.40192925983702],[4.779582129773265,52.40193002012626],[4.779588423678574,52.401930744466775],[4.779594718323431,52.40193141488436],[4.779601043217484,52.40193202254264],[4.77960739823749,52.40193257642876],[4.779613724487299,52.4019330852283],[4.779620080986234,52.4019335312686],[4.779626467611052,52.40193392353664],[4.779632825465611,52.40193427071812],[4.779639213446008,52.401934564127444],[4.779645572779319,52.40193480346309],[4.779651991748083,52.40193498019013],[4.779658367376486,52.40193510276814],[4.779664773130633,52.40193517157399],[4.77967117950084,52.401935195444],[4.780100434272041,52.40193475387276],[4.780115128608003,52.401934748294615],[4.78012983776031,52.40193473380283],[4.780389709287239,52.40193447453474],[4.7806361649114,52.401934217899694],[4.780636171595437,52.40193695020358],[4.780640072975988,52.40203839670416],[4.780881755648848,52.402041206893685],[4.780882810296776,52.40196412454152],[4.781029404748541,52.401964874816876],[4.781155493195452,52.40196080143902],[4.781335871310741,52.401933493723526],[4.781448871588923,52.40193338857939],[4.781491999905539,52.401933339492516],[4.781674931286334,52.40193315130673],[4.781689625745162,52.40193313654608],[4.781704320203988,52.401933121783635],[4.78180052501371,52.40193301133859],[4.781820759188951,52.401932997911366],[4.781848649274211,52.401932969680026],[4.78186885418575,52.40193294710732],[4.781888676091206,52.40193299447574],[4.781887243699533,52.40193781356604],[4.784259991993872,52.40194047783325],[4.785936903498076,52.4019348370095],[4.787037561229591,52.40194355551978],[4.788511323694419,52.40193685776412],[4.789954151805568,52.401934695266874],[4.793027361802905,52.40194700495822],[4.79326148675985,52.40194031486468],[4.793434981261756,52.402043437948485],[4.793636411430383,52.4021750120763],[4.793624453465447,52.402654177329396],[4.793619006673969,52.40309481785371],[4.793616029392163,52.403111942512076],[4.793625114482406,52.40327292210698],[4.793623407617816,52.40334988436476],[4.793626014591276,52.40341196660279],[4.793622155034059,52.40344339528483],[4.793620609882639,52.403497313844035],[4.793622089834507,52.403568935388044],[4.793616901884313,52.403595315303306],[4.793613439977932,52.40368152610953],[4.793615908000389,52.40372984745321],[4.793621261028882,52.40375038424607],[4.793618127150581,52.403751770626144],[4.793602231735362,52.403766799325126],[4.789422908792903,52.40375835641005],[4.789427417773039,52.40361364991562],[4.789274809714232,52.403611657371975],[4.783695093201189,52.40360697220426],[4.782077355681118,52.40360377924316],[4.7799634879547,52.403601949554364],[4.779963321016344,52.40372243815951],[4.779888169488681,52.40372794883689],[4.779801609479303,52.403737058973334],[4.779715918069304,52.403749265278975],[4.779631426391989,52.40376399423967],[4.77958965008668,52.403772480077855],[4.779507289779329,52.403791444114454],[4.77942664333241,52.40381294243858],[4.779375403874131,52.4038331805325],[4.779317291106808,52.40385955790086],[4.779262134001071,52.40388792770964],[4.779210164081318,52.40391855179539],[4.779161737575889,52.403951171346684],[4.779116487508373,52.4039857575209],[4.77909546366151,52.40400362504809],[4.779080857092985,52.40402181312337],[4.779064073971417,52.404048690141934],[4.779047944094662,52.4040879286355],[4.77899393748231,52.40409025779528],[4.778879761249613,52.40408998608089],[4.778748520788993,52.404089959153055],[4.778621468225284,52.40408994460775],[4.778537457172797,52.40408993538804],[4.778536697196668,52.40437099566442],[4.778533940192903,52.40473111068526],[4.778533524613106,52.405064121744196],[4.778532273685276,52.40540445348326],[4.778530221449187,52.40570897399007],[4.778854285656635,52.40571013534475],[4.778912876609506,52.40571013962779],[4.778909434374818,52.40646721176237],[4.778865976164832,52.40650381129585],[4.778867772239326,52.40660419539714],[4.77891350279261,52.40662902063452],[4.778927742597546,52.40665474471128],[4.778933344620108,52.40691252335061],[4.778931185304631,52.40720148546528],[4.778927293740588,52.40761876533376],[4.778913513424579,52.407691216486135],[4.778890759406679,52.40775468776311],[4.77890048244045,52.4078428892436],[4.778925363463034,52.407892107926116],[4.778940843665102,52.40796025140917],[4.778941516049191,52.40817782956309],[4.778931195092211,52.40839758021533],[4.778929035617695,52.40844889798674],[4.778908073522882,52.40848672751137],[4.77892343530167,52.408581707705814],[4.778938635699599,52.40865312127119],[4.778968540261282,52.40873361602256],[4.779009683627796,52.40879407192764],[4.779070779897648,52.408861326094474],[4.779114098274733,52.408895036691476],[4.779273822566215,52.40900200139081],[4.779472942037744,52.409070925237735],[4.779600141677759,52.409108409363114],[4.779762038136548,52.40914605328934],[4.779978148268703,52.40917638026829],[4.780221212004579,52.409186352963005],[4.780781414859049,52.40917917365392],[4.782013032654993,52.40917319458126],[4.783244351011741,52.40916327354449],[4.784235865468218,52.40916832425556],[4.784787107678662,52.40916399241346],[4.786688386352991,52.409179002010035],[4.787055927656152,52.40917194871181],[4.788920979848956,52.40919457621991],[4.78897781278872,52.409172735482045],[4.788998769395135,52.409133609952114],[4.789012421357308,52.40898566029365],[4.789041845843349,52.408750384785904],[4.789030060875258,52.408543437169826],[4.789196839713189,52.40853990215671],[4.789202477239268,52.408249609574604],[4.789038593663069,52.4082466880588],[4.789014233788054,52.40815258055789],[4.788997077825378,52.407652264839136],[4.789023100967658,52.40762315022804],[4.789144574904712,52.407604961248005],[4.790297284730984,52.40760137386302],[4.790295753573963,52.40784157172395],[4.790293938795865,52.40797627938144],[4.790258580068076,52.408193316208816],[4.790123535601031,52.40820203679178],[4.790132921711993,52.40839215619979],[4.790277412241731,52.408389208373],[4.790287771851439,52.409136543679296],[4.790340823980893,52.409185838929616],[4.792407330556241,52.409182876636436],[4.793620433560246,52.409190740675],[4.794014187202548,52.409187374227734],[4.794504111279801,52.40918982635277],[4.79449415977485,52.40927895257975],[4.795654906670445,52.40927760902265],[4.795656187955629,52.40940069304735],[4.799249214330432,52.40939717088908],[4.799250551991862,52.40973604084266],[4.799272879199355,52.41003043594354],[4.799234564419625,52.41050109343768],[4.793698934537721,52.41051450164317],[4.793625898459261,52.41052484008443],[4.793612160376351,52.41089752726562],[4.793618921597687,52.41104557962281],[4.793618109426389,52.411106197608966],[4.793611056059396,52.41119714478288],[4.793601475462464,52.411259516373754],[4.793600968438721,52.41151454887193],[4.793584042311922,52.41190684015324],[4.790708398689737,52.411903100910415],[4.787246603079785,52.411890572829954],[4.787179363144198,52.41190132312977],[4.785266143327103,52.41189875408198],[4.783105037335541,52.41189489039715],[4.780500616032106,52.411890497427585],[4.780461859234448,52.411886155610446],[4.780439424452395,52.411886615924466],[4.780080638286682,52.411890125515775],[4.779771462561597,52.411892108827765],[4.77961395001877,52.41189308967569],[4.779540918125642,52.411901639902666],[4.779415316942054,52.41191525910449],[4.779342187312487,52.411930926975266],[4.779245660582768,52.411951840401194],[4.779184160655239,52.41196935640837],[4.779084513497925,52.412004508199296],[4.77899651058897,52.412041517228246],[4.778908277405574,52.41209635662937],[4.778828710223265,52.41215479960029],[4.778751984153223,52.41222039335208],[4.778692428270976,52.41230927252938],[4.77863584592689,52.41239458984138],[4.778551790041394,52.412568933064584],[4.778360018739943,52.412940704002985],[4.778216500770857,52.413196790187875],[4.778051767524476,52.413509839067785],[4.777962205903535,52.41366097423745],[4.777267508430744,52.415015945885806],[4.776641747876592,52.416218639290015],[4.776436298046598,52.4166334684512],[4.776300320844615,52.41690385455934],[4.775577199326562,52.418293631347765],[4.774250733306411,52.42083836686904],[4.773943062379266,52.421428902389046],[4.773732336002571,52.42181883930766],[4.773683966539977,52.42191885561762],[4.773650829854663,52.42198046546628],[4.773620260250085,52.422048838358585],[4.773591915636784,52.42210516127583],[4.773557494141422,52.42215974505249],[4.773521050277484,52.422229777182594],[4.773488065725641,52.422288862228626],[4.773436567411922,52.422374832432176],[4.773394875926138,52.42245857952702],[4.773355652489276,52.42252016674609],[4.773285508466419,52.422650978765255],[4.773260590528998,52.42270926968288],[4.773232207282968,52.42276725503292],[4.77320289138745,52.42281933961473],[4.773136186404087,52.42295016037315],[4.77312384561374,52.42297819195401],[4.773088019843373,52.423062922028635],[4.773039795579839,52.4231586247186],[4.772960171016699,52.423307183031234],[4.772916187324098,52.42339495354028],[4.772868443518236,52.42347080483],[4.772720067016867,52.423512834873904],[4.772275770764816,52.42441417074749],[4.7724912986488,52.42457935936117],[4.772490341462914,52.42464831696155],[4.772509427534611,52.42470316899469],[4.772562490321173,52.424763266325314],[4.772609991124558,52.42480676147873],[4.772719150480561,52.42487895051447],[4.772859631885659,52.42494748207146],[4.773018183222626,52.425014893781594],[4.773335419398873,52.42514019029624],[4.773636957197236,52.4252749226321],[4.773888368244122,52.42537847710153],[4.774024020375841,52.42541484228346],[4.774099992084491,52.42541652062427],[4.774168997574807,52.42540845617238],[4.774266423739313,52.42539708741922],[4.774406765257067,52.42537402284968],[4.774749706128223,52.42532824197293],[4.775400597741847,52.425236478622274],[4.776102043014622,52.42514498141268],[4.776764521434292,52.42505802482571],[4.777746565525732,52.42492991819315],[4.777964783986856,52.42490012269635],[4.778560967317587,52.42482471491487],[4.780209395899157,52.424606078516575],[4.780680872726773,52.424546648437165],[4.781335556380657,52.424459644419024],[4.782594362338724,52.42428415424155],[4.783482796817842,52.42417216768211],[4.784238756832863,52.424073763905675],[4.785123177293122,52.423967676515204],[4.78614413839514,52.42383255293619],[4.787406624572713,52.42367131182792],[4.787753373056564,52.42362788540746],[4.788692514460224,52.42350183493572],[4.789994054198603,52.42332887285561],[4.790333082512377,52.423283018253784],[4.790901968861518,52.42320741098946],[4.790925650486026,52.42318136701863],[4.7910113784648,52.42317228042697],[4.791038349846851,52.4231890703025],[4.791135752510475,52.42317766062206],[4.792265656558127,52.42303709150743],[4.792916429205503,52.422950003983054],[4.79413990679847,52.42279205473464],[4.794845108267024,52.422704024692486],[4.795433471923722,52.42262849307759],[4.796353027078965,52.4225094203989],[4.79705440210935,52.42241661265589],[4.797494681319208,52.42235936012035],[4.798133684321748,52.42227692192431],[4.798905163861978,52.42217612914871],[4.799513009165668,52.422097096937954],[4.799828611725909,52.42205585350987],[4.800732527600607,52.42194144183363],[4.802544320487645,52.42170547217118],[4.80297282017494,52.42165525044479],[4.802980861809124,52.42163628115872],[4.802973541430054,52.42160057297783],[4.80292727739833,52.42156942725456],[4.802787607085043,52.42154257533929],[4.802663395006093,52.421522944720834],[4.802550461369298,52.421534278242326],[4.802118004486156,52.42158920641827],[4.801400944256807,52.42169267984338],[4.800937209458099,52.4217569670313],[4.800643287167696,52.42179094184497],[4.8006311279446,52.421801055704854],[4.800531648874628,52.42181537490402],[4.800359120817687,52.421861903604174],[4.800313856975893,52.421876320349035],[4.800240349707122,52.42189318562454],[4.800212758872801,52.42185083382442],[4.799889274361352,52.42188019344461],[4.799530801830251,52.42192835165054],[4.799203542989964,52.42196952745449],[4.798591771875525,52.42205091132098],[4.798342446700756,52.42208059014977],[4.797485335650388,52.4221857076007],[4.796803509410783,52.42227030168527],[4.796507382552762,52.42230924343383],[4.796497781867997,52.42231261987923],[4.796495023297635,52.422312228644714],[4.796409998991847,52.42231947124312],[4.796315185973158,52.422329855593915],[4.796233001150627,52.422328115557626],[4.796163884612053,52.42231983470463],[4.796086092152671,52.42231283171944],[4.796025513352035,52.42231252949829],[4.795960827677711,52.422295004334586],[4.795917918516312,52.42226834846821],[4.795896171533749,52.42224664255194],[4.795889376874896,52.42223143744051],[4.7958625799019,52.422199289595206],[4.79584584026928,52.422158195268764],[4.795820657137377,52.422099874354046],[4.795776862302379,52.42197663239726],[4.795747537202945,52.42190373973483],[4.795720352492892,52.4218335001263],[4.795701405087648,52.42179372493148],[4.795665579963841,52.42172212098644],[4.795655358721009,52.421678407802865],[4.795628035832906,52.42161743377869],[4.795617955820478,52.421563151782166],[4.795590882441239,52.4214747036498],[4.795577745543025,52.421444574262026],[4.795599622973958,52.42143996496096],[4.795585738244185,52.42140088909644],[4.795567922259931,52.42134797054576],[4.795560129407112,52.42131396718415],[4.795564780926224,52.42127499285658],[4.795573500029812,52.42123855538934],[4.795600642073246,52.4212084922951],[4.795621557465201,52.421183449184774],[4.795626108203366,52.4211520150164],[4.795640929543001,52.421118762686035],[4.795655771977254,52.42108613060903],[4.795666465011482,52.42105598537862],[4.79569751890222,52.42104230836075],[4.795751531491032,52.4210035804254],[4.795805459983955,52.42097114342359],[4.795842956500655,52.420937357126476],[4.795870217623647,52.42089724633486],[4.795891401720132,52.4208520541324],[4.795891972603929,52.42080929358621],[4.79586558681634,52.420782747107495],[4.795853575199144,52.420757521648966],[4.79586009732516,52.42073366493737],[4.795872518514276,52.42072491000965],[4.795905695129321,52.42070746870397],[4.795943025360121,52.42068501501293],[4.795994780049991,52.42066010774353],[4.796040440564607,52.420631404207704],[4.796088190435492,52.42060145280198],[4.796158717861729,52.420557782952955],[4.796247533730813,52.42053054388365],[4.79634243515438,52.42051214302392],[4.796404250236918,52.4205055397276],[4.796505444840122,52.42047710391075],[4.796616943597805,52.42044871936729],[4.796738817373331,52.42041286373045],[4.796825371358437,52.42040197054083],[4.796917931480259,52.420403680977905],[4.797029079786287,52.42040045981388],[4.797107332903548,52.42039581645105],[4.797160907792711,52.42038979187292],[4.79723315448986,52.4203725537361],[4.797305418007952,52.420354048375785],[4.797386049329279,52.42032425115731],[4.79749124132681,52.42030465131593],[4.797575935952682,52.42027990729368],[4.797699715922555,52.42025536666181],[4.797780394866981,52.42022306184927],[4.797842686601407,52.42018059033354],[4.797907153061112,52.42012933964722],[4.797923727916068,52.42010998172221],[4.797930076719821,52.420106795706104],[4.798027889452163,52.420023022586086],[4.798067792692351,52.41996283275378],[4.798086175845124,52.41992355810354],[4.798120326808559,52.41988469438777],[4.798147634227255,52.41983868738264],[4.798197964368344,52.41976597557263],[4.798241282262953,52.41975739195656],[4.798318201436826,52.41965396652766],[4.798370645743594,52.41962343536128],[4.798395810648374,52.41958707042256],[4.79839479089657,52.4195509887935],[4.798420719706177,52.41953566781249],[4.798453187528604,52.419512793712556],[4.798482090957244,52.41948823018453],[4.798495010543403,52.419475091469366],[4.798580050415443,52.41935894370485],[4.798604055389085,52.419315814220425],[4.798657587122866,52.4192542898072],[4.798676437936057,52.41921737215855],[4.798712612252189,52.419125715676195],[4.798739479257201,52.41911830844702],[4.798868874796023,52.418980576633246],[4.798915198061751,52.41895925417135],[4.798988370172308,52.41887985175169],[4.799026494338984,52.41882837081196],[4.799090106879425,52.41874264746987],[4.79913149526892,52.418726513285925],[4.799213040788202,52.418627532169445],[4.799222916089506,52.418594533458915],[4.799244726414824,52.41856605186438],[4.799502873356561,52.41864658597975],[4.79964706861999,52.41847997739028],[4.799409423120997,52.4184020618429],[4.799436868388794,52.41837540570382],[4.799463460992032,52.418362047102605],[4.799633322578853,52.41816207772127],[4.799705197914829,52.41808715327886],[4.799778489547648,52.41802179871151],[4.799821952734862,52.41801540823683],[4.799907846412897,52.417897583040904],[4.799889526411122,52.41788239292053],[4.79999863734308,52.41777067752648],[4.800082208529064,52.41766941398393],[4.800122516877125,52.41761821314021],[4.800213877357445,52.417518120547186],[4.800259120581438,52.41746609926202],[4.800419787370583,52.4172739474158],[4.800457918336431,52.41723059989856],[4.800564955311613,52.4171165369091],[4.800598082448029,52.417088057167724],[4.800616064296626,52.41707438604558],[4.800654640508122,52.41704844981785],[4.80069674759777,52.417024499359286],[4.800741720335744,52.4170028189794],[4.800789974202431,52.416983114137764],[4.800823330103228,52.41697175700873],[4.800840983286593,52.41696735951861],[4.800877211892731,52.416959962185686],[4.800914726336052,52.41695536637497],[4.80095286853218,52.41695331717379],[4.801048920918482,52.416959400716166],[4.801245531132325,52.41699323219735],[4.801532477096985,52.41708088778907],[4.802190125534868,52.417286521464554],[4.802325787125667,52.41733427769801],[4.802491885444908,52.41740809547715],[4.802525461392301,52.41740455824183],[4.802740837071569,52.41747358572211],[4.803004894858393,52.417581850410635],[4.803052451967935,52.41756925047357],[4.803105988920838,52.41758473055826],[4.803599850362271,52.41775729199991],[4.803907612153936,52.41784668906433],[4.804147600529523,52.41793347795095],[4.804230736758302,52.41796955015289],[4.804275806424189,52.41800076142573],[4.804296240916375,52.41801623988272],[4.804336948433777,52.41802595809855],[4.804397210834139,52.41802863626904],[4.804463388800694,52.41802301192193],[4.804525763435528,52.41801262333804],[4.804555004652775,52.41800563091519],[4.804592190467806,52.417989177570334],[4.804641062902054,52.417971568337606],[4.804669771260526,52.4179648518847],[4.804674294852347,52.4179550865391],[4.804830848643072,52.41788213916057],[4.804842926549648,52.41785010351183],[4.804888279392855,52.41780277258862],[4.804945021727088,52.41777687931499],[4.804978126530393,52.417772287510275],[4.805009258924036,52.417771254114434],[4.805121867070647,52.417636255155514],[4.805414082729153,52.41730120951226],[4.8054526307981,52.41726378533528],[4.805479833129016,52.41723738725472],[4.805500485150739,52.417237425735046],[4.805547761265995,52.41719129037446],[4.805561847560957,52.41715401570282],[4.805654498686653,52.41705984816853],[4.805768964490384,52.41693197595037],[4.805814222615677,52.41689059405181],[4.805886701029513,52.41685052307715],[4.805958913976864,52.416830673043485],[4.806120721735144,52.41679935372437],[4.806179168230665,52.41679130877005],[4.806233486448175,52.416799906709066],[4.806270328622184,52.41680840995006],[4.806316189861688,52.416817388806464],[4.806396640724405,52.41684411711725],[4.806518246415923,52.41688452860395],[4.806842999775589,52.41703118096803],[4.806920627389513,52.417043451884965],[4.806961474802492,52.41704246555753],[4.807166669696017,52.41711480550048],[4.807187534922417,52.41710753774519],[4.807232859697402,52.417110375031484],[4.807251621049463,52.417130194827486],[4.807290514232793,52.417160592793344],[4.807652487550978,52.41728839815769],[4.807699311168022,52.41727555909222],[4.807730318998899,52.417284015364686],[4.807737112510996,52.41730180824786],[4.807762862378399,52.41732341473711],[4.808287437078233,52.41750789862571],[4.808701307176616,52.417628791131406],[4.808985315703149,52.41772106986796],[4.8090775114142,52.4177638157758],[4.809333122508461,52.417845924857005],[4.809447668300233,52.41787128945301],[4.809674242224435,52.4179449066444],[4.809848273193881,52.41800894715705],[4.810314651741312,52.418152981448465],[4.810367173896647,52.41815181710587],[4.810391960571873,52.41813690138978],[4.810442619596087,52.41802368755139],[4.810589761856876,52.41771544329063],[4.810644624484874,52.417621384583995],[4.810782338513127,52.4173472743315],[4.810830316871828,52.41726821842987],[4.810855440836802,52.41722732986426],[4.81097901833876,52.41700920676041],[4.811066570401376,52.416810034132666],[4.811119371467998,52.416703661037154],[4.811567726841144,52.4167837633469],[4.812235102466497,52.41549240038247],[4.8117734287203,52.41540539622785],[4.811874869247904,52.41534164490409],[4.811896004384177,52.4153553458949],[4.811941097474399,52.4153306330155],[4.812067260371264,52.41525332230809],[4.81274022480094,52.41483833637982],[4.812609069322273,52.41475566980543],[4.812433513933013,52.41464780193854],[4.812782370570758,52.41443666547638],[4.813007753680124,52.414000210598],[4.813459674774326,52.414087998635175],[4.813928247643203,52.41318900885382],[4.813480244965176,52.41310004617301],[4.814200290345385,52.41170050809834],[4.813761970373553,52.411615161348855],[4.813987933358632,52.4112058590433],[4.814135316902535,52.41090255449655],[4.814677305399122,52.40985848660511],[4.81494836806845,52.40931960008628],[4.814936191137822,52.40928950440206],[4.814918180688326,52.40926843114191],[4.814897687803946,52.409262049749685],[4.814875998090477,52.409258439768585],[4.814862413283222,52.40924859553108],[4.815121567165475,52.408740335014755],[4.815481829226361,52.4087204048426],[4.816560222378602,52.40664964481915],[4.81663070678303,52.406513569084815],[4.817578169623523,52.40467885054419],[4.818760332427523,52.402398157292104],[4.819054883920574,52.4018351696952],[4.819365376393843,52.40123964136814],[4.819007634217334,52.401235247573105],[4.819027434405345,52.400306319504196],[4.819049565582732,52.3985799950417],[4.819066921606268,52.397226043887784],[4.819065047741539,52.397007732385696],[4.815938469421856,52.397002922208124],[4.811170015484934,52.396999897524445],[4.810921350565091,52.39722309324868],[4.810944314427994,52.397232192690126],[4.810909148126491,52.397260962042196],[4.810887262463881,52.397276287465615],[4.810871804343318,52.3972865661003],[4.810849922211911,52.397295968628946],[4.81081398927014,52.3973091135713],[4.810778128224838,52.39731559895487],[4.810703308440819,52.39732950731044],[4.810645676461123,52.39733683938684],[4.810571224722834,52.39734390979842],[4.809858352452851,52.39743166250392],[4.809685166716179,52.39745553443739],[4.809658838733682,52.39744978874217],[4.809639214113608,52.397449414431755],[4.809262154719949,52.39750234637713],[4.808949552318444,52.39754734109508],[4.808860794665231,52.39755736945181],[4.808173698663211,52.39764532776737],[4.808065276025465,52.39762767608901],[4.808011130903961,52.397606478942706],[4.807962558140796,52.39757038042274],[4.807926618748196,52.39752997563706],[4.807967159677839,52.397459997798244],[4.807999461462956,52.397415603640184],[4.808200272737345,52.39713961092676],[4.808581477762743,52.39662493160307],[4.808729319391139,52.39666386952197],[4.808801610527158,52.396577985398984],[4.809460072220954,52.39566911627442],[4.809569533524644,52.39551204149058],[4.809463544156801,52.39548052589491],[4.809523534373497,52.39539917404497],[4.809523664504673,52.39538918932181],[4.809520487544323,52.395380437762185],[4.809541024971108,52.395355794732644],[4.809552109257091,52.395340641568175],[4.809574067460082,52.39532647615692],[4.809586620157526,52.395317019377785],[4.809623851043972,52.39532481353805],[4.80970926315722,52.39522727284572],[4.809761909997736,52.39524264687309],[4.809859469621756,52.39508662826716],[4.809751728105051,52.39504982859075],[4.809779166827771,52.39501080286057],[4.809823655604151,52.39495315679247],[4.809858709800138,52.39491486022174],[4.809886094901334,52.39486527363213],[4.809939187929902,52.394798978332325],[4.80995372383815,52.394783877902945],[4.809973526641865,52.39477160730953],[4.809996737988047,52.39476835902092],[4.810058874224404,52.39476463531703],[4.810148488806733,52.39476507195943],[4.810206251868755,52.39477563532437],[4.810243462523577,52.394784957105934],[4.810314345403685,52.39479100957713],[4.810478498711607,52.39479317513302],[4.810895049193849,52.3947869879243],[4.811220027959742,52.394782852557384],[4.813171027145895,52.39479232422705],[4.813309106655344,52.394798709543835],[4.813955244538672,52.39479152065845],[4.81407642878766,52.394803566459544],[4.814233453180868,52.3947912310734],[4.815312657406794,52.39479011952386],[4.817238105354867,52.39479523050007],[4.81724002662051,52.39271943627653],[4.817272530938421,52.39269371704657],[4.817438255303577,52.39254906612575],[4.817602630440867,52.392431587351055],[4.817818979289429,52.39225709745248],[4.817860009096407,52.39221036980444],[4.817928187366248,52.39220142219905],[4.818058718854547,52.392203550484055],[4.818284054374339,52.39218712503014],[4.818348260394305,52.392204941509796],[4.818390901103728,52.39221466430208],[4.818421770587634,52.39223383955781],[4.818429160953666,52.39226240207383],[4.81842502383607,52.392435989011474],[4.818418981753076,52.39275460162734],[4.818451685555114,52.392778549172284],[4.818437002280511,52.39316608303701],[4.818419376809927,52.39322186605464],[4.818420270012151,52.39477235043806],[4.818449279068475,52.39478437150232],[4.818480242450811,52.394795224552695],[4.819877677236168,52.39479597649972],[4.820169264708835,52.39479380469177],[4.821691163939229,52.39478801276689],[4.822699844479655,52.394792824496896],[4.822771832328771,52.394787226695335],[4.822793616540794,52.39475521740692],[4.82280617430133,52.39468512814775],[4.822806788634007,52.39387303720969],[4.822798787694079,52.393585266381784],[4.822775821489896,52.393559002687326],[4.822783454759763,52.393418731840875],[4.822776440892326,52.3933580583003],[4.822792876740609,52.39328681910172],[4.822769862094844,52.39323437395732],[4.822759138361201,52.3928835592574],[4.822785585884467,52.39279214540354],[4.822782010965051,52.39276715150293],[4.822815821843391,52.392705486122],[4.822861083839425,52.39266290229085],[4.8229065733706,52.39260128354224],[4.822947852370183,52.39256343520285],[4.823008913984349,52.39249952683142],[4.823117191322933,52.392391839450326],[4.82321522936551,52.39232334358457],[4.823215471428826,52.392304317740106],[4.823350428674078,52.39223804676166],[4.823430527449424,52.39220427474053],[4.823498678698289,52.39219389475572],[4.823636662722352,52.39219455141199],[4.823894998867405,52.39220648475395],[4.823925992436615,52.39221376840756],[4.823955016392706,52.39222460182206],[4.823976647700146,52.3922356786933],[4.823991244769354,52.39225232145802],[4.824001464726186,52.39227005788348],[4.824031747756518,52.39322136285601],[4.824040302405574,52.39381887083088],[4.824028023394179,52.39392154201343],[4.824035337452665,52.394087085534046],[4.824010854396155,52.39442179737877],[4.82403935688601,52.39462643032733],[4.824036986911864,52.39477480618643],[4.824046631132368,52.39478818081897],[4.82407298780441,52.394792844928325],[4.824505273177438,52.3947922660249],[4.825066425864264,52.39480633603225],[4.825416926787433,52.394807684446434],[4.825481413151407,52.39481781386302],[4.825761218441794,52.394824847724074],[4.826050530635386,52.39481670078368],[4.826274321988131,52.394824420735404],[4.826442314596501,52.394820461708576],[4.82694765850181,52.39481905135486],[4.827173108757219,52.39482107025846],[4.827749935008376,52.394823796248815],[4.828563229561425,52.394818125980734],[4.828827608330023,52.39481237121315],[4.828970494261331,52.39482575335495],[4.829007452695508,52.39485541620968],[4.8290215995842,52.394896358978286],[4.829052095276126,52.39532142355072],[4.829021711969107,52.39532727517039],[4.829021317037308,52.39560597312779],[4.829024122814134,52.3956316732172],[4.829021188264726,52.39586470163938],[4.826239419834014,52.395862974011386],[4.826223716413288,52.39586277380967],[4.826219281056368,52.39586612319352],[4.826217516850973,52.39612159943384],[4.825779020084506,52.396118569093964],[4.824179001368926,52.39611857786874],[4.824178901996244,52.396371608373734],[4.824084274037127,52.39635498065038],[4.823917699649789,52.39636941377626],[4.823725036408237,52.396358035685886],[4.823600619493195,52.39635934912834],[4.82354007001635,52.396351439420606],[4.823415864031031,52.39633848118995],[4.823271328443325,52.39633209491942],[4.823194500849432,52.39634720594538],[4.823184040921155,52.39634827960087],[4.823173559491822,52.396351042842554],[4.823163494268956,52.39635689084968],[4.82315683459608,52.39636528960766],[4.82315369088201,52.396411435513656],[4.823163967892514,52.39658175660852],[4.823152641752145,52.39673863706199],[4.823148377246846,52.39682897917933],[4.823163544713732,52.396901339549046],[4.823172834547539,52.39698414260747],[4.823165736243309,52.397053556829135],[4.823173734127268,52.39715822082666],[4.823170562930037,52.39740741689231],[4.823168166206011,52.39759575187904],[4.823173592672343,52.397781257032975],[4.823158551578571,52.39788251281707],[4.823151987551204,52.39801845657464],[4.823170264156297,52.39804281041412],[4.823205743395532,52.398063920711486],[4.823409234176522,52.39820186210894],[4.823437079984723,52.39821436173],[4.82347274381697,52.39822213506856],[4.823500749514785,52.39822322104883],[4.823547452207888,52.39821678340928],[4.82368737269925,52.39822030724863],[4.82374828504596,52.398198720944926],[4.82379642933177,52.39820370445136],[4.823877509696032,52.3981860068215],[4.824140352610001,52.398182502076764],[4.825727992329651,52.39818433130357],[4.827620368801454,52.3981904373772],[4.828713522937918,52.3981917858751],[4.828751470341219,52.39819214454561],[4.82879895900041,52.39819789586765],[4.829210303573449,52.39820020284769],[4.830207734314053,52.39820263246107],[4.830681047453256,52.39819843101394],[4.830926636240868,52.39840010922733],[4.831423470549084,52.3984442971926],[4.831437896691158,52.39844449070856],[4.831442873369522,52.39843780024686],[4.831497476057225,52.398206677066646],[4.833324074896058,52.39837253518307],[4.833369822720816,52.398195484701105],[4.833389787827344,52.3981886395461],[4.833576321418711,52.39818811844783],[4.834596054692542,52.39820477096151],[4.834885262292495,52.398205463756376],[4.834908174817152,52.398200249875295],[4.834941679622911,52.39821636824572],[4.835020422990915,52.39826795624613],[4.835027727060186,52.39829258962554],[4.835026033794312,52.39848864836358],[4.835027501857258,52.39865975400726],[4.835031961887982,52.398825400084654],[4.835025277928375,52.39962487845073],[4.835020762549395,52.399633494577316],[4.835020661278588,52.3997595555232],[4.827448642603495,52.39975825858512],[4.827055019285057,52.39975706292281],[4.826325510769613,52.399754087248795],[4.823176236756034,52.399753297975174],[4.823179609188646,52.4000424933812],[4.823165119158186,52.40004381747835],[4.823148205393603,52.40004739493342],[4.823134018164793,52.40005378953314],[4.823120591800377,52.40006158983609],[4.823112793129719,52.40007054040062],[4.823106432090777,52.40008313783054],[4.823101560439572,52.400195748521014],[4.823108191632681,52.40031430992085],[4.823105209151473,52.400377775859255],[4.823100618283008,52.40043138361565],[4.823106230189366,52.40051343211013],[4.823116533808007,52.40059975412837],[4.823116630573808,52.4006775790989],[4.823110720274132,52.40071478700139],[4.823112839214478,52.40080459321837],[4.82310944801736,52.40115644556914],[4.823112506600366,52.40117243127877],[4.823117569302678,52.40118334848104],[4.823132966460998,52.4011904411963],[4.82315210523279,52.40119333649457],[4.823178835875401,52.40119430862018],[4.823179662588397,52.40124711529796],[4.823170027466127,52.401246790801046],[4.823169339515507,52.40132739821148],[4.826030038829319,52.401331152613444],[4.826029052898013,52.401371880192215],[4.831911662717499,52.401376009909434],[4.831934541620503,52.40139240286056],[4.831959177643906,52.401404597802454],[4.83197300278036,52.40140944405855],[4.832005500681137,52.40141690337526],[4.832039693031509,52.401419301564765],[4.832274975075466,52.40141450809576],[4.832312822436449,52.40141721093518],[4.83236148969273,52.40141716028235],[4.832401714207283,52.401414256918954],[4.832458060939111,52.40140525449994],[4.832473217308629,52.40140588271556],[4.832489929449232,52.401410176206205],[4.832501431014707,52.401417528073665],[4.832524673903365,52.40142129490426],[4.832550130711327,52.40142310379171],[4.83266802831954,52.40143190647638],[4.832915764570212,52.40141469511751],[4.83295541177322,52.401410953009226],[4.833017868292806,52.4014104003805],[4.833124103121838,52.40141651465272],[4.833212230449724,52.40141946136726],[4.833339162024112,52.401421448022795],[4.833505427855994,52.401418863919254],[4.833537986414091,52.401422665106864],[4.833579973195358,52.40142454204552],[4.833627056417221,52.40142308138918],[4.833653432616267,52.40140775480475],[4.833695923266379,52.40140458297331],[4.833754393666162,52.40140317547469],[4.833803700715079,52.401397779541036],[4.833912500667348,52.401399698849076],[4.8339594915464,52.40139739278615],[4.83428360118867,52.40139356739783],[4.834746978082985,52.40139937841472],[4.834811179449558,52.40140501651034],[4.834866286577129,52.401405830714324],[4.834926556565835,52.40140386480357],[4.834974369520678,52.40140043870931],[4.835008575212313,52.401400598167925],[4.835030534451163,52.40140716268214],[4.835033662732831,52.40142261811986],[4.835041845807872,52.40156190257965],[4.835036869719318,52.40180443022485],[4.835043294206244,52.40191385835275],[4.835041531592835,52.402055325385525],[4.835043868839224,52.40233476359044],[4.835039144299297,52.40255827441718],[4.835029259819377,52.40265223059394],[4.834983445190902,52.4026614541019],[4.834087357365034,52.4026548916539],[4.833770386144931,52.40266292916138],[4.833472988041317,52.40266153935179],[4.831114945885277,52.402662374969495],[4.831048704762233,52.40267514108161],[4.829639294836558,52.40267683817977],[4.829555562833411,52.40268758877562],[4.828709906327288,52.402692682344416],[4.828554515699239,52.40268076892963],[4.827411420259646,52.40268536686958],[4.827174341115393,52.40267829641983],[4.826983733304486,52.402686913104276],[4.826917776201183,52.40267827855011],[4.826742955614852,52.402665551838595],[4.826396771171196,52.40267699950895],[4.826095509193761,52.40267438650318],[4.825700745629625,52.402685754811635],[4.825634625918548,52.402687652351275],[4.825510305758,52.40267993568121],[4.825179801744853,52.40268312255194],[4.825123286621827,52.40269472714871],[4.825055210462137,52.40269678584784],[4.82479863207937,52.402693186219985],[4.824571238624846,52.40268829561422],[4.823640086565893,52.4026912571888],[4.823517647939422,52.4026869806777],[4.82320265763703,52.40269274342061],[4.822710878952808,52.402689214560304],[4.822677696877462,52.40269975179184],[4.822646408350696,52.402715061518684],[4.822533497715368,52.40288099348851],[4.822480193993581,52.402944938512434],[4.82241272309537,52.40305281074658],[4.822348448836657,52.40321421992283],[4.822236945120213,52.40342175337227],[4.822140926061633,52.403632946666875],[4.821978295829113,52.403960383499054],[4.821961796340181,52.403980895583715],[4.821935084692425,52.40402553583903],[4.821933683540854,52.404048978052515],[4.821897273297869,52.40412125412271],[4.821821320682885,52.404235997066465],[4.82180104578445,52.404288649084975],[4.821798134500367,52.4043118144572],[4.821749630627242,52.40441627162121],[4.821701502728369,52.4045119765432],[4.821598479800214,52.404699309551795],[4.821470178033784,52.40492249948859],[4.821453948215738,52.40496558089005],[4.821464079653833,52.40499039936237],[4.821502911138463,52.40502095422482],[4.821558924236935,52.405034020173126],[4.822133970674275,52.40503116524091],[4.82224747287767,52.40504529599233],[4.822548145404057,52.405037759829156],[4.822862401453509,52.40504135146543],[4.823656874490638,52.40504101723242],[4.824387583582537,52.40503730993933],[4.825354924650069,52.40504908301878],[4.826255278520505,52.40504513509695],[4.826314174619315,52.40503719922046],[4.826382980387447,52.40504163235417],[4.826448631677173,52.40503522034772],[4.82666892554243,52.4050121759186],[4.826922428066688,52.40501953173012],[4.827317120088821,52.40502242241403],[4.827767342861737,52.40501736827732],[4.827894991045798,52.40501693744133],[4.828133546891591,52.40501395614693],[4.82858366427904,52.40501607957433],[4.828617170635702,52.40502180993978],[4.828904393723478,52.40502375712571],[4.828931099773698,52.405036205107905],[4.829873501304933,52.4050283204551],[4.830705099980967,52.405015791478],[4.831109716017409,52.40503002265253],[4.831239092746416,52.405026513549274],[4.831289606854206,52.40501544409822],[4.831327992475027,52.4050363947732],[4.832832983042175,52.405038099584594],[4.832887070904049,52.40500562851916],[4.832947860258769,52.405034206191445],[4.833143530660378,52.40503628093273],[4.83331505011837,52.40503418898524],[4.833464563539347,52.40503385437801],[4.834110338569535,52.4050426323212],[4.834111903456561,52.405059716231335],[4.834386810493164,52.4050606309335],[4.834581587956929,52.40506008371457],[4.834585231206117,52.405054285677274],[4.83468735588375,52.40505368351381],[4.834753246610079,52.40505507832321],[4.834753744760302,52.4050151213952],[4.834853821548017,52.405020827881195],[4.834941086328115,52.40502635771488],[4.834997725747888,52.4050625904672],[4.835009558298633,52.40519207728177],[4.835007027081552,52.40539284138195],[4.835000355950244,52.40549303195969],[4.834920219855792,52.40552975955107],[4.834850163020797,52.40555600950586],[4.834835689809414,52.405557047506846],[4.834812114642125,52.40555970578603],[4.834644605203152,52.40563367515251],[4.834809117993473,52.406018171568164],[4.834832348347021,52.406043193747664],[4.834948740322454,52.406143167142524],[4.835075240276585,52.406255186086966],[4.835213305217388,52.40637555441086],[4.83525060309094,52.40647227388457],[4.835241585750047,52.40647770536956],[4.835127144226791,52.4065253730439],[4.835126170196276,52.40652452366248],[4.834989232289552,52.406469357147934],[4.834822382415386,52.40632512686478],[4.834737965787959,52.40625479106254],[4.834603827928242,52.40613546509063],[4.834599416768173,52.406130950671994],[4.834577945354571,52.40611454685344],[4.834120078099176,52.40592003766789],[4.834043572358176,52.405889499809824],[4.833742611700132,52.40600570695714],[4.832510799724544,52.4065176721845],[4.83219494621094,52.40664894992525],[4.831796333252075,52.40680997455726],[4.829779859308717,52.406813625509514],[4.829773575636008,52.40672318880995],[4.828305727217366,52.406725781842766],[4.828304539208241,52.406823463406575],[4.828164468110368,52.40682736823889],[4.827277890318729,52.40683031738395],[4.826935792882689,52.406825131859264],[4.826601378876229,52.40682711793004],[4.826523507583672,52.40683625837593],[4.826428300695954,52.40682986687547],[4.826031652865307,52.40683392947734],[4.825973437131429,52.40682972607478],[4.825160621299043,52.40683931815239],[4.825024591683413,52.40683391821291],[4.824353854274972,52.40683430143342],[4.823897683348764,52.40677862050146],[4.823890332929532,52.40674529514647],[4.823674477112839,52.40675021838521],[4.823677706448256,52.40680135572747],[4.82366211382984,52.406804849667],[4.822609941933183,52.4068378936725],[4.822584833789827,52.406823501554236],[4.822580045353222,52.406741430103374],[4.822545102655974,52.40673650906721],[4.822356492079352,52.406739178026136],[4.821290942071098,52.40675193320507],[4.821071840424309,52.40685789380102],[4.820868421247174,52.406954419987734],[4.819859574802385,52.408916198327546],[4.819566432396452,52.40948789405634],[4.819116080987373,52.41034181259471],[4.818657617381453,52.411220658186814],[4.818416373541664,52.41168677894797],[4.817953773394491,52.41258225598054],[4.817435851584512,52.41358241422668],[4.817170008667468,52.4140940534489],[4.817077728045343,52.41427374950783],[4.816564132802127,52.41439181073733],[4.816553294039052,52.414400269866825],[4.816471673835307,52.41441626125986],[4.816455641128796,52.41441487182551],[4.816445925737797,52.41441941772806],[4.816416258557958,52.414476912802186],[4.816129474174372,52.41503365679136],[4.815642219609761,52.4159744203478],[4.815504479206437,52.41623957537063],[4.815223992358569,52.416775837547156],[4.815248073615606,52.41680284492654],[4.815418542466849,52.41684248548357],[4.815395917676661,52.41689166471664],[4.815268425420212,52.416865964759246],[4.815232110310131,52.41693603713806],[4.814508399920758,52.41833297396898],[4.814273083391,52.4187890303561],[4.814070255693666,52.419178671707535],[4.81410469104666,52.419189407772045],[4.814005931823736,52.41938062813626],[4.813971340026257,52.41938197071956],[4.813923434114349,52.41946022829486],[4.813796532344966,52.41972679078795],[4.813788689310227,52.419761463223566],[4.81379304693704,52.419805254276106],[4.813804788482368,52.4198521099064],[4.813828940912821,52.419892985876686],[4.813892331546322,52.419955181718954],[4.813953726816517,52.41997961066295],[4.814017684141796,52.419998039216125],[4.81408915237034,52.42000745347837],[4.814205247338937,52.42000347617917],[4.814613301394387,52.41994960836291],[4.815098010648796,52.419887040724355],[4.8157187290728,52.419807017011635],[4.816532344997856,52.41969923959091],[4.817345991106992,52.419589946809246],[4.81856520367655,52.4194282560407],[4.82089215975374,52.41913147394219],[4.820949332598015,52.41910004767648],[4.820995417792014,52.419055122847816],[4.821006271210922,52.4190455399305],[4.821023953530879,52.419019218653304],[4.821053997987286,52.41896993003398],[4.821070719212025,52.418937142023374],[4.821085827199886,52.41890520911872],[4.821105838401618,52.41887608581547],[4.821129565756235,52.41885063824401],[4.821156423838565,52.41882521461174],[4.821188627474198,52.41879559230462],[4.821253766576482,52.418738885682245],[4.821285706196283,52.418711509004915],[4.821318182980339,52.4186869570125],[4.821341144643227,52.418669648569896],[4.821356992413808,52.41866263298214],[4.821393256190574,52.41865001670368],[4.821437059684709,52.41864325143783],[4.821785131376528,52.41862052040107],[4.82199268275568,52.418588975285644],[4.822190664312754,52.41856203978612],[4.822291395627463,52.418561351688275],[4.82237482465212,52.41857685769436],[4.822461898109807,52.418603984092044],[4.822556481738082,52.4186381476086],[4.822643451648221,52.4186734162058],[4.822798460262944,52.41873689758826],[4.822923323317686,52.41878165769614],[4.823004664617863,52.41881224360774],[4.82306913324936,52.41882300322526],[4.823133735015561,52.41882331078377],[4.823255575711875,52.4188076230731],[4.823369772655689,52.41879422667009],[4.823523950952967,52.41877521433294],[4.823712466658397,52.41874589446558],[4.82381515351428,52.4187405767342],[4.823904198012131,52.41876307380228],[4.823987110891996,52.41881924540954],[4.82411468965511,52.41894882479022],[4.824242165676957,52.41908654636528],[4.82430197148966,52.41916468166535],[4.824337658840108,52.41919970536891],[4.824483456576205,52.419239907652965],[4.824612336543818,52.41926840837912],[4.824790252199818,52.41925088220859],[4.825244296954356,52.41918890050131],[4.825558402245225,52.419147392806046],[4.825644097955676,52.419133859109536],[4.825691439840726,52.41910654526263],[4.825770570546859,52.41905890812341],[4.825831822007126,52.41901622830544],[4.825889428322536,52.418970025998135],[4.82591638685343,52.41894226497888],[4.825931336081543,52.418915624450925],[4.825982258610065,52.41880406808205],[4.826017192528917,52.418685155955366],[4.826060771067483,52.41856149433],[4.82609933000033,52.41844765041053],[4.8261265967491,52.41836070701703],[4.826163888521346,52.418284209815646],[4.826194357893679,52.41822409177906],[4.826245789051565,52.418150025252864],[4.826285627982204,52.41810335216177],[4.826338867655502,52.4180338688783],[4.826380732774528,52.41797575505778],[4.826438978874019,52.41795317509727],[4.826517730513364,52.417935257878376],[4.826660724525482,52.41793548506533],[4.826698147848917,52.41793677657445],[4.826862414222918,52.41794148113955],[4.826936907786039,52.417944089311895],[4.82710141280124,52.41794852504381],[4.827138953738203,52.41794981696954],[4.827139352640311,52.4179461698624],[4.827202483796155,52.41794759171312],[4.827236823839995,52.417948598849506],[4.827263083765795,52.41795040364438],[4.827289355255548,52.41795361955178],[4.827319247248956,52.41795881187267],[4.827347438114001,52.417964849976364],[4.827380870477237,52.41797370800264],[4.827410238756773,52.41798312202925],[4.827439035032772,52.41799476228749],[4.827491460903911,52.41801861156233],[4.8275045037651,52.418021755943485],[4.827535253878949,52.418023024652875],[4.827585374700395,52.41801989999904],[4.827813640185379,52.4179864382856],[4.828151599850199,52.41794196257484],[4.828321562502029,52.41792394420969],[4.828399843671503,52.41789897719283],[4.82846059068529,52.41784235376976],[4.82856373749074,52.417758392020595],[4.82857604703577,52.41773459679106],[4.828690068009362,52.41774063476256],[4.829619133933929,52.41763304215372],[4.829877152233053,52.41764709945534],[4.829954777541053,52.417682336699464],[4.830017366109405,52.41771752115755],[4.830092331226004,52.41772703209056],[4.830822974031805,52.41763870118869],[4.831346313192104,52.41756405232146],[4.831232523644931,52.417500937333266],[4.832100595640981,52.41741171544197],[4.832129173584519,52.417412694165755],[4.833081772078164,52.41731334548088],[4.834582508716805,52.417107409752546],[4.836077023976697,52.41691244498325],[4.836218370769724,52.416894749556974],[4.836456339150112,52.4168554384099],[4.836867559876074,52.416804771321864],[4.838130204628155,52.416644330577654],[4.838565409954137,52.41658656963369],[4.839731754371877,52.41643521079227],[4.840423633964606,52.41635205223379],[4.840600191750782,52.41630372234761],[4.840701507589197,52.41624328931354],[4.840760716223573,52.41614904815208],[4.840787565737705,52.4160827531619],[4.840800864221179,52.41600561946769],[4.84078955430055,52.415952522132656],[4.840763259350083,52.41590118018203],[4.840723467303395,52.415852517209956],[4.840667221776259,52.415801926870586],[4.840463174300912,52.41560890115799],[4.840402417785009,52.415579671521115],[4.840171290887873,52.415378853837886],[4.839550891731168,52.414859152235486],[4.839194005542392,52.4145638660816],[4.838993959640344,52.41440834381028],[4.838809923255682,52.414289493068985],[4.838719236391734,52.4142442517951],[4.838659633052227,52.414226593710815],[4.838571394353319,52.414223434922064],[4.838502512984871,52.41422860740584],[4.838402098496426,52.41424369997848],[4.83829307892595,52.41425694607884],[4.837930899147064,52.41429720402648],[4.837281551575501,52.414362830697925],[4.836971580135497,52.41439348653276],[4.836868223520316,52.41440397144615],[4.836623937440281,52.41443943428017],[4.835523998811193,52.41458128409824],[4.835262313712399,52.414616267656136],[4.835110602194828,52.414629986020024],[4.834983191382084,52.41465043237741],[4.834956135081423,52.41466312268347],[4.834292357038739,52.414744169459254],[4.8338622749199,52.414803448539566],[4.833818742291446,52.414816052648696],[4.833547567942269,52.414846808838256],[4.833195575970469,52.414882660029434],[4.833122175784214,52.41489055848584],[4.833078332976867,52.41489855918678],[4.833021674698773,52.414911128578666],[4.832014721334695,52.415042712396875],[4.831340161262532,52.41512467179052],[4.830688647439006,52.41521120247279],[4.830678328843119,52.41521823628889],[4.830078640067394,52.415298895425344],[4.829801996039329,52.415320000528375],[4.829771314387793,52.415231669163674],[4.828535639715685,52.41539183342178],[4.82857274348986,52.415489398765715],[4.828466329322954,52.415505362398235],[4.828105281195385,52.41555224656639],[4.828043923057838,52.41555851801082],[4.827944244498324,52.41556834742075],[4.827859876743388,52.4155762627536],[4.82781486989979,52.415499385439816],[4.827792300541772,52.41546733669858],[4.827775878418916,52.41543736616687],[4.827756805444808,52.41537172003684],[4.827738214627169,52.41526673714202],[4.827720728496558,52.41521627867356],[4.827709988448428,52.41519729093353],[4.827683692980238,52.41509601950153],[4.827639441233962,52.414933825706576],[4.827636036906231,52.414868208609725],[4.828583134328277,52.41474466641759],[4.82928604434654,52.414661759726854],[4.829830274617275,52.41458765638787],[4.829930764683731,52.41457152885684],[4.830288591661646,52.41453104120357],[4.831030830773466,52.41442448272077],[4.831057473880524,52.41441902644298],[4.831132055731596,52.41440946310588],[4.831448131342647,52.41437411467033],[4.831651901020883,52.41435130691777],[4.831674658148447,52.41441778756926],[4.832805485606634,52.41427835593664],[4.832777376798602,52.414196598386816],[4.833926225871547,52.414045709228475],[4.833942834631901,52.414053965566254],[4.834866692337545,52.41393362608822],[4.83601816521172,52.4137857218018],[4.836165942142848,52.41376311315514],[4.836961919727277,52.413661270319245],[4.836965444571296,52.413659120661265],[4.836985314304607,52.413656921082705],[4.837017409640516,52.413652612245905],[4.837059848493703,52.41364033442965],[4.837081895195072,52.413626164381675],[4.837090853833832,52.413610171977915],[4.837086784084807,52.41358518533903],[4.83707396939202,52.41356016708281],[4.837061032953374,52.41354495380586],[4.837044652224315,52.41353842459691],[4.837020491982261,52.41352158635504],[4.83617343353747,52.41282286700658],[4.835299902625446,52.41208162324634],[4.834487899099109,52.411397731622294],[4.833510492989219,52.4105736445148],[4.833265656185775,52.41036662827659],[4.832848388616668,52.41003462206173],[4.832804577957684,52.40997935854005],[4.832175193857489,52.40945067734206],[4.832480325124638,52.409305238803064],[4.833129421766201,52.409015763327645],[4.833500922391138,52.408848666663125],[4.833706899109039,52.408757649263336],[4.833892882766786,52.40867762892729],[4.833963574888325,52.40865155327043],[4.834017891141434,52.40862344179236],[4.834134221212238,52.40856864778808],[4.83417763475167,52.40855566552849],[4.834230480635494,52.40852641464176],[4.834283569790765,52.40850475046849],[4.834409887216443,52.40844804349264],[4.83451764839637,52.408389712921384],[4.83461158757273,52.4083402065964],[4.834838319615177,52.408243765609505],[4.834899344867186,52.408226757830555],[4.835524465034093,52.408724936551394],[4.836174599653655,52.40928917081092],[4.837159952634097,52.41010227206589],[4.837386495863443,52.41033398331929],[4.837525267000036,52.410432125543956],[4.837888560240008,52.410710873562195],[4.838722041636776,52.41140706450663],[4.839687169962735,52.4122099572899],[4.840566197307788,52.41295023210604],[4.841363007910279,52.41361260282796],[4.841620895593625,52.41383018666005],[4.841665784219088,52.41386833927793],[4.841716169109792,52.41387791843442],[4.841754598746421,52.41387721456892],[4.841812828577281,52.41385965110191],[4.84183758257664,52.41383916532027],[4.841853216694688,52.41381208554835],[4.841881350052278,52.413765425257154],[4.841901803064935,52.41372059904478],[4.841985829731513,52.41356553509363],[4.841998216259604,52.413506138688135],[4.842077093484146,52.41328334688696],[4.8422277254304,52.41306171196904],[4.84229490689957,52.41291613317608],[4.842309433692948,52.41286550955009],[4.842440834119873,52.41258206759373],[4.842453413128915,52.412542804389844],[4.842631241211202,52.41215894076176],[4.842713338035421,52.41195714949503],[4.843034107615293,52.411262222768904],[4.843052975906573,52.41122297939306],[4.843060747657187,52.41121365892486],[4.843059445820973,52.411194005901606],[4.842991436142758,52.41112744541223],[4.842492903351142,52.41071403138433],[4.842385352342199,52.41062180868293],[4.842290756760374,52.41055890033682],[4.842145656046298,52.41044753172524],[4.84203513330815,52.4103496867175],[4.84176558832437,52.41011349934789],[4.841713981034783,52.41004120757642],[4.841657168983583,52.409992969787275],[4.841517129059945,52.40988982044259],[4.841482791684714,52.4098604433561],[4.841475699527893,52.40985872999242],[4.841400148587998,52.40981176289527],[4.841325626794717,52.40974569269875],[4.841292080423131,52.409722511706505],[4.841214156600062,52.40965107809585],[4.841144413711411,52.409596776694045],[4.841074763862109,52.409533748648165],[4.84101415885531,52.40948571774826],[4.840956668110146,52.40943304556072],[4.840867348417089,52.40935026166375],[4.840513404656102,52.409050453824996],[4.840412535585119,52.408968820625766],[4.840239880002399,52.408818882143414],[4.840143347028174,52.40874204118247],[4.840079770807045,52.408682482857124],[4.840027392928637,52.408638435020755],[4.840010119777431,52.40861621859497],[4.840018146204082,52.40858629075672],[4.840344616120238,52.40842401578439],[4.840407683411681,52.4084069157355],[4.841016965511205,52.40813975450813],[4.84106607227312,52.40812968102196],[4.841098242631007,52.40812608146085],[4.84113287089345,52.40813291892446],[4.841176085469576,52.40814422687696],[4.841195733070732,52.40816579797678],[4.841239809634924,52.40818944995727],[4.841292904740179,52.408229015714305],[4.84132606149585,52.408269415308105],[4.841380212478065,52.4083473542759],[4.841437809231451,52.408392540027556],[4.841499882024134,52.40844898994985],[4.841533183852769,52.408480024993665],[4.841579868588815,52.40854015185442],[4.841631260040208,52.408592813637874],[4.841644837107309,52.4086097190638],[4.841656933934295,52.40861913093884],[4.84167101238817,52.40862634995729],[4.841618498838242,52.40875193557321],[4.841621713788569,52.408761773906896],[4.843163777139367,52.41005253867013],[4.843173113349884,52.41006061652043],[4.843191251683571,52.410059225832725],[4.84349873177091,52.41007186294399],[4.843512241013015,52.41008241355255],[4.84351916024776,52.41009343722698],[4.843530713379994,52.41010410468391],[4.843559031002844,52.41010676915332],[4.843576381820607,52.410104880471025],[4.843593225901767,52.41009877424352],[4.843604340907246,52.41009124863768],[4.84361044192224,52.41008032066088],[4.843612008922438,52.410073587097834],[4.843608089603928,52.41005642962684],[4.843630004636529,52.41001074698442],[4.843838627791401,52.40956845004252],[4.843891696679173,52.40947025146269],[4.843904257776705,52.409467028567164],[4.843931990962348,52.409393870271295],[4.843967662067522,52.409319364265315],[4.844071602700601,52.40909587702978],[4.844189137496294,52.40884592938464],[4.844274043392113,52.40865847616548],[4.844354520159354,52.40848460992264],[4.844362059996584,52.40845457171697],[4.844359496736576,52.40844307372557],[4.844347974481344,52.408435902691394],[4.844331835016369,52.40843253924722],[4.844378729337644,52.408334312139594],[4.844813007519055,52.408142041625105],[4.8451476061842,52.40799112413718],[4.844889381253147,52.407767632232776],[4.844848086052403,52.4077351414876],[4.843792947953245,52.40685569761263],[4.843778498764806,52.4067696821818],[4.8437631224905,52.40674967698054],[4.843750205787981,52.40673642381774],[4.84373244431382,52.40672397529424],[4.843711533823988,52.406715457911375],[4.843642913609552,52.40669435458413],[4.843619365008172,52.406685258856655],[4.843598510488905,52.40667338031924],[4.843582223016371,52.40666177439052],[4.843469819474944,52.40656801138689],[4.84317478553947,52.40633242002424],[4.843076313155322,52.406255572506865],[4.842970064556406,52.40616577388767],[4.842889698919704,52.40610080122593],[4.842782650709375,52.40601155599542],[4.842762065738253,52.405995723967415],[4.842509693046128,52.40578223891324],[4.84235852661064,52.40565627348456],[4.842253770057851,52.40555890445037],[4.842144414799042,52.405461496185936],[4.842027121443778,52.40536553425304],[4.841850316330802,52.40522151075146],[4.84183572463855,52.40521309402148],[4.841822327181238,52.40518883750629],[4.841786044186558,52.405159020101976],[4.841759878095062,52.40517045778554],[4.841440659243571,52.40531192764862],[4.839710085331968,52.4060870209379],[4.839593161381095,52.40613744964571],[4.838928480837635,52.40643548953216],[4.837731701168644,52.4069681628999],[4.837620852469615,52.40701300953171],[4.837607594816395,52.40701672285268],[4.837575261799832,52.407032292300144],[4.837352899675573,52.407163639980745],[4.837063624602557,52.40733530084563],[4.836940570300886,52.40740550732029],[4.83683477565932,52.40746924183384],[4.836733356429941,52.40752381117505],[4.836666639506017,52.40754839702327],[4.836606476142976,52.40756122145696],[4.836552848476798,52.407564908805526],[4.836514226229101,52.40756735368121],[4.836458547673735,52.40756578264854],[4.836407179666629,52.40756029502716],[4.836357989685728,52.407552202095836],[4.83629178059441,52.4075335593536],[4.836240639220796,52.407511032071966],[4.836195898690628,52.40748549670339],[4.836169197624791,52.407465276056946],[4.836135016251294,52.40743915165355],[4.836108767221535,52.40741685694167],[4.836081608287878,52.40739564550014],[4.835883100043127,52.407226310689474],[4.835418756314425,52.406843610378644],[4.835404242253725,52.406764109640676],[4.835402628350143,52.40676271802025],[4.835409169178459,52.40675908151215],[4.835529043280327,52.4067071068025],[4.835639142553116,52.40673556216753],[4.836103398360726,52.40712657481628],[4.83635473557286,52.40733519740021],[4.836398848997671,52.40737216212355],[4.836439348234668,52.40738895066041],[4.836487753880584,52.40739392118762],[4.836522640184495,52.40739408335751],[4.836559525219688,52.40738950931225],[4.836602406379005,52.40737191301225],[4.836765077594397,52.4072807249802],[4.837441901586979,52.4068897580236],[4.839484693610399,52.40597335443303],[4.841289566441997,52.40516723982741],[4.842417167410973,52.40466368309049],[4.842644437621291,52.40456596241324],[4.842685126136934,52.404539824528015],[4.842699945781626,52.40450576641953],[4.842701454695167,52.40449538359524],[4.842701448462349,52.404487519345174],[4.842701468891978,52.404485856717955],[4.842700967480432,52.40447882604623],[4.842699319921401,52.40447179010632],[4.842696540799199,52.40446475795285],[4.842692729660772,52.40445799967379],[4.842414426284789,52.40421488856482],[4.842405587175559,52.404204736772016],[4.842397574365645,52.404194310160506],[4.842391049089303,52.40418361177159],[4.842385206816331,52.40417234131179],[4.842380654091018,52.40416136438833],[4.842377342522484,52.40414983593669],[4.842375070700141,52.40413859987276],[4.842374051412083,52.40412708196356],[4.842374328739593,52.404115282411915],[4.84237561653295,52.40410376612573],[4.842378164369664,52.404092552228214],[4.842381861988871,52.40408104702512],[4.842386702097061,52.404069843669845],[4.84239258559175,52.404058636125306],[4.84239961179487,52.40404771245389],[4.842407648459213,52.40403707204727],[4.84241685721878,52.404026715648584],[4.842426973359077,52.40401666001551],[4.842438111338554,52.40400715732935],[4.84245017139211,52.403997955475894],[4.842454455975254,52.40399488341593],[4.842466722844053,52.40398678799678],[4.842479790810059,52.403979271471826],[4.84248200872473,52.40397815821015],[4.842628812033354,52.40391226140075],[4.842897222491396,52.4037918826655],[4.843387135253328,52.40357253240806],[4.843507291081186,52.40351887923088],[4.843635881794055,52.4034615976621],[4.8437450868264,52.403412954060414],[4.84381136751391,52.40338236745062],[4.843910314515407,52.40333618420516],[4.843958720626981,52.403310854217374],[4.844009119779033,52.4032835650463],[4.844058835199927,52.40325570649483],[4.844107734644915,52.40322727795758],[4.84417364883107,52.403189382478956],[4.844372375193681,52.403075700331556],[4.844643141072987,52.402919359734966],[4.845133881175592,52.40264048063261],[4.845291897573112,52.4025521626326],[4.845356403525117,52.402515104896814],[4.845641995971719,52.40235098359069],[4.845901604764204,52.40220387339115],[4.846277913566127,52.40198933071407],[4.846409110619613,52.401914082675205],[4.846545024556765,52.40183999745578],[4.846670809600482,52.40178553091471],[4.847021257048671,52.40162703190751],[4.847348726001051,52.40148135143602],[4.847438662974529,52.40144075946504],[4.847998457000102,52.40119109653069],[4.848189200495151,52.401108819560974],[4.848236882612358,52.401088248006666],[4.848291483243742,52.4010618209757],[4.848487789288938,52.40095822308241],[4.848631146183069,52.40088416932349],[4.848768463273402,52.40081738593769],[4.848809110139751,52.400796512544424],[4.848851267070327,52.40077591563066],[4.848894107654573,52.40075588803282],[4.848937720160218,52.40073642116367],[4.848982045597745,52.40071753272956],[4.849026922672812,52.40069919503393],[4.849065216930653,52.40068448540366],[4.84918405366059,52.40063418188292],[4.849349487899848,52.400567813134685],[4.849458959566607,52.40052393794871],[4.849471069140328,52.40051893285483],[4.849505671797641,52.400504484942545],[4.849579784653804,52.40047196236141],[4.849669464488035,52.40043163716423],[4.849791113005392,52.40037714854676],[4.849925594126739,52.40031737033805],[4.850017564338038,52.4002759318059],[4.850111506590252,52.4002342235258],[4.850155950973405,52.400213924126355],[4.850202339221648,52.40019447836495],[4.850309188265338,52.40014862220286],[4.850401096825095,52.40010493617298],[4.85049539087148,52.400063238171086],[4.850617261344821,52.40000845311929],[4.850782665370318,52.399934496631666],[4.850898653294351,52.39988250678479],[4.850970453966844,52.39985025148533],[4.851184419952947,52.399754323670685],[4.851312656373624,52.39969787702691],[4.851371058957797,52.39967145679214],[4.85138766617438,52.39966507875692],[4.851404483671107,52.39965953752523],[4.851421882023732,52.39965456514256],[4.851439725739896,52.399650430626465],[4.851457900647344,52.39964685484204],[4.851476538654329,52.39964386534879],[4.851495284314311,52.3996416942188],[4.851514361059108,52.39964009080732],[4.851533530440256,52.399639332654075],[4.851552472479889,52.39963914868146],[4.851571757149517,52.39963979312222],[4.851590796419758,52.39964129028021],[4.851609829066223,52.39964333565398],[4.851628263692375,52.39964623215089],[4.851646603540613,52.399649676465145],[4.851664569126022,52.39965369429632],[4.851682068927077,52.39965856384903],[4.851699004114085,52.399663952132386],[4.851712022889433,52.399668783447396],[4.852197101057421,52.39979625466812],[4.852305665400967,52.399825945942766],[4.852389083664854,52.39984880079912],[4.852389764300237,52.39984840841405],[4.852397062656893,52.39985120058445],[4.852417264934411,52.399854958768664],[4.852449486921323,52.399856245673064],[4.85247893697946,52.399854670959925],[4.85250189405862,52.399850532403505],[4.85254734800063,52.39983411934616],[4.852672176933515,52.39977743116365],[4.852935712988526,52.39965725041052],[4.853278225496574,52.39950649846149],[4.853792031688206,52.3992775062765],[4.853920976360097,52.39921797723113],[4.854208932901219,52.39908987758989],[4.854323755846028,52.39903771737848],[4.854485607696349,52.398966310232304],[4.854762309461342,52.39884159192761],[4.854910901141307,52.398780433470684],[4.85506319981761,52.39872499866094],[4.855224773486734,52.398675348441294],[4.85538251975756,52.39863483926808],[4.855546415997734,52.398599741111745],[4.855672047979048,52.39857839295436],[4.855766190016039,52.39857196674657],[4.855790930922465,52.398561121757545],[4.855754978408879,52.398387003827004],[4.855768467175238,52.3983734749663],[4.855771950846864,52.398377031743465],[4.857199212696179,52.39774678392047],[4.857237057668193,52.39770776694508],[4.858976131026134,52.39692303700184],[4.859040411395981,52.3968958572787],[4.85910325586354,52.39687450412654],[4.859148262843357,52.39686554632856],[4.85922855341795,52.39686340566666],[4.859281679389441,52.39685864530562],[4.859315769900659,52.39685214635357],[4.85935674207538,52.39683900919648],[4.859390562734092,52.39682308992636],[4.859630670736931,52.39671539963598],[4.859589260550123,52.39667894987719],[4.859650592235313,52.3966525655808],[4.859690279597758,52.39668686857656],[4.860050258774215,52.396529982363],[4.860389461627447,52.39637917719415],[4.860508395109512,52.39633226910386],[4.860729806107766,52.39626441674852],[4.86075536658578,52.396270947563394],[4.860820981559892,52.39624627138455],[4.861000941239699,52.39621460746917],[4.861110284431495,52.39617348019114],[4.861244554849096,52.396156325806714],[4.861309837964814,52.39615462939517],[4.861412667413794,52.39614485791478],[4.861499743790638,52.396145244415415],[4.861626217443343,52.396149966970455],[4.861787910431842,52.39616815638401],[4.861944068869638,52.39619466160477],[4.86209330746927,52.39622860470753],[4.862157032834575,52.39624803096891],[4.862212599565041,52.39626659416804],[4.862288296217673,52.39629744283794],[4.862325075102027,52.39630454431379],[4.86236864048485,52.396303074635064],[4.862394561735692,52.3962965296133],[4.862421883970818,52.39628582050743],[4.862449571220849,52.39627158085248],[4.86248336443495,52.39626529537785],[4.862657913908823,52.39634680486119],[4.863751169224426,52.39686433464491],[4.866202876699305,52.39802786770753],[4.866223552486044,52.39802386925272],[4.866353455717542,52.39808482873922],[4.867692250503308,52.39872216425171],[4.867727562283219,52.39873935076323],[4.867733369494547,52.39874281851061],[4.867843042772329,52.39879389105512],[4.868011482845751,52.39886930806284],[4.868215037851146,52.39897378304931],[4.868414883077507,52.3990613715666],[4.868520534377839,52.39911726122973],[4.868631013572744,52.39910086608729],[4.868642924347792,52.39909128344241],[4.868956506841904,52.39854342795158],[4.869169462039884,52.39818061023763],[4.869358394859383,52.397851417857794],[4.869460840372751,52.397677217142245],[4.869509061135128,52.397595523199],[4.869529185140935,52.397559471699104],[4.86953739749397,52.39753061220683],[4.869525795628601,52.39751128293451],[4.86943187446354,52.39746269847304],[4.869224975578021,52.39736559878201],[4.869161583071381,52.39733866410024],[4.869129340064426,52.39731918159847],[4.86908532167853,52.397297751181256],[4.86903986510679,52.3972686389789],[4.867594931101324,52.39656708528424],[4.867608008723528,52.39654941894615],[4.86762127927066,52.396546628063994],[4.867635372797071,52.39654757966542],[4.867680313443405,52.39655663863857],[4.867718888483124,52.39655975578331],[4.867746229597648,52.39655987569058],[4.867765629866316,52.396553067217816],[4.867778600360374,52.3965432825869],[4.867788494877408,52.39652266329892],[4.867793590495539,52.39649906601959],[4.867779488299633,52.3964675113469],[4.867762076405064,52.396443815366275],[4.86771887553764,52.39642296322921],[4.867659648270178,52.39639810417763],[4.867595483770089,52.39638207630327],[4.867540997848317,52.39636511119927],[4.867504185908513,52.39634822361679],[4.867476910954324,52.39634121937992],[4.867435168141858,52.396335122320295],[4.867393375868681,52.39633199096359],[4.867354708822044,52.396336737529055],[4.86732563944875,52.396347440101174],[4.867291725153995,52.396359092069844],[4.867275556935607,52.39636592363994],[4.867267308164337,52.396371477769435],[4.867265832434085,52.3963707792402],[4.86720062444706,52.396393618291306],[4.866583732254264,52.39610012999617],[4.866590709937244,52.39609146957682],[4.866594958488405,52.396082500568305],[4.866595024567217,52.39607687456984],[4.866586681317432,52.39606420121804],[4.866378473173241,52.39596582346844],[4.866297783224936,52.39592960778793],[4.866168164359409,52.39586999759688],[4.865750608867764,52.39567430475474],[4.865368332673186,52.395488589392635],[4.865269094943583,52.395446826774084],[4.865230351883828,52.395426883142136],[4.865229415896868,52.39542527022197],[4.865228451374144,52.39542358527456],[4.865219465120267,52.395408167745856],[4.865230035079307,52.39538890878086],[4.865245963448832,52.39536750739592],[4.865269770353724,52.39534330061753],[4.865284111276889,52.3953306911751],[4.865301079625087,52.395315792460856],[4.865301228230243,52.39531564931268],[4.865302668091802,52.39531439738127],[4.865319555441872,52.395301385721126],[4.86533925939831,52.39528623841177],[4.8653774753039,52.395262346750634],[4.865407655991109,52.39525207197199],[4.865430931651225,52.395236787591244],[4.865429545808541,52.395218473573564],[4.865447595803291,52.395195301945805],[4.86548189993974,52.39516921799992],[4.865512573700565,52.39514700073397],[4.865588138832171,52.39509417137974],[4.865588272109973,52.39509408208986],[4.865591442240811,52.39509186710475],[4.865618645708263,52.39508737621784],[4.865675021490418,52.395109599346824],[4.865751750116608,52.395146427162544],[4.865753748113399,52.395146435958544],[4.865753777812879,52.395146409126234],[4.865761197373699,52.39514639685157],[4.869096581250382,52.396727927676935],[4.870143150431185,52.39721428530538],[4.870172193724911,52.3972435950708],[4.870181438141596,52.39726854926403],[4.869959885974824,52.397654007196195],[4.869613401412549,52.39825670822545],[4.869357373884406,52.398689568125164],[4.869296831844343,52.39877688833258],[4.869268937459347,52.39882399660194],[4.86924714460994,52.398899685388315],[4.869233722232632,52.39894684794097],[4.869226892673862,52.3989792995342],[4.869223341551596,52.39900781987365],[4.869210649518076,52.3991307786777],[4.869171325194977,52.3994681298326],[4.869178176637019,52.39952935686788],[4.869186421922394,52.3995392164534],[4.86917995458006,52.39955575245382],[4.869131352427484,52.39958310509433],[4.869155066866483,52.39961961787567],[4.869206135929056,52.39965526163108],[4.869271665797298,52.39969195723714],[4.869391678110642,52.39974759433025],[4.869642814272687,52.39988005570336],[4.869740191672116,52.39991875063973],[4.871269769416768,52.40023935297088],[4.871309991850983,52.40022873395854],[4.871341459398352,52.400195176219825],[4.871454401705721,52.40000261283139],[4.871569968009484,52.39978144400515],[4.871646831851914,52.39964228989525],[4.871663506551433,52.39964248829528],[4.871723627213922,52.39953930182872],[4.871703908706213,52.3995355130972],[4.87175520961952,52.39945284303745],[4.871786574511437,52.39938507764917],[4.871772259359732,52.39937024861453],[4.871759388673078,52.399370192609766],[4.870759538306903,52.39916214100838],[4.870899268223546,52.39890885733086],[4.872065188684424,52.399147451205266],[4.87224401440501,52.39882419617588],[4.872494135937044,52.39838765547198],[4.872613761279024,52.39818053297916],[4.872792994866865,52.39821390078868],[4.873141072995137,52.39759671835461],[4.872890615720057,52.397540186172726],[4.872951342943033,52.397422216962816],[4.872979154081443,52.39738693524673],[4.873366770793485,52.3974342387878],[4.874053787349383,52.39752287857264],[4.874217930644442,52.397542221001764],[4.874296910655107,52.39755560413484],[4.87432542981975,52.39759110310858],[4.874466297754092,52.39765130124235],[4.874666342704138,52.397728517290155],[4.874761055267403,52.39776256793323],[4.874843753479333,52.39778608690535],[4.874934695683569,52.39782093897805],[4.875047453705667,52.39786750636982],[4.875139490405691,52.39788141274946],[4.875493447669052,52.397944400070934],[4.875832651735175,52.398007610246],[4.875857315647877,52.39801699199806],[4.875869649516651,52.39802406461366],[4.875882468626554,52.39803619938223],[4.87589084586926,52.398065292689154],[4.875633497651689,52.39860144660937],[4.875580536798027,52.39870643654551],[4.875411882617946,52.39907350146363],[4.875296389555276,52.39932068464302],[4.875278420936094,52.399324390799],[4.875222132214204,52.39944384531934],[4.875206309688686,52.399476725730516],[4.875209221801747,52.39948792796705],[4.875219659143889,52.399506568569265],[4.875104249750063,52.39974631910449],[4.874932352595489,52.40013012228056],[4.874765406522092,52.40048322675219],[4.874584267374829,52.40087538388372],[4.874423538851062,52.40121639936574],[4.874281326107508,52.40153423470453],[4.874190774566294,52.40173032197364],[4.874165647781886,52.401796317443164],[4.87417294642011,52.40182334800327],[4.874196812227469,52.4018662865789],[4.874217916694775,52.40188500940557],[4.874272417561882,52.401910374922295],[4.874440454593708,52.40199210823911],[4.875103594625992,52.40230690275096],[4.875407833912656,52.40245627137519],[4.875476199671916,52.40246959883486],[4.875529510830867,52.402467042940174],[4.875564680131599,52.402455088459156],[4.875585968989487,52.40244136636445],[4.875586189464632,52.40242226852934],[4.875592300586232,52.40240077845315],[4.875617444462755,52.40233696677089],[4.875654507764824,52.40225766688239],[4.875698307616378,52.40217396515076],[4.875718213626754,52.402153999621376],[4.875778505897658,52.40202141325598],[4.875876282215296,52.40183027224288],[4.875995449327416,52.401575689646975],[4.876070872302089,52.40140000065633],[4.876095098824215,52.4014028823765],[4.876159468662753,52.40141091644781],[4.876165400081256,52.401404974226075],[4.876173396066569,52.401389469046045],[4.876513381718699,52.40065655300686],[4.876513641445793,52.40063401305683],[4.876468699068001,52.40062714145753],[4.876442833366752,52.400621178962126],[4.876462506667347,52.40057286519762],[4.876490291834217,52.40052956557086],[4.876526231816925,52.40048882662819],[4.876580262483191,52.400419782603095],[4.876632762457164,52.40036242491119],[4.876648019003508,52.4003416213039],[4.876748891084215,52.400231876203684],[4.876936547700839,52.40005406379072],[4.877023002435521,52.39989085162338],[4.877199066962536,52.39953268723791],[4.877366458192068,52.39917464702079],[4.877431097988431,52.39905291760119],[4.877461796172072,52.39899379400056],[4.87755735271372,52.39875297610402],[4.877579639220738,52.39870594963385],[4.877757086393946,52.39835068433747],[4.878008913326227,52.39780037350191],[4.878314954766976,52.397151080096506],[4.878503342864591,52.396760619941304],[4.878573626982126,52.396638096219284],[4.878640745854865,52.39649816771505],[4.878636982018954,52.396468941615176],[4.878681473502522,52.396395676373295],[4.878694277843413,52.39635149401225],[4.878711438229826,52.39632077591009],[4.878732945133878,52.39631075710178],[4.878752197361147,52.39629748406091],[4.878760615452256,52.396278322523926],[4.878774891348289,52.396224961067034],[4.878803902786354,52.39619087850329],[4.878853732566227,52.39607100805197],[4.878904695676334,52.395948374237264],[4.878966792530933,52.395790089126805],[4.878988991946946,52.395756804152924],[4.879052997398181,52.39564857055686],[4.878952234423696,52.395629767426726],[4.878930570925286,52.39561631878323],[4.878921995180654,52.39559927730202],[4.878915344601131,52.395588598367915],[4.878913398030595,52.39556616576481],[4.878936796675194,52.39554873121723],[4.879012494942084,52.39549063612819],[4.879018256742665,52.395464785331],[4.879047182101453,52.39544071460551],[4.879053657022276,52.39543211421509],[4.879073086693757,52.39543536122991],[4.879101044876111,52.39544951991355],[4.879134927536098,52.39544798455877],[4.879166672926415,52.39542397982646],[4.879214127258384,52.39539969193853],[4.879270697764648,52.39534400423545],[4.87941753452254,52.39523324955315],[4.879461924464612,52.395207105955315],[4.879464814459341,52.39519209094996],[4.879503274743025,52.395170559558984],[4.87965194184748,52.395057673364064],[4.879671288747337,52.3950360600153],[4.87971942165153,52.39500120532578],[4.879917509974573,52.39486015643782],[4.880032231134649,52.39476961154095],[4.88015011056194,52.39468420302826],[4.880231612704518,52.39461036761993],[4.88057415349816,52.39435298818167],[4.880575705359726,52.39433546885013],[4.880569031965279,52.3943229114847],[4.880737005727421,52.39419008196048],[4.880782120163811,52.39419423842383],[4.881123265622512,52.39393883770494],[4.881127564529565,52.39392132111494],[4.881256834309151,52.39383256282323],[4.881327169734527,52.39378042014922],[4.881351700848305,52.39376786128145],[4.881677166703628,52.39350965075699],[4.881678604506995,52.39350853343387],[4.881653571294944,52.393459506660015],[4.881667576309908,52.39344883514903],[4.881680500226102,52.39344020821278],[4.881736933858983,52.39339989665796],[4.881773332917511,52.39337723227354],[4.881808594474881,52.39335382603476],[4.88186217285052,52.393359051787314],[4.881879497731995,52.39335098286661],[4.882228246864005,52.39308340613134],[4.882233270043927,52.39307964373474],[4.882220054903508,52.39306226813751],[4.882356337282029,52.39291461532424],[4.88242228021696,52.39293833624204],[4.882432563399321,52.39293065066318],[4.882600453986475,52.39281320504047],[4.882753378730596,52.39269400575718],[4.882779300992263,52.392672716495476],[4.882787572093399,52.39265722101191],[4.882733194795514,52.392625442670344],[4.882907385463252,52.39248349606906],[4.882964274354801,52.39250627937033],[4.882981971710086,52.39250545594308],[4.88298514354746,52.392502997834264],[4.88316852315766,52.39236419071583],[4.883160236055217,52.39235656086113],[4.883333795020805,52.392231202198765],[4.883338891538647,52.39222226316417],[4.882933016834961,52.39202411909599],[4.883033088934823,52.391957128531],[4.883309124315309,52.392088148209794],[4.883424316716717,52.39200789291441],[4.883531137338157,52.392065778485055],[4.883550289231943,52.39205587461524],[4.883868756873778,52.39180754170267],[4.88332976417092,52.391537614815384],[4.883350524566201,52.39135127168142],[4.883758672787089,52.391298389131194],[4.883798450479439,52.39135182818465],[4.883783536744887,52.391433570660396],[4.883682392142031,52.391443863015],[4.883700954572983,52.391469017554336],[4.883892971186904,52.39156911158937],[4.884040943431933,52.39164223492229],[4.884069075554716,52.39164876264547],[4.884111073650044,52.39161663932465],[4.884130129354435,52.391581524511565],[4.884139036976013,52.39153965279619],[4.884113501878033,52.39145444898471],[4.884173352383224,52.39143496624624],[4.884247850967003,52.391434770328125],[4.88425903349994,52.3914707685327],[4.884263038017244,52.39148295485554],[4.884283339312201,52.3914921276041],[4.884443437287449,52.39136916379045],[4.88459540541486,52.391258307616255],[4.884675962159511,52.39119797360874],[4.88495671142852,52.3911502175553],[4.885200798916261,52.391696067494046],[4.885302585750978,52.39192621493638],[4.885449595954245,52.39225857299262],[4.885711318763207,52.39283353560661],[4.885856985606079,52.39315790633335],[4.885916248432729,52.39317233971612],[4.885902882179436,52.39320067521277],[4.886071112149156,52.39324871620377],[4.886348482558505,52.393320289878055],[4.886384086751076,52.39332095272614],[4.886410774196587,52.39330333288308],[4.886430148193914,52.39327505868163],[4.886440913164045,52.39327408858727],[4.886519133952173,52.39316703452365],[4.886510905538481,52.39316194866701],[4.886569771775078,52.3930801310318],[4.886587216792122,52.39307564801488],[4.886653717800164,52.39298120795919],[4.88664560885318,52.39297074798663],[4.886655654683421,52.39295539455299],[4.886665276279686,52.39293597689638],[4.886663402741268,52.392927556514614],[4.886661051569792,52.39291589855109],[4.886652608758592,52.392902480222666],[4.886634460594303,52.392891177919175],[4.886612946806503,52.392885200067745],[4.886586373423568,52.392879740088034],[4.886158468700425,52.392761090934236],[4.886128366925195,52.39275196692864],[4.886090689450127,52.39273721154195],[4.886059643035785,52.392719383451535],[4.886027769362876,52.39269416398253],[4.886013025642876,52.392674130978826],[4.885969072848837,52.39259071910108],[4.885560363332691,52.39167845616072],[4.885487436105521,52.39151251333395],[4.885450620866102,52.39143466788228],[4.885379703036034,52.39127686734066],[4.885335794823548,52.391179362703646],[4.885281657826693,52.39105888712998],[4.885264356633938,52.39106110566865],[4.885243874066482,52.39101604451353],[4.8852204616135,52.39096636924454],[4.885134311377463,52.39078132523019],[4.885140395043888,52.39075651805786],[4.885160887085701,52.390739753020625],[4.885403815654691,52.39064563891435],[4.885447908354614,52.39066580533008],[4.885480614946205,52.39065880766519],[4.885487928790816,52.39063172281538],[4.88547671718012,52.39059173406967],[4.885668351074784,52.39055686461327],[4.885693484140167,52.39060120840054],[4.8857260263611,52.390611331503145],[4.885742171598051,52.39061518367507],[4.885758697697779,52.390610040789284],[4.885778629849299,52.39058430357007],[4.885795625634615,52.39060777045418],[4.885861348181404,52.39060017546153],[4.885861503477098,52.39058644294338],[4.88589322402759,52.39058478866068],[4.885894289232442,52.39057762998809],[4.886116894306166,52.39057357483243],[4.886143298388783,52.39058218888387],[4.886154537169167,52.39059383053661],[4.886190098964532,52.39068904366439],[4.886277937364381,52.39068215315332],[4.886322924501616,52.39067260076741],[4.887848950475689,52.39047818784009],[4.888616752266389,52.39037793836098],[4.89003525529326,52.390196562087844],[4.890085293414121,52.39019366238427],[4.890190434109133,52.39018163772959],[4.890826114482974,52.39009991825982],[4.890822424525055,52.39007785602032],[4.890880452352181,52.39007378511716],[4.890957904262723,52.39008513753865],[4.891016423465218,52.3901093528508],[4.891060721474525,52.39014023134491],[4.8910885431237,52.39017582225202],[4.89105564182212,52.39024758585439],[4.89101860905444,52.3903327777046],[4.890832827815728,52.39075726918702],[4.89069780792458,52.3907362922403],[4.890626614376924,52.39089663052436],[4.89075972393784,52.39091901060837],[4.8906548105557,52.39115848785635],[4.890622430473493,52.39123736276513],[4.890559990377325,52.391380750987835],[4.890534182683075,52.391376481475135],[4.890493746410058,52.39146369907736],[4.890522258595968,52.39147046952614],[4.890297465845882,52.39198389132219],[4.890103586712094,52.39241004625407],[4.890068287073152,52.39240324721893],[4.890040408683573,52.39246305102845],[4.890082528523698,52.392468224965015],[4.89000707403808,52.392645190122884],[4.890194485068085,52.392674269876395],[4.890309894422256,52.392695569549176],[4.890413169848037,52.3924637882329],[4.890335774413288,52.39245097071839],[4.890358133085988,52.39239863041907],[4.890603824448958,52.391838695076636],[4.890758654516556,52.391497273215556],[4.890779726042075,52.39143909443257],[4.891151794893802,52.39150224584189],[4.891225679692895,52.39134025581449],[4.891182222479602,52.3913325870936],[4.891455704722745,52.390713690293374],[4.891548821788096,52.39048292594936],[4.891556636684409,52.39048295865343],[4.891596885262093,52.39038466707563],[4.891611891260271,52.39038139543859],[4.891786415708747,52.38998012474014],[4.891796259884024,52.389951045840434],[4.891447102913654,52.3898985977672],[4.891610685878359,52.389514142375475],[4.891636785007025,52.38949093754315],[4.891739945111033,52.38951135773789],[4.89190501236265,52.38911071233157],[4.891975784452308,52.38912420218948],[4.893324754640044,52.390489266159896],[4.893377248277037,52.390540247433854],[4.893461396242961,52.390557252415945],[4.893491764067043,52.39049104097105],[4.893697507383889,52.39001022189103],[4.892572546947047,52.38885819803216],[4.892551566687038,52.38883478738138],[4.892483200531323,52.388750520950616],[4.892447057516057,52.3886984211829],[4.892417864994077,52.388651392528764],[4.892365313229644,52.38854669119283],[4.89233406642288,52.3884468333356],[4.892301668573147,52.38830271531833],[4.892294469441953,52.388222551073724],[4.892306926494602,52.38819620630897],[4.892556714658649,52.388243024073454],[4.89258504420968,52.38824230653436],[4.892593398567925,52.38819263056231],[4.892605305570205,52.388155003930116],[4.892737198536453,52.38786433581679],[4.892856631910069,52.38757509850578],[4.893024134481601,52.38719294027082],[4.893487223221839,52.38726062554462],[4.893497019437077,52.38723569860146],[4.893516659724618,52.38718418219078],[4.893547959597583,52.38718180509598],[4.893790096346121,52.38656941378637],[4.893811892300855,52.38656700601481],[4.893957425770163,52.38620307178863],[4.893992614109814,52.38609667833433],[4.893921977598183,52.38608722569607],[4.893904479761997,52.386073006199844],[4.894110157778883,52.385556172116154],[4.894192776679079,52.38534261816577],[4.89420259984977,52.385315192692616],[4.894251648577082,52.38518805035178],[4.894310697885207,52.385013521593706],[4.894329753420113,52.38501443675428],[4.894342228949461,52.384992846326845],[4.893807161985408,52.38491570599722],[4.893720292556472,52.384898698858066],[4.893712954253091,52.384822938036095],[4.893734354012653,52.38477422406983],[4.893952935384197,52.38429600107691],[4.893973733538033,52.384296042760504],[4.893982765048484,52.38427375495993],[4.894220882070845,52.38374350218377],[4.894231515767377,52.38374354644872],[4.894263346677057,52.38367203808495],[4.894255871287168,52.38366799846034],[4.894277076550231,52.38361421452213],[4.894154849018684,52.38357531929663],[4.894145546733341,52.3835678207866],[4.894127828490905,52.38356029622353],[4.894108143020246,52.38356193090893],[4.894099756946531,52.383557896470066],[4.89387575303026,52.38348761454875],[4.893617695868862,52.38340742065806],[4.893509174044797,52.383380337781055],[4.893350269905361,52.38334953951506],[4.893355598827027,52.383337922679765],[4.893364121132678,52.38333894686405],[4.893376656035553,52.383310705888555],[4.893368193436769,52.38330695868427],[4.893419644219158,52.38318571358864],[4.893381274370254,52.383179567795985],[4.893433213272049,52.38305667997999],[4.893490304275609,52.38306466539282],[4.893502949176108,52.38306346881948],[4.893523164245623,52.38302084359047],[4.89377117088242,52.38302990320111],[4.894175170420153,52.38294844968904],[4.894668384214155,52.38284433941972],[4.894693183365566,52.38283320794592],[4.894654429519753,52.382799495724775],[4.894722471976521,52.38276830381591],[4.894937287196553,52.382683049944575],[4.895027014819214,52.38264863154192],[4.895072475498776,52.38262858917952],[4.895178159810414,52.38257906575182],[4.895202882067085,52.382596020381605],[4.89529531692135,52.382549227987255],[4.895412907815136,52.38247893831802],[4.895518539181505,52.38241027957607],[4.8958188629837,52.38220171747661],[4.896113249259291,52.38199987076003],[4.89611853177905,52.38199634252836],[4.896122595116638,52.38199812995324],[4.896550549971179,52.38222870343705],[4.896608953344903,52.38218705377793],[4.896177941834225,52.3819566385952],[4.896405529524857,52.38179962337924],[4.896409016127206,52.38180043773362],[4.89641311765036,52.38180275558054],[4.896863294622169,52.38204791718132],[4.896941537666686,52.38199587884526],[4.896506379762462,52.38176057635512],[4.896609253375029,52.3816912940498],[4.896621025017188,52.38168136647955],[4.896667671246949,52.38168013066494],[4.896760576556654,52.38160775112218],[4.896728385624849,52.3815662384744],[4.896801218976192,52.381515894471285],[4.896899481238147,52.38148632739692],[4.896871842171074,52.38145554696028],[4.896844991688629,52.38145971392322],[4.896781591789271,52.381403449083464],[4.897103988881701,52.38123241784805],[4.897137137001182,52.381267067761605],[4.897140691619859,52.38127102806779],[4.897282515639435,52.381165676975336],[4.897374940507629,52.38110602153161],[4.897562834867723,52.381002208807956],[4.897588640768285,52.38098886093147],[4.897969299245536,52.380770900806915],[4.89806454896237,52.380715966045464],[4.89825838302775,52.38060863560242],[4.898453197563986,52.38051620149355],[4.89856246549851,52.380472540826204],[4.898599301522957,52.38045912140274],[4.898603683198211,52.38046267164412],[4.89864205100876,52.38043552533504],[4.899222544792474,52.38022822698639],[4.899781572465382,52.38002522343843],[4.900390749249921,52.379804933377414],[4.900846469593066,52.37964924269988],[4.900841950517662,52.37963812434064],[4.900848585963117,52.37963571592842],[4.901095943129246,52.3795443201308],[4.901647835025554,52.37934492750144],[4.902288944900223,52.379109084092654],[4.90272792782775,52.37895164593955],[4.902825777772281,52.37891188022911],[4.903380095008968,52.3787122018574],[4.903396109450347,52.378706245533245],[4.903460149410606,52.37868539506809],[4.903700954835901,52.37859855079871],[4.903712603258995,52.37861182824102],[4.90394326829511,52.37855382851851],[4.904102844923814,52.37852198014433],[4.904185512840281,52.37851269155123],[4.904242073184883,52.378511052803006],[4.904254743060564,52.37849258084315],[4.904304530996056,52.37848707670048],[4.90432943969382,52.37848432018749],[4.904334564596674,52.378481680728505],[4.904370116526105,52.378482023421206],[4.904430441538813,52.378478575431544],[4.904524067409501,52.37846234783949],[4.905022720145341,52.37839279236785],[4.905025168997286,52.378395840178904],[4.905947367157443,52.37827269441609],[4.906076651514677,52.37827666204957],[4.906093702892129,52.37828066793608],[4.906113389920508,52.378328724213475],[4.906123862770521,52.37834618490543],[4.906130336436329,52.378353230591436],[4.906145924596492,52.37836621821676],[4.906165073458141,52.378377243012345],[4.906187004485799,52.378386319789435],[4.906211374384443,52.37839260230919],[4.906237155250661,52.37839607740749],[4.906263639146142,52.37839702082665],[4.906276733147339,52.37839623815031],[4.906302472646469,52.37839269367995],[4.906343124742144,52.37849424890022],[4.906841387436715,52.378425214465075],[4.907248683529829,52.37836956943224],[4.907853604687867,52.37830781160736],[4.907863530459564,52.37828762948351],[4.908227375998286,52.3782379797419],[4.908466674255374,52.3782080297593],[4.909545142014678,52.37806512155855],[4.90979656457232,52.37802878261101],[4.909793586849799,52.37801753599444],[4.910220228460362,52.377960835284256],[4.910260639009516,52.37778247557628],[4.910388783146402,52.377791314226556],[4.91039729314368,52.37772238595078],[4.910771104169342,52.37766989247107],[4.911143953346648,52.37763304151315],[4.911965429726796,52.377581273586905],[4.91266967763837,52.37753524074478],[4.912822529083456,52.37786483850876],[4.912244102370362,52.377966165938936],[4.912214728449921,52.37797728273014],[4.912186503639425,52.377997661442286],[4.912170003656406,52.37801754792113],[4.912162794082267,52.3780366178367],[4.912164374100883,52.37806049547424],[4.91239019941016,52.37854240421961],[4.912437565410203,52.37864643786247],[4.912503558674772,52.378784339856004],[4.914051046666726,52.378519410524426],[4.914420884392048,52.378455484272045],[4.915401913590819,52.3782846044163],[4.91594693749854,52.378190480573416],[4.916878024124308,52.37803184667838],[4.917513399094826,52.37791893068228],[4.918405308502489,52.377761495527075],[4.919625694621435,52.37755110145995],[4.920160469932886,52.377459227620534],[4.920412023088808,52.37741628768594],[4.921542880298509,52.37721979338396],[4.921961608267045,52.37714950181392],[4.922259171404803,52.377097903824485],[4.922390790470227,52.37707507951554],[4.922490765200618,52.3770546923705],[4.922757418902815,52.377008175695785],[4.923080543699409,52.37694998906186],[4.92425029851334,52.376748866906624],[4.924982089094412,52.37662212320754],[4.92515334811595,52.37659307828713],[4.926441822494414,52.37636742990385],[4.928650864875077,52.37598245213073],[4.931303382487671,52.37552451670127],[4.937023610704066,52.37453271702524],[4.938979808191391,52.374190544057164],[4.939306774823353,52.37413310069209],[4.939451830912672,52.37410993977625],[4.939654095041292,52.37407699162999],[4.939756243424136,52.37406238621142],[4.939727193227786,52.37411222996118],[4.939689963975488,52.37416202481776],[4.939556157053925,52.37428261905003],[4.939391534941297,52.37442556579738],[4.939231017122555,52.37456478896684],[4.938441192735337,52.37520973811329],[4.938428743664544,52.37522966155576],[4.93843467767595,52.375248414366695],[4.93844659636121,52.375280914042435],[4.938399249246474,52.37532318340762],[4.938817272220406,52.37533850917136],[4.93886259049791,52.37529497368369],[4.938955240373634,52.375209186527364],[4.939020629334543,52.37519944872164],[4.939065880035837,52.375159660761945],[4.939119553642663,52.37509869373638],[4.939286497560405,52.37492829880217],[4.939406929974491,52.374810521376666],[4.939613922457841,52.37462365919932],[4.939673512343301,52.37458019531816],[4.939878839347882,52.37444613798357],[4.940151769810067,52.374284869189616],[4.940414138524634,52.37415726371402],[4.940453206946295,52.374127446194535],[4.940469787362979,52.374102540974356],[4.940478452633235,52.37405138883003],[4.94048705717109,52.374007723192676],[4.9405756308431,52.37392074199735],[4.94065553022417,52.373887258645055],[4.94073525061312,52.37387008720295],[4.940810752725828,52.373867873279764],[4.941008432264809,52.37388609936361],[4.94144042732206,52.373930166209554],[4.942995000650869,52.37410954224618],[4.943173835428328,52.37413423704289],[4.943262831375412,52.374152752800576],[4.943392897018002,52.37419368490399],[4.943491537621131,52.37423750998606],[4.94361641813579,52.374300648939005],[4.943729823250889,52.37435565587282],[4.943780912085826,52.374365949344266],[4.943829056497914,52.374366704831026],[4.94386402303976,52.374360661215725],[4.944137084584781,52.37448319662898],[4.944450923369161,52.37457971176442],[4.944420092197838,52.37469077404034],[4.945134404617685,52.37476722271358],[4.947229507928301,52.375001443142786],[4.947754112255359,52.37506157735048],[4.94821267436921,52.375113240694866],[4.948479909603704,52.3751435398881],[4.948872530053321,52.37518844926822],[4.948933558311331,52.37519475082237],[4.948950666859101,52.375166484995965],[4.948972880533635,52.37506146535551],[4.949159751626479,52.37458838054847],[4.949273361878482,52.374556445136896],[4.949341411359645,52.37453421860941],[4.949379660519273,52.37449904746537],[4.949404886459114,52.37446065551173],[4.949430050745445,52.37436750142535],[4.949522258473025,52.374114407831684],[4.949588678204168,52.37391048030277],[4.949590044236404,52.37384346425782],[4.949586739741978,52.373775037861684],[4.949557687638628,52.37370417052313],[4.949512832696257,52.373630548462614],[4.949441760977688,52.37356931334742],[4.949385883469294,52.37353978896225],[4.949349753809725,52.37352247992337],[4.949294973650429,52.373514197430644],[4.949287388347311,52.37348079813805],[4.949236249287283,52.37347556691789],[4.946697507012461,52.373190210119155],[4.944940761899942,52.37298858423283],[4.942618027620722,52.37274235970063],[4.942134717151,52.37268696851016],[4.941748788756609,52.37263801740151],[4.94099323698804,52.37255734830556],[4.939049296018093,52.372334599113955],[4.939020494746465,52.372208689496226],[4.939080720136825,52.37220380344342],[4.939061205284868,52.37198282130384],[4.938985172274842,52.371988474377034],[4.93897169624978,52.37191396040099],[4.938951644496353,52.37191183530225],[4.938931651343739,52.37147815775144],[4.940407963853976,52.37163583617482],[4.940412605838699,52.37162253394269],[4.940433274962862,52.37162458922213],[4.940428179283311,52.371640657949825],[4.943119811322561,52.37194271222477],[4.943080483608101,52.37207800010263],[4.943240455984484,52.37209680006327],[4.943284801533459,52.37195747750148],[4.946763647600656,52.3723515282535],[4.948504609062495,52.372543793396375],[4.951700885198872,52.372900431203526],[4.951777373364627,52.37267935501996],[4.951870427554922,52.37262107954009],[4.951951951780742,52.37254809371858],[4.951995480829024,52.37249822830611],[4.952046164295369,52.372382167969405],[4.95129890455798,52.37229755969501],[4.949340843448589,52.37208212676554],[4.947212912879253,52.371843776806536],[4.947277780739927,52.37162974254252],[4.949423840461014,52.37186915603136],[4.951296131292119,52.372076191981606],[4.951492414319039,52.37210016552075],[4.951514000537736,52.372091149419234],[4.951636844469793,52.37168628405746],[4.95163207999278,52.37166604425579],[4.947054556149161,52.37115890221056],[4.946692024556445,52.37111168991017],[4.946099489879864,52.371052250475756],[4.944404947411783,52.37086357458827],[4.939529909471107,52.37032115346264],[4.939379693698744,52.37031411429181],[4.938743622939611,52.37030162271208],[4.93875327649293,52.37017461831172],[4.938738142974645,52.37015812251331],[4.938293016027071,52.37016049817815],[4.938278091941227,52.37016540279933],[4.938266829445769,52.37017557909907],[4.938272672045249,52.37019023320701],[4.938197961004083,52.37019178340757],[4.93820432198993,52.370155218651426],[4.938184872418114,52.37015606164038],[4.938191755431094,52.37006647150477],[4.93813201269525,52.37006602024376],[4.938117137215319,52.37005887253922],[4.938097748587895,52.37005514999937],[4.938066404331789,52.37005319761959],[4.938036496739974,52.370055825414816],[4.938008031203998,52.370063950150694],[4.937949759985688,52.3700646368289],[4.937946510753145,52.370091147168516],[4.937934429106078,52.3701039087831],[4.937931239268476,52.37012310336931],[4.937932533413964,52.370143204750434],[4.937945723640736,52.37016886970889],[4.937943084884997,52.370285888381474],[4.937152216140928,52.37026657233695],[4.936817074068962,52.37025824267682],[4.93678131282915,52.370202499815186],[4.936737053337449,52.370171000358326],[4.936527102876393,52.37003994285274],[4.936370923962096,52.36996240469098],[4.936242659457371,52.36990936522872],[4.936097743568759,52.36986938421463],[4.93598564843338,52.36985076601095],[4.935881692072417,52.36984329649581],[4.935262505716667,52.36983891250185],[4.935054644904961,52.36981891223771],[4.934902968419713,52.369794075161],[4.934739961943214,52.36974998789959],[4.934624852768971,52.36970305464882],[4.934496741419106,52.36963384501373],[4.934429488571326,52.36958809216845],[4.934436188661707,52.36957902224594],[4.934264355983256,52.369428782902226],[4.934184754583014,52.36930111379342],[4.934078670138621,52.36909532112553],[4.934040607518662,52.36892031990208],[4.934020433298818,52.36876216715056],[4.934038366559355,52.368758784514355],[4.934040537501759,52.368707248405265],[4.934042437108965,52.36852128233251],[4.934045345479661,52.36839898893389],[4.934017386365585,52.36838775515856],[4.934016353012423,52.36804189576145],[4.93432913121798,52.36804152866565],[4.934325117463948,52.368434715916564],[4.934198491733962,52.36843898600478],[4.934180423273751,52.368753261434],[4.934178045993709,52.36882501906351],[4.934284849155228,52.36887698106309],[4.934357120816354,52.369075364207625],[4.934389421919164,52.36913741293961],[4.934470167016351,52.36922785926876],[4.934599224126587,52.36930067662103],[4.93467814110223,52.369334340569466],[4.934757115743856,52.36936092238442],[4.934799945127453,52.36937117921429],[4.934925393087222,52.36939195267271],[4.93517949187646,52.36939587995514],[4.936008550157472,52.36938489547777],[4.936568407531719,52.369377923039565],[4.937118441627706,52.36937528761816],[4.937164324919424,52.36937548898689],[4.937322494912653,52.369453536988566],[4.937350501411897,52.3694385261029],[4.937388639450303,52.36942350876217],[4.938047449018414,52.36942803196268],[4.938044952210146,52.36967463569283],[4.938205117051067,52.36967625876565],[4.938284395497124,52.36967453713821],[4.938319050129442,52.36967871298252],[4.938738481589791,52.36967726450842],[4.938756695416389,52.369672273424364],[4.938765094678304,52.36965916523488],[4.938772958973941,52.36937214621486],[4.940081284155601,52.36938246862348],[4.940141725965115,52.36938339789],[4.940417874071822,52.36934703346792],[4.942146581590338,52.36936467068775],[4.943422946425053,52.36937450347634],[4.945615646240049,52.36939382815533],[4.945620277118417,52.369427189738516],[4.946741368694852,52.36943844775736],[4.947387987409432,52.36944638779875],[4.947434724700575,52.36945820943376],[4.947578345610958,52.369463802835014],[4.947680704030464,52.369465189456385],[4.947746679233543,52.36946340312262],[4.947815399573778,52.36946316383296],[4.947842828359922,52.36942606559032],[4.947873761870668,52.36941611416356],[4.94791362088205,52.36941377246089],[4.952104996667178,52.369448616932985],[4.952678739590922,52.36945240453748],[4.953051124558793,52.36945377052708],[4.953054297951343,52.369411576010954],[4.953052609329352,52.36934256240088],[4.953137412356205,52.3693418397293],[4.953158409969206,52.369163196653155],[4.953503792851931,52.36914475225288],[4.9536038902957,52.36934435777371],[4.95361374468604,52.36943880945067],[4.953596156210764,52.369572292993865],[4.953511848013626,52.369848283502854],[4.953327542292628,52.37028207275329],[4.953191205775054,52.370634708015544],[4.953075042674269,52.37089431370281],[4.953027720644904,52.370905923040624],[4.952968167597072,52.37091746953046],[4.953125946590416,52.371229444134514],[4.953196555898062,52.37121350716497],[4.953602002536879,52.3715340281507],[4.953535264940939,52.37156694827671],[4.95358121144117,52.371599975491534],[4.953633128429437,52.37157051525532],[4.953675751693641,52.37158599530678],[4.953699117154809,52.37161572221022],[4.953874379828991,52.371750118332145],[4.953943669614537,52.37181671891077],[4.954102444937858,52.372027674297506],[4.954129831007521,52.37210136555344],[4.954219230565156,52.37224255633046],[4.954323159996063,52.37234244785811],[4.954356023804571,52.37238002862574],[4.954418712150737,52.372407005084966],[4.954504447716284,52.37241364573377],[4.954595295034875,52.37240657182829],[4.954693775965881,52.372347010749735],[4.954753991952938,52.3722691187934],[4.954803840323846,52.37217619750425],[4.954853870037702,52.37206615533294],[4.95488994335232,52.371950723505705],[4.954905245213989,52.37187528289352],[4.954992322074657,52.371555774306316],[4.95501925377008,52.37144260990652],[4.955084192300514,52.37117819577322],[4.955099276128579,52.371106987526005],[4.955167478185872,52.3708601831139],[4.955296188302404,52.37034671026949],[4.955422122814547,52.36981034448607],[4.955472931381015,52.36960625777055],[4.955565658766304,52.369613606224746],[4.955583566526949,52.36953724926268],[4.955495413516807,52.369530618539244],[4.955524266276022,52.36939330210455],[4.955540005833813,52.369337563967186],[4.955647939610533,52.36890316037891],[4.955746352707046,52.36891303698202],[4.955864511092414,52.36849137001831],[4.955696350862663,52.368478866599666],[4.955720826859836,52.368338523267106],[4.955617131893544,52.36810951667992],[4.955481551340943,52.36796606432471],[4.955261138326199,52.36781921060052],[4.954896651308255,52.36767323258733],[4.954357771458726,52.36756881321562],[4.953690888478472,52.36756379393644],[4.953692250783353,52.3674859835517],[4.953562746902016,52.367484763344756],[4.953562616958828,52.36737487943495],[4.953688545374533,52.367375340573965],[4.953695061790232,52.367321519212986],[4.953714516157477,52.36730499917392],[4.953893637323934,52.36728463263597],[4.954480164178116,52.36730710781053],[4.954689706409979,52.36731997086166],[4.955017517245832,52.36737202019338],[4.955262224915824,52.36742860983826],[4.955613039121543,52.367558233239016],[4.955798347334884,52.367621858296836],[4.95591669392666,52.3676561909793],[4.956007655947428,52.36765894895149],[4.956102646952861,52.36765203280094],[4.956158075279378,52.367647390239604],[4.956225499180563,52.36763067591934],[4.956277339430778,52.3675872923156],[4.956334837147441,52.367369559233474],[4.95637071462544,52.367343050293265],[4.956629910115367,52.36631244067564],[4.956666805699397,52.36617939532323],[4.956688438155948,52.36608501340849],[4.956935400155446,52.365056263803936],[4.957147064501854,52.364175106947016],[4.957426699784047,52.36383150739044],[4.957429534870117,52.363822251374124],[4.957421409815163,52.363821377037254],[4.957422486404625,52.36381632986394],[4.957430614244333,52.36381691660476],[4.957432540298941,52.363809050380404],[4.957420510031817,52.363808170855386],[4.957438668126397,52.36373267726424],[4.957444421940016,52.36373129607036],[4.957448306895804,52.36373187639656],[4.957455519208512,52.36371026920723],[4.95749501582592,52.36354162375307],[4.957491565827993,52.36354161123144],[4.957487679785613,52.363539628823006],[4.957504115619023,52.36346609727142],[4.95751407841081,52.36346669965412],[4.957520963393645,52.36343188835532],[4.957518506723257,52.36341420065334],[4.957511555294811,52.363396748293695],[4.957500129858458,52.3633804211323],[4.957475446233241,52.363358131948246],[4.957462872934156,52.36334208822286],[4.957454668102424,52.363325206522205],[4.957451166605626,52.363307775668844],[4.957452250905225,52.36328980422416],[4.957512194715852,52.36301083716503],[4.957633420215095,52.36252677760598],[4.957641026193884,52.36250997125648],[4.957653013717737,52.36249399868343],[4.957660515478129,52.36248644028914],[4.95767842674969,52.36247274511596],[4.95773159118898,52.36244345835369],[4.957747905032986,52.36242946976912],[4.957760327430792,52.36241406498714],[4.957768283237772,52.36239751155355],[4.957775772266373,52.3623700273931],[4.957765489443635,52.36236914525244],[4.957782324557214,52.36229673855694],[4.957786471415208,52.362294515662555],[4.957792558401212,52.36229509497711],[4.957796391584579,52.36227825695778],[4.957790995780107,52.36227907324256],[4.957786769401786,52.36227737721495],[4.957804800620361,52.36220272793039],[4.957813618061406,52.3622033261347],[4.957815191560705,52.36219546761093],[4.957809457004569,52.362194880588014],[4.957810538989023,52.36218926720471],[4.957816053425486,52.362189844441524],[4.957818594072911,52.362176102487105],[4.957818714212076,52.36217582430437],[4.957817789347462,52.362175820950085],[4.957662413169002,52.36216149717397],[4.957661605747787,52.362161494244525],[4.957661611228835,52.36216092803982],[4.957661518232966,52.36215840216093],[4.957660503751407,52.36214490795427],[4.957658341330101,52.362131706176534],[4.957654813722523,52.36211849045788],[4.957650346573547,52.36210527133025],[4.957644946298992,52.36209290264752],[4.957644516850614,52.362091768640155],[4.95764238115724,52.36208642220204],[4.957637554615619,52.362075448692934],[4.95763134264173,52.36206503638133],[4.957624100348977,52.36205489894941],[4.957615812970584,52.36204504533111],[4.957606761198454,52.36203377787078],[4.957588151463077,52.36201348803426],[4.95756509037609,52.36198896681326],[4.957546794889953,52.361972614719676],[4.957546124990562,52.361972055051616],[4.957546130473052,52.36197148884687],[4.957608570791519,52.36172707043537],[4.957644154801459,52.36158170677373],[4.957665001659902,52.36149220207125],[4.957679638425658,52.3614360731027],[4.957697983000472,52.361353300084026],[4.957717356926761,52.36128399436074],[4.95773093540816,52.361218882838564],[4.957748531815066,52.361155754193874],[4.957765628664493,52.36109569752529],[4.957784499996248,52.36102976035023],[4.957813690017496,52.360939719649835],[4.957838811618776,52.36086958990469],[4.957869499521869,52.36079161610664],[4.957894004871974,52.360725986948346],[4.957921335282117,52.36066120388363],[4.957952522034175,52.36059081748482],[4.957986403727304,52.36051651322485],[4.958022096400283,52.36044164929465],[4.958066806030119,52.36036036487263],[4.958103252633968,52.36029252303918],[4.958142113649196,52.36022244302026],[4.958183407469763,52.36015125732973],[4.958234301694461,52.360072511807736],[4.958289100879703,52.35999070661861],[4.958347844950185,52.35990778324377],[4.958400234805453,52.359835235588406],[4.958454258969569,52.35976521038287],[4.958527657356907,52.35966969429856],[4.958580700914203,52.35960388071289],[4.958629899971769,52.35954395810214],[4.958679214782443,52.359485716588786],[4.958731947006039,52.35942777502931],[4.958774835544211,52.35938130207503],[4.958841687337896,52.35930991204162],[4.958917304100523,52.35922622255909],[4.958976109222609,52.35916717040912],[4.959029866314142,52.35911399590165],[4.959097902613671,52.359049081147674],[4.959166070827945,52.35898416683115],[4.959226476043209,52.35892961418948],[4.959301419100883,52.35886388843],[4.959399798823027,52.358783633320364],[4.959499532531278,52.35870450648239],[4.959583886956791,52.35863852693765],[4.959646863475007,52.35858819859798],[4.959728643899845,52.35852726972723],[4.959744604545087,52.35851468166713],[4.959942267860324,52.35836512989139],[4.960028203155386,52.358302535108564],[4.960156793255568,52.358215935205486],[4.960259501325868,52.35815084825068],[4.960352474473249,52.358093608317944],[4.960432978323188,52.35804616489133],[4.960526268327611,52.35799256598202],[4.960605606536341,52.357948758254615],[4.960706860520821,52.357891260276546],[4.96081164366845,52.357834628754425],[4.960947899883944,52.35776265162428],[4.96107590123172,52.35769879646661],[4.961182495292142,52.357646098758956],[4.961276287036053,52.35760121913166],[4.961412906696621,52.357537107010366],[4.961580148256842,52.35746215781261],[4.961714437979295,52.35740365427849],[4.961885520087254,52.357333760552144],[4.962003614518666,52.35728785318423],[4.962137587465147,52.35723778748199],[4.962251388275931,52.35719718516823],[4.962387984172941,52.35714907892902],[4.962490485294016,52.357115751823535],[4.962631293250647,52.357070752183446],[4.962822665828377,52.35701245210269],[4.962956297517507,52.35697333126909],[4.963060129414824,52.35694505053916],[4.963174194877494,52.35691345396204],[4.963251691271308,52.35689294296856],[4.963349061359546,52.35686800923158],[4.963477676982186,52.35683757893107],[4.963607899099495,52.356807990095305],[4.963727877885987,52.356781177624626],[4.96383887447467,52.35675881777217],[4.963990529530638,52.3567290265445],[4.96411401451028,52.356707007673144],[4.964246682936228,52.35668556973358],[4.964418505820532,52.35665893279259],[4.964584825276719,52.35663060424382],[4.964726573960212,52.356606672639295],[4.964849928715138,52.35658746568613],[4.964975349304678,52.35656711554725],[4.965015884828389,52.35656024072308],[4.965059903197132,52.35655140999868],[4.96510878692986,52.35653416614429],[4.965170695736579,52.35651332868676],[4.965254569010806,52.35648581972476],[4.965340702757159,52.356458309771085],[4.965464765433133,52.356424778309375],[4.965575465344919,52.35639792192468],[4.965730364515419,52.35636477862603],[4.966408372481715,52.3562191721674],[4.966459254326663,52.356207839776474],[4.966522467360493,52.35619486149691],[4.966585310586038,52.35618217846368],[4.966654370921752,52.356168654664394],[4.966735472877707,52.35615460736963],[4.966806087624448,52.35614278767786],[4.966878790790848,52.356132089833686],[4.966953668963897,52.35612112104742],[4.967031161174543,52.3561115725605],[4.967094192756783,52.35610532511802],[4.967139758185258,52.356100444710954],[4.967197494883496,52.35609530188748],[4.967270336875531,52.35609163267565],[4.967338619232651,52.35608738102253],[4.967413645730005,52.356083989101194],[4.967499793080119,52.35608120278491],[4.967555213114652,52.356078882698604],[4.967611433933468,52.356075702605644],[4.967652982965148,52.35607332432091],[4.967695901008494,52.35606898256703],[4.967734591668963,52.35606462581866],[4.967764452629857,52.35606108261711],[4.967804979362939,52.356055042663876],[4.967843785912273,52.35604929319719],[4.96789846377925,52.35604162264087],[4.967955890397977,52.35603199348811],[4.968159335761744,52.35599507333104],[4.96820237119206,52.35599072282159],[4.968212780863899,52.355993581802224],[4.968252034116643,52.35600269943523],[4.968404475004213,52.35597459502838],[4.968438462898265,52.35594747354974],[4.96843926087145,52.35594691014753],[4.968439718529015,52.3559466331478],[4.968987677182923,52.35584718000538],[4.968988484490177,52.35584718285737],[4.968989179621696,52.35584662807581],[4.968994813160363,52.3558438438159],[4.969001838597311,52.355841334103694],[4.9690093137259,52.35583939220464],[4.969036533495343,52.35583415865285],[4.969056034334602,52.35583337370378],[4.969061636114197,52.35583395971519],[4.969135583867317,52.35581568825324],[4.969277311436748,52.355790340063145],[4.969452280381026,52.35575781998903],[4.969563359870679,52.35573854683666],[4.96961552007787,52.35572692999446],[4.969684021974749,52.3557117397359],[4.969836240588322,52.35568053194807],[4.969846491055131,52.355676910093756],[4.969860234292972,52.35566712600372],[4.969881048881589,52.355648379142686],[4.969903081003714,52.35562347100918],[4.96992837091898,52.355603337834566],[4.969962780774378,52.35559053480903],[4.969992448715519,52.355582487529276],[4.970077493436072,52.355562582876445],[4.970172493171614,52.35554549043084],[4.97027487643093,52.355534625424866],[4.970385613457077,52.355528274605206],[4.970525255729122,52.3555200481325],[4.970657818412221,52.35550759932977],[4.970787361842915,52.3554883989851],[4.970899255306121,52.35546828260044],[4.971046907150563,52.355437075173576],[4.971143313358234,52.35541550203299],[4.971291477824169,52.35537811256727],[4.971374711191237,52.35535873089396],[4.971488182324722,52.35532682763597],[4.971788849141035,52.3552416641135],[4.972058038120545,52.35516339984843],[4.972218036045357,52.35511143672619],[4.972345247331401,52.35507143795929],[4.972513076352688,52.355013893558876],[4.972726660142862,52.3549388123506],[4.972991506237398,52.35484423606462],[4.973238956139904,52.35474820526218],[4.973399677067132,52.35468135944583],[4.97368911085391,52.354557954122164],[4.974060528261754,52.354386516376955],[4.974220307418488,52.35430702945726],[4.974382544451487,52.35422361428157],[4.974857212567049,52.35397529377796],[4.975097272832434,52.353845808104055],[4.975424663207208,52.35367394317194],[4.975682785206771,52.353536933519024],[4.976030790069464,52.353352771497754],[4.976312238184718,52.35320235994217],[4.976586020011183,52.35305698119995],[4.976889693942834,52.35289624659615],[4.977131432055281,52.35276816469293],[4.97736202081061,52.35264566999528],[4.977737461552532,52.352445312229065],[4.978165301398768,52.352220687800276],[4.978416756882442,52.35208533883664],[4.9787223306769,52.35192404885396],[4.979134773931857,52.35170471547185],[4.979485040541844,52.35151886140283],[4.979870696049674,52.35131488304511],[4.980111429309352,52.351185659147035],[4.980337284380692,52.35106539828601],[4.980455397463751,52.3510023240647],[4.980977921292075,52.3507263444839],[4.981311731684778,52.35054717829765],[4.981666861124993,52.35035879991339],[4.981779888314493,52.35029936494066],[4.982167604930248,52.35009397508794],[4.982481924716668,52.34992822046067],[4.982770926598573,52.349771923439064],[4.983064860291138,52.349615354943126],[4.983361636480528,52.34945908302119],[4.983663159948936,52.3492986113067],[4.983939922631337,52.34915097878822],[4.984269214574693,52.348975437872944],[4.984638948713163,52.34877924503092],[4.984960619104988,52.348608448741544],[4.985338035845346,52.34840919703967],[4.985644056162597,52.348246488618535],[4.98589208222121,52.34811531838123],[4.986146257471663,52.34797912635711],[4.986398469314516,52.34784403262636],[4.986626374940731,52.347722068029256],[4.986826128696269,52.34761659008743],[4.987007013467468,52.34752028737464],[4.987360707708297,52.34733106916932],[4.987603217312675,52.3472018360303],[4.988066805180861,52.346954836208745],[4.988291355248384,52.34683453779028],[4.988502869998054,52.346722634493695],[4.98886967990231,52.34652921375831],[4.989093738779305,52.34640919977065],[4.989270584504636,52.34631543252083],[4.98954511585181,52.346168615246874],[4.98977170995565,52.34604859950483],[4.990000614377764,52.345927746237365],[4.990193561776031,52.34582504393432],[4.990485135840354,52.345672107087395],[4.990675209357764,52.34557051782982],[4.991024234273249,52.34538630614564],[4.991473046386419,52.345147952608144],[4.991746756116376,52.34500112747874],[4.992186015958317,52.34476835663837],[4.992460820970465,52.34462490390222],[4.992791117809896,52.34444428254273],[4.993051226205072,52.344306127147476],[4.993394035907865,52.34412385608325],[4.993842147805277,52.34388380153988],[4.994327204687952,52.34362729460309],[4.994968241838961,52.34328339391058],[4.995530666845604,52.34298669371797],[4.996236792333267,52.342608183139156],[4.996666972668335,52.342381261606526],[4.997053394533716,52.34217553109677],[4.997328921189523,52.34202815079105],[4.997492354105845,52.34194217333897],[4.997567851179296,52.34189720473381],[4.997629559691902,52.341853305172734],[4.997683673984406,52.341813613797925],[4.997718146579109,52.3417898468993],[4.997754377604542,52.341764683693896],[4.997835973891884,52.34171355144223],[4.997894523756433,52.34168005810638],[4.99790718170352,52.34168908744973],[4.997900827957705,52.34169241896683],[4.997918046700398,52.34170512130778],[4.998025250865552,52.34165042413798],[4.998054378981929,52.341635348658095],[4.998168596992052,52.341577304027936],[4.998150390184953,52.34156348399939],[4.998145220052356,52.34156571393197],[4.998104081699683,52.341536368643126],[4.998179956121329,52.34150010098998],[4.998330574739166,52.34142420940875],[4.998583952078353,52.34129161907541],[4.998851336247758,52.341152917577865],[4.999405133749907,52.34086853774359],[4.99973516390492,52.34069856453143],[4.999866129602169,52.3406276487611],[5.000024737099368,52.340541939624885],[5.000023326097613,52.34053379214361],[5.00002841038663,52.340529602527305],[5.000132752627905,52.34048780942512],[5.000200240146062,52.34046219044797],[5.00036376435537,52.340379588706185],[5.000794853313889,52.34014956335942],[5.001073245677087,52.340000485010364],[5.001280535963369,52.33989106164565],[5.001794054439781,52.339618340148704],[5.002731874012379,52.339118635738856],[5.003059843460486,52.33894472791542],[5.003218189482549,52.33886069435055],[5.004424653728319,52.33821804440952],[5.005145385664032,52.33783979751944],[5.006160239883671,52.33730184716977],[5.007048307805341,52.33682975633],[5.008043519867321,52.33629622058319],[5.00897151794583,52.33577031693407],[5.00975722423447,52.33529225225783],[5.010840387654879,52.33456798448169],[5.011580556570747,52.33401871494939],[5.011807801297919,52.33384895698206],[5.011848460231507,52.33381200262668],[5.01206531443438,52.33363716010948],[5.012297621607443,52.333447734143334],[5.0124847527407,52.3332775691669],[5.012513978620023,52.333237495592606],[5.012528708586096,52.33320271482254],[5.012542985776408,52.33315725520849],[5.012579826831396,52.33304054049305],[5.01260829143795,52.332953278965206],[5.012633096607244,52.3328789301855],[5.012637499131603,52.332847478118694],[5.012626997323211,52.332829757050135],[5.012612142662967,52.332809766285386],[5.012694621169237,52.33274571121183],[5.012734040737267,52.33270763814877],[5.012774969966479,52.332664509763376],[5.012821950469766,52.332611864537775],[5.013096301474447,52.332332980402334],[5.013201498192217,52.332226026503335],[5.013242069661881,52.332183463049915],[5.013290115916229,52.332141768045354],[5.013347189743253,52.33210121601759],[5.013576637530706,52.33197977057569],[5.013756579870238,52.33188681233899],[5.013888476892959,52.33182150129389],[5.013966076021819,52.33178073509376],[5.014020320488211,52.33173456548027],[5.014046586616649,52.33169026694661],[5.014056019809307,52.33165884866019],[5.014054900936979,52.33162962605574],[5.014061941790088,52.331610549352035],[5.014088141097082,52.3315881626583],[5.014144345645021,52.33155661319914],[5.014195875875607,52.331534863570134],[5.014266363204145,52.33150756532357],[5.014308661255392,52.3314793243807],[5.014381031018684,52.33140427125409],[5.014588253868275,52.33111929416143],[5.014641837083389,52.331043345860415],[5.014780925550355,52.33083201498561],[5.014929411685392,52.3305914944237],[5.015095032246588,52.3303035633892],[5.015266081717362,52.32999599302635],[5.015368217778987,52.32979071984979],[5.015604194313692,52.32928308852537],[5.015712985213501,52.3290079024502],[5.015811395153617,52.32875122535815],[5.015899892284674,52.32848692244374],[5.015969244927359,52.328264693848446],[5.016083255312957,52.32781369689181],[5.016138160386563,52.32755238018014],[5.016186570057735,52.327315202074296],[5.016226794985617,52.32703923421442],[5.016265874028296,52.32667030267133],[5.01628802111184,52.326449336908865],[5.016313944109416,52.32611518253057],[5.016332591321309,52.32588465181137],[5.016331768735122,52.325723139744895],[5.016312157090229,52.32557197657373],[5.01630522376935,52.32550988558297],[5.016267273749118,52.325418774852004],[5.016205749245686,52.32536128519589],[5.016166903330483,52.325307228030766],[5.016154457928243,52.32523247400757],[5.016160069153578,52.325178852829715],[5.016166910780982,52.325113147012075],[5.016178984255142,52.325055043242216],[5.016211161836014,52.325001226736624],[5.016264493808179,52.32494185021904],[5.016308765451265,52.324881879051496],[5.016342436647018,52.32482833682255],[5.016353733527973,52.32476658157961],[5.016351018266243,52.32470702935349],[5.016324941298369,52.32470133029188],[5.016301528279477,52.32455576351723],[5.016431077496896,52.324382041213184],[5.016465902815987,52.32438524210955],[5.016476265696859,52.324351004357474],[5.01648615756107,52.324278288650184],[5.016523690109461,52.32405371293931],[5.016563016686526,52.323856681238574],[5.016629172758426,52.32357853836839],[5.016707479226412,52.323271519955306],[5.016799710370914,52.3228881403399],[5.016867792481515,52.322610857153975],[5.016965920144296,52.32220952933832],[5.017133851348365,52.321526141932836],[5.01716793550811,52.32138384683795],[5.017214903305903,52.32119328293278],[5.017282724651841,52.32090617501571],[5.017317011083091,52.320751800976176],[5.017355225132063,52.32056430141096],[5.017381945769457,52.320423672908554],[5.017409825087612,52.320270689877994],[5.017440223513447,52.320102255799135],[5.017470324366808,52.319923727546986],[5.017495469175796,52.31976792277543],[5.017520426251535,52.31963289706071],[5.017552898113939,52.319449603691005],[5.017574383216298,52.31931933959998],[5.017604099495781,52.31916046627489],[5.017627293352078,52.319018694210094],[5.017654534560784,52.31886992434086],[5.017696045845276,52.31863300232721],[5.017733929673837,52.31841601275952],[5.017768014781315,52.31823074702576],[5.017792670122874,52.318091235391584],[5.017809771089752,52.31800478176784],[5.017832916287222,52.31786694611268],[5.017851758128728,52.31776335828971],[5.017864416686018,52.317687289603015],[5.01788039040937,52.317600553824064],[5.017915233621962,52.31740685988475],[5.017944435560052,52.317226629937295],[5.018288951125277,52.31569727154009],[5.018313099843557,52.31556365411706],[5.018425812952508,52.31494581930652],[5.019032494594097,52.31145933840772],[5.019332496406103,52.3097068057457],[5.019288381674907,52.309693465544974],[5.019891665028075,52.306155862018656],[5.020106352164079,52.304932503026706],[5.020122170723583,52.30486346317572],[5.020318676748037,52.304009938587576],[5.020408934456129,52.30367403112658],[5.020465289396857,52.30321778912232],[5.020478100824859,52.30310969702219],[5.020497218991983,52.30295865395681],[5.02052973855942,52.302707933149634],[5.02054011521312,52.302603482518975],[5.020570502979702,52.30236230907376],[5.020598800718022,52.30215230770075],[5.020636136298256,52.30185078490979],[5.020686823133328,52.30136839763858],[5.020687396448259,52.30135576261103],[5.020687741450438,52.30131391662473],[5.020701079165021,52.301070721936256],[5.020711365338005,52.30065704673498],[5.020717140328337,52.30045624187413],[5.020716657423892,52.30040456069378],[5.020720758031373,52.30023969273362],[5.02072409660919,52.29983469610329],[5.020732270749617,52.29930191727947],[5.02073194289649,52.299231425158844],[5.020746027304178,52.29841021095381],[5.020746032045316,52.29840963575091],[5.020746034267722,52.29840936612458],[5.020749038142709,52.298213891329425],[5.020757959305833,52.29768644440518],[5.020762027804313,52.2975538783265],[5.020765518996459,52.29734016881053],[5.02076777124916,52.29730168114147],[5.020771468624411,52.29695089067901],[5.020777705056624,52.296665539080514],[5.020787059809856,52.29597688854463],[5.020788541048287,52.29596257560182],[5.020792964173856,52.2956499763724],[5.020795616519215,52.295552251475605],[5.020809698510054,52.29462962754938],[5.02081116042894,52.294621210527254],[5.020819102494954,52.29418393462229],[5.020821425287693,52.29391626769176],[5.020830079194284,52.293422811300616],[5.020833751929898,52.2931852036613],[5.020835928145875,52.29315768980924],[5.020845589939368,52.29258278017729],[5.020847919590625,52.29247970649125],[5.020858083539583,52.29159471972269],[5.020861747585433,52.29148267135188],[5.02086841129716,52.2911310448358],[5.0208708041198,52.29106476731756],[5.020871859173173,52.29093669461672],[5.020874181794085,52.2908771577192],[5.02087743476796,52.29048227136111],[5.020879175043006,52.29045250020927],[5.020884189009009,52.29000930092054],[5.020889838242606,52.2898110298145],[5.020898320289068,52.289420087236955],[5.020895506825029,52.28935773022314],[5.020897939364174,52.28916027600569],[5.020909383728497,52.28868902765308],[5.020910171502964,52.288468820215684],[5.020915545790435,52.28827363999982],[5.020916848701427,52.288270264625524],[5.020921337430146,52.28807226848034],[5.020923472443211,52.28781304019404],[5.020926005410398,52.2877279336415],[5.020927344661035,52.28756532165075],[5.020934698226252,52.28718673362666],[5.020936927679451,52.28680390544175],[5.020945599201847,52.28643431822756],[5.020947343108313,52.28622255319722],[5.020953868546271,52.28599786952904],[5.020955966873507,52.28570212361084],[5.02097014598345,52.28514773730429],[5.020969187513816,52.285029203264614],[5.020971608221086,52.28492922151395],[5.020971610441248,52.284928951886904],[5.020971617397755,52.284928107055485],[5.020973628823789,52.28472476435987],[5.020975664009942,52.28447759722529],[5.020978676819395,52.28434841594031],[5.020984555729171,52.28385690040651],[5.020990435439667,52.28358954056328],[5.020988916330332,52.28349459772771],[5.020992146788983,52.28310223631871],[5.020991015316273,52.28279467925312],[5.020983856327048,52.28263540222964],[5.020981373638556,52.2824901876176],[5.02097863373587,52.28242249199663],[5.020967727259003,52.28227163391296],[5.020947758423707,52.28209658854244],[5.020939156162183,52.28200050026488],[5.020924506206554,52.28186115293292],[5.020893012617119,52.281612201085345],[5.020864443270423,52.28141213395278],[5.020852235772104,52.281351707079736],[5.020829770495972,52.28122721930796],[5.020652700303741,52.28046130505391],[5.020409699964196,52.27956682205771],[5.020288566681593,52.27912350911813],[5.020219571628569,52.278868544573825],[5.020133919348039,52.278552869545045],[5.020054026551525,52.27825854937585],[5.019971258164474,52.278009168240175],[5.019870312963562,52.277645414605416],[5.019765509582748,52.27725047014964],[5.019637643857599,52.27679533440289],[5.019548600596862,52.276474300519034],[5.019457624576111,52.27612489499615],[5.019383126984131,52.275857842051074],[5.0193096362093,52.27557900016404],[5.01922053573968,52.275267232208165],[5.019152239613267,52.27508332667127],[5.019117400341826,52.27499082347667],[5.019076839480988,52.2748974486134],[5.019036843955918,52.27480660107079],[5.019004145224407,52.27473346425742],[5.018969462977696,52.27466454552984],[5.018919962258413,52.27458743767346],[5.018876849198778,52.274526348006724],[5.018837545818508,52.274477637427694],[5.018798026045479,52.27442498949717],[5.018758199525831,52.27436870053116],[5.018723094985392,52.27431016133729],[5.018691404249569,52.27425164176012],[5.01867092490126,52.27419456820685],[5.018646017999678,52.27411837274907],[5.018629730066522,52.274057654210715],[5.018616261510311,52.27399441888195],[5.0186072341006,52.2739115320519],[5.018598868341214,52.27382836866024],[5.018597941423831,52.27374748440042],[5.018594140704547,52.27366685182657],[5.01859063349765,52.27360561587746],[5.018585172388959,52.27356092939646],[5.018581999209213,52.27352834765101],[5.018589274794314,52.27349550188372],[5.018593935759969,52.273470530280846],[5.018596343070846,52.27345761330354],[5.018598258813938,52.27341914242662],[5.018598484502377,52.27339190105331],[5.01859670029759,52.27335790356224],[5.018584308701527,52.27330618497384],[5.018564987527556,52.273261473252084],[5.018543261828769,52.27317629985782],[5.018514358757555,52.27305908946625],[5.018483936609996,52.2729466378714],[5.018455561121628,52.27284712612108],[5.018429422385995,52.27274115010849],[5.018397917476255,52.27260736701067],[5.018357189865903,52.272370186211646],[5.018329350590419,52.272193704398696],[5.018296716843345,52.272001775525],[5.018255988811925,52.27179127950128],[5.01821604518256,52.27161167704464],[5.018171319761906,52.271429255441966],[5.018115743706159,52.271228536687794],[5.018048521338848,52.27097300974501],[5.017994680738728,52.27076809003198],[5.017953995829421,52.270610963678955],[5.017914950749424,52.27047517952161],[5.017787256509413,52.269986346292434],[5.017619317392017,52.269372689983705],[5.017448921815342,52.26874667639934],[5.017312625940183,52.268250499482846],[5.017285923590563,52.268144242728155],[5.017253807196786,52.26802842395008],[5.017213944627848,52.267882246998425],[5.017122622123765,52.26754885426305],[5.017020143446416,52.26718311525434],[5.016901385468544,52.26674233967109],[5.016782906426393,52.26630353313603],[5.016721443773877,52.266081170339],[5.016613771429956,52.26568199782709],[5.016438185489075,52.26503882622281],[5.016293534087075,52.264503865990896],[5.016116828928213,52.26385900052272],[5.015941229187732,52.26321919832523],[5.015765817381275,52.2625855620266],[5.015730504189945,52.26244303877371],[5.015711765393273,52.262373333130675],[5.015664534789261,52.262203817872454],[5.015642420941931,52.26212257919816],[5.01562022928561,52.262041897519744],[5.015604423249737,52.26197360317532],[5.015585696703445,52.261902477465306],[5.015536616784849,52.26173352255916],[5.015503643659829,52.26161264029956],[5.015469598565585,52.26148333305097],[5.015434351946684,52.261359360787104],[5.015403040904836,52.261242977637075],[5.015370149305937,52.26111592992561],[5.015338187543396,52.26100909877991],[5.01532401213243,52.26095260155959],[5.015230326004828,52.26060570868338],[5.015117126195583,52.260198095340556],[5.014915920076302,52.25945005979809],[5.014823437262155,52.259098397733226],[5.014735831637533,52.25878018571949],[5.014656097793834,52.25850158988625],[5.014542990370709,52.25808245368375],[5.01450558941005,52.25794527111526],[5.014392988786838,52.2575376587371],[5.014299169798451,52.25719610323313],[5.014187712412478,52.256787092096786],[5.014078642513931,52.256380047707474],[5.013988208983742,52.25605451890706],[5.013886503658043,52.255684842047415],[5.013792224929237,52.25533092625987],[5.013691542569405,52.254975866653574],[5.013596062707658,52.25462757325592],[5.013502843129288,52.254282360747276],[5.013386277175094,52.25385733407143],[5.013280622431545,52.25346910208431],[5.013274389657055,52.25344746657731],[5.013218698378672,52.2532430773412],[5.013198870777647,52.25316269913514],[5.013167684219591,52.25304856254788],[5.013169582438536,52.25301262612398],[5.013161695285502,52.252957829177184],[5.013135327535814,52.252854097786674],[5.013099198474142,52.25273040941709],[5.01306853717673,52.252675818997815],[5.013049547786685,52.25260554575994],[5.013017016182417,52.252487746804306],[5.012948368707261,52.252229128596156],[5.012892149290971,52.25201998290505],[5.012818852571566,52.25173972508803],[5.012715524158235,52.251361629106185],[5.012624534462577,52.25102626443634],[5.012519966551314,52.2506461959569],[5.012412688714065,52.250247298182735],[5.012326837650089,52.24992654578482],[5.012216007624838,52.24952905658639],[5.012120041440237,52.249173443931944],[5.012056265166023,52.248949668449264],[5.012027809752295,52.248850981275766],[5.011936920933063,52.248517027312985],[5.011865375293802,52.248252781641874],[5.011786908329229,52.24796547803252],[5.011681916209538,52.2475696874429],[5.0115796990396,52.247195799986116],[5.011500631880153,52.246914120618705],[5.011288762615196,52.24612868932202],[5.011227917409673,52.24591081861213],[5.011213092755776,52.24586302789683],[5.011201683932929,52.24583209131078],[5.011191400959829,52.24580481636764],[5.011179253751822,52.24577809273959],[5.011157358760596,52.24574741938307],[5.011086115808902,52.24564775988719],[5.011053096243852,52.24559933601723],[5.011033485210353,52.245566980186666],[5.01101853550608,52.24553576267393],[5.010999558993594,52.24549243467003],[5.010984725596977,52.245447457096496],[5.010969378225282,52.24539572799529],[5.01080230102399,52.24478177392009],[5.010786463392051,52.24471880838942],[5.010778117151571,52.244665142199366],[5.010777062570456,52.24465305914347],[5.010775360966417,52.244639571918945],[5.010775470221394,52.24462664771038],[5.010775036508292,52.24460867058948],[5.010784379132287,52.24447864587166],[5.010790644407954,52.24435930691382],[5.010790974435861,52.24432026465706],[5.010788885428073,52.244298911811555],[5.010784974930364,52.24427305922895],[5.01077764028845,52.24423483741768],[5.010742522400187,52.24409878401203],[5.010698792827693,52.243940512103],[5.010553324938345,52.24340920690279],[5.010424384741967,52.24293917954935],[5.010296646303813,52.24246241493646],[5.010135288141883,52.24187572003077],[5.010005042933707,52.241412150186136],[5.009885767620808,52.2409778167892],[5.009768178507715,52.24054518732662],[5.00960699925924,52.239954564331256],[5.009606315973246,52.239953995911556],[5.009606218216807,52.239953438350796],[5.009405690404977,52.239228149703415],[5.009241120292926,52.23861728348569],[5.009206970194745,52.238492467409564],[5.009193999187605,52.23844243532501],[5.009090570077523,52.23807135432588],[5.008979695220573,52.237670472522176],[5.008876474755563,52.237287312228915],[5.008715758119858,52.23669669808245],[5.008537380436877,52.23604703057272],[5.008378973451909,52.23545613560372],[5.008354000499972,52.23536476558018],[5.008275067827671,52.2350858880035],[5.008254005848747,52.23500633158898],[5.00824453194488,52.23494984828865],[5.008220105082951,52.234866623004045],[5.008182622780365,52.234726354655805],[5.008124773284285,52.234512697765325],[5.008095809790209,52.23440700614938],[5.008069147091442,52.23430103429415],[5.008041294919524,52.23420067604368],[5.007989035704014,52.23401316479362],[5.007936279538113,52.233813581183405],[5.007884613682688,52.233623537191804],[5.007851077308682,52.23350489724313],[5.007805612605302,52.23333792705066],[5.007751728883205,52.233140299069284],[5.007696032192839,52.23293731743734],[5.007643362864978,52.23273128062491],[5.0075876580776,52.232532801831894],[5.007534872208489,52.232338835317364],[5.007496307600617,52.23219209191746],[5.007457724557471,52.23205097486154],[5.007403172435166,52.231849695435514],[5.007361372584488,52.231696218633466],[5.00734928990788,52.23165234583757],[5.007300401239413,52.23146850309121],[5.007268729042876,52.231347909556895],[5.007223264329924,52.23118316806256],[5.007207971520206,52.23112440995999],[5.007199442881394,52.23109292490318],[5.007188126708017,52.231051894724864],[5.007172709684414,52.23099398107863],[5.007163075355876,52.23095827713977],[5.007149111191285,52.2309085111943],[5.007108607099521,52.23076120413598],[5.007060129423358,52.23057231138149],[5.007011582954821,52.23039324214731],[5.006973188808109,52.230254363473755],[5.006937520750553,52.23012195585426],[5.006897312104662,52.229967639091726],[5.006845108001603,52.229773098812345],[5.006807878344191,52.2296333879416],[5.006770713000355,52.229498171210246],[5.0067529383023,52.2294250873177],[5.00674711620152,52.22939726001829],[5.006733273501142,52.22937108762693],[5.006719437955836,52.22934407938242],[5.006701196030054,52.22931200574742],[5.006682354309478,52.22928161091431],[5.006639077833591,52.22920732137769],[5.006613859539355,52.22915919983644],[5.006592764099876,52.229113356521],[5.006579915556562,52.22907877464093],[5.006561332516226,52.229030117213185],[5.00654856319724,52.22898626906228],[5.006538807945892,52.228951121917454],[5.00652952774715,52.22891176996619],[5.006524011997993,52.22887552197996],[5.006519929490048,52.22883084796338],[5.00651744950768,52.228785343235415],[5.006517188622742,52.22875078392861],[5.00651914396173,52.228708663952695],[5.006522386829742,52.22866317766331],[5.006523998379883,52.22862189245341],[5.006523541065351,52.228596617011185],[5.006517313212459,52.22856149021525],[5.006505332404628,52.22851959497015],[5.006493375462371,52.22847319686338],[5.0064707674172,52.22838860181619],[5.006440718522469,52.22827896047399],[5.006397117442853,52.22812294282389],[5.006356043582525,52.22796411109889],[5.006308247470089,52.227790382709195],[5.00626804335509,52.22763774640945],[5.006213258445745,52.2274392697228],[5.006155973996679,52.22722506510331],[5.006107364760798,52.22705075875736],[5.006005384708765,52.22667547250798],[5.005982840594117,52.22659730389153],[5.005945372662963,52.22646040510085],[5.005916888025824,52.226354696342355],[5.005891263789263,52.22626193938559],[5.00587032005659,52.22618322764412],[5.005830696446321,52.22604518937163],[5.005788563546952,52.225890847913355],[5.005754360202787,52.22577109052419],[5.005738393261322,52.22571458595227],[5.00572085732502,52.22565330373472],[5.005709386166774,52.22561701848052],[5.005692651806045,52.225568106200654],[5.005664779793722,52.225496957828256],[5.005639188677554,52.22542608645194],[5.005614951985124,52.22536113348424],[5.005589459026104,52.2252941991139],[5.00556520290707,52.225228113595485],[5.005538819418373,52.22515922596036],[5.00551199432353,52.225087227076784],[5.005478452160268,52.22499807553727],[5.005452168842537,52.22492777710201],[5.00542638766462,52.22485354358037],[5.005400005986747,52.22477424792098],[5.005373807110026,52.22469412595792],[5.005354559920923,52.22463282016603],[5.005310311063544,52.224486641657585],[5.005287781056791,52.224405390066366],[5.005262901683695,52.224319924534406],[5.005237050818051,52.22422658244933],[5.005206073793159,52.224120038524],[5.005182163996731,52.22404271914769],[5.00516509264577,52.223978625113645],[5.005143860359335,52.22389458244414],[5.005131639066096,52.223838359518375],[5.005119454163811,52.22378130982096],[5.005098745498729,52.22368742707587],[5.005069908824613,52.22358566260405],[5.005034086097257,52.22345550070169],[5.00500606412288,52.223350925629916],[5.00497505560169,52.22323453976424],[5.004956144391578,52.22315809035169],[5.004933093278748,52.223072909268666],[5.004922418313027,52.22301220634951],[5.004905495766537,52.222917212318855],[5.004889514681287,52.2228216640804],[5.004873341859607,52.22273482450053],[5.004857912447699,52.22264151602897],[5.004840682353899,52.222543168496806],[5.004823523961736,52.22245182277313],[5.004802897281292,52.222336593932845],[5.004767996511269,52.2221418477862],[5.004759825680313,52.22209294508459],[5.004749252590166,52.222046002956986],[5.004740536619193,52.22200946585154],[5.004722453352738,52.221957717838336],[5.004709472994645,52.22191162176326],[5.004690209596831,52.22183881125072],[5.004674650709686,52.2217862355265],[5.004653016358971,52.22171004686244],[5.004637434600976,52.22164821351055],[5.004627860782693,52.22161615858284],[5.004596737296279,52.22149978119204],[5.004568903351378,52.22139913430043],[5.004533294016094,52.221273466834155],[5.00449681106467,52.22114048935208],[5.004466862114429,52.22103226775592],[5.004437623189345,52.220924884326145],[5.004410460842186,52.22082620791382],[5.004382861758727,52.22072387199794],[5.004372158852345,52.220690420258066],[5.004333388390192,52.220549570873324],[5.004306262259821,52.220443326724784],[5.004240828660191,52.22020885367216],[5.004210697677367,52.22009641606891],[5.004177126922938,52.21997046745719],[5.004134981186391,52.219818947377206],[5.004097539294827,52.21968203890387],[5.004064479521413,52.21956311146697],[5.004040356869668,52.21945659835169],[5.004022087140741,52.21939951976557],[5.00397640043242,52.219237867733604],[5.003945090620664,52.21912823044499],[5.003871703917711,52.2188490883474],[5.003840159494194,52.21872595940026],[5.003814458510196,52.218631224255326],[5.003778102948726,52.21851285225438],[5.003744944776811,52.218393654742286],[5.003715186697491,52.218277281473725],[5.003689190917922,52.218179453492525],[5.003669645825537,52.218110848187436],[5.003665443761877,52.218080509315016],[5.003658857464511,52.2180602561309],[5.003648855641988,52.218027094196444],[5.003621765505435,52.217934035225625],[5.003599966057632,52.21785025098193],[5.003570217082524,52.217748204432716],[5.003544402645084,52.217653181227945],[5.003510647446902,52.21752359165753],[5.003474458942254,52.21739961161786],[5.003443948200879,52.21727733973812],[5.003411972758902,52.21716544413367],[5.003379019177149,52.217049905232905],[5.003357641931732,52.21695797924721],[5.003332772707863,52.216872243571665],[5.003306551583318,52.21677019042385],[5.003283247625206,52.216674339425204],[5.003253954748764,52.21658576714402],[5.003225948361663,52.21647866594687],[5.003197227746061,52.2163746542631],[5.00316213307186,52.21624281322452],[5.003126614922552,52.21612108220458],[5.003094377071953,52.215999074224214],[5.003076679975885,52.21593188590257],[5.003035078567513,52.21578429479429],[5.002999333539234,52.215648227253524],[5.002958966614285,52.215501772603005],[5.002931388765119,52.21539943630416],[5.002897757366265,52.215284739886215],[5.002825057484867,52.21502076177467],[5.002739730680569,52.21470421708986],[5.002648917011436,52.21436744062171],[5.002579790611851,52.214111904614846],[5.002479084408573,52.213741660685876],[5.002389532911852,52.21340319833258],[5.00231538774466,52.213131072036106],[5.002245455665002,52.21287778012428],[5.002162054598589,52.21258146399117],[5.00211852549948,52.21243246405706],[5.002030908803322,52.212109457893966],[5.001933267524723,52.21175299284539],[5.001854238363181,52.211467637982075],[5.001751302365091,52.211077459718275],[5.00163304652423,52.21065211548538],[5.001496339874516,52.21016125175193],[5.00131988671381,52.20950793592801],[5.001251321619224,52.20925690367471],[5.001177463307622,52.20898365387667],[5.001084327199051,52.20863731404486],[5.001008108178326,52.208358151316425],[5.000933674752668,52.208070572668824],[5.000864353253191,52.20781447743586],[5.000778844514199,52.207510288678584],[5.000693514704913,52.20719065915341],[5.000606496558997,52.206878600848874],[5.000522371307409,52.20657554885561],[5.000430759307235,52.206241868341586],[5.00038548684531,52.20607092230955],[5.000337390987752,52.20589832221332],[5.000291002358315,52.20572458621616],[5.000244255585669,52.20555170287534],[5.000177687373919,52.205296164391775],[5.000129147158359,52.205119329407914],[5.000071496161124,52.20490174917001],[5.000004022838611,52.20465800875206],[4.999958972703078,52.204490469659056],[4.999873108335474,52.204191608719874],[4.999802180210976,52.20392145923857],[4.999743415933442,52.20368757999799],[4.999667376829897,52.20341825850621],[4.999630996075481,52.20327517691913],[4.999592704204168,52.20313152280381],[4.999557350071385,52.20300669906587],[4.999516471760165,52.20286950774679],[4.999484011917831,52.20275170407658],[4.999464048449636,52.202683941349434],[4.999440669371648,52.202611970033864],[4.999390949422216,52.20246716380494],[4.999332290352569,52.202300685223996],[4.999280104087602,52.20215024438577],[4.999216560426873,52.20196691527192],[4.999145360821275,52.20174562284656],[4.999074980729431,52.201532772741515],[4.999016078017148,52.201354231347345],[4.999001632301161,52.20130643090972],[4.998999482439123,52.2012912611791],[4.998999170788217,52.20127497399788],[4.998999890490918,52.20125783635207],[4.99900258013238,52.201237891954904],[4.99900519128233,52.20122696220874],[4.999004964962078,52.201212634679955],[4.998990699867374,52.20115753662169],[4.998948101365947,52.20102342226358],[4.99891547309965,52.20092528346384],[4.998868640004349,52.20080548193332],[4.998827538825803,52.20075984080008],[4.998815905974778,52.20073509467857],[4.998804938984035,52.20070611742299],[4.998783048770242,52.20064818102814],[4.998770748192344,52.200616134492876],[4.998801278535034,52.20058730270939],[4.998787188853262,52.200552419088055],[4.998774456936644,52.2005178365329],[4.998754672586582,52.2004801209491],[4.998740490310921,52.20044244176541],[4.998728836237335,52.200401679042656],[4.998717735846033,52.200351094313945],[4.998702869562931,52.20028784216549],[4.998689780270889,52.20022882019566],[4.998677712364416,52.200173450690514],[4.998668376969103,52.200128480240785],[4.998659244273369,52.20007535838859],[4.998652278746372,52.200021974027194],[4.998643723926168,52.19996632846083],[4.998637592762468,52.199896094441016],[4.998634470030647,52.19982305709126],[4.998631788622797,52.19974973357828],[4.998627314964804,52.19968568871718],[4.998624299031899,52.199625576385095],[4.998614641021753,52.1995404377245],[4.998604405196644,52.19945950352016],[4.99859230883412,52.19939065198181],[4.998573433370555,52.1993141833154],[4.99854747270141,52.19919641866602],[4.998509893348411,52.199023843204806],[4.998448195140767,52.198787418827635],[4.998389905788989,52.19854259290953],[4.998322091044487,52.198284801922306],[4.998238934878357,52.19800506570361],[4.998162612032617,52.19774190772876],[4.998090514538755,52.19747905122786],[4.997998852541301,52.19712681690639],[4.997912684250782,52.1968156216164],[4.997832434121877,52.19649179071975],[4.997729158738498,52.196136695606484],[4.997639423988688,52.19581227599765],[4.997531757191711,52.19544790858068],[4.997432159994639,52.19505238845585],[4.997336995786811,52.19473720821841],[4.997232747239572,52.194362183028915],[4.997111723794945,52.19390704656283],[4.99701470599685,52.193568563079594],[4.996885708838524,52.19308418909174],[4.996751700146636,52.19257452419999],[4.996610711425213,52.192065662906565],[4.99652949889377,52.19177694359389],[4.996431971251568,52.19140587643483],[4.996336334922062,52.191056143863584],[4.996249934194361,52.190744083359895],[4.996178936805774,52.190476743964474],[4.996177599118698,52.19047252417956],[4.996166722211429,52.190435421795904],[4.996141531890038,52.19033618315164],[4.99606897765063,52.19005141084876],[4.996058088684678,52.18998902526795],[4.996044275401204,52.18992325052285],[4.99603357492661,52.18987939874585],[4.996026818458954,52.18985607056948],[4.99601580872076,52.18983581117315],[4.995998409951445,52.18982536344093],[4.995935292700191,52.18961028801122],[4.995925735614253,52.189539476114874],[4.995924841577922,52.189509696023194],[4.995907580572587,52.18943689022947],[4.995885725642133,52.1893609863348],[4.995861268008148,52.189283384070926],[4.99583386902717,52.18920268019093],[4.995809799647765,52.18911918309507],[4.995785677244058,52.18903174010001],[4.995764820345983,52.188947139133845],[4.995743064373259,52.18886168132495],[4.995716546589216,52.18877227099265],[4.995694645496694,52.188676710216],[4.99566983509902,52.188576070572736],[4.995646779993399,52.18849538104212],[4.995621618979483,52.18839305947242],[4.995593112619527,52.18830701299649],[4.995572722917502,52.18823756724673],[4.995569606706584,52.18822773306202],[4.995525236392079,52.18807647117983],[4.995480373733664,52.187928020876804],[4.995448005537237,52.18779056834281],[4.995414627557055,52.18766321492197],[4.995383819430268,52.1875263337819],[4.995336105125223,52.18736636035575],[4.995298451296603,52.18723142482952],[4.995260779445835,52.18708691704037],[4.995222802451674,52.18694720779765],[4.995185445129652,52.18680523562786],[4.99515531171755,52.18668324072334],[4.995114408507731,52.18654379135678],[4.995071889121522,52.18638860765578],[4.995025362264665,52.18622356879503],[4.994947991412567,52.185939345809004],[4.994905387575699,52.18578558184791],[4.994859581462718,52.18561521542903],[4.994831082319186,52.18551541714643],[4.994818074658834,52.185464807585454],[4.994798773992246,52.1853981785164],[4.99478295845632,52.1853509390956],[4.994773822680617,52.185325625563664],[4.99476211080049,52.185280655760316],[4.994751431721431,52.18522134458424],[4.994732155121421,52.18513870800162],[4.994692139783162,52.18501499034888],[4.994656753037548,52.18490701702187],[4.994628791912548,52.18479935598821],[4.994578863953537,52.1845941473228],[4.994556150102197,52.18448677335431],[4.99452085876501,52.184381334900856],[4.99448985574599,52.18428376618831],[4.994464278413931,52.18417947453374],[4.994440985630869,52.18408642543972],[4.994412545117084,52.18398184561753],[4.994389259468644,52.18389133114225],[4.994359651038529,52.18377494620606],[4.994347138321012,52.18372968606751],[4.994330212354134,52.18366586904851],[4.994304165060893,52.18356355313696],[4.994271484681025,52.183460648899086],[4.994243712274326,52.183359990003986],[4.994213876117327,52.18325625933089],[4.994181449802062,52.183152780676785],[4.994153777633349,52.18305074692751],[4.994127790734927,52.18294166321916],[4.994100115818014,52.18282669574545],[4.994037331302594,52.182615835462784],[4.993978723353687,52.18239402371635],[4.993928519968009,52.18219416160596],[4.993860074547706,52.18196220553554],[4.993811485558802,52.18176177350617],[4.993757500307545,52.181588026749886],[4.993704318686672,52.18138786697085],[4.993647557895793,52.18115426893271],[4.993585810824557,52.180929075968635],[4.993525305504932,52.180730581404035],[4.993480376102717,52.18055151683395],[4.993422769382413,52.18035106350068],[4.993380871464633,52.18019305884248],[4.993328569812811,52.17999628125432],[4.993269869076914,52.17978907419944],[4.993219485881894,52.179593705073714],[4.993169288443037,52.179382319954165],[4.99314283979511,52.17923167397569],[4.993132318027758,52.179169855460195],[4.993088813518924,52.17893742479766],[4.993064089216985,52.17874887323109],[4.993043705830812,52.17850754072945],[4.993028331295771,52.17833474932996],[4.993017268187217,52.17812574175415],[4.993009925518596,52.1779341653073],[4.993008749115477,52.17773305521593],[4.993008607940844,52.17758025000777],[4.993012145743389,52.17741314820741],[4.99301411123208,52.177357815742965],[4.993022495450843,52.177236227303595],[4.993032803229644,52.177092175318826],[4.993044365899493,52.1769467343819],[4.993054818832755,52.176824298980534],[4.993071359121822,52.17669626640831],[4.993090259592966,52.176587359158894],[4.993114527111366,52.1764517755005],[4.993128067418119,52.17634059436167],[4.993148150079881,52.176212016339036],[4.993168252295599,52.176097765227865],[4.99318614907892,52.17598491786402],[4.993208574034633,52.17586422111946],[4.993231695367927,52.175730871605225],[4.993249679255173,52.175619714257856],[4.993273508090287,52.17549396194176],[4.993299758829384,52.17536709420144],[4.993322222912028,52.17524189457199],[4.993342669981793,52.17511331771013],[4.99336281137399,52.17499120218657],[4.99338115573614,52.17489213485471],[4.99340856237487,52.17473857660586],[4.993416258494292,52.17469477684241],[4.993455810740651,52.174457023652515],[4.993492346574545,52.17425125762554],[4.993523002652434,52.174064014196205],[4.993556486207726,52.17388268529242],[4.993586301123764,52.1737128487696],[4.993625757559141,52.1734857549249],[4.993668417233789,52.17326007386489],[4.99370947378399,52.17304870530904],[4.993746152941767,52.17286289297962],[4.993768782806695,52.17271860327323],[4.993797367326579,52.1725206750881],[4.993801164498435,52.172492896869336],[4.993821282325726,52.172348302168686],[4.993837264150693,52.1721787070568],[4.993847483586321,52.17202931572116],[4.993855123447958,52.17187570940387],[4.993857684057058,52.171805782356415],[4.993853755500781,52.17174565756155],[4.993843177123147,52.17167707986733],[4.993813647677551,52.17161913472752],[4.993773451880386,52.171565621061724],[4.99372640505317,52.171513226019464],[4.993687008070467,52.17146197996023],[4.993671687286382,52.171438892652915],[4.993660810275022,52.171415820159176],[4.99364464897288,52.17135875542588],[4.993639908642968,52.17133767176117],[4.993637054682103,52.1713115431327],[4.993640726461743,52.17125820263785],[4.993642235855212,52.17121634159024],[4.993639854781949,52.17118797652719],[4.993633061140246,52.17118092526355],[4.99363619428237,52.17116379560375],[4.99364575727511,52.171108776018976],[4.993538100764415,52.17110492968389],[4.993511559524214,52.171102711009134],[4.993464087244141,52.1710986249116],[4.993441842133714,52.17109658233557],[4.993417209880398,52.17109172753709],[4.993374930101494,52.171082319857],[4.993296280849347,52.17106463868617],[4.993233717768311,52.171049545768575],[4.993115875635383,52.17102219739513],[4.992973869416798,52.170989977599724],[4.992865596886451,52.17096489894698],[4.992777047886793,52.17094269035758],[4.992731472306532,52.170932426561365],[4.992681732217131,52.17091371808824],[4.992615124364873,52.17088991094214],[4.992551725028369,52.17086695036935],[4.992523936613022,52.170857015601506],[4.99216556848017,52.1707311173286],[4.991926880661361,52.1706660001618],[4.991473085189863,52.17060998541658],[4.991401101311022,52.170625482044116],[4.991323225045203,52.170624654639234],[4.991318592483774,52.17063110147197],[4.991222292342377,52.170635829705155],[4.991155468662695,52.17063812215043],[4.99099781479273,52.17061682180939],[4.990929813769346,52.170610131165816],[4.990927336631614,52.17061911983463],[4.990402324084908,52.17062239834812],[4.990401600428825,52.17060021353783],[4.990311388155986,52.17056143262125],[4.990234127719535,52.17053082933194],[4.990069613557035,52.17058897655142],[4.989927640056981,52.17064214815449],[4.989874778254266,52.1706655637195],[4.989811186381711,52.170692322623744],[4.989742689026946,52.17072495211421],[4.989660011112946,52.170764274804405],[4.989523407968671,52.1708298225054],[4.989455907910398,52.1708571163191],[4.98937882076611,52.17088578889855],[4.989308483899458,52.17090661069686],[4.98925277682496,52.17091625576829],[4.989209267755018,52.1709169539455],[4.989154633145467,52.1709243555874],[4.989078360563712,52.170919038111194],[4.989077571221306,52.170919035448875],[4.988800509087509,52.17092006899597],[4.98868322509731,52.17089439882701],[4.988471204094379,52.1708374988299],[4.988301213981293,52.17077851147617],[4.987873794109614,52.17063409415641],[4.987320160189776,52.1704170651364],[4.987238810035998,52.17038309350057],[4.987246298498595,52.17032554175154],[4.986878537520694,52.17013751542187],[4.98677521730103,52.170084063855924],[4.986728404469512,52.17005554789673],[4.986657223112156,52.17000923387976],[4.9865889183738,52.16994862068615],[4.986508663750108,52.16986605414111],[4.986439889389429,52.169781279519036],[4.986384317897731,52.16972546408802],[4.986319301129333,52.16967806527175],[4.986238690073667,52.169640158702876],[4.98619261592105,52.16962062404925],[4.986141648261716,52.16959909539002],[4.986093604846676,52.1695823672505],[4.985987794903139,52.1695508282587],[4.985902956331111,52.16952469934594],[4.985892454312389,52.16952381876788],[4.985778454062947,52.1695155666157],[4.98568446610332,52.169502331174456],[4.985562709321285,52.16947888068136],[4.985448375497663,52.169455742944194],[4.985334476675583,52.16943625570556],[4.985232075874016,52.169419054514904],[4.985173898156296,52.16941099187131],[4.985178114421151,52.169398917369726],[4.985103975035034,52.16939080032474],[4.985020087545379,52.16938574189086],[4.984962170192088,52.16938610178758],[4.984819516560042,52.16939124204845],[4.984646433088147,52.169395981755045],[4.984511343270168,52.16939552095047],[4.984390697374677,52.169388368283194],[4.984321711497305,52.169377742704896],[4.984281491702798,52.16936722427412],[4.984199593879417,52.16934418705587],[4.984082443506046,52.16930447348696],[4.984051444022367,52.16929594585175],[4.984037673021485,52.16929448769868],[4.984028876238614,52.16929417003518],[4.984019394897018,52.16929358039265],[4.984011279912369,52.16929384028889],[4.984010826788094,52.16929383874106],[4.984009908521115,52.16929354798826],[4.983849245848386,52.16924215393646],[4.983801521394087,52.16921615033076],[4.983366331242697,52.169075923365995],[4.983223570660427,52.16902514696161],[4.98260942866778,52.168797498431815],[4.982390598643883,52.16871164070768],[4.982237711149442,52.168647921594975],[4.98197306883183,52.16853832137641],[4.981720267196939,52.16843520563641],[4.981478033999982,52.168338615018655],[4.981245113367383,52.16824679260845],[4.978832257508023,52.16729895271229],[4.978605118604201,52.167212214288526],[4.978242332676264,52.16707501419055],[4.977941792634108,52.16696104711274],[4.977851888329028,52.16692731791883],[4.977477864596756,52.16678559145936],[4.976998189526286,52.16660472238577],[4.976625515967663,52.166462988907725],[4.976332171639156,52.16635102009137],[4.976095300681363,52.16625554252409],[4.975838523325556,52.166152130588166],[4.975609912099777,52.166066226094095],[4.975385011245505,52.16598540333865],[4.975121646693826,52.16589290525618],[4.974808951584438,52.16578479282064],[4.974737263630942,52.16575898939428],[4.974653150163948,52.165728639497985],[4.974536282816113,52.16568554686671],[4.973885836216621,52.1654405854946],[4.97302112386263,52.16511707751919],[4.972510319884289,52.16492400991055],[4.972194588959332,52.1648026944107],[4.971867602563732,52.16467541534838],[4.971606842106997,52.16457170148256],[4.971116285930966,52.16437785421362],[4.970875163023061,52.16428768997199],[4.970534691931383,52.16416374809936],[4.970245440313263,52.16405655111634],[4.970009710958717,52.16396359089748],[4.969516303863791,52.16376972684417],[4.969257780398688,52.16367331393141],[4.969059413139628,52.16360210927409],[4.9688474127446,52.16352440255786],[4.968600674743461,52.16343083423214],[4.968568333423538,52.16341808236271],[4.968335337463431,52.163327375471646],[4.968064690777403,52.163221362632164],[4.967742685090838,52.16310000385055],[4.967682385446317,52.163077885716206],[4.967621274187722,52.16305660055128],[4.967560023510831,52.163036159732606],[4.967497864150687,52.163015994279036],[4.967435375290656,52.16299668148254],[4.967372325964824,52.16297791492822],[4.967060967623116,52.16288720534558],[4.966919812076692,52.16284231990893],[4.966810531930132,52.16280682348671],[4.966658271927579,52.16275235290149],[4.96645585256968,52.16267775888758],[4.966276894480155,52.162607472573185],[4.966074868268922,52.16252697417244],[4.965536391747873,52.16230991418791],[4.965274850874567,52.16220673169475],[4.965011164058808,52.16210496104775],[4.964755051496468,52.16200910407436],[4.964563123889548,52.16193538921643],[4.96435508264222,52.16185178341286],[4.964090510028211,52.16174522588891],[4.963836636304165,52.16164179802789],[4.963578342323296,52.16153610674307],[4.963500512631015,52.1615074521511],[4.963377484231674,52.161456740368166],[4.963210166310774,52.16138676080565],[4.963165910926925,52.161370027884345],[4.963106359805474,52.16135267373578],[4.963058226160627,52.16133651105865],[4.9629976936313,52.16131324819521],[4.962937539677557,52.16128860250557],[4.962859163598345,52.16125601775583],[4.962795697835334,52.16123078485146],[4.962729953607351,52.16120387194485],[4.962605166542583,52.16115539104246],[4.962429268123947,52.161090439750026],[4.962289676479609,52.16103741121121],[4.962162696760223,52.16099061169126],[4.961809464516204,52.16085676558289],[4.961660536179831,52.16080061075748],[4.961495275770184,52.16073456392869],[4.961379226053115,52.160691182483546],[4.961284226965364,52.16065488755883],[4.961129886508341,52.16059477576964],[4.960993682712235,52.16054541604339],[4.960856599933825,52.1604932487187],[4.960741456486461,52.160448449806935],[4.960525679989059,52.16036369472534],[4.960407513751798,52.16031718581878],[4.960298434355698,52.16027410713873],[4.960212335358326,52.160239533288085],[4.96014795444419,52.160214025995444],[4.959993497744368,52.16015110802177],[4.959931153464467,52.160128133618414],[4.959823688023028,52.1600844851052],[4.959739149292383,52.160051875946934],[4.959640639060019,52.160014722095134],[4.959541313287122,52.15997728657616],[4.959451923494446,52.159941576736834],[4.959369898474717,52.15991206830498],[4.959306624995491,52.15988852395452],[4.959261338828289,52.15987290932296],[4.95920373093285,52.15985444572194],[4.959179495520234,52.159847338173506],[4.958978949476315,52.15980559825906],[4.958965743248504,52.15980049906529],[4.958932136296986,52.15979531684898],[4.958889162285219,52.15978701773259],[4.958850519395237,52.15977816807546],[4.958825822946344,52.1597719036554],[4.958800097122431,52.159764781630535],[4.958751028885951,52.15974888343154],[4.958713490648365,52.15973610098284],[4.958660008513555,52.1597156837164],[4.958615661160465,52.15969670173345],[4.958575656710172,52.1596774658665],[4.958521634465735,52.15965395469279],[4.958463657401853,52.159629862880394],[4.958414619133134,52.159610872766976],[4.958369208534662,52.159596102213406],[4.95830817105489,52.159578740225584],[4.958226441527935,52.159555128215],[4.958157552627105,52.159536632080716],[4.958056421024441,52.15950789813875],[4.957972044095775,52.15948454596468],[4.957895851262632,52.15946574448192],[4.957793567850139,52.15943980140086],[4.957749373851131,52.1594292504205],[4.957682379317643,52.15941440105355],[4.957593902642239,52.15939189653694],[4.957512444566524,52.159370523037005],[4.957431135301096,52.15934888038154],[4.957352006138582,52.159326975969734],[4.957249196715678,52.159296536482955],[4.957177580227211,52.159276061457206],[4.95711677580128,52.15926038944877],[4.956965861448184,52.15922191884878],[4.956872112792945,52.159199106950844],[4.956770957847087,52.15917598933577],[4.956662140132039,52.15915340093572],[4.956547502476393,52.15912967668051],[4.956450088400223,52.15910965533551],[4.956337300429276,52.1590850927518],[4.956268164163064,52.1590696685127],[4.956183933797752,52.15905250834267],[4.956101444123017,52.15903367370922],[4.955994934959332,52.15900969099159],[4.955912578677252,52.15898916696283],[4.955819513477446,52.15896832510179],[4.955734196289214,52.158947223878364],[4.955640429987631,52.158926361336],[4.955611937566936,52.15891981271702],[4.955589302635426,52.158913546167454],[4.955543041012589,52.158903831669846],[4.955479457742842,52.15889151916149],[4.955394636358434,52.15887660327178],[4.955300448048887,52.158854076127916],[4.955184688394145,52.15882865668678],[4.955036925914863,52.15879552505037],[4.954983733085148,52.15878325032425],[4.954851691435573,52.158753555532684],[4.954713539500275,52.15872103393318],[4.954608039130437,52.15869565152214],[4.954514070976587,52.15867310657873],[4.95439149664752,52.15864373359888],[4.954285197642569,52.15862087360626],[4.954181896176494,52.158596343754276],[4.954109677074312,52.158579495811594],[4.954041447297318,52.158562680443694],[4.953924826709909,52.15853276258405],[4.953848289373063,52.15851366060548],[4.953753504465974,52.158492532163685],[4.953666243886834,52.15847310306243],[4.953609250558435,52.15846250350223],[4.95353063487064,52.158446764193236],[4.953454474186477,52.1584355548364],[4.953310233875281,52.15841619465499],[4.953237263208339,52.15846619641354],[4.953191452955025,52.15845675229136],[4.953124350004697,52.15844133368086],[4.95309028419684,52.158433919074355],[4.953004452223933,52.15840888620398],[4.952944252270752,52.158388432625394],[4.95289975888817,52.158372827443486],[4.952832947348958,52.15835151358802],[4.952777171712759,52.15833445570973],[4.952701221485982,52.15831367438288],[4.952624231076094,52.158293167805475],[4.952561180030401,52.1582743932813],[4.952441507909903,52.158241370826],[4.952330368247309,52.15821006944244],[4.952185938094635,52.158175822996135],[4.951934068842934,52.158119006653905],[4.951880983626484,52.158107854424436],[4.951767627145236,52.15808216185279],[4.951675238075669,52.15806131021599],[4.951632275334028,52.15805216361205],[4.951532038186599,52.158029880761426],[4.951429969746298,52.15800508340079],[4.951227937851137,52.15795546023792],[4.951129287595944,52.157932338030946],[4.950964425479754,52.157895497928855],[4.950845170906915,52.15786782327167],[4.950702536688408,52.15783695215596],[4.950529587799554,52.15779924564384],[4.950370799321369,52.15776606733836],[4.950298622998433,52.157752596713266],[4.950216361920954,52.15773628443256],[4.950172496509902,52.1577268553231],[4.950120796830761,52.157714583924935],[4.949960977067479,52.157676349969016],[4.949877039546446,52.15765666072516],[4.949792514759833,52.1576372568618],[4.949686784966211,52.157614952077516],[4.949578433127897,52.157591801586904],[4.949476715800945,52.15756866661805],[4.949417708264075,52.157553563535295],[4.949338111277839,52.15753389000882],[4.949123857481169,52.157482249496724],[4.949017950483828,52.157455737050846],[4.948913160516572,52.157430073533824],[4.948703009983107,52.15738182699611],[4.948600380438346,52.15735644086905],[4.948502995063585,52.15733276389923],[4.948397291376057,52.15730794140069],[4.948299892341802,52.15728567533374],[4.948217649563708,52.15726766298252],[4.948108529597787,52.157242539898306],[4.948027765444278,52.15722427226288],[4.947942527245648,52.15720624857124],[4.947845710434658,52.1571842629242],[4.94776322847065,52.15716683358693],[4.947668218344084,52.157145411779894],[4.947570478446103,52.157123701097056],[4.947447110856972,52.15709712218399],[4.947352668187289,52.15707598086563],[4.94725836898992,52.15705511863547],[4.947152173356976,52.15703141668746],[4.947001236347147,52.15699686996039],[4.946850647530717,52.15696260296795],[4.946704758770612,52.15692891058563],[4.946572596537824,52.15689921502707],[4.946399555516852,52.156861196497886],[4.946277989477111,52.15683434445753],[4.946146202996085,52.15680660921617],[4.946032377267967,52.15678174524438],[4.945914491235711,52.1567551942031],[4.945833685867262,52.15673831805155],[4.945759062495172,52.156722867105074],[4.945573214810578,52.15667667426088],[4.945406799842268,52.15663671967403],[4.945207610853231,52.156589065179865],[4.945002607668087,52.15653831465014],[4.944807847905266,52.15649207820997],[4.944595433716963,52.15644015770436],[4.944439970072919,52.15640418857317],[4.944280293466337,52.15636426666065],[4.944119705633859,52.156324898368126],[4.943981560081101,52.15629179792407],[4.943848202036836,52.15625928155144],[4.943757444536369,52.1562367490534],[4.943657424936422,52.15621249191984],[4.943593219008966,52.156197375358865],[4.943439301087948,52.156163370107215],[4.943300002151445,52.156130264524016],[4.943160481462788,52.15609743657049],[4.942997684691645,52.15606143793581],[4.942853160851328,52.156027736919505],[4.942691772279539,52.15598978376999],[4.942570233971292,52.15596207413283],[4.942405984700251,52.15592382219418],[4.9422550523498,52.15588954801516],[4.941983606066614,52.15582897838483],[4.941791807563209,52.1557838806093],[4.941649302578203,52.15575159685499],[4.941498035398462,52.155717311450935],[4.941366066192493,52.15568508512289],[4.941325267712046,52.155676221556206],[4.941045055464415,52.155612803376236],[4.941031867653622,52.1556091133553],[4.940986287684362,52.15559910808622],[4.940875001432325,52.15557369146109],[4.940783189763945,52.155553112071146],[4.940715986946885,52.15553685010593],[4.940676257720567,52.15552630060701],[4.940636906582382,52.1555115551082],[4.94059735548029,52.155493429334186],[4.940580345603566,52.15548325340411],[4.940567310375124,52.15547308352754],[4.940558626655122,52.155463226725686],[4.940548870216065,52.15544520471727],[4.940546943552249,52.15542161279253],[4.940551565446008,52.155403663183414],[4.94056165368182,52.15538852055866],[4.940577254966953,52.15537005524634],[4.940594038893754,52.155356070454744],[4.940621012000767,52.15533145541191],[4.940656250571407,52.155301532742264],[4.940699404471566,52.15526770324872],[4.940739925046962,52.155234169369656],[4.940794606186223,52.15518886077923],[4.940840959353883,52.15515364120156],[4.940893010511399,52.15510974272829],[4.94094903835888,52.155064169518305],[4.940999724115802,52.15501942994595],[4.941035928263358,52.15498641892585],[4.941076085389388,52.15495118481615],[4.941128853742209,52.154904197062116],[4.941176547130215,52.15486056061935],[4.941222499922496,52.15482000946665],[4.941263869644871,52.154784770887694],[4.941296337229917,52.1547556824308],[4.941325035466031,52.15472798185745],[4.94135431197438,52.15469943858562],[4.941392001324517,52.154662514279174],[4.941430400605581,52.15462472979006],[4.941478689007633,52.15457998095459],[4.941524660885543,52.15453746137362],[4.941581915359114,52.154485978360306],[4.941639482992144,52.15443677946545],[4.941695833863112,52.15438503233134],[4.941758452595816,52.154331897707806],[4.941845512761579,52.15425583691237],[4.941984271700508,52.15413725992572],[4.942104570549777,52.15403519609191],[4.942203017575889,52.15395130445351],[4.942277826417946,52.15388304370047],[4.942395788493305,52.15376019039242],[4.942454940043573,52.15370142479855],[4.942490491551008,52.153664770711245],[4.942514542182892,52.153644350625854],[4.942535053803356,52.15362421380475],[4.942572833745922,52.153591208249324],[4.942618972997343,52.153555151277],[4.942688995935539,52.15350514493086],[4.942689554042849,52.153504859415776],[4.94275419761187,52.153456513531125],[4.942834580316403,52.153400631983246],[4.942841145597708,52.15340459347193],[4.942841812187127,52.15340515324113],[4.942991259375918,52.15330151749932],[4.943048698963429,52.15324872221375],[4.941102972878615,52.15268741290669],[4.941055897049171,52.152735276048155],[4.941028961360458,52.152768025522846],[4.941011726311436,52.15279070910564],[4.940997713428724,52.15281117583415],[4.94098542435591,52.15283021997982],[4.940971243653919,52.15285431724254],[4.940963034957767,52.15287592043447],[4.940953220185891,52.152900321823275],[4.940943686980015,52.152919942633815],[4.940926146686966,52.1529468404445],[4.940906385306342,52.15295912427167],[4.940885195862854,52.152966630039856],[4.940864259279486,52.15297076624217],[4.940840826497129,52.152973194256866],[4.940813093869527,52.152973089346744],[4.940785733703294,52.1529693456792],[4.940741051752368,52.152961869342946],[4.940719075602193,52.15298228793174],[4.94072475440454,52.15298427780203],[4.940680505308278,52.15303579164885],[4.940680437890927,52.15304253243077],[4.940683662030869,52.1530518113102],[4.940688937449144,52.15306053170469],[4.940696167259241,52.153068153964284],[4.940708090340314,52.15307549737682],[4.940725242069148,52.15308455032552],[4.940746359695313,52.15309446315372],[4.940764528585206,52.153104086192236],[4.940777110300292,52.15311424534901],[4.940790102418665,52.15312720134033],[4.940800981257936,52.153146917336386],[4.940806745053909,52.15316379173343],[4.940809214584164,52.15317839766752],[4.940805320727709,52.15320394494825],[4.940800601272147,52.15321853267375],[4.940791933302682,52.15323928923873],[4.940778889875871,52.153265071544936],[4.940755297245636,52.15330684861637],[4.94071547929767,52.15337550147241],[4.940656415434582,52.15348228967826],[4.940602315785286,52.153573376545],[4.940552694070915,52.15365940208866],[4.940500277716784,52.15375161878457],[4.940499699405113,52.153752461471825],[4.940498642276217,52.153754425852505],[4.940491233515083,52.15376760124833],[4.940490552920711,52.153768443548316],[4.940432549636231,52.153869896752155],[4.940391083409573,52.15394107788364],[4.940346588864709,52.15401844029711],[4.940245592351192,52.15419753112909],[4.940172033790775,52.15432589841069],[4.940158954239396,52.154343546325414],[4.940147092547217,52.15436652876485],[4.940132571856915,52.15439092124039],[4.940121647042734,52.154410815338366],[4.94009608570305,52.15446520403263],[4.940079957569435,52.15450418699988],[4.940060936798075,52.15454456113899],[4.940044486093117,52.154580729619845],[4.940023961262765,52.15462391131188],[4.939999678735948,52.15467606680641],[4.939974576217748,52.15473130208802],[4.939955954411011,52.15476829821554],[4.939940884318617,52.154800831754734],[4.939928302510762,52.15482857510647],[4.939906984952962,52.154870639254334],[4.939887727845842,52.15491269323279],[4.939870324755754,52.15495054783034],[4.939840205238678,52.1550164418621],[4.939817370176527,52.15506409979293],[4.939792821524595,52.1551092255808],[4.939763198858827,52.15516051589986],[4.939744478319013,52.15519274795317],[4.939729541383444,52.15521488279891],[4.939705610365918,52.155255229269315],[4.939686160810188,52.15528437564856],[4.939640699481455,52.155354426836745],[4.939609281029052,52.15540260942881],[4.939570218198322,52.15546117117174],[4.939535568490773,52.15551243337405],[4.93951504697447,52.155543535051685],[4.939503662298648,52.15556260044513],[4.939490398259563,52.15558838176542],[4.939473108343193,52.15561780594384],[4.939450544761171,52.15565872379616],[4.93941696348183,52.155715616533506],[4.939382484989251,52.155773081090956],[4.939349157628479,52.15582940852505],[4.939311847507661,52.15589526613713],[4.939286420137767,52.15593757522229],[4.939261414593258,52.15598298677872],[4.939237505738781,52.15602249734702],[4.93921660827749,52.15605752531994],[4.939204895732971,52.156075744562536],[4.939190824251266,52.156100408264685],[4.939175582037723,52.15612815041972],[4.93916336857115,52.15615114040832],[4.939146405829277,52.15618141065568],[4.939131047649191,52.15621196562259],[4.939117562843417,52.156234950778774],[4.939091585664386,52.15628540988978],[4.939072539891524,52.156317919227234],[4.939056836057945,52.156346504489484],[4.939037940970487,52.156375643876466],[4.939012695291431,52.15641290230925],[4.938994654110424,52.15643558252797],[4.938979413065216,52.15645154133407],[4.938959565034919,52.15647224630238],[4.938932242948844,52.156497983144725],[4.938906568640889,52.15652261172299],[4.93887637690448,52.1565488859213],[4.938832841423301,52.15658552655569],[4.938791635066479,52.15662160078972],[4.93875656824932,52.15665601757682],[4.938715224126256,52.15669124638428],[4.938675720525597,52.156725089025976],[4.938630564356026,52.1567659208423],[4.938575953374332,52.156814014988946],[4.938565935207778,52.15682354018133],[4.938565596404588,52.15682380853461],[4.938433434531287,52.15694436597398],[4.938340320239755,52.15703136663166],[4.938260796290222,52.157103813347504],[4.938172650142567,52.15718352549296],[4.938121201932671,52.157227991305206],[4.938081223679919,52.157260987064696],[4.938035382510257,52.15730152842787],[4.938002759945612,52.157334003887875],[4.937966219037614,52.15736811822219],[4.937933159966442,52.157397491125884],[4.937877937929649,52.15744951938514],[4.9378290931239,52.15749370736498],[4.937785068925459,52.15753371626697],[4.937741979565104,52.15757230860214],[4.937709290322161,52.157598303346894],[4.937673732265824,52.15762764868269],[4.937624783696215,52.1576690409007],[4.937591407901874,52.15769644412002],[4.937541692799486,52.15773557738391],[4.937496554397253,52.15777444045067],[4.937465001785404,52.15780072707657],[4.93743630720001,52.157826179710916],[4.937395682211196,52.157859442413866],[4.937340281684419,52.15790586120092],[4.937305144895809,52.157938308906395],[4.937239164248737,52.157993387735196],[4.937193093458344,52.15803336164771],[4.937142092922584,52.15807671422147],[4.937107513965125,52.158108885366],[4.937060630511305,52.158149718979196],[4.937020455146913,52.158183261897015],[4.93696978709395,52.158225492159005],[4.936928990165729,52.15826269080785],[4.936880072623268,52.15830521532789],[4.936838485677902,52.15833958868493],[4.936797939306214,52.158375107480445],[4.936766152601223,52.158402786172154],[4.9367181060141,52.158445862219914],[4.936635961585225,52.15851969996791],[4.936597922294675,52.15855438339063],[4.936550020994559,52.158604749227386],[4.936499965615408,52.15865568205233],[4.936426087433382,52.1587256234493],[4.936393815554925,52.15875498993909],[4.936370075231137,52.15877596721766],[4.936350943011336,52.158793582592736],[4.936334953665825,52.15880532280445],[4.936301374095271,52.15883103512722],[4.936272470062357,52.158853943061125],[4.936241845504147,52.15888079915191],[4.936214411910904,52.15890569904818],[4.936189184113591,52.158927794110944],[4.936154723622342,52.15895967781049],[4.936131638667085,52.15898374943255],[4.936110064687035,52.15900725159111],[4.936093095765949,52.15902769743884],[4.93607942295729,52.159045908873885],[4.936055808413703,52.159077546388325],[4.936045692377228,52.15909520517014],[4.936031518714842,52.15911958946996],[4.936010275095987,52.159153770667544],[4.93599166751218,52.159187404681575],[4.935969933832777,52.15922524213117],[4.935946522103786,52.1592714949556],[4.935925529576719,52.15931551900387],[4.93590663706708,52.15935419420602],[4.93588515172883,52.15940214413648],[4.935865632583027,52.15944786356019],[4.935850025468113,52.15948825005789],[4.935833464020308,52.15953340555336],[4.935818655397537,52.1595757544937],[4.935783107588865,52.15967028057606],[4.93576679647932,52.15971234513244],[4.935741911488766,52.15976983631803],[4.935717593210171,52.1598261971728],[4.935698002363536,52.15987752483002],[4.93567780180456,52.15993277792496],[4.935657718105669,52.15998803146318],[4.935625743610357,52.160090426713886],[4.935615323534566,52.160129430891324],[4.935600972742715,52.160179933706374],[4.935592028199429,52.16020742984716],[4.935582818632289,52.160238007871015],[4.935574192752368,52.160265783859],[4.935567462229246,52.16028822820358],[4.935561004926136,52.16030533469702],[4.935548249868367,52.160335332902136],[4.935535392405058,52.16036533970187],[4.935522871805738,52.16039816104624],[4.935509760231335,52.16042872412889],[4.935496377913772,52.16045282377236],[4.935479584681532,52.16048759713847],[4.935458331435299,52.16052262307055],[4.935433587531667,52.16056464630753],[4.935409564793679,52.16060472189521],[4.935387678477221,52.16064452702807],[4.935363404396116,52.16068488027307],[4.935335172207612,52.16073364913925],[4.935299216862099,52.160788841837345],[4.935274167658566,52.160827789960955],[4.93527764167102,52.16084408959372],[4.935274988807098,52.16084772857893],[4.935264262328759,52.16085921016899],[4.935232959887691,52.16089364031586],[4.935202113347685,52.160927784583215],[4.935185083342004,52.16094260354962],[4.935160540117804,52.16094167365228],[4.935123626030654,52.16095585019621],[4.93508402771603,52.16097675747516],[4.93505326111423,52.16099433705181],[4.935038535508466,52.161003843906286],[4.935026215763865,52.16101389925967],[4.935005956263128,52.161030116948346],[4.934961174844312,52.16106925903502],[4.934916933165654,52.161105607892786],[4.934873302071843,52.16114082658115],[4.934844396342988,52.161166565388235],[4.934752063646248,52.16125131019094],[4.934690666139019,52.16130473338056],[4.934645128247667,52.1613478002197],[4.934593617271452,52.16139619201677],[4.934526071871259,52.16145773470561],[4.934461735867016,52.161519837938506],[4.934390172151216,52.16158558951208],[4.934320705846243,52.1616462618606],[4.934242495585309,52.161713093366544],[4.934144674855616,52.1617997850084],[4.934084230589783,52.16184842091587],[4.934061580114038,52.16186686728351],[4.934050268213384,52.1618769353926],[4.934026265938479,52.161901847951064],[4.933997760321934,52.16192982610817],[4.933961882495732,52.1619670516016],[4.933922060302701,52.16200986148262],[4.93387496445748,52.16205940241553],[4.933844390169417,52.16209102173282],[4.933805533560296,52.162127957105945],[4.933764862041039,52.162165146146066],[4.933735452731937,52.16219285112605],[4.93371934539206,52.1622073858083],[4.933690534576924,52.16223227982061],[4.933659660617195,52.16225884666026],[4.933631893304354,52.16228316044591],[4.933607360981723,52.162305536254536],[4.933562495940402,52.162348344606954],[4.933505629210291,52.16240290809841],[4.933434228335322,52.1624753647927],[4.933363220299736,52.16254222340609],[4.933305319076115,52.162599299473094],[4.933261616954048,52.162642669441524],[4.933179110533644,52.16271341148783],[4.933101914307394,52.16278221451661],[4.933020608617889,52.16285268244266],[4.93294320644817,52.16291726019666],[4.932876366573764,52.162977959777265],[4.932814306618424,52.16302995932667],[4.932739759649313,52.163095401803616],[4.932666252798303,52.16315914950008],[4.932577580758864,52.16323380413828],[4.932527150269152,52.163284733818294],[4.932496149361294,52.16331214473896],[4.932461486746296,52.163343190685616],[4.932421556082961,52.163383474000604],[4.932367737190295,52.16343270080355],[4.932304432573077,52.163493413683774],[4.932222798313289,52.16357005457376],[4.932143829380955,52.16364614842588],[4.932064112197844,52.163723929090274],[4.932008542484247,52.16377707674895],[4.931951216434845,52.16383331847922],[4.93185410419661,52.16392703060498],[4.931778445635485,52.16400229210819],[4.93171001124426,52.164071406663126],[4.931669390011908,52.16411477894159],[4.931643204701202,52.164139961215355],[4.931592909435321,52.16419032476936],[4.931569027243166,52.16421467104234],[4.931546296687417,52.16423930937396],[4.931524554433135,52.164264490799326],[4.93152097452137,52.16426869236631],[4.931489704352394,52.1643008746294],[4.931485770733024,52.16430536244668],[4.931473654484602,52.16431822248133],[4.931460517826394,52.16433081792118],[4.931446451569528,52.164342843523364],[4.931431613635866,52.1643545785266],[4.931403159252902,52.164377226345536],[4.931375982535966,52.16440070599182],[4.931337808876463,52.16443763419821],[4.931290104150719,52.16448043071368],[4.931168585357062,52.1645937048222],[4.931120817111798,52.16464268479272],[4.93107225079761,52.16469108642503],[4.931023644040162,52.16474200453111],[4.930984608630332,52.164785966924335],[4.930945601804457,52.164825696049824],[4.930940180538398,52.164831292614096],[4.930906507216767,52.16486542482303],[4.930871886600129,52.164899283718384],[4.930836277873599,52.16493257253635],[4.930785924266005,52.16497703037884],[4.930731186387284,52.165024284497875],[4.930667858268787,52.165076853243676],[4.930606222636342,52.16512969814446],[4.930548038693117,52.16518087560589],[4.930439653246662,52.165281562597734],[4.930328557545891,52.165382814232025],[4.930220051502062,52.165485190305155],[4.93007767941143,52.16561608896855],[4.92996491678152,52.16572295132488],[4.929820906870827,52.165858058720495],[4.929717281892677,52.16595315496052],[4.929546567895049,52.166109496099764],[4.929503989805657,52.16615231176982],[4.929367787083032,52.166282676239994],[4.929270424505363,52.166376942515775],[4.92918636848588,52.16645638515344],[4.929087455448977,52.1665492611031],[4.928955481509671,52.166667552602625],[4.928760215957986,52.16684571009869],[4.928741790285351,52.16686221246098],[4.928708595230072,52.16689073736368],[4.928674616775806,52.166918683979205],[4.928639515520786,52.16694636556941],[4.928635935004928,52.16694915592449],[4.928605901966336,52.166971509316156],[4.928574968520173,52.16699329295508],[4.928543017552933,52.167014524361555],[4.928478875606814,52.16705331010959],[4.928408203637604,52.167097418319074],[4.928401998034011,52.16710105232565],[4.928394994457174,52.16710410799564],[4.928387429444638,52.167106325595434],[4.928379431677174,52.16710798425423],[4.928371074420397,52.16710906628071],[4.928328454058954,52.16711172282287],[4.928320134719663,52.16711196011796],[4.928310987807108,52.16711165491264],[4.928301878999277,52.16711048700349],[4.928293202561955,52.167108493875624],[4.928285014372126,52.167105927411406],[4.92825686878217,52.16709964318772],[4.92822838416427,52.16709363626789],[4.928179951235876,52.16708445088662],[4.928162627707727,52.16708045573839],[4.92814578068077,52.16707560857769],[4.928092708085955,52.167062764960086],[4.92775551060359,52.16697241730316],[4.927425479729342,52.16688602436778],[4.927273083203875,52.166846665185275],[4.926916861408372,52.16675175595043],[4.926464960495868,52.166634262720635],[4.926209901143999,52.16656641372117],[4.926030408117443,52.16651853428106],[4.925899882777309,52.16648600879123],[4.925759597016744,52.166448933000744],[4.925440021476025,52.16636566724542],[4.92516042790962,52.16629322595313],[4.924971612218873,52.16624530839608],[4.924753942106357,52.16619053644834],[4.924556132746821,52.16613891586275],[4.924228803604606,52.166055337785984],[4.923969383732365,52.16598859930487],[4.923856964725005,52.16596090627058],[4.923762903178797,52.165937509594016],[4.923671323548598,52.16591299009706],[4.923580012890726,52.16588791432693],[4.923517515897796,52.16586940510614],[4.923444182661926,52.16584862423803],[4.923315333308736,52.16581131183545],[4.923098509221522,52.16575147987727],[4.923020291944102,52.16573094917912],[4.922941823374493,52.16571069606954],[4.922908669219223,52.16570270111],[4.922744985710883,52.16566582627175],[4.92261615770784,52.16563499356207],[4.922473331345875,52.16559818247181],[4.922341796916943,52.16556481316469],[4.921976049207646,52.165467307797165],[4.921557202205249,52.16535584009532],[4.921165375387438,52.1652520455308],[4.920761387447055,52.16514428280851],[4.920257994507321,52.165014491219665],[4.919910679588479,52.16492323611705],[4.919651188010415,52.16485620917863],[4.919591152246078,52.164840233256825],[4.919497788225507,52.16481347439833],[4.919281412246262,52.16475924570189],[4.919108870200487,52.16471474476355],[4.918861420823324,52.16465224887512],[4.918281629231643,52.16450557165231],[4.91803065442451,52.16443941085901],[4.917826707674674,52.16438636138602],[4.917603513860296,52.16432761744651],[4.917390805233035,52.16427255498163],[4.917317582578609,52.164252894230295],[4.917006368895298,52.16417244307467],[4.916757998857227,52.164110496342836],[4.916340489564104,52.164003500390386],[4.916235831626725,52.16397809601025],[4.916164340708833,52.163957857227246],[4.915906346102823,52.163885767714454],[4.915882793510692,52.16387948987891],[4.915801669638178,52.16385248035658],[4.915748517343409,52.16383542443438],[4.915719376276495,52.163826886217215],[4.915689425508143,52.16381890201659],[4.915659235022986,52.163811474109444],[4.915628600114969,52.163804610665586],[4.915597371689007,52.16379858971835],[4.915566265973641,52.163793405141575],[4.915550637051794,52.16379109566955],[4.915518391377176,52.163785906524204],[4.91549070843908,52.163780465966134],[4.915433129623289,52.16377153537839],[4.915365165652885,52.163761988006975],[4.915295430677009,52.16374991686157],[4.915284370478183,52.163748173893886],[4.915254284842242,52.16374328093114],[4.91522451496683,52.16373755333516],[4.915195265653329,52.16373097394924],[4.91516622685174,52.16372383813909],[4.915137749512592,52.16371612933263],[4.915046196354811,52.16369274469326],[4.914997431194474,52.16368102690676],[4.914955564541589,52.163667934569766],[4.914843099212721,52.163636026312105],[4.914734948401275,52.16360385659015],[4.91468704048889,52.16358849295938],[4.914653538312652,52.16358190539858],[4.914619928036638,52.163575865666246],[4.914594054407682,52.16357211290705],[4.914568508307656,52.16356779520684],[4.914503144418353,52.16355153469047],[4.914486551853154,52.1635450058229],[4.914469111155901,52.163541277826475],[4.914446753520255,52.16353950750125],[4.914424273064266,52.16353829393871],[4.914399489213062,52.16353790703226],[4.914398015962885,52.16353763148852],[4.914393801202137,52.16353676972632],[4.914390162326482,52.16353535301223],[4.914387333269848,52.16353337329552],[4.914385401626499,52.16353083991514],[4.914384522352318,52.163528301762945],[4.91437919064471,52.163482495286694],[4.914377984322985,52.16347771780027],[4.914375871878041,52.16347293668341],[4.914372367971751,52.16346843760908],[4.914367952134603,52.163464483151884],[4.914362627223234,52.16346080368165],[4.914356507109853,52.16345768727212],[4.914349448597365,52.16345485471988],[4.914340800110129,52.16345172817896],[4.914331797914858,52.163448878849614],[4.914322231308529,52.16344688112258],[4.914312334414537,52.16344570897167],[4.914302402196524,52.16344511191346],[4.914292347155269,52.163445071621155],[4.914287547568323,52.16344560964704],[4.914271870879231,52.16344920496102],[4.914250614590861,52.16345108815942],[4.914229223814106,52.16345324944443],[4.914205939684051,52.16345202363118],[4.914201049262711,52.16345285789508],[4.914196562247681,52.163454242046576],[4.914192902280109,52.16345619575974],[4.914191855764455,52.16345702745372],[4.914162772313835,52.16348585239594],[4.914144896173116,52.1634818439765],[4.914080573614269,52.16346388865807],[4.914099853087816,52.16342099409077],[4.914075359298224,52.16341668948989],[4.914052686809496,52.163411538321434],[4.914030587259887,52.16340611081625],[4.914000862053173,52.163398962977624],[4.913969204895538,52.16339069286646],[4.913938141207508,52.16338158923825],[4.913813471837412,52.16334569428671],[4.913761133429059,52.16332919798753],[4.913703593146457,52.16330845641136],[4.913675707092443,52.1632987902278],[4.913653883154819,52.163289435980374],[4.913600659901824,52.16326956554077],[4.913516982354856,52.16323552452352],[4.913455593768078,52.163209716095636],[4.913329718105218,52.1631594978252],[4.913305641136059,52.163148992983665],[4.913280838701162,52.16313936605267],[4.913255475284316,52.16313026715839],[4.913246023028527,52.163127146296745],[4.913203736912361,52.16311236189612],[4.913164914152408,52.16309900251559],[4.913138161910727,52.16309131812896],[4.913122338102257,52.163086751550786],[4.913106973273909,52.163081629555286],[4.91309947636203,52.163078804154544],[4.913051146310957,52.16306063388772],[4.913003497554034,52.16304162146182],[4.912974197997101,52.163027464394865],[4.912945351611269,52.16301330015362],[4.912922511236349,52.16300197330209],[4.912879607701409,52.16297791962413],[4.91280031041887,52.162940264526966],[4.912747834759814,52.162914761197385],[4.912672141212914,52.16288046405567],[4.912642259853012,52.16286743706012],[4.912612024986511,52.16285466928872],[4.912591665626059,52.162846444238845],[4.912571204065911,52.16283820978635],[4.912514694221961,52.162815512374614],[4.912458187303566,52.16279254530588],[4.91237746614179,52.16276103201954],[4.912296949507951,52.16272953747665],[4.912138999841157,52.16266934693329],[4.912098503250825,52.162654030053865],[4.911972492278369,52.1626085734438],[4.911862884339254,52.16256543876905],[4.911808472297784,52.1625489332445],[4.911687699776337,52.16250294915876],[4.911606587312237,52.162473968394075],[4.911465894446431,52.162421153771625],[4.911371960956575,52.16238567672639],[4.911305432769523,52.16236237208836],[4.911237957342278,52.16234018709853],[4.911213371903986,52.16233222339368],[4.911188698883257,52.162324250342394],[4.91114519760753,52.16231116802609],[4.911101485906081,52.16229863311592],[4.911083283395981,52.162293778036116],[4.91106506617947,52.1622889318822],[4.911006314265954,52.16227240847518],[4.910956483372791,52.16225534580516],[4.910906091029045,52.162238856083185],[4.910741974917535,52.16218848068294],[4.910661511464428,52.162163160020995],[4.910507618529809,52.162119000365784],[4.910248359788252,52.16203985565023],[4.910118702272384,52.16200226482921],[4.909951872625629,52.161951598723164],[4.909761508162578,52.16190140341412],[4.909610202988978,52.161860057323054],[4.909177217138859,52.16174426381277],[4.909240470512263,52.16155184311291],[4.909261574718054,52.16149995067217],[4.909265558249502,52.16149098773969],[4.909207602805861,52.161465757231326],[4.909182574123503,52.16145695541537],[4.909120407857813,52.16143871848912],[4.909030395361592,52.16141139862392],[4.908958788854635,52.16139172122382],[4.908886366494292,52.161373172968005],[4.908842649867306,52.16136260557833],[4.908798568002644,52.16135202770367],[4.908737969364013,52.16134027731685],[4.908659179794594,52.16132674540379],[4.908621479966639,52.16132069635759],[4.908583864846332,52.16131492627244],[4.908556587091067,52.161311445117434],[4.908518971564388,52.16130707714644],[4.908481215456196,52.16130355347025],[4.90844333636711,52.16130059553045],[4.908389136338274,52.16129728374141],[4.908325784428734,52.16129561555631],[4.908262540275474,52.16129480163975],[4.908218700753097,52.16129434508072],[4.9081720024977,52.16129471279028],[4.908143794157989,52.161294876912386],[4.908084533163562,52.16129604745376],[4.908025368482993,52.16129777561585],[4.907966311736714,52.16130034007568],[4.907907117279356,52.16130347918217],[4.907866562063002,52.16130611873418],[4.907833886874402,52.1613085116523],[4.907801325603164,52.16131118365384],[4.907770912515421,52.16131387336174],[4.907676924417478,52.161326137678515],[4.907583281117236,52.16133895159321],[4.907489964809632,52.161352611640055],[4.907468811081853,52.16135589616865],[4.907394677511665,52.16136879823109],[4.907321002469728,52.161382546988776],[4.907242381327262,52.16139823498031],[4.907164116398544,52.161414769245724],[4.907086181544801,52.16143186206167],[4.907008690486322,52.16144981049729],[4.906998257990385,52.16145229368957],[4.906912520396674,52.16147330039627],[4.90641453633753,52.16159513699051],[4.906234256957304,52.16163624177166],[4.906065309732005,52.161675442072415],[4.905858997925375,52.161718138885085],[4.905755873853629,52.16173990972482],[4.905613293948352,52.16176937502665],[4.905565685802861,52.16177816878871],[4.905481144449052,52.161793840434946],[4.905396279130884,52.16180837820305],[4.905310934589619,52.161822626335585],[4.905211298927896,52.161839359657904],[4.905083757318693,52.16185934042606],[4.905023621365906,52.16186837040612],[4.904913505255647,52.161882517035316],[4.904783185810477,52.16189715620958],[4.90454073124559,52.16192340762236],[4.904421748039001,52.16193443462358],[4.904302653887902,52.16194490379149],[4.904136185989507,52.16195461268154],[4.903935682908305,52.16196671659611],[4.903763540149234,52.16197275257069],[4.903590956471463,52.16197766298032],[4.90337091496835,52.16198013156132],[4.903088898035161,52.161979262604454],[4.902853148632128,52.16197603925715],[4.90254607978396,52.161968603767],[4.902206950219432,52.161960748102196],[4.901816581745915,52.161948743955165],[4.901415720271823,52.16193670431027],[4.9008843564438,52.16192244481178],[4.900346165796562,52.161907022259555],[4.900003633344408,52.16189634194535],[4.899601056982473,52.16188483732309],[4.898400115189614,52.16185122415319],[4.897859297917043,52.16183691186643],[4.897419293767552,52.16182272793415],[4.89704103689594,52.16181132449178],[4.896660233473213,52.16180159001787],[4.896346112166793,52.16179241931187],[4.896048908131688,52.16178388442724],[4.895794222641538,52.1617763617435],[4.895511493122651,52.161767328517406],[4.895177634527801,52.16175751520123],[4.894555092115102,52.16174058199914],[4.894264594901371,52.161734883878935],[4.893990572664703,52.1617314829396],[4.893666913992433,52.16172844902234],[4.893565180858725,52.16172830214378],[4.893398910038844,52.161729296267104],[4.893216211850166,52.161731623530336],[4.893008936860515,52.16173608561954],[4.892890476869108,52.161739238633764],[4.892855629217096,52.16174106104647],[4.892780834434333,52.161743282338115],[4.892725094711299,52.16174444194336],[4.89262324669822,52.16174542626719],[4.892530157991703,52.16174728311049],[4.892432642075461,52.161747719181],[4.892406494019621,52.16174788817906],[4.892345067064436,52.161747909239175],[4.892283649377799,52.1617470944163],[4.892222471801599,52.1617457143206],[4.892209219829964,52.16174537111769],[4.892195982273468,52.161745045949836],[4.892154207235714,52.16174290232567],[4.89211507120713,52.16174132701814],[4.89207615738677,52.16173948298805],[4.892045903660085,52.16173823254228],[4.892007130847048,52.161735535215016],[4.89196833489338,52.16173228950603],[4.891885658377416,52.16172435659439],[4.890264602120678,52.16245624345507],[4.890193561294971,52.16248741149327],[4.890095724906869,52.16252828158373],[4.890003644285622,52.162564124551864],[4.889849040494641,52.16263397544802],[4.889738530427076,52.16268547863678],[4.889618157432247,52.162738054656316],[4.889394597378046,52.16283935104127],[4.88928048177258,52.16289560226633],[4.889159443623495,52.16295660581596],[4.889028947457604,52.16301643682015],[4.88881246248745,52.1631082166486],[4.888770411496017,52.16312152114506],[4.888730130907718,52.16313988439608],[4.888700311382811,52.163150714885994],[4.888654185656586,52.163171597042016],[4.888573698247805,52.16321085839668],[4.888502210471734,52.163242571802776],[4.888424735656476,52.163279032523086],[4.888340034618969,52.16331995667761],[4.888199727256429,52.16338650431627],[4.888050719480631,52.16345861455229],[4.887949622814864,52.16350312721996],[4.887869148803515,52.16354238815204],[4.887769267712719,52.163590563950514],[4.887648585727662,52.16365073157189],[4.88752344596559,52.16371087120742],[4.887486027024694,52.163728104667406],[4.887416234712956,52.1637609750687],[4.887383389965883,52.16377824584402],[4.887343147051312,52.163791836120986],[4.887282139920184,52.163815449996605],[4.887227126107915,52.16383375931099],[4.887189762244811,52.163847361733175],[4.887097651392737,52.163885449327566],[4.887051261188687,52.16390632074988],[4.887003797975813,52.163923817082434],[4.886944132863244,52.16395024074754],[4.88679362409619,52.16402290928568],[4.886734060830459,52.16404935125282],[4.886664058014819,52.16408134847566],[4.886576092256167,52.1641250797722],[4.886565645400867,52.1641286846085],[4.886532887163632,52.16413949309755],[4.886504607591422,52.16414583553593],[4.886462862397376,52.16415127595481],[4.886442174606384,52.164153156559],[4.886427321453347,52.164154774300286],[4.886402081229326,52.16415466719392],[4.886376767041113,52.16415203412263],[4.886355908444094,52.164148296447486],[4.886292257751816,52.164132584805984],[4.886229883067065,52.164115179802764],[4.88616907301774,52.164100316042926],[4.886087297031541,52.1640808691951],[4.886001381327309,52.16405522990952],[4.885933007972919,52.164042302291755],[4.885886949149518,52.16402580229772],[4.885784695879849,52.163990826757434],[4.88571794914938,52.16396582596814],[4.885676535571172,52.163952167882634],[4.885639395113494,52.16393543604972],[4.885609737160352,52.16392267278014],[4.885584639100204,52.16390992888505],[4.885504594526045,52.16387953254041],[4.885477782289186,52.16386846210296],[4.885434758721351,52.16384722014917],[4.885379988520631,52.16382169485207],[4.885330950373787,52.16379593325214],[4.88528508894055,52.163771021032375],[4.885243579674917,52.16374640593625],[4.885225877796503,52.16373621906886],[4.885176880878671,52.16370680842519],[4.885125060755484,52.16367371861944],[4.885086542411186,52.16364828928985],[4.885030296534615,52.16361236734691],[4.884965176180702,52.16357670421502],[4.884876284060478,52.16351958422119],[4.884731074660286,52.16342515760493],[4.884637833896841,52.16336099923351],[4.884563803808348,52.16331320898542],[4.884513401345598,52.16327760828587],[4.884497081164261,52.1632654588065],[4.884427567520516,52.16322415911745],[4.884363800434588,52.16318652403918],[4.88422740986069,52.16311123400717],[4.884184856578446,52.16308858246891],[4.884178843971553,52.163085195303694],[4.884050919490599,52.16301610696429],[4.883905931007329,52.16294386280375],[4.883571502386509,52.16274049216871],[4.883448656659215,52.162668341933866],[4.883322726825556,52.16258719033339],[4.88325768473187,52.1625422598811],[4.883188991168194,52.162498428317384],[4.882969987614295,52.16236856792251],[4.88284746855026,52.162296139816775],[4.882721810350064,52.162220884896925],[4.882619393877564,52.16215051087226],[4.882381938276131,52.16200484134928],[4.882337378466926,52.1619698219564],[4.882318232969596,52.16195429854469],[4.882316422139136,52.16195287967053],[4.882294803125203,52.16193508966704],[4.882120419593576,52.16182761909816],[4.881926141245776,52.16166246753659],[4.88182727215615,52.16159912768109],[4.881803632226513,52.16158947212181],[4.88106052490285,52.16135204016002],[4.880901650976059,52.16130529477254],[4.879868052899217,52.16102952379053],[4.879679011503327,52.160974225223974],[4.879467039880978,52.16092022983459],[4.879241352678652,52.160856620703456],[4.87902309125689,52.160791649965034],[4.878756463092965,52.16072477168998],[4.878521663356535,52.16065944114131],[4.878241647428739,52.16058379454308],[4.877998732275333,52.16051000612042],[4.877723599493244,52.160436913993],[4.877497654568505,52.160375826042],[4.877223870077998,52.16029487400104],[4.876998487278355,52.160225644322],[4.876716311964225,52.16014887022402],[4.876436681942609,52.16007069533624],[4.876167850042634,52.15998639173686],[4.875950324013344,52.15992815053072],[4.875706600749552,52.15986557996345],[4.875537042649188,52.15982497377947],[4.875368942800778,52.15977957404289],[4.875240357315472,52.15974081692019],[4.87506744502304,52.15967546930668],[4.874948515479882,52.15964348583911],[4.874878174733257,52.15963475864221],[4.874622651177646,52.159565393532574],[4.874312420453715,52.15947754430343],[4.874124161866547,52.15941633501542],[4.873957931948556,52.159366168717106],[4.873786418815453,52.15931795657375],[4.873591690243718,52.1592730226537],[4.873398812771822,52.159217122027],[4.87315503824794,52.15914949463456],[4.872938668283896,52.1590918101394],[4.87279708564882,52.159051321910724],[4.872663422359758,52.159009717568736],[4.872463854177248,52.158958864494245],[4.872184354191091,52.15887197058368],[4.872028448743655,52.15882662826783],[4.871847194391759,52.15878455455835],[4.871686993409696,52.158744244329505],[4.871485589547671,52.15868550801284],[4.871080135235744,52.15856071545593],[4.870071757330185,52.15828580433452],[4.869706438701261,52.158195166848095],[4.869371569889644,52.15811645421758],[4.869123093875734,52.158050766201605],[4.868867661131141,52.15798644924194],[4.868609547362873,52.15791396775205],[4.86834401802039,52.15783330988341],[4.867825090564576,52.15769845272841],[4.867608246480065,52.15765255766722],[4.867416773513965,52.15761407229215],[4.8672706495009,52.1575741146472],[4.867063463167193,52.15750214175917],[4.866980416563758,52.157468070343874],[4.866947033235985,52.15746230560951],[4.866849729206636,52.1574152463737],[4.86678012541298,52.15739388033111],[4.86668768779214,52.15737942423201],[4.866560148651427,52.157363698666146],[4.866506222054308,52.15738396253886],[4.866496555073414,52.15739963105419],[4.866480215188972,52.157392278599396],[4.866423321129592,52.15737628937864],[4.866403957888871,52.15737255475638],[4.866418024826635,52.15736053685418],[4.86635424553501,52.157277115557925],[4.866368571298521,52.15727297236698],[4.866351498636025,52.15725829136976],[4.866341416415001,52.15725318657388],[4.866330468337571,52.157250900213974],[4.866309881393004,52.15724433791537],[4.866301713347472,52.157239250554014],[4.866292375378191,52.15722797422441],[4.866286843585632,52.1572136227953],[4.866279625729693,52.157206004986826],[4.866257773146023,52.15719018835135],[4.86625022756405,52.15718060070338],[4.866238423274743,52.15715526510247],[4.866219606855691,52.157095923575746],[4.866223871480851,52.157072348678824],[4.866224363271176,52.157060261874406],[4.86621563455921,52.15701557052395],[4.866212853972234,52.1569796059024],[4.866212637074994,52.156929325590305],[4.866221177587364,52.15691251063655],[4.866219854840113,52.15690689623052],[4.86621412903635,52.15690040851593],[4.866206555146179,52.15688323479469],[4.866206014088278,52.15687199729776],[4.866208265267311,52.15683437411963],[4.866203457917303,52.15652257414342],[4.866199291574814,52.15630234761421],[4.866150457591906,52.15613304808294],[4.866111827965255,52.156010972062624],[4.866097319048735,52.15585558484176],[4.866080345580333,52.15561590542614],[4.866049365493186,52.155589667191556],[4.866016120503605,52.15546704865905],[4.865987080794028,52.15534221964389],[4.865968547788622,52.15528623186456],[4.865890903268388,52.154983951969974],[4.86587211249268,52.15491252149453],[4.865888799872971,52.1548524918673],[4.86589180871808,52.15484885599631],[4.865875499366093,52.154827715856726],[4.865869497165589,52.15481364095321],[4.865853421835263,52.15476245466017],[4.865844962131579,52.15474359622121],[4.865836417613672,52.15471323265174],[4.865818009887409,52.15468534216419],[4.86579939977569,52.15466727476157],[4.865774451523593,52.15463262328539],[4.865761261811576,52.15461964012438],[4.865746632591613,52.154601042031985],[4.865733835269508,52.154591997385424],[4.865731292521316,52.154594511801164],[4.865571409030813,52.15450252204684],[4.865536996017537,52.15450629770309],[4.865437049736275,52.1544634409866],[4.865055563135416,52.15428312412631],[4.865046730259087,52.154266223379715],[4.864956445804992,52.15421695555778],[4.864954821603478,52.15420965003888],[4.864898837688208,52.154184954627915],[4.864810945574774,52.15415479697694],[4.8646963700646,52.15413097455112],[4.864617693463059,52.15412248291201],[4.864525091588183,52.15410522007502],[4.864489184721006,52.15410056696591],[4.864371712754465,52.15412195946976],[4.864367369909109,52.15412220986914],[4.86436326571329,52.154120798528886],[4.864350225232026,52.15411258854523],[4.864358120643726,52.15411094275809],[4.864255001021663,52.15405599097384],[4.864244345346342,52.15405875701986],[4.864203369224647,52.154037785945185],[4.86419760314556,52.154033544971966],[4.864197425164487,52.15402878049433],[4.864200797934302,52.15402402276732],[4.864200801303719,52.154023735163285],[4.864201143901289,52.154023179420165],[4.864210247939353,52.1540069243626],[4.864170548178366,52.153984278160245],[4.864188038600687,52.15397311158646],[4.864173660708305,52.15396182172712],[4.86409266200223,52.153928314570656],[4.863961286377415,52.15386930945528],[4.863714652161121,52.153765131056865],[4.863650905558175,52.153730873229115],[4.863586441224446,52.153689295873825],[4.863538374076475,52.153650038279835],[4.863490385588271,52.15361529303762],[4.863448751382084,52.15359318627617],[4.863361707975024,52.15355937314908],[4.863121916293321,52.15348499243995],[4.863006836389814,52.15341848166539],[4.862962084905069,52.153389359156115],[4.862944623158121,52.1533595040171],[4.862938256679702,52.15333672686415],[4.862933104929478,52.15332996290321],[4.862976020342888,52.15323296532193],[4.862900608260767,52.153219148106395],[4.862858121118347,52.153316992444985],[4.862846673346804,52.15332002448762],[4.862813186104835,52.15333336679391],[4.862777610642963,52.15343739866403],[4.862784760379234,52.153507933048395],[4.862826422089605,52.15352890766822],[4.862893071113301,52.153559817295786],[4.863037208866112,52.15363433083853],[4.863088611621845,52.15365702941104],[4.863267244308025,52.153688436196994],[4.863481865352997,52.15373995602129],[4.863568239370252,52.15378976489171],[4.863633082545496,52.153838920899],[4.863671276701081,52.15388151416908],[4.863679031889204,52.15391300690216],[4.863652794713794,52.15394856422595],[4.863537075018095,52.15409213881366],[4.863530760618202,52.154096029597724],[4.863312154135619,52.15415236726064],[4.863228706239751,52.15417193231021],[4.863101119764354,52.15419721541919],[4.863014778395657,52.15419064806897],[4.862602342838894,52.15422645722195],[4.86258652873565,52.15421430691444],[4.862478546164763,52.15422142169545],[4.862418480088326,52.15422339259686],[4.862203219880671,52.154237310306144],[4.862193781151174,52.154234742654886],[4.86219093513168,52.15423445136063],[4.862178800220293,52.15423748926952],[4.862172960291193,52.15423829917656],[4.862162561381851,52.154239097785165],[4.862154112392313,52.15423934780793],[4.862146816440553,52.15423847046127],[4.8621464242384,52.15424324139333],[4.862072241959485,52.154250218586576],[4.861991522539927,52.15426137306282],[4.86196456986452,52.1542632214803],[4.861949497059651,52.154262597122035],[4.861923962816999,52.15425939154809],[4.861889579405196,52.154260640618354],[4.861590579978698,52.15429021013856],[4.861561929020997,52.15429232952984],[4.861124180744596,52.15433447420451],[4.861065600102267,52.15433561514784],[4.861037932736172,52.15433858367866],[4.860859473546719,52.15436053660869],[4.860753133237752,52.15437579136252],[4.860626935954862,52.154388431750995],[4.860413667212984,52.15441921674955],[4.860353263523231,52.15443242919831],[4.860318255683267,52.15443704555816],[4.86026529383187,52.15444496125276],[4.860106222618742,52.15447823474425],[4.860019810257263,52.1544888051803],[4.859833412567044,52.15452335835225],[4.859583166024882,52.154562119788174],[4.859381004705026,52.1545901483056],[4.859187157921466,52.154609513209465],[4.859080998587703,52.154618017209835],[4.85903677223547,52.154621198774365],[4.858874606633066,52.154636759199796],[4.858776464393021,52.15464446293073],[4.858678741889062,52.154654972745675],[4.858638493316134,52.15465788435948],[4.858494998573107,52.1546774736738],[4.858463960695858,52.154684920546494],[4.858399551209158,52.15469698154685],[4.85822752543266,52.154734409868766],[4.858061804190819,52.154758941333114],[4.85806113204162,52.15475893831885],[4.858060328384972,52.15475893471486],[4.857994541644422,52.154771285925435],[4.857923598248737,52.1547847284923],[4.857821798236839,52.154801403117474],[4.857703215512628,52.15481745406967],[4.857602985840316,52.154827385494094],[4.857498502860831,52.1548300083944],[4.857375533288179,52.1548302921815],[4.857354704942051,52.15483442305885],[4.857329732115329,52.15484301139242],[4.85732485810283,52.154848607064075],[4.857297030878275,52.15483668072758],[4.857227308499239,52.15480632937258],[4.857101862404205,52.15475429103633],[4.857093809489928,52.15477162884555],[4.857062771891282,52.154786409637374],[4.857062212122555,52.15479047872952],[4.857065780725386,52.15479267887016],[4.857070879381663,52.15481246659937],[4.85705666702729,52.15484150619645],[4.857019201952648,52.15492992452573],[4.85704002916927,52.155010794116876],[4.857048540166343,52.1550373292614],[4.857049621272571,52.15504596268994],[4.857049986069338,52.155054619864366],[4.857049605652366,52.155063273690466],[4.857048494846734,52.15507190625872],[4.857046422089738,52.15508155914769],[4.857043546629964,52.15509112753708],[4.857040670978014,52.155098251163786],[4.857036993263466,52.15510523636516],[4.857033867733199,52.15511002196424],[4.857030203157403,52.15511467031984],[4.857026247407167,52.155119227486026],[4.857021375152812,52.15512343898639],[4.857014261903447,52.15512932119074],[4.857009377062971,52.15513336186024],[4.857004666605619,52.15513748420597],[4.856999970652712,52.15514161560477],[4.856995449082958,52.155145828679814],[4.856990942124416,52.15515004182039],[4.856986624161131,52.15515433670288],[4.856982291584944,52.15515863151955],[4.856978177334945,52.15516299922191],[4.856974063084136,52.155167366924076],[4.856970152654256,52.15517179845874],[4.856966242116842,52.15517623898082],[4.85696253540041,52.155180743335414],[4.856958828789985,52.15518523870222],[4.856955340505927,52.15518980695486],[4.856951852327911,52.1551943662197],[4.856948582689846,52.15519898039512],[4.85694063934241,52.15521077303097],[4.856913630795634,52.155252931650075],[4.856875920859734,52.15531516650973],[4.856839669177196,52.155367808626664],[4.856803041978442,52.15541269231869],[4.85676709516419,52.15545196149886],[4.856722084336994,52.155512464737875],[4.856671354394307,52.15560169515894],[4.85664228203423,52.155679751871645],[4.85659730463744,52.155828383474365],[4.856586272987068,52.155856556481496],[4.856574638396328,52.155883818978616],[4.856525004968377,52.15600244533104],[4.856464653481582,52.15617814278708],[4.855948422166087,52.157854696512636],[4.855762429759936,52.15846992971192],[4.855517373245604,52.15928050424901],[4.854721128401089,52.16188650634582],[4.854659158520724,52.16200548961404],[4.854611483429331,52.1621120978541],[4.854605642399383,52.16212514915674],[4.854583524098383,52.16220032454559],[4.854579076080867,52.16221544040558],[4.854560019472851,52.162396554193144],[4.854543495268374,52.16246588560157],[4.854541495309955,52.16247426245764],[4.854394670934935,52.16295780573944],[4.854297607379936,52.163277496056196],[4.854156359301403,52.16377096005245],[4.853961708811593,52.164510932387415],[4.853896109639144,52.164754572507036],[4.853849050983714,52.16491070752051],[4.853795080449689,52.165064240679826],[4.853760369175098,52.1651411116415],[4.853695893140416,52.165247841264666],[4.853629859273208,52.16533569782561],[4.853545538884082,52.16542611415454],[4.853446090951552,52.16551403522236],[4.853329391657039,52.165597384124844],[4.853217974464625,52.16566801171352],[4.853080627723738,52.165744732608815],[4.852753015125615,52.1659072549185],[4.852408347951867,52.166075442421835],[4.852335883855753,52.16610924176443],[4.852177437901921,52.16618636032802],[4.852079761225715,52.16623468679238],[4.85198319207958,52.166272304406554],[4.85190729984342,52.166292084509415],[4.851871103252484,52.16629868834708],[4.851828959410755,52.16630637072806],[4.851808830678052,52.166308957860494],[4.851761693892897,52.16631249203691],[4.851743654280517,52.166313947150435],[4.851688261378811,52.16631120610919],[4.851596889408965,52.1663066839031],[4.851543788766585,52.16630293754412],[4.85145855904433,52.16629692412406],[4.851307702426544,52.166281076300024],[4.8512159088212,52.1662690738002],[4.851162214203777,52.16642429676557],[4.851153971434957,52.1664522032698],[4.851123941311918,52.16649299858433],[4.851121028899551,52.16649695808667],[4.851080742619853,52.166526408783334],[4.85105035943269,52.16654305150133],[4.851001824599111,52.1665595128722],[4.850603721917516,52.16664990316229],[4.850518891411592,52.16666777221245],[4.849708677569173,52.16684735190471],[4.849464815805946,52.16689926169427],[4.849126420928125,52.16696502207034],[4.848724925454928,52.16704039844859],[4.848404719696562,52.167109124925226],[4.848033359358179,52.16719919722589],[4.847953458428521,52.16722021481009],[4.847582616945383,52.16731195086211],[4.847101790348336,52.167418695887584],[4.846972067768947,52.16744749317174],[4.846384356038529,52.16757501176005],[4.846315050367575,52.16759004578741],[4.84628013069431,52.16759606055311],[4.846252702043385,52.1675978672701],[4.846240600407287,52.16759535805307],[4.846234101104579,52.16759251499168],[4.846171561176298,52.167605287986774],[4.846168374089645,52.167613776102094],[4.846163502086725,52.16762018024585],[4.845538955295659,52.16776178984803],[4.844772088248132,52.16793265444711],[4.844352817634456,52.16802478694213],[4.844261837761659,52.16804547244212],[4.843252744548718,52.16826275055162],[4.842605441421602,52.168399044668384],[4.842416488417621,52.16844065925997],[4.842013133550745,52.16852741015253],[4.841977270978291,52.168535118039976],[4.841835842794909,52.16856553638538],[4.841820380939151,52.16856886243023],[4.841799607604057,52.168572631307335],[4.841641317409992,52.16860131768635],[4.841485088266947,52.16862759558923],[4.841338110218935,52.16864443364599],[4.841086740853544,52.168662019875256],[4.840707813762705,52.168694501440164],[4.840454321029201,52.16871832320987],[4.840363026884177,52.16872860504147],[4.840293329828154,52.168734708559334],[4.8400858425126,52.1687497636267],[4.840017147546456,52.16875281567835],[4.839645235925732,52.168780472795795],[4.839060698072649,52.16881186012679],[4.83881829961778,52.16882487230603],[4.838762951499316,52.1688266194557],[4.838560970572553,52.16883719440174],[4.838326198895565,52.168850465727914],[4.838325964810203,52.1688504826154],[4.838325803917973,52.1688504908552],[4.83832556983261,52.16885050774272],[4.838166261595638,52.168859500825874],[4.838053892996278,52.168865844917626],[4.837967093184756,52.16887075295861],[4.837853618553107,52.16887788266408],[4.837584311048297,52.16889545883272],[4.83712775967131,52.1689422808847],[4.837127496241138,52.1689423066211],[4.837127408431082,52.168942315199914],[4.837127291387937,52.1689423236425],[4.837059600451279,52.16894926150665],[4.836438536775765,52.169036910772604],[4.835994946644675,52.16908150596057],[4.835620115149323,52.16911198599154],[4.835574756938721,52.1691072799493],[4.835491930927665,52.1691087533198],[4.835438199284792,52.169116861045545],[4.835393416651708,52.16912707784933],[4.83533372823047,52.169135786842034],[4.835203352321956,52.16914429103845],[4.835167027822314,52.16914666476411],[4.835019447703661,52.16915630167502],[4.834981660300123,52.16915876736803],[4.834820357814183,52.169169301546496],[4.834777879103397,52.16916460867521],[4.834664490886283,52.16916347566908],[4.834604176320976,52.16917197463581],[4.83454795304137,52.16918414189394],[4.834499211082816,52.16919181416575],[4.834058518046683,52.16921702834523],[4.833728402842442,52.16923422981418],[4.833704222771011,52.16923091665477],[4.833690928759895,52.16922910162907],[4.833587901389078,52.169230550821865],[4.833498045788638,52.16924484278447],[4.833486953001674,52.16924704675052],[4.833452004099066,52.16925399235153],[4.832993709485137,52.16928751484334],[4.832033665091273,52.169354170322826],[4.832017404758196,52.16935462412931],[4.831936790295126,52.16935687838508],[4.831883413051806,52.16935522509722],[4.831791345671125,52.16936159583667],[4.831745091463326,52.1693689910614],[4.831704176995609,52.169373688010516],[4.83125130568379,52.1694093324813],[4.830658717657248,52.169448603753644],[4.830636158204334,52.16944428195345],[4.830615117407668,52.169442430047674],[4.830479202764185,52.16945302409717],[4.830466846500255,52.169456893604455],[4.830434984791016,52.16946355626989],[4.829865199318781,52.169496927088],[4.829847844500354,52.16949371727431],[4.829800938446971,52.16949240818835],[4.829746115741362,52.169496463532475],[4.829656008743115,52.1695085043641],[4.829605859920607,52.16951636570955],[4.829580975913197,52.16952026581557],[4.829286762087728,52.16953709419453],[4.829170026425595,52.169538232049305],[4.82895702479762,52.16953542709811],[4.828951960778689,52.16953476499009],[4.828836538876618,52.16951969421316],[4.828800924482248,52.16951433059409],[4.828481077883063,52.16945940958274],[4.82846786369098,52.1694710764829],[4.828446704588725,52.169486849277085],[4.828406967879514,52.16950951785469],[4.82838723485451,52.169518799000414],[4.828362585313583,52.16952847930271],[4.82832424154781,52.16954029683412],[4.828286698940789,52.16954766904203],[4.828223086458569,52.16955674234747],[4.828080466850136,52.169569234318935],[4.827960247542545,52.16957656524425],[4.827635971197775,52.16959633895597],[4.826961057328565,52.169633933990966],[4.825981345842394,52.169685805307786],[4.825500476839617,52.169713079469474],[4.825461125318937,52.16971314383932],[4.825449015122279,52.1697113604834],[4.825363508907063,52.16971660696606],[4.825357373102918,52.16972096394532],[4.825330581981449,52.16972536639862],[4.825329005084483,52.16972638353383],[4.825026858179841,52.16975190894524],[4.824935745362969,52.1697612629344],[4.824827273899245,52.16977584610174],[4.824691406189699,52.16980223478282],[4.824633239812346,52.169816356457524],[4.82457269458623,52.16983596747623],[4.824497533344146,52.16986935044081],[4.824447917271101,52.16989397493186],[4.824429727938859,52.16989204563874],[4.824427727927073,52.16989183836368],[4.824410257668395,52.16988736886602],[4.824390841575717,52.16988071496785],[4.824365750299068,52.1698754990608],[4.824336393506841,52.16987237500698],[4.824303558812869,52.169870321917216],[4.824260970702086,52.16987201527122],[4.824173606394515,52.169883148219284],[4.824097846415641,52.16989676325623],[4.824096373207732,52.16989419462048],[4.824069590721687,52.16989673629387],[4.824069453906117,52.16990062748561],[4.823895083213726,52.16992925831278],[4.823751037093335,52.16995033985486],[4.823622633730807,52.16996548288682],[4.823384831704154,52.16998867783844],[4.822775646025747,52.170031901874935],[4.822466663902931,52.17005205811084],[4.821768267557769,52.170101932654404],[4.821463474602115,52.17012480276481],[4.820806258214908,52.1701709142518],[4.820367349054129,52.17020043614493],[4.818778079585162,52.17031680112843],[4.818305755852283,52.170352832575986],[4.817488633172585,52.17042026541034],[4.817113742661418,52.17045002131536],[4.817047017376208,52.170455316544604],[4.816657485024479,52.170486896754596],[4.816253022641869,52.170519976370755],[4.815850338796985,52.17055110380703],[4.815552438813837,52.170572868523564],[4.815276487490228,52.170592914270216],[4.814955476227932,52.170615796851116],[4.814805180727808,52.17062669861348],[4.814634752136776,52.170639057452945],[4.814254037636758,52.17066670876537],[4.813926869994081,52.17069081699752],[4.813607017240919,52.17071443856542],[4.813265830493472,52.17073738927096],[4.812953580263704,52.17076086627867],[4.812661538799613,52.17078152869782],[4.812387642537713,52.17080070585461],[4.812094150197943,52.17082047897069],[4.811863555114658,52.17083715150302],[4.811689395848554,52.170853020229714],[4.81149969116897,52.17087277662261],[4.811319350913921,52.170891832392925],[4.811121091381765,52.17091747858069],[4.810946515926422,52.17094288954418],[4.810763084289273,52.17097489021309],[4.810515967855862,52.17102561622809],[4.810281639264552,52.171082183587586],[4.810037277603382,52.17114587392289],[4.809895846607048,52.17118545786966],[4.809725454737806,52.17122632905333],[4.809553867578464,52.17126917152374],[4.809374389095847,52.171311795347954],[4.809169453038274,52.171356082851084],[4.808954824667479,52.1714037559667],[4.808717044792737,52.17145561152999],[4.808448511557315,52.171511666052105],[4.808200154600327,52.17156743246116],[4.807976466436552,52.17161467286718],[4.807692350631785,52.171677291403434],[4.807472284160961,52.171724728401664],[4.806513438528596,52.171931414763236],[4.806484906157173,52.17193682003463],[4.805468962779059,52.17215834395113],[4.803957360612676,52.17249780638143],[4.802866937158177,52.17275629443004],[4.802487457224822,52.17284394550916],[4.802464393769617,52.1728491522027],[4.802207704426611,52.17290709380396],[4.801839725214977,52.17298707004084],[4.801594376725915,52.173035116727505],[4.801512967662499,52.173044923251496],[4.801384283026238,52.17307019729164],[4.799481036915114,52.17350508900367],[4.79830712392815,52.173771927608286],[4.798200328658176,52.173777722321795],[4.7980841954316,52.17380427779278],[4.79799160089697,52.17384173638978],[4.797738200558914,52.17390103293295],[4.796766639512236,52.1741203579075],[4.795654557275647,52.17437434788119],[4.79523749530541,52.17447169224132],[4.79510495992462,52.17450013091762],[4.795087072901705,52.17450401392602],[4.795075932352766,52.17450626797868],[4.794520318382876,52.1746225086988],[4.794095738866488,52.17471313312216],[4.793324598338451,52.17487570621814],[4.79326978661679,52.17488586559996],[4.792351964018783,52.175084563350374],[4.791872713463003,52.175185042831686],[4.791884845498389,52.17520492280232],[4.791916849483457,52.17525736804419],[4.791930927464883,52.175280421638135],[4.791929089511242,52.17528887916556],[4.791918574814939,52.17530117579351],[4.79186112516867,52.17532051605232],[4.791813477889833,52.175333829771105],[4.791713962770881,52.17535463852787],[4.79165776881729,52.175368610135244],[4.79156334128169,52.175395978790334],[4.79149692580385,52.175412316537724],[4.791364373973969,52.17544159582516],[4.791304550191492,52.17545586352409],[4.791252528014444,52.17547052112141],[4.791117013280281,52.17550488142841],[4.790982443474685,52.175533062535585],[4.790821257719127,52.175553100601206],[4.790757044546651,52.17556432584],[4.790594633681692,52.175605991781275],[4.79051371496268,52.17562341513092],[4.790398434888469,52.175644502605216],[4.790331929942254,52.17566091115143],[4.790177351858705,52.17569621659775],[4.789976395226563,52.175737336170776],[4.789871419315409,52.17576513545879],[4.789781457142355,52.175780966584654],[4.789683677980121,52.17580846058554],[4.789609024734724,52.17582521396315],[4.789510113389545,52.17584335445578],[4.789429596238144,52.175854748077136],[4.789334810574045,52.17587484176161],[4.789254635242869,52.17589890124],[4.789186590001679,52.17592654546292],[4.789114340650591,52.175967884196595],[4.789036522958376,52.17601889283495],[4.788990374403385,52.176043520053504],[4.788900018768609,52.176096253688115],[4.788860440210107,52.17612589357203],[4.788776394556055,52.176188842627006],[4.788705075444314,52.176240333401715],[4.788653170763264,52.17628859698956],[4.788616355799171,52.17631817890168],[4.788530057598082,52.17637897718805],[4.788507162793921,52.17639205560048],[4.788487479741811,52.1764032987502],[4.788476123734492,52.17640738466295],[4.788454142060686,52.17641015833721],[4.788407940587415,52.17644085203341],[4.788408055389032,52.176442101962856],[4.788408590004055,52.176448018850195],[4.788403293353515,52.176459227113845],[4.78833460295395,52.17652938132561],[4.788274288523246,52.17657892332851],[4.788243054970252,52.17660110028129],[4.78817346237242,52.17664259573278],[4.788099463739402,52.176699726063],[4.78804381022583,52.176749444404294],[4.788019792601236,52.176765546015034],[4.787977608328,52.176789905344364],[4.787949909111621,52.176809071170794],[4.787859907112745,52.1768777147581],[4.787808922818144,52.17691937638958],[4.787790820765172,52.17693261382413],[4.78756348611202,52.177088697051985],[4.787470448817339,52.17715900569865],[4.787252608682707,52.17733512612341],[4.787204818730354,52.17737834968566],[4.787176563945424,52.17740615906636],[4.787138933572732,52.17743861256766],[4.787025166878457,52.177516266616074],[4.786986498386696,52.177544364546186],[4.786946288465042,52.17757835981112],[4.786861882864416,52.1776589583182],[4.78683800332986,52.17767885337273],[4.786775264975854,52.17772467019341],[4.786710412536237,52.17776786967418],[4.786643767991491,52.17782145924108],[4.786550295172004,52.17790868955368],[4.786296075986892,52.17810839662424],[4.786244076236651,52.17814925246962],[4.786219391372268,52.17816485597185],[4.786168127069405,52.178177160312636],[4.786124668965301,52.17822318282134],[4.786097105069014,52.1782538806444],[4.786065437557323,52.17827988374586],[4.786055376464285,52.17828655560844],[4.786029528462191,52.17829732653375],[4.78599983017767,52.178305219623965],[4.785951940776929,52.178315518737406],[4.785934946371025,52.17831917122022],[4.785936979292369,52.17832020622025],[4.785937342236172,52.17832039681937],[4.785937704816553,52.17832061438094],[4.785938067518082,52.17832082295501],[4.785938400859449,52.178321040367656],[4.785938733958536,52.178321275755245],[4.785939037818608,52.178321510993904],[4.785939341678682,52.17832174623254],[4.785939630676967,52.17832199937174],[4.78593974630051,52.17832209882992],[4.785939861802912,52.17832220727553],[4.785939962685805,52.178322315646724],[4.785940078309349,52.17832241510488],[4.785940309071878,52.1783226499712],[4.785940524972616,52.17832290273798],[4.785940740994496,52.178323146517315],[4.785940927656217,52.178323399135174],[4.785941114317939,52.178323651753],[4.78594128611787,52.178323922271375],[4.785941443419433,52.17832418372775],[4.785941585980343,52.1783244540972],[4.785941714042886,52.17832471540464],[4.785941812624124,52.178324994538144],[4.785941925946017,52.17832526475859],[4.785942009907745,52.17832554381762],[4.785942093748333,52.17832583186415],[4.785942148592179,52.17832610178673],[4.785942188695372,52.178326380622316],[4.785942214179054,52.178326659383444],[4.785942251859447,52.178327117968855],[4.785942216563412,52.17832756719438],[4.785942181025098,52.1783280343949],[4.785942072510359,52.178328492235565],[4.785941934635448,52.17832895891479],[4.785941753265414,52.17832939840816],[4.785941557033584,52.17832985580198],[4.78594128794646,52.17833029484847],[4.785941004118676,52.17833074280803],[4.785940676795764,52.17833116358165],[4.785940334853334,52.17833158428082],[4.785939920297885,52.17833196865763],[4.785939520240804,52.17833236209643],[4.785939032830049,52.178332728125945],[4.785938589520113,52.178333076403845],[4.785938058735362,52.17833340625996],[4.785871262543787,52.17837533704448],[4.78563628023473,52.17851093865343],[4.785630680800297,52.17851417279803],[4.785595105321304,52.1785339540624],[4.785590168281264,52.17854444498347],[4.78558849663197,52.17854589253639],[4.785435117419133,52.17867879976396],[4.785366125686669,52.17874142766789],[4.785306560213265,52.178791340488424],[4.78530660213194,52.17879148451186],[4.785306644050613,52.17879162853533],[4.785306671349622,52.178791772484246],[4.785306698648633,52.17879191643316],[4.785306780424395,52.17879235726739],[4.785306789101837,52.178792797728846],[4.78530679753674,52.17879325616531],[4.785306747614253,52.17879370531608],[4.785306683072101,52.178794154392286],[4.785306545431625,52.17879460309571],[4.785306407669877,52.178795060786676],[4.785306197173609,52.17879549114239],[4.78530598655607,52.178795930485585],[4.785305703082737,52.17879635148107],[4.7853054196094,52.178796772476545],[4.785305077778666,52.17879718418633],[4.785304736311736,52.17879756893367],[4.785304321867741,52.17879794432071],[4.785303922043406,52.178798319782324],[4.785303464225479,52.17879865899581],[4.785294440048894,52.17880539899812],[4.785072254204052,52.17899569445401],[4.78503473876395,52.17902591882153],[4.784794157750857,52.17922270818941],[4.78476657532408,52.179244920834876],[4.784766969937604,52.179244931837054],[4.784851785673124,52.17929904166854],[4.784910705821315,52.179345738937876],[4.784873453165333,52.17936730006036],[4.784846700162936,52.179369230801285],[4.784761241799178,52.1793475377864],[4.784661743791736,52.17932720214952],[4.784607470730517,52.17934347218808],[4.784571498720842,52.17936438362202],[4.784489533794961,52.17941202452171],[4.784453854082066,52.17942752657246],[4.784307440473776,52.17953679323498],[4.784345281667479,52.179555016654255],[4.784346520427055,52.179566132280364],[4.78431525513115,52.179590357322446],[4.784291038329753,52.17958420260842],[4.78425392412783,52.17957276890564],[4.784120320365653,52.17967749886117],[4.78410829128423,52.179686937827924],[4.784099981218719,52.17969490377032],[4.784097308864971,52.17970331197126],[4.784108473921339,52.17971127855246],[4.784211503522841,52.179764601066424],[4.784249781404466,52.17978297954374],[4.784273574576371,52.17979235883171],[4.784280466159639,52.179803880833276],[4.784265192984912,52.179818597239304],[4.784255419028216,52.17983426750949],[4.784218285915561,52.17981772845598],[4.784058127478284,52.17974527497141],[4.784040248380826,52.17974618128991],[4.783938555873953,52.17983076997138],[4.783931388211856,52.179839667515495],[4.783882297659931,52.17987591730496],[4.783881647814933,52.17987639934109],[4.783880881739155,52.17987682685452],[4.783880101164908,52.179877245305676],[4.783879233599914,52.17987760938357],[4.783878336673314,52.179877982299494],[4.783877367862227,52.1798782649669],[4.78387639892957,52.17987855662182],[4.783875358233995,52.17987874904072],[4.783874302796834,52.179878950372384],[4.783873234198397,52.179879043779486],[4.783872180098408,52.17987914624882],[4.783871112715595,52.17987914978105],[4.783870045454339,52.179879144325774],[4.783869008527194,52.179879058132634],[4.783868000840085,52.179878972088915],[4.783867023608652,52.17987879631983],[4.783866571482199,52.17987871311579],[4.783866148717347,52.179878621073776],[4.78386569671246,52.1798785288823],[4.783865274190739,52.1798784188653],[4.783864851790584,52.17987829986085],[4.783864444132014,52.179878171943606],[4.783864021853428,52.17987804395162],[4.783863629058009,52.17987789813416],[4.783859773353064,52.17987650324543],[4.783846514961022,52.1798892615011],[4.783826788655527,52.17991430938594],[4.783820732795012,52.17994369650007],[4.783827154819643,52.179974792222446],[4.783848199502605,52.18001117579213],[4.783903224694346,52.180056127933256],[4.783978182080657,52.180117036931755],[4.784002194837904,52.180135054965085],[4.784031099990459,52.18015673817666],[4.784073565842748,52.180175749300865],[4.784119661403565,52.1801977360416],[4.78419915460969,52.180222751602784],[4.784279629884106,52.180247592364296],[4.784280649163443,52.18024790316629],[4.784281579385664,52.18024831238256],[4.784282553225357,52.1802487397978],[4.784283394269001,52.1802492564158],[4.784284264309981,52.18024979115808],[4.784284972436118,52.18025040596627],[4.784285695182414,52.18025102084916],[4.784286226773581,52.18025171564855],[4.784286773106387,52.18025240153516],[4.784287128648496,52.18025314037585],[4.784287455071815,52.18025387007968],[4.784287591311831,52.180254607800215],[4.784287727551849,52.18025534552074],[4.784287673851512,52.18025607328296],[4.784287605895472,52.18025677400805],[4.784287377239347,52.18025746492419],[4.784284544915543,52.18026580939469],[4.784273719418699,52.18029977407621],[4.784267578597797,52.18030625908489],[4.783985981215316,52.18045823830099],[4.78398670140846,52.180459041922795],[4.783994798804981,52.18047005777981],[4.783997205229898,52.18048672503595],[4.783993604842445,52.18049671938568],[4.783992168524802,52.18050778539086],[4.783995363278425,52.180522380423334],[4.784002266753187,52.180546000489436],[4.784010535701666,52.18057136223711],[4.784025411335183,52.180601206856835],[4.784040913654758,52.180636609325454],[4.784045404897791,52.18065156151726],[4.784051455129278,52.18066583857912],[4.784065430635785,52.18069737734526],[4.784070982659027,52.18071065418064],[4.784078875091868,52.18072926393221],[4.784081002738176,52.18074059981531],[4.78408051288407,52.1807595262604],[4.784074880456457,52.180774903091844],[4.78407036447894,52.18078881157859],[4.784067277887241,52.18080297903584],[4.784064493047261,52.18081970065647],[4.784063276347987,52.18083615165855],[4.784065511184084,52.18086443066611],[4.784064744740105,52.180886510522065],[4.784059922369766,52.180912263764036],[4.784051593172283,52.18093784628864],[4.784044186555535,52.18096115953654],[4.784041659309429,52.180968561808534],[4.784039939148683,52.18097358635696],[4.78401543925444,52.1810088563159],[4.783993587985473,52.1810309902087],[4.783972485599445,52.18104856196772],[4.783943553602214,52.18106990466429],[4.78391667961867,52.18109043096665],[4.783891480805238,52.18110493480721],[4.783855508552912,52.18112357203114],[4.783823294722009,52.181138911845956],[4.783791379052873,52.1811516646023],[4.783766162052245,52.18115886099458],[4.783736883022489,52.18116693542497],[4.783710906020962,52.18117086523823],[4.783656110003086,52.18117264334573],[4.783623007934892,52.181170415808914],[4.78359478481427,52.18116744922342],[4.783564795690093,52.18116532746987],[4.783545130422124,52.18116312368487],[4.783524770527806,52.181159307473415],[4.783503479991233,52.18115295185328],[4.783478146268864,52.18114500263152],[4.783462982967042,52.18114074560666],[4.783447845768097,52.18113780097658],[4.783426035186651,52.18113422000667],[4.783401686574011,52.18112802848766],[4.78337708120811,52.18111920213559],[4.78335417837108,52.18110882055789],[4.783242120676293,52.18106339660613],[4.783150502481551,52.18102455757044],[4.783079096053841,52.18099831537546],[4.782905977824913,52.18094010308384],[4.782858182425247,52.180927014381524],[4.782832426682906,52.18092217274359],[4.782813467009611,52.18092293852351],[4.782793220410293,52.18092911753808],[4.782775304201869,52.180941357477074],[4.782762946275116,52.18095235855324],[4.782739368488293,52.18097669444889],[4.782719218021078,52.180991960917346],[4.782714189384964,52.181002666962456],[4.782695351341298,52.181023584677966],[4.782651240280017,52.181067688097016],[4.78261685242065,52.18110100164738],[4.782592676504086,52.18112846231058],[4.782553103905761,52.181165650122615],[4.782552659566513,52.18116607028742],[4.782552142490575,52.18116646311531],[4.782551610794192,52.18116685586829],[4.782551006604787,52.1811672033094],[4.782550402171704,52.18116756872546],[4.782549725489262,52.18116787085471],[4.782549063183581,52.18116819103383],[4.782548343005314,52.18116846597589],[4.78254760845027,52.181168722868144],[4.782546830521244,52.181168943585774],[4.782546052714045,52.18116915531594],[4.782545261139244,52.18116930405881],[4.782544469442603,52.18116946178916],[4.782543649357927,52.18116955645736],[4.782542843893687,52.181169651200456],[4.782542039160456,52.18116969201865],[4.782475767428369,52.18123925300811],[4.782373777014359,52.18134965265268],[4.782329476326987,52.181396909804384],[4.782330449685428,52.18139737318558],[4.782331275376224,52.18139794366735],[4.782332144684818,52.18139853234881],[4.782332837328509,52.181399210005985],[4.782333544348975,52.1813999057131],[4.782334031086748,52.181400672196204],[4.782334532323174,52.18140144774171],[4.782334784279621,52.18140227593849],[4.78233503635796,52.181403095147765],[4.782335054264331,52.18140393113324],[4.782335057793945,52.18140474906886],[4.782334827395332,52.18140556580573],[4.782334597484224,52.181406346592695],[4.782334148752895,52.18140709030595],[4.782333729750099,52.18140779821912],[4.782333106669467,52.181408460145974],[4.782251743556479,52.18149536262145],[4.782192399491283,52.1815596829381],[4.782168660566066,52.18158938379196],[4.782130905857613,52.18162939405687],[4.782088424693208,52.18167290341697],[4.782057950569919,52.181676333443846],[4.782043893529552,52.181692916334875],[4.782033463195471,52.181702992454085],[4.782016481732621,52.18172281404245],[4.782022779401292,52.181726360679356],[4.782023650175492,52.18172684151332],[4.782024373646045,52.181727402485016],[4.78202512587009,52.18172799955649],[4.782025716413751,52.18172865871578],[4.782026321456105,52.181729326937536],[4.782026735576832,52.18173005709715],[4.782027149453689,52.181730805231766],[4.782027343655427,52.1817315792044],[4.782027552477796,52.18173235325201],[4.782027527248292,52.18173313508775],[4.782027516639411,52.181733916998404],[4.782027272466408,52.181734670747325],[4.782027043035961,52.18173541558375],[4.782026609526504,52.18173611443332],[4.782026220244727,52.18173678654533],[4.782025641504552,52.181737412745456],[4.781997370452106,52.181768132948754],[4.781924769013719,52.18184823118484],[4.781898559397377,52.18187464764484],[4.78189804047793,52.181875175281995],[4.781897419945606,52.18187564846941],[4.781896769928,52.181876139481844],[4.781896003920783,52.18187655799467],[4.781895237547643,52.18187700346987],[4.781894369927532,52.18187736753299],[4.781893502185437,52.18187774058356],[4.781892547939006,52.18187802330948],[4.781891608191263,52.18187831509784],[4.781890596681828,52.18187850764903],[4.781889584928446,52.18187871817519],[4.781888560018022,52.18187882077661],[4.781887549728262,52.18187892345303],[4.781886525915559,52.1818789451671],[4.781885531344193,52.181878967031146],[4.781884537992529,52.1818788990204],[4.781781997020635,52.18199409497606],[4.781783641840939,52.18199464269857],[4.781784806373808,52.18199502617177],[4.781785837490479,52.181995543782264],[4.781786941466726,52.18199607974266],[4.781787853543955,52.18199674954032],[4.781788794618646,52.181997437462954],[4.781789485799449,52.181998222973036],[4.781790205977711,52.181999026608054],[4.78179066188535,52.18199990978055],[4.78179108867358,52.18200078381563],[4.781791237058416,52.182001701363305],[4.781791371066529,52.182002600861054],[4.781791227281174,52.182003498933994],[4.781791054864344,52.18200435191957],[4.781790648882121,52.18200517674294],[4.781790272751254,52.182005956778845],[4.781789648800242,52.18200668161506],[4.781775011100261,52.182024016496435],[4.781774684198806,52.182024401308226],[4.78177429905847,52.18202476784509],[4.781773913918125,52.18202513438197],[4.781773455918184,52.18202548256892],[4.78177301253895,52.182025830830874],[4.781772511042822,52.182026151830414],[4.781771994925971,52.18202647275498],[4.781771450055654,52.18202675757962],[4.781770890442622,52.182027051316766],[4.781770272956684,52.18202729981656],[4.781769699332889,52.182027548541335],[4.781769053093481,52.182027760941224],[4.781768421352789,52.182027982403525],[4.781767761102624,52.18202814979106],[4.781767115473172,52.182028317253504],[4.781766441090258,52.182028448616116],[4.781765766707341,52.182028579978684],[4.781765063692961,52.18202866625389],[4.781764360556584,52.182028761516555],[4.781763658152174,52.18202880285434],[4.781762941005052,52.18202885310462],[4.78176220984719,52.18202885834252],[4.781761478689328,52.182028863580385],[4.78176076276216,52.18202882395587],[4.781760032214279,52.18202878425636],[4.781759316775101,52.18202870868193],[4.781758616078638,52.182028624195006],[4.781757915870164,52.18202850375815],[4.781757230526407,52.18202836542133],[4.781756560047365,52.182028209184544],[4.781755904311039,52.18202804403529],[4.781755278426139,52.182027834098584],[4.781752847014197,52.18202706662658],[4.781748988025537,52.18203236779056],[4.781741412798136,52.18204537966232],[4.781738967400109,52.18204995105216],[4.78173425662899,52.18206198892465],[4.781729091612455,52.18206871249741],[4.781721433241812,52.18207707709149],[4.781716029917526,52.182083044440546],[4.781708417336211,52.18209234403149],[4.781700996610963,52.18210366692949],[4.781692146891801,52.18211793059484],[4.781675508005581,52.182136189961014],[4.781662681510617,52.18214611893377],[4.781650658785614,52.18215607899284],[4.781637561984844,52.182168685031165],[4.781637575873479,52.18216873903107],[4.781637604382877,52.18216879310593],[4.78163761827151,52.18216884710582],[4.781637646902931,52.1821688921932],[4.781637830993809,52.18216933355473],[4.781637941736831,52.18216979251616],[4.781638052601877,52.18217024249014],[4.781638090241086,52.18217070107654],[4.781638127758271,52.1821711686504],[4.781638077428856,52.18217164476173],[4.78163802722146,52.182172111885556],[4.781637903910242,52.18217257863436],[4.781637780599022,52.182173045383145],[4.781637569685232,52.18217350269442],[4.781637373514225,52.18217395109324],[4.781637104483432,52.18217438114206],[4.781636835330615,52.18217482017833],[4.781636478819266,52.18217523180219],[4.781636151671461,52.18217563458851],[4.781635737165123,52.18217600996238],[4.781611252991098,52.1821991635404],[4.781581751063473,52.18222788196973],[4.781581837079709,52.18222800824451],[4.781581908597193,52.1822281254568],[4.781581980114681,52.182228242669105],[4.78158203688935,52.18222836879384],[4.781582279341017,52.18222881944297],[4.781582448566743,52.182229278704504],[4.781582632291223,52.18222974702856],[4.781582713426159,52.182230232802446],[4.781582794561098,52.182230718576335],[4.781582802592123,52.18223120397515],[4.781582810623146,52.18223168937398],[4.781582716186653,52.182232183235165],[4.781582636492974,52.18223266818389],[4.781582454575836,52.18223314362006],[4.781582287279482,52.18223361913124],[4.781582047123267,52.18223407629237],[4.781581792346262,52.1822345333785],[4.781581464709396,52.182234972114586],[4.781581151693308,52.18223541092569],[4.781580766061422,52.18223581341187],[4.781569969586119,52.182246993148226],[4.781569702384764,52.18224728838469],[4.781569377066356,52.18224755635867],[4.781569066124662,52.18224784238263],[4.781568726429529,52.182248092306644],[4.781568371869532,52.182248360130586],[4.78156798843406,52.18224860084209],[4.781567604876545,52.18224885054108],[4.781567207064348,52.18224907320255],[4.781560653084163,52.18226978411927],[4.781560608123439,52.1822698647815],[4.781546376681139,52.182299263754224],[4.781541386839789,52.18231031149546],[4.781535070138982,52.18232216135767],[4.781524641518927,52.18233639893263],[4.781516784497746,52.182348618390535],[4.781512017983434,52.182359370669026],[4.781505507119424,52.182373673285646],[4.781497141143171,52.18238137810254],[4.781487081247528,52.18238784285639],[4.781475917462944,52.18239484123096],[4.781466355472185,52.18240340276624],[4.781466601951493,52.18240355682886],[4.781466833687907,52.18240371980391],[4.78146706530227,52.182403891766455],[4.78146729691663,52.182404063728974],[4.781467513910154,52.182404235616474],[4.781467716160782,52.182404416416404],[4.781467903790574,52.182404597141314],[4.781468106041205,52.18240477794128],[4.781468625678355,52.18240527495354],[4.781469027738508,52.182405816303024],[4.781469444297461,52.18240636671494],[4.781469728780628,52.182406952401564],[4.781470027640538,52.182407556138116],[4.781470180169983,52.1824081681119],[4.78147033257738,52.18240878907312],[4.781470353397206,52.18240940935916],[4.78147037409498,52.182410038632646],[4.781470248584332,52.18241066715584],[4.781470123195739,52.182411286691526],[4.781469881084516,52.1824118876521],[4.781469609853656,52.1824124794751],[4.781469236765115,52.18241303482297],[4.78146886379862,52.182413581183376],[4.781468374231541,52.182414099981145],[4.781420740084166,52.182464413615634],[4.781420280123886,52.18246490560079],[4.781419733048766,52.1824653521984],[4.781419156487788,52.18246581662086],[4.781418478313173,52.18246622659323],[4.781417800138545,52.18246663656561],[4.78141704946994,52.1824670012254],[4.781416284058393,52.182467374797604],[4.781415446641138,52.18246766710739],[4.781414609101803,52.182467968404644],[4.78141371417762,52.182468188514406],[4.781412819131362,52.182468417611666],[4.781411895819916,52.182468574659026],[4.781410987251394,52.182468722793935],[4.781410050295619,52.18246880786642],[4.781409142825702,52.182468875114026],[4.781408221589399,52.1824688793743],[4.781407358836541,52.18246888393463],[4.781406511559025,52.18246882565767],[4.781405635161862,52.18246875824317],[4.781404774117975,52.182468636978804],[4.781403913074095,52.18246851571448],[4.781403082126427,52.18246833168787],[4.781402236679974,52.18246813859872],[4.781401435950602,52.18246788282231],[4.781400635221239,52.18246762704593],[4.781399893585677,52.18246732663233],[4.781399152194266,52.182467008243705],[4.781398484395448,52.18246665428042],[4.781397831217501,52.18246630039213],[4.78139723725543,52.18246589287912],[4.781396657792157,52.182465494428634],[4.781396166420263,52.18246506946595],[4.781316162926823,52.182557092502684],[4.781263119600461,52.18261915272439],[4.781216501410419,52.18267321953063],[4.781187803333752,52.18270515074086],[4.781187476666449,52.182705517575975],[4.781187077016564,52.18270587504837],[4.781186691987609,52.18270623259579],[4.781186248963352,52.182706553893006],[4.781185791073922,52.18270689309019],[4.781185275189189,52.182707196037164],[4.781184788424213,52.18270750812175],[4.781184229165108,52.182707774893636],[4.78118368440482,52.18270805072802],[4.781183096270169,52.18270829038736],[4.781182508013395,52.18270853903413],[4.78118187662649,52.18270873353086],[4.781181274237227,52.18270894615269],[4.781180614096895,52.18270910454936],[4.781179983198435,52.18270926309617],[4.781179323424436,52.182709394530434],[4.781100574998688,52.18279722641951],[4.781070817555066,52.182833933832676],[4.781070842766475,52.18283423056954],[4.781070853356903,52.18283452723134],[4.78107084932635,52.182834823818055],[4.781070801310721,52.18283512916702],[4.78107076803821,52.1828354256036],[4.781070705523735,52.18283572188998],[4.781070628388281,52.18283601810132],[4.781070522010865,52.1828363141625],[4.781070430376564,52.18283660131124],[4.781070294757184,52.18283689722227],[4.781070159382076,52.182837175158326],[4.781070009263848,52.18283746200677],[4.781069844524638,52.18283774878016],[4.781069636166761,52.18283801735339],[4.781069456928702,52.1828382950642],[4.781069234071973,52.18283855457483],[4.781024017688964,52.18289272737199],[4.781007011625428,52.18291429237996],[4.780980714565676,52.18295135908876],[4.780957400497218,52.18297873396051],[4.780938120128716,52.18300195007692],[4.78092436053739,52.183018102932515],[4.780831202979694,52.18313429000262],[4.780820825222059,52.18314583134521],[4.780806242806851,52.18316657288067],[4.780707282309161,52.18327503622536],[4.780707452140862,52.18327545055067],[4.780707548989155,52.18327585551289],[4.780707660214149,52.18327627852522],[4.780707698211313,52.18327671014939],[4.780707736208476,52.18327714177357],[4.780707701100019,52.18327757302211],[4.780707680734897,52.18327799535832],[4.780707587141942,52.1832784263064],[4.780707493548982,52.18327885725446],[4.780707341593733,52.183279278914576],[4.780707175017354,52.183279700499554],[4.780706950323113,52.18328009482158],[4.780706725384441,52.1832805071186],[4.780706456949028,52.18328089222782],[4.780706159271356,52.18328127718675],[4.780705832595856,52.18328164402053],[4.780673714967927,52.1833165955142],[4.780673492228718,52.18331684603656],[4.780673225626091,52.18331709633359],[4.780672959267904,52.18331732865565],[4.780672678166355,52.18331756989002],[4.780672382565887,52.18331780206183],[4.780672087209855,52.18331801625869],[4.780671776988243,52.183318248355334],[4.780671437891011,52.18331845333932],[4.780671113292697,52.183318667385926],[4.780670745197623,52.1833188542447],[4.780670391601466,52.18331905016612],[4.780670023506388,52.18331923702489],[4.780669641034609,52.18331940583361],[4.780669258562827,52.18331957464229],[4.780668861469905,52.183319743375876],[4.780668464743639,52.18331988514701],[4.780663787082345,52.183328381833235],[4.780664457699288,52.18332852908877],[4.780665098707288,52.1833287031564],[4.780665754214211,52.18332888628666],[4.780666365246613,52.183329114128924],[4.780667005643524,52.18332933313397],[4.780667586944769,52.18332959677587],[4.780668182989385,52.183329851505405],[4.780668719938337,52.1833301508718],[4.780669271630659,52.1833304413259],[4.780669764227318,52.18333077641682],[4.780670257068427,52.18333109353274],[4.780670705435012,52.18333145536072],[4.780671124681541,52.18333180805095],[4.780671499820212,52.183332178490716],[4.780671874958886,52.183332548930494],[4.780672176747416,52.18333293696961],[4.780672493034873,52.1833333340713],[4.780672736094401,52.18333373978485],[4.780672979031714,52.18333415448587],[4.780673163362239,52.18333457787384],[4.780673362191691,52.18333501032442],[4.780673473049849,52.18333546029918],[4.780673584030224,52.18333590128644],[4.780673636403812,52.18333635096071],[4.780673674278476,52.18333679157238],[4.780673638925199,52.18333724079583],[4.780673618193068,52.18333769009448],[4.780673509856287,52.18333812995486],[4.780673416140652,52.18333856989035],[4.78067324944151,52.18333900046274],[4.780673068243441,52.183339421972555],[4.780672843304155,52.18333983426949],[4.780616483256776,52.183439204747366],[4.780610569635769,52.18344396501745],[4.780605034377579,52.18344778348077],[4.780602608267888,52.183449847265145],[4.780598574514375,52.18345292743162],[4.780594112665048,52.18345738057778],[4.780586918758905,52.183463815042565],[4.780579018463309,52.183471657008916],[4.780574006043747,52.183477886969214],[4.78057657326117,52.183478349567515],[4.780577346350645,52.183478488362006],[4.780578089464311,52.18347868093108],[4.78057886182036,52.18347887365042],[4.780579574958218,52.18347911999407],[4.780580288096087,52.18347936633765],[4.780580971258149,52.183479666455845],[4.780581654297979,52.18347997556151],[4.780582278486342,52.18348031132904],[4.780582902430238,52.183480665071514],[4.780583452779234,52.18348105438819],[4.780584003250479,52.18348143471738],[4.780584465383395,52.18348185953312],[4.780584942259748,52.183482275436496],[4.78058533092001,52.183482726838974],[4.780585719824755,52.183483160266476],[4.780586020635641,52.183483620205585],[4.780586321446539,52.183484080144666],[4.780586548907003,52.18348455768307],[4.780586761624043,52.18348504413377],[4.780586886491696,52.1834855391211],[4.780587025736069,52.18348605215852],[4.780587077253286,52.18348656474516],[4.780587114149315,52.1834870772566],[4.78058704869699,52.18348758924211],[4.780586983122427,52.183488110215045],[4.780586830065181,52.183488612762275],[4.78058669162912,52.18348911538459],[4.78058645096694,52.18348960849346],[4.780586210426991,52.183490092614875],[4.780585867783155,52.18349055823538],[4.780585554503939,52.18349101501869],[4.780585153864265,52.183491444388736],[4.7805580289071,52.183520525312396],[4.780557613523448,52.18352096359467],[4.780557125400499,52.18352137453879],[4.780556622534092,52.183521794395254],[4.780556061671835,52.18352217800126],[4.780555471567159,52.183522561456996],[4.780554808967672,52.183522899599645],[4.78055414624593,52.18352324672974],[4.780553440394032,52.183523539709576],[4.780552719920919,52.18352383261428],[4.780551956317652,52.183524071368666],[4.780551178093171,52.183524310047936],[4.780550385980949,52.18352449472719],[4.780549579369762,52.183524670343836],[4.780548758870835,52.183524791960465],[4.78054795299311,52.18352491365225],[4.780547133349897,52.18352497235657],[4.780546577132866,52.183525014438516],[4.780546021282573,52.18352502955802],[4.780545450811077,52.183525044602355],[4.780544895327526,52.183525032759455],[4.78054432510052,52.18352502982884],[4.780543769983706,52.1835249910235],[4.780543185624484,52.18352495206786],[4.78054264549562,52.183524886375224],[4.780542076002098,52.183524829519776],[4.780541536239975,52.183524736864705],[4.780540981856653,52.1835246441345],[4.780540442461279,52.18352452451703],[4.780539932186069,52.183524414037294],[4.780539407656402,52.18352427652],[4.780538883126735,52.1835241390027],[4.780538402827432,52.18352397474839],[4.780507529627018,52.18356201551124],[4.780428036095714,52.18365496633756],[4.780368346348385,52.183723867887885],[4.780374322360049,52.18372527378903],[4.780375036601241,52.18372543924661],[4.780375691745951,52.18372564934093],[4.780376376010925,52.183725868573],[4.780377030544244,52.18372612360468],[4.780377684955288,52.183726387623814],[4.780378295135684,52.18372667837986],[4.780378890450256,52.183726987035705],[4.78037944153418,52.18372732242849],[4.780379992495834,52.183727666808714],[4.780380469862017,52.183728046763015],[4.78038096209404,52.183728408817544],[4.780381380608314,52.18372881543363],[4.780381799244873,52.1837292130622],[4.780382144408243,52.183729637277416],[4.780382489816176,52.183730043517656],[4.780382747007366,52.183730485256845],[4.780383004320838,52.18373091800854],[4.780383202904666,52.18373136843452],[4.780383415987491,52.183731827923125],[4.780383526599133,52.18373229587307],[4.780383637210774,52.18373276382303],[4.780383674593773,52.18373324038465],[4.780383712099051,52.183733707958766],[4.780383676253408,52.18373419313202],[4.780383625908764,52.183734669242625],[4.780383502457754,52.183735144977454],[4.780383379006741,52.18373562071227],[4.780383153451364,52.18373607794599],[4.780382957138533,52.183736535330034],[4.78038267334261,52.18373697428814],[4.780382404290236,52.18373740433396],[4.780382047754769,52.183737815953805],[4.780358597034548,52.18376550458738],[4.780358240254064,52.18376593418215],[4.780357796112727,52.18376633636344],[4.780357351849096,52.18376674753227],[4.780356834845891,52.18376713136278],[4.780356303099107,52.18376752410563],[4.780355713600891,52.18376786262297],[4.780355123980375,52.18376821012776],[4.780354461864859,52.18376851231936],[4.780353814248333,52.18376882357361],[4.780353123501656,52.183769080677486],[4.780352418133689,52.1837693377062],[4.780351669635574,52.18376954058454],[4.780350935636452,52.183769752525535],[4.780350173250758,52.18376990140388],[4.780349410865059,52.18377005028223],[4.780348649090789,52.18377015422319],[4.780347872695229,52.18377025808896],[4.780347097155678,52.183770299042436],[4.780346292251265,52.18377034883305],[4.780345488080578,52.18377034469882],[4.780344683909888,52.18377034056453],[4.780343865851642,52.18377028243029],[4.780343047793396,52.18377022429601],[4.78034225983374,52.183770103399745],[4.780341457252804,52.18376998242833],[4.780340684525884,52.18376981666983],[4.780339926420253,52.18376965098656],[4.780339183791938,52.18376942246609],[4.780338470161621,52.18376921207089],[4.780337801251185,52.18376893898892],[4.780337132096183,52.183768683881866],[4.780336507416485,52.183768384062944],[4.78033126361862,52.18376582245912],[4.780319386332208,52.18377900985888],[4.780224947126407,52.18388276829965],[4.78015149920769,52.183962258883604],[4.78015182938233,52.183962709986695],[4.780152071461906,52.183963187601066],[4.780152313419161,52.18396367420288],[4.780152467526006,52.18396416934102],[4.780152650753221,52.183964673617005],[4.780152716887326,52.18396518627892],[4.780152783021429,52.18396569894087],[4.780152746683767,52.18396622006396],[4.780152710468429,52.18396673219952],[4.780152586524995,52.18396724388394],[4.780152462581557,52.1839677555684],[4.780152236533322,52.183968248751555],[4.780152025106433,52.18396874200985],[4.78015172631842,52.183969207854624],[4.780151412909052,52.18396967362418],[4.780151041381257,52.18397011213058],[4.780124938796193,52.18400031273669],[4.780124314790105,52.1840010375638],[4.780123487185945,52.184001680450876],[4.780122600484651,52.18400236797457],[4.780121525418304,52.18400292869605],[4.780120406120845,52.18400351615439],[4.780119113324364,52.18400395891079],[4.780117791285133,52.18400440151676],[4.780116369220699,52.18400467283438],[4.780114932412552,52.18400495306421],[4.780113425066614,52.184005044181106],[4.780111961707091,52.18400512653612],[4.780110500794275,52.18400502914171],[4.780109083623215,52.18400494096026],[4.780107727261995,52.18400468231768],[4.780106458261952,52.18400445108862],[4.780105279069812,52.1840040675237],[4.780095320754863,52.18400087945972],[4.780047068716031,52.18406089650998],[4.780046726551555,52.18406132617894],[4.78004631164722,52.184061728509455],[4.780045896620528,52.184062139827475],[4.780045394232593,52.184062523731825],[4.780044891966996,52.184062898648726],[4.780044331460569,52.184063255289836],[4.780043771076484,52.18406360294345],[4.78004313807488,52.18406391427115],[4.780042519694648,52.18406422567405],[4.780041843440634,52.18406449183877],[4.780041167186612,52.184064758003494],[4.780040447802536,52.18406497001775],[4.780039728296106,52.18406519101946],[4.78003900952377,52.18406535809631],[4.780038276252396,52.18406551611053],[4.780037514227657,52.184065638024464],[4.780029000852227,52.18406694245012],[4.780015391710319,52.18407199566668],[4.780008485950693,52.184075510445105],[4.779993495966798,52.18408639882284],[4.779988046468831,52.184090352519924],[4.77997637204677,52.184098291876936],[4.779967338773716,52.18410341356724],[4.779963009552426,52.184106707906516],[4.77995618226557,52.18411627207841],[4.779944893801752,52.18412271240472],[4.77993705482884,52.18412603362808],[4.779925656359419,52.18413410922125],[4.779924470616188,52.18413528056253],[4.779924611690536,52.18413565878861],[4.779924679535493,52.18413604562601],[4.779924762124229,52.1841364235512],[4.779924786104975,52.18413681016297],[4.779924809963348,52.18413720576218],[4.779924789957507,52.18413760113576],[4.779924755452635,52.18413798744664],[4.779924676961173,52.18413838251938],[4.779924583848302,52.184138777516814],[4.779924446993591,52.18413916330118],[4.77992431026125,52.18413954009804],[4.779924115043285,52.184139916594035],[4.779923919947691,52.184140284102526],[4.779923681110247,52.184140642397885],[4.779923442272801,52.184141000693266],[4.779923145194477,52.18414134071281],[4.779899800120052,52.1841687511674],[4.779899488175189,52.18416910908657],[4.779899147109869,52.184169457867895],[4.779898762180296,52.18416980642351],[4.779898362996439,52.184170127941464],[4.779897934447369,52.18417045829645],[4.779897477144977,52.184170752551104],[4.779897004976402,52.18417106470549],[4.779896489433095,52.1841713406843],[4.779895988511194,52.18417161673834],[4.779895429470765,52.18417186552905],[4.779894885174123,52.184172105407505],[4.779894297380368,52.1841723180979],[4.779893709586606,52.18417253078825],[4.779893107660943,52.18417270745351],[4.779892520356691,52.184172884193984],[4.779891889677709,52.18417302475887],[4.779788426349034,52.18428860970486],[4.77976602963045,52.184312942093776],[4.779554824223647,52.18454570750588],[4.779555446459947,52.18454618707837],[4.779555936367726,52.184546719898215],[4.77955645539614,52.18454726185608],[4.779556856962465,52.18454783916175],[4.779557243662362,52.184548434367045],[4.779557498401074,52.18454905585735],[4.779557767516432,52.18454969539791],[4.779557875794867,52.18455033411048],[4.779557983950855,52.184550981810546],[4.77955794589145,52.18455162875797],[4.779557893210503,52.18455227563014],[4.779557709058142,52.184552912837404],[4.779557510529135,52.18455353199447],[4.779557195395146,52.18455412358701],[4.779556880383597,52.18455470619206],[4.779556434267967,52.18455525216982],[4.779511856472926,52.1846105871366],[4.779313056161193,52.1848663805738],[4.7793129076918,52.184877273388224],[4.779312752974841,52.18488862456363],[4.779226098061641,52.18499703318412],[4.779225577236366,52.184997695621156],[4.779224867064269,52.18499830315438],[4.779224127403745,52.18499892851194],[4.77922322800732,52.18499947215384],[4.779222298877428,52.18500005159502],[4.779221225368425,52.185000495471044],[4.779220107871825,52.185000948108595],[4.779218904237829,52.185001283457204],[4.779217700603814,52.185001618805785],[4.779216396578286,52.18500180982769],[4.779215136540329,52.185001992087955],[4.779213819853411,52.185002039234995],[4.77921254690903,52.18500209559542],[4.779211305413389,52.18500199033195],[4.779210107415251,52.18500191225682],[4.779208940375786,52.185001708507734],[4.779144953496298,52.1850819932043],[4.779111390235065,52.18512411831717],[4.779085491113987,52.18514465753154],[4.779012790356429,52.1852430442417],[4.778975828965121,52.185293070324974],[4.77895874142229,52.18531618056917],[4.778880027792436,52.18540937704443],[4.778827482591293,52.185484804037934],[4.778784354138308,52.18553773738602],[4.778687621823805,52.18566433951225],[4.778586715263479,52.18580853671419],[4.778568594207992,52.18582698573658],[4.778501186116688,52.185905985119376],[4.778306761688785,52.18615531000085],[4.778246058571177,52.18622297387483],[4.778182163595365,52.186298413932974],[4.778136101024377,52.186341220292185],[4.778068515929948,52.18641165285374],[4.777999891140185,52.18650679728572],[4.777875593514912,52.18665452232638],[4.777577200937722,52.18697367713227],[4.777435028725136,52.187138665417166],[4.777335303430355,52.18726010078512],[4.777335273570976,52.18726014557136],[4.777321681416763,52.18727669434572],[4.77731164914918,52.18729063698552],[4.777269776123632,52.18734881632406],[4.777215963186885,52.18742782229399],[4.777126215180125,52.187570251308415],[4.777069380316524,52.18765632421488],[4.777023861261542,52.18771907753891],[4.77695041763906,52.1878294312735],[4.776904580118296,52.187910087196755],[4.776830589499903,52.18805822399285],[4.776796983402248,52.18813627364872],[4.776750942641782,52.18823280144048],[4.776687270257335,52.18835247226355],[4.776611344646778,52.18848802456009],[4.77657711067756,52.18856488447367],[4.776516841737349,52.18867516226753],[4.776490330499367,52.18871666697643],[4.776422543855155,52.188810969932725],[4.776381189060426,52.18886208698661],[4.776346653382239,52.18890861044129],[4.776307454078276,52.18897103666087],[4.776222760681966,52.18909313308813],[4.776138617862169,52.18920596557559],[4.776047231638694,52.1893415003887],[4.775969212311826,52.189450292846914],[4.775893611214248,52.18954160693905],[4.775810366440142,52.189642148123916],[4.775775011604765,52.189676865796244],[4.775749583710677,52.189704327552214],[4.775726594529759,52.18973844413775],[4.775717709579094,52.18975502609481],[4.775704486673629,52.18978400713059],[4.77569915475466,52.18979530451342],[4.775693250504855,52.18981101208668],[4.77565752468609,52.18986103453],[4.775657301146356,52.189861338967276],[4.775657048360077,52.189861643253046],[4.775656795697046,52.18986193855137],[4.775656484540923,52.18986223354667],[4.77565620263134,52.1898625286935],[4.775655862598427,52.18986279657493],[4.775655522442254,52.18986307344385],[4.775655167909313,52.18986333226207],[4.775654798753094,52.18986359100454],[4.775654400596834,52.18986383162055],[4.775654002440571,52.1898640722366],[4.775653575284267,52.18986429472623],[4.775653148251215,52.18986450822841],[4.775652706718138,52.18986471266736],[4.775652265308313,52.18986490811887],[4.775651794898447,52.18986508544392],[4.775493109841596,52.190131362558844],[4.775404578264491,52.19027066868209],[4.775404694018673,52.19027075916292],[4.775404824272957,52.19027085870699],[4.775404954527238,52.19027095825106],[4.775405070034808,52.19027106670679],[4.775405546935118,52.19027148263067],[4.775405964848582,52.19027193420123],[4.775406382638749,52.19027239475926],[4.775406712318564,52.19027288182495],[4.775407041998385,52.19027336889062],[4.775407268944446,52.19027388238822],[4.775407510390611,52.19027440494903],[4.775407649349623,52.1902749359668],[4.775407773808539,52.190275457921345],[4.775407810280396,52.19027599739609],[4.775407846875559,52.19027652788342],[4.77540776648346,52.190277057764476],[4.775407700714766,52.190277587721276],[4.77540753282882,52.19027809917268],[4.775407379689588,52.19027860171245],[4.775407109686386,52.19027909465846],[4.775387411173226,52.190316356087116],[4.775387200649741,52.19031677743659],[4.775386902632344,52.19031718035641],[4.775386604368323,52.19031760125117],[4.775386233357117,52.1903179948046],[4.775385877092638,52.190318379446374],[4.775385447834354,52.19031875472176],[4.775385018576063,52.19031912999716],[4.77538453119401,52.19031947800702],[4.775384043811949,52.19031982601693],[4.775383498429433,52.19032013777379],[4.775382967793645,52.190320440619054],[4.775382364287359,52.19032072511039],[4.775381775527801,52.190321000690105],[4.775381158014635,52.19032124016841],[4.775380555371511,52.19032146174758],[4.775379894481312,52.190321665048685],[4.775358333405833,52.19035504295026],[4.775352113493431,52.190366030119336],[4.775343182792807,52.190388058596234],[4.775271295259506,52.190516539331085],[4.775232386169157,52.19057785216704],[4.775079610570247,52.19085646404649],[4.774995546842706,52.191003558735055],[4.774934423173681,52.19109993567277],[4.774934306554478,52.19109990810367],[4.774796821194528,52.19134577438123],[4.774766449878969,52.191395500753906],[4.774741468669178,52.191435044606536],[4.774725063476094,52.19146670544715],[4.77472467288773,52.19146745842074],[4.774724063683082,52.19146815633153],[4.774723453861171,52.191468899179604],[4.774722611292958,52.191469550939246],[4.774721724482978,52.19147022943364],[4.774720663668781,52.191470799168115],[4.774719558859711,52.191471377662474],[4.774718309911264,52.191471802611375],[4.774717060839345,52.19147223654774],[4.774715696875658,52.191472517090396],[4.774714347659205,52.19147278872148],[4.774712942169645,52.191472898274895],[4.774711609922528,52.19147299922017],[4.774710250403022,52.19147295621441],[4.774708964125964,52.19147290460055],[4.774707708948279,52.19147271832663],[4.774705402955772,52.191472373803265],[4.774695171672374,52.191470864649865],[4.774578155439658,52.191682906806946],[4.774562122074162,52.191711971994565],[4.77454332680147,52.19174193963259],[4.774443675226369,52.19192053718571],[4.774430972751685,52.1919264393491],[4.774416401051449,52.19193320365384],[4.774395886260936,52.19195738299822],[4.774357960602907,52.19202464177419],[4.774353325830831,52.19203092735658],[4.774268859451326,52.1921676112113],[4.774263598257641,52.192175843954175],[4.774247648669971,52.19220517018761],[4.774259155793104,52.1922106946929],[4.77426788776436,52.19221489252731],[4.774268614148265,52.1922152468342],[4.774269266670716,52.19221565468621],[4.774269948441264,52.19221606269002],[4.774270526978733,52.192216533074536],[4.77427110539267,52.19221701244653],[4.774271595568201,52.19221752731274],[4.774272085620199,52.19221805116641],[4.774272443561657,52.19221861028658],[4.774272816127168,52.192219169482655],[4.774273056582133,52.19221976394524],[4.774273297284187,52.192220340432904],[4.774273406122775,52.19222093421214],[4.774273515084904,52.19222151900391],[4.77427350705469,52.1922221031883],[4.774273484523972,52.192222678309335],[4.774273359748484,52.192223243911414],[4.774269474071716,52.192239932603826],[4.774123864897299,52.192477262148884],[4.774099093841838,52.19252377272593],[4.774081227678421,52.19254781297198],[4.774050606463837,52.192586877979494],[4.774047111946002,52.19259106625782],[4.774007453742583,52.192638533126306],[4.773980904164391,52.19266865813469],[4.773955624863679,52.19268830063082],[4.77386521308603,52.192871071211705],[4.77387314119995,52.192872047161046],[4.77387385667588,52.19287213177087],[4.773874556909429,52.192872261241966],[4.773875271519993,52.19287240876388],[4.773875956511176,52.192872583096246],[4.77387665612662,52.19287275750458],[4.7738772965033,52.19287298553369],[4.773877966252124,52.19287320472731],[4.773878591386441,52.19287347761775],[4.773879216768013,52.19287373253322],[4.773879782910824,52.192874041069544],[4.773880363801524,52.19287434069435],[4.773880885700713,52.192874675965086],[4.773881378475015,52.19287500209643],[4.773881841382694,52.19287537301306],[4.773882289789748,52.19287573486626],[4.773882679452534,52.192876114390465],[4.773883069115324,52.19287649391465],[4.773883399910225,52.192876900097325],[4.77388371595725,52.19287731519147],[4.773883973383623,52.19287773896918],[4.773884245187017,52.19287818079774],[4.773884414620609,52.192878622094476],[4.773884598554837,52.19287907245467],[4.773884709244156,52.19287953142246],[4.773884819933476,52.19287999039022],[4.773884857377881,52.192880457965586],[4.773884909570168,52.192880916629484],[4.77388484464476,52.19288138367299],[4.773884794467232,52.192881841805054],[4.773884686039911,52.19288228165834],[4.773884562864706,52.19288273042308],[4.773884381316082,52.1928831698965],[4.773859911903248,52.19293961383132],[4.773831596839235,52.19299918361337],[4.773831536734806,52.192999300146305],[4.773728969894362,52.19321503870537],[4.773714553314851,52.19322537200266],[4.773663017265748,52.19326228792668],[4.773644107324398,52.19330899963813],[4.773643955638811,52.193309394325894],[4.773643730954901,52.193309779646206],[4.773643506270985,52.19331016496646],[4.773643237837539,52.19331054107127],[4.773642954656016,52.19331092608755],[4.773642613347909,52.19331128383749],[4.773642286664196,52.193311641663406],[4.77364188698215,52.19331199012184],[4.773641502048173,52.19331232966883],[4.773641058987606,52.19331264194944],[4.773640630427765,52.19331296329352],[4.773640129240604,52.19331324830781],[4.773639671802969,52.19331354253753],[4.773639141738015,52.19331380043743],[4.773638640921861,52.19331405848934],[4.773638081979116,52.19331428927485],[4.773637454428371,52.193316317322314],[4.773620807909266,52.19337284680161],[4.773620985689448,52.19337480712968],[4.773625246681966,52.19337763355964],[4.773632288417754,52.19338032164373],[4.773883794075301,52.193414965311476],[4.773877216050403,52.19343279047745],[4.773887288430879,52.1934395029795],[4.774021311584927,52.19345474187879],[4.774020652823153,52.19345691357553],[4.774238257335926,52.19348197885998],[4.774228827368972,52.19353066333233],[4.774227664745816,52.19353118759336],[4.773651106174655,52.19346360423332],[4.773591078232506,52.193479902250594],[4.773576814464893,52.19348549960069],[4.773559725684063,52.193499764762464],[4.773547759948126,52.19352435690404],[4.773543632670521,52.1935351930664],[4.773528185306911,52.19356940234361],[4.773523823106363,52.19357817901103],[4.7733245320427,52.19410745831561],[4.773311731359369,52.194152305248075],[4.773328373754789,52.194164112254406],[4.773369256081164,52.19419785938811],[4.773714256135824,52.19424828719213],[4.773740803394135,52.19425455501572],[4.773766483708313,52.19424517006271],[4.773818241508382,52.19427832640376],[4.773788710584527,52.19429650867844],[4.773315888312029,52.19422961545958],[4.773315770200746,52.19422969573823],[4.773283565082219,52.19430399461118],[4.773283711576961,52.19430397739674],[4.773284575796948,52.19430388302168],[4.773285453775416,52.19430385163479],[4.773286360879584,52.19430382938743],[4.773287252492788,52.19430386997616],[4.773288173355446,52.19430391071694],[4.773289063978672,52.19430402320524],[4.773289969226628,52.194304135769585],[4.773290844358905,52.19430431109391],[4.773291719491191,52.19430448641826],[4.773292549759332,52.19430473341404],[4.773293365402758,52.19430498033378],[4.773294136429535,52.194305280950054],[4.773294892707853,52.194305590477725],[4.773295589992294,52.194305935650966],[4.773296272528276,52.19430628973565],[4.773296866820926,52.19430667931379],[4.773297461113592,52.194307068891966],[4.773297996288632,52.19430750310317],[4.773298516591465,52.19430795521323],[4.773298963399442,52.194308433905384],[4.773299409959934,52.19430893057242],[4.773299753899864,52.19430944468205],[4.773300097716053,52.19430996777914],[4.773300353412655,52.19431051738228],[4.773300579859809,52.19431106683332],[4.773300703810133,52.19431162473948],[4.773300827760458,52.19431218264567],[4.77330083471297,52.19431273994344],[4.773300841789225,52.19431328825381],[4.773300746492384,52.19431383603182],[4.77330063669456,52.19431437474635],[4.773300439272109,52.19431490401717],[4.773276019533847,52.19437825093447],[4.773275807114816,52.19437880709152],[4.773275478069039,52.194379335677844],[4.773275148899502,52.1943798732516],[4.773274717604212,52.1943803923181],[4.773274257059413,52.194380911232514],[4.773273694636357,52.194381393664806],[4.773273146714287,52.19438188516055],[4.773272467911961,52.19438232204721],[4.773271803734374,52.19438275900989],[4.773271052674533,52.19438313260411],[4.773270316239428,52.19438350627442],[4.773269492798318,52.19438382556369],[4.773268684229452,52.1943841269542],[4.773267832528835,52.19438437419176],[4.773267010325219,52.19438460360658],[4.773266115864105,52.19438476972901],[4.773265411896009,52.19438490987771],[4.773264694045674,52.19438499602574],[4.773263946945836,52.194385082021626],[4.773263200464759,52.194385123080245],[4.773262439235179,52.194385173050264],[4.773261678748115,52.19438516909562],[4.773260918261055,52.194385165140964],[4.773260158516519,52.19438510726161],[4.77325941327298,52.19438505844575],[4.773258668771967,52.19438495570525],[4.773257924147206,52.1943848619521],[4.773257195013477,52.19438470536293],[4.773256480256998,52.19438456682466],[4.773255795492553,52.19438437451386],[4.773255125352863,52.194384182279066],[4.773254484833948,52.194383963234024],[4.773228521828009,52.19446590746385],[4.773203776061746,52.19448388078734],[4.773197940483056,52.19448811978157],[4.773189489987223,52.19450912594151],[4.773189792528412,52.19450946007429],[4.773190036199132,52.194509820865235],[4.773190279993625,52.194510172668686],[4.773190479666209,52.19451054221887],[4.773190679338795,52.19451091176903],[4.773190834889472,52.19451129906589],[4.773190976062898,52.19451166831184],[4.773191073114407,52.19451205530449],[4.773191155417359,52.19451245120852],[4.773191193845933,52.19451284688437],[4.773191232522043,52.19451322458533],[4.773191212451447,52.19451361995694],[4.773191207129411,52.19451400641718],[4.773191128683408,52.19451439249708],[4.773191064985964,52.194514769665645],[4.773190942789348,52.19451514652994],[4.77318497311908,52.19453337029539],[4.773184820682603,52.19453381890713],[4.773184609994461,52.19453424923973],[4.773184399182547,52.194534688559806],[4.773184086244565,52.194535109372524],[4.773183802432409,52.19453553932484],[4.773183445743785,52.19453595092195],[4.773183059805551,52.19453636236693],[4.773182630487991,52.1945367376339],[4.773182201046652,52.19453712188838],[4.773181698852611,52.194537478800186],[4.773181196658564,52.19453783571197],[4.773180651208957,52.194538147458346],[4.773180105635571,52.19453846819217],[4.773179516806627,52.194538743760575],[4.773178913352874,52.194539019252936],[4.773178295769394,52.194539258719445],[4.773178016412912,52.1945393651236],[4.773177737180201,52.19453946254038],[4.773177443322687,52.194539559881036],[4.773177149588943,52.194539648234276],[4.773110386306601,52.194715656315495],[4.773117911777788,52.19471509325636],[4.773118760886103,52.19471503475623],[4.773119623876571,52.19471503025684],[4.773120515992976,52.19471503489704],[4.773121392741823,52.194715093385845],[4.773122298616608,52.19471516101425],[4.773123174375198,52.1947152914026],[4.773124050133793,52.19471542179099],[4.773124895652416,52.19471562392674],[4.773125741171047,52.19471582606254],[4.773126542072417,52.19471608189479],[4.773127313600292,52.19471634656235],[4.773128055135766,52.194716665002424],[4.773128782170176,52.194716974379034],[4.773129435337607,52.19471733729995],[4.773130088628827,52.194717691233386],[4.773130653551994,52.194718089647694],[4.773131218475169,52.194718488061966],[4.773131724280009,52.19471893110921],[4.773132215336215,52.194719383067856],[4.773132632896788,52.19471986160849],[4.773133035708728,52.1947203490605],[4.773133364901248,52.19472087208194],[4.773133664844053,52.19472139495126],[4.773133876790136,52.19472193533909],[4.773134103361086,52.19472247580296],[4.773134198184505,52.19472302456969],[4.773134293007925,52.194723573336375],[4.773134285457314,52.194724121570616],[4.773134277906705,52.19472466980489],[4.773134168105836,52.19472520851921],[4.773134058428746,52.19472573824609],[4.77313383200031,52.19472624938956],[4.773107587524568,52.19478930814745],[4.773107375844175,52.194789810379454],[4.77310707653826,52.19479030316762],[4.773106762607453,52.19479079587971],[4.773106361174909,52.19479127016045],[4.773105959742357,52.19479174444123],[4.773105456430751,52.19479218223971],[4.773104938370465,52.19479262894957],[4.773104362305776,52.194793039405354],[4.77310377161619,52.19479344978504],[4.773103108421108,52.194793814847166],[4.773102445473588,52.19479416193438],[4.773101724521665,52.194794472767484],[4.773101018318407,52.19479477468929],[4.773100239733436,52.19479502230602],[4.773099490522015,52.194795261087435],[4.773098698054872,52.194795454703396],[4.773098023081956,52.19479561297815],[4.773097319478206,52.194795726163505],[4.773096630251761,52.19479585739984],[4.773095912518273,52.19479593455934],[4.773095180159896,52.19479601164275],[4.773094433919365,52.194796034725414],[4.773093702179927,52.1947960668716],[4.773092956434549,52.19479605400446],[4.773092210689173,52.19479604113734],[4.773091480187628,52.19479598340902],[4.773090749686087,52.194795925680715],[4.773090034428382,52.194795823091255],[4.773089319294469,52.19479571151434],[4.773088619156816,52.194795573051145],[4.77308793376784,52.194795425676574],[4.773087292872478,52.19479523359299],[4.773025250207414,52.194986312238484],[4.772947199358295,52.19522671509125],[4.772926410633098,52.19526530065739],[4.77291875572284,52.19527949796342],[4.772918067629946,52.19528166950099],[4.772815917044722,52.1956023543134],[4.772674212149993,52.195981642216246],[4.772653389951448,52.196051263427684],[4.772606337434931,52.196165823358506],[4.772570577743523,52.19626542296269],[4.772404917996672,52.19672688972717],[4.772364979452934,52.19683671392227],[4.772346001920659,52.196882813864946],[4.77233295998245,52.196925933706645],[4.772294585030654,52.197035837923],[4.772276937870811,52.19709894125556],[4.772223988726514,52.19726333621678],[4.772212087603696,52.197308565197666],[4.772206013682342,52.19735655690877],[4.77221535485183,52.19753826378929],[4.772209968342336,52.19757777432555],[4.772190701782917,52.19765645454737],[4.772164532576494,52.19774564183367],[4.772138828308081,52.19781172316519],[4.772005296430303,52.19809387355486],[4.771975207933136,52.19818402007446],[4.771968464722929,52.198198869207296],[4.771963430965846,52.19820537731567],[4.771671900892342,52.19876673669903],[4.771667451256048,52.19878601990876],[4.771650803761514,52.19881156713791],[4.771629697346535,52.198837998914186],[4.771619769165307,52.198850440590235],[4.771515041971588,52.199034437888486],[4.771363359960783,52.199276675657906],[4.771063219462879,52.19977415520193],[4.770839263997795,52.200137569960035],[4.770668729325613,52.20042668012424],[4.770515001361732,52.20067761554727],[4.770475285556359,52.20074853979698],[4.770353692007192,52.200965721820836],[4.770179738495399,52.201268870759286],[4.77000507513647,52.20157979940232],[4.769883463185956,52.201793754109026],[4.769379327306069,52.20269849109939],[4.769246597314596,52.20295634765687],[4.76922828253652,52.2029890403225],[4.769091047170607,52.203234092068996],[4.769007079872845,52.20339115061454],[4.768947006630063,52.203592088180386],[4.768914443862022,52.203676387649686],[4.768892486759489,52.203691094018204],[4.768882894624543,52.20368972254174],[4.768880164670366,52.20369142496949],[4.768847161035292,52.20369571022814],[4.768819782039207,52.20369526125198],[4.76879510191481,52.203694296107464],[4.768732660928634,52.20369254895603],[4.768663387644947,52.20369084687442],[4.768618310426089,52.203698637090426],[4.768588983770454,52.20370465826288],[4.768501043320026,52.203850559399335],[4.768478374903157,52.203858529892585],[4.768451649229804,52.20386791721373],[4.768384050959843,52.20386883028958],[4.768312485112791,52.20385837957501],[4.768235049471197,52.20383028141167],[4.767709621232864,52.20361358268756],[4.766599715826221,52.20315345183006],[4.765658801382832,52.20276719231141],[4.764750598390954,52.20238612199252],[4.763754877011804,52.20196934923497],[4.762720378129647,52.20154228724974],[4.761726836728716,52.201116700386244],[4.760843217880711,52.20074077219291],[4.760175482035436,52.20045280891814],[4.759821274371262,52.20029865110988],[4.759670825817514,52.20021982597417],[4.75944336157082,52.20008396621417],[4.759327743481092,52.20000405849262],[4.759212533352598,52.19989522015477],[4.759014397673131,52.19971388298843],[4.75881419837854,52.1995306649714],[4.75861397100851,52.19933088139616],[4.758557196181219,52.19929083376947],[4.758289910664044,52.199056402986045],[4.757951490096004,52.198728053375085],[4.757553350760174,52.19834178857479],[4.756896148904444,52.19771005887186],[4.756819093894643,52.197637679784485],[4.756711794231533,52.19755264568214],[4.756676442421106,52.19752462974158],[4.756596795076699,52.19748356018306],[4.756483642572543,52.19745559599759],[4.756278042367317,52.19742187967856],[4.755530914337914,52.197285957480204],[4.754995456233896,52.197190118577055],[4.754866682600165,52.19715194858523],[4.754472503846796,52.19707486704102],[4.75378142705817,52.19694371915449],[4.753046391399495,52.196815324136026],[4.752761542872905,52.196771810375715],[4.752492273958449,52.19672098247319],[4.751483041739764,52.19653719265326],[4.750797721969705,52.19641891120888],[4.750418413244506,52.19635029110867],[4.749723632066847,52.196224087779214],[4.748148837515163,52.19594114937296],[4.747292515524486,52.19578988815068],[4.746909881425836,52.19572237120514],[4.746138758383045,52.19557465551656],[4.745637544566454,52.195482330457715],[4.744854547517146,52.195342127780975],[4.743316638299182,52.1950635497168],[4.742238090982671,52.19487396351594],[4.741866761192187,52.19480761542081],[4.741343825154967,52.19471767897133],[4.741135595779251,52.194680317551615],[4.740827194990961,52.19463480342591],[4.740486662753542,52.1945801423458],[4.740180337925084,52.19454083070735],[4.739980959272222,52.19451755518503],[4.739971395476498,52.194516442156925],[4.739872209872944,52.19450486993975],[4.739798478537769,52.19449797622355],[4.739683824515843,52.194660239065286],[4.739675835281626,52.194671556225224],[4.739668204739012,52.194682345053145],[4.739653618084741,52.19470481623009],[4.739631940144355,52.194738205022176],[4.7396102767962,52.19477159389024],[4.739588598660146,52.194804991661236],[4.739566920622059,52.19483838044065],[4.739545242420854,52.194871778203215],[4.739523564317629,52.19490516697416],[4.739501886181835,52.19493855574086],[4.739480222507773,52.194971953570935],[4.739458544306848,52.19500534232918],[4.73943686594278,52.19503874007059],[4.739415187676713,52.19507212882034],[4.73939350937808,52.19510551756591],[4.739371845541208,52.195138915374876],[4.73935016717744,52.195172304111956],[4.739339978925459,52.19518798639397],[4.739328488781107,52.195205692844816],[4.739306810221598,52.19523909056082],[4.739285131760123,52.1952724792852],[4.73927082886228,52.195294520541715],[4.739263802959372,52.19530595980567],[4.739243159280389,52.19533959688035],[4.739222501075774,52.19537322488348],[4.739201842709269,52.195406861870175],[4.73918118431149,52.19544049885298],[4.739160540507465,52.19547413591222],[4.739139882047147,52.19550777288729],[4.739119223555553,52.19554140985848],[4.739098579657751,52.1955750469061],[4.739078864955138,52.19560714309531],[4.739077964848193,52.19560869309789],[4.739067598400781,52.19562655848954],[4.73906728343494,52.19562709604731],[4.739058312258011,52.19564255129501],[4.739038645012778,52.19567640940835],[4.739018977737569,52.195710267518166],[4.738999324926834,52.19574413469208],[4.738988808767559,52.195762232945704],[4.738988433469938,52.19576289600565],[4.738986318406222,52.19576652457936],[4.738984334968305,52.195770153875756],[4.738984049642704,52.19577066463169],[4.738979992924298,52.195778066540925],[4.738961331688595,52.19581213689118],[4.738942670424263,52.195846207238176],[4.738923994506138,52.19588027750171],[4.738922041092476,52.1958838530332],[4.738907841918878,52.19591482900005],[4.73889198115674,52.195949427039146],[4.73887610561398,52.195984033982896],[4.738863598245866,52.196011316131376],[4.738860244671668,52.1960186410046],[4.738857873232884,52.196023805135624],[4.738845390622911,52.1960534063515],[4.738830711530835,52.19608820860966],[4.73882001622476,52.196113586236294],[4.738818941235496,52.19611609700456],[4.738816032415728,52.19612301086574],[4.738814729812919,52.196126086635125],[4.738802447818897,52.196157980916986],[4.738788965446786,52.19619296051614],[4.738775497547961,52.19622794918117],[4.738762015133308,52.19626292877668],[4.73874853256666,52.196297917357846],[4.738735064734765,52.196332897030096],[4.73872158212557,52.196367885607664],[4.738708114251155,52.19640286527634],[4.738694631599413,52.19643785385034],[4.738681149057122,52.196472833435145],[4.738667680988186,52.19650782208588],[4.738654198403356,52.196542801667086],[4.738640730291896,52.196577790314244],[4.738627247664521,52.19661276989186],[4.738620817930908,52.196629452461515],[4.738620574510629,52.19663009826842],[4.738613764885122,52.1966477584551],[4.738600296840618,52.196682738109516],[4.738586814018669,52.196717726669156],[4.738573345931645,52.196752706320005],[4.738559863067151,52.19678769487605],[4.738546380312133,52.196822674442934],[4.73853291203056,52.19685766307578],[4.738519429233,52.19689264263911],[4.7385059609089,52.196927631268395],[4.738492478068797,52.196962610828116],[4.73847899507664,52.19699759937345],[4.738465526819524,52.19703257900994],[4.738452043784817,52.197067567551706],[4.738438575485177,52.19710254718464],[4.738425092407923,52.19713753572283],[4.738411609440174,52.19717251527178],[4.738398140945955,52.19720750388676],[4.738384657935662,52.197242483432156],[4.738371189398915,52.19727747204355],[4.738357706346079,52.19731245158539],[4.738344223141161,52.19734744011277],[4.738330754671424,52.19738241973145],[4.738317271423953,52.197417408255255],[4.738303802780879,52.1974523968577],[4.738290319621671,52.19748737639057],[4.738276836310368,52.19752236490906],[4.738263367734318,52.19755734451874],[4.738262729383139,52.19755899482275],[4.738258898882606,52.197568923608905],[4.738253567581245,52.1975824753431],[4.738249709264256,52.197592305106774],[4.738235977905636,52.19762724731623],[4.738234246466065,52.19763164197403],[4.738224920349304,52.19765535527968],[4.738222231768793,52.19766219843079],[4.738208500366872,52.19769714063654],[4.738194754317537,52.19773208276004],[4.738181022741478,52.197767033949525],[4.73816727664882,52.197801976069314],[4.738153545029453,52.19783692725503],[4.738139798893472,52.197871869371106],[4.738126067361649,52.19790681156579],[4.738112321051489,52.197941762665565],[4.738098589476365,52.1979767048565],[4.738084843253735,52.198011646965206],[4.738071111504448,52.19804659813985],[4.738057365238494,52.19808154024485],[4.7380436334459,52.19811649141578],[4.738029887136621,52.198151433517076],[4.738016155431592,52.1981863756969],[4.738002408948113,52.19822132678192],[4.737998900004086,52.19823025964662],[4.737998535239523,52.1982312013926],[4.73798867719978,52.19825626895806],[4.737974930672969,52.19829122003935],[4.737961198881337,52.1983261622118],[4.737960788797547,52.19832720257767],[4.737947452442083,52.198361104301945],[4.737933720476256,52.198396055458105],[4.737919973993676,52.198430997544556],[4.73790624198454,52.19846594869704],[4.737892495458635,52.19850089077982],[4.737878763537091,52.19853583294114],[4.737865016836957,52.19857078400762],[4.737864895508702,52.19857107994802],[4.737864864816645,52.198571178648436],[4.737863466988917,52.19857475721706],[4.737851416244788,52.19860574486401],[4.737837830126326,52.19864071478645],[4.737824229360348,52.19867568462659],[4.737810628703834,52.198710645477576],[4.73779704252105,52.19874561539456],[4.73778344169072,52.19878058522926],[4.737769840969857,52.19881554607475],[4.737756254722753,52.19885051598627],[4.737742653828066,52.19888548581553],[4.737729053042858,52.19892044665558],[4.737715466731431,52.19895541656165],[4.737701865772388,52.19899038638547],[4.737688264922833,52.19902534722005],[4.737674678547083,52.19906031712067],[4.737661077523684,52.199095286939006],[4.73764747660978,52.19913024776819],[4.737633890169707,52.19916521766332],[4.737620289081952,52.19920018747625],[4.7376066881037,52.199235148299955],[4.737593101599303,52.19927011818964],[4.737579500447191,52.19930508799708],[4.737565899404587,52.199340048815316],[4.737552312835867,52.19937501869959],[4.737538711619395,52.19940998850157],[4.737525110512445,52.199444949314326],[4.737511523879403,52.19947991919318],[4.737497922598572,52.19951488898973],[4.737484321427269,52.19954984979704],[4.737470720103525,52.19958481958994],[4.737457133384713,52.1996197894615],[4.737453592609474,52.199628883919466],[4.737443444521666,52.19965474079302],[4.737429726384213,52.199689691961765],[4.737416008356135,52.19972463414122],[4.73740229017543,52.199759585306225],[4.737388571973093,52.19979453646937],[4.73737483925368,52.199829478562826],[4.737361121008075,52.199864429722275],[4.73734740274084,52.19989938087991],[4.737333684451977,52.19993433203569],[4.737319966272504,52.199969274202246],[4.737306247940382,52.200004225354355],[4.73729252958663,52.20003917650456],[4.737278811342279,52.20007411866558],[4.73726509294527,52.20010906981215],[4.73725137452663,52.20014402095684],[4.737237656086362,52.2001789720997],[4.737223937755504,52.20021391425332],[4.737210204645383,52.20024886531197],[4.737196486140214,52.2002838164493],[4.737182767613414,52.20031876758476],[4.737169049196037,52.200353709731],[4.737155330625979,52.20038866086277],[4.73714161203429,52.20042361199272],[4.737127893552032,52.200458554133405],[4.737114174917084,52.200493505259644],[4.737100456260506,52.20052845638406],[4.737086737582298,52.20056340750663],[4.737073019013529,52.20059834963994],[4.737059300292062,52.20063330075881],[4.737045566922231,52.200668251795264],[4.737031848288572,52.20070319392302],[4.737018129502201,52.20073814503635],[4.737004410694199,52.20077309614779],[4.737001052858336,52.20078167028823],[4.737000096109043,52.20078408282065],[4.736990691864565,52.20080804725747],[4.736976973144395,52.20084298937783],[4.736963254271502,52.20087794048378],[4.736949535376977,52.20091289158785],[4.736935816591923,52.20094783370271],[4.736922097654138,52.200982784803124],[4.736908378694721,52.201017735901665],[4.736894645086816,52.20105268691779],[4.736889373554731,52.20106609510471],[4.736886531999168,52.2010733688095],[4.736880926215239,52.20108762902529],[4.736867207190918,52.20112258011825],[4.736853488144966,52.20115753120946],[4.73683976907738,52.20119248229874],[4.736833646411019,52.201208078893046],[4.736825947862025,52.20122741484746],[4.736812053621395,52.20126233800408],[4.736798159490008,52.20129725217141],[4.736784250578654,52.20133217524362],[4.736770356272348,52.201367098394584],[4.736756461944153,52.20140202154365],[4.736742552967088,52.201436944610236],[4.736728658595105,52.20147186775551],[4.736714764201229,52.2015067908989],[4.736700869785463,52.2015417140404],[4.736686960851938,52.201576628112036],[4.736673066392386,52.20161155124977],[4.736659171910945,52.20164647438559],[4.736645262780553,52.201681397438975],[4.73663136825532,52.20171632057104],[4.736617473708199,52.20175124370117],[4.736603564512092,52.201786166748875],[4.736589670052355,52.20182108088788],[4.736575775439554,52.201856004012384],[4.736561880804865,52.201890927135004],[4.736547971521142,52.20192585017513],[4.736534076842661,52.201960773293976],[4.736520182142288,52.20199569641094],[4.73650627279285,52.20203061944542],[4.736492378048685,52.20206554255857],[4.73647848341383,52.20210045668246],[4.736464573998679,52.20213537971126],[4.736450679188834,52.20217030281878],[4.7364367843571,52.202205225924416],[4.736422889503475,52.20224014902816],[4.736408980000704,52.20227507204936],[4.73640149347339,52.20229388783229],[4.736394939224263,52.20230996738094],[4.736380708533537,52.20234484368771],[4.736366477951649,52.202379711005115],[4.736352247216154,52.20241458730796],[4.7363380165895,52.20244945462142],[4.736323785809235,52.202484330920335],[4.736309555137818,52.20251919822988],[4.736295338940127,52.20255407460548],[4.736281108223957,52.202588941911074],[4.736266877354161,52.20262381820212],[4.736252646593225,52.202658685503785],[4.736238415678657,52.20269356179087],[4.736224184872958,52.202728429088616],[4.736209953913617,52.202763305371775],[4.73619573769058,52.20279817274621],[4.736190291260467,52.20281150803024],[4.736181506686481,52.20283304902543],[4.73616727579126,52.20286791631527],[4.73615304474239,52.20290279259057],[4.736138813802404,52.202937659876504],[4.736125568676618,52.20297013277233],[4.736124568212551,52.20297252707979],[4.736117503694315,52.20298947564444],[4.736117018548813,52.20299064142296],[4.736110045202988,52.20300735679909],[4.736095536798115,52.20304218659702],[4.736081013874221,52.203077007324865],[4.73606649079623,52.20311183703802],[4.736051967695427,52.20314666674915],[4.736037444703101,52.20318148747088],[4.736022936184236,52.20321631725858],[4.736008413146304,52.2032511379762],[4.735993889954261,52.20328596767922],[4.735979366739406,52.20332079738016],[4.735964858260653,52.203355618172374],[4.735950335000184,52.20339044786921],[4.735935811716899,52.203425277564016],[4.735921288542116,52.203460098269424],[4.735906765213207,52.20349492796016],[4.73589225648915,52.20352975772954],[4.735877733245949,52.20356457842883],[4.73586320984861,52.203599408113476],[4.735848686428458,52.20363423779606],[4.735835087584358,52.20366686150341],[4.735834163116825,52.20366905848924],[4.735831086652518,52.2036763668231],[4.735830086025281,52.20367877011513],[4.735819522891934,52.20370386954741],[4.735804897403134,52.20373867169685],[4.735790257132289,52.203773482750876],[4.735775616838461,52.20380829380287],[4.735760991280763,52.2038430959461],[4.735746350940977,52.203877906993974],[4.735731710578205,52.20391271803973],[4.735717084820251,52.20394752916417],[4.735702444542886,52.203982331218405],[4.735687818738999,52.2040171423387],[4.735673178284311,52.20405195337621],[4.735658537938012,52.20408675542426],[4.73564391206522,52.204121566538376],[4.735629271541591,52.204156377569674],[4.73561463112636,52.204191179611506],[4.735600005184656,52.204225990719394],[4.735585364592086,52.20426080174451],[4.735581151273258,52.20427081820495],[4.735570461330975,52.20429556637753],[4.735569204380353,52.20429848956267],[4.735565948877482,52.2043060305918],[4.735555455913789,52.20433031246862],[4.735540450473092,52.20436505855753],[4.735525430249533,52.20439981355094],[4.735510424761799,52.2044345596355],[4.735495419250552,52.20446930571794],[4.735480413715794,52.20450405179821],[4.735465408026113,52.204538806863646],[4.73545040244433,52.20457355293961],[4.735435382211015,52.20460829893264],[4.735420376582198,52.20464304500431],[4.735405370798441,52.204677800061134],[4.735397027521346,52.204697123368184],[4.735396361150253,52.20469867463159],[4.735390365122595,52.204712546128434],[4.735375359423239,52.204747292193545],[4.735360339072294,52.20478203817581],[4.735345333194464,52.20481679322398],[4.735330327424556,52.20485153928265],[4.735315321631138,52.20488628533914],[4.735300315814205,52.20492103139348],[4.735299392345617,52.204923156475495],[4.735289262258519,52.20494661342508],[4.735285295214175,52.20495578635225],[4.735270289350204,52.20499053240227],[4.735268245011274,52.20499527582157],[4.735258114891232,52.205018732768096],[4.73525528346272,52.20502527845014],[4.735240277551725,52.2050600244958],[4.735225271485755,52.20509477952674],[4.735210265527732,52.20512952556809],[4.735195244917992,52.20516427152652],[4.735180238912932,52.20519901756359],[4.735165232752884,52.205233772585835],[4.735150226700793,52.205268518618546],[4.735135220625192,52.2053032646491],[4.735120199897817,52.20533801059673],[4.735105193643689,52.20537276561037],[4.735099394044405,52.2053861977592],[4.735089953971007,52.20540747439232],[4.735074568386035,52.20544215540207],[4.735059182645505,52.20547684539695],[4.735043782384095,52.2055115263214],[4.735028396595427,52.20554621631175],[4.7350130109142,52.205580897312494],[4.734997625077403,52.20561558729827],[4.734982224719695,52.205650268213695],[4.734966838834758,52.205684958195015],[4.734951453057275,52.2057196391867],[4.73493606712421,52.20575432916347],[4.734920681298605,52.20578901015066],[4.734905280688992,52.205823700042124],[4.734889879792221,52.205858407906085],[4.734874508785916,52.20589307099251],[4.734867141257301,52.20590966726726],[4.734859546036817,52.20592782621328],[4.734844991940411,52.205962646606416],[4.734833015691651,52.20599126147334],[4.734832818549569,52.20599173675357],[4.73483042332422,52.20599745792932],[4.734815854553605,52.206032278237515],[4.734810063094496,52.206046141845114],[4.73480264344771,52.20606729479506],[4.734790308189667,52.20610244202353],[4.734777973043606,52.20613758026311],[4.734771820289098,52.20615513598208],[4.73476798951941,52.20617297417341],[4.734764708634899,52.20618822682965],[4.734761921561021,52.20620872227729],[4.734759887782072,52.20622373015724],[4.734758879861774,52.20624461293536],[4.734758521716669,52.20625208905669],[4.734759524161642,52.206280550923914],[4.734759678072264,52.206285027848686],[4.734763434380167,52.206308255880664],[4.734763621024769,52.2063094972699],[4.734764734947041,52.206316352357696],[4.734770502021805,52.20635212990036],[4.734771306589899,52.20635713172996],[4.734771655885157,52.20635925485174],[4.734774015812487,52.206373936471735],[4.73477814419794,52.20638773804076],[4.73478575950254,52.206413189477836],[4.734788730552672,52.2064231017923],[4.734790181019591,52.20642795439265],[4.734792881022654,52.20643439580249],[4.734793163728312,52.20643507147203],[4.734802761886503,52.206457990230575],[4.734811059868997,52.20647778293387],[4.734818582277041,52.206492591943764],[4.734836030813033,52.20652690604218],[4.734844207607648,52.20654298598775],[4.734855504707942,52.20656078192186],[4.734876754357657,52.206594281119564],[4.734881702228148,52.20660207417205],[4.734900221519849,52.206627208336435],[4.734919386233348,52.20665322689685],[4.734924908027731,52.20665979174792],[4.734951783981137,52.206691722128326],[4.734954890118941,52.20669540643056],[4.734955321483166,52.20669592113502],[4.734960771459817,52.20670239570664],[4.734981836346329,52.20672253754642],[4.734994359941044,52.2067345069637],[4.735013477203387,52.20675277750348],[4.73502667876499,52.206765406793046],[4.735028251465576,52.20676690750374],[4.735030920694504,52.2067694568902],[4.7350451033431,52.2067830263586],[4.735076744285942,52.20681326629852],[4.735108385140181,52.206843515217244],[4.735115180870987,52.20685000620121],[4.735128108356941,52.206862373310535],[4.735123732452295,52.20686447932564],[4.735123847842809,52.20687459157529],[4.735123884695152,52.20687707249438],[4.735124255916818,52.20690769700071],[4.735126854777072,52.206910057246205],[4.735159688028454,52.20693980940132],[4.735159875572973,52.206939990198926],[4.735147955123722,52.206944786936766],[4.735129562870595,52.20696294919206],[4.735095136556416,52.206966084676495],[4.735081051721505,52.20697182219348],[4.734948530628927,52.20684904984055],[4.734934445812276,52.206854787340184],[4.734899645019946,52.206890511549815],[4.734832540657324,52.206896288699305],[4.734784284227863,52.20691874400537],[4.734661244214038,52.20697484196352],[4.734659711062607,52.20697363807381],[4.734627586992858,52.20694842868846],[4.734623240203423,52.20694554645036],[4.734608113296357,52.206935522012486],[4.734586335035472,52.20693113230367],[4.734573014949603,52.20693159797198],[4.734541559012943,52.20693270042506],[4.734514674512731,52.20693433147144],[4.734456439910895,52.20693782951569],[4.734430082830508,52.20693940952973],[4.734398217559352,52.20694148938474],[4.734340037241634,52.20694527529093],[4.734281842285371,52.2069490610875],[4.734248615206819,52.2069512232533],[4.734223542139598,52.20695203734475],[4.734165111632123,52.20695392529213],[4.734106651862249,52.20695581304871],[4.734048235842203,52.20695771000648],[4.734027334343158,52.20695838534467],[4.733989947796132,52.206960856989284],[4.733931781257722,52.206964696699345],[4.733873585320088,52.20696854520618],[4.733815418761865,52.20697238485885],[4.733757237433183,52.20697623338927],[4.733747835997326,52.20697684648284],[4.733699055567464,52.20698011784046],[4.73364088818873,52.20698401133129],[4.73358270630296,52.20698789572511],[4.733563902894166,52.206989157833235],[4.733525078451025,52.20699390434912],[4.733467669616375,52.20700093880108],[4.733418072680973,52.2070070098099],[4.733410658900376,52.20700875739424],[4.733356017340089,52.207021622415],[4.733301390377158,52.20703448749143],[4.733257612318734,52.207044806075146],[4.73324720711766,52.207048020119416],[4.733194960206839,52.20706418797271],[4.733142698365572,52.207080373696485],[4.733113760332693,52.20708933632848],[4.733091127326745,52.20709733620055],[4.733040390606656,52.207115265031014],[4.73298966873849,52.20713317594588],[4.732938931936902,52.20715110473245],[4.732924240403269,52.207156290357524],[4.732889969506455,52.20717074208052],[4.732841728315623,52.20719107548891],[4.732830584463755,52.20719576844006],[4.732795655018627,52.20721321851219],[4.732750246949828,52.20723588651434],[4.73270482420597,52.207258554417784],[4.732659401283938,52.20728123129098],[4.7326498804054,52.20728598714998],[4.732615817309936,52.20730520363928],[4.732597804679133,52.207315368197925],[4.732573928634196,52.20733029090643],[4.732532924090118,52.20735594032278],[4.732491933995734,52.20738159879314],[4.732450944118203,52.20740723927434],[4.732429769892975,52.207420487171866],[4.7324107371581,52.20743336045214],[4.732371371763331,52.207459953664475],[4.732332006057454,52.2074865648382],[4.732292654933507,52.2075131760797],[4.732253289397717,52.20753976925205],[4.732235749144357,52.20755162613873],[4.732214199388155,52.207566525725404],[4.732175356043166,52.20759341837568],[4.732136483657467,52.20762029287594],[4.732097625721766,52.207647176431706],[4.732058782500292,52.20767405106828],[4.732019924602921,52.20770092561069],[4.732001922003877,52.20771337311212],[4.731981981020858,52.207728299559236],[4.731944879666364,52.207756100609934],[4.731907763636492,52.20778390156762],[4.731870662453646,52.20781168461983],[4.731833560828033,52.207839494622306],[4.731832540320783,52.207840243958955],[4.731796067078551,52.20786710469849],[4.731758558917837,52.20789469670665],[4.731721079704483,52.20792230683981],[4.731683586079928,52.207949898904914],[4.731646077515404,52.20797750885142],[4.731608598427034,52.208005100973544],[4.731571104398663,52.20803271097701],[4.731533595694661,52.208060320887135],[4.73149611646691,52.208087912972864],[4.731458622299088,52.20811552293998],[4.73142112834926,52.208143114920226],[4.731415448725555,52.208147298797755],[4.731384186029786,52.20817099757154],[4.731347330777893,52.20819892563534],[4.731310460982839,52.20822684461883],[4.731273620267697,52.208254772740446],[4.731236764877129,52.208282700769104],[4.731199894811108,52.20831062870478],[4.731199731905315,52.208310762621274],[4.731162908723332,52.208338484079576],[4.731125907960044,52.208366339361305],[4.731088892653524,52.20839418556259],[4.731051906559236,52.20842203191459],[4.731014905524773,52.20844989614831],[4.730977890079391,52.20847774231409],[4.730940903846292,52.20850558863068],[4.730903902805294,52.208533443841546],[4.7308668870887,52.208561298959275],[4.730829900716793,52.208589145240445],[4.730792870410657,52.20861699126587],[4.730755869052121,52.20864485541685],[4.73075190404362,52.20864784438876],[4.730719085763556,52.208672810649574],[4.730682302428809,52.20870076587065],[4.730645518915476,52.208728730067406],[4.730608735355944,52.20875669425248],[4.730571951750215,52.208784658425884],[4.730535182727676,52.20881262266896],[4.730498399029559,52.20884058681901],[4.730461615285241,52.208868550957376],[4.730424831759619,52.20889649710936],[4.730424461653502,52.2088967916582],[4.730387626716054,52.20892425215524],[4.730350436255545,52.20895200727057],[4.730317506716713,52.20897655036059],[4.730313289239597,52.2089797895802],[4.730276810362907,52.209007899166686],[4.730240346069621,52.20903600882313],[4.730203852338866,52.20906412729259],[4.730167373323997,52.209092236844654],[4.730130879766093,52.20912033731644],[4.730094400526599,52.20914845583285],[4.730057906876568,52.20917655628169],[4.73002144217445,52.20920467485651],[4.729984948432302,52.209232775282324],[4.729957896043348,52.20925362092018],[4.729948527129045,52.209260921040574],[4.729912294770842,52.20928914873222],[4.729876047869704,52.20931736734373],[4.72983980079006,52.20934559493125],[4.72980355379703,52.20937381352007],[4.729767306492896,52.20940205007228],[4.729731059407967,52.20943026863838],[4.729694826774097,52.20945849626199],[4.729658564835072,52.2094867237113],[4.729622317479688,52.20951495123072],[4.729620733810406,52.209516182769754],[4.729586070210966,52.20954316975148],[4.729549822763674,52.209571397248205],[4.729513575270423,52.20959962473362],[4.729477342493507,52.20962784330179],[4.729441094908355,52.20965607076449],[4.729404847277246,52.209684298215834],[4.729368585103161,52.20971251658696],[4.729332352009822,52.20974074409714],[4.729321162343409,52.20974946313234],[4.729296496456497,52.209769162449696],[4.729260786225693,52.20979764451783],[4.729253057698998,52.209803821222216],[4.729223260503723,52.20982521764935],[4.72919952635576,52.209842252672466],[4.729183645173044,52.209851619660306],[4.729169461132562,52.209859998424086],[4.729141476593702,52.2098765423695],[4.729123086035501,52.20988740536611],[4.729097439576417,52.2099001783407],[4.729051968899967,52.20992280862618],[4.729021517262561,52.209937981590144],[4.729006020970334,52.20994505873394],[4.728977178917883,52.20995823631169],[4.728957545176389,52.20996510163683],[4.728956633219473,52.209965429113105],[4.728905178378135,52.209981123124706],[4.72885275342151,52.20999711730089],[4.72882225643345,52.210006438707836],[4.728799297257329,52.21001160469169],[4.728753334999823,52.21002193640129],[4.72874439332816,52.21002406166324],[4.728689818151009,52.21003704175244],[4.728635243074969,52.21005001282892],[4.728580667967245,52.210062983880135],[4.728574677360986,52.21006441552849],[4.728528157277696,52.21007882463691],[4.72847590470644,52.21009501734621],[4.72842366672709,52.21011121011385],[4.728371385086132,52.21012738463868],[4.728319147031002,52.21014357735987],[4.728266894308151,52.210159769976194],[4.7282146415474,52.210175962569295],[4.728195886701109,52.21018175410096],[4.728163266548862,52.2101931487291],[4.72811239491554,52.21021092190249],[4.728061508877706,52.21022867699759],[4.728010637296297,52.21024644113957],[4.72795975091158,52.210264214165214],[4.727944926237319,52.21026938944262],[4.727907872443391,52.21028080418906],[4.727855532961211,52.210296906258776],[4.727803207938172,52.21031301737419],[4.727750897773232,52.21032911057328],[4.727698558044806,52.210345221560424],[4.727690562279645,52.210347684585294],[4.727646894710377,52.21036209130268],[4.727595346247695,52.21037910547374],[4.727550443851945,52.210393900734616],[4.727544028099197,52.21039637257567],[4.727494438491965,52.21041547389636],[4.727484859075602,52.21041915942996],[4.727444863472182,52.21043457527783],[4.727395288543013,52.21045366765093],[4.727345713305264,52.21047277797782],[4.727331601630813,52.210478208829464],[4.727301315520335,52.21049597084979],[4.727296312321587,52.210498890987914],[4.727267363540394,52.210525145239465],[4.727263997026552,52.21052820035613],[4.727242870849958,52.21055380623411],[4.727240205105961,52.21055696413553],[4.727213250387339,52.210588856068675],[4.727210361329729,52.21059227337629],[4.727189574995331,52.21062160221747],[4.727189514611955,52.21062172771339],[4.727170911118766,52.210655805480116],[4.727158609014003,52.21067834179171],[4.727155051780032,52.21069032102268],[4.727144549382899,52.21072569341074],[4.727140284417461,52.21074001457938],[4.727126707371301,52.210759721497844],[4.727103875307444,52.210792813890706],[4.727083480092368,52.210822396565895],[4.727079616920777,52.210825394972375],[4.727043308588244,52.210853603386845],[4.727007029602966,52.21088180296612],[4.726970721311598,52.21091000237043],[4.726934427604315,52.21093820184517],[4.726898119220975,52.2109664012267],[4.72686182555491,52.21099459169132],[4.726825531576527,52.211022800119316],[4.726796283263097,52.211045529245155],[4.726787946127071,52.21105028226563],[4.726745079621171,52.21107474182698],[4.72670219830488,52.2110992102781],[4.726659316941499,52.211123678713435],[4.726616435664248,52.21114813814565],[4.726573554206694,52.21117260654951],[4.72653068719897,52.21119708400679],[4.726487791150314,52.21122154330989],[4.726468652318716,52.21123246462524],[4.726440329086757,52.21124212115417],[4.726389153133753,52.21125956831474],[4.726337977407296,52.211276997478315],[4.726301801211108,52.21128933342093],[4.726287031858533,52.21129468856291],[4.726236618922188,52.21131296683321],[4.726186235338259,52.21133123625829],[4.726135822452655,52.21134950549795],[4.726085438652871,52.211367783867104],[4.726035025551361,52.21138606205082],[4.725984641802361,52.211404331389325],[4.725934228751633,52.2114226005424],[4.725883830156493,52.21144087874308],[4.725833431520063,52.211459156922125],[4.725783032975736,52.211477426092166],[4.72575074321957,52.21148912750307],[4.725737339331502,52.21149908314391],[4.725699983958516,52.211526763972685],[4.72569109230973,52.211533374346594],[4.725678937735979,52.211559704308975],[4.725663002565208,52.211594300119415],[4.725647067502998,52.21162888694013],[4.725631132149088,52.2116634917331],[4.72561518254027,52.21169806947965],[4.725599232506296,52.21173267418584],[4.725583282847731,52.21176725192759],[4.725567332897426,52.211801847641595],[4.72555139768605,52.21183643444783],[4.725535462316375,52.21187103023903],[4.72551952705529,52.21190561704046],[4.725503562375096,52.21194021266287],[4.725487626930828,52.211974808446826],[4.725479523455183,52.2119923797143],[4.72543371670408,52.21207185645802],[4.725340441132341,52.21213284827119],[4.725214276618502,52.212215281017066],[4.725078317586422,52.21229512406903],[4.725020146645218,52.21229479790011],[4.724342040358791,52.21265273763047],[4.724315347140655,52.21266682494658],[4.724321958707795,52.2126758142056],[4.724323135024333,52.21267739372584],[4.724348466734062,52.212711555869944],[4.72436724268442,52.212735929124776],[4.724412340935189,52.212794766673],[4.724420042170789,52.212812147938074],[4.724420024508361,52.21282612433264],[4.724413218784595,52.21284297477395],[4.724394898457123,52.212864695055096],[4.724363679452013,52.21289285031957],[4.724302758212279,52.212930797664065],[4.724294464616903,52.21293553277753],[4.724248687268232,52.212961682835655],[4.72421762321137,52.21297941273698],[4.724056559292849,52.213071517250945],[4.724036725405059,52.21308283873535],[4.72382883835753,52.213201473514125],[4.723781459922925,52.21323881356915],[4.723741573556564,52.21327513510074],[4.723718001189336,52.21330560714312],[4.72370241210838,52.21333253778291],[4.723691974012612,52.21335059015574],[4.723676034284231,52.2133922233511],[4.723676566470459,52.213409546406986],[4.723677436453882,52.21343759416225],[4.723689643901674,52.21349528544901],[4.723789736882382,52.21380425638419],[4.723808030627753,52.213858081009825],[4.72381527789984,52.2138794145241],[4.723819469275984,52.213891751762326],[4.723863444026347,52.21402117571226],[4.723892797441489,52.21412628560915],[4.723905693955578,52.214194730498974],[4.723910795163204,52.21425997678196],[4.723907541148461,52.214308521193054],[4.723895035688189,52.21434159006769],[4.723872359123113,52.2143885243735],[4.723837103124311,52.214429258132874],[4.723799042844806,52.21446177898455],[4.723755163416771,52.214485144214954],[4.723740502612561,52.21449294441274],[4.723627278163812,52.21453803970355],[4.723596658713435,52.214550388070045],[4.72354436838023,52.21457650125791],[4.723499010449325,52.21461069772958],[4.723457781952215,52.214644683702296],[4.723448908033476,52.21465200406673],[4.723403855933999,52.21471575508256],[4.72334034431612,52.214833061251525],[4.723340298949192,52.214833159865556],[4.723282459301774,52.214940008777596],[4.723111169599976,52.21526304858811],[4.723080035795021,52.21532262637322],[4.723052118223356,52.2153843614039],[4.723028263747805,52.21546506618392],[4.723015835532959,52.215510556945006],[4.72301206711687,52.215563107122414],[4.723017457349764,52.2156363724392],[4.723022898845303,52.21568165810228],[4.723038057069187,52.21574359942195],[4.723101173424652,52.215964180663114],[4.723182886879846,52.21622123225362],[4.723185067516366,52.21622808445412],[4.723230131479009,52.2163492546498],[4.723244832792174,52.21638591884437],[4.723306570973682,52.21666966051648],[4.723306595684555,52.21666996625055],[4.723342303294281,52.21671398392931],[4.723367412827543,52.21678575118686],[4.723418268839484,52.21700932823013],[4.723476707825323,52.2173152608072],[4.723523005892114,52.217545274602365],[4.723579663494677,52.217840231611575],[4.723625063778927,52.21806181845491],[4.7236292892922,52.21820060034428],[4.72362620937675,52.21830029691821],[4.723613257204039,52.21835639072286],[4.723593124430381,52.218402350553355],[4.723562217986014,52.218466208046884],[4.723502183581278,52.21856784057668],[4.723318237072233,52.218881102262735],[4.72310808945455,52.219273149734],[4.723009873196827,52.21950431936616],[4.722900054899388,52.21978430088202],[4.722891015294952,52.21980756513984],[4.722884797586369,52.219841792761486],[4.722881586050336,52.21986481116888],[4.722885997190885,52.219937019320554],[4.723026571365078,52.22181996927119],[4.723040495337596,52.22195992914218],[4.723073974480202,52.22229800647536],[4.723094714723355,52.222502044754954],[4.723105905350878,52.222718378956685],[4.723128347884868,52.223015399520975],[4.72317212782252,52.22350690731504],[4.723244188341088,52.2240266438027],[4.723329211573269,52.224459394497956],[4.723413910068457,52.224914047218284],[4.723464270375928,52.225225542488374],[4.723522794519207,52.2256266857478],[4.723562942952813,52.22596256213594],[4.72361151323925,52.2263246051561],[4.723651891189579,52.22663828220549],[4.723658612010404,52.22673242512778],[4.723662809922201,52.22678861520279],[4.723685527193888,52.226898568126394],[4.723695812255495,52.22711405211948],[4.723745691297492,52.227521042730245],[4.72382578817993,52.22822341630952],[4.723879153476433,52.228532105811695],[4.723896050914029,52.228710569023],[4.723937986955165,52.228997542019215],[4.723943207455903,52.22903326297053],[4.723956889918221,52.22912686968369],[4.72396253517436,52.22916552312992],[4.723963703638276,52.2291735560396],[4.72403486639492,52.22972531090152],[4.724108734323439,52.23034815850841],[4.724137687702494,52.23061067382488],[4.724146354997607,52.2306892152934],[4.724169067445646,52.23089507970143],[4.724208999380271,52.23116353478955],[4.724242489104035,52.23135836837348],[4.724273935792788,52.23149477701556],[4.724276280189516,52.23156051093097],[4.724299438632203,52.23173254669086],[4.724315860107774,52.231867450878354],[4.724324389664567,52.23194643195615],[4.724321437606109,52.232014949409184],[4.724321422032738,52.2320150122383],[4.724332503929291,52.232051350265685],[4.724404593724543,52.23230043662216],[4.724432197595917,52.23230168804175],[4.724490579853637,52.23230432551563],[4.724548991526312,52.232306954137556],[4.724607373798115,52.23230959155371],[4.724624313657746,52.232310351685776],[4.724664744500966,52.23231626789778],[4.724721710057953,52.23232459574614],[4.724778660999268,52.23233292348499],[4.724825591894315,52.23233978388589],[4.724825898605155,52.23233983054598],[4.724826044708857,52.23233984934138],[4.724826322279161,52.232339886850035],[4.724835246836391,52.23234119522069],[4.724835626599106,52.23234125127846],[4.724892668747252,52.232349354771884],[4.724949710782636,52.23235746722505],[4.72500675283892,52.23236557965075],[4.725018409602546,52.23236723588175],[4.725063566807733,52.23237426600657],[4.725120320112622,52.23238309580403],[4.725177073306541,52.23239193456156],[4.725233826523104,52.23240077329184],[4.725290579895892,52.232409603007575],[4.725347333157736,52.23241844168338],[4.72540408657578,52.2324272713446],[4.725460854520044,52.232436110047885],[4.72551760784982,52.23244494864193],[4.725558909686649,52.232451372757104],[4.725564941340981,52.23245231433476],[4.725574361335759,52.2324537782214],[4.725585475367886,52.232455512249075],[4.725597363567378,52.23245735846835],[4.725631114710818,52.23246261676093],[4.72566946641802,52.232468583900285],[4.725687731835389,52.23247176010436],[4.72574407577036,52.23248155801966],[4.725800405093085,52.232491355826156],[4.725856734440709,52.23250115360582],[4.725913078450398,52.23251095144058],[4.725944630494529,52.23251644001051],[4.725945988414774,52.232516672313345],[4.725969407847829,52.23252074916653],[4.72602573727016,52.232530546865654],[4.726033767699636,52.23253194002162],[4.726034745854953,52.23253211626956],[4.726035665728445,52.232532274215124],[4.726037388644937,52.23253257147625],[4.726082217758627,52.232540030800955],[4.726083575813732,52.23254025411491],[4.726095710353832,52.2325422724357],[4.726107319157459,52.232544206920494],[4.726125893352096,52.23254729490391],[4.726138698271266,52.232549514709255],[4.726195042671536,52.23255929443495],[4.726251372326106,52.23256908303927],[4.726307716776111,52.232578862711264],[4.726352307652942,52.23258659923021],[4.726352555818345,52.23258664555884],[4.726364061250976,52.23258864235641],[4.726372296088838,52.232590072585026],[4.726420269615534,52.23259871781937],[4.726434241272776,52.23260123173698],[4.726456549035293,52.232605257334654],[4.72647644793124,52.23260884701577],[4.726532626405937,52.232618967198206],[4.726588819543485,52.232629087435726],[4.72664499793618,52.23263921655206],[4.726672488616165,52.23264416989673],[4.726701388473139,52.232648861472185],[4.726758005390044,52.23265804923961],[4.72681460769321,52.23266723689806],[4.726871210153104,52.2326764155421],[4.72690675453081,52.232682186824206],[4.726927902991426,52.23268542389085],[4.726984717746993,52.23269410932332],[4.727041532391615,52.232702803715796],[4.727098347058542,52.23271149808099],[4.72715516188097,52.23272018343154],[4.727209347616848,52.23272847656737],[4.727211976725676,52.23272886875478],[4.727268867309204,52.23273738370044],[4.727319477349768,52.232744955741],[4.72732574341053,52.2327458895497],[4.727367429154669,52.23275212642506],[4.727382634037792,52.23275440444062],[4.727434105850934,52.23276210707819],[4.727439509650256,52.232762946184394],[4.727475116847577,52.23276843901563],[4.727496294132895,52.23277171209339],[4.727553078504892,52.23278048696241],[4.72760986303249,52.232789252816794],[4.727666647449464,52.23279802763125],[4.72768239167985,52.23280046141639],[4.727703536127881,52.23280397695121],[4.727703915765106,52.23280404198706],[4.727704572977982,52.23280414452486],[4.727707464235553,52.23280462804537],[4.727723234950285,52.2328072507222],[4.727779746893011,52.232816635149305],[4.727806586451467,52.232821090250766],[4.727809244047219,52.232821536512255],[4.727819436643315,52.23282322923332],[4.727836273496943,52.2328260196311],[4.727892785354491,52.23283541299147],[4.727917273922233,52.23283947744771],[4.727949220989716,52.23284501262481],[4.728005566165153,52.23285479148754],[4.728061911498466,52.232864561336086],[4.728114183161898,52.2328736253367],[4.728118256856619,52.23287433115779],[4.728174602239608,52.23288410095263],[4.728199423927121,52.23288840988623],[4.728230947514452,52.232893879707945],[4.728287307584423,52.23290364953068],[4.728343638271681,52.23291342815066],[4.728377235339358,52.23291925104404],[4.728400028995432,52.23292310820975],[4.728456480154162,52.23293266274589],[4.728483289246973,52.23293720740372],[4.728512916566991,52.23294222616082],[4.728569367641494,52.23295178963042],[4.728621014758554,52.23296053534143],[4.728625789199916,52.23296137088445],[4.728647806855609,52.23296524165209],[4.728649223087253,52.23296549222497],[4.7286539391133,52.232966318453144],[4.728682089032969,52.23297126601515],[4.728738374386712,52.232981152050044],[4.728794674402886,52.232991038139765],[4.728850959673984,52.2330009331084],[4.728899448428142,52.23300944538185],[4.728907244837363,52.23301083703755],[4.728963469484018,52.23302087542352],[4.729002685221242,52.23302787092979],[4.72901969428896,52.23303090479539],[4.729065479981006,52.23303907836973],[4.729075918986528,52.23304094312785],[4.729132143842357,52.233050972446264],[4.729141706870161,52.233052679521755],[4.729187375038176,52.23306286571989],[4.729191329012778,52.233063750598255],[4.729244069505649,52.233071828021195],[4.729300870175038,52.23308053922087],[4.729357685636886,52.23308924148747],[4.729375957149873,52.23309203965412],[4.729414471049863,52.23309799748767],[4.729471241316991,52.233106789328396],[4.729528026244024,52.23311558122334],[4.729584796556223,52.233124373009474],[4.729641567023652,52.2331331557811],[4.729698352018286,52.233141947594234],[4.729755122398075,52.233150739298615],[4.729811892933063,52.23315952198838],[4.729868677995296,52.23316831371971],[4.729925448442678,52.23317710534227],[4.729956528371505,52.23318191610449],[4.729982203612048,52.23318594179273],[4.730023768933735,52.233192455686954],[4.730025317049606,52.23319269798886],[4.730034810138267,52.23319418888913],[4.73003695706135,52.233194524402705],[4.730037731119355,52.233194645553546],[4.730038943370953,52.233194832058516],[4.730089476048769,52.23320275301155],[4.730095668515229,52.233203722215634],[4.73015240818708,52.23321262141424],[4.730171438294343,52.2332156034379],[4.730209133376902,52.2332215115169],[4.730221109268665,52.2332233937089],[4.730266010266492,52.23323004291338],[4.730281507945729,52.23323234015863],[4.730293850574169,52.23323417045424],[4.730322932548405,52.23323847566611],[4.730379854719444,52.233246917378686],[4.730436762407304,52.23325534999522],[4.730493684754255,52.23326378266569],[4.730531559943003,52.23326939503662],[4.730550592485459,52.23327221522738],[4.730575321567589,52.23327588499253],[4.730582142934161,52.23327689361891],[4.730607514743254,52.23328065683039],[4.730621026007804,52.23328265537221],[4.730664437155244,52.23328908941866],[4.730694921347776,52.23329360905699],[4.730721238515016,52.23329779094848],[4.730777933063553,52.23330678846342],[4.730834627635117,52.233315785951106],[4.730844047457738,52.2333172853671],[4.730862960159642,52.233320293590765],[4.730891307459821,52.23332479231764],[4.730909855159162,52.23332773558946],[4.73091242526184,52.23333014968004],[4.730913075205606,52.23333074650288],[4.730914966619674,52.23333252765863],[4.730928941711602,52.23334676149237],[4.730929662724052,52.23334750251883],[4.730929980112571,52.2333478188642],[4.730930051710551,52.23334792711868],[4.730935573831003,52.233356640262684],[4.730937158459606,52.233359372448184],[4.730939884948565,52.2333640883504],[4.730942582239015,52.233371779138366],[4.730945294300287,52.233379461020256],[4.730947068372958,52.23338721858388],[4.730948731835864,52.23339453511796],[4.73095685866914,52.23343013703135],[4.730960914771862,52.233447937947105],[4.730964970877799,52.23346573886264],[4.730970168929188,52.233488498542805],[4.730972038586523,52.23349672401596],[4.730973097604379,52.233501349761816],[4.730976824005959,52.23351768379143],[4.730981224608691,52.23353694268557],[4.730986518782609,52.23356013432549],[4.730989351361016,52.23357255358321],[4.730990561330705,52.23357786325992],[4.730997478258646,52.23360815549274],[4.731004380690789,52.233638438656335],[4.731005590531599,52.23364375732016],[4.731008368410652,52.2336559156196],[4.731014552987626,52.23367928297674],[4.731023955247056,52.23371476613496],[4.731033357521349,52.23375024929225],[4.731042759810503,52.23378573244857],[4.731052147344501,52.23382122450995],[4.731061549663377,52.23385670766434],[4.731070951997115,52.23389219081784],[4.731080354345716,52.233927673970314],[4.731082905462688,52.233937341315325],[4.731083806990822,52.23394073482088],[4.73108974207153,52.233963157040606],[4.731099144449849,52.233998640191196],[4.731102722489365,52.23401213316425],[4.73110351261263,52.234015139564335],[4.731105703550641,52.23402342074712],[4.731108546710624,52.23403413232818],[4.731108630034885,52.234034438384974],[4.731166585641083,52.23403640506147],[4.731185387112124,52.23403704875458],[4.731215437183647,52.23404225792555],[4.731220796105775,52.234043177501015],[4.731223628799215,52.234043669597746],[4.731251795384456,52.23404854473058],[4.731279976613575,52.23405341993794],[4.731289905749342,52.23405513785887],[4.731336324320365,52.234063179238625],[4.731387415586497,52.23407201951361],[4.731392461300981,52.23407333281709],[4.731446374758874,52.234087356867505],[4.731462182733306,52.23409147126646],[4.731500288250818,52.23410138089334],[4.73153067928689,52.23410928829396],[4.731546321366911,52.234121688751046],[4.731582163508662,52.234150110178405],[4.731618020201564,52.23417854066332],[4.73165386243479,52.23420696206873],[4.73167271685469,52.234221914967],[4.731676855358358,52.23422519160887],[4.731689719351485,52.23423538354445],[4.731709745695385,52.234251277697595],[4.73172556154389,52.23426381391532],[4.731761418552078,52.23429223536909],[4.731797260968236,52.23432065673076],[4.731833117935645,52.23434908714994],[4.731868974948815,52.2343775175582],[4.73189707594346,52.234399802040436],[4.731904665819209,52.23440032949734],[4.731908438800455,52.23440059310382],[4.731909638041933,52.234400671660495],[4.73196781259073,52.23440470640954],[4.731990435977831,52.23440627896594],[4.732025850354181,52.23440311384694],[4.73208379461975,52.23439792551417],[4.732141738871936,52.234392737153],[4.732199682978556,52.234387557750644],[4.732257612566199,52.23438236925136],[4.73231555664609,52.234377189792106],[4.732373500844777,52.23437200131709],[4.732402480191925,52.23436941160313],[4.732404561665163,52.23436922540312],[4.732431444897942,52.234366821800904],[4.732489374432091,52.23436163318784],[4.73254731845853,52.2343564536148],[4.732605262603715,52.234351265025936],[4.732663206735517,52.23434607640867],[4.732695308255496,52.23434320731585],[4.732720913899006,52.23434007752495],[4.732750053979568,52.23433650891805],[4.732778104014274,52.23433240397013],[4.73283506967786,52.234324064028144],[4.73289203532022,52.234315724058646],[4.732907483358114,52.23431346373683],[4.732949657624201,52.234309517868056],[4.733007546543798,52.2343040950869],[4.733065420679639,52.234298681183596],[4.733123309439295,52.234293267332944],[4.733181198316981,52.23428784446654],[4.733239087048713,52.2342824305591],[4.733296961128729,52.23427701654222],[4.733354849964505,52.23427159359061],[4.733412738654361,52.23426617959798],[4.733418748842982,52.234265619648276],[4.733441630634408,52.23423662497458],[4.733467182025004,52.234204274548155],[4.733484977300898,52.234181723119036],[4.733485825037156,52.23417084327288],[4.733488591916929,52.23413493331909],[4.733491358792112,52.23409902336496],[4.733494125662702,52.234063113410535],[4.733496892528703,52.234027203455774],[4.733499659390112,52.233991293500736],[4.73350242624693,52.23395538354539],[4.733505193099157,52.23391947358974],[4.733507959946792,52.23388356363378],[4.733510712284136,52.233847644609185],[4.733510746968103,52.233847276290746],[4.733510820293637,52.23384627003405],[4.733513478990682,52.23381174363993],[4.733516245824556,52.23377583368307],[4.733518849255231,52.233742079955604],[4.733541687562856,52.233745945360184],[4.733575302560737,52.233751632047245],[4.733631756022473,52.23376117512457],[4.733688209508518,52.233770718174966],[4.733744663018873,52.23378026119836],[4.733801116553539,52.23378980419479],[4.733857570112516,52.23379934716428],[4.733914009058193,52.233808890025905],[4.733970462665788,52.233818432941455],[4.734026916297692,52.23382797583007],[4.734083369953906,52.233837518691715],[4.734139823502636,52.23384707051375],[4.734196277207479,52.233856613321514],[4.734252730936634,52.233866156102266],[4.734309184690098,52.23387569885606],[4.734365623830239,52.23388524150201],[4.73442207763232,52.233894784201944],[4.734478531458709,52.2339043268749],[4.73453498530941,52.23391386952086],[4.734591439184419,52.23392341213989],[4.734640971430489,52.233931784002216],[4.734647893083737,52.23393295473193],[4.734690021706175,52.233940081277105],[4.734704407269817,52.23394238078512],[4.734761058617246,52.23395143905842],[4.7348177246255,52.23396049738537],[4.734870754172444,52.233968969357015],[4.734874390788567,52.23396954669785],[4.734931056843148,52.23397860497045],[4.734983808844209,52.23398703940647],[4.734987722920898,52.23398766321591],[4.735044389021817,52.233996721434195],[4.735058584727305,52.23399899288665],[4.735069158582223,52.23400067809618],[4.735101055145905,52.23400577962535],[4.735157706655483,52.23401483770854],[4.735177977962594,52.23401807743883],[4.735214372825907,52.234023895845354],[4.735271053657184,52.23403295403579],[4.735327705367813,52.234042003050156],[4.735384371607733,52.234051061105454],[4.735441037870821,52.23406011913362],[4.735497704157074,52.23406917713461],[4.735554370466501,52.23407823510842],[4.735608802358814,52.234086930196405],[4.735611036930591,52.23408728406779],[4.735667688648635,52.23409634190655],[4.735724355027548,52.23410539979889],[4.735732256148408,52.23410666574683],[4.735781021429635,52.234114457664056],[4.735785315189116,52.23411514645701],[4.735833408600042,52.234122835779054],[4.735837687854886,52.2341235155021],[4.735894354303308,52.234132573312934],[4.735951020774896,52.2341416310966],[4.736007687269652,52.23415068885313],[4.736064353787578,52.23415974658246],[4.736121005690939,52.23416880420401],[4.736168967872907,52.23417646570144],[4.736177672255198,52.234177861879026],[4.736234338842624,52.23418691952689],[4.736253062122396,52.23418991685226],[4.736291005453214,52.23419597714758],[4.736347672086977,52.23420503474113],[4.736404338743908,52.234214092307475],[4.736425442746325,52.2342174622429],[4.736461005424003,52.2342231498467],[4.736517146349971,52.23423212357027],[4.736517657489514,52.234232207278104],[4.736574263695366,52.23424139925051],[4.736630869793411,52.234250600183096],[4.736687476046243,52.23425979210127],[4.73674408232256,52.23426898399233],[4.736768661370905,52.234272975199765],[4.73680067345956,52.23427821172505],[4.736857264095144,52.23428747537998],[4.736865924345119,52.23428888923978],[4.73691384037908,52.234296720952564],[4.736942040834468,52.23430133425794],[4.736970416555403,52.23430597548543],[4.737026992624145,52.234315238978525],[4.737083583485522,52.23432449353779],[4.737125979107057,52.23433143193081],[4.737140159732752,52.234333747989396],[4.737196736003609,52.23434300241393],[4.7372052939419,52.234344406697765],[4.737253312298098,52.234352256811356],[4.737309903254018,52.23436151126231],[4.737313641874105,52.23436212504103],[4.737366479464626,52.234370774592904],[4.737400507121585,52.2343763366241],[4.737401062046736,52.23437642955701],[4.737401660754157,52.234376531718816],[4.737422904731205,52.23438035164798],[4.737479117750072,52.23439043083964],[4.737495543588503,52.23439337937942],[4.737496200585372,52.234393499837395],[4.73751469975053,52.23439681929935],[4.737535316025577,52.234400518911414],[4.737591514326655,52.23441060695647],[4.737635141477744,52.2344184327673],[4.737647803233052,52.23442050672373],[4.737704379458512,52.23442977887997],[4.737746453770098,52.23443667933063],[4.73774909718712,52.2344371073135],[4.737749827374445,52.23443722817243],[4.737760941069823,52.23443905092865],[4.737817517342629,52.23444832303073],[4.737874093508071,52.23445760409308],[4.737889544690702,52.234460133770185],[4.737930594280523,52.23446703751076],[4.737987064884219,52.234476533651886],[4.738023835836277,52.23448271277824],[4.738043475126645,52.23448615526695],[4.738099779129758,52.23449603692475],[4.738156083288958,52.2345059095684],[4.738176379600309,52.23450947248934],[4.73817645265857,52.23450948187884],[4.73821234238092,52.23451586282999],[4.738268600974296,52.23452585201417],[4.738278150165244,52.23452754928275],[4.738325041663915,52.234535401757],[4.738381542369635,52.23454485293382],[4.738438028330661,52.2345543129906],[4.738494514315802,52.234563773020305],[4.738503480888988,52.23456526933414],[4.738503743716033,52.234565315717646],[4.738511030862393,52.23456653316728],[4.738516406732165,52.234567308695],[4.738525756247791,52.23456864532493],[4.738526238381093,52.2345687108887],[4.738551379624178,52.23457231832436],[4.738578303157376,52.23457617821784],[4.738608350561064,52.234580648467585],[4.738665261004639,52.23458911307196],[4.738722156962958,52.23459756858121],[4.738779067450027,52.234606033130774],[4.738835977958846,52.23461449765289],[4.738892888489418,52.23462296214767],[4.738949799041745,52.23463142661504],[4.73896298958422,52.23463338648687],[4.739006633679264,52.23464007938744],[4.739063438016773,52.23464880387056],[4.73912024250745,52.23465751933908],[4.739177047020478,52.234666234780256],[4.739213402558372,52.23467180905659],[4.739213490124254,52.23467182751296],[4.739233730137265,52.23467524613389],[4.739290171225162,52.234684795415895],[4.739346627106037,52.23469433576395],[4.739403082880481,52.23470388507233],[4.739459538809977,52.234713425366415],[4.739461159697287,52.23471370389539],[4.739515439699143,52.234722881697905],[4.739515979995143,52.23472297454066],[4.739572284366001,52.23473287347176],[4.739628574124073,52.23474277229584],[4.739684864037963,52.23475266210574],[4.739721748116545,52.234759146915195],[4.739741078435302,52.23476271325977],[4.739797156935723,52.234773051259836],[4.739853250100238,52.23478338931347],[4.739899021042989,52.23479182823144],[4.73989912324734,52.23479184676756],[4.739900350222087,52.234792033251544],[4.739901387426084,52.23479218274357],[4.739909465097234,52.234793404438086],[4.739966345480591,52.234801958129005],[4.740023211247963,52.23481051171233],[4.740039133049899,52.234812908864484],[4.740080168129973,52.234818841066016],[4.740129676129047,52.23482599709757],[4.740137124902823,52.234827179379565],[4.740158536355894,52.23483058628157],[4.740193808159557,52.23483620824751],[4.740205813796013,52.234838116550236],[4.74025037028821,52.234845515054374],[4.740293261983746,52.2348526347837],[4.740306857031396,52.23485497421808],[4.740351234377104,52.23486261438042],[4.740358915412347,52.234863932740915],[4.74036325244627,52.23486467553202],[4.740379081758888,52.23486739570163],[4.740389087492081,52.234868915537504],[4.7403991077334,52.23487044444],[4.740409317877465,52.23487200134553],[4.740410574132525,52.23487218798453],[4.740419951740309,52.234873614498284],[4.740439846239723,52.23487664453384],[4.740463307578678,52.23488002665077],[4.740465893279602,52.23488040032835],[4.740470261159112,52.23488103542777],[4.740476893487489,52.234881988517365],[4.74053389602673,52.234890210044775],[4.740586691330494,52.23489782429309],[4.740587100411013,52.23489788046051],[4.740587786960718,52.234897983086874],[4.740588035284429,52.23489802039827],[4.740588196041242,52.23489803925426],[4.740590898587138,52.23489843154473],[4.740613834025693,52.23490173884876],[4.740647779889356,52.234906939971026],[4.740704599660615,52.23491565475829],[4.740713451363241,52.23491700646621],[4.740745965727908,52.234921993001244],[4.740761374496572,52.23492444117659],[4.740798034190817,52.23493026829308],[4.740799158837682,52.23493044521976],[4.740801963070661,52.23493089199007],[4.740804226872005,52.234931254910805],[4.740807250153186,52.234931738831754],[4.740815107913506,52.23493298622501],[4.740818058265851,52.23493345177053],[4.740874742188622,52.23494245334993],[4.740898446832998,52.234946223197426],[4.74093118357912,52.23495202881047],[4.740987428700853,52.234962016620564],[4.741019888000218,52.23496777575097],[4.741043688485934,52.23497200448399],[4.741099933788749,52.23498198325324],[4.741109103510823,52.23498361530029],[4.741155862331127,52.23499260740294],[4.741190942437308,52.234999351527854],[4.741212077757436,52.23500263089542],[4.741238792680063,52.23500677665708],[4.741242049918725,52.235007279822234],[4.741248053108476,52.23500821145218],[4.741268852544729,52.235011435044704],[4.741288614900468,52.2350145001664],[4.741288950923203,52.235014546943894],[4.741325627745629,52.23502021220469],[4.741382432375418,52.23502898051012],[4.741439207881957,52.23503773964087],[4.741459788427113,52.235040917062854],[4.741460065898104,52.23504096351982],[4.741495998179292,52.23504648983703],[4.741552803137098,52.23505524008589],[4.741566986180231,52.23505742080335],[4.741609320744006,52.23506462688856],[4.74166574741991,52.23507422888034],[4.741669588105641,52.23507487903062],[4.741671690902974,52.23507524105485],[4.741722492461681,52.23508307758841],[4.741727648619141,52.23508386974512],[4.741779282742824,52.23509183663586],[4.741810862083513,52.235096709911595],[4.741836148841569,52.23510041630904],[4.741856702642773,52.23510342274258],[4.741864634825493,52.23510458957985],[4.741893106306962,52.23510875377651],[4.741902966807904,52.23511020078593],[4.741912416271876,52.23511172644182],[4.741916739369172,52.23511242415929],[4.741949790672375,52.2351177548404],[4.741983893579938,52.2351232530406],[4.741994978866241,52.23512503928948],[4.742006429323693,52.23512688146],[4.742063053230081,52.23513601695987],[4.742119691797882,52.23514515251255],[4.742171350132551,52.235153478885394],[4.742176300201664,52.235154350789564],[4.742223771418009,52.23516269921788],[4.74223266687023,52.23516406902648],[4.74228947251474,52.23517279195932],[4.742346278181621,52.23518151486486],[4.742354355730899,52.23518275436703],[4.742354618695774,52.23518279175461],[4.74235492531461,52.235182847356604],[4.742355013012949,52.23518285682333],[4.742355129857309,52.23518287543722],[4.742355334400007,52.235182903517895],[4.742368495070203,52.23518492576128],[4.742379438561359,52.23518639661826],[4.742403327189315,52.235189609907785],[4.742460528584181,52.23519729230446],[4.742517729998902,52.235204974673515],[4.742574916665292,52.235212665922305],[4.742610362587223,52.235217425261254],[4.742632025998398,52.235220644338895],[4.742688938293055,52.23522908903138],[4.742745850479355,52.23523754268378],[4.742747691108028,52.235237813378106],[4.742802399018191,52.23524684818965],[4.742848767838707,52.235254507260805],[4.742858947060625,52.2352561896178],[4.742915495126895,52.23526553101894],[4.742952312765304,52.23527160999095],[4.742971877387193,52.23527520404647],[4.743027986955703,52.23528551371146],[4.743029841186176,52.23528585637998],[4.743084611405441,52.23529463973465],[4.743087693158801,52.23529513290383],[4.743141463119247,52.235303236674774],[4.743189331774571,52.23531044539811],[4.743189828431003,52.23531052000996],[4.743189989190419,52.23531053886242],[4.743190675752548,52.23531064147369],[4.743198360069194,52.23531174395353],[4.743255394242413,52.235319874454746],[4.74327929478508,52.2353232853685],[4.743279426268328,52.2353233040613],[4.74327963081226,52.235323332140325],[4.743287096081203,52.2353243974682],[4.74331255060956,52.23532765506049],[4.743369874383105,52.235334996136515],[4.743387891236915,52.23533730538491],[4.743427198045746,52.23534234617206],[4.743466446570821,52.235347368652434],[4.743484598165933,52.23534947189513],[4.743487214235318,52.235349773767396],[4.743510802386089,52.23535251781647],[4.743528953855523,52.235354630039694],[4.743539463608946,52.23535572991565],[4.743539697429473,52.23535575815373],[4.743540501358031,52.23535584342634],[4.743542167767716,52.23535601429053],[4.743545368843867,52.23535635530109],[4.74359989169121,52.23536200922768],[4.743639344056878,52.235366098004],[4.743657785741393,52.23536737589995],[4.743706193452206,52.23537072248926],[4.743716012140982,52.235371018649005],[4.743739776047398,52.23537173231084],[4.743741634442533,52.23537178737331],[4.743774521550367,52.23537229905427],[4.743832333785623,52.23537319813578],[4.743833065822759,52.23537319313434],[4.743862316733452,52.23537308278902],[4.743874424038156,52.23537304086489],[4.743891616751695,52.23537261318194],[4.74392241414442,52.235371855115616],[4.743936931711435,52.23537116119394],[4.743937005031984,52.23537115260515],[4.743937195457696,52.23537114465396],[4.743950057615653,52.2353705315973],[4.743990885540941,52.235368578790215],[4.744008435538304,52.23536773958541],[4.744013870443705,52.23536748155806],[4.744066733672193,52.23536438985134],[4.744067803295033,52.23536432377],[4.744069283045474,52.23536424194526],[4.744070396582735,52.23536417610294],[4.744070748287561,52.235364151053474],[4.74407115854496,52.235364126322736],[4.744075803119622,52.235363855002],[4.744077649472583,52.23536373023267],[4.744078133050484,52.23536369691302],[4.744085137740702,52.23536320475086],[4.744108921404511,52.235361536613524],[4.744124855128843,52.23536009538189],[4.744162703241781,52.23535667023119],[4.744175092975313,52.2353553175587],[4.744175708815413,52.23535524900639],[4.744182688120119,52.23535448705887],[4.744240326284286,52.23534817657955],[4.744291028916113,52.235342637252764],[4.744291424794558,52.23534259446692],[4.744291893993435,52.23534254309207],[4.744297978940622,52.23534187513908],[4.744355631710494,52.23533556468311],[4.744362992249251,52.23533475985921],[4.744412708559311,52.235327570300626],[4.744469701061238,52.235319332754486],[4.744526708180312,52.23531109526042],[4.744547114042169,52.235308141344724],[4.744583601675057,52.23530261444357],[4.744640453049379,52.23529400753763],[4.744697304401835,52.23528540060428],[4.74475415573242,52.235276793643514],[4.744767007764739,52.23527485021204],[4.744811049399742,52.23526829474223],[4.744834522626555,52.235264800197484],[4.744867957294668,52.235259822855085],[4.744924865168048,52.235251350940494],[4.744925231898487,52.23525129900604],[4.744950201564436,52.235247578884916],[4.744951065601609,52.23524755661811],[4.744982666820378,52.2352468835381],[4.745041183505827,52.235245619738755],[4.745099700188079,52.23524435591043],[4.745107461364968,52.235244191369105],[4.745156658387274,52.23523645040483],[4.74517271017839,52.23523392212014],[4.745173957397302,52.23523372217323],[4.745176979843363,52.23523325324457],[4.745210910214889,52.235223335073734],[4.745263804816208,52.235207893426775],[4.74531667010474,52.23519245159703],[4.74532378538235,52.235190378066264],[4.74537304953995,52.235183050827025],[4.745398869952926,52.235179209400684],[4.745424747359563,52.235175476134906],[4.745429999062027,52.23517472270468],[4.745450345990724,52.23517178628928],[4.745486182453983,52.23516470064061],[4.7455100833114,52.235159967934436],[4.745541911905878,52.235153669423134],[4.745584604391963,52.23514522783595],[4.745589243619808,52.23514430928741],[4.745597655838845,52.2351426472461],[4.745647439337936,52.235132797072325],[4.745653470345188,52.235131805187045],[4.745710038115535,52.23512253111204],[4.745766620629942,52.23511324810206],[4.745816276998829,52.23510510489575],[4.745823159724436,52.23510392887708],[4.74587955746248,52.235094258323954],[4.745935955046714,52.23508459673113],[4.74599236724463,52.235074935190845],[4.746002463976272,52.23507320137144],[4.746048778771206,52.23506531856027],[4.74605668860649,52.235063977329446],[4.746105219290844,52.23505572003622],[4.746161645148213,52.23504612140572],[4.746218070981359,52.23503652274819],[4.746235094054938,52.23503363107964],[4.746274539540263,52.235027005188016],[4.746315012263198,52.23502020509512],[4.746331007687121,52.23501751456284],[4.746387490318721,52.23500803297736],[4.746410133315008,52.235004228023215],[4.746430707172636,52.23500077136361],[4.746443987176459,52.23499857840615],[4.74650052650206,52.23498922290691],[4.74655706580401,52.23497986738053],[4.746613604953029,52.234970520814365],[4.746670144207684,52.2349611652337],[4.74672668330943,52.23495181861334],[4.746783222516791,52.23494246297847],[4.746839747062493,52.234933107237126],[4.746896286093331,52.23492376053536],[4.746952825229749,52.23491440481914],[4.747007603389798,52.2349053451265],[4.747009378463717,52.23490508510449],[4.747032308042784,52.23490170402261],[4.747033804348477,52.23490148742981],[4.747040347236143,52.23490052521192],[4.747066313593664,52.234896693200916],[4.747123248702262,52.23488830126984],[4.747180198427497,52.23487990939052],[4.747232556366835,52.23487219367675],[4.747237090870956,52.23487142729308],[4.747293559004587,52.23486190924474],[4.747350012605329,52.23485238210271],[4.747368576010161,52.23484925593677],[4.747406196840502,52.23484224228783],[4.747422798102483,52.234839150427135],[4.747449101791277,52.23483425058161],[4.747451186193976,52.23483385740742],[4.747457042885398,52.23483276561784],[4.747460653768973,52.23483209309242],[4.747462210171462,52.23483176896316],[4.747492559434508,52.234825488880816],[4.74751817994954,52.23482126841204],[4.747574718439063,52.23481193935953],[4.747602994864885,52.23480728385008],[4.74761241554558,52.23480572599413],[4.747631271413897,52.2348026193465],[4.747687824494223,52.23479329031902],[4.747744377421905,52.23478397025172],[4.747791553959439,52.23477618130398],[4.747800915817104,52.234774641090716],[4.747823821671109,52.23477086425315],[4.747848727506916,52.234785829321275],[4.747873734793037,52.2348008668374],[4.747882853973531,52.234814191530894],[4.747905522593578,52.23484733628261],[4.747928191118274,52.23488049001719],[4.747950859805653,52.23491363475989],[4.747973528526695,52.23494677949813],[4.747996197152399,52.23497993321921],[4.748018865940772,52.23501307794846],[4.74804153476281,52.23504622267318],[4.748060762330574,52.23507434243467],[4.748065041470529,52.23507912924916],[4.748090602062608,52.23510765177781],[4.748092782421409,52.2351107734368],[4.748115848123858,52.23514381243683],[4.748138913731483,52.23517686041961],[4.748161979502229,52.23520989941035],[4.748185045178161,52.23524294738386],[4.748208111017207,52.23527598636532],[4.748231176632489,52.235309043316825],[4.748254242668789,52.23534207330166],[4.748277308481333,52.235375121256524],[4.748300359689867,52.2354081691276],[4.748322938058609,52.235440504381266],[4.748323425699652,52.235441208085795],[4.748346491614652,52.235474256026755],[4.748369557563808,52.23550730396305],[4.748374276966045,52.235514061527965],[4.74837660091021,52.23551738169473],[4.748392623676041,52.2355403429073],[4.748415704331729,52.23557339091346],[4.748438755874041,52.2356064297693],[4.748461821959814,52.235639477686995],[4.748484888208648,52.23567251661271],[4.748507954362729,52.235705564521105],[4.748531020679864,52.235738603437504],[4.748554086902257,52.2357716513366],[4.748577153287692,52.235804690243725],[4.748579175915424,52.23580758633932],[4.748600689808648,52.23583761484278],[4.748601608359285,52.23583889611013],[4.748618407079512,52.235863910758106],[4.74862283585276,52.23587052293273],[4.748623065555181,52.235870838755886],[4.748647146082861,52.235903604500784],[4.748671241284247,52.2359363703198],[4.748689764699399,52.23596158302771],[4.748694895695199,52.23596925059579],[4.748717139188271,52.23600251871515],[4.748723732123349,52.236012369289305],[4.748724964607193,52.236014218499],[4.748739382972206,52.23603576885551],[4.748761626660427,52.23606902797884],[4.74878385587224,52.23610227803141],[4.748806099497892,52.236135546133454],[4.748828343414373,52.23616879625645],[4.748850587363989,52.23620204637514],[4.748860978250688,52.23621758891743],[4.748863743691521,52.23622177431149],[4.748872713723901,52.23623533180607],[4.748887759189598,52.23625808094104],[4.748890839853635,52.23626274440382],[4.748894781305352,52.23626863489109],[4.748916995819637,52.236301902813324],[4.748939210495846,52.23633516174387],[4.748961425076346,52.23636842965741],[4.748979583682964,52.23639562670291],[4.748983654586068,52.23640167967105],[4.749006016133068,52.236434912417394],[4.749028363203645,52.23646813609291],[4.749050724817221,52.23650136883049],[4.749057218134494,52.236511030097574],[4.749073233493437,52.236534557417635],[4.749080330692275,52.23654498592875],[4.749087882161454,52.236556405577645],[4.749089186193927,52.23655837201424],[4.749095433763278,52.236567816238676],[4.749108315908905,52.23658728201153],[4.749117472269337,52.2366011281098],[4.74913350666733,52.23662537456719],[4.749139687115042,52.236634395988695],[4.749162401637281,52.23666753174102],[4.749167879614514,52.23667551574234],[4.749167980024294,52.2366756600933],[4.749185116322011,52.23670065850153],[4.749201478378601,52.23672452023276],[4.749207860317668,52.236733785415645],[4.749230663030309,52.23676690365409],[4.749253465905543,52.236800012900645],[4.749276283324495,52.23683313120904],[4.749283238866742,52.23684323537263],[4.749298395675982,52.23686641647839],[4.749320199489906,52.23689978096974],[4.749325686369255,52.236908169473075],[4.749329532545312,52.23691356508809],[4.74934326702541,52.23693281972233],[4.749366775429041,52.23696574400575],[4.749390269099942,52.23699867719274],[4.749411107936431,52.23702787499364],[4.749414042228112,52.23703152200294],[4.749416257457171,52.23703426632627],[4.749418314363885,52.237036821045976],[4.749419335562337,52.23703809387262],[4.749437462646227,52.237064463772434],[4.749460236420718,52.237097581807056],[4.749483010100296,52.237130708824466],[4.749498555955397,52.237153316768065],[4.749505519543994,52.23716388833918],[4.749521051779741,52.237187448938265],[4.749523860229212,52.2371917064521],[4.749527485070483,52.23719722669808],[4.74954945088717,52.237230547078056],[4.749563693476931,52.23725215929377],[4.749565642654299,52.237255081938905],[4.749570388676016,52.23726409559418],[4.749571101182684,52.23726545663373],[4.74957945301496,52.23728132066016],[4.749591312114904,52.237297626052715],[4.749615188407923,52.23733044441219],[4.749639064607386,52.23736327175402],[4.749662940841974,52.237396099090894],[4.749686817111689,52.237428926422794],[4.749710693416534,52.23746175374972],[4.749723701076137,52.23747964722069],[4.749734687382,52.23749454575421],[4.749758828286025,52.23752730259418],[4.749782983993022,52.237560050520734],[4.749807124967939,52.23759280735053],[4.749815727455919,52.23760446630879],[4.749819245932966,52.23760923996403],[4.749830384299629,52.23762579310765],[4.749852717812482,52.23765902553031],[4.749853678423748,52.23766044183474],[4.749863028010826,52.23767309350404],[4.749876829614283,52.23769178218752],[4.74988599238144,52.23770419017001],[4.749897493682798,52.23772096097763],[4.749900103688007,52.237724768009436],[4.749910328631082,52.237739680394505],[4.749913108260425,52.23774391077883],[4.749922393128219,52.23775801815624],[4.749927050074641,52.237765080911004],[4.749936105744185,52.23777883651747],[4.749944330109153,52.237791347289765],[4.749948069976282,52.237797020938935],[4.749949989924698,52.23779994341958],[4.749958114525629,52.237812264903916],[4.749966120090112,52.237824720566174],[4.749987616295232,52.23785816415799],[4.74999486285781,52.2378694382913],[4.750009112661163,52.23789159875844],[4.75003060893069,52.23792504234212],[4.75005210536102,52.237958476934416],[4.750073601694955,52.23799192051],[4.750095098061094,52.23802536408152],[4.750116594459438,52.238058807648976],[4.750122752693152,52.23806838615372],[4.750138090889994,52.23809225121237],[4.750159587481327,52.23812568578433],[4.750181083976287,52.23815912933959],[4.750202580503451,52.23819257289081],[4.75022407719139,52.238226007450564],[4.750245573782963,52.23825945099365],[4.750267085045866,52.23829289461158],[4.750272770665894,52.238301742528854],[4.750275090525629,52.23830536822674],[4.750288567191283,52.238326329080245],[4.750310063879474,52.23835977261114],[4.75033156059987,52.23839321613795],[4.750340540240715,52.238407187013905],[4.750354012497251,52.23842641314437],[4.750362377077455,52.23843834940662],[4.750376867911892,52.23845903708687],[4.750376968072527,52.23845919941142],[4.75037703972601,52.238459307654125],[4.750377140143712,52.238459452003994],[4.750397844004221,52.23849306201674],[4.750418576917244,52.238526690158174],[4.750439309990017,52.23856030930846],[4.750460028326272,52.23859393736343],[4.75048076146148,52.238627556506124],[4.7505014944994,52.238661184632385],[4.750521368874564,52.23869343295766],[4.750522257104064,52.23869479493795],[4.750528374164835,52.23870419343717],[4.750566082018163,52.23869538163785],[4.75056696345729,52.23869517067476],[4.750567293992342,52.238695603881666],[4.750592612181059,52.23872802533789],[4.750592856551392,52.238728341235955],[4.75061397715163,52.238761495063784],[4.75062652054854,52.23878119252203],[4.750635312618698,52.2387949826026],[4.750637775714356,52.23879883376549],[4.750641427147416,52.23880456084275],[4.750656633735428,52.23882845208381],[4.750664809952686,52.238841286111935],[4.750665624350616,52.238842692633476],[4.750676294989364,52.23886230809158],[4.750684340736263,52.23887710080723],[4.750684397623374,52.23887721795819],[4.750684497400648,52.23887740724448],[4.750694840087599,52.23889640974743],[4.750696523333651,52.23889951070049],[4.7507117262164,52.238930835019794],[4.750724383444756,52.238956914585636],[4.750724965287259,52.23895820300938],[4.750725007535242,52.23895832008146],[4.750725036043132,52.23895837416326],[4.750728142756059,52.23896533865199],[4.750734809870718,52.23898030369738],[4.750734838378637,52.2389803577792],[4.750738923608143,52.238989538595916],[4.75074359055445,52.23900001682353],[4.750759038376802,52.239034694992846],[4.750774259315016,52.23906885961963],[4.750774442176524,52.239069381910745],[4.750787043711162,52.239104485156936],[4.750794885971501,52.23912635035216],[4.750799161137741,52.23913965769802],[4.750810486513725,52.23917493382756],[4.750813429902145,52.23918410849068],[4.750821386722022,52.23921025260577],[4.75082632336578,52.239226448672866],[4.750831143144872,52.239245700042346],[4.750839564573765,52.23927928875181],[4.750840049210782,52.23928123277787],[4.750849043255987,52.239316756998306],[4.750849223165238,52.239317485998214],[4.750858051954896,52.239352281296696],[4.750867060796502,52.23938779660685],[4.750873353150922,52.23941260152303],[4.750876905387875,52.239423226536985],[4.750888685620376,52.239458442190326],[4.750891634309164,52.239467248369984],[4.750902372861552,52.23949339847182],[4.750916676525452,52.23952825021488],[4.750923397078541,52.23954460868079],[4.750927295681223,52.23955251218368],[4.750927892947405,52.23955374676108],[4.750932388946535,52.23956287585384],[4.750940854184216,52.239580088589875],[4.750949304917289,52.2395972922591],[4.750952833431274,52.239604456749134],[4.750952861811435,52.23960451981819],[4.750960957223582,52.23962097556607],[4.750966896260254,52.23963157747814],[4.750985941185719,52.23966557391673],[4.750987768436795,52.23966884641312],[4.751007732988133,52.23969893800492],[4.751027439446752,52.2397286507059],[4.751030083053854,52.23973217027437],[4.751054579009933,52.239764820883394],[4.751071446069393,52.239787300896076],[4.751079545395567,52.23979733919943],[4.751105526317237,52.23982955737899],[4.75112497642903,52.2398536511608],[4.751125681317643,52.23985452679512],[4.7511260408892,52.23985497813275],[4.751131522044464,52.239861766644125],[4.751146325101722,52.23988012800157],[4.751151710593977,52.239887464267014],[4.751156664986518,52.239894231965195],[4.751180705369108,52.23992701491432],[4.75118435310789,52.23993198695824],[4.75120792207679,52.23995882627312],[4.751214073729731,52.23996582511458],[4.751214102367229,52.23996587020893],[4.751214217687437,52.23996599666216],[4.751235712209812,52.23999046993933],[4.751254008474554,52.2400113038194],[4.751260619883548,52.240018916319364],[4.751260677415428,52.24001898853328],[4.751263414030686,52.2400221490755],[4.751290939444364,52.24005388118352],[4.751318479536927,52.2400856133638],[4.7513230022215,52.240090832789214],[4.751346490578356,52.24011717729932],[4.751365022080896,52.24013794951108],[4.751374633930392,52.24014870598778],[4.751402806730049,52.24018022583965],[4.751423558286363,52.24020342776994],[4.751431053153286,52.240211719116566],[4.751459490959938,52.24024314151192],[4.751482639030007,52.240268720179685],[4.751487943446445,52.2402745639791],[4.751516395973056,52.24030598643934],[4.751516756322063,52.24030638385167],[4.751545348730615,52.24033724081108],[4.751551462214659,52.24034384395532],[4.751574934376197,52.240368264891536],[4.751604681998988,52.24039922691934],[4.751619108726612,52.240414233653446],[4.751635239087023,52.24042989668879],[4.751666532313921,52.24046028279277],[4.751676207595183,52.240469682391996],[4.751698429280601,52.24049042945872],[4.75171731317718,52.24050807567265],[4.751730915219657,52.24052034559475],[4.751759420240887,52.240546060875324],[4.751763651747453,52.240550146224855],[4.751795121722635,52.24058047032787],[4.751826577100751,52.24061079434367],[4.751858032649912,52.24064110936359],[4.751880071645289,52.24066235874226],[4.751880114923809,52.240662403915124],[4.75188063490727,52.240662901053085],[4.75188875214297,52.240671708033894],[4.751917617174925,52.24070298880285],[4.751946482247382,52.240734269564605],[4.751975347360342,52.24076555031917],[4.751991841582258,52.24078343530411],[4.752003653503291,52.24079701680985],[4.75203125337835,52.24082873116136],[4.752045499861794,52.240845103053],[4.75205817690542,52.240860648594904],[4.752084409058835,52.24089279599417],[4.752096496273989,52.2409076103304],[4.75210396664307,52.2409176361908],[4.752109626860359,52.24092523453981],[4.752133977221031,52.24095792907],[4.752140039805654,52.24096605987414],[4.752148799850699,52.240978052054636],[4.752158048303509,52.240990702986],[4.752162528951742,52.24099682994293],[4.752182016556653,52.241023503308135],[4.752188191792952,52.24103194929622],[4.752205558617791,52.24105641817887],[4.752213653587617,52.24106782255769],[4.752213710994219,52.24106790375852],[4.752213754145302,52.24106795791864],[4.752228953672366,52.24108937719472],[4.752235182872813,52.241098147039374],[4.752251996118511,52.24112242419094],[4.752266399194009,52.24114322799546],[4.752274538914113,52.24115560331765],[4.752296479193237,52.2411889409865],[4.752311999534751,52.24121251011463],[4.752314793863638,52.241216767481156],[4.752318419505134,52.24122227865114],[4.752323392354046,52.24122982835536],[4.75232939712157,52.241238938533876],[4.752340359977953,52.2412556073242],[4.752362300483534,52.241288935993026],[4.752384240893746,52.24132227364498],[4.752384427243035,52.24132255327522],[4.752406240281661,52.24135558464528],[4.752416301239697,52.24137081948534],[4.752428239574285,52.24138890462875],[4.75242909953224,52.241390203525455],[4.752450238899754,52.241422224607895],[4.752472223617899,52.24145554450421],[4.752494223009045,52.241488864474874],[4.752516207792848,52.24152218436271],[4.752523158906302,52.24153270174698],[4.752537208257211,52.2415557416354],[4.75254782378336,52.24157316353371],[4.752558487941976,52.24158922849961],[4.752576505487212,52.24161635228802],[4.752580766652402,52.24162247804903],[4.752603780225725,52.24165553380433],[4.752606664244905,52.241659665812726],[4.752627014205335,52.241688536810415],[4.75263714642748,52.24170289118593],[4.752650262859563,52.24172153989043],[4.75265297517491,52.2417253923465],[4.752657395482561,52.2417316537797],[4.752673482395733,52.2417545338211],[4.752687804562093,52.241774878746284],[4.752696114049818,52.241787686374295],[4.752717805173138,52.24182108553684],[4.752735097681708,52.24184772904003],[4.752739540505947,52.24185446695642],[4.752761525652966,52.24188778679694],[4.752765395166862,52.241893658782836],[4.752783099367133,52.24192121228012],[4.752797681020506,52.24194390446004],[4.752797938911873,52.2419443013181],[4.752798454310453,52.24194512199623],[4.752798998605535,52.241945969793626],[4.752800732052354,52.24194864854617],[4.752801906563841,52.24195047942268],[4.752804585015511,52.24195465526225],[4.752826070696083,52.24198809824029],[4.752847556408847,52.242021541214335],[4.752861035404642,52.242042501763834],[4.752869056794171,52.242054984262865],[4.752877078316227,52.242067457773956],[4.752890542571332,52.24208842722874],[4.752912028380691,52.242121870190545],[4.752914792902789,52.2421261723219],[4.752927848587356,52.242148074333684],[4.752927977406175,52.24214828174992],[4.752928092096728,52.242148453138164],[4.752932339021505,52.242155585468325],[4.752945823693143,52.24217820882325],[4.752952723023064,52.24218929214809],[4.752973650671264,52.24222286692186],[4.752982110487252,52.24223643931752],[4.752995577484742,52.242256195390105],[4.753018194863984,52.242289356788106],[4.753040797508376,52.24232252709039],[4.753043235821635,52.242326090449204],[4.753063444363769,52.24235567964922],[4.75307361337496,52.24237055548759],[4.75308613530223,52.24238882345202],[4.753108870451844,52.24242194951126],[4.753131590866722,52.24245508447482],[4.753143596534482,52.24247259466769],[4.753143768508808,52.242472856243424],[4.753154311315336,52.24248821943384],[4.753167894949221,52.24250802105135],[4.753176884752595,52.24252139853941],[4.753194878760081,52.24254817156661],[4.753199296665684,52.24255461272571],[4.753222031983755,52.24258773876245],[4.753235659087732,52.242607576556935],[4.753235931499405,52.24260798247994],[4.753236160885241,52.242608325255816],[4.753236419168261,52.24260869515086],[4.753236505347916,52.242608812457654],[4.753237523711523,52.24261030094657],[4.753244590881148,52.24262091777608],[4.75326678251838,52.24265418469481],[4.753287368098345,52.242685079140735],[4.753289032878947,52.24268744293612],[4.753312194443705,52.242720463384835],[4.753320187642013,52.24273185814809],[4.753335121025512,52.24275353649616],[4.753339955360137,52.24276055511747],[4.753358062153962,52.24278661866879],[4.753369454190731,52.24280302001762],[4.753381885335823,52.24281945390366],[4.753406561035527,52.24285206001778],[4.753431236899235,52.24288465713931],[4.753455927183798,52.2429172723087],[4.753470902200243,52.242937063375926],[4.75348026510524,52.2429499574869],[4.753504102977007,52.242982801762246],[4.753515289578218,52.24299821331118],[4.753527941011786,52.24301563704533],[4.753551779081649,52.243048472323466],[4.75355325816553,52.24305051154998],[4.753575764105249,52.24308127243241],[4.75359976393273,52.24311406362755],[4.753623763667592,52.24314686380498],[4.753639935916664,52.24316896220434],[4.753646729383598,52.243178247312386],[4.753647748924899,52.24317965491158],[4.753671631220691,52.24321248141297],[4.753695528192384,52.24324530798793],[4.753719410558472,52.243278134479375],[4.753739760123344,52.2433061064666],[4.753743337137783,52.24331094322669],[4.753767557591019,52.24334368164016],[4.753773088294476,52.24335116236513],[4.753774783941633,52.243353418462355],[4.753791998842567,52.2433763403397],[4.753816528102628,52.243408990517665],[4.753816944886881,52.24340954102158],[4.75384138090306,52.24344154355627],[4.753866233739767,52.2434740965895],[4.753880104920374,52.24349225485178],[4.753891145431802,52.24350663195659],[4.753908281555279,52.24352892423181],[4.753915821883805,52.24353923796147],[4.75393977815715,52.24357203783748],[4.753963748978769,52.243604846774296],[4.753987705322579,52.24363764664028],[4.753994527448103,52.24364698580872],[4.754011294145339,52.243670552387854],[4.754034721186003,52.243703511191555],[4.754058148516902,52.24373645201581],[4.75407886280824,52.24376557636238],[4.754081472884654,52.24376942823544],[4.754094637717121,52.2437888769616],[4.754094867371229,52.24378920176108],[4.754103959558195,52.24380262466217],[4.754126431624238,52.24383582100603],[4.754132483589221,52.243844751578166],[4.754148918364676,52.243869017423904],[4.754171390497593,52.243902213758915],[4.754193862536159,52.24393541907684],[4.754216334735943,52.24396861540302],[4.754232267517255,52.24399215051689],[4.754238454307238,52.24400189971574],[4.754259706897185,52.24403540408027],[4.754264533211129,52.24404300683969],[4.754282135145437,52.24406860914554],[4.754304916089648,52.24410172621518],[4.754324182065234,52.24412975520652],[4.754327667657812,52.2441348521108],[4.75435036044,52.244167995662885],[4.754355883039534,52.244176060536944],[4.754372744643627,52.244201218449746],[4.754395040778586,52.2442344587364],[4.754417336819021,52.244267708006085],[4.754429997425953,52.244286596734014],[4.754439647661517,52.24430094836247],[4.754461973306096,52.24433417980554],[4.754484313625054,52.24436741132266],[4.754491755397331,52.244378497455266],[4.754506815540699,52.24440060774844],[4.754525633643827,52.2444282298451],[4.75452959682113,52.244433724773295],[4.7545532893356,52.24446660399592],[4.754576996653871,52.244499474304675],[4.754600689238186,52.24453235351753],[4.754607208378061,52.244541394421],[4.754623955602724,52.24456534728765],[4.754647045668744,52.24459838504917],[4.754670135768956,52.24463142280601],[4.754686696300494,52.24465512299899],[4.754692843826937,52.24466455738116],[4.754711257650115,52.24469282441954],[4.754712811791695,52.244692679942574],[4.75471575425669,52.24469684816064],[4.754739035561006,52.24472983299849],[4.754762331413333,52.24476282689724],[4.754785612786505,52.244795811725595],[4.754808894194101,52.2448287965492],[4.754832175636119,52.244861781368044],[4.754836381281182,52.24486773597214],[4.754855633446454,52.244894722185784],[4.754875890741237,52.24492310691877],[4.754879517548944,52.24492754843556],[4.754880899117224,52.244929245577566],[4.754902872556607,52.244960515657155],[4.754926065905901,52.24499352694887],[4.754949259289512,52.24502653823588],[4.754972452707442,52.245059549518174],[4.754995646159692,52.24509256079577],[4.755018854415258,52.24512556315968],[4.755042047936151,52.24515857442788],[4.755065241491361,52.24519158569136],[4.755088435080892,52.2452245969502],[4.755103806592985,52.24524647513884],[4.755111643346164,52.24525760828264],[4.755134119989253,52.245289555109785],[4.755134851773374,52.24529061062304],[4.755157869002986,52.24532367485193],[4.755180886394296,52.24535673008885],[4.75520390381971,52.24538978532117],[4.755226921151648,52.24542284953618],[4.75524993864527,52.24545590475917],[4.755272956172997,52.24548895997759],[4.755295973607261,52.24552202417868],[4.755317096918666,52.245552363862885],[4.755319005844721,52.24555507946616],[4.755342288042804,52.245588064181305],[4.755352063256177,52.245601904080715],[4.755356927882397,52.245608895811394],[4.755365423222119,52.24562109304549],[4.755388440920611,52.24565414824065],[4.755405761380117,52.2456790388079],[4.755411179443131,52.2456872738424],[4.755433124293384,52.24572061090834],[4.755455083945546,52.24575393906098],[4.755477028988907,52.245787267131085],[4.755498973937519,52.24582060418433],[4.75551302099308,52.245841944941596],[4.755520904404817,52.24585393216772],[4.755542834777349,52.245887269134165],[4.755564765182646,52.245920606096504],[4.755573193146103,52.24593343211582],[4.755587548024289,52.24595372291058],[4.755603596969774,52.2459763955965],[4.755610551289733,52.245986786970086],[4.755632790417186,52.246020044676754],[4.75565502957779,52.246053302379146],[4.755665310544476,52.246068663929435],[4.755677547983704,52.246086489665366],[4.755696901361388,52.24611467167966],[4.75570046327906,52.24611957121188],[4.755708420145333,52.246130516206684],[4.755723172859441,52.24615270558235],[4.755730484736539,52.2461637010566],[4.755746338024371,52.246185725538574],[4.755770003082329,52.246218604353054],[4.755793682689449,52.246251492228204],[4.755811632565192,52.246276431035064],[4.755817127298504,52.246284432770665],[4.755839895743978,52.24631755844359],[4.755862664350714,52.24635067512464],[4.755885432863795,52.246383800788486],[4.755889679532027,52.24638998027202],[4.755908039841034,52.246416961536646],[4.755917119614022,52.24643030332918],[4.755930661366246,52.2464501313459],[4.755953297821794,52.246483283254236],[4.755975934183542,52.24651644414538],[4.755998570706363,52.24654959604475],[4.756018410078124,52.246578643448565],[4.756021398244126,52.246582704019694],[4.756045489986058,52.246615468210024],[4.756069581635963,52.246648241382644],[4.756093673448677,52.24668100556289],[4.756117765169374,52.24671377872541],[4.756126198164959,52.246725238550205],[4.756142371558282,52.246746401835075],[4.756167227915082,52.24677895437014],[4.756177521335911,52.24679242845502],[4.756193290169917,52.24681114483076],[4.756202535516356,52.24682211464694],[4.756222030035113,52.246842450782154],[4.756247859402346,52.2468693819953],[4.756252536274107,52.24687311003294],[4.756288257017242,52.246901595054084],[4.756302374615413,52.246912842542095],[4.756326913593072,52.24692854081189],[4.756348463085527,52.246942335631644],[4.756369202581592,52.246953357813204],[4.756398807605836,52.24696909210251],[4.756408477801265,52.24697281982695],[4.756415294595677,52.246975372863545],[4.75641823686902,52.2469764761209],[4.756431501229888,52.246980771299775],[4.756466979651811,52.24699226761682],[4.756505140123994,52.24700463210086],[4.756519499851018,52.247008097230726],[4.756571524930467,52.24702063456382],[4.756572488120001,52.247020864404924],[4.756572779941607,52.24702093786659],[4.75657402043807,52.24702123210383],[4.75659661076913,52.24702668256355],[4.756629729347289,52.24703214426471],[4.756686295281959,52.24704147908118],[4.756691510642611,52.247042342796725],[4.756744068362484,52.247047261056125],[4.756763532574882,52.247049081620474],[4.756763825033368,52.24704911014493],[4.756763942042217,52.247049119757236],[4.756764015252297,52.24704912014786],[4.75678865624932,52.2470514267176],[4.756802108571738,52.24705175914132],[4.75686064634426,52.24705317696209],[4.756886848429173,52.24705382006775],[4.756919112801367,52.24705239230892],[4.75697753149295,52.24704980976844],[4.756984872232416,52.24704948940068],[4.757035936171965,52.24704718218427],[4.757084011099872,52.24704500281439],[4.757094355740637,52.24704453667463],[4.757152760660474,52.24704189105802],[4.757211180088317,52.247039254477926],[4.757269584994524,52.24703660880352],[4.7572944649358,52.247035483118715],[4.75732801599889,52.24703418793983],[4.757386473992349,52.24703192897545],[4.757444931979996,52.247029669982126],[4.757450206409465,52.247029464404804],[4.757450440808774,52.24702945666606],[4.757476754260217,52.24702843745123],[4.757489723245507,52.24702774258669],[4.757489869792737,52.24702773437967],[4.757490016339971,52.247027726172675],[4.757503337114472,52.24702700621742],[4.757518929179806,52.24702617253237],[4.757561114288165,52.24702422223338],[4.757561729506786,52.24702420753567],[4.757620250263393,52.2470226858076],[4.757678756501206,52.24702115498516],[4.757737277250045,52.247019633199095],[4.757753595690539,52.24701920781348],[4.757795836740563,52.247019513721135],[4.757854403376637,52.24701992454528],[4.757912969886872,52.247020344327694],[4.757914243741641,52.247020351111935],[4.757946235641859,52.24702058440484],[4.757971273798114,52.247022767010534],[4.758029262173735,52.24702783046155],[4.758045115823888,52.24702920915224],[4.758048651950889,52.247029740297826],[4.758086453234567,52.2470354332478],[4.758140722298857,52.24704360467119],[4.758142110369535,52.247043818785436],[4.758143292817002,52.24704407674509],[4.758198518359706,52.24705606415321],[4.758199408856301,52.247056257641994],[4.75823625497409,52.247064264367594],[4.758253026131992,52.24706910830085],[4.758304944029744,52.24708408903843],[4.75830603786526,52.24708440045287],[4.758326630015652,52.247090343274536],[4.758357382304932,52.247101625119285],[4.758370944725608,52.247106604755],[4.758407640523996,52.2471200753411],[4.758412345911585,52.2471217991163],[4.758413320708293,52.24712224471652],[4.75841359725686,52.24712236303242],[4.758454990735911,52.247141215460424],[4.75846767800162,52.24714699036157],[4.75846773618903,52.247147017635235],[4.758492557759274,52.247158321814624],[4.758501289602763,52.24716318585219],[4.758544613985084,52.247187369428175],[4.758566465208226,52.24719955658995],[4.758567349109875,52.24720021741776],[4.758584837689769,52.247213370047646],[4.758621901894148,52.24724120537682],[4.758648403093471,52.24726111998998],[4.758657875397073,52.24726954720911],[4.758691166445887,52.24729912409599],[4.75872199883135,52.24732653077192],[4.758724148278219,52.24732882516076],[4.758728072441031,52.24733298950836],[4.758728101090859,52.24733303460082],[4.758753449197142,52.24735995370928],[4.75878273538799,52.24739109115984],[4.758786760407407,52.247395372886004],[4.758808417675489,52.247423386866906],[4.758833526418988,52.24745585927829],[4.75884228415795,52.247467194799235],[4.758860149938447,52.24748787236234],[4.75888272710856,52.24751400373722],[4.75888649440686,52.247519946872316],[4.758907708114577,52.24755345914095],[4.758913996253095,52.24756339737017],[4.758924325781654,52.24758787273335],[4.758935632528702,52.247614699163435],[4.758937450130332,52.24762286994601],[4.758941430716327,52.24764067839392],[4.758945411305479,52.247658486841715],[4.758947353207287,52.247667188577836],[4.758948199979943,52.247694345875246],[4.758949006956453,52.24772017273458],[4.758947400420958,52.24773024874616],[4.758941667815328,52.247766026519784],[4.758940560341136,52.247772905451214],[4.758930466095124,52.247801271884434],[4.758922140611212,52.24782466836099],[4.758915757059529,52.247836013245944],[4.758896650946003,52.247870003195445],[4.758893977261692,52.24787476161457],[4.758872846092362,52.24790282667802],[4.758867966217576,52.24790930805191],[4.758844769020021,52.24793435113881],[4.758837319174535,52.247942391747486],[4.758832395256731,52.24794680564217],[4.758825528583044,52.247952952880155],[4.7588187657992,52.24795900180203],[4.758812729621579,52.24796440745059],[4.758802259058702,52.247973780194904],[4.758794200840478,52.24797927395709],[4.758775438046428,52.247992045008644],[4.758736212062522,52.248018746500826],[4.758718025742612,52.2480311341247],[4.758716295839632,52.2480323113416],[4.758695940284067,52.24804484022039],[4.758654593806859,52.248070299048464],[4.758625640982324,52.24808812106359],[4.75861262311765,52.248095368056816],[4.758569245016391,52.24811951278515],[4.75853054556398,52.24814105788983],[4.758525794163875,52.24814362115853],[4.758481806700202,52.248167358152116],[4.758437804547226,52.24819109505124],[4.75843078068928,52.24819488656995],[4.758430308451236,52.24819514470947],[4.758429290255375,52.24819569654828],[4.758420776088706,52.248200289057394],[4.758416821458922,52.248202425136895],[4.758416467375477,52.24820261200098],[4.758415773850979,52.248202985807104],[4.758393816989735,52.24821483201173],[4.758349829385335,52.248238568955635],[4.758313721475739,52.248258051550145],[4.758305754641334,52.24826225149139],[4.758295840277416,52.248267483676265],[4.758290661807634,52.2482702154348],[4.758280466948606,52.24827560790972],[4.758280348920409,52.248275670197636],[4.758275937695595,52.248277992590516],[4.758275627919154,52.248278152725995],[4.758275495121543,52.24827822392326],[4.758261346503045,52.248285689559765],[4.758239142416367,52.24829740858766],[4.758216938444986,52.24830911862396],[4.758172515570753,52.24833255658064],[4.758128092649748,52.24835599452047],[4.758083684324432,52.24837943252137],[4.758039261309893,52.24840287042743],[4.758030069826236,52.24840771995449],[4.758000759641932,52.248421782923984],[4.757992264027918,52.248424020641146],[4.757966585939355,52.248430795686716],[4.757943871281317,52.24844340175391],[4.757923060609053,52.248454948382786],[4.757900419774048,52.248467509894795],[4.757856968219714,52.24849161801946],[4.757816660376371,52.248513981222146],[4.757813661772635,52.24851581678129],[4.757772111010222,52.24854115736945],[4.757730574843007,52.248566498020836],[4.757709806741665,52.248579168340974],[4.757689023985969,52.248591838579394],[4.757681136118431,52.248596659072426],[4.757673307581881,52.24860142595293],[4.757673538557795,52.24860166087187],[4.75767362514199,52.2486017512133],[4.757674982220867,52.24860312462165],[4.757649363213748,52.248616065691664],[4.757642873597771,52.248619347693236],[4.75760414265697,52.24863891496463],[4.757583346423532,52.2486494279891],[4.757582181272874,52.2486500149897],[4.757581526879909,52.24865279778749],[4.757567357782174,52.248665835801425],[4.757555532835974,52.24867672019323],[4.757541088878169,52.248697801012796],[4.75753844248117,52.24870165175715],[4.757537978773114,52.2487023413633],[4.757537365715541,52.24870323689796],[4.7575274785592,52.248732413235444],[4.757527474872496,52.248732673868226],[4.757527056749164,52.24876223322116],[4.757529003460056,52.24876850824133],[4.75753611683084,52.24879152850132],[4.757543052462369,52.24880330380715],[4.757546284143002,52.24880880371691],[4.757557873250152,52.24882287778654],[4.757559787918743,52.24882520689685],[4.757566588703631,52.24883616357329],[4.757587449472763,52.24886975508381],[4.757608324915918,52.24890334666849],[4.757612548649263,52.24891014613623],[4.757612577298966,52.24891019122896],[4.757613178434318,52.2489111741255],[4.75761483922754,52.24891385241478],[4.757619191823042,52.2489208592932],[4.757621838426648,52.248925277521664],[4.757624027143564,52.248928938317164],[4.757628847823196,52.248937017262975],[4.757648988781496,52.24897077569873],[4.757669144412917,52.24900453420891],[4.757679229561395,52.24902141350166],[4.757683792793624,52.24902905964869],[4.757689300074824,52.24903829271549],[4.757693620104321,52.24904553310583],[4.757696896003263,52.24905101527068],[4.757709441251624,52.249072042153145],[4.757717166052645,52.24908497211778],[4.757733124565363,52.24910487570298],[4.757759012834256,52.24913711879639],[4.757784886370793,52.24916937079329],[4.757810759944753,52.24920162278443],[4.757810903830571,52.24920180331114],[4.757823998969742,52.24921812339018],[4.757835089715393,52.24923431594763],[4.757857802466283,52.24926744989386],[4.757862608805558,52.249274477155254],[4.757880427013179,52.249300610329605],[4.757903036823879,52.249333779670316],[4.757907986301764,52.2493410413804],[4.757925808501081,52.24936689594024],[4.757948624140466,52.24940001243962],[4.757971454583561,52.24943312002508],[4.757987640859766,52.24945661100393],[4.75798788470605,52.24945697182292],[4.757989477536535,52.24945928123603],[4.75799025249577,52.24946039987631],[4.757990453429955,52.24946068856268],[4.757991400672996,52.24946205079666],[4.757994270417726,52.24946622752792],[4.758017086285752,52.249499335026286],[4.758039916703447,52.249532451585374],[4.758045010748636,52.24953984887926],[4.758062629758213,52.24956558549087],[4.758085342846718,52.24959871939187],[4.758108041199071,52.24963186219771],[4.758120466503465,52.24965000324225],[4.758120739129582,52.24965040016622],[4.75812079655798,52.24965048136406],[4.758130739585147,52.24966500499907],[4.758153438004945,52.249698147795904],[4.758176136458467,52.24973129058823],[4.758198834945708,52.249764433376036],[4.758221548109596,52.249797576237306],[4.758244232148345,52.24983070995081],[4.758266930736751,52.2498638527251],[4.758289644001832,52.24989699557285],[4.758301351908012,52.24991409915722],[4.75830168196642,52.24991457727852],[4.758301725006475,52.24991464042366],[4.758301768173507,52.2499146945815],[4.758301868642629,52.24991483892441],[4.758301897166699,52.24991489300428],[4.758302227225117,52.24991537112559],[4.758312342657691,52.24993013833808],[4.758335041347273,52.24996328109882],[4.758357740197542,52.249996414867766],[4.758380438954565,52.2500295576195],[4.758403137745308,52.250062700366726],[4.758425836569778,52.250095843109456],[4.758441949729654,52.250119360596415],[4.758448535427967,52.250128985847674],[4.758465997637809,52.250154451919904],[4.758468293301614,52.25015780767516],[4.758471248962924,52.25016212865929],[4.758493948015509,52.25019526240114],[4.758510807200416,52.2502198803847],[4.75851667638794,52.250228396294276],[4.758539507676452,52.25026150376626],[4.75856232435576,52.2502946111557],[4.758585155712031,52.25032771861854],[4.758593148827737,52.25033931073483],[4.758594540778993,52.2503413314542],[4.758607987102185,52.25036082607686],[4.758621433310219,52.250380329685235],[4.758630803883105,52.25039393345267],[4.758636328915343,52.2504019352085],[4.758636457911431,52.250402133630935],[4.758636486563128,52.25040217872344],[4.758636529731037,52.25040223288109],[4.758636558382733,52.25040227797354],[4.758636644591643,52.250402395276275],[4.758636773587735,52.25040259369869],[4.758636845280432,52.25040270193622],[4.758653635214112,52.250427049889154],[4.758676466705916,52.25046015733375],[4.758686411490311,52.25047458205971],[4.758697604728863,52.25049082001534],[4.758699283588451,52.25049326469591],[4.758722115148012,52.25052637213142],[4.75874494674146,52.25055947956231],[4.758767763725608,52.25059258691083],[4.758790595386814,52.25062569433259],[4.758808762942643,52.25065205391458],[4.75881275108371,52.25065896892724],[4.758832276796438,52.250692858692716],[4.758851802411943,52.25072675744214],[4.758871328183963,52.25076064720082],[4.75887480162023,52.25076667864931],[4.758889164937136,52.25079488749562],[4.758906634494337,52.250829206727076],[4.758921838717162,52.250859055857944],[4.758921881378444,52.250859145964874],[4.758924104205236,52.25086351696843],[4.758933879044673,52.25088273137777],[4.758958532343874,52.25087809880641],[4.75899214251826,52.250871779161756],[4.759002151247045,52.25086923483584],[4.759013345515584,52.25086569914242],[4.759050385333229,52.25085398693141],[4.759067070859503,52.25085566650526],[4.759124863086181,52.2508615013221],[4.759170415389437,52.25086610261717],[4.759182835424383,52.25086598886628],[4.759241405680978,52.250865464249806],[4.760269741710601,52.25077547189491],[4.760285942967384,52.25077514440115],[4.76029844736903,52.25077319742675],[4.760314988779541,52.25076743398785],[4.760322447878362,52.2507639502593],[4.760336389949966,52.25075558448102],[4.760355505180483,52.2507490347576],[4.760362712604112,52.250747823657825],[4.760382895368076,52.25074553990941],[4.760393523829269,52.250745776048255],[4.760411095880984,52.250744817660006],[4.760421579301823,52.2507449541589],[4.760435314751181,52.250746060634995],[4.760440409966105,52.250746132600504],[4.760523335359703,52.250736119357555],[4.760787494506363,52.250693119226945],[4.760933710243452,52.25066764925749],[4.761358932588964,52.250598177812066],[4.76187455377572,52.25051507208588],[4.764788573467346,52.25005610589717],[4.764950361435067,52.25003201625329],[4.76805122721724,52.24954498521359],[4.768154589355842,52.24954144620351],[4.768219229153066,52.249539232230795],[4.768588276294365,52.24970743394571],[4.768771411188531,52.249790902430924],[4.768862525473781,52.24983839550534],[4.769160082468384,52.2499614340648],[4.769429663694783,52.250072326626416],[4.770131191742935,52.2503679404607],[4.770556688696308,52.25054271333252],[4.771019980327774,52.2507369340399],[4.771269415066879,52.25082914808742],[4.771423045975264,52.25090875556371],[4.771462840868127,52.25092630977299],[4.771481783650749,52.25093528862221],[4.771495170283642,52.2509394029739],[4.771805043726166,52.251069815198946],[4.77214638846407,52.25120987275142],[4.772185880383202,52.251226076937186],[4.772423404101509,52.25132114762846],[4.77247910304788,52.251341930031984],[4.772511516830126,52.25135531999444],[4.772538882978616,52.25136730852841],[4.772567767967397,52.251381722727785],[4.772663523943835,52.251407512978794],[4.77306624873865,52.25156990763458],[4.773394467306453,52.251700240210745],[4.773428651825317,52.25171694669985],[4.773461296252866,52.25173701567937],[4.773573078696653,52.25178482812626],[4.773614816356912,52.2518017984824],[4.774396476261998,52.25213574107963],[4.774749064148436,52.252285790053186],[4.774920122179896,52.25235664803941],[4.774940571053073,52.252366955365915],[4.774950310522297,52.25237116726959],[4.774959237424353,52.25237376611124],[4.774996906152563,52.252381061784384],[4.774998358238504,52.25238089853528],[4.775008343150381,52.25238217263101],[4.775017737489607,52.25238379419822],[4.775029179309315,52.25238455453596],[4.775033205921603,52.25238567193099],[4.775037195888587,52.25238838899928],[4.775039682109891,52.25239289587673],[4.775123132710653,52.25243625481734],[4.775175475502762,52.25245421429741],[4.775268267065059,52.25248605396195],[4.775277179364955,52.25248865270373],[4.775354595852583,52.25251182914608],[4.775358866554586,52.252514367896985],[4.775369800419971,52.25252225305197],[4.775388096845892,52.25253680946548],[4.775416215927865,52.25255272897705],[4.775504650369273,52.25259473828314],[4.77558226431535,52.25263021117419],[4.77565955122986,52.2526671114124],[4.775820473550167,52.252731884681616],[4.775869490137295,52.2527574844136],[4.775901586230361,52.252771761602965],[4.775939391965717,52.25278404601905],[4.776149768876456,52.25287033124438],[4.776415875349625,52.25296697070315],[4.776542834574135,52.25304052845908],[4.776558722901014,52.253048115536586],[4.776911450110619,52.25318478456479],[4.777265150054316,52.253344673534514],[4.777500633013431,52.25345455355466],[4.777757215623728,52.25357230754179],[4.777846945081382,52.25361096024108],[4.777912916152434,52.25363385127202],[4.77797887745562,52.25365853082577],[4.778061817506186,52.2536957012913],[4.778220663092134,52.25375650583183],[4.77834397844047,52.253813109469206],[4.778383639460775,52.25382906076639],[4.7784054536693,52.25383709156936],[4.778436260608892,52.253846157373374],[4.778495628152204,52.253863630251004],[4.779853891031901,52.25444994865031],[4.780067299196612,52.25452880034159],[4.780143731335789,52.25455908704496],[4.780220178223684,52.254589373774095],[4.780277750593239,52.254606512959555],[4.780335323007234,52.25462365211695],[4.780392895465669,52.254640791246324],[4.780445667696373,52.25466519495977],[4.780498439985006,52.25468959864956],[4.780551212331566,52.25471400231581],[4.780605732865026,52.25475198679346],[4.780660253369061,52.25478998023321],[4.780714773966171,52.25482797364766],[4.780750181785822,52.25486383766985],[4.780785589662476,52.25489970168128],[4.780820982951469,52.25493556560682],[4.780930141083839,52.25504495221791],[4.780965419061451,52.255065643784455],[4.781010543284143,52.25509032258606],[4.781119196879015,52.255143252882654],[4.781512833039351,52.255309903996974],[4.781977038275927,52.2554989986957],[4.78258499077121,52.255745712033026],[4.784306988642216,52.256473341471406],[4.784941567147959,52.256752355348645],[4.785541773042862,52.257001440570924],[4.785593550443267,52.25702292478375],[4.78644562976792,52.257275920772635],[4.786738720535943,52.257403970039164],[4.786839026762031,52.25744796348479],[4.786885422402423,52.257408121769345],[4.786891631115745,52.25740279647182],[4.786952729783231,52.257428255178176],[4.787055108259413,52.25746848401321],[4.787067241799249,52.25747345306572],[4.7872090332421,52.2575344014582],[4.787272483177794,52.25756039323723],[4.787266480373601,52.257565656683944],[4.787217389474893,52.257608792439925],[4.788754997977308,52.258262464623094],[4.790458004035037,52.25902843864142],[4.790864086984327,52.259198293834864],[4.791071351112998,52.259285174615705],[4.791256924477649,52.259362148764964],[4.791452239230277,52.25944456450793],[4.791650780479341,52.25952672654392],[4.792131745690732,52.25972751375386],[4.793349287090099,52.26023876179924],[4.793646054914674,52.26036202161025],[4.793666259059936,52.26037040998536],[4.794042675986198,52.260536959349956],[4.794130600875108,52.26057793633533],[4.794213710523959,52.260617540899325],[4.794312358048463,52.2606672898759],[4.794457089539042,52.26074324513072],[4.794562909383859,52.26080111004926],[4.794579407795817,52.26081171768817],[4.794595339904054,52.26082195397848],[4.794730283582201,52.26090262343818],[4.79473433900896,52.26090497165148],[4.794738379669826,52.2609073287786],[4.794742420211469,52.26090969489294],[4.794746446106878,52.260912060933684],[4.794750471883063,52.260914435961695],[4.794754468366348,52.260916810842744],[4.794758479377075,52.26091919478445],[4.79476246097525,52.260921587566486],[4.794793456851118,52.26094128277692],[4.79479977658695,52.26094518826802],[4.794806052144585,52.26094911151327],[4.79481234235,52.26095303483162],[4.794818588377216,52.260956975904115],[4.794824834405535,52.26096091697631],[4.794831050782692,52.2609648848634],[4.794837267280594,52.26096884376285],[4.794843439480649,52.2609728294038],[4.794868172231989,52.26098877218468],[4.794892934653317,52.261004688145086],[4.794894793639553,52.261005883873224],[4.794911841484157,52.26101704248427],[4.794928756679679,52.261028263343825],[4.794945686410822,52.261039493261734],[4.794962498139569,52.2610507855016],[4.794979309996452,52.26106206875173],[4.794996018378016,52.26107342338463],[4.795012712121387,52.261084777941775],[4.795029287742708,52.26109620380839],[4.795045878138863,52.261107620758736],[4.795062335885813,52.261119099957845],[4.795078808287987,52.261130579228016],[4.795095147921337,52.26114212973445],[4.795111502329489,52.26115367132458],[4.795127724088362,52.261165275163656],[4.79514396038287,52.26117688806125],[4.795160064147631,52.26118855422046],[4.795315713548681,52.26130288778529],[4.795506810085629,52.261441558259506],[4.795642007014559,52.26154641454047],[4.795690406029664,52.26158479271671],[4.795852879595439,52.261708282494155],[4.795904112480216,52.26174396938185],[4.796411574738418,52.26213012243386],[4.796594430102669,52.26226999024748],[4.796778312711056,52.262412011025454],[4.796972700815162,52.26256164285002],[4.79703510054151,52.262609249111584],[4.797186987645194,52.26272304005876],[4.797410825436418,52.262895584663106],[4.797603954175139,52.263043294700644],[4.797806643871372,52.263198071690574],[4.79781348532467,52.263205763550296],[4.797824952163885,52.2632159321882],[4.797825024567739,52.263215995464975],[4.797825169256407,52.26321613100586],[4.797825198194138,52.263216158114055],[4.797825212603485,52.26321617616186],[4.797825241660258,52.263216194282684],[4.79782531394507,52.26321626654682],[4.797825386348924,52.26321632982362],[4.797830656588198,52.26322099389219],[4.79789814512659,52.26327161805239],[4.797905715981449,52.26327622168466],[4.79790574515732,52.26327623081809],[4.797905774214165,52.26327624893888],[4.797905788623566,52.26327626698666],[4.797905817799434,52.263276276120074],[4.797905861384703,52.26327630330125],[4.797905890560575,52.26327631243468],[4.797905919617419,52.26327633055549],[4.797906123134365,52.26327644841371],[4.797906224833327,52.263276511836494],[4.797912037750337,52.26328001916007],[4.798083940087792,52.263413655265985],[4.798198150741625,52.26350244131774],[4.79820094916172,52.26350461237402],[4.798291628258213,52.263572860416545],[4.798307459269957,52.26358755371938],[4.798317782586394,52.263595595451704],[4.798496241702948,52.26373317337238],[4.798511999675171,52.263745646256965],[4.798527536396409,52.26375823488099],[4.798543058478823,52.263770823429915],[4.798558359310157,52.263783527718346],[4.798573645621494,52.26379622294443],[4.798588710681641,52.26380903391016],[4.798603761221713,52.263821835813616],[4.798618575862849,52.26383475338384],[4.798633390512581,52.26384767095218],[4.798647954853369,52.26386068613974],[4.79866251920267,52.26387370132551],[4.798676847771636,52.26388682319085],[4.798691161701393,52.26389994498156],[4.79870523996953,52.2639131644646],[4.798719318364893,52.26392637495859],[4.798733131684277,52.26393969198661],[4.798852917919679,52.26406344134589],[4.798900394482391,52.264096663477574],[4.798917984181044,52.26411464605472],[4.798935397408206,52.26413268167861],[4.798952825178391,52.26415072636014],[4.798970091005833,52.26416883314867],[4.798987342318368,52.26418693087446],[4.799004431569165,52.26420509969476],[4.799021520952706,52.264223259525195],[4.799038448393147,52.2642414814629],[4.799055375847432,52.264259703398096],[4.799072126829459,52.26427797838042],[4.799088892354225,52.26429626242059],[4.799105466758745,52.26431459943503],[4.799122055824709,52.26433293652001],[4.799138483065811,52.26435132672517],[4.799154895672665,52.264369716855114],[4.799171146335681,52.26438816909272],[4.799313044180269,52.264539324401696],[4.799585945829879,52.26483816490183],[4.799598855680594,52.26485670832414],[4.799734686044042,52.265003860262006],[4.799785334413357,52.26506104170914],[4.799944041437572,52.265230875847166],[4.800049245314046,52.2653478644472],[4.800199692391634,52.265508804056694],[4.800417471234082,52.26574727530181],[4.800571843481527,52.26593625834645],[4.800809571621254,52.26619528442929],[4.80101933250191,52.266407928293724],[4.801182694213791,52.26658433599451],[4.801232166480291,52.26663988414141],[4.801318465370638,52.26673677963891],[4.801400925112797,52.26683043835622],[4.801908784659526,52.267379259952456],[4.802045052528491,52.267531067037424],[4.802052264877826,52.26754296683808],[4.802120890243128,52.26763611613126],[4.802143857674876,52.26766312176511],[4.802168855702039,52.26768165281892],[4.802212464222159,52.267707592166275],[4.802465022477911,52.26798556285772],[4.802581658948339,52.26811650102424],[4.802675533159656,52.26822600709255],[4.802825416448502,52.26840009877596],[4.802910707984863,52.26849613421961],[4.803094625651528,52.26870815215041],[4.80310830652502,52.26873065367441],[4.803248003561786,52.268887473549654],[4.803439142363475,52.26911548019884],[4.803759807274931,52.2694786664991],[4.8042330875837,52.270026695767115],[4.804708003197749,52.27057939584486],[4.804735061148078,52.270610888115],[4.804737951998864,52.27062396184288],[4.804852389684073,52.270754904798025],[4.80487827598555,52.27077406879022],[4.80499541756549,52.27091004918114],[4.805451359494445,52.27143621912447],[4.805693304002534,52.2717077399184],[4.80587333032493,52.271906755575685],[4.806021418448385,52.27207100136409],[4.806384808017896,52.272474368600804],[4.806385501267494,52.272475135981914],[4.806535367852935,52.27264148402415],[4.806560439429637,52.272669325982505],[4.806852738522686,52.2729937609421],[4.807016091461124,52.27317557988243],[4.807446319088482,52.27365478838211],[4.808433370464119,52.27475259404694],[4.80873969971468,52.27509316323441],[4.808998947308643,52.27538138029404],[4.809234818040026,52.27565792398778],[4.809281556959865,52.2757223982307],[4.809472929948027,52.27592910335568],[4.809692635161657,52.27616236209831],[4.809695106649376,52.27616498965998],[4.809842936922244,52.27632192198409],[4.809976213248623,52.27647357904106],[4.810127835701533,52.27663766592569],[4.810359824531646,52.2768948373],[4.810598604005499,52.27714268488391],[4.810860932396257,52.27739967065252],[4.811263880961054,52.277790883596644],[4.81141391019715,52.27793613128968],[4.811674377932242,52.27818815377256],[4.811675231724157,52.27818898481829],[4.812308894435018,52.278802698620076],[4.812614546833344,52.279099150271456],[4.812694390599128,52.279176582789766],[4.813139780450628,52.279608575807266],[4.813197526218516,52.27966458131457],[4.813284376689951,52.279748815344064],[4.815106994111262,52.28151995562148],[4.81536283967882,52.2817631571131],[4.81548315481986,52.281881570590144],[4.815644250400772,52.28203791237149],[4.815683387672173,52.28207594070044],[4.816325269211061,52.28269958554499],[4.816453544128795,52.28282393250238],[4.816729892737795,52.283092216303515],[4.816731675928541,52.28309372588932],[4.816732675642117,52.28309462051657],[4.816733255000775,52.28309515359899],[4.816904114482035,52.283259890481055],[4.817148090953266,52.28349651447187],[4.817505814989021,52.28384016589121],[4.817798523929073,52.28412506368864],[4.818109866178572,52.284428080173456],[4.818520341507102,52.28482397737043],[4.819004522910002,52.28529591450564],[4.819199741080408,52.2854848436097],[4.819611442029657,52.285884985053634],[4.819889510799221,52.28615352110318],[4.820400665518651,52.28664564272736],[4.820763259870203,52.28699864569478],[4.821082939267267,52.28730960334455],[4.821487940248788,52.287702183046484],[4.821496785591553,52.28771080881462],[4.82185599617262,52.28810883049353],[4.822380396384651,52.28861744542838],[4.822405246721756,52.28864111243446],[4.822544328394566,52.28877353933078],[4.822549675932208,52.288778328455294],[4.82255511186294,52.28878308205002],[4.822560547908959,52.288787826657185],[4.822566087003992,52.288792535804504],[4.822571626100195,52.28879724495162],[4.82257726835956,52.288801909651575],[4.822582910734234,52.28880656536387],[4.822588641502053,52.28881118554637],[4.822594372271064,52.28881580572862],[4.822600206203274,52.28882038146365],[4.822606040136687,52.28882495719842],[4.822611962577398,52.28882948841596],[4.822617885133435,52.28883401064588],[4.822623896082667,52.288838497345935],[4.822629907147227,52.28884297505835],[4.822636021375033,52.28884740832346],[4.822714859127228,52.28890638583618],[4.822770842286647,52.288948419861974],[4.82287447463646,52.289026282357405],[4.823621119869022,52.28955745115627],[4.823983842491823,52.289780398591574],[4.824066463684654,52.28983255341131],[4.824111756342947,52.28986479299076],[4.824191502879729,52.28992522087406],[4.824271148249204,52.28999365643779],[4.824322709900397,52.29004594182821],[4.824374363043283,52.29009679855496],[4.824386105157465,52.29011056098948],[4.824398212625985,52.29012672493047],[4.824554015394626,52.290342447917375],[4.824559114148625,52.29034955464191],[4.82456447774347,52.290356581735296],[4.824569841112556,52.290363626803156],[4.824575454779917,52.290370583182735],[4.824581082878013,52.29037755760651],[4.824586946618076,52.29038444327222],[4.824592825016389,52.29039132900735],[4.824598953485765,52.29039814402883],[4.824605067414298,52.290404949992876],[4.824611431527723,52.29041167625586],[4.824617810413235,52.2904183936009],[4.824624410284567,52.29042502211799],[4.8246310247006,52.29043165969177],[4.824637860329968,52.290438190462865],[4.824644710617796,52.29044472130328],[4.824651781891607,52.290451163315666],[4.824652231011054,52.29045157889559],[4.824652636047431,52.2904520032537],[4.824699543398506,52.290501516032656],[4.824704259441944,52.29050643687097],[4.824709240667411,52.29051125111588],[4.824714251093215,52.290516074487364],[4.82471951215834,52.2905207822082],[4.824724787767364,52.29052549898588],[4.824730343328733,52.29053010025237],[4.824735884121072,52.29053471043622],[4.824741690323023,52.290539196051704],[4.824747496639835,52.29054367267956],[4.824753553596119,52.29054803365668],[4.824759610667281,52.29055238564608],[4.824765918605323,52.290556604010035],[4.824772211888069,52.29056082230387],[4.824778726838409,52.29056489784539],[4.824785256446441,52.29056897345625],[4.824791993179253,52.290572897257654],[4.824793972025167,52.29057404813251],[4.824795478793803,52.29057543943521],[4.824802085308419,52.29058154667561],[4.824809001202918,52.290587529556504],[4.824815902442774,52.290593512367295],[4.824823098292415,52.29059937973615],[4.824830308800463,52.29060524717431],[4.824837784832711,52.29061098105636],[4.824845260866887,52.29061671493794],[4.824853017081822,52.29062231533303],[4.824860773298714,52.29062791572769],[4.824868795153564,52.29063337357865],[4.824876817010386,52.290638831429135],[4.824885089962338,52.29064413767891],[4.824893348259742,52.290649443858335],[4.824901872308808,52.29065459850675],[4.824910381930644,52.29065973511012],[4.824919127877425,52.29066472903029],[4.82493127357278,52.29066978405551],[4.824962221201382,52.29067859554303],[4.825115754625851,52.290714773734436],[4.825416216534879,52.2907855881694],[4.825486520358489,52.29080130045176],[4.825522873060072,52.29081040710464],[4.825532102864825,52.29081307541234],[4.825541109529552,52.290816003308365],[4.825550160051678,52.29081894039989],[4.825558972890887,52.2908221280229],[4.825567800274417,52.2908253247022],[4.825576389975164,52.290828771913006],[4.825584979677244,52.29083221912323],[4.825593302610537,52.29083589875106],[4.825601625431689,52.29083958736568],[4.825609666941069,52.29084349934101],[4.825617693795277,52.29084741124623],[4.825625424681182,52.29085154644266],[4.825633126368855,52.29085567251198],[4.825640517545183,52.2908600128157],[4.825647894293378,52.29086433507461],[4.825654931330558,52.290868862441386],[4.825843881482927,52.29095588162416],[4.825881318999498,52.29097311837334],[4.826131526096566,52.29107390071981],[4.826131744812404,52.29107399163653],[4.826131963528243,52.29107408255327],[4.826152637806334,52.29108280902849],[4.826172986130195,52.291091812578316],[4.826193363775655,52.291100816263686],[4.826213415580542,52.29111008803648],[4.826233481937084,52.291119368862766],[4.826253207909981,52.29112890871981],[4.82627294854804,52.29113844864307],[4.826292348802624,52.29114824759733],[4.826311734409072,52.291158046478856],[4.826330794288888,52.291168104461136],[4.826349839634004,52.29117815338345],[4.826368515395877,52.29118845221081],[4.826387191279768,52.29119874204787],[4.826405512237198,52.29120928185968],[4.826423818659958,52.291219812611736],[4.826441740956231,52.291230584212514],[4.826447403540057,52.2912336939138],[4.826453228708793,52.29123669653109],[4.826459068535036,52.29123969921765],[4.826465056289452,52.291242594750614],[4.826471044044649,52.2912454902833],[4.826477179954694,52.29124826068766],[4.826483315752161,52.29125104007911],[4.826489584934374,52.291253703260104],[4.826495868774068,52.29125636651023],[4.82650227145509,52.29125890449305],[4.826508674136846,52.2912614424755],[4.826515210316615,52.29126385526009],[4.8265217319537,52.29126625898745],[4.826528372318687,52.291268546434786],[4.82653501279769,52.291270824894404],[4.826541757461147,52.2912729780171],[4.826542107749396,52.29127309652062],[4.826542443494248,52.291273205967215],[4.82682516269568,52.29137063569978],[4.826859636582994,52.29138349896193],[4.826919132987441,52.29140435417435],[4.826979162187961,52.29142480742559],[4.827065608880924,52.2914530614498],[4.827152480731209,52.29148131742395],[4.82724536984743,52.291512468966516],[4.82733773886225,52.29154419319809],[4.827424098986916,52.29157470250936],[4.827509893898089,52.291605874185784],[4.827582428130958,52.291633199139504],[4.827654490040282,52.291660791450035],[4.827717185756579,52.29168488804988],[4.827779840623538,52.29170874174978],[4.827817104790089,52.291722390889504],[4.827854663361046,52.291735942543184],[4.827902786286185,52.29175330109264],[4.827950955254529,52.29177049805802],[4.828004527420219,52.29178930242464],[4.828058275627261,52.291808098611355],[4.828067454813609,52.29181132372935],[4.828076604574441,52.29181455769541],[4.828097720565754,52.291822018622575],[4.828085407231131,52.29183490296676],[4.8280729899346,52.291847894672756],[4.828060349838166,52.291861119009155],[4.828013027206205,52.29191064321684],[4.828180016826932,52.29197064501729],[4.828451817050615,52.29206278824683],[4.828687704233809,52.292131779187805],[4.828739587355735,52.29214741150206],[4.829045962911949,52.29224928874541],[4.829731523076187,52.29248121060938],[4.830339726052548,52.29268613308207],[4.830892661909273,52.292872061647124],[4.831412312278434,52.29304637160621],[4.831865333952462,52.29319809438972],[4.832089055382196,52.29327733046409],[4.832458770759971,52.29342497481974],[4.832620850781909,52.2934975842278],[4.832854756894087,52.2936054930211],[4.833038545444808,52.29368765887015],[4.833106217023368,52.293708153783825],[4.833188334713619,52.29372216417102],[4.83326410494487,52.293725619952966],[4.833350818179584,52.29372138837045],[4.83343747046097,52.293710280706414],[4.833496861006906,52.29369893747658],[4.834637105084715,52.293465705644095],[4.834838642490081,52.29342558156706],[4.834936123975469,52.293405220929436],[4.835334672149638,52.29331990808681],[4.836988963621481,52.29295488037526],[4.8387578015977,52.292561977160524],[4.840155069479155,52.29225049406332],[4.840226149361507,52.292232325807134],[4.84071554370222,52.29212055027138],[4.842376996142346,52.291755938840566],[4.842174903470723,52.29140969305028],[4.842164858939117,52.29113142679976],[4.842162397744461,52.29107034278078],[4.842169497921652,52.29068244941182],[4.842144767161365,52.28994144601809],[4.842142901467143,52.28988559567954],[4.842222882252686,52.28983802294207],[4.842197442234777,52.289753931864475],[4.84211806499112,52.2894916409775],[4.842175163546949,52.28945140475683],[4.842650108324027,52.289384413208204],[4.842889092455214,52.28935070347547],[4.842950319857924,52.28957898102868],[4.843110883760148,52.290131477284405],[4.843237677575948,52.290574030896124],[4.843360037713536,52.29097782615605],[4.843374446781389,52.29102210382551],[4.843414778374241,52.29118916734061],[4.843519197965707,52.29151527849414],[4.843568098222052,52.29160620004192],[4.843618276060258,52.29177487262287],[4.843667071026632,52.29194398821365],[4.843791448996823,52.292733776717114],[4.844459195120626,52.295141424341125],[4.845034446562528,52.29721777232249],[4.845543092181284,52.29906064818436],[4.845721362086009,52.299741621449755],[4.8457740211512,52.299957148920996],[4.845883630489414,52.30039711240269],[4.845884672647188,52.30039700931842],[4.846028375930443,52.300683588965036],[4.846146809340724,52.30121076580357],[4.846177599192903,52.30133947805845],[4.846316527291079,52.30183453589974],[4.846461371309345,52.30231356824716],[4.846527476861237,52.30252344045321],[4.84658388852206,52.30271671265982],[4.846587583287717,52.3027576872339],[4.846587511091525,52.3028986255587],[4.846566322961453,52.30303984484695],[4.846521941641067,52.303213485169884],[4.846507118281524,52.303336461216205],[4.846524802867016,52.30351220080692],[4.846563512706665,52.303963936829554],[4.846625047525078,52.30454984002134],[4.84665050604703,52.3048158172233],[4.84666250511162,52.30515652984268],[4.846656399140901,52.305606721667644],[4.846648487205941,52.30596669409064],[4.846634626698024,52.30601407763492],[4.846604312654989,52.306182182755954],[4.846625198162338,52.30666506085486],[4.846686139512307,52.307112053702696],[4.846761699042311,52.307536302099734],[4.846791914629499,52.30785502358965],[4.846808939107323,52.30919343738787],[4.846809908632592,52.31003375182154],[4.846814278369216,52.310649933722985],[4.846826360776852,52.3109924528717],[4.846855774903978,52.31151598550581],[4.84687195892736,52.311788966389756],[4.846904064853755,52.31222507746892],[4.846915028598391,52.31239556404767],[4.846933964528597,52.31267625103849],[4.846964528454713,52.31319224791855],[4.846972734469515,52.313427964615116],[4.846953572026571,52.31354699297838],[4.846958944569864,52.31370215666433],[4.846960247687166,52.31380605308424],[4.846954587973635,52.313925376790465],[4.846935472205503,52.314127381107795],[4.846916700815859,52.31434567295594],[4.846919116661548,52.314434034468675],[4.846941503213865,52.31472770655879],[4.846955103701127,52.314929860264456],[4.846971068948367,52.315120870850556],[4.846982217826601,52.315207456686984],[4.846994141201747,52.31529789285296],[4.847024805846659,52.31536672694127],[4.847070726474727,52.31542801798056],[4.847137851686109,52.31548826435548],[4.847223225688919,52.315540891414955],[4.847339634038196,52.31559096369635],[4.847461186089851,52.3156268944974],[4.847602462491269,52.31564480465229],[4.847823198344614,52.31564451708429],[4.848058935132911,52.315634725426406],[4.848328121052057,52.315625184542895],[4.848452424023359,52.31561695162963],[4.848565936662442,52.315603582337836],[4.849223884080736,52.31551241080146],[4.849507737368899,52.31548203721673],[4.849651376705181,52.31547194956204],[4.849806110702639,52.315472149282144],[4.850052977636012,52.3154780969795],[4.850438292186528,52.315499448456805],[4.850964076186453,52.31552912910855],[4.851425497880175,52.31555480395305],[4.851705516596379,52.315566264082264],[4.851945729462372,52.31556462792188],[4.852122685797876,52.31555600023795],[4.852255016942684,52.31554840182887],[4.853146362019825,52.31548863362381],[4.853302669348889,52.31548239159378],[4.853613807895466,52.3154804609622],[4.854923187502941,52.31548709690546],[4.85551115371246,52.31548022294359],[4.85558424752618,52.31567014979958],[4.855618312691715,52.31575866227262],[4.855632533473373,52.315795845926765],[4.855639882870315,52.31581897768274],[4.855719927820153,52.31602496996723],[4.855816733810111,52.31627410717067],[4.855823827301288,52.31628922061671],[4.855832509567043,52.316303927758604],[4.855842052085439,52.31631782985894],[4.855842642926462,52.316318704332566],[4.855843292642696,52.31631956109499],[4.855843957024013,52.3163204179233],[4.855844680280543,52.31632125704038],[4.855845403537103,52.31632209615743],[4.855846185776368,52.316322908575934],[4.85584698257323,52.31632373004765],[4.855847823687745,52.316324524754954],[4.855848679467348,52.3163253195281],[4.855849579457119,52.31632609652416],[4.855850494219465,52.31632686459871],[4.855851453299464,52.31632760590883],[4.855852412379498,52.31632834721896],[4.855853430442245,52.316329061830515],[4.855854448505022,52.31632977644203],[4.855855510992943,52.31633045530181],[4.855856689941493,52.316331206587314],[4.85585791331519,52.31633192212098],[4.855859136688925,52.31633263765469],[4.855860419045385,52.31633332648977],[4.855861701401882,52.31633401532483],[4.855863042956069,52.31633465948667],[4.855864384402813,52.31633531263579],[4.855865755717123,52.31633592097992],[4.85586714158905,52.31633653837722],[4.855868571993603,52.316337111035374],[4.855870002505672,52.31633767470619],[4.85587146267034,52.31633821154667],[4.855872922942523,52.31633873939974],[4.855874427639844,52.316339231501054],[4.855875917779615,52.31633971454907],[4.855877452344521,52.316340161845304],[4.855901948124137,52.316347201483424],[4.855936412444406,52.31635582280462],[4.85597216526895,52.31636216699259],[4.856041895232676,52.31638108491841],[4.856048574501032,52.31638301134119],[4.856055194250116,52.31638500939901],[4.856062340975585,52.316387090713015],[4.856069220077343,52.31638947641129],[4.856075622269131,52.31639249810399],[4.856081167011116,52.31639609116784],[4.856085033595936,52.31640020697907],[4.856088105258774,52.3164045708805],[4.856091722807177,52.31640988994284],[4.856095016650188,52.31641529743006],[4.856115654727884,52.316516862705036],[4.856083967317822,52.3165666927852],[4.856096370053394,52.31661124722282],[4.8561300437905,52.31670197776374],[4.856158953278583,52.31678026572361],[4.856170900430322,52.31681263959498],[4.856214285731894,52.31693017047411],[4.85621839155174,52.31694127089867],[4.856267213553503,52.31709355513444],[4.856264235206622,52.317093649621185],[4.856283663694153,52.31714676501697],[4.856291773397282,52.31716891147549],[4.856313100403857,52.31722516315077],[4.856342759238087,52.31730339150372],[4.856356465726487,52.317339521172215],[4.856357852832357,52.31734249338053],[4.856359137173267,52.31734547411554],[4.856360421406967,52.31734846383785],[4.856361573437506,52.31735147094259],[4.856362740133595,52.317354478113096],[4.856363803957291,52.317357502797655],[4.85636485311573,52.31736052741638],[4.856365784736347,52.31736356948334],[4.856366731129875,52.31736660262875],[4.856367545320146,52.31736965315659],[4.856368374175934,52.317372703750216],[4.856369070935812,52.31737576273891],[4.856369782361194,52.31737882179341],[4.856370376356041,52.31738188930882],[4.856370955685562,52.3173849567584],[4.856371432249925,52.317388032734684],[4.856376019518547,52.317414082073945],[4.856379462030279,52.31744019817887],[4.856384295893505,52.31747629701766],[4.856388705218116,52.31751233103626],[4.856403219969591,52.31758761530982],[4.856435855194028,52.31765490082351],[4.856453745348674,52.31770423439388],[4.85647023616589,52.31778845243579],[4.856482467439176,52.3178498762059],[4.856557978647958,52.3181868091276],[4.85661066043883,52.31844347714867],[4.856616441520892,52.31851081292001],[4.856625823830035,52.318589768127104],[4.856639595499413,52.318704002265015],[4.856662857676611,52.31887341029239],[4.856691954854954,52.31913391812375],[4.856700040393567,52.319198666733485],[4.856701241527449,52.319244240399996],[4.856702760763831,52.319473203098205],[4.856702477804475,52.31955216886828],[4.856702471006093,52.319553966403],[4.856702250233888,52.31961544214171],[4.856712261661229,52.31983335192749],[4.856712744514136,52.31990345913035],[4.856730441940379,52.32006729666079],[4.856732544974335,52.320249839825],[4.856732598879861,52.32025515187108],[4.856732540571114,52.32025757832229],[4.856728826780802,52.320431017694695],[4.856726643822933,52.32053275906472],[4.856727343648691,52.32055767645125],[4.856727395516839,52.320559474248675],[4.856729448996576,52.32063316563804],[4.856729500864886,52.320634963435396],[4.856730960189572,52.3206871712604],[4.856735176924945,52.320837646337715],[4.856735588440837,52.320852316311026],[4.856755236255641,52.32085285379936],[4.856756751921679,52.320897889591166],[4.856736640479543,52.32089932734546],[4.856739014924888,52.32100632904223],[4.856740817282518,52.32108754210688],[4.856742504174521,52.32116368552031],[4.856743618219381,52.3212141032147],[4.856746362185892,52.3213380665831],[4.856765350822016,52.32133977851816],[4.85676293915972,52.32140294311076],[4.856745344408218,52.32140364616177],[4.856716376926364,52.321404801533234],[4.856720836567563,52.321555816948496],[4.856718664702808,52.32155590607593],[4.856718596599682,52.32158863043177],[4.856718720618806,52.32159421242553],[4.856719407713608,52.321626337983304],[4.856720743201175,52.32168891718976],[4.856721392237798,52.32171931691445],[4.856721487031224,52.32172488978917],[4.856722266482901,52.321772618619285],[4.856728985083778,52.321772549878844],[4.856731892385373,52.32188283450171],[4.856740126289186,52.322195602670924],[4.856744081618285,52.322310251076516],[4.856745534683649,52.32245388296992],[4.856746029306592,52.32250458548449],[4.856746024255608,52.322527117928345],[4.856746024349207,52.322571329018416],[4.856746039002458,52.3226155491612],[4.856746033125332,52.32264797719116],[4.856750786923298,52.322661372382385],[4.856750559832755,52.32266196456033],[4.856750591236613,52.32268635764573],[4.856751268234984,52.32276477941337],[4.856757434597563,52.32286992860534],[4.856760712004316,52.32298853758402],[4.856778047952345,52.32298867822374],[4.856777905217957,52.32299694637805],[4.856776897418125,52.32305432010111],[4.856776116482593,52.32307795456568],[4.856782620811621,52.32322114171679],[4.856784306901636,52.32327402461749],[4.856786076422082,52.323329748042504],[4.856787871096121,52.323385822104605],[4.856789640732305,52.32344153654101],[4.856791435307539,52.32349761958917],[4.856793055627272,52.32354864171348],[4.856794700563509,52.32360005941162],[4.856796320353726,52.32365112647151],[4.856797953419841,52.32370231043207],[4.856799585523664,52.323753575278076],[4.856801305781344,52.32380728520538],[4.856801838047981,52.323824130763214],[4.856790658060006,52.3238243592638],[4.856787321023846,52.32390727490249],[4.856786669633323,52.32396428171278],[4.856789886196407,52.32402535038151],[4.856792122987827,52.32411442069734],[4.856795236575492,52.324179200871136],[4.856796974574608,52.324215456531654],[4.856797334837577,52.3242307374368],[4.856798609532697,52.32428368139706],[4.856799341616406,52.32431450390538],[4.856799597779752,52.32433481752129],[4.856800222091305,52.324386949661154],[4.856800604513046,52.324417572869265],[4.856800670498573,52.324439072024084],[4.856800810776508,52.3244912019929],[4.856800951161871,52.324543322973874],[4.856800961287443,52.32454493183852],[4.856808161553932,52.3245450989349],[4.856808891948193,52.324594490263934],[4.85680966806788,52.32464742299731],[4.856810458857015,52.324700355795926],[4.85681048994788,52.324702665804224],[4.856802994260295,52.32470266815219],[4.856802043246991,52.32474668621531],[4.856809509606326,52.32474668373592],[4.856809536546412,52.324748112919536],[4.856809594791976,52.324751834136784],[4.856810169022791,52.324792192008026],[4.856805664918412,52.32479226169428],[4.856805606928765,52.32479466118131],[4.856804464914517,52.32484239035568],[4.856803157728002,52.32489658102912],[4.856803027584608,52.32495170272381],[4.856802968364454,52.32498245876591],[4.856804822811301,52.325017564502055],[4.856809314923522,52.32510203416103],[4.85681113460549,52.325136366788186],[4.856811968088075,52.3251943239622],[4.856813217238881,52.325205186843704],[4.856816221091932,52.32523125598802],[4.856818581844188,52.3252559021743],[4.85681849026433,52.32526111469693],[4.856818179071222,52.325278576628],[4.856814964092358,52.32531318328193],[4.856812859181106,52.325335904031725],[4.856809239747718,52.32536875624796],[4.85680629456937,52.325395508759726],[4.856805796984292,52.3254199803509],[4.856805019678451,52.32545804925279],[4.856804984941473,52.32545972981857],[4.856806699097299,52.32549675831495],[4.85680907590879,52.32554831409122],[4.85681145186703,52.325599941765624],[4.85681177918723,52.32560692676542],[4.856811216902025,52.32565155773492],[4.856810572086479,52.32570309996386],[4.856809762245292,52.32576723338125],[4.856809107123112,52.32581963839303],[4.856808611048749,52.325858724175845],[4.856809935287726,52.325925949978576],[4.85681069170109,52.32596456502114],[4.856810192365384,52.3259977817453],[4.85681066633274,52.32600231372859],[4.856814616386349,52.326040053293625],[4.856818566017282,52.32607782880759],[4.856820154489206,52.32611555778524],[4.856823321309159,52.326216433232744],[4.85682306606171,52.3262316664335],[4.856822346611351,52.326275946168344],[4.856822302725861,52.32628699199503],[4.856822103482098,52.32634790151714],[4.856821656920527,52.32648111689143],[4.856821514572586,52.326521291780296],[4.856823047890866,52.32655627023643],[4.856825696687273,52.326616994790456],[4.856825812034469,52.32661961974901],[4.856818670105366,52.32661945291635],[4.85682220895033,52.32667689191988],[4.856822491055167,52.326681521908334],[4.856823687243006,52.32673859089702],[4.856823752360288,52.326741736923566],[4.856822408249099,52.32679778788901],[4.856822258601243,52.326804177553335],[4.856834046509733,52.326804697761105],[4.85683337276239,52.32683409387751],[4.856835251651758,52.32685610446621],[4.856838359996571,52.32691397295172],[4.856841653680267,52.32697597666117],[4.856844422257349,52.32702790267792],[4.856844385374074,52.327029762989824],[4.856843426390608,52.3270904174387],[4.856843245306104,52.32710312539398],[4.856841367042088,52.327151084930044],[4.856841114627517,52.327195564482416],[4.856841561187022,52.32721222090052],[4.856841836185509,52.32722236038555],[4.85684212579572,52.327242332602786],[4.856843878674982,52.32727244064352],[4.856845095169584,52.327293414662485],[4.85684654221275,52.32731350890918],[4.856848388740157,52.32732963233347],[4.856847992709027,52.327344370570195],[4.856846942240949,52.32738320219765],[4.856841471159806,52.327475284770856],[4.856856974685954,52.32814009279049],[4.856856745695968,52.328154355419684],[4.856855819143512,52.32821106435185],[4.856855584283859,52.328224589954104],[4.856854655581748,52.32828147863206],[4.85685443463907,52.32829506721118],[4.856853564174477,52.32834830709838],[4.85686445017024,52.328349452405725],[4.856863890059379,52.32838530227058],[4.856864065960909,52.328393913381305],[4.856864711246838,52.3284270992691],[4.856864730222505,52.32843410984614],[4.856864830332936,52.32847363868406],[4.856866130303363,52.32851342455843],[4.85686728189421,52.32854843724026],[4.856867606841737,52.32855316628482],[4.856870022627573,52.32858919126746],[4.856869770469809,52.32859310882239],[4.856867474177942,52.32862815997635],[4.856867297759726,52.328630648808954],[4.856866565200884,52.32868831131326],[4.856869366684911,52.328688350833566],[4.856867560240521,52.32874749151244],[4.856867296283673,52.32875608267535],[4.85686112602346,52.32880719565543],[4.856852223836159,52.32880821631468],[4.856848175717108,52.3288339482439],[4.856851030842948,52.32883441043208],[4.856850114913694,52.328858286936416],[4.856850736064192,52.328881208634755],[4.856844493156788,52.32892120336701],[4.856827352035054,52.32903108339126],[4.856826048268513,52.32903952608771],[4.856820081557565,52.32907235877178],[4.85681996481568,52.329077220653204],[4.856819833404494,52.32908208246886],[4.856819751474865,52.329086486128055],[4.85681377335097,52.32913624280481],[4.85681217508694,52.329149690390416],[4.856808759738381,52.32918630938986],[4.856803553744855,52.32918615123584],[4.856794920721764,52.32921130536441],[4.856793827218458,52.32923162189835],[4.856792997687928,52.32923966226866],[4.856790534888349,52.32924565508464],[4.856768927600144,52.32929340931493],[4.856768527155473,52.32931465469965],[4.856763259306527,52.32934546825538],[4.856749606891085,52.32934746525827],[4.856749627964332,52.329348157414],[4.856750784129502,52.32938892230947],[4.856751887774384,52.32942794333432],[4.856753062513864,52.32946715342156],[4.856755853279046,52.329519681697505],[4.856738854272286,52.32953533415262],[4.856727808006236,52.329573374960646],[4.856723175799797,52.329593954249425],[4.85671005342159,52.329652280218355],[4.856693600147593,52.32972540315858],[4.856682204136115,52.329727625978116],[4.856674737080258,52.32975709048373],[4.8566691367307,52.329785026443574],[4.856657640433201,52.32984230812241],[4.856647032986458,52.329895180771615],[4.856640533189319,52.32994191519006],[4.856628810903877,52.32998863517731],[4.856623542340378,52.329990022637986],[4.856622335328185,52.32999772876442],[4.856614381575451,52.330048276479],[4.856607158119177,52.33009418077106],[4.856603113614077,52.33012572781386],[4.856601965017376,52.3301346835071],[4.856680568147214,52.330526517875185],[4.856678549019978,52.330884663916784],[4.856678499477527,52.3308937234031],[4.856484697275569,52.33089150613017],[4.856484523751261,52.330910936988694],[4.856483160308829,52.33097346802769],[4.856482257100391,52.3310416814235],[4.85717276290556,52.331045387710574],[4.857450593646695,52.33104687458976],[4.857439323050557,52.331936338149816],[4.857438410476133,52.33198946995921],[4.85743348136042,52.33227598804897],[4.85744632501928,52.332510348584755],[4.857447074664245,52.33256557300022],[4.857446477128425,52.332588606062984],[4.857439463940512,52.332968650843725],[4.857411277225601,52.333689544037526],[4.857400760253554,52.334339854160575],[4.857477268098536,52.33474741588461],[4.857516853974389,52.33498471817617],[4.857531262786429,52.335097804234806],[4.857565714096932,52.33535109077615],[4.85756878791101,52.335458724420974],[4.857579655407086,52.336031115965675],[4.857614045214583,52.33737221296349],[4.857612937145485,52.33762995995324],[4.857612693541841,52.337665146074485],[4.857613493346182,52.337702655715795],[4.857613025039194,52.337729617],[4.857613261980805,52.33778356279565],[4.857612646951075,52.33781052342291],[4.85761110119808,52.33819845660773],[4.857611339732501,52.33830147575182],[4.857608645286919,52.3386626920417],[4.857608472557707,52.33868947488783],[4.857608416152614,52.33874341037271],[4.857608096698028,52.33877019256176],[4.857607772068381,52.338904432760856],[4.857596170104752,52.33909594661805],[4.857584350722542,52.33918881849154],[4.857575861957589,52.339301388529755],[4.857575176488079,52.33936623237049],[4.857573117437529,52.3401477294504],[4.857573099358061,52.340295623436404],[4.857573283327048,52.340315873747876],[4.857573643157652,52.340336142821855],[4.857574164498748,52.34035640363085],[4.857574832570342,52.34037666509642],[4.857575691498882,52.340396918428304],[4.857576711724167,52.34041718146971],[4.85757793435593,52.34043892840197],[4.857579377405981,52.34046064935726],[4.857581040553011,52.34048237129739],[4.857582909338717,52.340504076182164],[4.857585012895091,52.34052578211747],[4.85758732198356,52.34054747998464],[4.857589836604424,52.34056916978373],[4.857592600884422,52.34059084272433],[4.857595570804665,52.3406124986095],[4.857598746043828,52.34063416440113],[4.857602141704142,52.34065580421559],[4.857605757678715,52.340677427040255],[4.857609593860661,52.34069904186237],[4.857613650250298,52.34072064868186],[4.857617926740743,52.34074225648603],[4.857690569695295,52.341105840953986],[4.857418828850626,52.341127345898045],[4.85530069214337,52.34129497607295],[4.855082579059879,52.341309445557435],[4.854726078072551,52.34131626360524],[4.854433884408193,52.34130428003718],[4.854292999943939,52.34129437030862],[4.853109470069657,52.3411399004574],[4.849602168836086,52.34067321895091],[4.849467036366598,52.34065267007143],[4.848570732910991,52.34044889414624],[4.848440699337915,52.340423019559715],[4.847665597395011,52.34037848596014],[4.847590162192366,52.34036859697591],[4.847563801368902,52.34035948897763],[4.847544197008074,52.34034984555333],[4.847519348874081,52.34033821887275],[4.847499913045653,52.340324369921404],[4.847483941512659,52.34030800220821],[4.847475283559129,52.34029475965026],[4.847462155782866,52.34027139442342],[4.847456981539763,52.340252829002324],[4.847403670857022,52.33952152750171],[4.847403657277002,52.33952143756177],[4.847391574968356,52.33941331317978],[4.847390276877198,52.33940904704274],[4.847388729350994,52.33940477976786],[4.84738690238886,52.33940056514509],[4.847384840118132,52.33939639438782],[4.847382513084274,52.33939227634959],[4.84737995063267,52.33938821116419],[4.847377152763377,52.339384198831574],[4.847374104585242,52.33938025725947],[4.847370820770976,52.33937638651473],[4.847367301211347,52.339372595584685],[4.847363575142428,52.33936889359039],[4.847359613437498,52.33936526242346],[4.847355459677437,52.33936173823382],[4.847351070172147,52.33935829385876],[4.84734647393912,52.33935495639401],[4.847341700214383,52.339351734960694],[4.84733673454385,52.33934861151735],[4.847331955356398,52.339345839448576],[4.847331562036326,52.33934560397148],[4.847326241163816,52.33934273056552],[4.847320757581511,52.339339964270586],[4.847315081725551,52.339337322927314],[4.847309257613842,52.339334806736574],[4.84730557770357,52.33933334291252],[4.847303299700426,52.33933243373985],[4.847297178858566,52.339330185828665],[4.847290938778285,52.33932809016567],[4.847284682058703,52.339326156206795],[4.847284579678111,52.339326128776285],[4.847278130575403,52.33932432875627],[4.847271562562002,52.339322654022524],[4.847260178181384,52.33932005853332],[4.847254733622969,52.339318910216804],[4.84725148362083,52.339318293205494],[4.847249155918131,52.33931785117047],[4.84724348897545,52.339316890582474],[4.847237747030326,52.33931606446898],[4.847231652286377,52.33931529067218],[4.847226023241316,52.33931483357293],[4.847220803390557,52.33931451315753],[4.847215626464723,52.33931428281578],[4.847210243029001,52.339314141409375],[4.847203140927593,52.33931415394058],[4.84719621325815,52.33931430208428],[4.84718929851232,52.33931459409133],[4.847182396908665,52.33931501198706],[4.847175508228495,52.339315573746156],[4.84716867670828,52.33931626159485],[4.847162108092803,52.339317049508715],[4.847154980386507,52.33931796069987],[4.847147659967912,52.33931903279154],[4.847140425617005,52.33932026705588],[4.847133233643773,52.33932163633011],[4.84712596612044,52.33932318501506],[4.847119990881937,52.33932464971945],[4.847114175511491,52.33932624098225],[4.847108490882448,52.339327940695064],[4.847102922212811,52.33932975777818],[4.847097454611254,52.33933171013931],[4.84709208840573,52.33933377081653],[4.847086852722832,52.33933595791838],[4.847082205147749,52.33933804883848],[4.847045576931854,52.33935399677563],[4.846978261895572,52.33938117418198],[4.846921773400446,52.33940493168976],[4.846886213956791,52.33940298076516],[4.846711179512818,52.33939288807603],[4.84670224966216,52.33939237093702],[4.846704314961861,52.339377002248725],[4.846707541176015,52.33935305551608],[4.846708058183951,52.33934915717337],[4.846712852385739,52.3393133267459],[4.846713126108917,52.33931133270502],[4.846717675924927,52.33927749645202],[4.846722484783609,52.33924166609064],[4.846727293634426,52.33920583572882],[4.84673210247737,52.339170005366526],[4.846736911203047,52.3391341839911],[4.846741720030256,52.33909835362787],[4.846746528849596,52.339062523264204],[4.846751337661066,52.339026692900084],[4.846756161137195,52.33899086260252],[4.846760969932919,52.338955032237486],[4.846765778720769,52.33891920187197],[4.846767005413993,52.338910039919995],[4.846770646081323,52.338883380761345],[4.846775542888266,52.338847550796956],[4.846780439577806,52.33881172981937],[4.846785336368728,52.33877589985407],[4.84679023304225,52.33874007887559],[4.846795129707763,52.338704257896616],[4.846800026474654,52.3386684279299],[4.846804923124149,52.33863260695002],[4.846809819875023,52.338596776982335],[4.8468147165085,52.338560956001494],[4.84681961324335,52.338525126032934],[4.84682450986081,52.338489305051155],[4.846829406470263,52.33845348406892],[4.846834317853422,52.33841765416593],[4.846839214446843,52.33838183318278],[4.846844111141634,52.33834600321182],[4.846848380154671,52.338314727188504],[4.846849007719038,52.33831018222772],[4.846853977649881,52.33827436157818],[4.846854814327878,52.338268307621895],[4.846858546750212,52.33824133430349],[4.84685398607779,52.33824111574711],[4.84683767936364,52.33824031327478],[4.846795475299311,52.338238251087596],[4.846788099191074,52.33823788485445],[4.846736979310164,52.338235377478824],[4.84667846865642,52.33823250377412],[4.846619957900936,52.33822963902782],[4.84656147660709,52.33822676539934],[4.84650296597638,52.3382238916079],[4.846444455243892,52.338221026774804],[4.846428984535788,52.33822025502973],[4.846430494914556,52.33819382881308],[4.846430902645941,52.33818685614375],[4.846434981204362,52.33815798799348],[4.846440068720221,52.338122176884355],[4.846441706708839,52.33811057213208],[4.846444082666943,52.33809379377938],[4.846445141555537,52.33808636570766],[4.846450214492023,52.3380505455432],[4.846455287420214,52.33801472537826],[4.846460360230658,52.33797891420012],[4.846465447814444,52.337943094101284],[4.846469846805483,52.33791200742614],[4.846470491154506,52.33790729177538],[4.846475476126061,52.33787146221897],[4.846480431635722,52.33783564151526],[4.846485401809415,52.337799820878125],[4.846490371974979,52.33776400024053],[4.846495327569754,52.33772817054813],[4.846500297609631,52.337692358896916],[4.84650525307874,52.33765653819084],[4.846510223321264,52.33762070856408],[4.846511590287186,52.337610873168245],[4.846515061397668,52.337584887320745],[4.846519855559451,52.3375490568886],[4.846524649713388,52.33751322645595],[4.846529443859479,52.337477396022834],[4.846534237997729,52.33744156558928],[4.846539032128131,52.33740573515526],[4.846543826250689,52.33736990472082],[4.846548620365402,52.33733407428588],[4.846553414472269,52.337298243850505],[4.846557741281517,52.33726584461978],[4.846558193899339,52.3372624133476],[4.846562987990529,52.33722658291131],[4.846567782073876,52.33719075247455],[4.846572576149375,52.337154922037314],[4.846577370217034,52.33711909159963],[4.846582164276844,52.33708326116153],[4.846583116912716,52.33707612021146],[4.846586958328811,52.33704743072292],[4.846590817803915,52.337018462694765],[4.846591488388667,52.33701159009004],[4.84659168830567,52.3370096316626],[4.846592293299931,52.33700212062433],[4.846592780809633,52.336994618037096],[4.846593151053679,52.33698710592635],[4.846593418485145,52.33697960233365],[4.846593481084734,52.33697566596251],[4.84659355397921,52.33697208915043],[4.846593572098375,52.33696457543097],[4.846593706388697,52.33695716110805],[4.846593694188351,52.336950932505665],[4.84659354994136,52.33694470330005],[4.846593361250208,52.33693971420802],[4.846593302991474,52.336938473625196],[4.846592938557466,52.33693225240146],[4.846592442076965,52.336926030574446],[4.846591842784286,52.33691981726552],[4.846591126117057,52.336913603420356],[4.846590560782158,52.33690942150979],[4.846590277294065,52.336907397959266],[4.846589733752701,52.33690383630653],[4.846589325659035,52.336901201016225],[4.846588256649607,52.33689500353694],[4.846586482289464,52.336887688347765],[4.846584994590912,52.3368821360774],[4.846583403861663,52.33687661029968],[4.846581681086382,52.33687108391867],[4.846580775574003,52.33686832951438],[4.84657985538991,52.33686557504304],[4.84657791210046,52.336860083605735],[4.846575851218078,52.336854609606746],[4.846573687414619,52.3368491531131],[4.846571391455918,52.33684370500346],[4.846568992466791,52.33683828338642],[4.846566733192918,52.336833437626986],[4.846566475884886,52.33683287920772],[4.84656385638206,52.33682749253431],[4.846561119177106,52.33682213228652],[4.846558264379488,52.33681678947697],[4.846552189851558,52.336805949397714],[4.846548998698933,52.336800515173195],[4.846548279553945,52.33679932549764],[4.846545689844387,52.33679510737419],[4.846542278069188,52.33678971708043],[4.846538763263936,52.33678435327926],[4.846535130647434,52.33677902489089],[4.846531380329151,52.33677372292802],[4.846527541652703,52.33676844752476],[4.846525794600727,52.336766120689404],[4.846523585274538,52.33676319854693],[4.846519525757039,52.33675798504896],[4.846516605503152,52.33675440354843],[4.846512209083424,52.33674914357182],[4.846507709633932,52.33674391008766],[4.84650309237348,52.33673871201621],[4.846498951402984,52.336734163242674],[4.84649838664566,52.33673354949158],[4.846493577778716,52.33672842244666],[4.84648866577267,52.33672333088145],[4.846483650627541,52.33671827479594],[4.846478532343363,52.33671325419018],[4.846473310810704,52.3367082780514],[4.846468218370029,52.33670354517289],[4.846468000810801,52.33670333745931],[4.846462587562457,52.33669844133417],[4.846457085846904,52.3366935807557],[4.846451480882941,52.33668876464423],[4.846445787451807,52.33668398407937],[4.84643416485995,52.336674502761824],[4.846433990550116,52.3366743581604],[4.846428235918175,52.33666978403448],[4.846422218290372,52.3366651188283],[4.846416112195464,52.336660489168814],[4.846409902742796,52.3366559129634],[4.846403619385335,52.336651381358955],[4.846397247451341,52.33664689428837],[4.846396767224223,52.33664656853274],[4.846390772269067,52.33664245168453],[4.846384223072558,52.33663806266891],[4.846377585299535,52.33663371818712],[4.84637085884053,52.3366294272264],[4.84636404369555,52.33662518978681],[4.846356397845583,52.336620490172145],[4.846354650263621,52.336619412636274],[4.846314521049646,52.336595303687496],[4.846272614848296,52.33657012604121],[4.846230708584987,52.33654495736728],[4.846188817150416,52.336519779758206],[4.846162088726675,52.33650372218022],[4.846146911091668,52.336494602067184],[4.846105019533109,52.33646944240294],[4.846063113569418,52.33644426468212],[4.846021222324941,52.336419087013454],[4.845979316346773,52.33639391825012],[4.845937425197341,52.33636874055167],[4.845895519423784,52.336343562771255],[4.845853628369406,52.336318385043],[4.845811722471761,52.33629322520735],[4.84576983151242,52.33626804744936],[4.845727925928988,52.33624286960928],[4.845686034955097,52.33621770080877],[4.845644129466725,52.33619252293893],[4.845602253369077,52.33616734518847],[4.845560347866138,52.336142176276134],[4.845518457082296,52.33611700741606],[4.845476551784041,52.336091829486584],[4.845434661095227,52.33606666059672],[4.845392755892032,52.33604148263746],[4.84535085073638,52.336016304663296],[4.845308960190115,52.33599113572872],[4.845267055129521,52.335965957724774],[4.845225164678285,52.3359407887604],[4.84521394922846,52.335934050465234],[4.845183259603048,52.33591561971392],[4.845141369356543,52.33589044173246],[4.845138689330138,52.33588882962648],[4.845122684806597,52.33588017295754],[4.845108326098566,52.335872512484606],[4.845097304783081,52.335866700811415],[4.845093893489424,52.335864896610396],[4.845079386759711,52.33585734330945],[4.845064791347647,52.335849843527235],[4.845052411411412,52.3358435492716],[4.845050136596192,52.3358423973981],[4.845035393162362,52.33583500478767],[4.845006792599825,52.335820933658844],[4.845005698713957,52.33582039836618],[4.844990747809076,52.33581317556777],[4.844975722893228,52.33580600635513],[4.844960623856638,52.335798899715535],[4.844960492581685,52.33579883619937],[4.844945450809037,52.33579184666169],[4.844930589049934,52.335784534386015],[4.844914088811846,52.3357768281241],[4.844867388804977,52.33575505235564],[4.844867009542591,52.3357548708613],[4.844824073737508,52.33573483798596],[4.844820644280722,52.33573332130346],[4.844814850894321,52.335730742212355],[4.844805687397304,52.33572659278323],[4.844796598027701,52.33572238077851],[4.844787582785526,52.33571810619823],[4.844778641451221,52.335713787017035],[4.844774003600216,52.33571150083055],[4.844769759572934,52.33570940519306],[4.844760966383763,52.33570496984812],[4.844752247322073,52.33570047192769],[4.844743602168289,52.335695929406434],[4.844735031142009,52.335691324309686],[4.84472933238249,52.33568820637981],[4.844726534023645,52.335686674612084],[4.844718125704232,52.33568196240634],[4.844709791292743,52.3356772055998],[4.84470153100879,52.33567238621789],[4.844693359304195,52.33566752230244],[4.844686718108384,52.335663483293615],[4.84468527628876,52.33566260486615],[4.84467726718126,52.3356576428292],[4.844668633463678,52.335652165623046],[4.844646247159829,52.335637466787226],[4.844606219915161,52.335611164691514],[4.844566207279486,52.3355848716368],[4.844526180019813,52.33555857850115],[4.844486152807555,52.335532285351874],[4.844446140314074,52.3355059922563],[4.844406113196623,52.33547969907983],[4.844366100797935,52.33545340595702],[4.844326073775295,52.33542711275333],[4.844286046800066,52.335400819536005],[4.844246034543569,52.3353745263724],[4.844214566149546,52.33535385382819],[4.844205874742076,52.335348304420386],[4.844165286442583,52.33532233214656],[4.844124698080662,52.335296368846045],[4.844084109876142,52.33527039654423],[4.844043521609177,52.33524443321574],[4.844002933389684,52.33521846987326],[4.843962345327616,52.335192497529455],[4.843921757203079,52.33516653415898],[4.843881169126014,52.335140570774506],[4.843872812931289,52.3351352116248],[4.843493394386834,52.33489905787341],[4.843452554753856,52.334873308890444],[4.843412649796468,52.334846719334514],[4.843373654387555,52.334820142932806],[4.843335505737135,52.334792716568046],[4.843323510591213,52.33478379945719],[4.843323437785961,52.33478375418348],[4.843323379651841,52.334783708977284],[4.843312941472113,52.33477704597348],[4.84328298145805,52.33475787208544],[4.843274287913241,52.334750120585035],[4.843241022604798,52.334720505635474],[4.843237902336304,52.33471771405899],[4.843218867383459,52.3347025899509],[4.843182936026336,52.33467502992404],[4.843169127426934,52.3346644417153],[4.843118239688041,52.3346265757905],[4.843093322437293,52.33460897094292],[4.84305487730605,52.334581821744216],[4.843016417660902,52.334554663478094],[4.843015632252777,52.33455410262198],[4.842994460340972,52.3345397685641],[4.84297698316502,52.33452803998414],[4.842974902168667,52.33452664629064],[4.842955255430928,52.334513568545624],[4.842937179406959,52.33450162149791],[4.842935534688647,52.33450054438367],[4.842915725380953,52.33448756475008],[4.84289700638683,52.334475408018996],[4.842895827397696,52.33447463863203],[4.842856567242547,52.33444936407029],[4.842816128255892,52.334423311120396],[4.842793958071288,52.33440903534786],[4.84273881928222,52.33437569752897],[4.842684142112486,52.33434300893046],[4.842684054747834,52.334342954601524],[4.842598339668967,52.33429170711019],[4.842572185291806,52.33427690964082],[4.842564565952015,52.33427250649602],[4.842557106671473,52.33426821194115],[4.842543265166979,52.33426032883672],[4.84253861699078,52.334257709964604],[4.842538383798828,52.33425758306192],[4.842520311537034,52.33424773911389],[4.842488187782577,52.33423158395203],[4.842455473685841,52.334215713673515],[4.842421854541635,52.33420066609747],[4.842387747861296,52.33418589488912],[4.842352853168689,52.33417197388428],[4.842315086416343,52.334157761021594],[4.842312573715406,52.33415687763341],[4.842311828696668,52.334156613556225],[4.842295647211656,52.33415171258758],[4.84228317471756,52.334148248771086],[4.84228011764985,52.33414748870463],[4.842264115092393,52.33414355025129],[4.842257677095327,52.33414211850403],[4.842251194313879,52.334140749464815],[4.842244681308637,52.334139452188495],[4.84223813807958,52.33413822667512],[4.842226785548874,52.33413675431651],[4.842224397499041,52.33413647368379],[4.842219885034693,52.334135949583654],[4.842212954406828,52.33413520762639],[4.84220600789495,52.33413456446147],[4.842199046050533,52.33413397515233],[4.842192053982032,52.33413345760609],[4.842178067198113,52.334132638207585],[4.842171057811716,52.33413233628779],[4.842166188834108,52.334132170055824],[4.842156494781426,52.334131846781425],[4.842144204308569,52.33413148458292],[4.842131927624286,52.33413119434915],[4.842119620715782,52.33413097587732],[4.842107547659389,52.33413083038395],[4.842107327595727,52.33413082937022],[4.842095033593156,52.33413075476025],[4.842048857506878,52.334131090287514],[4.842034169718476,52.33413120237458],[4.84199575619836,52.33413143882765],[4.841609414267293,52.33413428682693],[4.841573646586561,52.33413412190316],[4.841537783056943,52.33413339928235],[4.841501930020872,52.33413182285705],[4.841466072588599,52.334129410534295],[4.841462408395857,52.33412910602494],[4.84146215921131,52.33412908690004],[4.841459989242239,52.33412896903828],[4.841448818072996,52.334128261405226],[4.841437662569151,52.3341274729531],[4.84142652250984,52.33412662165649],[4.841415398116037,52.33412568954075],[4.84140393761742,52.334124648019966],[4.841400903943115,52.33412437338041],[4.841391187957488,52.33412344775883],[4.841381487526933,52.334122450305706],[4.8413718026515,52.33412138102106],[4.84136214800214,52.334120239972556],[4.841352508907993,52.33411902709251],[4.841347059837919,52.334118309894464],[4.841346225032528,52.33411818920196],[4.84133730624982,52.33411686280198],[4.841327582998497,52.33411533495833],[4.84131787519213,52.33411374427047],[4.841308212172565,52.33411209087376],[4.841298579489909,52.33411035672591],[4.841289650237876,52.334108688737274],[4.841288976923233,52.33410855980159],[4.841279419253964,52.33410669118109],[4.841270652709208,52.334104916087924],[4.841257043909164,52.33410199517677],[4.841243480007597,52.33409900256868],[4.84123418918097,52.334096910480426],[4.841229946223162,52.33409594718331],[4.841216471897704,52.33409282915605],[4.841203027799983,52.334089639364244],[4.841189613930057,52.33408637780792],[4.841179521403487,52.33408385958896],[4.84117625951926,52.33408305360977],[4.841161575142958,52.33407930983354],[4.841141243167433,52.33407429068753],[4.841125183049088,52.33407027092367],[4.841120955982841,52.33406920883003],[4.84111655352928,52.334068092],[4.84111605615589,52.334067972863046],[4.841092356297516,52.334062416872776],[4.841070350419836,52.33405750683066],[4.841015189204001,52.33404521754931],[4.840976854421334,52.33403667294375],[4.840961042663817,52.334031548803324],[4.840950608564652,52.33402817514592],[4.840946353380999,52.33402701405023],[4.840940869713731,52.33402553270982],[4.840936892282141,52.33402445378636],[4.840899557653366,52.3340133252834],[4.840863708228602,52.33400192500383],[4.839753773736091,52.33364060809854],[4.839751274899917,52.33363979662226],[4.839715866970449,52.33362833512],[4.839663990077944,52.333611530543365],[4.839612113224772,52.33359472594395],[4.839560236410938,52.33357792132178],[4.839508330184156,52.33356112552832],[4.839456453448992,52.33354432086069],[4.839409939837513,52.33352924868292],[4.83940982291533,52.33352921219037],[4.839409063032004,52.333528966001595],[4.839321092816823,52.33350158628807],[4.839230071096306,52.333474201365014],[4.839210189941359,52.333468357093835],[4.839167957286105,52.33345592908723],[4.839075663537362,52.33342939199529],[4.838982934242214,52.33340367969172],[4.838889684590507,52.33337853113597],[4.838540124000562,52.33328571145851],[4.83849700748415,52.33327478906509],[4.838442775416165,52.33326105584748],[4.838388528600122,52.33324733152429],[4.838345967864242,52.33323655545826],[4.838334341499882,52.33323352656273],[4.838303250549309,52.33322539217455],[4.838280408166357,52.33321937222871],[4.838260578156497,52.333214157181146],[4.838226519990144,52.333205128201314],[4.83821796524547,52.333202859533536],[4.838191029230645,52.333195679125275],[4.838172721316656,52.333190767722904],[4.838148183959238,52.3331841916302],[4.838118997253389,52.33317630870018],[4.838105368940267,52.33317263235737],[4.838065333130041,52.33316175106513],[4.838062613403937,52.33316101043027],[4.838011743506339,52.333147103873166],[4.837989123262764,52.333140923121135],[4.837958183926174,52.33313240286934],[4.837951721098356,52.33313062923428],[4.837914363741215,52.333120272628896],[4.837904728631919,52.333117576495845],[4.837877051302642,52.333109844317654],[4.837851363064535,52.333102615697385],[4.837839783671605,52.33309935328784],[4.837805923512727,52.33308974988535],[4.837798116676723,52.333087511623035],[4.837773088417022,52.33308030402568],[4.837745034592564,52.33307217460432],[4.837740298014195,52.33307080443743],[4.837707567197303,52.333061233214266],[4.837692101252461,52.333056676471756],[4.837674881295921,52.33305159028805],[4.837653437127212,52.33304522618918],[4.837639317324183,52.33304096330173],[4.837633149045542,52.33303910113901],[4.837632900536146,52.333039028082304],[4.837612724707911,52.333033316989436],[4.837456823927676,52.33298849855697],[4.837301740802269,52.332942838862856],[4.837147002431164,52.33289661433426],[4.837047535044842,52.332866662882935],[4.835972563960333,52.33253950065584],[4.835970401223758,52.332538807506424],[4.835958900935071,52.33253510487699],[4.835935344897668,52.3325275352462],[4.835898087311172,52.33251512924225],[4.835893572578549,52.33251362521729],[4.83589183383453,52.332513050883556],[4.835891074099749,52.33251279568487],[4.835840374596253,52.332495914014174],[4.835811952342218,52.332486793754484],[4.835778596793196,52.3324767966551],[4.835745028619979,52.332467382763404],[4.835710863267245,52.33245880194569],[4.835676104193629,52.33245077559536],[4.835620562144071,52.33243871569137],[4.835488991928736,52.332410293987614],[4.835357059296385,52.33238271530144],[4.835274567117498,52.33236588283937],[4.835224665011046,52.33235570054633],[4.835091922967076,52.33232952887461],[4.834995851740186,52.332311015048795],[4.834990114395418,52.33230990973508],[4.834958939537811,52.33230390418348],[4.83482549444091,52.332278843419566],[4.834754148115746,52.332265918398534],[4.834752947724331,52.332265706074224],[4.834745716147346,52.332264423003636],[4.83474393006292,52.33226411806642],[4.834687465548188,52.33225430935753],[4.834631000834842,52.3322445185963],[4.834574550816762,52.332234727876624],[4.83451807148314,52.33222493699297],[4.834461621626913,52.332215137232154],[4.834419415863972,52.33220782171305],[4.834396267269791,52.332204091475695],[4.834378207146875,52.332201733180405],[4.834375907608491,52.332201425838726],[4.834375541411458,52.33220137918869],[4.834372538707688,52.3322009876713],[4.83436730959323,52.332200307129284],[4.83433845876606,52.33219736812995],[4.834182538592485,52.33218287915067],[4.834026849210618,52.33216753720169],[4.833871390293237,52.332151369245864],[4.833741136514829,52.33213754796375],[4.833701236739942,52.332132391062586],[4.833664222529011,52.33212760715969],[4.83365348033977,52.3321266671117],[4.8336516484653,52.332126505748846],[4.833630848995865,52.33212499735444],[4.833620440638168,52.33212434647541],[4.833610016714258,52.33212376742523],[4.833599577224078,52.33212326020386],[4.833595119490758,52.33212307756672],[4.833589122167584,52.33212282481127],[4.833578666214953,52.33212246131606],[4.833568209366134,52.33212216971831],[4.833557751621078,52.33212195001804],[4.833547278309502,52.33212180214651],[4.833536818771819,52.33212172624108],[4.833536481356535,52.33212172466224],[4.833526343667515,52.33212172216446],[4.833515867666767,52.33212178998523],[4.83350540543976,52.332121929772086],[4.833494942316209,52.33212214145635],[4.833484478296064,52.33212242503807],[4.833477829432089,52.33212265457021],[4.833474028049502,52.33212278058586],[4.833463576906249,52.3321232080311],[4.833419757891308,52.33212763168392],[4.833377246087591,52.33213193560956],[4.833361978271971,52.33213390438147],[4.833344594466499,52.33213614186921],[4.833307188600978,52.3321462937764],[4.833266279093601,52.33215739995398],[4.833253214138837,52.332160367684665],[4.833235808791943,52.33216433071686],[4.833198553409957,52.33217300030418],[4.8331983180133,52.33217305312892],[4.833158221839899,52.332182464379535],[4.833143536751582,52.33218593681765],[4.833117933366355,52.332192000545575],[4.833088827239426,52.3321989466466],[4.833077688101298,52.33220159981503],[4.833037486044585,52.33221126218787],[4.833034175366938,52.332212037610596],[4.832979806235222,52.33222480631227],[4.83297937956379,52.332224903179764],[4.832924626730182,52.332237849815336],[4.832923714481409,52.332238061249676],[4.832869902644328,52.33225084149936],[4.832867665919688,52.332251379277615],[4.832815236310043,52.33226390533133],[4.832811645879584,52.33226476032742],[4.832760613169039,52.3322770322552],[4.832755683589232,52.332278213524],[4.832706018550835,52.33229022220227],[4.832699764490347,52.33229172981124],[4.832651467125517,52.33230347524144],[4.832643888358266,52.33230532716393],[4.832596958892888,52.33231679137269],[4.832588040971407,52.33231896956408],[4.832542479182459,52.332330170527335],[4.832532251333451,52.332332684111215],[4.832488072004923,52.33234361291174],[4.83247650477388,52.332346470736624],[4.832433678678895,52.33235711825087],[4.832420801404739,52.332360320453105],[4.832379343215081,52.33237068675111],[4.832365141113541,52.33237424224795],[4.832352282542329,52.33237712096895],[4.832342792005418,52.33237933240804],[4.832333344692432,52.332381606963814],[4.832324705256428,52.33238380441696],[4.832314579513497,52.33238636339994],[4.832305276317792,52.33238884534918],[4.832274502713479,52.33239771581171],[4.83227139346233,52.33239880673144],[4.832257954494282,52.33240351623533],[4.832241323035456,52.33241010719436],[4.832230554396722,52.332414802255876],[4.832222569117505,52.33241865652845],[4.832215941706296,52.3324218610586],[4.83220192083493,52.33242969558789],[4.832188642529245,52.33243798298954],[4.832180531859795,52.33244365221065],[4.832176136129911,52.33244672340148],[4.832160724526704,52.33245900936069],[4.832147798605877,52.33247079467242],[4.832145985346248,52.33247266462074],[4.832137736137419,52.3324812003033],[4.832128579294056,52.33249192475535],[4.832120431330421,52.332502923574104],[4.832119324155067,52.33250464404141],[4.832112680090074,52.332515047730745],[4.832106267443281,52.33252689055643],[4.832101496638119,52.33253883995014],[4.832100133277624,52.33254227588891],[4.832095512243651,52.33255867495542],[4.83209299813285,52.33256966425122],[4.832092206419135,52.33257431622724],[4.832090135966147,52.33258619739842],[4.832088809142416,52.33259727315455],[4.832087064085251,52.33261011754887],[4.83208694993317,52.332611033770846],[4.832085370500221,52.332621191584245],[4.832083908429698,52.33263134994819],[4.83208257827974,52.332641517918866],[4.832082068222271,52.3326459375328],[4.832080240502191,52.33266187334877],[4.832079247657501,52.332672051889624],[4.832078406684507,52.33268181770325],[4.832078372063297,52.33268223996832],[4.832076972963707,52.33270261777749],[4.832076284973467,52.33271775003657],[4.832076043091714,52.33272301576357],[4.832075582672664,52.332743415952066],[4.832075600961576,52.33275368911465],[4.832075606489991,52.33276380942444],[4.832076084978774,52.33278421401763],[4.832076339981878,52.33278963486863],[4.832077033147139,52.33280460283865],[4.832078450883385,52.33282498487471],[4.832078502374878,52.33282556033664],[4.832079335741359,52.33283518121226],[4.832078243918808,52.332861492422666],[4.83207676769976,52.33289742778305],[4.832075306036357,52.33293337219931],[4.832073829924671,52.332969298571896],[4.832072353585791,52.33300524291878],[4.832070862686225,52.333041178209236],[4.832069386342331,52.33307712255558],[4.832067910108287,52.33311305791432],[4.832066433759391,52.33314900226013],[4.832064972078573,52.333184946674436],[4.832063481278805,52.33322087297625],[4.832062426193062,52.333246591160965],[4.832061902340551,52.333256807852116],[4.832060073886844,52.33329275054492],[4.832058245542421,52.33332868425013],[4.832056417194929,52.33336461795501],[4.832054588844366,52.33340055165965],[4.832052760490736,52.333436485364004],[4.83205091757572,52.33347241001194],[4.832049103886625,52.33350834378452],[4.832047260853091,52.33354427741918],[4.832045417816464,52.33358021105355],[4.832043604118184,52.33361614482529],[4.832041761075398,52.333652078459075],[4.832039947483361,52.333688003242976],[4.832038104434412,52.333723936876176],[4.832036276053135,52.333759870577936],[4.832034447668792,52.333795804279426],[4.832032619281377,52.333831737980596],[4.832032385927374,52.33383632067233],[4.832031824161025,52.3338530893028],[4.832030922928128,52.333867672301],[4.832030778257681,52.33386985566171],[4.832030086703784,52.33387822906228],[4.832029277783139,52.33388660191215],[4.832028351608047,52.33389496522407],[4.832027308066076,52.33390332798528],[4.832027276027731,52.333903543542576],[4.832026147157158,52.333911690195805],[4.832024868993595,52.33392004286835],[4.83202412294605,52.333924560239794],[4.832022842260855,52.33393428803644],[4.832022018701248,52.33393913759336],[4.832021971992026,52.333939353081824],[4.832021092445657,52.33394398666848],[4.832018873612522,52.3339536471486],[4.832015615010263,52.33396432736125],[4.832011143333813,52.333974633381594],[4.832010810799461,52.333975413761415],[4.832007037064136,52.33398270314994],[4.832002838884403,52.33398990965648],[4.831995693175216,52.334000517703096],[4.83198964264425,52.33400802110347],[4.83198250417076,52.33401687655896],[4.83197621625478,52.33402341714846],[4.831959883115273,52.33403895234515],[4.831928122176699,52.334069191113294],[4.831902434412775,52.3340936342687],[4.831897164721508,52.33409970327805],[4.831869595696802,52.334131444692424],[4.831842041303513,52.33416318616893],[4.831814486983165,52.33419491865145],[4.831786932398536,52.33422666910193],[4.83175937788685,52.33425841055845],[4.831731808664758,52.33429015193939],[4.831704254186559,52.334321884395266],[4.831677816181855,52.3343523278407],[4.831677589033982,52.33435289300672],[4.831677558567704,52.33435298274183],[4.831677222314263,52.33435405970111],[4.831676531371652,52.33435534171503],[4.831676305910283,52.33435577207175],[4.831675764600593,52.334356821104855],[4.831675509572406,52.33435726929836],[4.831674533022763,52.33435909822817],[4.83112142303187,52.3352047253098],[4.831029303834949,52.335337707493544],[4.830820395568199,52.335287849665654],[4.830818841602997,52.335290089312686],[4.830816091512114,52.33528942925923],[4.83081410207513,52.33528895253851],[4.830750072544305,52.33527375864482],[4.830751209072049,52.335272047316714],[4.830751283892512,52.33527193082698],[4.830753140070557,52.33526899155229],[4.830745007175124,52.335267011938875],[4.830742198739599,52.33526632464586],[4.83068766770913,52.335253026875385],[4.830633136598759,52.335239738067074],[4.830578590737207,52.33522645815197],[4.830524074363533,52.33521316936248],[4.830485297177686,52.33520371150506],[4.8304827398302,52.33520757322171],[4.830473349625859,52.33520523714933],[4.830462365215256,52.33520249811162],[4.830444718805684,52.335229081932724],[4.830427760325041,52.33525462640146],[4.830423426513843,52.335252727556224],[4.830417924298999,52.33525040078577],[4.830416552075112,52.33524984607224],[4.830412347939588,52.33524813658089],[4.830406712219551,52.335245926023276],[4.830401455473384,52.33524391498065],[4.830391437424153,52.33524016486046],[4.830381374686655,52.335236468455996],[4.830371237805659,52.3352328346165],[4.830366431814096,52.33523114925473],[4.83036105612364,52.33522926347999],[4.830350814969318,52.33522575497743],[4.830340514342665,52.33522230910882],[4.830330154243646,52.33521892587413],[4.830319734672236,52.335215605273326],[4.830314794727155,52.33521407207192],[4.830309270186934,52.33521235636275],[4.83029876101313,52.33520916116781],[4.830288192254116,52.335206037594034],[4.830277564022579,52.3352029766541],[4.830266890989719,52.335199978417066],[4.830261831761971,52.3351985974449],[4.83025617304278,52.335197051870175],[4.830245410294448,52.33519418802613],[4.830234602744683,52.335191386884944],[4.830223750280715,52.33518865743389],[4.830212838343999,52.33518599061659],[4.830207674504379,52.335184761942514],[4.830201896276971,52.33518338657117],[4.830190909182877,52.335180863203085],[4.830179892071123,52.33517839361964],[4.830159305229668,52.335173865714836],[4.830152574615378,52.33517238699169],[4.830136377309623,52.33516882346767],[4.83009733989719,52.335160236075694],[4.830042119880549,52.33514808520292],[4.829986885335782,52.33513592524803],[4.829953744465587,52.335128641844975],[4.82993956640561,52.33512551921819],[4.829931650595781,52.33512378324201],[4.829876416111683,52.3351116232356],[4.829834408554575,52.33510238363218],[4.829821181545117,52.33509947219064],[4.829810939340558,52.33509722193036],[4.82979164014314,52.335092978649],[4.829765947008875,52.33508732111999],[4.829710712390121,52.33507517901082],[4.829655492585706,52.335063027957695],[4.829600258253276,52.335050867822375],[4.829559333544749,52.335041866906735],[4.829554190943314,52.335050632755845],[4.829534354869486,52.33508446827998],[4.829524369276975,52.33510150705787],[4.829495336881751,52.33510004901807],[4.82943684697084,52.33509710394983],[4.829378357067798,52.335094158852684],[4.829319852388508,52.33509122264475],[4.829305790835364,52.33509050922589],[4.829305359763222,52.33511781217968],[4.829305344067607,52.3351190614122],[4.829289431991125,52.33515235815148],[4.82927293258064,52.33518685648664],[4.829256433031489,52.33522136380649],[4.829239933569525,52.33525586213649],[4.829228376358041,52.33528002980463],[4.829210929051359,52.335281367607195],[4.829152698073859,52.335285820593036],[4.829094466971818,52.33529028253743],[4.829036235858182,52.33529474445318],[4.828977990061674,52.33529920627105],[4.828919773709107,52.335303659211334],[4.828861542560682,52.33530812104101],[4.828803311287639,52.33531259182931],[4.828745065557762,52.33531704454509],[4.828686834374539,52.33532150628874],[4.828628603179719,52.33532596800369],[4.828570371973299,52.33533042968992],[4.828512126197078,52.33533488229096],[4.828453894967473,52.33533934391985],[4.828395678397552,52.33534380558931],[4.828337447257864,52.335348258173546],[4.828279201322189,52.33535271964712],[4.828237227793168,52.33535593675124],[4.828221536306557,52.33535881961883],[4.828193065031427,52.33536405983407],[4.828176526262792,52.335365482666674],[4.828164393859102,52.33536653085052],[4.828129259846786,52.33536956452121],[4.828106053370704,52.33536917625322],[4.828047376917644,52.33536820693731],[4.82798872980984,52.335367237730935],[4.827930053475321,52.335366259369565],[4.827871391588372,52.33536529902294],[4.827812729817293,52.33536432966],[4.827754053490827,52.33536335121132],[4.827695391725104,52.33536238179017],[4.827636715290765,52.33536141227058],[4.827578068314943,52.33536043387337],[4.827519406557249,52.335359464365],[4.82746073013094,52.33535849475812],[4.827424394791289,52.33535789145874],[4.827411324037089,52.33535539392641],[4.827403038897692,52.3353538627535],[4.827399247645919,52.33535316174354],[4.827387155678225,52.3353510013883],[4.827375018791381,52.33534891272178],[4.827362851656622,52.335346895813466],[4.827350654387206,52.33534494167605],[4.8273464810038,52.33534429278334],[4.82733842686977,52.335343059296754],[4.827326212211541,52.33534132078218],[4.827288874891464,52.33533756696423],[4.827230963923924,52.335331747443874],[4.827214991499278,52.33533014392774],[4.827172929707237,52.3353263946783],[4.827114864008224,52.33532121250373],[4.827056768866954,52.33531603914906],[4.827041189857628,52.335314653179424],[4.827017530040118,52.335312986281615],[4.826998531266408,52.33531169197059],[4.826992418222166,52.33531127655358],[4.826967290714369,52.33530964763631],[4.82694214762999,52.33530809054246],[4.826940153698123,52.335307973247915],[4.826916988968908,52.33530660527208],[4.826881609126763,52.33530586252498],[4.82682295074692,52.3353046320402],[4.826764292370438,52.33530340152632],[4.826705633883874,52.335302179970626],[4.826646975514106,52.33530094939867],[4.826588331818966,52.33529971886703],[4.826529688127189,52.335298488306414],[4.826471029654015,52.3352972666344],[4.826412371297684,52.33529603594608],[4.826353727502464,52.33529481428549],[4.826295069152846,52.335293583539006],[4.826236410806592,52.33529235276343],[4.826177767134964,52.33529112202832],[4.826119123466696,52.33528989126417],[4.826060465016955,52.33528866938863],[4.826001806684142,52.33528743849673],[4.825943148354691,52.33528620757576],[4.825884504699863,52.33528497669531],[4.82582584637714,52.33528374571621],[4.825817808117913,52.33528358175162],[4.82579462991495,52.335283283042315],[4.825772800331782,52.33528308060535],[4.825767181353317,52.33528304495746],[4.825750984624618,52.33528294114486],[4.825709977547675,52.33528281846993],[4.825708495523268,52.33528282941316],[4.825693250949169,52.3352828469524],[4.825676538226339,52.33528293841306],[4.825659824480535,52.3352831107569],[4.825649816295392,52.33528325200609],[4.825643109938992,52.33528334600931],[4.825632763064515,52.33528358451575],[4.825618805127987,52.33528395867645],[4.825604846168221,52.33528441372106],[4.825591221009672,52.33528515795845],[4.825532770846298,52.33528834982867],[4.825474306003368,52.33529154160037],[4.8254158558234,52.335294733412795],[4.82535740563514,52.335297925196336],[4.825298940881043,52.335301107894026],[4.825268930184608,52.33530275395673],[4.825240490562457,52.33530430860706],[4.825182025678041,52.33530750023424],[4.825123575570355,52.335310682914894],[4.825065125340624,52.33531387455396],[4.825006674988804,52.33531707515139],[4.824948210184999,52.33532025767566],[4.824889759930375,52.335323449228035],[4.824831295110013,52.335326631694485],[4.824772859396246,52.33532983224609],[4.824714394445466,52.335333023642036],[4.824655929600246,52.33533620602179],[4.824597479304156,52.335339397429685],[4.824539014328496,52.33534258873888],[4.824515419821566,52.335343878643485],[4.824487583036442,52.335345328125754],[4.824480550711288,52.335345672171904],[4.824457412946962,52.33534681144404],[4.824427214879816,52.33534818676774],[4.824422032729441,52.33534841378032],[4.824397003164762,52.33534948112846],[4.82436677757413,52.3353507125007],[4.824363489385098,52.33535084066552],[4.82433655289325,52.33535187196701],[4.824306343793546,52.335352959597195],[4.824304905324631,52.33535300668128],[4.824258903660324,52.335354513502836],[4.824246296017948,52.33535484898649],[4.824198756942179,52.335356105799235],[4.824187661238422,52.335356385555585],[4.824138611131557,52.33535762616684],[4.824129027252716,52.3353578591847],[4.824078451557464,52.33535907453584],[4.824070394175059,52.33535926088649],[4.824025689724714,52.33536028844859],[4.824011746536518,52.33536065350214],[4.823996335650041,52.335361056507494],[4.823957176484553,52.33536214638834],[4.823953110715627,52.33536227084046],[4.823918045747675,52.33536330829405],[4.823894487509597,52.33536404999053],[4.823878899539396,52.33536453302798],[4.823839766974058,52.335365838704256],[4.823835906488406,52.33536597311755],[4.823800648165482,52.335367216335634],[4.823777322155145,52.33536815684653],[4.823758972673883,52.33536888736603],[4.823718763737299,52.33537061030454],[4.823713596366136,52.335370828368646],[4.823681181413707,52.335372309786834],[4.823660246133209,52.33537331558689],[4.82364878021792,52.33537386316419],[4.823616378221403,52.33537547944362],[4.823601755012828,52.335376245662],[4.823583989867149,52.33537717666953],[4.82354345559258,52.33538025515968],[4.823485194813199,52.33538468724027],[4.82342696347898,52.33538911044473],[4.823368717461972,52.33539353355054],[4.823310486104759,52.33539795669757],[4.82325223995061,52.33540238873331],[4.823239962193479,52.33540331887812],[4.823193993899094,52.33540681175305],[4.823135762507375,52.335411234814025],[4.823077531104163,52.33541565784634],[4.823019270346855,52.33542008071001],[4.822961038920643,52.335424503684926],[4.822902807368721,52.33542893561847],[4.822844546576904,52.33543335839606],[4.822786315116189,52.33543778128489],[4.82276393308635,52.33543948107569],[4.822748085954782,52.33544072669275],[4.822733295499044,52.335441950384876],[4.822728124915878,52.33544242004964],[4.822718518457022,52.33544327300514],[4.822703755399901,52.33544464961726],[4.822689006099107,52.335446098195675],[4.822674270554572,52.33544761874045],[4.822670156647018,52.335448066480424],[4.82265956343753,52.335449211321624],[4.822644884747914,52.33545087593911],[4.822630219928618,52.33545260353576],[4.822615583422341,52.335454412155975],[4.822612526647747,52.33545480202312],[4.822600960786253,52.33545628375537],[4.822586366577325,52.335458227391186],[4.822571800795485,52.33546024306339],[4.822557248769357,52.335462330701986],[4.822555234913976,52.33546262667814],[4.822542739955786,52.33546448145976],[4.822498085529944,52.33547079352203],[4.822468526651764,52.33547496660868],[4.822454884008981,52.33547707655045],[4.822441064280327,52.335479266535785],[4.822437624105,52.335479807361416],[4.822420392512724,52.335482619195474],[4.822403204246328,52.33548548516072],[4.822386029620159,52.33548843207896],[4.822384426788055,52.33548871203847],[4.822365662512169,52.335492055817916],[4.822347588471565,52.33549534896228],[4.822329557527605,52.335498714212214],[4.822328204450266,52.3354989683998],[4.822311555123221,52.335502142510364],[4.822293595815332,52.33550564291415],[4.822275664932529,52.335509215353426],[4.822272281608698,52.33550990025085],[4.822257777260409,52.33551285091109],[4.822231266800725,52.335518440592644],[4.822216745945934,52.33552153497416],[4.822198620663795,52.335525394083895],[4.822166017730117,52.335532410687186],[4.822161325108771,52.33553336795184],[4.82211954757713,52.335541886637216],[4.822105660662638,52.33554474136138],[4.822073782543749,52.335551294034076],[4.822050038943821,52.3355562138149],[4.822027766476698,52.335560826043775],[4.821994675674972,52.33556812788003],[4.821986377240787,52.33556995770866],[4.82195705190083,52.33557652254358],[4.82193957085464,52.33558048355715],[4.821927769650966,52.33558315947967],[4.821898515934142,52.33558985945958],[4.821884594956505,52.335593082495755],[4.821869320092953,52.33559662262354],[4.82185583970946,52.33559981181003],[4.821829806093029,52.33560596991276],[4.821824831840051,52.335607150514015],[4.821780314910036,52.33561762432383],[4.821775017197825,52.33561885730433],[4.821735740303685,52.335628016951006],[4.821720171187803,52.33563161856813],[4.821691137135011,52.33563834651012],[4.821665252819683,52.33564429857041],[4.821638824168543,52.335650364865046],[4.821616944418974,52.33565523954058],[4.821610176355015,52.33565671714478],[4.821595036237712,52.335660042173615],[4.821573070282098,52.335664772623865],[4.82155482717136,52.335668658035424],[4.821551075666002,52.33566944900612],[4.821529038061596,52.335674044288425],[4.821506971911369,52.33567857651538],[4.821499219712667,52.335680139286694],[4.821484862658534,52.33568303662964],[4.821456208718808,52.335688714756365],[4.821443339309083,52.33569116082801],[4.821436941339409,52.33569237954501],[4.821417645530201,52.335695972292015],[4.821398306619886,52.33569949292722],[4.821387130254189,52.335701488709276],[4.82137893916541,52.33570295050808],[4.821359543281379,52.33570633604721],[4.821340118853349,52.335709658531925],[4.821330635190154,52.335711230987876],[4.821320651439073,52.33571289991752],[4.82129465698037,52.33571712570865],[4.821275044792869,52.33572021360141],[4.821273898133214,52.33572038787378],[4.821255962720215,52.335723151233424],[4.821236558218,52.33572606035678],[4.821217140072873,52.33572888852125],[4.821216890200898,52.33572892327738],[4.821197693269857,52.33573166261858],[4.821178218152715,52.33573435568685],[4.82115964039454,52.33573686430034],[4.821158729163811,52.33573698577083],[4.821139197074993,52.335739543742896],[4.821119651229156,52.335742029743365],[4.821102193074259,52.33574418419105],[4.82110007695499,52.335744443702],[4.821080488923987,52.335746785689054],[4.821060872350246,52.335749064621545],[4.821044533456378,52.33575089186639],[4.821041227463038,52.33575126252494],[4.821024962612163,52.33575303619442],[4.820986718853557,52.3357570954541],[4.820928905151608,52.335763227115315],[4.820919854727376,52.33576419043983],[4.820871076647758,52.33576936766532],[4.820813248128013,52.33577550818703],[4.820755419707025,52.335781639693174],[4.820697605712257,52.33578778921581],[4.820639777259508,52.33579392066539],[4.820581948790891,52.335800052086576],[4.820524120191704,52.33580619246681],[4.820491488740003,52.335809658283914],[4.820466165842866,52.33581183788637],[4.820408043682264,52.33581683535066],[4.820396998036945,52.33581778009048],[4.820349921623417,52.335821823799094],[4.820291814108296,52.33582682127652],[4.82023369202353,52.33583180966781],[4.820175584482467,52.33583680708809],[4.820117462256995,52.335841804409505],[4.820059340133338,52.33584679271503],[4.820001217767119,52.335851798966544],[4.819943095502712,52.335856796202215],[4.819884988011591,52.33586178449236],[4.819826865721241,52.33586678167088],[4.819781874961075,52.33587064640988],[4.819768730124688,52.33587167090321],[4.81971051085158,52.3358762181685],[4.819652277010085,52.33588075634747],[4.819594072499681,52.33588529463849],[4.819535853191139,52.335889841817746],[4.819477648657135,52.335894380051435],[4.819419414768442,52.3358989181157],[4.8193611955394,52.33590345622166],[4.819302990740124,52.33590801234394],[4.819295529826088,52.33590858770866],[4.819254249174294,52.33591145442937],[4.819244689206627,52.335912100606556],[4.819212969321971,52.33591425822477],[4.819186345947526,52.33591600888371],[4.81917166115633,52.33591698097945],[4.819130353905522,52.335919631821575],[4.819127975060069,52.33591978218216],[4.819089018111849,52.33592221959749],[4.819069576889759,52.335923393540114],[4.819047683348385,52.335924726473536],[4.819011180205121,52.335926888034656],[4.819006334713894,52.33592717035378],[4.818964972438574,52.33592953326369],[4.818952741682339,52.33593021153089],[4.818923596292605,52.335931833177796],[4.818894290089859,52.33593340910603],[4.818882221062653,52.33593406117924],[4.818836677178161,52.33593642193641],[4.818835811101835,52.33593645372775],[4.818777239760375,52.335938688972966],[4.818718668298066,52.335940933176396],[4.818660082273557,52.3359431682931],[4.818601510914727,52.33594540345129],[4.818585040441139,52.33594603434434],[4.818542902441703,52.33594709913278],[4.818484252827711,52.335948569891976],[4.818425617881412,52.33595004069261],[4.818401429983235,52.3359506524403],[4.818393662101114,52.33595113639446],[4.818386627446653,52.335951650836215],[4.818379621098766,52.335952246304004],[4.818372628616218,52.33595290475277],[4.818367266162855,52.3359534541953],[4.81836564999898,52.33595362618254],[4.818358699688213,52.335954428638416],[4.818351763127555,52.335955303062526],[4.818344869775042,52.33595624060872],[4.818337990172576,52.335957250123165],[4.818331138991591,52.33595833167648],[4.818324316232053,52.33595948526856],[4.818317522009082,52.33596070191222],[4.818312167777366,52.33596175470983],[4.818310358350663,52.33596212349927],[4.818305018099188,52.33596323029071],[4.818297911628896,52.33596476899363],[4.818291157273375,52.33596630938909],[4.818290833579845,52.33596637973539],[4.818283813410095,52.335968053669774],[4.818276821661525,52.335969799642896],[4.818269887792208,52.33597160880869],[4.818262997130644,52.3359734810966],[4.818256149676811,52.33597541650658],[4.818255914011992,52.335975487276045],[4.818249359986997,52.33597742409648],[4.818237943991602,52.335980928383606],[4.818230769271729,52.3359832127436],[4.818223652546036,52.33598555130898],[4.818216578912696,52.33598796198368],[4.81820956327349,52.335990426863795],[4.818204153274024,52.33599239614626],[4.818202620299884,52.33599294601984],[4.818195734974873,52.335995546343085],[4.818188892972463,52.3359982008012],[4.818182138307084,52.33600090960583],[4.818175441520582,52.33600368160315],[4.818168802612946,52.336006516793184],[4.818154969582307,52.336012004745676],[4.818105742408653,52.336031568176494],[4.818104946001378,52.336031887907886],[4.818102866723817,52.336032704787485],[4.818100537800452,52.336033538442],[4.818098165553669,52.336034317961236],[4.818095720870868,52.33603502522945],[4.818093232979852,52.33603566937506],[4.818090701880631,52.33603625039802],[4.818088142359895,52.33603675938166],[4.818085539746166,52.33603719625542],[4.818082908595755,52.33603757007713],[4.818080249023863,52.33603787185946],[4.818077575701999,52.33603810167307],[4.818074888630171,52.336038259517906],[4.818072202479889,52.33603834546449],[4.818069502579672,52.33603835944233],[4.818066803601022,52.336038301521974],[4.818064105543959,52.3360381717034],[4.818061437751477,52.336037970127734],[4.818058770880603,52.33603769665388],[4.818056134159137,52.33603736041022],[4.818053513145998,52.33603694335166],[4.81805093695378,52.33603646359386],[4.818049707889257,52.336036197035405],[4.818048391026202,52.336035912079005],[4.818045509727996,52.33603519717022],[4.818013150267134,52.336017416400864],[4.818007163604974,52.33601400818266],[4.818005269330604,52.33601298344686],[4.818002471760852,52.33601146003573],[4.817997705983801,52.33600895647207],[4.8179928660434,52.336006515466245],[4.817987966726333,52.336004128101465],[4.817982993245901,52.33600180329452],[4.817977931045824,52.335999531987575],[4.817972824140538,52.33599731439221],[4.817967613728904,52.33599515921349],[4.817960620886697,52.33599241125151],[4.81795826995505,52.33599152812331],[4.817955203577714,52.335990371918605],[4.817949726776786,52.335988395213995],[4.8179441904839,52.335986481137745],[4.817938594699037,52.335984629689754],[4.817932953978432,52.33598284992794],[4.817927239209569,52.335981123736474],[4.817921479504927,52.33597946923118],[4.817915674979705,52.33597787742469],[4.817908684715948,52.33597607319338],[4.817905920334743,52.335975394794964],[4.817902526924033,52.33597456956494],[4.817896324311509,52.33597312863527],[4.817890091434593,52.335971759462254],[4.817883828293256,52.335970462045864],[4.817877520331236,52.33596922732828],[4.817871167433277,52.33596806429667],[4.817864784270816,52.335966973021726],[4.817858385630534,52.33596594458671],[4.817851942054228,52.33596498783774],[4.817849935405095,52.33596471753585],[4.817845482884806,52.335964102915945],[4.817838114776127,52.33596315969341],[4.817831404924629,52.3359623724307],[4.817824664808475,52.335961656924596],[4.817817923770566,52.335961013316236],[4.817811152467938,52.33596044146444],[4.817804365687274,52.33595993245254],[4.817797563198047,52.335959504255044],[4.817791991383298,52.33595921679658],[4.817790759786934,52.33595914795532],[4.817733434500798,52.33595688578089],[4.817715352653289,52.335956169612544],[4.817702316291612,52.33595559456605],[4.817689280852465,52.33595494762001],[4.817676246451178,52.33595421978714],[4.817674912270164,52.33595414146314],[4.817663242200195,52.335953429183164],[4.817650238871926,52.33595256667966],[4.817637251137897,52.33595163234714],[4.81762885211369,52.33595098973535],[4.817616628103639,52.33594999616196],[4.817615616810319,52.335949910403656],[4.817602397101383,52.33594875924298],[4.817589178430771,52.335947527195415],[4.817575989910893,52.335946232376756],[4.817562831541793,52.33594487478697],[4.817558655825174,52.33594441428179],[4.817549674211215,52.335943436310316],[4.817534642624389,52.33594170119886],[4.817521867791368,52.335940183670154],[4.817509108553157,52.33593859431255],[4.817501052165825,52.33593754888924],[4.817496350238358,52.33593693305541],[4.817483636746088,52.33593520909796],[4.81747093896412,52.335933404324386],[4.817458271333335,52.335931536779846],[4.817445077607025,52.33592950492],[4.817443920868501,52.33592931959386],[4.817433027217468,52.335927559454326],[4.817421021765945,52.33592554230122],[4.817409046465731,52.33592346237734],[4.817397086760749,52.33592131062474],[4.817387455435082,52.33591951162043],[4.817385171993958,52.335919087184735],[4.817373302165409,52.335916792057354],[4.817361447816916,52.335914434088565],[4.817349579836307,52.3359119951625],[4.817331712480726,52.33590828702328],[4.817276134978002,52.33589674862283],[4.817220557619622,52.33588520120902],[4.817164980059494,52.33587367174368],[4.8171408058462,52.335868647934305],[4.81710949321088,52.33586193596914],[4.81705409638208,52.335850047809224],[4.816998714023639,52.33583817766861],[4.816943317138906,52.33582629844412],[4.816890978414081,52.33581507206835],[4.816887934955327,52.33581441926439],[4.816832538014622,52.33580254897534],[4.816823451427143,52.33580060874546],[4.816807005901993,52.33579701523403],[4.816777171254643,52.33579061589092],[4.816721789275776,52.335778727646186],[4.816666392539783,52.33576684829208],[4.81661101062041,52.33575495999556],[4.816555628730792,52.33574307167311],[4.816500246755412,52.33573119231201],[4.816444850138378,52.33571931285421],[4.816391502229654,52.33570785669302],[4.816389453551082,52.33570743337051],[4.816380834407024,52.33570565714218],[4.816370211408362,52.33570339489184],[4.816359618677868,52.33570106088395],[4.816349070886968,52.335698655189326],[4.816338567804614,52.33569619578251],[4.81633429681956,52.335695159553616],[4.816328095106098,52.335693655630905],[4.816317681903133,52.33569105285064],[4.816306640836679,52.335688213356825],[4.816295893661303,52.33568533932865],[4.816285776085169,52.33568256720322],[4.816280442181576,52.335680896696296],[4.816228154421073,52.33566459215102],[4.816175866930203,52.33564826960809],[4.816165724997268,52.33564511087834],[4.816126212255408,52.33562916453486],[4.816079313755865,52.33561023452424],[4.816077315803508,52.335609290147296],[4.816030793168256,52.33558737797358],[4.815984270578965,52.33556546578159],[4.81593774803563,52.33554355357126],[4.815892946462193,52.33552244956785],[4.81589122565389,52.33552163235533],[4.81586036617295,52.33550710283798],[4.815858981187039,52.335506413076],[4.815844999635435,52.33549948785624],[4.815799381431823,52.33547686093139],[4.815753777830373,52.33545424304702],[4.81570815960413,52.33543162507419],[4.815662541424397,52.33540900708371],[4.815616923175486,52.335386398062866],[4.815571305088764,52.33536378003717],[4.815537117228947,52.33534681663036],[4.815525879741935,52.335341010131756],[4.815480987582557,52.33531785630828],[4.815436110141269,52.335294702538654],[4.815391218191318,52.335271539693785],[4.815346340959458,52.335248376902754],[4.815301449103234,52.33522521402375],[4.815256557178114,52.33520206011492],[4.815211680086818,52.335178897272684],[4.815166788371178,52.335155734342486],[4.815121911373592,52.33513257146613],[4.815077019751682,52.33510940850176],[4.815070869043959,52.335106233023545],[4.815044657140739,52.335093154826076],[4.815031624145456,52.3350866475353],[4.814986110521589,52.33506393990737],[4.814971532244988,52.33505666117196],[4.814942772947185,52.33503974181855],[4.814900442208994,52.335014838544886],[4.814858111518299,52.33498993525603],[4.814815795430384,52.33496504101022],[4.814773450163549,52.334940137619995],[4.814731119615343,52.334915234285525],[4.814688789114635,52.334890330935885],[4.814646458545541,52.33486543655826],[4.814604142810912,52.33484053324925],[4.814561812452685,52.33481562985396],[4.814519482026045,52.334790735430765],[4.814477151878725,52.334765823017854],[4.814444257445119,52.33474647478859],[4.814433992432626,52.33474150875971],[4.814398152179726,52.33472418649482],[4.814388005009691,52.33471918508102],[4.814342254920505,52.33469666480105],[4.814296519664755,52.334674135587065],[4.814250769552496,52.33465162425891],[4.814205034273654,52.33462910399682],[4.814159284486207,52.33460657465868],[4.814113549184245,52.33458406334836],[4.814111858019101,52.334583228277495],[4.814067829063693,52.334561516142344],[4.814022108989607,52.33453896891868],[4.81397640351695,52.334516430735555],[4.813930683419756,52.334493892463726],[4.813884963485048,52.33447134518691],[4.813839258151718,52.33444880695074],[4.813793538309927,52.33442625963855],[4.813747818398538,52.33440372129592],[4.813702113320611,52.33438117401941],[4.813656393502122,52.33435863564135],[4.813610673846175,52.33433608825833],[4.813568351080715,52.334315220073385],[4.813564968907609,52.33431354092871],[4.813519249228477,52.33429100249761],[4.813473544382813,52.33426845513261],[4.813427839699732,52.33424589876268],[4.813382134946981,52.334223351362304],[4.813336430240681,52.33420080394425],[4.813290725580837,52.334178256508515],[4.813245006296581,52.33415570898388],[4.813199301845821,52.334133152525496],[4.813153597209162,52.334110614023935],[4.813107892735128,52.3340880665174],[4.813062188423753,52.33406551000594],[4.813057654381734,52.33406327699994],[4.813016454468563,52.33404298029619],[4.812970720559821,52.334020450568715],[4.812925001368328,52.33399792089475],[4.812879267552468,52.333975391131865],[4.8128335338993,52.333952852364014],[4.812787800060082,52.33393033155297],[4.812742066383554,52.33390780173697],[4.81269634754052,52.33388526298719],[4.812650613956884,52.333862733135724],[4.8126048803034,52.33384021225386],[4.812559146928947,52.3338176733797],[4.812513428155389,52.33379514354638],[4.812467694641201,52.33377262261135],[4.812421961406105,52.33375008368407],[4.81237622810113,52.33372755372634],[4.81236329684814,52.333721181448865],[4.812363533790101,52.33372101183121],[4.812378758022507,52.333708925256595],[4.812365607179307,52.33370251596127],[4.812319681138476,52.33368014682584],[4.812273740589622,52.33365776861398],[4.812227814641425,52.3336353994428],[4.8121818592818,52.33361303909849],[4.812135933542615,52.333590660904306],[4.812135510770093,52.33359045212953],[4.812099686157372,52.33361850879154],[4.812063520814173,52.33364681544569],[4.812036767239901,52.33366776186612],[4.81202735530842,52.333675131075914],[4.812026480773508,52.33367581888776],[4.811981885424195,52.33365380661425],[4.811936181900016,52.333631267641834],[4.811890478655148,52.33360871067719],[4.811844775456753,52.333586153694846],[4.811799072188366,52.333563605682095],[4.811753368966434,52.33354105765166],[4.811707665790947,52.333518509603515],[4.8116619627784,52.33349595255041],[4.811616274482951,52.33347339555102],[4.811570571330327,52.333450856437075],[4.811524868457159,52.33342829933091],[4.811479355066642,52.3334058419949],[4.811479165630462,52.33340574220708],[4.811433373894382,52.33338325653534],[4.81138756741758,52.33336077976168],[4.811355771311854,52.33334516595519],[4.811341775774324,52.333338294054435],[4.811295984177478,52.333315808329424],[4.81125020718105,52.33329333164533],[4.811204415677013,52.333270845884805],[4.811158784546236,52.33324844177752],[4.811158624102803,52.333248369093766],[4.811112892073345,52.333225829659845],[4.811067174760889,52.33320329027963],[4.81102145749488,52.33318075088172],[4.810975725371547,52.333158229369204],[4.810930008198422,52.33313568993589],[4.810884276401232,52.33311315041347],[4.810838559321008,52.33309061094475],[4.810792827383415,52.333068089361355],[4.810757577540342,52.33305070593969],[4.810747095608917,52.33304555877303],[4.81070131940271,52.33302306390163],[4.810655528339075,52.33300058691551],[4.810609752225687,52.332978092008595],[4.810563961488259,52.33295559701242],[4.810518185350994,52.33293311105731],[4.810472409260126,52.332910625084416],[4.810426618661953,52.33288813003498],[4.810395931181474,52.332873060640715],[4.810383824379213,52.33288232200491],[4.810354275931054,52.3329049351491],[4.810345871679308,52.33290022949144],[4.810339433694929,52.33289662993493],[4.810302524545134,52.3328759936786],[4.810297659648656,52.33287327360929],[4.810259192128724,52.332851757921375],[4.810215830418805,52.33282752200516],[4.810172498097055,52.33280328621607],[4.810142697103895,52.33278662124414],[4.81014138821318,52.33278573405304],[4.810140182482481,52.33278481141373],[4.810139065474976,52.33278383528008],[4.810138051627487,52.33278282369826],[4.810137126269602,52.3327817765966],[4.810136318742121,52.332780694118284],[4.810135599587449,52.3327795851074],[4.810135012816772,52.332778449778715],[4.810134528972497,52.33277729697633],[4.810134374255219,52.33277678391526],[4.810134162608223,52.33277613575902],[4.810133913957523,52.33277494815232],[4.810133767999614,52.33277376104646],[4.810133754075284,52.33277257458451],[4.810133857514127,52.332771388694965],[4.810134078316131,52.332770203377805],[4.810134401577311,52.332769036536],[4.810134842201633,52.33276787026656],[4.810135414625906,52.33276672261562],[4.810136074488559,52.3327656203302],[4.810136866267936,52.33276452767604],[4.810137745602478,52.33276347140017],[4.81013874194975,52.33276244265849],[4.810139825735384,52.332761459282395],[4.81014099695938,52.33276052127188],[4.810142285079306,52.33275961978283],[4.810143645850405,52.332758772575026],[4.810145079389466,52.3327579706613],[4.810146600133304,52.33275723208763],[4.810148193528319,52.3327565477953],[4.810149505850088,52.33275604188887],[4.810163541360907,52.332749648085354],[4.810164999802264,52.33274918783045],[4.81018114476399,52.33274417046282],[4.81020587864103,52.33273641773583],[4.81021725170541,52.3327328151468],[4.810230569432471,52.332728592890945],[4.810255202234305,52.332720713831165],[4.81026761989046,52.332714626700856],[4.810313451316111,52.33269217385714],[4.810321867484004,52.33268805352301],[4.810353229441627,52.332665871655735],[4.810386679149974,52.332642216965226],[4.810391494177563,52.33263860935308],[4.810428563602527,52.33261074801448],[4.810465647767997,52.332582877748244],[4.810470670268401,52.332579109363174],[4.810499669092851,52.33255360841595],[4.810533209286845,52.33252410304532],[4.810536043878947,52.33252160925453],[4.810537009237001,52.33252070618812],[4.810538076703669,52.332519848558526],[4.810539231608638,52.332519036294215],[4.810554507904777,52.33250520656525],[4.810558310907142,52.33249705515823],[4.810558736017017,52.3324925633131],[4.810559636432735,52.332483103512324],[4.810559285196852,52.33248190641871],[4.810559051440102,52.332480700909784],[4.810558935162476,52.33247948698555],[4.810558936247259,52.332478273633285],[4.81055905469444,52.332477060852945],[4.810559290504014,52.33247584864462],[4.810559521295293,52.332475022888666],[4.810558115948764,52.332456707822345],[4.810556623316371,52.332437205936536],[4.810551389543161,52.33242109220717],[4.810544463264064,52.332399739309686],[4.810541641598547,52.33239107027399],[4.810539684558248,52.33238586576811],[4.810526436530357,52.332350838527354],[4.810519556979632,52.332332667549025],[4.81051130653002,52.33231612567441],[4.810494176966021,52.332281744610995],[4.810491788896856,52.332276969419404],[4.810475679596021,52.33224762651291],[4.810466220304481,52.332230404655085],[4.810458770489211,52.33221321955479],[4.810451434773038,52.332196286669415],[4.810452392782533,52.332177875266574],[4.810452957237525,52.33216717350718],[4.810456731444203,52.33214203495554],[4.810462096660998,52.332106226611344],[4.810462545360791,52.33210330775228],[4.810473909155013,52.33207103390147],[4.810486293182619,52.33203588891509],[4.810498662637086,52.332000734868366],[4.810517107104548,52.331966617066485],[4.810535551543571,52.33193249926146],[4.810553996187561,52.33189836347879],[4.810561076310267,52.331885266757176],[4.810571811389294,52.33186411677154],[4.810589260744863,52.331829796375914],[4.810597195278545,52.33181416924639],[4.810614719751658,52.3317977889314],[4.810631115634074,52.331782454691016],[4.810639007943678,52.331776857776646],[4.810647002358341,52.33177130629845],[4.810650081152884,52.3317692091594],[4.810655069537916,52.33176580011345],[4.810663224152469,52.33176033929309],[4.81067146608531,52.331754932824666],[4.810679795453115,52.33174957172084],[4.810688212255878,52.33174425598167],[4.810690253175106,52.33174299864111],[4.810696716376921,52.33173899459429],[4.810702912483088,52.33173522292951],[4.81071011501888,52.3317307730925],[4.81071739032014,52.33172636854873],[4.810724752940253,52.33172201835697],[4.810732069915439,52.33171779377202],[4.810732188209172,52.331717722445674],[4.810739710913611,52.331713471899114],[4.810747320936912,52.331709275704476],[4.81075498882232,52.331705142706085],[4.810762744143265,52.33170105507237],[4.810770586783084,52.331697021790525],[4.810776286983331,52.33169415547728],[4.810778487285045,52.33169305170488],[4.810783212262228,52.331690719910476],[4.81078755546791,52.33168841321957],[4.810791956653374,52.33168616073795],[4.810796445158699,52.33168396260856],[4.810801006313854,52.3316818187599],[4.810805640118843,52.33167972919203],[4.810810331786988,52.3316777028207],[4.810815095988335,52.331675739717326],[4.810819932839545,52.331673830894665],[4.810823161674675,52.33167260630202],[4.810824827553942,52.33167198526852],[4.810829780131542,52.3316702028389],[4.810836323021264,52.33166796977618],[4.810840577591371,52.33166684005792],[4.810844889908242,52.331665782523515],[4.810849245418505,52.331664788114225],[4.810853629335502,52.33166386574575],[4.810858056445928,52.331663006502396],[4.810862511963123,52.33166221929992],[4.81086699588711,52.3316615041383],[4.810871523004577,52.33166085210178],[4.810876063858845,52.33166027203467],[4.810877753478398,52.33166008253214],[4.810880633119965,52.3316597640084],[4.810885216117927,52.33165932795158],[4.810889812852755,52.33165896386414],[4.810894438111132,52.33165866283031],[4.810899840297886,52.331658410519616],[4.810904551710215,52.33165825371038],[4.810909262189468,52.33165816879909],[4.810913971852295,52.33165814679847],[4.810918680465463,52.33165820568307],[4.810923388145618,52.3316583364656],[4.81092808022276,52.33165853907466],[4.810932771366937,52.33165881358166],[4.810936201238425,52.33165905498217],[4.810937461694799,52.33165915099932],[4.810942121633055,52.331659569159335],[4.810948978110859,52.33166030360319],[4.810949597029071,52.3316340891029],[4.810952545703549,52.33163410346355],[4.810995968619909,52.33163434189682],[4.811011225326681,52.33163442518108],[4.811069890397349,52.3316347378108],[4.811128569905809,52.33163506845743],[4.811187249648404,52.331635381100384],[4.81121883397534,52.33163555283074],[4.811245926244758,52.33163593637045],[4.811248170525229,52.33163596527058],[4.811287056212158,52.331636505073135],[4.811304599462727,52.33163675224218],[4.811316627483762,52.33163691863848],[4.811317423420196,52.33160835018572],[4.81131843240107,52.331572403757356],[4.811319441380197,52.3315364573287],[4.811319967772469,52.33151736074155],[4.811292458637856,52.331517451544755],[4.811233787075996,52.33151765129986],[4.811175100960315,52.3315178419672],[4.811116414844242,52.331518032605395],[4.811057728727778,52.331518223214545],[4.811010471578086,52.331518388560276],[4.811010192848385,52.33151838720291],[4.811003101763788,52.331513121751144],[4.81096575734534,52.33148539217166],[4.810928427643481,52.331457662651744],[4.810891068648325,52.33142993297705],[4.810853724369761,52.33140220336195],[4.810831463241303,52.33138566516173],[4.810845464466404,52.33137395929958],[4.810860963676785,52.33136100243549],[4.810864495477539,52.331357909847696],[4.810867939608134,52.33135478986925],[4.810871281631929,52.33135162445417],[4.810874536102226,52.33134842266119],[4.810877673795822,52.33134517536017],[4.81087850697529,52.33134428063491],[4.810880723819309,52.3313419006685],[4.810883656949488,52.331338589456024],[4.810886502526224,52.33133524186575],[4.810889231093053,52.33133186674193],[4.810891857436551,52.33132845516879],[4.810894381440099,52.33132501613366],[4.810896788433802,52.33132154956502],[4.810899093087599,52.331318055534375],[4.81090129551814,52.33131452505439],[4.810902990540536,52.33131165720289],[4.810903380705637,52.331310985015584],[4.810905349,52.33130740845597],[4.810921361292912,52.33127752100068],[4.810939659017346,52.33124335747632],[4.81095795671353,52.33120919394885],[4.810976224925104,52.331175039262654],[4.810994522564811,52.331140875729005],[4.811012819943048,52.33110673016676],[4.811031117526259,52.33107256662688],[4.811049400411392,52.33103840301251],[4.811067697821513,52.331004248453716],[4.811082702650198,52.33097623452766],[4.811085737422075,52.33097073976086],[4.811086097658827,52.33097011236638],[4.811088363166845,52.33096624065218],[4.81109109124991,52.33096176900523],[4.811093936341043,52.33095732489142],[4.811096883887008,52.330952899252146],[4.811099933654596,52.33094851006179],[4.811103100430173,52.3309441484046],[4.811106369543912,52.330939814209096],[4.811108636893744,52.33093693116546],[4.811109740995792,52.33093550747531],[4.81111324400878,52.33093123733325],[4.811116820020283,52.3309269945101],[4.811120512806473,52.33092279719453],[4.811124307930713,52.330918627340644],[4.811128205392984,52.330914484948366],[4.811132204960098,52.3309103879923],[4.811136306748616,52.33090632748508],[4.811137138632207,52.33090553161788],[4.811140496088746,52.33090230335537],[4.811144802203448,52.330898324733226],[4.811149195986312,52.3308943735012],[4.811153677087582,52.33089047662117],[4.811158260410186,52.330886616189964],[4.811162945954105,52.33088279220762],[4.811167718816402,52.33087902257719],[4.811171260330977,52.33087630751653],[4.811172579230222,52.33087528932414],[4.811177541748754,52.33087160150713],[4.811182591585642,52.330867968042064],[4.811187714304258,52.33086437088294],[4.811192939010994,52.33086082814707],[4.811198251036074,52.33085733976311],[4.811203650612636,52.330853887756454],[4.811209122837776,52.3308504900302],[4.811210542325528,52.3308496341081],[4.811214682381259,52.330847146655785],[4.811220329243087,52.33084385763323],[4.811226048870061,52.33084061390375],[4.811231855815384,52.3308374245261],[4.811237735409295,52.33083428942882],[4.811243687535248,52.3308312175992],[4.81124972709612,52.330828191134025],[4.811254525421742,52.33082585069002],[4.811255824635846,52.3308252188778],[4.81126200937739,52.33082230996058],[4.81126825209781,52.330819455252325],[4.811274567350314,52.33081666381158],[4.811280955251471,52.330813926651146],[4.811287415801287,52.330811243771],[4.811302430026125,52.33080511524363],[4.811351263193955,52.33078517522669],[4.811389167545246,52.330769693898176],[4.811400081648226,52.33076523511803],[4.811448914728419,52.330745295060545],[4.811497732978558,52.33072536389858],[4.811546566087623,52.33070541481318],[4.811595384366648,52.3306854746234],[4.811644217271571,52.33066553448468],[4.811693035462974,52.330645594254285],[4.811741868396718,52.33062564508769],[4.811790686384038,52.33060571380403],[4.811839519113687,52.330585773584104],[4.811888351915945,52.33056582435659],[4.811937169771862,52.33054589301201],[4.811986002486462,52.330525943743915],[4.812034820371173,52.330506003371504],[4.81208365288172,52.33048606305005],[4.812132470678807,52.33046612263707],[4.81218130321809,52.33044617328778],[4.812230120811186,52.330426241821456],[4.812278953146461,52.330406301418826],[4.812327770884646,52.330386351937356],[4.812376603015948,52.330366420481425],[4.812425405996889,52.33034647088812],[4.812474238156891,52.33032653040434],[4.812523055603486,52.33030658982899],[4.812571887675854,52.33028664930458],[4.812620704918548,52.33026671767592],[4.81266953701956,52.33024676812364],[4.812718368960474,52.33022682753836],[4.812767186188009,52.33020688686155],[4.812816018041286,52.33018694623565],[4.812864835297431,52.330166996531005],[4.812881191104991,52.330160326058135],[4.812893402801391,52.33015533416907],[4.812913652277309,52.33014706478057],[4.812962484115346,52.33012711510652],[4.813011315793343,52.33010717439946],[4.813060132758003,52.33008723360087],[4.813074586031409,52.33008133581107],[4.813108964348367,52.3300672928532],[4.813157781225406,52.33004735201403],[4.813206612728135,52.33002741122574],[4.813255429517554,52.330007470346075],[4.813304261048788,52.32998752052988],[4.813353077634442,52.329967588596844],[4.813401908961901,52.3299476477274],[4.813450740361651,52.32992769785035],[4.8134995568159,52.32990776585644],[4.813548388127995,52.32988781593879],[4.813597204494641,52.3298678839043],[4.813646035603012,52.32984794293337],[4.813681475445145,52.32983346455147],[4.81369485211419,52.329827992883715],[4.813707461675465,52.32982285004617],[4.813743683018866,52.32980806085945],[4.813792499442402,52.32978811076922],[4.813841330375493,52.32976816971707],[4.813890146595358,52.32974822857354],[4.813938977440817,52.32972828748084],[4.81398779368906,52.32970833730946],[4.814010431842377,52.32969909963206],[4.814036624330881,52.32968840516339],[4.814085440491485,52.32966845495143],[4.814134271161663,52.3296485137775],[4.814183087118656,52.32962857251222],[4.814231917701202,52.32960863129772],[4.814280733686513,52.329588681004566],[4.814329564065481,52.32956874873673],[4.814378379963151,52.32954879840303],[4.81442721037042,52.3295288571073],[4.81447602606454,52.32950891572031],[4.814524856384172,52.329488974384006],[4.814573672106551,52.329469023969104],[4.814622502222668,52.3294490915795],[4.814671317857409,52.329429141124066],[4.814720133332469,52.32940919963556],[4.814768963433011,52.329389258197786],[4.814817778820451,52.32936931666877],[4.81482652426831,52.32936574586597],[4.814834016918743,52.32936262738169],[4.814840640490035,52.32935978331576],[4.814847191409044,52.329356884970935],[4.814853669791586,52.32935392336003],[4.814860090306919,52.329350898554],[4.814865404718831,52.329348326776746],[4.814866423384837,52.32934782838545],[4.814872698595524,52.329344695021824],[4.814878871815332,52.32934150723753],[4.814885001721343,52.329338265316345],[4.814891044305738,52.32933496904542],[4.814897014237777,52.329331618495814],[4.814902896732375,52.32932822258374],[4.81490869202116,52.329324763334725],[4.814909224399869,52.32932443335985],[4.814914414541771,52.32932125879428],[4.814920049624938,52.32931770889145],[4.814925597386479,52.32931410463902],[4.814931057826392,52.32931044603689],[4.814936416159613,52.32930674200151],[4.814941716393927,52.32930299274568],[4.814946914521559,52.329299198056646],[4.81494869220339,52.3292978584791],[4.814952025211775,52.32929535800525],[4.814957048464584,52.32929147259159],[4.814961969610736,52.329287541744655],[4.814966803319496,52.32928356553547],[4.814971534921623,52.32927954389307],[4.814976178970582,52.32927548587571],[4.814980720797134,52.32927139141246],[4.814983393569716,52.329268896732444],[4.814985160517094,52.329267251516036],[4.814989512683925,52.329263075244654],[4.814993762744194,52.32925885354009],[4.814997910466328,52.329254604376985],[4.815001956081935,52.329250309780726],[4.815005899359445,52.329245987725926],[4.815009740530465,52.329241620238],[4.815012943049627,52.32923786083429],[4.81501347936343,52.32923722529155],[4.815017115858368,52.3292328028865],[4.815020650131089,52.32922834403572],[4.81502406751238,52.32922384866817],[4.815027382439923,52.32921933482941],[4.815030595145325,52.329214784544845],[4.815033690843587,52.32921020673086],[4.815036684203974,52.32920560145841],[4.81503699885761,52.329205090673334],[4.815039560441494,52.32920097764379],[4.815042334456978,52.329196317383456],[4.815045006018881,52.32919163865193],[4.815047545904572,52.32918693232008],[4.815049998005968,52.329182207588],[4.815052318315434,52.32917746424286],[4.815054536171448,52.3291727024266],[4.815055306994986,52.329170944538106],[4.81505835979228,52.32916400271501],[4.815061069754992,52.32915748166231],[4.815063677148212,52.329150951125705],[4.815066167418562,52.32914440204704],[4.815068555235285,52.3291378344972],[4.815069180060284,52.329136021975614],[4.815070811144246,52.329131257321606],[4.815074767000987,52.32911912489533],[4.815058747105355,52.329103192885796],[4.815027982142191,52.32907258433423],[4.814997217337187,52.32904196678729],[4.814966452458763,52.32901135821945],[4.814935687738515,52.328980740656235],[4.814930574726797,52.328975655773746],[4.814909328359358,52.32894865241221],[4.81488386777309,52.32891626292318],[4.814861871176622,52.32888828523721],[4.814857065731965,52.32888437924588],[4.814821728847021,52.32885567191926],[4.814805773480281,52.3288427151603],[4.81478266898303,52.328828995796876],[4.81474053656291,52.328803967545085],[4.814734465657194,52.32880036101225],[4.814703073334882,52.32877634641018],[4.814679801351124,52.32875855472546],[4.814668090083543,52.32874753289352],[4.814636101962182,52.32871739467267],[4.814604099099274,52.32868726535937],[4.814589489284877,52.328673497189],[4.814563465909266,52.32868478579551],[4.814515593873018,52.328705567655135],[4.81446770723882,52.32872634043692],[4.814419820559853,52.328747113199185],[4.814371919167033,52.32876788587088],[4.814324032166656,52.328788676568635],[4.81427614535335,52.32880944927226],[4.814228258495273,52.328830221956395],[4.814180371592425,52.32885099462093],[4.814132484644807,52.32887176726597],[4.814084612089583,52.32889255793708],[4.814036725052408,52.328913330543045],[4.813988837970463,52.328934103129484],[4.813940936174605,52.32895487562533],[4.813893048887092,52.328975657159944],[4.813845161670817,52.328996429687734],[4.813819905006545,52.329007389296684],[4.813794424733544,52.32901407859366],[4.813740476227475,52.32902822463105],[4.813706723423924,52.3290370758337],[4.813685595429869,52.32904072135053],[4.813629092618513,52.32905045091534],[4.813572604219501,52.32906019849881],[4.813516116027968,52.32906992808067],[4.813462965263253,52.329079089609905],[4.81345968521135,52.32907975678005],[4.813403997892153,52.32909108103932],[4.813348310312383,52.329102423246894],[4.81330746410468,52.32911072762505],[4.813295269189403,52.329116717288166],[4.813249471838933,52.329139207401916],[4.813211676378767,52.32915777268119],[4.813203152274574,52.329161236584824],[4.813154234754671,52.32918109606394],[4.81310531719105,52.32920095552268],[4.81305641425294,52.32922081503225],[4.813007496601894,52.32924067445027],[4.812958593576369,52.32926053391909],[4.812909675837891,52.32928039329639],[4.812896299818777,52.329285819939685],[4.812859280736809,52.32929878046449],[4.812808335136427,52.32931662566841],[4.812757404164418,52.3293344709215],[4.812706443929238,52.32935230702283],[4.812655512875457,52.32937015223176],[4.812604567111509,52.32938799734748],[4.812553621422955,52.3294058334538],[4.812502675693528,52.329423669538095],[4.812451744592526,52.32944150567158],[4.812400798665032,52.32945935069898],[4.812379312055485,52.329466876987],[4.812351722004391,52.32947898437834],[4.812304007463337,52.32949991890445],[4.812256292993671,52.329520844423925],[4.812208593032041,52.329541778982595],[4.812160878472494,52.329562704463285],[4.812113178420975,52.32958363898311],[4.812065478440897,52.32960456449632],[4.812017763630135,52.32962549890609],[4.812014178372652,52.32962707232416],[4.811969120528118,52.32964561089032],[4.811920434072467,52.329665668716814],[4.811871733019919,52.32968571746448],[4.81182301737048,52.3297057571334],[4.811774316113603,52.32972581482798],[4.811734198869952,52.329742328105866],[4.8117260646729,52.329746252179554],[4.811679961082862,52.32976848853884],[4.811633842777254,52.32979072480858],[4.811587724541964,52.32981295207291],[4.811556841101877,52.32982784746262],[4.811544851914167,52.32983717243459],[4.811508543545113,52.32986540633226],[4.811472234896832,52.32989365819315],[4.8114464633813,52.329913692507894],[4.811432435128268,52.32991961014343],[4.811384066896293,52.32993997488496],[4.811335713289458,52.329960339677925],[4.811287359638304,52.32998070445104],[4.811239005826277,52.330001078191465],[4.811190652203045,52.33002143393748],[4.811142298302362,52.33004180763808],[4.81109394447393,52.33006217233149],[4.811045575931666,52.3300825369336],[4.810997236684107,52.330102901658655],[4.810975065841781,52.33011223990351],[4.810948360800614,52.330122787395034],[4.81089903524958,52.33014227545615],[4.810849738994363,52.330161763639495],[4.810800428026374,52.330181251730764],[4.810751102345593,52.330200739729804],[4.810701805960667,52.33022022785113],[4.810652480193389,52.330239715808794],[4.810603183721992,52.3302592038887],[4.810553857868216,52.33027869180495],[4.810504561310346,52.33029817984354],[4.810455235486789,52.330317658731104],[4.810405924172864,52.330337146656746],[4.810356612815692,52.33035663456172],[4.810307301415282,52.33037612244601],[4.810257990088385,52.330395601322316],[4.810208678601498,52.330415089165186],[4.810185807149433,52.33042412724743],[4.810160701495668,52.330435751914216],[4.810113899388377,52.33045743600043],[4.810067097235398,52.33047912006798],[4.810020280483897,52.33050079505801],[4.809973478239549,52.33052247908818],[4.809926675949516,52.330544163099646],[4.809879873613795,52.330565847092515],[4.809833056562715,52.33058753099503],[4.80978623958279,52.330609205891655],[4.809739451779693,52.33063088990003],[4.809692634591533,52.3306525737465],[4.809645832027377,52.33067425764594],[4.809599014864717,52.33069593246776],[4.809552212209189,52.33071761632983],[4.809505409507975,52.33073930017321],[4.809458592091346,52.3307609839263],[4.809411803968491,52.33078266780396],[4.809364986577412,52.33080434253239],[4.809318169023703,52.330826026229396],[4.809271366094051,52.33084770997938],[4.809224563118712,52.330869393710664],[4.809177760097687,52.33089107742328],[4.809130942478183,52.33091275205829],[4.809084124696001,52.330934435661916],[4.809037336207704,52.330956119390144],[4.808990518334133,52.33097780295638],[4.808943715201695,52.33099947758832],[4.808896897353776,52.3310211521299],[4.808871997456219,52.331032696639234],[4.808849745565616,52.33104255538558],[4.808802216530445,52.33106363321624],[4.808769842104707,52.33107797233416],[4.808754817839802,52.331084837494814],[4.808707782220688,52.33110632215259],[4.808700358566597,52.3311097192105],[4.808653349165674,52.33111905241862],[4.80859752896831,52.33113014907779],[4.808553152337356,52.33113896483836],[4.808541609098965,52.33114101153946],[4.808485245328876,52.33115103593469],[4.808449733174815,52.33115734246727],[4.808428203851755,52.33115902573682],[4.808369989387074,52.33116358540706],[4.808311789697565,52.33116813613315],[4.808275868198435,52.331170953329924],[4.808253982825965,52.331174063891865],[4.80820796324678,52.33118060654913],[4.808197769515028,52.33118379228802],[4.808145489942188,52.33120011900626],[4.808093224883642,52.33121645476036],[4.808040945116816,52.331232790419456],[4.807995559421019,52.33124696677128],[4.80798908499457,52.33124956851386],[4.807940075999162,52.331269335518115],[4.807891066960155,52.331289102501934],[4.807842043324897,52.33130886040621],[4.807793019528787,52.3313286272773],[4.80774399568907,52.33134839412793],[4.807694986592948,52.331368152042685],[4.807645977335964,52.33138791892428],[4.8075969386955,52.33140768564167],[4.807547929468619,52.331427443495045],[4.807498905410888,52.33144721024341],[4.807449895979505,52.33146697704318],[4.807400886621869,52.33148673483523],[4.807351847646008,52.331506510437585],[4.807302838201185,52.33152626818876],[4.807253814042798,52.33154602584756],[4.807204804276054,52.33156580153232],[4.807155780030476,52.33158555915022],[4.80710675574131,52.33160531674768],[4.807057745843744,52.33162509237107],[4.807008721467384,52.33164484992762],[4.806994489045199,52.331650586280816],[4.806958813684142,52.331663722323604],[4.806908514230457,52.33168225123994],[4.806858214852291,52.33170077114739],[4.806807915432213,52.33171929103344],[4.806798023556913,52.33172293651246],[4.806788246221183,52.33172679826068],[4.806781122295781,52.33172969334992],[4.806773127080793,52.33173302456869],[4.806765189722508,52.3317364189856],[4.80675899247399,52.33173912987483],[4.806757310338376,52.331739867613415],[4.806745356410063,52.33174525560068],[4.806738271555099,52.33174852836825],[4.806731274014546,52.331751855490765],[4.806724334448288,52.33175523682427],[4.80671746752637,52.33175867244083],[4.806712637758966,52.331761147364865],[4.806710673248785,52.33176216234042],[4.806703966168095,52.331765715582264],[4.806697331849204,52.33176931411989],[4.806694094787256,52.33177115872071],[4.806687856088425,52.33177479515017],[4.806681690033956,52.33177848586272],[4.806675596623847,52.331782230858366],[4.806669945664396,52.331785798267816],[4.806669605315705,52.331786021293865],[4.806663686651921,52.33178986601251],[4.806657855420049,52.33179375609902],[4.806652111620095,52.33179769155344],[4.806646469804639,52.33180168143503],[4.806644055789523,52.33180341323095],[4.806637672126887,52.331808037608575],[4.806631894165776,52.331812341395725],[4.806631271795399,52.331812814697365],[4.80662620363649,52.3318166905508],[4.80662061532662,52.33182107615853],[4.806615114331098,52.33182551612146],[4.806609700884938,52.33182999246503],[4.806604389540727,52.33183451424856],[4.806599180415985,52.331839072484875],[4.806596300226547,52.33184167381255],[4.806593153155167,52.33184448953867],[4.806587821967184,52.33184940668896],[4.806582592881083,52.33185436927921],[4.806577480801987,52.33185935940691],[4.806572441484641,52.33186439483066],[4.806567519056836,52.33186946677918],[4.806565049391114,52.331872088096304],[4.806562698848508,52.33187457518037],[4.806557980977193,52.331879711047144],[4.806553350537793,52.33188489228196],[4.806548837105549,52.33189010105428],[4.806544425892878,52.33189534627947],[4.806540117017325,52.33190061897019],[4.806537566124138,52.33190384207325],[4.806535925031503,52.33190592818574],[4.806531820595231,52.33191127378214],[4.806527833283783,52.33191663792887],[4.80652394819205,52.33192203852845],[4.80652018010769,52.33192746666569],[4.806516514360625,52.33193292226849],[4.806514028705455,52.331936765852],[4.806512950950886,52.33193840533698],[4.806508723405921,52.33194979914302],[4.806504393402974,52.33196117447038],[4.806500250604095,52.33197169687175],[4.806497989774815,52.331977420016344],[4.806495949507995,52.33198086133262],[4.806493792232407,52.33198427511112],[4.806491532618153,52.33198766142381],[4.806485492872603,52.332006371422345],[4.806476592981363,52.33203400129336],[4.806472710886649,52.332041415181465],[4.806454775209882,52.33207565170208],[4.806453887221532,52.3320773640206],[4.806419615427584,52.33210429413277],[4.806402094035232,52.33211806737327],[4.806377221533251,52.332128541941124],[4.806328863132665,52.33214891365899],[4.806305805139567,52.33215862416571],[4.806280504805309,52.33216927636965],[4.806232146316055,52.332189648047645],[4.806183787900046,52.3322100107185],[4.806135429322125,52.33223038235666],[4.806093045537827,52.33224823077309],[4.806087085605293,52.33225073607246],[4.806038712268492,52.332271107598764],[4.805990368345427,52.332291470261964],[4.805941995037582,52.332311832761185],[4.80589365090824,52.33233220437186],[4.805845277511732,52.33235256683117],[4.805796933293734,52.33237293840203],[4.80578855387372,52.33237646539903],[4.805748574478824,52.33239330089363],[4.805700215501906,52.33241367235259],[4.805651856598347,52.332434034804315],[4.80560349753276,52.332454406223384],[4.80555513854055,52.33247476863533],[4.805506779386293,52.33249514001458],[4.805458420305434,52.332515502386684],[4.805410061062505,52.33253587372612],[4.805361701892992,52.33255623605838],[4.805313357231719,52.33257660743013],[4.805264983303236,52.33259696965039],[4.805216638671086,52.33261733199506],[4.805194612887298,52.332626606958975],[4.805177824278386,52.332633678696546],[4.805168264536153,52.332637703162746],[4.805119919815369,52.332658065467605],[4.805071545591754,52.33267843659541],[4.805023200782331,52.332698798860456],[4.804974841140398,52.332719170020646],[4.804926481689816,52.3327395231864],[4.804878121959222,52.33275989430672],[4.804829762302153,52.332780256419895],[4.804781402482888,52.33280062750041],[4.804733042737167,52.332820989573726],[4.804684682829234,52.3328413606144],[4.804636337665277,52.332861722720146],[4.804587962998256,52.33288209364877],[4.804539617745663,52.332902455714674],[4.804491243107891,52.33292281761618],[4.804442897648725,52.33294318862953],[4.804394522922289,52.33296355049117],[4.804391793555371,52.33296470546641],[4.804346177374465,52.33298392146471],[4.804297817229825,52.33300428335877],[4.804249456922881,52.3330246542202],[4.804211113987518,52.33304079620817],[4.804200618581605,52.33304455533906],[4.804155733049535,52.33306062912118],[4.804149320790019,52.333061810882356],[4.804141893670915,52.33306318537478],[4.804128025893813,52.33306566958409],[4.804114114929796,52.33306809066411],[4.804094911851212,52.33307130355601],[4.804092882603979,52.333071653069254],[4.804036430076605,52.33308146819509],[4.804028195247792,52.33308290161436],[4.804018419663232,52.33308435440271],[4.804011774085246,52.33308542715245],[4.804005171574137,52.333086572016796],[4.803998612129878,52.33308778899575],[4.80399208108195,52.333089078017025],[4.803985578548363,52.33309043009332],[4.803980163873312,52.3330916167624],[4.803979119199578,52.333091845296934],[4.803972195976133,52.33309395027723],[4.80396672997029,52.33309569393862],[4.803961321701643,52.333097509787045],[4.803955971406264,52.33309937984805],[4.803950678730005,52.33310133108335],[4.803945458933566,52.333103318629],[4.803940296874265,52.333105378361715],[4.803935192788177,52.33310749230703],[4.803930161109693,52.33310967851174],[4.803929718515823,52.333109865074555],[4.803922917287457,52.33311273461953],[4.803916011593964,52.33311573846669],[4.803909193096157,52.33311880565814],[4.803902432689134,52.333121918074745],[4.803895730018721,52.33312510267829],[4.80388911478007,52.33312833265171],[4.803882867365536,52.3331314835475],[4.803882631102745,52.33313159922467],[4.803834158770227,52.33315153794845],[4.80378543557852,52.333171583269646],[4.803736712579031,52.333191610596046],[4.803688564520573,52.333211425029724],[4.80368798929943,52.33321165587681],[4.803639280646407,52.333231701209684],[4.803590557397016,52.33325173746273],[4.803552808880842,52.33326727099702],[4.803541848656105,52.333271782755226],[4.80353419282408,52.333274926685355],[4.8034931252007,52.333291827955094],[4.803444401819486,52.33331186414755],[4.803431848527063,52.333317024148215],[4.80341323242862,52.33332467981738],[4.803395678394335,52.333331900319756],[4.803346954807076,52.33335194545903],[4.80329823129404,52.33337198159081],[4.803284733732307,52.33337754136889],[4.803280305950786,52.333378427289816],[4.803277305588339,52.33337898770482],[4.803272820660566,52.33337975650157],[4.803268307218755,52.33338046224252],[4.803264794212889,52.3333809572125],[4.803253940730508,52.333382925912936],[4.803244013030445,52.33338478233945],[4.803236129741244,52.33338625339009],[4.803218332710741,52.33338963486049],[4.803191942238753,52.333400514709666],[4.803143262023358,52.33342059593077],[4.803094567211584,52.33344066807199],[4.803045887026427,52.33346074026545],[4.8030209421117,52.333471025028096],[4.802997206797292,52.33348081243878],[4.802948526524179,52.33350088459187],[4.802899846207088,52.33352095672479],[4.802851151057117,52.33354103775234],[4.802802470652057,52.33356110984493],[4.802753790203019,52.33358118191736],[4.802705109710003,52.33360125396955],[4.8026564290547,52.33362133498885],[4.80260773380305,52.333641406928244],[4.802559053178085,52.33366147891994],[4.802510387061484,52.33368155995116],[4.802461691796221,52.33370162284273],[4.802413011039322,52.33372169477389],[4.802364315449377,52.333741775599584],[4.802315634604508,52.33376184749039],[4.802266953715659,52.33378191936098],[4.802218272664436,52.333802000198645],[4.802169591569216,52.33382208101616],[4.802120895996098,52.33384214376645],[4.802072214812894,52.333862224543566],[4.80202353370413,52.33388229631329],[4.80197485255139,52.333902368062795],[4.801926171236214,52.33392244877943],[4.801877490113973,52.333942511501334],[4.801828794158524,52.333962583117746],[4.801780112711381,52.33398266377382],[4.801731416667946,52.33400273534986],[4.801682749922107,52.33402280705089],[4.801634068342987,52.33404288764641],[4.801585372167589,52.334062959161884],[4.801536690619015,52.334083030729836],[4.801487994237096,52.33410311119216],[4.801439327271374,52.33412318279235],[4.801390645590854,52.33414325429974],[4.801341949195518,52.3341633257143],[4.801293267427036,52.33418339718128],[4.801244585614575,52.33420346862813],[4.801195888968674,52.3342235489694],[4.801147221739103,52.334243620448525],[4.801098525123829,52.334263691762125],[4.801049843016804,52.3342837721155],[4.801001160984426,52.33430384346144],[4.800952464237179,52.33432391471448],[4.800903796669069,52.334343995080005],[4.800855099833844,52.33436406629272],[4.800806417744222,52.33438412857065],[4.800757735373252,52.33440420880294],[4.800709038406064,52.33442427995505],[4.800660356065817,52.33444435115971],[4.800611688352524,52.33446442241693],[4.800562991134648,52.33448450249578],[4.800514308662454,52.334504573639904],[4.800465611475328,52.33452464469109],[4.800416928796406,52.334544724782106],[4.800368260863229,52.33456479593846],[4.800319563544136,52.3345848669291],[4.800270880733239,52.33460494695956],[4.800222183444966,52.33462500892257],[4.800173500664901,52.33464507992542],[4.800124817722031,52.33466515989532],[4.800076134853998,52.33468523085784],[4.800027451941988,52.33470530180018],[4.799978768867144,52.334725381709546],[4.799930071196137,52.334745452538705],[4.799881388152174,52.334765523420465],[4.799832704945349,52.3347856032693],[4.799784021813418,52.334805674110704],[4.799735338637507,52.33482574493194],[4.799686640746558,52.33484581566014],[4.799637957482687,52.33486588644102],[4.799589259503761,52.334885957128826],[4.799540590704061,52.33490603692948],[4.799498236175974,52.33492349665983],[4.799491950726732,52.33492615280463],[4.799443702304266,52.334946612142595],[4.799395424495168,52.33496707131499],[4.799375107102829,52.33497567959817],[4.799372878440941,52.33497667516434],[4.799369172912469,52.334978400396274],[4.799365554696452,52.33498017998888],[4.799362009002809,52.33498202285652],[4.799358536069496,52.33498391102473],[4.79935515044863,52.33498585355363],[4.799351837469111,52.33498785037031],[4.799349514473391,52.33498932182279],[4.799348597130928,52.334989901474806],[4.799345458895284,52.334991998025636],[4.799342408091074,52.33499413994995],[4.79933985955481,52.33499602372224],[4.799336924334156,52.3349983010382],[4.799334076663921,52.33500061474041],[4.799331331096231,52.33500297388898],[4.799328687750089,52.33500536949673],[4.7993261318354,52.33500781047798],[4.799323692813386,52.335010287991224],[4.799321341341835,52.33501280189078],[4.799319092091866,52.335015352249485],[4.799316259245167,52.335018762541026],[4.799315811734352,52.33501931756358],[4.799313780884638,52.33502199483696],[4.799311852494526,52.33502469059507],[4.799310026445039,52.33502741382514],[4.799308317288326,52.33503017358726],[4.799306710591262,52.335032951834066],[4.799305235696111,52.3350357487114],[4.799303848470535,52.33503857298779],[4.799302578375784,52.335041415821784],[4.799301425411884,52.335044277213406],[4.799300389578853,52.33504715716267],[4.799299471352685,52.33505001972054],[4.799298069455165,52.335052843924],[4.799281107728912,52.33508725496785],[4.7992804289642,52.335088653697916],[4.799278797834375,52.3350921688256],[4.799277035259002,52.33509563836094],[4.799275155552206,52.335099089338605],[4.799273173504106,52.335102512844266],[4.799271045101245,52.33510590865915],[4.79926885825147,52.335109286207945],[4.79926653983704,52.33511262715163],[4.79926411896222,52.335115949610504],[4.799261581193845,52.335119235537135],[4.799260298649873,52.335120802036016],[4.799258941203046,52.33512248500447],[4.799256198870804,52.33512570699973],[4.799253354197105,52.33512890152287],[4.799249127969275,52.33513338342975],[4.799245783880283,52.33513662041041],[4.799242352239888,52.33513982100457],[4.799238833048074,52.33514298521222],[4.799235197081525,52.33514610390038],[4.799231458892373,52.33514918612909],[4.799228997417385,52.33515114223427],[4.799227633389791,52.33515221399682],[4.79922372033575,52.33515520547803],[4.799219719849255,52.33515815158541],[4.799215617378151,52.33516104325894],[4.79921144202673,52.33516389861881],[4.799207164690693,52.33516669954468],[4.79920281471236,52.33516944618245],[4.799198377182546,52.33517215643363],[4.799193867129452,52.335174803409394],[4.799189107784973,52.335177440158304],[4.799182219724297,52.33518127968659],[4.799177225282654,52.33518394223025],[4.799172158198665,52.33518655048572],[4.79916700380117,52.33518910437997],[4.79916177676134,52.33519160398603],[4.799156491869383,52.33519404038951],[4.799151134335113,52.335196422504694],[4.799145689606386,52.33519874127146],[4.79914319637089,52.335199771469824],[4.799140201577716,52.33520100589574],[4.799134640906759,52.33520321623176],[4.799093497989296,52.335218893259665],[4.799043669190876,52.33523788855073],[4.798993840468918,52.33525687483344],[4.798944011704386,52.33527586109502],[4.798936107458244,52.33527887766396],[4.798894515929239,52.33529518154124],[4.798845078081396,52.335314556181864],[4.798821273698958,52.33532387504676],[4.798805203471812,52.335329727109524],[4.798795090068053,52.33533337082025],[4.798789075270141,52.3353355249548],[4.798772874660953,52.335341250535116],[4.798761686560479,52.335345167521616],[4.798757805041935,52.33534688287146],[4.798753865552816,52.33534854400587],[4.798749853541016,52.33535014186458],[4.798745783677769,52.3353516765206],[4.798744913906789,52.33535198676948],[4.798741641172753,52.33535315688826],[4.798737455606643,52.3353545651389],[4.798733212070011,52.335355919174106],[4.798728910681978,52.335357210006535],[4.798724551561668,52.33535842864902],[4.798720163932439,52.3353595842347],[4.798716189479601,52.33536056211838],[4.798693451499016,52.33536912229507],[4.798643433898523,52.33538794571022],[4.798602897637916,52.335403212145124],[4.798601181358519,52.33540429113612],[4.798599362856884,52.33540533366723],[4.798597486504145,52.3354063129957],[4.798594519237328,52.33540768236233],[4.798549812847389,52.335430936197994],[4.798505076829805,52.335454207845075],[4.798504988206481,52.33545425234333],[4.79845222555136,52.335469844375325],[4.798433960491515,52.335475236075474],[4.798406219823122,52.335491491856985],[4.798380504830987,52.335506571317666],[4.79836343198139,52.33551610334455],[4.798320062485233,52.33554031645718],[4.798276692822574,52.335564538540936],[4.798234860610608,52.33558788745337],[4.798233148845122,52.33558862492369],[4.798232838840412,52.33558876718605],[4.798192238152868,52.335614396135966],[4.798160988857559,52.33563410370004],[4.798152041061756,52.33564056635132],[4.798114087091787,52.33566797006605],[4.79809508062732,52.335681680759905],[4.79807607427035,52.33569538246343],[4.798057689702568,52.335708664831415],[4.798038149072274,52.33572282224843],[4.798000296945547,52.33575028036079],[4.797998534119592,52.335751547855864],[4.797970596905233,52.335768215997305],[4.797958439844239,52.335775480546125],[4.797916393518156,52.33580056293249],[4.797895954508534,52.3358127565037],[4.797879944573169,52.33582841447134],[4.797848816284439,52.33585888099629],[4.797817673162236,52.33588935642694],[4.797786529997218,52.33591983184915],[4.797755401460809,52.33595030733598],[4.797734530395572,52.3359707225975],[4.797724214553829,52.33598075556033],[4.797705931488976,52.33599853229756],[4.797693363257334,52.33601134026596],[4.797663139807473,52.336042152787456],[4.797632916196267,52.3360729742882],[4.797619871872045,52.33608627420766],[4.79760381711471,52.33610418786137],[4.7975950302679,52.33611398575977],[4.797573856551863,52.33613508256034],[4.797567774998727,52.33614114600924],[4.797541093104479,52.336164902719666],[4.797507804184261,52.33619451353098],[4.797489333089779,52.33621096808562],[4.797474573666899,52.33622414259961],[4.797459562074001,52.33623752257524],[4.797435719530502,52.33625075966876],[4.797434610929725,52.3362513743041],[4.797395768564366,52.33627710162303],[4.797378730493375,52.33628839529736],[4.797360687757864,52.336305732775045],[4.797329120779977,52.33633603519498],[4.797297553520136,52.33636635558073],[4.797266001127506,52.33639665805646],[4.797234433781341,52.33642697842486],[4.797210594855663,52.336449868427124],[4.797206360242663,52.3364582689157],[4.79718894249058,52.33649260548109],[4.79718044438106,52.33650937036116],[4.797165296819534,52.33652523925192],[4.797151518264372,52.33653966792568],[4.797137731062985,52.336556954686515],[4.797123048862364,52.33657534248643],[4.79710991716312,52.33658857001096],[4.797092903842606,52.33660571484866],[4.79708207435808,52.33662014923335],[4.797070542518076,52.33663554181263],[4.797055925660473,52.336652321107394],[4.797053541643689,52.33665505949537],[4.797022709408634,52.33668193214419],[4.797022501616196,52.33668211086449],[4.797008067488629,52.33669176371091],[4.796987452100395,52.336710553317026],[4.796961608825052,52.336734089383356],[4.796955709833166,52.3367407558963],[4.796948008445195,52.33674945365694],[4.796925616821177,52.33677161381825],[4.796921721222936,52.33677547713056],[4.796893888661868,52.33680185240259],[4.796883487035026,52.33681168713145],[4.796863240788697,52.33683250082041],[4.796845241260549,52.33685097090193],[4.796832621977596,52.33686316735093],[4.796801200122617,52.33689353326817],[4.796775218353576,52.33691864147391],[4.796770625361184,52.3369241910145],[4.796765286470766,52.3369306625802],[4.796744388466662,52.336956344403454],[4.796726324566033,52.33697854409728],[4.796716793036343,52.336988041615506],[4.796686057120441,52.33701867157216],[4.796685283908851,52.337019440667376],[4.796653671857289,52.337048646165336],[4.796649557090556,52.337052436472156],[4.796622687630728,52.33707918498787],[4.796605468767435,52.33709631075365],[4.79659243360421,52.337109979106216],[4.796566973644806,52.337136653753724],[4.796562413208664,52.33714085527342],[4.79652992530905,52.33717081134462],[4.796497466828772,52.33720075856593],[4.796464993752385,52.337230696717604],[4.796432520512568,52.337260643847365],[4.796400047228888,52.33729059096796],[4.796393971455733,52.337296196005475],[4.796374015689701,52.337320507328464],[4.796372378463269,52.33732225178168],[4.796343102329097,52.33735341023194],[4.796313811481872,52.33738456860148],[4.79628621711247,52.33741393786843],[4.796284549817662,52.337415736097256],[4.796259614576148,52.33744264698231],[4.796255171693938,52.33744683110145],[4.796223208800386,52.33747699643021],[4.796214649631738,52.33748507868608],[4.796192253441434,52.337507526295866],[4.796172712164894,52.33752713901711],[4.79616103514126,52.33753796496169],[4.796132422001689,52.33756448894824],[4.796128576023396,52.337567921066054],[4.796095256001945,52.33759751334763],[4.796088024846747,52.33760393049085],[4.796062519584139,52.337627351206784],[4.796043178791625,52.337645122401995],[4.796031038570495,52.337657671683935],[4.796001090174683,52.3376885930069],[4.795996269792927,52.33769357514756],[4.7959697986148,52.337719004292545],[4.795957477310556,52.33773082464756],[4.795939879598543,52.3377499167589],[4.795917398475207,52.33777431425215],[4.795912385563638,52.337781632264374],[4.795911921514978,52.33778232200884],[4.795906995197477,52.33778974830753],[4.795902141999078,52.33779719294706],[4.795897449832301,52.337804665354554],[4.795892830665026,52.337812165090156],[4.795891074538803,52.33781512230017],[4.795888343185414,52.33781969244712],[4.795883943497112,52.337827238218246],[4.795879675496579,52.33783481161075],[4.795875509839797,52.337842412478075],[4.795871943152692,52.33784910856715],[4.795871446646499,52.33785003183293],[4.795867500588787,52.337857669748665],[4.795863671547012,52.337865335212555],[4.795859959640929,52.33787301923732],[4.795856350198541,52.33788072174965],[4.795855080160195,52.33788353758288],[4.795852857891951,52.337888442822916],[4.795849482721219,52.3378961824571],[4.795846224566697,52.33790394963949],[4.795843069115483,52.337911717335025],[4.795840471612228,52.33791835535164],[4.795840001336456,52.337919512432066],[4.79583709470971,52.337927326310066],[4.795825438508611,52.337953099093966],[4.795818605381115,52.337968182482115],[4.795808736474101,52.3379875558706],[4.795799726253978,52.33800525282469],[4.795785381113823,52.338020289679314],[4.79575576820364,52.338051329458],[4.795726169924104,52.33808236930232],[4.795696542258853,52.33811340899234],[4.795666944016133,52.33814443983412],[4.79563733094007,52.338175479582134],[4.795607703030623,52.33820652823636],[4.795578104543771,52.3382375680424],[4.795578045136539,52.33823762167236],[4.795575631479061,52.338240368870004],[4.795573368734556,52.338242802247905],[4.795548710587674,52.33826867177846],[4.795519126450667,52.33829972961709],[4.79548954239198,52.33833077846079],[4.795459958291847,52.33836182729682],[4.795430374150265,52.33839287612524],[4.795400790087034,52.33842391595879],[4.795371205742768,52.33845497375914],[4.795341621476853,52.33848602256461],[4.795312022497225,52.338517071289026],[4.795282452940497,52.33854811116533],[4.795252868550248,52.33857915994786],[4.795223283998721,52.33861021770995],[4.795193684853268,52.338641266403755],[4.795164115130819,52.33867230624948],[4.795134530574785,52.33870335500138],[4.795104945857447,52.33873441273283],[4.795075361218512,52.33876546146947],[4.795045776657996,52.33879650121117],[4.795016177263808,52.33882754985905],[4.794991756341253,52.338853186776326],[4.794988712442695,52.338859175415614],[4.794971350716382,52.33889351192802],[4.794953974290713,52.338927848364136],[4.794936597718172,52.33896219378467],[4.79491952331928,52.33899588460311],[4.794918943301785,52.33899646590921],[4.79488753341595,52.339026822387325],[4.794856152472264,52.33905720596544],[4.794824757052944,52.339087571487084],[4.794793361470694,52.33911794598739],[4.794761965725499,52.33914832946634],[4.794730570177137,52.33917869496222],[4.794699174345892,52.33920907842403],[4.794667793384004,52.33923944397625],[4.794660553957812,52.33924644519953],[4.794637025265962,52.339270064248254],[4.794606476233577,52.339300757512],[4.79457591236639,52.339331459681404],[4.794545348576837,52.33936215285539],[4.794514799417514,52.33939284609474],[4.794484250335869,52.3394235303387],[4.7944536717468,52.339454223414805],[4.79442312246055,52.33948491662971],[4.794392558459403,52.33951560976299],[4.794362023761138,52.33954630303513],[4.794331430330139,52.33957699600508],[4.794300880874643,52.33960768918745],[4.794270331376842,52.33963838236166],[4.794239752611484,52.33966906639346],[4.794209202909022,52.33969976853864],[4.794178653284285,52.33973046168841],[4.794148074271902,52.339761154683],[4.794117524562536,52.33979184781654],[4.794086960138174,52.33982254086834],[4.794056395671485,52.33985323391201],[4.794025845955263,52.33988391803387],[4.793995281403943,52.33991461106124],[4.793964716810293,52.33994530408049],[4.793934166847063,52.33997599716514],[4.793903602168775,52.34000669016809],[4.793873037328051,52.340037392150144],[4.793861599630376,52.3400488841662],[4.793842472565104,52.340068085136814],[4.793811922552738,52.340098769201674],[4.793781357705156,52.34012946217204],[4.793756444644809,52.34015448519224],[4.793755729057831,52.34015532645983],[4.79375032592848,52.34015995506053],[4.793726382256871,52.34018051598337],[4.79372135399106,52.34018454427798],[4.793716223615352,52.34018852712113],[4.793715660281686,52.340188955711824],[4.793711005682405,52.34019247357363],[4.793705700432496,52.34019636566096],[4.793700307745477,52.340200212370384],[4.793694827621341,52.340204013701864],[4.793689274732902,52.34020776972895],[4.793683590509028,52.34021147117009],[4.793677848193661,52.34021512738047],[4.793676708894615,52.34021583170497],[4.793672033113986,52.34021873828643],[4.793666116164656,52.34022228576634],[4.793660126451015,52.340225787941854],[4.79365404930024,52.34022924473933],[4.793647899625469,52.34023263825787],[4.79364167730655,52.34023597748478],[4.793638751419536,52.340237508715994],[4.793635367430352,52.340239280320844],[4.793633565209198,52.340240179052124],[4.79362898527049,52.34024250190351],[4.793622530346345,52.340245678181674],[4.793616002778083,52.34024880016815],[4.793609402565711,52.34025186786281],[4.793602729829406,52.34025487227856],[4.793595999121848,52.34025782247612],[4.793589181217545,52.340260709321086],[4.793586643309899,52.34026175715431],[4.793582319894687,52.34026355100864],[4.793575371615447,52.34026631136912],[4.793568379917686,52.340269026572294],[4.79356131581625,52.34027166950912],[4.793554193743655,52.34027425822773],[4.793547013820092,52.34027678374088],[4.793539761372741,52.34027924597496],[4.793536445201309,52.340280334841964],[4.793532465747305,52.34028164507715],[4.793525112270965,52.340283980973815],[4.79351771561659,52.34028625373864],[4.793510261111359,52.34028846329787],[4.793502748755293,52.340290609651625],[4.793495178668604,52.34029268381259],[4.793487594749676,52.340294694988835],[4.793483442584052,52.34029575269654],[4.793479938307147,52.34029664288593],[4.793472253479774,52.34029851873744],[4.793464510801703,52.34030033138337],[4.793463465784201,52.34030056881165],[4.793462406093836,52.34030080616624],[4.793456739859049,52.34030206299655],[4.793448925498215,52.34030374945216],[4.793441068200011,52.34030535480133],[4.793433167724078,52.340306897018515],[4.793428180886264,52.34030782470658],[4.793425253536348,52.340308367263724],[4.793417281498099,52.3403097743033],[4.793409295748124,52.34031110937085],[4.793403854892331,52.34031197186495],[4.793399573672563,52.34031280422635],[4.793371973830588,52.34031816628326],[4.793316038439993,52.34032903947875],[4.793278125370169,52.34033640796891],[4.793270771626371,52.34033766530871],[4.793262916960895,52.34033907292697],[4.793259945347859,52.340339633233505],[4.793255105351631,52.340340552663534],[4.793247322125682,52.34034210444462],[4.793243466773829,52.34034291197442],[4.793242171834526,52.34034318409762],[4.793239582076111,52.34034371935678],[4.793231885202894,52.340345397400014],[4.793224216592653,52.34034715647504],[4.79321660595181,52.340348969767525],[4.79320902369412,52.340350855104695],[4.793204841810171,52.340351939616994],[4.793201499165289,52.3403528126338],[4.793194003260045,52.34035482423308],[4.793186565083604,52.34035690802432],[4.793179184635931,52.34035906400754],[4.79317184748464,52.34036127413465],[4.793164568062072,52.340363556453745],[4.793157331935837,52.34036589291671],[4.793152069790205,52.34036765507955],[4.793150153538276,52.340368301571715],[4.793143047782751,52.340370764517914],[4.793135985082984,52.34037329958253],[4.793128980352341,52.3403758888647],[4.793122048143419,52.34037854142538],[4.793115173783329,52.340381257190884],[4.793108371944926,52.34038403623491],[4.793102233151262,52.34038661188715],[4.793101628075583,52.34038686949655],[4.793094942175288,52.34038975697582],[4.793088343469515,52.34039270780734],[4.793081802492225,52.34039573083098],[4.793075334517633,52.34039878118422],[4.793068938944382,52.340401903803325],[4.793062615892726,52.34040508970095],[4.793056365603208,52.34040832090281],[4.793055833650836,52.34040859685476],[4.79305020262843,52.340411606469665],[4.793044112295508,52.34041494632797],[4.793038094484149,52.34041834946485],[4.793032164107799,52.340421797979616],[4.793026321166455,52.340425291872286],[4.793020550746669,52.34042884904362],[4.793014882555065,52.34043244267926],[4.793013402275167,52.3404334059324],[4.793009257539228,52.34043609944625],[4.793003749424476,52.34043979275134],[4.792998313951561,52.34044354034788],[4.792992980466274,52.34044734238329],[4.792987734536305,52.340451180809424],[4.792977031353385,52.34046149003467],[4.792945545856425,52.340491836629184],[4.792914045763743,52.340522174154145],[4.792882560300881,52.3405525117442],[4.792851074794927,52.34058284932561],[4.792819589125556,52.34061319588564],[4.792788103653742,52.340643524462564],[4.792756618018514,52.34067386201809],[4.792743224021131,52.3406867641765],[4.792725132219847,52.34070420855227],[4.792693661051068,52.34073455515145],[4.792662204512204,52.34076490181582],[4.792630718584252,52.34079524832405],[4.792599261959237,52.34082559497115],[4.792567790618125,52.34085594153589],[4.792536319233929,52.34088628809203],[4.792504847806644,52.340916634639555],[4.792491483129144,52.34092952792886],[4.792490150153807,52.340930446976586],[4.792488729862432,52.34093131165853],[4.792487236928078,52.34093212204836],[4.792485656557293,52.34093288705962],[4.792474767748771,52.340947176915655],[4.792449928553119,52.34097974082266],[4.792425074527454,52.34101231363767],[4.792400249811421,52.34104488659469],[4.792379383753677,52.34107223055099],[4.792378751932334,52.341074483320845],[4.792377988173409,52.34107672643965],[4.792377547119839,52.34107788365294],[4.792377121943503,52.341078951067736],[4.792376138569505,52.3410811571313],[4.79237503805139,52.3410833446304],[4.792373820389147,52.341085513565005],[4.79237250037628,52.341087655021596],[4.792371078012781,52.34108976900025],[4.79236953862553,52.34109185542719],[4.792367897008034,52.34109390538885],[4.792366138366761,52.34109592779883],[4.792364292047916,52.341097922804536],[4.79236234361922,52.34109987235782],[4.792360292960241,52.34110178544583],[4.792358140311814,52.34110364409419],[4.792355899865367,52.34110548432548],[4.79235355730904,52.34110727910438],[4.792351127556783,52.34110901053002],[4.792350550006812,52.34110940309142],[4.792348624920444,52.341110705637945],[4.79234602029464,52.3411123463062],[4.792343328232056,52.341113941595644],[4.792340563526236,52.341115482592926],[4.792337726177179,52.34111696929798],[4.792336278457406,52.34111769003491],[4.792335731939358,52.341117956922595],[4.79233481618489,52.341118401710816],[4.792331818876253,52.341119779757676],[4.792329442534977,52.34112081040057],[4.792303644489905,52.341130738097426],[4.792301077998961,52.341131722844686],[4.792294469394674,52.34113430508116],[4.792289482059187,52.34113635619793],[4.792284552693128,52.34113846153286],[4.792279695849178,52.34114063014701],[4.792274911647763,52.34114285305319],[4.79227018541575,52.34114513017754],[4.792265546378944,52.34114747065488],[4.792260979984655,52.341149865424285],[4.792256663876136,52.34115219853694],[4.792256486353315,52.34115230549841],[4.792252079917169,52.34115480892563],[4.792247746243966,52.34115735765764],[4.792243499886398,52.34115996075549],[4.79223934084446,52.34116261821914],[4.792235254565464,52.34116532098762],[4.79223127039568,52.34116806920849],[4.792227373541533,52.341170871795214],[4.792223549570784,52.341173710699586],[4.792219842261951,52.34117660411736],[4.792217201656603,52.34117873893256],[4.792216207836526,52.34117953385282],[4.792212675520347,52.34118250904064],[4.792209230640282,52.34118552960722],[4.792183744975787,52.34120827549592],[4.792150536248521,52.3412379211506],[4.792117327476847,52.341267566795686],[4.792084118781245,52.34129720344399],[4.792050909920768,52.34132684906998],[4.792017701136374,52.34135648569915],[4.791984492187091,52.34138613130599],[4.791964768785975,52.3414037381273],[4.791958529491199,52.341410510531986],[4.791954357607437,52.3414152171465],[4.791953239643501,52.3414165147586],[4.791950287953287,52.34141996022639],[4.791946320649282,52.341424730784496],[4.791942470127654,52.34142954686904],[4.791938707403503,52.34143438137075],[4.791935061582286,52.341439252411696],[4.791931518111318,52.34144415093088],[4.791928151441318,52.34144899641233],[4.791928091663848,52.3414490770021],[4.791924767566683,52.34145403055157],[4.791921545819849,52.341459011579275],[4.791918441096609,52.341464020159044],[4.791915453396995,52.3414690562909],[4.791912568168315,52.341474110913786],[4.791909785290095,52.34147919301499],[4.791907947432697,52.34148274295087],[4.791907134229345,52.34148429375488],[4.791904570845882,52.34148942189923],[4.791902139279967,52.34149456868229],[4.791899810305669,52.341499724969225],[4.791897598355239,52.341504908808275],[4.791895503549226,52.34151011121228],[4.791893525887673,52.34151533218116],[4.791892763663254,52.34151745846266],[4.791891650817881,52.341520562653926],[4.791888980290193,52.34152930336693],[4.791888581433159,52.3415349726817],[4.791888405596924,52.34153933089508],[4.791888361819965,52.34154368977282],[4.79188842063529,52.34154805815444],[4.79188859695722,52.34155241813935],[4.791888645647441,52.34155316437428],[4.791888905459051,52.34155676980141],[4.791889316553263,52.34156113096735],[4.791889845274699,52.34156547474941],[4.791890491382363,52.34156981912193],[4.79189126967007,52.341574155171564],[4.791892150791322,52.341578482750656],[4.791893149419415,52.34158280193303],[4.791894265554392,52.34158711271867],[4.791894770050752,52.34158888585922],[4.791895499316793,52.341591406120386],[4.791896835912866,52.34159569105156],[4.791898304809703,52.34159995867256],[4.791899876540275,52.341604217823],[4.791901566018915,52.34160845060229],[4.791903373125138,52.34161266599757],[4.791905297738468,52.34161687299612],[4.791907325426676,52.341621053549645],[4.791908726893213,52.341623783912276],[4.791909470863072,52.341625207731965],[4.791911719253889,52.34162934445647],[4.791914085272438,52.341633463796974],[4.791916569039263,52.341637556766244],[4.791919156001611,52.34164161430327],[4.791921845918484,52.341645654382404],[4.791924653704218,52.3416496591031],[4.79192756444453,52.341653646365906],[4.791930275664117,52.341657192221376],[4.791930578380455,52.34165759819647],[4.791933695512018,52.3416615145947],[4.791936930392027,52.34166540462164],[4.791940253794418,52.3416692591424],[4.791943695065807,52.34167307830468],[4.791958541643758,52.34168868395449],[4.791988090025724,52.34171975071475],[4.792013267832271,52.34174626561911],[4.792013786071172,52.341747014215514],[4.792014201355832,52.341747780269785],[4.792014498892436,52.34174857269533],[4.792014678921956,52.341749373517665],[4.792014741444389,52.34175018273684],[4.792014686580216,52.34175099136565],[4.792014607670995,52.341751404408974],[4.792014529002758,52.34175179947784],[4.792014239606341,52.341752588951415],[4.792013847737609,52.341753359933904],[4.792013338723232,52.34175411235155],[4.792012712804188,52.34175482822993],[4.792011999327126,52.3417555077166],[4.792011198292045,52.34175615081157],[4.792010295266596,52.3417567394666],[4.792009304803617,52.341757282742705],[4.792007946543477,52.34175789607158],[4.791994627123056,52.34176300607056],[4.791968502349411,52.34177209618309],[4.791919319526765,52.341789195302205],[4.791917447215518,52.341789841995535],[4.791866406593679,52.34180759684682],[4.791835033227326,52.34181851201866],[4.791839848461887,52.341823830076095],[4.791846200270858,52.34183055796519],[4.791875586538029,52.34186167786404],[4.791904943499607,52.34189279760781],[4.791934329728551,52.34192392647907],[4.791963701445769,52.34195504628184],[4.79199308787752,52.341986166151],[4.792022459556519,52.34201729492613],[4.79205184607057,52.34204841478041],[4.792081217831858,52.34207954354073],[4.792110589754764,52.34211066330637],[4.792139976392256,52.34214178313837],[4.792169348397434,52.34217290288919],[4.792198720323288,52.34220403161979],[4.792228092410735,52.34223515135576],[4.792257479092369,52.34226628014529],[4.792286851141658,52.34229740885364],[4.792316238026039,52.3423285286411],[4.792345610278047,52.34235964834734],[4.792374982450764,52.34239077703344],[4.792403761718997,52.342421255608166],[4.792404354785042,52.34242189672487],[4.792433638517056,52.34245306090248],[4.792462922410538,52.34248421608555],[4.792492206345075,52.34251537126117],[4.792519233024055,52.34254414229946],[4.792521490320667,52.342546526429466],[4.792550951263215,52.34257761956458],[4.792580412246983,52.34260871269226],[4.792609858477982,52.34263981472594],[4.792639319544191,52.342670907838695],[4.792668780651622,52.342702000943945],[4.792698227126623,52.342733093968064],[4.792713492999296,52.34274921393023],[4.792738027184223,52.34274058303052],[4.792788923601935,52.34272269226218],[4.7928353526871,52.34270636089279],[4.792836679331407,52.34270591816442],[4.792839316863351,52.34270511351894],[4.792839950236548,52.342704936943434],[4.792841997453515,52.34270438099227],[4.79284472134256,52.34270370260996],[4.792847473616197,52.34270309627277],[4.792850283621731,52.34270256212813],[4.792853122132205,52.34270209104137],[4.792855989027313,52.342701691999686],[4.792858869633421,52.342701364929454],[4.792861778744511,52.34270110091706],[4.792864701446309,52.342700917863354],[4.79286763797947,52.34270079779382],[4.792870602777009,52.342700758756585],[4.792873522711377,52.34270078240879],[4.792876441562868,52.342700886945934],[4.792879359572139,52.342701054393615],[4.792882276498561,52.34270130272617],[4.792885163235508,52.34270161382188],[4.792888034215992,52.342702005728825],[4.792890875007027,52.342702460398876],[4.792893685608619,52.34270297783205],[4.792896465780148,52.3427035760028],[4.792897065594761,52.342703713832464],[4.792899201088617,52.34270423686296],[4.792901891534036,52.3427049604126],[4.792904522442768,52.342705746577934],[4.792907108368154,52.342706604419966],[4.792909634756872,52.34270752487777],[4.79291210172924,52.342708498964065],[4.792914494370995,52.34270954457966],[4.792916827716725,52.34271063483661],[4.792919086852165,52.3427117876356],[4.792921257223981,52.3427129939158],[4.79292335350582,52.34271425375085],[4.792925375697687,52.34271556714078],[4.79292730924624,52.342716925024675],[4.792929139477833,52.34271832732887],[4.79293088106611,52.34271977412703],[4.792932519337418,52.34272126534546],[4.792934083759353,52.34272279214435],[4.792938801079588,52.342727768126124],[4.792968291902342,52.34275885231698],[4.79299778288664,52.34278992751313],[4.793027273671603,52.34282102067627],[4.793056764618113,52.34285210484468],[4.793075952747079,52.34287231593698],[4.793082976515565,52.34287929878975],[4.793086668514269,52.34288303828547],[4.793089911762928,52.34288631714904],[4.793096714468026,52.34289337079377],[4.793103428651936,52.34290045994503],[4.793110054194357,52.342907593590056],[4.793116026998972,52.34291415772475],[4.793116561988386,52.342914753607076],[4.793121246393865,52.3429199990508],[4.793127042636116,52.342926598249896],[4.793133385897764,52.342933991123495],[4.793137976973144,52.34293963156242],[4.793142464852561,52.34294530743447],[4.793143056372797,52.342946065381284],[4.79314680635667,52.342950955608075],[4.79315166553272,52.34295739730891],[4.793156406839289,52.34296387436914],[4.793161030396595,52.3429703778016],[4.793165580105537,52.3429769168145],[4.793166932858577,52.34297890991469],[4.793171897765161,52.34298622396461],[4.79317569430425,52.34299202219464],[4.793179402561368,52.34299783795706],[4.793182978274735,52.34300368900533],[4.793187813530448,52.34301191916213],[4.793188100150652,52.34301243290695],[4.793190362802963,52.34301661461607],[4.793192809119262,52.34302132752887],[4.793195152479317,52.343026057900445],[4.79319737808909,52.34303081464446],[4.79320011211228,52.34303705693179],[4.793201829432934,52.34304141565998],[4.793203429243614,52.34304578278615],[4.79320385262063,52.34304704320704],[4.793204896630025,52.34305017621111],[4.793206261180153,52.34305457810772],[4.793207522893973,52.34305898847593],[4.793208652303673,52.34306341615575],[4.793209678876995,52.34306785230719],[4.793210587940147,52.343072296856676],[4.793212519491657,52.343082579638],[4.793219232238369,52.34311829500429],[4.793220081646348,52.34312281115682],[4.793221751229301,52.343129641297445],[4.793223233297186,52.3431351313107],[4.793224818322454,52.343140603865],[4.793226535532466,52.343146068094924],[4.79322835557969,52.343151523853074],[4.793229192232866,52.34315370310647],[4.793232767734887,52.3431628616723],[4.793236121203972,52.3431710664139],[4.793241312040127,52.34318343275319],[4.793243503144433,52.3431885757995],[4.793244740925557,52.343191485079984],[4.793248301996739,52.34319952908226],[4.793251966146611,52.34320754663829],[4.79325341032413,52.343210385051904],[4.793256344384589,52.34321593627895],[4.793259366729152,52.34322146997336],[4.793260256064175,52.343223002367345],[4.793262521619792,52.34322696838162],[4.793265779468424,52.343232449330785],[4.793269140275083,52.343237912820975],[4.79327261907435,52.34324333196408],[4.793276502368765,52.34324922949193],[4.793280316263002,52.34325483007308],[4.793281497152099,52.343256507735326],[4.793284233355949,52.343260395220675],[4.793288268080992,52.34326594298288],[4.793292406004808,52.343271455311545],[4.793296661681024,52.343276941267455],[4.793301005882245,52.343282391716194],[4.793306272256951,52.34328911407619],[4.793331563387408,52.3433215432445],[4.793356883902471,52.34335397255451],[4.793382204334244,52.343386410846165],[4.793407539597053,52.34341884021869],[4.793432845428822,52.34345127842561],[4.793458166091616,52.343483707713325],[4.793478639054913,52.34350992905026],[4.793468936261924,52.34351342157478],[4.793440860216826,52.34352351784659],[4.793418429875024,52.34353172803206],[4.793390012219264,52.34354212816392],[4.793367850798238,52.34354998017617],[4.793317054937511,52.34356797955172],[4.793266244241456,52.34358598781891],[4.793215433624482,52.3436039870769],[4.793192475900521,52.34361212267008],[4.793171460540922,52.343619863556455],[4.793174867790312,52.34362405101065],[4.79317954566282,52.34362979074869],[4.793195374529819,52.343632386791754],[4.793211305671599,52.34364927398954],[4.793227078057457,52.3436659626561],[4.79320035690141,52.34366910909396],[4.793161642304374,52.34367365135153],[4.793148757371316,52.34368244866976],[4.793115552478605,52.34370513802689],[4.793110992960773,52.34370042349266],[4.793082593181133,52.34367109744919],[4.793083599791518,52.343669349876606],[4.793087086543048,52.343663210720145],[4.793075928324628,52.34365263894573],[4.793054862528472,52.34366085591306],[4.793053574348619,52.3436595192474],[4.793051012422529,52.34365686396423],[4.793022229917028,52.34366710039544],[4.792931818224205,52.34369993732916],[4.792931326166955,52.34369942255217],[4.792931267110132,52.343699449219095],[4.792917541055398,52.343698724180506],[4.792913735461728,52.34369469649942],[4.792908121250144,52.34368874532875],[4.792880266714472,52.343659260193355],[4.792883629583051,52.34365799182249],[4.792871257939466,52.34364488835561],[4.792841884471366,52.34361376878595],[4.792812496370469,52.343582649135136],[4.792802295292288,52.34357183947048],[4.792785944686972,52.34355450970628],[4.792783108431068,52.343551520489676],[4.792753646681881,52.34352042741715],[4.792724184973919,52.34348933433714],[4.792694723307182,52.343458241249664],[4.792665261681666,52.34342714815472],[4.792651456952518,52.343412581436205],[4.792635814771246,52.34339605512604],[4.792620374544876,52.34337979047535],[4.79260632376007,52.34336497085598],[4.792576862378615,52.34333386875138],[4.792547400797616,52.343302784613805],[4.792517924704394,52.34327169140782],[4.792488463205835,52.343240607255304],[4.792486639949966,52.34323868368553],[4.792462561657604,52.343213261946545],[4.7924590019893,52.34320950512089],[4.792429540693588,52.3431784119662],[4.792400079439099,52.34314731880406],[4.792370588878276,52.34311622548696],[4.792341127706252,52.34308513230987],[4.792311666455015,52.34305404811256],[4.792282205365433,52.34302295492058],[4.792252729763782,52.342991852660084],[4.792243266356865,52.342981864545905],[4.792226220520239,52.342963884081975],[4.792223268636207,52.342960768440385],[4.792193807670301,52.34292967522598],[4.792164331951447,52.342898590917564],[4.792138517639453,52.342871335851505],[4.792134885862156,52.34286748877478],[4.792105528217616,52.342836360105586],[4.79210499300178,52.342835782193156],[4.792102574302405,52.34283339724374],[4.792075949424743,52.34280531120713],[4.792046473991288,52.34277421788161],[4.792016998599077,52.34274312454862],[4.791987537801249,52.34271204026913],[4.791958062370998,52.34268095590845],[4.791928587223002,52.342649853565796],[4.791899097201613,52.34261876911631],[4.791869621895078,52.342587684733175],[4.791845905965467,52.34256265116247],[4.791847203629696,52.342562181335865],[4.791842344173198,52.342556872045165],[4.791827360856304,52.34254050173097],[4.79182551797969,52.342541139583126],[4.791812495085192,52.34252740357594],[4.791783019899818,52.34249631917084],[4.791753559549782,52.34246522584487],[4.791724069773315,52.34243414135102],[4.791708543740727,52.34241775930234],[4.791694594832195,52.34240304793626],[4.791665105017659,52.34237197241466],[4.791635630279591,52.34234086999774],[4.791606140547539,52.3423097944612],[4.791576665650805,52.34227871000375],[4.791547190795302,52.34224762553888],[4.791530072998608,52.34222958169305],[4.791517819298345,52.34221649664745],[4.791498649971294,52.3421960517074],[4.791488624768345,52.3421853057244],[4.791467851317021,52.3421630191868],[4.791454760179416,52.34215657192504],[4.791409014233179,52.342134033828486],[4.791363282644999,52.34211152274977],[4.791317536671064,52.342088993604975],[4.791288992953567,52.342074927724894],[4.791266996198105,52.34207381930701],[4.791208499596717,52.342070864318934],[4.791150003003236,52.34206790930193],[4.791091491623553,52.34206496316932],[4.791046618452304,52.3420626878976],[4.791033009719299,52.3420620081684],[4.790974513149521,52.342059053064666],[4.790963250839035,52.34205848401543],[4.790957173747598,52.34205862416558],[4.790950757960272,52.34205885248723],[4.790944164884684,52.342059169793544],[4.790937687989308,52.34205957756317],[4.790931298168674,52.34206005767385],[4.790924833652931,52.342060636273956],[4.790918382603307,52.34206130481984],[4.790916177967969,52.34206156334619],[4.790914061614593,52.34206180434165],[4.790911945381908,52.34206203634989],[4.790905550731977,52.342062875948024],[4.790899257709331,52.3420637969484],[4.790892978394096,52.342064789920165],[4.790886653730372,52.34206588152923],[4.790880460282136,52.34206703671399],[4.790874280299776,52.34206828184454],[4.790868128456683,52.3420696169949],[4.790862019667705,52.34207102426455],[4.790859884776926,52.34207155277622],[4.79085596836479,52.342072521701866],[4.790849974668637,52.34207410031964],[4.790844053373375,52.34207575120461],[4.790838204478987,52.34207747435681],[4.790834343862036,52.34207865927085],[4.790832354497559,52.34207927839369],[4.790826606022357,52.34208117282016],[4.790820974330457,52.34208311277401],[4.790815326515812,52.342085160500346],[4.790809795242969,52.342087271728516],[4.790807847724809,52.34208805284279],[4.790804380632654,52.34208943747137],[4.790798964814424,52.342091693086196],[4.790793665296487,52.342094030177364],[4.790788467767608,52.34209642170928],[4.790783342880909,52.3420988675341],[4.790778304826851,52.342101403674604],[4.790773353967653,52.34210400316916],[4.790766317248426,52.3421078504471],[4.79076243477191,52.34211066204596],[4.790740089146164,52.342126781443056],[4.790724441353246,52.342138063191456],[4.790716928615195,52.34214348093752],[4.790711271431007,52.342147317189905],[4.790705186300484,52.34215133104161],[4.790699028284615,52.34215530857429],[4.790692768157236,52.34215924065278],[4.790686479527161,52.34216310967243],[4.790684423251196,52.34216433962802],[4.790680074112117,52.342166933163966],[4.790673581017496,52.342170729249645],[4.790667044746732,52.342174462202564],[4.790660421158683,52.34217814078791],[4.790653695338355,52.34218178290626],[4.790646955688842,52.342185362039686],[4.790640941439008,52.342188468474504],[4.790640128722063,52.3421888868056],[4.790633214317253,52.34219236619116],[4.790626227268649,52.34219579128313],[4.790619167334714,52.34219918005593],[4.790613467142019,52.3422018476689],[4.790593958177532,52.342209982169685],[4.790545436633725,52.34223021181854],[4.790496915045728,52.342250441447355],[4.790448393534353,52.342270662068934],[4.790399857063665,52.342290900570845],[4.790351350137429,52.3423111212263],[4.790328196178111,52.34232076523108],[4.790302755850989,52.342331287494325],[4.790254088877933,52.34235139944884],[4.790205451207863,52.34237151153122],[4.790156798941091,52.34239161453218],[4.790112986749107,52.3424097196721],[4.790108131835871,52.34241172642622],[4.790059479360133,52.34243183837408],[4.7900108415139,52.342451950375846],[4.78997530761861,52.34246663692526],[4.789961435960439,52.34247131249335],[4.789910017703412,52.34248866014554],[4.78985861420075,52.34250599886213],[4.789812340766753,52.34252160183857],[4.789807065857278,52.342523193019986],[4.789775195442171,52.342532801903054],[4.789755851942529,52.342540613539605],[4.789706865786359,52.34256041807219],[4.789657850360298,52.342580213448954],[4.789608864237762,52.34260000895349],[4.789559863276977,52.34261981335072],[4.789523123563176,52.34263466444398],[4.789511051093468,52.34263976248641],[4.789462789687096,52.34266021770255],[4.789414513562646,52.34268067282471],[4.789398456072485,52.342687467401355],[4.789365831615277,52.342700748388225],[4.78931694661376,52.34272064314933],[4.789268061447408,52.34274054687729],[4.789219161805723,52.34276043253632],[4.789170276551781,52.34278033622358],[4.789153366705097,52.34278721633813],[4.78912245008148,52.342801162000356],[4.789085302764286,52.342817925306136],[4.789076133765603,52.34282317279638],[4.789033882902676,52.342847316263764],[4.789033130185351,52.34284763602099],[4.788991741150787,52.34286553728739],[4.788989562057442,52.342866074529844],[4.78898430550568,52.34286738714479],[4.788958862897105,52.342873675840444],[4.788931501837078,52.34288293879179],[4.788905305438272,52.34289180317256],[4.788881168330215,52.34290139698557],[4.788831935082961,52.342920966224376],[4.788782672566065,52.34294052630702],[4.788733439232071,52.3429600955046],[4.788703784271162,52.34297187238327],[4.788684191423322,52.34297964663291],[4.788655731309459,52.342990962175364],[4.788635117232407,52.342999378375545],[4.788586274990339,52.34301931799128],[4.788537447378176,52.34303925766092],[4.78848860492722,52.3430592062233],[4.78843976279606,52.343079127803705],[4.788411165522123,52.34309081109462],[4.788410678499824,52.343091015350446],[4.78839092013618,52.34309908531264],[4.788370099313727,52.343107590299],[4.788342208283951,52.34311913334177],[4.7882935978917,52.34313927174266],[4.788244958107813,52.34315940997493],[4.788196333074887,52.34317953927411],[4.788147707876615,52.34319967754032],[4.788099082634259,52.343219815786455],[4.78808991829011,52.343223616183394],[4.788050689217595,52.343240170894305],[4.788004774180311,52.343259558857575],[4.788002310673014,52.343260508082075],[4.78795265643789,52.343279679360265],[4.787903002038588,52.34329885960473],[4.787885314691914,52.34330569066217],[4.78785371007408,52.34331836522587],[4.787804606035195,52.34333807849854],[4.787755502195452,52.34335777377617],[4.787724044970246,52.34337039512499],[4.787706427417144,52.34337748715646],[4.78765735235253,52.34339721849064],[4.787608291796801,52.343416958865866],[4.787559231440275,52.34343668124621],[4.787510170918781,52.34345641259329],[4.787461095679824,52.3434761438455],[4.787454691879805,52.343478726850606],[4.787412658277091,52.34349645353128],[4.78736432245441,52.34351684460267],[4.787315971913451,52.34353723557975],[4.787267636123475,52.34355761762412],[4.787219270819836,52.343578008487015],[4.787170934941125,52.34359839049159],[4.787122598775084,52.34361879045068],[4.787074248133703,52.34363917234106],[4.787025897326448,52.34365956319869],[4.787012127066803,52.34366537140322],[4.786977720739467,52.343680089737745],[4.786929572848244,52.343700661341984],[4.78688143958639,52.34372123300089],[4.786839830219812,52.343739024545705],[4.786833248191798,52.34374175940627],[4.786784650865095,52.343761915231454],[4.786736068046713,52.343782080098265],[4.786704943721288,52.34379499946464],[4.786687108158776,52.343801910482036],[4.786658990347411,52.343812795867116],[4.786636382073614,52.34381995229216],[4.786607023674714,52.34382924951109],[4.786583877917975,52.343835998746016],[4.786567465291877,52.343840777863484],[4.786533586986334,52.343854411221784],[4.786493024725154,52.34387071597994],[4.786486109691861,52.343875282648334],[4.786446174465137,52.34390163896786],[4.786406253986637,52.34392798636094],[4.786392794018034,52.34393687889477],[4.786360200620527,52.343949898566585],[4.786311037497907,52.343969539019014],[4.786261874453483,52.34398917046375],[4.786212711243936,52.34400881087508],[4.786163547990924,52.344028451265835],[4.786114384816138,52.34404808264883],[4.786065206802125,52.34406772292391],[4.786016043418714,52.344087363252974],[4.785966865317747,52.34410700348689],[4.785917701969129,52.34412663478759],[4.785868553129426,52.34414627512947],[4.785819374898049,52.34416591530165],[4.785770211297306,52.344185555527844],[4.785721047653095,52.34420519573344],[4.785671869291293,52.34422483584388],[4.785622705681934,52.34424446702113],[4.785607537482264,52.34425052860367],[4.785576255642875,52.34426635893066],[4.785531009747642,52.34428927256886],[4.785485764049358,52.34431216821513],[4.785440518304408,52.344335063843886],[4.785395272269112,52.34435797742968],[4.785350011756639,52.344380872948875],[4.785304765871674,52.34440376852526],[4.785267883299704,52.3444224463913],[4.785259621562601,52.34442674549147],[4.785250088824536,52.34443170322565],[4.785212691414655,52.34444830226707],[4.785165180225256,52.34446941566456],[4.78511765443837,52.344490519980965],[4.785070143280539,52.3445116243528],[4.785059690171836,52.34451627180262],[4.785041291655975,52.34452569630099],[4.78503059802325,52.344530764952516],[4.785023996581388,52.34453383216374],[4.785019831870351,52.344535770319155],[4.785008993075375,52.34454072138827],[4.784998096312581,52.34454561823442],[4.784987127029669,52.3445504517957],[4.784976586955048,52.3445550179052],[4.784976085104738,52.34455523105936],[4.78496497053781,52.344559956025314],[4.784953798246998,52.34456460879387],[4.784942553436168,52.34456919827747],[4.784927886395807,52.34457508256704],[4.784926720789829,52.344575544002275],[4.784913694536627,52.34458055583294],[4.784900610315147,52.344585513440194],[4.784887468369305,52.34459039884954],[4.784877881816669,52.34459390923923],[4.784874253781004,52.34459522996075],[4.784860996020719,52.344599997935944],[4.784847665739991,52.34460470262572],[4.784827037674182,52.344611877773104],[4.784819812652604,52.34461439354131],[4.784803697585949,52.344619919919595],[4.784787509875775,52.34462539199892],[4.784775701761742,52.3446293134999],[4.784771264318337,52.344630800866774],[4.784745866275784,52.344639093173],[4.784723153052964,52.34464527801393],[4.784716937092364,52.344646972032486],[4.784671889944613,52.344662750017804],[4.784620944506133,52.34468060110589],[4.784569984352444,52.34469845209722],[4.784519038832111,52.344716303141205],[4.784468078596555,52.344734154088385],[4.784417132994366,52.344752005088246],[4.784366172554892,52.34476986497848],[4.784315227114959,52.34478769795979],[4.784264266715681,52.344805548818655],[4.784213320949789,52.34482339973023],[4.784162360468646,52.344841250544995],[4.784143751601103,52.34484777076327],[4.784123409058584,52.344853356397444],[4.784110982937997,52.34485847006442],[4.784062267225168,52.344878516318445],[4.784013551346251,52.344898571539474],[4.783964820993257,52.34491860869104],[4.783916105026383,52.34493866387165],[4.783910969278248,52.34494077679479],[4.783867186017409,52.34495853824051],[4.783818238104565,52.344978376490566],[4.783785227174768,52.34499177081577],[4.783769391646953,52.34499830511605],[4.783720704364502,52.34501839631409],[4.783672017160205,52.34503847850469],[4.783623329789688,52.34505856966239],[4.783574642497342,52.34507865181264],[4.78352596971317,52.34509874300481],[4.783477282332783,52.345118825114724],[4.783428594908377,52.345138907204436],[4.783379907317699,52.34515899826119],[4.783331234479681,52.34517908038545],[4.783318852322385,52.34518418520607],[4.783282329496487,52.3451989635728],[4.783233351830939,52.34521879244217],[4.783184389040711,52.345238603391564],[4.783135411410048,52.34525842323286],[4.783099065411909,52.345273139531024],[4.783086303377792,52.345278116558674],[4.783036746019953,52.345297394130164],[4.782987203171263,52.34531668074284],[4.782937660401902,52.345335958347455],[4.782888132264048,52.345355236006135],[4.782860085421902,52.345366156805525],[4.782839168802418,52.345375073773255],[4.782791002850134,52.345395616644],[4.782772403562872,52.345403556773576],[4.782742576016291,52.34541591549132],[4.782693945897905,52.34543605149959],[4.78264531573543,52.34545618748771],[4.782596700080994,52.34547633251786],[4.782548069830345,52.345496468465726],[4.78249943953561,52.34551660439343],[4.782454897312657,52.34553505350354],[4.782450838056135,52.34553677639983],[4.782402628337489,52.34555727395027],[4.782354403777315,52.34557778039315],[4.782306193847197,52.345598286891196],[4.782258087452011,52.3456187309841],[4.782257954768357,52.345618775245036],[4.782208237577919,52.34563788088502],[4.782183674050964,52.3456473183639],[4.782077294585871,52.345686851212136],[4.782000962330038,52.34572591746415],[4.781953244518969,52.34575120786137],[4.781913209673685,52.34576840354795],[4.78186367677708,52.345789037917456],[4.781795152445607,52.34581190296457],[4.781720950214761,52.34583357050522],[4.781652536575291,52.345848311037564],[4.781565285240639,52.34586046550147],[4.781472315614234,52.345863629766505],[4.781404076138349,52.34586559933963],[4.781320630132651,52.345870978302194],[4.781294904908339,52.345871961089],[4.781192863844764,52.34591288150682],[4.781038254636746,52.34597418663367],[4.781032790909105,52.34599599907734],[4.781025416733576,52.34600618047034],[4.781007747886981,52.34601364873429],[4.780976393760613,52.34602596323779],[4.780967393332494,52.34602949428988],[4.780959496575379,52.3460328062992],[4.780951733239764,52.34603602012533],[4.780927559551349,52.346045890757274],[4.780878710378018,52.34606583615572],[4.780829875712787,52.3460857905962],[4.780781041126467,52.346105736029195],[4.780732206619084,52.34612567245467],[4.780683357270314,52.34614561777185],[4.78063452242963,52.34616557213116],[4.780621240228579,52.3461709866316],[4.780585557314489,52.34618539098513],[4.780536533947891,52.34620517356901],[4.78048752508957,52.34622496519488],[4.780438516310432,52.34624474781308],[4.780389507364784,52.34626453939803],[4.780340513173139,52.346284322050614],[4.780291504263055,52.346304104607505],[4.780242480511618,52.34632389605585],[4.780193471391319,52.34634368755903],[4.780155914050005,52.34635884613509],[4.780144418817434,52.346363433879965],[4.780095250276347,52.34638307173173],[4.780046067016955,52.346402709487634],[4.779996898511867,52.34642233831107],[4.779947744515227,52.34644197617645],[4.779926524780571,52.34645044168444],[4.779899257157181,52.3464622286148],[4.77985129140957,52.346482969053085],[4.779845415643707,52.34648550941861],[4.779802702468517,52.34650313105243],[4.779754026418021,52.34652322068213],[4.779705335648614,52.3465433102163],[4.779656659510056,52.346563399805646],[4.779607968652575,52.34658348929948],[4.779597061408417,52.34658799911959],[4.779583645158156,52.346593538645415],[4.779559292425957,52.34660357884846],[4.779510616278353,52.34662365939007],[4.779461925288773,52.346643748823375],[4.779413248930076,52.346663838311805],[4.77936455785242,52.34668392770473],[4.77931588140566,52.34670401715283],[4.779267204914873,52.34672410658079],[4.779218513705112,52.34674419591316],[4.779169837126264,52.346764285300694],[4.779121145828425,52.34678437459272],[4.779076587118498,52.34680275943637],[4.779072469161515,52.346804463939954],[4.779023778021884,52.34682453521718],[4.7789750867151,52.34684461546145],[4.778926380689306,52.34686469561009],[4.778877689417645,52.34688476682675],[4.77882899810198,52.346904838023256],[4.778780306619128,52.34692491818675],[4.778731615092255,52.34694499833008],[4.778682908846339,52.34696507837775],[4.778634217231414,52.346985158480685],[4.778585525695699,52.34700522957625],[4.778536833992745,52.347025309638816],[4.778488142245767,52.34704538968119],[4.778439435779718,52.34706546962791],[4.778390744067963,52.347085540642716],[4.778342066863992,52.347105620700034],[4.778299382216177,52.34712321497653],[4.778293360265869,52.347125700586155],[4.77824466829879,52.347145780527605],[4.778195961612605,52.347165860373345],[4.778147269557479,52.347185940274386],[4.778102282243919,52.34720448432782],[4.778098592133428,52.34720602023079],[4.77804987113341,52.347226063991656],[4.778001149842726,52.34724612570667],[4.777952443183151,52.34726618747706],[4.777903721804458,52.347286249151644],[4.777855000381757,52.34730631080607],[4.777830661666608,52.34731634173901],[4.777820389041261,52.347320567052996],[4.777806308388713,52.347326363604154],[4.77775758687802,52.347346425218156],[4.777708865323319,52.347366486811936],[4.777660143724612,52.3473865483855],[4.777611436757057,52.34740661001443],[4.77756272986895,52.34742666263604],[4.777514008138243,52.34744672414896],[4.777465301038711,52.34746678571731],[4.777416579219992,52.34748684718982],[4.777367857480744,52.347506899654974],[4.777319150249224,52.3475269611627],[4.777279579290895,52.34754325889497],[4.777271848480412,52.34754620301327],[4.777270239990724,52.34754684184753],[4.777265562261475,52.34754868720886],[4.777259348676894,52.34755122570544],[4.777253207479651,52.34755383647741],[4.777247109689816,52.34755649241192],[4.777241084287293,52.347559220621825],[4.777235146317795,52.347561994221245],[4.777229266183875,52.34756483103326],[4.777223458684245,52.34756772214629],[4.77722286735282,52.34756803367261],[4.777217738494111,52.34757066763604],[4.777212090814747,52.34757367641405],[4.777206515893163,52.34757673050599],[4.777201028281064,52.3475798389746],[4.77719561330323,52.34758300174435],[4.777190271083163,52.34758620982803],[4.777185030847805,52.347589472364135],[4.777180100273587,52.3475926286421],[4.777179863246702,52.34759278920135],[4.777139938026322,52.347618836857315],[4.777099746381125,52.34764504490736],[4.777059554688447,52.34767125294356],[4.777019406974062,52.34769746119286],[4.776979200511174,52.3477236691257],[4.776939008676065,52.34774987712026],[4.776898831592329,52.347776076189525],[4.776858654213982,52.34780229321929],[4.776818462236441,52.34782850117236],[4.776778284886728,52.34785470918719],[4.776738107489548,52.347880917188185],[4.776730258866468,52.34788601774289],[4.776727826526838,52.34788786567735],[4.776725307000336,52.347889650247176],[4.776722700039744,52.34789138942679],[4.77672000564506,52.34789308321624],[4.776717223939894,52.34789472262821],[4.776714369475959,52.347896316725716],[4.776711442500479,52.34789784753423],[4.776708428090909,52.34789933295257],[4.776705341169801,52.34790075508192],[4.77670219641249,52.34790211399808],[4.776698978896427,52.34790342759967],[4.776694966192974,52.3479049348315],[4.776694892445494,52.34790496141451],[4.776645358363738,52.34792426340293],[4.776595824362575,52.34794355638325],[4.776546290318391,52.347962849342736],[4.776496756231189,52.34798214228132],[4.776447222100961,52.34800143519898],[4.776397687927714,52.348020728095825],[4.776348168386817,52.348040021047524],[4.776337470609359,52.34804419011192],[4.776308486262475,52.34805580557617],[4.776298952780159,52.348059621133636],[4.776249809393638,52.34807930246265],[4.776200680886396,52.348098965872495],[4.776151537536537,52.348118638173275],[4.776102408818554,52.34813831052922],[4.776053280180809,52.348157973877434],[4.776004136700399,52.348177646116504],[4.775954993052698,52.34819732732224],[4.775905864160655,52.34821699959597],[4.775856720673454,52.348236662786206],[4.775807591694392,52.348256335018895],[4.77575846267182,52.348276007231014],[4.775709319054093,52.348295670359576],[4.775660175145212,52.34831535144199],[4.775611045992089,52.34833502359246],[4.775561902243826,52.34835468665935],[4.775561607000508,52.348354810963144],[4.775512772879824,52.34837436775596],[4.775463658271646,52.34839403992066],[4.775414528820597,52.34841372097615],[4.775365384650518,52.34843340193522],[4.775316269787903,52.34845308302551],[4.775267140330164,52.348472755032205],[4.775217996153394,52.34849242694242],[4.775168881160222,52.34851210797109],[4.775119751571936,52.348531779916144],[4.775070607016707,52.3485514697391],[4.77502147734137,52.34857114164306],[4.774972362298073,52.348590813602414],[4.774923217736184,52.34861049437654],[4.7748740879303,52.34863016621882],[4.774824972508477,52.348649856090894],[4.774775827939981,52.3486695278162],[4.774726697879521,52.34868920858407],[4.774678305647842,52.34870859655183],[4.774677582575148,52.348708880420155],[4.774628394221411,52.34872852489435],[4.774579235299417,52.3487481605127],[4.774530076209911,52.34876780509763],[4.774480902277245,52.34878745857326],[4.774431743100766,52.34880710311708],[4.774382583880808,52.348826747640324],[4.774333410065839,52.348846383079824],[4.774284250758929,52.34886602756196],[4.774235091408542,52.34888567202347],[4.774185917339024,52.34890531638843],[4.774136743226015,52.3489249607328],[4.774087583869329,52.34894459614545],[4.7740384095452,52.34896424943585],[4.773989249977402,52.34898389379452],[4.773940090366128,52.34900353813263],[4.773939027880512,52.34900395505521],[4.773890945014503,52.34902320948779],[4.773841828846551,52.34904288996168],[4.773792712635077,52.34906257041504],[4.773781481450432,52.34906706903436],[4.773743566904446,52.34908225968292],[4.773694450605912,52.3491019400952],[4.773645334263856,52.34912162048696],[4.773596188526823,52.34914130070598],[4.773547072221971,52.34916097206947],[4.773497941073611,52.34918065232352],[4.773448809757441,52.3492003415442],[4.773399693197759,52.34922002183323],[4.773350561918797,52.34923970202566],[4.773301445272071,52.349259382273615],[4.773252299230274,52.34927906234881],[4.773203182496495,52.34929874255572],[4.773194519200674,52.349302211853065],[4.773154065719192,52.34931842274205],[4.773104919546785,52.34933810275562],[4.773055802682431,52.34935778290092],[4.77300667109875,52.34937746294951],[4.77295753934716,52.349397151964745],[4.772908422352224,52.349416832048405],[4.772859290637942,52.34943651203536],[4.772810159004535,52.3494561830146],[4.772761027203194,52.349475862960496],[4.772711910034169,52.34949554296199],[4.772662792697182,52.34951523193016],[4.772613646089391,52.34953491173822],[4.772564528789778,52.34955459167809],[4.772515411446649,52.34957427159748],[4.772466264708243,52.34959395134386],[4.772417147153572,52.34961364020934],[4.772368029679856,52.349633320067106],[4.772318882935337,52.34965299076464],[4.772269765374581,52.349672670581334],[4.772220633094392,52.34969235030118],[4.772171500521595,52.34971204797489],[4.772122382954791,52.349731718742774],[4.772073250544001,52.34975139840103],[4.772024132765611,52.34977107811504],[4.77197498559182,52.34979075765588],[4.771943475175599,52.34980338353676],[4.771925867850965,52.349810428341605],[4.771876735266058,52.349830107917676],[4.771827573534916,52.34984976934624],[4.771778440987567,52.349869439893986],[4.771729308396705,52.349889110421216],[4.77168016121099,52.349908771864385],[4.771631028533107,52.349928442350546],[4.77158189568705,52.34994812180329],[4.771532733694801,52.349967783108454],[4.771483600886365,52.34998745353297],[4.771434468034414,52.35000712393689],[4.771385320587632,52.350026785256716],[4.771336187648658,52.350046455619584],[4.771287039865423,52.350066134872634],[4.771237892288098,52.35008579613082],[4.771188759218571,52.350105466431984],[4.771139626105532,52.35012513671264],[4.771090478397681,52.350144797909145],[4.771041330521557,52.35016446807227],[4.770992197153193,52.350184147278405],[4.770943049314801,52.35020380841325],[4.770893915984181,52.350223478591126],[4.770844782610053,52.350243148748454],[4.770795649192409,52.35026281888523],[4.770746486503879,52.35028247986141],[4.770697352874367,52.35030215894425],[4.770648219451019,52.350321820032235],[4.770599071183198,52.35034149001032],[4.770549937547977,52.35036116004438],[4.77050078919311,52.35038082998134],[4.770482207291085,52.35038826495866],[4.770451640794716,52.35040049989779],[4.770402521580187,52.35042017893384],[4.770353387770895,52.350439848885664],[4.770304239241931,52.35045951874045],[4.770255105345604,52.35047918865118],[4.770205971405764,52.35049885854136],[4.770156822621283,52.35051853732166],[4.770107688469441,52.350538216157915],[4.770058569075224,52.35055788606295],[4.770009420285112,52.35057755579442],[4.769960286127678,52.350597225581836],[4.769911151801731,52.3506169043359],[4.769862002756033,52.350636582992884],[4.769812868468028,52.35065625271865],[4.769763748812741,52.35067592250044],[4.769714614437715,52.35069559218513],[4.769665465217887,52.3507152707599],[4.769616330755818,52.350734940403484],[4.769567196125169,52.35075461901371],[4.7695180468998,52.35077428853958],[4.76946892685835,52.3507939671853],[4.769419792222206,52.35081363674667],[4.769370642866267,52.350833306210944],[4.76932150814309,52.3508529757312],[4.769298114099173,52.3508623447482],[4.769272373251265,52.35087265421813],[4.769223223639612,52.350892332607884],[4.769216109493498,52.35089518055564],[4.769174146865335,52.350912047308945],[4.769125070172657,52.350931753002335],[4.769075992935753,52.35095149462393],[4.769026901229266,52.350971218174024],[4.76897780947918,52.3509909417036],[4.768928732361837,52.35101066528933],[4.768879655200911,52.351030388854554],[4.76883056332005,52.35105011232261],[4.76878148607195,52.351069835846815],[4.768732408655027,52.35108956833773],[4.768683331319751,52.35110929182094],[4.768634239389776,52.35112900621979],[4.768585161967336,52.35114872966196],[4.768536084376035,52.35116846207087],[4.76848700686642,52.35118818547205],[4.768467316919253,52.35119609069683],[4.768460777812045,52.35119874387322],[4.768452673859104,52.35120204498013],[4.76843800156753,52.351207990121004],[4.768389068729807,52.35122785804334],[4.768340135973627,52.351247716958156],[4.768296871379266,52.351265277644636],[4.768247953091734,52.351285145584995],[4.768199020084007,52.35130501342822],[4.768150087157863,52.35132487226387],[4.7681011540626,52.351344740066274],[4.768052467414157,52.351364824845746],[4.768003867401164,52.351385008924645],[4.767971964485029,52.35139825185898],[4.767954211260665,52.351404090942594],[4.767932255424942,52.35141132811173],[4.767920842542099,52.35141508822419],[4.767902514037543,52.35142113101009],[4.767888992506697,52.351425590124634],[4.767876665411117,52.351429651035346],[4.767850802223723,52.35143816199094],[4.767799105046756,52.351455193025885],[4.767747407955611,52.35147221505094],[4.767695696022921,52.351489245963634],[4.767643998601637,52.351506285917594],[4.767592301266186,52.35152331686168],[4.767540589214603,52.35154034770627],[4.767488891799905,52.35155737860494],[4.767437194345588,52.35157440948092],[4.76738548230064,52.351591431270165],[4.767333784767089,52.351608462100714],[4.767307935922689,52.35161698200104],[4.767282072391845,52.351625501818845],[4.767230374779037,52.35164253260398],[4.767178691803158,52.351659563443256],[4.767126979434562,52.35167659410609],[4.767075281828474,52.351693615835906],[4.767023584057199,52.35171064653025],[4.766971871569734,52.351727677124934],[4.766920173593602,52.351744716760976],[4.766900871766508,52.351751068865475],[4.766870183169804,52.35176349997549],[4.766821219917167,52.35178334911703],[4.766772256872051,52.35180318026383],[4.766723293657559,52.35182302037741],[4.76667434507594,52.35184286054751],[4.766625381773976,52.351862700620245],[4.766576418553949,52.35188253168543],[4.766527455164514,52.35190237171734],[4.766478506407972,52.351922211805835],[4.766429542931061,52.351942051796954],[4.766380579536129,52.35196188278047],[4.766331615846018,52.35198173171798],[4.766329770577463,52.35198248600379],[4.766328737302483,52.351982903011525],[4.76632789608127,52.35198323114843],[4.766282188871776,52.3520011198254],[4.766232718075895,52.35202048970677],[4.766183262039302,52.352039850657086],[4.766133805959598,52.35205921158662],[4.766084335034321,52.352078581405515],[4.766040398642902,52.35209577823156],[4.766034950993933,52.352098032550224],[4.765986349639518,52.35211818883332],[4.765937748240991,52.35213834509621],[4.765889117319111,52.35215851017213],[4.765840515832338,52.352178666394806],[4.765808169008797,52.35219207718645],[4.765791653518106,52.352198578556795],[4.765742254791109,52.35221801152711],[4.765709415822405,52.35223092537705],[4.765703246462944,52.352233355647456],[4.765697062426073,52.35223578584044],[4.76569089319112,52.35223820712304],[4.765684709152899,52.35224063731542],[4.765678539790738,52.35224306758453],[4.765672370553763,52.352245488866124],[4.765643457459191,52.35225685943107],[4.765594058602551,52.35227629233908],[4.765589881794945,52.35227793315137],[4.765544500398521,52.352295571596464],[4.765494942403277,52.352314832858646],[4.765445369688287,52.35233409402278],[4.765395796804389,52.35235336415321],[4.765376773423264,52.352360760061266],[4.765346339906483,52.35237273373847],[4.765296970018639,52.352392175662985],[4.765294328138912,52.35239321335759],[4.765247570733995,52.352411617412514],[4.765198186082906,52.352431059218404],[4.76514880151456,52.35245049201638],[4.765099416777026,52.35246993378074],[4.765050031996262,52.35248937552438],[4.765000647172269,52.352508817247255],[4.764951247754229,52.352528249885026],[4.764901877520617,52.352547691643565],[4.764852477890106,52.352567133226955],[4.764803107696093,52.35258656595684],[4.764753707979123,52.35260600749877],[4.76470432289577,52.35262544909709],[4.764654952446059,52.352644890751876],[4.764605552725464,52.35266432324432],[4.764556167512436,52.35268376478041],[4.764506782256179,52.35270320629569],[4.764471344682074,52.35271715770816],[4.764465175313458,52.3527195789264],[4.764458991015055,52.35272201804144],[4.764457396956693,52.35272264779029],[4.764452821518978,52.35272444824618],[4.764446652022225,52.352726878450625],[4.764440482650913,52.35272929966754],[4.764434313026696,52.352731738858466],[4.76440801161398,52.352742089264055],[4.764358626228035,52.35276153071716],[4.764309226121952,52.35278097207217],[4.764259855326463,52.35280041356097],[4.764210455260072,52.352819845887346],[4.764161084378149,52.352839287334625],[4.764111684099132,52.352858728606606],[4.764062298580011,52.352878160947974],[4.76401291289148,52.35289760225574],[4.76396352715972,52.352917043542746],[4.76391414138473,52.35293648480901],[4.763864755692744,52.352955917067305],[4.763815355154332,52.35297535821477],[4.763765983926639,52.352994799496045],[4.763716597978744,52.353014240679265],[4.763667212113894,52.35303367285457],[4.763617826079549,52.35305311399628],[4.763568425451263,52.35307254605278],[4.763519054007476,52.353091987230286],[4.76346965329275,52.35311141924523],[4.763420281762531,52.353130860381256],[4.763370880835028,52.35315030134181],[4.763321494667669,52.35316973337185],[4.763272108330744,52.35318917436825],[4.763244964982989,52.35319986161575],[4.763238795354125,52.35320229175672],[4.763232625724588,52.35320472189741],[4.763226441417324,52.35320715196041],[4.763222721950592,52.35320861534393],[4.763220271786434,52.35320958210042],[4.763214102154872,52.35321201224017],[4.763207932522632,52.35321444237955],[4.763173335400836,52.35322806528598],[4.763123949186984,52.35324748824583],[4.763117380989212,52.35325007805993],[4.763075228974815,52.35326756182086],[4.763026624871189,52.35328772586651],[4.762978035274098,52.35330789895665],[4.762954382894445,52.353317705765804],[4.762929257106319,52.35332790925136],[4.762880348444356,52.35334780199594],[4.762831439865026,52.35336768573296],[4.762782516691251,52.35338756038504],[4.762739144064155,52.35340519038037],[4.762733477827255,52.353407308576955],[4.762683337749896,52.35342603531327],[4.762633227111003,52.3534447531959],[4.76258310162626,52.35346347996692],[4.762570928098078,52.35346802648038],[4.762533367195363,52.3534825772817],[4.762483748367676,52.353501801015476],[4.762434129623568,52.353521015741116],[4.762384539937781,52.353540248575136],[4.762349842226931,52.353553681966346],[4.762334645911475,52.35355920115895],[4.762288156699443,52.35357610449736],[4.762284158431212,52.353577557391645],[4.762233671035799,52.35359590461553],[4.762211894369358,52.3536038247487],[4.762183950983611,52.35361500185997],[4.762134810001363,52.35363466837506],[4.762085668975598,52.35365433486958],[4.76207325455894,52.35365930248792],[4.76206711377676,52.35366175968396],[4.762060958316702,52.353664216802116],[4.762054817533164,52.353666673997466],[4.762048676748945,52.35366913119253],[4.762042550641246,52.35367158846479],[4.762036395178468,52.3536740455817],[4.761987357312488,52.35369367662913],[4.761968477409462,52.35370122554251],[4.761936827023771,52.35371192463413],[4.761885442767993,52.35372931426207],[4.761864352270706,52.35373644702755],[4.761832817507288,52.353745187355216],[4.761779326267498,52.35376001326074],[4.761740954381399,52.35377062285628],[4.761725835118709,52.353774830154876],[4.761672343934272,52.35378964702471],[4.761658212214303,52.353793562935394],[4.761622684033328,52.35380860953471],[4.761574397523477,52.35382906227555],[4.761526125646406,52.35384951507406],[4.761477824497061,52.35386995871041],[4.761429537853791,52.35389041139165],[4.761381265843323,52.35391086413063],[4.761332979237856,52.35393130778497],[4.761284677657123,52.353951769316204],[4.761236405513248,52.35397222199565],[4.761188118774379,52.35399266559043],[4.761139817186959,52.35401311807491],[4.761091544909685,52.35403357069477],[4.76104325803743,52.35405401422999],[4.760994956316569,52.35407446665484],[4.760946683905894,52.35409491921517],[4.760898396773413,52.35411537167799],[4.760850109596455,52.3541358241209],[4.760801822375022,52.354156276544],[4.760753535235979,52.354176719960044],[4.760705247925601,52.35419717234341],[4.760656960570748,52.35421762470693],[4.760619526781348,52.354233478811544],[4.760624220075918,52.35424102647149],[4.760645117560539,52.35427462575428],[4.760666029881018,52.354308216123805],[4.760675072112146,52.35432275237101],[4.76064694076057,52.35433366747874],[4.760597349266501,52.354352908545124],[4.760547743052039,52.3543721495129],[4.760527197974108,52.35438012079702],[4.760503679693063,52.354364761901955],[4.760463522642471,52.35433853848967],[4.760423351088866,52.3543123059988],[4.760420471237334,52.35431043026761],[4.760397786658817,52.354316071339184],[4.760371403094862,52.3543248295701],[4.76031978636053,52.35434195664266],[4.760268184009904,52.35435910174462],[4.760244971278358,52.35436679820286],[4.760233084641717,52.35437074381178],[4.760216552518556,52.35437622869416],[4.760164935537862,52.35439336468594],[4.760159508335764,52.35439516945201],[4.760113333194803,52.35441050073289],[4.76006171626151,52.35442762769222],[4.760017826981656,52.35444219809412],[4.760010692680754,52.35444535097017],[4.759963115420926,52.35446640899915],[4.759915523438506,52.35448746693103],[4.759867946088423,52.35450852492142],[4.759841476599837,52.35452023058784],[4.759820339338249,52.35452958273692],[4.759790206555827,52.35454291374753],[4.75977216761791,52.354550107256436],[4.759722981009163,52.35456973658086],[4.759673779806529,52.35458935681972],[4.759624593237933,52.354608977115795],[4.759576484185454,52.35462817168927],[4.759575406498776,52.35462860637846],[4.759526205165743,52.35464822655553],[4.759524935653396,52.354648732129654],[4.75947687359843,52.35466771120408],[4.759022709310281,52.35485904339367],[4.758897446208215,52.35490950130779],[4.758521419205999,52.35506095388573],[4.758364340113705,52.35511804603194],[4.758330020651599,52.35513050957303],[4.758312978907891,52.355136701521516],[4.758294505909727,52.35514341614482],[4.758207659208301,52.35517497830548],[4.757399073215701,52.35548971068892],[4.756961409758644,52.35569829854396],[4.756689178034866,52.35583228633353],[4.75651570315431,52.35594164281239],[4.75633272752397,52.35604601408093],[4.756216898155887,52.356131464136524],[4.756164290247706,52.356173642192815],[4.756146397851116,52.356187990245964],[4.756142180853687,52.35619137415109],[4.756130435697597,52.35620079369296],[4.756027669453866,52.35628318544484],[4.755769245167639,52.35652853207194],[4.75566862037697,52.356649106251666],[4.755525411735843,52.356885072545325],[4.755486220062402,52.35696637401784],[4.75544069058259,52.35706080882047],[4.755355681457764,52.357256721171524],[4.755312282903514,52.35741279684238],[4.755303181604178,52.35750350735538],[4.755293104088256,52.3576040093882],[4.755267538246853,52.35782519818556],[4.755268151678679,52.357848093459936],[4.755269686692188,52.35790626189324],[4.755268978860593,52.35796008621872],[4.755268511734515,52.35799494751096],[4.755277044078063,52.358077168775864],[4.75528736354837,52.358146259374784],[4.755302956224998,52.35823986995324],[4.755326977717116,52.35833433442713],[4.755389796462487,52.35855366715152],[4.755426175322059,52.35865559453806],[4.755464882403689,52.35879815931334],[4.755495198386252,52.35888774099238],[4.75549533954557,52.3588881372101],[4.755495423780541,52.35888840729442],[4.755507228783923,52.358923307109315],[4.755515958824727,52.35896384385587],[4.755532289613651,52.35903968939248],[4.755565344408223,52.3591472703033],[4.755662157751414,52.359512521821046],[4.755677970728238,52.35957217749183],[4.755769229558852,52.35987603937224],[4.755773206262003,52.359888535685634],[4.755900462066135,52.360288408641985],[4.755894894094915,52.36039496554703],[4.755894309059793,52.360406161254964],[4.755903742948565,52.360441641567654],[4.755909665989264,52.36046386409188],[4.755913265056816,52.36047711336195],[4.75592294878201,52.36051257702924],[4.755932617843106,52.360548040617225],[4.755942301854753,52.3605834863082],[4.755951970946542,52.360618949894096],[4.755961654861036,52.360654404570205],[4.755970905206658,52.3606883469789],[4.755971353342543,52.36068986831067],[4.755981610684125,52.36072526312756],[4.755991882721491,52.360760658021576],[4.756002154775135,52.3607960529145],[4.7560124121655,52.360831447728046],[4.756022684251684,52.36086684261868],[4.756025063306778,52.36087504321038],[4.756032706417736,52.36090226313908],[4.756042640266429,52.36093770116304],[4.756052588938327,52.360973130277074],[4.756062522946386,52.36100855931177],[4.756070221881136,52.361035986254684],[4.756071450790103,52.36104041481537],[4.756072456970196,52.3610439883454],[4.756072694378942,52.361044843454316],[4.756073937968026,52.3610492720932],[4.756075181557358,52.36105370073212],[4.756076425146935,52.361058129370974],[4.756077668736758,52.361062558009834],[4.756080812110373,52.36107379157111],[4.756082287996604,52.3610794348044],[4.756091560444855,52.361114932211144],[4.756100832779995,52.36115043860408],[4.756110119937367,52.36118593608719],[4.756119377750115,52.36122143341281],[4.756128664936957,52.36125693089396],[4.756137937586664,52.36129241930881],[4.756138730996153,52.36129547041008],[4.756136531574405,52.36132830917302],[4.756135372803106,52.361345784308554],[4.756127705028915,52.36136363818343],[4.756117000567912,52.36138855827185],[4.756120073281054,52.361398569110776],[4.756130874948634,52.36143390389581],[4.756141691313076,52.361469238757905],[4.756152507694631,52.36150457361874],[4.756163324093305,52.361539908478406],[4.756174125829292,52.361575243258606],[4.756184956942003,52.361610578194075],[4.756195773392027,52.36164591305009],[4.756206575179331,52.36168124782667],[4.756217391663577,52.36171658268024],[4.756228208164941,52.36175191753264],[4.756239024683422,52.361787252383785],[4.75624984121902,52.36182258723376],[4.756260643091838,52.36185792200428],[4.756271474341567,52.36189325693004],[4.756282290800714,52.36192860076354],[4.756293092852651,52.36196392654323],[4.756303924153769,52.3619992614654],[4.756314726112114,52.36203459622983],[4.756325542767523,52.36206993107131],[4.756336359440046,52.36210526591159],[4.756340063075566,52.36211737426748],[4.756346970226449,52.36214062661679],[4.756357492821853,52.362175995838555],[4.756368015561707,52.36221135607205],[4.756378538062649,52.36224673427864],[4.756389060708049,52.36228210349693],[4.756399583497891,52.36231746372691],[4.75640464136611,52.362334486646056],[4.756405706066636,52.36233807845962],[4.75640678544739,52.36234167035137],[4.756407850148258,52.362345262164894],[4.756408802903275,52.362348466905615],[4.756409867732246,52.362352049731996],[4.756410106176614,52.36235283294291],[4.75641093243361,52.36235564154546],[4.756420599384083,52.362388210988385],[4.756431107543808,52.362423571136716],[4.756441237245628,52.362457670972454],[4.756441600784528,52.36245894917988],[4.756452094169642,52.36249431823479],[4.756462572891253,52.3625296872103],[4.756473066181826,52.362565065250045],[4.756483544936641,52.36260043422325],[4.756494038388207,52.36263580327352],[4.756504531728634,52.362671181309764],[4.756509449007608,52.362687772058614],[4.756513983839069,52.36270441469647],[4.756514569489116,52.362706592868825],[4.756515198157698,52.36270884317296],[4.756516412348807,52.36271328063658],[4.756517611987734,52.3627177090349],[4.756518826051569,52.362722155485606],[4.75652002581873,52.362726574896726],[4.756521240138558,52.36273100337315],[4.75652423949422,52.36274205639436],[4.756533909642423,52.362777510931735],[4.756543579678215,52.3628129744552],[4.756553235049127,52.362848437899515],[4.756562890435363,52.36288390134272],[4.756572545964664,52.3629193557978],[4.756582201509287,52.362954810251885],[4.756591871621755,52.36299027377029],[4.756601527069287,52.36302573720949],[4.756602657155844,52.363029895601485],[4.756609830028805,52.36306132826016],[4.756617971390405,52.363096927437],[4.756626098084632,52.363132526534905],[4.756634224664054,52.36316813461905],[4.756642351511867,52.363203724728216],[4.756643540446801,52.36320890804433],[4.756687358490937,52.36320623837454],[4.756691695427234,52.36320892186826],[4.756712273350415,52.36322170429264],[4.75673290949601,52.3632345229747],[4.756736271283263,52.36323660807727],[4.756774138165014,52.36326013313205],[4.756783845042522,52.36326616172482],[4.7567893658961,52.363286782216],[4.756790745439842,52.363291984521226],[4.756791094059776,52.3632932806235],[4.756792139664282,52.363297186904575],[4.756793533889048,52.36330238928795],[4.756794928114134,52.363307591671244],[4.756796322339548,52.36331279405457],[4.756797716565285,52.363317996437864],[4.756800588119652,52.36332875217177],[4.756810082066897,52.36336423270623],[4.756819576029214,52.36339971323971],[4.75682905532618,52.36343519369401],[4.756830128893504,52.363439198989525],[4.756831193020832,52.36344180213527],[4.756832347146271,52.363444270942956],[4.756833648459167,52.36344671357101],[4.756835096959541,52.36344913001931],[4.756835312696565,52.36344944574171],[4.756835571580998,52.363449824608615],[4.756836678222384,52.3634515022355],[4.756837441599987,52.36345253989947],[4.756837844479423,52.36345311726512],[4.756838377311891,52.36345384811562],[4.756840223844325,52.36345614984175],[4.756842203011579,52.36345841632288],[4.756844300260934,52.36346063849368],[4.756846530400528,52.36346280744517],[4.756848893174981,52.36346494115155],[4.756851359606528,52.36346701249514],[4.756852332469242,52.36346777265217],[4.75685394424791,52.36346903054128],[4.756856647099132,52.363470995289866],[4.756859468287892,52.3634728977538],[4.756862393133763,52.3634747378549],[4.756865406956309,52.363476515514954],[4.756868538988708,52.36347823987748],[4.756870011242126,52.36347898471786],[4.756870157024966,52.363479057396624],[4.756871760508534,52.363479865850444],[4.756875070749651,52.36348144735666],[4.756878470222804,52.36348294844752],[4.7568819588003,52.36348437811019],[4.756885521801694,52.3634857362665],[4.756889159354659,52.363487013929294],[4.75689287145918,52.363488211098606],[4.756896658115246,52.36348932777437],[4.756898091307831,52.363489721881514],[4.756900475281524,52.36349036372208],[4.756904381807432,52.36349131026733],[4.756908318715839,52.363492185071664],[4.756912315750641,52.36349296132998],[4.756916357848338,52.363493665925624],[4.756920430711511,52.3634942718189],[4.756924534084774,52.363494796984114],[4.756947740409784,52.36349723040718],[4.756954812422783,52.36349858028007],[4.757010921321284,52.36350919700431],[4.757029370428102,52.363512692611934],[4.757055541077928,52.363530726668614],[4.757068975359057,52.36353998372939],[4.75707505281634,52.363544168451114],[4.757094564694218,52.363557601243265],[4.757133558996848,52.363584475648736],[4.75714047976508,52.36358924007578],[4.757143735388937,52.363591567272465],[4.757147337983911,52.36359427380405],[4.757150822497369,52.36359702464617],[4.757154188674033,52.36359983777304],[4.757157436641524,52.36360270419758],[4.757160551846986,52.36360561485453],[4.75716354884325,52.36360857880912],[4.757166427757933,52.363611587074324],[4.757168089976775,52.3636134294356],[4.757169173910538,52.36361463957192],[4.757171787301044,52.36361773630196],[4.757174282609918,52.36362087734258],[4.757176630603798,52.363624053550346],[4.757178846090772,52.36362725601636],[4.757180943496047,52.36363050279294],[4.757182893586258,52.36363378473672],[4.757184696616623,52.36363708387344],[4.757186352331866,52.36364041817737],[4.757187890220559,52.36364377881768],[4.757189152881268,52.363646877346525],[4.75718926636883,52.363647156572796],[4.757190510010004,52.36365056058615],[4.757198985623788,52.363682305722264],[4.757208450603306,52.36371778606661],[4.757217915597852,52.36375326640994],[4.75722736592688,52.363788746674196],[4.757236845632011,52.363824227093716],[4.757237193886254,52.36382555015596],[4.757247604475272,52.36385957950182],[4.757258407760121,52.3638949051817],[4.757269225487431,52.363930248912766],[4.757273322336442,52.36394364458361],[4.757274683825447,52.363948055858316],[4.757276030506519,52.363952476041995],[4.75727737718786,52.36395689622572],[4.757278738677668,52.363961307500354],[4.757280043487079,52.36396557466835],[4.757280085359541,52.36396572768404],[4.75728143216929,52.36397013888052],[4.757290846568025,52.36400091831887],[4.757301649921279,52.36403624399387],[4.757305943641512,52.36405025188226],[4.757311864917931,52.36407164742733],[4.757321638745861,52.36410710243914],[4.7573270293511,52.364126580754814],[4.757329063360662,52.36413222693776],[4.757330836691707,52.364137620074864],[4.757332295215002,52.36414243631671],[4.757332477642084,52.36414303048319],[4.757333971658685,52.36414844909747],[4.757335333166925,52.36415389397018],[4.757336533060624,52.364159346970766],[4.757337586020393,52.36416480817733],[4.757338506599239,52.36417028665517],[4.757339265690979,52.36417576427378],[4.757339526129279,52.36417810249154],[4.757339892401695,52.36418125916361],[4.757340372305862,52.36418675327238],[4.757340690722751,52.36419224652188],[4.757340876886055,52.36419774805552],[4.75734090156197,52.364203248729936],[4.757340793984195,52.364208757688495],[4.7573405429171,52.36421403220037],[4.757340539727194,52.36421425687877],[4.757340123855037,52.36421976419699],[4.757339576239416,52.36422524385074],[4.757339069589237,52.364228872232474],[4.75733850127444,52.364231673407076],[4.757337800705801,52.36423448286584],[4.757336953840592,52.364237255594915],[4.757335960295995,52.36424001855571],[4.757334820199581,52.364242762761116],[4.75733353367892,52.36424547922402],[4.757332115414681,52.364248168022414],[4.757331408324067,52.36424936862744],[4.757330565406841,52.364250829156404],[4.75732886897469,52.36425346254785],[4.757327026245801,52.36425605920957],[4.757325066581539,52.36425861929784],[4.757322975301199,52.36426114273447],[4.757320737851668,52.36426362045426],[4.757318383594315,52.36426605261344],[4.757315912529137,52.364268439211926],[4.757313309847816,52.3642707891588],[4.757310590741449,52.36427306658363],[4.757307754827221,52.364275298447765],[4.757304802232731,52.36427747576411],[4.7573031564693,52.36427860845962],[4.757301718277267,52.36427959845449],[4.757301214539678,52.36427991933547],[4.75729854725814,52.364281648779055],[4.757256471837789,52.36430317540058],[4.757228608554072,52.36431745256999],[4.757211408793323,52.364326240999915],[4.757166375191089,52.364349297751055],[4.75712131205295,52.3643723633157],[4.757076263676355,52.36439541995405],[4.757031215252945,52.36441847657505],[4.756995957445838,52.36443651617252],[4.756998108999198,52.36444422119643],[4.757008088443095,52.36447965935104],[4.757018053605035,52.364515070465046],[4.757028018399786,52.36455050853938],[4.757037983338003,52.36458593762551],[4.757047948164367,52.36462137569772],[4.757057913261846,52.364656795794595],[4.757067878247472,52.36469222487754],[4.757077872610598,52.36472765411568],[4.757082286711001,52.364743523128695],[4.757083545183921,52.36474795183213],[4.757084774295378,52.364752380379315],[4.757086032768796,52.36475680908276],[4.757087261880743,52.3647612376299],[4.757087793585272,52.36476308296208],[4.757088520227006,52.36476567532044],[4.757089749467093,52.36477009488041],[4.757097758618295,52.364798512041816],[4.75710217515805,52.36481421029826],[4.757108753116034,52.364833820770386],[4.757120556484495,52.36486903493691],[4.757132359743943,52.36490425808915],[4.75714417795822,52.36493946334383],[4.757155981254944,52.3649746864933],[4.757167799378875,52.36500990073235],[4.75717961752146,52.36504511496999],[4.757191406320764,52.36508032904996],[4.757203209692025,52.36511555219384],[4.757210759375909,52.365138079881774],[4.757214777930844,52.36515079206053],[4.757225934226551,52.36518609264827],[4.757237075986509,52.3652213841695],[4.757248232317489,52.36525668475469],[4.757259388793729,52.36529197635151],[4.757270530478947,52.365327276856064],[4.757275561056066,52.36534316711545],[4.757280216715112,52.36536271341967],[4.75728872618395,52.36539830550127],[4.757297221368074,52.36543387054248],[4.757305687203512,52.365469435426625],[4.757314196968122,52.36550500953138],[4.757321984161692,52.365537703690464],[4.757322677511633,52.365540574491966],[4.757323066124515,52.36554215841479],[4.75732411898052,52.365546595008595],[4.75732517158153,52.365551049576666],[4.757326238991474,52.36555549523571],[4.75732730640163,52.365559940894734],[4.757328359130873,52.36556438647561],[4.757331172494548,52.36557615750407],[4.75733965306504,52.36561172246297],[4.757343312220192,52.36562700323813],[4.757349162605765,52.36564720301743],[4.757359422304603,52.365682588696],[4.757369652402152,52.36571799219153],[4.757379912005887,52.36575338685503],[4.757390156689495,52.36578879941355],[4.757400431134541,52.36582418516583],[4.757403004505266,52.365833213632214],[4.757410646615795,52.36585958857876],[4.757420876794477,52.365894992068775],[4.757430743649082,52.36592909937972],[4.757431151288285,52.36593037781766],[4.757442116838218,52.365965695338986],[4.757453082405498,52.36600101285915],[4.75746404799013,52.36603633037803],[4.757475028273402,52.36607164797378],[4.75748048937789,52.366089284147215],[4.757481865378619,52.36609371347012],[4.75748324163477,52.36609812481873],[4.757484603337462,52.36610252710212],[4.75748597908386,52.36610697439928],[4.757487355723549,52.36611135878644],[4.757488702490593,52.36611577896594],[4.757496944592968,52.36614230090157],[4.757507925055894,52.36617760950644],[4.757518846555692,52.366212935772026],[4.757529334892104,52.36624671382868],[4.757529753518985,52.36624825297113],[4.757539013507841,52.36628375015304],[4.757548288192779,52.366319247412044],[4.757557562764887,52.36635475365722],[4.757566837479283,52.36639025091429],[4.757576097399439,52.36642575707948],[4.75758538682471,52.36646125441276],[4.757594647156964,52.36649673361461],[4.757603907121264,52.36653223977694],[4.757608196992365,52.36654861141992],[4.757608559067336,52.36654999746841],[4.75761321114465,52.36656774617251],[4.75762244190301,52.36660324318965],[4.757625993464251,52.366616806708286],[4.757632393089041,52.366638672134485],[4.757642726519881,52.36667406715971],[4.757653089585197,52.36670944436563],[4.757663452411844,52.36674483954472],[4.757673800828466,52.366780216670314],[4.757684149133946,52.366815602781934],[4.75769449745582,52.36685098889242],[4.757704860348125,52.36688638406698],[4.757712813951302,52.36691359650979],[4.757714855962383,52.366921795262996],[4.757723689706561,52.36695734408491],[4.757732508910705,52.36699288384079],[4.757740188637213,52.36702387869288],[4.757741300295953,52.36702831559401],[4.757741328001346,52.36702843258286],[4.757742411699866,52.36703277046943],[4.757743508677434,52.36703720729248],[4.757744605527695,52.36704165310268],[4.757745702505699,52.36704608992571],[4.757746814165539,52.36705052682681],[4.757750147361051,52.36706396334983],[4.757758981161359,52.36709951216819],[4.757762952738383,52.367115558549784],[4.757768594378213,52.3671349752515],[4.757774810044036,52.36715636333518],[4.75777886930512,52.36717036994941],[4.757789158929985,52.36720576472422],[4.757799448571154,52.36724115949791],[4.757809723546937,52.367276554192436],[4.757820013093201,52.36731195795101],[4.75783025886564,52.36734734350005],[4.757837636560454,52.36737272834438],[4.757840548571993,52.367382738269285],[4.75784834671231,52.36740953643393],[4.757850823612914,52.367418132959315],[4.75786099551534,52.36745355406331],[4.757871182498168,52.367488948282855],[4.757881354560363,52.36752436039748],[4.75789155612976,52.36755976368],[4.757901728351727,52.367595166805316],[4.757911915271629,52.367630570007584],[4.757922102080189,52.36766598219586],[4.757932303714225,52.36770138547394],[4.757939578880094,52.36772676077686],[4.757942299691089,52.36773679664552],[4.757951957236141,52.36777225994395],[4.757961614796522,52.36780772324137],[4.75797127237223,52.36784318653776],[4.757980930090747,52.367878640846016],[4.757990587697109,52.36791410414037],[4.758000245446273,52.36794955844663],[4.758009316271373,52.36798291547307],[4.758009902955816,52.36798503072605],[4.758010530626716,52.36798736190426],[4.758011730682792,52.36799178129604],[4.758012945166092,52.367996218740075],[4.758014145095168,52.368000647118876],[4.758015344897011,52.36800508448487],[4.758016544699093,52.368009521850816],[4.758019546053696,52.368020484952204],[4.758029188911932,52.36805595715163],[4.758034032433466,52.36807368887444],[4.758038861404346,52.36809141153178],[4.75804731801958,52.368122527325816],[4.758048445692782,52.36812687442993],[4.758057794702228,52.36816236304005],[4.758067114235053,52.36819786048029],[4.758076448592155,52.36823334901049],[4.758085768154594,52.368268846448785],[4.758095117095906,52.3683043440422],[4.758103461711915,52.36833611534538],[4.758104554271802,52.368339833115634],[4.758114844678992,52.368375209880334],[4.758125164084266,52.36841061376138],[4.758135483760801,52.368445999667024],[4.758145788644145,52.36848139448065],[4.758156078989164,52.36851678022801],[4.758166383777716,52.368552184026534],[4.75817668883749,52.368587569849666],[4.7581799096101,52.3685985970259],[4.758187023277873,52.3686229558277],[4.758197372416786,52.3686583418826],[4.758207706762496,52.36869373684552],[4.758218070743809,52.36872911398904],[4.758228419804488,52.36876450902766],[4.758238769009001,52.368799895078055],[4.758241667030986,52.36880986896396],[4.758248971280373,52.36883528933441],[4.758259114456737,52.36887071023907],[4.758269272586277,52.36890611324639],[4.758279430731917,52.36894151625255],[4.758289588766239,52.368976928244784],[4.758292541080363,52.36898721699069],[4.758293814602504,52.36899163676874],[4.758295087870053,52.368996074521014],[4.758296346710428,52.36900049422105],[4.758297620105905,52.36900492298619],[4.758298893501631,52.36900935175133],[4.758299761498936,52.3690123403139],[4.75830016702503,52.36901377152931],[4.758309905010617,52.36904774323881],[4.758320063093255,52.36908315522775],[4.758322554222659,52.36909179675432],[4.758330280176049,52.3691185495533],[4.75834054106716,52.369153962085946],[4.758350787547034,52.36918935656521],[4.758356401104095,52.369208719152866],[4.758361034043148,52.3692247510434],[4.758371295237851,52.369260145598446],[4.758381541639054,52.36929554906153],[4.758391802993676,52.36933093462721],[4.758402049299971,52.36936634707518],[4.758412310559709,52.36940174162575],[4.758422571835712,52.36943713617521],[4.758432818445555,52.369472530645574],[4.758443094309114,52.36950793425792],[4.758453355761299,52.3695433198169],[4.758463616974966,52.369578723349015],[4.758464358584715,52.369581306787545],[4.758473260649475,52.369614186515065],[4.75848290433929,52.36964964968007],[4.75848565309839,52.36965980252133],[4.758486867546718,52.369664248946286],[4.758488067694951,52.36966866833181],[4.75848928214376,52.369673114756765],[4.758490467482596,52.36967754305145],[4.758491682059267,52.369681980489204],[4.758492533361919,52.36968511276609],[4.758492867398577,52.36968640878386],[4.758502162272451,52.3697205848382],[4.758511791580405,52.36975602994797],[4.758521420521505,52.369791502018074],[4.758531049605266,52.36982696510008],[4.758533003642558,52.3698341387564],[4.758541060832782,52.3698624032467],[4.758551160808421,52.36989779692447],[4.758561260545328,52.36993320857533],[4.758571360170879,52.36996862921227],[4.75858143044725,52.37000404969223],[4.758582031740556,52.37000617400666],[4.758589662738608,52.37003964915586],[4.75859774821684,52.37007524783912],[4.758605848263207,52.370110855586674],[4.758618951537311,52.370168501029],[4.758622033711948,52.370182071001466],[4.758630133924328,52.37021766975952],[4.758635994373531,52.37024345991937],[4.758636573350957,52.37025337654073],[4.758638663272004,52.37028930289964],[4.75864075332367,52.370325220271226],[4.758642828568526,52.37036114655161],[4.75864436289808,52.370387578839576],[4.758644918371995,52.37039708189685],[4.75864700830608,52.370433008254615],[4.758647422101273,52.37044007486489],[4.758655815011219,52.37046849391828],[4.758666282665642,52.37050386256963],[4.758676750081947,52.370539249194046],[4.758687173721173,52.37057461760924],[4.75868809897784,52.37057771432546],[4.758698994535088,52.37060983165987],[4.758710962450462,52.37064502851429],[4.758722915701897,52.37068022528931],[4.758732148771051,52.370707390503135],[4.75873263463455,52.37071558995836],[4.758734812750702,52.37075151678006],[4.758736976187398,52.37078744352355],[4.758739124817271,52.3708233791759],[4.758741288515394,52.370859287944555],[4.758743451962225,52.370895214687124],[4.758745615412439,52.37093114142939],[4.75875518606015,52.370966613161045],[4.758764756723054,52.37100208489165],[4.758774327655817,52.37103753864696],[4.758783868855871,52.37107301920683],[4.758784749571364,52.37107615163665],[4.758792410356178,52.37110858433737],[4.758796941625469,52.37112767151636],[4.75880084883458,52.37114416689578],[4.758801749241843,52.37114798250292],[4.758808611144978,52.371179799791236],[4.758816299925407,52.37121544128341],[4.758817264201194,52.37121993131444],[4.758822136748698,52.37125120776248],[4.758827708904885,52.37128699979959],[4.758833295880302,52.37132278292701],[4.758837103851842,52.37134732186011],[4.758839397153245,52.37135854182005],[4.758840400263493,52.37136340055676],[4.758841267454645,52.371363342244685],[4.758848398664401,52.371362679044054],[4.758897860297289,52.37135815104471],[4.758906053522425,52.371357151940146],[4.758959816423829,52.37135063347351],[4.758971569180469,52.37134921285041],[4.759058782441093,52.37133959128394],[4.759062142187775,52.37135120337292],[4.758974623533198,52.37136165019911],[4.758911068043847,52.371368044803255],[4.758901833338602,52.3713689664787],[4.758854323095659,52.37137567988429],[4.758847392990533,52.37137665872563],[4.758843229410584,52.37137722083517],[4.758846689164243,52.371394208166336],[4.758854010425678,52.37142988365496],[4.758861302587238,52.371465541012746],[4.758866040671588,52.37148869177122],[4.75886828565152,52.37150125065617],[4.75887469583113,52.37153697523412],[4.758881091083206,52.37157271770778],[4.758882887684878,52.37158272167715],[4.758886457635144,52.371608517636176],[4.758891339269992,52.371644341953974],[4.758896265089377,52.37168015751797],[4.758901220155619,52.37171598222451],[4.758906131180214,52.371751806696786],[4.758911057023116,52.37178762225945],[4.758915997429751,52.37182344688669],[4.75892092316103,52.37185927143557],[4.75892586345607,52.37189510504902],[4.758930789457642,52.37193091162277],[4.758935715085141,52.37196674515735],[4.758940655658342,52.37200256079521],[4.75894558130153,52.37203839432896],[4.758946367797525,52.37204403385317],[4.758948479640813,52.372074289006875],[4.758950995837044,52.37211020862004],[4.758953497481217,52.372146119167844],[4.758956013558045,52.37218204776753],[4.75895851521009,52.37221795831473],[4.75896103142211,52.37225387792669],[4.758963533082023,52.37228978847326],[4.758966001516014,52.37232493488027],[4.758965961074428,52.37232571660423],[4.758964189241982,52.372361649412944],[4.758962417406541,52.37239758222142],[4.758960645695402,52.37243350604241],[4.758958873726671,52.37246944783738],[4.758957101882246,52.37250538064494],[4.758955330162123,52.37254130446507],[4.758953558184404,52.37257724625915],[4.758951786330991,52.37261317906584],[4.75895001434728,52.372649120859336],[4.758948242742481,52.37268503569119],[4.758947068050644,52.37270887408844],[4.758946323917787,52.372720976704926],[4.758944111674243,52.37275689818585],[4.758941913983207,52.372792828731455],[4.758939701732258,52.372828750211674],[4.758937489350297,52.37286468067878],[4.758935291902794,52.372900593249206],[4.758933079513425,52.37293652371566],[4.758930881931239,52.372972445272644],[4.758928669534465,52.37300837573848],[4.758926471944896,52.37304429729481],[4.758925137152612,52.37306595979344],[4.758923041436952,52.373080176357135],[4.758917717753541,52.37311597347039],[4.758912423301384,52.373151779726115],[4.758907114284214,52.37318757691634],[4.758901805003722,52.37322339208021],[4.758896510652837,52.3732591893473],[4.758891187053223,52.37329497747092],[4.758885892430341,52.37333079271122],[4.758880583242392,52.37336659888595],[4.758875274173064,52.373402396073075],[4.758869979651458,52.37343820232473],[4.758869185029027,52.3734435009083],[4.758862044592912,52.373473814806566],[4.758853669517993,52.373509389001256],[4.758845264807323,52.37354498101346],[4.758836889705264,52.37358055520643],[4.75882849977852,52.37361613830772],[4.758820124522003,52.373651721486056],[4.75881173444077,52.37368731357271],[4.758803329916788,52.37372288760631],[4.758794954619549,52.37375847078204],[4.758786564752235,52.37379404489182],[4.758778189300522,52.373829637052914],[4.758769784722175,52.37386521108304],[4.758761394686768,52.373900794177345],[4.758753019449025,52.37393636836158],[4.758744629259113,52.37397196044122],[4.758736268678162,52.374007534701654],[4.758729222402573,52.374037408686895],[4.758727951880784,52.374043127169294],[4.75872017786661,52.37407875846855],[4.758712374471902,52.37411438961113],[4.758704585748503,52.37415002083082],[4.758696797012467,52.374185652049725],[4.758689008136435,52.374221292254965],[4.758681204818476,52.37425691440723],[4.758673416044515,52.37429254562379],[4.758665627130552,52.374328185826656],[4.758657823647273,52.3743638169637],[4.75865004964681,52.374399439268686],[4.758642245883491,52.37443508837836],[4.758634471857778,52.374470710681805],[4.758626668323898,52.37450634181563],[4.758618908702286,52.37454198216971],[4.758611090459006,52.374577613224],[4.758610163719309,52.37458186851909],[4.758599093341633,52.374612790677155],[4.758586495047188,52.37464790202256],[4.758573911416828,52.37468301344423],[4.758561327639036,52.374718133851495],[4.758548743968588,52.374753245269964],[4.758536160150704,52.374788365673965],[4.758523576440168,52.37482347708918],[4.758510963341177,52.37485858834687],[4.758498394147352,52.37489370882398],[4.758485810376676,52.374928820234345],[4.758473226458548,52.37496394063022],[4.758460642647784,52.374999052037374],[4.758452095746255,52.37502287823427],[4.758447516518505,52.37503408866072],[4.758433276529475,52.375068966574744],[4.758419021833648,52.375103844408784],[4.758404767115285,52.37513872224083],[4.7583904978175,52.3751735910058],[4.758376272167845,52.37520848696403],[4.758362017636743,52.375243346815836],[4.758347762955685,52.3752782156528],[4.758333522681579,52.37531310253994],[4.758319267955468,52.37534797137287],[4.758305013079381,52.3753828491909],[4.758290758180761,52.37541772700699],[4.758276503259602,52.37545260482106],[4.758262263255226,52.37548746473688],[4.75824800816156,52.37552235153403],[4.758233767984702,52.375557220432995],[4.758221430130555,52.375587389831544],[4.758219146626987,52.37559204236615],[4.758202298561788,52.375626474980805],[4.758185435530915,52.37566092548898],[4.758168572728675,52.37569535802022],[4.758151753826147,52.37572979976999],[4.758134876286843,52.3757642322179],[4.758118013278257,52.375798673728205],[4.758101150498338,52.37583309726163],[4.758084287437155,52.37586753876658],[4.758067439161713,52.37590197135976],[4.758050575920443,52.375936421846475],[4.758033727592438,52.375970854434286],[4.758026876323973,52.3759848569614],[4.758015487900208,52.37600501897989],[4.757996281674094,52.376038989642616],[4.757977060606336,52.376072969210995],[4.757957854321151,52.37610693986692],[4.757938648006437,52.376140910519425],[4.757919456219311,52.37617489023371],[4.75790024971802,52.37620886986655],[4.757881043442256,52.376242831521736],[4.757861836754361,52.37627682013493],[4.757842630292003,52.376310790770425],[4.757823423800115,52.37634476140257],[4.757804246648114,52.37637873218741],[4.757785025284916,52.37641271172183],[4.757765818704447,52.376446682343754],[4.757760410655487,52.37645625255716],[4.757745616465903,52.37648044095009],[4.757725048353325,52.37651410772981],[4.75770445071232,52.37654778333666],[4.757683882537053,52.376581450108674],[4.757663314075305,52.37661513485101],[4.757642716595358,52.376648792472054],[4.757622148198489,52.3766824682196],[4.757601550528234,52.37671613482002],[4.7575809967535,52.37674981063791],[4.757560399020521,52.37678347723062],[4.757539815813419,52.376817152884676],[4.75751923244735,52.37685083752195],[4.757498649432742,52.37688449519407],[4.757478080816444,52.37691817091463],[4.757457497611533,52.376951837566075],[4.757436928932549,52.3769855132789],[4.757416330980017,52.377019179844595],[4.757395762238336,52.377052855549714],[4.757375164095431,52.37708653109474],[4.757354595418693,52.377120197805034],[4.757352836433801,52.37712306454166],[4.757329534637944,52.377152699165656],[4.757304034802982,52.37718509033168],[4.757278564428309,52.37721747266104],[4.757253079076032,52.37724987288074],[4.757227593941765,52.37728225512048],[4.75720210864252,52.37731464634156],[4.757176637990987,52.377347037635026],[4.757151137804397,52.37737943775355],[4.757125652520888,52.37741181997024],[4.757100181757438,52.377444211246434],[4.757074696271621,52.37747660243871],[4.75704921074849,52.37750899362525],[4.757023725315751,52.3775413758189],[4.756998239590278,52.377573775981034],[4.756972768768028,52.37760615824129],[4.756947283095645,52.37763854940479],[4.756937097831685,52.37765149153613],[4.756922323879335,52.37767109615755],[4.756897730222081,52.37770375270442],[4.756873151469153,52.377736391349856],[4.756848557739297,52.377769047885955],[4.756823964100882,52.37780169542957],[4.756799355740979,52.37783434288962],[4.756774805957782,52.377866999644105],[4.756765166626317,52.377879755923516],[4.756752187686566,52.377900152018526],[4.756730886068198,52.37793366192303],[4.756709555302626,52.37796715369288],[4.756688253619661,52.37800066358919],[4.756666966717439,52.37803416457245],[4.756651298709639,52.37805878857361],[4.756647056108603,52.3780679604904],[4.756631114188993,52.3781025504902],[4.756619946095906,52.37812675804939],[4.756621834764414,52.378137499529835],[4.756628141017389,52.37817324160671],[4.756634447280411,52.37820898368304],[4.756640738868157,52.37824472568054],[4.75664181338916,52.37825075322248],[4.756652383850817,52.37827993894294],[4.756665073300482,52.378315031936786],[4.756677777455481,52.378350125007245],[4.756690496315851,52.37838521815436],[4.75670023273198,52.37841212551731],[4.756702567761662,52.37842039773026],[4.756712491325784,52.37845583550135],[4.756722415033428,52.378491264284264],[4.756732338629041,52.37852670205325],[4.756742277181372,52.378562121925135],[4.756752215493928,52.378597559770164],[4.756762139264572,52.37863298854886],[4.756772048109961,52.378668435222494],[4.75677730434982,52.37868713983493],[4.756778473319217,52.37870408804226],[4.75678097342504,52.378740007572766],[4.756782900475661,52.37876768224892],[4.756782313380322,52.378775920926124],[4.756779790664826,52.378811840677116],[4.756777238701838,52.37884775128429],[4.756774715977898,52.37888367103464],[4.756774457357571,52.37888739959027],[4.756759698156841,52.37891832888134],[4.756743228486296,52.378952835190994],[4.756729241460923,52.37898213281181],[4.756724929610405,52.37898687338118],[4.756696343288886,52.379018286281934],[4.756667771740171,52.37904969026662],[4.756667547878251,52.37904994073263],[4.756635051165532,52.37907954422518],[4.756602272187745,52.37910937090027],[4.756569507468001,52.37913922460562],[4.756561591703611,52.37914642660458],[4.756528958223381,52.37916498334685],[4.756485930396853,52.379189461593555],[4.75644290252282,52.37921393982438],[4.756399889286932,52.37923841811767],[4.756364679271534,52.3792584440739],[4.75635520735332,52.37926146743436],[4.75630314102357,52.37927810504687],[4.756251059969139,52.37929474255813],[4.756207801576319,52.379308568945625],[4.756198979003574,52.37931137105925],[4.75614689774322,52.379328017511476],[4.756126847304004,52.37933441781073],[4.756094946696426,52.37934479945184],[4.756043082317447,52.37936168069712],[4.755991218026966,52.37937855293242],[4.755939353569142,52.37939543413201],[4.75588748894394,52.37941232429585],[4.755835624407249,52.37942920544974],[4.755810127336189,52.37943750902808],[4.755783311868058,52.37944557188802],[4.755730624500357,52.379461441975906],[4.755681285346417,52.37947630528992],[4.755678066578779,52.37947750147443],[4.755655461131835,52.37948591930746],[4.755630491519907,52.37949843194581],[4.755585034548748,52.379521198217724],[4.755539577146873,52.379543991433245],[4.755494134640095,52.3795667667353],[4.755458810386791,52.37958445498862],[4.755450628776781,52.379590711777425],[4.755447421568945,52.379593157320016],[4.75541386450391,52.37961875525512],[4.755377114742236,52.379646807786656],[4.755370136231577,52.379652118283936],[4.75534410144673,52.37967649804754],[4.75531196349228,52.37970659742089],[4.755284648245833,52.379732192677544],[4.755277829418548,52.37973557164691],[4.755232168214838,52.379758210864786],[4.755186536336176,52.37978085022163],[4.755170709520154,52.37978869297393],[4.755144236179909,52.37977169956047],[4.755118461502183,52.37975515027217],[4.755113159397713,52.37975824971931],[4.755103452093217,52.379752014300806],[4.755089000132214,52.379742742643515],[4.755094302236509,52.37973964319747],[4.75508970442343,52.37973969954281],[4.755072128201318,52.37972808336756],[4.755061783061151,52.379721260334165],[4.755056465246046,52.37972443159723],[4.755046115624967,52.37971792311119],[4.755031091737462,52.37972713627548],[4.754989605397938,52.379752592891634],[4.75494811913891,52.379778040505926],[4.754906632832254,52.37980348810548],[4.754869280224651,52.37982640523342],[4.754865029888313,52.37982887215315],[4.754847553977366,52.37983906085659],[4.75483439432554,52.37985863788478],[4.754827521840998,52.37986886523697],[4.754797395289716,52.37988559239553],[4.754775114775199,52.37989797541154],[4.754767070288002,52.37989460696363],[4.754752992770135,52.37990233317445],[4.754709236004953,52.37992631255621],[4.754665478936055,52.37995030989583],[4.754661541467013,52.37995246390699],[4.754654080168383,52.37995660337056],[4.754645034786474,52.3799616241625],[4.754663923402881,52.379970811720646],[4.754668680692016,52.37997399184766],[4.754693747456828,52.379990744170996],[4.754707643474751,52.38000089370977],[4.754745318888824,52.380028471754564],[4.754753037250866,52.3800341123724],[4.754784207695448,52.38005541813464],[4.754793342270266,52.38006165051997],[4.754824266221895,52.38008170565228],[4.75486456156503,52.38010786859166],[4.754904872026114,52.38013400463435],[4.754945196836251,52.38016016770298],[4.754959094296182,52.38016919374566],[4.755264667670703,52.38036232773886],[4.755274285050916,52.38035736387928],[4.755516933045523,52.38021392823897],[4.75642924672537,52.380790351977126],[4.756462449929444,52.38081133556955],[4.756690372314456,52.38096281620987],[4.756834900159309,52.38105548580114],[4.756956977676468,52.38113119261354],[4.756890638019095,52.3811712575731],[4.757906804317056,52.381818857420434],[4.758536943963753,52.38144718032269],[4.758756426201196,52.38158658646376],[4.758737749167251,52.381597596238464],[4.758695404211165,52.381622519306],[4.75865307376653,52.38164745142326],[4.758610743529093,52.38167236555099],[4.758568398430193,52.38169728857248],[4.758526053156268,52.381722220565756],[4.758483737335119,52.3817471437125],[4.758473502827943,52.38175316511283],[4.75846722159708,52.38175695156944],[4.758462642310057,52.38175983030871],[4.758458150376788,52.38176276343834],[4.758187200493564,52.3819217204267],[4.758200762266025,52.38195138923465],[4.758280521877664,52.38212599610621],[4.758749516917214,52.38315285046916],[4.758873173564275,52.38341523081521],[4.758870630940481,52.383654768603684],[4.758865215161175,52.384165452407494],[4.758882664676357,52.38416858286408],[4.758910660517304,52.384173782536585],[4.758929579319964,52.38417791842522],[4.758947006177182,52.384182648576555],[4.758950000135972,52.38418385983513],[4.758952860508471,52.3841851692505],[4.758955601727301,52.38418659487476],[4.758958179985258,52.384188118499964],[4.758960610096987,52.384189731216914],[4.758962862687888,52.384191432869805],[4.758964952572597,52.38419321454944],[4.758966865191142,52.38419506719086],[4.758968585856215,52.38419699071606],[4.758970114695133,52.384198976138045],[4.758971437147923,52.384201014391756],[4.758972553341895,52.384203096490104],[4.758973463277028,52.38420522243304],[4.758975062837983,52.38420947315019],[4.758976441707633,52.3842137496598],[4.758977585198609,52.38421805188405],[4.758978507998155,52.3842223799008],[4.758979180986261,52.384226715580056],[4.758979633410142,52.384231068064686],[4.758979836022444,52.384235428211845],[4.758979818325066,52.384239787190246],[4.758979565630621,52.384244144921894],[4.758979078066381,52.3842484924198],[4.75897835563228,52.38425282968386],[4.758977996430949,52.38425433772495],[4.758977490483733,52.38425583599972],[4.758976852732616,52.38425730661193],[4.758976083050245,52.38425875854865],[4.758974380342051,52.384261787384425],[4.758972809437511,52.38426484388268],[4.758971399711295,52.38426792819943],[4.758971065893546,52.38426868140177],[4.75896960433731,52.384272313697934],[4.758968348021381,52.38427597404629],[4.758967267698496,52.384279653303814],[4.758966392743355,52.38428335162645],[4.758965708468678,52.38428706893619],[4.758965182570983,52.384291011780626],[4.75896295430945,52.38431247176016],[4.758959501864435,52.384345690246015],[4.758962292333556,52.384345714038005],[4.758961995154019,52.38435839421566],[4.758961675901047,52.38437159556728],[4.758961352700231,52.38438507551906],[4.75896097329794,52.38440148518812],[4.758960761141367,52.384410238157905],[4.758960437939941,52.38442371810959],[4.758960114738302,52.38443719806119],[4.758954987062553,52.38444662599926],[4.758944565431372,52.38446581354033],[4.758935061627776,52.38447413073928],[4.758934948755472,52.384474840174846],[4.758907472702242,52.38460397458751],[4.758905060586253,52.38463114981557],[4.758908240999714,52.38464719189669],[4.758905541890281,52.384664559936994],[4.758903099555959,52.3846803924297],[4.758900950504183,52.38469418625301],[4.758885894229867,52.384701476344354],[4.758885614038637,52.38472124796728],[4.758881312365722,52.38473975793923],[4.758901332535705,52.38475222235624],[4.758906489191698,52.384763556339486],[4.758902751713999,52.38478682383953],[4.758893683608337,52.384804814194496],[4.758881890036567,52.384817154751616],[4.758856913905604,52.38483101619661],[4.758824159124676,52.384838212368535],[4.758825218722475,52.38487952581353],[4.758693042779029,52.384962958943156],[4.758476260483011,52.38515819109708],[4.758474269842754,52.3851742686482],[4.758478065684868,52.385175906601205],[4.758358185973036,52.3852912123819],[4.758243634006201,52.38540367024949],[4.758159296667082,52.3854881567688],[4.758156778076814,52.3854896713121],[4.757729883984225,52.385595705598554],[4.757415718432122,52.385676363245494],[4.757235574756364,52.38572178199211],[4.757259049946696,52.385806391969375],[4.757268146317146,52.385848503150214],[4.757278849909825,52.38588191372428],[4.757300820130636,52.385947362733745],[4.757325157593524,52.38601265356158],[4.757378085736532,52.38612303532455],[4.757423017255602,52.38619661453229],[4.757447598784565,52.386234404035896],[4.75746846743115,52.38626471393647],[4.757513429788068,52.38632580026327],[4.757532346865671,52.38634872979895],[4.757605427568535,52.38642614359054],[4.757633271261845,52.38645145738925],[4.75765703423594,52.38647450254393],[4.757739568048851,52.38654828151497],[4.757775136612405,52.38657786059361],[4.757808783012325,52.38660832822275],[4.757834769790055,52.38662994711556],[4.757875674854519,52.38666647511041],[4.757929409868707,52.38670981209758],[4.757951899673987,52.38672943507128],[4.75798925661185,52.38675722603135],[4.758168083601417,52.38689802581316],[4.758282318092359,52.38699462196405],[4.758501705372329,52.38718506937834],[4.758513066623977,52.387194980292726],[4.758515286787213,52.38719690647475],[4.758463734372309,52.3875174782858],[4.758460125784584,52.38753991058199],[4.758477330307578,52.38753762016399],[4.7584935041231,52.38753653762073],[4.758515099903432,52.387536382636604],[4.758592868175728,52.387542457761484],[4.758792318043375,52.38755520039966],[4.758872054473027,52.387557151409695],[4.758963577300878,52.38755664831707],[4.758988707860248,52.387555837915535],[4.758995773623931,52.38755583045871],[4.759022672821008,52.38755564060055],[4.759049588616349,52.3875553160077],[4.7590764770718,52.38755484745942],[4.759103367436601,52.38755424409859],[4.759130259965148,52.38755348795098],[4.759157125025708,52.387552596835036],[4.759183977433755,52.38755156184155],[4.759210817189032,52.3875503829705],[4.759237644291277,52.38754906022197],[4.759249332017081,52.387548385200276],[4.759261007090828,52.38754756630596],[4.759272640135583,52.387546603383306],[4.759284245839647,52.387545496510164],[4.759295809514499,52.387544245608744],[4.759307331032742,52.387542859666084],[4.759318795833153,52.387541329617264],[4.759330218476747,52.38753966452721],[4.759341584402301,52.387537855331054],[4.759352893482429,52.3875359110158],[4.759364131155908,52.387533822516616],[4.759375297295362,52.38753159882052],[4.759386391773432,52.387529248914674],[4.759397400156163,52.38752675474704],[4.759408337004602,52.38752412538259],[4.75941917281459,52.3875213696527],[4.75942992252898,52.387518469661096],[4.759440571077505,52.387515452291204],[4.759451133403015,52.38751229964674],[4.75946158000138,52.38750902055909],[4.759471910999785,52.387505606041145],[4.759482140832061,52.38750207414509],[4.759492240248606,52.38749841572806],[4.759502223810516,52.38749463985506],[4.75951209177223,52.38749072855198],[4.759521814375174,52.38748670862427],[4.759531421123341,52.38748257124076],[4.759540867951518,52.38747831616785],[4.759550198924839,52.38747394363914],[4.759559369978104,52.38746945342104],[4.759568395545211,52.38746486356575],[4.759577261192218,52.38746015602111],[4.759585981480264,52.387455339852266],[4.75959454159372,52.3874504239684],[4.75960294165981,52.3874453993825],[4.759611166862925,52.3874402750038],[4.759619231891444,52.38743505091023],[4.759844857473522,52.38728590793397],[4.759852640824771,52.38728086208776],[4.759860599162404,52.38727590704574],[4.759868688421451,52.38727104257443],[4.759876952539708,52.387266277894305],[4.75988534745222,52.38726161277198],[4.759893902535633,52.38725704736297],[4.759902588413332,52.38725258151171],[4.759911419646484,52.387248224282985],[4.759920381673955,52.3872439666119],[4.759929474368618,52.38723981748553],[4.759938697730499,52.38723577690385],[4.75995365105242,52.387229582642625],[4.759968734911974,52.38722350591195],[4.75998394930923,52.38721754671181],[4.75999927955595,52.38721170496431],[4.760014725652214,52.3872059806694],[4.760030302159258,52.387200382891926],[4.760045979827714,52.38719490248921],[4.760050762101034,52.38719328305323],[4.760061773218827,52.38718954852606],[4.760077682459819,52.38718431201536],[4.760093692735364,52.387179201866296],[4.760109818733852,52.387174218156716],[4.760126045767094,52.38716936080877],[4.760142359274022,52.387164620757474],[4.760158773688804,52.387160016054814],[4.760175289138665,52.38715553771369],[4.760191890808332,52.387151194643295],[4.760208578952132,52.38714696886948],[4.760225353315978,52.38714287836639],[4.760242213899999,52.38713892313398],[4.76025916083142,52.38713509418506],[4.760276179294999,52.387131400429],[4.760293284106233,52.38712783295642],[4.760310445761619,52.38712440059885],[4.760327045574785,52.38712122591006],[4.760343702359645,52.387118177349336],[4.7603604162434,52.387115245929536],[4.760377201787378,52.38711244071551],[4.760394029488104,52.3871097705388],[4.760410914288112,52.38710721750296],[4.760427841372205,52.38710479051729],[4.760444810613466,52.38710249856891],[4.760461836954408,52.38710032376132],[4.760478905452802,52.387098283990966],[4.760496016235841,52.387096370270726],[4.7605131546154,52.387094582522856],[4.760523597892201,52.38709360419378],[4.760534083200787,52.387092769890565],[4.760534539045097,52.38709273635168],[4.760541067239875,52.38709230353297],[4.760544581291759,52.38709207047061],[4.760555106726453,52.387091514998794],[4.760557766953492,52.38709141223451],[4.760562440869901,52.38709122126018],[4.760565644943727,52.38709109441023],[4.760576210504921,52.387090817769746],[4.76058677403361,52.38709068492192],[4.760597335656916,52.38709068687966],[4.760607895247919,52.387090832630015],[4.760618452806717,52.387091122173025],[4.760627907221719,52.38709151373169],[4.760628142106917,52.387091523962226],[4.760628993645152,52.38709155543099],[4.760636391449408,52.38709195408307],[4.760639517890342,52.3870921234168],[4.760650025542378,52.38709282613043],[4.760660501659074,52.387093681468386],[4.760670946621556,52.3870946624694],[4.760676784041511,52.387095295533406],[4.760681345360637,52.387095796017086],[4.760685421967114,52.387096293936196],[4.760685891229577,52.387096350345466],[4.760691712945686,52.38709705522779],[4.760694219940006,52.38709740103838],[4.760694645137696,52.38709745721447],[4.760702019746259,52.3870984579204],[4.760710433539101,52.387099724768795],[4.76071071198117,52.38709977118067],[4.760712280450718,52.387100004172574],[4.760722495313149,52.38710167601014],[4.760723022820802,52.38710176867845],[4.760729806852159,52.38710298196486],[4.760730129105082,52.387103046584],[4.760732634703109,52.38710349125189],[4.760741688050999,52.38710523783322],[4.760742713435952,52.38710544098848],[4.760752716950477,52.38710751615507],[4.760753712705013,52.387107737129035],[4.760762630304514,52.387109734648284],[4.760772483128659,52.38711207864922],[4.760786636654977,52.3871156946987],[4.760800700276249,52.387119436099724],[4.760806509172338,52.38712104867348],[4.760812215631866,52.38712263374179],[4.760814659177315,52.38712331176172],[4.760828528046554,52.387127321762456],[4.760839454859381,52.38713058819105],[4.760841151589057,52.38713110048056],[4.760842307138009,52.38713144812772],[4.760855966821266,52.387135708676375],[4.760866656086374,52.387139153601474],[4.760869536726911,52.38714008558966],[4.760875063122823,52.38714193933569],[4.760882987224529,52.38714459668637],[4.760896318568133,52.3871492239924],[4.760909545319111,52.38715397657259],[4.76092265278926,52.38715885434927],[4.760925706263909,52.3871600299199],[4.760925779324477,52.38716005726959],[4.760935641105599,52.38716384833537],[4.760936882754632,52.38716434024128],[4.760937393924806,52.38716454966325],[4.760948495579903,52.387168958453245],[4.760961230900517,52.38717418478066],[4.760973832252262,52.387179536227],[4.760986299762136,52.387185003805314],[4.760998633557128,52.387190578528454],[4.76101083351034,52.387196269383594],[4.761015239800297,52.38719838683336],[4.76102288506045,52.38720206730604],[4.761032541694741,52.38720686390926],[4.761036640294014,52.38720892580466],[4.761043509235462,52.387212449379064],[4.761047169725223,52.3872143292022],[4.761048525710092,52.38721504640576],[4.761057259652151,52.387219649385095],[4.761058163473038,52.3872201395035],[4.76106010242114,52.38722118334895],[4.761066676838619,52.387224759291406],[4.761070962327528,52.3872271097824],[4.761080610214723,52.387232526491545],[4.761080930819091,52.38723270794208],[4.761082096491636,52.387233379200126],[4.761089833539343,52.387237842089746],[4.761094874192421,52.38724080774087],[4.761095777506471,52.387241333807395],[4.761099608422286,52.38724362796739],[4.761099666667862,52.38724366422642],[4.761101225371734,52.38724458921985],[4.761102915001315,52.38724560478313],[4.761103089864986,52.3872457045731],[4.761143027261504,52.38726985014619],[4.761143813831595,52.387270321668524],[4.761184829072023,52.387295120044826],[4.761226630930207,52.38732038992864],[4.761281075233189,52.38735331229698],[4.761310220228096,52.3873709205871],[4.76131480823636,52.38737369509315],[4.761314968412656,52.387373794805214],[4.761352007540897,52.387396190348845],[4.761378705624566,52.38741232068369],[4.761393809716585,52.38742145118632],[4.761414768941527,52.3874341268455],[4.761435597124686,52.38744672091846],[4.761477399268829,52.387471990713415],[4.761519186899075,52.387497251428854],[4.761545360634122,52.38751307337079],[4.761560989138536,52.387522521194185],[4.761563654542038,52.38752413509864],[4.761565067395978,52.387524987413144],[4.76157079238116,52.38752838807184],[4.76157211849999,52.38752914106259],[4.761575878052476,52.387531291025525],[4.761578705790524,52.38753285186062],[4.761579332446098,52.38753320569421],[4.761579755239447,52.38753343262201],[4.761581037927459,52.38753414044431],[4.761586272006112,52.387536936328296],[4.761586709614767,52.38753715434658],[4.761591580288425,52.38753967867745],[4.76159419137915,52.38754097772231],[4.761594249752346,52.387541004994006],[4.761594337248727,52.3875410503951],[4.761596977589626,52.38754235858221],[4.761601923735633,52.387544739507],[4.761602448967658,52.38754499393919],[4.761605105012,52.387546230306896],[4.761607979987738,52.387547566696576],[4.761609731691414,52.38754834889841],[4.761609790064631,52.3875483761701],[4.76161358533827,52.387550076932],[4.761616403209456,52.387551296178806],[4.761617702489235,52.38755186927182],[4.761618520221646,52.387552215126775],[4.761619264892423,52.38755253363252],[4.761625003961774,52.38755493672052],[4.761625690513039,52.38755520998031],[4.761625792697902,52.38755525545898],[4.761626157879354,52.38755540119236],[4.761630802799939,52.38755726822183],[4.761632921207657,52.38755808831143],[4.761634016752159,52.38755852551153],[4.761634937303763,52.38755887190954],[4.761636675841692,52.38755954618815],[4.761642608398605,52.38756177054199],[4.761648600724285,52.387563923309074],[4.761650705712327,52.3875646534498],[4.761650837274082,52.38756469908362],[4.761651027335908,52.38756476300198],[4.761654243318192,52.38756587649756],[4.761654652691902,52.387566013476516],[4.761658936617802,52.38756743819726],[4.761659433741661,52.387567602603056],[4.761659667741976,52.387567675741245],[4.761660764301439,52.38756804104427],[4.761666935426073,52.38757001499948],[4.761668120243007,52.38757037178088],[4.761673151630974,52.38757191729032],[4.761676253023434,52.38757282346132],[4.761676925901304,52.38757302474643],[4.761677686782927,52.387573235484176],[4.76167942760454,52.387573747994345],[4.7616857337163,52.38757552493067],[4.761685821593251,52.38757554337037],[4.761692114285108,52.387577230357735],[4.761694412252867,52.38757781771268],[4.761694822007215,52.38757792773016],[4.761695275826846,52.38757803798045],[4.761698525118864,52.38757887302994],[4.761703370631258,52.38758005804552],[4.761703912327901,52.387580186735434],[4.761704146581954,52.38758024189935],[4.76170498103277,52.38758044403771],[4.761707470077233,52.38758102341387],[4.761711481900003,52.38758195236818],[4.761712785239423,52.387582237873],[4.761713092682046,52.387582311398944],[4.761713663882398,52.38758243125691],[4.76171802772054,52.38758339802136],[4.76172142567281,52.3875841080266],[4.761722348381148,52.3875843016432],[4.76172308077389,52.38758444931575],[4.761724604059515,52.38758476294539],[4.761731225224946,52.38758607417928],[4.761737876908763,52.387587304683954],[4.76174023604042,52.38758772159344],[4.761741071252289,52.38758786980894],[4.761741921279388,52.3875880091149],[4.761744558857346,52.387588472433734],[4.761750538424171,52.38758944773043],[4.76175127119746,52.387589568441534],[4.761758013802287,52.38759060169438],[4.761760051690625,52.387590882090315],[4.761763672759936,52.387591395541726],[4.761764786925373,52.387591554218055],[4.761769625613213,52.387592181953174],[4.761771590313111,52.387592443986854],[4.76177840940383,52.38759326193604],[4.761785258885926,52.3875940081431],[4.761788647476498,52.38759434061062],[4.761788911487942,52.38759436896821],[4.761789175626166,52.38759438833868],[4.761792124070936,52.387594682530576],[4.761798623566688,52.387595247133184],[4.761799004958828,52.387595285098406],[4.761805901549569,52.38759581584665],[4.761808132289758,52.387595962443626],[4.7618083523627,52.387595981581356],[4.761808675254679,52.38759600126208],[4.761812813716348,52.38759628376232],[4.761819741712689,52.38759667087126],[4.761821723510247,52.38759676222674],[4.761826670723345,52.387596986082976],[4.761827889356248,52.38759702846944],[4.761833615309945,52.3875972384622],[4.761840561037566,52.38759740995711],[4.761847507779404,52.38759750955477],[4.76188043722018,52.38759782724228],[4.761898532230198,52.38759800367863],[4.761939191590798,52.38759809253188],[4.761955055733636,52.3875981313522],[4.761997948116812,52.38759820501165],[4.762002942438017,52.3875982134028],[4.762078650051756,52.387598370392375],[4.762174217317269,52.38759856923727],[4.76220857508728,52.38759864271448],[4.76223297359162,52.387598699574596],[4.762281344762605,52.38759880204479],[4.762291729993119,52.387598820895654],[4.762296974017904,52.387598830592],[4.762350486268397,52.38759895117466],[4.762399959072809,52.38759905940903],[4.762409242417485,52.38759909041162],[4.762462460393513,52.387599245342166],[4.762467998060492,52.387599265567786],[4.762526753577453,52.38759944968195],[4.762938027271762,52.38760075556126],[4.763055538189594,52.38760113228096],[4.763058637576511,52.38760113962821],[4.763114293586189,52.38760132509066],[4.763132860277979,52.387601386983036],[4.763173049995425,52.387601445974326],[4.763231806911064,52.38760153088048],[4.76329056382705,52.38760161575745],[4.763349320743384,52.387601700605266],[4.763408077660067,52.38760178542391],[4.763466834577098,52.38760187021337],[4.763491512545572,52.38760190132272],[4.76352558959803,52.38760208978028],[4.763584342976238,52.387602426150295],[4.763643096481868,52.38760275350411],[4.763701849988486,52.38760308082874],[4.763760603496095,52.387603408124235],[4.763819357004696,52.387603735390535],[4.76386232044057,52.38760397951615],[4.763878111019721,52.38760402667931],[4.763936866930836,52.38760418313237],[4.763995622716153,52.38760434854337],[4.764054378628354,52.38760450493812],[4.764113134414782,52.3876046702908],[4.764171890328069,52.38760482662722],[4.764226121949246,52.38760497710996],[4.764230646368183,52.387604973947404],[4.764289404176656,52.38760499541897],[4.76434814742313,52.38760500779698],[4.764406905231952,52.38760502921023],[4.764465663167191,52.38760504160723],[4.764524420976359,52.38760506296212],[4.764583178911923,52.387605075300776],[4.764592080739236,52.38760507716306],[4.764641937100048,52.38760506963607],[4.764700695288281,52.38760506394222],[4.764759438788179,52.38760505814199],[4.764818196976627,52.38760505238979],[4.764876955165183,52.38760504660845],[4.764935713353846,52.38760504079795],[4.76495865846849,52.38760503553279],[4.764994471164222,52.38760506191958],[4.765053228722535,52.387605100986285],[4.765111986281077,52.38760514002379],[4.7651707291514,52.38760517895507],[4.765229486710393,52.38760521793427],[4.765288244269612,52.38760525688431],[4.765347001829057,52.38760529580523],[4.765405759388728,52.38760533469696],[4.765464516948625,52.38760537355953],[4.765523274508748,52.38760541239294],[4.765582032069096,52.387605451197224],[4.765640789629669,52.387605489972316],[4.765699532502024,52.3876055286412],[4.765758290063048,52.38760556735796],[4.765817047624298,52.38760560604563],[4.765875805185773,52.38760564470406],[4.765934562747473,52.387605683333376],[4.765993320435329,52.387605712946424],[4.766051064368762,52.38760575518859],[4.76605207787155,52.38760576050451],[4.766110835056208,52.38760582600765],[4.766124040724908,52.38760584133886],[4.766490934326694,52.38760631791124],[4.76652211953626,52.38760636452015],[4.766556360194647,52.387606409158536],[4.766580876094342,52.38760647472557],[4.766639632149647,52.387606620850285],[4.766698388079674,52.38760677593292],[4.76675714413601,52.387606921999236],[4.766815900067091,52.38760707702355],[4.766874655998708,52.38760723201871],[4.766933412056595,52.387607377997604],[4.766992167989267,52.38760753293441],[4.767050924048186,52.38760767885502],[4.767075998110813,52.38760774724245],[4.767109680987534,52.3876077618367],[4.767168438932753,52.38760777289233],[4.767227182063996,52.387607792828994],[4.767285939883863,52.387607812813435],[4.767317566252332,52.38760782557111],[4.767344697955217,52.387607814794514],[4.767403456277984,52.3876077987722],[4.767462214600834,52.387607782720714],[4.767520973049379,52.38760775765297],[4.767579716683924,52.38760774146632],[4.767638475007,52.38760772532736],[4.767646451463556,52.387607722118716],[4.767697234962744,52.387607592326844],[4.767755995043828,52.38760745031003],[4.767814740561771,52.38760729920017],[4.767873500642334,52.38760715712505],[4.767881712365142,52.38760713715538],[4.767932260346037,52.38760704198208],[4.767991020049556,52.38760692681],[4.768049765064441,52.38760681153194],[4.768108524767593,52.38760669630152],[4.768167284345073,52.38760659002902],[4.768226029359419,52.38760647466345],[4.768246081103095,52.38760643566278],[4.768284789814822,52.38760630542292],[4.768343550771709,52.38760610020476],[4.76840229691428,52.3876059038678],[4.768461057870335,52.38760569859128],[4.768504702527935,52.3876055491297],[4.768519818073464,52.38760554720828],[4.768578561832191,52.387605521538916],[4.768637320154032,52.38760550490425],[4.76869607847595,52.38760548824043],[4.768754836797945,52.387605471547424],[4.768776900608301,52.38760546093989],[4.768786065826413,52.38760553576436],[4.768813590857862,52.387605760387],[4.768872342161068,52.387606246913876],[4.768931093465684,52.38760673341151],[4.768983426293598,52.387607159410315],[4.768989844897034,52.387607210892945],[4.769033864312115,52.3876075754952],[4.769048578383262,52.38760792193342],[4.769062895866398,52.38760826629976],[4.769083583251973,52.38760899443497],[4.769089103855288,52.38760918502938],[4.769107200936544,52.38761026813882],[4.769117445584205,52.38761088783735],[4.769140603071699,52.38761356122383],[4.76917794970199,52.387619463360664],[4.769201701718847,52.38762480021597],[4.769220014970649,52.38762934472536],[4.769235502873594,52.387633191418615],[4.769272720914238,52.387645159595046],[4.769284244569408,52.38764886875585],[4.76932358990194,52.387663139895736],[4.76937413077468,52.38768147797306],[4.769422347741759,52.38769897703144],[4.769424552678615,52.38769992326119],[4.769468169345041,52.38771865658953],[4.769472518715657,52.38772067456031],[4.769515544915975,52.3877406720657],[4.769519251002098,52.38774247097312],[4.769528705917101,52.38774705910833],[4.769546847607463,52.38775759751022],[4.769561436275866,52.38776694896945],[4.769562469393813,52.387767655403124],[4.769564723575476,52.38776928495709],[4.769572065022757,52.387774796793536],[4.769586229107094,52.38778721086262],[4.769595027512899,52.38779674782621],[4.769600063371755,52.38780221168577],[4.769620990397883,52.38782897852687],[4.769624771688383,52.38783381568715],[4.769642573923795,52.38786239973238],[4.769654039869447,52.38788080354863],[4.769663508807409,52.38789598831868],[4.769671928396059,52.38790952285544],[4.76968442890892,52.38792958581165],[4.769698467061102,52.387952101455625],[4.769705363855805,52.38796317439017],[4.769709703042917,52.387970144556355],[4.769724928414922,52.38799707039113],[4.769744095911109,52.388031000269315],[4.769744124662449,52.388031045358034],[4.769762374897454,52.38806333467759],[4.769763335627915,52.38806502039822],[4.769782590813757,52.38809898667772],[4.769791522916203,52.388114752842306],[4.769801846029013,52.38813295295388],[4.769820743068856,52.38816627024048],[4.769821101398845,52.38816691023967],[4.769826621359024,52.388176645799845],[4.769840209285807,52.388200911691904],[4.769846071394638,52.38821139501901],[4.769859243633527,52.388234921745145],[4.769871125943193,52.38825614087836],[4.769878292699037,52.38826893187169],[4.769886233375722,52.38828311101415],[4.769897327104999,52.38830294191844],[4.769907346222116,52.388320825863566],[4.769916376228775,52.388336952038486],[4.769926380672512,52.38835483590531],[4.769935410692981,52.38837096207868],[4.769943551917701,52.388385510760415],[4.769954459875022,52.38840497219222],[4.769966542912667,52.38842655187148],[4.76997349439747,52.38843898222593],[4.769975243129419,52.388442101105795],[4.76999230799229,52.38847303604365],[4.77000791128587,52.38850132994743],[4.770011092113296,52.38850709869217],[4.77002987626308,52.38854116133753],[4.770048660441638,52.38857522397976],[4.770067444648974,52.388609286618724],[4.770086228885082,52.388643349254586],[4.770105013149969,52.38867741188723],[4.770123797443631,52.38871147451671],[4.770136090971696,52.38873377429443],[4.770142581766072,52.388745537143045],[4.770161366117287,52.388779599766174],[4.770180165186134,52.388813662462695],[4.770198949594913,52.3888477250795],[4.770217748721348,52.388881787769655],[4.77023653318769,52.3889158503801],[4.77025533237171,52.38894991306389],[4.77027411689562,52.38898397566799],[4.770292916137228,52.38901803834544],[4.770303705515492,52.389037597989116],[4.770306644461521,52.38904280822387],[4.770307347586225,52.38904400725863],[4.770307806501743,52.38904480955985],[4.770308596259395,52.389046116899],[4.770309701169826,52.38904800109645],[4.770311281060579,52.389050588813426],[4.77031211375971,52.38905197726609],[4.7703124443518,52.38905250027822],[4.770312846512695,52.389053158479584],[4.770314744182899,52.38905613432553],[4.770316627289479,52.38905910110782],[4.770318354195468,52.3890616806027],[4.770319490735613,52.38906340318512],[4.770320397630282,52.3890647380976],[4.770321362030191,52.38906616318728],[4.770322240672605,52.38906741706275],[4.770322975051853,52.38906848144383],[4.770324732837135,52.389070953246325],[4.77032630304288,52.38907318140217],[4.770326577130537,52.38907354234028],[4.770330282657926,52.38907855883669],[4.770331450577737,52.3890801377783],[4.770332792764095,52.389081861431784],[4.770334076569936,52.38908355781782],[4.770335245865612,52.38908503790118],[4.770335780102601,52.389085705778186],[4.770336804634842,52.389087032315565],[4.770337570268466,52.389087962042936],[4.770338003183541,52.38908852153903],[4.770342018431927,52.38909344977074],[4.770342076187299,52.38909352197364],[4.770342365089209,52.38909387400108],[4.770343246734031,52.38909491218579],[4.770346136879014,52.38909835157649],[4.77034748156753,52.38909989548761],[4.770348117502076,52.38910064478413],[4.770348970894726,52.389101601931785],[4.770350373338836,52.389103218045754],[4.770353251922232,52.38910643268204],[4.770354076312347,52.38910736271533],[4.770354293520386,52.38910758854067],[4.770354698433511,52.38910804902554],[4.770359141540967,52.38911284466874],[4.770362862331281,52.389116764736784],[4.77036367328332,52.38911760482239],[4.770368308349545,52.389122329562994],[4.770373046739667,52.38912701889056],[4.770377888578751,52.389131663817864],[4.770394391169464,52.38914709187632],[4.770394637755837,52.389147317854636],[4.770452952954673,52.389147621562856],[4.770511708823447,52.3891479275371],[4.77051695278478,52.38914795484385],[4.770570438627248,52.38914693910896],[4.77062917017848,52.389145824832156],[4.77068790172688,52.38914471052625],[4.770746633272448,52.38914359619117],[4.770805364940143,52.38914247283986],[4.770864081791069,52.38914135837005],[4.770922813328129,52.38914024394758],[4.77098154486236,52.38913912949598],[4.771040276393755,52.389138015015234],[4.771099007922318,52.389136900505314],[4.77115773944805,52.38913578596631],[4.771216471095827,52.38913466241101],[4.771275202615878,52.3891335478137],[4.771333919444137,52.389132433110895],[4.771392650958527,52.389131318455306],[4.771414574257859,52.38913090217362],[4.771451401112784,52.38913097681486],[4.771510159589588,52.38913109356421],[4.771568918066825,52.38913121028445],[4.771627676419699,52.38913133596266],[4.771686434897809,52.38913145262456],[4.77174519337635,52.38913156925732],[4.771803951855322,52.389131685860924],[4.771858185884017,52.38913179690221],[4.771862710334724,52.389131802435365],[4.771870686816954,52.38913181691675],[4.771883187625166,52.38913184591709],[4.771895688433401,52.389131874916096],[4.771906793789972,52.38913189666371],[4.771919294722981,52.389131916673094],[4.771921468814556,52.389131918980596],[4.771931795531274,52.3891319456683],[4.771980227170098,52.38913204448385],[4.772038985650805,52.3891321609708],[4.77209774413194,52.389132277428565],[4.77215648792454,52.38913239378094],[4.772215246281862,52.38913251916755],[4.7722740047643,52.38913263553786],[4.772332763247167,52.389132751879],[4.772391521730466,52.38913286819102],[4.772450280214191,52.389132984473875],[4.772509038698348,52.38913310072753],[4.772567797058334,52.38913322593918],[4.772626555543361,52.38913334213451],[4.772685314028817,52.38913345830074],[4.772744072514705,52.38913357443778],[4.772802831001019,52.389133690545655],[4.772831960469611,52.389133751786765],[4.772861589363223,52.38913381561147],[4.772899929188578,52.3891338976506],[4.772916084015097,52.38951161109307],[4.772890707404976,52.392047824060604],[4.77287861117575,52.39209592668616],[4.77276067685465,52.39219518680628],[4.772644255192184,52.39224252342172],[4.772452927286547,52.39232030811555],[4.772105103857922,52.39239317243049],[4.772162932672835,52.392499779896546],[4.772162731500752,52.39249945529272],[4.77216164882318,52.39249807454411],[4.772160374301746,52.39249675571351],[4.772158922501845,52.39249550786424],[4.772157307988866,52.39249434005977],[4.772155530638118,52.392493261287164],[4.772153605014984,52.39249228060977],[4.772151560499617,52.39249139818025],[4.772149382152536,52.39249063189646],[4.772147128858744,52.39248997307643],[4.772144770988671,52.39248943954181],[4.772142367302615,52.39248903159779],[4.772139903110475,52.392488749167995],[4.772137407667692,52.39248860139217],[4.772134910479098,52.392488579435756],[4.772132411544674,52.392488683298744],[4.772130793516122,52.392488827687544],[4.772129204244202,52.39248901716447],[4.772127672984362,52.39248926086915],[4.771963149115998,52.39252403377329],[4.771713916661233,52.39257672824021],[4.771686274659726,52.3925825884043],[4.771658632900525,52.392588430587686],[4.771412213903031,52.39264053686442],[4.771469088767275,52.3927110179298],[4.771029151949285,52.39280568979748],[4.770860686918398,52.3925975825856],[4.770858432583442,52.39259805619255],[4.770848773001918,52.392580632595056],[4.770775072882027,52.39259608544614],[4.770781464951133,52.39260760506457],[4.770781848836603,52.39260852381347],[4.770782011870452,52.39260947736392],[4.770781939862458,52.392610429691],[4.770781633062562,52.392611362820595],[4.770781106410816,52.392612258854896],[4.770780360157167,52.392613099819656],[4.770779424056766,52.39261385890655],[4.770778312924703,52.3926145272049],[4.770777041701053,52.39261508681694],[4.770775669396241,52.39261552007436],[4.770774181320161,52.39261582690058],[4.770772651048385,52.392615998690886],[4.770771093396027,52.392616026534625],[4.770769552433454,52.392615910661135],[4.770768042850794,52.392615651146905],[4.770766623158574,52.39261526627192],[4.770765308046919,52.39261475611274],[4.770764141586186,52.39261412089869],[4.770763137966575,52.39261339665468],[4.770762311878199,52.39261258345714],[4.770761707016458,52.392611708496815],[4.770755343832199,52.39260022497864],[4.770683267435035,52.392615119995675],[4.770689845954714,52.39262696414881],[4.770690229713455,52.39262789188513],[4.770690392870397,52.392628836448566],[4.770690320860401,52.39262978877559],[4.770690014058442,52.39263072190494],[4.770689472714491,52.39263161786233],[4.7706887411489,52.39263245890301],[4.770687805046522,52.39263321798916],[4.770686679222472,52.392633886210156],[4.770685422687237,52.3926344458977],[4.770684035565811,52.392634888064656],[4.770682562303572,52.392635185979124],[4.770681032030777,52.39263535776821],[4.770679474377685,52.39263538561077],[4.770677918724559,52.392635269659614],[4.770676423706909,52.39263501920775],[4.770674989449743,52.39263462526814],[4.770673689028699,52.39263411518441],[4.770672507878652,52.39263347989301],[4.770671504260103,52.39263275564818],[4.77067067817305,52.392631942450066],[4.770670073312859,52.39263106748922],[4.770663509362982,52.3926192323986],[4.770592006819162,52.392634058445545],[4.770602082073845,52.39265222122403],[4.77060418901294,52.3926517828056],[4.770845104900523,52.39334312547984],[4.770806927330224,52.39335118653669],[4.770791603362932,52.39335441427555],[4.770776441362353,52.39335761589221],[4.770955419204415,52.39368365224607],[4.770969234317275,52.39368434428263],[4.770974557094584,52.393692478929125],[4.770980100980648,52.39370056079927],[4.770985851410025,52.39370858082949],[4.770991823073285,52.39371653909624],[4.770998001155104,52.393724444510106],[4.771004400470991,52.393732288160386],[4.771011006455483,52.39374006098354],[4.771017804293228,52.393747771890155],[4.771024823615158,52.393755403058925],[4.771032034790489,52.393762972311094],[4.771039467325218,52.393770470812406],[4.771047077397771,52.39377788035935],[4.771054894014426,52.39378522806606],[4.771062917550021,52.393792486971115],[4.77107111849867,52.39379966590883],[4.771079511550929,52.39380676495554],[4.77108809683176,52.39381377512409],[4.77109687421629,52.39382070540153],[4.77110582926387,52.39382753773725],[4.77114200442774,52.39385469815228],[4.771160019385508,52.393868219557405],[4.771169295895562,52.39387517938879],[4.771179081206619,52.3938825283391],[4.771262874711023,52.39394543799884],[4.771272705248721,52.39395270628663],[4.771282698509768,52.39395989453009],[4.771292854743947,52.39396698475488],[4.77130318851696,52.393973986024534],[4.771313670322812,52.393980907173315],[4.77132432991728,52.393987721392655],[4.771335137544608,52.39399445549098],[4.771346108269985,52.39400108258337],[4.771357227153097,52.394007620567635],[4.771368494318803,52.394014060456605],[4.771379909891955,52.394020393263105],[4.771391488438265,52.39402662805064],[4.771403200576544,52.39403276466629],[4.771415046431624,52.39403879412306],[4.771427040569219,52.39404472548425],[4.771439183114155,52.394050549762845],[4.771451444810058,52.3940562578188],[4.771463854788383,52.394061867779165],[4.771476383917591,52.39406736151685],[4.771489032072788,52.39407274801904],[4.771501813944532,52.3940780273619],[4.771514729657604,52.39408319055839],[4.771527749830743,52.39408823745575],[4.771540889029661,52.39409317711734],[4.771554147503954,52.39409799156899],[4.771567510313291,52.39410269870846],[4.771647635705317,52.39413041995627],[4.771667139516986,52.39413725314662],[4.771686538877914,52.394144202631644],[4.771705819097571,52.39415126833505],[4.771724979926472,52.39415846823113],[4.771744021739094,52.394165775358566],[4.771762929595313,52.39417320761537],[4.771781733126057,52.39418074718004],[4.771800388009932,52.39418841179776],[4.771818923753081,52.39419619263428],[4.771837325664939,52.39420408961322],[4.771855608436227,52.39421210281103],[4.771873742810484,52.394220223087984],[4.771891743353653,52.39422845950763],[4.771909610190558,52.39423680308288],[4.771927328505837,52.39424526272455],[4.771944912990212,52.394253838509044],[4.77196234920256,52.394262512385986],[4.771979636893432,52.39427130232953],[4.771996776187611,52.39428019935272],[4.772013781900537,52.394289194544726],[4.772030624401427,52.394298305727304],[4.772047318630446,52.39430751500255],[4.772063849772207,52.39431683128139],[4.77208023264213,52.39432624565304],[4.772096452424822,52.39433576702836],[4.772112509245011,52.394345386420376],[4.772128417793391,52.3943551039054],[4.772144148563865,52.394364928318026],[4.772159731187239,52.39437484183664],[4.772175136157396,52.394384853295925],[4.772190378165023,52.39439496277219],[4.772278430233025,52.394453957177056],[4.772286216587373,52.394459273411805],[4.772293854789484,52.39446467875438],[4.772301315457877,52.39447017305222],[4.772308613407945,52.39447574739452],[4.772315748639664,52.39448140178136],[4.772322706337596,52.394487145123584],[4.772329486875728,52.39449295045986],[4.772336089880008,52.39449884475158],[4.772342515599744,52.39450481002454],[4.772348764159555,52.3945108372917],[4.772354820619321,52.39451694445103],[4.77236069991907,52.39452311360455],[4.772366387243337,52.39452935366323],[4.772444928424516,52.394617364947145],[4.772452176326779,52.394625491541134],[4.772459872790773,52.394634114789085],[4.772667215069817,52.39486645454745],[4.772664368868719,52.39487993937721],[4.772799685248463,52.394880731286015],[4.772802680895716,52.394886139474664],[4.772805232213685,52.39489074544875]]],[[[4.958316047927752,52.37988610742137],[4.958539381675291,52.37982311263187],[4.958653048713992,52.37999268974028],[4.959147126789759,52.37986494648942],[4.959952996508285,52.37965077766647],[4.959838965141653,52.37948048147734],[4.960500345621588,52.37909456352037],[4.961141634167547,52.37872436090197],[4.961336724383777,52.37861462225868],[4.961468910850438,52.37857539904681],[4.961566307365333,52.378560434173984],[4.961668697451999,52.37856686880866],[4.961764406068674,52.37857934602229],[4.961983625163681,52.378464857634704],[4.961868410998463,52.37838217982767],[4.963323398768329,52.37759647355975],[4.963434417061238,52.377669545113235],[4.963612209299375,52.37757541530198],[4.96350684896398,52.377497322079414],[4.964714916238369,52.37686376589647],[4.964810057181295,52.37681372944558],[4.965722179574945,52.37633408127285],[4.966216530667922,52.37607672542917],[4.967478033264726,52.375407497198815],[4.968221780955455,52.3750129212421],[4.969547491218344,52.37430862154297],[4.969745943466269,52.374249292708534],[4.969829258801105,52.3742109933629],[4.969910143698371,52.37411103001745],[4.972088115576938,52.372954171346755],[4.972686287672137,52.37263668338918],[4.972686201500471,52.37263647637124],[4.972867882074136,52.37253996454046],[4.97296213820777,52.37252608480981],[4.973575122861328,52.372191963071735],[4.97400347517426,52.371963455209155],[4.974497049388413,52.371701828891865],[4.97459048823429,52.371636643419336],[4.974661332649319,52.37157412938321],[4.975084424905065,52.371344718491166],[4.975933766615172,52.3708987105615],[4.976216029517902,52.3707516726993],[4.97629368762709,52.37070773187855],[4.976605966971505,52.37055375990252],[4.976921387421161,52.370399681147134],[4.976920324806817,52.370397089017],[4.977488946187192,52.370128556051334],[4.978559525770393,52.369656277666564],[4.979735258648837,52.36917756581982],[4.980473493862007,52.36890766074984],[4.980434988919266,52.36877377399432],[4.980136253815167,52.36885786059124],[4.979946861311247,52.368921318380664],[4.979934666201615,52.36892540177574],[4.979889292040902,52.36894015624341],[4.979882905752357,52.368936862763476],[4.979617355022823,52.36903824662432],[4.979150861881413,52.36883490271506],[4.978701043516909,52.36870593351926],[4.977851083470121,52.36870299812839],[4.976324722121497,52.36868708799251],[4.974451442163095,52.36866995834961],[4.973982527120402,52.3686617977893],[4.973619728832015,52.36857149025376],[4.973563912312455,52.368493435070505],[4.97348273177835,52.368379888794536],[4.973433299516905,52.36826597706135],[4.973456580122939,52.36826352388941],[4.97340904128157,52.368163873209085],[4.973328090492583,52.36797858800869],[4.973286314043777,52.367871982978684],[4.973261430986523,52.36778812188095],[4.973256988143661,52.36765371365583],[4.973303517554596,52.36755614434308],[4.973375517522554,52.3674778527193],[4.973501692687115,52.367401502946855],[4.973731097230178,52.36726093712269],[4.974006166252941,52.36711529040433],[4.974252607338709,52.36698175745644],[4.974435952094516,52.366888151996534],[4.974845715928145,52.36666792572395],[4.975140762642711,52.36651885872509],[4.975155310440458,52.366487497427144],[4.975622398646101,52.36623430342075],[4.975828698491708,52.36612506513897],[4.975877583547968,52.366079856198795],[4.975886468072868,52.36604323532056],[4.975886807841591,52.366006584758075],[4.975870043375984,52.3659698837634],[4.975807808764421,52.3659173053397],[4.975748391944713,52.36587753512564],[4.975746772213252,52.365878041794446],[4.975758578938672,52.365869877074786],[4.976021061976104,52.365735623245264],[4.975909470692527,52.36569525847521],[4.975591281862803,52.36546570397357],[4.975545221579072,52.36540271997535],[4.975292095547152,52.36553811978222],[4.975280353994229,52.36553768347556],[4.975228743187193,52.36550644249513],[4.975162042818121,52.36548431641121],[4.975097542499113,52.36547350444514],[4.975029487194774,52.365473968591225],[4.974976349481548,52.365482258977565],[4.974924220683368,52.3655067935863],[4.97477122512472,52.36558675438663],[4.974542823338787,52.36571235226977],[4.974445473178118,52.36576214620162],[4.974388686270759,52.36579018750539],[4.974362228849912,52.36578232990368],[4.974259054208719,52.36571488608643],[4.97408581348278,52.36561472524889],[4.974029657665164,52.36557499250586],[4.973945807597316,52.365537275181154],[4.97381039404926,52.36546336414933],[4.973704782797557,52.365408628898024],[4.973555367402409,52.36535161943148],[4.973441360276387,52.365314030063644],[4.973381913892876,52.365291910346954],[4.972818011995892,52.36513455012502],[4.972633804102684,52.365091528368694],[4.972552843789959,52.36511243781143],[4.972413341872175,52.3652249602561],[4.972262233639711,52.365344497189135],[4.972251969393462,52.3653478046336],[4.97223340101017,52.36536304557391],[4.972016445239557,52.36542116327297],[4.971763746277269,52.365442359607805],[4.971414883251107,52.365463217741855],[4.971161769729017,52.365528567805086],[4.970884552711458,52.3656011934873],[4.970583009912793,52.36570317656519],[4.970269510658157,52.36579775586431],[4.970113356168098,52.36580198732824],[4.969981603475983,52.36575779807028],[4.969845389000274,52.3657197135469],[4.969810200470214,52.36570988280945],[4.969786457658768,52.36570540413215],[4.969650142064769,52.365679659110626],[4.96956600967811,52.36567230704965],[4.969496734355928,52.3656791180014],[4.969444708671708,52.36569235305396],[4.969307969998384,52.3657583164301],[4.969236464320457,52.36582886897009],[4.968972139033858,52.36614540738358],[4.968861990203068,52.36632789954657],[4.968823161324837,52.3664082560008],[4.968770916073342,52.36656764761305],[4.968744205900139,52.366708066581396],[4.968735171866097,52.3668097122568],[4.96878376532273,52.36700488963817],[4.968820896356134,52.367103085399165],[4.969046027349663,52.3674360562546],[4.969216629140666,52.367607038017894],[4.969345721748596,52.36771903072896],[4.969451019016985,52.36779309223982],[4.969550627854081,52.36786317002515],[4.969931699896422,52.368136876094276],[4.969936498194937,52.36814031730808],[4.969950251527399,52.368167337787796],[4.969927905201822,52.36820157398195],[4.969917138921667,52.36820821388229],[4.969869805949118,52.36823737384478],[4.969817126676318,52.36826983139447],[4.969400514730709,52.36849267647185],[4.969405434923766,52.36850032436886],[4.969145015457259,52.36863453487618],[4.969046935255369,52.368646735336064],[4.968840336966828,52.36865536171429],[4.968029497534286,52.36864114257312],[4.965133526457707,52.36862633419707],[4.965124286223825,52.36853730528372],[4.96488052108811,52.36853245454403],[4.964876390280488,52.368623970311745],[4.963407417561244,52.36858489207145],[4.963124678881596,52.368575925661794],[4.962467971226417,52.36858152588057],[4.962224244206942,52.368572697253086],[4.961860233790983,52.368565422371105],[4.961551511978997,52.3685543635964],[4.96096338846711,52.368526372375065],[4.960326447657969,52.36850417904849],[4.960095768515363,52.368491411533626],[4.959816175656626,52.36849438420324],[4.959390205217169,52.368506776781516],[4.959159372853209,52.36850991508084],[4.958827836560368,52.36850474352764],[4.958636150024311,52.36849410050896],[4.958438151549629,52.36846353559872],[4.958370268639706,52.36843503249517],[4.958266451722726,52.3683842535367],[4.958201203570397,52.36832017765197],[4.958105776651648,52.36820961593194],[4.958003137864661,52.36806598028521],[4.957926944978163,52.36787666616457],[4.957937308023785,52.367795032671545],[4.957951183259597,52.3676979081579],[4.957905611255925,52.367667229754225],[4.957934190169166,52.36754972954895],[4.958011329211201,52.36751976564051],[4.958061806222254,52.367312018567546],[4.958095616697827,52.36731845944745],[4.958112382501016,52.36728827665594],[4.958096949094142,52.3671807010751],[4.95812386323759,52.367101653076915],[4.958385257859041,52.36717290171707],[4.958409240696125,52.36712972186867],[4.958253728386641,52.36707147562802],[4.958319568312263,52.366961758821894],[4.958381286832569,52.366974601074475],[4.958399315123711,52.366936810245825],[4.958308490421199,52.36688961051165],[4.958358471523927,52.36689699967336],[4.95854462706655,52.36693535014111],[4.9586606182355,52.36695667536673],[4.95871115786017,52.36696857821743],[4.959040121417071,52.367058099214354],[4.959154668406643,52.36708916137927],[4.959184398772567,52.36706042738403],[4.959257823131846,52.36708051961525],[4.959398836639769,52.367115281259835],[4.959413788718902,52.36709189540744],[4.959337447941264,52.36706818867367],[4.9593671781748,52.367039454632206],[4.95942613718698,52.367032459539956],[4.959520314200265,52.36703820135396],[4.959850625684082,52.367050502795415],[4.959871620293748,52.36699119695348],[4.959724071528477,52.36697945669419],[4.959734112461872,52.366955271141556],[4.959580315623984,52.36692305217931],[4.959592120450814,52.366895619467655],[4.959603167561532,52.36689043752047],[4.959622225861406,52.3668842958581],[4.959643223939502,52.36686731306444],[4.959655301312408,52.366848158986244],[4.959661594772409,52.36682890313238],[4.959669840458281,52.36681732082074],[4.959657421775266,52.366798761351305],[4.959642950780623,52.3667631088843],[4.959642283294285,52.36676228859478],[4.959638182258269,52.36673839351207],[4.959646613545112,52.36666946146716],[4.959639465582173,52.36660522764728],[4.959599306370851,52.36653850186248],[4.959537765614503,52.36647525795706],[4.959514843738795,52.36643594392243],[4.959486021367433,52.36640254043898],[4.95949046221245,52.366345484690264],[4.959208951055899,52.36633258570102],[4.959175484448876,52.36637883218202],[4.958859540790889,52.366309913473984],[4.958857752041056,52.36629444818612],[4.958784107579896,52.36627753654355],[4.958690970306249,52.36626769052985],[4.958584257567581,52.36625422718857],[4.958582560776294,52.36622925325897],[4.958613883187184,52.36620439885788],[4.958639239149151,52.36619378630746],[4.958631771159918,52.366162841641525],[4.958573683170732,52.36614361342662],[4.958465170696615,52.366115871018295],[4.958422644123438,52.36609379605497],[4.958428825114292,52.36609381843899],[4.95845992547057,52.36591417736548],[4.958474607099673,52.365914230529],[4.958461608643939,52.365882816439814],[4.958469903767657,52.36582814742594],[4.958471755036248,52.36577027343689],[4.958507556818491,52.365749812285],[4.958591310027589,52.36572633409045],[4.958651519134628,52.36572655203525],[4.95871547788754,52.36573986060142],[4.958787355637063,52.36573893433094],[4.958847805808139,52.36571418525884],[4.95888870597666,52.36570244251651],[4.958954651853281,52.36571219003091],[4.958995314174572,52.3657266095427],[4.959063220973729,52.36573399133954],[4.959129212806785,52.365738984437215],[4.959195353777245,52.36572851921913],[4.959280766095511,52.36573239606034],[4.959371838228141,52.36575532022031],[4.959418291755104,52.36577213326111],[4.959478569723166,52.365765214812214],[4.95951140519321,52.36578436035603],[4.959565556673518,52.365808328379515],[4.959629381530074,52.36583709478435],[4.95967192166386,52.365856275328916],[4.959704757284827,52.36587542081894],[4.959741586691904,52.36588387638653],[4.959809574025678,52.36588293544901],[4.959865930344487,52.365880757131436],[4.959943542078586,52.36588817344931],[4.959966457322414,52.36588854374537],[4.959979281237644,52.36589550154798],[4.960057611621476,52.365918253373216],[4.9601048844898,52.3659338827245],[4.960153343168668,52.3659483479349],[4.960188619535518,52.36595953001727],[4.960223201623689,52.36596657525071],[4.960238755177057,52.36596756605878],[4.960265247256888,52.365974627044494],[4.960387246754362,52.366001535627895],[4.960486223880282,52.36601021498058],[4.960540547549306,52.36601636059863],[4.960589057379244,52.366022476255964],[4.960645918861153,52.36602579984937],[4.96069399957247,52.36603379234354],[4.960697612646148,52.366033661555804],[4.960719773749591,52.36603917893187],[4.96095493956817,52.366013062726836],[4.960998316043346,52.365989581269304],[4.961007629297864,52.36598602870814],[4.961042162205413,52.365967638380376],[4.961085552408487,52.36594424681719],[4.961127612587808,52.36592174922019],[4.96117617517496,52.365893316171196],[4.961235358091599,52.36586128129962],[4.961269056230111,52.36582735718504],[4.961269174632018,52.365827258746464],[4.96130028380021,52.36579843031357],[4.961336126404143,52.36576593394769],[4.961369645781256,52.36573073291007],[4.961399739182213,52.365700642521816],[4.961420636831594,52.36568022575545],[4.961443769466586,52.36565640170241],[4.961463880391859,52.36564146458653],[4.961490120251306,52.36561513514569],[4.961503865260816,52.365590378558196],[4.96150224992575,52.36558888079477],[4.961490680557984,52.36557816182833],[4.961484972722125,52.365565558547644],[4.961496957421979,52.36552992952119],[4.96148775482807,52.36547758811089],[4.961478343716437,52.3654454502638],[4.961459422120629,52.365393064915814],[4.961420635280599,52.36538817095322],[4.961405419436535,52.365368837650415],[4.96139593477198,52.36533213378762],[4.961383566452548,52.36528993706513],[4.961386930684913,52.36525606559337],[4.961373484055074,52.36524055841469],[4.961369847785116,52.36521557754832],[4.961415147535889,52.365149159696045],[4.961458329941577,52.36510294751554],[4.961548267365458,52.365063545316794],[4.961582945017368,52.3650712915384],[4.961635269554497,52.36508217496873],[4.961707066371705,52.365089569233],[4.96177130752741,52.36509026744264],[4.961848787240557,52.36509602830663],[4.961918794346264,52.36508795719497],[4.962004004877167,52.365108188935174],[4.96203567702043,52.365109372208096],[4.962037071578169,52.36510939519126],[4.962038466566516,52.36510937323754],[4.96203984747634,52.365109288319516],[4.962041228902885,52.36510914947721],[4.962042581483407,52.36510895660513],[4.962043919813151,52.36510871874349],[4.962045229296865,52.36510842685214],[4.962046509934545,52.36510808093107],[4.962047746958698,52.36510768991499],[4.962048940369324,52.36510725380383],[4.96205009016642,52.365106772597606],[4.962051181668614,52.36510624624368],[4.962052347697161,52.36510560331743],[4.962064293213166,52.36509851897739],[4.962079323757197,52.36507745188837],[4.962088117508436,52.36506373230555],[4.962090296897363,52.36505079786478],[4.962086475617257,52.365042021151744],[4.962094900259056,52.36502851594744],[4.962113765951775,52.365010176904626],[4.96212193104069,52.36496859323919],[4.962139719189527,52.36494778769782],[4.962146660560016,52.364940451704044],[4.962167998081576,52.364924620102805],[4.962193836260292,52.364894154727274],[4.962214118757336,52.364861242729084],[4.96221743085133,52.36483581048157],[4.962229184396054,52.36480430589545],[4.96220258353855,52.364728938549085],[4.962201765944886,52.364725394466284],[4.962204002989405,52.36471869768317],[4.962237397161827,52.36467342075146],[4.962251431376638,52.36465978287902],[4.962286334867951,52.36463626154897],[4.962294454195182,52.364599432190374],[4.962310294328779,52.364567385024515],[4.962322361022504,52.36452462896931],[4.962328496859331,52.364492546975384],[4.962335567801965,52.364427204911955],[4.96232565380633,52.36438314765052],[4.962308604550824,52.364339091744604],[4.962275675973146,52.364305125943304],[4.962256063443165,52.36426811616284],[4.96225047297813,52.36426011503239],[4.962234693558965,52.36422911379236],[4.962191779310679,52.36416627063906],[4.962168773316014,52.36413408403634],[4.962103102459137,52.36409580338878],[4.962062243947741,52.36408658810468],[4.962060957614552,52.36408599928611],[4.962059898472105,52.36408468328063],[4.962054321361984,52.36408295559362],[4.962022777411569,52.364068471007975],[4.961974334815317,52.364052478704906],[4.961927031417167,52.36404017542539],[4.961897436933214,52.36403368786187],[4.961893918745372,52.36403312697481],[4.961884243026072,52.36403012628027],[4.961752286284158,52.36401167680154],[4.96169737223351,52.36401987395777],[4.961671753301089,52.36402137270349],[4.961631840786993,52.364019162078336],[4.961583965650331,52.36400678470469],[4.961574857750315,52.364002752442026],[4.961545822543511,52.3639869465696],[4.961533604076894,52.36393680527424],[4.961511035345803,52.36386063437211],[4.96151928714045,52.363813110188254],[4.961519459586961,52.36379513543377],[4.96151405918015,52.3637673440632],[4.961514171345051,52.36376636480856],[4.96151242178721,52.36375897063909],[4.961505468462815,52.36372318363031],[4.961428604912643,52.363668765409656],[4.961403392076034,52.363650915066],[4.961349753264996,52.36365477559373],[4.961302668636846,52.36366256931859],[4.961254718952111,52.363680947408504],[4.961226790054159,52.363695218238846],[4.96120383395755,52.36371604100418],[4.961178671372897,52.36372354506014],[4.961141766122438,52.36373079114951],[4.961102198686569,52.36373701203762],[4.961077205660819,52.36374061602588],[4.961065027940258,52.363742855068324],[4.960917800427283,52.3637660076228],[4.960889459347864,52.36377579203348],[4.960831237296084,52.363792128709235],[4.960754216763092,52.36381674720965],[4.96071597284831,52.36383952805659],[4.960652789735502,52.363866407306695],[4.960563931422437,52.36389605209026],[4.960475149472833,52.36391927088581],[4.960423669840594,52.3639397749865],[4.960354637478726,52.363968772062584],[4.960317395758449,52.363963649624246],[4.960288562952343,52.363980262760876],[4.960259882672204,52.36400696062595],[4.960196657874773,52.36403811762188],[4.960155605294888,52.36406436639328],[4.960123972241158,52.36408208386274],[4.960075863636239,52.364116872419835],[4.960027957518942,52.3641489204433],[4.960019757996171,52.36415729434682],[4.960018457064833,52.36415822437245],[4.960016881491099,52.36416023192959],[4.960003047610565,52.36417435559774],[4.959976615914342,52.3642053576217],[4.959945468928143,52.36423814016122],[4.959910889853519,52.36427666242589],[4.959878816892939,52.36431411520313],[4.959852487690689,52.364349701289285],[4.95982761011081,52.36438700026989],[4.959803039097661,52.36442295219873],[4.959783082401946,52.364452359768876],[4.959761039148495,52.364484995369885],[4.95973026730052,52.364524519971255],[4.959702901511669,52.364561001049346],[4.959690238682286,52.36458917666311],[4.959655684061294,52.36463120413788],[4.959632250895188,52.36467093496745],[4.959591156077294,52.36471365781901],[4.959582573907019,52.36475714520102],[4.959575228067252,52.36479421983937],[4.95956575005903,52.364822496818604],[4.959564100515055,52.36482455802851],[4.959567579095201,52.364845988249314],[4.959570028689464,52.36486754956871],[4.959551903909436,52.36488660091237],[4.959521836421549,52.36490479123454],[4.959496396418121,52.36492422059103],[4.959476832694914,52.3649554630152],[4.959479223422645,52.36498312676229],[4.959489035226452,52.36499942991984],[4.959520086029409,52.36501784101593],[4.959533228618604,52.36503130710475],[4.95952445097194,52.36504632078474],[4.959498458995546,52.36505598752053],[4.959459865615314,52.36506153730373],[4.959412658085658,52.36506666049229],[4.959359902153679,52.365065553121404],[4.959337195929125,52.36506943463764],[4.959325676875699,52.36506879083469],[4.959301218100135,52.36506105392009],[4.959275823379716,52.36504532356463],[4.959251247933821,52.3650070640356],[4.95925073020279,52.36499985403991],[4.959256383569575,52.36499215405155],[4.959420172302427,52.364838544214756],[4.959402921903123,52.36476690395068],[4.959431191202524,52.36470679757872],[4.959458463721222,52.364696775976405],[4.959498322182774,52.36467266220342],[4.959498796681964,52.36462343835722],[4.959574127745772,52.36456106628582],[4.95958345753375,52.36454663879474],[4.959589457979106,52.36454099822391],[4.959619324843328,52.36450398694298],[4.959631980512048,52.364485697766064],[4.959648830898722,52.36445870567937],[4.95966364668942,52.36442954919826],[4.959680849544188,52.364396446752345],[4.959699173174656,52.3643689207167],[4.959735817875123,52.364333938132866],[4.959780281631465,52.36431483804563],[4.959825405912447,52.36422868319122],[4.959904125622292,52.36416191018515],[4.959920690462067,52.36413557312938],[4.959939575806006,52.364110673487616],[4.959960726785816,52.36409290925471],[4.959990025629748,52.364075183406165],[4.960012336286217,52.364057432336224],[4.960026341136256,52.36404232063798],[4.960076096459438,52.36401338003821],[4.960117262345088,52.36399213784488],[4.960166085659765,52.36396849658097],[4.960173389596148,52.36396469417002],[4.960360150127643,52.363881045142804],[4.96046658865076,52.36384004951446],[4.960598652972257,52.36379986514332],[4.960747186232033,52.363744757471075],[4.960820707397539,52.3637328888894],[4.960919965089436,52.363711846623104],[4.960969075690578,52.36369490189023],[4.961001903148212,52.363675049424984],[4.961026893850437,52.363659455868856],[4.961076554874218,52.36364022121235],[4.96114550044226,52.36361557344427],[4.961189527411121,52.36360207058583],[4.96121945853149,52.36359486230296],[4.961273107777449,52.363586849560214],[4.961325221050821,52.36357978396307],[4.961382511632404,52.36360079652477],[4.961451290681391,52.36359806895026],[4.961457381399608,52.36357074131883],[4.961519557810755,52.36352780601004],[4.961600985718023,52.363594616627154],[4.961936561128181,52.36343649772227],[4.96190660191855,52.36340070898709],[4.961907249682874,52.36340052257254],[4.962047918545156,52.36336912150373],[4.962088724518298,52.363366895280635],[4.96211979238883,52.36336819320474],[4.962176267344253,52.36335175075989],[4.962145624235784,52.363307646018605],[4.962217745240105,52.36327936901375],[4.962323344943446,52.363259714466146],[4.962609323682634,52.36314132099376],[4.962745479719128,52.3630766125173],[4.962836783068033,52.36313177369758],[4.962951957170088,52.363070360159185],[4.962882623518863,52.363011431076984],[4.96290346461304,52.362999794811145],[4.963368174525131,52.362753174433514],[4.963426668147864,52.362781946690994],[4.963549780150865,52.36270391578473],[4.963514160164032,52.36267662752548],[4.963536952070192,52.36266360503766],[4.963659690963488,52.36259846102643],[4.963932540548267,52.36245045688406],[4.964158616303984,52.36233771445787],[4.964198113434693,52.362334071765765],[4.964242839307285,52.362327104320116],[4.964299394843405,52.362303524927135],[4.964304820222893,52.3622626233605],[4.964551675320531,52.36212131962929],[4.964725311226837,52.36203751800387],[4.964861877110647,52.36197379720268],[4.965037362497585,52.361900706055],[4.965230184526104,52.36184313526456],[4.96548535110958,52.361764377574964],[4.965785222560801,52.36168221934666],[4.966112382234219,52.36158945308272],[4.966685317229274,52.36143392630428],[4.967154284783118,52.36128876821965],[4.967656995385385,52.36111458078523],[4.968085512674601,52.360981741590656],[4.96829549048257,52.36093014943404],[4.968349130132932,52.3609180081073],[4.968402689080794,52.360934636063234],[4.968873380966724,52.36083743558662],[4.968980318086259,52.36082914926329],[4.969015353005769,52.36082213679572],[4.969048480280991,52.360810363092625],[4.969138297716018,52.36076646984991],[4.969138519894995,52.36074288693878],[4.969135082552396,52.360687016313726],[4.969261382356028,52.36068032601724],[4.969291120560683,52.36073066318805],[4.969299946355553,52.360749065178126],[4.969388110594704,52.36074038866318],[4.969579034315564,52.36073207461065],[4.969755362583991,52.36071472109891],[4.970650585017929,52.360744837336036],[4.971399682916613,52.360702532180895],[4.971840333026551,52.36067711590956],[4.972166825795,52.36066448279771],[4.9722230347044,52.36066316091288],[4.972331128840276,52.360664474469765],[4.972589008805437,52.36067974018701],[4.972677004360797,52.360689036007464],[4.972930703218569,52.360716608458986],[4.972963492165883,52.360700069004494],[4.97303422088583,52.36069865373368],[4.973073110630422,52.360717385299715],[4.973117234290483,52.36070855194768],[4.973162054509149,52.36069743814284],[4.973238850814449,52.360697104516376],[4.973287311341237,52.36068288466531],[4.97332812317449,52.360679701898796],[4.973360849012776,52.360671484712036],[4.973376925484139,52.360696517688844],[4.973390332784488,52.36071654417992],[4.973422887762786,52.36072665227225],[4.973447343711735,52.36072840046566],[4.973485532141853,52.36071687689088],[4.973553685560915,52.36069880711436],[4.973594605304626,52.36068562133761],[4.973646325115109,52.36068081384669],[4.97368727580226,52.36066430270195],[4.973730942242184,52.36064780102766],[4.973774731846484,52.36061965172523],[4.973794036230818,52.36058974519981],[4.973791553133139,52.36056475974718],[4.973805379377946,52.36053983124431],[4.973819789765028,52.360532565584336],[4.973815975620145,52.360524391446745],[4.973869690900472,52.360500761621864],[4.973991796241595,52.36044461935721],[4.974075012838835,52.36038535735792],[4.974122204105539,52.360321331961856],[4.974134113379741,52.3603051777019],[4.974153979789743,52.36026058719671],[4.974149868994643,52.36018018697876],[4.974092487083031,52.36007577452772],[4.974020208816366,52.3600040701808],[4.974015148177456,52.35998156532399],[4.974028701129263,52.35995915239173],[4.974057351747537,52.359926582131536],[4.974084480866487,52.35987767592595],[4.974080035850275,52.3598174249296],[4.974072182517426,52.359765331847406],[4.974074103820104,52.359724525459505],[4.974024417210939,52.3597018648681],[4.974042880756779,52.35968967908495],[4.974075772164612,52.35968881420786],[4.97407635628679,52.35967653007615],[4.974087427029421,52.359561202738156],[4.974074520487802,52.3595141970274],[4.974061676261837,52.35946207753725],[4.974067632370916,52.35945146588625],[4.974066002042981,52.35944524970402],[4.974073027656138,52.35940648335568],[4.974064870345066,52.3593870504694],[4.974043331232501,52.3593716692689],[4.974033496164838,52.35935427073051],[4.974030363492771,52.35933282415938],[4.974033838318307,52.3593175212642],[4.974060605964977,52.3593074046636],[4.974078351414772,52.35928245384995],[4.974091932649699,52.359256976204506],[4.974093790966586,52.35923554705037],[4.974084079400255,52.359204883117336],[4.974102594554552,52.359185552291365],[4.974109454233487,52.35916618079352],[4.974108056359203,52.35913657046732],[4.974115300488077,52.35907432004427],[4.974142244184369,52.359046848811026],[4.97416624957558,52.35897546245682],[4.974185434885865,52.35888568844349],[4.974186047280459,52.358868784735456],[4.974225182351312,52.35886892125824],[4.974264769509334,52.358840981802125],[4.974273885300634,52.35882997671464],[4.974267041564947,52.35883029437621],[4.974220654700511,52.35883331421259],[4.974226283265892,52.35876323885349],[4.974252563197121,52.35860041066541],[4.974256978591418,52.358599176777794],[4.97425719636254,52.35857577359193],[4.97425311320949,52.35849239852143],[4.974258526148903,52.3584328649651],[4.974249030154979,52.35840901446191],[4.974212561999398,52.35841574485743],[4.974185696145527,52.35842070221579],[4.97418616714156,52.35837009417293],[4.974186555078759,52.358328410616764],[4.974152985263579,52.35827767482243],[4.97415373342578,52.358197291524945],[4.974159050222966,52.358149675312404],[4.974169377389231,52.35808420904967],[4.974155257512209,52.35803354110942],[4.974111970354806,52.357982780383566],[4.974097767417155,52.357941045910756],[4.974117438799874,52.35791729716921],[4.974142066738187,52.35788463195292],[4.974147230306295,52.35785189882074],[4.974147507438253,52.35782212356515],[4.974172148308847,52.3577864834613],[4.974201468593549,52.35777170213409],[4.974298855250143,52.35775714923183],[4.974415789139549,52.357733739630284],[4.974493753626779,52.35771615290697],[4.974625346537422,52.35768386043561],[4.974732492639197,52.35766636626253],[4.974761923328558,52.3576396764899],[4.974830570445782,52.35757738825617],[4.974903952403905,52.35753000907775],[4.974977334288751,52.357482620865795],[4.975045636047294,52.35745904129328],[4.975099181047333,52.357453277845146],[4.975138024768731,52.35745936290695],[4.975176978975843,52.357453548636535],[4.975191680311752,52.35744169111003],[4.975167510398887,52.35742671438474],[4.975128832600576,52.357402762378484],[4.975119349301227,52.357375937058926],[4.975153942410392,52.35731650502023],[4.975178637428028,52.35727491504211],[4.975203208993989,52.357248199259594],[4.975203623579574,52.35720354085961],[4.975198943713679,52.35718268211439],[4.97528178027089,52.35716511182877],[4.975383928088021,52.3571624832945],[4.975529750319239,52.3571689493077],[4.975665978668764,52.35716048918481],[4.975772791822321,52.35717872797838],[4.975869887801062,52.35719692392538],[4.975957347416745,52.35720318661399],[4.97605449864454,52.35721543274904],[4.976170974341725,52.35723965459156],[4.976253397093657,52.35726674203004],[4.976369900573242,52.35728798884645],[4.976496163828265,52.35730628549358],[4.976632159158354,52.35732462474547],[4.976773108824738,52.35733106333828],[4.976904328247412,52.35734045195411],[4.976967507746806,52.3573436458294],[4.97704052937223,52.35733496507994],[4.977137666428118,52.35734721926257],[4.977244645685967,52.357347589770036],[4.977361302061053,52.35735394353396],[4.977439127300243,52.357351238007446],[4.977516952530083,52.3573485324297],[4.977589809232869,52.35735770931252],[4.977672370495655,52.357369903635025],[4.977750140769266,52.35737315655275],[4.977827843410476,52.3573853339623],[4.977915303760812,52.35739158621689],[4.977949234172452,52.35740361220753],[4.978007664856984,52.35739488940823],[4.97808550489146,52.35739217452001],[4.978148711970709,52.35739239293399],[4.97827019979782,52.35740174640839],[4.978381791013646,52.35742893311082],[4.978483719920513,52.3574501185232],[4.97857605379127,52.35745639610191],[4.978663638690042,52.35745073954325],[4.978751016986107,52.35746593364804],[4.978838574508546,52.35746325179084],[4.978935699658121,52.35747847937971],[4.978999256487111,52.35749494828862],[4.979074363261744,52.35752288932295],[4.979279758215415,52.35756903898924],[4.979498529579667,52.357627637376034],[4.979704020281063,52.35766345977758],[4.979855580645807,52.35766713604616],[4.979883373533194,52.3576762103748],[4.980044759368267,52.35768575321614],[4.980114845205507,52.357659453590664],[4.980188144088244,52.357654142236434],[4.980331839032688,52.357636705735075],[4.980338693912253,52.35763514746048],[4.980422275696507,52.35763543468011],[4.980568209345234,52.35762998617358],[4.980675052988718,52.357645236725055],[4.980777105030863,52.35765154595529],[4.980869630557303,52.35763697096259],[4.980962034382738,52.357637288080156],[4.981020192351717,52.35765833008352],[4.981058982538792,52.35767037185302],[4.981132031128024,52.35765871374766],[4.981200084714469,52.357661931067085],[4.981292446707207,52.35766522270799],[4.981341117829056,52.35765943073834],[4.981379949986399,52.35766849762147],[4.981418685797401,52.35768649792377],[4.98147193092262,52.357713472714444],[4.981525339354398,52.35772258950392],[4.981583769843019,52.357713855951836],[4.981622532963213,52.35772888135576],[4.981685794991877,52.3577231392303],[4.981749153217947,52.357708472626186],[4.981817071057999,52.3577265637494],[4.981860557068128,52.35775648885877],[4.981889684430248,52.3577625474208],[4.981933388098454,52.3577686468874],[4.981982019522423,52.357768813355435],[4.982030351946874,52.35780172991488],[4.98207408282968,52.357804854497736],[4.982122469668355,52.35783182135601],[4.982156332579087,52.357849795754056],[4.982214451697129,52.357876795871555],[4.982267860478957,52.357885912325976],[4.982301886419907,52.35788602870435],[4.982316287289636,52.35790691141626],[4.982364891647947,52.35791006154627],[4.982398986638393,52.357904219295975],[4.982433163017449,52.357889452540455],[4.982506157353551,52.357883743251044],[4.982564506409714,52.35788394269788],[4.982613165083588,52.35788113407483],[4.982690882393932,52.35789033341026],[4.982729537593518,52.357917257779064],[4.982811802895316,52.3579621986298],[4.982903812995427,52.35800419777747],[4.982957167878133,52.35801926358462],[4.983010576984946,52.35802837970396],[4.983073757912338,52.35803157032022],[4.983156403198905,52.358034836322155],[4.983204857674456,52.358052860216816],[4.983277526942006,52.358082884384764],[4.983364922832942,52.358098066146376],[4.983452481251653,52.35809538986419],[4.983535235084313,52.35808673829889],[4.983618055365397,52.35806916212952],[4.983720340103004,52.35805164325383],[4.983851927320394,52.35801934051905],[4.983954184738995,52.35800480526043],[4.984022359679818,52.35799312877164],[4.984085636457298,52.357987385413644],[4.984119650141809,52.35799047615167],[4.984158414364618,52.35800550072521],[4.984143715235228,52.35801735936649],[4.984133808407944,52.35803816808249],[4.984138450867711,52.358062001257316],[4.984186974482195,52.358074075135804],[4.984216087774533,52.358080124088026],[4.984215952545726,52.35809501622392],[4.98424502643088,52.35810702387083],[4.984283817888192,52.35811906458349],[4.984313026922327,52.35811618906517],[4.984327684354605,52.35810730518537],[4.984357155089708,52.35809985581447],[4.984420020513744,52.358113569218354],[4.984522223898096,52.358104992121156],[4.984653756724851,52.358078638159384],[4.984795048591285,52.35804934229951],[4.984872874610221,52.358046631885344],[4.984946057725415,52.35802008827652],[4.984999845017248,52.35798751989406],[4.985092423774748,52.357966991934944],[4.985165660607489,52.35793448953707],[4.985258442621222,52.35789311969439],[4.985365759014144,52.35785478302511],[4.985409882252198,52.35781622281781],[4.985468500688296,52.35778665453051],[4.985541736948055,52.35775415189809],[4.985556543471277,52.35773037577597],[4.985566103932591,52.357712073330774],[4.985576929455999,52.35769672313752],[4.985646650818182,52.35762111255959],[4.985661754092056,52.357622934361494],[4.985711697040596,52.357578713562106],[4.985757528997381,52.35755241822373],[4.985835704084208,52.35751100738381],[4.985855449786353,52.35747832319608],[4.985860873931733,52.3574158142484],[4.985890324748106,52.357386137879566],[4.985890620894835,52.35735338775279],[4.985939924793602,52.35727912784009],[4.985964825089518,52.35721370997261],[4.985980088729829,52.35713932567901],[4.985947636848278,52.35696355134301],[4.985933907567055,52.35686823532006],[4.985862207759824,52.356731028896846],[4.985809445836783,52.3566504641341],[4.985717812785209,52.35656679260221],[4.985669574466747,52.35652494410094],[4.985572718449311,52.35647995572521],[4.98550991682449,52.35643508282452],[4.985408310384521,52.35637816950614],[4.985345401244667,52.356345204839364],[4.985302007419638,52.35630337262952],[4.985248653799838,52.356288307875666],[4.985213597454519,52.35629026499896],[4.984922658091497,52.35608167008432],[4.984852626574966,52.35598922738161],[4.984824000446385,52.3559295866417],[4.984809707084021,52.355896786916524],[4.984780850524943,52.355860953772506],[4.984819856095823,52.35584917766847],[4.984854030085977,52.355834410205325],[4.984888420027659,52.35579581709975],[4.984913051145449,52.355760174735245],[4.984913617807104,52.35569765828779],[4.984904035768847,52.355682733123004],[4.984894465942991,52.355664842061095],[4.98492415907574,52.35560837444189],[4.984953528348439,52.35558763178403],[4.985002412546451,52.35555802165697],[4.985046830482203,52.355486720416536],[4.985037422620896,52.35545095339909],[4.985018270771154,52.35541813719082],[4.985037962146292,52.35539141178101],[4.985062619872807,52.355352794548054],[4.985082379857409,52.355320110524616],[4.985078019305068,52.35526351819839],[4.9850930948437,52.355209984792566],[4.9851618731992,52.35513280740851],[4.985225724307883,52.35506156310469],[4.985279615640881,52.3550170862471],[4.985382162173828,52.3549697995978],[4.985396967767834,52.35494603246891],[4.985465164636843,52.3549313713147],[4.985509203939898,52.354901753523045],[4.98554359258701,52.354863160218564],[4.985597213937025,52.354848458521786],[4.98562659462943,52.354824740808496],[4.985665652972759,52.354807005765466],[4.985758212472288,52.35478946113718],[4.985816799850187,52.354762858502276],[4.985890030857797,52.354730355629336],[4.98596814705546,52.354694894342764],[4.986021902670914,52.354665300304035],[4.986094998782968,52.35464768945212],[4.986187623900081,52.35462120195777],[4.986314529004224,52.35456803817338],[4.986397248757569,52.35456236841571],[4.986514153191504,52.35453894678009],[4.986630937857242,52.354530408241104],[4.986747707800433,52.35452186953711],[4.986820695965519,52.354516166563776],[4.986908461994112,52.35448966207193],[4.986952485217968,52.354460043689464],[4.987055082403408,52.354406796924216],[4.987162618228629,52.35434463299356],[4.987221552933011,52.35427932983755],[4.98728043377358,52.35421998530949],[4.987339260855309,52.3541665904222],[4.987373781412587,52.354113113413035],[4.987393524463267,52.35408042894375],[4.987369593601203,52.35403866320354],[4.987398987487599,52.354014945094384],[4.98743332013363,52.3539823098902],[4.987462618813436,52.35396752520967],[4.987455372124285,52.3539458583765],[4.987542848966434,52.353930110705704],[4.987657093914446,52.35390347934629],[4.987740637999259,52.35390391407726],[4.987807339530951,52.35389693999442],[4.987895753773843,52.3538732321305],[4.988070323732596,52.353858218207726],[4.988132303258198,52.35385727673777],[4.988216667671976,52.35384808808014],[4.988262648953842,52.353838877870295],[4.988328419129118,52.35381628873433],[4.988454746663477,52.35378929287073],[4.988526253502245,52.353770228147944],[4.988570068755991,52.35372597650061],[4.988633128485822,52.35369135253642],[4.988671544594538,52.3536925873581],[4.988791415100073,52.35361469007268],[4.988854619555471,52.353596612818784],[4.988878676161497,52.35357542888712],[4.988879877323967,52.35355607343977],[4.988899935140768,52.35353886658387],[4.988928331255135,52.35351661871958],[4.988950253638143,52.35347809033436],[4.988948780950267,52.35345573298911],[4.98893067344543,52.35344043793172],[4.988935867838851,52.35341608078559],[4.988969163178551,52.35340399649846],[4.988985794350969,52.35339897439896],[4.98900754697977,52.353377719776404],[4.989024338666772,52.35335643947574],[4.989027856218896,52.3533341079036],[4.989042956423587,52.3533148531293],[4.989077895457741,52.35330278332766],[4.989112785390073,52.35329782261549],[4.989163213878043,52.353295098150205],[4.989178629870344,52.35328481413757],[4.989199363016807,52.353280659630826],[4.989235628596503,52.3532679651042],[4.989266205482505,52.353252923631494],[4.989292980880312,52.353237869372954],[4.989306470926804,52.35321810584195],[4.989310412351793,52.35320414322775],[4.989309695354675,52.353197346122165],[4.98931068470693,52.3531966843583],[4.989315247517235,52.35319363489137],[4.989312514654467,52.353180845206836],[4.989333695344021,52.35315295568448],[4.989362405858015,52.353133243301414],[4.989406257530012,52.353124070429566],[4.989419423196479,52.35312411467023],[4.989662267251088,52.35296204648159],[4.989672201643081,52.35296068675049],[4.989740936713384,52.35293295683867],[4.98979051845073,52.35292147525106],[4.989838187886334,52.35290881882354],[4.989884093313425,52.35288334000618],[4.989947045683988,52.352863742403436],[4.990006190331801,52.35284646879142],[4.990067280499231,52.35282336866404],[4.990105474336342,52.352808352527525],[4.9901550203408,52.35279919848001],[4.990212204680374,52.35278774221528],[4.990286423724361,52.35278682269049],[4.9903549497832,52.35278239680951],[4.990446495128354,52.35275939857948],[4.990513315226685,52.35273398961399],[4.990555274781128,52.352721313763965],[4.990616202184157,52.352718021683465],[4.990684842594215,52.35270077954473],[4.990740154170706,52.3526869799521],[4.990785898489285,52.35267781290854],[4.990835464994796,52.352666330832754],[4.990883200536545,52.352647850181356],[4.990900599432377,52.35261761091707],[4.990914140489675,52.35259203233587],[4.990932316522041,52.35258160454372],[4.990957182905888,52.35256654351843],[4.99098953777033,52.352564315014725],[4.99100857417685,52.352564378728246],[4.991044817798687,52.35255402037461],[4.991080978309383,52.35255297298169],[4.9911076487285,52.352549566011696],[4.991113468214984,52.35253560962103],[4.991130700581918,52.35252401024087],[4.991161234694548,52.3525136327485],[4.991205033426032,52.35251028305919],[4.991235525981019,52.35250456103363],[4.991292233527171,52.35250040964734],[4.991412752552375,52.35248387984297],[4.991416473585946,52.352483029465446],[4.991464214845211,52.35246221179891],[4.991510274629937,52.35241926079251],[4.991552327092149,52.35239609626233],[4.991594321454665,52.35238109234833],[4.99164593041069,52.35235447249652],[4.991682329477034,52.35232663340434],[4.991714833739019,52.35230926093901],[4.991737879056036,52.35228603284047],[4.991760826560713,52.352272133636134],[4.991781974132199,52.35224773977708],[4.991793507128145,52.352234961850016],[4.991772795448302,52.35221042816541],[4.991746322579331,52.352191690268654],[4.991738958518502,52.35216487335398],[4.991739122186871,52.35214650305551],[4.991788047605435,52.3520997956693],[4.991790539814118,52.35208365310881],[4.991805455996622,52.35206839688989],[4.991834133570315,52.35205218000984],[4.991865428189741,52.35204370127928],[4.991881909578249,52.352029034477994],[4.991890805117388,52.35201244593893],[4.991915696377355,52.351989574489366],[4.991939980890076,52.351967258245594],[4.99205847303343,52.35185836347781],[4.992098683181251,52.35182936857753],[4.992102246534097,52.351806650593154],[4.992227422221244,52.35168881723088],[4.992233303459741,52.35166786856394],[4.992225897764696,52.35164570716384],[4.992210864342725,52.35162468871195],[4.992183005046834,52.35161002669734],[4.992327506355641,52.351499205201655],[4.992328034324636,52.351499251901316],[4.992366153748368,52.351492386626084],[4.992425426027769,52.35145879956717],[4.992513399368216,52.35140461850457],[4.992622810834312,52.35129983621625],[4.992672669588059,52.3512568974158],[4.992775757932746,52.35120788053101],[4.99289871560946,52.35114272492845],[4.992991238274237,52.35105872850467],[4.993053007877151,52.35099336895862],[4.993055826187394,52.350980112505006],[4.993068063102933,52.35097393376397],[4.993091117310486,52.35094954601589],[4.993133171858269,52.35092754932959],[4.993171389755658,52.35090786767045],[4.993200008321983,52.35089981108911],[4.993232531603806,52.35088011045608],[4.993244121495747,52.350859180735995],[4.993265236629938,52.350838273726126],[4.9932788008242,52.35081152654632],[4.993299946863577,52.35078713240732],[4.993332383011538,52.3507755832962],[4.993357251878543,52.350761690174025],[4.993387929057401,52.35073499092911],[4.993414866897052,52.35070129579778],[4.99345309475872,52.35068045466798],[4.993497036188673,52.350660791941536],[4.993539224563455,52.350623651289325],[4.993571722454848,52.350605118878725],[4.993610088834112,52.350570293304884],[4.993631234576198,52.350545899105214],[4.993684702541096,52.35052277176891],[4.993728757315577,52.350490292879535],[4.993749871965976,52.3504693947687],[4.993788202781118,52.35043689683168],[4.993813102298785,52.35041950750184],[4.993859039797794,52.350388203220916],[4.993893424708439,52.35037200480529],[4.993924111566722,52.3503441460401],[4.993971884645215,52.3503209996536],[4.993996779698748,52.350302441869765],[4.99403124102143,52.35027926022834],[4.994077178221309,52.35024795586162],[4.994144987734307,52.350217883518035],[4.994181404087947,52.35018771589715],[4.994213562603261,52.35016766326264],[4.994235203016974,52.35015862158094],[4.994244495141098,52.35015180380354],[4.994271349477145,52.35012742843901],[4.994294351034375,52.35010886430709],[4.994313588242218,52.35008446364977],[4.994338524301923,52.35006124131574],[4.994362078895868,52.35004983321198],[4.994468555935652,52.35000379203689],[4.994552608677077,52.34998571799741],[4.994569404375428,52.349985108618654],[4.994613231196865,52.34997827053966],[4.994650939640184,52.349964581505915],[4.994652336600939,52.34996428055683],[4.994894823796002,52.349953049917865],[4.995242079560622,52.34994618323924],[4.995294488986255,52.349946356766196],[4.995326786672374,52.3499403880096],[4.995363539863932,52.349946765111284],[4.99541172050126,52.34994382383319],[4.99545994221677,52.349936227045134],[4.995500575342438,52.34992704126784],[4.995536172374906,52.349914747046356],[4.995559102787012,52.34990084704787],[4.995594713498807,52.34988699798275],[4.995612553096496,52.34987619087492],[4.995620502343839,52.34987016845226],[4.995793523834531,52.34981561914628],[4.995845615531815,52.34977024173726],[4.995856857951944,52.34976524579588],[4.995915343936501,52.349743706889214],[4.995958679845767,52.34971591637108],[4.996052994929555,52.349655695929364],[4.996086066369794,52.34964182933812],[4.996098937102971,52.34961859373123],[4.99612454284553,52.34958918969928],[4.996145016912422,52.349567525090386],[4.996168001581295,52.34954742364288],[4.996193552613656,52.349524220925296],[4.996224071145937,52.349511909721656],[4.996249663129628,52.34948405150064],[4.996300669246974,52.34944852081976],[4.996331311739775,52.349423789001875],[4.996361994200856,52.34939284680995],[4.996382522736832,52.34936497184138],[4.99644391475723,52.34929998675677],[4.996492423495464,52.349261346993465],[4.99653841954644,52.34921803430319],[4.996581850165296,52.34917937774361],[4.99662781975901,52.34914072055776],[4.996658529096099,52.349106677621485],[4.996701891272265,52.34907577717379],[4.996740148182866,52.34904796062536],[4.996747900522891,52.349030918561134],[4.996786062804643,52.34901552268237],[4.996809019628643,52.34899852177297],[4.996819338242496,52.348978378424455],[4.996829629580213,52.34896133574043],[4.996870411521221,52.348935091336045],[4.996898528053619,52.348908796169376],[4.996926602616712,52.348885601612956],[4.996929264360961,52.34887164350794],[4.996954800937175,52.34884999544855],[4.996990478627288,52.34882838081409],[4.99701602873602,52.34880518690216],[4.997036487329293,52.34878352208648],[4.997049399321149,52.34875717676684],[4.99704221998435,52.34870904196145],[4.997039817454708,52.34869351228969],[4.997047515114822,52.34868267153581],[4.997037987849709,52.34861279673873],[4.997021971608905,52.34856152305971],[4.997022271786462,52.34852737079921],[4.997030255848277,52.34848394159928],[4.997048367358581,52.348442091663166],[4.99707166475792,52.348386291933856],[4.997097623835016,52.34831652510143],[4.99713867786512,52.348259229003794],[4.997174764015588,52.34819105938355],[4.997213265256506,52.348135309719474],[4.997228660293896,52.348113628185864],[4.99725169928772,52.348088871076285],[4.99728476910629,52.348075013131506],[4.997300204976949,52.34804867609534],[4.997295359938947,52.348023827126156],[4.997323529162277,52.34798976665792],[4.997359451277473,52.347940218949425],[4.997397870310591,52.347893780208345],[4.997438829185508,52.34784890468937],[4.997519550685463,52.34774827455492],[4.9975731460769,52.347704995460376],[4.997629322215221,52.34765861509137],[4.997690791818266,52.347584309359085],[4.997741971604943,52.347528601238835],[4.997782915118566,52.347483725548564],[4.997816189608566,52.347448135872334],[4.997851864632959,52.34742497508273],[4.997887581566061,52.34739870467629],[4.997897940142301,52.34737390573266],[4.997910904628029,52.347339795114365],[4.997928878737665,52.34731346634151],[4.997962097488355,52.34728253206848],[4.998002754771588,52.34727025374475],[4.998051477685707,52.34720677203844],[4.998079700164781,52.34716651004975],[4.998102942210458,52.347118475298046],[4.998098272620168,52.34707189467737],[4.998092259342153,52.34703462089569],[4.998077382115018,52.34699731797442],[4.998086597535649,52.346960597564966],[4.998090427938576,52.34695222463289],[4.998113520222518,52.346922937726724],[4.998123905814221,52.34689502910616],[4.998139436000428,52.34685782613734],[4.998157314557484,52.346842363143075],[4.998154925283727,52.3468252876481],[4.998173021427796,52.34678499235161],[4.998191049574912,52.346752453213774],[4.998214045480053,52.34673079652783],[4.998242064617028,52.34671536684474],[4.998239756974075,52.34668897137427],[4.998245242599995,52.34664242412572],[4.998248065892207,52.34660828912992],[4.998253211499085,52.34660054965285],[4.998283659579752,52.346595985082956],[4.998281297512533,52.34657579993482],[4.998271443518398,52.34654472404024],[4.99827673757817,52.34651836253468],[4.998302190576177,52.34650602516197],[4.998315004913808,52.34648899063235],[4.998322825274501,52.34646573818109],[4.998340797728202,52.346437854464845],[4.998340922345324,52.34642362734428],[4.998380266811311,52.346373470407734],[4.998404817854093,52.346363565716864],[4.998448053830391,52.346346631093624],[4.998460949596564,52.34632028555744],[4.998466135897589,52.34630789057554],[4.998488968388273,52.346304855814246],[4.998505461110916,52.346301809217806],[4.998538746603246,52.34626311861277],[4.998551602677875,52.346242974449645],[4.998582104688185,52.346232217454514],[4.99861278451335,52.34620282054384],[4.99863837300633,52.34617497077189],[4.998668793540856,52.34617351575727],[4.998679110650684,52.34615337223382],[4.998712300875491,52.34612553840944],[4.998725128472253,52.34610695799365],[4.998770957131462,52.346083830247856],[4.99880405218601,52.34606686221571],[4.998827074561015,52.34604210473921],[4.998862816924755,52.346012733361654],[4.998890808262161,52.34600040418995],[4.998924052475726,52.34596636896923],[4.998949600001795,52.34594316563649],[4.998995372991013,52.34592469325025],[4.999021015462813,52.34589062408268],[4.999100087723266,52.34583346094961],[4.999168856653321,52.345794877516525],[4.999235154464857,52.34574852955769],[4.999293674192408,52.345722333461154],[4.999334478864407,52.34569297853057],[4.999380388114782,52.34566053955393],[4.999423649022629,52.34563894902657],[4.99945694796988,52.3456002492175],[4.999490082979516,52.345578634482486],[4.999533276027103,52.345564800079124],[4.999584369874198,52.34551840212756],[4.9996073655598,52.34549830004022],[4.999643693487802,52.345465622869014],[4.999658762335086,52.345455848649266],[4.999697810608446,52.34544271963147],[4.999738575231039,52.34541957493186],[4.999766618962179,52.34539948933779],[4.999789103964282,52.34536894183404],[4.999868211924722,52.34531587669489],[4.999947672061991,52.34527288786879],[5.000091341704012,52.3452158185561],[5.000162932707322,52.345158001104316],[5.000203844382304,52.34513644754833],[5.00029617656038,52.34506454219697],[5.000494154285483,52.34489669671939],[5.000599520204867,52.3448328507422],[5.000633447021675,52.34480612426986],[5.00095583886742,52.34466511711089],[5.001099709244124,52.34459808885497],[5.00134580245172,52.344499325582454],[5.001442221645887,52.34445829642895],[5.001459624269939,52.344446696094145],[5.001502936434896,52.34443246590184],[5.00166327815074,52.34437977209277],[5.001911783993633,52.34426481966251],[5.002361768727738,52.34412350492363],[5.002647983431188,52.344049477717896],[5.003213797785677,52.34399063867252],[5.003540404121732,52.34396314384902],[5.003849826371279,52.34389989331639],[5.004170975368317,52.34382955267677],[5.004463287868573,52.343723409782676],[5.004907341064507,52.343592779538824],[5.005164343572472,52.34352578813635],[5.00547357625392,52.34348395943469],[5.00582932057464,52.343456552269856],[5.00624321348881,52.343443603676754],[5.006651035674527,52.343459197035344],[5.006959777511439,52.34347446174476],[5.007600624374419,52.34350150454541],[5.007856859873076,52.343523743730664],[5.008322406811321,52.34360376040118],[5.008769991543224,52.34374082565689],[5.009275699204825,52.34389592437749],[5.009589951385403,52.34395047605535],[5.0098519555883,52.343979865546736],[5.010323972950681,52.34398493753069],[5.010615363510205,52.34398586497316],[5.010774541425067,52.34398415134235],[5.010764861434376,52.34397312860111],[5.011019968483478,52.34396798080395],[5.011146541073606,52.343966001264626],[5.011294598987794,52.34395692662983],[5.011462200405694,52.343939573266226],[5.012100757616539,52.34384791082561],[5.012267649245477,52.343811994474926],[5.012288495435458,52.34385275680613],[5.012475715371134,52.3438163832629],[5.012462479998185,52.343771025383504],[5.012721712849043,52.343727176963505],[5.012958603625692,52.34368411116872],[5.013127806860878,52.343643644151925],[5.013264039227039,52.343614954473786],[5.013496314353282,52.34354652771153],[5.01377738378809,52.34346393704024],[5.013937370846021,52.34342508453993],[5.014070122839963,52.34338257785415],[5.014193055480183,52.34335076240021],[5.014507157334329,52.34327662366288],[5.01479011477058,52.34320119972991],[5.014991022206837,52.3431577110688],[5.015057127502336,52.34316865024006],[5.015142785462417,52.343170105900946],[5.015345674036602,52.34312304576175],[5.015366968492531,52.34313861643965],[5.015593267897936,52.34308566158655],[5.015593437520552,52.3430653948586],[5.015913385322845,52.34299007538296],[5.015979719856434,52.34297359328968],[5.016067498536053,52.3429547876726],[5.016219709710645,52.34291352596844],[5.016389461357042,52.3428699372813],[5.016764030030925,52.34278166457417],[5.016988374232166,52.342728709925005],[5.01759288288466,52.34261817203056],[5.018123872471038,52.342524990753745],[5.018464562650507,52.342453072489604],[5.018926155766258,52.34234547982874],[5.019237928254999,52.34228322101501],[5.019460247806965,52.3422561309748],[5.01994211221793,52.34224659919741],[5.020214763379756,52.342239095304045],[5.020333247775285,52.34222435428912],[5.020449123062277,52.3422074749868],[5.020577681227777,52.34217051140068],[5.020750372705575,52.3420934463962],[5.020999858569579,52.341948168449875],[5.021290986173673,52.34177995628364],[5.021455815443031,52.34170574200697],[5.021592365862761,52.341647734850596],[5.021834479533728,52.34155245790116],[5.022011234064117,52.341492875685006],[5.022326952321979,52.341400970499095],[5.022548724196833,52.34132901537181],[5.022941097442033,52.34116726759977],[5.023034472886276,52.34111651378818],[5.023279241172182,52.34097590809896],[5.023588374698973,52.3408021283289],[5.023846012266589,52.34065566507001],[5.024229309375569,52.34042714250693],[5.024612617284369,52.340198609745535],[5.024802590943048,52.34009317266266],[5.025018101585568,52.33999959629618],[5.025188579518206,52.33992747925181],[5.025326932222395,52.33986311000763],[5.025516710808132,52.33978123693116],[5.025674412193552,52.33970121590563],[5.025857999709099,52.339593798302104],[5.025884000874908,52.33954872347316],[5.025932930811464,52.33944482222508],[5.025928515335893,52.33919939058931],[5.02591644190025,52.33910708599629],[5.02589192659622,52.33896958022001],[5.025876320529799,52.338916523114804],[5.025863846635786,52.33887525844614],[5.025829083238404,52.33881428759428],[5.025633296618363,52.33845244693494],[5.025563897794322,52.338316763265155],[5.025475584815565,52.33813979515103],[5.025414451687651,52.3380324479106],[5.025320285246686,52.33788070823468],[5.02525886072004,52.337773198237144],[5.025224493675148,52.33769081070421],[5.025207324816209,52.33764782393129],[5.025217363663146,52.337609692843564],[5.025269069233358,52.3375702241848],[5.02536285615311,52.337420892638455],[5.025389016539344,52.33735618025292],[5.025457340482384,52.33723270031115],[5.025552127751485,52.33700720985295],[5.025585019011125,52.33690325969079],[5.025621235191826,52.33678557747409],[5.02565427004873,52.33666394891053],[5.025687303373211,52.33654428863812],[5.025703836591996,52.33648151507444],[5.025778635150328,52.33634824013148],[5.025853113760998,52.33625423145074],[5.025857654602675,52.33624975146147],[5.025917534799364,52.336215160832595],[5.025975544108644,52.33617607061005],[5.026023863345305,52.33614677435095],[5.026142824582451,52.33610001478397],[5.026274656608289,52.33604740740135],[5.026464321484058,52.33597730633037],[5.0266604132447,52.335905265214386],[5.026798639748979,52.335854636048104],[5.026879017218191,52.33582346875125],[5.02693710478469,52.33577456371963],[5.027011309254847,52.335713933814766],[5.027047043133055,52.33565513713175],[5.027095806874839,52.33557086398406],[5.027125495027078,52.33546690362798],[5.027197949788621,52.33522564232572],[5.027250865921204,52.335023579853896],[5.027310017979285,52.334843133777255],[5.027375596826718,52.33466074788526],[5.027444101895442,52.33451371051732],[5.027499085400319,52.33445105355958],[5.027544487589902,52.33438846632386],[5.027570295229332,52.33436488909966],[5.027766807368488,52.33422711131965],[5.027890462989419,52.33416867124002],[5.028105021340783,52.33407055651913],[5.028254114312029,52.334003313382986],[5.028390459217822,52.33394491126651],[5.028510337105081,52.33390532428739],[5.028546649789334,52.333894334518014],[5.028633722088335,52.333880173086186],[5.028753429414704,52.3338616705103],[5.02884766855269,52.33385751597263],[5.028974524819865,52.33385124012887],[5.029068763915444,52.33384708541502],[5.029383940460889,52.333850258715046],[5.029496262596437,52.33385059826046],[5.029749840840158,52.33385469886533],[5.029894780095096,52.33385291657862],[5.030099551943539,52.33384354928713],[5.030473092149725,52.33379917104384],[5.030574792356446,52.33376840703925],[5.030716428192981,52.33372666342707],[5.03089438455642,52.33367282369206],[5.030963417074178,52.33364861190193],[5.031094216516579,52.333602395290804],[5.031237768364266,52.33354845151196],[5.031404923298338,52.33348569866472],[5.031483021852818,52.33346152281488],[5.031639171664969,52.33341538179498],[5.031717261120444,52.33339231125156],[5.031818936018361,52.33336265159081],[5.03191148467962,52.3333440642658],[5.032080217504187,52.33331128022369],[5.032237954792297,52.333293993723224],[5.032381161600371,52.33328110337743],[5.032480853979564,52.33327363684534],[5.032801522779179,52.33327015761777],[5.033013367604185,52.33328411159669],[5.033158234091227,52.333291204953554],[5.033299485781073,52.333297172847544],[5.033565701654985,52.333305734009535],[5.03375050874475,52.333302960637155],[5.033851952560023,52.33330214908468],[5.033967941180337,52.33329694991812],[5.034111103344359,52.333289611749365],[5.034265154271321,52.33328008591656],[5.034332229939159,52.33327473152703],[5.034546144125462,52.333255398460054],[5.034863400250743,52.33322526390867],[5.035070057770837,52.33320701377883],[5.035331029771924,52.33319225922762],[5.035470532572161,52.333189339474494],[5.035558096832938,52.333186705642355],[5.035611070215652,52.33318542499563],[5.035681328971726,52.33318937258758],[5.035946824234168,52.33320739929468],[5.036220214488364,52.33322707559465],[5.0364845032896,52.33325116421821],[5.036547835028224,52.33325912624757],[5.036641932069746,52.33327271580452],[5.036784880774591,52.333294224307785],[5.037197311460169,52.33336980005051],[5.037242507416614,52.33337991904665],[5.037475677129426,52.333447198221855],[5.037658214071347,52.33349989314576],[5.03775582214327,52.333527926440034],[5.03787510576676,52.33356268352446],[5.037970894903773,52.333590711271405],[5.038102860644403,52.33362661103529],[5.038314421233986,52.33367717058701],[5.038464482886445,52.33371423776563],[5.038502464062208,52.33372211505528],[5.038669025924814,52.33373370550479],[5.038906241238546,52.333747714645156],[5.039065590578215,52.33375484338321],[5.039210485640326,52.33375860395562],[5.039554704584036,52.33375517565956],[5.039723216360422,52.333750116134595],[5.039922557391514,52.33374071589899],[5.040060291712007,52.33373335460283],[5.040199879891279,52.33372155865573],[5.040301408584559,52.33371186196749],[5.04041736553048,52.33370887634708],[5.040622082636946,52.33370614158741],[5.040826788386154,52.33370674087858],[5.040929853153337,52.333731462067085],[5.041014842508983,52.33375057589282],[5.041119718087314,52.333776407699666],[5.04119557773968,52.33380548003671],[5.04129670276729,52.33384572598575],[5.041340058405626,52.33386249792234],[5.0414248494722,52.33390713595175],[5.041612456066478,52.33400866976116],[5.04171346705821,52.334065569232116],[5.041901066387748,52.33416820804424],[5.042034556966374,52.334240732746665],[5.042220361795019,52.334342260324824],[5.042395339063731,52.33443821065021],[5.042559462831625,52.334531909145824],[5.042656869686939,52.334586568354986],[5.042732613753477,52.33462895913473],[5.042873501016513,52.334682639220276],[5.04309023395543,52.334767610169024],[5.043251017665777,52.3348268930612],[5.043437105095939,52.3348906891573],[5.043554549338412,52.33493098055785],[5.043682976959025,52.334956878460666],[5.043881970901259,52.334992966280765],[5.044120776278697,52.3350358290636],[5.044270924555865,52.335062894775334],[5.044435611309367,52.33508445699104],[5.044745086951441,52.33512419771116],[5.045067495913094,52.33513067557932],[5.045168958322197,52.33512986335561],[5.04543356226744,52.33511508801469],[5.045569495351382,52.33510771509768],[5.045748934354549,52.33509602762485],[5.045902844116512,52.335105351407236],[5.046025898678173,52.33512235141983],[5.046103696289059,52.33513478095707],[5.046197757600957,52.335153917189224],[5.046318922612601,52.335182011261104],[5.046469021636964,52.33521573392187],[5.046772858932948,52.335283189137854],[5.046926539983148,52.33532247591727],[5.047018757294105,52.335344931641366],[5.047206813703954,52.335392082226804],[5.047302655134155,52.33541455712734],[5.047422053222089,52.335435985105924],[5.047507065624716,52.33545287435329],[5.047890600515394,52.33552277536781],[5.048096780456486,52.33556775652907],[5.048234239585063,52.33559700979098],[5.048335510589674,52.33561949041437],[5.048368066610919,52.335627348993555],[5.048483731783271,52.33566319945338],[5.048528888112211,52.33568107938046],[5.048651759135821,52.335722495703855],[5.048738507266808,52.33575048883476],[5.048902936755601,52.33580644000141],[5.049032921191947,52.33586562696101],[5.049134030420731,52.33591142052187],[5.049161101270846,52.33592481761059],[5.049405134408162,52.33599542066156],[5.049466600227535,52.33601225027663],[5.049797510291662,52.336094200197145],[5.049927732718581,52.336122316378],[5.050217102475176,52.3361875015234],[5.050578811593309,52.33626954592529],[5.05062582443848,52.33628077943205],[5.050752365136487,52.33631664960119],[5.050927721565541,52.33636597810452],[5.051057886733922,52.33640185824304],[5.051124780325854,52.33642091338113],[5.051169955219698,52.33643658137337],[5.051318089699262,52.33649248289927],[5.051439137885354,52.33653499662479],[5.051712623039212,52.33663310888583],[5.051890825781475,52.3366983073029],[5.052008265739435,52.33674081021983],[5.05208414802056,52.33676655014997],[5.052263039678778,52.33682809196154],[5.052378700800946,52.33686725503982],[5.052474564774121,52.336887505835506],[5.052682652392315,52.336920270089266],[5.052774957414026,52.33693385070085],[5.052887189349542,52.336945267567266],[5.053006661081975,52.336957810255875],[5.053113464429381,52.336969211579095],[5.053193103318197,52.33697942167618],[5.053279965235992,52.336992986532316],[5.053363136492182,52.33701541176825],[5.053549322675011,52.337069206833746],[5.053619834013393,52.337089385226754],[5.053844022331844,52.33715105229259],[5.054214632437906,52.33725530121612],[5.05447130792153,52.337332589214476],[5.054742463879582,52.3374121462759],[5.054827424745554,52.33743679546431],[5.054873069267534,52.33745080063041],[5.055062881254607,52.33750682344236],[5.05524818071294,52.33756005609561],[5.055331808872578,52.33758248122237],[5.055530757776182,52.33762742909965],[5.055634900794119,52.337631882187786],[5.055707347087561,52.33763486230976],[5.055786669548919,52.33762676184232],[5.055979312029772,52.33760649459199],[5.056011056157175,52.33759964492401],[5.056349070675133,52.33752290964782],[5.05648290459532,52.33749276148064],[5.056814171435781,52.33740768342034],[5.057093175085781,52.33734603339567],[5.057315351419052,52.33731197833167],[5.057514738004388,52.33730004998268],[5.057648282216443,52.33730874449353],[5.057759156243622,52.3373215370563],[5.05788353018004,52.3373440827714],[5.058306488920805,52.337414616847504],[5.058756595886461,52.33749077015151],[5.058937571030889,52.33751624001747],[5.059132122718694,52.3375431403302],[5.059367408285094,52.337575698558986],[5.05960270447381,52.33760686325641],[5.059681893152249,52.337616798102076],[5.059881061385926,52.337632601170824],[5.060046498085553,52.33761641336183],[5.060347913435344,52.33758533980944],[5.06051109024145,52.33756914511057],[5.060880411941998,52.3375438120059],[5.061136435223639,52.33752787238758],[5.061333543097162,52.33751453823355],[5.061655656483743,52.33744190533337],[5.061805459120733,52.33739654296306],[5.06208009463011,52.33731129447199],[5.062214025514388,52.337267272090116],[5.062400144218874,52.33720951578834],[5.062785930592211,52.337100986928796],[5.063160333005724,52.33699797105094],[5.063439436484487,52.33692105424001],[5.063711624548099,52.336860763072245],[5.06377739813975,52.33684707481531],[5.063945134973859,52.33682672654506],[5.064035776862999,52.33681725837341],[5.064169462184186,52.33680652351197],[5.064337057491587,52.3368055966974],[5.064592979989443,52.336800749128386],[5.064735672082297,52.336798360776896],[5.064805938702962,52.336790229594065],[5.064878464807228,52.33678210452269],[5.064971491248793,52.33675739001934],[5.065173429978527,52.33670244962409],[5.065270999802342,52.33667636314267],[5.065436662145705,52.33662826211973],[5.065879091039363,52.33651293865983],[5.06604692133623,52.336477326569394],[5.066430237962422,52.33639374693891],[5.066668383028558,52.33634306341375],[5.066734144957405,52.336330757587305],[5.066771431168577,52.33632410878215],[5.066835651051913,52.33631809909491],[5.066881549627579,52.33631148255378],[5.066938490673851,52.336299557187246],[5.067017033419591,52.33628094946499],[5.067076991216285,52.33626370249286],[5.067105504455014,52.336252823615396],[5.067142993385112,52.33623635169692],[5.067186030768067,52.33621344160741],[5.067202835732359,52.336202531049416],[5.067233957427773,52.3361798673446],[5.067275739009402,52.336139814303394],[5.067547591878419,52.33598607739129],[5.067576482243908,52.33592071604304],[5.067579315387301,52.33591032493661],[5.067609136061244,52.335844121249],[5.067610589975585,52.33583373540518],[5.067607449603341,52.33582361577425],[5.067597658823004,52.33581404440969],[5.067590355315678,52.33580952185506],[5.06757824540399,52.335804159452984],[5.067572090312169,52.33579908276167],[5.067564821091563,52.33578979682223],[5.067560781171198,52.335778272680955],[5.067561302685511,52.335769007780826],[5.067568335376351,52.33574795962746],[5.067579880693915,52.335703330972954],[5.067584711430878,52.33567020640396],[5.067586878945254,52.33562386273798],[5.06758436720751,52.335589594879245],[5.067577767632207,52.33555250283407],[5.067568106345067,52.335524947447325],[5.067561686442035,52.33549347319261],[5.067560000019022,52.33547296771579],[5.06756377885918,52.335424947701824],[5.067585644581746,52.33534888999697],[5.067601478714536,52.33528321475866],[5.0676231338073,52.335203786092116],[5.067640175210066,52.33516198541463],[5.067676285688698,52.33508203852817],[5.067690463739577,52.335054826123255],[5.067761253020198,52.334934806828485],[5.067782085186151,52.33490649789724],[5.067814913901972,52.33486867640714],[5.067887409248004,52.334796970480895],[5.067995049892247,52.33468350362042],[5.068044005536801,52.33463504818088],[5.068071752569392,52.334601985379415],[5.068087741937005,52.33457786957509],[5.068102787308268,52.33455853267561],[5.06810418003113,52.334554599821345],[5.06813497989823,52.334511155463225],[5.06814332872994,52.33449881090548],[5.068143552803638,52.334498254272596],[5.068144479102459,52.334497978151205],[5.068174144659042,52.33445311965708],[5.068203128670607,52.33440713585672],[5.068225866839132,52.334368720828614],[5.068245408683286,52.33433000957607],[5.068275223296342,52.33426436292436],[5.068301592004207,52.33419843734898],[5.068321749831662,52.33413725851068],[5.06834076524624,52.334075797972005],[5.068362450617108,52.33399188437761],[5.06838003203621,52.33390739349823],[5.068390797465086,52.33384450864506],[5.068395701486908,52.33379901716376],[5.068663871757621,52.33383709206878],[5.069172949328434,52.33390980540002],[5.069343183125842,52.33373135369255],[5.069352659679416,52.33372126798805],[5.069416181815963,52.33365430948352],[5.069522887451532,52.33354140493403],[5.069546446770897,52.33348641854592],[5.069738324121761,52.33351642199801],[5.069741360546919,52.33350828729245],[5.069746166616929,52.333509145026795],[5.069761122746688,52.33346929775869],[5.069689703730733,52.33345478878722],[5.069715970174986,52.333404860711084],[5.069783952051301,52.33341992667356],[5.069897552225219,52.33317756355815],[5.069771622607692,52.33315588010354],[5.069791925678338,52.33310482153989],[5.069792164459454,52.333104255955526],[5.069792853993079,52.333104257804784],[5.069913081230067,52.33312115348466],[5.069940022087204,52.333071227164346],[5.069912794948598,52.33306470101117],[5.070024496057159,52.3328004206697],[5.070053338149796,52.332804713189404],[5.070055909661769,52.33279797930938],[5.069907986882919,52.332774547373724],[5.069905078880314,52.33276471602739],[5.069944916381299,52.332515414291954],[5.069945605905789,52.33251541614031],[5.069975879039661,52.332512405519516],[5.0699184178918,52.332341206663],[5.069906258566166,52.33234285476424],[5.069884385625229,52.33229336379758],[5.06988234113958,52.33228998793028],[5.069879150288278,52.33228689659555],[5.069875047930433,52.332284072447685],[5.069870252007095,52.33228181266486],[5.069864760527675,52.332280395860245],[5.069859030337019,52.33227953565244],[5.069852839320288,52.33227951905203],[5.069772804074153,52.33228436449149],[5.069769483541793,52.33226862711842],[5.069815876468151,52.33225582723358],[5.069832186352073,52.33225025366111],[5.069837752667308,52.33224324919726],[5.069838951175194,52.33223566679604],[5.069837403610893,52.3322263963321],[5.069829673737665,52.33221794514553],[5.069822370529263,52.33221343171328],[5.069812766630241,52.33221060179752],[5.069762922933519,52.33219304996524],[5.069758120384034,52.33218966669809],[5.069755178345415,52.33218460772198],[5.069754526980022,52.332179267283614],[5.069759838528537,52.33217506630104],[5.069766963195304,52.33217171502459],[5.069825572097215,52.33215137127266],[5.069833839072282,52.33214830167398],[5.069840296907905,52.33214382514301],[5.069841467286665,52.33214017927695],[5.069841950201497,52.33213624396115],[5.069841517541013,52.332100292017984],[5.069836272929409,52.33206432717122],[5.069829514822495,52.33204717850053],[5.069816335662041,52.3320314146907],[5.069799460739215,52.33201957757875],[5.069777735188245,52.332011088853136],[5.069763570176743,52.33200599977603],[5.069751929957199,52.33199866155766],[5.069743051121869,52.33198881419025],[5.069741532388234,52.331977566508776],[5.069749396706603,52.331967197826735],[5.069760463851555,52.33195823981535],[5.069780766301129,52.33194004025786],[5.069795812094156,52.33192041553096],[5.069796325067093,52.331912274054],[5.069795002232453,52.331904406272145],[5.069781318949944,52.331831910767306],[5.069768154121138,52.33174846064836],[5.069756482722629,52.331681857475644],[5.069740226202088,52.331583515432484],[5.069736654947762,52.331570024307865],[5.069730780440176,52.33155652700474],[5.069712421120312,52.331528669821296],[5.069694021006076,52.331504470517984],[5.06965790304247,52.331459147525266],[5.069612228972106,52.33140229462559],[5.069569050233036,52.33134937602822],[5.069534220558862,52.33122036301539],[5.069525525659145,52.33115405540765],[5.069509332128081,52.33104700441121],[5.06947427689546,52.33098034741527],[5.069413207075772,52.330865024073596],[5.069355963036227,52.330793247382694],[5.069284409771431,52.33070177612863],[5.06921420561606,52.33061452368464],[5.069675066791484,52.33046802126871],[5.069718477531962,52.330521219078975],[5.069747977378865,52.330562587698964],[5.069807889445809,52.33064700806199],[5.069868931950382,52.33073339972987],[5.069917272718358,52.330800937073036],[5.070011910941234,52.33093459515181],[5.070080673939312,52.33103083993665],[5.070165322171484,52.33115015371426],[5.070255652829212,52.33127706826181],[5.070313987823597,52.33135867098043],[5.070304560083225,52.331362016123336],[5.070311380336175,52.33137046484482],[5.070320332663677,52.33136795428433],[5.070363015416589,52.33142677619453],[5.070428162456652,52.3315159827061],[5.070501943896005,52.33161644690565],[5.070470497057959,52.33162366974896],[5.070482964774392,52.33164252335055],[5.070511431537306,52.33163557114837],[5.070543220105636,52.331679192606515],[5.070564662720717,52.33172531191915],[5.070592691726699,52.33178183862388],[5.070617537940661,52.3318341505658],[5.070649574783429,52.33190472675716],[5.070674383089825,52.331962377275445],[5.070700558582654,52.332021703155334],[5.07071586452181,52.33206022939842],[5.070729553462676,52.3321012678701],[5.070740947730303,52.33214315403523],[5.070750712954856,52.33218924208448],[5.07076418984293,52.33226005621812],[5.070775032769312,52.33231344515405],[5.070797713579704,52.33241237043575],[5.070822220330306,52.33251242405387],[5.070868482067804,52.332711679070286],[5.070887200140435,52.33278615619424],[5.070896139381537,52.3328184818579],[5.070909221830085,52.33284997374999],[5.070929531044598,52.33289468787488],[5.070955584610902,52.33293829388339],[5.070967524133869,52.332967535790736],[5.070990300933631,52.33302011174149],[5.071055005557687,52.33314106122459],[5.071088715792463,52.33320349889558],[5.071139678647795,52.33328873946916],[5.071184541166168,52.33336328635139],[5.071200389392961,52.33339170281336],[5.071179499251261,52.3333955746576],[5.071204615809375,52.33344310572582],[5.071205290677299,52.33344310752765],[5.071235106519799,52.333473520592925],[5.071258262411307,52.33350588417684],[5.071270013448687,52.33352867238321],[5.071276506371026,52.33355227342058],[5.071283913162246,52.33360621934707],[5.0712902035593,52.33365623467096],[5.071288297755198,52.33366634073806],[5.071283886480791,52.33367391457585],[5.071276048171775,52.33368063442261],[5.071197165233876,52.33371496353592],[5.071118523524621,52.33375042569008],[5.071110474423993,52.33375377457826],[5.071101739743987,52.33375656439797],[5.071092554287101,52.33375878678842],[5.071082920036577,52.33376016313637],[5.071073289751488,52.33376098225726],[5.071063194019466,52.33376123390946],[5.071039371382954,52.33375864473288],[5.071017647387054,52.33375184593025],[5.070926464829503,52.333710591461504],[5.070819757669069,52.333661440179746],[5.070719683437855,52.33361623415922],[5.070702300219829,52.33360972552398],[5.070682380197193,52.333607146711394],[5.070664262038328,52.333609066560875],[5.070647721056887,52.333614073404576],[5.070612061521625,52.33363167479069],[5.070578680656505,52.33365068434208],[5.070563492721464,52.33365934379692],[5.070549208302615,52.33366885949794],[5.070535846171738,52.33367865628334],[5.070523154933658,52.33368901209934],[5.070511618671431,52.33369993722895],[5.070501226815706,52.33371085643205],[5.070456177333009,52.33375933233196],[5.070416621488837,52.333808937392455],[5.070416399434269,52.33380921541656],[5.0704159259187,52.3338097803738],[5.070374935428803,52.333869214115694],[5.070352682200859,52.33390370323333],[5.070345947991257,52.333916043282024],[5.070343151785213,52.333921365497744],[5.070341514539231,52.333926699803776],[5.070341019659023,52.33393231578658],[5.070341889200694,52.33393793542225],[5.07034368501618,52.33394327891923],[5.070344811353652,52.33394580747615],[5.070365471472931,52.333974227941745],[5.07036638973306,52.333975075242996],[5.070368874469399,52.33397845227918],[5.070370464261764,52.33398182691955],[5.070370656249477,52.33398576404268],[5.070369955344272,52.33398941116947],[5.070367862660253,52.333992775952034],[5.070364862347525,52.33399585968637],[5.070354498404212,52.33400285132934],[5.070340029229866,52.33400533813486],[5.070307016982162,52.33400552836826],[5.070296703109823,52.33400550075262],[5.070287062753189,52.334007721862555],[5.070277624379416,52.334012478041814],[5.070269793938889,52.3340180653937],[5.070253833985141,52.334038253950304],[5.070251037760329,52.33404357616368],[5.070249165758887,52.334048909839666],[5.070248670865602,52.33405452582198],[5.070249320329273,52.33406014486882],[5.070251116138524,52.334065488367074],[5.070254287069194,52.33407139278465],[5.070282003956742,52.33410601569356],[5.070285633679477,52.334111364101844],[5.070283757703336,52.3341172550046],[5.070277532377088,52.33412201079952],[5.070268346803425,52.33412423312573],[5.07025206437634,52.33412587022191],[5.070235765224359,52.33412779487717],[5.070226577594922,52.334130304800794],[5.07021899187361,52.33413449072467],[5.070208152364708,52.33414232592416],[5.070198233101054,52.334150729811945],[5.070189016130513,52.33415940521081],[5.070181144808577,52.33416865942558],[5.070174212509649,52.334177907167394],[5.070171422232562,52.33418239353932],[5.070157935596621,52.33420959910728],[5.070149257089633,52.33423738377833],[5.070143959563083,52.334272475511554],[5.070145544869001,52.334307307064066],[5.070131486873152,52.334317946782],[5.070108902150538,52.33433304851245],[5.070087254324884,52.33434844035493],[5.070066497457513,52.33436439181768],[5.070046677487963,52.33438063339346],[5.070027763148733,52.3343974346297],[5.070009754440128,52.33441479552686],[5.069998674664784,52.33442544321043],[5.069988284502636,52.33443608375353],[5.069961450551818,52.3344688798194],[5.069938747987014,52.33450251382121],[5.069938289129346,52.33450307881578],[5.069938050406732,52.334503635412744],[5.069922036004264,52.33453140040119],[5.069894516432317,52.33459648738857],[5.069877435855791,52.33464615251596],[5.069828520785645,52.334816508873445],[5.069824710401307,52.334836442342116],[5.069824660243119,52.33484346159424],[5.069827091389611,52.334856392412945],[5.069835732025683,52.33486680535318],[5.069843478415042,52.33487300965565],[5.069861745563556,52.33488316978729],[5.069874787832837,52.33488741099489],[5.069891503955867,52.334890826195306],[5.069984713871983,52.33490315550665],[5.06999410227099,52.33490542759145],[5.070008949707709,52.33491165091422],[5.070019203650138,52.33492009986014],[5.070022837451079,52.334924882061955],[5.070025960211491,52.334937536111276],[5.070020798892835,52.334953529356866],[5.069978002420492,52.335039633576535],[5.069927447157284,52.335154100107516],[5.069922440268747,52.33518132837508],[5.069921393584004,52.33519845610693],[5.06992775695034,52.335238072928114],[5.069940145809164,52.335270129277546],[5.069954402183451,52.33529544087588],[5.069983064006064,52.33532725323132],[5.070020638775394,52.33536219021814],[5.070093149352297,52.33541742512565],[5.070143084575726,52.33545350966205],[5.070185478617779,52.335489573978556],[5.070191411278629,52.335492960252346],[5.070187462477177,52.33549941182471],[5.070417458128642,52.335524465155636],[5.07047450980548,52.335529668921154],[5.070431976198829,52.335706504721145],[5.070425045065271,52.33571350555603],[5.070375147772407,52.33589621754533],[5.070334786417459,52.33605844513206],[5.070249039634933,52.33637952540123],[5.070227669085959,52.33648339280774],[5.070222311180884,52.33652691481879],[5.070224833024803,52.3365600591773],[5.070227490491559,52.336572145746445],[5.070235365764973,52.336593233976465],[5.070242383523626,52.33660701291945],[5.070259837652233,52.33663457995833],[5.070295080837125,52.33667568514441],[5.070331041134371,52.336710887328714],[5.0703574794051,52.33673370594208],[5.070459641458243,52.33681009610298],[5.070520557286949,52.336851827155435],[5.07054200387975,52.33686480882904],[5.070665896729743,52.33694939978887],[5.070693287009006,52.33696632494901],[5.070944064105429,52.33713186540648],[5.070960051561167,52.337140895809696],[5.071039452799268,52.33719334436249],[5.071100106987572,52.33723900203135],[5.07114755408446,52.33727255394072],[5.071174455881336,52.33729425913224],[5.071219836341774,52.33732751788811],[5.071269545239103,52.33736697170769],[5.071327241357528,52.33740981720395],[5.071345712012707,52.33742250318159],[5.0714084575537,52.337465083493775],[5.071459601207733,52.33749470853174],[5.071641846626459,52.33759434669319],[5.071728192715392,52.337638104224055],[5.07175537369676,52.33765362649762],[5.071822308717855,52.337686951448916],[5.071900009466277,52.33772086227724],[5.071943655289139,52.33774231529959],[5.072049254168323,52.33778585424117],[5.07206090629647,52.337791781186745],[5.072130177217466,52.337820618338995],[5.07230711776094,52.33789074376193],[5.072412767888472,52.33792922244641],[5.07244867602347,52.33794110978111],[5.072532365340219,52.33797278919429],[5.072625433240734,52.33800618315844],[5.072695203502585,52.33802883777768],[5.07288626070908,52.3380824265478],[5.072983072797753,52.33810515280307],[5.073169640213028,52.3381463711292],[5.073251600812299,52.33816119353712],[5.073318715202279,52.33817148267733],[5.073607765856649,52.33820961064235],[5.073610981191234,52.33820933155512],[5.073781151104519,52.33823309632719],[5.073788722180538,52.33823311637463],[5.073863385283111,52.33824454865346],[5.073930463460039,52.33825792911315],[5.073968682942986,52.338266739326485],[5.074084707756569,52.3382970921365],[5.07411169480468,52.338306996049404],[5.074199930235541,52.33834345876186],[5.074260487840359,52.33837227161772],[5.074345452842115,52.33841686841473],[5.074444089993635,52.33847442556483],[5.074544535739285,52.33853564539573],[5.074615100936006,52.338574865275696],[5.074706761694803,52.33861470703313],[5.074777188000192,52.33864242221521],[5.074858141543664,52.338671288595215],[5.074969810207299,52.33870162903657],[5.075111496422723,52.338734583048485],[5.075186120401399,52.33874966338493],[5.075230781009057,52.338756530852585],[5.075260776779997,52.338762227208605],[5.075388269111218,52.33879177309973],[5.075520538849403,52.33882638251012],[5.075635164098502,52.33886207777678],[5.075741258590725,52.338902792574096],[5.075860329334303,52.338955351221436],[5.075973877302414,52.33901294630348],[5.076014308091134,52.33903299626847],[5.076117557138407,52.33908831721417],[5.076248875150533,52.33916056371186],[5.07633866709816,52.339205737968314],[5.076389839638607,52.33923199055048],[5.07646750533154,52.33927179418351],[5.076516168881396,52.3392980491115],[5.076563695011569,52.33932120028448],[5.076608446953145,52.339346591078886],[5.076874292997432,52.33949418300155],[5.076903298321504,52.33950943024614],[5.076988749435227,52.339552345704035],[5.077052519086527,52.339579754469696],[5.077097782277325,52.33959925049835],[5.077147434727465,52.339614273154744],[5.077170758008624,52.33962163224185],[5.077194556671309,52.33962815671515],[5.077218814159241,52.33963411616147],[5.077243779851598,52.339639520221056],[5.07726873677307,52.33964407941053],[5.077284301978723,52.33964664570336],[5.077359011442555,52.33965190135234],[5.07743395286938,52.33965545888974],[5.077494931280248,52.33965815297994],[5.077555926421467,52.33965634425508],[5.077748116716824,52.339648137800864],[5.077959323213814,52.339639989704665],[5.077998791909325,52.33963615620872],[5.078038021886676,52.33963288829991],[5.07833945686408,52.33960755703553],[5.078432815768404,52.339600215002946],[5.078542910757616,52.33959376138123],[5.078584891389966,52.33959162392379],[5.078626418092124,52.33958723834823],[5.078670903939763,52.339585664627236],[5.078735590552647,52.33958050352431],[5.078864263499391,52.33957381939831],[5.079014480410906,52.339566625003364],[5.079065404692404,52.33956338720124],[5.079131212409053,52.33956159019257],[5.079233721339399,52.33955933140566],[5.079336444561124,52.33955790894143],[5.079450396537916,52.339555958346736],[5.079564353403209,52.339555418720614],[5.079673024163706,52.33955541349953],[5.079781679308232,52.33955766404551],[5.079933935756968,52.33955468900174],[5.080109592682735,52.33955009377833],[5.080251293370135,52.339547926794125],[5.080295570640871,52.33954467122562],[5.080339843992672,52.339541981854076],[5.080459136420458,52.33953161369005],[5.080520601651633,52.339527557735686],[5.080581854470364,52.33952238672704],[5.08081037025951,52.33949994303212],[5.080950997841718,52.33948739166378],[5.081031530718032,52.339478046094825],[5.081099204442357,52.33947372728067],[5.081166634471796,52.33946857194376],[5.081246929774023,52.33946175115167],[5.081327224989781,52.33945493929254],[5.081617677232791,52.33942592230173],[5.08183519106923,52.339402890989014],[5.082007235736482,52.339387884886506],[5.082184591523847,52.33936867699892],[5.082434439040417,52.33934432582215],[5.082664565775672,52.339319923382156],[5.08283684843023,52.33930435945028],[5.083033484547252,52.339282952946256],[5.083236748080131,52.339264376277995],[5.083357636477627,52.33925429689733],[5.083441147041108,52.339244957332824],[5.083524225001167,52.33923450212749],[5.083639626310034,52.33922215247427],[5.08370113037402,52.339214454958494],[5.083762850765203,52.33920730621371],[5.083890439449088,52.33918937924688],[5.08401893328259,52.33917425861652],[5.084141930439426,52.33915827893181],[5.08426604704534,52.339145959969294],[5.084428706236106,52.339132049787246],[5.084502105349197,52.33912718643661],[5.084574374008201,52.3391181049293],[5.08467417676804,52.3391079613059],[5.084768245473472,52.33909950161899],[5.084923779048125,52.33908472770867],[5.085092851770451,52.3390705543742],[5.085186198842695,52.3390646180508],[5.085274280269393,52.33905838061684],[5.085375643845964,52.33905386666953],[5.085476794941143,52.33904822863413],[5.085570367220615,52.33904368567184],[5.085618300354921,52.33904212711185],[5.085665994935924,52.33904112516075],[5.085674934581452,52.3390405817099],[5.085683655963735,52.339039768072084],[5.085761195078119,52.339032379961324],[5.085929111448367,52.339019883183354],[5.086159414721212,52.339001370315785],[5.086362406623968,52.33898784765247],[5.086540188497308,52.33897453922692],[5.086749594158261,52.338960744584995],[5.086936313535777,52.338947170644396],[5.087152852352864,52.33893086784627],[5.08742581626783,52.33891133718686],[5.087622855893867,52.338896952445644],[5.087822400695249,52.338883130948524],[5.087990308296751,52.338871763671754],[5.088163714836364,52.338858720365764],[5.08830112645721,52.33884811145514],[5.088386931745783,52.338837650736814],[5.088492733086659,52.33882332179192],[5.088582217852736,52.338811180534115],[5.088693998951227,52.33879348712841],[5.08881290461548,52.338770203266876],[5.088912555321601,52.33874966593245],[5.089014260068551,52.33872914267627],[5.089112300321539,52.33870804388081],[5.089201831786231,52.33868888289663],[5.089284466102964,52.3386742073119],[5.089364352817168,52.33866008199205],[5.089439156250042,52.338651282511236],[5.089527723109087,52.33864027067713],[5.089656192730461,52.3386282356285],[5.089756200084564,52.33862006552407],[5.090040798801886,52.338608979524786],[5.090194885430337,52.3386059958764],[5.09032052678044,52.33860435175208],[5.090448700925426,52.338603549698135],[5.090612375331374,52.33860620684039],[5.090727455459984,52.33860845444776],[5.090955289525795,52.33861633185889],[5.091209045201007,52.33862286258825],[5.091480448534276,52.33863000308741],[5.091741294812036,52.338638231084566],[5.09195653461339,52.33864467305213],[5.092114231631681,52.33865039597955],[5.092208214277054,52.33865231991909],[5.092339583438717,52.33865209000229],[5.092478311180662,52.33865074581459],[5.092644081029858,52.3386472308295],[5.092842184130784,52.3386446318766],[5.093081554311569,52.33864325859786],[5.0934892197916,52.33863809631777],[5.093547017971801,52.33863570519523],[5.093604594333836,52.33863135418104],[5.093651850314759,52.338625575467894],[5.093698671683319,52.338618950816674],[5.093714045247206,52.3386172992523],[5.093728960327648,52.338613974841515],[5.09375859076387,52.33860646270244],[5.093773751824695,52.33860144022515],[5.09378846170765,52.33859585939169],[5.093802485648061,52.338589719620316],[5.093815603613574,52.338583011378155],[5.093828255786988,52.3385757357565],[5.093839779934694,52.33856818770766],[5.093850605425779,52.33855978409701],[5.093857054523527,52.33855418278223],[5.093992285746729,52.338455653405816],[5.094094572620544,52.338382037027564],[5.09419222954784,52.338314026396944],[5.094297222443951,52.338246042826114],[5.094372958406939,52.33819792145296],[5.094454220353818,52.33814841162058],[5.094569984099768,52.33808015785137],[5.094747395928469,52.33798173187988],[5.09485693165679,52.337921057027884],[5.094991058796519,52.33784920818916],[5.095151886507575,52.33776225388161],[5.095296125840298,52.337687616503096],[5.095460148984778,52.337603204180716],[5.095623456195748,52.33752047056265],[5.09578860780397,52.33743830748324],[5.095900119387507,52.337389149742194],[5.096002414478594,52.33734698859823],[5.096140304696099,52.337295927221504],[5.096329883676924,52.337229542896786],[5.096573918530839,52.33714420216069],[5.096843443745392,52.337051337853325],[5.097026130131615,52.33698634657061],[5.097154354571624,52.33693890931317],[5.097324449463231,52.33687191841349],[5.097492713496369,52.33680210964516],[5.097713172886341,52.33671109155652],[5.097922132192994,52.33662397256716],[5.09837245127019,52.33643745448987],[5.098597275619638,52.33634475572083],[5.098872423219556,52.336231956842944],[5.098932889114375,52.336204574859686],[5.098994959695803,52.336178607818205],[5.099090829970315,52.336135313887496],[5.099146024695473,52.33610848518842],[5.099209257670068,52.33607970771999],[5.099251616175884,52.33605256013371],[5.099288035946755,52.33602260291902],[5.099300717428418,52.336010554325426],[5.099312270971473,52.33599822436904],[5.099322889117349,52.33598533490048],[5.099332614134658,52.335972155653124],[5.099340945315286,52.335958973015195],[5.099348370444525,52.33594523093717],[5.099352327805351,52.33593681011876],[5.099359987567043,52.33592082169098],[5.099376479018826,52.33588912630155],[5.099394100181061,52.335857433656585],[5.099412643898253,52.33582601288223],[5.099432328266711,52.33579517008947],[5.099454787333358,52.335761799513236],[5.099468656707276,52.33574302201772],[5.099483450452754,52.335724237779786],[5.099499399591872,52.33570602257204],[5.09951647664302,52.33568808872156],[5.099534239646387,52.33567071377172],[5.099553145173921,52.33565362920147],[5.09957320795468,52.33563682605834],[5.099665117450472,52.33556823070744],[5.099883278546228,52.335404456713505],[5.100080027490232,52.33525495673696],[5.100336896276015,52.33506065476638],[5.10052117404611,52.33492207081943],[5.100707979736466,52.334784903768046],[5.100803113385049,52.33471632431906],[5.100882796822125,52.3346592206385],[5.100959902293318,52.334610532125865],[5.10100064460233,52.33458563590886],[5.10125888763914,52.33442504803598],[5.1012724725247,52.33441609317336],[5.101292728884846,52.33440321782052],[5.101313891214919,52.33439091087627],[5.101335754115608,52.33437917184409],[5.101358523102191,52.33436798324458],[5.101381965052139,52.334357092859165],[5.101388411009384,52.33435401666246],[5.101404728579872,52.334346749079494],[5.101421964948016,52.33434033754229],[5.101439434318446,52.33433419619555],[5.101457807873951,52.33432890187103],[5.101476397853281,52.33432417428994],[5.101495453728091,52.33432000506672],[5.101514958919998,52.334316690754534],[5.101534693533002,52.334314203859506],[5.101554424502509,52.33431228317622],[5.101574606641497,52.33431092980228],[5.101600741711288,52.33431015701285],[5.10163146718281,52.334309664923296],[5.101662187222684,52.33431001765456],[5.101692888952178,52.3343109365576],[5.101723599982273,52.334312691329366],[5.101754070786008,52.33431529934344],[5.10178431794227,52.33431846404655],[5.101850499625179,52.334327889915215],[5.101915995658611,52.334338994790386],[5.101959267869913,52.334347250905715],[5.102003940904708,52.33435213101273],[5.102022957042189,52.33435414513286],[5.102042435206532,52.33435503690301],[5.10206168226445,52.33435536188936],[5.102081182312951,52.334355130245825],[5.102100440216502,52.33435376556811],[5.102119714520766,52.334352131296384],[5.102138744889832,52.33434964260439],[5.10215734042175,52.33434632599557],[5.102175704899965,52.334342433615944],[5.10219223724126,52.334338258203736],[5.1022131359721,52.33433269122434],[5.102233348718384,52.334326565353535],[5.102253332136978,52.33431959408526],[5.102272409556917,52.33431205440877],[5.10229079920356,52.33430423445562],[5.102308739450311,52.334295568576],[5.102325758968525,52.334286343241466],[5.102342107228734,52.33427655006515],[5.102357518302161,52.334266476013084],[5.102364902882106,52.334261155102006],[5.102386546687419,52.334244633902756],[5.102407517323956,52.3342278414494],[5.102427347268673,52.334210471036336],[5.102446254690604,52.33419281978239],[5.102464256047842,52.3341746091096],[5.102477641879664,52.33416003632962],[5.102557771100491,52.33406950740843],[5.102634006423245,52.33397756699207],[5.102684637804961,52.33391112594615],[5.102732294405773,52.333844111504554],[5.102766308924551,52.33379503962259],[5.102817002792647,52.333718775133114],[5.102881289608444,52.33362988861868],[5.102951316428524,52.33354270553724],[5.103030268634222,52.333456954908385],[5.103115615632754,52.33337374511308],[5.103134282284654,52.333356938011526],[5.103161028194032,52.33333396677071],[5.103188914795962,52.333311564484866],[5.103217474398216,52.33328945141294],[5.103247189477802,52.333267889354744],[5.103277577556738,52.33324661650921],[5.103309119216459,52.33322619126481],[5.103435025421761,52.33314617027494],[5.103564569950422,52.33306839580219],[5.103711768816727,52.332992074538964],[5.10386171103194,52.33291799759239],[5.103979875056737,52.332864641915336],[5.104069997410152,52.332823568120034],[5.104163348607223,52.33277997643859],[5.104236922979087,52.33274560370503],[5.104313276760855,52.3327078761755],[5.104391005614175,52.3326684532102],[5.104436076021877,52.33264525583249],[5.104532905949335,52.332594365183965],[5.104609268196338,52.33255522641717],[5.10466034333823,52.332526704606906],[5.104712328059146,52.33249817595779],[5.10488946573551,52.33239888924732],[5.105022671783646,52.33232365643419],[5.105200289620257,52.332220155178625],[5.105433561962204,52.332089832098916],[5.105597367457652,52.33199640850641],[5.105755187483373,52.331907473283174],[5.105912772148174,52.33181853728954],[5.106106944009883,52.33170889048358],[5.106276011565059,52.33161576605187],[5.106475933217082,52.33150136881343],[5.106591153112922,52.331441532409194],[5.106728728217208,52.331363503871216],[5.106982221812395,52.33122395035698],[5.107139547433299,52.33113809488755],[5.107291582762468,52.33105588468478],[5.107503907511574,52.33093729981294],[5.107576593222511,52.33089870767506],[5.107689297368347,52.33083718355856],[5.107750921215846,52.33080559355853],[5.107791638587902,52.330783499094856],[5.107890294326294,52.33073261899047],[5.107998365844277,52.33067978372506],[5.10810826375937,52.3306280851158],[5.108222269615879,52.330578643008394],[5.108339004426238,52.330531454142005],[5.10840289009542,52.33050632228872],[5.10913253995043,52.33024514899572],[5.109409605364628,52.33014609922053],[5.109483838520712,52.330077742328044],[5.109516307476975,52.33005365961221],[5.109551978557854,52.33003127408407],[5.109586023608282,52.33001085303422],[5.109630401545465,52.32998961136535],[5.109642123306917,52.329984866393836],[5.10965453286846,52.3299803926646],[5.109667391861454,52.329976773818025],[5.109680700342679,52.32997400086646],[5.109694476575906,52.32997149864069],[5.109762144645107,52.329962957201055],[5.109829139026258,52.32995187961666],[5.109856913192989,52.3299466060179],[5.109884457852035,52.3299404960201],[5.109911549531036,52.32993409734873],[5.109938177037541,52.32992685274136],[5.109964134935301,52.329918770704786],[5.109989859899621,52.32991040051104],[5.11000547613919,52.32990454116429],[5.110024548551938,52.329897287830605],[5.110043852200537,52.329890592271816],[5.110063605396105,52.32988473361726],[5.110083795095539,52.3298794511933],[5.110104463683445,52.32987500574183],[5.110137511271305,52.329868620962586],[5.110157921716829,52.3298655769764],[5.110178798065554,52.32986310030133],[5.110199905655842,52.32986118140032],[5.110220993306999,52.32986010729127],[5.110242312145518,52.329859599943646],[5.110263405724485,52.32985992791982],[5.110284714086069,52.32986110123723],[5.110305784201169,52.32986284021755],[5.110348431395403,52.32986265237721],[5.11039085188178,52.3298588239787],[5.110771704075906,52.32980437691872],[5.110794879320331,52.32980022480708],[5.11082747545398,52.32979328154446],[5.110860524666406,52.32978660896123],[5.110932342411205,52.32977358269867],[5.111004855606583,52.329761951106725],[5.111079173805766,52.32975257959033],[5.111154400481921,52.32974573568578],[5.111224874770997,52.329729326742694],[5.111357972452693,52.32970632296126],[5.111491965582285,52.3296855680374],[5.111585100039804,52.329672303427905],[5.111679375911899,52.32966185454773],[5.112047039195987,52.32962591427616],[5.112414250569405,52.3295894145768],[5.112473924496785,52.32957578397241],[5.112645071037284,52.32955343328031],[5.112664599354191,52.32954590196073],[5.113010695381625,52.329512434206585],[5.11301427790352,52.329526202651785],[5.113388854635946,52.32948213138516],[5.11361745217682,52.329473393710806],[5.114351576856267,52.32944559978361],[5.114496226779543,52.32944256277711],[5.11464068078862,52.3294355885367],[5.114986235345929,52.32941588289127],[5.115127724937458,52.329406663304795],[5.115236609877184,52.32940353418513],[5.115260921070568,52.329403032809296],[5.115803571915103,52.32938714784864],[5.115854936622966,52.329383895237314],[5.115900342003095,52.32938118618014],[5.115988399937383,52.32937492585086],[5.116113595522845,52.329367348444016],[5.11622870094862,52.32936171610714],[5.116430466368836,52.329352911564285],[5.116649196765981,52.329343021998206],[5.116895437954967,52.32933235001823],[5.117109359920061,52.3293218823958],[5.117344614950869,52.32931090579186],[5.11745488014901,52.329307499159604],[5.117523215769249,52.329304572106935],[5.117567674573949,52.32930551824059],[5.117617624328548,52.32930815756134],[5.117695302600169,52.32931282830629],[5.117803209429855,52.32932093818989],[5.117877215243705,52.32932643631083],[5.117913872519936,52.32932933286432],[5.117939311524148,52.329329112122274],[5.117977144763262,52.32932919818644],[5.118033780798693,52.32932511177742],[5.118133769930146,52.32931803214254],[5.118348139446662,52.32930869574587],[5.118532935848362,52.32930152976764],[5.118770450654922,52.329292802379115],[5.119010959727682,52.329283793692795],[5.119222582299314,52.32927500672383],[5.119344542389453,52.3292710675723],[5.119360361380686,52.32927026751682],[5.119386964398919,52.32926919526775],[5.11944634627242,52.32926708269846],[5.11955135317009,52.32926226912563],[5.119594233280155,52.3292598405463],[5.119632511643971,52.329259082245244],[5.119725586461403,52.32925760293624],[5.11983516123459,52.32925673603964],[5.11992180903161,52.32925552067582],[5.119932363311576,52.329254421048944],[5.119983014412351,52.32925510163953],[5.119982657660896,52.32923880616427],[5.119980732815108,52.32921493053151],[5.119981667690168,52.32921071741877],[5.119991057450249,52.32921298553873],[5.120003197201414,52.32921413640578],[5.120012145716043,52.32921415660712],[5.120025892896879,52.32921390902195],[5.120106615076084,52.32920762906851],[5.120137346922464,52.329205451495355],[5.120171509745258,52.32920356926081],[5.120203597440777,52.329202796807984],[5.120237295398864,52.329202594202556],[5.120262052817614,52.32920348589651],[5.12032739547843,52.329200550474056],[5.120393194672304,52.32919731945115],[5.12049796944236,52.3291944728177],[5.120547023213844,52.329194861961625],[5.120621282858087,52.32919475062323],[5.120718924317244,52.329194970502705],[5.120770489474125,52.32919733351087],[5.120806467490382,52.32919853795438],[5.120841517451126,52.32920283206142],[5.120887321559379,52.32920938828918],[5.120927409976071,52.32921257024713],[5.120968884082558,52.32921463184804],[5.121009224080556,52.329215001199316],[5.121047523782522,52.32921311902803],[5.121104848865572,52.32920903269863],[5.121245434193768,52.32919615476477],[5.121414233130078,52.32918023927363],[5.121443364669439,52.32917581084681],[5.121476181626462,52.32917083345066],[5.121532173026948,52.32915915831562],[5.121577154940294,52.32915111643363],[5.121693279451189,52.32912693947795],[5.12180756341696,52.329103881741766],[5.121924167143671,52.32907802493743],[5.121945054221146,52.32907357790851],[5.121970988061911,52.32906661664643],[5.122018748218551,52.32905268490236],[5.122141831062458,52.32901532019036],[5.122249992196481,52.32898326063189],[5.122396723215448,52.32893837197345],[5.122512447173932,52.32890492701675],[5.122612780107674,52.32887678622505],[5.122758349490947,52.32883469867849],[5.122832283802811,52.32881519879355],[5.122938565489408,52.328788194473326],[5.123021215363456,52.328765909772514],[5.123060489190446,52.32875308212623],[5.12309630902717,52.328741361232396],[5.123213526022147,52.328688541476666],[5.123583322527937,52.32852252733621],[5.123575381417627,52.32858514481414],[5.123562212276798,52.32864128850138],[5.123566780473724,52.32864523528211],[5.123668906091902,52.32858422963052],[5.123779248669372,52.32853027054716],[5.123940600800991,52.32845592392553],[5.123948196917807,52.328451437991816],[5.12395487045558,52.3284466803751],[5.12396062317183,52.32844135448602],[5.1239654679788,52.3284357569468],[5.123969170325438,52.32842986027301],[5.12397173005238,52.32842369142742],[5.123973147266553,52.32841723243487],[5.123973418560412,52.328411058499675],[5.123973200516779,52.328408244869806],[5.123979668923772,52.32836135253496],[5.124229500902125,52.32824591284194],[5.124231172732283,52.32823608403051],[5.124233759010209,52.32822542139614],[5.124237709591495,52.32821475280525],[5.124242817348579,52.328204374390985],[5.12424883295477,52.32819427661166],[5.12425599111932,52.32818445998859],[5.124264306457778,52.328174933541625],[5.1243403222393,52.328110777537205],[5.124419088934136,52.328047760039404],[5.12443520855343,52.3280357253683],[5.124450858799314,52.32802368066532],[5.124474086688224,52.32801025070254],[5.124496410062101,52.32799597388523],[5.124517810903463,52.327981416397996],[5.1245383038821,52.32796657827388],[5.124558112385043,52.327950893785],[5.124576762001029,52.3279352067213],[5.12458160008736,52.327930723614465],[5.124650233837989,52.327874424240406],[5.12471315973912,52.327815856258866],[5.124771940419566,52.32775869011885],[5.12483028251789,52.32770124435876],[5.124847093294524,52.32768639801793],[5.124862997913405,52.32767098344212],[5.124877996321803,52.32765500961919],[5.124891850523329,52.32763903325841],[5.124904769230476,52.32762248859869],[5.124916338364394,52.32760594094675],[5.124917715861602,52.32760369707822],[5.124951891009178,52.32756220476569],[5.124985379984952,52.32752014469869],[5.125031570708409,52.327460991218636],[5.125084393209087,52.32740409034086],[5.125106297993338,52.32738111240142],[5.125133921827993,52.32736095127907],[5.125173708228306,52.32733800393211],[5.125381129546626,52.32722386997549],[5.125476073461056,52.32717577115963],[5.125567793065506,52.32712963344299],[5.125572855771244,52.32712683148892],[5.125582283428495,52.32712263710425],[5.125592618869075,52.32711873233136],[5.12560340412569,52.32711566440644],[5.125614420751224,52.327113163216126],[5.125626121844943,52.32711150837993],[5.125637819657299,52.327110410771795],[5.125649748892826,52.32710987091045],[5.125677954308776,52.327107964934626],[5.125705485143286,52.32710353192213],[5.125757226826769,52.327073034173374],[5.125808063932565,52.32704168956168],[5.125858213163688,52.32701006479092],[5.125907456177612,52.326977871774],[5.125955792921575,52.32694511949952],[5.125980876554081,52.32692775672954],[5.125994422954023,52.32692161208693],[5.126007296269621,52.32691517835142],[5.126019263382889,52.32690818537825],[5.126030309677694,52.32690062414772],[5.126040668166499,52.32689278278019],[5.126049885803053,52.326884372670335],[5.126058197237687,52.32687540332375],[5.126062112554012,52.32687063950151],[5.126069742784598,52.3268602665721],[5.126076452197394,52.32684932538644],[5.126081784366128,52.32683810254359],[5.126086207059541,52.32682687769398],[5.126088782932147,52.326817895691214],[5.126108183489539,52.32679406719758],[5.126109564228644,52.32679125709791],[5.126113264463091,52.32678564795707],[5.126118121849492,52.3267803289746],[5.126124105518181,52.326775560725224],[5.126353099394483,52.3266165432023],[5.126365985760428,52.326607862534864],[5.126388293151939,52.32659358532338],[5.126402322037934,52.32658518578798],[5.126427858184011,52.32657063706537],[5.12644694130719,52.32656085556935],[5.126457281499001,52.32655610588869],[5.126474967702896,52.326549395099214],[5.126494722152289,52.32654269785061],[5.126510564776328,52.32653768166748],[5.126518603437544,52.3265351738336],[5.126545462536845,52.32652764738221],[5.126564970718679,52.32652291788277],[5.126590221044162,52.32651706857574],[5.126621195414074,52.32651068361718],[5.126661342786394,52.32650346501368],[5.126701721526774,52.326496813130035],[5.126907113235203,52.32645485213053],[5.126954614593839,52.32644428820619],[5.126968392025144,52.32644122673623],[5.127015207237628,52.32643009505466],[5.127029207955065,52.32642647683193],[5.127089354026822,52.32641088058176],[5.127132519966834,52.32639917460942],[5.127156617837192,52.326392208176095],[5.127173607810626,52.326386628200865],[5.127205077702875,52.326375750335124],[5.127236081544885,52.32636429622545],[5.127245507200518,52.3263603893097],[5.127268019282544,52.32635117244905],[5.127290081565959,52.32634110975396],[5.127296746279403,52.326337745019764],[5.127322964797782,52.326324330050774],[5.127348246235315,52.326310616424976],[5.127370561208088,52.326297471493206],[5.127383209324305,52.32628934742839],[5.127394949551003,52.326280951738624],[5.127404621534692,52.32627254252006],[5.127415683831121,52.32626217703689],[5.127425603590861,52.32625153042659],[5.127434615566622,52.326240594217126],[5.127436227593664,52.326238350833655],[5.12744640668566,52.32622348956592],[5.127455428624065,52.32620833815178],[5.127459834461965,52.32619992635892],[5.127464703276826,52.32619010451513],[5.12747098052674,52.32617522569454],[5.12747611519041,52.32616007473562],[5.127480091024117,52.326144921233514],[5.127482699462749,52.32613031297944],[5.127483702341495,52.3261168426382],[5.127483779516987,52.32610363989615],[5.127482252962881,52.32608875293742],[5.127479812066589,52.326074699827046],[5.127476225335044,52.32606093180799],[5.127475099252432,52.32605783757264],[5.127472389049349,52.32605221432102],[5.127461525474135,52.32602859780298],[5.127452026094255,52.3260049842778],[5.127443687175502,52.32598109468041],[5.127440604380637,52.325961422855876],[5.127438429458139,52.32593951508973],[5.127437649737552,52.32591732277971],[5.127437749888479,52.325900192468424],[5.127439005697632,52.325881096390084],[5.127441404027288,52.325862281437544],[5.127441889868678,52.32585946935787],[5.127445896897701,52.32583897723844],[5.127451061112127,52.32581876627676],[5.127457589499296,52.32579855830867],[5.127458530012206,52.32579575621439],[5.127465980883597,52.32577582888855],[5.127474810592994,52.32575590458808],[5.12748454480649,52.32573682711429],[5.127484548063681,52.32573626988487],[5.127484784441678,52.32573598279756],[5.127556628447083,52.32559852096467],[5.127565671453876,52.32558224612581],[5.127576075315813,52.3255665404958],[5.127587621632388,52.32555112497684],[5.127600090480343,52.325535981110896],[5.127613468713237,52.32552084822588],[5.127759670163402,52.32536781189163],[5.127836036720105,52.32524187302336],[5.127846929467802,52.325222798057105],[5.127856665030446,52.32520344193579],[5.127865036425972,52.32518408282446],[5.127872485385727,52.32516443408517],[5.127878775538496,52.325144782806355],[5.127883937796125,52.32512485942517],[5.127905423957982,52.325017332861144],[5.127927566646821,52.32491542503467],[5.128003789833409,52.32485408025251],[5.12813294009042,52.324754383981045],[5.128281355709912,52.324653597267506],[5.128414884143984,52.324552490209456],[5.128495754446972,52.32447879719669],[5.1285811508399,52.324378438557176],[5.128651731094688,52.32434123993137],[5.128688041446523,52.3243224990281],[5.128716576011058,52.32430402873725],[5.128756837047871,52.32427686598869],[5.128869855464802,52.32419369798964],[5.129084612953467,52.32403463507027],[5.129327451495227,52.323854008565746],[5.129382263953298,52.32380890192856],[5.129393797780033,52.32379798004739],[5.129403486729223,52.32378648792204],[5.129408336963733,52.323779748731845],[5.129414089985034,52.3237741529445],[5.12942078018666,52.32376882882887],[5.129428143493979,52.32376378479735],[5.129436647611405,52.323759309474475],[5.129445601531342,52.32375567997346],[5.12945524322501,52.323752330587986],[5.129485092394945,52.32374480998017],[5.129516292586711,52.32373954821658],[5.129524091038275,52.32373787551024],[5.129531203329479,52.32373564407271],[5.129537865814203,52.3237325668126],[5.129543855190495,52.3237292094683],[5.12954891071954,52.32372500524787],[5.129552836767947,52.32372080755603],[5.129554922867444,52.32371772033206],[5.129556099533419,52.32371210558738],[5.129558426808242,52.32370536988625],[5.129561896561778,52.32369891529054],[5.129566523409365,52.32369275081966],[5.129572279734471,52.3236865798196],[5.12957897151929,52.32368097708006],[5.129586554760102,52.32367594250504],[5.129711475523266,52.32359616998804],[5.129791737542346,52.323548314367464],[5.129871046012386,52.323505516688556],[5.129950101844004,52.323468326726044],[5.130006859362219,52.323444300159466],[5.130032146445206,52.32342918388861],[5.130064811302937,52.323409032560065],[5.130181061681788,52.32332165509621],[5.130308323713163,52.323229807574684],[5.130333186749591,52.32321188615922],[5.130780406786193,52.323197406129204],[5.131021111426715,52.323308592836355],[5.131083866623408,52.32343483494038],[5.131051396429942,52.32346200635681],[5.130959239960846,52.32354550921976],[5.130877402791288,52.32362762329276],[5.1308395481392,52.323672767355745],[5.13078733126173,52.32374623645132],[5.13075911002097,52.3237919585955],[5.130734974772583,52.32384386412975],[5.130723568928509,52.323873328021726],[5.130721693259532,52.323880630948445],[5.13072096008158,52.32388821496936],[5.130721372663498,52.32389551386725],[5.130722942353667,52.32390310287876],[5.130725643136898,52.32391040673533],[5.130729504297737,52.323917434488074],[5.13073359191167,52.323923348257935],[5.13075521012643,52.323951760250196],[5.130791546107829,52.32400716719307],[5.130836488095911,52.32408365990912],[5.130853220781758,52.324124985596214],[5.130860761610506,52.32416797206985],[5.130859947069352,52.32422780134986],[5.130850245185773,52.324282263704646],[5.130841339504053,52.32431566962848],[5.130822081634315,52.324356072511186],[5.130792293682697,52.32439616497154],[5.130769185827925,52.32442758080336],[5.130752051191346,52.3244584343616],[5.130746670184423,52.32447583185407],[5.130731831785919,52.324505297293115],[5.130619476925458,52.32467469638034],[5.130616225663337,52.32468143009773],[5.130613898497518,52.3246881658185],[5.130612713842703,52.32469518263445],[5.130612893331563,52.324702202407884],[5.130613998527122,52.32470894556997],[5.130616480926801,52.32471597033604],[5.130619890643032,52.32472243987577],[5.130624429813539,52.32472891186401],[5.130630131044786,52.32473482014688],[5.130636743316479,52.324740451786084],[5.130661846072617,52.32475989264395],[5.130810456618987,52.32486328547985],[5.130936882493103,52.32495765139272],[5.131024700991537,52.325029185771726],[5.131144497748275,52.32512352812159],[5.131148132351989,52.32512662774932],[5.131154756204968,52.325132816620616],[5.131160438021927,52.325139569677845],[5.131164988719413,52.32514660789381],[5.131168613757664,52.32515391373775],[5.131170628487531,52.32516065886141],[5.131170859918748,52.32516122558632],[5.131171093007195,52.32516150470887],[5.13117241992982,52.32516796972632],[5.131173290643849,52.32517723791517],[5.131173002556525,52.325186503597195],[5.131171350309817,52.32519576632819],[5.131168775559786,52.32520474844521],[5.131165056674675,52.325213728087036],[5.131160195259297,52.325222426638796],[5.131154189707523,52.32523112271505],[5.131147028613272,52.325239250066744],[5.131138959681476,52.32524709683559],[5.131080684099053,52.32529752647824],[5.13097278416232,52.32536835856964],[5.130545741511948,52.3256544730237],[5.130534239961737,52.32566231230707],[5.130514609265214,52.32568838794998],[5.130495198573861,52.32571446406669],[5.130483444438997,52.32572539456133],[5.130472376448895,52.325736892767374],[5.130462687349733,52.325748384975775],[5.130453684448166,52.325760435908556],[5.130446045666693,52.3257724987876],[5.130439327781043,52.32578512090048],[5.130433753988665,52.32579775448272],[5.130429322784284,52.325810660174135],[5.130426270372454,52.32582357784437],[5.130424127463368,52.325836488500094],[5.130423896059535,52.32583845630127],[5.13042337967966,52.32584912356427],[5.130423994339782,52.32585952365053],[5.130426002569235,52.3258699177725],[5.130428920253116,52.32588031386746],[5.130433216735574,52.32589072194134],[5.130438424335961,52.32590084438568],[5.130441607573229,52.325905902370955],[5.130484688700363,52.3259467190284],[5.130533756241781,52.325984744494235],[5.130577811873619,52.32601432862309],[5.130622794907498,52.32604335750934],[5.13066870539545,52.32607182216425],[5.130715308586788,52.32609973106573],[5.130762588256213,52.32612735380841],[5.130777663018554,52.32613581691869],[5.130841161807375,52.326174430756666],[5.130905351743394,52.326212767438506],[5.130970456071607,52.32625027020992],[5.131036471629819,52.3262874873114],[5.131103194662443,52.326324139682264],[5.131139753263437,52.32634387484915],[5.131311816800879,52.32643356659379],[5.131537843879644,52.32654696733722],[5.131872434579027,52.32671451901421],[5.132512411263003,52.327030188202315],[5.132799801743504,52.32699569140009],[5.132887656411262,52.326982686286435],[5.132914035841659,52.32697937258355],[5.132940412079284,52.326976616104325],[5.132967238166051,52.326974714415414],[5.132993826410299,52.326973360458275],[5.133020879175319,52.32697286132265],[5.133047692455016,52.32697319752111],[5.133074502496567,52.326974099930574],[5.133101089317862,52.32697555909112],[5.133127656640816,52.32697786304605],[5.133154233804879,52.32698101185832],[5.133180338379794,52.32698471688671],[5.133206218094836,52.326989266269],[5.13323162517143,52.32699438085546],[5.133256809034358,52.327000052193895],[5.133281518719553,52.3270065583642],[5.133305783463445,52.327013917404734],[5.133329342512163,52.32702155354477],[5.133340773364303,52.32702606291674],[5.133368448182241,52.32703736586364],[5.133395430439791,52.32704921556753],[5.13342171844332,52.327061908618845],[5.133447315376216,52.32707488778847],[5.133472218107516,52.32708870131881],[5.133496195064346,52.32710280046526],[5.133519259375822,52.32711745488702],[5.133541645746244,52.32713266508762],[5.133563090081973,52.327148439489164],[5.133583638031609,52.327164490584146],[5.133603243945883,52.32718110588108],[5.133639282277816,52.32721263998194],[5.133670261683509,52.32724641015574],[5.133673895305374,52.32725231385892],[5.133677282991964,52.32726018533762],[5.133679762787448,52.3272677762534],[5.133680875180835,52.32727592147651],[5.133681050343845,52.32728378607386],[5.133679861283047,52.32729164774909],[5.133675919204908,52.32729866767284],[5.13366643806512,52.32731493304433],[5.133655801240407,52.32733063870297],[5.133644021809011,52.327346063294684],[5.133631332885419,52.327361485936756],[5.133617488325627,52.327376339877425],[5.133602515825634,52.32739091278156],[5.133586842430534,52.32740491795793],[5.133570026424999,52.327418642065524],[5.133552304104813,52.327431806992166],[5.133533673879125,52.32744469135211],[5.133526312068702,52.3274494480332],[5.133502611381373,52.327464002217326],[5.133478019043385,52.32747799724894],[5.133452725856302,52.32749141556123],[5.133426746335616,52.327504284147906],[5.133399858955594,52.32751686317627],[5.133372286885398,52.327528604875724],[5.133361942378878,52.32753419999202],[5.133352284136334,52.327540353815586],[5.133343532143708,52.32754707580604],[5.133335702713556,52.327554078392815],[5.133328779533633,52.3275616491469],[5.133323931123171,52.32756810089068],[5.133321142814273,52.327573433592896],[5.13331927866231,52.327578768277434],[5.133318793463252,52.327584096932135],[5.13331945240813,52.32758943702874],[5.13332125554871,52.327594779579634],[5.133324204528807,52.32759983698251],[5.133328079208391,52.32760462674038],[5.133333085110248,52.32760912233106],[5.133339032973181,52.32761307169323],[5.133345877300473,52.327616735372],[5.133350677545999,52.32761871396983],[5.133374483115849,52.327626907864484],[5.133400120457562,52.32763286774943],[5.133429449230665,52.32763461133315],[5.133458792429524,52.32763382940188],[5.133498701769768,52.32762717419306],[5.133536358207985,52.327616865143526],[5.133593792286958,52.32759311693831],[5.13365054008501,52.327568801011054],[5.133706614629331,52.327544204996464],[5.133761989811521,52.327518762615625],[5.133816693327693,52.32749276153462],[5.133863589841889,52.32746983548089],[5.134046079216211,52.32738175120219],[5.134225384388007,52.32729113429694],[5.13429918481687,52.3272500026004],[5.134375964808963,52.327211124142885],[5.134522171989543,52.32713391760513],[5.134569524084304,52.327110713625444],[5.134616188321249,52.327087220553004],[5.134662167867792,52.32706288115902],[5.134707224800827,52.32703826116072],[5.134751611710924,52.327012794874],[5.134767712224099,52.32700356291342],[5.134860154352229,52.32694983394161],[5.13499377355001,52.326870074442084],[5.135132187761543,52.32679312916032],[5.135266977581407,52.326711124923456],[5.135401299129899,52.32662883193037],[5.135422244213741,52.32661370527907],[5.135460904294168,52.32658654584581],[5.135500470638307,52.3265599455635],[5.135540957863943,52.32653391344994],[5.135582367599734,52.32650816190186],[5.135624448846677,52.32648297799063],[5.135722245922614,52.32641577819987],[5.135817979186597,52.32634772910214],[5.135901317455255,52.32628217914866],[5.135988766209103,52.32621861515097],[5.136722529327221,52.32567557056801],[5.136786572386715,52.3256184095977],[5.136903936917273,52.32553243001117],[5.13694562190333,52.325496567420174],[5.136995517699736,52.32546915262068],[5.137098839618471,52.32539690329765],[5.137215715016367,52.32531682727515],[5.137841511827977,52.32481146665122],[5.137893445736697,52.32478657231724],[5.137927023713248,52.32476530627694],[5.137944057891677,52.324754107545395],[5.138113652306466,52.32463144115074],[5.138237904137084,52.324545753344616],[5.138412506549551,52.32442956818724],[5.138419407944019,52.324425646087725],[5.13842538836484,52.32442116481544],[5.138430226230293,52.32441640252302],[5.138434157840824,52.32441107210132],[5.138435549223939,52.3244088281043],[5.138437168478165,52.324405182507206],[5.138441331077527,52.32439789325522],[5.138446416257631,52.3243908755727],[5.138452645498991,52.32438386928217],[5.138460015732048,52.324377422625815],[5.138538268067202,52.32432029056096],[5.138580847444238,52.32428667618948],[5.138612412060818,52.324258098735235],[5.138661677317454,52.32421972591566],[5.138667657736351,52.32421523564336],[5.138672730242336,52.32421047383363],[5.138676645528868,52.32420543097538],[5.13867965456179,52.32419981998985],[5.138680817520329,52.324196452049456],[5.13868689584213,52.324177078372934],[5.138722983366713,52.324158055308764],[5.138757710858864,52.32413566798391],[5.138772657550581,52.32412783513277],[5.138788968363891,52.32412000514287],[5.138806200142264,52.32411273432018],[5.138824118147238,52.324106031159374],[5.13883604586549,52.32410296442614],[5.138847301967432,52.32409933904577],[5.138858093412507,52.324094867846824],[5.138868211683532,52.324090116616134],[5.138877630608788,52.32408451907473],[5.138886141721802,52.3240786320219],[5.138893524902091,52.324072472971466],[5.13896461351099,52.324024034661285],[5.139030894028586,52.32397502000207],[5.139094684429385,52.32392010416287],[5.139142124832628,52.32388003763122],[5.139174793147132,52.32385595618227],[5.13922929662632,52.32382236656371],[5.139243099030845,52.32381453125545],[5.139255978905698,52.32380641539459],[5.139267939410435,52.32379745276382],[5.139278992103842,52.32378820062416],[5.139289136885984,52.32377867695107],[5.139298126057364,52.323768584632354],[5.139300428391852,52.32376605492707],[5.139427420747066,52.323640493236105],[5.139510123340981,52.32356343514994],[5.139539149901008,52.3235373776744],[5.1395702033777,52.3235160879069],[5.139600350474327,52.323494247986055],[5.139629591291249,52.32347183993745],[5.139657909558728,52.323449151333605],[5.139673104064258,52.32343625881851],[5.139748875061157,52.32336845237214],[5.139931611314065,52.32319132746562],[5.139997512970057,52.32312826371244],[5.140043588545945,52.323085389805996],[5.140075155442633,52.323053441579056],[5.140105596031893,52.323020924767725],[5.140135348745703,52.322988127894064],[5.140163711136831,52.32295476188644],[5.140191400322784,52.322921115848466],[5.140204797537284,52.32290429189331],[5.140238933872479,52.32286391853261],[5.140363891854194,52.322731332191815],[5.140383045190142,52.322708058072934],[5.140419982385683,52.322659826272385],[5.140474003068219,52.322588594629],[5.140597671254929,52.32243971066737],[5.140649598945663,52.322375502953285],[5.140678009479818,52.322335962377316],[5.140719615753796,52.322270888288934],[5.140799388608493,52.32214466951291],[5.140821807466968,52.32210904404671],[5.140826431041488,52.32210315774761],[5.140830132165337,52.322096981921945],[5.140832690778566,52.32209052509944],[5.140834090619766,52.322084074852405],[5.14083436112382,52.322077613266764],[5.140833252896336,52.322071148811034],[5.140831220625889,52.32206468243173],[5.140828057375421,52.32205850130399],[5.140823499232709,52.32205258690307],[5.140821911354617,52.32205062428118],[5.140813927283301,52.322043579286586],[5.140805017527301,52.32203682895802],[5.140794975348665,52.32203062452013],[5.140784460678154,52.322024985322045],[5.140773033495371,52.322019910447466],[5.140760913909947,52.32201538237902],[5.140748321782152,52.32201142853747],[5.140743518671923,52.32201001645577],[5.140735500325032,52.32200915491494],[5.140727493505274,52.322008859622024],[5.140719467382138,52.32200940014351],[5.14071165812812,52.322010507340515],[5.140704093532135,52.322012459889464],[5.140697200541942,52.3220149710735],[5.140690759097462,52.32201804942211],[5.140687079798493,52.32202028868091],[5.140634658652353,52.322051915012466],[5.140631430893853,52.32205472143466],[5.140617626792954,52.322065648668215],[5.14060290178385,52.32207600775686],[5.140587255866463,52.32208579870028],[5.14057070206206,52.322095318118926],[5.140553462027071,52.322104269880704],[5.140535551975646,52.322112375400735],[5.140523830900592,52.32211796827709],[5.140511658227409,52.32212300297422],[5.140498800875087,52.32212719140009],[5.140485477307938,52.322130812628195],[5.140471718408056,52.32213358810444],[5.140457727922488,52.32213580585953],[5.140443271173685,52.322137465404104],[5.1404366315431,52.32213660671762],[5.140429987221245,52.3221365928638],[5.140423339754991,52.322137145227515],[5.140416922324747,52.32213853392562],[5.14041485112988,52.322139086843514],[5.140413247693836,52.32213992834283],[5.140408649017834,52.32214132083299],[5.140403378736849,52.322142154685714],[5.140398096933016,52.32214242228977],[5.140392834438814,52.32214185407873],[5.140387796697678,52.322140432505655],[5.140383449821203,52.32213874274244],[5.140355770613754,52.322131099404736],[5.140318444016767,52.322125404240204],[5.140191668398718,52.3220891889557],[5.140164252012483,52.32207649503994],[5.140143202525871,52.322068865490564],[5.140073195011867,52.322047661170956],[5.139973691709576,52.32201318329406],[5.139822032052149,52.32196006370875],[5.139783366627419,52.32194987173136],[5.139780157638046,52.32194929879824],[5.139765962175179,52.32194618634281],[5.139752240822751,52.321942221046434],[5.139739197272142,52.321937699928874],[5.13972662618131,52.321932622561036],[5.139714732942919,52.32192698038487],[5.139720497591632,52.32192165375151],[5.139726490056616,52.32191492551458],[5.139727446930649,52.32190903159072],[5.139727023526676,52.321903413399],[5.13972544300796,52.32189750518165],[5.139722951465602,52.32189189165302],[5.139719312821699,52.321886823974715],[5.139704492793966,52.32187471352794],[5.139700372236009,52.3218719007515],[5.139670989765404,52.321840939622234],[5.139628152315444,52.321795075712465],[5.139609034104391,52.32177255750427],[5.139598344411768,52.321756249445414],[5.139588813439373,52.32173994380989],[5.139580426568768,52.321723631579594],[5.139573185301178,52.32170704312728],[5.139567324311115,52.32169017894413],[5.139562374245969,52.321673038048274],[5.139558566674959,52.321656178161234],[5.13955591936925,52.321639042083405],[5.139554825412953,52.32163005210365],[5.139553764313799,52.321615166267506],[5.139553847306973,52.321600273837625],[5.139555294299067,52.32158539324964],[5.139557898445498,52.32157079370128],[5.139561428175471,52.32155591747119],[5.139566318845588,52.32154160132544],[5.139572355104765,52.32152700895799],[5.139579312236582,52.32151298474151],[5.139585559724877,52.32150259905462],[5.139594327764652,52.32148998070579],[5.13960425295262,52.3214776433956],[5.139615100613527,52.32146558663282],[5.139627076036874,52.32145381983425],[5.139639973932003,52.321442333582524],[5.139787813188949,52.32131455915388],[5.139845097060669,52.32127620258859],[5.139879150197036,52.32125324729198],[5.139916587919065,52.32123619498296],[5.139951252231747,52.32122727971627],[5.140016856618048,52.32121449245655],[5.140056308249889,52.321209802385056],[5.140098247652148,52.321208766497364],[5.140164870123637,52.32122126365668],[5.140215980233275,52.32122220618615],[5.140373174106664,52.3212239452015],[5.140626859646847,52.32122643333237],[5.140721748743228,52.321225228911544],[5.140757042414338,52.32122445756775],[5.140792119167883,52.321223128524935],[5.140827185936117,52.32122095460799],[5.140862272051186,52.32121793587796],[5.14089689190363,52.32121435893031],[5.140913872565796,52.32121243495214],[5.140932682900879,52.32120853748676],[5.140951040097398,52.321204360457216],[5.140968947242691,52.32119934663313],[5.14098662439169,52.32119348748494],[5.140994662862474,52.3211906910607],[5.141031612765063,52.32117953330969],[5.141056845655322,52.3211759367897],[5.141080709195961,52.32117064773073],[5.141099063227226,52.32116703689612],[5.141197535127303,52.321138588864834],[5.141288915813079,52.32110872393744],[5.141342897437691,52.321086375851365],[5.141371176068737,52.321070418528585],[5.141400841977501,52.321050257840845],[5.141458074278795,52.320978475164054],[5.141545455432438,52.32088400719583],[5.141644340751188,52.32078057534034],[5.141654481259368,52.32077160868857],[5.141792747879139,52.32059101818559],[5.14190695422297,52.32045390504268],[5.142096502129313,52.32024000421382],[5.142168431497216,52.320162355696546],[5.142176302381523,52.320150004927704],[5.142210018832087,52.32010261072484],[5.142304358884533,52.31999299435239],[5.142443864557054,52.3198368341816],[5.142679158007932,52.31955533169412],[5.142915996915997,52.31928563275944],[5.143089470715043,52.31907787166976],[5.143189270910406,52.31897471001516],[5.143298614222878,52.31884293314863],[5.143546754544247,52.318556961524585],[5.143744884330796,52.31832368920792],[5.143978909259194,52.318064650704514],[5.144049697104039,52.31798530898705],[5.14422985793815,52.317767727386695],[5.144336159713928,52.31764661168944],[5.144514828759279,52.317449248900395],[5.144545701533661,52.31741954495629],[5.144598407360248,52.31737724007456],[5.144649488469706,52.31733970430616],[5.144688363987664,52.317310861569794],[5.144708616829144,52.3172948869954],[5.144778850978033,52.31723324047382],[5.144825569866083,52.317196828142535],[5.144838930551074,52.31718337396025],[5.144979599556538,52.317063451515665],[5.145130184318899,52.316932314563736],[5.145256818845674,52.316822752855416],[5.145394022346234,52.31670591459559],[5.145478288967789,52.31663361894105],[5.145569437062206,52.31655797587779],[5.145652090801909,52.3164882113357],[5.145756833169253,52.31639910533878],[5.145839934847333,52.31633046504029],[5.145922338426009,52.31626069979725],[5.146003156368544,52.316191209883115],[5.146102603496547,52.31610743147699],[5.146156697013336,52.31606288179688],[5.146233789030338,52.31600153597686],[5.146297069461626,52.315953068326166],[5.146383141951895,52.3158852785337],[5.146483922636491,52.31580684121076],[5.146645686696868,52.31568414652289],[5.14679340451374,52.31557154322724],[5.14697863777864,52.31542867343265],[5.14734426628978,52.315147425997914],[5.147609787876925,52.31494743031406],[5.147911599972351,52.31472896579145],[5.148100670017939,52.31459396622221],[5.148293664959762,52.31445701495381],[5.148498825743628,52.314312780908246],[5.148666966169876,52.31419403291026],[5.14893973206998,52.31400556206737],[5.149092900134116,52.31389998624707],[5.149301491399993,52.3137577260098],[5.149499254476382,52.313627235517416],[5.14960319254401,52.31355694471692],[5.149705769458723,52.31348609385528],[5.149781894943571,52.31343372247939],[5.150031141117961,52.31327328848407],[5.150205873079945,52.3131626943543],[5.150327716215746,52.3130865518261],[5.150517351992027,52.312972050452345],[5.150614793357001,52.31291776185025],[5.150684211114957,52.31287716834586],[5.150748347762881,52.31283966500575],[5.150828347964898,52.31278899038325],[5.150914788903658,52.312734949190684],[5.150966962787467,52.312705007465745],[5.151014527346297,52.312678696537795],[5.151106911025821,52.31262664435987],[5.151148974574821,52.31260341417227],[5.151190570303716,52.312579904417845],[5.151204591552554,52.31257122329679],[5.151217471944561,52.31256198266138],[5.151229666118551,52.31255217443091],[5.151240952584563,52.312542085770424],[5.151251083530244,52.31253143756725],[5.151252927004748,52.312529472935964],[5.151268588097755,52.31251574398771],[5.151283328341232,52.31250144697626],[5.151296926246193,52.312486869066824],[5.151309601776433,52.3124720106984],[5.151313055566564,52.31246780235027],[5.151320719153655,52.31244956360102],[5.151327005827443,52.31243103450021],[5.151332368605201,52.31241251254516],[5.151335660558987,52.31239734786337],[5.151337550186877,52.31238668322576],[5.151338061430147,52.312376006853064],[5.151337663447544,52.31236533765584],[5.151335887082081,52.31235465672347],[5.151330260699645,52.31233442317607],[5.151326873974822,52.312325994947265],[5.151322107343257,52.31231784258658],[5.151316413915543,52.312310245615905],[5.151309811313121,52.31230264683257],[5.151303434372395,52.312296738186966],[5.151291561652773,52.312287439208426],[5.151279009856538,52.31227899270662],[5.15126529812009,52.31227082250961],[5.151250910359988,52.3122629295819],[5.151243143125894,52.312259256099054],[5.151227601344898,52.31225052501099],[5.151211602071757,52.31224234125835],[5.151194690575353,52.31223473089729],[5.151164276715237,52.31222371422551],[5.151149872570447,52.31221891302277],[5.151126554680951,52.312208189114656],[5.151102544582431,52.312198030046176],[5.151077855458574,52.312188714462],[5.151052695613794,52.31217967655211],[5.151026856742233,52.31217148212584],[5.151000545668315,52.312163843988955],[5.150977890166487,52.31215818145079],[5.150908290959938,52.31214765270906],[5.150838231226148,52.312138246469445],[5.150783051119591,52.31212970577324],[5.150750767038671,52.31212571364276],[5.150708187599838,52.31211916639604],[5.150619327126165,52.312110001070515],[5.150480579202691,52.312089779881006],[5.150252314526097,52.31205702122407],[5.150045351004844,52.31202543726844],[5.149861286745016,52.311997817519725],[5.149823495164827,52.31199269062632],[5.149785495320763,52.311988120540654],[5.149747241731057,52.3119843857901],[5.149708765114193,52.31198122579266],[5.14967028403645,52.31197890163026],[5.149631798495663,52.311977413302884],[5.149613016850592,52.31197681835749],[5.149558029763279,52.311976141717885],[5.149502819689492,52.31197603083021],[5.149447825057847,52.31197676519388],[5.149392825904755,52.311978344367105],[5.14933780910201,52.311980480716954],[5.149306419080107,52.31198209831658],[5.149246568015516,52.31199153190923],[5.14918716405163,52.31200235946513],[5.149086692015851,52.312022945897006],[5.148996295221356,52.312046078070274],[5.148917593152905,52.31206782265448],[5.148830159814909,52.312090682049295],[5.148661054406702,52.31213668189001],[5.148510057706147,52.31218019247228],[5.148432035745803,52.31220081464221],[5.148379928591029,52.31221812766299],[5.148275762516033,52.31224375704087],[5.148207152119599,52.31226215113856],[5.148143142075943,52.312278595170575],[5.148099334473051,52.31228777298615],[5.148050013089019,52.31229694863011],[5.148024556754016,52.31230223587721],[5.147990824866604,52.31231115539827],[5.14790155562378,52.312337093178165],[5.147838437936694,52.312356621632496],[5.147792550446383,52.31236804205347],[5.147751255816843,52.3123789145127],[5.147714774507277,52.31238642630967],[5.147676915809245,52.31239646085235],[5.147657172344701,52.312402883046886],[5.147626896996001,52.31240984115392],[5.147590406580488,52.312419033594836],[5.147549817739116,52.312426815642546],[5.147514488768648,52.31243545317456],[5.147490153871805,52.312442144660004],[5.147455736602678,52.31245303094743],[5.14743300568252,52.312461406371504],[5.147407306989462,52.3124680950766],[5.147379791896484,52.312471697312304],[5.147347218737683,52.31247780584673],[5.147327479748409,52.31248338315108],[5.14730245962143,52.312492041516165],[5.147269412151025,52.312501798075594],[5.147234764715164,52.312511838987795],[5.147207925163486,52.31251796809839],[5.147181067931349,52.31252465440473],[5.147157430750822,52.312532470699956],[5.147138609491614,52.31253917329748],[5.147114739173277,52.3125467104924],[5.14707824552941,52.31255646000646],[5.147041552591634,52.3125650946295],[5.14700504973774,52.3125765427784],[5.146969475325948,52.312587138968986],[5.146940332915552,52.31259606750762],[5.146909581994523,52.31260414792852],[5.146885043665669,52.31260774710612],[5.146851551971707,52.31261555231483],[5.146823312675306,52.31262559713421],[5.146798531518497,52.312633420021626],[5.146756074909609,52.31264484701055],[5.146726020726215,52.31265152671758],[5.146698735570263,52.31265596511871],[5.146665932126513,52.312661228153345],[5.146640001078842,52.31267016314553],[5.146600984365785,52.31268272952238],[5.146561055994519,52.31269303811866],[5.146517011471317,52.312702502473094],[5.146481909686678,52.31270972908927],[5.146461259792101,52.312715583014935],[5.146441739977734,52.31272397376884],[5.146408899938608,52.31273597743594],[5.146367371510045,52.312746570317486],[5.146333881179108,52.312754087775886],[5.146299233335355,52.31276412841326],[5.146262730175603,52.312775567344794],[5.146234985724413,52.31278084954806],[5.146201488331351,52.312786955885],[5.146177859952243,52.312793091301735],[5.146159264491612,52.31279867074027],[5.146158352283376,52.312799226119836],[5.146154443927974,52.31280062922814],[5.146150085609219,52.31280117758787],[5.14614574497652,52.312801168745814],[5.146141394261146,52.31280031503887],[5.146136813450116,52.312798625006515],[5.146122870349675,52.31279270066767],[5.1461098395103,52.312786211960464],[5.146097515631991,52.31277915846685],[5.146086089253145,52.31277155855066],[5.146075368324124,52.31276367246433],[5.146066694304293,52.312756914011096],[5.146053466387047,52.31274620966269],[5.146041149172988,52.31273522854989],[5.146029760349258,52.312723413471375],[5.146019515344641,52.312711600723],[5.146010182651055,52.31269921462013],[5.145994893151103,52.312687391587644],[5.145975960469746,52.31267134589324],[5.145958189350901,52.31265473633832],[5.145942941050881,52.3126353277604],[5.145927003593755,52.31261590878755],[5.145913772678587,52.31260577064243],[5.145899613336674,52.31259647544673],[5.145884777933605,52.31258745748958],[5.145868094844097,52.31257843576228],[5.145862383968666,52.31257421786947],[5.145853260014392,52.312566613638424],[5.14584506293468,52.31255845405937],[5.145837996564308,52.31255000917946],[5.145823862608425,52.31253874571903],[5.145812664913539,52.312532260717774],[5.145803760326639,52.31252747008186],[5.145796219512952,52.3125226822274],[5.145793044659563,52.31251593497197],[5.145790563612932,52.312508344287636],[5.145784422618659,52.312499622673414],[5.145779646295932,52.31249343837582],[5.145773040025396,52.31248668411908],[5.145765056884823,52.3124796394462],[5.145756393042928,52.31247372583474],[5.145742241392084,52.312463028553644],[5.145731512982133,52.31245654450212],[5.145718265981243,52.312446684920694],[5.145697259178864,52.312434562575],[5.145690646825693,52.31242893176426],[5.145678787406277,52.31241739430943],[5.145668100185215,52.31240333370085],[5.145651463020002,52.31238588156892],[5.145637088431814,52.312375741057615],[5.145622913932637,52.312369258948976],[5.145603040298877,52.31235910720707],[5.145592306454191,52.3123509334431],[5.145583171893192,52.312345297476455],[5.145571534936502,52.3123360073911],[5.145555778924103,52.312326421286734],[5.145542529856926,52.3123196534516],[5.145504582706382,52.31230272400327],[5.14548241693089,52.31229341240343],[5.145467326313995,52.312285517334935],[5.145456831048961,52.31227932134101],[5.145447237972673,52.31227171611957],[5.145433314976157,52.3122621427312],[5.145420541946435,52.31225143923988],[5.145403196750432,52.31224016916696],[5.1453823963543,52.31223057273158],[5.145362500496567,52.31222183197314],[5.145347669924278,52.31221196911313],[5.145261846989304,52.312151405280964],[5.145425945176759,52.312058771848854],[5.145245807240853,52.31194072762576],[5.144461797018799,52.31142597783767],[5.143752005586661,52.310959127186216],[5.143620953285161,52.310873752882095],[5.144559150606418,52.31033809861211],[5.144518280943744,52.31031161789808],[5.144645392622137,52.31023772992469],[5.144684433920088,52.310263370991],[5.145206380531382,52.30996531063547],[5.145256720567085,52.30993564628161],[5.145627680224417,52.309722101246216],[5.146022764730896,52.309493720569684],[5.145992631263746,52.309474847870455],[5.145851972505221,52.30955460560376],[5.145753111370136,52.3094926134137],[5.146001083397137,52.30935211994243],[5.146127326858895,52.30943466868344],[5.146360609314913,52.309301451538715],[5.146427652005176,52.309317316468565],[5.146428575783625,52.30931731834826],[5.146429248730842,52.309317607324296],[5.14692286810288,52.30942729907662],[5.147045751096448,52.30945367581146],[5.147185569284093,52.309485695101266],[5.147345082913859,52.309520001077516],[5.147468426574969,52.30954805900737],[5.147605044675859,52.309578111995755],[5.147974159413193,52.309661150278686],[5.148428644184531,52.3097609330366],[5.148975350117825,52.30988252416789],[5.14938636361919,52.30997378523848],[5.149901719395634,52.31008801104573],[5.149903785448823,52.31008829380792],[5.149905619861978,52.31008801886761],[5.149906769604621,52.31008689770977],[5.150060415389293,52.309974014529786],[5.150079957233891,52.3099611383546],[5.150154944470882,52.30990651750393],[5.150277811850255,52.309809867093215],[5.150307267219839,52.30978576710592],[5.150351022515373,52.30974457415045],[5.150389714171064,52.30970701106686],[5.150392930204228,52.30970336849341],[5.150426869057227,52.309655127475935],[5.150464844378493,52.30958133348093],[5.150666686315676,52.30936631972049],[5.150804943634366,52.30921801120354],[5.150832590762947,52.309189143985236],[5.150905877265327,52.30910923682996],[5.150907491927111,52.30910615727003],[5.150942123418342,52.309057072638964],[5.150947216805169,52.30904780749239],[5.150979640092891,52.308981030628885],[5.151000992673512,52.30893079600641],[5.151004716591088,52.308919856409545],[5.151006586467298,52.308868738049824],[5.151008707325275,52.30881453740608],[5.151010148341855,52.308802739419555],[5.151008865521781,52.30878476143942],[5.151006453653879,52.30876678120556],[5.151002883413587,52.308748798659316],[5.150995849473221,52.308734179589976],[5.150987684961682,52.30871984587002],[5.150978596737191,52.30870550131773],[5.150976542680582,52.30870297167065],[5.1509733509315,52.30869930730082],[5.150962199444185,52.308686926936595],[5.150946479334617,52.30867060982043],[5.150909979006304,52.308638235108376],[5.150867326277536,52.3086047246332],[5.150831932153173,52.30858218466087],[5.150818906303529,52.30857486061943],[5.150804968394945,52.30856809199245],[5.150790572977345,52.3085618796878],[5.150775469251538,52.30855651081092],[5.15075968950634,52.30855142818801],[5.150752368524488,52.30854944525057],[5.15072262403002,52.30854264502736],[5.149970789154326,52.30839453256262],[5.149560355980533,52.30875406225706],[5.148850652183022,52.30844114772573],[5.149044629360232,52.30802782496195],[5.149066196050725,52.30797900217886],[5.149250665809452,52.308015324131006],[5.149268492996138,52.30798024499007],[5.149445843958905,52.30801796339342],[5.149465965540847,52.30798429091608],[5.149648141093385,52.30801920555526],[5.149668256472067,52.30798666548287],[5.149844932184338,52.308021847396994],[5.149864128179297,52.3079884606024],[5.150067133461632,52.30802735299101],[5.150117285511215,52.30816114569252],[5.150298305147148,52.30819858255785],[5.15031911526768,52.308164920303504],[5.150498759802439,52.30820178788304],[5.15051864750118,52.30816784512957],[5.15069852232407,52.30820555771077],[5.150719549074483,52.3081724620452],[5.150901493021151,52.30820989983354],[5.150920235238547,52.30817623334448],[5.1511019492523,52.30821282552015],[5.151118386303802,52.30817971163849],[5.151301263291128,52.30821546997081],[5.151318843844211,52.30818236732891],[5.151319079974655,52.30818208019287],[5.15131976912529,52.30818208156666],[5.151497115206401,52.30822119896155],[5.151585550985963,52.308220530243894],[5.151739956167233,52.30818095013632],[5.151841947237103,52.30778569376331],[5.151944315731373,52.307706697623225],[5.152034526829503,52.30771670950187],[5.15204176615994,52.30768976075516],[5.152616300233362,52.30774482743645],[5.15256627710316,52.30797700665654],[5.1525660527511,52.307977842068716],[5.152714423067429,52.308036834921],[5.152898016524572,52.308067541110304],[5.152882695093334,52.30810346161305],[5.153061464940062,52.30813414900795],[5.153048448656083,52.308169507867014],[5.153231113272274,52.30820132617537],[5.153214890349712,52.308235842854586],[5.153398465833417,52.30827018825111],[5.153382015784494,52.308303302421166],[5.153567645984478,52.30833736400745],[5.153550971653891,52.308371322602305],[5.15373454065796,52.30840426537955],[5.153719027769824,52.3084376600634],[5.153902598682205,52.30847031497584],[5.153889118142732,52.30850483715205],[5.15406811755565,52.30853692555481],[5.154256845802255,52.30850611887351],[5.154262498071067,52.30851877570755],[5.154389995185074,52.30849880427858],[5.154403132688071,52.30852691671725],[5.154259802424694,52.308551908085235],[5.154268646729037,52.30857102437779],[5.154247100159517,52.30861704397095],[5.154128253138262,52.30886649748195],[5.153777071244903,52.30881329005976],[5.153778330007217,52.30879138050837],[5.15376952856503,52.30876692556511],[5.153752455600074,52.30874555506234],[5.153740596467966,52.30873654395618],[5.153727810647687,52.30872808825833],[5.153714334162716,52.30871991880296],[5.153699929526328,52.30871258337148],[5.153685083495397,52.308705534673855],[5.153669309265293,52.308699328987124],[5.153655815141556,52.308694520893454],[5.153634313608952,52.30868718043438],[5.153597941047384,52.308677554699244],[5.153561096311731,52.30866849424631],[5.153523794063821,52.308659999104016],[5.153486267492008,52.308652339363796],[5.153325128856324,52.30862281093028],[5.153220753089702,52.308604062942585],[5.152863433991347,52.30854185295456],[5.152714653873703,52.308515718552655],[5.15256654989442,52.30848930668482],[5.152388265975401,52.30845524911834],[5.152291798950684,52.308455057648644],[5.152270958594916,52.308455852130976],[5.152250320526187,52.30845721323704],[5.152229692653813,52.308459419204446],[5.152209516335511,52.30846219229078],[5.152189571675,52.308465523071796],[5.152169842488223,52.30846969912213],[5.152150563427667,52.308474711920425],[5.152131750580949,52.30848029186738],[5.152113623890732,52.30848643940033],[5.15209594879801,52.30849314506584],[5.1520789452456,52.30850040930104],[5.152062640990253,52.30850852875588],[5.152047244401965,52.30851691964357],[5.15203253396866,52.30852587811864],[5.15201874429653,52.30853540464764],[5.152005626163889,52.308545489747836],[5.151993650257677,52.30855585573604],[5.151981681590501,52.308567623820174],[5.151888808133632,52.308669674364694],[5.151685345920548,52.30888778776236],[5.151365302786776,52.309228683283635],[5.151359056873859,52.30923961786455],[5.15136553682984,52.30927025190361],[5.151387824983464,52.30930343400497],[5.151465331363406,52.30937605633305],[5.151498696196565,52.309391563680755],[5.151553130275436,52.30941021373854],[5.151882551021915,52.3094639507087],[5.151864244231628,52.309501267217165],[5.152048975212813,52.30953141074519],[5.152031835820961,52.30956704889742],[5.152216339877445,52.30959858480683],[5.152200111188724,52.30963394617243],[5.152384153628174,52.30966689197235],[5.152369089578571,52.30969831905563],[5.152552198233773,52.309733231047936],[5.152570754186068,52.309690288624275],[5.15288231548177,52.309741749449024],[5.15286563569269,52.30977654378548],[5.153049916919702,52.309806118629446],[5.153038493987306,52.30984232547404],[5.153216349984147,52.30987525773306],[5.153172993613786,52.309972068465065],[5.153143386403116,52.30998071899454],[5.153140639903918,52.30998155840645],[5.153058007556239,52.31001003875325],[5.153032985487884,52.31001954317206],[5.152877811885251,52.31007316223797],[5.15279217736103,52.31010640892632],[5.152781846752214,52.31011060369613],[5.152771749286885,52.31011507754574],[5.152753140938416,52.310123471148124],[5.152722587389306,52.310139139096414],[5.152624700130854,52.3101934285686],[5.152616417910276,52.31019847222896],[5.152608150398695,52.31020350693017],[5.152590427400108,52.31021639611551],[5.152589969892295,52.31021695244628],[5.152589513807441,52.31021723914865],[5.152587670535562,52.31021919481414],[5.152586519386683,52.310220594614066],[5.152554941105342,52.31025535936416],[5.152508017829386,52.31033307288581],[5.152368594560517,52.31061646627127],[5.152323500128368,52.31060879114825],[5.15212089277692,52.31101058866237],[5.151330058817348,52.3108635309567],[5.151460262223667,52.31059191230255],[5.15199762656356,52.31040396115881],[5.152139433905449,52.310105401682925],[5.152142227953928,52.31009557468152],[5.152143878255308,52.31008574540804],[5.152144399473752,52.310075913891716],[5.152143760762486,52.310066367677884],[5.152141979827102,52.31005653158844],[5.152138819012573,52.31004698036449],[5.152134517448808,52.31003686064879],[5.15210160939543,52.309979211031106],[5.152097517387809,52.30997106003817],[5.152069055095327,52.30993786580779],[5.152003644862733,52.309873419780075],[5.151981511873556,52.3098551127641],[5.1519628069022,52.30984019193683],[5.151949790913314,52.30983089973415],[5.15193107259702,52.30981850442109],[5.151913039043134,52.30980694632342],[5.151897263195376,52.30980101901756],[5.151878975681162,52.30979311840672],[5.151859528249498,52.30978550309279],[5.151655423197759,52.309736500447364],[5.151507369388635,52.30969997619224],[5.151481068401323,52.30969346164036],[5.151434607102825,52.30968382413222],[5.151330462993509,52.30966254939775],[5.151258348535635,52.3096514496123],[5.151245075544026,52.30964917621908],[5.151231563457173,52.30964774719213],[5.151218063076492,52.30964687542492],[5.151204308935966,52.30964684799463],[5.151190564973547,52.30964766542764],[5.151177257950049,52.309649040968495],[5.151163962582634,52.30965098275668],[5.15107613106179,52.309667102239125],[5.151051340695917,52.30967435078714],[5.15100383161964,52.30969082929868],[5.150981108751163,52.30969808195889],[5.150968713505094,52.309701715211155],[5.150957003037147,52.309706176698484],[5.15094826615655,52.30971121933491],[5.150940450099506,52.309716821047104],[5.150933321734231,52.30972270275084],[5.150928706712782,52.30972747499679],[5.150843068567551,52.30980538019131],[5.15079215386154,52.309858359885034],[5.150770034869923,52.30988162980664],[5.150683608626605,52.30997526179816],[5.150572544852221,52.31009413586917],[5.150472548425115,52.31019982004534],[5.150392364267552,52.310283074517756],[5.15030619765161,52.31037446880887],[5.150227826356232,52.310461375806085],[5.150162164234355,52.31052977555792],[5.150084388663914,52.31063410182747],[5.150056058095722,52.31066437856503],[5.150027412274345,52.31070701276058],[5.15000734353274,52.31073337841727],[5.149983693949903,52.310785010323094],[5.149977617635405,52.31080802464615],[5.149962715258747,52.31089394420725],[5.149956413317124,52.310915268387646],[5.149951268217827,52.310936891481326],[5.14994701615984,52.31095878599648],[5.149944157101364,52.310980692292],[5.14994242719363,52.31100259186361],[5.149941855669804,52.31102450274547],[5.149942427963816,52.31104640693288],[5.149944145516419,52.31106803479753],[5.149946987319159,52.31109332291255],[5.149950102742783,52.31111130457095],[5.14995436342847,52.31112900990652],[5.149959766403635,52.31114699615085],[5.14996655079863,52.31116441893887],[5.149974242817764,52.31118213115258],[5.149983081638976,52.31119927943923],[5.149987396301476,52.311206873712365],[5.15011386101518,52.31133829373668],[5.150129604241144,52.31135039576666],[5.150146271248929,52.31136250863277],[5.150163617307022,52.31137377801243],[5.150181888681113,52.311384770624024],[5.150201088390347,52.31139492024773],[5.15022096413041,52.311404792603255],[5.150241532098326,52.31141410011615],[5.150262792245834,52.31142285177366],[5.150284526147602,52.31143075953153],[5.150306936127043,52.31143838103224],[5.150316320666245,52.31144121297072],[5.150422700951041,52.31147007868363],[5.150611755204203,52.31151033526646],[5.150637607054662,52.31151600426596],[5.150663931168824,52.31152110797838],[5.150690714316523,52.3115253767458],[5.150717500481592,52.31152907928777],[5.150741550432862,52.31153166188064],[5.150861744240122,52.31154958979919],[5.150872277113264,52.31155157914265],[5.150891036187902,52.311556389076905],[5.151238060533995,52.311619995500756],[5.151251562725742,52.31162340180088],[5.151279237315016,52.3116310336138],[5.151307385594778,52.31163783050798],[5.151335989943085,52.311644349685594],[5.151364834882861,52.31164974587273],[5.151375133179548,52.31165173470377],[5.151540373809764,52.31168660364171],[5.151552047531368,52.3116891614218],[5.151614700337953,52.31171259128875],[5.151678061508958,52.311735186675655],[5.151742087097625,52.31175693850623],[5.151750781113877,52.31176004757529],[5.151816902430531,52.311779277990155],[5.151959422988339,52.31182085091086],[5.151978648545905,52.31182622782471],[5.151998551647339,52.31183103985675],[5.152018693799029,52.31183501650406],[5.152039293580875,52.311838418844246],[5.152044333523154,52.311839273704],[5.152152633361143,52.31185493873277],[5.152178504901499,52.31185695842569],[5.152204627252512,52.31185869100453],[5.152230740832482,52.311859309084866],[5.152256857405813,52.31185936093998],[5.152278401805415,52.311858837487264],[5.152299940220365,52.31185944646946],[5.15232170305978,52.31185921104899],[5.152343250450088,52.31185812136502],[5.152364800735637,52.31185648343293],[5.152386119386697,52.31185427881195],[5.152397815466235,52.3118526213195],[5.152421660782355,52.31184957686138],[5.152445275932974,52.3118456870976],[5.152468674062105,52.31184123966103],[5.15249160735225,52.31183595544134],[5.152514089090206,52.31183009510866],[5.152536120651201,52.31182339802245],[5.152557479133144,52.31181642097869],[5.152578358156179,52.31180859813629],[5.152614190465028,52.31179321931219],[5.152644959042966,52.31178148843589],[5.152708538816576,52.31175998103881],[5.152718406320561,52.31175747504697],[5.152727590543144,52.3117538442374],[5.152736307034512,52.311749924893874],[5.152776743970318,52.31172894681645],[5.152812806483743,52.311711600080955],[5.152878291436426,52.31167914934243],[5.152905869212979,52.31166347546539],[5.15293160507482,52.31164948762385],[5.15295965075105,52.31163128012792],[5.152995518409086,52.31160635631615],[5.153049348467955,52.31156770786201],[5.153138796588581,52.31150693021003],[5.153220422428424,52.311452886789546],[5.153236047198301,52.311443085134314],[5.153261115810276,52.311424880668085],[5.153289177292246,52.31140640349371],[5.153333785968303,52.311375591934876],[5.153353557706463,52.31136355153354],[5.153411034007195,52.31132575496355],[5.153426438733058,52.31131595284829],[5.153442515010029,52.31130671828305],[5.15346113402657,52.31129636527506],[5.153468945649444,52.31129159924578],[5.153477225000302,52.31128712174635],[5.153510335218549,52.311264996495126],[5.153572412832267,52.31122496200688],[5.153604128314986,52.31120592574609],[5.153608960184369,52.311201720050725],[5.153614714359523,52.31119780378233],[5.153665332182241,52.31115632656595],[5.153715476074189,52.31111851537626],[5.153727898019842,52.31110983079928],[5.153778695654035,52.31107875266346],[5.153812714612561,52.31105944227134],[5.153822821011418,52.311053287650225],[5.153831785146578,52.31104684316902],[5.153915947680653,52.31098971249802],[5.153942619946494,52.31097319174881],[5.153944460266217,52.31097179329438],[5.153953201440853,52.310965914589836],[5.153962612757836,52.31096087306209],[5.153972726421236,52.31095612052445],[5.154060745017149,52.310904614665645],[5.154180249614522,52.310835752574064],[5.154193579029362,52.31082735734145],[5.154206002260416,52.31081839409769],[5.15422118525251,52.31080606589662],[5.154395855894297,52.310703329672414],[5.154461122690914,52.310667228617],[5.154477437558433,52.310657149535416],[5.154510967555458,52.31064148698855],[5.154557404589379,52.310614048950626],[5.154646524448363,52.31057040906179],[5.15474627093,52.31051078287726],[5.154762603252495,52.31050014655273],[5.154849699193474,52.31045087623103],[5.155003676717162,52.31035934209247],[5.155020904915816,52.31035122404771],[5.155037226834612,52.310342555972284],[5.155052847903172,52.3103333113065],[5.155057453674487,52.310330237558944],[5.155140177716985,52.31028405920435],[5.155154408648656,52.310277058725404],[5.155259196564711,52.31021772061153],[5.155374090220133,52.31015503181336],[5.15539476263698,52.31014440390377],[5.155432660174764,52.31012621511748],[5.155457703717361,52.31011250398725],[5.155483445185382,52.31009711351729],[5.15550941694071,52.31008255036158],[5.155530567279038,52.3100702426629],[5.155590063710434,52.31003805731289],[5.155612583655431,52.31002742399356],[5.155671132784983,52.31000254375396],[5.15571314460105,52.309985495378506],[5.155739336183044,52.30997374575433],[5.15588406968286,52.3098967884191],[5.156061202377327,52.30980417469753],[5.156569974811268,52.30955940754124],[5.156782423725932,52.30945927593889],[5.157053221079047,52.309330038416604],[5.157212594420588,52.309256765921205],[5.157274392256851,52.3092271097405],[5.157331332267161,52.30920110208768],[5.157698991656093,52.30903779006709],[5.157752261240876,52.309015424101766],[5.157868924680304,52.308963683333474],[5.157903588643162,52.30894943309064],[5.157999119926037,52.30890664793817],[5.158079491495652,52.308871976219315],[5.158220902224399,52.30881803609124],[5.158392619922036,52.30875011560063],[5.158545737845602,52.30869200046108],[5.158736973372308,52.30861793364039],[5.159237181460367,52.308427909548364],[5.15933704650344,52.30838878067239],[5.15940659285245,52.308363074912805],[5.15944034390297,52.30834937969958],[5.159534252325678,52.308307992264524],[5.159626821360951,52.3082618297058],[5.159684054019916,52.308226833773205],[5.159711411365501,52.30820749988362],[5.159743871543824,52.30817667152974],[5.159762532333581,52.30815760851786],[5.159774268865853,52.30814779852256],[5.159820092438922,52.30810154595968],[5.159841958562174,52.308083612557986],[5.159855310532029,52.30807043526763],[5.159861997291182,52.308061739024915],[5.159869607800591,52.30805304455653],[5.159892446153726,52.30802275491373],[5.159919446328677,52.30798433039614],[5.160114939606479,52.307747376285334],[5.160148674861303,52.30769070161396],[5.160153544421317,52.30767891908317],[5.160167264152352,52.307639624179565],[5.160175647957252,52.30761155367339],[5.160179599838482,52.30760145008236],[5.160199395881205,52.307538007869205],[5.160200820052135,52.30752902289191],[5.160203385011856,52.30752060632865],[5.160207195475361,52.307492248427344],[5.160213344913858,52.307453783839335],[5.160215272394802,52.3074352458919],[5.160220426707633,52.30741363134978],[5.160222695990527,52.307371222700844],[5.160225119873435,52.30734735599331],[5.16022466503472,52.307344541967716],[5.160223314314682,52.307342013830336],[5.1602208052566,52.30733948347105],[5.160217368193465,52.307337787188544],[5.160215085109551,52.307336946952034],[5.160199294711744,52.30733382488877],[5.160197920749681,52.30733297740827],[5.160194502618192,52.30733044530444],[5.16019176043082,52.30732762689057],[5.160190179426841,52.307324253466284],[5.16018996203585,52.307320882658075],[5.160187082536431,52.30725880800963],[5.160185518400334,52.30724926006091],[5.16018442351003,52.307239704024724],[5.160182845400932,52.307235764380145],[5.160010446231715,52.30712309611294],[5.159986440203364,52.307023340361376],[5.159486901096477,52.3063707710399],[5.159214618669249,52.30594528973222],[5.15921416700312,52.305944731623825],[5.159214856119362,52.30594473295159],[5.159432414602691,52.305915941868534],[5.159496612803789,52.3059059542509],[5.159643142576716,52.30588096269113],[5.159721779653376,52.30586874680257],[5.159789180061446,52.30586045487225],[5.159912075010832,52.30584102588572],[5.159933620347775,52.30583686102002],[5.159976048417259,52.30582907825487],[5.160029006686448,52.30582074946574],[5.160046889683661,52.305818824476226],[5.160132860386991,52.30580606515456],[5.160166350606159,52.30579995485901],[5.16021703300422,52.305789374690875],[5.160376367993091,52.30576608748859],[5.160435303534062,52.30575581065419],[5.16065385128189,52.3057138162713],[5.160752433404951,52.305697710252296],[5.160782929533093,52.30569216027811],[5.160867541937246,52.30567827435942],[5.160954216932544,52.3056624330027],[5.16111888079592,52.30562904381288],[5.161246169087054,52.30560175758629],[5.161353026780318,52.305581460620004],[5.161488334862302,52.30555418943986],[5.161613558164691,52.30552635062841],[5.16166171235982,52.305516888485386],[5.161730735681096,52.30550353846021],[5.162014898816415,52.30544313391124],[5.162072469578145,52.305430040509926],[5.162104803826064,52.30542336124037],[5.162192411542991,52.30540555244182],[5.162360079698729,52.30536627129776],[5.162495183124022,52.30533282401853],[5.162544952092702,52.30531999419026],[5.162650497436979,52.305289303764596],[5.162816137165628,52.3052421448884],[5.162838389971005,52.30523713599025],[5.162872779429184,52.30522990316953],[5.16292346339015,52.30521875561894],[5.162943657852026,52.305214866263654],[5.163046416529748,52.305190066142764],[5.163148015407186,52.30516554235558],[5.163326514789901,52.30511504570931],[5.163417804715403,52.30509078080443],[5.163552249020247,52.30505396067887],[5.163650227621447,52.305023246071144],[5.163754164353263,52.30499142815733],[5.163905581865422,52.30494677543224],[5.163967536958085,52.30492751482344],[5.164049888733645,52.30490491326996],[5.164072833172993,52.304899339218004],[5.164288043220887,52.30483430530662],[5.16443281652905,52.30478991800841],[5.164531020064914,52.304760892784344],[5.16454317819335,52.3047572666518],[5.164572093398393,52.30474805472668],[5.164704736151337,52.304701675962285],[5.164814646475144,52.30466537449205],[5.164904836634746,52.30463492282565],[5.165004872965087,52.304602817865614],[5.165352073868296,52.30448606284227],[5.165412902291456,52.30446315035214],[5.165473253101085,52.304441917638115],[5.16552696360477,52.30442038484651],[5.165616915328301,52.30439050740375],[5.165667179497594,52.30437205986798],[5.165898534799553,52.304284862587096],[5.166018796954373,52.304242117191635],[5.166098896901129,52.30421193335922],[5.166240983277774,52.30415574694572],[5.166410151701739,52.30408725279203],[5.166436781711129,52.30407746992079],[5.166574286590583,52.30401958486824],[5.166639253128758,52.30399274284386],[5.166835523493965,52.30391362119257],[5.166902547878051,52.30388565939163],[5.166955346587873,52.303864411859955],[5.167026534519603,52.303830561798016],[5.167069692233138,52.30381098596546],[5.167113081732037,52.30379196778658],[5.167172294216482,52.30376932101639],[5.167203983997041,52.303756185975764],[5.167243235501948,52.30374080906732],[5.167283860217432,52.3037234663887],[5.167351838223837,52.3036893315455],[5.167429932284353,52.303649310524364],[5.167454968474583,52.30363559683217],[5.167485955755555,52.30362217280436],[5.167673995043629,52.30353769577301],[5.167705227861691,52.30352202521461],[5.167726121903145,52.30351279763819],[5.167750244802567,52.303499918046754],[5.167767233389013,52.30349180668407],[5.167891196283569,52.3034381102218],[5.167929314774521,52.303420484056716],[5.167958699524017,52.303407901780275],[5.168001182000851,52.30338832435607],[5.168031254990004,52.303372930181986],[5.168151808083998,52.30331782504666],[5.168240187384043,52.30327894599376],[5.16826200901377,52.30326887519381],[5.168283121366462,52.30325992654192],[5.168297362595105,52.30325293348425],[5.168321013243556,52.30324061912847],[5.168326529140876,52.30323698031958],[5.16835087107839,52.30322719278438],[5.168378167658791,52.30321881279181],[5.16838734883734,52.30321518075842],[5.168409155741266,52.30320510990405],[5.168448595291247,52.30319900826432],[5.168480910425252,52.30319568862162],[5.168490528138416,52.30319570639934],[5.168528530118196,52.3032016815643],[5.168573637827545,52.30320569254921],[5.168663631939949,52.3032140016655],[5.16875108966178,52.30322231501832],[5.16882027014494,52.30322356618251],[5.168900906511914,52.303223714977634],[5.168994881018936,52.303212653672475],[5.169130809818775,52.30319688815679],[5.169204850065904,52.30318775825433],[5.169262827601517,52.30318337119773],[5.169387735576495,52.30317264517077],[5.169536240125265,52.30316056033779],[5.169712245208631,52.303146278940595],[5.16986395256055,52.30313279749968],[5.169969382020632,52.30312372476949],[5.170010387827986,52.30312407866353],[5.170119658558494,52.303124000564566],[5.170267643841252,52.303125116813085],[5.170262890224036,52.3031107816812],[5.170421677417774,52.30310657883838],[5.170563025680559,52.30310374593881],[5.170705974308833,52.303103450333865],[5.170742624394927,52.30310407462353],[5.170824192382233,52.30310254310895],[5.170912609527027,52.30310354061792],[5.17104110976606,52.30310771205367],[5.171161123990416,52.3031113016302],[5.171271523243139,52.30311431630091],[5.171379179572044,52.303117595497],[5.171576848056285,52.30312554150232],[5.171687005999788,52.303129957428624],[5.171799916208938,52.30313521411999],[5.171927260829325,52.30314190803631],[5.172026882673019,52.30314826379845],[5.17217276283901,52.30315723808383],[5.172310391577905,52.30316563097819],[5.172460410337873,52.30317377656712],[5.172597130191701,52.30318216747809],[5.172736366396711,52.30319168625595],[5.172908819421142,52.30320238849502],[5.173057678842876,52.303210809845346],[5.173129812672571,52.30321683630859],[5.173277512443332,52.303228616688784],[5.17335535878341,52.30323577680603],[5.173397949263919,52.30323894554318],[5.173571320888858,52.30325077193941],[5.173823910636087,52.303268079662075],[5.174100764526306,52.303291614092245],[5.174169449203358,52.303298478554055],[5.174496188464405,52.303332770273926],[5.174620285662559,52.30334731969948],[5.174731785082405,52.3033595904589],[5.174822467037111,52.30336846234636],[5.175034263661419,52.30339018811401],[5.175159036984582,52.30340445057908],[5.175249480510094,52.303414166556514],[5.17535754547686,52.30342728440598],[5.175451885000227,52.30343784306062],[5.175684957002495,52.30346550167147],[5.175809058978604,52.303479205011655],[5.176019699677723,52.30350374010128],[5.176190028830311,52.3035267918652],[5.1762399371221,52.30353277679344],[5.176318237651887,52.30354330616008],[5.176354417659035,52.303547307251655],[5.176795372107411,52.303600328735364],[5.176940533816896,52.303619128413736],[5.177064607381708,52.30363591316931],[5.177360408099528,52.30367492348203],[5.177573779034604,52.30370226480756],[5.177681393557898,52.30371481350686],[5.178009932964092,52.303757241560724],[5.178118210291164,52.30377231658065],[5.178374408263928,52.30380591567031],[5.178397979944828,52.30380988489655],[5.178689881764632,52.303849163618196],[5.178737274434291,52.30385711136692],[5.179039925196941,52.303899212325085],[5.179162175725336,52.303917402740275],[5.179356988945085,52.30394442060904],[5.179443749446079,52.30395834214175],[5.179534865784299,52.30397198364837],[5.179618416887197,52.30398561181355],[5.179910275150372,52.30403471100924],[5.18044542147122,52.30413254376212],[5.180544766777606,52.304151816185815],[5.18069285046672,52.304179882683144],[5.180772727807681,52.304195471928324],[5.180828563965124,52.3042070825768],[5.180914177967168,52.30422183688619],[5.181177629457512,52.30427313035056],[5.181341951486517,52.30430599677788],[5.18168298955803,52.30437399739962],[5.181940234485082,52.30442668945187],[5.181940923578621,52.3044266906472],[5.181941375514922,52.30442724866912],[5.182334123390678,52.30450881865656],[5.182359298182392,52.304515045782],[5.182497977123572,52.304545053053765],[5.182603485121109,52.304566868938444],[5.182655907391337,52.304578185212684],[5.182706488730857,52.30458810518751],[5.182757971344975,52.304599716386996],[5.182902167475554,52.30462888787076],[5.183037657297658,52.30465749590728],[5.183156207498861,52.30468409728433],[5.183257818746444,52.30470533963884],[5.183300396417377,52.3047149579581],[5.183337463875818,52.30472400953131],[5.183447768890487,52.304748637089915],[5.183486454338226,52.304756567938725],[5.183575243399921,52.30477637687523],[5.183756052432781,52.30481488562669],[5.184018560058808,52.30487207604843],[5.184062265692813,52.30488198363603],[5.18410117129237,52.30488991466114],[5.184157706554716,52.30490292701617],[5.184249708399278,52.30492246233859],[5.184297763542884,52.30493350076198],[5.18437946982862,52.30495049278357],[5.184493449691344,52.3049765277451],[5.18456713996093,52.304992670048186],[5.18460649387417,52.30500200375669],[5.184638543090697,52.30500879940251],[5.184769223594913,52.30503795445536],[5.184873580079214,52.30506200427882],[5.184960089509633,52.30508040619276],[5.18503812576461,52.305098514949194],[5.185116168455191,52.30511522158269],[5.185217552800855,52.30513842118164],[5.185268819354379,52.30514946469075],[5.185482125179789,52.30519701395255],[5.18561806529658,52.30522730049382],[5.185720349013674,52.305252748119315],[5.185758798152283,52.30526124404608],[5.185815098522109,52.30527453382564],[5.186019000895323,52.305323477183016],[5.186266148264358,52.305383997889756],[5.186408025740205,52.30541794261063],[5.186463409796963,52.30543292920231],[5.186616032962601,52.305470540909305],[5.186678507241112,52.30548693251231],[5.186718786993695,52.3054959884658],[5.186771421170922,52.30550955918411],[5.186932063128117,52.30555084205965],[5.186979660040123,52.30556300207788],[5.187063404760486,52.305583644697705],[5.187221997128817,52.30562435748628],[5.187428620505738,52.305678632713466],[5.187602534866671,52.305722741244594],[5.187693830649845,52.30574676654211],[5.187894298817377,52.3057973815673],[5.187964549496431,52.30581603251187],[5.188071869553029,52.30584374249033],[5.188143721037248,52.30586183878408],[5.188279878249024,52.30589689509326],[5.188352185673893,52.305914713407475],[5.188383307389682,52.30592262994025],[5.188414664995364,52.30593025925451],[5.188444186036828,52.305938739307756],[5.188546702587242,52.305965308335225],[5.188569126379422,52.305970684672374],[5.18859224431278,52.30597493870719],[5.188632536216788,52.30598145949452],[5.188745185584206,52.30599794317126],[5.188859890254095,52.30601386395992],[5.188860344778993,52.30601386472176],[5.188861252586021,52.306014144862075],[5.188949620443165,52.30603086626362],[5.189432597043576,52.306122396287996],[5.189441533467938,52.30612409192288],[5.189511331069999,52.30613937978734],[5.189553923935627,52.30614619171049],[5.189711647085971,52.30617229467917],[5.189770484135184,52.30618278263983],[5.189794292652247,52.30618675897245],[5.189897560761213,52.3061995679044],[5.189915426471931,52.30620127839049],[5.189933056313601,52.30620327608725],[5.190022359197764,52.30621101054009],[5.190082821919244,52.306215326501054],[5.190129773627458,52.306217930243676],[5.190192309985649,52.30622083853226],[5.190192997833056,52.306221127283905],[5.190193921549315,52.306221128821676],[5.190222992647445,52.3062253834598],[5.190253682759589,52.30622824769107],[5.190284358253335,52.30623110290231],[5.190368648283569,52.30623517974417],[5.190406432435334,52.30623861297254],[5.190431171000302,52.30624117965389],[5.190445825693361,52.30624289370836],[5.190460485398071,52.30624347531864],[5.190477904056514,52.30624350427583],[5.190527371754949,52.30624414373572],[5.190572974801919,52.30624338365963],[5.190605515125262,52.306242314259364],[5.19063804451951,52.30624039998786],[5.190670357712442,52.306237640504186],[5.190676093083161,52.306237092791264],[5.190721707319534,52.30623379814384],[5.190809453152545,52.306232263094024],[5.190840616488526,52.306230903737415],[5.190892846855558,52.30623014554664],[5.190936832085125,52.306230506109515],[5.190977156771119,52.306229728135676],[5.19099046031324,52.30622862673094],[5.190998936274485,52.30622836216508],[5.191006962705079,52.306226964402676],[5.191395195078019,52.3062458704205],[5.191415579039123,52.30624842969066],[5.191435950793669,52.30625043169945],[5.191457717949138,52.30625186978749],[5.191484512965946,52.30625360379342],[5.191530544798094,52.30625536061416],[5.191557810274901,52.30625680777482],[5.191584821514641,52.30625938695963],[5.191616431779212,52.30626308821448],[5.191637729757066,52.30626452549394],[5.191668184167889,52.306267667587214],[5.19178199262881,52.30628105851286],[5.191807634191708,52.306285028478975],[5.191837850321862,52.30628901497923],[5.191861431948628,52.306291291844744],[5.191898988909948,52.30629641390918],[5.193446091165418,52.30640174937779],[5.193460915798639,52.306414976584115],[5.193476445441733,52.30642792632381],[5.193491512049302,52.30643946423417],[5.19349767504352,52.306445091636306],[5.193504748311894,52.306450441909206],[5.193512527835996,52.306455227112316],[5.193549300629585,52.306478880011944],[5.193584267552253,52.3064997257822],[5.193608950218091,52.306515207035645],[5.193633624303151,52.30652929517593],[5.193758453958573,52.30658791935557],[5.193775606412475,52.306595245406186],[5.193793210940251,52.30660313841842],[5.19381150827643,52.30661018771608],[5.193829809253309,52.306616401160554],[5.193848583102458,52.306621770530676],[5.193867799286995,52.306626574395196],[5.193912653757013,52.306636192604245],[5.193944929160081,52.30664552062392],[5.193986116878118,52.306655411435855],[5.194045382039705,52.30667236012347],[5.194058651457141,52.306675752169035],[5.194087948023863,52.30668226213705],[5.194107402487271,52.306686230495046],[5.194254123779347,52.306717926758864],[5.194279997956595,52.30672246279249],[5.194312034025727,52.30672953440827],[5.194357357890826,52.30673915321322],[5.194449143187087,52.306759812680674],[5.194483702441168,52.306766609740635],[5.194647816341881,52.30680113799976],[5.194738223639273,52.306821795000175],[5.194849242698933,52.306843321290984],[5.194933710657719,52.30686086773068],[5.195042909229883,52.30687958671866],[5.195065792494295,52.306884108735815],[5.195071068506373,52.30688468352664],[5.195077704508993,52.30688609638142],[5.195083648933497,52.306888074338325],[5.195102186043661,52.306894000362064],[5.195147973244529,52.3069016602964],[5.195164224132253,52.306903933593254],[5.195180713268241,52.30690536243051],[5.195205672417385,52.306907928469776],[5.195316697969644,52.30692805224996],[5.195348059881854,52.30693512249125],[5.195369038867812,52.306956223672],[5.195399951119448,52.30696216970795],[5.195456347339358,52.306954396857215],[5.1954867891643,52.306960629714695],[5.195548371696463,52.306970840624786],[5.195649089879767,52.3069909473995],[5.195657538161377,52.30699713562447],[5.195664604499567,52.307004175443886],[5.195668258027267,52.30700698551977],[5.195672603089672,52.30700923947727],[5.195677639725438,52.30701092832859],[5.195682898659341,52.3070120692897],[5.195703049820887,52.30701434882417],[5.195713356308286,52.30701464411981],[5.195722982286542,52.30701634039492],[5.195741257112386,52.30702872805113],[5.195833398931592,52.307069043121096],[5.195894525959242,52.3070795317326],[5.195918571342824,52.307083219606696],[5.195945115543815,52.30708887982082],[5.196025021733355,52.30710362293165],[5.196113376205305,52.307121174804976],[5.196130093988683,52.307124014947895],[5.196147032946926,52.30712656783907],[5.196179317486564,52.30713054757962],[5.196220069681639,52.30713623066431],[5.196283041742145,52.307143917889285],[5.196303649961908,52.307145631833464],[5.196312812772395,52.30714593421966],[5.196383814878746,52.30715138741771],[5.196401901160224,52.30715309727841],[5.19642778545071,52.30715538593214],[5.19644496748155,52.307155970865935],[5.196462373035406,52.30715572030125],[5.196487816054211,52.30715491646154],[5.196513026862145,52.30715355500466],[5.196529055336765,52.30715302359258],[5.196544867496288,52.307151646985915],[5.196560683276936,52.307149425539116],[5.196564585922461,52.30714886560059],[5.196610207648637,52.30714051760573],[5.19663933915288,52.30713438097911],[5.196668236049616,52.30712824396761],[5.19670055667774,52.30712381113573],[5.19672690755338,52.30712328732467],[5.196754396057148,52.307124176407505],[5.196786480919704,52.307120012803814],[5.196798186146073,52.307115537786146],[5.19680943802675,52.30711078341924],[5.196819314058104,52.30710546061282],[5.196829169421967,52.3071015398536],[5.196840184272468,52.307097351327684],[5.19684454021484,52.30709707971551],[5.19685072777152,52.307097089667906],[5.196856675919762,52.30709822269758],[5.196862168339499,52.30709963361273],[5.196867202607121,52.30710188863469],[5.196871310755196,52.307104699404405],[5.19688066849976,52.30711426837987],[5.196909882845139,52.30714015499844],[5.196921278967772,52.30715308864831],[5.19692697472885,52.30716180688818],[5.196938138887829,52.307177553313785],[5.196941773040897,52.307181486781595],[5.196947931729871,52.30718824644586],[5.196955918463654,52.30719612352337],[5.196962310603119,52.307203153193164],[5.196970721849897,52.30721805034638],[5.196973901715657,52.30722535347074],[5.196975923206402,52.30723266372077],[5.19697703562257,52.30723997250952],[5.196977468796166,52.30724839468139],[5.196981937766477,52.30727311804151],[5.196984410467854,52.30728463526052],[5.196986843493236,52.30730542772273],[5.196987473769799,52.3073191889054],[5.196987181498929,52.30733266998656],[5.196986903645505,52.30734278070313],[5.196982943599585,52.30736018351421],[5.196981304511948,52.30736973480532],[5.196971470547376,52.307416625807484],[5.197446687278948,52.30735138304532],[5.197447599961743,52.30735053966487],[5.197451510974756,52.30734802039181],[5.197456095275205,52.307345780816846],[5.197461379772036,52.30734438720812],[5.197466881828914,52.307343551185326],[5.197481315748793,52.30734217224388],[5.197495759537306,52.307341916778995],[5.19751317117775,52.30734025500038],[5.197530131843606,52.30733775664029],[5.197540917203276,52.307335805618855],[5.197549631541218,52.307334696121494],[5.197561775723694,52.30733387073826],[5.197573916302864,52.30733389019183],[5.197585819866956,52.30733447548959],[5.197596811978089,52.30733561656327],[5.19759773452982,52.30733589666001],[5.197598423669008,52.3073358977641],[5.197602545029596,52.307335625748145],[5.197607123343,52.307334788239],[5.197658235458577,52.30733177834205],[5.197666024827247,52.30733095496111],[5.197680231635514,52.307331256331594],[5.197689621633115,52.30732986928718],[5.197711408671458,52.30732681240452],[5.197732487118252,52.30732487784596],[5.197746248959876,52.307322931571015],[5.197746938098868,52.3073229326742],[5.197747612575328,52.30732293375392],[5.197770087520006,52.307320165568086],[5.197792784811726,52.30731683150868],[5.197808603000691,52.30731404367374],[5.197829469843575,52.30731014944052],[5.197852393034047,52.30730541364991],[5.197870047628077,52.307301783901075],[5.197885651800088,52.30729760261989],[5.197896880606834,52.30729480743155],[5.197911561073296,52.3072906156817],[5.197925790556779,52.30728558735259],[5.197939098708438,52.30727999132324],[5.197987316703018,52.30725759917351],[5.197988227002478,52.30725731302252],[5.197988682725867,52.30725703513239],[5.197999713070264,52.3072491885293],[5.198010525844056,52.30724078433991],[5.198018106898137,52.3072337770648],[5.198026842731346,52.30722760749118],[5.198031677114006,52.30722171928725],[5.198038352680738,52.30721386571954],[5.198048040918481,52.307200956891265],[5.198057932016913,52.307188614611526],[5.198061610789744,52.307185528721924],[5.198065977475572,52.307182731538056],[5.198071265527288,52.3071804930639],[5.198077225644491,52.30717882188862],[5.198097627161194,52.30717744342068],[5.198103125592684,52.3071774522064],[5.198111363500859,52.307178031594084],[5.198119379102486,52.30717916786347],[5.198132441006893,52.30717974596921],[5.198145271865643,52.30717948784827],[5.198158109907707,52.30717754004965],[5.198171851024102,52.307177004761115],[5.198186292386395,52.30717730644552],[5.198205071437552,52.30717818128054],[5.198232325405549,52.30717906964517],[5.198250194200375,52.30718022163835],[5.198259595259185,52.307179670422485],[5.198280419920094,52.30718222921142],[5.19829531460007,52.30718281921254],[5.198301498618289,52.307183664939544],[5.19831087783706,52.30718480337248],[5.198335861492587,52.30718513085219],[5.198349366864293,52.30718486479784],[5.198362429918457,52.30718517324897],[5.198371593972646,52.30718518787118],[5.198385564956329,52.30718576739943],[5.19840114518869,52.30718720332486],[5.198416259847428,52.30718778467399],[5.198435726861756,52.307188939188556],[5.198455880610624,52.30719066102027],[5.198472137762851,52.307191522803095],[5.198484506953017,52.30719294460908],[5.198514956498921,52.30719749599832],[5.198525037161271,52.307199192770014],[5.198532598240084,52.30720032828675],[5.198540598011943,52.307201743121006],[5.198545637142849,52.307202874616536],[5.198554109661436,52.30720345434736],[5.198565334001125,52.3072051529387],[5.198587324157722,52.30720603283123],[5.19861412003018,52.307207765221584],[5.19863793945638,52.30720948387579],[5.198672760519282,52.30721009658899],[5.198698415123221,52.30721126091708],[5.19871764755529,52.30721241501153],[5.198726357077877,52.30721242888234],[5.198736447236854,52.30721188771372],[5.198752251045744,52.30721247011738],[5.198770580346392,52.30721222068384],[5.198791887314027,52.30721169736928],[5.198811359108392,52.30721172836703],[5.198827402277472,52.30721118767911],[5.198844358061494,52.30720981258539],[5.198860862885501,52.30720759192766],[5.198878518538439,52.307203683411295],[5.198890215240867,52.30720117647963],[5.198903745933246,52.30719839384612],[5.198918651358828,52.30719644925433],[5.198938360930414,52.30719226537796],[5.198962444675632,52.307186964993285],[5.198975522001458,52.30718390301171],[5.198988128984683,52.307181109911724],[5.198999371137959,52.30717860224636],[5.199013809711513,52.30717609966273],[5.199031243005169,52.3071727569951],[5.199052786544768,52.30716829739693],[5.199071819221587,52.30716467864731],[5.199081681914196,52.307162447399975],[5.199092925274144,52.30715965212126],[5.199102553364928,52.307157420499294],[5.199118145102941,52.30715267281062],[5.199128464722163,52.307149876060436],[5.199141781376603,52.307145690978295],[5.199169065063853,52.307139550792506],[5.199195889419003,52.30713454232104],[5.199196124018532,52.30713454269371],[5.199197268907224,52.30713425690604],[5.199222033405377,52.307130925856335],[5.199256408920258,52.307125929364936],[5.199286674227191,52.30712204081222],[5.199304089246755,52.3071195429192],[5.199328170516697,52.30711480868121],[5.19935133043838,52.30710950675076],[5.199365318002161,52.30710615856451],[5.199380686188767,52.307102255330285],[5.199381596476083,52.307101969168514],[5.19938206685163,52.30710169129629],[5.199402483237549,52.307093302220494],[5.199422917883839,52.30708405933859],[5.199442665701373,52.30707426711375],[5.199461492204557,52.307063898211254],[5.199464931527298,52.30706193536077],[5.199479169071345,52.3070549385512],[5.199494545538974,52.307049067008855],[5.199551206112318,52.30703062422466],[5.199584238080326,52.30702084405098],[5.199617955604063,52.30701190979856],[5.199645709516343,52.30700549162943],[5.199656715814191,52.3070032621465],[5.199667271138718,52.30700018710413],[5.199677139677732,52.30699655373509],[5.199685851058545,52.3069926399131],[5.199689524964637,52.30699067742774],[5.199709055894296,52.30697666059546],[5.199715952690711,52.30697189905254],[5.199723081734928,52.30696769511463],[5.199730889985296,52.306962368789584],[5.19974490467824,52.30695256743231],[5.199757309379981,52.3069455586983],[5.199761207912926,52.30694248209166],[5.199764433186936,52.306939116812096],[5.199766046808169,52.30693546137355],[5.199766290877728,52.306933214834935],[5.199767701079971,52.30692564043672],[5.199770474922769,52.30691805921046],[5.199774171283384,52.30691076705152],[5.199779010173121,52.30690374633288],[5.19979533039299,52.30689310377687],[5.199818286336542,52.306880494431226],[5.199822420631787,52.30687713957707],[5.199825881706483,52.306873487062745],[5.199828185588455,52.30686956308516],[5.199829347016087,52.30686534969233],[5.199836996838618,52.30684541809566],[5.199843937376905,52.30683026683233],[5.199848795180579,52.30681875229026],[5.199854801341458,52.30680612509092],[5.199856906600411,52.30679714072277],[5.199860143207613,52.30678760090798],[5.199864542910235,52.3067769304839],[5.199870083888622,52.306766828091334],[5.199876767353789,52.30675700612562],[5.199884609103249,52.30674719498054],[5.199889205069068,52.306742142179196],[5.199897258495279,52.306734290687075],[5.199906218598582,52.306727006854494],[5.199916334676416,52.30672028208803],[5.199927124045066,52.30671383700484],[5.199937923341754,52.306708515399016],[5.199938600155603,52.306707959232504],[5.199939290458447,52.30670768170606],[5.199993026498408,52.306680237393294],[5.200006335381453,52.306674362513526],[5.200018957515541,52.306667920320926],[5.200030907524966,52.30666091982649],[5.20006100638828,52.30664074509801],[5.200075708900596,52.30663121441981],[5.20011198410559,52.30661020460006],[5.200138637743296,52.30659339479317],[5.200154251629173,52.306583308308205],[5.200165964616339,52.306576873650634],[5.200173766847875,52.30657294936795],[5.200182973788547,52.30656622314179],[5.200193761871592,52.30656006563861],[5.200205470160324,52.30655474544462],[5.200239890503057,52.30654244173712],[5.200257078920395,52.306537975039205],[5.200274513041503,52.30653435357083],[5.200299952798082,52.306530735755516],[5.200305688088484,52.306530187575554],[5.200315090155401,52.30652935757927],[5.200324472838329,52.306529651014245],[5.200333867804203,52.30653051069308],[5.200343025832521,52.30653192723455],[5.200389966663251,52.306537340035156],[5.200411713661525,52.30654018751157],[5.200433697637189,52.30654246913281],[5.200455919759516,52.30654390628184],[5.200462327174345,52.306543916392286],[5.200496899505254,52.306551268952326],[5.200643614933036,52.306581842799886],[5.200730368463519,52.30660023354436],[5.200810248987782,52.30661776855666],[5.200863821945656,52.30662908754587],[5.200931341664781,52.30664324161321],[5.200997027508634,52.306657662387586],[5.201042804912244,52.3066678455673],[5.201108956449863,52.306683120843445],[5.201177627622309,52.306698957280446],[5.201201194646819,52.30670489025362],[5.201207372752005,52.30670714688844],[5.20121285935997,52.30670996866141],[5.201217419911061,52.306713346216206],[5.20122221272964,52.30671728137331],[5.201226099980015,52.306720379250976],[5.201230897498592,52.3067231909525],[5.201236387643181,52.306725167886064],[5.201242334651022,52.306726588299725],[5.201261117711927,52.30672997921212],[5.20130782306443,52.30673567888425],[5.201325231367981,52.3067382317709],[5.20134766416134,52.30674191600818],[5.201361175779529,52.306743626913914],[5.201412681058191,52.30675157201922],[5.201417957174536,52.30675213753931],[5.201434434704272,52.306756378636415],[5.20145778887869,52.30676063052415],[5.201481126067925,52.30676543961807],[5.201521652818757,52.3067725226031],[5.201534017299458,52.306775067545416],[5.201552326479951,52.30677959011829],[5.201558728038212,52.306781011229084],[5.201574522351721,52.306783840165934],[5.201589643361776,52.30678638942595],[5.201619856024871,52.30679149688184],[5.201626726820023,52.3067929097371],[5.201636569386457,52.30679545071413],[5.201653269213733,52.306799134891804],[5.201665867144698,52.30680195880502],[5.201685542274311,52.306805926261234],[5.201723085624097,52.306814685200365],[5.201734763320948,52.30681667180787],[5.201748031045606,52.30682062022453],[5.201759935134733,52.30682457549066],[5.201761296373865,52.306825143848734],[5.20176153097179,52.306825144216305],[5.201780284198668,52.30683219299341],[5.201800416856392,52.3068389653098],[5.201820333106657,52.30684489243994],[5.201867455764003,52.306859571256986],[5.201890797187327,52.30686690582024],[5.201901541812114,52.30687113787528],[5.201911609647237,52.30687592610713],[5.201920987153918,52.30688100086379],[5.20197309875008,52.306908890380555],[5.202005083552062,52.30692859653647],[5.202044632457458,52.30695225113062],[5.202085993670902,52.30697731961508],[5.202120730432518,52.30699815350634],[5.202159579180131,52.30702096212286],[5.202191116602477,52.30703898682851],[5.202211685257458,52.307050253605944],[5.202219464628548,52.30705532584062],[5.202236819903844,52.30706714482842],[5.202254188654624,52.30707925144106],[5.202274495870796,52.30709697995508],[5.202297556171162,52.30711554862301],[5.202330199515552,52.307146211724714],[5.202357110993511,52.307176596233965],[5.202383787983025,52.3072069623953],[5.202400661930513,52.307225251750594],[5.202417762350104,52.307245500775544],[5.202436235236037,52.307267154021694],[5.202445344951051,52.307276722167884],[5.202454249432008,52.307286281005275],[5.202485052512333,52.30731526049049],[5.202509706033747,52.30733861305872],[5.202525001760617,52.30735210948905],[5.202541896834322,52.307365338781814],[5.20255879426924,52.307378001850786],[5.202578435400585,52.30739376995369],[5.202611081978624,52.30742021774993],[5.202629524701872,52.30744917791732],[5.202636809360018,52.307460423901794],[5.202644948304621,52.30748487414794],[5.202651267939849,52.30750960017511],[5.202659829517526,52.30754527671502],[5.202663206932035,52.30755820629243],[5.202668148301441,52.30758293016923],[5.202669688268165,52.30759697135602],[5.202670572366326,52.307606526658404],[5.202670987297945,52.307616072241515],[5.202669800459247,52.30762646915855],[5.202664163293959,52.307659876633],[5.202648326268307,52.30772024028562],[5.202633714029515,52.30776458976672],[5.202628133898085,52.3077842461488],[5.202616522620998,52.30782270437716],[5.202607445436615,52.30785471338916],[5.202605119586103,52.30786397607854],[5.202603014832024,52.30787296049403],[5.202600440384114,52.30788559318244],[5.20259738221178,52.30790525349632],[5.202594583155261,52.30791900929642],[5.202590380127699,52.307938946442825],[5.20257988564152,52.30798386856361],[5.202574534766671,52.30800126938776],[5.202570355046181,52.308015589258225],[5.202566648528308,52.30802541601764],[5.202561332122988,52.308038044427136],[5.202561096361729,52.30803832267796],[5.20256109401056,52.308038888899304],[5.202561784317731,52.30803861135761],[5.202582887371229,52.30803078004292],[5.202589536620527,52.30802910072788],[5.20259641696618,52.308028266616525],[5.202603294960947,52.308027998726104],[5.202619546643303,52.30803027099819],[5.202641540796059,52.30803030529867],[5.202650012369866,52.30803116335292],[5.202661927382156,52.30803258401302],[5.202690542811412,52.308037679714886],[5.202712758744678,52.30804080611603],[5.202736096742354,52.30804561496143],[5.202751672757331,52.30804817376861],[5.202759217114825,52.30804986622579],[5.202764035315001,52.30805128480317],[5.202769061180148,52.30805212849129],[5.202774339779438,52.308052136717116],[5.20277593917758,52.30805186059083],[5.202790140437063,52.3080535634193],[5.202806169848651,52.30805640154437],[5.202831125428518,52.30806008942899],[5.202853560169516,52.30806349476317],[5.202869356139252,52.3080660538974],[5.202886295845008,52.30806860582305],[5.202888362142302,52.30806888765966],[5.202896831418617,52.30807030292983],[5.202904608043133,52.308072561964416],[5.202911928930184,52.30807510789519],[5.202928639388624,52.30807990638227],[5.202951288976601,52.30808808449998],[5.202963646904536,52.308092318968676],[5.202969807129088,52.30809542032632],[5.202980568008071,52.30809936470082],[5.202985602699783,52.308101619462],[5.202993141229729,52.308104722963776],[5.203007334361106,52.3081083940593],[5.203016725059471,52.30811037697988],[5.203026338045853,52.30811179402066],[5.203042596741228,52.30811238554594],[5.203059321185106,52.308113813649584],[5.203078331872688,52.30811552392629],[5.203095272762921,52.308117797205156],[5.203128015500951,52.30812121852176],[5.203140618513806,52.308122927810004],[5.203145187503706,52.3081243369965],[5.203171744415515,52.3081308404489],[5.203204009378312,52.30813987831266],[5.203219796135888,52.30814467532246],[5.203243372306001,52.30814864858186],[5.203294430373531,52.30815883909257],[5.203301759474655,52.308159407718385],[5.20332627104994,52.30816056926532],[5.203347789108803,52.30816228339416],[5.203354899383783,52.308162582045796],[5.203362446087533,52.30816371723082],[5.203390159534803,52.30816713066252],[5.203421988594182,52.308171673940805],[5.203457703306645,52.30817622324318],[5.203483131708824,52.308179066880484],[5.203507630527437,52.30818332013803],[5.203537837419466,52.3081901077917],[5.203571490084403,52.308196900784104],[5.203620484312097,52.308206243108],[5.203688248886368,52.30821870628588],[5.203704951755583,52.30822182395179],[5.203720981323547,52.308224652965194],[5.203745718281068,52.3082280616989],[5.203754412155416,52.3082283627812],[5.203764260945675,52.308229501508826],[5.203773872832423,52.30823119710567],[5.203794700215394,52.30823684669416],[5.203804087491646,52.30823967439039],[5.203813473657081,52.308242771715],[5.20382764526956,52.30824813236567],[5.203846184114925,52.30825405701784],[5.20386449758683,52.308257743381276],[5.203883261015434,52.30826254491332],[5.203893345570703,52.30826340537672],[5.203899984394469,52.308264251514906],[5.203906166299145,52.30826567215766],[5.203911206836089,52.30826652480757],[5.203921032900126,52.30826962280496],[5.203952620143543,52.30827950425794],[5.203986491734562,52.30828657608955],[5.204004358792253,52.30828829343446],[5.204022448126717,52.308289444895834],[5.204040555604962,52.30828975153891],[5.204053606693564,52.3082894931174],[5.204066888945226,52.30829007090798],[5.204089801214193,52.30829150844045],[5.204112475363325,52.30829379943133],[5.204134911504898,52.30829691691783],[5.204157345318785,52.30830060062143],[5.20417772282163,52.308305134972066],[5.204203811964936,52.30831134986243],[5.204229450006166,52.30831672819379],[5.204313473403917,52.30833342239009],[5.204358341065013,52.30834079871286],[5.204423138724045,52.308351009960916],[5.204464339556656,52.308358659199094],[5.204517686700374,52.30836857409634],[5.204549962520942,52.308375077078146],[5.204591189613417,52.30837991316334],[5.204632640090018,52.30838391372293],[5.204649819236987,52.30838534230275],[5.20466790515975,52.30838733850354],[5.20468576652948,52.3083904578174],[5.20478741846641,52.30840634300485],[5.204819487054776,52.30840976281348],[5.204850398421859,52.30841290221183],[5.204874906750602,52.30841489928835],[5.204923006504872,52.3084172203023],[5.204951173601682,52.308420921672635],[5.204977049902237,52.30842544637729],[5.205002238156476,52.30842970038618],[5.205016894135531,52.30843141263462],[5.205031771237524,52.308432837615285],[5.205062696157384,52.30843625559755],[5.205079404947595,52.30843797099735],[5.205129787272501,52.30844506790661],[5.205196183518661,52.3084552811897],[5.205225030660655,52.30846122147701],[5.205239449771836,52.308463490570844],[5.205297839243019,52.308470321100124],[5.205311583866732,52.308472589148465],[5.205325314968539,52.308474578555796],[5.205337915887394,52.30847684484352],[5.205358965844052,52.30848192827304],[5.205365383608579,52.30848306159548],[5.20537202359586,52.30848363802176],[5.20537866703787,52.30848336960956],[5.20538509402719,52.308482247033204],[5.205391054044404,52.30848057548967],[5.205394035210392,52.30847945660712],[5.205409184830845,52.308471615643526],[5.205411021149289,52.30847077362065],[5.205419053227837,52.30846798179629],[5.205427316495107,52.30846602618225],[5.205436017334501,52.308464637464574],[5.205445185108873,52.30846380670052],[5.205454129486086,52.30846382043618],[5.205463291529531,52.30846439174263],[5.205471980870459,52.30846581615371],[5.205480462653876,52.30846779748266],[5.205510897780618,52.30847626568115],[5.205523937458637,52.308478811241194],[5.205537449766391,52.30848052166941],[5.205551200169893,52.30848137863038],[5.205564937012396,52.30848196593805],[5.205574337081859,52.30848170174534],[5.205592663455331,52.30848228710519],[5.205610751735724,52.308483725928056],[5.205632973859932,52.30848544072092],[5.205657245345582,52.3084880034967],[5.205708083507674,52.30849482223997],[5.205735111632652,52.30849738922699],[5.205751362473776,52.30849994867311],[5.205773575443872,52.308503910349685],[5.205795316894252,52.308508437524274],[5.205834464162918,52.308516361755345],[5.205854377340839,52.30851976265527],[5.205870647441361,52.3085211986524],[5.205921713642659,52.308526049347535],[5.205921712506794,52.30852632796438],[5.205990171952836,52.30853766742338],[5.206039169336329,52.3085464515112],[5.206048545599931,52.308548434168515],[5.206070302934665,52.30855267371044],[5.20609639816241,52.30855749509888],[5.206109675945689,52.30855919611509],[5.206130062953055,52.30856147423145],[5.206227399749473,52.30856780664403],[5.206233135266664,52.3085672491892],[5.206238870747132,52.30856670072169],[5.206255375743485,52.308564470044864],[5.206271413754669,52.30856169040238],[5.206274172692458,52.30856112839515],[5.206281508699961,52.30856002513514],[5.206288840172844,52.30856003634208],[5.206296170512216,52.308560326165434],[5.206303497414704,52.30856146082656],[5.206319296100606,52.30856344429086],[5.206334857841094,52.3085660026035],[5.206358684953905,52.30856968801818],[5.20636508465792,52.30857166610216],[5.206371721272346,52.30857307832291],[5.206397588633871,52.308579858614436],[5.206412458960251,52.30858297309782],[5.206427581993562,52.30858524312184],[5.206436740640209,52.308586659191064],[5.206465360257702,52.30859091812867],[5.20649810247278,52.30859461712892],[5.206540475956613,52.30859889704702],[5.206563603845967,52.308601457890894],[5.206580999652175,52.30860373136411],[5.206605045618538,52.30860769568162],[5.206624285531708,52.308610816805796],[5.20669435949486,52.308618230696666],[5.206707874188593,52.30861937476981],[5.206723678603876,52.308619956108146],[5.206741768144354,52.30862110715348],[5.206764674945364,52.30862395522722],[5.206791920893937,52.30862707954175],[5.206792610053442,52.308627080592245],[5.206809099037972,52.308628795412375],[5.210218178410363,52.30893671079395],[5.211245946269247,52.309059586052776],[5.211640287958819,52.30910679081154],[5.211706239905718,52.30911503147123],[5.211697773085524,52.309172315467485],[5.211705077730673,52.30935376986584],[5.21170830496374,52.3094054538905],[5.212185515918473,52.30941458196944],[5.212340577660901,52.309310895441165],[5.212480917396666,52.30927795607833],[5.212365559570165,52.30907331569191],[5.212659796628825,52.30900101255621],[5.212712074936256,52.309048553652126],[5.21284615200883,52.309154078025436],[5.212919243209913,52.30921147323516],[5.212962680173068,52.309236540951915],[5.212996755514302,52.309252040955705],[5.213012314976309,52.309259083244456],[5.213049381305155,52.30927092964338],[5.213092647589884,52.30927970237218],[5.213190863504997,52.30929810081495],[5.213309235883408,52.30931793985929],[5.213361457817126,52.30932391249863],[5.213397183259214,52.30932621188827],[5.213424904808417,52.309327933291264],[5.213480797640913,52.30932886018372],[5.213782314903188,52.30932986857229],[5.21390235163198,52.30933284854811],[5.213956872048697,52.30933602012937],[5.21401663797774,52.30934397182608],[5.214163424908305,52.30936468744305],[5.214271739574501,52.309380574208916],[5.214330817531625,52.309388246123014],[5.214492260933323,52.309407023419766],[5.214804858376727,52.30944735753752],[5.214862789542321,52.30945586337064],[5.214926429578287,52.30946691201425],[5.215053052090734,52.30948844201747],[5.215215832170144,52.30951816727929],[5.215377501801565,52.30954312722749],[5.215421926678809,52.30954824279374],[5.215460406918149,52.30955111178233],[5.215504848088735,52.309552012113194],[5.215557547913851,52.30955208854868],[5.215610256409626,52.30954991805001],[5.215730786299958,52.30954307333574],[5.215797463473854,52.30954232506936],[5.215857040364634,52.30954241133014],[5.215908576344761,52.30954389699212],[5.215940190978821,52.30954759174383],[5.21598347000956,52.30955327166573],[5.216058551208778,52.309571077018724],[5.216127226197807,52.30958464884936],[5.216162946122346,52.30959228608432],[5.216234165897202,52.30959997459145],[5.216314107577322,52.30960458388219],[5.216424740207256,52.309612886407976],[5.216575897087049,52.309630234947555],[5.216779928749347,52.30965946027624],[5.216999087168915,52.3096864600823],[5.217077629241286,52.30969668415153],[5.217299075506576,52.3097236866894],[5.217584886304205,52.30975667699125],[5.217871628813879,52.30978769963013],[5.217945128130737,52.30979763728989],[5.218064678441631,52.30981324903769],[5.218198854010296,52.30983507406733],[5.218263412828708,52.30984780292304],[5.218325454620265,52.3098630626813],[5.218367093582833,52.30987603739541],[5.218547405262444,52.30993920829562],[5.218708255298615,52.30999561044877],[5.218738229828418,52.310006609109834],[5.218801638938125,52.31002101673282],[5.21884309223059,52.31002501231095],[5.218992670144056,52.310037861665954],[5.219177719861493,52.31005441918105],[5.219387077516013,52.3100721253457],[5.219514420805033,52.31008241697341],[5.219733393692946,52.31010126859507],[5.219893260600697,52.31011553344685],[5.220069166275027,52.31013066557319],[5.220165830814643,52.310137830398574],[5.220275311298808,52.31014500423167],[5.220505749635247,52.310160500206955],[5.220576072480447,52.310165371686224],[5.220803532254477,52.310181420124756],[5.220886215447111,52.310186587413334],[5.22120255402163,52.310205851699095],[5.221456360359491,52.310223059288575],[5.2217039924739,52.31023660869828],[5.221807531565355,52.31024068103951],[5.221845578102291,52.31023820865484],[5.221942768744179,52.31022626493242],[5.22213579649098,52.31019564358049],[5.222243090014079,52.310179786078976],[5.222312546569708,52.310169205478445],[5.222384750433248,52.31016116319123],[5.222436086182248,52.31015757667106],[5.222490392317936,52.31015569293558],[5.222560740331653,52.31015382250164],[5.222750920371166,52.31015156133538],[5.222981416540258,52.31014766611802],[5.223067805306123,52.31014610524201],[5.223286617894306,52.3101452849936],[5.223447922393478,52.310143818571426],[5.223500389348012,52.31014361252578],[5.223604178512368,52.31014346841315],[5.223639453653332,52.310144928229334],[5.223686190515648,52.31014779696087],[5.223711385672056,52.31015092352855],[5.223748932864941,52.310156592689125],[5.223788776025425,52.31016395469319],[5.223807545519637,52.31016790822443],[5.223841429148902,52.31017694268213],[5.223900916962375,52.3101975256872],[5.223940957468313,52.31021106245513],[5.223960190025374,52.310216706286425],[5.223989034622691,52.31022433167267],[5.224023384245997,52.31023027495529],[5.224042612447025,52.31023311460789],[5.22406574734289,52.31023426995601],[5.224097138850919,52.310235149070856],[5.224177990578664,52.31024004190288],[5.224214873695705,52.31024289685377],[5.224249685112348,52.31024688139009],[5.224294792672206,52.31025424148279],[5.224349049476348,52.31026583836042],[5.224453668157556,52.31029153425103],[5.224549136615163,52.31031328985541],[5.224626064713286,52.31032856675835],[5.224697960953899,52.31034045733203],[5.224735514573615,52.310344445489754],[5.224779939265162,52.3103501237619],[5.224823916585303,52.31035383309961],[5.224871345982486,52.31035586645726],[5.224959087551048,52.310357388831996],[5.225051420849119,52.31035836019508],[5.225170805005547,52.31035627675267],[5.22522144027493,52.31035578881743],[5.225424683901501,52.31035016185507],[5.225553004228974,52.31034640954175],[5.225636881383658,52.310342030211984],[5.225753979607968,52.31033544921609],[5.225806238047293,52.310332150097615],[5.225924275311209,52.31032135498719],[5.22608512536343,52.31031595672769],[5.226329846738379,52.310311795726165],[5.226421959589137,52.31030882911165],[5.226491647924059,52.31029881259672],[5.226571658875619,52.31028488242885],[5.226623942574413,52.31027455461035],[5.226695491097066,52.310256963876725],[5.226784245496131,52.31023377012516],[5.226894339276845,52.310201338900775],[5.226977358999214,52.31017842484375],[5.227033087881408,52.31016417388742],[5.227159434015478,52.31013428994693],[5.227219039017616,52.31012678491063],[5.227312081760174,52.31011792293556],[5.227350360467663,52.31011601531815],[5.227417499952222,52.31011329281944],[5.227569190000744,52.31011040571754],[5.227687410931426,52.31010944162756],[5.227801279388944,52.310111841941804],[5.227895207533048,52.31011365807529],[5.228032897111038,52.310118058527],[5.228182483430826,52.31012527896004],[5.228233348008745,52.31012619212292],[5.228423473901391,52.310134868766745],[5.228514897679821,52.31013583620579],[5.228561407223284,52.310136743389236],[5.228628998220972,52.310134865650625],[5.228702340636123,52.31012794449333],[5.228752309481611,52.310120983017924],[5.228857090352805,52.310101745770595],[5.228913721657184,52.31008918482108],[5.228964869818793,52.310076328908806],[5.229035495312905,52.31005816930154],[5.229187062229482,52.31002382304778],[5.229268903782706,52.31001017211749],[5.229343628243695,52.31000212894535],[5.229425673457008,52.309997178261305],[5.229507924644266,52.309996164402634],[5.22962156129037,52.30999771781271],[5.229646767734517,52.309997751365465],[5.229762692871963,52.30999902906753],[5.229872449670111,52.30999889637823],[5.229958812345877,52.31000041321114],[5.230037395433754,52.310004175562135],[5.230087782775416,52.31000732522846],[5.230189485976341,52.31001644786265],[5.230347979520039,52.31003014850691],[5.230467096291457,52.31003703806537],[5.230635693290408,52.310046536475014],[5.230758929569406,52.310053718794016],[5.23089636883858,52.310062609425145],[5.230952270746882,52.31006548738609],[5.231025128513142,52.310066994600916],[5.231101632595663,52.31006989967104],[5.231242088066539,52.31006755926671],[5.231378425075131,52.310064647049806],[5.231511791268278,52.31006005007069],[5.231562210144594,52.31005842668732],[5.231614451184816,52.31005569120406],[5.231664644270252,52.31005154193976],[5.231734552881166,52.310045171627024],[5.231911271147148,52.31002602613201],[5.232107246311902,52.31000156691791],[5.232171644274501,52.309994344283936],[5.232227340881098,52.309988808896684],[5.232283024793635,52.3099869134805],[5.232331367188757,52.30998782157994],[5.232386583826258,52.309989574505266],[5.23254646513205,52.31000073948921],[5.232885929823253,52.31002477519162],[5.232948925025052,52.31002878491648],[5.233010546735407,52.310031390739276],[5.233062327263124,52.31003033471436],[5.233116416738234,52.31002732235621],[5.233175087084332,52.310022617260806],[5.233236741844969,52.31001567808356],[5.233310095975502,52.310005105082794],[5.233479764861746,52.309971900322616],[5.233554973154044,52.30995514604806],[5.233659967631004,52.30993702828491],[5.233687926776155,52.30993397278187],[5.233739955342446,52.30992898916211],[5.233873342205976,52.30991820601712],[5.233921221154154,52.30991742318088],[5.233994544987945,52.309915549798895],[5.234102237897968,52.309914287051555],[5.234166159566631,52.30991324624537],[5.234218178408928,52.309911066561504],[5.234260580955997,52.309908029588165],[5.234333230996313,52.30990167026909],[5.234429508423193,52.30988971510754],[5.234601650690557,52.30986606584298],[5.234779530040216,52.30984129126637],[5.234954653399765,52.309816243247035],[5.23502549169838,52.30980790388113],[5.235135734012474,52.309794285398425],[5.235292513680767,52.30977763477733],[5.235561594221549,52.30974989324819],[5.235647303789624,52.309740736703986],[5.235800633366486,52.30972520445335],[5.235904927044487,52.30971438180422],[5.236020907020501,52.309699358762465],[5.236198109041985,52.30967066255522],[5.236411294283822,52.309637787710244],[5.236444546105265,52.30963053205907],[5.236564010555941,52.309603999693294],[5.236644941472388,52.30958556105042],[5.236749489685047,52.30956435719993],[5.236803373214141,52.30955262483605],[5.236866189482607,52.309540067937206],[5.236899894807325,52.30953308236459],[5.237040418442761,52.30950995562504],[5.237110345331438,52.30949768623437],[5.237289842798106,52.30946617815518],[5.237425793958987,52.30944219133667],[5.237496863430536,52.30943020178147],[5.23753904012015,52.30942435918839],[5.237577097363393,52.30941823275514],[5.237743500932996,52.309395128900896],[5.237877601738425,52.309376199295606],[5.238006167407795,52.30936371572282],[5.238157178212029,52.309356886565226],[5.238323770352769,52.30935175750947],[5.238398936287564,52.30934680093669],[5.238508723759507,52.30933261251392],[5.238652990530298,52.30928589587706],[5.238888731647431,52.30922440110458],[5.238929548377256,52.30921293001856],[5.238998565472474,52.30919616452751],[5.239091870321875,52.30917774868861],[5.239187934610256,52.30915848239587],[5.239190905316805,52.30916466964017],[5.239375300102837,52.309586755183126],[5.240104562148617,52.311255445678185],[5.240565348965174,52.31117905578327],[5.242234026045722,52.31090473960633],[5.24223403243241,52.31090278029875],[5.242281715214643,52.31089497445432],[5.24228308812936,52.31089665683209],[5.242343153500542,52.3108868978171],[5.241674391407084,52.3093334637023],[5.242125017824497,52.30927222644788],[5.242519276911891,52.30922018490614],[5.243659602622417,52.309067380300036],[5.244379662191458,52.30915138731488],[5.244332073688835,52.3091305413703],[5.244283559632985,52.3091102605135],[5.244234603935943,52.309090536339966],[5.24421354451469,52.30908236805988],[5.244186084535049,52.309071945121815],[5.24415634162884,52.30906011733948],[5.243918830636208,52.30896349107865],[5.24387924788476,52.30894742710271],[5.243633763617511,52.30883647322483],[5.243419863331841,52.308739595968845],[5.243329062112488,52.308692021664946],[5.243178090793061,52.30861515512524],[5.243074731904487,52.30855605211604],[5.242964984643165,52.308486542475485],[5.242879246621904,52.308428862841225],[5.242758574841865,52.30833715806967],[5.242682490072358,52.308273585156556],[5.242606413731123,52.308207486662944],[5.242597056886628,52.30819905376816],[5.242579925918552,52.30818245954055],[5.242563705871291,52.30816530918662],[5.242548644200212,52.308148160245864],[5.24253449347766,52.30813044619188],[5.242531529728671,52.308126505961695],[5.242518992836178,52.30810851525959],[5.242507131349605,52.30809024676326],[5.242496663775079,52.30807169236349],[5.242487326122165,52.30805286971327],[5.242390523840793,52.30787664653055],[5.242182231320856,52.30746969853034],[5.242177441199959,52.30745930289092],[5.242028575780516,52.307165896984245],[5.24195094375028,52.30701581514982],[5.241618120938181,52.306365766881314],[5.241368176913458,52.30587703199313],[5.242211992028774,52.305716856264986],[5.242599451465404,52.306474822010564],[5.242610141441808,52.306497025682205],[5.242880140470001,52.307023692408805],[5.243282425451565,52.30781089276132],[5.243304735958363,52.307853611412895],[5.24331817687554,52.30787777767445],[5.243335034326139,52.307906450919376],[5.243353271028218,52.30793483823161],[5.243372431508138,52.30796322666323],[5.243392722848302,52.30799105922859],[5.243413953562151,52.308018605325195],[5.243436534180319,52.308045874438776],[5.243459819541364,52.3080728657852],[5.243484484135659,52.30809958018298],[5.243509825049784,52.30812573815956],[5.243537466287647,52.3081524471713],[5.243566237468319,52.30817888791671],[5.243595948034277,52.30820504218847],[5.243626555767804,52.30823036168552],[5.243658101988729,52.3082556733248],[5.243690324535867,52.30828042853865],[5.243723692621411,52.30830462789518],[5.243757986360588,52.308328253151736],[5.243793190105356,52.30835160986984],[5.243805305631186,52.30835948877442],[5.24425981711393,52.30865944534361],[5.24436257450094,52.30862333101272],[5.244906200328452,52.30842373099855],[5.24524039800036,52.30829999426747],[5.245330838071985,52.30839222650113],[5.245484071234886,52.30833539213734],[5.245524029870887,52.308376163185365],[5.245370577562939,52.30843271871962],[5.245447309092633,52.30851088667901],[5.245281691671008,52.30857023168844],[5.245111716506296,52.30863490992249],[5.245292807933938,52.30882246652091],[5.24540061216642,52.30892792241842],[5.244972115743461,52.309086939850815],[5.244975064833232,52.30910013731987],[5.244994967139408,52.30918132903862],[5.24519346141107,52.30929672655265],[5.245322735774764,52.309281997942655],[5.245362177028476,52.309269120909974],[5.245378020673519,52.30925762666369],[5.245382888407728,52.309239378501445],[5.245363298751741,52.30920705328271],[5.245531651169667,52.30914602175203],[5.245656129340222,52.30926976034249],[5.245482720532709,52.30932993216593],[5.245449593350945,52.309303217047926],[5.245422115954904,52.309298124075546],[5.245397131064981,52.309302309376065],[5.245360186482244,52.30931855080684],[5.245338746432891,52.30936065939577],[5.245413367204744,52.30945287258779],[5.245468893250326,52.30950012443581],[5.245494479735662,52.30952346013861],[5.245542662653673,52.30957436114989],[5.245552719691642,52.30958420571332],[5.245561616557985,52.3095946061244],[5.245566187398393,52.30960050751573],[5.245570508963674,52.30960640860863],[5.245647161488769,52.309710146293135],[5.245817353787158,52.30994261845559],[5.245829195323546,52.30996313350955],[5.24587793354341,52.310056438945914],[5.24587838719688,52.310056727093404],[5.245878839079722,52.31005757247537],[5.245923295622445,52.310127837340566],[5.24606169427083,52.310343706879834],[5.246290658729657,52.310318418649295],[5.246603428018907,52.310241271721594],[5.246627040264625,52.310235403839535],[5.246782506218151,52.31019739067485],[5.246881783719884,52.310172513631734],[5.247038161034408,52.310133656368585],[5.247061552335366,52.310128066756384],[5.247244992653283,52.31008165564518],[5.247570597064816,52.31000199579163],[5.2475680872829,52.30999806521269],[5.247592388482091,52.30999218896273],[5.247594899112168,52.30999584991156],[5.247714585767738,52.30996678100963],[5.247739110075231,52.30996456298059],[5.248031222753237,52.309893841098344],[5.248233694398957,52.30984268734984],[5.24823187551597,52.309838191371675],[5.248411420609328,52.30979402079947],[5.248320545352661,52.3093967753219],[5.248801139389322,52.30935295693481],[5.248804311316706,52.30936559733071],[5.248816900045767,52.30936785896814],[5.248829725988296,52.30936928502665],[5.248843007386695,52.30937042401004],[5.248856072331666,52.309370439278155],[5.248869358986259,52.30936988857965],[5.248882427424884,52.30936878038805],[5.248895263878157,52.309366827081455],[5.248907648368896,52.30936403739063],[5.248919799140494,52.3093609598195],[5.248931263336886,52.309357045590396],[5.248938604564671,52.30935396239999],[5.248935213545549,52.30934103414591],[5.249732506382371,52.30927259565578],[5.249735678569063,52.309285236026966],[5.249748266461835,52.30928777618259],[5.249761327022621,52.30928920241246],[5.249774374698305,52.30929005341395],[5.249787673342896,52.30929035645643],[5.249800959962085,52.30928980565319],[5.249814014551414,52.30928841872431],[5.249826850940597,52.30928646531656],[5.249839469961876,52.30928367580025],[5.249851386896069,52.30928031924386],[5.249863085628718,52.30927639620884],[5.249869735859568,52.30927387838331],[5.249866578326492,52.30926122904505],[5.250792440194592,52.309181697875616],[5.250794706977612,52.309188441252594],[5.250797897541727,52.30919518569379],[5.250802451782851,52.30920193170609],[5.250807931542367,52.30920811256015],[5.250815024226457,52.30921430425979],[5.250822559398636,52.309219651626144],[5.250831019235448,52.30922471245114],[5.250840169952594,52.3092292168347],[5.250850011577494,52.309233155788995],[5.250860544936459,52.30923625968423],[5.250871534563929,52.309238806867356],[5.250882745903523,52.309240779092804],[5.250894209079986,52.30924191575225],[5.250896951097731,52.30924191890924],[5.250908636811601,52.30924221098091],[5.250920559697799,52.309241667469635],[5.250932015096176,52.309240557194784],[5.250943473082111,52.30923860207924],[5.250954478214925,52.30923608920481],[5.250965031375212,52.309232730966755],[5.250974896217195,52.309229093317455],[5.250984294422801,52.30922461028783],[5.250992799905929,52.30921956000609],[5.250993946194333,52.309218725470046],[5.251001514937593,52.309213116873366],[5.251007956347452,52.309206940755104],[5.251013473947477,52.30920077256148],[5.251018069499215,52.309194037082726],[5.251021302254514,52.30918701243018],[5.251023611201175,52.30917999570265],[5.251024777300088,52.30917269005454],[5.251024579696169,52.30916539182549],[5.25102390428561,52.30916089720516],[5.251008982637487,52.309096842771076],[5.251062151158911,52.30909213146111],[5.251061923425865,52.30908988427746],[5.251658008428763,52.30903804418716],[5.251827833700483,52.30901998450381],[5.251966047720991,52.30900104362924],[5.252331345275068,52.3089691585913],[5.252305114565832,52.308852567392265],[5.252624598993059,52.30882204030629],[5.252648644723804,52.30882262487364],[5.252679094173989,52.30882940024133],[5.252710685873254,52.30884151558499],[5.252728542090243,52.30884265932899],[5.252785927432576,52.30881071035381],[5.253010502363504,52.30879298973803],[5.253065483730349,52.3087947327416],[5.253114705594953,52.308805178265594],[5.253173520461294,52.30882912514784],[5.25340708293776,52.308948188573964],[5.253426393867447,52.30892883294266],[5.253442501158747,52.30890694814872],[5.25345610636701,52.308873538311275],[5.253465836290048,52.30884152617373],[5.253470730218431,52.3088134451797],[5.253473768453952,52.30879294769722],[5.253477632653265,52.30872694648719],[5.253486842752672,52.30863370963363],[5.253498901388004,52.30858793997252],[5.253515069298035,52.308545832938876],[5.253526120224113,52.308523097579695],[5.253540163540541,52.308504859441605],[5.253555094561206,52.30848886023812],[5.253576001786358,52.30847007260723],[5.253629033379556,52.308432492014795],[5.254106398256342,52.308085601562766],[5.254308218766319,52.30793808865572],[5.254408792939107,52.30786377445818],[5.254476063122752,52.30781554106597],[5.25449120972981,52.307805725514136],[5.25451118033858,52.307795924354764],[5.25452838767267,52.30778835802988],[5.254553147988184,52.30778023394092],[5.254587545850431,52.30777072755075],[5.254787932865188,52.307719551249725],[5.254928028697294,52.30768235502113],[5.254954642203616,52.30767227360235],[5.254976659124484,52.307659661503415],[5.254999395707761,52.30764171151676],[5.25510828485586,52.307546617481414],[5.255322813809861,52.30735896001469],[5.255521509513888,52.307184766078315],[5.255739721068418,52.30699514363663],[5.2558416941555,52.306907339240944],[5.255858238295527,52.306890793283515],[5.255868832825144,52.30687310827491],[5.255907095110721,52.306795910504526],[5.255965870528671,52.30667379700934],[5.256021411126797,52.306564604197135],[5.25604526139749,52.306556487773875],[5.256091805034417,52.30654473848934],[5.256355001963042,52.306477343371945],[5.256452010831223,52.30652126553938],[5.256589743831705,52.306582929324136],[5.256728467881778,52.30646679954603],[5.25686741277283,52.306350112609415],[5.258474893174181,52.30606820182763],[5.259022262105652,52.30597161180593],[5.259036924226749,52.30597162767911],[5.259051353359139,52.30597108606148],[5.259065565018693,52.30596969037604],[5.259079778256328,52.30596774644147],[5.259093524763698,52.30596494816948],[5.259107052942085,52.3059615924228],[5.259119894405472,52.305957400076416],[5.259132282996816,52.30595263202648],[5.259143749450545,52.305947314728705],[5.259147640576287,52.30594535063307],[5.25915912331814,52.30593946712684],[5.259169683973703,52.30593301639778],[5.259179322542978,52.30592599844616],[5.259188273567958,52.305918431501176],[5.259196081773561,52.305910575713796],[5.259202981727952,52.30590244032551],[5.259208739665447,52.305893737477646],[5.259213339295373,52.30588503337728],[5.259216810744149,52.30587604943875],[5.259217729490016,52.30587268004769],[5.25921982350244,52.30586341600158],[5.259220759235338,52.305854141715656],[5.259220565961876,52.30584487519695],[5.259219213582911,52.30583588604368],[5.259216483771162,52.30582661678291],[5.2592128441106,52.30581762515688],[5.259184605327031,52.30576142155427],[5.259489908361539,52.30570726789636],[5.259516326203745,52.305764583936245],[5.25969717254885,52.30573248606318],[5.259896811163621,52.30569675013128],[5.259904567180912,52.305712199324844],[5.259881872947614,52.30571639014903],[5.259883695259147,52.30572004111147],[5.259950617208272,52.30570832120794],[5.260347838402163,52.30563769079153],[5.260652700129375,52.30558324605273],[5.260659984777142,52.30559954852371],[5.260640034077447,52.30560317620115],[5.260641855654029,52.305607105769546],[5.260715657722245,52.30559398171998],[5.260741108244178,52.30558980266757],[5.260767010115799,52.30558673856546],[5.260792896504644,52.30558396204731],[5.260819014316095,52.30558230024424],[5.260845145179365,52.305581204673906],[5.260871494363354,52.30558067555539],[5.260897826511667,52.30558098226805],[5.26092395099437,52.305582133596424],[5.260950059235054,52.30558384213854],[5.260975945150745,52.30558639528086],[5.261001814801193,52.30558951462478],[5.261007545245106,52.30559036557587],[5.26103341252958,52.305594320765614],[5.261058837537704,52.3055991293092],[5.261083790997752,52.30560477320029],[5.261108288362656,52.30561097383723],[5.261132549537752,52.305617740442145],[5.261156120001623,52.30562507253126],[5.261179248245208,52.305633240000304],[5.261201671116982,52.30564197293863],[5.261223403304854,52.30565126237465],[5.261239656665246,52.30565886527949],[5.261255440871959,52.30566645869536],[5.261277167511677,52.30567771641992],[5.261299360956388,52.30568981947985],[5.261320848245057,52.30570276662776],[5.261341205781104,52.305715991189174],[5.261361093381225,52.3057294848783],[5.261379849600995,52.305743831192366],[5.261397666673668,52.30575845512387],[5.261414588559419,52.30577336570773],[5.26143035060369,52.30578882330617],[5.261445421941193,52.305804846393364],[5.261449310135955,52.305809065750346],[5.261463001651851,52.30582565359417],[5.261475549535761,52.30584224022191],[5.261487186805108,52.30585938311822],[5.26149767965308,52.305876803416645],[5.261507028840338,52.30589423148763],[5.261517509795635,52.305915866998596],[5.261491148509254,52.30592061147538],[5.261487956530984,52.305913876305695],[5.261481999754882,52.30591527206031],[5.261501577495841,52.305955449850316],[5.261549632099803,52.306056899986615],[5.261553729952706,52.30606476856485],[5.261558987716505,52.30607207214929],[5.261565154510434,52.30607938568586],[5.261572466553871,52.306086134212784],[5.261580689252468,52.30609231748095],[5.261589616523925,52.30609822287772],[5.261599674357798,52.306103572236275],[5.261610202981955,52.306108355868936],[5.261621407641144,52.30611258298083],[5.261629889882814,52.30611512650622],[5.261642241391113,52.306118222383525],[5.261654843705254,52.306120770276316],[5.261667888295343,52.3061224648062],[5.261680949120843,52.306123602114965],[5.261694232263072,52.30612389481507],[5.261707531639559,52.306123630294124],[5.261720584141922,52.30612252066707],[5.261733653688526,52.306120566213764],[5.261740988728342,52.30611917190698],[5.261961032776149,52.30607980511138],[5.261958976494323,52.30607586632778],[5.261953709617076,52.30607698421754],[5.261946189012224,52.306060969184614],[5.262308114969104,52.30599675699196],[5.262320714482643,52.30599508059635],[5.262333781594111,52.30599397091702],[5.262346846333881,52.30599370607671],[5.262359894065787,52.30599427707224],[5.262372720277295,52.3059954140573],[5.262385544900849,52.30599711726378],[5.262397912654441,52.30599965584248],[5.26240982351348,52.306003038781256],[5.262471610912434,52.30602360481206],[5.262484210904135,52.30602698846929],[5.262497032391887,52.306029815121676],[5.262510310775646,52.30603179741095],[5.262523825341735,52.306033213722934],[5.262537561402333,52.30603407302978],[5.262551314492768,52.30603408751004],[5.262565055287977,52.30603325713287],[5.262575600516051,52.30603214477202],[5.262589344457067,52.30603019093403],[5.262602871611275,52.30602711340498],[5.263131442624149,52.30593274049362],[5.263125292813283,52.30591925251304],[5.263152329960285,52.305913942155655],[5.263184221156715,52.30598194946875],[5.263148693823018,52.30598752955637],[5.263138143155921,52.305990601279156],[5.26312851382032,52.30599452779707],[5.26311933667781,52.30599929064331],[5.263111082470605,52.30600433307458],[5.263103501917487,52.306009663817456],[5.263097077314611,52.30601584061439],[5.263091547125536,52.30602200936087],[5.263086953732312,52.30602874531365],[5.263083723917089,52.306035482695634],[5.263081417013687,52.30604250865118],[5.263080253004884,52.306049805435556],[5.263080468015248,52.30605682504716],[5.263081811209081,52.30606413344756],[5.263084093583727,52.3060711552264],[5.263087725654938,52.306077899801664],[5.263092296105509,52.306084645360464],[5.263098011785679,52.306090825895],[5.263104857206212,52.306096737982664],[5.263107373608101,52.30609870892436],[5.263567277635064,52.306475261970895],[5.263617893262798,52.30648008727685],[5.263770173717182,52.30658669632152],[5.263765165747599,52.30665831399683],[5.263942256066364,52.30665905572464],[5.263942261494928,52.30665709641402],[5.263971130117683,52.306657683700685],[5.263896822601533,52.306604246426915],[5.263915178537164,52.30659415439136],[5.263915866122383,52.306594712344044],[5.263937203158647,52.30658294271122],[5.263956637378294,52.30659644447637],[5.263957544899016,52.306597002657746],[5.263957089594937,52.306597280802194],[5.263954107689051,52.3065992460022],[5.263953848192473,52.30660823342142],[5.264018104499359,52.306653804962],[5.264143864113843,52.30674381262688],[5.264149571577636,52.306747746178814],[5.264156218976035,52.306751123470576],[5.264163762321867,52.30675394445629],[5.264171542603182,52.306755920844935],[5.264179792876761,52.30675761011536],[5.264188500791346,52.30675817639954],[5.264196974853529,52.30675847280949],[5.264205671982479,52.30675763700175],[5.264214164607995,52.30675652236256],[5.264222191142497,52.30675428377751],[5.264229529314438,52.306751765858635],[5.264236400624553,52.30674840261167],[5.264243288160981,52.30674447315672],[5.264248798202761,52.306740263652614],[5.264253856789846,52.30673493920597],[5.264257301769482,52.306729882714265],[5.264259603853274,52.30672454641733],[5.264260762246803,52.30671921792054],[5.264260777770107,52.306713600630964],[5.264259648858856,52.306708260771444],[5.264257376283422,52.30670291972433],[5.264232550663555,52.30665065749401],[5.264202706134217,52.306589393367126],[5.264175374258679,52.30653151121401],[5.264162792559835,52.30652671668927],[5.264157291858194,52.30652755581574],[5.264152728956395,52.30651800614758],[5.26415800972239,52.30651716679278],[5.264156406190853,52.30651379474278],[5.264163070734178,52.30650565882195],[5.264143944129072,52.30646575157845],[5.264116144671724,52.30641264138738],[5.264086259249094,52.306366269787446],[5.264041745887168,52.30630751590317],[5.26399972494995,52.3062594509582],[5.263954944522109,52.30621249759894],[5.263846450166753,52.30609919364343],[5.263843691337066,52.30610003561197],[5.263835004590864,52.30609188371372],[5.263837763420211,52.3060910417454],[5.263745931483507,52.30599685389674],[5.263686762268992,52.30593612527469],[5.263676051897509,52.30591224279489],[5.263746875600511,52.30589967997151],[5.263679929498713,52.30575665193888],[5.26392471657651,52.30571309207297],[5.263925405692295,52.30571309279048],[5.263926094808083,52.305713093508004],[5.264117016046526,52.3056790220746],[5.264514011229362,52.30560808982604],[5.264492234198955,52.305614817014096],[5.264509318156597,52.30565106410092],[5.264509537318493,52.30565134294646],[5.264675688601321,52.30604500508512],[5.264700191595002,52.3061346287222],[5.26471704933559,52.3062531758175],[5.264731525222262,52.30632087708346],[5.264821263957496,52.30642545176434],[5.264825389447553,52.306428826411995],[5.264830191726777,52.30643135691621],[5.264835684666222,52.3064333308972],[5.264841633694068,52.30643473912488],[5.264848038785415,52.30643559058679],[5.264854460862678,52.30643559722312],[5.264860885263222,52.30643475901866],[5.264867061937117,52.30643336332114],[5.264872565702886,52.30643140070364],[5.264877381873413,52.30642888013872],[5.264881525135624,52.30642579265407],[5.264884511609798,52.30642214673743],[5.264886589813398,52.306418212276306],[5.26488363886557,52.30640360423232],[5.264882078511652,52.306389842467595],[5.264881662580816,52.30637580326676],[5.264882609498385,52.30636203510458],[5.264884480878317,52.30634799826666],[5.264887495146027,52.30633424122776],[5.264891886921041,52.30632075524243],[5.264897203155408,52.3063070005811],[5.264903881442038,52.30629380456325],[5.264911468757986,52.30628061847152],[5.264920213643811,52.30626770320548],[5.264930100621298,52.306255355342635],[5.264940896650512,52.30624300841769],[5.264961348119081,52.306222528613674],[5.264983163943483,52.306201762608325],[5.265006136480815,52.30618157300487],[5.265030017312389,52.306161653964786],[5.265054585690397,52.30614230185361],[5.265080296956421,52.30612322054675],[5.265334015559124,52.30599878675451],[5.265545261798749,52.30590996295084],[5.265737445124283,52.30583236281498],[5.265907837251067,52.30577187058245],[5.266189638762759,52.305681715803786],[5.266232736257874,52.305668844532384],[5.266276301398091,52.305656530959716],[5.266286616443993,52.30565372834701],[5.26634210939064,52.30563862277105],[5.266398275238958,52.305624075092375],[5.266454658687677,52.305610372451866],[5.266511509774028,52.30559722749795],[5.266568827719909,52.30558492783527],[5.266626583983672,52.30557318582802],[5.26668457249587,52.305562297859545],[5.266709790159803,52.3055572634552],[5.266758845686797,52.30554776843904],[5.266808353452409,52.30553910971761],[5.266858078843188,52.30553129603957],[5.266908051939141,52.3055240488168],[5.266958242689387,52.30551763764919],[5.267008886440929,52.30551178415698],[5.267141338883222,52.30549703492271],[5.267236437377941,52.30548589670143],[5.26733131814765,52.30547392232798],[5.267425965823517,52.30546137243036],[5.267475923336658,52.30545440357029],[5.267613438804441,52.305432351934144],[5.268042518147323,52.305351616695795],[5.268123672249136,52.30533512503832],[5.268204358600022,52.30531807561818],[5.268284813301344,52.305299902448944],[5.268364814186254,52.30528144116334],[5.268381319310162,52.30527753010679],[5.268658934305271,52.30520927722983],[5.268715329709044,52.305196130759896],[5.268785705300314,52.30518019408588],[5.268856533135454,52.30516509367729],[5.268927578580544,52.305150847274305],[5.268999106364618,52.30513714955928],[5.269071072432754,52.30512402745046],[5.269616094445291,52.305031313674625],[5.269909454390175,52.304984706868716],[5.270176214198027,52.304944804828565],[5.270265837590803,52.30492972215073],[5.270354993209305,52.3049140817065],[5.270443930300794,52.30489788374265],[5.270532401096868,52.30488056179103],[5.270620637989422,52.30486295193681],[5.270708437171416,52.30484449674307],[5.270744188450657,52.304836667681506],[5.271096256644413,52.30476567812567],[5.271743110238007,52.30462783727778],[5.27199962016661,52.30456433742563],[5.272490404680016,52.304451065680425],[5.273305122928676,52.304239517937425],[5.273988702596196,52.30406182173083],[5.274021931264634,52.3040596065736],[5.274046022207786,52.30404727152123],[5.274135197564775,52.30402264055255],[5.274223685171202,52.30399744263577],[5.274311720292406,52.30397140836588],[5.274399302240668,52.30394480737409],[5.27443965327644,52.30393220911185],[5.274488722434211,52.30391597013173],[5.274537104630125,52.303898876646805],[5.274585018305203,52.30388151306565],[5.274632259654256,52.303863303982794],[5.274679033230814,52.303844528211876],[5.274725133751082,52.3038251945461],[5.274735686692714,52.30382070173578],[5.274819850306812,52.303783150175576],[5.274998262030826,52.3037088922867],[5.275272788061324,52.30359006517427],[5.275508549982892,52.303482147874156],[5.275795227638896,52.3033515391534],[5.275962184179397,52.303277826264896],[5.276283288048148,52.303121966311686],[5.27645302786945,52.30303674209936],[5.276608545034824,52.302957687893],[5.276775060257997,52.30287161536151],[5.276990433027387,52.302764808529936],[5.277212009090377,52.30265097868975],[5.277436573346679,52.302531821499784],[5.277714790760455,52.30239080150314],[5.277860656023956,52.30231791126448],[5.278118924567694,52.30218586857307],[5.278343704214777,52.3020725967914],[5.278624688275217,52.301918940488584],[5.278945838555221,52.30173611921937],[5.279166752257432,52.30160711386379],[5.279344775861346,52.30149886656286],[5.279502626653674,52.30139621795634],[5.279607004230896,52.30133817143705],[5.279899449495717,52.301176092043036],[5.280197186405521,52.30101345946673],[5.280457509056309,52.300874672726614],[5.280892630361405,52.30063604535011],[5.281239183701273,52.30045295301558],[5.281562547000392,52.30029229923168],[5.281774682513174,52.30018660422169],[5.281764173784544,52.300179287866605],[5.281835732785934,52.30014115384527],[5.281849440806102,52.300153245508156],[5.2829741462683,52.29957060662733],[5.283400027746987,52.29935386486951],[5.283830019257619,52.299139381071654],[5.284257002380804,52.298930789019494],[5.284691319546735,52.298725014918666],[5.285125845356335,52.2985287843344],[5.285571359567805,52.29832722288493],[5.286105577238295,52.2980987724094],[5.286221138315949,52.29804719172849],[5.286516877306161,52.29793172689518],[5.286837584944633,52.29782049771687],[5.287120204997203,52.29772917020597],[5.287506893828845,52.2976104183222],[5.287706072546009,52.29755075470722],[5.2877860639427,52.29752667193338],[5.288091544524031,52.29745699468577],[5.288221265907826,52.29742367791895],[5.288872428968416,52.297226769563615],[5.289489869591307,52.29705679290525],[5.290039486134118,52.29689631131979],[5.290457805863571,52.296758746484414],[5.290688600027433,52.29669068218511],[5.290756443253912,52.29666995788689],[5.290937956680686,52.29662039458698],[5.291182046330116,52.2965517828925],[5.291765097889869,52.29638653892275],[5.291845311499722,52.296359361808605],[5.291893007853021,52.29633383917536],[5.291914104858917,52.29632571329282],[5.291920748980548,52.29632402895039],[5.292419698230757,52.29617865776747],[5.292911064163192,52.296040873048916],[5.293306856939962,52.29592827498666],[5.293627495467415,52.295827974333676],[5.293884429522375,52.295746730490045],[5.294093782254399,52.295636517268775],[5.294337520856066,52.29550638692639],[5.294420019849245,52.29548538440766],[5.294481911596102,52.29546296361759],[5.294533507547054,52.29542902148971],[5.29517005660514,52.29507646283072],[5.295240718377456,52.29502315771389],[5.295380624538518,52.2949283381228],[5.295460659172156,52.29487895877942],[5.295522815306088,52.294841375388025],[5.295624479345173,52.294745114826206],[5.295738531122321,52.29463370148301],[5.295832878870145,52.294530694308605],[5.295887535008976,52.294461647965385],[5.29591649260959,52.29440802267032],[5.295942278799414,52.29434260305313],[5.295973798620186,52.294276055395265],[5.29609708120094,52.29402225656833],[5.296191212967083,52.29380156389271],[5.296244200062963,52.29365190534463],[5.296306712440893,52.29343146689253],[5.296399905583574,52.293102084949],[5.296419093809305,52.29301531434538],[5.296432594829375,52.29290691495118],[5.296439426401939,52.292820125882166],[5.296428636891497,52.29272012934959],[5.296406915983757,52.29258979091491],[5.2963909821579,52.29242490815485],[5.296377955873565,52.292185609378414],[5.29634247671185,52.291844606408276],[5.296324519434508,52.29166596187761],[5.296305147256787,52.2916204512174],[5.29627888190169,52.29158419260399],[5.296245301082216,52.29154147518956],[5.29619318131968,52.29149032203441],[5.296128949264912,52.291434656698335],[5.296048239665267,52.29136606330354],[5.295810706657597,52.291164222946904],[5.295392302573442,52.29082180002663],[5.295183097144393,52.29065339665909],[5.294948284803793,52.290465038221754],[5.294762188103322,52.29030788673788],[5.294712815332867,52.29026235238154],[5.294692029161959,52.290235373004684],[5.294678115961194,52.29020895623236],[5.294672475618862,52.29017244373245],[5.294680825604154,52.29001235210996],[5.294696939030854,52.28986154186778],[5.294723295430734,52.289521152765936],[5.294759812043178,52.2891366778363],[5.294778790499929,52.28893277935763],[5.294782316300654,52.288886441446465],[5.294792084927217,52.288819319819545],[5.294801784076321,52.28877860404663],[5.294812603698698,52.28874883618505],[5.294834891040576,52.288715994481116],[5.294904011814483,52.28862364566456],[5.294970823809485,52.28854196342736],[5.294993298785065,52.28852457172316],[5.295015061059188,52.28851869272467],[5.295017622088279,52.288499308213865],[5.295012138731438,52.28849312938389],[5.295025295227641,52.288445954113584],[5.295045756485785,52.288402999765445],[5.295144313361342,52.28825758326396],[5.295276841044793,52.28806332683368],[5.295435077963595,52.287846063641624],[5.295623176323315,52.28758190743875],[5.295763489401144,52.287391305474344],[5.295972651897649,52.28712352493167],[5.296136808799676,52.28691777859385],[5.296205005658759,52.28683020075637],[5.296281203174612,52.286743186259926],[5.296345677085046,52.28668425832996],[5.296470908632995,52.28658464458639],[5.296562409715505,52.286517306760445],[5.296704366426999,52.286415746244465],[5.296907123175725,52.286259173158804],[5.297078730948743,52.28609752492078],[5.29710626981783,52.28606805716534],[5.297170060239019,52.286005470257],[5.297277442223244,52.28589629711667],[5.297378936935339,52.28576296041751],[5.297408550954955,52.28572169328633],[5.297414365040894,52.28568012948499],[5.297431142373039,52.285652621802654],[5.297450648385591,52.2856310031433],[5.297480001101456,52.28561024577507],[5.29755429368567,52.285557220558935],[5.297722184013351,52.28542702557879],[5.29791118204145,52.28527240865969],[5.298210240772733,52.28504401309596],[5.298338192836312,52.28495001671858],[5.298409732148552,52.28490231861245],[5.298469113870006,52.284866133613626],[5.298524815491548,52.28483808870557],[5.298613759701173,52.28479293804498],[5.298676581024158,52.28475141680722],[5.298721294934891,52.284721395280435],[5.298741947455527,52.28469753931846],[5.298770874765275,52.284661610033005],[5.298879336989162,52.28458051386612],[5.298944714230382,52.28452832596367],[5.299032398601344,52.28441576612444],[5.299171057468081,52.2842414535244],[5.299284221347412,52.28410138303369],[5.299445581718625,52.283903206571736],[5.299573627078311,52.28376623860001],[5.299692510758937,52.283630108562676],[5.299793714149719,52.28351194080299],[5.299861879298009,52.28343419335299],[5.300512955225845,52.28268335185104],[5.300767722717544,52.28237401876477],[5.301026847134128,52.28205289638599],[5.301354131443536,52.28165964241334],[5.30165958568836,52.281299230875106],[5.301822983423054,52.28110526778938],[5.301891848750643,52.28101011041152],[5.301943082109088,52.28092419765957],[5.302019819399614,52.28078129406774],[5.302050640359119,52.280710250260384],[5.302071192861854,52.28062179881903],[5.302094746137154,52.28051199468435],[5.302111773476229,52.28047380907024],[5.302152464238127,52.2803831161592],[5.302238589361416,52.280249764122544],[5.30236119997444,52.280063356631125],[5.302489983957106,52.27988959915942],[5.302580188994066,52.279775070088775],[5.302654772162701,52.27968412258808],[5.302733460935324,52.27959935253856],[5.30283875697788,52.279492985900234],[5.303002301468434,52.2793391873997],[5.303186934998992,52.27916770678909],[5.303390362222253,52.27898331482932],[5.303579587118933,52.27880763058604],[5.303758003138651,52.27865187320942],[5.303898565072124,52.278537378581],[5.304038425005669,52.27842962408985],[5.304164075530134,52.27833506244825],[5.304310120872224,52.27822563126305],[5.304543492501475,52.278063448959976],[5.305272054321692,52.27755222065179],[5.305120142087483,52.27749228411004],[5.305094053665719,52.27747990789023],[5.305091353454149,52.27745828152942],[5.305095030086984,52.27745098603836],[5.305074665744889,52.27744141795581],[5.305060487960999,52.27743017345471],[5.304966889699718,52.27741241164676],[5.304935757845381,52.2774095858511],[5.304921866187188,52.27741005254995],[5.304911022493717,52.27741041351239],[5.304883092864674,52.277411229960435],[5.304808670244919,52.27741988731863],[5.304690035733208,52.27743890365417],[5.304548756327088,52.27745341020052],[5.304324079780242,52.277488080643906],[5.304103783552804,52.27751516808618],[5.303949219958712,52.27752629419306],[5.303837737632839,52.27752059843173],[5.303783018452424,52.27752365167908],[5.303739268388592,52.2775298044133],[5.303611038837686,52.2775392589412],[5.303490572423433,52.27755799415987],[5.303286978283106,52.27759352238008],[5.3029922275358,52.277637406968246],[5.302908878490929,52.277647180248806],[5.302809735006421,52.27764851172087],[5.302704868401733,52.27765433289327],[5.302395492408151,52.277690907516316],[5.301994271230452,52.27774314381149],[5.301505588987058,52.2777939044074],[5.300301001799394,52.277946384218744],[5.299286274940051,52.27807146344251],[5.299171309015755,52.278085695487675],[5.29875246581686,52.27813144549486],[5.298426136583336,52.27817193369001],[5.298336808346414,52.2781884310759],[5.29813436355608,52.278209912442094],[5.297755356245315,52.278257369580466],[5.297354136406988,52.2783036941714],[5.29728427520589,52.27831599927265],[5.297130614948168,52.27833469380849],[5.296603225198603,52.27839103100497],[5.29634421250222,52.278422289600236],[5.296144057314229,52.27844095615376],[5.295344827301391,52.27852964990938],[5.294703405512055,52.27859150743974],[5.293845082004899,52.2786832366537],[5.293591798602563,52.278712804040936],[5.293543930203036,52.278718104898],[5.292441476992953,52.27883856206231],[5.291958046371643,52.278889574994395],[5.291857738203389,52.27889960545734],[5.291612709243844,52.278925804850786],[5.291353228880626,52.27895340311169],[5.291072694029101,52.2789866010428],[5.290922231744584,52.27900136246466],[5.290844830368426,52.27900944238069],[5.290777028106336,52.27902371362485],[5.290607989627464,52.27905672258947],[5.290503990633096,52.27907910702524],[5.290454516339624,52.2790880543391],[5.290395425221728,52.27909895309495],[5.290259852487622,52.27911261136873],[5.289734940726537,52.279173404827255],[5.289681343676774,52.2791845953565],[5.289606431342778,52.279206724338444],[5.289552816493254,52.27921931688107],[5.289495324025154,52.27922938064624],[5.289377391989806,52.27924360970478],[5.289150649929878,52.279275157816535],[5.288991945269744,52.27929244449516],[5.288756092780393,52.279302072199286],[5.288691973233506,52.279307078956876],[5.288332604762526,52.27936407617982],[5.288235032065097,52.27938197011911],[5.288148917943401,52.2793934113857],[5.287432577280107,52.279463031019105],[5.287369597194483,52.279469431118265],[5.287306385295082,52.27948117868924],[5.287021349147826,52.27957137239491],[5.286968656273155,52.27958397353301],[5.286854385869511,52.27959819418655],[5.286147255011336,52.2796428189522],[5.286061625354463,52.279640498892924],[5.286022939644167,52.27963428227566],[5.285967566240141,52.2796204747179],[5.28592636272351,52.27961313244928],[5.285887231687015,52.279609449947195],[5.285776635145305,52.27961244702488],[5.285427170510723,52.279641914473615],[5.285196088898712,52.27966587460987],[5.284951259345893,52.279697399079254],[5.284743315688434,52.279721090705785],[5.284629476043212,52.27973868896883],[5.284616195455721,52.27974064577444],[5.284356468042396,52.27977609272772],[5.284229359847503,52.27979029968991],[5.284139317174156,52.27982055493014],[5.284063008283776,52.27984295780206],[5.284012377147197,52.2798569615048],[5.283961541823385,52.27986421522063],[5.283891947352546,52.27985994824743],[5.283801732159432,52.27985705632211],[5.283688403804519,52.27985611243309],[5.283607568449759,52.27985885488174],[5.283288525140521,52.279905482231634],[5.283062233604928,52.27993532936576],[5.282761536415649,52.27996905605953],[5.282262494434279,52.28002478804956],[5.281719240002445,52.280087219343635],[5.281236450892633,52.28014716774207],[5.280792351422693,52.28020491100829],[5.280558970354572,52.28023223041187],[5.280388116995848,52.28025313462494],[5.280052835030038,52.280285978369115],[5.279546676355213,52.28034281591787],[5.279079712996716,52.280388452441635],[5.278802359249564,52.280419655842955],[5.278562135724258,52.280439658011616],[5.2785351094809,52.28044160151766],[5.278296018185823,52.28045991449122],[5.278283192754912,52.2804613047769],[5.27822869717252,52.280466593333614],[5.278218158399581,52.280467707097635],[5.277884260332188,52.280496609338385],[5.277523758632651,52.280540091053744],[5.276975468497948,52.28060109379401],[5.276943850608198,52.28060499198601],[5.276900342921808,52.28061113501153],[5.276862532064586,52.28061868541778],[5.276810084172599,52.28062537731546],[5.276768180685746,52.28062870862826],[5.276753758588492,52.280629818638666],[5.276692149271322,52.28063172046182],[5.276614757121617,52.28063389511614],[5.276524550575137,52.28063297494658],[5.276441682118809,52.280627558721065],[5.276366136405431,52.28061793404788],[5.276288785523149,52.28060354413687],[5.276229979382195,52.2805919667473],[5.276141414327205,52.2805733509793],[5.275978008012471,52.28053892732492],[5.275837728231706,52.280509306678375],[5.275824458965201,52.280506490020926],[5.274817307982202,52.2802965732696],[5.274589839198396,52.28025000733697],[5.274516606499752,52.28023589880206],[5.274243598734772,52.280181990800216],[5.274045158900459,52.28015315735169],[5.273933463692927,52.280137879224014],[5.273854023978839,52.28013303069115],[5.273786716047565,52.28012875096952],[5.273535346035524,52.280117841402294],[5.273237484170133,52.28011109280464],[5.272835206147858,52.28010789163107],[5.272476850422331,52.2801140070102],[5.272023480770555,52.28012564621567],[5.271746859776711,52.28013857969044],[5.271461072101898,52.28015458634712],[5.271103116628228,52.28018681630701],[5.270834011488796,52.28021688563802],[5.270506483236177,52.28025757419666],[5.270211918506135,52.28030081100002],[5.269974385416481,52.28033849522377],[5.269959726561082,52.28034044901781],[5.268815923636155,52.28047552856156],[5.268795533599218,52.28047803371792],[5.268718127128464,52.28048554190117],[5.26863980417225,52.28049052356253],[5.268519592958596,52.28049292863525],[5.26839963343438,52.28048887165791],[5.268313327105017,52.28048176557536],[5.268227953738049,52.280471011347814],[5.268143732438475,52.28045687882959],[5.268031372316932,52.28043317294906],[5.267922455582241,52.28040413171798],[5.267846279419998,52.280379060035365],[5.267773322286772,52.28035034253177],[5.267637938703391,52.280289538639465],[5.267570952386375,52.280252953786906],[5.267508780858026,52.28021329097253],[5.267391300855172,52.28013762121231],[5.267334367615642,52.280106385114806],[5.267273998714637,52.28007767106166],[5.267210648385205,52.280051488496056],[5.267126478935547,52.2800185439753],[5.267040016088179,52.27998840123914],[5.26694734731015,52.27996106529496],[5.266851487458756,52.279937932292874],[5.266751251058814,52.27991845276691],[5.266649407632412,52.27990262053924],[5.266525799998029,52.279888168121],[5.266401049638455,52.279879053121526],[5.266295956866223,52.27987810994915],[5.26619106865849,52.27988277523907],[5.266117788076216,52.279887472777176],[5.266044969494343,52.27989470528406],[5.265257542981208,52.279986578099155],[5.265207622976313,52.279990175673625],[5.265157695996406,52.27999096904655],[5.265114895276319,52.27999008005558],[5.265072756269983,52.279993694587155],[5.265031968495894,52.28000151675845],[5.265019371839245,52.280004874155274],[5.26500654151306,52.28000794370202],[5.264975386484616,52.28001381647275],[5.264944000100557,52.28001855654179],[5.264903468329009,52.28002385337966],[5.264862469955076,52.2800283048743],[5.264684061910364,52.28004440609525],[5.264642612327348,52.28004773357968],[5.264609179778262,52.280050512114634],[5.264525362063821,52.28005547637012],[5.264483596045868,52.28000347497494],[5.264458043697574,52.27997030171036],[5.264440944784275,52.2799483808653],[5.264415838232345,52.2799182998345],[5.264399174329872,52.279898060140916],[5.264354679263148,52.27984211923863],[5.264264097647366,52.279728276402295],[5.264135419223479,52.279566084805474],[5.264086821183176,52.27950508842423],[5.26405875524954,52.279469665521],[5.264036609092646,52.27944492620197],[5.263955842705397,52.279343172851256],[5.263845404679735,52.2792040264997],[5.263735201024369,52.27906515890514],[5.263548351694146,52.27882960196191],[5.263429687407277,52.27868819967684],[5.26330074249704,52.27853442836646],[5.263186654441755,52.278397245868334],[5.263173427292397,52.278379822758616],[5.263106592340181,52.27829127740326],[5.262962878051927,52.27810126064997],[5.262860639316855,52.277982344360325],[5.262832367535865,52.277937375959546],[5.262787196869107,52.277883402048346],[5.262722385755657,52.277805257407906],[5.262673568920799,52.27774004494272],[5.262657145798317,52.27771811555242],[5.262527366811349,52.27754496492229],[5.262433617868141,52.27741960399564],[5.262354379581181,52.27734509295656],[5.262320386311466,52.277302922565944],[5.262249887555262,52.2772157839146],[5.262147206748162,52.27708872362567],[5.26196994037674,52.2768694599991],[5.261900130093143,52.27678287909947],[5.261808869183913,52.276670148067176],[5.261773948272991,52.27662995383337],[5.261726933226777,52.27657625616685],[5.26171300824255,52.27656248116989],[5.261633342240024,52.27647953867846],[5.261597052652577,52.276441580886036],[5.261544348562496,52.276373838254045],[5.261526782805548,52.27635219509472],[5.261452611362938,52.27626953693262],[5.261435739123477,52.2762462048008],[5.261263300287518,52.27601655537494],[5.261249833807577,52.27600137872187],[5.261172689854019,52.275918438594054],[5.261119296334115,52.27585659098969],[5.261104244800744,52.27583719737953],[5.261065686044808,52.27578855956248],[5.261045831042072,52.27576831597667],[5.260974413340078,52.27568145417605],[5.260895009106819,52.27558475121574],[5.260772048812817,52.2754349200624],[5.260626938112797,52.27525838047551],[5.260488696332556,52.27508325014715],[5.260243939922482,52.274773189258596],[5.260190085004302,52.27470966001587],[5.260122806502985,52.27462139104749],[5.260076956833778,52.27456124075192],[5.259960181744843,52.27440747873303],[5.259854806226464,52.27426917879631],[5.259792098123516,52.27418681949855],[5.259761985123107,52.27414718706543],[5.259670729401103,52.27403642263998],[5.259425260368486,52.27373871736938],[5.259331235692088,52.27363357601133],[5.259278559484931,52.273563585421506],[5.259188474810866,52.273443834128834],[5.259080566149801,52.27331171430272],[5.258995479717902,52.27320685197763],[5.258982938697041,52.27319139743953],[5.258903777657055,52.27309469335301],[5.25889031773531,52.27307782673204],[5.258843774630884,52.27302047936349],[5.258797235775426,52.27296678100609],[5.258744300850759,52.27290577763519],[5.258696155479472,52.27285038779601],[5.258582531718917,52.27271966338019],[5.25854601579812,52.272680868513206],[5.258514536709478,52.27264319359322],[5.258460688476132,52.27257909731234],[5.258385859087425,52.27248998323856],[5.258336814361428,52.2724317880913],[5.258248976139266,52.272327209819906],[5.258200837686799,52.27226986045022],[5.258130579620881,52.27218608991538],[5.258053926728091,52.272094717709734],[5.257973842555761,52.27199942304648],[5.25794738151891,52.2719696177309],[5.257924102985129,52.27194375252054],[5.257865017170603,52.2718726308036],[5.257819625918907,52.27181808845369],[5.257690271833392,52.2716623510168],[5.257630514477801,52.27159066221503],[5.257554316973866,52.2714995777802],[5.257450978203768,52.2713761615602],[5.257425881189137,52.27134608798702],[5.257402176961224,52.27131066822447],[5.257383246254843,52.27128620976237],[5.257325897449418,52.27117267647495],[5.257272287118157,52.271108579893266],[5.257238718227359,52.27107989906477],[5.257153368251084,52.27098795945977],[5.257116637707145,52.27094831905193],[5.257108889551358,52.27093258196852],[5.257064134575608,52.27089658174823],[5.257057631677238,52.27085079098983],[5.257021104668377,52.27081676811976],[5.256949006811116,52.27073242860361],[5.256910919236546,52.27068604582197],[5.256876927980962,52.270646686973606],[5.256806663636286,52.27056178315865],[5.256692625109054,52.270421502423154],[5.256667984150576,52.270391141577726],[5.25664769257038,52.27036640287131],[5.256615987249238,52.27032704646739],[5.256598426276896,52.27030540255262],[5.256529759044941,52.27022078793767],[5.256433283059375,52.27010215086936],[5.256344325213989,52.26999279739529],[5.25630827568625,52.26995624926789],[5.2562074565708,52.269830309148055],[5.256096624397217,52.26969199968302],[5.256071531762105,52.26966107197951],[5.255997630303282,52.269568586958],[5.255898650587056,52.26944545278307],[5.255818100116436,52.26935745414336],[5.25578436014895,52.269313044130556],[5.255751508679354,52.269275366922834],[5.255711822873894,52.26922533293617],[5.25562746480237,52.26911232599733],[5.255468088468885,52.26889896810127],[5.255371415363418,52.26876966144726],[5.255352257101319,52.2687485817889],[5.255319418897441,52.268706689213985],[5.255281325936362,52.268658337562364],[5.255242751112865,52.268624311842906],[5.255215390926812,52.26858777306201],[5.255164537929348,52.26851974192715],[5.255146297326322,52.26849557147033],[5.255076224078933,52.2684275188427],[5.255045207559324,52.26838900761918],[5.254993903044197,52.268325191161274],[5.254982961633329,52.268309728982075],[5.254958569068974,52.26827544039452],[5.254935769193139,52.26824255567212],[5.254903140277028,52.2682093723468],[5.254877146850395,52.26817648404165],[5.25482516886582,52.26810283414878],[5.254762232661341,52.26802440845509],[5.254744207224983,52.26800191888499],[5.254693356066776,52.26793866003973],[5.254673963261389,52.267917858625395],[5.254648436857249,52.26788075553302],[5.254609226911626,52.267824259496926],[5.25456160026749,52.26775567446613],[5.254529683510834,52.26770985504591],[5.254512108706336,52.267693540533436],[5.254488836897392,52.267666838768505],[5.254451440544966,52.267621291800246],[5.25442018821767,52.26758362499063],[5.254375945700574,52.26752992740585],[5.254334665379393,52.267480169768334],[5.254304553410259,52.26744334006904],[5.254199194749569,52.26731570337009],[5.254121878152895,52.26722153257891],[5.254067593730182,52.26715574403191],[5.254047976413497,52.26713185046982],[5.254025387001895,52.26710738733016],[5.253987064467805,52.267063250244966],[5.253954684097391,52.267025860658066],[5.253894710126339,52.266947428832474],[5.25384770725717,52.266896253492575],[5.253825132697587,52.26687179931787],[5.253795242487842,52.266839463613366],[5.253764432787627,52.2668060033942],[5.2537060641229,52.26672982021938],[5.253691475564734,52.26670958130005],[5.253554686556309,52.266527146116815],[5.253525750017419,52.26648470018963],[5.253442341275536,52.266361590455304],[5.253377470840741,52.266319103859246],[5.253334444379247,52.26624181437573],[5.253250904001042,52.26616279830179],[5.253234254546,52.266141154899636],[5.253205521397372,52.2661043264709],[5.253179313262874,52.26607059268479],[5.253112727949472,52.265984854895315],[5.253091072665953,52.26595702221952],[5.253002379243394,52.265843172551385],[5.252795577894733,52.26557695400151],[5.252770238510759,52.2655516516277],[5.252709821524235,52.265475744233434],[5.252670147631131,52.265424019498795],[5.252606762992717,52.26534137684179],[5.252531296213375,52.26524326144683],[5.252490951424206,52.265190700023894],[5.252426880677926,52.26510749025604],[5.252404541164609,52.26507853319946],[5.252345256789093,52.265001503431264],[5.252269079859794,52.26491575421315],[5.252199267872245,52.26483731027066],[5.252140267065001,52.26474428250188],[5.252112678480544,52.26471222760497],[5.252054997050342,52.2646382913058],[5.251935021631686,52.26449968871725],[5.251870710143852,52.26442406403236],[5.251774514727229,52.26429363138762],[5.251727532463564,52.264237404075345],[5.251676476005857,52.26416741181052],[5.25165093119229,52.26413788470462],[5.251595095966723,52.26405946539299],[5.251523635089165,52.263998994674644],[5.251472121705877,52.26393012526437],[5.251437814762012,52.26384862979339],[5.251384690382524,52.26377975849411],[5.251361900696319,52.2637499558655],[5.251306499992594,52.26367827773333],[5.251288947681935,52.26365550055011],[5.251271612505775,52.263633577451316],[5.251207560078297,52.26355064563628],[5.251120017969829,52.26343707444062],[5.25101719818869,52.26330438659057],[5.250999179140177,52.26328105158376],[5.25097205580298,52.26324591414256],[5.250926710150438,52.263182102709784],[5.25088611323187,52.263131787366646],[5.250821365203889,52.26305165871472],[5.250737456919123,52.26294792402833],[5.250700973953035,52.2629032217304],[5.250577620326056,52.26275141078519],[5.250523582670634,52.26268506359016],[5.250474783908465,52.262625184628476],[5.250443535005687,52.26258864020125],[5.250410713724067,52.26254422066391],[5.25037949683454,52.262502058901994],[5.250314991924456,52.26241491079702],[5.250261192056027,52.262342946398],[5.250226729592852,52.262313139016534],[5.250197097558848,52.26227490669358],[5.250147172736071,52.26220996617427],[5.250115250669462,52.26216863938491],[5.250090171606685,52.262136029664354],[5.24997383714603,52.262013157822544],[5.249884086962722,52.26194789236359],[5.249796701705082,52.261861562254616],[5.249751549378148,52.26180730457375],[5.249725664946699,52.26174154694923],[5.249528704531995,52.26148853691487],[5.24942987697648,52.26139883178368],[5.249337545386114,52.2612832853154],[5.249303578444628,52.26124055382341],[5.249279418078916,52.261209625708],[5.249244302794389,52.2611640886755],[5.249192104313765,52.26109634090159],[5.249106629612741,52.26098529612931],[5.248988782939897,52.260832366419756],[5.248883016969704,52.26069490069011],[5.248831489896848,52.26062826801862],[5.248705445739035,52.26046493856346],[5.248613131948915,52.260344897641495],[5.248552606034641,52.26030382450788],[5.248460963036107,52.26018968022671],[5.248350397750764,52.2600516511306],[5.248282789922333,52.25993331964975],[5.248267295312626,52.25991392381778],[5.248226256468191,52.25986163868429],[5.24812322685422,52.25973119491027],[5.248080531345425,52.25969827642438],[5.248075785930348,52.259679459437166],[5.248002986411276,52.2596105544263],[5.247947821851239,52.259541679118286],[5.247905931837749,52.2594714173232],[5.24784822113787,52.259411239131886],[5.247831164968685,52.25937611279948],[5.247804461886133,52.25935333328376],[5.247796040902196,52.259338996851],[5.247720562341683,52.25925127709589],[5.247700738679965,52.25922064136656],[5.247659748363808,52.25915795723276],[5.247605463948474,52.25909834919019],[5.247561248653698,52.259041278572774],[5.247489679380457,52.25894963562246],[5.247414209135386,52.25885966873078],[5.247342154157677,52.258773633484125],[5.2473286923647,52.258760135906996],[5.247308398039741,52.258739610797214],[5.247262609409859,52.25867074624413],[5.247245037308911,52.25865555409313],[5.247192603406402,52.258590052064264],[5.247089121314505,52.25846100890997],[5.247076577498902,52.2584444205963],[5.247046265898526,52.25840506317455],[5.247010484034595,52.258358679810165],[5.246970349602681,52.25831313612546],[5.246958274557863,52.25829654835442],[5.246938453628895,52.25826534626439],[5.246925480241235,52.25824567461801],[5.246892235529277,52.25819366787821],[5.246797810426162,52.258091319903215],[5.246692068366714,52.25795048174422],[5.24663838522818,52.25784509023009],[5.246598942679968,52.257798702385486],[5.246551518897277,52.25774275103246],[5.246471716873881,52.257648284476886],[5.246432493021659,52.257606956952515],[5.246429604178353,52.25758026880918],[5.246404983550941,52.257547937440904],[5.246339778128139,52.257473989281905],[5.246306255876999,52.25743603891951],[5.246256058934656,52.257386546351114],[5.246245141023154,52.25736546599473],[5.246224854063137,52.257342972378446],[5.246169675979387,52.25727549828353],[5.246144001790778,52.25721985131135],[5.24607167792959,52.25715095462821],[5.246055480477312,52.2571321148981],[5.245989813783734,52.25705620665358],[5.245959039377333,52.257020218804875],[5.245918932199435,52.25696680149002],[5.245881441309566,52.256882783906974],[5.245856108153665,52.256858315872925],[5.245764945656328,52.256740242331624],[5.245693584223869,52.25665926698805],[5.245624227934806,52.25659262051697],[5.245606451449135,52.25656844009337],[5.245570210511493,52.25652458129043],[5.245434344953346,52.256357587403656],[5.245411347485804,52.256321887348555],[5.245359839936915,52.25625694282607],[5.245318587305769,52.256204935006245],[5.24528873995946,52.25616333072705],[5.245249545970198,52.256108790798514],[5.245207805554559,52.256067459833524],[5.245174529544427,52.2560264086505],[5.245103632979225,52.255938135420124],[5.245066067466173,52.25587825864391],[5.245012339854014,52.255793376402835],[5.244949576429331,52.25574049773758],[5.244922451404692,52.25570423537627],[5.244838797892639,52.25560273459998],[5.244821699766427,52.255581934274545],[5.244800735883469,52.255556347794155],[5.244785913524613,52.25553835439025],[5.244770638949339,52.25551980319753],[5.244676947785835,52.255406498248654],[5.244643217830409,52.25536573397209],[5.244632361498292,52.255357838604525],[5.244568839289378,52.255276979859254],[5.244474475533199,52.25515908117727],[5.24438444819498,52.25504547482405],[5.244299967555302,52.254942354852645],[5.244259789571776,52.25488938625424],[5.244214390133856,52.25483429021341],[5.244188188465531,52.25480272940193],[5.244146278233316,52.254746559018926],[5.244138679471517,52.25473677112304],[5.244104346590401,52.254692527686366],[5.244082264520334,52.254664243386514],[5.244081155758351,52.25466291185332],[5.244064174324661,52.25464248005428],[5.243980295070378,52.25453498352375],[5.244765695394307,52.254464236398576],[5.244859790817432,52.254455056307044],[5.245057386703518,52.25443577247288],[5.245093150202413,52.25443119572683],[5.245059413395564,52.254383510961816],[5.245006640001299,52.25431224632835],[5.244991058867522,52.25429348807209],[5.244946925753083,52.25423615587189],[5.244888082628473,52.25415791835239],[5.244855193188373,52.25411559126363],[5.244808467317542,52.25405396871731],[5.244772986652464,52.25400681204642],[5.244759164961153,52.25398748065899],[5.244734495592925,52.25395307268212],[5.24469801991965,52.25390569908245],[5.244643939698316,52.25383586176252],[5.24457210064686,52.25374148433351],[5.244477215119227,52.253618327135555],[5.244384122871876,52.25349784139491],[5.244311383771873,52.2534013326092],[5.244226257740299,52.25329042835116],[5.244126953871013,52.253161944751284],[5.244008127020006,52.25300678865227],[5.243890189142967,52.25285324231906],[5.243810364062497,52.25274766493927],[5.243728809539384,52.25264263366016],[5.243637497675541,52.25252534911696],[5.243589376242501,52.25246156730531],[5.243480525155224,52.252320299904405],[5.243425669167555,52.252246991775465],[5.243346421167388,52.25214478518945],[5.243161830490785,52.25190398448263],[5.243102619375237,52.25182372333493],[5.243048620796303,52.25175736362615],[5.243023367692643,52.25172311634434],[5.243008829088164,52.25170403552681],[5.242914525387961,52.25158024858435],[5.242879702272517,52.2515347638503],[5.242821360436147,52.25145770326795],[5.242729479519934,52.2513367502816],[5.242707298644392,52.25130810607287],[5.242623044610344,52.25119720167527],[5.24256010540772,52.25111563245712],[5.242477642922613,52.251007929794426],[5.242388080397067,52.25089062840945],[5.242297663734061,52.250774943708926],[5.242272832579346,52.25074188316436],[5.242214327362121,52.25066617023714],[5.242107934830567,52.250528086208085],[5.242015697182016,52.250405442500714],[5.24193498936476,52.25029934142316],[5.2418462971929,52.25018096214405],[5.241837532440491,52.25016987841615],[5.241802867182746,52.250126056285936],[5.241739888709053,52.250043983247664],[5.241643283378413,52.249918655503706],[5.241598066690252,52.24985946918059],[5.241538627666952,52.24977894628756],[5.24148985389454,52.249714965048454],[5.24143667358218,52.24964618786557],[5.241387877815419,52.24958006746152],[5.241355959143831,52.24953847755271],[5.241307185897306,52.249474496235564],[5.241288945372655,52.24945497921659],[5.241272760250409,52.24943384692869],[5.241237334387084,52.249385637645545],[5.241156945357793,52.2492816934764],[5.241106791983482,52.24921899562275],[5.241028147861393,52.24911452323808],[5.240957248698032,52.24902397347605],[5.240893286066687,52.24893931925411],[5.240814610725746,52.248840194418065],[5.240770736021955,52.24878771431788],[5.240740592326652,52.24874997320802],[5.240719674136272,52.24872108750359],[5.240676091716268,52.24866440144257],[5.240603761342711,52.248568672718555],[5.240481764837763,52.2484141111731],[5.240425116797927,52.2483365661165],[5.240345812777075,52.24823334174197],[5.240246463029829,52.24810338068623],[5.24020277712133,52.24804735941114],[5.240188079081433,52.24802851171591],[5.240133175110931,52.24795523788242],[5.240073104596938,52.2478768435408],[5.240071296644814,52.24787448648991],[5.240008548674872,52.24779105561909],[5.239940583492301,52.24770014037335],[5.239883933796547,52.247623655602915],[5.239831652390417,52.247554663079434],[5.239769780351202,52.247472302715025],[5.239720977208666,52.24740545357128],[5.239643420725294,52.24730170060412],[5.239582416851624,52.24721827167291],[5.23957348179137,52.24720590230289],[5.23951096576423,52.247119325717506],[5.239466520743214,52.24706317738123],[5.239439511872475,52.247025736438665],[5.239382869652278,52.24695192978907],[5.239363693873861,52.24692358527899],[5.239325355687058,52.246871713723614],[5.239300948127995,52.24683587582795],[5.239227758006564,52.24674067542872],[5.239117964055787,52.246596283890504],[5.239023853335105,52.2464738061668],[5.238942809429675,52.24636737897407],[5.238874834354015,52.24628074126584],[5.238761557431584,52.246132057835],[5.238711886242703,52.24606734626114],[5.238674417427903,52.24601867523203],[5.23862649110505,52.24595770473533],[5.238559397577663,52.245870537665525],[5.238436533820159,52.24569939034379],[5.238427423495907,52.24568707458937],[5.238407745301563,52.245660445953646],[5.238393839369739,52.24564163497335],[5.238348523753704,52.24557958910845],[5.238320649229196,52.245543225344285],[5.238262262610639,52.245466746562094],[5.238200279322531,52.2453799811782],[5.238190806201329,52.24536673021673],[5.23810978271797,52.245259772173],[5.238049648748816,52.245180612714485],[5.238004349010501,52.24512285391098],[5.237933767174817,52.24502872551376],[5.237892820309098,52.244974180803695],[5.237879905586172,52.24495682703492],[5.237842851332331,52.2449073383643],[5.237770816322072,52.24481012521521],[5.237660158075903,52.24466432008601],[5.237553423006079,52.24452334626118],[5.237488875742235,52.24443787148496],[5.237409815400169,52.24433158052241],[5.23736882707048,52.244276685045925],[5.237336030604638,52.244232774039375],[5.237214815664839,52.24407040855698],[5.237161231682743,52.24399937291661],[5.237097994628132,52.243916586931775],[5.237006647175399,52.24379428180649],[5.236947821888191,52.24371897919071],[5.236842427656104,52.243581179092196],[5.236737028448347,52.24344070951249],[5.236689157335909,52.243378003620805],[5.236634274789809,52.24330612122479],[5.236597394191372,52.24325805243972],[5.236525373738355,52.2431624563197],[5.236443678695137,52.243052961667125],[5.236326000947733,52.24289860787254],[5.23623379203997,52.242776840291974],[5.236180746417729,52.24270771927631],[5.236178457851966,52.242704732403276],[5.236073968871046,52.24256908083011],[5.236015132137972,52.242493777715445],[5.235954529331893,52.242412594288595],[5.235840385562337,52.2422662526413],[5.235774538074009,52.24218187173479],[5.235716568015024,52.24210603030684],[5.235627891110759,52.241992814158216],[5.235532173874303,52.24186623303443],[5.235464574287896,52.24178078015192],[5.235387291467876,52.24167983779955],[5.235284555137632,52.24154684813839],[5.235218698772959,52.24146139734886],[5.235153711959177,52.24137433882221],[5.235108683842747,52.2413164443933],[5.235084340431195,52.241285144507934],[5.235059774496228,52.241254707160294],[5.235021116554364,52.2412007575509],[5.234970195046438,52.24113667187265],[5.234943837557692,52.2410992846203],[5.234866555287679,52.240998872193714],[5.234783147985916,52.24089152222164],[5.234697103896405,52.24078043884829],[5.234612800681947,52.24066987894883],[5.234606660750841,52.24066293243957],[5.234582959279913,52.24063249610425],[5.234562863749805,52.2406050753337],[5.23453991208735,52.24057374117672],[5.234510059835073,52.240535288750046],[5.234472318183888,52.24048775742944],[5.234464408635502,52.24047600015059],[5.234450559897975,52.24045854591787],[5.234432578960428,52.24043359051464],[5.234393822597603,52.24038315479557],[5.234361947223439,52.24034130232466],[5.234311980356145,52.24027690301152],[5.234299285468651,52.240260286118236],[5.234252557947745,52.24019909961442],[5.234214640122074,52.240151873565615],[5.234162122680467,52.24007998404353],[5.234131122490455,52.24003920218935],[5.234075137434127,52.239966759881646],[5.234015247671358,52.23988886587673],[5.233957981691553,52.23981437263168],[5.233832246074221,52.23964964286044],[5.233826095910301,52.239641491929596],[5.233824755131523,52.23963971060458],[5.233791774601266,52.23959598707567],[5.233736659967079,52.239521936912425],[5.233702203736247,52.239477402539386],[5.233661710566307,52.23942588577813],[5.2335936787402,52.23933627885162],[5.233545985979323,52.23927536043657],[5.233542852171643,52.239271347801704],[5.233503263486821,52.23921662351177],[5.233465350981707,52.239168327670136],[5.233397297921365,52.23908085969638],[5.233353387236755,52.239022912096544],[5.233291399084917,52.238938678573454],[5.233254367309544,52.23888984453914],[5.23317856364681,52.23879165287452],[5.233118266833704,52.23871383875529],[5.233051117417967,52.23862370237177],[5.23299344156512,52.2385459005907],[5.232898714678176,52.23842088241011],[5.232829827745164,52.2383296650905],[5.232775550529756,52.23825990273735],[5.232709240475447,52.238172975895175],[5.232625726652475,52.23806137296126],[5.232607662610245,52.23803562623155],[5.232580985587198,52.23799860650977],[5.232521552761586,52.237921332471124],[5.232466440407599,52.237847829948095],[5.232388076761538,52.23774586851139],[5.232355341421771,52.237704014349376],[5.232304500163942,52.23764015227416],[5.232278661540376,52.23760635121565],[5.232224424662599,52.23753391028355],[5.232152945808357,52.23743948050594],[5.232105578148443,52.23737884053296],[5.232043570711247,52.237297275680234],[5.231960065770662,52.237184072435944],[5.231956976421786,52.23717998791311],[5.231879363950835,52.23707738897592],[5.231811967255003,52.2369882222153],[5.231738764619733,52.23689324165403],[5.231691401836566,52.23683153196459],[5.231683184896867,52.23682016056206],[5.231666838426841,52.23679754369954],[5.231656115614207,52.236782708690846],[5.231596658290326,52.236709182052344],[5.231491568216489,52.236573417606536],[5.231437629300468,52.23650441003414],[5.231393365639875,52.23644838460073],[5.231352040041287,52.236393657267904],[5.231336065021829,52.2363737551668],[5.231332464798178,52.236369274489704],[5.231284831329123,52.236309937056184],[5.231233177512671,52.236240716692336],[5.23120024646354,52.23619684866832],[5.23107046090615,52.23602394955095],[5.231021745817459,52.235960161610684],[5.230950817809332,52.23586455439776],[5.230881967465796,52.23577351569691],[5.230803106838122,52.23566924263793],[5.230713097293024,52.23555086187477],[5.230647766040004,52.235462631887216],[5.230548450333876,52.23533080188704],[5.230455906314669,52.23520919992335],[5.230394817265157,52.23512628721236],[5.230391816003502,52.2351222117515],[5.230373065410442,52.23509675136344],[5.230359195478517,52.23507793045479],[5.230353687839628,52.23507058909092],[5.230309116716247,52.235011210370786],[5.230231896793665,52.23490737050579],[5.230087552856611,52.23471796727657],[5.229945813910276,52.234529106597115],[5.229924742918594,52.2345017645947],[5.229876174950686,52.23443870437005],[5.229823549154967,52.234368223774375],[5.229762406963597,52.23428858221611],[5.229705616042979,52.234212119120734],[5.229693683896458,52.23419604199593],[5.229645279168642,52.23413254148665],[5.229590926798168,52.234062049493964],[5.229527695987596,52.233977183102645],[5.229511159893313,52.233954979114834],[5.229498104228845,52.233937911810926],[5.229470404663539,52.23390170788168],[5.229461982176394,52.23389082138546],[5.229443927766295,52.233867482897075],[5.229429632983957,52.23384897588103],[5.229406750307435,52.233816697052596],[5.229368520501881,52.23376547837576],[5.229361789585361,52.23375643663292],[5.229278560237418,52.233647743659894],[5.229233585220989,52.233587483170176],[5.229217506485256,52.23356435400519],[5.229207032810467,52.23354988759739],[5.229193762332059,52.23353154370107],[5.22914449729598,52.233467502558675],[5.22906975923613,52.233371179033945],[5.229032538701769,52.23332451841749],[5.228985597790486,52.233265675274446],[5.228933849247653,52.23319627397692],[5.228765772864445,52.232974049725826],[5.228623078378763,52.23278946431024],[5.228549429312628,52.232692153242745],[5.228461793800923,52.23257638932998],[5.228332765730953,52.23240635520229],[5.228218482230889,52.232255934205035],[5.228188454565005,52.23221640133778],[5.228125282838646,52.23212876599287],[5.228088417010354,52.232077620621105],[5.22802307951708,52.23198991938933],[5.22800730010151,52.231969387935024],[5.22794241954733,52.23188498580233],[5.227903860334898,52.231832669672286],[5.227832991526466,52.23173649434982],[5.227753249544732,52.23162889248235],[5.227679453158705,52.23152882138824],[5.227668380321033,52.23151435402925],[5.227628095644831,52.231461720902885],[5.227590844344547,52.23141225557096],[5.227558012364371,52.23136724516648],[5.227540955487004,52.23134386278248],[5.227490168130378,52.23127707757828],[5.227387822721722,52.231138131341815],[5.227353928453512,52.23109557311751],[5.227236326139149,52.2309377676378],[5.227100846976756,52.230761090362044],[5.227032288525812,52.230670597970274],[5.227006710073121,52.23063587930253],[5.227000155239343,52.23062698146284],[5.226930752116263,52.23053540932607],[5.226864594919998,52.230448973596474],[5.226852007457011,52.23043252678212],[5.226779226514937,52.23033611452161],[5.226754360270561,52.2303028977298],[5.226648077694645,52.230161078363906],[5.226581157687773,52.230075414385496],[5.226571107217731,52.23006176620021],[5.226505036564246,52.22997201387071],[5.226450787297444,52.2299041269795],[5.226393986443299,52.229833540244165],[5.226390928199088,52.22982923091598],[5.226358511158169,52.22978346574999],[5.226322104187776,52.22973605936085],[5.226300127625496,52.22970537198041],[5.226226487432662,52.22960841892529],[5.226200785623123,52.22957577609478],[5.226196851698531,52.22957077350623],[5.226183056942222,52.22955236562729],[5.226099146348458,52.22944208753077],[5.225991341225638,52.22930149680503],[5.225937865370883,52.22923065372841],[5.225900429680414,52.22918059439161],[5.225858678791692,52.22912577459313],[5.225846077794936,52.22910922878235],[5.22578726842078,52.22903200598586],[5.225731293619601,52.228960251629026],[5.225681583704239,52.22889653193355],[5.225641877277084,52.228843152900666],[5.225591140733219,52.228776034363975],[5.22553264873816,52.22870033081181],[5.225469881034506,52.22861710755652],[5.225394179577711,52.22852045672595],[5.225358072650743,52.22847160339723],[5.225328553181718,52.22843459604608],[5.225256446235511,52.22833979254994],[5.225243802068981,52.228323165722564],[5.225235804626177,52.22831269293433],[5.225136893249956,52.22818310569296],[5.224987226569007,52.227988188109734],[5.22489140124649,52.227859611525176],[5.224882035776063,52.227847042669595],[5.224811041227187,52.22775677028271],[5.2247974484534,52.22773947700297],[5.224724381631443,52.227643611285394],[5.22464596004532,52.22753921769561],[5.224576460312846,52.22744868657014],[5.224531939664663,52.22739170539296],[5.224496840958319,52.22734783243397],[5.224482096272117,52.22732941405233],[5.224417909308455,52.22724312341008],[5.224329672987335,52.227125414097664],[5.224284372087499,52.22706584325315],[5.224267300521977,52.227043395088934],[5.224215656684335,52.22697736221234],[5.224204292493428,52.22696313678419],[5.224194576928125,52.226950351681005],[5.224135682260099,52.226873999728305],[5.22408643586723,52.226808859895094],[5.224081159066786,52.22680299254843],[5.22407763668356,52.22679764891666],[5.224072365772929,52.226790172756125],[5.224050661580199,52.22676186708872],[5.224007297086747,52.226705282765515],[5.223924650928258,52.22659637095259],[5.223835852297306,52.22648104225343],[5.223793664106277,52.22642711987199],[5.223758499210367,52.22638174562522],[5.223717455145369,52.22632718666129],[5.223693422983618,52.22629524662206],[5.223587046207492,52.22615643517312],[5.223545574987173,52.22610272939956],[5.223507920454937,52.22605392726439],[5.223472418762585,52.22600875918252],[5.223442875332814,52.225971176086006],[5.223388797416491,52.225899081661936],[5.223373111461838,52.22587818119012],[5.223371480286993,52.22587599488626],[5.223361969701376,52.2258633178497],[5.223279324731878,52.22575493584929],[5.223167667265153,52.22560810852492],[5.223058641870836,52.22546609323572],[5.223026105073752,52.225422843539334],[5.222979541904237,52.22536519381571],[5.222932042517892,52.225299507649304],[5.222911822728643,52.225273882200604],[5.222901273743932,52.225261077852466],[5.222983141314433,52.22525818068983],[5.223132079648257,52.22525243756052],[5.223321385214414,52.22524606713882],[5.22332918693672,52.22524580831964],[5.22360131071864,52.22523668511262],[5.223616328670102,52.225236184602146],[5.223766993840151,52.225230443061896],[5.223927186129908,52.22522486728219],[5.224083148158401,52.22521943824105],[5.224347908456322,52.225210716592926],[5.224536030197927,52.22520379433568],[5.22470935122757,52.22519799288912],[5.224730268276815,52.22519722172307],[5.22453879351929,52.22477537509701],[5.224524861580694,52.22474702627368],[5.224436040531684,52.22456626652454],[5.224325821318145,52.2243339949056],[5.22413010483618,52.22392153398665],[5.223464959674468,52.22250073412358],[5.223451044578716,52.222468178876035],[5.223191696246204,52.22186146380751],[5.222922570283309,52.221253215562506],[5.222921365678681,52.22125049057291],[5.22286910303713,52.22113236265125],[5.222849254257403,52.22108601172803],[5.222822615163532,52.22102380579633],[5.222795715083087,52.22096096135826],[5.22279471391337,52.22095863211512],[5.222779580732611,52.22092330682947],[5.222724402292616,52.22079446127442],[5.222587306389772,52.220474321274665],[5.222524979625333,52.220339731416686],[5.222491094195962,52.22026656811449],[5.222374152381588,52.220005811623295],[5.222289999120598,52.21981819887363],[5.222256065281417,52.219742509845204],[5.221901406070601,52.21894772276383],[5.221662113995078,52.218412943701736],[5.221516814843222,52.218091271872],[5.221462443967984,52.21797148653453],[5.221345850836643,52.21771463910735],[5.221337119647139,52.217717287257116],[5.221271696153356,52.217540018025865],[5.221261106175203,52.217511322942045],[5.221232334377568,52.21743749232823],[5.22122332832434,52.217419647794834],[5.221129685193277,52.21722885707245],[5.220912088771029,52.21670030840469],[5.22081841227616,52.216499612753026],[5.220767982123023,52.21639923736869],[5.220688063308022,52.21622158784098],[5.22066814585135,52.21617522742123],[5.220647131106501,52.216121001084204],[5.220623066419078,52.21606065870738],[5.220567178050231,52.215948860967735],[5.220552620598819,52.215917023458424],[5.220506408661553,52.215815898919026],[5.220495799088368,52.215792686316945],[5.220444563202768,52.215673408197304],[5.22042420269196,52.215624359739394],[5.220175819239325,52.21502611026053],[5.219919907600248,52.214404283387495],[5.219578462496322,52.21360417739112],[5.219527547428357,52.21347483288188],[5.21928757313767,52.21290732268254],[5.218960349371161,52.21212884167034],[5.218908537048866,52.21200555339365],[5.218616655957629,52.21132886414956],[5.218463005514439,52.210975772623286],[5.218265060814371,52.210520848049285],[5.217836858490503,52.209527912645044],[5.21759969768751,52.208978153628614],[5.21757269429868,52.208915541386624],[5.217161634121743,52.20795478639403],[5.216923500035558,52.207407585988854],[5.216808785870543,52.2071439863647],[5.216731256573429,52.20696586092129],[5.216647275678008,52.206757284213744],[5.216500590009053,52.206392956047736],[5.216486601493276,52.20636693394704],[5.216499685121056,52.20636564061972],[5.217214105350966,52.206232913083774],[5.217192659760423,52.20620961264993],[5.217120844655151,52.20612512224389],[5.217086007636012,52.206084141360144],[5.216769375494081,52.20572309194934],[5.216529328235039,52.20545086254027],[5.216469957818856,52.20538352057128],[5.21637152962276,52.20526992447936],[5.216210780129075,52.205084416094046],[5.216121062767934,52.20498088082595],[5.215819539800223,52.20463594792622],[5.215683632292506,52.20448145600591],[5.215507992495422,52.204281778112666],[5.215500753689328,52.204273552682714],[5.215446214134311,52.204209938178685],[5.214450766622088,52.203048962012105],[5.21270108624628,52.20100814826694],[5.212084182077673,52.20028854712707],[5.211846290450043,52.20001104417339],[5.211820968334895,52.199981849920015],[5.211810891887517,52.199970240602745],[5.211742351918529,52.19989124326449],[5.211721165283576,52.19986682769233],[5.211677001111617,52.199815917676354],[5.208659659469742,52.19633767105917],[5.208626581588576,52.19629953940912],[5.208611993576285,52.19628271900624],[5.208564327836286,52.19622775794578],[5.208467977537595,52.196116674786886],[5.20841135848555,52.19605140000362],[5.207911784234343,52.1954820424602],[5.20687924797342,52.194305215152724],[5.205206630736491,52.19237826263172],[5.203994614382711,52.190982088743915],[5.203943582862443,52.19092330068003],[5.203447437110787,52.19035174486544],[5.201705269672422,52.18834499110618],[5.20015577825713,52.18655915996678],[5.200088836372603,52.186482018656626],[5.198675616764039,52.1848532849695],[5.198534351489127,52.18469045027552],[5.19852813794747,52.18468331294348],[5.19712114425579,52.18306140974445],[5.196517970439847,52.18236605882023],[5.196184694332841,52.18198181754189],[5.195750786288828,52.181481558072576],[5.194970029578415,52.180581355161536],[5.194569406422161,52.18011942487871],[5.192634476856393,52.17788897634629],[5.192585889452052,52.17783310830221],[5.191300657271681,52.177752923355406],[5.191195862576452,52.17774923520372],[5.189714687610221,52.17769787340236],[5.189316075742613,52.17768084815884],[5.188799004791413,52.17770514679237],[5.188141957403149,52.177740154590055],[5.187538447167237,52.17777196866561],[5.187451042671835,52.17777657547038],[5.187396029157269,52.17777947538425],[5.186750007366874,52.17781352339181],[5.186661505932173,52.177818190665484],[5.185370334656831,52.17788988074981],[5.18531925396047,52.177892714513625],[5.18529778630299,52.17789390915824],[5.185238311589618,52.17789720489561],[5.184831581326381,52.17791978733299],[5.184779945166421,52.17792258395994],[5.184185595009879,52.177954792061],[5.183830443956256,52.17797403530885],[5.182522395686666,52.178044901202696],[5.182297672488889,52.1780570766173],[5.180876124070705,52.17813406376544],[5.180181541467369,52.178173779191255],[5.179830878361599,52.178192362154356],[5.179526850183539,52.17820847352549],[5.179260989886857,52.178222557140344],[5.178519417141054,52.17826184748365],[5.178325373046396,52.17827228094809],[5.178092838806958,52.17828478507041],[5.176952439445809,52.17834887539813],[5.176834429282267,52.17835728465354],[5.176617657718522,52.17837846032458],[5.176429291365993,52.17839070736798],[5.176177963574556,52.17840744343527],[5.176026962093871,52.178417491642925],[5.175953471126285,52.17842261813656],[5.175717963483729,52.1784390579576],[5.175649050077903,52.17844386889406],[5.175532415288161,52.17845194675872],[5.175437074571446,52.178458543736056],[5.175171980668445,52.178476897764604],[5.174945451014438,52.17849297467093],[5.1748653487586,52.1784986638309],[5.174497612410843,52.17852475909025],[5.174122835357083,52.178552512253376],[5.174053291307198,52.17855766266127],[5.173460758984369,52.17860068643495],[5.173416535240674,52.178600130025146],[5.173125940305336,52.17861575489185],[5.172577989542826,52.17864235322348],[5.172024032150412,52.17867136480487],[5.171902372185883,52.17867830643651],[5.171439642723807,52.17870472226973],[5.170994630989009,52.178728445388955],[5.170416823955159,52.178760821170044],[5.16981355980547,52.17879665255172],[5.16940966258637,52.17881959152106],[5.169289274302437,52.17882642494978],[5.169270671953158,52.1788274961359],[5.168739671028381,52.17885807160051],[5.16862532198143,52.1788646548744],[5.168400533291909,52.178879607941305],[5.167898025666286,52.1789103133002],[5.167669664042734,52.17892332593747],[5.167378709341636,52.17893990668202],[5.167295802615877,52.17894469568103],[5.167072362899956,52.17895572100997],[5.167024172260376,52.17887309510419],[5.166954826655633,52.17876369965043],[5.16693558986448,52.1787333475173],[5.166926972443325,52.17871975968449],[5.166813024032846,52.17853272417436],[5.166747457381085,52.17842509727578],[5.166734666026546,52.178404104577375],[5.166649501579362,52.17826241276417],[5.166574720248636,52.17813800608068],[5.166527882493828,52.1780600741806],[5.16650232696345,52.17801859210592],[5.166434130900166,52.17790786826253],[5.166365732230926,52.17779679346935],[5.166310590012086,52.1777072515281],[5.166304188571318,52.17769500699229],[5.166249965033799,52.177591229871084],[5.166242564424708,52.17757705105893],[5.166194462748849,52.177488879409175],[5.166165341082049,52.1774354905734],[5.166115819752933,52.177344736698046],[5.166056519066663,52.17723605155717],[5.166052868298357,52.1772293037784],[5.166007494536683,52.177145442369735],[5.165999596875497,52.17713128957371],[5.165975165001266,52.17708748160973],[5.165938874787097,52.17703222777174],[5.165868355013789,52.176924869695746],[5.165807310743941,52.176831927993554],[5.165739983911608,52.176729411325326],[5.165676255862025,52.17663237501305],[5.165609597041011,52.1765308841425],[5.165546246718153,52.17643444166773],[5.165513991323635,52.17638532502916],[5.165476437932879,52.17632560167102],[5.165417214221582,52.17623143182803],[5.165325746600016,52.17608597020412],[5.165307659714037,52.176057084980854],[5.165254428854046,52.175972102982904],[5.164746524655392,52.175176309061015],[5.16474128799014,52.17516811119501],[5.164680099758006,52.17507274186391],[5.164674732352607,52.17506438196574],[5.164365516495471,52.174582495371695],[5.16405754727758,52.174080666062146],[5.163975229485438,52.17394312100499],[5.163971517455075,52.173937047135986],[5.163781333037242,52.173626298320364],[5.163843619106339,52.17362127506048],[5.163837018581868,52.17359648285538],[5.163836975086108,52.17359641086972],[5.163783948374151,52.17350099356539],[5.16372050796957,52.173403749952826],[5.163628718548678,52.17323723658776],[5.163529252057098,52.173080083014085],[5.163423497464387,52.17294391323883],[5.163223828906125,52.17267492138654],[5.163198742231318,52.172646103432974],[5.163142813378618,52.17258184147103],[5.16300291399256,52.172451259915974],[5.162979929777474,52.17240263650681],[5.162955840516042,52.17237320921449],[5.162968024827853,52.1723193766715],[5.162943335996107,52.172249268861634],[5.162924657632933,52.1722136142143],[5.162829965645535,52.172078884986604],[5.162792566324679,52.17201902619408],[5.162624093949436,52.17172521396331],[5.16257571787779,52.171633238314136],[5.162528932507275,52.17154473501204],[5.162455371255481,52.17142058851487],[5.162357459002407,52.17127862645797],[5.162322125310618,52.17123263982012],[5.162240885430071,52.17112695774685],[5.162211789632,52.1710962983969],[5.162171649891158,52.17106133074818],[5.162119544923391,52.171022133924524],[5.162106371260645,52.171011134544806],[5.162106254319227,52.17101113432189],[5.161994225555608,52.170833957278816],[5.161920380306074,52.17072606007183],[5.161653182972875,52.17030366532717],[5.161235701401061,52.16963437145143],[5.160819984273877,52.16896837796033],[5.160693819169863,52.168767606130416],[5.160638443825304,52.16867947202779],[5.160524778362026,52.168501634242595],[5.160481066709317,52.16843678323596],[5.160323223978674,52.16820264085616],[5.160299081641175,52.16816719097421],[5.160078828186458,52.16784375895838],[5.159742866143816,52.16735228084692],[5.159674423897127,52.16736803964868],[5.159366361018297,52.166887444643876],[5.158848829936304,52.166091317617685],[5.158695135620232,52.16585239938102],[5.158643143491973,52.16581863889808],[5.158564467157243,52.165778247545724],[5.15853607739328,52.16574503604474],[5.158524765188928,52.16570210569784],[5.158581537546266,52.16567287900237],[5.15856950335457,52.165653909115846],[5.158111892037569,52.16493267436393],[5.157645208731036,52.16419357901784],[5.157494265682452,52.163953648833065],[5.157188118272928,52.16348484370751],[5.156715441787963,52.16276315142404],[5.156681832083722,52.162711216357344],[5.15668703180726,52.16270901547514],[5.156660192358047,52.16266774433882],[5.156629711790491,52.162655164601595],[5.156612038217478,52.16259083929314],[5.156614958932308,52.16258845420378],[5.156394205179235,52.16222809145719],[5.156370215805197,52.16219820456543],[5.156343719199907,52.162198152754506],[5.156150593514194,52.161910843667314],[5.155924647065964,52.16157246334003],[5.155880187434314,52.16150507446621],[5.155625519128116,52.161103478928005],[5.155615237470133,52.16107395131809],[5.155606223638626,52.16107330447876],[5.155437195911066,52.1608134367019],[5.155219850027144,52.160484194601416],[5.155175682826244,52.16041156604557],[5.155152144532677,52.16034303158929],[5.155127835598634,52.16030749937097],[5.155119833669437,52.160289336965654],[5.155078659369215,52.16026515032643],[5.155052536641882,52.16023276030866],[5.154921716880776,52.160037500373555],[5.154889625869126,52.15998939662223],[5.154587815673993,52.159537265544],[5.154543297976744,52.15947057708332],[5.154527515567409,52.15944519096198],[5.15369894507426,52.1581761725094],[5.153132564173496,52.15732046697183],[5.15202660081587,52.15564942065449],[5.15197839649189,52.155587766071534],[5.151904249510898,52.15551877052309],[5.151903784228361,52.15551832918557],[5.151323776318177,52.15494817978201],[5.150018747187223,52.1536652834624],[5.150018952184618,52.153665202982666],[5.149878863080952,52.15352818752096],[5.149757105550071,52.153392565948295],[5.149748132394609,52.153373583293984],[5.149742169514632,52.15331334295294],[5.149440101110664,52.15286208734391],[5.149403483550575,52.152826448202994],[5.148850353416012,52.15206492371976],[5.148785414684811,52.1519809528212],[5.148742643227702,52.15191863374185],[5.148729509249846,52.1518772445863],[5.148448349904799,52.15146795740818],[5.148404909540641,52.151394285044034],[5.148404705367717,52.15139421272719],[5.148404895121622,52.15139424906297],[5.148404895506064,52.15139417716003],[5.148404953422417,52.151394276144835],[5.14854822437804,52.1513603037829],[5.14855688647217,52.151358029364985],[5.14872986411523,52.151307264402625],[5.148586788034552,52.151129786459094],[5.148351988132236,52.15080939382771],[5.148118248947315,52.15050164892724],[5.148117797499394,52.15050136938574],[5.148117566755277,52.150500802676355],[5.147940494090902,52.15027181690268],[5.147778861196011,52.150060271868725],[5.147588463067235,52.149802038623406],[5.147356973983423,52.1495044081815],[5.147152084340832,52.149227611555986],[5.146931980172289,52.14893589950634],[5.146787988555134,52.1487575276157],[5.146591517346145,52.14848692185592],[5.146537828585082,52.1484101360032],[5.146391617568263,52.148218564738926],[5.14630699097748,52.148118958103105],[5.146267214915006,52.148087706622924],[5.146255603977112,52.148081499194944],[5.146224630134033,52.14806795399981],[5.146181100132685,52.14805550665288],[5.146134325034325,52.1480514833804],[5.146093477150453,52.1480483080793],[5.146038660288609,52.148053534940615],[5.14597059603935,52.148060694079376],[5.145942951551227,52.14806372943689],[5.145838563078307,52.14790650510728],[5.145334831878658,52.147212842657886],[5.145269446961258,52.14723265296204],[5.145243386249937,52.147196926268165],[5.145190790718219,52.147129408623],[5.145067414036201,52.14698028774707],[5.144949243446478,52.14683848464687],[5.144770765743621,52.1466210046415],[5.14474354335364,52.14658949080676],[5.144591503360604,52.14642458156995],[5.144462823807058,52.1462841674741],[5.144334795985963,52.146153012190126],[5.144265325822027,52.14608068677515],[5.144226958415834,52.14604353239054],[5.144197704304385,52.14600696300007],[5.144123538342891,52.14591973475316],[5.143928836654374,52.14570502426155],[5.14387710709203,52.145648185510105],[5.143844685582001,52.1456085086464],[5.143797741127525,52.14555027760115],[5.143709519801932,52.14544476551418],[5.143606967792413,52.145331080673145],[5.14357315814089,52.14529421410389],[5.143535693885841,52.145255092984904],[5.143482116195067,52.14520246560042],[5.143411025831442,52.14513575380703],[5.143297059744557,52.145146187065315],[5.143221668456357,52.14507525090628],[5.143152764427086,52.14498550728609],[5.143123055960263,52.144949493935364],[5.143096516240554,52.14491910461756],[5.143065033891967,52.14487354234941],[5.143042830111232,52.144843719243006],[5.143008389941735,52.14479673972714],[5.142983917133123,52.14476242691287],[5.142961491953202,52.14473036532556],[5.142947247221253,52.144706454785414],[5.142928001520327,52.144678048891066],[5.142907833951374,52.144649919712585],[5.14286633098012,52.14460152340861],[5.142836341612801,52.14457421875285],[5.142805946318964,52.144541008146405],[5.14275804787688,52.144492041304346],[5.142737413799471,52.144466436751486],[5.142720644183741,52.14444477693533],[5.142706125934648,52.144428173025176],[5.142672736738036,52.14439749079105],[5.142630945154232,52.14435920528047],[5.142591415703385,52.14432401630832],[5.142542395217435,52.14427194619765],[5.142507648423864,52.14423844786357],[5.142465390369132,52.14420269593605],[5.142430880482496,52.14416864081532],[5.142397533289158,52.14413036374547],[5.142361720306902,52.14408619442345],[5.142334723348301,52.14405412322746],[5.142306809940036,52.14402400950306],[5.142248240596962,52.143965744709135],[5.142172227978733,52.143883571594785],[5.142146852146829,52.143848969109634],[5.142117338144823,52.14381773750584],[5.142042028068385,52.14373275252588],[5.142013413007838,52.14370545051019],[5.141982289922002,52.14367729840596],[5.141948934896746,52.14364324553972],[5.141901954903591,52.14359231188063],[5.14186726691818,52.14355094899151],[5.141830059401256,52.1435081787284],[5.141725905030839,52.14339533373997],[5.141683980980962,52.1433415972694],[5.141632661326596,52.14329093309879],[5.141593635079619,52.143249561099246],[5.141557776568673,52.143211287545505],[5.141528281122383,52.143179489585506],[5.141481797402846,52.14312349655309],[5.141423757354103,52.14305175046695],[5.141370218112669,52.14299041282166],[5.141321001471377,52.142934692658116],[5.141292631933185,52.14290542260598],[5.141209965904439,52.142827728978745],[5.141182006057762,52.14280632423772],[5.141145403545958,52.142781252349806],[5.141082854014527,52.14274067599921],[5.141011464706287,52.14268715645579],[5.14093868443926,52.14263953907046],[5.140883251319797,52.142593359973034],[5.140835527312348,52.14255590629805],[5.140805766559995,52.142530003715365],[5.140786737622855,52.14250244278084],[5.140775908450489,52.14247938396879],[5.140760498243211,52.14246053095342],[5.140738688025199,52.1424419521857],[5.140713454198544,52.14242167652245],[5.140692119270878,52.142401687625295],[5.140665564118299,52.142374668204276],[5.140631747599502,52.14233724349737],[5.140587702536794,52.1422950157992],[5.14056020145696,52.142275301607484],[5.140533611702455,52.14225193120485],[5.140513623094407,52.14223419208447],[5.140485315037517,52.14219396560996],[5.140462892939899,52.1421619035357],[5.140432754282796,52.14212251809103],[5.140409854628635,52.14209494001141],[5.140395562398026,52.14208002602146],[5.140373492417769,52.142066219260585],[5.14033824952655,52.14204114996119],[5.140310102512554,52.14201412712793],[5.140287895782462,52.14198542697561],[5.140269309418986,52.141959826260695],[5.140236177644419,52.141925494736064],[5.140199212984726,52.14188160095271],[5.140161995131247,52.14184388137234],[5.140131808787481,52.14181320510473],[5.14005609897166,52.14171727061583],[5.140009182243776,52.14165565858727],[5.139977002287307,52.14161571149086],[5.139960706631588,52.14159067277911],[5.13993594572203,52.14156956205358],[5.13989481557475,52.14153408118504],[5.139858269268009,52.14149917615232],[5.139823282590291,52.14147017948324],[5.139782188413873,52.14142823628893],[5.139745176370364,52.141393051616284],[5.139718620846664,52.14136631060245],[5.13969182910605,52.141342660953896],[5.139669804826312,52.14132071104026],[5.139622504911193,52.141288875243134],[5.139564556040698,52.14124381373119],[5.139507739918781,52.14119734345413],[5.13942546346341,52.141134821081536],[5.139391602806123,52.1411083432819],[5.139364337709361,52.14108581606162],[5.139338300863963,52.141047283812526],[5.139317242429779,52.14101718375721],[5.139268463064508,52.14096512174038],[5.139177675652124,52.140872804113194],[5.139101629689015,52.140795967754705],[5.138956069590332,52.14066308885106],[5.138812483623908,52.140543129655235],[5.138812251450125,52.14054285053898],[5.13881156798736,52.14054229184522],[5.138577086738847,52.14034995848395],[5.138411199608116,52.1402189954474],[5.138308693456783,52.14014097928],[5.137414606377783,52.13929309579383],[5.137414504880651,52.139292960759185],[5.137484403085122,52.139269155703],[5.137476530861732,52.139261103782225],[5.137391737736825,52.13917435200527],[5.137326227940293,52.13907692731607],[5.137261665203654,52.13897215241916],[5.137208586707796,52.13887474500158],[5.137144971378203,52.13876261087999],[5.137089631937997,52.1386699442723],[5.136986683098987,52.13853378268174],[5.136857210335727,52.13840507869046],[5.136509040652051,52.13808633545215],[5.136317585917996,52.13793028352492],[5.136161130793536,52.13781582127579],[5.136056411271051,52.13773306172506],[5.135928102362247,52.13756971944598],[5.135874474805089,52.13749802487384],[5.135913940152407,52.137482865287595],[5.135854526167257,52.137408974300804],[5.135823394801291,52.13737078092449],[5.135822945130681,52.13737022271108],[5.134677383825884,52.1360069316658],[5.133813956269565,52.13497174887415],[5.133623701144074,52.13475759662397],[5.133380815498484,52.134444453899384],[5.13331017293821,52.134345721565985],[5.133306332777206,52.134340374432675],[5.133306103887479,52.13433952906843],[5.133008550596152,52.133931902914725],[5.1326895794259,52.13351861227919],[5.132433805891916,52.13322932083384],[5.132162965288176,52.1329012310055],[5.131840825273584,52.13248539651455],[5.131624967469129,52.13220321824418],[5.131302921128941,52.131772776920116],[5.131223703893125,52.131658008062814],[5.130823797217465,52.13111982801835],[5.13082311564883,52.131118981665104],[5.130675721838575,52.13091587397586],[5.130427251355693,52.13059064187274],[5.130329349146896,52.130482707543585],[5.130143017952104,52.13050408865773],[5.12983530284067,52.130551710391565],[5.129569324325066,52.13058460124497],[5.12935278356526,52.13061216180652],[5.129174375928159,52.13061177178443],[5.129000559062259,52.13059789155637],[5.128900927065171,52.13058515319357],[5.128508037580842,52.130524009876986],[5.127025622051755,52.129200717813156],[5.127027973430586,52.128796828914325],[5.127064046806464,52.12875392780364],[5.127127840365105,52.128733288167744],[5.127246687439956,52.12870068992728],[5.127383640325912,52.12865352592752],[5.127544538172089,52.12860977598365],[5.127701820567179,52.128559852095115],[5.127942027962801,52.128494084628436],[5.128098791654807,52.12845539408066],[5.128298123666958,52.12839431773643],[5.128457692419525,52.128342708111965],[5.128674692406023,52.12826425111756],[5.128706854762903,52.12822809092759],[5.128677674083912,52.12814516654531],[5.128586576517164,52.12799610750679],[5.128527608437696,52.12789233751138],[5.128409403572372,52.127698557477515],[5.128160872910362,52.127311527675445],[5.128068839266451,52.12716582767146],[5.127939028888131,52.126966961396285],[5.127874335826455,52.12686879597766],[5.127695891198741,52.126595671424276],[5.127565636364786,52.12639344222037],[5.127521749918617,52.12632873980876],[5.127301355475897,52.12601030359918],[5.127209253746191,52.125877248867134],[5.127017330539863,52.12557038847927],[5.12685976421052,52.125317253028584],[5.126458222178769,52.12464506951259],[5.126055236936252,52.12401702148293],[5.126055207731725,52.124017021418275],[5.125987083196087,52.12392277507001],[5.125805192321829,52.12366113552745],[5.125643278001381,52.123424697437926],[5.12538078718149,52.123023456374085],[5.125252806409368,52.122825444890196],[5.125065177400768,52.12253534432823],[5.124946074540928,52.122352748692215],[5.124838572238812,52.12216669137749],[5.124770347634453,52.12202574232313],[5.124709113345572,52.12189796723866],[5.124589043115404,52.12168670627307],[5.124524434460974,52.12158915028063],[5.124492371988581,52.12154395902864],[5.12445709280655,52.12149703490355],[5.124418519324977,52.12144915968726],[5.124367736167886,52.121389348129846],[5.124040298439594,52.12105401215129],[5.123572269544007,52.120629451634294],[5.123571798249235,52.12063261436439],[5.12351919966497,52.12058635230875],[5.123299592604612,52.12041621234035],[5.123171147131115,52.12033924811921],[5.123101272202448,52.1202713939296],[5.123050164053966,52.1201954475618],[5.122970543698039,52.12011887106514],[5.122812116369333,52.119978923133594],[5.122810975847945,52.119979199206114],[5.122593070746764,52.12006268571966],[5.122398016831561,52.12013612059078],[5.122006969374933,52.120293377406085],[5.12158866766879,52.120466300600626],[5.121176052201715,52.120640071020176],[5.120737795491976,52.120830643608656],[5.120128560676096,52.121110141574434],[5.119544903803051,52.121386602547986],[5.119044492382445,52.121627576432495],[5.118032479635969,52.122110067528396],[5.115113925997483,52.12349848371008],[5.114478014826498,52.12380176311753],[5.113847357855803,52.12410168076144],[5.113091749986912,52.12446394227385],[5.112652843594152,52.12467245933049],[5.112240490495521,52.12486754562847],[5.111800502959012,52.12506537922594],[5.111348881862673,52.12526178184886],[5.110704397138705,52.12554059141739],[5.110431674793252,52.12566044528369],[5.109808900519955,52.125933395761244],[5.109074278698314,52.126247648899664],[5.108606384606063,52.126452712042116],[5.107896460834445,52.12675662601653],[5.107347567087216,52.126994064943666],[5.106417949902115,52.127397161727146],[5.105619483895577,52.12773343278929],[5.105212218017237,52.127872052918725],[5.104760509404469,52.128001577237484],[5.104410216537286,52.128078825987366],[5.103974115320505,52.12815530148391],[5.103126355167598,52.12827150956152],[5.102620499861176,52.12833910268812],[5.101978547498068,52.12842070058091],[5.101306191112121,52.12783288368935],[5.101303045272484,52.12782697992646],[5.101301943750644,52.1278188251253],[5.101305641311597,52.127811535815674],[5.101312082600217,52.12780452279534],[5.101460756507625,52.127714166921265],[5.101472686341107,52.1277029607932],[5.101476890474103,52.12768724194456],[5.101469682138252,52.12767261895796],[5.10145583874105,52.127661062790516],[5.100615370143847,52.12713940880521],[5.100601947382049,52.12713291381212],[5.100585315674095,52.12712810076903],[5.100568211438071,52.127126378453916],[5.100521665500797,52.12712710124138],[5.100508661207425,52.127125946137674],[5.100498887621209,52.127121994622],[5.100467336936397,52.12709579876043],[5.100437845217839,52.127067351902376],[5.100378840509617,52.12701834060436],[5.100008296897318,52.1266949939522],[5.099905084622938,52.12660121331598],[5.099499215437524,52.12623816879123],[5.099288869495339,52.126054803337034],[5.098698535474137,52.12553262214909],[5.09847372960128,52.12533040791442],[5.098234107711198,52.125125343699],[5.098080298151741,52.12498733325218],[5.097923724316787,52.124854654707164],[5.097923041605728,52.1248540957757],[5.097922590731382,52.124853816041345],[5.097919412794544,52.124850716368634],[5.097914876766829,52.12484536635974],[5.097911727978199,52.124840019752526],[5.097909473550118,52.124834118081004],[5.097908372720241,52.124828219238374],[5.09790841094379,52.124822314200976],[5.0979098198822,52.12481670912972],[5.097912136094875,52.12481080967848],[5.097915366737182,52.12480576633177],[5.097915602180588,52.124805488280444],[5.097916058523073,52.12480492315402],[5.098014617716012,52.124664169681544],[5.09804460611651,52.124615366320114],[5.098045288760771,52.124613678244984],[5.098046695872703,52.12460835179618],[5.09804719949459,52.12460273551601],[5.098046315885877,52.12459711583562],[5.098044525124403,52.12459177256039],[5.098041361735645,52.124586425920654],[5.098037289333944,52.124581643298086],[5.098032077944406,52.12457685788349],[5.098026844684234,52.12457319591793],[5.098025942998063,52.12457262746219],[5.098025477523493,52.12457234769246],[5.097822082977746,52.124447418740736],[5.097543935674747,52.124273438024595],[5.097543253035565,52.12427287010293],[5.097542568532346,52.12427258979347],[5.097541900495516,52.124272021907686],[5.097534157518397,52.1242680751288],[5.09752573922428,52.124264683948674],[5.097516629146464,52.12426213594345],[5.097507064591903,52.12425986545016],[5.097497260924781,52.12425843924321],[5.097487451839861,52.12425784890836],[5.097477420049811,52.124257824271226],[5.097467368180391,52.12425864445812],[5.097457544528657,52.12426030109102],[5.09744977974445,52.12426197176806],[5.097448857992172,52.12426224813283],[5.097322303647483,52.12428609703198],[5.097321615531097,52.124286373969824],[5.097320710187032,52.124286371745164],[5.097313168100815,52.12428747671494],[5.097305647903963,52.124287458234996],[5.097297883140562,52.12428687290805],[5.097290589266463,52.12428573148038],[5.097283534452155,52.12428375475347],[5.097277169679131,52.124281204488526],[5.097271246533142,52.1242781070391],[5.097266261668107,52.12427443666192],[5.097261490274112,52.124269373665456],[5.097181423276471,52.12419755128674],[5.09704302016368,52.1240783982529],[5.096743559013682,52.12381448295374],[5.096402830740569,52.12351086391612],[5.096346994712848,52.123465498517334],[5.093588341195241,52.12102768155443],[5.091143138368191,52.11884421902909],[5.091120024796258,52.11882225717482],[5.091113027246084,52.118809602433906],[5.091111027824479,52.118802856389294],[5.091113194720239,52.11878431951367],[5.091106906233591,52.11873515715643],[5.091111698949208,52.11873460294083],[5.091112799233661,52.1187073629703],[5.091097778116874,52.11859890260323],[5.09108413025511,52.118556453806846],[5.091081866957101,52.11848595496844],[5.091083491924699,52.11848089878422],[5.091044976591862,52.11847630807128],[5.091040425240602,52.11847349237707],[5.091037264968328,52.118467866920525],[5.091029501011652,52.118469528189046],[5.091005386901024,52.118424527464775],[5.091005171587534,52.11842396966595],[5.091004029352605,52.11842227704712],[5.091003823330052,52.11842031713818],[5.091004524438076,52.11841807188997],[5.0910061270782,52.11841638616378],[5.091008881243832,52.11841499094619],[5.091022851283969,52.11840659524794],[5.091039102672168,52.11839764801791],[5.091048491297628,52.11839317757291],[5.091059923975717,52.118388712258984],[5.091072274570569,52.11838453686554],[5.091085072237815,52.118381198480385],[5.091104259619037,52.11837646501223],[5.091123673101191,52.11837286460085],[5.091143318340955,52.11836954339706],[5.091179157246718,52.1183659842017],[5.091215459669087,52.11836298341667],[5.091266344117605,52.1183605854519],[5.091317234153135,52.11835734260391],[5.091454422493144,52.118346172978825],[5.091527702567383,52.11833961566266],[5.091608501871072,52.11833306815606],[5.09169114651858,52.11832345130928],[5.091780189833007,52.118313284184076],[5.091941164779326,52.118292897912355],[5.09207358449887,52.11827637673799],[5.092124045858218,52.11826948332726],[5.09223684234897,52.11825515988745],[5.092300774486604,52.118246888964435],[5.092389376204173,52.11823279250428],[5.092477764490649,52.11821784158105],[5.092530985396787,52.11820870788255],[5.092584421613346,52.118200131956016],[5.092748439165861,52.118167681251805],[5.092793690277741,52.11815599291383],[5.092838709536617,52.11814403433886],[5.092900656729665,52.118124523093925],[5.092962833746198,52.118105578636005],[5.092986844599514,52.11809777399779],[5.093011304326933,52.11809053672046],[5.093076916227334,52.118068787514325],[5.093141630178222,52.11804592151683],[5.093231961094938,52.11801299880218],[5.093322508991607,52.11798036417607],[5.093350870761898,52.11797032329507],[5.093378318256976,52.11795943525453],[5.093405314962264,52.11794826745576],[5.093424763160723,52.1179393278597],[5.093494087414248,52.117908042374424],[5.093564095951004,52.117877037180904],[5.093628406588125,52.117846584010984],[5.093692255478469,52.117815284781706],[5.093714012375389,52.11780382524485],[5.093718814164476,52.11780186881257],[5.093754746461284,52.11778398213973],[5.093783816491629,52.11776832539479],[5.09385457345629,52.117727776597434],[5.093896024933638,52.11770316258104],[5.093921216619495,52.11768889829175],[5.093945961226945,52.11767378801029],[5.09396955417428,52.1176584052196],[5.093992477385068,52.11764273314226],[5.094000958658064,52.117636291827246],[5.09400783931645,52.11763124866652],[5.094011011065295,52.11763294630084],[5.094047450807894,52.117608886020015],[5.094044481634021,52.117607467519164],[5.094069023790246,52.11758759305008],[5.094091505405586,52.11757023010541],[5.094114873898156,52.117553435606276],[5.094142170065737,52.11753215684334],[5.094168770940604,52.11751003147139],[5.094194466583022,52.11748790384482],[5.094207554388036,52.11747586542367],[5.094243125690864,52.11744392940608],[5.094278014390949,52.117411434424376],[5.094300291745447,52.11738733889397],[5.094321899357651,52.117362954079205],[5.094342136366978,52.1173382872284],[5.094351336825524,52.117326796397755],[5.094370425814297,52.11730352882528],[5.094388598631436,52.11727970171717],[5.09440564722743,52.11725587181557],[5.094421087978683,52.11723231654964],[5.094443181305769,52.117200625645026],[5.094464150343053,52.117168940933944],[5.094478448585317,52.117145940083006],[5.094523182924929,52.11707246604231],[5.094581023152371,52.11698413132244],[5.094609816262249,52.11694150957866],[5.094642319833969,52.11689187737468],[5.094687458488886,52.11682570255753],[5.094700117409371,52.116807757877716],[5.094771752612411,52.11670401582351],[5.094820575759651,52.11663251119499],[5.094850738973379,52.116590171416],[5.094909667109598,52.11650942512926],[5.095061543364135,52.116309538944385],[5.095108912494229,52.1162503891426],[5.09520663778881,52.11613294175079],[5.095243421215668,52.116089503740824],[5.095284564606805,52.11604240939055],[5.095309373876808,52.116014949418414],[5.09533074660866,52.11599281084336],[5.095357143541328,52.11596591204799],[5.095398726378688,52.11592079611279],[5.095426280231654,52.11589334290555],[5.095439836366102,52.11587877087785],[5.095518557419614,52.115807339904414],[5.095534161128638,52.115792206682876],[5.095556646783183,52.115771760569395],[5.095584424893135,52.115745710013165],[5.095609671744223,52.11572273608958],[5.095627589441862,52.11570424705004],[5.095644114664352,52.115688837462564],[5.095675533457625,52.11566195100828],[5.095702608785087,52.11563842432551],[5.095750793575507,52.11559500534327],[5.095791840710164,52.115562525124965],[5.095809723526982,52.11554936587752],[5.095845067637348,52.115516035663994],[5.095862275199124,52.115501193977565],[5.095939569510694,52.1154379023589],[5.095992991356227,52.11539506245534],[5.096097345586473,52.11531049094796],[5.09615420529581,52.11526653595081],[5.096173469384536,52.115249730912915],[5.096207637729409,52.11522200622449],[5.096311733756729,52.11514109202073],[5.096365830123935,52.11509993437393],[5.096425873746171,52.11505795547614],[5.09649369876198,52.11501149271931],[5.096564271923484,52.114964479436566],[5.096706786453928,52.11486652834103],[5.096786764737099,52.114812230812724],[5.096885752761469,52.11474421933422],[5.097002149878649,52.11466390104138],[5.09708946345684,52.11460175682066],[5.097164166858902,52.11455025931729],[5.097230605192698,52.11450577009389],[5.097344044824161,52.114426558708445],[5.097395133868003,52.114391855597],[5.097410490135799,52.114380936907644],[5.097407754596414,52.114379528052645],[5.097432289870137,52.114360210119976],[5.097436377647492,52.11436246717204],[5.097521171753595,52.11430368695554],[5.09762130900806,52.11423370929952],[5.097629551858082,52.114227833382905],[5.097631834766828,52.11422925010965],[5.097653598000036,52.11421413172743],[5.097651327827599,52.11421300264963],[5.097660023239778,52.11420712784188],[5.097733586601236,52.11415562717801],[5.097845633996884,52.11407921615979],[5.09791848158531,52.11402996962204],[5.097983292685695,52.11399079690138],[5.098159496410714,52.113870177920575],[5.098185397973794,52.1138516990664],[5.098241969357866,52.113815606886256],[5.098298080824704,52.11378063705732],[5.098369996979987,52.11373530674352],[5.098407788889811,52.1137112484201],[5.098519102487233,52.11364186361015],[5.098544288607728,52.11362787694552],[5.098798183176897,52.11348497701744],[5.098855416267001,52.1134525263164],[5.098931907899074,52.11344232311523],[5.098966552827729,52.11344662317385],[5.098988065307891,52.11343403855915],[5.098984890017023,52.11343290729515],[5.098981609610089,52.1134095843046],[5.098996961651963,52.11336523887851],[5.09901573683841,52.113317540287206],[5.099024462833275,52.11330913082605],[5.099071256975745,52.113269931460835],[5.099115932844174,52.113237737574096],[5.099136554660286,52.11322515075663],[5.099159222136731,52.113212281314055],[5.099222211385773,52.11317002056405],[5.099285957281989,52.11311906120468],[5.099358879680484,52.11305997205332],[5.099409311975837,52.113020215185266],[5.099457240642464,52.11298156670473],[5.099617080264141,52.112884490233206],[5.099683765347447,52.1128371869685],[5.099837997180301,52.112726614466375],[5.099930138239136,52.11265718160775],[5.100160249102794,52.11248809257667],[5.100388283404398,52.112319285662366],[5.100585842208869,52.11217426750068],[5.100730666954059,52.11207069961419],[5.100833567443506,52.11199623191178],[5.100832200613779,52.111995383717336],[5.101023788228183,52.11185682171045],[5.101024456181523,52.11185738058969],[5.10185969325155,52.1112628229566],[5.101859910444438,52.11126310211131],[5.102146963187034,52.11106747042403],[5.10237416636449,52.11092139739153],[5.102540443395547,52.110815344450046],[5.102593119288488,52.11078233266093],[5.102595840173676,52.11078374136118],[5.102611878201521,52.1107731112545],[5.102609376342369,52.11077169409512],[5.102621985923595,52.11076302409566],[5.10266097429922,52.11072912538571],[5.102741548657137,52.11068437953234],[5.102816448987082,52.11063429003373],[5.102888567627311,52.11059232796033],[5.102947456888579,52.11055090020636],[5.102994140919106,52.110525729345774],[5.103051420636032,52.110484863907956],[5.103118968195043,52.1104454253086],[5.103248365626463,52.11036259751377],[5.103292044908783,52.11034388170359],[5.103395156396297,52.11027166826455],[5.10345537742894,52.110234171235476],[5.103490891754299,52.11020926092285],[5.103539422987777,52.11018044514402],[5.103604225286927,52.11014099966359],[5.103672042497885,52.110093409240335],[5.103711261231721,52.11005979835275],[5.103776966493466,52.11002063357682],[5.103850068737855,52.109968283100116],[5.103876444866424,52.10994559772742],[5.103972640261604,52.109881788963825],[5.104031085699767,52.109838678837114],[5.104075061731237,52.10980985190054],[5.104143111069763,52.10976002373986],[5.104192179628921,52.10971997392725],[5.104243735409328,52.10968133219596],[5.104304293681263,52.109629517588225],[5.104380111569716,52.10957689466593],[5.104417216372849,52.10955423489801],[5.10446144635969,52.109519790898645],[5.104526485787906,52.109479500602234],[5.104622210768184,52.10941821581973],[5.104673769749021,52.10938126365954],[5.104781151525754,52.10931635752489],[5.104830634254379,52.10928221358177],[5.104840006747223,52.10927746336937],[5.104880525105402,52.10925509025688],[5.10489174928972,52.10924837609118],[5.10491945898605,52.109229342821855],[5.104927042714118,52.10922120881683],[5.10497189599142,52.109196599036785],[5.104985629141233,52.10919016949531],[5.10506259334386,52.10913839375192],[5.105115730333022,52.109103413554315],[5.105156948221223,52.109076547997866],[5.105170246477175,52.1090673131252],[5.105181012298953,52.109059195700986],[5.105192474849598,52.10904939018946],[5.105201879594985,52.10904182676759],[5.105212185801707,52.10903483174712],[5.105215395034364,52.10903287103848],[5.10521744217727,52.10903231867424],[5.105221775832238,52.109032607664716],[5.105224518376407,52.109032892851026],[5.105225875929706,52.109032896096686],[5.105227030877225,52.109032620228554],[5.105231150472415,52.10902981681984],[5.105234821063455,52.10902645507885],[5.105245132589066,52.109018615192014],[5.105255894871698,52.10901105501119],[5.105267124208823,52.10900350493394],[5.105284991012473,52.108992024970036],[5.105298720053528,52.108983914618015],[5.105305359163536,52.108979724081955],[5.105308336587456,52.108977484187385],[5.105312686216619,52.10897523858435],[5.10531681150254,52.10897384630911],[5.105318404367812,52.10897357148676],[5.105320915108229,52.10897357748744],[5.105323635969508,52.10897498612512],[5.105351810670347,52.108956232494585],[5.105352735570548,52.108955398816754],[5.105352956286675,52.108955120714846],[5.105360299250502,52.10894810961194],[5.105368565355413,52.108940543455745],[5.105377048604453,52.10893326543526],[5.105386216168332,52.10892626767867],[5.105391950284919,52.10892206598727],[5.105406376007624,52.10891226753505],[5.105421717785841,52.10890303751642],[5.105440485974158,52.10889212592924],[5.105458354387739,52.108880376301535],[5.105481031996747,52.108865258654085],[5.105503245987903,52.10884958263624],[5.105547017045965,52.10881822901913],[5.105568090591785,52.108802837882955],[5.105610036900766,52.108771479884986],[5.105670314208721,52.10872442756504],[5.105689564766761,52.10870875342606],[5.105708147459703,52.108692502455135],[5.105724207024413,52.10867821384129],[5.105739348707404,52.10866364440539],[5.105753588860289,52.10864851555739],[5.105766675879926,52.10863337496805],[5.105768751737579,52.108630575651674],[5.105836709249021,52.10855995694412],[5.105890672376389,52.108502508255874],[5.105942570155551,52.108446169134844],[5.106028701121979,52.10835228765342],[5.106105426885342,52.10826371360309],[5.106185209622042,52.10816250060685],[5.106229390844912,52.10810053443117],[5.106248522617424,52.10806884322107],[5.106309017034005,52.107986971402546],[5.106307661262672,52.10798668954415],[5.106320306007616,52.107969858086506],[5.106322577832739,52.107970708373195],[5.106441488812002,52.107812298579134],[5.106445136300032,52.10781258589146],[5.10667211604141,52.107480855935805],[5.106922573955663,52.107112653909155],[5.107191636575733,52.106721477120644],[5.107184584149998,52.106719491994326],[5.107195867177042,52.1067032234542],[5.10720315314614,52.106705209134404],[5.107360586484488,52.10647554272566],[5.107328953172343,52.10646423260368],[5.107339773015396,52.106449652702956],[5.107346372913788,52.10645163674642],[5.107376725749408,52.10641098392618],[5.107369892311788,52.106408999330306],[5.107380945671887,52.106394419979814],[5.107403256002319,52.10640036907043],[5.107445305401321,52.10634963242813],[5.107465516115693,52.106327210249994],[5.107474891791197,52.106324140599604],[5.107530302257727,52.10632624039268],[5.107543875559417,52.10630549221413],[5.107540248067483,52.10630436010656],[5.107659448288151,52.106133303558615],[5.10779797753501,52.10593589478514],[5.107944131922526,52.10572334106347],[5.107997767966077,52.10564482263539],[5.108019423806556,52.105610602474975],[5.108082186913683,52.10552901372448],[5.108084952037718,52.10552564975064],[5.10810379349337,52.10550266696161],[5.108123551011885,52.10548024359626],[5.108144445274085,52.105458101546745],[5.108166476222592,52.10543624980044],[5.108189189748671,52.10541494793578],[5.108201796157982,52.10540403031659],[5.108217388981498,52.10539170863708],[5.108234103962356,52.10537966823934],[5.108243952892399,52.10537322912911],[5.108256541784326,52.10536511573365],[5.108269360734218,52.10535756013995],[5.108275125627828,52.10534830709674],[5.108270578057095,52.10534492582324],[5.108290949630494,52.10533401757162],[5.108311771880534,52.10532339799975],[5.108333043125817,52.105313336744935],[5.108354998642349,52.10530355573363],[5.108380843724609,52.1052926604079],[5.108407354948806,52.10528261152776],[5.108434331444081,52.105272851358954],[5.108461756989844,52.1052636405163],[5.108486429659527,52.105255834285025],[5.108520251698746,52.10524609027434],[5.108554741728039,52.1052368961032],[5.108649549676,52.105212690552655],[5.108684486870095,52.10520434227622],[5.108719670393728,52.10519628218868],[5.108830433483064,52.10517182654912],[5.108910586838231,52.10515459687543],[5.108981382872225,52.10513987970254],[5.109043261277474,52.10512738846683],[5.109074314608438,52.105121565544216],[5.109138481080376,52.10510963691349],[5.109203093011911,52.105098832803925],[5.109206747280595,52.105097996541204],[5.109267274483156,52.105082131484835],[5.109334687981542,52.105062067227706],[5.109397072762265,52.10504086758069],[5.10945628950271,52.10501741342769],[5.109517346367893,52.104991437936015],[5.109575450659633,52.104963765709186],[5.10962212160518,52.10493915843268],[5.109632654521449,52.104932999445765],[5.109715758544501,52.104882358605536],[5.109762945190367,52.10484988794419],[5.109800042680822,52.104824979446065],[5.109805496993552,52.104828084164005],[5.10981374764546,52.104822764669315],[5.109876946797883,52.10478077732754],[5.110028079005079,52.10468367520746],[5.110056701498952,52.1046649214993],[5.110054883971019,52.10466379372205],[5.110332337332566,52.10449479599046],[5.110362099780039,52.1044757662547],[5.11039691099374,52.10445225433703],[5.110440677813949,52.10442033263595],[5.110465413968602,52.10440213595514],[5.110489931165599,52.104383938755355],[5.110518358637126,52.10436125669989],[5.110537373860353,52.104345293594285],[5.11058737284764,52.10430159413816],[5.110717265686788,52.10417128439998],[5.110884544002081,52.104004561648125],[5.1108953464844,52.10399250701927],[5.111046271068102,52.103814780298514],[5.111374007051437,52.10336979393288],[5.111372184331938,52.10336951104027],[5.111405123257953,52.103315659774495],[5.111411728084845,52.10331679872659],[5.111413134702293,52.103311184484646],[5.111476276253669,52.10331582615069],[5.11150544816604,52.10331898623982],[5.111514930255156,52.10329850666368],[5.111483021331875,52.10329421667164],[5.111420375557225,52.1032825565013],[5.111433856126889,52.10324326530442],[5.111429072306823,52.10324268787093],[5.111441124723356,52.10321013437119],[5.111439780461482,52.103205637202734],[5.111479092166281,52.10297035904031],[5.111486238723987,52.10292149872883],[5.111515359734552,52.102672427024544],[5.11151854144725,52.102639295517825],[5.111522615238632,52.10260587847857],[5.111530105000237,52.10257472542501],[5.111534303215949,52.10255900614884],[5.111539185687298,52.102543567101485],[5.111543835377031,52.102530374522615],[5.111570457686164,52.10246639688197],[5.111576943087634,52.102449002184066],[5.111587164661526,52.10241980591794],[5.111590652608021,52.102408021746015],[5.111594652629674,52.102388931484796],[5.111596794601958,52.10237292877091],[5.111598239273158,52.10236113083548],[5.111599383754101,52.10232462404473],[5.111599810384964,52.102290919848265],[5.111598952391025,52.10224541133761],[5.111593591172618,52.102115916934416],[5.11159007674408,52.102020689298705],[5.111586238746008,52.10194007547795],[5.111586246754246,52.10186535781879],[5.1115857851493,52.10175553172862],[5.111586296585245,52.101708067018976],[5.111589672035372,52.10164347777428],[5.111589796659486,52.1016232549472],[5.111589264788597,52.101598248941805],[5.111589494070128,52.101596568711834],[5.11158752378444,52.10150893059327],[5.111588362063129,52.101484215407254],[5.11159053249099,52.101465956756414],[5.111594070542619,52.10144602952389],[5.111597593831058,52.10143086592476],[5.111602025432703,52.101415147188874],[5.111606658618715,52.101402242184456],[5.111613617864604,52.10138371609448],[5.111617527038213,52.10137698419004],[5.111626270757463,52.10136493366742],[5.111643080973852,52.101339410925405],[5.111651781597859,52.10129645038584],[5.111656698443571,52.10127540286593],[5.111664412821236,52.101245643470655],[5.111697231300115,52.10113758487738],[5.111716113149958,52.10107189935361],[5.111705897240044,52.10106233017581],[5.111732525358827,52.10099722899199],[5.111754029030863,52.10094896843289],[5.111776247997928,52.10089593688371],[5.111779289299674,52.10088555379676],[5.111728002093998,52.100880930989256],[5.11172761880264,52.10086970401492],[5.11171918999321,52.10086856081868],[5.111796570631535,52.10074318743316],[5.111804546985264,52.10074432956729],[5.111815551798707,52.10073480096508],[5.11188142663063,52.10074057231131],[5.11190666337538,52.100678559727676],[5.111960780156626,52.10055537893516],[5.111967255551328,52.10054191196731],[5.111974400522748,52.10052873417955],[5.111982010857035,52.100515827119004],[5.111990070134253,52.10050348735311],[5.112007328765424,52.100478531850364],[5.112025485327175,52.10045470194701],[5.112035131958731,52.10044292314126],[5.112045462759375,52.10043143354876],[5.112098527432627,52.10037004310763],[5.112163711691214,52.100300537731655],[5.112263119393784,52.10019319151183],[5.112300311723552,52.10015199608284],[5.112358369565005,52.10009257655842],[5.112385682603583,52.10006539741818],[5.112487502027192,52.09997154769708],[5.112522139594607,52.09997555616106],[5.112529471291007,52.09996995570389],[5.112619695450572,52.09990809431111],[5.112622912310386,52.09990473128076],[5.112638562356239,52.099882576211726],[5.112677895597902,52.09982536893333],[5.112722535240119,52.09976199021062],[5.112751045686595,52.09972274281409],[5.1127597905408,52.09971040459005],[5.112786469851599,52.09967225845399],[5.1127830599144,52.09967141462988],[5.112832323296276,52.099596532925396],[5.112909437601142,52.09951609844875],[5.112984710103001,52.09943847289954],[5.11303244952467,52.09938830471817],[5.11304575104221,52.09937541980684],[5.113052635332836,52.09936897339954],[5.113060189191689,52.09936281616612],[5.113073251178387,52.099353292227576],[5.113087214529087,52.09934433663026],[5.113101639710624,52.09933622698195],[5.113109179842454,52.09933230773927],[5.113125880001577,52.0993244820054],[5.113135244347161,52.0993205759888],[5.113145075760014,52.09931666206888],[5.113155137208628,52.09931331493016],[5.113176815623061,52.09930999478557],[5.113392627713677,52.09918522954235],[5.113397442101982,52.0991807466929],[5.113838218869621,52.098698661282775],[5.113841893127507,52.09869445440176],[5.113843050354083,52.09869136519296],[5.113842835691662,52.098688281792136],[5.113842391902489,52.09868686963857],[5.113831614624277,52.09865932322754],[5.113833674131646,52.09865904038405],[5.113817041230826,52.098617719683006],[5.113782242390159,52.09860443554923],[5.113780956379832,52.09859039322354],[5.113910847287325,52.09845615210206],[5.113925689311978,52.09845140485158],[5.113928888780797,52.098450855006405],[5.11393277246056,52.09845058537649],[5.113936634737355,52.098451430215796],[5.113939823937712,52.09845256111308],[5.114001253199074,52.098476018463025],[5.114013077706574,52.09848026125519],[5.11402662079173,52.098465965666946],[5.114028892281028,52.09846681580619],[5.114143620915963,52.0983513602931],[5.114188816845634,52.09830624602478],[5.114175107782827,52.09827363258022],[5.113995756087327,52.098219567485344],[5.113944848562025,52.09822731408177],[5.113794568226596,52.0983786392093],[5.113785383541029,52.09838900810768],[5.113793799904268,52.09839211951281],[5.113790123963597,52.098396605018365],[5.113792094125938,52.098410936548376],[5.113683543677692,52.098523035528764],[5.113661748877872,52.09854545511621],[5.11363706281385,52.09855381966028],[5.113635917615513,52.09855494051064],[5.113624081938628,52.09855014039526],[5.113613069472717,52.09856107128725],[5.113602385013142,52.098556552470335],[5.113600783993175,52.0985582295223],[5.11359371792045,52.098556253731545],[5.11334767364961,52.09881633623686],[5.113260002006982,52.09890994094801],[5.113132367320549,52.09904699086477],[5.112837389863539,52.09936538091881],[5.112514843788733,52.09971628771219],[5.11239339607851,52.099848021312795],[5.112214816308857,52.10003803494532],[5.112024730507581,52.10024291466199],[5.111745779850167,52.10054898076993],[5.111702355065751,52.10060196277772],[5.111671299165819,52.10064430484883],[5.111649680460195,52.100675712525195],[5.111623389015984,52.10072171486578],[5.111623166662812,52.100722271605484],[5.11166486156323,52.10072742930654],[5.111589071403364,52.10085280632361],[5.11155306483035,52.100848228139604],[5.111550526847716,52.10085271623408],[5.111547116899301,52.100851863386396],[5.111506078187411,52.100922548375166],[5.111496410590882,52.10093768862014],[5.111466133425759,52.10100279020779],[5.111451101603468,52.10103814102675],[5.111434674554965,52.10107489970544],[5.11141013502301,52.10113494543229],[5.111395050383315,52.10117647990067],[5.111377153341828,52.1012314898689],[5.111359204258797,52.10129493050609],[5.111344684233632,52.10135612315985],[5.111336455549586,52.10139823990386],[5.111329580001162,52.101438670058506],[5.111322907534479,52.10148639898651],[5.111318558596871,52.10152655642094],[5.111312956188483,52.10158299727416],[5.1113100924025,52.101640289410454],[5.11131003695775,52.10164927733344],[5.111312257523233,52.10173411176864],[5.111315388253859,52.101818094466914],[5.111318422310076,52.1018798944247],[5.111322157920712,52.10193917038031],[5.111328775296837,52.10205181514181],[5.111332112209664,52.102102380740355],[5.111343914688373,52.102332736164435],[5.111345384316802,52.10235239647102],[5.11135236166628,52.10247768825386],[5.111353361554811,52.10250015173312],[5.111353412765686,52.10256757122607],[5.111350341442476,52.102620647472754],[5.111344309724734,52.10267568517744],[5.111337175248727,52.102722568139455],[5.11132822493784,52.10276805370518],[5.11130742040361,52.102849454753844],[5.111304869153765,52.10285843683622],[5.111283934926042,52.10292299396918],[5.111258236655564,52.102986128826785],[5.11124319805537,52.103020077457536],[5.111217778235946,52.10307591465998],[5.111192155272986,52.10312445308412],[5.111161952513953,52.103177187190354],[5.111108971866106,52.10326440904293],[5.111059672074812,52.10334406256331],[5.111008321077633,52.103422587752206],[5.110954016380616,52.10350195087599],[5.110909148110416,52.103565885624064],[5.110840602733695,52.103660944417896],[5.110783132283851,52.10373523977031],[5.110727734538522,52.10380476729878],[5.110671443860588,52.10387232432411],[5.110628721353244,52.10392194603124],[5.110587377054311,52.10396819144867],[5.110540312539777,52.10401891745719],[5.11049899828217,52.10406263727179],[5.110454008231093,52.10410831682883],[5.110412018263999,52.10415034527366],[5.11037118336067,52.10418732513101],[5.110325333299977,52.10422570432376],[5.110279728937591,52.10426210670466],[5.110223595324157,52.10430410187026],[5.110181210881374,52.10433434597333],[5.110137700831957,52.10436485705823],[5.11010265429038,52.10438864697635],[5.110010594839311,52.10445022347462],[5.109915554064995,52.10451235913826],[5.109916468422299,52.104513197176644],[5.109915091171358,52.10451403881507],[5.109852343176946,52.104556305868975],[5.109826239913581,52.10457365432927],[5.109828508120932,52.10457507078759],[5.109765074006932,52.104617327193104],[5.109697058978665,52.104661550156194],[5.109613923991066,52.104717242194916],[5.109611653997999,52.104716113345866],[5.109575261641714,52.10473794054439],[5.109494685006551,52.10478353595456],[5.109458994290708,52.1048028301396],[5.109426734690335,52.1048196067536],[5.109378463452958,52.104843365306735],[5.10935124921695,52.10485622600819],[5.109321743450473,52.104869072316006],[5.109291555118316,52.10488135974898],[5.109260932353032,52.1048930888914],[5.109229614271039,52.10490396252235],[5.109197845373866,52.10491456544087],[5.109172251735845,52.10492264827933],[5.109121069629849,52.104937978063255],[5.109069206730563,52.10495246134283],[5.109021473853806,52.1049647073292],[5.1089787613677,52.10497471812798],[5.108935599909031,52.104984161604854],[5.108891974827195,52.104993046712835],[5.108818234066201,52.10500719962212],[5.108771642417198,52.10501664393013],[5.108606772789111,52.10505023839091],[5.108593065959258,52.10505273165254],[5.108560416379644,52.10505939555363],[5.108527983938823,52.10506634757632],[5.108496011615751,52.10507441519548],[5.108474080779729,52.10508025952622],[5.108405782925268,52.10509695068294],[5.108339037430604,52.10511982924819],[5.108326688582817,52.105124572702024],[5.108270653634998,52.10515028082578],[5.108228769243278,52.105174898890425],[5.108173560283921,52.10521324611805],[5.108131373868462,52.10524881986452],[5.108084824858135,52.10529112430725],[5.108041448452681,52.10533258237663],[5.108000381582307,52.10537349762659],[5.107933109042615,52.10544327435],[5.107900043096439,52.10547914823912],[5.107861461413384,52.10552175009062],[5.107826539211333,52.105562679833234],[5.107790927997127,52.105606412203926],[5.107763096587508,52.105643143331946],[5.107695212813311,52.10573819286025],[5.10757786468617,52.105905038450324],[5.107462381859015,52.10606290029737],[5.107319966337843,52.10626057808225],[5.107303413469742,52.106281606781536],[5.107286851809273,52.10630403759292],[5.107243842237369,52.10636123430596],[5.107248619359388,52.10636292641053],[5.107236890980673,52.106378070393305],[5.107241000154805,52.10637920365363],[5.107219146773907,52.10640751805253],[5.107215285738079,52.1064063853805],[5.107203792681488,52.10642124230107],[5.107203555592012,52.106421807985186],[5.107195348345164,52.10642009874705],[5.107176905732402,52.106451513123915],[5.107090227245306,52.10652658218075],[5.107037067199799,52.1065287029212],[5.107010016213762,52.106552510910305],[5.106931118594827,52.10665765436339],[5.10685227571621,52.10675633548705],[5.106792008155582,52.10683737224741],[5.106742293549203,52.106909158407895],[5.106605361758826,52.107104322711116],[5.106509400247671,52.10724171932622],[5.106417824043314,52.10736873612039],[5.106316325320056,52.10751370530202],[5.105993905155375,52.10797329568559],[5.105946958235438,52.10803863468418],[5.105880200667047,52.10813677771569],[5.105797692947503,52.10823713912904],[5.105702656116824,52.10833353381643],[5.105451093006555,52.10854780131719],[5.105368095829482,52.108616694113245],[5.105196893424494,52.108746899142965],[5.105121975850086,52.10880064825262],[5.105070865151941,52.10883843757107],[5.105009015466789,52.10888239393564],[5.104976246921537,52.108905064267276],[5.104884411749701,52.10896551377477],[5.104153249167986,52.109419904555395],[5.10405936780726,52.10947810149714],[5.103810359541878,52.10964630789099],[5.103198058032151,52.11005968719932],[5.102944919834477,52.11023126131921],[5.102664542358064,52.11041848926959],[5.102542446200816,52.11050076780009],[5.102395125238647,52.110603496007805],[5.102303033424999,52.11066646851927],[5.102299161099289,52.11066477840152],[5.102006035443415,52.110847201336306],[5.101879577962811,52.110933126765715],[5.101728838176866,52.111035836879715],[5.101654837415736,52.11108649411168],[5.101562960696293,52.11114975418157],[5.101523329921832,52.11117662232321],[5.101462215336436,52.11121186020104],[5.101395117639816,52.11125130792867],[5.101354373193081,52.111274236552376],[5.101341102398697,52.1112812330378],[5.101281495836873,52.1113271522705],[5.101135270458734,52.11143801573285],[5.101130227079368,52.11144138300417],[5.101112791102145,52.11145593729241],[5.101083431252914,52.11148142806398],[5.101051785084834,52.111508315415826],[5.101027729058365,52.11152623313391],[5.100974542562366,52.111565714373704],[5.100924612634149,52.11159816585727],[5.100872151886144,52.11163371205008],[5.100835503447572,52.11165750430156],[5.100799302159925,52.111682133515274],[5.100798612474475,52.11168268909913],[5.100797937329641,52.11168325370631],[5.100747303001199,52.11171851666107],[5.1005082737415,52.111892924067746],[5.100452342116049,52.111934636420706],[5.100357458877164,52.11200406302287],[5.100252973568974,52.112077402950156],[5.100001369781129,52.11225655138213],[5.099952328980795,52.11229126061599],[5.099913608706022,52.11231925393736],[5.099826071791681,52.11238111209732],[5.099601771199141,52.1125342069477],[5.099573595471682,52.11255239295169],[5.099525486385323,52.11258513589863],[5.099363057123911,52.112694564485146],[5.099303721834037,52.11273402097469],[5.099236370227151,52.11277823950049],[5.099098228938683,52.112870020577425],[5.098973389514128,52.112952297687876],[5.098904435161751,52.112998192870414],[5.098882890127133,52.11301359064745],[5.098782323174675,52.11308075507381],[5.098724127353622,52.113119935427974],[5.098665705102332,52.113157991694436],[5.098613025400117,52.113192970096804],[5.098385334874487,52.11333846842625],[5.098155577243524,52.11348733176423],[5.097996369364269,52.113591993708006],[5.097895345351545,52.113657187874395],[5.09780875364375,52.11371427420145],[5.097739795114992,52.11376044732003],[5.097694666923151,52.113790113935735],[5.097567081472579,52.11387180757855],[5.097421161232035,52.1139666684568],[5.097295158721974,52.11404949818657],[5.097179265455966,52.1141222410951],[5.097051002810254,52.114202260737734],[5.096878964596093,52.11431249814251],[5.096836815349114,52.11433963713442],[5.096790330068012,52.114369021433106],[5.096687926543176,52.114434777412335],[5.096575224875311,52.11450808484518],[5.096468488450489,52.11457326371071],[5.096450162763969,52.11458501983346],[5.096452447524043,52.11458614897029],[5.096438008901575,52.114595101416626],[5.096435972327044,52.11459397289134],[5.096430240323135,52.11459760790461],[5.096432057910338,52.114598735890155],[5.096424960876334,52.114603491042956],[5.096422911514864,52.1146020838567],[5.096417179508852,52.11460571886936],[5.096367930788168,52.1146379004564],[5.096194748600952,52.11474842165702],[5.096125124373049,52.114793190052424],[5.096050656678206,52.11484187422388],[5.095976896845411,52.114889445579095],[5.095856164945172,52.11496919489533],[5.095794980288224,52.11501145830248],[5.095587575362146,52.11515755859],[5.095522884163141,52.11521357387247],[5.095414353315785,52.11530936958967],[5.095367932939727,52.11536205946902],[5.095354154309852,52.11537718819728],[5.095315754609068,52.11542231199711],[5.095270224491147,52.11547725104993],[5.095238025841835,52.11551846239906],[5.0952104151602,52.115554633819656],[5.095150877930235,52.11562385609396],[5.09509957102351,52.11569141795701],[5.095038611446959,52.115768231542916],[5.094977438189974,52.11584419969181],[5.094913961600377,52.115921842863706],[5.094840164207698,52.116010416836964],[5.094772126528106,52.11608889350125],[5.094700429518197,52.11616876318509],[5.094632601170596,52.1162486424205],[5.094585487178423,52.11630217514194],[5.094521608154182,52.11637195256853],[5.094381630069611,52.11653367743105],[5.094309458794743,52.11661663758081],[5.094165568165867,52.11678031185951],[5.094109944370016,52.11684449204564],[5.094031568541894,52.11693389900354],[5.093969492458858,52.11700677249222],[5.093919847280514,52.11706310291845],[5.093858261981021,52.11713232842541],[5.093782979857663,52.11720179845797],[5.093754092320094,52.117223073179886],[5.093725653697107,52.11724490626978],[5.093718550407635,52.11725050611861],[5.093703425851218,52.11726142490166],[5.09368738331516,52.11727206276944],[5.093667451519726,52.11728577385276],[5.093625748287036,52.11731319143056],[5.09358336063096,52.117340328660795],[5.09356045569278,52.1173554434466],[5.093535492130751,52.11737055310276],[5.093510065129058,52.11738508636543],[5.093468858380072,52.117408020094054],[5.093428319530219,52.11743151272992],[5.093418938561187,52.117437106887884],[5.093408174244399,52.11744214034137],[5.093389644233297,52.11745136085129],[5.093254389506305,52.11751534225174],[5.093199717536113,52.117538799587884],[5.093052152466534,52.11760303768941],[5.092961104684404,52.11764072213783],[5.09292633318597,52.117655240952224],[5.092879680417872,52.11767366687026],[5.092832328697481,52.11769180340839],[5.092786836923834,52.11770685268579],[5.092741113292985,52.117721631725786],[5.092675754082985,52.11773832111273],[5.092609945950185,52.117754443096075],[5.092549418043268,52.11776469106966],[5.092521810773305,52.11776658149515],[5.092464333724688,52.11776363362288],[5.092463881118902,52.117763632491915],[5.092462740467218,52.11776390827083],[5.092144326204593,52.117858043837515],[5.092003353792649,52.117891962498916],[5.091848191142366,52.117930051861784],[5.091808670981126,52.11793838367607],[5.091802047805344,52.117939769223135],[5.091607203165508,52.117977480256414],[5.091602245700546,52.11796763492224],[5.091485849853183,52.117974362829145],[5.091460753593525,52.11797626828954],[5.091408231924219,52.117983443866834],[5.091340859717615,52.11799309882285],[5.091148600113345,52.11801958053846],[5.091083523671069,52.11802869283941],[5.091058638924803,52.118031722249675],[5.090920742606593,52.11804850715714],[5.090857035104239,52.118055933021],[5.090833980964224,52.11805812210767],[5.090803394983686,52.118060004646935],[5.090723751690001,52.11806401988091],[5.090697058617055,52.11806451903174],[5.090593482361466,52.11806453725543],[5.090505657961744,52.1180648736393],[5.090345958159073,52.118064759451165],[5.090304896612443,52.11806549199252],[5.090217274373792,52.11806836329649],[5.090087650199251,52.11807505651701],[5.090051318061761,52.11808255089758],[5.089976850443842,52.11809865858564],[5.089902822694161,52.11811447971822],[5.089803698474903,52.118132205911714],[5.089757079800168,52.11814304477948],[5.089671422572349,52.118159959945075],[5.089529499504051,52.11819807965431],[5.089389324819832,52.118212610013266],[5.089241354190842,52.1182335829108],[5.089099879357237,52.11827226948198],[5.088921985841491,52.11829850524617],[5.088743876892568,52.11832417395081],[5.088497726830533,52.118356698746624],[5.088241985453004,52.1183911581118],[5.087891277120271,52.1184349302657],[5.087549476746156,52.11847618938099],[5.087391262895598,52.11849376342285],[5.087135806285131,52.11852035658267],[5.08709608129075,52.1185241922797],[5.087011844271531,52.11853156383379],[5.086029779644553,52.11862596046485],[5.085821590539736,52.11864508555363],[5.085686215427446,52.11865766438408],[5.085653794243745,52.11866095201879],[5.085256823019415,52.11869869292374],[5.085158878695943,52.118707717816555],[5.084955933592377,52.118728544556554],[5.084530631752965,52.118769023676386],[5.084208072377308,52.11879908743628],[5.08385995018266,52.11883077432889],[5.083801280184632,52.118835674711306],[5.083742843721236,52.11884058465332],[5.083703819039602,52.11884441202174],[5.083487388651466,52.118866334029924],[5.083141088599016,52.11889830212215],[5.083024888244102,52.11891008244972],[5.08294727159065,52.11891633568101],[5.082867160056534,52.11892231278314],[5.082825616983294,52.11892500985871],[5.082722006172958,52.11892980271686],[5.082659936597985,52.1189321681177],[5.082585560644486,52.11893422307653],[5.082552471919938,52.11893470386749],[5.082530571082177,52.11893464730096],[5.082501140216252,52.11893400503279],[5.082484499378735,52.118933404786844],[5.082349721901142,52.1189265941362],[5.082250731592834,52.118921844238024],[5.082019032179445,52.11890888644311],[5.081971833212891,52.11890595106096],[5.08191505507514,52.11890103147573],[5.081812009325009,52.11889149806485],[5.081765729013034,52.11888660558641],[5.081654937038086,52.11887395110658],[5.081611166087487,52.11886935268469],[5.081567391397097,52.11886530250717],[5.081537972084642,52.11886297926533],[5.081484394671357,52.118859748529694],[5.081350747531135,52.11885210377835],[5.081324065450121,52.11885091108528],[5.081264767695036,52.11884935516684],[5.081084322514204,52.11884635238486],[5.08100425703621,52.118845587312485],[5.08092395610506,52.11884509121549],[5.080853679886006,52.1188454749637],[5.080783416356326,52.11884613733215],[5.080736409555093,52.118847138714976],[5.08068460995725,52.11884868488292],[5.080632806472272,52.11885079726441],[5.080588084239313,52.11885292803048],[5.080550662267268,52.118855077758624],[5.080494512728452,52.11885858990268],[5.080438593026692,52.11886265088803],[5.080400009885878,52.11886592105327],[5.080342476333048,52.118871110288204],[5.080285185174896,52.1188771450014],[5.080221712232654,52.11888399948621],[5.08015823538139,52.11889142017309],[5.080102982505752,52.11889829599106],[5.080047944792097,52.118905729601856],[5.080013012795678,52.11891097752844],[5.079826417437109,52.118940268801744],[5.079770010152127,52.118949388465126],[5.079671342341905,52.118965705202875],[5.079566032315365,52.11898396392717],[5.079542959702289,52.11898868538593],[5.079522851062808,52.11899340558353],[5.079490628021259,52.1190017433187],[5.079464807694698,52.11900898323286],[5.079445362929127,52.119014828654045],[5.079416784186097,52.11902402075295],[5.079388203450679,52.119033500457014],[5.079353221012719,52.11904604634369],[5.079325304200527,52.119056642281976],[5.079314791937731,52.119060830233124],[5.079289619958006,52.11907144231557],[5.079266963170985,52.11908149471247],[5.07924499260226,52.11909154889663],[5.079105456752644,52.119145948629985],[5.078920846974983,52.11921737059269],[5.078800358843573,52.119289526180694],[5.078713299475587,52.119341545991055],[5.078593725660865,52.119412292636945],[5.078412755228471,52.119518830601876],[5.078338543486193,52.119562452988056],[5.078304417941455,52.11957978244359],[5.07829663002643,52.11958481332588],[5.078189529000554,52.119665425137924],[5.078158145407826,52.1196852873728],[5.078087112263876,52.11972947518671],[5.078063733636679,52.11974458572592],[5.077932841317964,52.11983440161641],[5.077919554614104,52.11984279755844],[5.077899394915833,52.11985481563207],[5.077878548904188,52.11986684089056],[5.07771818447202,52.11996388652655],[5.07740094512244,52.1201450615107],[5.07734826681477,52.12017413426567],[5.077336128557601,52.12018112203679],[5.077279327848496,52.12021298819911],[5.077257831298096,52.12022191975374],[5.0772675681594,52.120230654746024],[5.077238968681881,52.12024265951862],[5.077229217222584,52.12023392448557],[5.077207720652101,52.12024285603093],[5.07720636174926,52.120240893067574],[5.077173857003616,52.12025597045784],[5.077023251163026,52.12032663394289],[5.076931441494389,52.120372456175026],[5.076899214978683,52.12038108081078],[5.076898772081051,52.12037967751187],[5.076882088911466,52.120383004137],[5.076855318293267,52.120394447381564],[5.076860064557843,52.120400634650494],[5.07685728929455,52.12040708974746],[5.076740442021793,52.120477563056106],[5.076561539161789,52.12058157798008],[5.076377828674047,52.12068811459042],[5.076218198164246,52.12077531821802],[5.076154767814661,52.120809143727776],[5.076064307251666,52.120858060726555],[5.075965950557284,52.12092744954549],[5.075970936194851,52.12093280159397],[5.075901755293694,52.12097250794654],[5.075883472470424,52.12097695371352],[5.075831203757599,52.12101192302328],[5.07578555803989,52.12104775467057],[5.075751844813041,52.121072661390194],[5.075746312600277,52.12108078994416],[5.075641609312398,52.12114511944567],[5.075596894026773,52.121177304334424],[5.075566852477619,52.12119912881573],[5.07556775380959,52.12119969744324],[5.075535877291709,52.12122291920247],[5.075403556878026,52.121321437914105],[5.075278990221598,52.12141773895956],[5.075162766143237,52.12149860251995],[5.075087090194858,52.12155233052431],[5.075081998708026,52.12156214097571],[5.075048061724567,52.12158761314756],[5.075031086312926,52.12160133789553],[5.074976306764744,52.12163601256327],[5.074920621779177,52.12167069379655],[5.074822712997884,52.121742338841784],[5.074750412597401,52.12180394009979],[5.0747322501278,52.12182243430721],[5.07469068215593,52.12186164684411],[5.07433929455775,52.12219271544234],[5.074219442650471,52.12230108981125],[5.074177911174453,52.12233496336985],[5.074152425762002,52.12235652993854],[5.074129474347496,52.12237697073465],[5.074113391883526,52.12239237848224],[5.074105581346458,52.122400500911134],[5.074044904607691,52.12246382233583],[5.074048305662166,52.12246607837359],[5.074052393060047,52.12246832724521],[5.073935426527226,52.12255649489227],[5.073918183323368,52.12257499141445],[5.073707659487411,52.12276121246187],[5.073539168586368,52.1229377209839],[5.073416195671452,52.123101137942065],[5.073358439870746,52.123201542420986],[5.07332107205156,52.123259865217975],[5.073256096550137,52.12335069615375],[5.073248964090827,52.12335994383415],[5.073245746491579,52.12336274852519],[5.07325162559126,52.12336978382693],[5.073232538859711,52.12339079199049],[5.073192505246272,52.12343984098717],[5.073168094530557,52.12347039823589],[5.073161928557998,52.12347093907898],[5.073164598774405,52.123481614983916],[5.073165902273958,52.123491451363144],[5.07316583318226,52.12350128408826],[5.073164844161765,52.12351111436436],[5.073162497150451,52.12352094102518],[5.073159013199187,52.12353047704205],[5.073154377642102,52.123539731363884],[5.073148836692449,52.123548992263075],[5.072696873012573,52.12419323678335],[5.072583863969699,52.1243653978079],[5.07249902245439,52.12448988045222],[5.072483581494333,52.12451146446437],[5.072467001533914,52.124533045435506],[5.072460093707835,52.12454144879132],[5.072451133569676,52.12455097916281],[5.072441257465445,52.12455994084355],[5.072430477971601,52.12456862148382],[5.072418782511266,52.12457673343286],[5.072412130022564,52.12458205457199],[5.072406612593863,52.124587935997816],[5.07240199854968,52.124594098463106],[5.072398536067776,52.1246005516184],[5.072396212572169,52.1246070078132],[5.072390548694885,52.124633678166525],[5.072390311130905,52.12463423479056],[5.072390309104879,52.124634522402175],[5.072387238005071,52.12464967701701],[5.072382776420887,52.12466736254601],[5.072376958833583,52.12468475683883],[5.072370208648907,52.12470187001331],[5.072271720487156,52.124918443397114],[5.072263386407322,52.12493443782042],[5.072253927991318,52.124950420253306],[5.072243551573514,52.12496612160533],[5.07221964362855,52.12502251159904],[5.072220032958941,52.125031500670566],[5.072219064253011,52.125040486115935],[5.072216491230481,52.1250491886485],[5.072212547531235,52.125057608892014],[5.07211778774759,52.125229809192476],[5.07201506131947,52.12539890523288],[5.071911655711187,52.12556687586137],[5.071907283067334,52.1255719154479],[5.071901552306325,52.12557696039234],[5.071894888999251,52.12558171522691],[5.071887338856587,52.125585910432726],[5.071877944837607,52.12559065796731],[5.071869233149191,52.12559597357103],[5.071861437498291,52.125601848880756],[5.07185501450175,52.125607727859354],[5.071844665507276,52.12561950147883],[5.071835219974135,52.125631547153624],[5.071826911419861,52.12564388348431],[5.071819062220023,52.12565734454635],[5.071817667742038,52.1256604327009],[5.071817193236855,52.12566352331501],[5.071818091389823,52.12566661759899],[5.071819214546568,52.12566886760953],[5.071819894976725,52.12566970531558],[5.071821016167313,52.12567223394986],[5.071820996313804,52.125675047150494],[5.071819839475498,52.12567756969446],[5.071777266081766,52.12572801354143],[5.071514847089767,52.12598880934903],[5.071508872680296,52.125995255755],[5.071476688208908,52.126030276868825],[5.071443352028434,52.12606501626208],[5.071409114354834,52.12609919597463],[5.071367054337488,52.126140931644244],[5.071327314661789,52.12617874574243],[5.071286671570562,52.12621626979078],[5.071245112365792,52.126253234113484],[5.071202635076554,52.12628991733317],[5.071159020720525,52.12632630987423],[5.07111450485056,52.12636214272558],[5.071038459580127,52.126435254304226],[5.070871140681308,52.1265727091017],[5.070830761580665,52.12660378029411],[5.070512959341391,52.126822855673204],[5.070211749937986,52.127018381203165],[5.069964882996453,52.12717612262649],[5.069956839193352,52.12718396552088],[5.069937533494752,52.127202455906584],[5.069917328377147,52.127220098995245],[5.069895984253233,52.12723773002875],[5.069873740581934,52.1272545317399],[5.069850578994286,52.12727103437257],[5.069826718347359,52.12728726547904],[5.069822142209178,52.12729005743277],[5.069832370395106,52.127295423839584],[5.069712851187564,52.1273863846639],[5.06965505397591,52.12742695386078],[5.069567188496213,52.127494136520134],[5.069535583894972,52.12747803475108],[5.06945976322231,52.12754973479061],[5.069442765866093,52.1275659843049],[5.069412892753916,52.12759595081683],[5.069382552229388,52.127625925049905],[5.069351332812025,52.12765421614556],[5.069350578558266,52.12766375940029],[5.069245920998932,52.12777976448781],[5.06924546432743,52.12778032051479],[5.069245007591963,52.12778088552958],[5.069212791446684,52.12781787431381],[5.069177802439595,52.12786075176092],[5.069133163497055,52.12791343608322],[5.069089665569248,52.127965835848265],[5.069047729245838,52.128022464182045],[5.069013844947368,52.12807012619017],[5.068977179788432,52.128124791349215],[5.068940461847695,52.12818480423111],[5.068910938646865,52.1282290984755],[5.068914364470691,52.12822995259329],[5.068868176030163,52.12830734971063],[5.068863382013184,52.128307903020016],[5.068848971016938,52.12834437350246],[5.068824598237737,52.12840160640779],[5.068802250504976,52.128463617416166],[5.068787344616664,52.128505991689046],[5.068768209015054,52.12856604298183],[5.068752209443356,52.128634821123526],[5.068738533485522,52.128695174764886],[5.068725147840772,52.12874962405369],[5.068708687451381,52.12878468685185],[5.068669326430896,52.128834293360775],[5.068610236920452,52.128832453037454],[5.068598862147325,52.128858829143375],[5.068669080146197,52.12886884267387],[5.068673864166958,52.128869700465664],[5.068678861286448,52.12887139471919],[5.068683416192267,52.128873663012314],[5.068687047151561,52.12887647708038],[5.068689754036154,52.128879854899125],[5.068691336428932,52.12888322968179],[5.068691763136021,52.12888687997298],[5.068689895006378,52.12892564029182],[5.068681983044512,52.1289784235911],[5.068678215359451,52.12902756894001],[5.068676024107697,52.129046096335934],[5.06867272976057,52.12905956948196],[5.068665819105241,52.129070219610966],[5.068660743288152,52.12907751317174],[5.068656916123299,52.129102219912646],[5.068651204190301,52.129165965554],[5.068646627944446,52.12923223989667],[5.06863923008667,52.129309175407194],[5.06863212187096,52.129378256163044],[5.068621552278453,52.129453502344745],[5.068612107158528,52.129528751561324],[5.068605518294488,52.12959052645018],[5.068593609286294,52.12965902798982],[5.068586616422245,52.12968119155316],[5.068583028220612,52.12970309467047],[5.068494645846351,52.12990536515418],[5.068430008617224,52.13004225791352],[5.068151350072784,52.13036619705907],[5.068085043025005,52.13044832106746],[5.068091190431035,52.13048119791681],[5.068068784043044,52.1305204599179],[5.067985676659471,52.130621628986624],[5.067939481264986,52.13066672273597],[5.067854553465089,52.130736437684746],[5.067822338614037,52.13077482821247],[5.067736840586979,52.13082823725488],[5.067653901937057,52.1308729527595],[5.067612250345602,52.13088913522306],[5.067586018760755,52.13088934278822],[5.067568836057243,52.130898562889406],[5.067525871844776,52.130906319986735],[5.067491699869941,52.13093037820885],[5.06740916589148,52.13095318183328],[5.06738888118016,52.130948920450244],[5.067361209828667,52.13095643132674],[5.067330779313264,52.13096786248262],[5.067266812333825,52.13097780055601],[5.06715926960889,52.130987054144505],[5.06704415666444,52.131001068720536],[5.066845490346167,52.13101907171088],[5.066814477971829,52.13101589561299],[5.066672239268244,52.13102646564738],[5.066582037903921,52.13103492094955],[5.066409776144977,52.13106113811394],[5.06627088856601,52.13108295180822],[5.066243545458148,52.13107725990672],[5.066151051002315,52.13108570864095],[5.066130222804927,52.13109408272579],[5.066066959943244,52.13110149643009],[5.066064673563736,52.13110261370957],[5.066056660667527,52.13110596240692],[5.066048199099899,52.13110874363675],[5.066039288796489,52.131110966386835],[5.066030150892744,52.1311123436423],[5.066020564253921,52.131113162417805],[5.066010969083482,52.131113136294886],[5.06600139252346,52.131112552964346],[5.065992041169732,52.13111111638377],[5.065982927430425,52.13110913217989],[5.065756669810404,52.13112536846013],[5.065722248065157,52.13112105928229],[5.06558999763614,52.13113783000309],[5.065556273974203,52.131129873541546],[5.065541535271319,52.13111804106771],[5.065493449535371,52.13113925651125],[5.065484544361748,52.131173215950994],[5.065474232413036,52.13117740321369],[5.06548944655236,52.131188113489145],[5.065404990353977,52.131224122868],[5.065387473701565,52.13121676782232],[5.065391831451194,52.131213975445554],[5.065358871092847,52.1311953432357],[5.06535200336768,52.13119785013501],[5.065323566668663,52.131218274238385],[5.065280815229256,52.13122883536303],[5.06527462782163,52.1312321889886],[5.065296124923671,52.13125668608838],[5.065299571177801,52.13125472711423],[5.06530860190588,52.13126823379278],[5.064819193173495,52.13147671389078],[5.064799246178538,52.13149042004766],[5.064784592892893,52.13149712102104],[5.064729880761265,52.1315216885531],[5.064698716125045,52.13153957941405],[5.064688950451097,52.1315328116988],[5.064688268119416,52.13153224358793],[5.064687577613348,52.131532807945874],[5.064674751890686,52.13153923527287],[5.064642892690246,52.13155824772336],[5.064597298203029,52.13158424225434],[5.064554201063372,52.13161024359759],[5.064514341182278,52.13163289225837],[5.064477668787044,52.13165301500209],[5.064432307782188,52.13167901010789],[5.06440753939569,52.13169495001372],[5.064372920509824,52.13171788260728],[5.064342155538911,52.13174308173182],[5.064321028515621,52.131762402094004],[5.064305769691268,52.131788200903415],[5.064290848445332,52.13180164210068],[5.064271081627697,52.13182068754803],[5.064256145755699,52.13183412870081],[5.064245328416837,52.13184758112621],[5.06424120011696,52.13185094033427],[5.06422854256915,52.131864387720526],[5.064209951824767,52.131880344496615],[5.064191813375273,52.13189434311874],[5.064173222605285,52.13191029988894],[5.064151195603492,52.13192681349248],[5.064135138747982,52.131937725925326],[5.064063328931415,52.13198976765776],[5.06404656972269,52.132004893538294],[5.064021776638501,52.132024203804484],[5.063990820663511,52.13204546555888],[5.063954146042142,52.13206783513953],[5.063921595698441,52.13208740275861],[5.063892018174142,52.132105864000614],[5.063863563968271,52.132128534709345],[5.063833497084468,52.13215204586522],[5.063804352292268,52.13217528091227],[5.063773383521037,52.132196263945595],[5.063744043640659,52.13221415955636],[5.063720215186881,52.132227288642845],[5.063687685281665,52.13224602036703],[5.063660900071437,52.13225802681843],[5.06364163435093,52.13227033251562],[5.063566580807088,52.13229821422707],[5.063495145839463,52.1323305998318],[5.063399691191953,52.132370217746235],[5.063233875865777,52.1324208864096],[5.063022070221857,52.132489395536],[5.062787153638794,52.13256459073995],[5.062569969361491,52.1326173642104],[5.062430083253517,52.13264702617355],[5.062256374899185,52.13268418969914],[5.062096591357253,52.13272250585721],[5.0619111910974,52.13276665630233],[5.061684659388936,52.13281714637668],[5.061511052093852,52.13284026979051],[5.061394113201708,52.13285341995589],[5.061271894034601,52.132871624663686],[5.061149025256303,52.13288476719188],[5.061030254270992,52.13289876579569],[5.060943250652111,52.13290666837427],[5.060860148079039,52.13291037528421],[5.060783690655753,52.132912123156146],[5.06069379987585,52.13290738040005],[5.060632921019399,52.13290187301186],[5.060589808303703,52.13289754726914],[5.060567067024695,52.13288765141006],[5.060521700857241,52.13288190828356],[5.060485921542331,52.13287338742531],[5.06047750858812,52.13286942737199],[5.060389005410495,52.132864688226086],[5.060345202444045,52.1328628861167],[5.060310281681573,52.13286278936289],[5.060284065145844,52.132858779963975],[5.060256027057108,52.13285420825367],[5.06021978091786,52.132849613787684],[5.060189482934204,52.132842510162966],[5.060167386895492,52.13283626515311],[5.059884480407457,52.13279644559656],[5.05984392116176,52.132786500161416],[5.059778113151761,52.13276805387373],[5.059712813246123,52.13274007266484],[5.059659414375512,52.13271042572467],[5.059627457557851,52.13267860027992],[5.059531980291545,52.13256738695157],[5.059448002437887,52.13244160893667],[5.059368346455038,52.132320049264386],[5.059330075061964,52.1322471938258],[5.059307360401515,52.13220191193653],[5.059276317577506,52.1321411564765],[5.059243531700283,52.132069161129074],[5.059213935977448,52.13199632976609],[5.059190876036298,52.13193644134883],[5.059184354955678,52.13192349843546],[5.059181021810641,52.131910007127935],[5.059184743079581,52.13190047219031],[5.05919485305331,52.13189206953066],[5.059191712344271,52.13188419627507],[5.059184037649024,52.13187321853195],[5.059173129410581,52.13186701342777],[5.059161731188699,52.13186388985322],[5.059152685855814,52.13185459804586],[5.059148484318157,52.13183605305146],[5.059148430073366,52.131811614455735],[5.059147927239337,52.13178660836679],[5.059144674646424,52.13176413824302],[5.059139637626463,52.13173406827421],[5.059128627961225,52.13171184621954],[5.059114151156971,52.131694387163975],[5.059101524635492,52.131673571730325],[5.059073889096115,52.1314591843483],[5.059068349909436,52.13143585399862],[5.059066420709691,52.13142012857272],[5.059073945636668,52.131387846531815],[5.059080257289166,52.13136764102476],[5.059082225168414,52.13134826831068],[5.059084259115497,52.13131989876466],[5.059080572459511,52.13129489280618],[5.059074166947753,52.13126623014617],[5.0590743670762,52.13123897900284],[5.059080945166412,52.13121232083241],[5.059086574535607,52.1311915471811],[5.059089871932835,52.13117807431033],[5.059084920180458,52.1311682276358],[5.059076972754896,52.13116258801413],[5.059052677305819,52.131115899536965],[5.059040373804176,52.131112773431866],[5.059003016709609,52.13110255797974],[5.058974836893656,52.13093255192182],[5.058956382560334,52.130772684444466],[5.058980354589597,52.13077190626683],[5.05896903450872,52.13057329326783],[5.058990947219329,52.1305725093586],[5.058956517458848,52.13022749795305],[5.058942310430924,52.13010977815393],[5.058944071664212,52.13008871511353],[5.058948756130837,52.13007130934692],[5.058947966222143,52.13005557809734],[5.058947659800478,52.130033673416726],[5.058950983960647,52.13001655148177],[5.058946061287744,52.13000276812314],[5.058946466232672,52.129979454301065],[5.058949684619281,52.12994492225814],[5.058950229870836,52.12990250926304],[5.058947293635803,52.129866827602754],[5.058942945399296,52.129836480902995],[5.05893773722153,52.12980192541204],[5.058929752440122,52.129769600213805],[5.058915412504702,52.12973360818978],[5.058900375900149,52.12969901635773],[5.058886954018141,52.12966330551354],[5.058879661829239,52.12963014635177],[5.058869845410067,52.12959866092558],[5.058859553766963,52.12957222544882],[5.058857674180155,52.12954778176299],[5.058856540754589,52.12951520598639],[5.058857791034139,52.12947026931423],[5.058856707210658,52.12943094366431],[5.058848311110702,52.12939299979441],[5.058833392446654,52.129344368975964],[5.058823123466882,52.129312873296485],[5.058814022406363,52.129277462085675],[5.058798502331466,52.12924708427818],[5.058782955457229,52.12922035553432],[5.058770650053239,52.129185771285655],[5.058755136183681,52.12915455760227],[5.058732357602248,52.12911826342781],[5.058717729030607,52.12912158421928],[5.058450686187054,52.12869559859684],[5.058046028008651,52.12839758652455],[5.057955932258686,52.12833076074749],[5.057945709371399,52.128324836065865],[5.057936830117363,52.12832088351272],[5.057892236040632,52.128304185103815],[5.057748654670794,52.12824816625991],[5.057679490641837,52.12822045172607],[5.057602373907558,52.12818990167766],[5.057536385344186,52.12816331943558],[5.057500178572729,52.12815394259853],[5.057421864883217,52.12812928523561],[5.057346962202677,52.12810549122127],[5.057271148078484,52.12808252150901],[5.057191021614662,52.12805617815975],[5.057189185820695,52.12805757515734],[5.057029828290209,52.128008261310704],[5.056866862821016,52.12798280936147],[5.055807148781347,52.12783181322266],[5.055258343354545,52.12783532150204],[5.054461232475335,52.12788953866582],[5.054334466965762,52.12789803425201],[5.054332917027049,52.12789045296534],[5.054143635030313,52.1279064836591],[5.054055797782735,52.127813829647636],[5.054035724368153,52.12781292808173],[5.054042171439058,52.12771211851436],[5.054046771652196,52.12770819474687],[5.054060291263539,52.12766947652084],[5.054062954681004,52.12761780284085],[5.054065828762601,52.12756921265139],[5.054067757633738,52.12752399929347],[5.054055556787147,52.12747790115699],[5.054058893552892,52.12736724988865],[5.054060786468449,52.127344488540494],[5.053860221689247,52.12734242096114],[5.053827640487569,52.12733663047539],[5.053804703642672,52.12733590952616],[5.053789411871296,52.127336153924205],[5.05377434751512,52.12733723485041],[5.053759279000037,52.12733887302109],[5.053744658959884,52.127341078703836],[5.053730251662511,52.12734412986152],[5.053716305429907,52.12734801820821],[5.053702809749931,52.12735219544412],[5.05368999411586,52.12735721947647],[5.053681759837628,52.12736084533867],[5.05359401106604,52.12740918653681],[5.053465699381317,52.12748017062606],[5.053337362276785,52.1275525476492],[5.053198522568357,52.12762911917307],[5.053089451191313,52.12768920091225],[5.05299527123267,52.12774201746728],[5.052488008667877,52.12801920835644],[5.05172949171835,52.128448479409315],[5.051312738226059,52.12867199438604],[5.051220413350348,52.128720320787714],[5.050710739669508,52.12897924246474],[5.050202024661783,52.12923225953943],[5.04965765454046,52.129493045923155],[5.04931415386446,52.129652445041835],[5.048851628680803,52.12986149328734],[5.048598882262936,52.12996974801812],[5.048493369403872,52.130011572035365],[5.048179288494133,52.13014211983509],[5.047864606446455,52.130263119778185],[5.047370497511419,52.13045044615619],[5.047137296931738,52.13053796473913],[5.046978218911404,52.130601833423924],[5.046892854595265,52.130634447454355],[5.04678415089888,52.13067485860598],[5.046696945755472,52.130709435562096],[5.046675204376486,52.13071836084005],[5.046592169287228,52.13074424035138],[5.046491760446439,52.130773170500056],[5.046382435666758,52.13080683846302],[5.046301002821684,52.130831320265315],[5.046182299175468,52.13086720794873],[5.046142954616744,52.13087860787888],[5.04609009074524,52.130898956738996],[5.046001280267129,52.130933249910505],[5.045853193348155,52.13099180997602],[5.045668929557379,52.13106570656823],[5.045497502113854,52.13113205415409],[5.04527776821666,52.131218493553526],[5.045099444857847,52.13129072571208],[5.04494404901722,52.13134982069999],[5.044759102306123,52.1314228690156],[5.044621521957777,52.13147836615034],[5.044463123907055,52.131540265041366],[5.044320271824207,52.13159938666242],[5.043987224756844,52.131731836561684],[5.043075746666381,52.132091228240974],[5.043021392382711,52.1321567991604],[5.042920193759253,52.132200320533045],[5.042452543088848,52.13238489028408],[5.041478056610108,52.13280335256867],[5.040481210323882,52.133277637667625],[5.040214985392891,52.133410551921244],[5.040188614671271,52.13351496022804],[5.04007172913775,52.1335803458369],[5.039608261499261,52.13383963413449],[5.039457222774294,52.133922328319784],[5.039243159259146,52.13403882018887],[5.039236274303312,52.134043293897776],[5.039168909245616,52.13407932594158],[5.039120988983106,52.13410727216301],[5.038960528702917,52.13419920457429],[5.038802571825836,52.13429030827317],[5.038634309361107,52.13438615395689],[5.038553599603438,52.13443450476348],[5.038422692241694,52.13451051609176],[5.038200114589831,52.13463737106004],[5.037971088579246,52.134768709523556],[5.037742983632048,52.13489976265342],[5.037520049319814,52.135026902898375],[5.037311443834947,52.135144530941815],[5.037117144559669,52.13525742842506],[5.036976832495134,52.13533819187221],[5.036821070326549,52.135425919931905],[5.036676652165102,52.13550863021769],[5.036658525693132,52.13551981139837],[5.036654975613598,52.13552176922869],[5.036458968585224,52.13563409430699],[5.036234530501609,52.135762072525345],[5.036068201843539,52.13585763268258],[5.035864975520142,52.1359719126533],[5.035779921889437,52.13602024862479],[5.035632539292243,52.1361023825556],[5.035486967243875,52.13618453068775],[5.035311649952718,52.136276692469615],[5.035264868590688,52.1363040832627],[5.034929721074023,52.136491265402476],[5.034723288736125,52.136622377400045],[5.034658322890882,52.13666993668886],[5.034136158147572,52.13698492461955],[5.033834945516567,52.137164906915636],[5.033106192975787,52.13758374819374],[5.032329170940143,52.138029412862544],[5.031286285225849,52.13862678853037],[5.030441222564513,52.1391135174935],[5.029837935212726,52.13946222478978],[5.029545477671978,52.139628183346105],[5.029317874855215,52.13976146870512],[5.02876874761054,52.14007044593956],[5.028244983802756,52.1403761362634],[5.027183054223769,52.14098464374623],[5.026640640357789,52.14129251704086],[5.026110912331493,52.141598736916755],[5.025329018241321,52.142049670446625],[5.024935511075759,52.14227485327228],[5.024598831568097,52.14247071074356],[5.024489752190809,52.14253694078297],[5.024472216711038,52.14268687903368],[5.024481225406444,52.14268747297406],[5.024474288534768,52.14281131561584],[5.02446332318786,52.14281240540823],[5.024404461081045,52.142865029075686],[5.024250113298979,52.142898259473],[5.024141094895213,52.14295859323208],[5.024015670959694,52.14302786441769],[5.023963051622453,52.14302770243726],[5.023735565981123,52.14315676199647],[5.023736422286501,52.143205920139096],[5.02340611348182,52.14337679813067],[5.02336208442033,52.14340165806393],[5.023370593937667,52.14342050522641],[5.023105636570736,52.143470245549516],[5.023037996654515,52.14347930345862],[5.022830326342351,52.14351573792418],[5.022812488705334,52.143519340963365],[5.022795216324697,52.14352349401512],[5.022778289852011,52.14352822336632],[5.022761809492926,52.143533780991184],[5.022746127905087,52.143539916314595],[5.022731113758088,52.14354661095514],[5.022716679327091,52.143553873630125],[5.022710134139277,52.143557502548916],[5.022047037231064,52.1439343514152],[5.021382988015069,52.144313728223665],[5.020836161875686,52.14462070728056],[5.020604100282859,52.14474806583324],[5.020302072621495,52.14491817812818],[5.019092351476559,52.14561042481206],[5.018883609461672,52.145775206950255],[5.018802520968939,52.14582186229377],[5.018403081470096,52.14605148982462],[5.01803782799997,52.14626128753079],[5.017616130296956,52.14650321027478],[5.017197767705094,52.14674232871845],[5.016846035321842,52.146942889493594],[5.016508505523126,52.147137597697146],[5.015994595322579,52.14743118466765],[5.015591925025993,52.14766108013151],[5.015305459045609,52.1478228068641],[5.015271736336634,52.147842357375886],[5.015189982627415,52.14784519153707],[5.014917364952778,52.14800162210234],[5.014542449891136,52.14821502763924],[5.014047870201289,52.14850023641408],[5.01368546987617,52.14870469078244],[5.013360996025261,52.14888988602969],[5.013123472917462,52.14902564332692],[5.012993840648954,52.14910134285219],[5.012758718486845,52.14923626215511],[5.011676049999537,52.14985945735758],[5.011327834742423,52.15005636373682],[5.01136324231847,52.150080070067695],[5.011182945562227,52.15018201302338],[5.010568340896442,52.150537605330385],[5.010218940226466,52.15073872003323],[5.009785508214739,52.15098113455277],[5.009090705038274,52.15138196896704],[5.008428497190109,52.15175931037237],[5.007862387439309,52.152085833174716],[5.007298801376701,52.15240843362162],[5.006976913737644,52.15259249613338],[5.00659811889541,52.15280979168532],[5.006371439319398,52.152940510107506],[5.006166115941599,52.153054723150916],[5.005732944498475,52.15330246250688],[5.005019310181011,52.1537079847054],[5.004236321159688,52.154158496243575],[5.003562729544045,52.15454841953423],[5.003562037986605,52.15454897454298],[5.003561360964029,52.15454953858703],[5.002876638914708,52.154957946075946],[5.001680376231003,52.15577504537495],[5.00084138617598,52.156447526149954],[5.000204779427398,52.15702909490274],[4.999596665686379,52.15765457933858],[4.999169129081237,52.158150885566954],[4.998795808995135,52.158634443911986],[4.998644058559196,52.15884600753087],[4.998526384208435,52.159025946513644],[4.99852616015312,52.159026503032436],[4.998525921405976,52.159027068490886],[4.998186520342513,52.159561015504856],[4.998068037387033,52.15976622563729],[4.997949834848566,52.15999278309528],[4.997802745079958,52.160297323961025],[4.997528267212612,52.160939060681535],[4.99732699577321,52.16152458488914],[4.997163255312404,52.162166407791474],[4.997004060298099,52.16301833109127],[4.996915682697501,52.163514635173094],[4.996915560904676,52.16351519202665],[4.996915555953559,52.16351575825462],[4.996852817178994,52.163901190114395],[4.99676142568465,52.16442752195486],[4.996673834136854,52.1649252304772],[4.996603791332978,52.165334788716166],[4.996520165948978,52.16578307616989],[4.996462640091949,52.1661182460624],[4.996437181993532,52.166261412545715],[4.996435560754343,52.166277972064485],[4.996435298718336,52.16629454507125],[4.996435942871186,52.166311121078145],[4.996437975540517,52.166327701682],[4.996441133640537,52.16634428601176],[4.996445448922531,52.16636058655641],[4.99644990324721,52.16637436193288],[4.996499661598403,52.16654586491645],[4.996500211856532,52.166549794494266],[4.99650015772484,52.16655597805964],[4.996498849131882,52.16656186985644],[4.996496400487702,52.16656775787939],[4.99649291410412,52.166573642467114],[4.996488307162783,52.16657896608928],[4.996482664920532,52.166584007656034],[4.996476106823382,52.166588479946654],[4.996468776592486,52.166592662064765],[4.996406875403052,52.166619421128914],[4.996391384083888,52.16662752195294],[4.996376691841345,52.16663617368895],[4.996362915367714,52.166645403687596],[4.996349925794589,52.16665490593047],[4.996337954381807,52.16666497778768],[4.996326901335974,52.166675331313],[4.996316881067174,52.16668625450163],[4.996307866862629,52.16669745964936],[4.996299887955087,52.166708946853184],[4.996292929650389,52.166720725052684],[4.99628724050147,52.16673278608318],[4.996282443009961,52.16674484107868],[4.996281629100162,52.16674765162714],[4.996177925482884,52.16699615887925],[4.996167090179496,52.167021684855065],[4.99615725849852,52.167047771410935],[4.996148698336844,52.167073871166636],[4.996141161378617,52.167099965323686],[4.996135846488231,52.167121015586446],[4.996095188595423,52.16734221036787],[4.996092597135002,52.16736438416422],[4.996091145664964,52.16738657072592],[4.996090951196269,52.167408761452755],[4.996091779869688,52.16743095556982],[4.996093880243058,52.167453144912706],[4.996096991508403,52.167475067965135],[4.996100943502852,52.16749445918733],[4.996139696432738,52.16768418044908],[4.996139691549928,52.16768473768886],[4.996135962374004,52.16770663807536],[4.996085484315689,52.16800588802939],[4.996074867847627,52.168006410105626],[4.99603304657826,52.16825681197431],[4.995989290666786,52.16850608390646],[4.995948042079298,52.1687444077549],[4.995933462344057,52.16881682965042],[4.995734216506574,52.16982984428085],[4.995582052602884,52.17064218688018],[4.995505798256977,52.17095118379501],[4.995471118764571,52.17094685333998],[4.995465029973956,52.17097604411503],[4.9954650275281,52.17097632273474],[4.995454761960982,52.171015053885434],[4.995448110484449,52.17104339792037],[4.995463185883993,52.17104457145222],[4.995450876538737,52.17119788375745],[4.995438740365646,52.17127817816951],[4.995428867076364,52.171362129215396],[4.995417937055472,52.171463207868],[4.995405698316195,52.171568488555025],[4.995391393231664,52.17167601836641],[4.995373113280129,52.171795048599215],[4.995355821472702,52.17196801006521],[4.995300204990945,52.172423408797314],[4.995276380569304,52.172666005483116],[4.995240334859306,52.17293355717824],[4.995204755536137,52.173187907040855],[4.9951684052776,52.17342513219969],[4.995123056871759,52.17368646919376],[4.995076923582468,52.173945565542994],[4.995010109023516,52.17433547625742],[4.994968538307796,52.174569313471636],[4.994908532145436,52.17487301595065],[4.994802470575258,52.175504635848846],[4.994773085709399,52.175753954820806],[4.994751127408104,52.17594009494072],[4.994750302788175,52.175969024529564],[4.994741819717298,52.17606252531929],[4.994722731223548,52.176610450403274],[4.994721677632787,52.17667870166601],[4.994725937445131,52.176934028551656],[4.994728064930332,52.17699133403241],[4.994733840421401,52.17716577407688],[4.994743900785047,52.177268612096796],[4.99474766244424,52.177372831299756],[4.994767812269846,52.17756192459196],[4.994792180760175,52.17776508011679],[4.994804271455973,52.17784488866607],[4.994822081365718,52.17796262753892],[4.994861108928316,52.17818802308887],[4.9949076068685,52.17842018442842],[4.994912675000677,52.17844238361246],[4.994954826002167,52.17863688880511],[4.99500879049324,52.17885137755568],[4.995078556798619,52.1791145077915],[4.99513770141984,52.179298679230676],[4.99525935759106,52.17975325487885],[4.995320121415323,52.1799862992285],[4.995365913695981,52.18015778909652],[4.995446535971269,52.180458866375474],[4.995470974279619,52.18055136187562],[4.995621634225735,52.18111051852374],[4.995709171081274,52.181432129065925],[4.995734268277273,52.181526307430254],[4.995735227495522,52.18153529858884],[4.995773317427795,52.1816851286427],[4.995859202515552,52.182000271204245],[4.995915527709971,52.18220662411363],[4.996046328289536,52.18268734804927],[4.996080555255961,52.182811046112946],[4.996299572354185,52.18361394826248],[4.996347729382083,52.18377673610678],[4.996400212520324,52.183966502167486],[4.996441858713877,52.184129825664044],[4.996487611608853,52.18429176060749],[4.99653075735399,52.184452563404136],[4.99654806486675,52.18451160873974],[4.996558705619945,52.184562192307084],[4.996564799084456,52.18460940831356],[4.996566100507771,52.18466951519264],[4.996558929579379,52.18474533197833],[4.996546008190445,52.184811566532694],[4.996514897930943,52.18489432370606],[4.99647815889321,52.184966950773706],[4.996420984322508,52.185052147280054],[4.996386546879214,52.18510905298495],[4.996355603541079,52.185172702237445],[4.996327268839162,52.18525069593283],[4.996308685076162,52.18535230634246],[4.996308854539071,52.18544977246725],[4.996334119000603,52.18553861232875],[4.996381568838195,52.18570392337809],[4.996431780678653,52.18589283696767],[4.996492360290293,52.18611015986119],[4.996538273143267,52.186280795608305],[4.996593507973821,52.18648405255091],[4.996636551497518,52.186643452780224],[4.996696007419826,52.18685907309275],[4.996751450668225,52.187063741738065],[4.99680603705297,52.18726278104735],[4.99685701752558,52.18745450118387],[4.996902548571738,52.18761727999665],[4.996944415424487,52.187767679231776],[4.996990266135765,52.1879341081716],[4.997086021969702,52.1882967565108],[4.997162986812548,52.18857591637093],[4.997247060448902,52.18887841442648],[4.997311523898544,52.189124115613076],[4.997342078958523,52.18924892452277],[4.997385748124467,52.18927209587151],[4.997413717061036,52.18928623639717],[4.997427849551284,52.18930398035452],[4.99743999550002,52.18932648137374],[4.997448246581714,52.189349544764646],[4.9974663485593,52.189421786862546],[4.997490723148404,52.1895092213445],[4.997515287738445,52.18960002693353],[4.997535249757724,52.18966862604259],[4.997537110508703,52.18969165934794],[4.997400048427697,52.18960863450631],[4.997501627776022,52.18986962077563],[4.997535459387185,52.18999781091722],[4.997568906499863,52.19011981605801],[4.997590710706036,52.19020022242574],[4.997619301656848,52.19030227622068],[4.997668115680012,52.19048163029163],[4.997690760876408,52.190479179379615],[4.997760038173777,52.19072179527432],[4.997875576903301,52.191151639101975],[4.997998485827487,52.191586836933695],[4.99814561954123,52.1921389579029],[4.998240268293335,52.19248811042105],[4.998343316540772,52.192870438092484],[4.998473077585928,52.193346103653845],[4.998692864566007,52.19413861212009],[4.998811754976705,52.194590369408544],[4.998908663804309,52.1949431867478],[4.999024432054862,52.195360941037265],[4.99908464383464,52.19561167818543],[4.999173496616225,52.19593104255566],[4.999325030047023,52.196468291974256],[4.999440681542889,52.19690037213717],[4.999561032551551,52.19734398114134],[4.999657604813882,52.19768471675679],[4.999772117137572,52.19809039514029],[4.999884154667007,52.19850674294554],[4.999978089262188,52.19887386717149],[5.000056713890674,52.199149659504094],[5.000107824140821,52.19933127574486],[5.000129332750662,52.19939454050727],[5.000138725529412,52.19943136795179],[5.000148847291102,52.19946341619649],[5.00016202358829,52.199485650624574],[5.00017286694094,52.199500291577465],[5.0001910042206,52.19951720342014],[5.000214078056089,52.19953160582399],[5.000238539036686,52.1995429209147],[5.000265988822594,52.19955367955275],[5.00029220262712,52.199561908521616],[5.000323457752568,52.19956903949504],[5.000349942134236,52.199571373244005],[5.00037897404254,52.19957174697131],[5.000409156545756,52.19956932022052],[5.000439460972172,52.19956632762063],[5.000472793084804,52.19955829370177],[5.000497078538209,52.199551066028654],[5.000519116256359,52.199539903257545],[5.000555824614975,52.19952373729024],[5.000574790919946,52.19953783856032],[5.000628493736583,52.19957762425233],[5.000677318636798,52.19961316961853],[5.000726611675357,52.19964871649616],[5.000765787642329,52.19967694102182],[5.000765212363708,52.199677496392034],[5.000732618925539,52.199694808372065],[5.000705981069471,52.19970848174047],[5.000686332389365,52.19972077585895],[5.000666125403521,52.199731666027006],[5.000626479414611,52.1997576552259],[5.000605226614512,52.19977106757315],[5.000589697788938,52.199782251669205],[5.000555414966056,52.19980881565485],[5.000533408869818,52.19982981134989],[5.000517499729046,52.19984436467123],[5.000501812421579,52.199862010570534],[5.000489908630756,52.199876855630144],[5.000482875491977,52.19988498466654],[5.00047219795838,52.19990348284637],[5.000454382410574,52.199928707596705],[5.000434043820711,52.19996824188007],[5.00042510691108,52.19999685719619],[5.000413600437201,52.20001816588282],[5.000403751655259,52.200033862531235],[5.000389063722007,52.2000543249158],[5.000366221358546,52.200078957958354],[5.00034402245891,52.20010866230619],[5.000334514933521,52.200125483559916],[5.000330582769034,52.200143725197464],[5.000334739374568,52.20016536381348],[5.000310263434612,52.20016753061536],[5.000348528272308,52.2003142763387],[5.000366139343081,52.20031264429447],[5.00038001085708,52.200347518023605],[5.000396883356728,52.20037875247423],[5.000415659823439,52.200401283838595],[5.000439706944639,52.200421585475155],[5.00046277891136,52.200436266447035],[5.000482003881139,52.20044588359103],[5.000500421999545,52.200457457462015],[5.000508033026962,52.20046197635731],[5.00051084393162,52.200466758160786],[5.000513642649786,52.20047463177758],[5.000538394962483,52.20057217810825],[5.00059921434716,52.20079342675871],[5.000644380051998,52.20094917391458],[5.000666275691253,52.20104558736509],[5.000667353495112,52.201066371021284],[5.000665788473253,52.20107647733672],[5.000661936694845,52.20108545267417],[5.000656695293477,52.201096113196655],[5.000640934584184,52.20112218057536],[5.000615539274488,52.20115102963983],[5.000607443098045,52.20116195944111],[5.000600234386679,52.20117681987882],[5.000597589418144,52.20119169525644],[5.000597150685762,52.201201805257895],[5.000600329813672,52.20121811080886],[5.000610391322656,52.20124369647278],[5.000619921260177,52.20126479541132],[5.000630909150344,52.201289826853156],[5.000638359441648,52.201299405425594],[5.000647564994709,52.20130561926381],[5.000657484922677,52.201308734598754],[5.000663079905717,52.2013095977787],[5.000668679797871,52.20130989473396],[5.000673328864465,52.20131356804396],[5.000675762034993,52.201323121204766],[5.000680211336406,52.20133633905756],[5.000690814317944,52.20137877888177],[5.000778092991497,52.20168662295856],[5.000823033607773,52.20185501531797],[5.000867240600066,52.20201526217802],[5.000905011484941,52.202153566370846],[5.000918389331059,52.20220501217498],[5.000917192378934,52.20221147059073],[5.000915595691268,52.20222354516331],[5.000914788954312,52.20223899279831],[5.000913494673123,52.20225499609096],[5.00091348515334,52.20226960146688],[5.000924361555912,52.202307548185026],[5.000938977992466,52.202361245022175],[5.000948223188233,52.20238992882134],[5.000958838591955,52.20241748462022],[5.000970416836917,52.20243859022412],[5.000980251861977,52.202451538062085],[5.00098592018333,52.20245746167766],[5.000988497219574,52.202462242702815],[5.000990284354336,52.202467021144706],[5.000995260583274,52.202486981662545],[5.001054149045566,52.20270710018516],[5.001109785442925,52.20290754242039],[5.001148357466991,52.20304641536948],[5.001160380281279,52.203095609721956],[5.001160217026759,52.203102637758455],[5.001156584592104,52.203111613825996],[5.001153434880979,52.20312059147136],[5.001152503950526,52.20313518484496],[5.001153564621412,52.20314446386757],[5.001158299711959,52.20316525946605],[5.001175810797096,52.20322767504143],[5.001204162021926,52.2033187706122],[5.001212066322514,52.2033300313728],[5.001220463004478,52.203336799771606],[5.00122783330961,52.20334384344158],[5.001230751771058,52.203349749069005],[5.001233741039143,52.20336099376461],[5.001312301000395,52.203646060349364],[5.001369597790627,52.20385268256356],[5.001429909030511,52.20408123617279],[5.001462165427928,52.20419789713335],[5.001496389725371,52.20432384006265],[5.001529504762479,52.20444613025308],[5.001569785641094,52.20457209293297],[5.001611932620712,52.204720810160964],[5.001736374111562,52.205185218691],[5.001792913836911,52.20538679593054],[5.00183351921772,52.20554140411049],[5.001890193976241,52.2057426941153],[5.001944791932426,52.205943977309985],[5.001989304719144,52.206110399324835],[5.002041457721883,52.20630353141523],[5.002124024848418,52.2066034943762],[5.002196745897622,52.20686466020181],[5.002263659209754,52.207110644394355],[5.002348470906659,52.20742717922633],[5.00243858489036,52.20775160468005],[5.002513205194693,52.208032154419456],[5.002614157247904,52.208399586302846],[5.002712252570803,52.20875408412678],[5.002803694615372,52.20909817014158],[5.003016814448593,52.20987407255382],[5.003221476148545,52.2106238280406],[5.00332686435576,52.21100755966501],[5.003408361624031,52.21131313541453],[5.003506082358118,52.211673527228555],[5.003616775053295,52.21206710853345],[5.003692853723424,52.21235160771354],[5.003750792652691,52.21256609492085],[5.003805910363626,52.2127769328234],[5.00386863830833,52.213004638759394],[5.003925091420446,52.2132202535087],[5.00398187320093,52.213423232267274],[5.004022381248176,52.213577272884216],[5.004084684444644,52.213803584161866],[5.00414790516442,52.2140287658933],[5.00421526452992,52.21427812053397],[5.004265187923314,52.214467307378314],[5.004341566887824,52.21474505704436],[5.004416634079403,52.21501550420244],[5.00448420167376,52.2152682207959],[5.004522842977363,52.21540148405091],[5.004559963175587,52.21553810384416],[5.004598203149857,52.21567726184228],[5.004638902237652,52.215823168727844],[5.004669480307501,52.2159378637277],[5.004734515501634,52.216177377663996],[5.004803240003247,52.21642869564489],[5.004847895686169,52.216594559434355],[5.004882062872631,52.21671572829126],[5.004912876157938,52.21682873423968],[5.004940547664536,52.216934431821485],[5.004967406049996,52.21702917049216],[5.004999083593437,52.21714723940472],[5.005029202490335,52.217261087930105],[5.005075019312568,52.2174367881426],[5.005147973174427,52.21770216765174],[5.005180676196153,52.217821920556105],[5.005208050686852,52.21792144239489],[5.005234291399458,52.218021796435245],[5.005262387620212,52.21811738388412],[5.00528827491289,52.21821802437901],[5.005315569173698,52.21831501133326],[5.005335441513095,52.21838501054218],[5.005362816924467,52.21848621307647],[5.005384524725088,52.218567453100874],[5.005411802544319,52.218666408325944],[5.005432070835566,52.218741468988945],[5.005490038305878,52.21895456202522],[5.005520073932943,52.21906475203297],[5.005553020237795,52.21918366971048],[5.00559394290616,52.2193315452362],[5.005633631294762,52.21947491381193],[5.00566321868208,52.219584554060795],[5.005694284440162,52.21969587981398],[5.005727078350733,52.21981732253857],[5.005754247852917,52.21991543244534],[5.005782296078531,52.22001860537562],[5.005808269872755,52.22010940423275],[5.005839400332296,52.22022522410036],[5.005866541659792,52.22032839407626],[5.005901552069443,52.22045770831386],[5.005930295990206,52.22056003857926],[5.005991613233185,52.22078240863631],[5.006013886782712,52.22086449519565],[5.006046859788142,52.22098059956113],[5.00607645879263,52.22108911622097],[5.006101168058482,52.22118075577733],[5.006136442780248,52.22130670030895],[5.006158728846136,52.221387384758465],[5.006204082380775,52.22155324112783],[5.006218830893729,52.221606658898864],[5.006230841128812,52.22164657698497],[5.00624787263013,52.22170000211375],[5.006261156386203,52.22172448307497],[5.006272795001943,52.221739404582344],[5.006284689551548,52.221753491038214],[5.006299423212738,52.221767577659186],[5.006313739446545,52.221779137329975],[5.006323386928886,52.221787311480554],[5.006335200195143,52.22179550160082],[5.006346020608238,52.221801711179026],[5.006356931133935,52.221807651409456],[5.006368897858143,52.2218132984428],[5.006381205857081,52.221818398312585],[5.006398753165911,52.22182519580898],[5.006418349265634,52.22183199990667],[5.00643591843908,52.221837952604545],[5.006456090044856,52.22184420130051],[5.006477078867043,52.22185072226405],[5.006498623717841,52.22185725400358],[5.006553706814548,52.22187456245748],[5.006578891044494,52.221883352886096],[5.006597704368347,52.22189099929519],[5.006622637734343,52.22190174827029],[5.006636875325576,52.22190882268158],[5.00664426874354,52.22191361907844],[5.006651860107075,52.221920941714785],[5.006656592965572,52.22192882138085],[5.006658125971733,52.2219378142277],[5.006640615708045,52.22195237216035],[5.006622764163037,52.22196747725335],[5.006598006208034,52.221989301024244],[5.006579447554373,52.222006659797586],[5.006562027977308,52.2220243008633],[5.006544608386434,52.22204194192641],[5.006526491649216,52.22206238496787],[5.006509279839351,52.222083109547846],[5.006491117180717,52.22210721051458],[5.006474681424326,52.222131308056014],[5.006461333211907,52.22215373480725],[5.006453220472524,52.22216803538604],[5.006439365811858,52.22219663519537],[5.006425128845147,52.222230581576135],[5.006415386391575,52.22225919463695],[5.006407160591685,52.22228500835833],[5.00640156412433,52.22231139679271],[5.006398019187764,52.22233918496551],[5.006393476980119,52.22238776794255],[5.006393058291239,52.22241107223828],[5.006393405739465,52.22243720120662],[5.006395728443048,52.222459957088695],[5.006398770150867,52.22247906619774],[5.006405916193422,52.222511104160034],[5.006413637945013,52.22254427645375],[5.006421920926698,52.2225785650563],[5.006438138711281,52.22263480073962],[5.006456719945684,52.22270732113775],[5.006480012775919,52.22279193646366],[5.006513169457551,52.22291254418608],[5.006540999213009,52.223014305066876],[5.006571001687047,52.22312899754923],[5.006592535180187,52.22320546413367],[5.006608939454402,52.22326561911423],[5.006633371911813,52.223350525684495],[5.006678153323091,52.223515265461266],[5.006713777276357,52.22365384788005],[5.006758712641806,52.22381605352238],[5.006801813928814,52.22397712974832],[5.00684656060365,52.22414608465537],[5.006896430444696,52.224318417508144],[5.006936580972392,52.22447723719313],[5.00699495444958,52.2246976287225],[5.007027588790293,52.22481288676893],[5.007066293225746,52.22495261143297],[5.007102961005252,52.22509091842682],[5.007150771685115,52.22526296588819],[5.007191468952173,52.22541279931155],[5.007224156408799,52.2255339625093],[5.007248476642001,52.22561858093833],[5.007254902920907,52.225642473474274],[5.00725512988322,52.22564331906701],[5.007269751959161,52.22569813836763],[5.007274621316283,52.22571753194413],[5.007300348043996,52.22581058553442],[5.007320188501673,52.2258850781487],[5.00734457592382,52.225975592831304],[5.007371079168533,52.22607201936095],[5.0073949172286,52.22615832592557],[5.007408883184248,52.226211174743405],[5.007478404470517,52.22646530641914],[5.007506585063515,52.22656763436257],[5.007534507403376,52.22667108495471],[5.007558461124287,52.226759351209495],[5.007586873569815,52.22686027776012],[5.007622245323313,52.22698959247359],[5.007649497315617,52.227092762250884],[5.007676348395108,52.227189747056805],[5.007701255060006,52.22728476624682],[5.007727444809098,52.22737865707561],[5.007757162091433,52.227488009424704],[5.007815751476925,52.227697732468144],[5.007865409069757,52.22788214383775],[5.007911739962383,52.22805334127727],[5.007950099349871,52.22819642592334],[5.007985788270991,52.228328276097194],[5.008022172833683,52.2284609643637],[5.008060052626385,52.22860544953469],[5.008095446248158,52.22873251715535],[5.008147458735272,52.22892255335826],[5.008186127250873,52.2290673286181],[5.0082320573576,52.229234309280734],[5.008310325023885,52.22952301783142],[5.008346171719674,52.22965205515464],[5.008374881473179,52.2297580336051],[5.008399038875017,52.22984855624736],[5.008402932359894,52.229862329197466],[5.008430689406072,52.22995988291785],[5.008464790542366,52.23009116157093],[5.008503690549137,52.23023649468305],[5.008543735213508,52.23038323355792],[5.00857188453252,52.23048809564935],[5.008604613245779,52.23060700250789],[5.008640568930717,52.23073547382452],[5.008667524717273,52.23083442701544],[5.008701765771248,52.230963180426556],[5.008695237586133,52.23096315951322],[5.00870658623762,52.23101431001622],[5.008715670336442,52.23104945481408],[5.008738398205438,52.231132665626426],[5.008741740143341,52.23114418982183],[5.008748048548436,52.23116836049614],[5.008754277963464,52.23118804595861],[5.00875649729167,52.23119731958452],[5.00878151847957,52.23129317470837],[5.00880080962308,52.231365705869045],[5.008804779562177,52.23138257088142],[5.008934713459227,52.23186411777651],[5.009064146043984,52.23233779847167],[5.00919024665952,52.232800799693],[5.009333296633979,52.23332817227414],[5.009437792618886,52.23371049167262],[5.009546227162066,52.23411192279752],[5.009678566098109,52.23459656811971],[5.009790435599867,52.2350112131252],[5.009913120548647,52.235460999202786],[5.009970999688238,52.23567576975081],[5.010080048360937,52.23607495521029],[5.010182855916423,52.23645417650913],[5.010278232344772,52.23680697657275],[5.010387828513741,52.237207853121674],[5.010484981147017,52.23756739054996],[5.010587745302337,52.23794043656546],[5.010692917214793,52.238325003608495],[5.010791768509689,52.2386868020704],[5.010925219077516,52.23917650025993],[5.011136988949218,52.23995519207263],[5.011138217189073,52.23995884505955],[5.011240395294279,52.240334971296484],[5.011356867593277,52.24076451288602],[5.011458532384323,52.24113250321105],[5.011553395775776,52.2414808063303],[5.011652187640422,52.24185130390533],[5.011760119220901,52.242249360262136],[5.011853347738318,52.24258894861624],[5.011939644789093,52.24290857077396],[5.012058291508033,52.24335272363517],[5.012156254794496,52.243686987906464],[5.012196585572223,52.24382868384204],[5.012311346599168,52.244260178100234],[5.012364716980584,52.24445667841335],[5.012457773298475,52.2448021616282],[5.012613934536327,52.24538490878466],[5.012728802752368,52.245804610754654],[5.012817318972103,52.24613519529573],[5.012909784370733,52.24649780703246],[5.013041775898373,52.24696278976536],[5.013213109658317,52.24762028203428],[5.013338093656215,52.24807653291148],[5.013487550566052,52.248630325375835],[5.013522788321416,52.24875177292949],[5.013579090126048,52.24895445643727],[5.013640409481066,52.2491874897995],[5.013822309145847,52.249854855979294],[5.013964441478966,52.25036845775194],[5.014099017294486,52.250870234386106],[5.014221248081578,52.251314674268],[5.014378073290369,52.25189179399004],[5.014492312319631,52.252308408849714],[5.014583216181959,52.25264377169422],[5.014636820139852,52.252828748940416],[5.014740113817579,52.253227353268585],[5.014792965042581,52.253420192420585],[5.014801381400513,52.25345224265998],[5.014841254341714,52.25359645255623],[5.01490151186519,52.2538196579676],[5.014978223209259,52.254101614818005],[5.015051545939716,52.25436332927841],[5.015110120257543,52.254583158803236],[5.015186300100478,52.254858930158385],[5.015287436287219,52.25522943102734],[5.015348836445669,52.25545488669116],[5.015360821132091,52.25549817392704],[5.015405728468988,52.25565729227412],[5.015445460017427,52.25580487189764],[5.015489826587029,52.25597269772707],[5.015531358372693,52.25612224232417],[5.015571701767596,52.25626505126715],[5.015622874698539,52.25645452319192],[5.015666563686186,52.256621214332995],[5.015712078985542,52.25678847742633],[5.015756950824422,52.256950399693025],[5.015816705443412,52.25716826411776],[5.01588266586522,52.25740777275526],[5.015938310286177,52.25760932922101],[5.016002626959418,52.257842370345365],[5.016031593218305,52.25795003682694],[5.016066873453789,52.25808215208655],[5.016123699469547,52.25829326622493],[5.016182803796046,52.2585052323351],[5.016320924322887,52.25901291272532],[5.016418761933349,52.25937020779651],[5.016502370859867,52.25967745877313],[5.016577284934338,52.25995603815792],[5.016719993856296,52.26047665682624],[5.016813277065385,52.260818765711306],[5.016921885638443,52.26121513715169],[5.017019711869629,52.261574957105],[5.017074816364709,52.26177398558343],[5.017131682252226,52.2619814411462],[5.017194301718981,52.26221222913243],[5.017256280692128,52.262439087384834],[5.017258493319457,52.26244780352352],[5.017274283384788,52.262447852937385],[5.01735932779552,52.26277589646446],[5.017659920515872,52.2638837423979],[5.017935343577882,52.26489488948525],[5.01817909969112,52.265792186877206],[5.01830059052057,52.26624027686639],[5.01844478493337,52.266766793405694],[5.018627181879881,52.267433863636874],[5.018801335443261,52.26807451055602],[5.019025896957132,52.26890377085361],[5.019208453998598,52.2695677575578],[5.019396245634785,52.270263774796696],[5.019492844704185,52.270624433045455],[5.019644914521285,52.27118355297325],[5.01973082999386,52.27149362124998],[5.019806484243436,52.271770789098454],[5.019955274991655,52.27231276751627],[5.019996022478924,52.272465129761606],[5.020049453452643,52.27266246148199],[5.020105422948075,52.27282919752981],[5.020138849233611,52.27291187239775],[5.020160053177157,52.2729647416581],[5.020206231207528,52.273069925635646],[5.020238081647919,52.27315007899056],[5.020269967680272,52.27323836642087],[5.02029081614024,52.27332016633551],[5.020318132604908,52.273422487527405],[5.020351562493159,52.273533258252],[5.020376314714765,52.273612535694404],[5.020398328964686,52.273663160463514],[5.020436575206689,52.27373181121506],[5.020476297555991,52.27378670618415],[5.02051735875593,52.27383205124229],[5.020580710058443,52.27389459618343],[5.020655300615905,52.27395521658975],[5.020725309395411,52.27400289826663],[5.020811812676092,52.27404922891711],[5.020872774837809,52.27408172002497],[5.020911918035664,52.27409672512048],[5.020946934151659,52.27411116017392],[5.020982660512038,52.27412475256212],[5.021018945941047,52.27413806804864],[5.021055824401143,52.27415054050575],[5.021093147009895,52.274162457081964],[5.0211299222023,52.27417323948668],[5.021160984824546,52.274182044850654],[5.021192625814956,52.274190007142195],[5.02122461074915,52.274197125635176],[5.021256951911321,52.27420368797743],[5.021289649374332,52.274209685181134],[5.021322688411734,52.2742151261882],[5.021331147703632,52.27421627584225],[5.021376191767556,52.274222868471796],[5.021419645635746,52.27422862928549],[5.021420905659721,52.274228633183625],[5.021421474775312,52.27422891356656],[5.021466984585878,52.274234105503055],[5.021510904269799,52.274238456636986],[5.02151159288771,52.27423845876687],[5.021580895144442,52.27424569257671],[5.021685438063507,52.27425612710433],[5.021744791193419,52.27426164933886],[5.02182668226189,52.27427032401424],[5.02192699788768,52.274279909397585],[5.022048973784884,52.27428533731944],[5.022068182634843,52.27428708635115],[5.022140108531683,52.27429600865645],[5.022218550505786,52.274307206974335],[5.022253299381084,52.27431321024341],[5.022325422853036,52.274326635940824],[5.022387473078144,52.2743391856589],[5.022448947288402,52.27435229979965],[5.022452548044383,52.27435988763584],[5.022492828064534,52.27436142297781],[5.022496484235837,52.2743479525333],[5.022532965821085,52.27435171411089],[5.022569691043734,52.27435435295173],[5.022899321856692,52.27435873949101],[5.02289936093453,52.27435396708178],[5.023010160918931,52.274355431900375],[5.023031779596281,52.27435634334356],[5.02304858884788,52.27435948692395],[5.023065480065662,52.27436514734244],[5.023082921879574,52.274373353005736],[5.023096013176753,52.2743832170025],[5.023106902945222,52.27439533015986],[5.023112741128897,52.274408829859716],[5.023113670163343,52.27442063372097],[5.023113481728805,52.27444365992144],[5.023112495643229,52.27456415651213],[5.023111479755515,52.27473126381177],[5.023111098705904,52.274903154577984],[5.023109312807764,52.27507841144257],[5.023108285343819,52.27524692977716],[5.023107051948565,52.275327816296446],[5.023106774302128,52.27551571465615],[5.023105134954262,52.27554773318439],[5.023101983622423,52.275947114893896],[5.023101407560036,52.275947679352136],[5.023101402926041,52.275948245570014],[5.023101158391926,52.276019302457605],[5.023093609687059,52.276621174959246],[5.023095340469794,52.276730166481535],[5.023094198990878,52.276814136080354],[5.023087502148525,52.27694668566062],[5.023082463982854,52.27698936224417],[5.023059021973217,52.277112593818835],[5.023042238264713,52.277176014042844],[5.022995827526439,52.27732164438352],[5.022970552299031,52.2773895413318],[5.022861413638216,52.27763158833207],[5.022750516572732,52.277866340690224],[5.022727062382194,52.2779193503948],[5.022700870205842,52.27798639959894],[5.022673243958956,52.278062144574186],[5.02264939021918,52.278137065306986],[5.022632169714781,52.278198237163814],[5.022614632657132,52.27827120903368],[5.022607201439787,52.278310795390745],[5.02259557510087,52.27839023872777],[5.022587307509601,52.27847644226342],[5.022581582634317,52.27860282015062],[5.022578161609603,52.27880924156363],[5.022572457203152,52.27932462077047],[5.022567402488093,52.27960519550501],[5.022567480704193,52.27970827689181],[5.022560419222496,52.280122817642],[5.022555186927732,52.280439334017],[5.02255518228617,52.28043990023443],[5.022555177644606,52.280440466451786],[5.022550225627927,52.28086400145348],[5.022524614320051,52.28252048231378],[5.022519094961812,52.282732523465675],[5.02251948836097,52.28281144655606],[5.022513297822398,52.28321615709521],[5.022508789019224,52.283417532817495],[5.022503260447277,52.28381297893101],[5.022489413539375,52.28459375119289],[5.022488358772391,52.284722381296376],[5.022484919148341,52.28493273906754],[5.022484916863658,52.284933017682214],[5.022484912220591,52.28493358389906],[5.022479082081788,52.28542115387968],[5.022475359571822,52.285539107221425],[5.022473943072922,52.28571183929956],[5.022465208652737,52.28621933517938],[5.022462580227841,52.286287859007246],[5.022456778738472,52.28673077759092],[5.022447014279676,52.28718153924531],[5.022431228826274,52.28830917985212],[5.0224257113916,52.28852262287069],[5.022423140933196,52.288723429149215],[5.022412232382834,52.289426132818825],[5.022410571015683,52.289475003292246],[5.022404060231581,52.28993279420918],[5.02240012857188,52.290063662255314],[5.022398064183015,52.29031531395169],[5.022394310478682,52.290549551080936],[5.022391971479363,52.29061133490393],[5.022389609125226,52.290774231258965],[5.022384001695778,52.29100929851362],[5.022381136460631,52.29126207116763],[5.022377532045878,52.29133873485229],[5.022374566429261,52.29146259537003],[5.022372098617559,52.2917633909653],[5.022363933700834,52.29208861574354],[5.0223560878401,52.29277868259772],[5.022353374380875,52.2928592856575],[5.022347545777244,52.293290959886455],[5.022344643042703,52.2933642552871],[5.022338147379882,52.293920075645794],[5.022336278473559,52.29406387438461],[5.022332543225303,52.29418323857271],[5.022324412362704,52.29464354964601],[5.022308224433844,52.29578017518266],[5.022297933258419,52.29621071193033],[5.02228861239746,52.29680162952597],[5.022287162984004,52.29681033420981],[5.022285963970888,52.29690105312784],[5.022282162674555,52.29701591417062],[5.022274128022455,52.2976447550672],[5.022268868243066,52.29789442821798],[5.022265928040067,52.29815618808229],[5.022264398188982,52.29816039862831],[5.022260720870118,52.29841372567301],[5.022260716222362,52.29841429188845],[5.022260713935371,52.298414570502395],[5.02225280567987,52.29874934067124],[5.022252216859563,52.29886393296389],[5.022249361079601,52.29897430299382],[5.02224962874628,52.29906670711301],[5.022245294222506,52.29926077570205],[5.02224508983041,52.299382109998795],[5.022235848036398,52.299838210907375],[5.022233721474096,52.30019546825122],[5.022227173207524,52.300659163077405],[5.022226183607899,52.30086363178978],[5.022217073694888,52.30106610711658],[5.022187075654297,52.30166454603203],[5.02213835904289,52.30242133650189],[5.022116720423158,52.302783584573184],[5.022051322556516,52.3029078093494],[5.022055103600679,52.303020446719444],[5.022055572621523,52.30304545213252],[5.022053220208644,52.30308195317644],[5.022053206012222,52.30309796034381],[5.022048198780548,52.30317743268841],[5.022033857304453,52.30329198242919],[5.022029365256865,52.30333550529843],[5.022004045879095,52.30351742938183],[5.022003000809226,52.30353399060671],[5.021986689881428,52.30367943419021],[5.021969144222262,52.30379312917011],[5.021942164781543,52.30395398077971],[5.021919120483123,52.304081985264105],[5.021918998539959,52.3040825511167],[5.021830412424166,52.30457491484606],[5.021815424066355,52.30465744812064],[5.021815302194149,52.304658004985505],[5.021800050548077,52.30470121597937],[5.021774303939125,52.304795786580414],[5.021725243026057,52.30496724735879],[5.021723817130589,52.30497482862517],[5.021671248034655,52.305153855220965],[5.021601963013848,52.305402494271796],[5.021586262868722,52.30545917650211],[5.021573245639284,52.30551053727954],[5.021566096146586,52.3055579795522],[5.021551043799811,52.30564640855336],[5.021536741370646,52.30572922251835],[5.021523701338148,52.30581007206303],[5.021519768407877,52.305828314048846],[5.021510925942228,52.30588726440432],[5.021495290022573,52.30597709368],[5.021485390228969,52.30603801807074],[5.021479789243604,52.30607900292086],[5.021456882353459,52.306218521014486],[5.021441515410354,52.306304144837426],[5.021441614217333,52.306306392083094],[5.021397431518111,52.30655285264943],[5.021397392168123,52.30655763401623],[5.021386346244426,52.30661882448108],[5.021384760539999,52.3066297756571],[5.021383711112878,52.30663257659299],[5.02138224041129,52.30664380674514],[5.021380818233083,52.30664914107665],[5.021369517638297,52.30671454601087],[5.0213534496902,52.30680156973756],[5.021352939680806,52.30680830898017],[5.021337553909837,52.30689617067466],[5.021335252144878,52.30691217075579],[5.021283743664691,52.30719877489216],[5.021270596082654,52.30726586379613],[5.021267818123782,52.30728270725119],[5.021266873529981,52.3072852388773],[5.021264225235758,52.30730236135387],[5.021263930554457,52.30730965850264],[5.021248989715392,52.30739864502409],[5.021195892771759,52.30769816858034],[5.021145232804329,52.3079794455016],[5.021144120856739,52.30798983190897],[5.021121667149156,52.30811502480723],[5.021114415585091,52.3081605073837],[5.021111445331014,52.30817397982828],[5.021100483482311,52.308239107146996],[5.021081048367448,52.308344931769035],[5.021053723294411,52.30850606958627],[5.020995610636125,52.30883029380053],[5.020996044375819,52.308832820702776],[5.020931926177899,52.30920420300727],[5.020902640586113,52.30936645816465],[5.020874259297138,52.30952927335121],[5.020852902171306,52.30964576941322],[5.0208509488958,52.30966036846651],[5.020813368047841,52.30987005324555],[5.020812747505091,52.30987595627856],[5.020810369802355,52.30988689599989],[5.020810810432238,52.30988858706247],[5.020805029288888,52.309922830478556],[5.020804340117955,52.30992282834411],[5.02079807424863,52.30996072827456],[5.020794138277716,52.30997925782177],[5.020778141371379,52.31007161137887],[5.020774685433804,52.31008705062439],[5.020774662314672,52.31008985473217],[5.020773615063922,52.3100923770474],[5.020773591870619,52.31009519014272],[5.020773239952181,52.310095189052674],[5.020727923687226,52.31035372523501],[5.020720568705397,52.31039920744891],[5.020718551332091,52.31040734410443],[5.020705297,52.31048537966125],[5.020700147751475,52.31051232697023],[5.02069113421811,52.31056510209877],[5.020677933008676,52.31063668460793],[5.020675981929045,52.31065100504217],[5.020671680864235,52.31067289487177],[5.02066961706885,52.310686657715884],[5.020669162501487,52.31068665630753],[5.020666241291406,52.31070659108166],[5.020662308372931,52.31072651373329],[5.020660816521991,52.31074026936149],[5.020660361954082,52.31074026795307],[5.020659485933847,52.3107486957515],[5.020653502337345,52.31077901087955],[5.020653003738256,52.31078434806015],[5.020652059108608,52.310786870692006],[5.020625089122553,52.31094547489461],[5.020607439878228,52.311044285487164],[5.020255978045343,52.313025839871784],[5.020251692153649,52.31308846220461],[5.019746788896968,52.3159562333648],[5.019603293851564,52.31680625288527],[5.019407487589944,52.317913940844804],[5.019204021282828,52.319058121624096],[5.019181338748014,52.31918303457769],[5.019171460708751,52.31924058829766],[5.019155679418381,52.319291931101326],[5.019144407429183,52.31932476419963],[5.019133824505745,52.319385955756566],[5.019130042568136,52.319454754120365],[5.019119847966805,52.319550504737855],[5.019053844072802,52.31992441399557],[5.018933890629788,52.320599523103134],[5.018882193442517,52.32087853926406],[5.018864663184112,52.32098858446364],[5.018834893415965,52.32098624485255],[5.018820197203278,52.321087032510725],[5.018789876788837,52.321303209997254],[5.018747159912823,52.32159039691355],[5.018705927823094,52.32190540546256],[5.018684391626511,52.322096893976735],[5.018666198647086,52.322274336077086],[5.018642540643616,52.322514684270125],[5.018625577009907,52.32272247276741],[5.018604450532023,52.32294934721899],[5.01858628516178,52.32319055732739],[5.01856161999085,52.3235115132942],[5.018563702934871,52.323523877914845],[5.018577775462079,52.32353908405957],[5.01861003798029,52.323559406959255],[5.018653632316126,52.32358229968559],[5.018659264226974,52.32359298566448],[5.01865557484199,52.32360982617051],[5.018652408585283,52.323632564257665],[5.018633696722025,52.32373278209664],[5.018625150523698,52.323907171391575],[5.018497588781849,52.3241289417079],[5.018489399402007,52.32423198748673],[5.018488249045686,52.324246876571976],[5.018490152906991,52.324432811685725],[5.018480356170903,52.32456338186699],[5.018465135860369,52.32473944001975],[5.018448287708148,52.32489246652876],[5.018412467886422,52.3251892285844],[5.018406096802013,52.32526756374941],[5.018381344389365,52.32573653817825],[5.018352535871338,52.326017314879145],[5.018340987147026,52.32615209479308],[5.01834198343173,52.32629533530826],[5.018340194678604,52.32651075655997],[5.018324115635128,52.32674944741873],[5.018314523823927,52.326869349737116],[5.018278263717861,52.32723295198536],[5.018251522186469,52.327416559742936],[5.01822897406765,52.32756506552233],[5.018222359142607,52.32760379996643],[5.018168250443443,52.327894330204195],[5.01811864882513,52.328140214459374],[5.018061866009674,52.32836754359603],[5.017928263620724,52.328818193627036],[5.01781687441477,52.3291341059664],[5.017705002776419,52.32942140875964],[5.017582299576054,52.329728531479795],[5.017394299845543,52.33014109169672],[5.017186271960459,52.3305535979561],[5.017085630719651,52.330729927886615],[5.016938880673856,52.33098703889846],[5.016846781466416,52.3311468489497],[5.016529216238675,52.331492052637344],[5.016456967555796,52.33157059468348],[5.01619014223827,52.33195449572854],[5.016112580608994,52.33205419596722],[5.015929446014745,52.332252250132555],[5.015775067719213,52.332414892782865],[5.015622171150443,52.33257565246073],[5.01555793408306,52.332643128260244],[5.015530518003285,52.332675937205124],[5.015517570958004,52.332697826572634],[5.015448031021521,52.33276780221749],[5.015356147627165,52.33286044654208],[5.015305065342417,52.33291618962576],[5.015276426321446,52.332954836683555],[5.015257157008184,52.332995849989025],[5.015247270973846,52.33303761180029],[5.015247060156064,52.333080302791515],[5.015256685592107,52.33312221580262],[5.015275710193476,52.33316298994893],[5.015303700631031,52.33320181496962],[5.015341671847962,52.33324013208211],[5.015359024127414,52.33325285928458],[5.015388187625733,52.33327425180078],[5.015442809347709,52.333303992983566],[5.015503785527985,52.33332827159224],[5.015570238906246,52.33334672535372],[5.015640413461219,52.333358809482654],[5.015712696865144,52.333364339157],[5.017028511948951,52.33333592669479],[5.01721427224301,52.33333336189003],[5.01738726805219,52.333330846783994],[5.017381513372593,52.33328193563048],[5.018806479573989,52.3332534849291],[5.020424333015619,52.333229659492496],[5.023413136911605,52.33317956575328],[5.023485328759199,52.333178439488],[5.023547822358839,52.33317917079792],[5.023679507419223,52.333186855414404],[5.023762260112683,52.333186031050666],[5.023792487311045,52.33318549473439],[5.02414374535753,52.333182078977465],[5.024505330228169,52.33317168341122],[5.024791417078956,52.333172020576],[5.025020356336378,52.333163733721264],[5.025288854183115,52.333162038556516],[5.025517921710053,52.33315599805937],[5.025739988110013,52.333144902616944],[5.026072393333068,52.33313243583921],[5.026243666201642,52.333107073738766],[5.026243739629064,52.33310706497502],[5.026318577764699,52.333307467519006],[5.026151274338004,52.333337146952125],[5.025717544793028,52.33337878420072],[5.02536270742192,52.333407179528386],[5.024813639728205,52.333433271535675],[5.024328770267568,52.333448952356974],[5.023716006946461,52.33345965471821],[5.023707529402441,52.333455763964],[5.02343843184652,52.33345880185687],[5.023409022878836,52.33346689027656],[5.020422009140498,52.33351105760794],[5.018051312167843,52.33355788247448],[5.017922333035598,52.33355999664576],[5.01788958379082,52.3335638490468],[5.017859433468435,52.33357274266977],[5.017761091262772,52.33364856165714],[5.01774425936039,52.33366136154342],[5.017697893176236,52.33369716764401],[5.017684112997564,52.33371348225842],[5.017677801594364,52.33373143798054],[5.017679999410355,52.33374942027158],[5.017690127090155,52.33376652855076],[5.017707608266949,52.333781502736485],[5.017838370348788,52.333847341481295],[5.017940729607793,52.333888375248385],[5.018121802001218,52.33397351447321],[5.018512327928949,52.334171562659],[5.018855775461669,52.334332523523074],[5.018902977337792,52.334355139707135],[5.019231482310837,52.334513716161],[5.019578477962334,52.3346897852922],[5.019592458346923,52.33470241151492],[5.019929693617833,52.33494136326411],[5.020407433491925,52.33527592942955],[5.020488538480098,52.335332983095455],[5.021000854220435,52.33567466436347],[5.021241812140388,52.335883205528326],[5.021248567245593,52.335918098726644],[5.021232666970056,52.33594249612832],[5.021180443541134,52.33595914164497],[5.021193951294252,52.33597581068063],[5.021202242382554,52.33598455439865],[5.021220863070733,52.3360039355554],[5.021135825813436,52.336032073720595],[5.021111457182303,52.335998024805455],[5.021104988243625,52.335999622582726],[5.021045385808139,52.336003662421646],[5.021012906989432,52.3359923272975],[5.020946795711063,52.33594943110706],[5.020405025490507,52.3355674832832],[5.020341570438205,52.33552288731562],[5.020100557024316,52.33535730537255],[5.019775220440978,52.335133849943],[5.019493223998195,52.3349391990667],[5.01938603551853,52.33486076277122],[5.019297967297475,52.33482984093413],[5.019182241705378,52.334772499034514],[5.018956753773463,52.33466421472243],[5.018711013220599,52.33453905989627],[5.018440950296948,52.334410143807325],[5.018329917236407,52.334353354948625],[5.018248835103869,52.33431175871953],[5.01806272849686,52.33421429082897],[5.017964939614806,52.33417048524021],[5.01780201713089,52.33409043555269],[5.017652745534114,52.334027325167234],[5.017622683725904,52.33400790770769],[5.017642916336184,52.333991972758774],[5.017595024564856,52.33396423091651],[5.017541964292357,52.33394051738196],[5.017484912944058,52.333920386440894],[5.017424452118608,52.33390446904474],[5.017381095930124,52.33389588511764],[5.017336237467934,52.33389152070518],[5.01729061476724,52.333890838849804],[5.017134637520248,52.333893137405546],[5.017130233187725,52.33389348314179],[5.01656862786402,52.33389109651634],[5.016375420449993,52.333889143120246],[5.016098595180533,52.33388602846248],[5.015559410506846,52.33388685304895],[5.015252337219994,52.33388669724203],[5.014776119514402,52.333884390685654],[5.014656658927273,52.333888508549705],[5.014451411487574,52.33392264472525],[5.014244632759003,52.33398185144545],[5.01408892674159,52.33405658782721],[5.013990759239269,52.334128180014034],[5.013940274050976,52.33416487042817],[5.013729006524221,52.334338925089654],[5.013443425496558,52.33457395103862],[5.012599247605399,52.33521354406223],[5.011231186758148,52.33613781647029],[5.010300606260767,52.33669883554545],[5.009665039611219,52.33705098858314],[5.009049704833439,52.33738320519138],[5.008711391146239,52.33756467315566],[5.007948610550373,52.337970632932375],[5.006726967547222,52.33861912990502],[5.005702069094994,52.33916381141097],[5.005223589666478,52.339417878605715],[5.005214576552913,52.33942512956149],[5.005206578171521,52.339433821825224],[5.004902155667417,52.33975190259264],[5.004748648518401,52.339907882670104],[5.004735959986363,52.33991593060621],[5.003864471339544,52.34037822513997],[5.003438876262626,52.34060576288561],[5.002677471882056,52.34101061459569],[5.002473132161834,52.34112139813516],[5.002285775055535,52.34121965376126],[5.00201275910805,52.34136427655453],[5.001960974931833,52.34139637388627],[5.00193960868824,52.341423537094656],[5.001929281151894,52.34144687151777],[5.001923373747139,52.34148505004601],[5.001939481447677,52.34152276097341],[5.001965193319837,52.34155286360715],[5.002007510615068,52.34158023408866],[5.002134744762936,52.34161291396889],[5.002237700294509,52.34163634728614],[5.002306931424371,52.3416567947825],[5.002430734673941,52.34167903744561],[5.002459920493834,52.34168083998605],[5.00248525188637,52.34167022695502],[5.002509085184987,52.341646217365884],[5.002531312141673,52.34162130378054],[5.002540302003185,52.341616839143974],[5.002640478325168,52.341639274430065],[5.002655707022195,52.34164300886871],[5.002743578588142,52.34166297740765],[5.002853001091322,52.34168526279239],[5.002802611973117,52.34177659400803],[5.002952103366665,52.34179793090137],[5.002954153020359,52.341798476817914],[5.002961047334001,52.341798768830984],[5.00297642283217,52.341751633284844],[5.003065006113887,52.34175722356359],[5.003154156154761,52.34176515241864],[5.003178935285201,52.34176747974514],[5.003217498376645,52.341770930310304],[5.003264119579923,52.34177584503543],[5.003266515556139,52.34177028042948],[5.003291439101215,52.34177287783201],[5.003324045159074,52.34175249161771],[5.003366589572218,52.34175370812035],[5.00340666422896,52.34176902729839],[5.003475283588084,52.3417754513031],[5.003661467359915,52.341796007481555],[5.003852339913061,52.34181738744646],[5.003939171900202,52.341821892873114],[5.004051843467352,52.34180787733435],[5.004179231321666,52.341788966074276],[5.004267911720727,52.341783321133484],[5.004387545307336,52.341744701485105],[5.00444641799486,52.3417072333962],[5.004533910105766,52.341652152029866],[5.004574773804617,52.34162702868516],[5.004624605422731,52.341599957018644],[5.004703152010777,52.34156120423706],[5.004720984535144,52.34155227415848],[5.004853994869839,52.341510821199584],[5.004930510502178,52.34148635215936],[5.005005904517204,52.34147284444954],[5.005059458789612,52.34145647999138],[5.005083719961575,52.34143372954634],[5.00514452685876,52.3414101084223],[5.005170968707933,52.3414067784441],[5.005209369442733,52.34141202537788],[5.005222083058947,52.341401101407556],[5.00521967127871,52.34139147677823],[5.005198202399881,52.34137963359391],[5.005209472620825,52.34136591877737],[5.005242970283853,52.34134409687977],[5.005324341603449,52.34131802546787],[5.00538454272392,52.34129655931557],[5.005438494433829,52.3412680625645],[5.005596000321452,52.341227586550595],[5.005684453134675,52.341214120511964],[5.005689890062027,52.341213239266615],[5.005804596786742,52.34118412927484],[5.005887078847302,52.341165341097906],[5.005949198620042,52.341142532684074],[5.005994162683515,52.34111823095091],[5.006072673442012,52.34110050837877],[5.00613898413389,52.3410680965147],[5.006279433528785,52.34103151926736],[5.006510830050898,52.340981393345714],[5.006760666411378,52.34091982198086],[5.006925186931838,52.34088242256739],[5.007414755808022,52.34077362547305],[5.007543986868771,52.340761726921514],[5.007772230130408,52.34075401039551],[5.008132335164281,52.34078716049895],[5.008250009079277,52.340805512730796],[5.008926989020638,52.340865289500286],[5.009015049185552,52.34088049050022],[5.009164613508274,52.340920828777435],[5.009477647176625,52.34108335522947],[5.009560735706662,52.34115350875764],[5.009978618789284,52.341212299730245],[5.010000977007048,52.341180051200745],[5.010110771968591,52.34119677665509],[5.010301345151513,52.3412258207626],[5.010498045070205,52.34125744555791],[5.011085517868836,52.34165224726924],[5.01136249434239,52.3418425519277],[5.011362317496728,52.34184264124315],[5.011362492592672,52.34184275863931],[5.011431020350209,52.34181853865725],[5.011782068856696,52.341612090637156],[5.011825151293981,52.34164340562147],[5.011910956256381,52.34170349986867],[5.011918820258229,52.34170886349859],[5.012067330090958,52.34181212663719],[5.012149305895043,52.34179750278944],[5.012208187035612,52.34176173854329],[5.012376391948577,52.341882203236004],[5.012350486375087,52.34189504551104],[5.012333987571836,52.34194778702027],[5.012829497676759,52.3422984736232],[5.012196954618143,52.34263126309905],[5.012152494335098,52.342629153921344],[5.01214459641275,52.34262604611385],[5.012143164216793,52.342620136656045],[5.012019862729866,52.3424369090753],[5.012009692820642,52.342433506450384],[5.011981932553232,52.34243482053191],[5.01187353895572,52.342454977809396],[5.011867275286964,52.342463388410906],[5.011867099635309,52.342484167419514],[5.011944521326705,52.34261614564139],[5.011948237146719,52.342638339068316],[5.011941009767451,52.342665279257645],[5.011929372401484,52.342700069702765],[5.011913842483581,52.34271968555314],[5.011862379582626,52.34274395094106],[5.011950337051724,52.342768388770786],[5.011964041989757,52.34277545161395],[5.011987510133272,52.34279237795041],[5.012030553061345,52.34282678449353],[5.01216022555705,52.342799666115845],[5.012170165483318,52.342802510761224],[5.012183336828308,52.34281715750753],[5.01220999141645,52.34285122445263],[5.012220622704199,52.342869512153584],[5.012205283801426,52.34288041956477],[5.012008823767828,52.34294271088049],[5.011999749542372,52.34295897681713],[5.01199686615344,52.34298761147824],[5.012000694638575,52.34301037148404],[5.01202961459819,52.34304725879973],[5.012056062895913,52.343077954736465],[5.012216823246134,52.34326552514956],[5.012230153682741,52.343261352149504],[5.012315846136679,52.343363013830114],[5.012329851250271,52.34352400092109],[5.012335289385143,52.343667255106055],[5.01234499400674,52.34368582746391],[5.01226568330954,52.34370072053479],[5.012265669545933,52.343700612638806],[5.012262715218375,52.34370116950555],[5.01225179726416,52.34369073615272],[5.012001022325827,52.34361411227179],[5.01189379658759,52.3436311815029],[5.011690262434588,52.34363587465588],[5.011455293825447,52.34364243598042],[5.011443215763121,52.34364772734378],[5.011419440299512,52.34366534864398],[5.011390851151422,52.343670875187755],[5.011282466785621,52.34366182193197],[5.011227907130809,52.343659967940155],[5.010678113330703,52.34366917629084],[5.01014642476352,52.343677028695],[5.010004949377167,52.34367657793156],[5.009998885513826,52.34364931688829],[5.010006619824803,52.343642322142],[5.010007342463227,52.343624627663246],[5.009996312299199,52.343601557036834],[5.009954967445506,52.343555650912755],[5.009948819236532,52.34342951590451],[5.009894108214109,52.34331082070543],[5.009828406204254,52.343190400748014],[5.009747710080208,52.34309380427025],[5.009538807911627,52.34290692171698],[5.0093629352705,52.342801599769906],[5.009250302365331,52.34275236504246],[5.009228458886119,52.34274639935761],[5.009183224997974,52.34274035896781],[5.008972702617114,52.34274586996321],[5.008572937964171,52.342785872344066],[5.0085553304325,52.34284760647103],[5.008447023984202,52.343111839915736],[5.008441236353603,52.34311940701575],[5.00841911493193,52.343132251552476],[5.008391109751713,52.343134687471455],[5.008357776920906,52.34313205524324],[5.008339738206784,52.343135925130866],[5.008274755349079,52.343187962622345],[5.008250648533763,52.34321849755618],[5.00823810212494,52.34333192711954],[5.00822917002207,52.34332965159584],[5.008141831462118,52.34331533313433],[5.008090162600383,52.34332386774731],[5.007875516003643,52.3433273952798],[5.007504585142269,52.34330682846282],[5.007446134812106,52.34330354917535],[5.007286115589328,52.34327522771042],[5.007140317291408,52.34325707184516],[5.007123651642734,52.34323595115688],[5.007054505123561,52.34315708670283],[5.006991971576683,52.343176541950854],[5.006965687375243,52.34314079431338],[5.00696491878016,52.34313629799307],[5.006885802737147,52.34303071692142],[5.006866276999006,52.34303514803188],[5.0068197445639,52.34304707797146],[5.006772114349245,52.343026136335645],[5.00673012462487,52.34302853590042],[5.006663823944077,52.343006410740735],[5.006535678777904,52.342962749853946],[5.006518175166263,52.34294527539058],[5.00650101623931,52.34292696617687],[5.006433340629624,52.34291803940047],[5.006349240323694,52.34291299635058],[5.006301341268895,52.34290975044636],[5.00616757348588,52.34288010985676],[5.00613800282575,52.34288029327697],[5.006081288517935,52.34288854113817],[5.006058956062246,52.34290026109306],[5.006041169531417,52.3429277331514],[5.006010824668112,52.34297706779547],[5.005879264226592,52.34295866861823],[5.005827989876255,52.34297423189887],[5.005814205697365,52.342991875284014],[5.005805432882729,52.34301207833565],[5.005806431120363,52.34301545194096],[5.00583795759926,52.34302846885332],[5.005883241176791,52.34304237492241],[5.005839040226323,52.34306302107232],[5.00580689404262,52.34308285221828],[5.005778751166799,52.34310130316225],[5.005748400663344,52.34308463202911],[5.0057365614133,52.34308768564322],[5.005699841384784,52.34310526408108],[5.005671886123264,52.343117244458284],[5.005652516005106,52.343115501318316],[5.005642002596622,52.343099172721374],[5.005608414917821,52.343112554983506],[5.005510936381341,52.343129092620806],[5.005508831165671,52.343133292076985],[5.005577213704638,52.34320681628225],[5.005524432686109,52.34322518772465],[5.00548943804362,52.34318884544316],[5.005462586564008,52.34316459989964],[5.005429496268349,52.34318668381174],[5.005397359395646,52.343205400401395],[5.005315873549914,52.3432273281609],[5.005294893741161,52.34317558117677],[5.005107412529327,52.34323170648435],[5.005065681850884,52.34325853487225],[5.004997675030683,52.34331533327889],[5.004985236554353,52.343294225937214],[5.004874772336137,52.3433275730603],[5.004735585159776,52.34335633341945],[5.004690860688822,52.343357590973824],[5.00463973429619,52.34336950521096],[5.004408271897511,52.343303029795564],[5.004325819024718,52.34329237332227],[5.004150022327989,52.34329686460483],[5.003992836800287,52.34332472099826],[5.003979251391692,52.343331139172264],[5.003976278444308,52.34334404487648],[5.003987438759331,52.34335166663174],[5.003968453391255,52.343359748021754],[5.00391398614059,52.343374464279805],[5.003859229426009,52.34340910531369],[5.003826780756591,52.343423047997454],[5.003815808979242,52.343419084833116],[5.003771647984793,52.34343494888332],[5.003737397538869,52.34345870926558],[5.003627981701186,52.34346397205002],[5.003577456318983,52.34347251738772],[5.00354915047913,52.34348421750918],[5.003534593598329,52.34348417032454],[5.003520975647476,52.34348075579298],[5.003498627616398,52.343494164903134],[5.003478389026257,52.34352667971737],[5.003466200754302,52.34354461560982],[5.003448095955108,52.34355775984822],[5.003401657473573,52.343570533594196],[5.003391600544996,52.3435676878323],[5.003362242227936,52.34356871609238],[5.003337514104606,52.34357734498318],[5.003321046032257,52.34359976083233],[5.00321460050995,52.34363142975323],[5.003151544098143,52.34365846690021],[5.003118224089658,52.34366791271105],[5.003076864258202,52.34366356325961],[5.002982542281519,52.34365932949079],[5.002941143630331,52.34366116340576],[5.002889307404275,52.34367700220948],[5.002846069491625,52.34367770665637],[5.002829592528735,52.34367399515487],[5.002785479336262,52.34363172652714],[5.002713708458266,52.34360593238032],[5.002598934701569,52.34352831916937],[5.002471591228833,52.3434720197729],[5.002338403940515,52.34344153189793],[5.002218893609991,52.343421199525814],[5.002156275700262,52.34340948259027],[5.002068050587082,52.34337745996753],[5.001985895896722,52.34334601427287],[5.001900696227258,52.343308662674346],[5.001848017248269,52.34327450866717],[5.001804209253621,52.34324964085699],[5.001736473086672,52.3432477395813],[5.001663784466825,52.343248347680365],[5.001592360014578,52.34323519068974],[5.00152770003679,52.34320858312815],[5.001457498084697,52.343174650465535],[5.00143935327997,52.34316363531733],[5.001404000848498,52.34316885878868],[5.001362830284655,52.34318332960719],[5.001345761966658,52.34319535344153],[5.001337671768632,52.34320262508379],[5.001350817706247,52.34321979850485],[5.001333979237126,52.343232389312156],[5.001263702348381,52.34324423067115],[5.001220484351489,52.34324437735032],[5.001130411694007,52.34324099181581],[5.001059809424768,52.34325142991054],[5.001018988373835,52.34326449966787],[5.000999757792559,52.34326191137697],[5.000992904910381,52.34325851862717],[5.000919000572566,52.34322850119094],[5.000866826310287,52.34320221263358],[5.000791518363318,52.343188485245015],[5.000766814379229,52.34318081896912],[5.00074180945796,52.34315546390162],[5.000701120392719,52.34314157086469],[5.000629307560903,52.34313430795779],[5.000531756166564,52.343132029991644],[5.000456086555753,52.343119415682835],[5.000393657903578,52.34310123626982],[5.000318707358084,52.343071790250264],[5.000226881879081,52.34303047916715],[5.000210772314405,52.34301160624098],[5.00018288915832,52.343001682521404],[5.000041206390425,52.342946169461634],[4.999974187775448,52.34291421463387],[4.999853565138005,52.342863551705044],[4.999769424785154,52.34282283163883],[4.999673665117549,52.34278684594161],[4.99960319831895,52.34277004187249],[4.999487863178659,52.342757584647735],[4.999329410116428,52.342772515364324],[4.999267514258981,52.34279759493156],[4.998874899970519,52.34300217986911],[4.998368204107138,52.34327351796224],[4.997905049486569,52.34352055952947],[4.99750544747388,52.34372231277516],[4.997083768861708,52.343957695805656],[4.996799262825534,52.344110105974856],[4.996564738810282,52.344234036610914],[4.996359583454455,52.34434402496729],[4.996187055672667,52.34443333219614],[4.995923697801326,52.34457822449785],[4.995669423618534,52.34470630330234],[4.99539755824281,52.34485202012267],[4.99515705835662,52.34497873235086],[4.994947742930291,52.34509038518069],[4.994854751475729,52.345144569427084],[4.994563198187948,52.345298919166005],[4.994180968957473,52.345504089200666],[4.993892110145683,52.345665187010525],[4.993523174314857,52.345845116679996],[4.993111835360372,52.34606169968808],[4.992571315550406,52.34635115435995],[4.992145002430759,52.3465853808701],[4.99164263812614,52.34685053006206],[4.991464605095026,52.34695104663598],[4.991319756661936,52.34701992936673],[4.990896069993849,52.34724124483172],[4.990526825922562,52.34743969677097],[4.990103960432428,52.34767168055406],[4.989856802103268,52.34779612173308],[4.989569145456455,52.3479473804766],[4.989259549357625,52.34811626155011],[4.988829505681931,52.34834204209471],[4.98832687883657,52.34861727850176],[4.987849840913954,52.34886648084718],[4.987545519671635,52.34902021297971],[4.985907781317266,52.34997635613609],[4.985874024534265,52.34999421709263],[4.985426160052362,52.35023424225241],[4.985327992841702,52.35028699037233],[4.985076466419974,52.350420673055844],[4.984854086472358,52.350539849264564],[4.984534229216063,52.350709806556836],[4.984225202733917,52.35087474876889],[4.983818713394315,52.351090192516594],[4.983574909382765,52.3512194044743],[4.983466703928441,52.35127801275229],[4.983267713628699,52.351382382122175],[4.983015731949031,52.3515163374907],[4.982794251029834,52.35163550391046],[4.982536027393346,52.35177280731981],[4.98218989209515,52.35195587137027],[4.981844540663067,52.35214118401711],[4.981472409658341,52.3523334322532],[4.981217504502575,52.352471301396726],[4.981164837793401,52.35249892869643],[4.980791384697091,52.352697057198405],[4.980719707660545,52.35273613227313],[4.980260726273108,52.35298031493985],[4.979949276501307,52.353143547968436],[4.979641473096737,52.35330904864349],[4.979313881475357,52.35348093350311],[4.979119253300852,52.35358445709685],[4.978570370821832,52.35387747697455],[4.978294271333878,52.35402285227497],[4.978124398743362,52.35411383202768],[4.977966073506217,52.35419725685275],[4.977850927966907,52.35426033883975],[4.977699053883283,52.354341260072516],[4.977506238140496,52.354444796270954],[4.977326244909997,52.35453938885616],[4.977135635206897,52.3546406851649],[4.97677964159502,52.3548309972519],[4.976528656028878,52.35496409741848],[4.976354526434866,52.35505590470626],[4.976173464431411,52.355154419452106],[4.975988032704747,52.35525236150506],[4.975905406741711,52.35529672533409],[4.975739800280524,52.355384058494046],[4.975640744287942,52.35543203201048],[4.975542368613653,52.35547943259729],[4.975459886135581,52.355519311754364],[4.975370160971941,52.355561412581835],[4.97531313969456,52.35558929175959],[4.975236328046825,52.355623860788285],[4.975021237273559,52.35571748288162],[4.974847357479557,52.355794387223995],[4.974652248516465,52.35587319462453],[4.974469122962336,52.3559450240941],[4.974294875090518,52.35601238141042],[4.974091102690227,52.35608498312313],[4.973839911470291,52.35617706602155],[4.973606464732126,52.356258263370755],[4.973354214003343,52.35633939452603],[4.973060573667485,52.35643245981954],[4.972901766719033,52.35647908955388],[4.972751091350523,52.35652574754377],[4.972426758430518,52.35660269672662],[4.972369794969465,52.35661148482701],[4.972298547619848,52.35662667600432],[4.97218314093118,52.3566549242482],[4.972082681762885,52.35667956680339],[4.971970858554592,52.35670445702074],[4.971871102256308,52.356727690793825],[4.971753655843915,52.35675424177688],[4.971657354988372,52.356775258548076],[4.971549914592123,52.356797629222676],[4.971445463225911,52.35682057652199],[4.9713476754701,52.35684045537015],[4.971247361825367,52.356862005961574],[4.971099957070897,52.35688985311159],[4.970951759399318,52.35691770627797],[4.97083791164745,52.35693920893479],[4.970729255475051,52.35695652350497],[4.970611458191931,52.356971837503345],[4.970484317657974,52.35699104611892],[4.970358909016538,52.35701026968398],[4.970231761832233,52.357031724928994],[4.970113755545255,52.35705518054819],[4.969990034908733,52.357077501437175],[4.969867336419171,52.357100383037505],[4.969741435217928,52.357123531835605],[4.969629520107804,52.35714700845203],[4.969508640267077,52.357171576794876],[4.9693788288813,52.35719526864859],[4.969353350909373,52.35712299854357],[4.969019406632764,52.357184454630726],[4.968686074346079,52.35725096302548],[4.968400837149458,52.357302757012164],[4.968191087336133,52.357338253194705],[4.967882738895224,52.357384346822315],[4.967536874576323,52.35745473521901],[4.967290544239553,52.35750244922043],[4.967192452684355,52.35751839593994],[4.967079531622227,52.3575393410373],[4.966487231829881,52.35768047451346],[4.966573881141015,52.357831047698134],[4.967174227564447,52.357711566732945],[4.96723464037153,52.35770307198453],[4.967251585225838,52.35770566662487],[4.967294274578398,52.35771480574581],[4.967329341318216,52.35771661082032],[4.967359304955342,52.35771474878258],[4.967415950405027,52.35770259157669],[4.967468213079123,52.35768199733421],[4.967532931168001,52.35765441884554],[4.967629768418933,52.35763763154272],[4.967749204406711,52.35762007938994],[4.967851103602576,52.35761285477361],[4.967866911487411,52.357614600455115],[4.967910982737418,52.3576110985614],[4.968089701233349,52.35759432224005],[4.96811801100808,52.357609027465045],[4.968153589854961,52.357606340260844],[4.968221402020948,52.35760237403592],[4.968282117650723,52.357597528829345],[4.968294873433111,52.35759448219956],[4.968323442368499,52.35759262397043],[4.968362834892427,52.35758713704868],[4.968451173437692,52.35758267708686],[4.968468928903834,52.35757403980149],[4.968514182072953,52.357566614241144],[4.968568246636131,52.35756034328471],[4.968646989005571,52.357553880937246],[4.968700055168245,52.357544514623676],[4.968700592253874,52.357535816433646],[4.968777641028773,52.35752681348234],[4.968850602674644,52.35752314371625],[4.968851588358412,52.357516685046875],[4.968959979922432,52.357502750635874],[4.968974868379694,52.357503926696346],[4.968982416440439,52.35745844866257],[4.969020360017158,52.357460272387144],[4.96901962785214,52.357464754660626],[4.969038330853119,52.357475498107235],[4.969027761680824,52.3575378174004],[4.969289593663433,52.357549131763335],[4.969300520745275,52.35750956156648],[4.969328543596556,52.35750488801878],[4.969466546825794,52.35751240343823],[4.969472016313884,52.357492757662115],[4.969685094315846,52.357504465332816],[4.96991164060909,52.35751228348407],[4.969913631297813,52.35749571719254],[4.970280524962817,52.35751779840506],[4.970286274810562,52.35750264742668],[4.970301512978881,52.35750410317025],[4.970314572011633,52.357493759383324],[4.97034574348553,52.3574961160719],[4.97037224678775,52.35752036831414],[4.970472660028272,52.357524370827505],[4.970485968447561,52.35752498389872],[4.970788969706671,52.357547953088414],[4.970791833268371,52.35752437046438],[4.97087148009155,52.35752942305482],[4.970871633254484,52.357538132668765],[4.9709140183655,52.35754220934125],[4.970916380851838,52.35754699910176],[4.970970830486007,52.35754971609636],[4.970944365163795,52.35780464884804],[4.971111813455289,52.3578156272714],[4.971142846122498,52.35785787064358],[4.971135335037208,52.35792468571939],[4.971203978587437,52.35792914217528],[4.971207710311374,52.35786146897207],[4.971224262016681,52.35783399782783],[4.971248848948858,52.35765714350029],[4.97148828245383,52.35766051006297],[4.97150538647738,52.35729039398551],[4.971509370000455,52.35728197751628],[4.971721046511382,52.357284967526205],[4.971823162504792,52.35729206663746],[4.972063877750031,52.357304145612986],[4.972127341949506,52.35731138753389],[4.972184548595201,52.35732535724178],[4.972211319993428,52.35733359394076],[4.972261579391031,52.35735427104027],[4.972263934198174,52.35735989660229],[4.972258311492856,52.3573725135916],[4.972225725687637,52.35742407860966],[4.97221881167303,52.35743978283702],[4.972215554255912,52.357456901962],[4.972206454955824,52.3574849566065],[4.972198645701758,52.35757284684591],[4.972041381749277,52.357673685613],[4.971821103853602,52.35781783947405],[4.971775418912963,52.3578463319348],[4.971774236331608,52.35786289210285],[4.971467730224612,52.35784553044411],[4.971455415239898,52.35790025819774],[4.971476875969402,52.3579598770265],[4.971559083396491,52.35803487138001],[4.971594812085307,52.358053817043185],[4.971683586082609,52.3579903699698],[4.971778469300933,52.35802384956902],[4.971683927878427,52.358077722553205],[4.971692462533717,52.3580833698161],[4.971819136949673,52.35812678450519],[4.971907823977467,52.35807261225833],[4.971958947340456,52.35810143536159],[4.971890294346554,52.358145009539],[4.971877091729317,52.35815816614195],[4.972113593990094,52.358253923610434],[4.972113248468534,52.358254767242016],[4.972112843630359,52.35826038313001],[4.972113140783829,52.358266280097794],[4.972114688268589,52.35827190283104],[4.972117512837404,52.35827753004197],[4.972121352872422,52.35828288219471],[4.972126237732195,52.358287959392186],[4.972132155511821,52.35829246499862],[4.972138885772276,52.35829642520413],[4.972146543508939,52.35830010105479],[4.97215454668398,52.358302942260686],[4.972163345222873,52.358305498648264],[4.972172389135295,52.35830693243391],[4.972181787953017,52.358308088844595],[4.972191300031077,52.35830812219007],[4.972200714566037,52.35830759795601],[4.972288284397171,52.358313243586444],[4.972440094315077,52.358328092935544],[4.972699037856633,52.35834276899189],[4.972867134528629,52.358345882964464],[4.972904224578962,52.35832916084664],[4.973177749442893,52.358340228891656],[4.973188977988858,52.358341948858055],[4.973199728837931,52.35834452098353],[4.973210136953568,52.358347640158684],[4.97321996730202,52.35835132353708],[4.973229219883522,52.35835557111887],[4.973237542482451,52.358360372684906],[4.97324494969414,52.358365737274134],[4.973251426839383,52.35837166483533],[4.973257108796903,52.35837785924651],[4.973261628419828,52.35838433719942],[4.97326501514988,52.35839108980941],[4.973267357061594,52.35839811738461],[4.973273446883543,52.35840937329107],[4.973278377054014,52.35842062514265],[4.973282056898443,52.35843215124092],[4.973284591684966,52.35844368232321],[4.973285964302551,52.358455478972914],[4.973286342330977,52.358465312828514],[4.97328544595249,52.358474854622294],[4.973269869730467,52.35847339808233],[4.973268727918684,52.35848407146694],[4.97328488083387,52.35848665348468],[4.973278806387326,52.35850994631662],[4.973271016068795,52.35853463522854],[4.973265003999656,52.35854022252677],[4.97325818968602,52.35854525877048],[4.973250455861816,52.35854972557413],[4.973242049391015,52.35855391140684],[4.973232843442354,52.35855724960041],[4.973223067601817,52.358560307182096],[4.97321282990598,52.35856251830494],[4.973202394581305,52.35856388389286],[4.973191714907666,52.358564691388544],[4.973180940360765,52.35856465370853],[4.973170156417192,52.35856404977014],[4.973167179135094,52.358563760739315],[4.973005083403033,52.358556165357435],[4.972812923516171,52.358550163197506],[4.972684976407003,52.35854690212912],[4.972293044630821,52.35854047809916],[4.972275155967975,52.358539849179145],[4.972252109608909,52.35853976840326],[4.97222892584252,52.35854025336579],[4.972218266130982,52.35854049461907],[4.972197493927669,52.3585421114901],[4.972190481438374,52.358543210369085],[4.972183813433205,52.35854514631058],[4.97218254572591,52.35854570809104],[4.97217851468301,52.358548219500946],[4.972175505889349,52.35855130071898],[4.972166433390838,52.358563905607454],[4.972158282988373,52.358576801334024],[4.972155830962736,52.358581565201725],[4.972148344251933,52.35859726741406],[4.972140122976817,52.35861773951458],[4.972133302557796,52.35863596960312],[4.972127624424482,52.35865449130226],[4.972122988597462,52.35867300766786],[4.972122120797792,52.35867946677515],[4.972120109863678,52.35869827994982],[4.972119243910743,52.35871709713885],[4.972119523024507,52.35873590935484],[4.972119347755019,52.35874209227179],[4.972119885359143,52.35875837985286],[4.972121682692337,52.358774959456746],[4.972124392748924,52.358791263642246],[4.972125735867435,52.35879519597225],[4.972132345408591,52.358812071066154],[4.972139764922369,52.35882867038093],[4.972148434872911,52.35884498647296],[4.972170542733104,52.358885787205566],[4.97217414944089,52.35889254960534],[4.972182455484049,52.35891167756602],[4.972184919981289,52.35891813936746],[4.972191554302696,52.35893079931747],[4.972197175669163,52.35894346470391],[4.972201411969284,52.3589566824716],[4.972204623406769,52.358969609040415],[4.972206789922375,52.35898281955237],[4.972207694098302,52.3589960166516],[4.972207333075869,52.35900950590953],[4.972205844515284,52.35902269462124],[4.972203196199239,52.35903588825516],[4.972199405579636,52.35904879027859],[4.972195641180885,52.35905888823439],[4.972195401015741,52.35905945361703],[4.972195398410243,52.35905973222623],[4.972181640636227,52.35914478843794],[4.97216517717586,52.35922561993464],[4.972149968187451,52.3593073006687],[4.972145069636556,52.35932721819145],[4.972100398511926,52.35937116416564],[4.972049296983466,52.35942771527776],[4.972051161109233,52.35943558604324],[4.972052009743156,52.359443731866094],[4.972051478419264,52.35945188183758],[4.972049787497665,52.35946001875503],[4.972046851423003,52.359467872687624],[4.972042990537601,52.359475723377095],[4.972040203427163,52.35948020744827],[4.972029130724561,52.35948690938567],[4.972004813868332,52.35949861595633],[4.971977775473293,52.359507796423635],[4.971948925841537,52.359514436003316],[4.971916217235997,52.35957891579799],[4.971904636855978,52.35959123324894],[4.97177607695066,52.35966409478719],[4.97177135958878,52.35966463547071],[4.971770582904377,52.35967389905316],[4.971567045539936,52.35964706643237],[4.971471259339414,52.359869454045985],[4.971440836736877,52.35987159413382],[4.971205553617331,52.35987835324027],[4.971122716718932,52.35988115390438],[4.971104706319603,52.35988249268506],[4.971030226273697,52.359886446116754],[4.971030661802351,52.359890096649714],[4.971014256705004,52.35989088382293],[4.971014032366741,52.3598897595731],[4.971011267365713,52.359890307089714],[4.971012844134273,52.359906885932176],[4.970974389096616,52.35990927628087],[4.970952000359856,52.35991256794917],[4.970914545330819,52.35991946462691],[4.970917288224621,52.35994474765442],[4.97080440641519,52.36011905338825],[4.97065942569255,52.360120502693285],[4.970660345386748,52.36015702291056],[4.970601383695076,52.360157651300774],[4.970602086666509,52.36012030093781],[4.970447821514243,52.36012088145737],[4.970412863563102,52.360143227617165],[4.970352081359485,52.36015481445509],[4.970280644331468,52.3601660761343],[4.970272465361383,52.36014442295026],[4.970173025009913,52.36015811148358],[4.97002965985786,52.3601828887626],[4.969932373441811,52.36019855298785],[4.969677928052111,52.36024147089857],[4.969493771960944,52.36027340166946],[4.969468517751409,52.36027696156582],[4.969444963684998,52.36028081506211],[4.969415375971672,52.36028155549647],[4.969410778576934,52.36028181789101],[4.969409149069252,52.360295850911726],[4.96940895606034,52.36031635115052],[4.969391219068924,52.360349435155136],[4.969339879069754,52.36041835131651],[4.969214633400861,52.36052828700471],[4.969123500121373,52.36053582944403],[4.969122457850932,52.36053582576342],[4.969121662513287,52.36053610157313],[4.968866362816097,52.36040150785799],[4.968767331731704,52.36022534069731],[4.968696077346728,52.360240529687196],[4.968703177908973,52.3602534790856],[4.968633763684856,52.36026811730612],[4.968626545617607,52.36025517647577],[4.968578165838145,52.360265395185536],[4.968510610713188,52.36014522455471],[4.968291660671088,52.35975742208306],[4.968245807345747,52.35974265482737],[4.968230523504635,52.35974596213619],[4.968035589799311,52.35961973204274],[4.967646139795419,52.35970233350609],[4.967489977063637,52.35973295828235],[4.967468362714548,52.35973041003795],[4.96741050784774,52.35972737378311],[4.967352441545876,52.359728066642155],[4.96729482463128,52.35973246399564],[4.967238259378494,52.359740523042184],[4.967183392442194,52.359752165188304],[4.967158196563371,52.35975887947845],[4.966968320760909,52.35983984983728],[4.966961268450293,52.359842017800915],[4.96695197449128,52.359846820188196],[4.966937249530414,52.35985310424006],[4.966887948761586,52.35988151906571],[4.966793773936546,52.35996692725866],[4.966706924723336,52.36001664430978],[4.966663391320659,52.36006381886272],[4.966649170445535,52.36007731279782],[4.966634960350092,52.36008811944978],[4.96661176904355,52.3601016983534],[4.966561974791588,52.36012327165674],[4.966548605304133,52.36012747533191],[4.966545839296312,52.360128121605335],[4.966535977383115,52.36013088173599],[4.966526638145346,52.360134254886056],[4.966517939276178,52.360138214510826],[4.966509954770517,52.36014269795952],[4.966502772962303,52.36014767858304],[4.966496497291352,52.36015308484771],[4.966491172223059,52.36015887197314],[4.966486857243484,52.36016495928167],[4.966483611583161,52.36017129305773],[4.966481465283653,52.36017780150663],[4.966482370921929,52.3601844735919],[4.966482131369767,52.36019115958291],[4.966480901178159,52.36019704214893],[4.96648011490996,52.36019945704371],[4.966478248522646,52.360204312752074],[4.966474650714531,52.36021062730102],[4.966469983669131,52.36021668639464],[4.966464306957239,52.3602224003676],[4.966457694318254,52.360227733531104],[4.966455995579392,52.36022884196766],[4.966446295416445,52.36023466746838],[4.966441928221047,52.360236970771666],[4.96643295177216,52.36024078560054],[4.966423364396168,52.36024400506984],[4.966417329926604,52.3602456463449],[4.966363016717439,52.3602824016888],[4.966324857994068,52.36032468794214],[4.96631203226208,52.36033656002413],[4.966310214663608,52.360340912592484],[4.96628603161623,52.36036770879991],[4.966287102065589,52.360369384316236],[4.966283937058325,52.36037185366629],[4.966281599098125,52.360376896436335],[4.966281890119008,52.36038335962087],[4.966287538009945,52.36039152254912],[4.966298093020363,52.36040391815024],[4.966310457679041,52.360417443645304],[4.966320619062049,52.36043574275784],[4.966324608304518,52.3604500743313],[4.966326447722937,52.36045735191232],[4.966325950086172,52.36050982028213],[4.966430369183459,52.360661777834544],[4.966445148456557,52.36068695994307],[4.966448753368786,52.36069073859704],[4.966456691458501,52.36069735478535],[4.966465721147657,52.36070341761567],[4.966475725508285,52.360708872746024],[4.966486616972071,52.36071366593892],[4.966498264101172,52.360717724825435],[4.966510535031526,52.36072102197378],[4.966523312749261,52.36072351202949],[4.966536435945003,52.36072517644386],[4.966549772754324,52.36072598778519],[4.966563176377223,52.36072594553185],[4.96657650009888,52.3607250401748],[4.966600842879111,52.360718565645065],[4.966622805092389,52.36071543506193],[4.966661031546685,52.36071247908886],[4.966688837831521,52.36070611570847],[4.966801379596561,52.360667194249466],[4.966929851990916,52.36063109744523],[4.967186744554429,52.36056280389132],[4.967246738618578,52.36056794197241],[4.96729713153484,52.36057775551984],[4.967332173602692,52.36058551035024],[4.967363741609379,52.36060357970635],[4.96735534845076,52.36062487773054],[4.967354578038633,52.36062562097675],[4.967349731146204,52.36062897417187],[4.967344889525209,52.36063177014873],[4.967311151690424,52.36064597687471],[4.967289933831162,52.36065267833847],[4.967123730213343,52.36069217382152],[4.967081377268252,52.3606999237149],[4.967037359223496,52.360709878655534],[4.966991264479334,52.36072364597713],[4.966942459667866,52.36073524661513],[4.96693002462287,52.360733773430155],[4.966875634973619,52.36072278612528],[4.966864843345878,52.360726046293074],[4.966864403458927,52.36072599080515],[4.966841495429462,52.36073288391699],[4.966573709470319,52.36081346014355],[4.966521037197464,52.36082882169717],[4.966481002584925,52.3608413161265],[4.966480973310211,52.3608413070348],[4.966385881625356,52.36073051934725],[4.966308403273132,52.36064023220708],[4.96624266036122,52.360620549101384],[4.966230759555178,52.36060919128271],[4.966200079851421,52.36056871846917],[4.966091533814962,52.360440257828586],[4.966038694957729,52.3603757539526],[4.966023920261497,52.36036249847341],[4.966006966217456,52.36034839938361],[4.965988847191312,52.360334853383335],[4.965970050261219,52.36032158358664],[4.965950220382451,52.36030887633603],[4.965929695275434,52.36029672384503],[4.965908122539991,52.36028513384698],[4.965886092097621,52.36027382083449],[4.965865767255234,52.360265318047624],[4.965842115404286,52.360256246179326],[4.965817768237444,52.36024773805594],[4.965792828597862,52.360239785055484],[4.965767323113133,52.36023267487847],[4.965741577468229,52.360226121077844],[4.965715151269618,52.36022012208556],[4.965688470058709,52.36021469739172],[4.965661337875283,52.360210385559846],[4.965593302560242,52.36020031075709],[4.965580351015865,52.36019914117186],[4.965565676561803,52.360198531673724],[4.965551229042171,52.3601987588373],[4.965536658704198,52.360199551786316],[4.965522420704937,52.36020090315417],[4.965508526990643,52.360203100589594],[4.965494845442816,52.36020614362218],[4.965481393473633,52.36020974470787],[4.965444480120329,52.36022131518587],[4.965418725224894,52.36022500725049],[4.965348899321259,52.360251955217855],[4.965107946174315,52.3603328394489],[4.964926678865756,52.360390945578935],[4.964622724537079,52.36046941109606],[4.964545440832661,52.36049628703174],[4.964463188195348,52.36055316406451],[4.964415961632853,52.3606101571401],[4.964378289138793,52.36064432861934],[4.964350745348141,52.360684737770455],[4.964338147886081,52.36070185926634],[4.964049412054143,52.36104377993542],[4.964041697277527,52.361063039945776],[4.963977672975139,52.36108331201153],[4.963974557718372,52.36107746786365],[4.963936904014191,52.361101896611245],[4.963352316372837,52.361468561147426],[4.963337763779131,52.361479743660404],[4.963347006620585,52.361484980624],[4.963201560938393,52.36158375582724],[4.962896659211145,52.36179082737557],[4.962864762443915,52.36180416762862],[4.962862112259167,52.36180496702201],[4.962853374625164,52.361808306088186],[4.962847375600767,52.36181081012685],[4.962841385153498,52.361813952322],[4.962826704374048,52.36182009221834],[4.962800353599363,52.36183531278534],[4.962789444236894,52.361837008302096],[4.962716597559539,52.36188617943446],[4.962712322710872,52.36188953449102],[4.962564780391996,52.36198927206363],[4.962500246339106,52.36203344875838],[4.962438843267448,52.36207413145205],[4.962290802320524,52.362176751941924],[4.962346621427741,52.362263908161005],[4.962324703530955,52.362268431203255],[4.962152494372875,52.36231306608735],[4.961880255817273,52.362381473359086],[4.961737779391284,52.36241490793706],[4.961685792839741,52.36243034170844],[4.961510254854508,52.36247445139726],[4.961460219647067,52.362491527845464],[4.961420133585911,52.362504487740786],[4.961399139351109,52.36251217760046],[4.961327359869198,52.36253553907128],[4.961320152270042,52.36253698712559],[4.961108347115831,52.36260446856278],[4.960971481696902,52.3626435846581],[4.960942857920655,52.362650779609616],[4.960934233532021,52.36265299548082],[4.960897440362269,52.362662416917814],[4.960888343514486,52.36266490970283],[4.960865342279049,52.362672133868976],[4.960851760948159,52.3626768574248],[4.960831044514194,52.36268464704888],[4.960809512609932,52.36269326958753],[4.960788662479057,52.36270274840835],[4.960769307857511,52.362712430341176],[4.960768556816233,52.3627126703037],[4.960745776438769,52.36268163464739],[4.9606397899627,52.36271410283989],[4.960465702598244,52.362767437578384],[4.96034073587322,52.36280571503901],[4.960277155481818,52.362825186802425],[4.960227828333696,52.362840296979776],[4.960223648747438,52.36283524880025],[4.960022245785188,52.36289395787585],[4.960013158474103,52.36289392508733],[4.959994645564112,52.362890874374585],[4.959969063317019,52.36288405028232],[4.959965964436821,52.362882646007826],[4.959955785692526,52.36287703690876],[4.959946625971649,52.36287080234791],[4.959938587259626,52.36286402358283],[4.959931742353541,52.36285676379025],[4.95992617855783,52.36284910417468],[4.959921953728997,52.36284113482198],[4.959919111215876,52.36283292779028],[4.959917679253878,52.36282460002156],[4.959917686597612,52.36281621453343],[4.960012550969424,52.362641368809655],[4.960024856540185,52.36258617486657],[4.960017326144865,52.3625525247466],[4.959978608521962,52.36249954640836],[4.95995544562352,52.362461040445794],[4.959967713429567,52.36240824608368],[4.960019499452931,52.36232677977902],[4.960051371775616,52.362276455855636],[4.960075506551135,52.36224297390435],[4.960076949930122,52.36224096586889],[4.960007297877363,52.362220213641805],[4.959928933866088,52.3621985850898],[4.959804655527139,52.36221733421771],[4.959762382643519,52.36222258320723],[4.959751962594291,52.36222527784472],[4.959743435229326,52.362226568247394],[4.959720908176788,52.36223181661164],[4.959703863367952,52.36223793859797],[4.959686008107405,52.36224741905171],[4.959666908004112,52.362264202000226],[4.95965178810939,52.36228690423231],[4.959649233417454,52.362291496704316],[4.959641099304695,52.36230529938554],[4.959627935778865,52.36232760423357],[4.959618116045531,52.36234569694178],[4.959608879148139,52.362362722218926],[4.959607729052883,52.362372379832784],[4.959607728793062,52.36237240679491],[4.959607728619848,52.36237242476967],[4.959606115636151,52.362385936431046],[4.95961126202999,52.36239424166892],[4.959614315094547,52.36240191919563],[4.959623475240498,52.362415712432544],[4.959628219116824,52.3624216075148],[4.959641966952233,52.36244379384618],[4.959628260107785,52.36255447269273],[4.959587533258976,52.36271460308358],[4.959521585677258,52.36286845882171],[4.958588375822983,52.36445705543115],[4.958336687319794,52.36488547684762],[4.95819033084782,52.36518393999092],[4.958037649503121,52.36550161366233],[4.95789908444405,52.365863881275864],[4.957850383519694,52.36603990825035],[4.957507047858508,52.36744901907186],[4.957527109347625,52.36749398535037],[4.957486570569877,52.36764102051895],[4.95746967288808,52.36765595963319],[4.957281441117356,52.36841801592251],[4.957511925373209,52.36862663876914],[4.957665655450582,52.368772365569285],[4.957811183557332,52.36892517167388],[4.95788886402203,52.369077731610105],[4.957898361218178,52.369264655849236],[4.957873792599422,52.36946529759148],[4.957472844740108,52.371166576594035],[4.957222603872859,52.372228343901284],[4.957171119450766,52.37244964917521],[4.957043504778103,52.37271699136318],[4.95706617763132,52.37275332101171],[4.957213615586384,52.37281627588284],[4.957378646605473,52.37288370737794],[4.957301928032082,52.373279893085325],[4.956948592373713,52.373350556086486],[4.956933318968873,52.37344910434104],[4.957065356141792,52.373468008767055],[4.957049991307072,52.373530579051305],[4.956903280971605,52.37352106733278],[4.956887536291935,52.37361973969328],[4.956886813366923,52.37362008758537],[4.956814263440996,52.373637511655105],[4.95645426524537,52.37517720168938],[4.95624159196909,52.37606008646348],[4.956220934815868,52.376106387648974],[4.955766704555537,52.37647399193582],[4.955697092784221,52.37677155363047],[4.955671908556927,52.37683627192376],[4.955485011638463,52.37757466445829],[4.955408971837381,52.37800112155404],[4.95601493535635,52.37852244795448],[4.956589532149444,52.37857292828838],[4.956711149704092,52.378634962907114],[4.957976821510559,52.379681874131094],[4.957902208486699,52.37972027757912],[4.957864293023807,52.37981375559419],[4.957906574878867,52.37990188907687],[4.957995571126008,52.38002994427493],[4.958047533837138,52.3800465620313],[4.958062730506116,52.38010922513556],[4.958437531399559,52.38006441309771],[4.958316047927752,52.37988610742137]],[[5.083983193342719,52.13311559049224],[5.083675133551216,52.132877182187904],[5.083384121610631,52.1326494857408],[5.08306017268655,52.13239894599904],[5.082788911672811,52.13218647074145],[5.081847558855356,52.13145235948115],[5.081300291480841,52.13102456809989],[5.08093030945124,52.130736836433556],[5.080508770530374,52.13041189398098],[5.080056416215048,52.13005596895183],[5.079474437996472,52.129605051247054],[5.079450837966864,52.12958589013807],[5.079434483887157,52.12957489107584],[5.079325748481041,52.12949315789976],[5.079299416585322,52.129472021253505],[5.079259076119823,52.12946405144156],[5.079149906054619,52.12937978234372],[5.079048497750153,52.129292450525334],[5.078708498727751,52.129027817382315],[5.078167689466019,52.128599749439566],[5.077700023793165,52.1282522058533],[5.077116492338373,52.12780042733951],[5.077054778563489,52.127749707462264],[5.076945416326306,52.12766066313693],[5.076902987019418,52.12762572294015],[5.076795860559736,52.12754286811617],[5.076582342106579,52.12737041009637],[5.076444813399676,52.12726219157314],[5.076338647805541,52.12717371235165],[5.076214174724532,52.1270593531813],[5.076206123191949,52.12703489350905],[5.076153221667331,52.12699824466771],[5.076093466561026,52.12696016660779],[5.075564915633091,52.127235710631155],[5.075227283687417,52.12702837222386],[5.074873759555337,52.126842903575394],[5.07469267667871,52.1267323206608],[5.074435615199043,52.126588118557024],[5.074208857237251,52.12645016207991],[5.073718630911589,52.12617247847865],[5.073416125298902,52.12600202515217],[5.073083641285682,52.12581295789953],[5.072900225773903,52.12571135401656],[5.072759270065572,52.12563766301062],[5.072643478453678,52.12558848638211],[5.07249448117686,52.12552461550728],[5.072514773557808,52.12549432604834],[5.072563873237771,52.12538998014277],[5.072592501101774,52.12531028771777],[5.072632818574727,52.12522331918775],[5.072724187066038,52.12504717267833],[5.072767875565058,52.12496667548086],[5.072817071455139,52.12488169892822],[5.072862616478568,52.124796721613855],[5.072914551317055,52.1247125971923],[5.073009975548009,52.12454291466333],[5.073214721881958,52.124205851340946],[5.073327546488736,52.124028359318075],[5.073379845443134,52.12395659419857],[5.073431995404091,52.12387274874234],[5.073484469696226,52.123807158820526],[5.073626603670923,52.12358115513819],[5.073754021943697,52.123371119865375],[5.073764428976341,52.12335092444231],[5.073780699045741,52.12330883176972],[5.07379274573685,52.12328386805449],[5.073945547683019,52.12303120684345],[5.073983346354965,52.122977936267525],[5.074028224010931,52.12292300371089],[5.074069146624641,52.122878172176826],[5.074225811789338,52.12272607897843],[5.074393627478172,52.12257877879802],[5.074732648691912,52.12228756619671],[5.075078066862897,52.121995524666076],[5.075426421099664,52.12170686039136],[5.075595806764917,52.1215615400068],[5.075771792091949,52.12141819619369],[5.075861048763065,52.12134737239978],[5.076013768651839,52.12123598219893],[5.076117808753739,52.12116828909391],[5.076201657452633,52.12111907599419],[5.076314868696928,52.121046903888505],[5.076405411367131,52.12098619461138],[5.076522931137449,52.120917970417594],[5.076620076931712,52.1208567121203],[5.076905000305115,52.12069820295881],[5.077073840700233,52.120598655079284],[5.077189046549254,52.120533237392685],[5.077883804531353,52.12016233639868],[5.078110758788622,52.120038788555334],[5.078876452424756,52.11963548593202],[5.079137456606333,52.1195005024458],[5.079294995009128,52.11941665093087],[5.07945394359523,52.11936116913159],[5.079733856860293,52.11929561232101],[5.08001148106353,52.119233707016576],[5.080154228210053,52.119209073965216],[5.080314465568017,52.11919742003345],[5.080626852335547,52.119186709700664],[5.080793229826214,52.11917815397389],[5.080902303104033,52.11917535436262],[5.081023210966404,52.119175668267154],[5.081235138476263,52.11917845620163],[5.081317468722896,52.11918120435736],[5.081405963551441,52.119185649200155],[5.081522266136364,52.11919324893987],[5.082001073921,52.11923381145123],[5.082208594419741,52.11924698539097],[5.082365965828878,52.11925300971764],[5.082447406424234,52.11925349878747],[5.08274292160871,52.11924387174935],[5.082993043916885,52.119231879901854],[5.083655257335234,52.11917544228629],[5.084067087453707,52.1191349316986],[5.08436296703428,52.119103676322645],[5.084615711630234,52.119075113827954],[5.085005194045971,52.119033419131696],[5.085209740868519,52.11901344128166],[5.085330151216156,52.11898790889228],[5.08582598250069,52.118940021207685],[5.085946520444644,52.11892797056942],[5.086017537850529,52.11891944251715],[5.086104074752312,52.118906747637865],[5.086718456302845,52.118838090801596],[5.08686162036582,52.11882020071303],[5.087126228250138,52.118792220304535],[5.087330973161863,52.11877505253606],[5.087380736445795,52.11877011877106],[5.087549479168399,52.118748077472304],[5.087649029553868,52.118736816651925],[5.087815617452565,52.11872908744104],[5.087950728432694,52.118721008501936],[5.088185608604571,52.11870165970171],[5.088323260767718,52.118689092759965],[5.088518456925444,52.1186673957296],[5.088660753874556,52.11864360511106],[5.088804572822942,52.11863019935208],[5.088947096005146,52.11860528545614],[5.089088900978024,52.1185851422197],[5.089226893283834,52.11855431139552],[5.08936533015568,52.118526852045775],[5.08947511376268,52.1185201095406],[5.089553187483184,52.118510752295165],[5.089590873761877,52.1185060747395],[5.089764919527539,52.11847448937076],[5.089928900916351,52.118447938645325],[5.090067043616915,52.11842947475438],[5.090130277103131,52.118423171627306],[5.090160188370234,52.11841959781258],[5.090173664868646,52.11841738474013],[5.090226606566972,52.11841302402464],[5.090298258174681,52.11841208089427],[5.090324016711157,52.11841382649013],[5.090356624305202,52.118417566684435],[5.090398769146264,52.118425249651246],[5.090427242355606,52.1184337520696],[5.090504134585511,52.11846596088448],[5.090557815285983,52.11848885360124],[5.090592847044985,52.118503538265045],[5.090639430413788,52.11849804685915],[5.090648617215995,52.11848879430391],[5.09065136425034,52.11848627557238],[5.090661696967773,52.11847815838944],[5.090672918458459,52.11847032206902],[5.090685056074704,52.11846304530859],[5.090692161480789,52.11845941402768],[5.090706116630397,52.11845327432627],[5.090720520752357,52.118447684021874],[5.090735607274703,52.11844267066501],[5.090751157310934,52.118438215729384],[5.090783129402959,52.11843211231014],[5.090830647397313,52.11842437616872],[5.090851186763276,52.118422738022645],[5.090900478008635,52.118420614841995],[5.090908690880233,52.118419511967794],[5.090909145045828,52.11842148148824],[5.090948800995287,52.11842579648133],[5.090952447402435,52.11842636289757],[5.090955637444514,52.11842749441375],[5.090957902062173,52.11842946848097],[5.090959261514603,52.11843143128682],[5.090959491368392,52.11843199811029],[5.090964426696932,52.11844296691962],[5.090983353187401,52.11847981146528],[5.090975589226649,52.11848147273023],[5.09097691728435,52.11848597008284],[5.090978268344124,52.11852445125282],[5.090973217859712,52.11852865395775],[5.090975208850518,52.11857191836903],[5.090975205157604,52.11857247561792],[5.090975203311146,52.11857275424237],[5.090976156011976,52.11860084424331],[5.090951287678312,52.118601348034666],[5.09095219568878,52.118636178949494],[5.090974333753944,52.1186356683013],[5.090980556860231,52.11869467240037],[5.090987403895978,52.11872782847818],[5.09100539736144,52.118768886063414],[5.091011137210386,52.118797266712924],[5.090986065901805,52.11882838324717],[5.090938716572341,52.11881281390196],[5.090940764339601,52.118812261787056],[5.090936695129986,52.11880719130334],[5.090926408620238,52.11881053597978],[5.09090919908888,52.11878999104636],[5.090903042975662,52.118791377716185],[5.090874107477026,52.11878428537391],[5.090855825188076,52.11878901209052],[5.090851824120339,52.11880669947825],[5.090854800780363,52.11880698558573],[5.0908541015059,52.11880895220843],[5.090844957584878,52.118811733502156],[5.090861024795525,52.11883059481266],[5.090863502599925,52.11883565231286],[5.091003852611788,52.11900200482865],[5.091114339542402,52.11912727880459],[5.091216577421324,52.119226116143786],[5.091436291244036,52.119431423645665],[5.091570517616701,52.11955731396052],[5.091580713183688,52.119567738666795],[5.091648259845052,52.11963362842636],[5.091693603246014,52.11967671381396],[5.092086363921746,52.12003834189928],[5.092494436953907,52.12039495562661],[5.092627348320674,52.12051522390308],[5.092894475850096,52.120761938028245],[5.093183432463682,52.12102021961077],[5.093277591709686,52.12109881191221],[5.093316822577036,52.12113486177752],[5.093474489952116,52.12127260955189],[5.093828491279155,52.12156391169911],[5.093919007925994,52.12164165853135],[5.094325481840924,52.12200387931778],[5.095151360633304,52.12274350241536],[5.095486593258241,52.12304796540544],[5.096116313027992,52.12360818068193],[5.096513097693449,52.12395687881311],[5.096690025191853,52.12411572858828],[5.096796452023233,52.12420503498817],[5.097382372944399,52.12473507956115],[5.097969843088865,52.12527383434403],[5.098562274811144,52.12578592181965],[5.098889967908906,52.12606422827707],[5.099094012168123,52.126232685905784],[5.099219048535505,52.12633860043813],[5.10003792493014,52.12702031552807],[5.10022879418139,52.12718144081],[5.100513810378484,52.12742734488658],[5.101136085349721,52.12799284453614],[5.101446208358124,52.12827644000992],[5.101641692937918,52.128464259552764],[5.101315120286575,52.128505316846415],[5.100944448421878,52.12855694400668],[5.099911868010063,52.12870358120405],[5.099385868770617,52.12881577286494],[5.098623547283265,52.1290540614688],[5.097980957650349,52.129301339129725],[5.097328671303528,52.12956769798856],[5.096116849071126,52.13007702224418],[5.092386968918638,52.131638416446734],[5.090705486507131,52.132338081120196],[5.08849342832388,52.13326865695261],[5.086526626034513,52.13409505229894],[5.085700205078286,52.134440950206745],[5.085397307780563,52.13421182632109],[5.084107370412046,52.13321225210479],[5.083983193342719,52.13311559049224]]],[[[4.746040567693852,52.40808981040573],[4.743597208198724,52.40841079712007],[4.743122458678089,52.40847315332926],[4.742880514792079,52.40850621576622],[4.742712494972558,52.40853617469088],[4.742567899925401,52.40856823815342],[4.742430402452102,52.40860438455636],[4.742286726075136,52.40864801990534],[4.742175991897774,52.408686091284345],[4.742000789737793,52.40875503488602],[4.741844230752477,52.40882642559561],[4.741681115055774,52.40891305055065],[4.741521589635691,52.409013455088726],[4.741379398558951,52.40911938251252],[4.741238391232404,52.409244873554044],[4.74111384864638,52.40938008908758],[4.741020611477573,52.409505094407535],[4.740948969563553,52.40962565168735],[4.740887690585328,52.409764204998154],[4.740862640741173,52.40984120115287],[4.740702959391822,52.41037292556621],[4.737631682937229,52.420593426338726],[4.737576403352326,52.4207762212337],[4.73753628328844,52.42092068567753],[4.737501962450024,52.421140804628706],[4.737496908143895,52.42129494337176],[4.737499901038193,52.42134746607469],[4.737503783558163,52.42141550646885],[4.737525179881491,52.42156236637636],[4.737564524023202,52.42172139519373],[4.737597395169666,52.421820620137],[4.739565574231275,52.42753020030291],[4.740180202130936,52.428231085115684],[4.740581379577838,52.42939463967816],[4.740714286966662,52.429780119588074],[4.740749703258573,52.42977539651863],[4.74078910156408,52.4297758900544],[4.740839938538731,52.42977139487722],[4.74090359585019,52.42975489012113],[4.740951984742171,52.429752907090126],[4.740960738412518,52.429751552745145],[4.741026742953551,52.429738431113385],[4.741082344433553,52.42973087004117],[4.741116633039157,52.42972684175482],[4.741146823057344,52.429720544187376],[4.741565968868666,52.42963435356076],[4.741585598293469,52.429628285951054],[4.74159910174247,52.429623865665164],[4.741612483508096,52.42961972333371],[4.741625986951809,52.42961530304473],[4.741639156301244,52.42961060231526],[4.741665692700797,52.429601759166786],[4.741705186144727,52.42958764789364],[4.741731171952032,52.42957824449357],[4.741744227853038,52.429573255527984],[4.74175704432197,52.42956855286343],[4.741782803123113,52.429558581990165],[4.741795520859463,52.4295535911771],[4.741808223759651,52.42954860926959],[4.741820930848714,52.42954333977698],[4.741833530826995,52.42953835730618],[4.741846134994014,52.429533087250334],[4.741858724455734,52.429527817113026],[4.741871093380012,52.42952254577348],[4.741883697407085,52.42951728470058],[4.741895952767375,52.42951173412106],[4.741908439301066,52.429506463418036],[4.741920694655263,52.42950091283591],[4.741932832388088,52.429495361612105],[4.74194497011787,52.429489810387075],[4.741957122546896,52.42948425924077],[4.741969260270594,52.429478708013185],[4.741981181516771,52.429472876986814],[4.74199308399788,52.42946732447594],[4.742016926605645,52.4294556534301],[4.742028730221159,52.4294498217585],[4.742040416215399,52.429443989445346],[4.742052205253387,52.42943814870435],[4.742063910002922,52.42943203787211],[4.742075243133479,52.42942620363454],[4.742086815687249,52.429420083092666],[4.742098402809147,52.42941397161667],[4.742109622502305,52.429407849151694],[4.742121091999798,52.42940173703318],[4.742132330447737,52.42939533604923],[4.742143447215712,52.429389213020784],[4.742154685526319,52.42938282102169],[4.742165806346613,52.429376419394295],[4.742176805487235,52.42937029572243],[4.74218781274164,52.42936361485594],[4.742198698185529,52.42935722093199],[4.742209598459424,52.42935081810009],[4.742220366410023,52.42934441454697],[4.742252476585884,52.429324366970974],[4.742263028048338,52.42931768361684],[4.742294226647675,52.429297631068394],[4.742304429301826,52.42929066719343],[4.742314646654984,52.42928370339756],[4.742324845245172,52.429277018117624],[4.742335062722852,52.429270045332984],[4.742354909318428,52.42925611453481],[4.742364895608517,52.429248861870654],[4.742374642471967,52.429241895509435],[4.742384506949965,52.42923492978741],[4.74239414037763,52.429227675200714],[4.74241320126188,52.42921317389203],[4.742427949423305,52.42920201950467],[4.742432247431444,52.42919867250016],[4.7424414249447,52.42919142441674],[4.742450837820774,52.429184168625426],[4.74246001938465,52.42917664194368],[4.742469079402198,52.42916938423113],[4.74247815817551,52.429161848000994],[4.742487104495292,52.429154320037284],[4.742505012089596,52.429139246213744],[4.742513737998562,52.42913170806119],[4.742522360858548,52.429124178335066],[4.742531193732949,52.42911636214423],[4.742539699100529,52.429108822789985],[4.742548193819162,52.42910100475826],[4.742556463946402,52.42909346412312],[4.742564841041895,52.42908564545035],[4.742573232836579,52.42907782685693],[4.742581271776745,52.429070006343494],[4.742589428331232,52.42906218646929],[4.742597467265689,52.42905436595473],[4.742605388580182,52.429046544799796],[4.742613313947565,52.42903844504749],[4.742621235256405,52.42903062389149],[4.742629057703104,52.429022523578304],[4.742636645043691,52.42901441299801],[4.742651683080302,52.42899848768718],[4.742659049749968,52.428990384892934],[4.742666519331764,52.428982282657984],[4.742673871424709,52.42897417079584],[4.742680992205583,52.4289657880439],[4.742688123630651,52.42895768396837],[4.742695240481807,52.42894957082543],[4.742702258339925,52.42894118751245],[4.742709154523483,52.42893308215622],[4.742715819656749,52.428924687936366],[4.742722616975552,52.42891630342272],[4.742729164486977,52.428907908562415],[4.742742387635491,52.42889140714413],[4.742748836148888,52.42888274211312],[4.742755148417023,52.428874345972],[4.742761254722831,52.428865957698186],[4.742767581688284,52.428857561636335],[4.742772384450064,52.42885084697421],[4.742779533836337,52.42884049606402],[4.742786282213528,52.428835472683],[4.742791397762755,52.428823430010745],[4.742797140688348,52.42881475215233],[4.742808416518723,52.42879768289931],[4.74281395360885,52.428789003920755],[4.742824763145684,52.428771644523835],[4.742830064865802,52.42876297325236],[4.742835253152538,52.4287540137572],[4.742840319766609,52.428745332219144],[4.74284548929295,52.42873665124042],[4.74285033537249,52.42872796850275],[4.742855170802227,52.42871900708803],[4.742860119661349,52.4287103338965],[4.742864616940563,52.42870137064269],[4.742873827969798,52.4286837239305],[4.742878325243513,52.428674760676124],[4.742882700845329,52.428666075378935],[4.742891122005391,52.42864814575169],[4.74289526642383,52.42863918057811],[4.742907155695151,52.42861228209871],[4.742918104024747,52.42858537850221],[4.742921576194196,52.42857613105371],[4.743067545138995,52.42808821796925],[4.743466023602535,52.42675233809897],[4.7435654185855,52.426426228657746],[4.744151604712355,52.4245015468548],[4.744281821620751,52.424005124983594],[4.74456646914094,52.4230612692437],[4.744735137660619,52.422501853666276],[4.744737792256426,52.422493167949206],[4.744740568622812,52.422484195285335],[4.744950504636373,52.421788497630466],[4.745416945679588,52.420240643322025],[4.745419604171444,52.42023167000059],[4.745581021883985,52.41969637269139],[4.745738334568352,52.41917425585791],[4.745741106486243,52.41916556176124],[4.745743764846951,52.419156588430276],[4.745812407673641,52.418928617938974],[4.746468233626602,52.41676500114487],[4.746473432175437,52.41674705380436],[4.74649536223736,52.4166749829749],[4.746598403052373,52.41633148095801],[4.746846713737625,52.41550286051202],[4.746849371651333,52.415493887148635],[4.746852142987804,52.41548520200556],[4.747201800502259,52.41431812021884],[4.747313617355209,52.41394629957944],[4.747316157502497,52.41393732556735],[4.747481414294943,52.41338743182059],[4.747587694762582,52.41303327781949],[4.747590234801192,52.41302430379961],[4.747607604094151,52.41296653454597],[4.747709770566491,52.412626397041755],[4.747712424108606,52.412617702251104],[4.747715199244881,52.41260872949697],[4.747862488103366,52.41211772461682],[4.748151735984258,52.4121097402533],[4.748154196576119,52.41212154543375],[4.748362741270017,52.412152167918734],[4.748712254477757,52.41219280722766],[4.748763038323152,52.41219869824733],[4.748797092317798,52.412202818387435],[4.74965237434094,52.412302352620195],[4.750750678409437,52.412430158660584],[4.751555908861187,52.41250609603725],[4.751623198968112,52.41251404270217],[4.751964953255029,52.41256727649893],[4.752798531993699,52.41266021838796],[4.752820882930975,52.412662585005506],[4.752843362151794,52.4126652309253],[4.752906182327935,52.41267230807825],[4.752929147843015,52.412792920537136],[4.750518061160041,52.41982664240693],[4.748639023771208,52.42710303993147],[4.748584136341134,52.42714908475414],[4.748540466541449,52.427310349483626],[4.748536471657355,52.427420148726085],[4.748547259186052,52.42750811561173],[4.748563189159927,52.42759021427476],[4.748622234365092,52.427734057135865],[4.748763987508249,52.42793984845301],[4.748833923310211,52.428020835940174],[4.748832313208474,52.42808458603832],[4.748877799817492,52.42814914707724],[4.749022592646108,52.42823193973528],[4.749182831320836,52.42827240240403],[4.749270585719659,52.42831276227557],[4.749287354240959,52.42832043816649],[4.749304019984123,52.42832810451405],[4.7494318203888,52.42838721247136],[4.749438196594984,52.428390617176326],[4.749444690417663,52.428394022513984],[4.749451081327762,52.42839742729739],[4.749457814396046,52.42840055530309],[4.749464312234201,52.428403682042465],[4.749470923676361,52.428407088011596],[4.749477656747518,52.428410216016175],[4.749484507564627,52.4284133356663],[4.749491358253271,52.42841646430303],[4.74949821295518,52.42841931434214],[4.749505284304383,52.428422435177836],[4.749512139008114,52.42842528521616],[4.749519331987021,52.428428128086765],[4.749526186692539,52.42843097812427],[4.749533497288902,52.42843382162691],[4.749540690141151,52.42843667348317],[4.749547769520094,52.4284392371219],[4.749555084131148,52.42844180202601],[4.749562394601741,52.42844465451387],[4.749569709214538,52.42844721941704],[4.749577263071317,52.42844950698829],[4.749584695301452,52.428452072523406],[4.749592009787363,52.428454646412284],[4.749622431056342,52.42846379779614],[4.749630209589013,52.42846579896634],[4.7496377634521,52.42846808653376],[4.74964554185682,52.42847009668998],[4.749653320262247,52.42847210684567],[4.749661216284113,52.42847411763366],[4.74966899482036,52.42847611880132],[4.749676894854833,52.42847785099103],[4.749684805580771,52.428479861856495],[4.749692926275462,52.42848158624459],[4.749700826311856,52.42848331843272],[4.749716979363186,52.42848677571857],[4.749724883541711,52.42848822032086],[4.749733022952303,52.428489666188085],[4.749741143521304,52.42849139955985],[4.74974940455952,52.42849256746145],[4.749757426355932,52.428494012694294],[4.749765786298267,52.42849545974553],[4.74977381210631,52.428496626380046],[4.7497820584444,52.428497794200275],[4.7497904371007,52.42849896273164],[4.749798683439666,52.42850013055068],[4.749807047394877,52.42850129900183],[4.749815194831197,52.42850218766899],[4.749823562797493,52.42850307752174],[4.749831945595465,52.42850395846598],[4.749840313562438,52.42850484831753],[4.749848578615909,52.42850573761498],[4.749857068338781,52.42850634051376],[4.749865436306716,52.42850723036355],[4.74988219509471,52.428508443959046],[4.7498906888284,52.42850876825822],[4.749899060807265,52.42850937950842],[4.749907554541263,52.42850970380636],[4.749916970361058,52.42851032066903],[4.749924541880303,52.42851036138741],[4.749937398092993,52.428510987762486],[4.749983929858019,52.42851123798708],[4.750017598854875,52.42851029556797],[4.75002610060792,52.428510062662994],[4.750034488883296,52.42850954154078],[4.750042990636114,52.4285093086346],[4.75005978175866,52.42850827545327],[4.750068291657856,52.42850747636383],[4.750076679802944,52.42850696422561],[4.750552919445913,52.428459525195855],[4.750574078470473,52.42845739194552],[4.750723397146335,52.428442465562156],[4.750949468535801,52.428449863129984],[4.750996163717292,52.42844589860263],[4.751198289539974,52.42842423572398],[4.751291296570804,52.42841125330979],[4.75138761818622,52.42839884584461],[4.751498677815919,52.428384000808286],[4.751604530168779,52.42837136567592],[4.751706156301711,52.428358150547425],[4.751788983637761,52.42834960700207],[4.751889553837889,52.428337221910844],[4.751992014064801,52.428321197859006],[4.752080548552336,52.428307354995866],[4.752269137494117,52.42818787649233],[4.752385641650251,52.42817163974208],[4.752823567648881,52.428119501486556],[4.753375527424869,52.4280530789846],[4.753893118080593,52.4279881509406],[4.754276638475018,52.42793403584993],[4.754806125538835,52.42786467351525],[4.755396310270602,52.42779283728069],[4.755942385247661,52.42771991830059],[4.756021603302314,52.42770657111952],[4.756299630681504,52.42767068981561],[4.75656893901722,52.42762550413019],[4.756650852424586,52.42761696131698],[4.756777388066796,52.427603308166745],[4.756903950357908,52.42758881017967],[4.757030064744044,52.427573752438434],[4.757156073451378,52.42755784915767],[4.757280810949471,52.42754138174841],[4.757281722453278,52.427541386593745],[4.757282531045368,52.427541390892046],[4.757988439335039,52.42745667532785],[4.757989130312485,52.42745667899681],[4.75798982537638,52.42745639508119],[4.758000290251658,52.4274556058036],[4.758075857488356,52.42744870900997],[4.758151079905388,52.42744124411272],[4.758226196683538,52.42743293376351],[4.75830110095031,52.427424056013905],[4.758375796404016,52.427414350240824],[4.758450029539844,52.427404066754995],[4.758524392120515,52.42739294805361],[4.758598057023442,52.427381259379736],[4.758671763281778,52.42736872603596],[4.758735032921117,52.42736120635745],[4.758928573587031,52.42733779509844],[4.759121886854564,52.4273138160937],[4.759315097975303,52.42728873074607],[4.759507872034698,52.42726334617496],[4.759656798161349,52.427241378095836],[4.759805965918456,52.42721998632191],[4.759955257953568,52.42719915225569],[4.760104964230695,52.427179165037394],[4.760215686713457,52.42716485831317],[4.76021659820993,52.42716486313594],[4.760217406795511,52.4271648674142],[4.760249260789498,52.4271622228013],[4.760339066299406,52.42715483367238],[4.760428902254601,52.42714633016209],[4.760518389535588,52.427137528145764],[4.760607770995603,52.42712788964668],[4.760696943846002,52.427117405133835],[4.760785889312045,52.427106362114806],[4.760874493845916,52.42709447238366],[4.760962900518113,52.427082015315875],[4.761051064966665,52.42706900865284],[4.761227541909254,52.42704915248456],[4.761604233523915,52.42699637074462],[4.76212520183347,52.42693621508476],[4.762512324394149,52.42688488756647],[4.762681767586314,52.42686639423688],[4.763024631176791,52.42681006830515],[4.7634354537407,52.42675966251609],[4.763610411302087,52.4267368648188],[4.763865301779305,52.42670393580595],[4.764304601862822,52.426587626235],[4.764740963055098,52.42637376513673],[4.764869288496866,52.42629404421733],[4.764932344983637,52.426259655896715],[4.765224100115487,52.42609938215875],[4.765372824245568,52.42581699636567],[4.76545774814213,52.42566068758236],[4.765491819401572,52.42559007026571],[4.765492138867796,52.42556731509544],[4.765463390811183,52.42555199303018],[4.765171693167216,52.425494972129286],[4.764022779439294,52.42527792234162],[4.75989500845781,52.424467345540826],[4.7601382328535,52.42398050180074],[4.764266072575303,52.42478327838748],[4.764988380580844,52.424919956512014],[4.765718448017778,52.42506031991382],[4.765743248385031,52.42506044998353],[4.765768205457128,52.425050460723256],[4.765785042380474,52.425030326702945],[4.765972208250054,52.424659648843665],[4.766178407420328,52.4242587279571],[4.766590596629129,52.42347205518799],[4.767013686456818,52.422644984323746],[4.767285727782565,52.42211799399748],[4.767838849328347,52.421046990968065],[4.768221553110576,52.42029366424015],[4.768515973117931,52.41975477127925],[4.768983731897395,52.41883121851687],[4.769648284744193,52.417570203632415],[4.769785334935472,52.417320816934144],[4.770094516827533,52.4166997143032],[4.770685947995931,52.41559007887104],[4.770675906412408,52.415537439520605],[4.770150239972342,52.41542725484204],[4.770106197882219,52.415423367456675],[4.766281822737665,52.41467749348272],[4.766342704779115,52.414550537496254],[4.766161907604881,52.4145142771737],[4.766199236402059,52.41443811320365],[4.766194409755871,52.4143986677795],[4.764739888495576,52.414105476980595],[4.764701978522521,52.414088956100855],[4.764680825021356,52.414057765422726],[4.764674770722445,52.41403674728815],[4.764680423771664,52.41399636821008],[4.764731594917436,52.413880848298625],[4.764808690788753,52.41373203923292],[4.764864509889599,52.413647623209805],[4.765633879955369,52.41379465676512],[4.765597083981132,52.41387995488586],[4.766428532904453,52.41404051189933],[4.766480590053698,52.41395374759957],[4.76808648143237,52.41426901799056],[4.768045342638833,52.41435300891005],[4.768881046595455,52.414518523093854],[4.768925205277849,52.4144318423498],[4.76945241122282,52.414529646511994],[4.770313237446309,52.41469981134841],[4.770361988816884,52.414706401516995],[4.770397516654674,52.41470840200317],[4.770439114725731,52.41469775241633],[4.770473519474502,52.4146716784059],[4.770748096194927,52.41413448273393],[4.77091829516374,52.413830747610355],[4.77102255733259,52.413603001974806],[4.771214113070665,52.41363931082161],[4.771871253176497,52.41237900802769],[4.772333743831722,52.41149074450795],[4.772177787486756,52.41145805554858],[4.772278152481262,52.4112423140739],[4.772278558708764,52.41120987052053],[4.772281428759118,52.41112804325669],[4.772280977930168,52.41103557527125],[4.772278896383645,52.41093458745023],[4.772277404593763,52.41079216930469],[4.7722756623572,52.410666736643975],[4.772277034242853,52.410567896829946],[4.772278273150087,52.41047863723253],[4.772279017320008,52.410300073083164],[4.772282223256759,52.410146390726595],[4.772284760970659,52.41004614588118],[4.772280018537378,52.40997803928413],[4.772277877907586,52.40988131131352],[4.77227514728134,52.40982709219706],[4.772279466885421,52.409774239858145],[4.772266548903079,52.40956983696993],[4.772251369932191,52.409536809192524],[4.772266088105332,52.40938279111075],[4.772272604990583,52.40925845284761],[4.772267129085751,52.40915213562574],[4.7722710985362,52.40911709512718],[4.772266958446092,52.409039482632714],[4.772269230122762,52.40887581002727],[4.772277685628147,52.40876744400941],[4.772280747215529,52.40867180356898],[4.772283180966319,52.408496447752306],[4.772281335352361,52.40837952586894],[4.772285812425073,52.40829943254208],[4.772275933242502,52.408267897266164],[4.772278157881233,52.408156317237385],[4.772282305313161,52.407947491025254],[4.772279859910399,52.407867433660094],[4.772283744352173,52.407736853200504],[4.772282695014881,52.40765574252704],[4.772287460002357,52.407601490391606],[4.772285976250734,52.407568623568004],[4.772292082608741,52.407425130285056],[4.772277564987137,52.4073985051869],[4.772294129810919,52.40733162363126],[4.772287096927443,52.40721255369046],[4.772298179406463,52.407165839093416],[4.77228798184924,52.407148790371274],[4.772287767115438,52.407039309769914],[4.772290475180385,52.406958542146846],[4.772250982971384,52.40681060588999],[4.772248990085822,52.40670324614108],[4.772243912670671,52.40656824210543],[4.772248072178244,52.40626854097887],[4.772246528217226,52.40600494987915],[4.772247205437704,52.406003802965614],[4.772246557777933,52.406002819941115],[4.772247028210848,52.40571691376704],[4.772250515573186,52.40534068757455],[4.772258144471058,52.40529289448407],[4.772256018813381,52.405194045391674],[4.772259168550879,52.40509415414326],[4.772259086627834,52.404972990135825],[4.772261214627163,52.40488318679935],[4.772267743744913,52.40478862483591],[4.772278825377859,52.40474192819038],[4.772282897946562,52.40469836782798],[4.772290497160835,52.40465164411542],[4.772301946681099,52.40459431689131],[4.772288489516221,52.40454640534688],[4.772287017230711,52.404025603635745],[4.772296914710574,52.40298513624969],[4.772307461560359,52.40187982550122],[4.77231134632499,52.401471712586435],[4.772297442220442,52.40127075551349],[4.772301962173685,52.40108796841324],[4.772291811143504,52.40104966390862],[4.772292016621747,52.400770110397595],[4.77230524303146,52.40070855014308],[4.772300321997844,52.400687268597565],[4.772297128215881,52.4005150289868],[4.772309911262576,52.40049706594419],[4.772298114286593,52.400470436949966],[4.772296017553377,52.4003928079592],[4.772304775312961,52.400366312632194],[4.772292365304983,52.40025890764983],[4.772315287207073,52.4002345710068],[4.772348537346974,52.40021880834832],[4.774356759515223,52.400229071932195],[4.774404329008785,52.40022651386892],[4.774437461280904,52.40022134655861],[4.774468898581276,52.40021336629713],[4.774498431480322,52.4002028416346],[4.774548454989797,52.4001800737995],[4.774593439713395,52.40015615641615],[4.774635252577621,52.40012996669035],[4.774673522291568,52.400101790313066],[4.774708024368988,52.400071922722105],[4.774738652239366,52.40004063300177],[4.774754428515367,52.40002077078667],[4.774770863233575,52.39999472841073],[4.774777231246794,52.399981558350156],[4.77478680919287,52.39995407843261],[4.774791656001662,52.39992658304081],[4.774791819857866,52.399898775829065],[4.774787267411122,52.39987094423256],[4.774634988065931,52.399260401697624],[4.77463043193082,52.399232848691625],[4.774630020763665,52.399212633141076],[4.774633725562031,52.39918484423769],[4.774642153448831,52.39915764598759],[4.7746548050022,52.399131026819184],[4.77467552510273,52.39910107897258],[4.774683676297822,52.399085392581725],[4.774684537621789,52.39907303889495],[4.774683124342246,52.399066857009956],[4.774663443330233,52.39900355345279],[4.774658300729903,52.398993981879315],[4.774648779010307,52.39898551112623],[4.774635880509396,52.39897897324824],[4.774613938338526,52.398972963812035],[4.774602647205556,52.3989681329261],[4.774598194116337,52.398965018112676],[4.774592121236999,52.39895684381213],[4.774563104195281,52.39888759599261],[4.774547732887249,52.398862242964],[4.77453178202418,52.398845865687065],[4.774480961094702,52.39880207518049],[4.774317981900724,52.39833471434576],[4.774020388294169,52.39763381098806],[4.773999251068322,52.39759410156808],[4.77397808466646,52.39756393697496],[4.773952315066962,52.397535150632386],[4.773922970449936,52.39750776583654],[4.77388944510017,52.397482022117316],[4.773852483946447,52.39745823789976],[4.773812263414471,52.39743640510664],[4.77376902555085,52.39741708222823],[4.773723229651547,52.39739999302017],[4.773699460618661,52.397392284251424],[4.772906028857117,52.39584621640316],[4.772820260792667,52.39584689500226],[4.772898410834424,52.39579056970624],[4.772932318476258,52.39576209263152],[4.772953194493676,52.39573888668535],[4.772969708094583,52.39571453464376],[4.772981884681818,52.395689324248195],[4.772989474637352,52.3956632452177],[4.77299236740951,52.39563685422011],[4.772990661734615,52.39561044836342],[4.772984133518062,52.39558429611761],[4.772875750342585,52.3952641027613],[4.772832861443417,52.39518692720361],[4.77281032708724,52.39511462072358],[4.772882733040344,52.395024247012266],[4.772837881983432,52.39494979354983],[4.77283755542038,52.394950034525074],[4.772810595715134,52.394970171036356],[4.772759229605076,52.39500854289639],[4.772709791768721,52.39504770667257],[4.772660914044669,52.395090971747344],[4.772591790310369,52.395155450679695],[4.772537180364306,52.39520840171241],[4.77244492770323,52.39530701283035],[4.772428627727114,52.3953244273691],[4.772083368570902,52.395696740759576],[4.771928396679302,52.39586386287837],[4.771855698295189,52.39594225381694],[4.771709927606612,52.396099456040034],[4.771507401585721,52.396317830261836],[4.771231554589644,52.396633717373064],[4.77117940709051,52.39669001503589],[4.771084801595074,52.3967925584695],[4.771026907402711,52.396855306335844],[4.770825223788219,52.39707389048232],[4.770741660083821,52.3971641509262],[4.770691140918194,52.39721948617084],[4.770680859232962,52.39723087405268],[4.770651193414539,52.397263704657284],[4.770635515629297,52.39728381850971],[4.770622770158406,52.397300154796326],[4.770610849849171,52.39731526405607],[4.770588265438696,52.39734389828082],[4.770555610550219,52.397396189743645],[4.770526909968979,52.397449391571975],[4.770520817079713,52.39746067542011],[4.770485293025101,52.397535421286406],[4.770392885092111,52.39775114029579],[4.770271793771068,52.39799021278092],[4.770153063785584,52.398191503974225],[4.770055378615649,52.39833226439167],[4.769939819362852,52.39846717043628],[4.769792386706528,52.398610745179894],[4.769642564472752,52.398739100018915],[4.769376638143886,52.398935758142976],[4.769290019230018,52.39898754306308],[4.769174092464588,52.3990568449045],[4.768908545747743,52.39918809116744],[4.768656109393174,52.39929368238174],[4.768227936548844,52.39944464171405],[4.768041585975737,52.3994957157689],[4.767880531294752,52.39953984844405],[4.767504829276569,52.39961267044163],[4.766853402518932,52.39970119612727],[4.76258876454255,52.40025272354819],[4.762454179470393,52.400270816129776],[4.762342398049506,52.400285847196514],[4.762113237433976,52.40032939704298],[4.762113222741322,52.40032939696542],[4.761756537449285,52.400422712299324],[4.761425097370934,52.40054184691611],[4.761070074869564,52.400715887921166],[4.761034208521977,52.40073346709721],[4.760808748606217,52.40088086942],[4.760568380834953,52.40108381760652],[4.760518119717881,52.4011394285147],[4.760476277601407,52.40118572770402],[4.760396906998035,52.40127356738396],[4.760248120064742,52.40150481657238],[4.760178571039861,52.401658633197364],[4.759797638703595,52.4029362641268],[4.759721489490257,52.40319166989657],[4.759515484434843,52.40388258065085],[4.759432096021124,52.40416330225313],[4.759362902975671,52.40439624829371],[4.759207138931083,52.40491336809363],[4.759097326822705,52.40527788582284],[4.759011370112401,52.405472994227615],[4.75897527753202,52.40555491480059],[4.75886104934084,52.40571348180029],[4.758719443804329,52.405862628094866],[4.75863764395413,52.40593336797641],[4.758560723702933,52.40599990047203],[4.758345252775019,52.406150290073505],[4.75826922322389,52.4061954273045],[4.758242501799329,52.406211283603746],[4.758191370643907,52.406241642323],[4.757991120081381,52.406335255670534],[4.757835870151245,52.406402791677216],[4.757579083661022,52.40649431538755],[4.757289990079301,52.406578925951415],[4.757061681533667,52.40663121570492],[4.756800713248664,52.40667559277904],[4.751143843216834,52.40741921646674],[4.751411728807906,52.40825150817475],[4.751453759317809,52.40838985731817],[4.751639286049406,52.40900053604556],[4.751647034407335,52.409034119851974],[4.751649597576738,52.409066489458255],[4.751643287863984,52.409100635972585],[4.751628827908314,52.40913638351583],[4.751597262618419,52.40919762737045],[4.751571232570692,52.40926231625609],[4.751567828605691,52.40930494480466],[4.75157292336942,52.40933909857857],[4.751579210907971,52.40938333400497],[4.751583873228268,52.409406655234584],[4.751613098661619,52.409505452449594],[4.751805379720329,52.410139589025576],[4.751868933574745,52.41033813640298],[4.751870354358674,52.41035077179018],[4.751864835321233,52.41036975125106],[4.7518532951717,52.41038430341779],[4.751836998669227,52.41039642136114],[4.751816536487159,52.410405910517085],[4.751793166420396,52.41041217545148],[4.75113316376814,52.41049711788449],[4.751083366914958,52.410503465480275],[4.751035292288291,52.410511673776924],[4.751015181214488,52.410518189740124],[4.75100013729043,52.41052493962985],[4.750983460634297,52.410534853419826],[4.750966108126115,52.41054986861138],[4.750955556656364,52.410564120418094],[4.750950431551965,52.410575084893026],[4.75094756122693,52.4105876702821],[4.750948905054829,52.41060769318565],[4.750954041859076,52.410621498971715],[4.751355424280059,52.411818411392446],[4.751446519617797,52.41212362934164],[4.751450090729905,52.41227728479263],[4.751450481009503,52.41229105609186],[4.751445601877827,52.41231047935995],[4.751434472174386,52.412329159053805],[4.751419107534765,52.41234490399446],[4.751401156687638,52.41235753428633],[4.751380264715094,52.4123682254162],[4.751352022621273,52.41237797832034],[4.751321584819753,52.41238403446263],[4.751302347429156,52.412385944458144],[4.751283539990373,52.41238657151285],[4.750741832571808,52.41233076973684],[4.750434710236779,52.41224680074448],[4.750215759936926,52.41219966942893],[4.750149711128112,52.412188241395626],[4.750051778128281,52.41218124357122],[4.749980230158624,52.4121832584794],[4.749884371063272,52.41219556833417],[4.749624430535866,52.41221272036686],[4.749393825596178,52.41218807502784],[4.748910767460595,52.412137317127986],[4.748688937184911,52.41208008322629],[4.748227800981977,52.41191683335431],[4.748183832001455,52.4118970388857],[4.748123745418257,52.41186462855364],[4.748072849597154,52.41183087467497],[4.748030396604373,52.41179668098762],[4.747821870967726,52.411582582377505],[4.7471430149031,52.410725557964085],[4.746932944265883,52.4104542603787],[4.746895825860123,52.41038974350455],[4.746853931840776,52.41029161362391],[4.746749191856607,52.409966877646745],[4.746040567693852,52.40808981040573]]],[[[4.867169467090608,52.430461336665175],[4.867217307577995,52.43045676516608],[4.867265154492755,52.43045164543127],[4.867312555631771,52.430445669898006],[4.867511438873453,52.43042294969127],[4.869008998553795,52.43024863138561],[4.869354835213226,52.42994737720222],[4.869482624717492,52.42983530270407],[4.869661092493472,52.42968076719669],[4.869811376222748,52.42955110294196],[4.869949893695176,52.4294241912782],[4.870141346187033,52.429250334412735],[4.870346688099809,52.4290667053583],[4.870460439504422,52.42896524586557],[4.870623328819646,52.428817094083286],[4.870729301072153,52.42872319495923],[4.870860507813019,52.428602424857594],[4.871001642656193,52.428477500636795],[4.871172046184109,52.428325165632685],[4.871313159684083,52.428201921630695],[4.871431768084387,52.42809712097402],[4.871549438336861,52.42799455403317],[4.871679415346891,52.42788052737072],[4.871790163064673,52.427780176980534],[4.871921855711185,52.42766643612856],[4.872044014249618,52.4275633309769],[4.872123981123613,52.427492622447566],[4.872210604414733,52.42741211033448],[4.872291944604235,52.42734084143899],[4.872384511754035,52.42726372538121],[4.872499062446402,52.427162267393065],[4.872615260741011,52.427056888857905],[4.872741195815308,52.426944811762425],[4.872862110547642,52.42683833000612],[4.872955428620431,52.42675587811275],[4.873058994975559,52.426669534030495],[4.873183011629389,52.426554077782065],[4.873292259522683,52.426453162242105],[4.873358418056856,52.42639502958858],[4.873438328269377,52.42631870265854],[4.873578131508522,52.426178032254676],[4.873715093133065,52.4260351024662],[4.873842230280954,52.42589746860614],[4.87397099959117,52.42574832853315],[4.874082968313826,52.42561147355385],[4.874202237252658,52.42545863412659],[4.874303447972594,52.425317517168466],[4.874573522449544,52.42504568673836],[4.877066231585871,52.422537662076316],[4.877161727737145,52.42245353553658],[4.877317207500027,52.42230647503656],[4.87748892021625,52.42214627234631],[4.877624939574823,52.4220229988663],[4.877712450821156,52.421933777508336],[4.877840709230065,52.42182564152411],[4.878109765649391,52.42159002771166],[4.878274927590597,52.42143907096245],[4.878326175364809,52.42138648874228],[4.878340195817741,52.421375314416956],[4.878366169118558,52.42135379273226],[4.878391116500876,52.4213319970078],[4.878434410049667,52.42129229580642],[4.878488739723496,52.42124141642156],[4.878522299597956,52.42120954656194],[4.878572587124795,52.42116116632196],[4.878595500324669,52.42113599146232],[4.878619827578556,52.42110800953982],[4.878643114316103,52.421079744530125],[4.878822313821487,52.42093754728202],[4.878939915656217,52.420817285009484],[4.879084566434731,52.42068925646],[4.879238596506677,52.420553421740735],[4.879354166123178,52.420447386745714],[4.879447759775044,52.42035789357231],[4.880168661883014,52.41969514995536],[4.880487713959897,52.41941353024129],[4.880685821932554,52.41923127226391],[4.880818402722815,52.41910504144139],[4.880960827947672,52.418989421981955],[4.881153683581291,52.418790495685556],[4.88124606595378,52.4186841620762],[4.881362868024248,52.41859163878061],[4.881728492672644,52.418303123274214],[4.881906819522242,52.4181440747966],[4.882147450958984,52.417918441628785],[4.88240020273123,52.41767769747046],[4.882663296906475,52.417446263057],[4.882923461248967,52.41723953157642],[4.883150636609674,52.41706523936078],[4.883391670202056,52.41691431955356],[4.883567503590132,52.41678222086076],[4.883722816387775,52.41669665356485],[4.883753386136687,52.41667374815416],[4.884010597169673,52.416494530853186],[4.884175802501901,52.416376424803985],[4.884353666818322,52.41624630185646],[4.884471466777882,52.41616702749367],[4.884595904665967,52.41607010249565],[4.884630886691158,52.41604300037411],[4.884754849179187,52.41594775387973],[4.884755428724501,52.41594719910402],[4.884756005109865,52.41594692293157],[4.884921678258793,52.41581701706102],[4.884922852141741,52.415815898583],[4.884954824489556,52.415791039503226],[4.885124790669277,52.41565834740343],[4.885170913167785,52.41562091161095],[4.885238263767034,52.415565024245225],[4.885304706080118,52.41550885437697],[4.885519377571479,52.41533253635143],[4.885537392978152,52.41531351390601],[4.885556437220433,52.41529449581377],[4.885576621570523,52.415276039778554],[4.885597490292325,52.41525815285817],[4.885619516871611,52.415240558439876],[4.885642330910424,52.4152235155966],[4.885665950057201,52.41520676376114],[4.885690694509962,52.41519058290504],[4.885716138133,52.415174962236314],[4.885742489849799,52.415159624022074],[4.885769537481699,52.41514513358475],[4.885780627579764,52.415139284629355],[4.885838539424625,52.41510554744681],[4.885888981546333,52.41507205724843],[4.885905284640378,52.41506144891578],[4.88592228366143,52.41505168836283],[4.88594019068387,52.41504221925316],[4.885958885074584,52.41503331070508],[4.885965930898615,52.41503024876529],[4.885988072852247,52.41502192101796],[4.886010781808774,52.41501414391064],[4.88603405746373,52.41500694440458],[4.886057793985001,52.41500058269333],[4.886082200192416,52.414994790030676],[4.886106717672951,52.414989555066924],[4.886129840749128,52.41498544664324],[4.886160216326983,52.41498079367542],[4.886190685127135,52.41497699491936],[4.88622150036726,52.41497375485364],[4.886252529768547,52.41497107291872],[4.886283329045675,52.414969243828104],[4.886314574500918,52.41496825246566],[4.886338229607891,52.41496778624253],[4.886372231839916,52.41496737273935],[4.886406209925195,52.4149677949744],[4.886440193159592,52.4149690620591],[4.886474037817999,52.41497088578175],[4.886507769945239,52.41497356284453],[4.886544473129349,52.414977366918485],[4.88671836932697,52.41498399747441],[4.88674006839263,52.41498493396717],[4.886799315573216,52.41500596361303],[4.886913542590214,52.41501852535667],[4.886929065979476,52.41502617646434],[4.887108076089042,52.41504855639892],[4.887208045314171,52.415062459749734],[4.887524967449496,52.415115196974675],[4.887526345901866,52.415115481404484],[4.887693127795702,52.41514174546672],[4.887793078470597,52.41515732893162],[4.887978901600886,52.415185641137874],[4.887980397641113,52.415185926057895],[4.888074756014303,52.415199526417865],[4.888074632153564,52.41520008312935],[4.888075422597019,52.415200374063396],[4.888136968305412,52.415211858865085],[4.888206647040077,52.41522423171178],[4.888276449672107,52.41523604780579],[4.888306823735157,52.41524066053118],[4.8884102223731,52.41525683320007],[4.888529790898514,52.41527418830022],[4.888662436414036,52.41529327898979],[4.888795564914545,52.41531125709567],[4.888919743680954,52.41532778635633],[4.889058713822081,52.41534522251113],[4.889146781264626,52.4153562610537],[4.889302406384646,52.41537489038378],[4.889353563391569,52.41537959915929],[4.889385809444129,52.415381145702625],[4.889408763390739,52.41538292282785],[4.88945913935336,52.415386504822294],[4.889509627700474,52.415389242429896],[4.889551982799487,52.415391110006375],[4.889602954109452,52.41539272614869],[4.889654155279112,52.415393507384515],[4.889721120119411,52.415392377506144],[4.88978807849815,52.41539182277119],[4.889811271804776,52.41539192013606],[4.889874887601172,52.41539189956585],[4.88993849381403,52.41539273274621],[4.889946295278868,52.415393044103716],[4.889993236149717,52.41539493076751],[4.89004017921599,52.4153979318882],[4.890079070956863,52.415400620593715],[4.89013012831785,52.41540504999883],[4.890180829813302,52.415409756505646],[4.890228188539747,52.41541501519088],[4.890274864922704,52.41542082822851],[4.890321179193143,52.415427475578944],[4.890372886490721,52.415435556583034],[4.890448058984964,52.41544964081832],[4.890518528287739,52.415463696302915],[4.890562168598101,52.41547286686178],[4.890678347619451,52.41549638008337],[4.890756029529173,52.41551215532524],[4.890856058727183,52.41553139449338],[4.890901093368791,52.41553944731388],[4.890974338760953,52.41555239070038],[4.891047920133381,52.41556421199451],[4.891137803618856,52.41557723393676],[4.891223684167367,52.41558938522969],[4.891225062658386,52.415589669616516],[4.891420879204155,52.41561717340258],[4.891471911808516,52.41562384903198],[4.891561579276403,52.415635180073465],[4.891651494625568,52.41564537964224],[4.891766730550235,52.41566131127588],[4.891786097344101,52.41566448399833],[4.891867969777601,52.4156749373774],[4.891915910680879,52.41568075505291],[4.892028415009077,52.41569386188481],[4.892123036965814,52.4157038111354],[4.89220928741802,52.415713159117054],[4.892270866244942,52.41572183776213],[4.89233496157145,52.41573024826895],[4.892399183842163,52.415737823421516],[4.892705660482045,52.415769993353976],[4.892750017435445,52.4157769191875],[4.892790284973916,52.41578017896302],[4.893056330472439,52.415804036480566],[4.893110025867634,52.415807909379666],[4.893229284635359,52.41582302051279],[4.893278831175056,52.41582855672525],[4.893301076798752,52.41583061774627],[4.893300472211948,52.41583342835399],[4.893474431002216,52.415845378901835],[4.893554191349565,52.41585021403159],[4.893721170528635,52.415859330997584],[4.893721536716285,52.415856806999045],[4.893805330790776,52.415861083551036],[4.893804943603696,52.41586417368296],[4.893889648881161,52.415868462957256],[4.89397514797162,52.41587274648765],[4.894055711624816,52.415876730798594],[4.894153395358586,52.415881073899804],[4.89423363038834,52.415884211885135],[4.894328312647306,52.415888820970736],[4.894539281212022,52.4158970052912],[4.894570037223516,52.41589909247122],[4.894571155743872,52.41589235640059],[4.894709535808389,52.41590108343465],[4.894754753866042,52.41590463274699],[4.89493671546787,52.41592926898524],[4.895076009544733,52.41597084916676],[4.895344858445692,52.41605088585056],[4.895698674386059,52.416132964077576],[4.896042891202194,52.416172804545695],[4.896045314654451,52.416166343500244],[4.896049750556895,52.416154695948386],[4.896049707658066,52.41615458791907],[4.896069084280071,52.41610388814568],[4.895993120609405,52.41608533735765],[4.895929425434306,52.41606061795081],[4.895903251088677,52.41601649701522],[4.89593872264093,52.415943296064704],[4.895966219805944,52.415902588265126],[4.896021787557549,52.41582246924154],[4.896077975466752,52.415779202033946],[4.896242646335725,52.4156557653362],[4.896290050456079,52.41562252777409],[4.896386142855055,52.41554626139828],[4.89669494073729,52.4154419355221],[4.896862593748523,52.41538079456762],[4.896868938723346,52.4153785739182],[4.896873004404966,52.41538308455691],[4.89688272071189,52.4153949884335],[4.897076110532662,52.415332515657695],[4.897263153875406,52.41527235310775],[4.897805177693887,52.41510472695904],[4.897766021773682,52.41505675104368],[4.897792604927555,52.41504535668522],[4.897968606594762,52.41494668036878],[4.897995726830003,52.41492657018346],[4.89811023618183,52.414805979567326],[4.898143298286881,52.41482013673757],[4.898337981614183,52.414680014139336],[4.89832636518191,52.41467378272203],[4.898347447713886,52.414660001797145],[4.898339751381608,52.41465283386623],[4.898363274961641,52.41463628583294],[4.898394311210689,52.41464355005249],[4.89853538201134,52.414546634160125],[4.898598200302176,52.41449220350542],[4.898629005223805,52.414468459392346],[4.898635140533488,52.414470569820814],[4.898643071303291,52.41447114178026],[4.898876851297476,52.41430412673736],[4.898858265629838,52.41429677015775],[4.898863015411752,52.414292565548756],[4.898878305468802,52.41427887749449],[4.898907537763974,52.41428043598928],[4.899070741264569,52.4141555512922],[4.899030527091128,52.41413687109678],[4.899176614769871,52.414031239133955],[4.899407294073661,52.41386510903268],[4.899420533628978,52.413864085023135],[4.899463790645503,52.413886732170006],[4.899689362989136,52.41370368375402],[4.899704505613578,52.413689994986115],[4.899830390941643,52.41357672948377],[4.899849333033319,52.413565033604364],[4.899878138476722,52.41357863352859],[4.900027173609667,52.41347193412287],[4.900170282685779,52.41336943435597],[4.900135629015428,52.41335302429596],[4.900161262745312,52.41333425564734],[4.900312108435253,52.41322315938599],[4.900346737379328,52.413241816200724],[4.900503873580706,52.41311996038753],[4.900529074002352,52.41310047086898],[4.900612565204205,52.41304625886988],[4.900580865858714,52.413028512927184],[4.900692990760685,52.41294997211594],[4.900773155414686,52.41289080314746],[4.900808274668519,52.41286479332056],[4.900839378311021,52.412843081061965],[4.900891513561898,52.41280671540777],[4.900926609991719,52.41278277260696],[4.900979620019032,52.4127470396383],[4.901017081688852,52.41272184824882],[4.901057337725714,52.41269648856042],[4.901083385957024,52.41268005819653],[4.901089752027605,52.412675860129376],[4.901131500361534,52.41264843938347],[4.901159036971845,52.412630307459196],[4.901172215909107,52.412621373891454],[4.901208142517882,52.41258871641123],[4.90124480490902,52.41255597206163],[4.901281754285659,52.412523858011674],[4.901307423518461,52.41250176383692],[4.901324779632905,52.41248718517549],[4.901365127919665,52.412453377388054],[4.901403687874933,52.412421809161934],[4.901442832696611,52.41239051294999],[4.901469220853201,52.4123698597084],[4.90148982792125,52.412353676576885],[4.901583945403368,52.41228180182136],[4.901645153814303,52.41223549675238],[4.901698799723561,52.412195272251864],[4.901791565258289,52.41212599820394],[4.901904328727539,52.41204242578677],[4.902043907512384,52.41193937003327],[4.902209410582233,52.41181763608785],[4.902303491330509,52.4117489062797],[4.902374304221031,52.411697786819445],[4.9025122278137,52.411598049163395],[4.902699191758519,52.411462381619344],[4.902863788816655,52.411342530455386],[4.902899790356342,52.411316253984744],[4.902999204909689,52.41124341111483],[4.9031482492072,52.411134460903526],[4.903337736110058,52.41099619624395],[4.903345886894288,52.410990028065],[4.903506322273605,52.410874113568546],[4.903687202613635,52.41074318307021],[4.903843934663345,52.41062976953923],[4.904072809297016,52.41046416222992],[4.904246871148995,52.410338236145016],[4.904441526224394,52.410197114740605],[4.904536463234619,52.41013009429455],[4.904587541006871,52.41009578985823],[4.904625891897608,52.410069522431904],[4.904663660768844,52.41004271336469],[4.904701135671237,52.410015903088244],[4.904789706387302,52.40993959924963],[4.904798331115364,52.40994385855485],[4.904915151081329,52.40985113239604],[4.905208446394234,52.40961271564916],[4.90536666714771,52.40948330816732],[4.905573345173668,52.40931706841956],[4.905795042189139,52.40913453184378],[4.905967645262367,52.408993138565386],[4.906275614568852,52.408742196080446],[4.906245991046633,52.40868221817908],[4.906252815458931,52.40867631404401],[4.906259323518976,52.40867247578037],[4.906266417455405,52.40866881964733],[4.906275121090605,52.40866579918257],[4.90628687180638,52.408666386139885],[4.90629407563085,52.40866614575243],[4.906303490639599,52.408665285205515],[4.906310262370942,52.40866423417611],[4.906317038003445,52.408662823656705],[4.906323525573474,52.408660872709675],[4.906330468644308,52.40865757546581],[4.906335936291454,52.408654811491274],[4.906346143625614,52.40864865145237],[4.906353252180502,52.40864364722829],[4.90635769795235,52.40864024997083],[4.906365856659545,52.40863327272847],[4.906388946090275,52.408604695880825],[4.906401020259001,52.40858901652057],[4.906427262045522,52.408554340866644],[4.906459633345544,52.408510073309664],[4.906475448654824,52.40848820765413],[4.906507129925285,52.40843980297179],[4.906544010162676,52.40838629642139],[4.906563542182559,52.40836049127313],[4.906586952549866,52.40832939915019],[4.906609633953387,52.40829776480736],[4.906631874457101,52.40826612867164],[4.906648163600391,52.40824120911841],[4.906659083375328,52.40822354776895],[4.906680479108588,52.408188492895896],[4.906692910319765,52.40816697299023],[4.906702351733342,52.408150114527835],[4.906715854490354,52.40812464440593],[4.906724564033405,52.40810751334439],[4.906733122716458,52.40809074117585],[4.90674530673943,52.40806490619683],[4.906753133554434,52.40804786142959],[4.906764141914052,52.40802202168081],[4.906768972124184,52.40801026746557],[4.90677577413387,52.4079928590355],[4.906785311944164,52.40796710319761],[4.9067913762439,52.407949961404164],[4.906797149552681,52.407932548801334],[4.906805220714568,52.407906517385285],[4.906807573307672,52.407879294388074],[4.906835396423832,52.407874913385825],[4.90659259448721,52.40732145864616],[4.906442173750593,52.406976801573904],[4.906365885530234,52.40680231154656],[4.90629287632925,52.40663718191668],[4.906287313673189,52.40663518205562],[4.906267880134441,52.40663842859299],[4.906255791866795,52.406614831907014],[4.906243116786564,52.406591142960956],[4.906229705993656,52.40656754090292],[4.906215561440196,52.40654384598777],[4.906210508911776,52.406535466970624],[4.906205307484183,52.406527267101474],[4.906193027454377,52.406507803943654],[4.906177553561608,52.40648473276101],[4.906161344935972,52.406461658592846],[4.906144692551083,52.406438852249536],[4.90613018686252,52.40642135732785],[4.906116541417331,52.406405843178156],[4.906102161233927,52.406390326043116],[4.906087480331194,52.4063754368197],[4.906072065666855,52.406360454738106],[4.906056207237226,52.40634574048134],[4.90603976004484,52.406331113707544],[4.906017039910952,52.40631223726267],[4.905999556291652,52.406298325284645],[4.905981483910547,52.40628450078886],[4.905962820816049,52.40627094351988],[4.905937293095912,52.40625349367685],[4.905917595527976,52.4062404714566],[4.905897451267687,52.406227986676576],[4.905876718246687,52.40621558937749],[4.905855832430954,52.406203730712235],[4.905800600119642,52.40617456609031],[4.905714820627524,52.406130088184966],[4.905671562109654,52.40610798252435],[4.905660160669203,52.40610236384509],[4.905648910086823,52.40609638627238],[4.90562786571945,52.406085605438605],[4.905398324835169,52.40596369850892],[4.904839721623342,52.40566932708554],[4.904776157716359,52.405636173493214],[4.904765054318739,52.40563019643458],[4.904753947010301,52.40562457886466],[4.904694767173775,52.40559368999173],[4.904506389251539,52.40548426201927],[4.90417211333692,52.405318605459875],[4.903985529588699,52.40522005900844],[4.903888061842493,52.405169690117525],[4.903820700353217,52.4051345432304],[4.903743407485584,52.40509378343712],[4.9035989054734,52.40501742781717],[4.903392309618352,52.404908103427886],[4.903331676963896,52.40487585978409],[4.903199167885594,52.40480485536217],[4.903186016524608,52.404798060898315],[4.903067223443797,52.40473601013178],[4.90297312769536,52.40468655302136],[4.902745050171946,52.4045665342588],[4.902703699032115,52.404544974557034],[4.902516821043929,52.404447053688926],[4.90246729342245,52.40442069699878],[4.902387088770387,52.404377677481556],[4.902358894981638,52.404362372977296],[4.902318878504887,52.40433974008404],[4.902282816734878,52.40431829175882],[4.9022685147047,52.40430924557023],[4.902254653508019,52.404300201184434],[4.902233938145442,52.404286365286175],[4.902213960458802,52.404272262774825],[4.902192242098996,52.40425608597518],[4.902130858426299,52.404212064816896],[4.902161450567305,52.40419619206648],[4.902027023640419,52.40405911926336],[4.901884317360844,52.40391329436692],[4.901850390943818,52.40392501906883],[4.901833441232966,52.40391623160815],[4.901823988485196,52.40390720523252],[4.901795033640728,52.40388093254447],[4.90176049802352,52.403854367351286],[4.901746948675879,52.40384370640603],[4.90172058962772,52.4038219381596],[4.901701374586899,52.403805322143754],[4.901676202926294,52.40378248023575],[4.901667925765409,52.403773458665306],[4.901662553944349,52.403767504801884],[4.90165516138756,52.40375821722671],[4.901648935497279,52.40374974332107],[4.901650025133459,52.40374417544625],[4.901650813010452,52.40373932534636],[4.901651149233647,52.4037354620364],[4.901650920342123,52.403729529251464],[4.901650522846747,52.403725573057706],[4.901648863937113,52.403716039352936],[4.901647459521318,52.40371010174987],[4.901643593550505,52.40370082862825],[4.901633711882448,52.403690721961084],[4.901626444620629,52.4036834121798],[4.901609125129143,52.403668152064846],[4.901590657701225,52.403650370700575],[4.9015816675469,52.40363936891874],[4.901569175450986,52.40362610586876],[4.901562746517806,52.40362275408461],[4.90155601878062,52.40361985045755],[4.901546936060339,52.40361729668158],[4.901539162999573,52.403615916668116],[4.901532819944731,52.403618137575535],[4.901526192858124,52.40361945855339],[4.901519276815341,52.40362032896392],[4.901510607338604,52.40362029342046],[4.90150510043679,52.40361326047819],[4.901497411103208,52.40360424130534],[4.901489137952029,52.40359486023247],[4.901480269163391,52.40358619572849],[4.901472706093617,52.40357906447757],[4.901436732042975,52.403549707118614],[4.901424211446394,52.40353905035366],[4.901401942426321,52.403519545717295],[4.901347801005985,52.40347186890462],[4.901295138952456,52.40342329936958],[4.901280463603564,52.40340813992708],[4.901220308683489,52.40334605815163],[4.901186240190249,52.403303766318736],[4.901104903481428,52.403203489952446],[4.901089247017623,52.40318401238831],[4.90100536253462,52.40310170079156],[4.900927335185257,52.40302130058196],[4.900837756259386,52.40292233833718],[4.900752267324494,52.402825639728576],[4.900741085319458,52.4028135503616],[4.900599207813284,52.40265990800377],[4.900577857732721,52.402637081551],[4.900554722719495,52.40261622504451],[4.900529818564018,52.402595900524304],[4.900497278779069,52.40256170364787],[4.900469902554876,52.40252564057148],[4.900453161789064,52.40251128142417],[4.900418062014258,52.402482736225565],[4.900382275976976,52.40244978424776],[4.900349441553161,52.402415675994696],[4.900305543891569,52.402358693630475],[4.900281910276394,52.40232974613438],[4.900267558143803,52.40231198147087],[4.900241158472912,52.40228068580742],[4.9002140182353,52.40224992635239],[4.900169011375131,52.40220030924809],[4.900144734880147,52.40217639216434],[4.900119874620803,52.40215211316911],[4.900094205626721,52.402134571580916],[4.9000837776948,52.40211139448907],[4.900010854388372,52.402025487231896],[4.899872232282808,52.40190364667371],[4.89982217223897,52.401860632542856],[4.899791092316978,52.401858131928435],[4.899728543600964,52.4018069954609],[4.899732897615605,52.401798564985526],[4.899744272837157,52.401793039450205],[4.899729265148024,52.40178147350029],[4.899700272400226,52.401758885062065],[4.899617953700749,52.40169500357253],[4.899588817098895,52.401672144884635],[4.89957424732597,52.40166085034668],[4.899564354717617,52.40165182197307],[4.899558001956864,52.401654941500276],[4.899551354750161,52.40164475809048],[4.899548720244704,52.401630456879154],[4.899545064128055,52.40161552232649],[4.899540813357261,52.401601214461316],[4.899537548600211,52.40159077534533],[4.899532132255733,52.401575563916296],[4.899527981946258,52.401565480660466],[4.899525414282009,52.40155845972158],[4.899521977874596,52.40155026681135],[4.899518243645907,52.401542432181024],[4.899514507440611,52.4015347772955],[4.899500910881247,52.40152851983962],[4.899481019931049,52.40152007943103],[4.899468589945509,52.40151463566307],[4.899456158973943,52.401509281766266],[4.899423697067969,52.40149485773772],[4.89940235363216,52.40148488343402],[4.899385833279466,52.401477265777345],[4.899375732484203,52.40147380887449],[4.899367094096839,52.401470987128775],[4.899353913644988,52.40146697828249],[4.899344975458326,52.40146469455966],[4.899335890339499,52.40146241023098],[4.899321965334132,52.401459297080024],[4.899308037362584,52.401456453544675],[4.899298649476639,52.40145497685491],[4.899288520000092,52.40145412624559],[4.899277803781152,52.401453183342184],[4.899261503117176,52.401452307312056],[4.899245052552275,52.40145170029184],[4.899228596050583,52.40145163250395],[4.899195965038173,52.40145257660135],[4.899179789537026,52.401453678359054],[4.899163462153652,52.40145522887149],[4.899146549016295,52.40145659721533],[4.899128454474871,52.40145849994839],[4.89911653705978,52.401459888870875],[4.899080917885351,52.40146531445085],[4.899063542165046,52.40146865816027],[4.899046311395415,52.40147218221752],[4.899034672991295,52.401474920429365],[4.899019348387842,52.401478811843944],[4.899003136242802,52.40148323885795],[4.898986918154332,52.40148820510444],[4.898971136901519,52.401493532655145],[4.898955647531128,52.401499041159845],[4.898940448062821,52.401504910363535],[4.898925683449265,52.40151132061677],[4.898911359631234,52.401517732685136],[4.898905384877374,52.40151321423114],[4.898864364134879,52.4015287735278],[4.898758517711149,52.40157327540582],[4.898654128522319,52.40161886171756],[4.898520747854145,52.401681764389444],[4.898388097512448,52.40174502943101],[4.898118542529265,52.401870822492704],[4.8980245932642,52.40191564246404],[4.898010413143711,52.401922324646584],[4.897996086084337,52.40192900622067],[4.897855313145162,52.401995832183545],[4.897570645600444,52.4021326163838],[4.897471837419298,52.4021782247229],[4.897370992796716,52.40222193715231],[4.897327032147626,52.402237483761304],[4.897309347219633,52.40224217408322],[4.897291230422398,52.40224605372775],[4.897280198326397,52.402247086621216],[4.897269171197586,52.402247670151624],[4.897246118197075,52.402246136783006],[4.897223074140873,52.40224379455815],[4.897210453574215,52.402242304332376],[4.897202497188985,52.40224424870575],[4.89718872286688,52.402254078146846],[4.897175531312841,52.402264359379615],[4.897136295207074,52.402291160026195],[4.897062880301789,52.40233920986096],[4.897029140336984,52.402360640621126],[4.896994961519445,52.40238188980264],[4.896960345837303,52.402402777660306],[4.896926051833732,52.402421150296654],[4.896891612854064,52.402439342570055],[4.896856443141928,52.402457172302654],[4.89682098648988,52.40247437170139],[4.896642860989575,52.40255676998768],[4.8964657604001,52.40263944188192],[4.896288805091708,52.40272220399031],[4.896208592024475,52.40276033870721],[4.896196037628286,52.40276612864591],[4.896183332308413,52.40277227746378],[4.895985537198634,52.402865827797314],[4.895911653892087,52.40290291004195],[4.895769105481671,52.40297026542537],[4.895626703576286,52.40303762124539],[4.895485025958621,52.40310587866604],[4.895323252520665,52.40318411864787],[4.895239805132086,52.40322223928038],[4.89520334860116,52.40323673774793],[4.895193647640488,52.403236967087444],[4.895179873300594,52.40323349457099],[4.895171537696933,52.40322986488944],[4.895144822511337,52.40321402553694],[4.895063555454066,52.40316164945174],[4.895031496443996,52.403137429357066],[4.894988795805732,52.40310552553427],[4.894921272261834,52.40304619608394],[4.894861128750589,52.40298393134081],[4.894893186030063,52.40296860580718],[4.89492081318562,52.40295523913873],[4.894931161923358,52.40296283177074],[4.894944017404107,52.40295641408124],[4.895224705085855,52.402821956440604],[4.895208832569755,52.40280894830189],[4.895871941260682,52.402495424953784],[4.895884633591518,52.40249044451003],[4.895905749079108,52.40250769849949],[4.896114052904049,52.402407181492165],[4.896104292833185,52.4023995015267],[4.896152448941771,52.4023766927631],[4.896162944692219,52.402384285897575],[4.896335046019579,52.402301863367626],[4.896431492730427,52.40225732470911],[4.896484512317921,52.40223318781145],[4.896536572950803,52.402202755561454],[4.896590380818262,52.40217376854919],[4.896662780055391,52.40213784813011],[4.896737512234728,52.402103555103345],[4.896798462983012,52.4020797205319],[4.896857670333004,52.402054081182314],[4.896893026430931,52.40203265715922],[4.896902345971385,52.40202703351102],[4.896958082428076,52.40199634666014],[4.897038305394445,52.40195713295807],[4.897122458680353,52.40192126089314],[4.897194229588795,52.40188893261135],[4.89720237954722,52.40188276484252],[4.897594072184865,52.40170130589539],[4.897596993008869,52.40167633229254],[4.898096589110757,52.401436807987274],[4.898417690579913,52.40128678125474],[4.898443390635664,52.40127475396245],[4.898509559258049,52.40124392967123],[4.89872182236611,52.401143064912205],[4.898974519028755,52.40102645827927],[4.899005536039472,52.40101193623577],[4.898993601499888,52.40100155124936],[4.898989528006948,52.40099784952334],[4.899006955026904,52.40098983245671],[4.898892503607108,52.40089525999448],[4.898880296671309,52.400869594862314],[4.898850483405807,52.400828218630316],[4.898821705644187,52.40078621752367],[4.898757808158708,52.400691044447235],[4.898731967532783,52.40066253690884],[4.89870228693978,52.40063581106023],[4.898677329269973,52.400620519002125],[4.898652902442124,52.400609057868664],[4.898597573103656,52.400596417715924],[4.898520118199796,52.40053952093068],[4.8984608046211,52.40048579069616],[4.898413652742755,52.400440487107666],[4.898363010877635,52.40039454894959],[4.898339115159575,52.400362930632255],[4.898285220532859,52.40030152024936],[4.898234121984635,52.40026237481636],[4.898170648274337,52.40021819911198],[4.898101071124434,52.40017720676554],[4.898038015429165,52.400123137305876],[4.897917940544596,52.40002591625507],[4.897894542583465,52.399989185923936],[4.897853835140059,52.399951179737805],[4.897817458667487,52.399936127927795],[4.897780968888486,52.399932669714524],[4.897770502248687,52.39990117866171],[4.897749216177411,52.39986881603924],[4.8977155030821,52.39985874537593],[4.897630015051071,52.399796368278594],[4.897594685545737,52.39977301613159],[4.897534069478996,52.39974959539997],[4.897488777417674,52.39968639570741],[4.897432209866098,52.39966228163471],[4.897341416791009,52.39958010055729],[4.897268364992931,52.39955319497588],[4.897216143413838,52.39950414903721],[4.897096907923805,52.39942168833673],[4.896971918372072,52.39935070790221],[4.896918845684244,52.39932685071067],[4.89684689097638,52.39929248066318],[4.89682789998376,52.399299780914625],[4.896771091932018,52.399292166865756],[4.896727826826507,52.39928759276786],[4.896685215352186,52.39928768595517],[4.89663740407404,52.39927966870124],[4.896588837292894,52.399273535707046],[4.896543783809467,52.39926858564082],[4.896495419334517,52.39926010766745],[4.896428374160269,52.39924815494538],[4.896378936053275,52.39924773440539],[4.896358678631204,52.399252629629686],[4.896098681755111,52.3990470827758],[4.896075883480259,52.39904923516949],[4.896072878720386,52.39904194270802],[4.896056698047837,52.39904358327553],[4.896058708190584,52.399047815809524],[4.89604827950176,52.39904750293976],[4.895852837134814,52.399074769861514],[4.895751660893898,52.39907997641873],[4.895619268197957,52.3987308766649],[4.895613855138719,52.39872214515887],[4.895601715238042,52.39871583037914],[4.895556711436295,52.39872235738225],[4.895558545259815,52.39873188292484],[4.895474775557649,52.39874818035809],[4.895430107696357,52.39874561319631],[4.895350416114408,52.39874528232666],[4.895282375607377,52.39874499978834],[4.895218164070554,52.398751869315774],[4.895218203675188,52.39874830137937],[4.895130647416245,52.39875626026983],[4.89504499090511,52.398767795089604],[4.894984592122462,52.39878062117477],[4.894924180028939,52.39879464253262],[4.894859834872027,52.39881220662582],[4.89479546320507,52.39883215230383],[4.894737031537574,52.39884380006899],[4.894716273478943,52.39878664212797],[4.894710508110752,52.39878186368587],[4.894689115959425,52.39878177474358],[4.89465219392924,52.39878162122356],[4.89464641387621,52.3987768427172],[4.894625036419884,52.398776753824485],[4.894623057469085,52.39878030470867],[4.89459389303337,52.398780183429004],[4.894535605228058,52.39877756827672],[4.894506455486863,52.398777447036636],[4.894483110752131,52.3987785363068],[4.894473359404389,52.398782063846376],[4.894469386585463,52.398789183522936],[4.894467354668175,52.398797497644054],[4.894465322750119,52.39880581176508],[4.894458487088504,52.398808758246155],[4.894147043044575,52.39884787981729],[4.894139402919839,52.39883596632932],[4.894129663334666,52.398837112159704],[4.894116441782144,52.39880257147192],[4.894108960449405,52.3987763862384],[4.894095421470692,52.39877038004784],[4.894002177592207,52.39876523738222],[4.893838942002554,52.39876218487988],[4.893747584638054,52.39876180434326],[4.89361736448845,52.39876006644836],[4.893333595435849,52.398758883685616],[4.893327736014469,52.39876124098623],[4.893174225489404,52.39875703275477],[4.893154827214153,52.39875338374952],[4.89308195805942,52.39875130025085],[4.892868088023627,52.39875634877041],[4.892863916078362,52.398781299082366],[4.892838605340115,52.398784761554055],[4.892525618664035,52.398788209387085],[4.892475091466875,52.39878799837139],[4.892317713937611,52.39878140013646],[4.892317926374603,52.398762374144944],[4.892255720094048,52.39876330960081],[4.892257473623621,52.398779962076496],[4.892152550923437,52.398775955526546],[4.892125407045572,52.3987698922514],[4.89209449049712,52.39875431324318],[4.892084896952781,52.3987423824684],[4.89207725750145,52.39873045986059],[4.892018956760725,52.39872902079851],[4.892004528866757,52.39873027268258],[4.892006436396164,52.398735763130524],[4.891815622842822,52.398732646472595],[4.891774062590488,52.39872681043066],[4.891750785654406,52.39872314497282],[4.891727575131338,52.39871353894371],[4.891700483070536,52.39870153494302],[4.891679265115945,52.39868718276624],[4.891659973404892,52.39867401602749],[4.891636909134286,52.39865133354405],[4.891619742948962,52.39862153054084],[4.891604743409355,52.39857272769444],[4.891584429711951,52.398477517286175],[4.891565882521629,52.39839778203081],[4.891554668909522,52.39835730860435],[4.891529664154331,52.398333422619224],[4.891500740768803,52.39831308833228],[4.891454305678772,52.39829386712179],[4.891419415113342,52.398284212147324],[4.891374721317271,52.398284025075576],[4.891331859098908,52.398292168230036],[4.891300663927282,52.39830154658455],[4.891275233577334,52.39831571252761],[4.891265267873206,52.398337070429235],[4.891266929313883,52.39836323148383],[4.891278049547886,52.39841202712291],[4.891281462629748,52.398453663277515],[4.891286617118227,52.3985143156282],[4.891288037633739,52.398560697913084],[4.891285552825257,52.398609436590554],[4.891286773837433,52.398673649561005],[4.89129020173976,52.398715276787414],[4.891291793120566,52.39872406439553],[4.891290441622138,52.39872404076219],[4.891296870445114,52.39875878701451],[4.891185549724352,52.39876719174648],[4.891651323352173,52.400149430144495],[4.891604385717019,52.40015657669574],[4.891656638856503,52.400319274197905],[4.891703703516688,52.400434836661454],[4.891758725043832,52.40053791257404],[4.891816769037011,52.40070450788995],[4.891836607664547,52.400772681348634],[4.89181127466544,52.400780655314016],[4.891821760177177,52.40081009779249],[4.891841001654663,52.40080944126842],[4.891862908253906,52.40089111384282],[4.891857824363678,52.400916078272544],[4.891838310040404,52.40094245633452],[4.891781500133752,52.40098090163562],[4.891709472401271,52.40101626340421],[4.89144454010313,52.40113733316328],[4.891127769185085,52.401285705464254],[4.89094824276028,52.40137458743175],[4.890809799638786,52.401438574713104],[4.890579124436989,52.40153905155998],[4.890467483734775,52.40159372275087],[4.890381706960792,52.401625871391644],[4.890356044366998,52.401630410379184],[4.890337171193479,52.40162046277224],[4.88991111113515,52.40127794386291],[4.888089166894021,52.399833630787995],[4.887932704347481,52.3999072724365],[4.890191911189814,52.4017104040571],[4.889703987244543,52.401937523212105],[4.889650860553182,52.40196566513039],[4.88964217550732,52.40197620712399],[4.889703502166494,52.402002987268084],[4.890740950166039,52.40220665892547],[4.890575358618552,52.40255959312988],[4.889526032601363,52.4023596269982],[4.889447971463151,52.40235746554338],[4.889278530631391,52.40268452429554],[4.88924914647073,52.40268411317864],[4.889222351380224,52.40268737091405],[4.889195013680206,52.40268922428802],[4.889155644065182,52.40268821393467],[4.889075371460681,52.40268142328323],[4.88900086221254,52.40267043261728],[4.888967659914359,52.4026632736186],[4.888942977008771,52.40265249246786],[4.888920737468704,52.40264004089769],[4.888886195029133,52.40262922725059],[4.888850358491058,52.40261981022365],[4.888801927533992,52.402609207753784],[4.888694238314595,52.40258909862418],[4.88864873439875,52.40258216638504],[4.888604672425119,52.402580291260335],[4.888568371632713,52.40258210676427],[4.888514231435368,52.40258918582806],[4.888476138855841,52.40259744689824],[4.888433761760579,52.40260906927575],[4.888392961065758,52.402622936202384],[4.888302210744031,52.40266973924114],[4.88786139813799,52.4028675876793],[4.886980150842835,52.403282128354434],[4.886730328188627,52.403395324276275],[4.886739881744552,52.403402950218464],[4.886601737628732,52.40346668219894],[4.886539521872785,52.40349647399437],[4.886498635899766,52.40350865921785],[4.886459775376113,52.40352365713749],[4.886425494947289,52.403540364085075],[4.886383175028614,52.40356630330843],[4.886371371902839,52.403574396225046],[4.886360605646984,52.40358305974653],[4.886350747265641,52.40359200572269],[4.886341911060739,52.40360152224212],[4.886334217936598,52.403611313223536],[4.886327329627062,52.403621404199924],[4.886313436817741,52.4036583656136],[4.886331986820027,52.403667000293595],[4.886303638737603,52.40369967638928],[4.886370585352455,52.403758415151785],[4.887170014957888,52.40439342659529],[4.888197847148236,52.405201813903],[4.888230616917763,52.40523057760165],[4.888420174795632,52.40537252691638],[4.888607604568365,52.405497363463546],[4.888686225882297,52.40555472097631],[4.888730403231078,52.405564892147964],[4.888776740755206,52.405590746854465],[4.888838956413396,52.40565517143413],[4.888913112402784,52.40569540650934],[4.888984996130795,52.405729933811074],[4.88907341558893,52.4057445600395],[4.889140753520672,52.405769082852345],[4.889299160470606,52.405903341147436],[4.889304658195175,52.40591235190319],[4.889234277181994,52.40595197922635],[4.889268930323635,52.405980642694296],[4.88923978193596,52.40608459716051],[4.88847974406056,52.406442397972256],[4.888093525482358,52.40663050074969],[4.887423861628354,52.406936295487334],[4.887330144791193,52.40697943626834],[4.887074441647506,52.40677725842642],[4.887208435607524,52.406714910467784],[4.885283049669466,52.40518616595144],[4.885280286830668,52.405187475430886],[4.885276688553283,52.405174320235986],[4.883529990528812,52.4037904473412],[4.883292400747473,52.40389942789355],[4.885054034819272,52.40529419770388],[4.884037394258356,52.405773734418915],[4.882244690315874,52.40435600648109],[4.88205661264448,52.404439535834506],[4.883725520968705,52.405771771272995],[4.88384505864696,52.40586446559678],[4.883837242863953,52.405868153276465],[4.884116684757894,52.40609009501272],[4.883189133499882,52.40652542398461],[4.881815834176679,52.40591627721517],[4.881811720940789,52.40591485759386],[4.881805991282285,52.4059134310766],[4.881800031670079,52.40591283942987],[4.881793830484222,52.40591281297445],[4.881787857956581,52.40591335371647],[4.881782096316987,52.40591473120972],[4.881776912831485,52.40591695600886],[4.881415232187449,52.40609039304272],[4.881412926974117,52.40609150665761],[4.881408189345799,52.406094578183676],[4.881404356435088,52.4060982108068],[4.881401548980695,52.4061021264253],[4.881399899133603,52.40610633459108],[4.881399395482006,52.40611054765054],[4.881400023433998,52.40611475655379],[4.881401815354485,52.406118700796966],[4.881404871132574,52.406122641448476],[4.881408623825472,52.40612603682845],[4.881409913687268,52.40612632994034],[4.881410089358061,52.40612896407305],[4.881416367971902,52.406135084508584],[4.881436167780917,52.40614624182979],[4.88148133506072,52.40615585371152],[4.88155586907604,52.40621267724199],[4.881565623698832,52.40623099077666],[4.881407574517461,52.40627075155405],[4.881301515353309,52.40635837770068],[4.881275405356992,52.40634385899016],[4.881243974041009,52.40632046470837],[4.881202661935347,52.40628982011735],[4.88120122135184,52.40625768310118],[4.881173417694952,52.40623319881286],[4.881153561053661,52.406227020365485],[4.881141796837336,52.406226412878326],[4.88113182736131,52.406226927525935],[4.881113653706467,52.40623294352023],[4.881091804105924,52.40624171200516],[4.881067396203173,52.40623772506263],[4.881044155566221,52.406251197126686],[4.880990427610895,52.406277004794994],[4.880988440971429,52.40629139452802],[4.88097656914096,52.406300205626245],[4.880971075052161,52.40630517029748],[4.880966530034006,52.40630681359193],[4.880960145921159,52.40631121722483],[4.880958268836846,52.40631730283311],[4.880962737877597,52.40632231007835],[4.880976202091179,52.406332334921196],[4.880992380567578,52.40634403407649],[4.881043915139665,52.40635201061529],[4.881117510517302,52.40640993589108],[4.88113171508451,52.40643491933459],[4.8809555352628,52.406476822009616],[4.880842974695818,52.4065777037159],[4.88078648581421,52.40652872221154],[4.880777514035409,52.406520370279985],[4.880764041119372,52.40651882073531],[4.880738185515168,52.4064987665993],[4.880736370184968,52.40646730204981],[4.880717008765168,52.406449936017566],[4.880710514623299,52.40644724790762],[4.880708405621268,52.4064414778047],[4.880704096500122,52.4064379092583],[4.880696877173084,52.40643566742987],[4.880687452692626,52.40643606753076],[4.880680892194301,52.40644047039448],[4.880668512503331,52.40644484837703],[4.880656877114471,52.406449678923416],[4.880610241614807,52.40647207447361],[4.880600102108602,52.40647203111495],[4.880589087694319,52.40647653176696],[4.880455874267682,52.406543117776444],[4.88033975979581,52.40659870400483],[4.880254923468517,52.40664092451157],[4.880243473629331,52.406652649342014],[4.88023994438889,52.40666440806608],[4.880243188506586,52.406677570886146],[4.880255468814497,52.40669216546],[4.880280139252281,52.40671304149378],[4.880373315168507,52.40678198898555],[4.880478818153509,52.40686276295472],[4.880458396527614,52.40686613585112],[4.88030932562776,52.40693266285203],[4.880304696628206,52.40694163968695],[4.880214779113435,52.40698348790448],[4.880219202173366,52.406992512461365],[4.880207823597053,52.40699800016138],[4.88020317863139,52.407008370010224],[4.880200820568311,52.40701666451032],[4.880209801396789,52.40702294037556],[4.880228942296666,52.4070313268793],[4.880244475151207,52.40703009912671],[4.880277524213159,52.40704054039677],[4.880344874941533,52.40709067409119],[4.880386287660791,52.407133093231664],[4.880369475033098,52.40714213478591],[4.880159246749177,52.40718612853703],[4.880025420333173,52.40730602619414],[4.879980351593887,52.40728644687688],[4.879889469981576,52.407214740712085],[4.879890799684816,52.40719743618622],[4.879894225961626,52.407194682660986],[4.879899931140224,52.40719055479566],[4.879900065929091,52.40717878154724],[4.879888837800106,52.407171120924325],[4.879876438531996,52.407166915531626],[4.879865148175485,52.40716340693575],[4.879850430392364,52.40716403595652],[4.879837921350711,52.40716813468121],[4.87983016584344,52.407171642602265],[4.879821221138837,52.40716349743117],[4.879542125586276,52.40729357546038],[4.87953177892489,52.40729363897498],[4.879478555915451,52.407308537111106],[4.87894927039291,52.40755553116255],[4.878918418308178,52.40758032156127],[4.878919865898207,52.40758736510422],[4.878639155653499,52.40771937541542],[4.878630450508346,52.40771341518303],[4.878621398176032,52.407713376322825],[4.878599780930694,52.40772228016128],[4.878599637850941,52.40773474542162],[4.878547279382858,52.40775875134432],[4.878534864189976,52.407755929841954],[4.878528082878572,52.40775520867621],[4.87851899200924,52.40775724579063],[4.878512155086266,52.407761368730036],[4.878503063020976,52.407764789936635],[4.878501836038785,52.407773098247034],[4.878507430197251,52.407778658661734],[4.878089641167414,52.40797765716245],[4.878074956102233,52.407974133808366],[4.878068174765013,52.407973412616286],[4.878060230073419,52.40797545462129],[4.878055648115632,52.407980288262316],[4.878053265742984,52.40799065876264],[4.878050749136894,52.40799224774926],[4.877997602223374,52.408017031966814],[4.877976013805978,52.408013173348685],[4.877956643373659,52.408023479813664],[4.877953778589533,52.408037461274795],[4.876959372175627,52.40850109783815],[4.876935687525471,52.40849548639844],[4.876909601900437,52.408496731178865],[4.876572592413411,52.40865937566681],[4.876555443372138,52.40867453582212],[4.876544949388502,52.408700105399205],[4.876552669611252,52.408718832992534],[4.876579506758786,52.408748032707756],[4.876702913274539,52.40884618840798],[4.876775570862781,52.408916497299806],[4.876851866709365,52.40898738804002],[4.876937467209669,52.40904666182094],[4.87698670854661,52.40907659605647],[4.877119008326125,52.40919262110992],[4.877313187008398,52.409336261763215],[4.87743004963578,52.40944270209679],[4.877779583342108,52.40973640304716],[4.878036852253961,52.409930581666764],[4.878238584029497,52.410092767778735],[4.878903893723267,52.41062334277207],[4.878971192658875,52.410678330305885],[4.878923277375118,52.41074007660482],[4.878580365059199,52.41091549085684],[4.878092096335163,52.411153444776254],[4.877480330692975,52.41143910213546],[4.877432768480335,52.41144436199034],[4.877387444628891,52.41144285477233],[4.877308909793631,52.41138089750137],[4.877146580237364,52.4112517832699],[4.877109193355097,52.41122216979023],[4.877059738935868,52.411190104636475],[4.876408397321842,52.410693337136486],[4.87555071043046,52.410005730006986],[4.875300415180708,52.40981562952092],[4.875063966087272,52.40963063940676],[4.874980468839436,52.40956371588892],[4.874963775463319,52.40955718159249],[4.874947978635842,52.40955318568798],[4.874915547617457,52.40954770679425],[4.874892014479559,52.409546760194374],[4.874853216130614,52.409555580066474],[4.874814233620291,52.40957142747308],[4.874661416778947,52.40967439408276],[4.874554102385709,52.409746702788624],[4.874359648032055,52.40988143993411],[4.874257344007545,52.409953770059296],[4.874054796349154,52.41009683017894],[4.87371121089165,52.4103290833652],[4.87290937041548,52.410881527515585],[4.872534374419393,52.41114838718936],[4.872372898425661,52.411264552037736],[4.871753888168223,52.41163774208324],[4.871072486495144,52.41204540336882],[4.87177499246009,52.41261945591913],[4.871993499153251,52.41279801120213],[4.870949486627634,52.41329253282481],[4.870063861738291,52.41260640024412],[4.869798235118466,52.41279475410825],[4.869647299290602,52.412892015306056],[4.869540540116985,52.412960717847724],[4.869383959633583,52.413035305172855],[4.869274414265817,52.413084537038536],[4.869080633117808,52.41317918354725],[4.868837091440048,52.4132958025467],[4.868445409654781,52.41348254126621],[4.868362401305525,52.41352094152123],[4.868255259390464,52.413549241750715],[4.868094503518688,52.413602238730725],[4.867981434157771,52.41355436039723],[4.867778978915089,52.413638756800324],[4.866636170905479,52.41418334490916],[4.866173974606129,52.41439294544557],[4.86565464087246,52.41462755696285],[4.866539271410399,52.41583489353498],[4.86658487043467,52.4159108957016],[4.865885663411808,52.41615693192996],[4.865815200901321,52.416084163491945],[4.865587229805553,52.41616460614485],[4.865656186191275,52.41623793431007],[4.864952870748516,52.416486211849396],[4.864828248433267,52.416370647594796],[4.864511157370569,52.416100761260886],[4.864135903555225,52.41582121622057],[4.863987803839347,52.415798380812106],[4.862997089379211,52.41614145525384],[4.862651703516264,52.416079916171306],[4.862300935112252,52.41603729819366],[4.862192725333456,52.41601470915178],[4.861996320330138,52.41602331169717],[4.861125703761173,52.41625634576991],[4.860265283415279,52.41649890077472],[4.859575776115026,52.41670430085567],[4.858995414239574,52.416853327687136],[4.858653430963281,52.41694025009648],[4.858316831892095,52.41700823161696],[4.858124991900561,52.41706739466747],[4.858010777879682,52.417114258508676],[4.8579030590366,52.41720062500549],[4.857818830549702,52.417301638372045],[4.857789264284556,52.41741160495665],[4.857802714193812,52.41751614645473],[4.857783841731648,52.41751971111657],[4.857801279184075,52.417550122338255],[4.857823808734388,52.417586173587196],[4.857837954446411,52.41760421208103],[4.857865449632301,52.4176380385943],[4.857893991790527,52.417671591160776],[4.857923683920674,52.41770486125217],[4.857954290631905,52.41773786579147],[4.858176187898279,52.41794753190571],[4.858411665395755,52.41817356178449],[4.858443861885025,52.4182175202393],[4.858497692846685,52.41826915180603],[4.858869645884533,52.41860729035035],[4.858971396293674,52.41870351634068],[4.859272891236277,52.4189893728866],[4.85974911148463,52.419425992321855],[4.859869160012742,52.41953887217597],[4.859913660882943,52.419581761514266],[4.859938638008802,52.419606310059024],[4.859974605471904,52.41964242066968],[4.86000625880351,52.41967542032572],[4.860039353277439,52.419712084354714],[4.86005952596831,52.41973520043843],[4.860085811520477,52.41976592928166],[4.860112860713472,52.41979919603064],[4.860132070636396,52.41982539956738],[4.860150130611613,52.41985188559041],[4.860157581905217,52.419863144297764],[4.86018043926414,52.41990031998466],[4.860201270130293,52.41993608458169],[4.860224433515638,52.41997719820721],[4.86023813462539,52.42000309860877],[4.860254172999324,52.4200351839121],[4.860269061421174,52.42006755170368],[4.860271080580439,52.420072054503386],[4.860326219476754,52.42021553572425],[4.86033091785553,52.42023578779483],[4.860334584068413,52.420256304904925],[4.860335526226625,52.42026360705841],[4.860342293927671,52.42028414694614],[4.860355965918033,52.420322396220605],[4.860368761783437,52.420356444369666],[4.860382828561193,52.42038993194615],[4.860391252760792,52.42041580886595],[4.860398747585928,52.42044196026994],[4.860403570458792,52.420461637680965],[4.860406991483368,52.42048299853582],[4.860409262525483,52.4205046418824],[4.860409904041595,52.42051868342845],[4.86041466275965,52.42055240823503],[4.860418199404563,52.42059371317647],[4.860421581121551,52.42064680921231],[4.860423530857347,52.42068558157105],[4.860424706342902,52.42073136084657],[4.860424746537645,52.42077742267896],[4.860423047413086,52.42082264092817],[4.860419996021608,52.42086784417761],[4.860417964205052,52.42089282977037],[4.860414525892958,52.420931011952526],[4.860409820086229,52.42096946711622],[4.860407943198672,52.420982661614296],[4.860401607622125,52.421013532951854],[4.860393890368528,52.42104438915858],[4.860385132735987,52.42107496212234],[4.860382752669781,52.42108225849139],[4.860370471791377,52.42111983513591],[4.860356948039281,52.421156849019326],[4.860342259667519,52.42119413633953],[4.860323713135349,52.42123815621967],[4.860304827241556,52.421281042145054],[4.860301748295296,52.42128776918338],[4.860276449214292,52.42133961422572],[4.860261156640886,52.42136960088545],[4.86023846127975,52.421413880918244],[4.860212748436647,52.42146095166991],[4.860194016112431,52.421490914035076],[4.860174257978533,52.42152060220561],[4.860154405639465,52.42154832166089],[4.860131411595812,52.42157938851517],[4.860107395049452,52.42160990257071],[4.860082459219568,52.42163983732308],[4.859924330921622,52.42184051081744],[4.859769919655189,52.42203755166053],[4.859668474532815,52.4221654615228],[4.859597035335828,52.422252485323966],[4.859523425911515,52.42234766019178],[4.859444458696014,52.42244953390336],[4.859359968779962,52.42256206926125],[4.859266958321911,52.4226765259016],[4.85917454655845,52.4227974472463],[4.859052738083295,52.42294744731779],[4.858914642533178,52.42312433756107],[4.858810047111427,52.42325588161017],[4.858703674161197,52.42339219007219],[4.858625069303248,52.423492950376215],[4.858566947701648,52.423569921858466],[4.858526447344484,52.423623954594085],[4.858525860611529,52.42362507543089],[4.858499004534598,52.42366174200368],[4.858496191794232,52.423667068109665],[4.858477131500347,52.42370462328467],[4.858449447181419,52.42376263178436],[4.858431518006135,52.42380271752413],[4.858414617844437,52.42384280785281],[4.858409748062293,52.4238554227371],[4.858398816124027,52.42388570722272],[4.858389045524758,52.42391599688975],[4.858380300633983,52.42394656974985],[4.858377976091228,52.42395779392001],[4.858372084408383,52.42398950296647],[4.858365602744643,52.42403245291073],[4.858361545307664,52.42406444875868],[4.858358513482693,52.4240967367877],[4.858358369250081,52.424108815525116],[4.858358872894587,52.424144202090595],[4.858360408920579,52.42417931464645],[4.858362138321381,52.42420685148909],[4.858365823444323,52.42425405301599],[4.858369730168958,52.42429254651352],[4.858374901170925,52.42433104565262],[4.858379106552992,52.424354378343004],[4.858385859579223,52.424384741744454],[4.858393762607514,52.42441483166049],[4.858398065336534,52.424430013],[4.858407689669729,52.424461234050256],[4.858418346404147,52.42449218108969],[4.858423705036631,52.4245051202312],[4.858437774975625,52.42453832940743],[4.858453112646727,52.424571256634],[4.858470603867133,52.42460728521305],[4.858488246198195,52.424640510321645],[4.858509868437555,52.42467655732533],[4.858531168143014,52.424710068373166],[4.858553176745023,52.424743312950284],[4.858580609846249,52.424782756225206],[4.858595146842225,52.42480641360946],[4.858629106521682,52.42484841151059],[4.858682994907619,52.424904545955734],[4.858767974776283,52.42498187704883],[4.858852939406974,52.42506174252328],[4.858975492253231,52.42516789355035],[4.859075715727505,52.42525906141524],[4.859179915786824,52.425343506187275],[4.859296042043126,52.42544007438354],[4.859524279892938,52.425630954627174],[4.85961132675734,52.425710262589725],[4.859703262047069,52.42579268399111],[4.85984220075253,52.425912109859226],[4.860020409434895,52.426061198677466],[4.860186614288631,52.426206018637906],[4.860375909503697,52.42637004871007],[4.860538481370623,52.4265114816485],[4.86084169506601,52.42677431487116],[4.860999933617129,52.42691319339695],[4.86114606581932,52.42703658620775],[4.861424301996033,52.42728498073177],[4.861579011994791,52.42741177242036],[4.861699534875141,52.427515386009695],[4.861815448075878,52.42762093833852],[4.861948484438985,52.42773443960508],[4.862202366331726,52.42795435934708],[4.86233110293988,52.428063616937905],[4.862437708134502,52.428159582554045],[4.862539584661532,52.42824766296495],[4.862659589760128,52.42835689051796],[4.862777184506858,52.42845739827147],[4.862895620120314,52.428562682052636],[4.862918017346616,52.4285821674437],[4.862939499861205,52.428601918412554],[4.862959596978279,52.42862195085287],[4.862975356141383,52.42863830613804],[4.862995873867357,52.42866255562777],[4.863015682608548,52.4286870805941],[4.863034341401969,52.4287118700994],[4.863044389921882,52.42872624081477],[4.863063260581995,52.428753008529334],[4.863080966485024,52.42878004970575],[4.863097754164752,52.42880765303868],[4.863108672492602,52.42882680002259],[4.863149851608612,52.42891909626963],[4.863187700079122,52.42900212052191],[4.863197102153141,52.429022671848884],[4.863208802594776,52.4290527692046],[4.863219253241152,52.429082870020636],[4.863228421494593,52.42911324378194],[4.863235466971897,52.42913911434588],[4.863245005035212,52.429264983224044],[4.863257656118511,52.42936137747416],[4.863253508483576,52.42945965675463],[4.86321521725425,52.429783041823505],[4.863237879186515,52.42979016135073],[4.863259839999526,52.42979813159794],[4.863281327145642,52.42980636937565],[4.863302025064157,52.429815448496875],[4.86332395613004,52.4298259351344],[4.863374105748026,52.429848625860984],[4.863438920966164,52.429885707648936],[4.863466693773816,52.42989706491345],[4.863511108155322,52.42990989777875],[4.863515945338396,52.42990991915365],[4.863551742514155,52.42991289045593],[4.863585655477427,52.429911072008366],[4.863646688755914,52.42990740507611],[4.863691245896112,52.42990816813013],[4.863745396407322,52.429914581816014],[4.863832674391449,52.42992592319254],[4.863962678042355,52.42995739667874],[4.864025381364235,52.42996918664356],[4.864235898959882,52.4300108387026],[4.864541770609621,52.430072297248664],[4.8646207298489,52.43008837378116],[4.865174617980424,52.43019754284048],[4.865261608786564,52.430213366717645],[4.865285921626143,52.430217688984484],[4.865303448454247,52.430221415142675],[4.865442578600808,52.430248433378104],[4.865602346225994,52.430279748486704],[4.865816535830744,52.43032198010642],[4.865968395662222,52.43035185786105],[4.866116488805267,52.43037947195413],[4.866124145396379,52.43038230975573],[4.866200101207942,52.43040006169772],[4.866223708505344,52.43040438066964],[4.866315292152541,52.430421068795994],[4.866407352914208,52.43043720171562],[4.866426503792676,52.430440377611376],[4.866474885172703,52.43044733091452],[4.866522949762578,52.43045371658618],[4.866571700525699,52.43045926940418],[4.866620693203601,52.43046425704484],[4.866667750166485,52.430467555478664],[4.866715169935592,52.430470010651106],[4.866762361118666,52.430471898580855],[4.866809679751539,52.43047295120306],[4.866877897723771,52.430473538333075],[4.866927526588918,52.43047318999513],[4.866977161999703,52.43047228443289],[4.867026807332688,52.43047053405736],[4.867076459206916,52.43046822645752],[4.867121295182914,52.43046533148306],[4.867169467090608,52.430461336665175]]],[[[4.933022732199842,52.3916285641779],[4.933177038695381,52.39162325986718],[4.933349378559721,52.39161717961694],[4.933450779879626,52.39161082737935],[4.933582633148982,52.39160177854831],[4.933661535220935,52.39159618480032],[4.933953541861639,52.39157174168706],[4.933956174235915,52.39157147314296],[4.933957555104255,52.39157147842709],[4.934118364077225,52.3915580549609],[4.93419648431144,52.391551325422014],[4.934313082799655,52.39154138158244],[4.93431297960148,52.391539979114285],[4.934498825649473,52.39152468256588],[4.934581552385454,52.3915171255402],[4.934617630069998,52.3915130571795],[4.934618893416056,52.391513062006766],[4.934618896260262,52.391512783400465],[4.934676482088991,52.391504294390195],[4.934804151988716,52.39148765162781],[4.934982675935168,52.391459959346754],[4.935327192777158,52.391405946221255],[4.93545639780676,52.39138565063952],[4.935485608979302,52.3913807109867],[4.935527324287898,52.39137553140545],[4.935568913460373,52.391371196167675],[4.935580856042961,52.39136983963088],[4.935630013814001,52.39136665668614],[4.935907510970212,52.39134581141511],[4.936003059012052,52.391339991926245],[4.936054379410201,52.3913379405],[4.936144822997336,52.3913385635748],[4.936206347590947,52.39134863034324],[4.936207035187612,52.391348911578525],[4.936207825522993,52.391349202192664],[4.936362655944946,52.39137169453024],[4.936387063044868,52.39137543641468],[4.93644320792589,52.39138435912759],[4.936523837548153,52.39140095156845],[4.936614842742575,52.39141281997068],[4.936790308954603,52.39139242029458],[4.936796671322528,52.39138795066369],[4.936880740096986,52.39137113985711],[4.936883458649915,52.39137395433963],[4.936884590231069,52.39137536071513],[4.936887096923864,52.39137733854061],[4.936890417228351,52.39137876222502],[4.936894304426436,52.39137933423775],[4.936898209144518,52.391379627699884],[4.936902007661773,52.39137880628954],[4.937046391363757,52.39134508520483],[4.937081013098094,52.391336795353226],[4.937082634748514,52.39133623529396],[4.937085513536277,52.3913348441606],[4.937087590121624,52.39133288375675],[4.937099598073499,52.391314954089175],[4.937255143543178,52.391255444660196],[4.937274949640897,52.39124933639451],[4.937312690817739,52.39123909002955],[4.937342251655558,52.39124454097062],[4.937344085076748,52.39124482655118],[4.937347407840618,52.391244560553965],[4.937350413169972,52.391243727129066],[4.937363527198985,52.39123984034453],[4.937384937309719,52.39123345953517],[4.937406926351178,52.39122793474718],[4.937429230178337,52.39122323801419],[4.93745188072515,52.39121911780316],[4.93747498109575,52.3912155475424],[4.937498310667763,52.39121255335691],[4.937513132475408,52.39121119856939],[4.937757357922194,52.39118993503809],[4.938178356442869,52.39115249842525],[4.938205805838101,52.391151757643385],[4.938233452336456,52.39115186244137],[4.938260887442,52.39115253265352],[4.938288299395114,52.39115403862301],[4.93831891707626,52.391156680191415],[4.938364084453722,52.39116162380006],[4.938450735285854,52.39117262945223],[4.938482957015702,52.391174998438245],[4.938773939066652,52.39115980583383],[4.938937278017549,52.39114722125928],[4.939093033435174,52.39113349330082],[4.939121645697093,52.39113106702815],[4.939280844603685,52.39111819668867],[4.939311842772049,52.3911166242318],[4.93945127621841,52.39110731891807],[4.93985250995521,52.3910731720086],[4.940444680899402,52.39101951288558],[4.940544297962183,52.39100921125857],[4.940750021460403,52.39098021977492],[4.940888504133542,52.39093832896115],[4.941092566235589,52.39087000067356],[4.941093949886617,52.390869727267855],[4.941411554108096,52.390763349897206],[4.941421218833122,52.390760582125694],[4.941438276546018,52.390753060747954],[4.941500984976977,52.390725776553715],[4.941505594184608,52.39072467044178],[4.941523319704257,52.390719398476875],[4.941590457660359,52.39069718196096],[4.941612565814283,52.390689958175955],[4.941696956193829,52.39066275544385],[4.941735411648199,52.390649984829295],[4.941797147044593,52.390628862345785],[4.941803013263731,52.390626925097926],[4.941828143434272,52.39061718710746],[4.94185279442828,52.390606890075794],[4.941876555021631,52.39059602346941],[4.94189895392589,52.39058178137069],[4.941945161209162,52.39055190937344],[4.941965392280657,52.390538494964105],[4.942026281712723,52.390497722181465],[4.942203196018048,52.39036609778631],[4.942280706768525,52.390315833447765],[4.942295497916871,52.39030577790324],[4.942427228026418,52.39019421463726],[4.94267358551926,52.39006060337567],[4.94268813641556,52.39005251517547],[4.942743858766174,52.39002294820502],[4.942905167480891,52.38994856046149],[4.943020007234917,52.389895065290744],[4.943185358350831,52.389829122740636],[4.943223955549617,52.3898138176577],[4.943634074498989,52.38961397699129],[4.944049901940692,52.38934674889215],[4.944137470909633,52.38927742221451],[4.944180413855442,52.38924023017401],[4.944240612914726,52.38918877634142],[4.944681621970013,52.38881153249196],[4.944745394196572,52.388758132443506],[4.944775692789364,52.38873521027716],[4.944877171497382,52.388662843255936],[4.944908719146714,52.3886413367812],[4.944966378812395,52.388590996551066],[4.945004124466326,52.3885681111194],[4.945072705641718,52.388515564699546],[4.945396352477041,52.388295442517986],[4.945464736905245,52.38825075933107],[4.945664548810591,52.38812343934686],[4.94575938464793,52.38806143652813],[4.945911731886196,52.387962295248435],[4.94602490893308,52.387880147324466],[4.946157745386902,52.38778121166721],[4.946278240651269,52.387689815495385],[4.946404836056362,52.38759648259564],[4.946562040482278,52.387482753620525],[4.946824880577677,52.387304823002026],[4.946893166839446,52.38725789171076],[4.947083256071457,52.38712658760371],[4.947456813034523,52.38687071260222],[4.947569409533926,52.38683321170024],[4.947743927724282,52.38668528448745],[4.947746660691819,52.386682238826126],[4.947750204562951,52.38667740763063],[4.947751268920729,52.38667376259281],[4.947751455434459,52.38667124674214],[4.947751539031183,52.3866702224599],[4.947751074539168,52.3866666975766],[4.94774986031101,52.38666323282505],[4.947747954477304,52.38665989133445],[4.947745356503741,52.38665672702878],[4.947742124609921,52.38665379404978],[4.947738302415981,52.38665113749767],[4.947701660689651,52.38662816390676],[4.947700232087452,52.38662706211181],[4.947699069035902,52.38662584446281],[4.947697869580176,52.38662385374057],[4.94769747211093,52.38662245917944],[4.947697412565609,52.38662105688462],[4.947697661567241,52.38661964674714],[4.947698188046275,52.38661839941708],[4.947702980911131,52.386557211286856],[4.947696056320366,52.38654596899997],[4.94768982360431,52.38653457649],[4.947684297272755,52.386523051786284],[4.947681010413148,52.38651529223191],[4.947678047145642,52.38650748894002],[4.947674197884948,52.38649570981746],[4.947671069160904,52.38648385247984],[4.947669107126594,52.386474327273966],[4.947667979381753,52.386466584719514],[4.947667586414486,52.386458808941256],[4.94766792777896,52.386451044875805],[4.947669018163203,52.38644329257774],[4.947670842343881,52.38643560591634],[4.947673400320624,52.38642798489172],[4.947676662270817,52.386420474331366],[4.94768064261527,52.38641310125162],[4.947685311887782,52.38640587453084],[4.94769066982081,52.38639882113081],[4.947696686680962,52.38639197689181],[4.94770106394209,52.38638753525919],[4.947705704524412,52.38638320245541],[4.947713184696104,52.38637692088011],[4.947718498091463,52.386372878177404],[4.947724059852265,52.386368971210814],[4.947732870070368,52.38636335965591],[4.947739030578536,52.386359805428796],[4.947745070461098,52.38635656532165],[4.94775005989654,52.38635408526712],[4.947682404998295,52.38626049743884],[4.947661035554424,52.38625279660456],[4.947627827654312,52.386236127089],[4.94760048577182,52.38621894007785],[4.947590851169198,52.38621288258876],[4.947581201969985,52.386206816057076],[4.947578632684364,52.386205206717854],[4.94757277787509,52.38620015189925],[4.947564782061096,52.38619325565168],[4.947556800937912,52.38618635945803],[4.94754881981721,52.38617946326384],[4.947537852901672,52.38617000349155],[4.94751347413347,52.386144343114495],[4.947496078147641,52.38611664149625],[4.947498043158436,52.386094754866825],[4.947510453573542,52.38607418326281],[4.947325587666588,52.38590460980016],[4.947690718678827,52.385872261646746],[4.947752967042092,52.38586659673058],[4.948093131406784,52.3858411740554],[4.948522905276236,52.3858163699504],[4.948753486691131,52.38581216373554],[4.94877323599046,52.38581139200611],[4.948820757100558,52.3858095996151],[4.948890783198661,52.38580762086465],[4.948906622677868,52.38580711326062],[4.949211033577809,52.385799530364935],[4.949390530042501,52.38579654504183],[4.94950313367532,52.385793590869774],[4.949615740895095,52.38579176006056],[4.9497283278315,52.38579049529154],[4.94979660691151,52.3857899026387],[4.94989954738993,52.385789716549354],[4.950002364779478,52.38579009613827],[4.950105173843292,52.38579132044657],[4.950208194910252,52.38579339028717],[4.950312150541778,52.38579602072002],[4.950405977781153,52.38579944955993],[4.950499579047357,52.38580345270197],[4.950593407200505,52.385808283470425],[4.950682182454034,52.385813113516406],[4.950752130362322,52.38581757752398],[4.950821969806681,52.38582261630034],[4.95089191863683,52.38582848230243],[4.950901310780427,52.385829361741365],[4.950943244440722,52.385837101789726],[4.950984699870119,52.385845675913544],[4.951025914734426,52.385854815358904],[4.951066563153772,52.38586479754327],[4.951106853505389,52.38587534461734],[4.951164426409827,52.385890997379526],[4.951210300144096,52.38590436912141],[4.951255610274519,52.38591829600533],[4.951300342025662,52.38593278696514],[4.951349293887251,52.385949818968555],[4.951358663980873,52.38595294520294],[4.951372053181033,52.385956643460815],[4.951385920622722,52.38595950762537],[4.951400011216673,52.385962085004536],[4.951414447945064,52.38596381881634],[4.951429010394906,52.38596471723732],[4.951443698653709,52.38596477128009],[4.951458389650449,52.38596454671388],[4.951472974268829,52.38596318931036],[4.951487343949569,52.385961282867505],[4.951501366674472,52.38595880892453],[4.951515059957156,52.38595547994098],[4.951528288600246,52.38595160099996],[4.951540949962199,52.38594715374862],[4.951619532666619,52.38591598600199],[4.951633227748037,52.38591097632054],[4.951647739717816,52.385906544851345],[4.951662684210304,52.38590294183494],[4.951678093074396,52.38589991573399],[4.951693496551835,52.385897437858006],[4.951709346977398,52.385895815450425],[4.951725426941154,52.38589475111914],[4.951741601513461,52.385894522985126],[4.951757547377519,52.385895147834965],[4.951773605276104,52.385896330329004],[4.951789305097986,52.385898077726516],[4.951804776390402,52.38590066013341],[4.951818744012989,52.385903794245124],[4.952577000298355,52.386084372955565],[4.952578040436803,52.38608465538971],[4.95257837826771,52.386084656629414],[4.953116870035911,52.38621976556002],[4.9535118448649,52.3863152952507],[4.953606718965307,52.38628390722633],[4.953752618959037,52.3862678680444],[4.954281876900803,52.386279636294326],[4.954308039603657,52.38627945330586],[4.954429818939927,52.38627708521754],[4.954551600894335,52.38627444738405],[4.954658356724229,52.386271745561956],[4.954801952661387,52.38626749745738],[4.95494556877951,52.38626268303042],[4.954964510314802,52.38626190731998],[4.955083550053904,52.38625728164884],[4.955202377586269,52.386251819232605],[4.955321213318146,52.38624551188808],[4.955673724083796,52.38621309310425],[4.956477473928735,52.38615367152651],[4.956549623016915,52.38619325485525],[4.956560535383637,52.38619189246012],[4.956603752484906,52.38618558747101],[4.95664661975911,52.38617900257725],[4.956689262914644,52.38617129339726],[4.95673145350908,52.386163294952304],[4.956770212340834,52.38615473577388],[4.956820825356406,52.38614311892062],[4.956870976430849,52.386130664515974],[4.956920677633653,52.386117642233835],[4.956952312643377,52.38610904812734],[4.957006630247932,52.38609408327176],[4.957060368478911,52.386078271448106],[4.957113656826191,52.38606189174457],[4.957166612707413,52.38604495357566],[4.957254498738976,52.38599921094886],[4.957307133042387,52.38598058187188],[4.957392217060632,52.385951114592274],[4.957435392435322,52.385936953943514],[4.957469234841758,52.38592639941385],[4.957503406788019,52.38591669989684],[4.957538378474029,52.3859078391226],[4.957543209892287,52.385906445588915],[4.957570572471785,52.385900648952315],[4.957598282163434,52.38589541080271],[4.957617703298901,52.38589211087853],[4.957650566873181,52.38588858108831],[4.957693305317815,52.3858831188052],[4.957728001102265,52.38587847218184],[4.957762364533554,52.38587325812134],[4.957794734181278,52.38586157470268],[4.957841823477616,52.3858451811841],[4.957889477487502,52.38582962554517],[4.957937713598424,52.385814629231085],[4.958002855155857,52.38579520932482],[4.95807498554635,52.38577609332241],[4.958152307948647,52.385754740184936],[4.958229062740741,52.385732836694615],[4.958305250181394,52.38571035589056],[4.958334140637357,52.38570147285953],[4.958419771769639,52.38567454134096],[4.958504852815366,52.38564676293046],[4.958589583931897,52.385618704575485],[4.958673632762811,52.38558979885234],[4.958740072192922,52.38556672526402],[4.958838058064376,52.38553197394507],[4.958935596610144,52.38549637608869],[4.959032462123657,52.38546048811416],[4.959172169808553,52.38540678858974],[4.959296584887356,52.3853578060918],[4.959420297352616,52.38530854230844],[4.95944621917431,52.38529824621075],[4.959551280562467,52.38525621289824],[4.959655659560042,52.38521333219023],[4.959675844798719,52.385203860172524],[4.95970086281642,52.38519131384433],[4.959705636109837,52.38518374549778],[4.959711449564407,52.38517645952262],[4.959718288405077,52.38516946485294],[4.959719562404066,52.385168345995176],[4.959728697942777,52.38516080238033],[4.959738753537628,52.38515381033213],[4.959743365997852,52.38515073522814],[4.959789774312458,52.38513321502219],[4.959841614968815,52.38511289227824],[4.959896111661179,52.38508978393547],[4.959951410766474,52.38506723569658],[4.960003136452048,52.38504663385013],[4.96003469161418,52.38503551310411],[4.960066699403562,52.3850246725992],[4.960083392198094,52.385019403124126],[4.960090967317861,52.38501830698614],[4.960112234699435,52.38501388985549],[4.960133064207955,52.38500918353732],[4.960153769569972,52.38500364091645],[4.960187167606378,52.38499027986248],[4.960229565855752,52.38497273603856],[4.960271874754653,52.38495378980414],[4.960314738990132,52.384935133161015],[4.960335826566954,52.38492650013467],[4.960345821299225,52.38492428924499],[4.960364004145817,52.38491986095213],[4.96038172233863,52.38491487374769],[4.960398640909547,52.38490902983234],[4.960399794698886,52.38490818915122],[4.960409506772343,52.38490177101765],[4.960418284265693,52.38489478329365],[4.960426168561336,52.38488750474561],[4.96043300068742,52.38487966517144],[4.960653303002614,52.38478749055647],[4.960661592691755,52.38478387142613],[4.960679122982558,52.38477550414437],[4.960710734487194,52.38475848752332],[4.960736095140844,52.38474538497616],[4.960797528265173,52.384717232161506],[4.96085954606043,52.384689369024464],[4.960922231297158,52.384662353096374],[4.961049311984467,52.38460916314578],[4.961121538963098,52.38457965591545],[4.961133628825409,52.38457492696729],[4.961174291683254,52.38455905725291],[4.961199629042877,52.384549882125626],[4.961219388360909,52.38454798490167],[4.961250855313058,52.38454444909096],[4.961271198241567,52.384541430501116],[4.961291311514451,52.3845378538476],[4.961324161510664,52.38452336704628],[4.961357679010857,52.38450972747502],[4.961370124097715,52.38450471217521],[4.961399602116917,52.384494149819524],[4.961445095859426,52.3844768953071],[4.961490019331736,52.3844593690979],[4.961522754463552,52.3844445942239],[4.961556056875284,52.38443039658922],[4.961577129282817,52.38442176328755],[4.961588988040719,52.384418147931015],[4.961626968930435,52.384406214001466],[4.961664382497044,52.38439370281187],[4.961694313019281,52.38438342062595],[4.961729672850114,52.384370632407595],[4.961733581314579,52.38436895677044],[4.961744427942191,52.38436366605948],[4.961754469586877,52.38435807586336],[4.961763696648313,52.38435165587654],[4.961772148016109,52.384344945497794],[4.961939618007545,52.38429189966892],[4.961946263443414,52.384292768369555],[4.961955320423851,52.38429335812383],[4.961964620423262,52.38429311289856],[4.961973353030976,52.38429229941348],[4.961982193795652,52.38429092908176],[4.961990602029052,52.384288712357424],[4.962027490017039,52.384283506125435],[4.962044547088145,52.38427542454777],[4.962062409306137,52.38426762447496],[4.962070931115503,52.38426428469639],[4.962081513120694,52.38426207576858],[4.962097501712275,52.38425819656795],[4.962112908048146,52.384253767028724],[4.962127761761775,52.38424876029451],[4.962142050663378,52.3842429156799],[4.962150593998744,52.3842373290605],[4.962157539129169,52.38423144909993],[4.96216103256227,52.38422556573912],[4.962165448648912,52.38421996430659],[4.962170549629132,52.38421493155368],[4.962181357359885,52.38421215720507],[4.962202757756256,52.38420605948654],[4.962223590753121,52.384199393506194],[4.962241339329135,52.38419271645484],[4.962290738105657,52.38417407355644],[4.962354906452963,52.384148464265266],[4.96241492204283,52.384123963501025],[4.962503003395594,52.38409366745381],[4.962715324154463,52.38405341798919],[4.962736522926405,52.384045351156374],[4.962788240708128,52.38402531428865],[4.962854802636157,52.383999713304505],[4.962871382631059,52.38399387681093],[4.962969928610264,52.38394900399111],[4.963022376725245,52.38392476341722],[4.963146535660472,52.38386482001721],[4.963175057398362,52.38381439356896],[4.963140105039423,52.38376930321144],[4.963079620337402,52.3837216228452],[4.962941302581626,52.38360653489329],[4.962863674533726,52.38354227369885],[4.962476753104607,52.38322134879429],[4.962299744946575,52.383067007054144],[4.961565195948274,52.38246370661287],[4.96151779807,52.38250970583162],[4.961413482782044,52.38255904154854],[4.961422589419258,52.38256665986795],[4.961267841967885,52.38263682726704],[4.961237226403372,52.38263902698208],[4.961124354063091,52.38268310085273],[4.961047208875615,52.382721874636836],[4.960945746387814,52.38278297605731],[4.960582549513027,52.38294773315428],[4.960514797942063,52.38297182764164],[4.961204013992623,52.383536899809435],[4.961297903688511,52.38361140358768],[4.961659282128815,52.3839073447651],[4.961766106069796,52.383990289101014],[4.961725117980115,52.38405390923609],[4.961568446689548,52.383923088269924],[4.961525134368808,52.38390595493197],[4.961396815822744,52.38382216914751],[4.9611278022987,52.38361289486489],[4.961032646662657,52.38354176575263],[4.960905877210745,52.38340857987723],[4.960877023589986,52.383406202139824],[4.960841628958438,52.38341197062329],[4.960800165560939,52.38338135320699],[4.960814788045695,52.38336371815348],[4.960806933606394,52.38334501353447],[4.96075447497157,52.383287815977994],[4.960740391209266,52.38324943292836],[4.960609677051496,52.38314477730329],[4.960413233897032,52.383028083895205],[4.960396291462438,52.38312041590893],[4.960373326894822,52.38316849797721],[4.960338517173088,52.38320354120245],[4.960230968516434,52.3832741379971],[4.960080882688437,52.38334632489791],[4.959951470012006,52.383396368713086],[4.959803668811799,52.38343563274661],[4.959711383106108,52.38346015052991],[4.959518578998988,52.383525154172766],[4.959388164619669,52.3835571105995],[4.959310761313322,52.38358730810004],[4.959212468150869,52.38361938038137],[4.959025606855199,52.38367571363886],[4.958903334327827,52.383694936501556],[4.958158016155507,52.383862276202116],[4.957774795291779,52.38395720797356],[4.957643987164138,52.383976479477205],[4.957581687999971,52.38399386031296],[4.957473909934219,52.38401017734236],[4.957415913346779,52.384027654591485],[4.957311079753899,52.38407052269589],[4.957138800249695,52.38411314581326],[4.957042267294323,52.38412852362966],[4.956968354585252,52.38413022344617],[4.956770457021262,52.38416390012529],[4.956622531652334,52.38417909080994],[4.95650373116304,52.38417177429548],[4.956355633740864,52.3842046607094],[4.956168743014152,52.384225613958236],[4.956004896383495,52.38426334088549],[4.955966379446854,52.38425926405379],[4.955892318662058,52.384277670706524],[4.955783360857779,52.38429735227269],[4.955663869774948,52.38431419121142],[4.955536853103874,52.38432552013255],[4.955382603986808,52.38433085372873],[4.955270234079876,52.384329841792955],[4.955099789335228,52.38434063437271],[4.954916958997912,52.38434272639031],[4.954776746757015,52.38435911131892],[4.954715589452396,52.38437068879451],[4.954662475952646,52.3843813069743],[4.954596573300822,52.384386962169465],[4.954537122455095,52.38438772465165],[4.9544600648302,52.38438351551373],[4.954378045775938,52.38439402794538],[4.954281789577585,52.38438089568881],[4.954186103883604,52.384384554376446],[4.954047388823105,52.38437393601715],[4.953989646520152,52.384359182795336],[4.953928599767626,52.384360927776214],[4.953864465833954,52.38434791269022],[4.953829319256928,52.3843281280883],[4.953712461142517,52.38428739978336],[4.953712009552346,52.38433359467134],[4.953715043595547,52.3843522821211],[4.953713250487919,52.38437193155683],[4.953719371105773,52.384402431093015],[4.953715973793137,52.38444043643338],[4.953692860930636,52.384444279439194],[4.953676244405803,52.38453634206479],[4.953667507692004,52.38456159235305],[4.953675508967388,52.38456499201194],[4.953751594487636,52.38456499188022],[4.953789707375299,52.3850552370623],[4.95382942089946,52.385055661004245],[4.953833488680172,52.385144428955876],[4.953798715079648,52.38515855612656],[4.95373285913255,52.385159303756076],[4.953737749469959,52.385169918096466],[4.953708248690665,52.38517205703525],[4.953730042452999,52.38528215465249],[4.953719820993887,52.38534207386837],[4.953704157291498,52.385465857392205],[4.953786207301713,52.38545239758774],[4.953797227790981,52.3854760305024],[4.953798367580601,52.38548415052284],[4.953789627404408,52.385487201303285],[4.953781672039237,52.38549110878205],[4.95377450438383,52.38549557637735],[4.953768156537713,52.385500325589696],[4.953762816635233,52.38550564471248],[4.953758516864027,52.38551124625884],[4.953755245259715,52.38551685156787],[4.953753246073783,52.38552301876799],[4.953752142774646,52.38552919823449],[4.953752552439431,52.385535374250395],[4.953753419176472,52.38553987124828],[4.953770783925041,52.38555160975741],[4.953788396025489,52.38555757909683],[4.95379469948526,52.385569393962804],[4.953791411032907,52.38557822577802],[4.953772329404305,52.38559486399239],[4.953781657772937,52.38585623206516],[4.953790602343559,52.38586834420051],[4.953802005245627,52.38587540528361],[4.953812645204168,52.38587937182179],[4.953821885145703,52.385885310519384],[4.953826567944104,52.38591115816309],[4.953818095838703,52.38591983619595],[4.953810601268052,52.38592317914063],[4.953801472735505,52.38592988647471],[4.953792203498911,52.385990060827716],[4.953775779091617,52.38602636475763],[4.953749671079224,52.38606754949056],[4.953700763133904,52.386142075840155],[4.953489601109826,52.38609052253444],[4.953557916183571,52.38596463100336],[4.95352427097063,52.38551488257636],[4.953441094959341,52.384605845410505],[4.953450448151525,52.384576148508124],[4.953463937679309,52.384569565022936],[4.953467875330499,52.384495862708846],[4.953465168225753,52.384443760353854],[4.95347380810639,52.38438186706038],[4.953532161319887,52.384335641539614],[4.953523537629941,52.38432530112278],[4.953506278383807,52.38431935100853],[4.953435029958293,52.38432342212959],[4.953341054861088,52.38432339247339],[4.953262381815073,52.38431917663745],[4.95315646721791,52.3843099356807],[4.952937843951214,52.38427279716322],[4.952750848274162,52.384230804092034],[4.952359644925614,52.384155651643425],[4.951916968606152,52.384087193270496],[4.951670038872447,52.38404303685749],[4.951448643704198,52.38401470227794],[4.951366837153338,52.384003589106726],[4.951344437436456,52.38399465383235],[4.951183949075449,52.38398030299168],[4.951076371652282,52.38397597928372],[4.950999281118006,52.38397372707801],[4.950967255976609,52.38396378561306],[4.950846710940246,52.383971205735335],[4.950747148403899,52.38396887056702],[4.950673139030149,52.38398038960511],[4.950576618824457,52.383995762201906],[4.950510653130946,52.384006331138394],[4.950475082485689,52.384029783584666],[4.950428411210957,52.384039443968526],[4.950341666132442,52.38403912402565],[4.950277567715366,52.384024147813726],[4.950102501105023,52.38402251318283],[4.950012597601904,52.38401628543935],[4.949908343415316,52.38400116078688],[4.949829642287689,52.383999881527146],[4.949826556692018,52.38398807832669],[4.948393037452201,52.3840594403306],[4.948385005544387,52.38404879614793],[4.947885326295975,52.38407131820603],[4.947882849232221,52.384078202550725],[4.947894019972324,52.384173791771694],[4.948353519447848,52.384156603267186],[4.948370799670424,52.38419597930853],[4.948410780646182,52.38421382414023],[4.948423360056888,52.384241390951104],[4.948456946835452,52.38425527548343],[4.94847470510507,52.384409650344736],[4.948537942788115,52.384998638959075],[4.948544878369041,52.385109734090264],[4.948515856768588,52.38511389573292],[4.94794281135871,52.38524018738359],[4.947415965696919,52.3851850522517],[4.947389202964827,52.38518211277085],[4.947223201420781,52.384266426939824],[4.947363837075968,52.384176515510305],[4.947356919401076,52.384118717156696],[4.94728561343817,52.38412708046437],[4.947194036018574,52.38412969720511],[4.94713496095653,52.384094093302835],[4.947040279263402,52.38408390895281],[4.946810496486051,52.3840928872256],[4.946534114797008,52.38410266234191],[4.946482678691011,52.384105427884876],[4.946447354929421,52.384105296430334],[4.94645444203899,52.38413558424983],[4.946496431953913,52.38433842117893],[4.947010517466368,52.38546476075053],[4.946830891284401,52.38559776638829],[4.946792188550037,52.38561236223025],[4.946777211173665,52.385580795816026],[4.946505464921445,52.38498726476256],[4.946506229293674,52.38496947204712],[4.946457433724117,52.384869033158886],[4.946246678941721,52.384422002494276],[4.946238629820879,52.384419042548785],[4.94616460878872,52.38443153838361],[4.946153651814011,52.38441672187085],[4.946135844974955,52.38441571185223],[4.945995901255749,52.38411245930922],[4.944385963070323,52.38417089224267],[4.94433515202268,52.384183114207524],[4.944326635576438,52.38422402114749],[4.944461323142707,52.38454212162347],[4.944879477158136,52.38550886858381],[4.944905136951731,52.38557967929259],[4.944912539463681,52.385650421815235],[4.944895816338796,52.385701229495396],[4.944833963184452,52.38580272077298],[4.944804189508223,52.38583212502326],[4.944819019319216,52.385878350004106],[4.944768231271844,52.38588808266067],[4.94473977936945,52.38589541814991],[4.944703279130127,52.38589528178356],[4.944658450401741,52.385918688907125],[4.944570939063697,52.385950618578626],[4.944463244586065,52.38597378167533],[4.943468198744842,52.3861276203945],[4.942586863414043,52.38626574485049],[4.940113406234828,52.386649697456335],[4.939936674551084,52.386682527173654],[4.93981875314121,52.386714338495736],[4.939674277845132,52.3867646628037],[4.939558694029958,52.38681078206206],[4.939507194142307,52.38684714918983],[4.939435743123395,52.3868940193409],[4.939341733708869,52.38696809966129],[4.939296736035285,52.387006387680195],[4.939253765310311,52.387044683348165],[4.939183841431475,52.38714242925786],[4.939144548459565,52.387217956682186],[4.939104906459286,52.387329460359375],[4.939095657391502,52.38744231931236],[4.939102762551387,52.38754159687658],[4.939135865368677,52.3876571146224],[4.939182782517784,52.38777057251328],[4.939290683983173,52.388031532739234],[4.939461278028174,52.38838159978727],[4.939442196572737,52.388384475602166],[4.939462791425989,52.38843247562925],[4.939421135362342,52.38843938244511],[4.939433998737785,52.38847330554358],[4.939478669902112,52.38846603263928],[4.939500531658074,52.388510774929564],[4.939470425114215,52.388520241962375],[4.939495688295221,52.38858891325716],[4.93957319421012,52.38874427917603],[4.939595529919393,52.38874064270007],[4.939611360692055,52.38878040098999],[4.939589022796057,52.38878279716458],[4.939632644465425,52.388880972368156],[4.939662326997904,52.38895427997458],[4.93969680045129,52.38895316993452],[4.939746541431591,52.3890476473239],[4.939782368207348,52.38911477662879],[4.93984762567288,52.38927877814821],[4.939857865843445,52.38931504605014],[4.939944159021911,52.38954903290999],[4.939722192301105,52.38958260823514],[4.939731658115614,52.38965775380044],[4.939847755764615,52.38964150228737],[4.939853912545018,52.3896515287972],[4.940081549646766,52.38961943063032],[4.940384357101562,52.38957985029627],[4.940500740687378,52.38962411307741],[4.940556243522613,52.3897082940144],[4.940530678135227,52.38971605281161],[4.940542458865067,52.38973070217124],[4.940571273101007,52.38974750089687],[4.940572619825433,52.38978297124509],[4.940588084073658,52.38978340703878],[4.940705801784024,52.3899694997692],[4.940946434731844,52.38992631323014],[4.941244793392914,52.39058764274441],[4.941171363893969,52.39059566185033],[4.941103055925943,52.39061005446805],[4.941126517460738,52.39065082991582],[4.941222133352908,52.39063658504884],[4.941339874133384,52.390626593661004],[4.941370298825549,52.39065279034196],[4.941296755485953,52.39067650153192],[4.941225048216608,52.390685623648174],[4.94115260804763,52.39069750216917],[4.941061959550752,52.39070276905443],[4.940747972364348,52.390767941766136],[4.94054222166463,52.39033750248548],[4.940514207749865,52.39033454775468],[4.940425796797165,52.39019510345104],[4.94019913792087,52.39023918651251],[4.940178866550839,52.39022450507563],[4.940153564017741,52.39022946962443],[4.940225767874858,52.390364835492605],[4.940102500924413,52.3903882414485],[4.940030188409708,52.39025203025556],[4.939996257939129,52.390258921504255],[4.940001896711399,52.39026934150559],[4.939475519293365,52.39037234665403],[4.939517074479052,52.390478899530756],[4.939534954924818,52.39056450257682],[4.939662690746799,52.390747524457595],[4.93969710955674,52.39078835057972],[4.939747392607654,52.3908438775042],[4.939780357111223,52.39091382707755],[4.939734004869416,52.39092731320072],[4.939694321511373,52.390946675461834],[4.939582081741736,52.39096314812478],[4.939392720136696,52.39097494315596],[4.939343179059283,52.39098414793683],[4.939274624410678,52.390980671122335],[4.938840019377652,52.39100414724104],[4.938841544079384,52.39102188564487],[4.938701761257627,52.39101927129425],[4.938699972854267,52.391027605061026],[4.938502044154909,52.391042502918154],[4.938480466667203,52.391116245727694],[4.938445881969176,52.39116445926646],[4.938447471316414,52.39115547763874],[4.938376049170683,52.391147909047625],[4.93837971505052,52.39113696699413],[4.938384557951971,52.39112294663681],[4.938395457892893,52.39112298793893],[4.938392460194408,52.391102754368866],[4.938385708057176,52.39110076048836],[4.938431423036178,52.391005161311185],[4.938458072696782,52.39089039112908],[4.938438009691279,52.390865311473924],[4.938232555522521,52.39088501572222],[4.938235228246124,52.39090976885352],[4.938063335640463,52.390927146391505],[4.938061684422467,52.39092192729313],[4.937735148709021,52.39096360465214],[4.937474615078988,52.390998197813914],[4.937177280261936,52.39104013729724],[4.936969087834553,52.391061725346404],[4.936421051131993,52.39113474168378],[4.936282876707597,52.39114151370654],[4.936115729482207,52.39114714165155],[4.936123131743885,52.39115597773973],[4.936115591493158,52.3911607034908],[4.935875056472533,52.39117438313477],[4.935878262802929,52.39119421312199],[4.935357799593389,52.39123812873073],[4.934995782186755,52.39129411532692],[4.934763585252196,52.391325566171936],[4.93471581080318,52.39132851137502],[4.93468640040744,52.3912666089157],[4.934778437740671,52.39124636081002],[4.934679455584569,52.39104747243025],[4.934530919349135,52.39106912232207],[4.934502543287168,52.39100955156743],[4.934658024078516,52.39097676558158],[4.934612954908211,52.39088167478479],[4.934593545767159,52.39088485414857],[4.934581439614446,52.390861952287956],[4.93444587647327,52.39088207880774],[4.934424146192301,52.390839232492624],[4.934552745336166,52.390807656078444],[4.934528043492266,52.3907608887969],[4.934426510704487,52.390774566386575],[4.934406409979648,52.39073902426998],[4.934505820443322,52.39071882253823],[4.934463694555051,52.39063910282536],[4.934743778811365,52.39059323956643],[4.934743853380302,52.39058593288986],[4.935023922322782,52.39054006891093],[4.935037239394331,52.39057244833566],[4.935030295660022,52.390584941626926],[4.935127681149543,52.39056445302627],[4.935352886409283,52.39105139153774],[4.935398913898569,52.3910526186724],[4.937006772584037,52.390876192717215],[4.937268975850075,52.390842065297605],[4.937558266041542,52.39079797396142],[4.937573384223021,52.39082097682442],[4.938144643941322,52.39072732667773],[4.938428682677189,52.390541540975725],[4.93842028934772,52.39052898937669],[4.938669033243007,52.390378687419314],[4.938661507365759,52.390360252210805],[4.938738035300024,52.39029862606843],[4.938755307406857,52.390275745992355],[4.939009060381696,52.39000024633033],[4.939052383089463,52.38995359358239],[4.939136257194911,52.38986411528169],[4.939164020464656,52.389816244223205],[4.93917463850348,52.38977873398035],[4.939151883141618,52.389759881686025],[4.93915290427691,52.38973587953153],[4.939257386021934,52.38970183404285],[4.939280878366937,52.38968409138697],[4.939265589242652,52.38965905688225],[4.939236027086996,52.38965091011687],[4.939153005626323,52.38968805662064],[4.939100994497756,52.389685981439854],[4.939053574865299,52.38967728173449],[4.939026634341185,52.38965102573024],[4.938822375025816,52.38912466372941],[4.938786149971071,52.38902588709607],[4.938760943591628,52.388982183569425],[4.938554361767442,52.38850304234679],[4.938175353533408,52.38757481703452],[4.937884358000058,52.38688046850709],[4.937757037232921,52.38656992020878],[4.937762709624517,52.38655228997372],[4.937780723977471,52.38653724109178],[4.937900455090928,52.3865124849852],[4.938109992619732,52.38647050744031],[4.938147961633643,52.38646054927931],[4.938189911827346,52.38644329024588],[4.938226613936314,52.38642208369631],[4.938246176054726,52.386405027375595],[4.938265308479059,52.3863854349033],[4.938278577808366,52.386367509884074],[4.938287378549401,52.386348444468574],[4.938300777917832,52.386308967535015],[4.938305849607023,52.38621571283869],[4.938317059888954,52.38619223462516],[4.938343339704189,52.386174682464485],[4.938508501976272,52.38613833307034],[4.938542520297899,52.38613989098175],[4.93859626916601,52.386151275229125],[4.938961599661616,52.38628457929728],[4.938957272748365,52.38628976677526],[4.939087382060888,52.38633968226007],[4.941221939364354,52.38601186160492],[4.941200706716449,52.385952714765104],[4.943196493924101,52.38564258984406],[4.943208501712826,52.38567708454884],[4.943248411742432,52.38566966655111],[4.943322910728043,52.38563466024604],[4.943409785542544,52.38559884644127],[4.943536847422308,52.38552789758198],[4.943608815714414,52.385472713314606],[4.943644835540269,52.38544007922248],[4.943675393566446,52.38540573498602],[4.943710179652449,52.385361331410294],[4.943752045597507,52.385293424646484],[4.943774430601029,52.385252336001564],[4.943799814304006,52.38518604819979],[4.943812635331036,52.3851407175166],[4.943819847517887,52.38510544998581],[4.943824352896574,52.3850676557768],[4.943828969568473,52.38501726128787],[4.943826701900885,52.38496934858242],[4.943787031556671,52.38481626607495],[4.943802204144863,52.38481044495167],[4.943760439121619,52.38472877950875],[4.943196457400242,52.384823301793745],[4.943162192945033,52.384815605723375],[4.943167795553066,52.3848047067239],[4.943154371570395,52.38477524877482],[4.943143469209464,52.38476680443682],[4.943158728245893,52.384750890579305],[4.943173810519641,52.38475262781863],[4.94336690920772,52.3842575833679],[4.943336805952797,52.38424655054345],[4.943261741502162,52.38406391856383],[4.94313797691372,52.38408026149393],[4.94314240707661,52.38405002564171],[4.94318373413544,52.3840358991983],[4.943200356621712,52.384021680125585],[4.943133787964194,52.38395000560659],[4.943054722611746,52.38390886020379],[4.942923099158662,52.38387106772095],[4.942792838070709,52.3838512465364],[4.942544371238032,52.3838427552927],[4.942177363270924,52.38385265628713],[4.942110858883474,52.383852325479104],[4.942068789121697,52.383862871668434],[4.942056400046637,52.38387673800155],[4.942015872658319,52.38387117509356],[4.941993653396349,52.383856163064266],[4.941839857921122,52.38384702856245],[4.941768045821383,52.38385746279523],[4.941584508207338,52.38384820710672],[4.941079167649539,52.383842026476124],[4.94089556614744,52.383840597731485],[4.940811630215685,52.38383994884727],[4.940769868758384,52.38381838282317],[4.940598667087552,52.38380061585159],[4.940504251768219,52.38379919024283],[4.940437618229907,52.38381606039216],[4.940430508346124,52.38382780740788],[4.940385068073488,52.383824427384546],[4.940164416777085,52.38385569863522],[4.940013832907182,52.38387332116484],[4.939356402014097,52.38386227168609],[4.939020705776956,52.383853515058306],[4.938643083801162,52.38384245064028],[4.938546862581931,52.38384530374584],[4.938461110561395,52.383851396049884],[4.938280704771882,52.383879607682964],[4.938173758283622,52.38390594953154],[4.93800741057998,52.38392671833798],[4.937954968279548,52.38392438035564],[4.93788668714872,52.38393268656691],[4.937772824891807,52.38395151509281],[4.937538271211592,52.38395574773187],[4.937477140524595,52.38396430554757],[4.937429670384575,52.38398873349895],[4.9374066773036,52.38401540244773],[4.937330847254169,52.38407717423857],[4.937264391190321,52.384121266910434],[4.937184705191954,52.38417506987637],[4.937089731426283,52.38422714298155],[4.936990729670623,52.384265063104884],[4.936737034434713,52.384344582947],[4.936644188143759,52.384359212196465],[4.936587315922488,52.38436491869013],[4.936007341566385,52.384268978219254],[4.936016276255983,52.38424546457981],[4.93596297344361,52.3842381702352],[4.9359638577771,52.38423209794414],[4.935813423152133,52.38421456495419],[4.935504025449943,52.38418044552785],[4.935217022098988,52.384142555052094],[4.935165250296794,52.38413206658205],[4.935011531734546,52.3841154277907],[4.934945059348958,52.38411624350145],[4.934667390221159,52.38407773123541],[4.934513956093337,52.38403326707421],[4.934424838561022,52.38402650920751],[4.934335695445989,52.38402082070788],[4.934234441624634,52.384004381512746],[4.934152271773556,52.38400192814186],[4.934110229101099,52.384008184495706],[4.934080392055785,52.384018774650606],[4.934050522299897,52.38403256428151],[4.933908240708105,52.38409408859888],[4.933551796165462,52.384233973916025],[4.933481514123641,52.38426687815101],[4.933477897990781,52.38427863813803],[4.93307265710247,52.38440121355984],[4.932920878203504,52.38412640881501],[4.932294985097609,52.384346864494844],[4.932238969289237,52.38486458147629],[4.932064157841159,52.38485641408983],[4.931938286447398,52.38485272170068],[4.931913787082985,52.384842615262365],[4.931718169992567,52.384829406188985],[4.931711717314702,52.384947092814485],[4.931146243194891,52.38517391336088],[4.930737550454586,52.38478282247224],[4.930628500815143,52.384673255911075],[4.930392998307353,52.38444549010416],[4.930751136270562,52.38431203799249],[4.930723607922078,52.38426805410487],[4.93146681466586,52.38397830492736],[4.931620776827732,52.38366797795578],[4.931561547998065,52.38360286812996],[4.931473808520887,52.38358934562626],[4.931454707915629,52.38357851388655],[4.930569434185451,52.383445627486104],[4.930330231980205,52.38340939239776],[4.928760525309889,52.38317111204341],[4.928753256989959,52.383178004412684],[4.928700140533594,52.38316997052228],[4.928688684252434,52.38316852409191],[4.928676984332747,52.38316791257033],[4.928665161060244,52.38316786679316],[4.928653446550189,52.383168666276866],[4.928642078772663,52.38317002433748],[4.928630805069144,52.38317222760221],[4.928619992621441,52.38317527749285],[4.928609735408314,52.383178608150274],[4.928600057041616,52.38318277690159],[4.928591063027573,52.38318752351309],[4.928583094334316,52.383192543724554],[4.928575912897774,52.38319813320741],[4.928565986331432,52.38321209755434],[4.928337084274367,52.38348235087583],[4.928211921524042,52.38362912881072],[4.927721549583621,52.38420294138666],[4.926406757040402,52.38400414876773],[4.926870723758624,52.38346536275435],[4.927287952824011,52.38297940267912],[4.927178286141983,52.3829433046757],[4.926713145585841,52.38287184251707],[4.926428352418536,52.38264538691822],[4.925640588655284,52.38255254144066],[4.924885121877202,52.38246434658307],[4.924007967774136,52.382358189986256],[4.923478554556477,52.382296197327776],[4.922373567876837,52.3821625597004],[4.922355181392127,52.38221978395705],[4.922142726312284,52.382191708196835],[4.922154726653461,52.38215383632158],[4.921492910982065,52.38205821315403],[4.921482431967468,52.38207564398586],[4.919769562544161,52.381875930191086],[4.919733452343652,52.38189623462096],[4.919247499741525,52.383448410312724],[4.919366445553853,52.383560938569765],[4.919418501823844,52.38360809580664],[4.919305883520606,52.38396910818196],[4.919223992490098,52.384007117040824],[4.919059069916356,52.38452363389007],[4.918535870875871,52.38445973838525],[4.918600149452775,52.3842621381104],[4.918534551228225,52.3842913670891],[4.91867755273803,52.38383712069057],[4.919244720390314,52.382047157829454],[4.919251029785853,52.382047748984384],[4.919325437541022,52.38181519923484],[4.919327612130646,52.381803982217626],[4.91929926035287,52.38179749793915],[4.918352250185729,52.38168436345539],[4.916757886464419,52.38149351453047],[4.916712772586658,52.38149713709424],[4.915585714435209,52.381361388972095],[4.91509824431371,52.38130332757585],[4.914467989227862,52.3812256673532],[4.913494643516398,52.381106681620075],[4.913275761892235,52.38108176381781],[4.913106543738981,52.38106042381131],[4.912872102210048,52.38103475091625],[4.91252437581376,52.38099151098147],[4.912477993761008,52.38113830961408],[4.911816678510069,52.3811746992457],[4.911191170719929,52.38120278069987],[4.9110925161294,52.3812178609],[4.91102708295916,52.381237146024596],[4.910967561610974,52.38128307640363],[4.910946631707166,52.381309110439176],[4.910936089817743,52.381329290329205],[4.91092850826895,52.381351441438916],[4.910868466465424,52.38160988342427],[4.910783361101262,52.38162144076858],[4.909673909762632,52.38168375973623],[4.909020037774039,52.38171674846455],[4.908689510519733,52.381752280852645],[4.908680916596035,52.381699362599164],[4.90871652432884,52.38169613609411],[4.908709114802356,52.381662761851146],[4.908667824579198,52.38166584855207],[4.908661232963581,52.38166012372492],[4.908489371800746,52.38167408803686],[4.908489275072446,52.3816830483662],[4.908342721956448,52.38169548799633],[4.908333604062289,52.38167752968603],[4.908168369333466,52.38169397396492],[4.908172161812941,52.3817127196382],[4.908129535009579,52.38171580074506],[4.908133265821233,52.38174025334912],[4.908182545761954,52.38173719915264],[4.908193934860583,52.381791000554934],[4.907964738728934,52.381815328660565],[4.907963450007576,52.38182313374228],[4.90792367778579,52.381840669534476],[4.907918543537342,52.38184823436023],[4.907932536254941,52.381859516606866],[4.907950679601577,52.38186998878216],[4.908055559330572,52.38194371671758],[4.908240558908976,52.38207872309006],[4.908318288319641,52.38213829322815],[4.908342602222583,52.38216086075217],[4.908361845600111,52.38218509745321],[4.908371424888204,52.382201143248345],[4.908378589410431,52.382217745503134],[4.90838378774125,52.38224641026518],[4.908380949203694,52.382275330138],[4.908275963301694,52.38232826547913],[4.908261277051916,52.38231725908817],[4.908248998737984,52.382317209431044],[4.908237151452334,52.382319408436516],[4.908221586435383,52.38232720970569],[4.908209771698417,52.382337273062156],[4.908209590519404,52.382343168248944],[4.908214353196762,52.38234824757753],[4.908237048961776,52.38236153328913],[4.908246503190964,52.38235652044838],[4.908345590662803,52.38242545222956],[4.90835011491103,52.382432211284964],[4.90834533626054,52.382439489960305],[4.908361400498618,52.38244938743958],[4.908369928998128,52.38244577292439],[4.908391385938816,52.38245681566412],[4.908478250112523,52.38252063784561],[4.908469124556087,52.38252649687546],[4.90867230256346,52.38266775056822],[4.908684885699059,52.38266133926986],[4.908783256895625,52.38273280230845],[4.908786527703014,52.38273730936247],[4.908784887440346,52.382740951734775],[4.908779684218766,52.38274402247708],[4.90879632402909,52.38275504568152],[4.908800020147003,52.382752804704644],[4.908810911884459,52.382753414927016],[4.908917224191908,52.382822654022284],[4.908902798607878,52.38283102620605],[4.909024931261865,52.38291240853954],[4.909170269886864,52.383012983239375],[4.909351379611508,52.383147127280836],[4.909515168630231,52.383261257513475],[4.909452103678003,52.38330986913421],[4.909444922815799,52.38331517884734],[4.909433140983971,52.383323552772744],[4.909420425163218,52.3833313656928],[4.909406922226714,52.38333861819968],[4.90939273508268,52.383345301720674],[4.909377746232766,52.38335141578147],[4.909362205264896,52.38335697037652],[4.909345965306186,52.38336196491293],[4.909329514235017,52.383366104765656],[4.909312496263238,52.38336969407999],[4.909295131895019,52.38337271577024],[4.909214272862414,52.383315650217234],[4.909213658219868,52.38330862835835],[4.909219994978352,52.38330668563229],[4.90920233275108,52.383295101126706],[4.90919841339218,52.383297610845304],[4.909185568007192,52.38329700176105],[4.909146026282002,52.383271281187156],[4.909083743400895,52.38322552512817],[4.909093920925956,52.38321882545664],[4.908866879429099,52.383064560833084],[4.908765896486477,52.38299140662372],[4.90869920098232,52.38294086007215],[4.908689849392699,52.38294588235104],[4.908585840469181,52.382875528902126],[4.90858477072706,52.38286849621212],[4.908590649489136,52.38286543719617],[4.908573915997124,52.382853568742455],[4.908568016436891,52.382857193897394],[4.908558167814746,52.38285519477811],[4.90845694484833,52.38278259656542],[4.908467206934885,52.382777586973106],[4.908388492919661,52.382724744736905],[4.908286016465977,52.38265130545206],[4.908275275277213,52.38265715793327],[4.908154447209687,52.38257213109463],[4.90815143921317,52.38256369746887],[4.908155150493614,52.38256005449492],[4.90800674699639,52.3824566619704],[4.908000238658693,52.38245410110858],[4.907992560356308,52.38245379142039],[4.907985994695572,52.3824551759184],[4.907978982499075,52.38245710685762],[4.907972419383652,52.3824596148254],[4.907966760938315,52.38246267470243],[4.907961669070023,52.382466312083636],[4.907957614055023,52.38247050190916],[4.907954686832406,52.38247498390439],[4.907954300465666,52.38247947618195],[4.907957809173633,52.38248370560402],[4.907970231420762,52.38249218631959],[4.907857900527562,52.3825546454735],[4.90776362113694,52.38253010493747],[4.907711015085633,52.38251331866752],[4.907661885299731,52.382492897451435],[4.907512104121209,52.3824015781684],[4.90721870175478,52.38219956857007],[4.907212323644606,52.382194482653425],[4.907167828446111,52.3821611647129],[4.907122284511137,52.38212839974009],[4.907075929847289,52.38209591008071],[4.907028761341357,52.38206398332693],[4.906980690969345,52.38203261013324],[4.906931677590842,52.38200152070111],[4.906881865252474,52.38197097625652],[4.906725511569991,52.381861653933086],[4.906664091432035,52.38182208360235],[4.906661087136597,52.38180249623538],[4.906644372991974,52.3817672416277],[4.906607330817473,52.38174424461342],[4.906576378693568,52.38172986453041],[4.906520803549948,52.38169444319243],[4.906493917701383,52.38168433076722],[4.906463181931114,52.38168251631546],[4.906426817501171,52.38168236868946],[4.906382153922183,52.38168500050196],[4.906367406250575,52.381690557926056],[4.906323684247275,52.381712004763486],[4.90630206849259,52.38172652197499],[4.906291998004165,52.38174501368559],[4.906288725408603,52.381761016449616],[4.906288738077929,52.38178151740945],[4.906293471869411,52.381800069238366],[4.906307776179503,52.3818245648398],[4.906354548743057,52.381860426882646],[4.906385393944802,52.3818819607858],[4.906331950516812,52.381908652913765],[4.906291779896637,52.381885661073376],[4.906269832783996,52.38190363719159],[4.90641951033055,52.382004125084634],[4.906504460572324,52.38196504995501],[4.906543600498329,52.381992360614944],[4.90661066219666,52.382037220683934],[4.906648278165915,52.38205472854869],[4.907093848932425,52.38236448976377],[4.907161847235678,52.38241248102467],[4.907598029186715,52.38271642316168],[4.907576739823338,52.382737422043704],[4.907383680484338,52.38286533461461],[4.907378007759173,52.38287513516701],[4.907601623915562,52.38300467267346],[4.907547532513546,52.38304097055318],[4.907349789609515,52.38292697862168],[4.907320579426587,52.38291168905437],[4.907316901505746,52.38291224037475],[4.907247072896494,52.38295998756753],[4.907245190794801,52.38296153480877],[4.905290619898916,52.38203727589597],[4.905276988541915,52.38204550706952],[4.904806964884258,52.38181130666845],[4.904774281290521,52.381794123889684],[4.904802445889069,52.38177711708085],[4.904830303690739,52.38178831237222],[4.904936586328308,52.38172039389452],[4.904971812681455,52.38174146067536],[4.905020274863286,52.38170962589624],[4.904985528066283,52.38168768028924],[4.905042168659685,52.38165201409814],[4.905076674320394,52.38167047148502],[4.905141732702842,52.38163191851883],[4.905103668559867,52.381609788676315],[4.905338710827552,52.38145840402223],[4.905374874453212,52.381435111281874],[4.905413392130627,52.38141549508342],[4.905469315910252,52.38144575044584],[4.905548794149411,52.38140065895224],[4.905485760156405,52.38136378673113],[4.905597881723408,52.381289528129244],[4.905690553989485,52.38135216267203],[4.905745129212131,52.38139706234834],[4.905937346391575,52.38153877056722],[4.906042163763124,52.38161109797078],[4.90604583092465,52.38161288344447],[4.906050435210046,52.3816149333684],[4.906057645740047,52.38161773087126],[4.906065182987217,52.38162019715673],[4.906070366590441,52.38162164725867],[4.906075654756371,52.381622936006835],[4.906081032700705,52.381624072328904],[4.906086515305154,52.3816250383099],[4.906094845480911,52.38162616864984],[4.90610329724619,52.38162692200036],[4.906108978091813,52.381627214709326],[4.906114660887527,52.381627327672206],[4.906123195836988,52.381627182590776],[4.906128868625879,52.38162686410346],[4.906134513893637,52.38162637473807],[4.906142882351394,52.38162533021037],[4.906148370646812,52.381624417785474],[4.90615378726315,52.38162334329081],[4.906159117513606,52.3816221066668],[4.906164331927153,52.38162071678139],[4.906171936511594,52.3816183299837],[4.906179221691408,52.381615600356206],[4.90618388453897,52.38161360605461],[4.906188387391733,52.38161146730002],[4.906219385352486,52.38159587374264],[4.906222930639592,52.38159400072811],[4.906227083638751,52.38159161788361],[4.90623292652135,52.381587803872705],[4.906236554013725,52.3815851223],[4.906239962374392,52.38158233198497],[4.906244651046372,52.38157795604938],[4.906247474471129,52.381574929678706],[4.906250049098381,52.38157182140834],[4.906253420446596,52.381567026688906],[4.906256220571361,52.38156208584647],[4.906257740482347,52.38155872163733],[4.906258981637787,52.38155532933305],[4.906259958919406,52.38155189101864],[4.90626065734813,52.3815484335964],[4.906261169266933,52.381543213830454],[4.906261049656793,52.38153799149976],[4.90626061740305,52.38153451151021],[4.906259905809387,52.38153105734924],[4.906258316553442,52.38152591892686],[4.906256913807407,52.381522542848145],[4.906255246115963,52.38151921961946],[4.906252229520997,52.381514327055356],[4.906249899368795,52.38151114493916],[4.906247303978948,52.38150804263489],[4.905779496156718,52.38119831356803],[4.905778447209652,52.38119752737506],[4.905767784029218,52.38118402047225],[4.905769107560125,52.38117304290074],[4.905742941543261,52.381157549604985],[4.905726533502199,52.38116047579489],[4.905674790979557,52.38117394467049],[4.905339575403896,52.38127205686287],[4.905108538147808,52.381340195903626],[4.904872961266981,52.381411084212424],[4.904678111981581,52.3814738423736],[4.904546654135991,52.38152028530166],[4.904469585973347,52.38154759931865],[4.904473838778057,52.38157248558138],[4.904514116070121,52.38160580532943],[4.904635429293343,52.381661565012465],[4.904662210949115,52.38168931127567],[4.904589395448733,52.3817415116245],[4.904592400740473,52.38174877693414],[4.905196260448813,52.38205005883418],[4.90611924798711,52.38249606888606],[4.90789282539563,52.38334300649235],[4.908026711076015,52.38323109442944],[4.908185592509414,52.38310988220649],[4.908261563402537,52.383106684275965],[4.908360383004439,52.383109447640024],[4.908500585980697,52.38316456966942],[4.908664013141903,52.38323989980617],[4.908787057894166,52.38333346436864],[4.908962588004165,52.38345928183925],[4.909188596718535,52.383622367992736],[4.909255351294918,52.383673031335306],[4.909299488310729,52.383701709384376],[4.909448307658672,52.38371809219857],[4.909531649541117,52.38369475483411],[4.909617874163162,52.383669685426646],[4.909721556746893,52.38361926020098],[4.910121760296057,52.383403721759656],[4.910315168908086,52.38330973464956],[4.91037114045633,52.383341542729355],[4.910360767065868,52.38343339998182],[4.910345554106207,52.38353958208066],[4.910385989408342,52.3837063045516],[4.910468804525977,52.38386170236909],[4.910994332427806,52.38375900241152],[4.911733450569855,52.38429336856249],[4.912412908919261,52.38479603396488],[4.91253827965717,52.384886134646564],[4.913128553801207,52.38529659331224],[4.914057325146975,52.385978319555605],[4.914170669654824,52.386005339877336],[4.91436449959131,52.38598918111845],[4.915163112048849,52.38651805573653],[4.915770958941013,52.38679010695933],[4.9169511542289,52.38731917541409],[4.918859058341299,52.388175503660804],[4.919455875557893,52.388441883828186],[4.919658307531059,52.38855249440366],[4.920027472185625,52.38871854222598],[4.9209123577094,52.38911608440295],[4.9210158091972,52.38915468021933],[4.921135849952651,52.38920964484502],[4.921995395817521,52.38959640177656],[4.92208368382922,52.38963691437627],[4.922158325189118,52.38968860790425],[4.922835510428789,52.389999649459654],[4.922924784269961,52.3900331459272],[4.923003343877006,52.39005030570856],[4.923056367176143,52.39007213781652],[4.92359574869581,52.39031494880654],[4.923685599653291,52.39036080498488],[4.923761404612757,52.390409688902636],[4.924242181269099,52.390617161793855],[4.9243162513607,52.390653617626484],[4.924280389725027,52.39090146492338],[4.924298101954919,52.39094409969424],[4.924343285749564,52.390962781861184],[4.924617521189869,52.391061935518074],[4.924690060753155,52.391067773173404],[4.924735925129428,52.3910198323454],[4.924869613780961,52.39096298604685],[4.925012303308137,52.39091357156306],[4.925175072429978,52.390932002170715],[4.92546978242923,52.39097668762706],[4.925585501398257,52.39099623745261],[4.925656327694163,52.39100577974092],[4.925820420945833,52.39103113511469],[4.926077669752916,52.391070334454525],[4.926091199267142,52.3910717892012],[4.92626753863233,52.39109915992482],[4.926400692321737,52.391119055416155],[4.92654130273382,52.39113954598121],[4.926911331615146,52.39119435324707],[4.927025579723803,52.39121136142619],[4.927661697752183,52.39129331797352],[4.92792342326096,52.39132185332725],[4.928093006177528,52.39133796055772],[4.928168434246888,52.39134583848542],[4.928183109734938,52.39134729743383],[4.928183800165166,52.3913473001095],[4.928184490595394,52.391347302785185],[4.928825199249678,52.39140764656275],[4.928941830417548,52.39141736413595],[4.928970728982258,52.391420001471324],[4.929129444393683,52.39143157134395],[4.929195846844885,52.39143575573491],[4.929196534305436,52.39143604599813],[4.929197224737126,52.391436048667906],[4.929305473897992,52.39144516724812],[4.929306164329832,52.39144516991729],[4.929306972281984,52.391445173040744],[4.929511421623972,52.391462257861],[4.929525066015869,52.391463991275735],[4.929754673615634,52.391480328046214],[4.929783675100743,52.3914829655804],[4.929784362565885,52.391483255840214],[4.929785170518776,52.39148325896042],[4.929904443207086,52.391491862328586],[4.930115734847456,52.39150363385483],[4.930283197045474,52.391513267637144],[4.930283887478453,52.39151327030062],[4.930284563221368,52.3915132729074],[4.930845928459521,52.3915454918319],[4.930970965599961,52.391552148038365],[4.931287219266875,52.391568527944024],[4.931565965855153,52.39158224618492],[4.931662321859584,52.39158654441318],[4.931696973111771,52.39158836735534],[4.931858609538644,52.39159600820738],[4.931887290614661,52.39159696330299],[4.932055120310403,52.39160378285463],[4.932244100547354,52.391609568942286],[4.932390267857931,52.391614345501516],[4.932507765710035,52.391617034542385],[4.93261079373364,52.39161967692018],[4.932812745155958,52.391624109808724],[4.932993008406406,52.391629007432506],[4.933007816033482,52.391629064215216],[4.933022732199842,52.3916285641779]]],[[[4.855265793825839,52.4149092315225],[4.855215407158012,52.414824799965665],[4.85511622841489,52.414846293475286],[4.855089594695169,52.414803473519015],[4.855053567649183,52.41481458223219],[4.855088747070383,52.41487404077357],[4.854933433600336,52.41488461366667],[4.854856708123619,52.41489435311001],[4.854795545808739,52.41489940796934],[4.854722849641572,52.414895531160184],[4.854461006626053,52.414483995757514],[4.85436587908523,52.41450353855836],[4.85414911294591,52.41416108652439],[4.854023866219615,52.41396838484788],[4.853986832578161,52.41394348415504],[4.853976376903002,52.413907288744205],[4.85394037330506,52.413850549403904],[4.853933881036991,52.41381966555697],[4.85391377197958,52.41381006610544],[4.853891978928074,52.41377430498856],[4.853891100042082,52.41375574152066],[4.853854455946339,52.4136985049475],[4.853835940146296,52.413685982678174],[4.853769006671647,52.41356012376896],[4.853555282092812,52.41322339140878],[4.853538369506544,52.41320713744605],[4.853426951095802,52.413029713475346],[4.853534316492903,52.41300429470049],[4.853135233121337,52.4123806582373],[4.85307349983851,52.4123955511138],[4.853058331418667,52.412384616648495],[4.85304541045286,52.41236647522269],[4.853027116788266,52.41224782752919],[4.853025764038635,52.41222471415501],[4.853040609584161,52.41221975698563],[4.85303902346463,52.41219161845713],[4.853014668336925,52.412190502029894],[4.853001276628728,52.41207488729563],[4.853003504148431,52.412026669551274],[4.853002560751323,52.41196838930417],[4.853003517824403,52.41188901459709],[4.853020808771519,52.41181775749197],[4.853052025968358,52.4116812408474],[4.853092837731361,52.41156688608101],[4.853133249738224,52.411485675993305],[4.853153699198226,52.411425478938455],[4.853163899641372,52.41139739353631],[4.853209161895631,52.4113222449924],[4.853278007131182,52.41133662096233],[4.853379037890067,52.41120231522093],[4.853422885456668,52.41113719045092],[4.853382422906956,52.41112508151601],[4.853588700305481,52.41092480397249],[4.853677076815496,52.41085136834096],[4.853815209903765,52.41077001384126],[4.853783265584653,52.410752326102205],[4.853813268630784,52.41073105257109],[4.85384454371503,52.41074939338871],[4.853865866802826,52.41072273310862],[4.853932893813836,52.41067808752325],[4.854005192890092,52.410631335551024],[4.854063399964342,52.41059413692029],[4.854167295846747,52.410538961789],[4.854293943047927,52.41048495843848],[4.854441653383065,52.410424623493554],[4.854538347184284,52.4103865371486],[4.854777235447261,52.41031163824437],[4.855038716526658,52.410248605195605],[4.855107209548512,52.41022858274101],[4.855421094336269,52.4101732709197],[4.855438520288321,52.41017977531545],[4.855689083039106,52.41015200435426],[4.85594642271299,52.41014245428183],[4.855960541640078,52.41013182227423],[4.855999071077706,52.41012985597217],[4.856006181930136,52.41012025308082],[4.85612511028328,52.41012506438328],[4.856287776041546,52.41013115009362],[4.856527640160311,52.410156015092156],[4.856752704012878,52.41017603190264],[4.85703748910433,52.410212619167694],[4.857049949412303,52.410222669206064],[4.857262567102033,52.4102671297155],[4.857276738824329,52.41025328919316],[4.857690246179185,52.41038041706724],[4.857713420047014,52.41038683896446],[4.857862306002199,52.410452799632075],[4.857997997317543,52.410519752729165],[4.858112903887749,52.41057346390196],[4.858262903411083,52.41066812663123],[4.858442270624282,52.410792157096914],[4.858541201854726,52.41086071606238],[4.858647158872153,52.4109415744426],[4.85873177573308,52.411026148305275],[4.858708173030612,52.4110322265305],[4.858850494354858,52.41122131454015],[4.858894548656537,52.4112096652611],[4.858994985359294,52.4113443976907],[4.859112921038323,52.41152526977662],[4.859242439783065,52.41171596293629],[4.859359102968715,52.411898950173395],[4.859435860058473,52.41203285768784],[4.859483342954691,52.41209618950698],[4.859541689445352,52.412186505695495],[4.859647245851205,52.412356968290325],[4.859717859995622,52.41245145535562],[4.859807268856096,52.412584547131864],[4.860018507272056,52.41292149073274],[4.86004771927953,52.41296656797152],[4.860076816821816,52.41302127047117],[4.860086510417795,52.413089799525224],[4.860069838388319,52.413166776510586],[4.860009300331718,52.413254253621034],[4.859973886200336,52.41328940852855],[4.859919091322787,52.41333518147091],[4.859799209380848,52.413408481465915],[4.859695428361815,52.41345403623767],[4.859590010937869,52.41348887933575],[4.859470537880373,52.41352900738894],[4.859391471322827,52.413555411432554],[4.858922510605169,52.41369884945653],[4.858696173316932,52.41376551708602],[4.858690557751943,52.41377914428299],[4.858585177049681,52.413810778060586],[4.858495692250933,52.413830708852544],[4.858450087181494,52.4138390615833],[4.858385281465648,52.413844128994796],[4.85832569725846,52.41385134975283],[4.858260953535255,52.413849991200465],[4.858196262825496,52.413845424256806],[4.858133333884735,52.41383979561407],[4.858068745500558,52.41382666382315],[4.858006006416948,52.413803914478905],[4.857957237534431,52.41378550562943],[4.857934670782597,52.41376748344026],[4.857877481060284,52.413739141532666],[4.857860953257544,52.413728668975466],[4.857833765010232,52.41370748942741],[4.85780649959118,52.41368293016996],[4.85777634335882,52.41364937033375],[4.857746517580884,52.413609071225],[4.857726895075208,52.413583296818146],[4.857657051232077,52.41347252639217],[4.857626307305115,52.413442657815104],[4.857496422526682,52.41324709000495],[4.857341786181055,52.413007407785095],[4.857093806174137,52.41260679716937],[4.856851409111226,52.41222761059228],[4.856807398474534,52.41216796021746],[4.856750092269502,52.41208329157116],[4.856744670540865,52.41204878165133],[4.856671178172423,52.4119190752361],[4.856635764531957,52.411887783401326],[4.856612939222495,52.41184606832179],[4.856588540123706,52.41182040713554],[4.856537916148238,52.41177795637671],[4.856474579797714,52.41174770781711],[4.856450035272151,52.41173665089621],[4.856400192636239,52.411717328824686],[4.856337270048045,52.411697948124626],[4.856297649428694,52.411689061545744],[4.856234746915428,52.41167782370028],[4.856176141896031,52.41167223135811],[4.856103635995005,52.41167375781377],[4.856054977289452,52.41167829415179],[4.856000440764563,52.41168518584608],[4.855928387262629,52.41169555807997],[4.855867973816659,52.41170717783182],[4.855781508314772,52.41173786036637],[4.855749067220121,52.41175288601865],[4.85570133118643,52.411778511400065],[4.855641112778505,52.41181673538394],[4.855601726018183,52.4118581805152],[4.855580014301545,52.41188542355396],[4.85557003392899,52.41190631102916],[4.855556835638357,52.411936926686465],[4.855550453182761,52.411982555355735],[4.855546304822528,52.41203675030116],[4.855544342818512,52.41207777016103],[4.855559380071418,52.41211315015123],[4.855594787025315,52.412176797850485],[4.855730058112631,52.412375726409294],[4.8560862111305,52.412932347332344],[4.856266532606826,52.41319408519136],[4.856343632840441,52.41332084205903],[4.856356500819366,52.41335335414122],[4.856415073205241,52.41344895761494],[4.856445060677975,52.41348546499792],[4.85655316735094,52.413661927534676],[4.856581088805378,52.4136684697718],[4.856713375502684,52.41388538602484],[4.856700134581415,52.413902394295775],[4.856741575720745,52.41397054448904],[4.856737684958909,52.41397141684715],[4.856741954794003,52.41397202914924],[4.856768255535357,52.41396786877567],[4.856780500344192,52.41396899312543],[4.856830300596006,52.41404732777036],[4.856838803963761,52.41406877442803],[4.856780411796274,52.41408318986977],[4.856832378510133,52.41416718744512],[4.856805742903544,52.41417843759335],[4.856795146106888,52.414206620377485],[4.856817154810616,52.41426877865493],[4.8568602667728,52.41436069963657],[4.856915544239949,52.41445425687675],[4.856968458341729,52.4145267005013],[4.85700520965202,52.41457537133234],[4.857047941076547,52.414611944565195],[4.857082703174416,52.41463278968283],[4.857131562200642,52.41464371257547],[4.857202702407678,52.41464616988533],[4.857244759337317,52.41464207988553],[4.857333679823791,52.41462035896847],[4.857437936303999,52.414585872188134],[4.857806809656873,52.41447122969707],[4.858057286585566,52.414394713252726],[4.858221337730835,52.414343964520825],[4.85875036720953,52.41416827088112],[4.859244050914432,52.414006743707205],[4.859502734543144,52.4139194935754],[4.859989994183259,52.413757584170504],[4.860114671479263,52.41371366798207],[4.860265373478446,52.413655370324605],[4.860401342237388,52.41360247146153],[4.860981269778644,52.413398161791484],[4.861307102451834,52.41327119291611],[4.861469848727944,52.413221979782],[4.861632831652716,52.41315278792144],[4.861660015503008,52.41312366268047],[4.861662718459991,52.41309157077218],[4.861646830087525,52.41305439926188],[4.8613724629914,52.41267936739438],[4.86122995194073,52.41249753471589],[4.860802001589771,52.411925888643324],[4.862206804426638,52.41141961881955],[4.862312090347797,52.41149949125845],[4.863307065826703,52.412305333285715],[4.863373108424869,52.41235825699887],[4.863429874018422,52.41241018697128],[4.863465274325886,52.41243310020298],[4.863491530540458,52.41244127819135],[4.863513988728847,52.41244375020157],[4.863552515960664,52.412425945182946],[4.864017634130011,52.4122258676677],[4.864403238960928,52.41204160628331],[4.865215207935132,52.411645775095735],[4.865241977990777,52.411607830322055],[4.865217042590682,52.41157114071306],[4.865138768092891,52.411530917605084],[4.865072348421731,52.41152986994835],[4.865026720844845,52.411537946487705],[4.86462101667624,52.41171973951874],[4.864373636673069,52.41183000514865],[4.864257393465723,52.4118799038745],[4.864215397976031,52.4118940088743],[4.864177322200308,52.411888574027955],[4.861566518726321,52.40970486464114],[4.861002589030384,52.40922973616731],[4.860949671783244,52.40922435119166],[4.859762905732453,52.408235598650215],[4.858589065062433,52.40725063039222],[4.857820308020912,52.40660466931869],[4.857635498255557,52.40645188882776],[4.857594265261251,52.40638892563817],[4.85750683916792,52.40609033290202],[4.85749905024331,52.40605962316059],[4.857533033470695,52.40604550268799],[4.857519121525117,52.406004537603415],[4.857494904969267,52.40591834542731],[4.857476437839037,52.40583432700649],[4.857490301023022,52.40581298036669],[4.857534839908145,52.40579725336082],[4.858101262088272,52.40554367188757],[4.858586577753256,52.40532923562139],[4.858606258276723,52.40532154910416],[4.858625219260874,52.405324905219395],[4.858666426225294,52.4053555932244],[4.858722523613555,52.40533296088496],[4.858731658404771,52.40536424277542],[4.858764288733663,52.40546718929886],[4.858786599872102,52.40553959462037],[4.859051881407018,52.40576022952772],[4.859352922808302,52.405626549519376],[4.859277783823723,52.40556252807501],[4.859293619487566,52.40555439290171],[4.859375201766013,52.405621552778044],[4.859667856030988,52.405866341272535],[4.859990492933829,52.40613208688263],[4.860787452610509,52.406799684641264],[4.861320693956223,52.407242574323696],[4.861840860695246,52.40767851001401],[4.862943491023654,52.40860522309706],[4.862960895031784,52.40861362268599],[4.862982403681523,52.40860302254432],[4.863584380558577,52.40833577624045],[4.863609783237009,52.40832519319589],[4.863867196871021,52.40825855462743],[4.863867281152816,52.40825141879687],[4.863789075539917,52.408123852959505],[4.864046488317088,52.40805840935816],[4.864450100339879,52.40795912473981],[4.864494958705585,52.407947431993996],[4.864605410991702,52.40792036310449],[4.864611294136662,52.40791622776899],[4.864609424409585,52.407910278677264],[4.86449004586999,52.407808272332396],[4.864489184671157,52.40780154576179],[4.865041301115967,52.407557269218856],[4.865048224169668,52.4075471886131],[4.863894741575765,52.40658457135586],[4.861796472361739,52.40483091269906],[4.861822070563151,52.40481857830694],[4.863582996351759,52.404035567840964],[4.864277676740183,52.40461252594527],[4.866813079984156,52.40673296952529],[4.866831592201457,52.40674961510268],[4.866843209671967,52.40674769783381],[4.86787953053655,52.40628455427752],[4.867891736418239,52.40627881074143],[4.867891626747436,52.40627061351275],[4.867337837828956,52.40580588621861],[4.867337322253971,52.40579597056337],[4.868290860810612,52.405374720090535],[4.868323513928637,52.40535964700094],[4.868370046152934,52.40533646490193],[4.868370221564234,52.405321483234815],[4.868363414902539,52.40530540145674],[4.868365389051858,52.405286149539414],[4.868445512340651,52.40525060369503],[4.868871201119698,52.4050574347074],[4.869065459346632,52.40496925270598],[4.869612503568195,52.404721238779885],[4.869661562285692,52.40472319672174],[4.869692919790084,52.40472586823166],[4.869784481296898,52.404826858114134],[4.869846511906226,52.40490845839687],[4.869891131288059,52.40498356542362],[4.869923570661817,52.40505219306926],[4.870061000727193,52.405419831252296],[4.869626487147523,52.405470367688636],[4.870196236530904,52.4072906817994],[4.870199390495635,52.40730502189163],[4.870192894147079,52.407330275825586],[4.866952863919042,52.40967955839653],[4.866942396313911,52.40970113673139],[4.866937793011744,52.40973144985688],[4.86694089544644,52.40976011612921],[4.86695361032061,52.40979247360075],[4.867238833314657,52.410270628725044],[4.867147838401537,52.41032500010129],[4.867133026803494,52.41033476757848],[4.867122465775399,52.41034426610799],[4.867111222718418,52.41036303690258],[4.867112436752861,52.41038606860426],[4.86711938633884,52.410401270273475],[4.867126960424976,52.41041084841162],[4.867144840989895,52.4104238511492],[4.867171214473758,52.41043576770596],[4.867193673082699,52.41044063872773],[4.867230846137607,52.4104427701775],[4.867250389096758,52.41044060903358],[4.867278613332509,52.41043258109501],[4.867299174423463,52.41042256021312],[4.867583937670377,52.410265123461066],[4.867604686094494,52.4102529013724],[4.867638366034627,52.410273415104534],[4.867664776235907,52.410282204008794],[4.867694321330072,52.41028685435699],[4.867739397575142,52.4102817762527],[4.867754174497945,52.41028372844994],[4.868156381172533,52.41004322000257],[4.868414988050952,52.40987493540024],[4.868631349347988,52.40972844014545],[4.869227359657184,52.409304915734225],[4.86928051687541,52.40928231948475],[4.869733999544707,52.40894091870293],[4.869917653610942,52.40879808899875],[4.870151465505782,52.40862123495418],[4.870485810505641,52.40836016422936],[4.870507984903663,52.408325074265406],[4.870555231100517,52.40827485955828],[4.870697905632425,52.40817750722123],[4.870801540145651,52.40809330425565],[4.870975050598128,52.40815324416009],[4.871668902087317,52.40751926533636],[4.871756353482477,52.40755250473289],[4.872987186619439,52.40636109295346],[4.873087343772909,52.40626553945037],[4.873521498145207,52.40584318726997],[4.873502913059329,52.405836446826584],[4.873674393265289,52.40566788074766],[4.873714432663605,52.40556817443952],[4.873880825557268,52.40552020040456],[4.873952781499026,52.40555000068386],[4.873963498331986,52.40554078083623],[4.873975119414685,52.40554357241858],[4.874010336615773,52.40550488930528],[4.873958153959892,52.405487083377565],[4.873968068938241,52.405470966520305],[4.874128376857002,52.40541414888183],[4.874222970348107,52.405384971149566],[4.874392193506364,52.40533867137069],[4.874501724846444,52.40530501032168],[4.874544187736071,52.40528016345324],[4.874587972767554,52.40524772771803],[4.874610600838611,52.40522127608225],[4.874612139398034,52.40519625210623],[4.874593816961576,52.40517189715545],[4.874564370610617,52.40514370127295],[4.874510137491446,52.405113888187024],[4.874164317932854,52.404987983855854],[4.873414861247799,52.40469420066732],[4.873360506483951,52.40467499196149],[4.873187655480962,52.404605971812046],[4.873081496994772,52.40456303545426],[4.873032056335618,52.40454840466748],[4.872985160571757,52.40452848218583],[4.872906143077321,52.40449703286953],[4.872051766152825,52.40416030973133],[4.871830719687591,52.40407741673991],[4.871761769275953,52.4040346410534],[4.871442524759517,52.403864085754435],[4.870645305123779,52.403413808355104],[4.869838304391581,52.40295437827342],[4.869719949525267,52.40289317658471],[4.869642274821453,52.40285414533848],[4.869548599367056,52.402803674721525],[4.869421771026658,52.40272574560326],[4.869136955947722,52.40258939773273],[4.868391903246801,52.402235743766916],[4.86757981944368,52.40184394395595],[4.867148722280637,52.40164240002763],[4.866787307468012,52.40147468467759],[4.866724249015635,52.40145771752314],[4.866674947563033,52.40143170627483],[4.866657805734572,52.401418679713736],[4.866601022202536,52.40139041560016],[4.866285264013037,52.401300337127566],[4.866156604608319,52.401260270457755],[4.866088335872249,52.401231587082066],[4.865993956090093,52.4011929113294],[4.86512279760079,52.400778805728635],[4.865077332744804,52.400751561428784],[4.865018150357134,52.400746222517895],[4.864733373643156,52.40050788094255],[4.864622779198939,52.40055481207008],[4.862898077662377,52.40133340571203],[4.862689417250172,52.40142579201501],[4.862025488530917,52.4017242071076],[4.861268957373538,52.40207012067819],[4.860904271716294,52.40223012633183],[4.856313880715486,52.40427398601028],[4.856277805249811,52.40427638581997],[4.854269085341497,52.40259083198262],[4.853796847727339,52.402195603427984],[4.853812657623288,52.40218470964916],[4.855071118527723,52.40163153363775],[4.856217632857856,52.40111077339402],[4.860601436277904,52.39915598353672],[4.860616224767586,52.39914425744396],[4.860587379436578,52.39912220825625],[4.859082020065742,52.39785401310953],[4.859053026234476,52.39784702623253],[4.858976418797404,52.397886401202605],[4.858062424905789,52.39829597989567],[4.856731998831799,52.39888584971566],[4.856002593705508,52.39921131444265],[4.855978251483332,52.39918887088606],[4.855832000131375,52.399058513649415],[4.855623836313958,52.39888619352102],[4.855619687599918,52.39888785559963],[4.855602712239799,52.39887355191417],[4.855608094260529,52.398868291309896],[4.855832053221935,52.398768535267045],[4.855828567537612,52.39874676044794],[4.85581177129175,52.39874325180386],[4.855753722916851,52.39874413281333],[4.855624535189374,52.398745844986884],[4.85553836948096,52.39875118342404],[4.855409030649516,52.39876548642971],[4.855304008440444,52.39878104891199],[4.855166971070124,52.398813642971824],[4.855020422399781,52.39885763546342],[4.85495367312332,52.39888196180813],[4.854767367893099,52.398963568551984],[4.854255450150311,52.399191423029436],[4.853678601903502,52.399448183849806],[4.853275817005667,52.39962958292425],[4.852810928714925,52.39983702540169],[4.852622651932688,52.39992549546385],[4.852568155997291,52.39994357539979],[4.852498728845982,52.39995699520563],[4.852448158229233,52.399959058777696],[4.852376402126556,52.39995360284977],[4.852311736152867,52.39993897550643],[4.852267909404989,52.399927686792545],[4.852239815567681,52.39992036977125],[4.852173369562736,52.39990227405461],[4.852068806134863,52.39987343658885],[4.851570493938559,52.39973945184671],[4.851563503605028,52.399739141618916],[4.851548352117348,52.39973935172222],[4.851533293158828,52.399740416072106],[4.851518462655751,52.39974202970194],[4.851503739481614,52.3997444886577],[4.851489582475382,52.399747516396296],[4.851475536273044,52.399751101870784],[4.851399845940637,52.39978306126321],[4.851154245478659,52.39989232783894],[4.850919593338192,52.39999771585581],[4.850621483405639,52.40013061487973],[4.850342167420448,52.400256021716636],[4.850297146575888,52.40027660617873],[4.850250178402815,52.40029661557242],[4.850021183436973,52.400399214312294],[4.849888232669067,52.40045758850416],[4.849766580453082,52.40051237379762],[4.849678360765109,52.40055466500895],[4.849640954976955,52.40057247063225],[4.849589301573795,52.40059104743594],[4.849537081753894,52.400609073397476],[4.849484284533006,52.40062624288499],[4.849430935700667,52.40064285260832],[4.849428868437506,52.40064368806551],[4.849138197531452,52.40074769476936],[4.849121703637961,52.400754360610705],[4.849050515158343,52.40078437065225],[4.848980113237375,52.400814941461384],[4.848910288678765,52.40084635969482],[4.848841136406599,52.40087806854851],[4.848811576333373,52.40089226056798],[4.848437102854817,52.40110991138696],[4.848387973433595,52.40113834066198],[4.848329546704131,52.40116644001636],[4.847955224781855,52.401333812899196],[4.84781465595968,52.4013946846165],[4.847675907351354,52.40145808999703],[4.847444614058782,52.40155899260296],[4.847052137969601,52.401737235903404],[4.846912357668723,52.40179951222686],[4.846772708221414,52.40186066552224],[4.846636624487259,52.40192099008292],[4.846580739979246,52.401947698099185],[4.846516669770427,52.40198532471325],[4.846392511496945,52.4020569380306],[4.846267292365765,52.402129957439946],[4.846138275107517,52.402203516605326],[4.846010877105925,52.40227680441006],[4.845888087206832,52.40234813584514],[4.845758274265285,52.40242056750083],[4.845633066789929,52.402492462833514],[4.845346975305131,52.402654056294665],[4.84522847085693,52.40272204525594],[4.8451276348866,52.40278112726892],[4.845001172049774,52.40285217134786],[4.844749709595311,52.40299706995896],[4.844496857458608,52.40314251890668],[4.844374618386963,52.403215271352664],[4.844259149884417,52.40327989388871],[4.844157538479838,52.40333729082628],[4.84408608291857,52.4033776864284],[4.844065724017103,52.40339022976697],[4.844044343364281,52.40340221118082],[4.844022161478038,52.40341362269287],[4.843999174833371,52.40342475189238],[4.843975522505304,52.40343504218028],[4.843966984725572,52.40343865202713],[4.843867250216615,52.40348313303547],[4.843626667897998,52.403591004978175],[4.843521413029764,52.4036374286673],[4.843505707270501,52.403644375963935],[4.843337754227609,52.403719155453146],[4.843178673072346,52.40379060506784],[4.843027791380767,52.40385844313654],[4.842838824465248,52.40394267929326],[4.842739895862688,52.40398716305816],[4.842631261270005,52.404035817345274],[4.842597091901498,52.40405166732476],[4.842589240977258,52.40405556783611],[4.842579870602312,52.40406114205796],[4.842571066445336,52.40406727611855],[4.842563184477584,52.40407370202424],[4.842556324244039,52.40408068986329],[4.842550724163877,52.40408797110167],[4.842545693726526,52.40409553357704],[4.842542140540711,52.40410366008054],[4.842541788769218,52.404104781923486],[4.842540421575711,52.40411319709582],[4.842540079432782,52.40412190458694],[4.842541019210062,52.40413033036625],[4.842543090322141,52.404138770334875],[4.842546325803061,52.40414692805107],[4.842550589871828,52.404155090496324],[4.842843081938152,52.40439040226681],[4.842843313622493,52.404390681949614],[4.842852897800883,52.404395219831514],[4.842862955617225,52.404399481270914],[4.842873817298273,52.40440290156118],[4.842884924464808,52.4044054781363],[4.842896608127755,52.40440777874109],[4.842903078877909,52.40440857242552],[4.842907386505453,52.40441080318747],[4.8429342860445,52.40441257152507],[4.842963900324799,52.404411062837276],[4.842996299233783,52.40440297896387],[4.843042244282024,52.404386733578626],[4.843342679174798,52.40424820202191],[4.843767541098601,52.40405756377033],[4.844011095086773,52.40394840195729],[4.844327678123917,52.40380829720741],[4.844376265321762,52.403796997651725],[4.84475511437569,52.40362754468246],[4.844898418467454,52.40357223451055],[4.84501221918813,52.40367273439952],[4.845119444934106,52.4037641894437],[4.844940791634351,52.40384896147196],[4.84465394510622,52.40397768184301],[4.844119052405061,52.40414312073295],[4.843906270315902,52.40420541832498],[4.843809430339872,52.40424738701987],[4.843710213758371,52.4042950069714],[4.843464650360597,52.40440603736855],[4.843418976527719,52.40442533997378],[4.843147916048905,52.404547118778936],[4.842809125573967,52.404697508089875],[4.842485519657554,52.404843760022395],[4.842476363552461,52.40485101591731],[4.842464711179447,52.40486528869935],[4.842459359243843,52.404879869070626],[4.842462629457533,52.404894767708264],[4.842471187868651,52.40490744374244],[4.842497428017905,52.40493059982672],[4.842280506093618,52.405027909451704],[4.842103403334499,52.405108819640816],[4.842076351556255,52.40508594734071],[4.842057635161584,52.40507715215002],[4.842041045117085,52.405072303346024],[4.842025470736034,52.40506970613407],[4.842013079058325,52.40506880426384],[4.841991475739015,52.40507010691755],[4.841977793570964,52.405072569484666],[4.841956694105139,52.405079500739305],[4.841897702272074,52.405106192248034],[4.841915676252774,52.40511919028134],[4.841935649500732,52.4051381024205],[4.841975524241659,52.40515429301037],[4.84197313515349,52.40516214623533],[4.842050818248634,52.405229911353196],[4.842070163099894,52.40524376950062],[4.84209468052372,52.40525764245878],[4.842157398007599,52.40531156951291],[4.842204823518095,52.40534830465129],[4.84231246967898,52.40543530625563],[4.842405528570564,52.405503986697724],[4.842524252790312,52.40559721358582],[4.842678618609756,52.405722348667844],[4.84282739592917,52.40583593565767],[4.842960076935933,52.4059415932768],[4.842989455942083,52.40597009335802],[4.843009571992081,52.40599659156679],[4.843083146783445,52.406054504593406],[4.843148979708001,52.406096653581514],[4.843248526195866,52.40617098043614],[4.843290356831485,52.406214708813934],[4.843312948753213,52.406235870668],[4.843370796039307,52.406283330534656],[4.843394859331083,52.40630674604649],[4.84341467482712,52.406329027582814],[4.843702494668864,52.40658256958914],[4.84373227856508,52.406597302215815],[4.843767624546535,52.406607863104604],[4.843791911155096,52.40661190212595],[4.843828327646238,52.40661066708719],[4.843861815774433,52.40661334622123],[4.843894955565343,52.406616868589936],[4.843927926123816,52.40662460539365],[4.843953376582949,52.406636801541964],[4.843998059650097,52.40667211230151],[4.844123638295445,52.40672099681349],[4.844130754992032,52.40672187427958],[4.84422701750171,52.406801802535554],[4.84511645588217,52.40639782633549],[4.845464718370144,52.40624960385521],[4.845633944465372,52.40639098979332],[4.845690756511157,52.40644281179453],[4.845306239851946,52.406613787678936],[4.844853554595979,52.40681771364536],[4.844767812798539,52.40686385926762],[4.844736033151338,52.40688726146155],[4.844698837129603,52.406924542777816],[4.844677471084011,52.40695440984375],[4.844663152336879,52.40698002205892],[4.844652319388636,52.40700779829095],[4.844648494478076,52.40703452809636],[4.844649915590405,52.40706129091493],[4.844658069549009,52.40710948422328],[4.844676848479409,52.40714809140053],[4.84470438412384,52.40718566914103],[4.844709703946136,52.407191679293724],[4.845143416779195,52.40755393552244],[4.845331536999719,52.40770927627235],[4.845360382544919,52.407725136636856],[4.845401966479444,52.407742457329476],[4.845424279686251,52.40774930012943],[4.845471919181583,52.40775935049921],[4.845521457467293,52.4077643494715],[4.845546597716964,52.40776474303714],[4.845578750067001,52.40776376657908],[4.845604835699216,52.40776136030039],[4.845630259075821,52.40775782752927],[4.845655350411544,52.40775260355222],[4.845678615154421,52.40774652637916],[4.845719947759472,52.407727904104135],[4.845706566856869,52.40771408281506],[4.846710373181434,52.4072643938011],[4.846851218601652,52.40719334163146],[4.847000980377211,52.407158748007426],[4.84765880442415,52.40697123408682],[4.84882517220141,52.40645219056196],[4.849430333097588,52.406188814186876],[4.84960988713307,52.406094063193564],[4.849599693729982,52.40606939969627],[4.849925969658185,52.40585686540676],[4.849932107413393,52.40584394200445],[4.850134882923477,52.405749978592866],[4.850402143460638,52.405968790508894],[4.850222773757417,52.40605942717977],[4.850451428681579,52.406244477031244],[4.850456467342856,52.40626162137817],[4.850452697710232,52.406284082469455],[4.850494214248562,52.406322791734006],[4.85074716722003,52.406529395662304],[4.851254972998046,52.406931915114946],[4.851412639340969,52.40705996562147],[4.851285935422282,52.407120391837786],[4.851155197355264,52.40718505083359],[4.849595228990886,52.407879990999156],[4.849529949000332,52.40792356356449],[4.848344156326169,52.40845429946497],[4.848196600633663,52.40850177517012],[4.848083428015674,52.408557001744796],[4.847952073936088,52.40860874811556],[4.847923701146359,52.408639653391674],[4.847849804800824,52.40867248149528],[4.847784849104493,52.408690385790294],[4.847663577483937,52.408734771908414],[4.847486162128369,52.40882887358956],[4.847268634762441,52.408926962479704],[4.84725858196725,52.40894267204952],[4.847203909817392,52.4089777354192],[4.847167610586315,52.40901019520238],[4.84711336016549,52.40908539938779],[4.846952435023993,52.4094829722154],[4.846901393315159,52.40953600936333],[4.846883107084161,52.40963873591606],[4.846823253138465,52.409773215047366],[4.846754756056791,52.40991139358818],[4.846673302219282,52.410083989669445],[4.846647714568829,52.410110521361105],[4.846572309832827,52.41029800158385],[4.846488410607765,52.41047576326631],[4.846441361764398,52.41055915181293],[4.846286138806831,52.41093294134587],[4.846151486494159,52.41122152265342],[4.84613015243556,52.4112546975657],[4.846087526042914,52.41131762326786],[4.846011716721089,52.41147168510924],[4.845997227819328,52.411515982044975],[4.845970162900782,52.41156107535655],[4.845921163450702,52.411689662734105],[4.845815624459801,52.41190950415333],[4.845792788744259,52.41190555308057],[4.845785977240909,52.411920522367474],[4.84578862987127,52.41192114565077],[4.845780814047324,52.41193651479274],[4.845787429840775,52.411937560632104],[4.845787614918604,52.4119669151939],[4.845780536085154,52.41200977198504],[4.845757809441276,52.412043794291186],[4.845716442290268,52.41211782537512],[4.845707673306475,52.41215104864657],[4.845644553930576,52.41229237878577],[4.845591729105426,52.41239109150428],[4.845505579607133,52.41259116751042],[4.845439973459437,52.412708587961994],[4.845381650509337,52.412801307630865],[4.845351848213808,52.41284297296265],[4.845281343005581,52.41301838628861],[4.845246992407711,52.413059374689375],[4.845197056706872,52.4131800842631],[4.845111655414915,52.413318741690944],[4.845096931128745,52.41338094984056],[4.844923648599044,52.4137478331669],[4.844831835261199,52.41395385951678],[4.844654031442706,52.414346309595274],[4.844665291006752,52.41438826163425],[4.844594440426731,52.41454224634473],[4.844569228310001,52.41454980634118],[4.844547812136796,52.41459065604123],[4.844423916555997,52.41490999534041],[4.84398481585455,52.415903519133344],[4.843920335498693,52.41604227156751],[4.843893646553124,52.41605750909789],[4.843885038510879,52.41607623585772],[4.843905319872028,52.4161292212315],[4.843937050088865,52.416158369898575],[4.843988209522674,52.41619613692371],[4.844043693985832,52.41622283298224],[4.844099433808738,52.416240695316375],[4.844135934391821,52.41624643496876],[4.844183752117255,52.41625585749137],[4.844321432050641,52.416255068353735],[4.847319129082755,52.41593821744955],[4.849456846492607,52.41572203412621],[4.85104934210946,52.41556754515832],[4.853666008633643,52.41529875344533],[4.854257968819871,52.41523008258293],[4.854561730757891,52.41519577653381],[4.855002022010025,52.415126420035214],[4.855154016199391,52.415098566862135],[4.855278890360819,52.41506345554643],[4.855322614949251,52.41502335119836],[4.855330681573752,52.41499788044841],[4.855328905162406,52.41498423820324],[4.855327128860036,52.41497058697074],[4.855312934562012,52.41494205935109],[4.855265793825839,52.4149092315225]]],[[[4.897673881558855,52.416253486320116],[4.897733790174315,52.416245869641116],[4.897815442077219,52.416235259983324],[4.897896647727262,52.41622379460212],[4.897977744980165,52.41621149286856],[4.89809664829817,52.41616452009563],[4.898115903845731,52.416157858859364],[4.898228864316886,52.41610860552949],[4.898285388641232,52.4160759800195],[4.898390717445716,52.41601097568785],[4.898424392845233,52.41598695586995],[4.898428426279584,52.415986415275476],[4.898431304808881,52.41598530369642],[4.898548601466769,52.415907990606634],[4.898587345236745,52.41588286819139],[4.898736912385523,52.41577423129588],[4.898868450461656,52.41567563098695],[4.899008922969858,52.41559453030093],[4.899164815060019,52.41545861451614],[4.899216908405168,52.415419786823946],[4.899250427276398,52.41538987923096],[4.89932312525991,52.415316587908336],[4.899387309288131,52.41525694065613],[4.899441702796217,52.41520273551797],[4.89947633584165,52.41516638831905],[4.899719689214486,52.41485339805658],[4.899737962112894,52.414830437946556],[4.899850517293471,52.414682605109995],[4.899971783383693,52.414525820357476],[4.900008213126046,52.414470354717636],[4.900008454415748,52.41446979847689],[4.900008810222598,52.41446952132343],[4.900138205073863,52.41430321597255],[4.900180965018061,52.41424814479265],[4.900217599076026,52.4142088127185],[4.900272889567555,52.41416238517829],[4.900414978020632,52.41404992263943],[4.9005619024369,52.413944058735815],[4.90071563429696,52.413840604322104],[4.900880340470523,52.41371746690923],[4.900926694636884,52.413682964916475],[4.900999683077045,52.413628233199724],[4.90106081653522,52.41358362679289],[4.901170258501852,52.41350451729623],[4.901259949231386,52.413443877158954],[4.901358468103609,52.413379678102466],[4.901445153246475,52.41332501126113],[4.901536750561379,52.41326736262348],[4.901607710727153,52.41321920116185],[4.901714093296463,52.41315085479047],[4.90179464677108,52.41310708253768],[4.901849798560244,52.413073038643994],[4.901905049293569,52.41304337210526],[4.902027135885813,52.41297029936786],[4.902068496021011,52.412944746131465],[4.90211477642246,52.41291682231573],[4.902158278520851,52.41288893204629],[4.902217596534847,52.41285153467599],[4.902269674788896,52.4128135593995],[4.902292378297895,52.4127965129105],[4.902341943323919,52.412758518328694],[4.902376556007315,52.41273169707936],[4.902422316759828,52.41269481035049],[4.902455803769853,52.41266742723914],[4.902499733456819,52.41262996676813],[4.902524887552516,52.41260788819942],[4.902565248159368,52.4125715365575],[4.902604688884363,52.41253462390637],[4.902643224425266,52.412497150307075],[4.90269801888487,52.41244726835314],[4.902738563462368,52.41240616294795],[4.902791972780541,52.412352554407754],[4.902846325928664,52.41230133142358],[4.90292546962473,52.412220901083295],[4.902974889109763,52.4121732529259],[4.902994672916042,52.41215299477265],[4.9030312438109,52.412119054143176],[4.903066777715703,52.412089890684264],[4.903110241447335,52.41205058561727],[4.903129985859491,52.41203392233242],[4.903168935177337,52.41200019809301],[4.903192664176799,52.41198204115403],[4.903261563309748,52.41192979888358],[4.903278693856771,52.41191695362788],[4.903348838969472,52.41186499501216],[4.903366319145912,52.41185242978813],[4.903437142436174,52.4118016063309],[4.9035087647592,52.41175162194289],[4.903576217314861,52.41170526946902],[4.903644116008625,52.4116597726025],[4.903680195505181,52.41163576109806],[4.903749586966413,52.411590827496106],[4.903786353955156,52.4115671063688],[4.903843785757106,52.41153391568558],[4.903899383431242,52.41150043887624],[4.903954990235612,52.41146611724075],[4.904009097898136,52.41143178946523],[4.904024487164915,52.41142089630366],[4.904052966731797,52.41139967580798],[4.904233417817511,52.411298734462534],[4.904265643076068,52.411281735395804],[4.90430155841504,52.411261938231874],[4.904332190902374,52.41124408781788],[4.90436721027324,52.411222884912064],[4.904408413142935,52.41120339686786],[4.904479593317623,52.41117222120262],[4.904601744785481,52.411111216462714],[4.904619051723475,52.4111037013968],[4.904733149228312,52.41104265472875],[4.904889845017591,52.41096212542057],[4.90504751419004,52.41086502667443],[4.905110269048156,52.410827363224065],[4.905173825942448,52.410790269224314],[4.905228486060156,52.41075903488487],[4.905311995328315,52.41071303434435],[4.905330358203098,52.410702997944995],[4.905414784042643,52.410657836909664],[4.905514920358735,52.410604605881225],[4.905597478204006,52.41056225024995],[4.905646882832873,52.41053716885728],[4.905777187492511,52.4104761870573],[4.905906674854053,52.4104146445609],[4.905977903910408,52.41038010682099],[4.906049456173616,52.41034557035092],[4.906189464458441,52.410278731618746],[4.906256059596147,52.4102472666437],[4.906335083254634,52.41021219410945],[4.906414809085551,52.4101774119762],[4.906474444403496,52.410152093138294],[4.906537521585472,52.41012650961753],[4.906670963541173,52.41007144443805],[4.906848821375952,52.40999717287357],[4.906905562982469,52.40997437659897],[4.906919598151691,52.409949996124084],[4.906925558575194,52.409919408411625],[4.907000086130058,52.40988684273295],[4.907065750902967,52.40988823231518],[4.907099714176844,52.40987882508315],[4.90711275472641,52.40987298203962],[4.907139291491968,52.40986128880703],[4.907164808571446,52.40984875558723],[4.907189626357559,52.40983565330793],[4.907223484782772,52.40981556830883],[4.907254933019021,52.409795473536484],[4.907318897161341,52.40975304138327],[4.907350128373624,52.409731265019374],[4.907383003566907,52.40970696079294],[4.907403384069776,52.4096910273694],[4.907422962211614,52.40967454244759],[4.907441514729926,52.409657765765154],[4.907456076526926,52.4096390046289],[4.907477749121512,52.40960960396375],[4.907498399096052,52.4095796329332],[4.907514717244736,52.40955610646812],[4.90754086090764,52.40951689142361],[4.907565761494695,52.409477105119905],[4.907588951597585,52.409444627819305],[4.907810399505571,52.409054840661405],[4.907815398079829,52.409049243616415],[4.907832499355018,52.409029369253794],[4.907848674777723,52.40900949114262],[4.907863592373207,52.40898905070696],[4.907890673849631,52.40894731385171],[4.90795652928192,52.40884534593218],[4.908012127485505,52.40875822000959],[4.9080487049838,52.408699948328234],[4.908108879634291,52.40860272977921],[4.908134720643476,52.40856014301236],[4.908160546907191,52.40851755617998],[4.90821123299922,52.40843884069929],[4.90822338861916,52.408397888256864],[4.908264289843235,52.40832024765938],[4.908305976971428,52.408255543429526],[4.908347422371271,52.40819279751179],[4.908361250994483,52.40816700496739],[4.908370264114371,52.40807548436245],[4.908370527356451,52.4080620039744],[4.908370152302933,52.40803279264586],[4.908369806000785,52.408022680157124],[4.908367943692709,52.40799374143399],[4.908367015593217,52.407983069360405],[4.908363563621408,52.40795300075764],[4.908358619193347,52.407920966818025],[4.908352431874369,52.40788835264578],[4.908344763693925,52.40785406078738],[4.908323750555272,52.407789938952455],[4.908318330877927,52.40778148664384],[4.908312932376865,52.407771075116024],[4.908299749618067,52.40774799550687],[4.908285652746883,52.40772519081768],[4.908270624057794,52.40770293959311],[4.90826338564227,52.407692799241595],[4.908246517040928,52.407670819192454],[4.908228719538904,52.407649122989675],[4.908209772803835,52.407627700754375],[4.908201834139766,52.40761980447663],[4.908189025138892,52.407604302942154],[4.908162381501358,52.407573017105],[4.908148643611789,52.4075577994144],[4.908120509680193,52.40752707376229],[4.908112342046373,52.407518610331365],[4.908106684207686,52.40751044465359],[4.907959166396322,52.4073595837242],[4.907953737606878,52.40735198518635],[4.907944101543673,52.40734070267302],[4.907935729181384,52.407329434258656],[4.907928391518769,52.40731761279602],[4.907922217896404,52.40730550843764],[4.907916955383401,52.407293407764826],[4.907913062448158,52.4072810430034],[4.90791108715749,52.407273449447096],[4.907910101537237,52.40726810680368],[4.907907984383137,52.407262759582444],[4.907904935304765,52.40725797481208],[4.907900501860494,52.40725346305766],[4.907862385621419,52.407210896188914],[4.907807099645454,52.40714298659735],[4.907756956679305,52.40707649986328],[4.907752839961668,52.40707395767735],[4.907748041237028,52.40707196996461],[4.907742663274341,52.407070546128644],[4.907737041145351,52.40706995715451],[4.907716287864003,52.407047125453786],[4.907691552818551,52.40704051829322],[4.907675952783864,52.407014076437164],[4.907657969783134,52.40699734955659],[4.907651376300883,52.40697788260873],[4.907644841608926,52.406943478445385],[4.907622758837681,52.4069158599227],[4.907599747188486,52.406888525239744],[4.907461569571742,52.40672366278134],[4.907405572838406,52.40665771840656],[4.90734853302216,52.40659176079141],[4.907290458593383,52.40652636517752],[4.907231352669503,52.40646124397161],[4.907207102344493,52.406462835397875],[4.907197812098448,52.40646307637411],[4.907137056456258,52.40640104018314],[4.907155061962708,52.406381735794746],[4.907142008920111,52.40636848006176],[4.907093277846297,52.40631969541238],[4.907043515216632,52.40627118517813],[4.907027021108629,52.40625679203052],[4.906905662756619,52.40615126155209],[4.906873009092537,52.406124166247444],[4.906828499933235,52.40608859245684],[4.906783076647098,52.40605330254655],[4.906777515557605,52.40604709649928],[4.906766842181715,52.40603666350463],[4.906718587028625,52.40599827033674],[4.906653684490931,52.405947451618836],[4.906587762118011,52.40589718596073],[4.906521028562361,52.40584720457816],[4.90647773184543,52.4058164169959],[4.906458031512518,52.40580229836096],[4.906424087747395,52.405776321148885],[4.906380935706716,52.40574440167491],[4.906380586055909,52.405744121638975],[4.906379681125442,52.40574355174487],[4.906281006265797,52.405674063229704],[4.9061548658984,52.40558564299004],[4.906154295829947,52.405585362058396],[4.906153508463139,52.40558479263994],[4.906093325906163,52.40554466110204],[4.906034955797007,52.40550679279211],[4.90601157655728,52.40549181430085],[4.905961059949766,52.405460152361655],[4.905909626295197,52.405429043908654],[4.905825397364983,52.4053826400292],[4.90574527587359,52.40533962314706],[4.905703273011094,52.40531698333677],[4.905604980935292,52.40526519246834],[4.905479512481291,52.40520035779791],[4.905385096157645,52.405151665265166],[4.905384408543319,52.4051513838517],[4.905383621096403,52.40515082341534],[4.905317189870217,52.40511515988277],[4.905242639849511,52.40507610190521],[4.90524116489124,52.40507525106636],[4.905184297141068,52.40504664571302],[4.90511795308793,52.40501380454138],[4.904991234558734,52.40494784080394],[4.904859021149663,52.404880461472004],[4.904727507978868,52.40481224000374],[4.904617012729328,52.40475448473475],[4.904444322170738,52.40466222402154],[4.904267854114796,52.40456741313823],[4.904241550611698,52.40454848578276],[4.904212373114496,52.40452898947016],[4.904182266863605,52.40450976798039],[4.904151481565183,52.404490831318654],[4.904087329349027,52.40445657845082],[4.904037459973629,52.40442913352147],[4.903950650593675,52.40437850255858],[4.903867481259584,52.40433097813177],[4.903756331932149,52.4042687345442],[4.903681703327998,52.404227706954316],[4.903779335437649,52.40416041944834],[4.903703416551156,52.40410028786046],[4.90360096996601,52.4040189539318],[4.903538076132043,52.40396779114883],[4.903508823993193,52.40394173337289],[4.903447548090617,52.40388506771985],[4.90340532972901,52.40384471155139],[4.903376492371619,52.403815671537245],[4.903343193203175,52.40377806604122],[4.903307049562875,52.40372777633624],[4.903283068423091,52.403684654518116],[4.903279210810998,52.40365170802592],[4.903289186566747,52.40356845127364],[4.903316914330625,52.40352413860009],[4.90336757159082,52.40345909519462],[4.903436224262487,52.403408002180626],[4.90351423032455,52.403331961660115],[4.903587121639358,52.40325733823112],[4.903612590658874,52.40321259384648],[4.903663578734532,52.403119851736164],[4.903666740328929,52.40311425634936],[4.903669902020581,52.40310865197529],[4.903673063711432,52.40310304760107],[4.903676225401482,52.403097443226805],[4.90367938709073,52.403091838852426],[4.903682548779175,52.40308623447791],[4.903712712765572,52.40303271032735],[4.903759260603851,52.40295497739702],[4.903790218108487,52.40292029457198],[4.903828550062111,52.40288849990097],[4.903873588865238,52.4028601748502],[4.903997750476628,52.402820326825605],[4.904128803243405,52.40276837344882],[4.904365111666367,52.40268539221334],[4.904493456087521,52.40263917948926],[4.904620523804785,52.402588737231405],[4.904700080353706,52.4025494707072],[4.905151890024429,52.4023722132284],[4.905174202965911,52.40236346017744],[4.905196501204967,52.40235470706248],[4.905218784741609,52.40234595388347],[4.905241068367191,52.402337191713],[4.9052633520817,52.402328420551086],[4.905285635689665,52.40231965837217],[4.90616515433305,52.401973631564566],[4.906168635165753,52.40197243236668],[4.906172318878256,52.40197149463425],[4.906178118160439,52.40197059245508],[4.906182088231395,52.401970347933954],[4.906460826044147,52.40187102449632],[4.906463292552071,52.40186850897694],[4.906466577603777,52.401866392235725],[4.906469471364121,52.40186512773306],[4.907142846179429,52.401619323041],[4.907166376049424,52.40161074531232],[4.907189891314288,52.40160215853216],[4.907213421263414,52.40159357180682],[4.907236936510063,52.40158498501727],[4.907260437054248,52.40157639816347],[4.907283966976048,52.401567811424044],[4.907852489079239,52.401360278684606],[4.908188455703871,52.4012415806912],[4.908369779832586,52.40117752181043],[4.908436477694473,52.401151457584454],[4.908449935288615,52.40114620027348],[4.908463392976648,52.401140933973736],[4.908476850564407,52.40113567665969],[4.908490322550965,52.401130446365244],[4.908503824017843,52.40112520720079],[4.908517296095109,52.40111996791601],[4.908732242402828,52.40103651418137],[4.908738270931828,52.401034776951875],[4.908746351126933,52.40103218519444],[4.908754198946766,52.40102934084384],[4.908761784907853,52.401026252768595],[4.908769109010127,52.401022920968835],[4.908776141576118,52.401019372287614],[4.908782867912617,52.4010156066657],[4.908789273326422,52.40101162404383],[4.908795328140148,52.401007451265116],[4.908801032256796,52.40100309731677],[4.908808864658551,52.40099623542182],[4.908813603388624,52.40099147313015],[4.908817932358113,52.400986556393526],[4.90882183658292,52.400981512114434],[4.908825315869145,52.40097635826742],[4.908877271268688,52.4008322174563],[4.908892961591478,52.4008161210195],[4.908908189684963,52.40078294618333],[4.908864091496896,52.40063748279373],[4.90890788234535,52.40058812868224],[4.908946143101644,52.400571934625525],[4.908984961596556,52.40056668976366],[4.909019606196011,52.40056152690468],[4.909050598190785,52.400557158180604],[4.909150611721682,52.40054683956844],[4.909193435161746,52.40054218600993],[4.909209669575794,52.40053965408745],[4.90923177929648,52.40053595949946],[4.909264685065882,52.40052989078812],[4.909300647398132,52.400522432325616],[4.909329918547447,52.400516852241324],[4.90935690045127,52.4005123594085],[4.909371927789688,52.40051002931062],[4.909386983252971,52.40050781616373],[4.909405274664719,52.40050529251153],[4.909423997757604,52.400503615436484],[4.909443782814594,52.40050156516025],[4.909463482714857,52.40049923592022],[4.909483097554901,52.400496618729115],[4.909511808780298,52.40049118014428],[4.90954213177345,52.40048616148338],[4.909558109876791,52.40048423065215],[4.90958210903019,52.40048109186378],[4.90961791501539,52.40047586161147],[4.909641810657735,52.40047141918476],[4.909648067964604,52.40047025804081],[4.909652248329294,52.40046957385676],[4.909662713933459,52.40046786345513],[4.909673179536817,52.40046615305257],[4.909679891647186,52.40046505665391],[4.909683731554397,52.40046460477516],[4.909694383226874,52.40046335349083],[4.909705020302583,52.4004620931591],[4.90972029167412,52.40046029427198],[4.909756393012237,52.4004562874885],[4.909814205207799,52.400450139253124],[4.909841071490673,52.40044682322613],[4.90986232098223,52.40044386204124],[4.909887288396774,52.40043949578503],[4.909902485048543,52.40043644729032],[4.909917537768637,52.40043311959664],[4.909934945815929,52.400429387958766],[4.909947011694079,52.40042643469641],[4.909964755852763,52.400421509051114],[4.909976329229715,52.4004178977033],[4.909982753561581,52.400408046158994],[4.909987394605725,52.400400056861166],[4.909996257478909,52.4003820723306],[4.910005581454428,52.400362202250705],[4.91001506917286,52.40034213510139],[4.910024387921117,52.400321384209306],[4.910024811202122,52.40031345880874],[4.91002570456042,52.40030554428933],[4.910027053109291,52.40029765856643],[4.910029605249909,52.400287162286126],[4.91003533696542,52.400276130566894],[4.910039564856728,52.40026693525771],[4.910045063250082,52.40025300857542],[4.910045838133055,52.40025063895755],[4.910048146830726,52.400243646879],[4.910049172254099,52.40023301862148],[4.910051591624458,52.40021711124148],[4.910055068108498,52.400201280020646],[4.910059115180815,52.40018704191162],[4.910062086228241,52.40017857852627],[4.91006385928574,52.40017357056012],[4.910069110963266,52.40016072140057],[4.910076389122018,52.400145256009594],[4.910084480196084,52.400132076755014],[4.910092738027207,52.40011705570359],[4.910093457313759,52.400115755391575],[4.910095133307257,52.40011157389763],[4.910097217230653,52.400106351479415],[4.910097352659161,52.40010605543248],[4.910099821305677,52.40010058290952],[4.910101431851107,52.400097021299665],[4.910102392704957,52.40009511978806],[4.910105125338222,52.40008969326645],[4.910106086385242,52.400087773780335],[4.910108004609293,52.40008429429837],[4.910109847917549,52.40008094932935],[4.910113590402425,52.40007452924578],[4.910116632538776,52.4000703802165],[4.910120099509999,52.40006634973758],[4.910126053552417,52.400060594658704],[4.910130515476835,52.40005695465539],[4.910137887952427,52.40005183442377],[4.910146004925307,52.40004716657234],[4.91019558119648,52.40001163132381],[4.91038928803198,52.400007288217346],[4.910467314382758,52.40001648205439],[4.910825159222763,52.40005888734946],[4.911375349670472,52.40011981493433],[4.911400930149183,52.400128114417775],[4.911444382252062,52.40018802983228],[4.911469219017486,52.40026562107587],[4.911500969823249,52.40037532597835],[4.911525920321463,52.40044233920259],[4.911527259151541,52.400443548923384],[4.911527555100182,52.4004460936159],[4.911592061009252,52.40057198194921],[4.911642802982147,52.40067972285612],[4.911657731594516,52.40069343502111],[4.911679448068805,52.40069762056397],[4.911696741857065,52.4006990561055],[4.911711077093891,52.400699598979784],[4.911728192638694,52.40070121355418],[4.911744886038411,52.40070245793827],[4.911769554503095,52.40070403990758],[4.911790379359727,52.40070504921239],[4.911811251284946,52.40070578008537],[4.911832126295523,52.40070622336238],[4.911946891668603,52.4007110069064],[4.911954235221986,52.40071131498503],[4.911961564082389,52.400711623004284],[4.911968892942895,52.40071193102304],[4.911976221803505,52.40071223904135],[4.911983550760583,52.40071253807194],[4.911990879621396,52.40071284608935],[4.912449192248666,52.400731958005515],[4.913073057337304,52.400748522282825],[4.913572245171015,52.40079821662165],[4.91368179503742,52.400818094849434],[4.913828862910859,52.40084165504901],[4.913955713281605,52.40086512531142],[4.914659739273662,52.400994320025816],[4.914922431317271,52.4010332864837],[4.915114876869513,52.401049781942326],[4.915116022939078,52.40104978650958],[4.915116375575868,52.4010497879149],[4.915130366229131,52.401050967124334],[4.915305994948816,52.40106262281639],[4.915465545489662,52.401063536901795],[4.915536661606286,52.40105820280124],[4.9155929728882,52.40105225248522],[4.916208719404687,52.40095667401722],[4.916430031826477,52.4009143051918],[4.916527645433263,52.40088913221585],[4.916538016228987,52.40088664789321],[4.916692368036326,52.40084709527698],[4.916902440877045,52.40079344637387],[4.917061737880269,52.40075306807145],[4.917083837118486,52.400747538498294],[4.91772816378918,52.400595677089235],[4.917817942482519,52.40057483100812],[4.918108730928227,52.400509501262704],[4.918240833857986,52.40047827994862],[4.918283535881697,52.40046833789084],[4.918355924444586,52.40045093673226],[4.918398162229082,52.4004404265743],[4.91846986906519,52.40042217780986],[4.91858484780796,52.40039426770738],[4.918667148579503,52.40037323861177],[4.918847944415697,52.400329581563454],[4.918960063535923,52.40030109356986],[4.918989526544991,52.400293912059354],[4.919177245472607,52.400247181135676],[4.919238240306758,52.40023169372903],[4.919306484595411,52.4002156776914],[4.919416058118456,52.400188868889295],[4.919457366808539,52.4001786333024],[4.919689223481376,52.400116635069466],[4.919718345469843,52.400108328576785],[4.919746915089159,52.400099453675686],[4.919775023434142,52.40008973210918],[4.919785276411178,52.40008584496554],[4.919812479656327,52.40007556258492],[4.919839001231786,52.400064432670284],[4.919850415120421,52.400059139041204],[4.919864838198849,52.40005273382729],[4.920021352228371,52.399983130733105],[4.920151696980922,52.399923265727175],[4.920167609819249,52.39991630911624],[4.920187340107685,52.39990683303768],[4.920196117932148,52.399902095204475],[4.920270011073328,52.39986166348047],[4.920349540490672,52.399818998024834],[4.920372285803333,52.39980645103618],[4.92039424365568,52.39979333471849],[4.920415164175521,52.399779657075314],[4.920435279513469,52.3997656976388],[4.920454725028139,52.39975116035049],[4.920473012640159,52.399736348867606],[4.920490512697921,52.39972097704513],[4.920506752288802,52.39970530366198],[4.920309035562453,52.39956747197401],[4.92020210424686,52.39949710862388],[4.920077381210888,52.399415449450146],[4.919975118706554,52.39935943959417],[4.919798157407878,52.39928936586052],[4.920000328177601,52.39909080845191],[4.919983211326649,52.39903916983538],[4.919953289949583,52.39886413426852],[4.919928900849965,52.39871208394444],[4.919936071911456,52.39857959838432],[4.919948160260141,52.398528407498674],[4.920031276357692,52.39831671675174],[4.920148458830359,52.39815993097992],[4.92021287763721,52.39807714808914],[4.920320921305997,52.39796626197655],[4.920552855956194,52.39774631346187],[4.920870764143513,52.39745427152931],[4.921220840700814,52.39712348371034],[4.921299642472015,52.397046050524395],[4.92140043390832,52.396936905459704],[4.921479494898732,52.39683473916459],[4.921502957790261,52.39680126254482],[4.921532621472939,52.396727168151735],[4.921553561218754,52.396658342168905],[4.921568615645998,52.3966000984722],[4.921563565636294,52.39653117031917],[4.921563973958801,52.39649230034372],[4.921550033160179,52.39644453910227],[4.921533309449027,52.396386170480184],[4.921493731862795,52.39630473957417],[4.921442814893333,52.39620206220234],[4.921359456481694,52.39602681677071],[4.921328361828873,52.39596308888212],[4.921185560131748,52.39580881137761],[4.920978695616916,52.39543165745048],[4.920964700007777,52.39538919862537],[4.920948627931643,52.39526898844139],[4.920738159040643,52.3948229205099],[4.920517590916849,52.3943750417939],[4.920224833758054,52.39378906134207],[4.920094591185692,52.39354118955963],[4.919849987008647,52.393047269757744],[4.919666128193532,52.3926808094626],[4.919601077073099,52.39254980922554],[4.919293754444356,52.391977897280725],[4.919120943352105,52.391660956739734],[4.919074165576375,52.39157772589826],[4.918926336463458,52.3913562877817],[4.918701490980858,52.391042664002256],[4.918641747423378,52.390957620107045],[4.91849609196038,52.39080332784011],[4.918363176387882,52.39067381986029],[4.917788748611071,52.390102625650904],[4.917691742264419,52.389990928945174],[4.917657557474155,52.38994661906503],[4.917617861742947,52.389877553276236],[4.917600823457687,52.389850990091794],[4.917588047924434,52.389829728552485],[4.917568059775075,52.38980844740047],[4.91722161910845,52.389526145797674],[4.916737287129811,52.38917615764374],[4.916502203063503,52.38901444326426],[4.915830079266621,52.38853825500579],[4.915477529683352,52.38828949279194],[4.91512210919716,52.38803894749083],[4.914894249269435,52.38787725864246],[4.914673523824099,52.38772442370121],[4.914395477100009,52.38753072626884],[4.914326703307385,52.38748098356522],[4.914148280669981,52.38742372961745],[4.913973435123668,52.387301122368584],[4.913761363083784,52.38715009083887],[4.913705348881352,52.387121600686875],[4.913645035221221,52.38709132274579],[4.913449471337973,52.38701632943284],[4.913317303694974,52.38695396549723],[4.913080139635338,52.38671978623932],[4.912962431054592,52.38665570921103],[4.912731842163996,52.38661591396917],[4.912682904696201,52.38660158928527],[4.912128243298493,52.38635376853023],[4.911904073175073,52.38625392380842],[4.910968643709576,52.38583496245463],[4.910356680735479,52.38554803117898],[4.909988853633879,52.38538223692708],[4.909699975767266,52.385259154729624],[4.909688606531419,52.38524144810573],[4.909732549187344,52.38518331323101],[4.90962027930332,52.38515106214816],[4.909360877585129,52.385107611947504],[4.909164777333396,52.38508384806299],[4.908879131103434,52.38506326336905],[4.908671334065693,52.38505358903974],[4.90844335004214,52.38504030058345],[4.908356811991835,52.38503287741717],[4.908206714997643,52.38502697669877],[4.908024920260448,52.385015635825575],[4.907921031506058,52.385009912709535],[4.907851791459289,52.38500432974891],[4.907763875764058,52.38498984524562],[4.907683186649862,52.38497538094943],[4.907576614703431,52.384950215306894],[4.907429927867497,52.38489661183019],[4.907202782105404,52.38480735153205],[4.906944073669792,52.3847002930283],[4.906745810478672,52.384609378393144],[4.906656686395014,52.384573677238095],[4.906573392103557,52.384532705931804],[4.906507414856928,52.38449179586814],[4.906481681267971,52.384468727893896],[4.906461700866285,52.384447444853144],[4.906467683881422,52.38442802878908],[4.906482808071231,52.38442440523251],[4.906542229656943,52.3843830783997],[4.906735645436953,52.384251573589154],[4.9067779598346,52.38422197805617],[4.906805696949273,52.38420382760743],[4.906875710629746,52.3841704077924],[4.906932641950005,52.384148735706745],[4.907029886449051,52.38409098872664],[4.907220551342417,52.3839854014268],[4.907322324126891,52.38394754431972],[4.907370265076949,52.38390286308412],[4.905711082973079,52.38315836616991],[4.904302972115531,52.38253761458878],[4.903966482569322,52.382384799533355],[4.903615275358947,52.382236300414284],[4.903651510996075,52.382195770113526],[4.903636367885943,52.38217693300578],[4.903303049664129,52.38203006984886],[4.903114666823986,52.38218888528692],[4.902949636478002,52.38231806465382],[4.902859243126167,52.38240061537635],[4.902898000497388,52.38241705956838],[4.90290659394114,52.382439815579644],[4.903067224173935,52.38286573365451],[4.903069407404691,52.38287697718518],[4.903068776419474,52.382882304302505],[4.903063839420516,52.38289324010677],[4.903057667614204,52.38290023425703],[4.90305355582904,52.38289881536859],[4.903021152878027,52.38292452248686],[4.902611412084471,52.383069175054956],[4.902596976732184,52.383076980209495],[4.90258765878206,52.38309095387943],[4.902598354910904,52.383108119187206],[4.902986552080472,52.38328466131716],[4.90294613269926,52.383320806287905],[4.903224894281368,52.38344606574368],[4.903269104106659,52.3834125156332],[4.905077906176331,52.38423332330639],[4.905086247625141,52.38423616142059],[4.905136734980364,52.3842560769244],[4.905149247789139,52.38424946798591],[4.905188836452264,52.38426803589102],[4.905288537322143,52.38430616293352],[4.905306952881269,52.38432811388322],[4.90534166504556,52.38435209944025],[4.90573303941567,52.38452752192454],[4.905859894564287,52.3845864574983],[4.906004250019863,52.3846502454877],[4.906143776513372,52.38471103876224],[4.906440472792494,52.384875855269506],[4.906668693392353,52.38504609138777],[4.906774442589743,52.38514038773037],[4.906911912478569,52.38529907451713],[4.907050552032987,52.38549904628019],[4.907327954247766,52.385909676130005],[4.907379913260153,52.385996114416535],[4.907415973261034,52.38606816191461],[4.907443398742396,52.38614269995995],[4.90746170492273,52.386211583760605],[4.907475046485515,52.38627230461353],[4.907480752632205,52.386317832328004],[4.907480034068188,52.38643719473392],[4.907471963714753,52.386504282002456],[4.907454775303536,52.386585946294225],[4.907397347601347,52.386729237833755],[4.907316728452957,52.386883103744225],[4.906803019155515,52.38791489121885],[4.906324527568278,52.38889242592254],[4.906293393749267,52.3888970539878],[4.906259545340238,52.38897181979669],[4.906271077749501,52.38898257094251],[4.906213017305723,52.38916458716197],[4.906156233933561,52.389437357044216],[4.906137897461113,52.38961366559851],[4.906133332920458,52.389739195821754],[4.906132988093385,52.38985491067038],[4.906147431100638,52.390004946575594],[4.906174783321442,52.39017020608932],[4.906200159682733,52.39026440105617],[4.906221028792313,52.39032992502371],[4.906213291741418,52.39033355158483],[4.906308452443684,52.39054373714354],[4.906414151526904,52.39075622129767],[4.906482324475436,52.39086238172646],[4.906607061466793,52.3910330963789],[4.906795806156397,52.39125939860358],[4.906963310232483,52.39142466003795],[4.907196971957994,52.391658729297205],[4.907308160312748,52.3917664656147],[4.907365099716807,52.39182229399985],[4.907324240736939,52.391840301524404],[4.907428853902257,52.39194345433641],[4.907471972306819,52.3919270826947],[4.907546399751485,52.3920000493957],[4.907513589137831,52.3920141799438],[4.90756434626796,52.392065750000604],[4.907602463187033,52.39205271045694],[4.907707221316001,52.39215886548216],[4.907648592365265,52.39218309254387],[4.907771653600603,52.39230439392478],[4.907829054912396,52.392282300897996],[4.907898385775061,52.39235255044261],[4.907834627809631,52.39237693659371],[4.90789151304271,52.392435191164644],[4.907955728209704,52.39241064505501],[4.908033589547074,52.392489548202455],[4.908001170604648,52.39250412086487],[4.90805191417177,52.39255569064938],[4.908086659990877,52.3925433113878],[4.908133932132248,52.39259121810281],[4.908349226253346,52.39281181009983],[4.908372568576005,52.39283918202348],[4.908398849467371,52.392848842149945],[4.9084292226842,52.39284278141469],[4.908459579480209,52.39281511426363],[4.909423368841177,52.392451671108006],[4.909480638899889,52.392436245599576],[4.90953291800279,52.39242862819028],[4.909588031354922,52.39243065696161],[4.909619494992423,52.39243379469798],[4.909641888618249,52.392441551466085],[4.909669447099517,52.39245808303683],[4.909694734455212,52.392487700469836],[4.909912540427984,52.39256026394687],[4.909941888178356,52.39253206207911],[4.910297624158067,52.39264193108876],[4.910548812602975,52.39272244705953],[4.91075873882899,52.39279437508561],[4.910825438999082,52.392818739287144],[4.910864531223798,52.39284478995887],[4.910907087586697,52.39288479441037],[4.911236769309752,52.39320650282087],[4.911467748905095,52.39342788908507],[4.911635065440395,52.393595210172876],[4.911394060599111,52.393689017160284],[4.91103935279615,52.393344254144345],[4.910746041308875,52.39305996333046],[4.910666389918461,52.39305000812815],[4.91063183702994,52.39305950388153],[4.910623682699834,52.3930841691651],[4.910574266914585,52.3931014333515],[4.910572991213298,52.3931285350041],[4.91057683755054,52.393136989895595],[4.91056011803881,52.39313570928108],[4.910545425238323,52.39312902624819],[4.910524773296376,52.39312593227127],[4.910486289721666,52.39313480999014],[4.910485046342403,52.39315890090544],[4.910447545164384,52.393166587206764],[4.910423092234401,52.3931508232859],[4.910404339324015,52.393155565185],[4.910217235535149,52.3932207812952],[4.91001560457739,52.39329663390218],[4.909896603243554,52.39333776729106],[4.909719722835425,52.393413916858975],[4.909616414352952,52.39345339658375],[4.909621144237753,52.39346982712402],[4.909663381860097,52.39351755113447],[4.909742154944779,52.39360228979403],[4.909805744015204,52.39365367690642],[4.909900111731119,52.39373371484953],[4.910075869081038,52.39389985882263],[4.91013830913671,52.393961163499014],[4.910123022664923,52.39397003566355],[4.910182668465757,52.39402616115623],[4.910200734770818,52.39402245909549],[4.910583113811462,52.39439790295453],[4.910875480682998,52.39468332271807],[4.910463585431827,52.394833431216895],[4.909350195833897,52.393724361393744],[4.909305953230037,52.39368138365636],[4.909253721487096,52.39365857792671],[4.909207219392822,52.39364531322896],[4.909154769773783,52.39364271982564],[4.909089451243328,52.39365640503428],[4.907142687881922,52.394407431047085],[4.906268334052112,52.39474155955203],[4.905651669043803,52.39497090880408],[4.90540188262209,52.39506382308398],[4.905353038538266,52.39508621937586],[4.905327525845628,52.39510989693776],[4.905265013016085,52.39513817842911],[4.903908489770395,52.39566174594896],[4.903262457126078,52.39590880346434],[4.90300439587967,52.395997023282455],[4.902222174284688,52.39629345379004],[4.902184026552925,52.396291374234806],[4.902165696162272,52.39628415398678],[4.902149562451229,52.39628161631448],[4.902133377955988,52.39628237690333],[4.902098661389934,52.39629568925798],[4.90113825414265,52.396656435433975],[4.901180160807085,52.396697609094275],[4.901159740198829,52.39676577759381],[4.900654164106304,52.396963452734944],[4.900561836942215,52.39687509325851],[4.900345173917463,52.39695742866998],[4.900161697287015,52.39702801845644],[4.900144395335637,52.397010106809766],[4.899129117724754,52.397414093396115],[4.899027752366607,52.39745019254988],[4.898293618228098,52.39773271167388],[4.897579251779867,52.39801252179273],[4.897575222442106,52.39802613941729],[4.897705237344562,52.39815005035976],[4.897736908983827,52.39815194281559],[4.898101959060626,52.39849896324088],[4.898124505552104,52.39854489339074],[4.897592097685683,52.39873836430056],[4.897578510152758,52.39878193423177],[4.897701149184747,52.398908699703604],[4.897886206250746,52.39908730306109],[4.897931929752255,52.39907148490789],[4.897999051962374,52.39913637439863],[4.898109345468493,52.399246317478756],[4.898084747704834,52.399273062046504],[4.898167279511884,52.399346319659],[4.898197456677584,52.39933458951884],[4.898332705295075,52.39946140636578],[4.898397363748083,52.39949000228544],[4.898505881864956,52.39946396340509],[4.898622871433381,52.39940652054458],[4.898735790846476,52.39934906078506],[4.899325481722002,52.39911895332428],[4.89937104132588,52.39915803054782],[4.899291006996389,52.39919010142239],[4.899095247360475,52.39926364982719],[4.898487765483259,52.39951189173689],[4.898465388706945,52.39956108772266],[4.898512043576552,52.399608744016845],[4.898514109571055,52.39960793466331],[4.898530053974405,52.39962506799883],[4.8985517231507,52.39964537961485],[4.898575011517568,52.39966542827615],[4.898605404920253,52.39968074278123],[4.898615442532109,52.39967655998431],[4.898707132649939,52.39974290752564],[4.898726084631967,52.39975646716192],[4.898742263822861,52.39976830770693],[4.898843880044509,52.3998406279225],[4.898875484116182,52.39986610339881],[4.898908126620742,52.399890684381475],[4.898925037578462,52.39990279754698],[4.898943126939251,52.39991464593749],[4.898959082683027,52.39992010429592],[4.898976683348824,52.399922963011704],[4.89898594278133,52.39992273154457],[4.898994918257506,52.39992160014087],[4.899003461858904,52.39991965806764],[4.899011423687342,52.399917174336885],[4.899024427591021,52.399910487186645],[4.899034654708764,52.39990244044357],[4.899041950194254,52.39989375248256],[4.899044350533863,52.399889268546644],[4.899045872275478,52.39988451136031],[4.899043311713302,52.399876861301415],[4.899039718697893,52.39986956649385],[4.899035094219565,52.39986253706521],[4.899029438278724,52.39985577301534],[4.899011574051402,52.399836825317905],[4.898980037242075,52.399805238549426],[4.898972039386043,52.39979765595541],[4.898964185490191,52.39979034358387],[4.898949791143121,52.3997765331419],[4.898904558103811,52.39973446421889],[4.898881960619286,52.39971837303973],[4.898865039224493,52.39972055019697],[4.898848894677277,52.39970556413194],[4.899190117404165,52.399568290840044],[4.899277481955612,52.39953377862199],[4.900302695756102,52.39912708142339],[4.900943605685719,52.39887329624268],[4.900975182607036,52.39886111277199],[4.901006114726751,52.39889431430932],[4.901167528583978,52.399047497231145],[4.90123222047372,52.39911067623732],[4.901264346099564,52.39914226482283],[4.901271725872228,52.399139239293355],[4.901282485042706,52.399149619232674],[4.901291645773088,52.399158374836134],[4.901464658066121,52.39932598516309],[4.901498178227296,52.399364427994165],[4.901601653385854,52.3993264120239],[4.901620901723656,52.399341149793614],[4.9017555757653,52.39929057999523],[4.901738233208112,52.39927623652679],[4.901837832770452,52.399233845454845],[4.90225357033384,52.39907741038021],[4.902823585315203,52.39885621062692],[4.903184852444767,52.398711539074625],[4.903217769624786,52.39871514280628],[4.90327630272296,52.3986939823383],[4.903282330380886,52.39867616646754],[4.904016334857798,52.3983878638883],[4.904115904387301,52.398347843522885],[4.904278535644262,52.398510113680054],[4.902534317931998,52.399161605327656],[4.902526121782667,52.399332004684034],[4.902521060596487,52.399333961259664],[4.902358500147453,52.39939789927206],[4.902205883400487,52.39945541565095],[4.899651418761876,52.400437499060416],[4.899625776314084,52.40044970660486],[4.899614057138453,52.40045981441714],[4.899601466266226,52.400469019874755],[4.899592382917926,52.40047994742327],[4.899585311098971,52.40049501757198],[4.899581021055948,52.40051099793647],[4.899574685855701,52.400525891363586],[4.899567906894591,52.40054105259324],[4.899572122964889,52.40055850599683],[4.899580196796978,52.40057255997178],[4.899582828284426,52.40058713080294],[4.899591647062169,52.40058689747416],[4.899760626214847,52.4006802556257],[4.899795777534296,52.40066386298036],[4.899864525529727,52.400692277182166],[4.899859337501648,52.400696390159204],[4.899868847470803,52.400700114220754],[4.89998368804723,52.400746064135916],[4.90001922821899,52.40076112980983],[4.900047652305636,52.40074183337411],[4.900055537171855,52.400746359626254],[4.900060278468471,52.40074278406276],[4.900141205978688,52.40078607781536],[4.900166917667163,52.40079966500869],[4.900356760115979,52.400893377704676],[4.900421242782844,52.40084196369477],[4.900427530218136,52.40084477570357],[4.900414727324073,52.40085991222629],[4.900480327397699,52.40089405624161],[4.900474363648199,52.400905922402266],[4.900594276230597,52.40096110490344],[4.900654832952013,52.4009340132033],[4.900739460406916,52.40098033260275],[4.900740890574907,52.40097988909321],[4.900741792277576,52.40098073763541],[4.900759187457537,52.40099031800414],[4.900952288985331,52.40093047110739],[4.90100871702163,52.400924761879466],[4.901080796450763,52.40091078530043],[4.901139256892165,52.400897948154906],[4.901172236484404,52.400904033297444],[4.901326521670357,52.401015241296754],[4.901347743868008,52.40102959174318],[4.901376590682523,52.401046759627924],[4.901534297649449,52.40110996036149],[4.901550683121651,52.40111649864721],[4.901676934065457,52.401167347018436],[4.901700929532899,52.401176702645394],[4.901750093002919,52.4011956883191],[4.901823845669058,52.401223492747825],[4.901890297076488,52.401247132898995],[4.901908005044025,52.40125367655275],[4.901918104019285,52.40125731298496],[4.901985569296414,52.40128230538319],[4.902021560233041,52.40129656340906],[4.902128513505835,52.40133852435705],[4.902145486881414,52.401345064967],[4.902152947008981,52.40134815131468],[4.902256256710425,52.40138740093195],[4.902279814570897,52.401396485019475],[4.902368799779453,52.401428845284705],[4.902386370788745,52.40143448954074],[4.902406576766809,52.4014410433427],[4.902426632868599,52.401447866157376],[4.902453986482501,52.40145921265581],[4.90248000788242,52.40147145246167],[4.902634818290447,52.40162514549905],[4.902637848870513,52.40163019097959],[4.902637499975712,52.401635222636436],[4.902633771604894,52.401640240469504],[4.902627563047175,52.40164363038011],[4.902520003105975,52.401683904404365],[4.902476920497814,52.40169999577153],[4.902397837515119,52.40172951114833],[4.902319196212819,52.40175893840374],[4.90229395051102,52.40176979999917],[4.902109557200411,52.40184876551915],[4.901951069672037,52.40191022107868],[4.901895745553272,52.401933101691384],[4.90174350021449,52.401990735832044],[4.901677161476962,52.402013049920605],[4.901585419463229,52.402047159486415],[4.901493216803519,52.402083064622566],[4.901378499241615,52.40212596860941],[4.901319972019418,52.40214475542447],[4.90123019680784,52.4021776774253],[4.901318590301337,52.40227078356832],[4.901324205514667,52.40225987761761],[4.901339436713672,52.40227791538694],[4.901466723081179,52.402412883617394],[4.901605196757548,52.4025488143041],[4.901687672733526,52.40263361827881],[4.901714834490407,52.40265045561062],[4.901681849365381,52.40266621058882],[4.901790121045583,52.40276784622308],[4.901840576728212,52.402754877065405],[4.901854826004711,52.402768686547724],[4.901965338626733,52.40288849523558],[4.901995412669047,52.402933287027736],[4.902001485669632,52.402942299549395],[4.902030426465784,52.40304900259564],[4.902040952274422,52.40308751283566],[4.902050270727091,52.40311013695669],[4.902060285403657,52.40312822516607],[4.90209766792057,52.403163160446994],[4.902157092688999,52.40321148768637],[4.90219183635089,52.40324587287307],[4.902204321950652,52.40327719201474],[4.902294419593908,52.40341638403842],[4.902263807357141,52.403423403909706],[4.902367620285227,52.40359171806373],[4.90237981578066,52.40360524944448],[4.902390844609891,52.403617967161246],[4.902401282734601,52.40363095208895],[4.902411280044291,52.40364393521177],[4.902420687631886,52.40365709567336],[4.902429356590278,52.403670612617454],[4.902437584732414,52.40368412775701],[4.90244349525555,52.40369457761261],[4.902486497649272,52.40375317327007],[4.902499797789186,52.40376513631947],[4.902491488693627,52.40377514152307],[4.902621845637873,52.40385846901089],[4.902663927333523,52.403887069060985],[4.902722416770088,52.40391490933488],[4.902782245425897,52.40394526260889],[4.902836653617205,52.40397141443482],[4.90287848866305,52.403987646398704],[4.902884335875918,52.40399045647377],[4.902926608503489,52.40400833494853],[4.902954836635898,52.40402049378338],[4.902996659657778,52.40403917928313],[4.903037893966025,52.4040579522383],[4.903078976458379,52.404077173940784],[4.903106166265934,52.40409022726044],[4.903146510181517,52.404109805426934],[4.903179100562878,52.404126206225015],[4.903215171445454,52.404146845426574],[4.90328366723555,52.40418559236236],[4.90327855011324,52.40420069766574],[4.903403580497794,52.404271455767464],[4.903441570894624,52.404272428783855],[4.903621702595616,52.40436924213703],[4.903732154038576,52.40442811263486],[4.903844791298126,52.40448869959881],[4.903883492082039,52.404510787346766],[4.903937239862814,52.40454102534376],[4.903991137600367,52.40457099429832],[4.904027511929728,52.40459082559816],[4.904072678413319,52.404612939653894],[4.904102496193262,52.404627621234646],[4.904161536200373,52.40465770095657],[4.904190760387224,52.40467291935305],[4.904248469204302,52.4047038024914],[4.904279428376853,52.40472163435525],[4.904324699953859,52.40474761342844],[4.904356390970674,52.404765717884146],[4.904433368403899,52.404808453276196],[4.904479233811311,52.40483389545071],[4.904518240849017,52.40485490571863],[4.904557689736067,52.40487582789721],[4.904584139874463,52.404889417117815],[4.904613816937832,52.404903558736194],[4.904635027657396,52.404908435551455],[4.904744963260188,52.40496634131142],[4.904793123951589,52.4049956034704],[4.90488850479281,52.40504874928919],[4.90491517204786,52.40502890528947],[4.904945727068659,52.40504340990356],[4.905148186827067,52.405168622863364],[4.905169365856887,52.40518048285094],[4.90523830872447,52.40521896082833],[4.905383412757576,52.40529432824269],[4.905378209065914,52.40529987941662],[4.905395462696259,52.40530785871219],[4.905389992472895,52.40531089226302],[4.905556080092234,52.4053891309699],[4.905681170744881,52.405453631476526],[4.90581913449013,52.40552357674238],[4.905952075691375,52.405609499442996],[4.905979209704584,52.40562785457502],[4.905971666607354,52.405632317755014],[4.90608445108592,52.40569344241266],[4.906127072833408,52.40572003915929],[4.90611510277679,52.40572619202315],[4.906151978989745,52.405754113574616],[4.906094037011148,52.40578506539651],[4.906105729393213,52.40579095484516],[4.906325221650225,52.40590455098882],[4.906379992649083,52.40593560089979],[4.906483838993529,52.40599444198291],[4.906512026473338,52.406010554354935],[4.906534641634442,52.40602556559498],[4.906556669017267,52.40604057444593],[4.906578106671685,52.40605576065306],[4.906599243620733,52.406071574771055],[4.90661979279064,52.40608738650081],[4.906639750282208,52.40610355533242],[4.906659264993138,52.40611990211732],[4.906683724323618,52.4061410324033],[4.906702056655325,52.40615800351992],[4.906719949128999,52.40617488297324],[4.906737246999555,52.40619238914711],[4.906748437339203,52.406203938707776],[4.906764853538316,52.406221441301795],[4.906780679031058,52.40623921112723],[4.906795913817005,52.40625724818421],[4.90680881886308,52.40627329851165],[4.906733950210363,52.40630669854462],[4.90677603465214,52.406342280511275],[4.906842581632593,52.40639872309775],[4.906934775836628,52.40646165084266],[4.907040858290157,52.406558428323756],[4.90705528374787,52.406556239879414],[4.907065046633611,52.406563918939106],[4.907192136611371,52.40668855321907],[4.907209444603709,52.40670516059821],[4.907333221699799,52.40682366970502],[4.907351910745586,52.40684846140663],[4.907444677016626,52.40698086549721],[4.9075471748297,52.40712391432166],[4.907569467883291,52.4071551916766],[4.907561067292658,52.407157404575905],[4.907680813024674,52.40732272256686],[4.907694944794707,52.40732053285566],[4.907712476134871,52.40734370203636],[4.907722297656671,52.40734598869531],[4.907825856021185,52.407486255387845],[4.907838489280352,52.407500327217214],[4.90790427151784,52.40757476832514],[4.907935398582741,52.407626312513685],[4.907972495322875,52.407689807433506],[4.908002412334356,52.40773910878677],[4.908019231894664,52.40776153805408],[4.908023869065208,52.407783909058914],[4.908030806967877,52.40780416828693],[4.908042023524643,52.40782695236954],[4.908065113163864,52.40791374048114],[4.908064855344819,52.40793758363438],[4.908033958616251,52.40796119502063],[4.908009597757432,52.408066701201335],[4.907993231287051,52.40813961459727],[4.907974769845156,52.408243167349816],[4.907974930427269,52.40824326686333],[4.907938297449764,52.408233322156164],[4.907932186723073,52.40824120655477],[4.90811223392951,52.408292499202226],[4.908152539168388,52.40830397761418],[4.908169681032401,52.40830885531011],[4.908153813255031,52.40833973557516],[4.908152682762204,52.408339632140084],[4.908151490183389,52.40833983403347],[4.90815052972217,52.408340315482135],[4.90814997869745,52.408340987326625],[4.908149899681064,52.40834149930227],[4.9081502004185,52.4083422285167],[4.908150972872818,52.40834282482399],[4.908152042057038,52.40834316168965],[4.90813635429476,52.40837370115004],[4.908117458698273,52.40837063185986],[4.908111399806394,52.40836964568205],[4.907825155313117,52.40834026664188],[4.907822706785762,52.40834924436899],[4.907758051200615,52.408408274162134],[4.907755156185419,52.40841097671212],[4.907578525218315,52.40857221895552],[4.907567675767043,52.408583409575776],[4.9074663419334,52.40868545832136],[4.907474189076658,52.40869366884308],[4.907424697674448,52.40877184060104],[4.907360085978641,52.40890270850924],[4.907317672466217,52.40897866197811],[4.907261515014608,52.40896666069983],[4.907201498342451,52.40905314822329],[4.907244981401693,52.40908199493592],[4.907219758915589,52.409117573659124],[4.907170916139533,52.40910865776777],[4.907162714629838,52.409119589450015],[4.907203341309145,52.409140785115625],[4.907180802959911,52.409172779651584],[4.907114163513068,52.409165139775176],[4.907067179177523,52.4092152801228],[4.90711287935254,52.40924296747547],[4.90708427687547,52.40923781849454],[4.907075619835534,52.40925009646956],[4.906993677928416,52.4092576734879],[4.906970631404387,52.40928229606473],[4.906983065465046,52.409287649167794],[4.906958307034946,52.40930750135771],[4.906944772040687,52.409322365963874],[4.906935407424588,52.40933212452311],[4.906916092290781,52.40935145951146],[4.906905998710252,52.40936067585522],[4.906885367735431,52.40937937636985],[4.906852156520214,52.409406204622385],[4.906820120942019,52.409433037632425],[4.906740558270489,52.409505784462375],[4.906598326975913,52.40963831442555],[4.906575794030349,52.40965619828357],[4.906552235268165,52.40967380834672],[4.906527948509477,52.409690786317285],[4.906502781918822,52.409707580960486],[4.906406444220866,52.40978214690477],[4.906412429630571,52.409785856123534],[4.906228132363347,52.40992127072071],[4.906142196183787,52.40998527326899],[4.906047106164837,52.41005310326191],[4.906036601613502,52.41005953169614],[4.905999057919117,52.41003861778594],[4.905858148656606,52.41010320572652],[4.905813249622873,52.410123515106704],[4.905744279529888,52.41015442193728],[4.905658596153818,52.41019505731838],[4.905564627046153,52.41024078190504],[4.905347915207483,52.4103427192413],[4.905169171320298,52.41042647589219],[4.905080393821112,52.410467727401375],[4.905011263981358,52.41049971167166],[4.904952176453908,52.410527242961926],[4.904948462499602,52.41054439422184],[4.904945069858951,52.41055903025257],[4.904941237304025,52.410573574616194],[4.904936948204594,52.41058955514237],[4.904931504915117,52.41060355369123],[4.90492558942756,52.4106204263598],[4.904920111891561,52.410637570439825],[4.904916903372133,52.41064879191888],[4.904915811039004,52.41065462943303],[4.904914105415689,52.41066280123496],[4.904912357725829,52.41067483754724],[4.904924231914982,52.410704634943784],[4.904886003155339,52.41073314986938],[4.904856429365043,52.41074965659224],[4.90481587473055,52.4107893066894],[4.904869195940323,52.410832484653035],[4.904856253505709,52.41084681217357],[4.904721310746226,52.410916456126785],[4.904697763299339,52.41093289747441],[4.904660440454708,52.41095916910828],[4.904632955258982,52.41097280823961],[4.904524758304309,52.411029169331655],[4.90450410097055,52.41103663478355],[4.904494067210103,52.411040278833354],[4.904473716525267,52.41104657713723],[4.904447878189186,52.41105743676983],[4.904409486115361,52.41107390744995],[4.904371388922619,52.41109028944298],[4.90433387270615,52.4111073029258],[4.904306544078444,52.41112004385643],[4.904281727558325,52.41113153675176],[4.904257347023103,52.4111434808006],[4.904232969413745,52.411155155227426],[4.904208731898877,52.41116745935452],[4.904184792220435,52.41117940518562],[4.904160995575264,52.41119171110032],[4.904137343922636,52.41120419735401],[4.904101713573518,52.411223465360244],[4.904067112932726,52.41124264767838],[4.904032952178925,52.41126192165664],[4.90401032235189,52.41127504118627],[4.90398798350247,52.41128843152724],[4.903972894974292,52.41129735761964],[4.903950994059081,52.4113110193687],[4.903918291097307,52.41133137777562],[4.903886026062253,52.411352007588846],[4.903854197973493,52.411372998681145],[4.903830952718643,52.41138863220247],[4.903800001471661,52.411410076239044],[4.903769487170946,52.41143188155555],[4.90374370910489,52.411450650396034],[4.903739560705412,52.41145368926294],[4.903611227661653,52.41153684037022],[4.903601221181488,52.411537967919244],[4.903467431216468,52.41162280424692],[4.903417954692789,52.41165828312702],[4.903337513646081,52.41171637423983],[4.903227890093317,52.41179537715153],[4.903098856262761,52.411888680863214],[4.90306654428321,52.41191353444762],[4.903039563378633,52.41193472487979],[4.903012728434021,52.41195600577859],[4.9029861883819,52.41197719800017],[4.902914998310859,52.412035955766605],[4.902876427978624,52.41206860295649],[4.902838588501597,52.41210161262672],[4.902829249903508,52.412108854429775],[4.902763427915951,52.412160533822394],[4.90277895451121,52.41216536074946],[4.902773577165601,52.41217324787812],[4.902768791623577,52.41218077792101],[4.902764440107359,52.4121889388724],[4.902759794652014,52.412197098621796],[4.902755003208869,52.41220516789778],[4.902751414047536,52.412210815429354],[4.902747081196736,52.41221726880671],[4.902742605306722,52.41222336209376],[4.902737834495006,52.41222954405105],[4.902730684662801,52.4122382328168],[4.902724888013688,52.41224414095],[4.902718948325184,52.41224968899285],[4.902712857735097,52.412255595923476],[4.902705739343383,52.41226140877464],[4.902695503150715,52.41227008491741],[4.902684538005954,52.41227821882049],[4.902673135881468,52.41228599143035],[4.902663215238415,52.41229269158213],[4.90265655838242,52.41229661891547],[4.902645002868282,52.41229153858438],[4.902529674824721,52.41238121279769],[4.902541539034776,52.41238494625823],[4.902529805558778,52.41239613279821],[4.902526236016569,52.412399982877155],[4.902507790586166,52.41242012958792],[4.902494408963972,52.41243418542357],[4.902484152041568,52.41244474886544],[4.902470507930233,52.41245592758295],[4.902458786217141,52.4124660356484],[4.902447209501713,52.41247632405849],[4.902430432789085,52.41249171414065],[4.902419586975624,52.41250236504376],[4.902408891076969,52.41251274693033],[4.902398340176267,52.41252330916184],[4.902383023293061,52.41253960397356],[4.902379694558928,52.41254830835345],[4.902376534429917,52.41255503614464],[4.902373681025142,52.41256059679896],[4.902370532696202,52.412566246122665],[4.90236694443997,52.41257180376979],[4.902362908388258,52.41257798871847],[4.902350905464035,52.41258692723052],[4.902341416763026,52.41259443800956],[4.902332074045324,52.412602039261486],[4.902322876327361,52.4126098208587],[4.902313072037036,52.41261930762239],[4.902297926650348,52.41263335621739],[4.902282047386489,52.41264731193054],[4.90226914096415,52.412658224015],[4.902253721284128,52.412670473955735],[4.902240830588142,52.41267994808074],[4.902224531037943,52.41269201466366],[4.90221342561838,52.41269951881471],[4.902196398088148,52.41271095327984],[4.902178935540945,52.412721846703924],[4.902166804264291,52.41272907702227],[4.902148609801745,52.41273969781673],[4.902129830400089,52.41275004658474],[4.902112827429289,52.412759234231],[4.902063153020344,52.412785724103934],[4.90204837032937,52.41279348281134],[4.901912182390751,52.41286851104433],[4.901763339695036,52.41294483541782],[4.901709763842777,52.41297858913765],[4.901697482267091,52.41297269685329],[4.901599097974117,52.41301804069854],[4.901583604702695,52.41301015796077],[4.90151614237206,52.41305032576986],[4.901439947494391,52.413096030068914],[4.901394898535472,52.413129548976244],[4.901327765392362,52.41317987404876],[4.901254234325695,52.41322388150241],[4.901076092603933,52.41334475335899],[4.901027968525717,52.413377180994104],[4.900767318100606,52.413583096273136],[4.900731654832639,52.41359166785237],[4.900552959944216,52.41369572978448],[4.900361106315296,52.41382013929658],[4.90032813473293,52.413824497629115],[4.900325285752599,52.41383497448456],[4.900158184059165,52.4139485474323],[4.900180851493786,52.41395897637976],[4.900161481989779,52.413982803852825],[4.900135847389671,52.41397487924029],[4.900048621342798,52.41407446306639],[4.899951867895735,52.41418497255406],[4.899940123403408,52.41419705755405],[4.899911138974153,52.41422641777392],[4.899766344439045,52.41437492693997],[4.899743141286797,52.41439981708777],[4.899582214964381,52.41457162748985],[4.899549177593605,52.414608610423926],[4.899499975244808,52.41465864874884],[4.899493584003486,52.41466509353328],[4.899418360712929,52.414742257225484],[4.899409590105261,52.41475120874561],[4.899357069816633,52.41480887283413],[4.899358618280708,52.41481508067245],[4.899336129261219,52.414828469517005],[4.899329282193244,52.41483626055975],[4.899318269276167,52.41484861813853],[4.899315583101284,52.41485229200494],[4.899286389482119,52.41488722353779],[4.899283556324605,52.414890896798184],[4.899273672198833,52.41489418151765],[4.899243000350086,52.41491652427431],[4.899239851453606,52.41492217351132],[4.899234915065125,52.41492997241726],[4.899035027764708,52.41500895917339],[4.899018211394877,52.415002409809254],[4.898876090726,52.41505318845215],[4.898883769023237,52.415063340165034],[4.898510050599214,52.41519077182022],[4.898503108896108,52.41519379898256],[4.898496314170691,52.415196826750666],[4.898489665431556,52.41519994499681],[4.898483161687232,52.4152032435932],[4.898476950907816,52.41520663327386],[4.898470885123172,52.41521020330483],[4.89846496235028,52.41521413343047],[4.898461250205948,52.41521753341674],[4.898459424988314,52.41522309821672],[4.89846157414528,52.415228140152806],[4.898480270674451,52.41525212435944],[4.898474347896772,52.41525605448552],[4.898771357771757,52.41552169517377],[4.898636702321451,52.415595108182536],[4.898630785458653,52.41559849908303],[4.898516490094336,52.415672984545054],[4.898490907359363,52.415660296353295],[4.898407894190643,52.41571046438921],[4.898410652584261,52.41571224633064],[4.898383275302972,52.41573031535699],[4.898347311344666,52.41574728841068],[4.898327149811508,52.415741498084316],[4.898308472881142,52.41574236472343],[4.898277199609185,52.41575650803265],[4.898238193106223,52.41576680866765],[4.898205492070578,52.41577047548157],[4.89816039230549,52.41577217674875],[4.898136542255093,52.41576497808399],[4.898128630111901,52.41576269851933],[4.898116596562187,52.41576094119976],[4.898092065702095,52.415759491796564],[4.898082802953854,52.41575972318893],[4.89807059166476,52.41576075129509],[4.898061465973393,52.415761882014216],[4.898049685701242,52.41576381066014],[4.898038190457749,52.41576654936799],[4.898027130200049,52.415769829128116],[4.898019161494164,52.41577267226956],[4.89801162876677,52.41577596659179],[4.898002022431227,52.415780690372436],[4.897997729228647,52.415783458811205],[4.89798929178742,52.41578881655068],[4.897985436547625,52.415791856426004],[4.897980095621286,52.41579632818721],[4.897973847997443,52.415803043111026],[4.897970720711021,52.41580671512536],[4.897952955161261,52.41584483918202],[4.897944312322634,52.415882102142824],[4.897943533745094,52.41588605348341],[4.897911367826271,52.41589715519271],[4.897843069387679,52.415905860763985],[4.897847663574985,52.41591576612669],[4.89782745271588,52.4159224233739],[4.89779727196057,52.41592679253176],[4.897805726290473,52.415906605292655],[4.897772736988851,52.41589909917747],[4.897720908320819,52.41589385201082],[4.897804375556074,52.41573748853797],[4.897783282820535,52.41571620859219],[4.897650050701134,52.41570850404519],[4.897599536154171,52.41570407114042],[4.897570155798523,52.415782321837746],[4.897475058440365,52.415768717013876],[4.897500852814415,52.41569575421866],[4.897445931870037,52.41569103340809],[4.897334466277568,52.41568221413133],[4.897277231453346,52.415674068377804],[4.897087160382571,52.41566231741057],[4.897080078590591,52.415731133339236],[4.896985754974859,52.41572732783555],[4.896992150742198,52.41565410513656],[4.896954551677243,52.41565143303904],[4.896933704894205,52.41591477412544],[4.896850099073651,52.41593860487528],[4.896762221927622,52.416003041958795],[4.896724321652728,52.41600099767634],[4.896722640180455,52.416006832673155],[4.89671925207098,52.416034051156494],[4.896693101325821,52.416032864387205],[4.896697487472169,52.41600843620037],[4.896614589343124,52.41599488118742],[4.896610055495748,52.41600609694872],[4.89658022685898,52.416029089617176],[4.896516191717146,52.41603371371956],[4.896465523913857,52.41603513064252],[4.896433540764757,52.41603499817518],[4.896364224344945,52.41603471105182],[4.89632867275442,52.41603692751967],[4.89624946374421,52.41604727664626],[4.896206448451056,52.41607969652793],[4.896155654067918,52.41609252707994],[4.896146554085927,52.416116522280674],[4.896091022460975,52.416107187659975],[4.896078038201673,52.41610500377445],[4.896052138104316,52.41617401126716],[4.896066934942262,52.416175780250114],[4.896419490946237,52.416216561937446],[4.896502419265904,52.41622476957275],[4.896684671812888,52.416233954593025],[4.896750894107638,52.416237590092884],[4.897101673895905,52.41625168712031],[4.897184673076501,52.416254834537064],[4.897267666814622,52.41625714602394],[4.897350681520643,52.416258891318904],[4.897411875544867,52.416259989125926],[4.897459744550487,52.41626046560611],[4.897521641813853,52.416260442809886],[4.897583445526877,52.416259574757866],[4.897605270093684,52.41625854148609],[4.897639629953042,52.416256436550114],[4.897673881558855,52.416253486320116]]],[[[4.991672970453044,52.36147235341951],[4.991988272346449,52.36160688232865],[4.992043758845332,52.3616240991808],[4.99214609421628,52.361655852620856],[4.992473680389626,52.361523720919045],[4.994310779496741,52.36071232150682],[4.995343497631817,52.36025552111357],[4.996853094812757,52.35955804910044],[4.999476658988624,52.3581435972036],[5.00055966730486,52.35757790444295],[5.003023728738519,52.356283961849336],[5.004623682569468,52.35539896721394],[5.005304616118043,52.355085994758575],[5.00552862755594,52.35502425279708],[5.00573932674619,52.35496059807984],[5.005854954294408,52.35494462200917],[5.005974626529155,52.35497041561993],[5.006094686765506,52.35495103827042],[5.006303024013909,52.35485288921276],[5.00658114311101,52.354684374913305],[5.006822495464489,52.35450162218105],[5.007231772292394,52.35421173561783],[5.007685056681863,52.353931228061754],[5.007995561597717,52.353748694601464],[5.008303026564968,52.35356260944857],[5.008563965418825,52.35339995837473],[5.00875450885827,52.353309405591546],[5.008945327454653,52.35322092054795],[5.009084192035975,52.35315925029007],[5.009275186215713,52.35303619864439],[5.010189499197341,52.352377692381175],[5.01072517593214,52.351885955306834],[5.010862428759888,52.35171930167119],[5.010988139583914,52.35157570055685],[5.011197478519431,52.351356140400085],[5.011364717230106,52.351209848644125],[5.011508850578569,52.35110719044119],[5.011681869504339,52.350957501257696],[5.01195380532897,52.350712981770144],[5.012033889938775,52.35064101055572],[5.012209261559554,52.350483427874586],[5.012505519436846,52.350264014862546],[5.012875841312214,52.34998974979545],[5.013047913179799,52.34987473909296],[5.013435079241977,52.34961593040497],[5.013714681027794,52.3494315137452],[5.013903824709947,52.349306911867664],[5.014027399949153,52.34919713041685],[5.014080661200004,52.34915697055203],[5.014150900736107,52.34909788217227],[5.014285517230462,52.34897693658526],[5.014520233094725,52.348806244605555],[5.014658650205489,52.34872361608735],[5.014768477050697,52.34864625412113],[5.014857593737925,52.34857606200046],[5.014978045561811,52.34853370435813],[5.015088832996321,52.34844667436075],[5.015299860422681,52.348266631065506],[5.015380556079695,52.3481520668311],[5.015410350847954,52.3481097654833],[5.015440181683323,52.34807191314747],[5.015439915501226,52.34801256659538],[5.015439762505549,52.3479765075028],[5.015432240611584,52.34796165419077],[5.015414708047365,52.34794172734279],[5.015405843431735,52.347943506026006],[5.015388039003088,52.34795428925703],[5.015382003097402,52.347970538016746],[5.015384635122379,52.34800849231122],[5.015372623886673,52.34803375492962],[5.015360642974613,52.34805539560295],[5.01531034480765,52.348071505310706],[5.015257172517329,52.34807856435025],[5.015209899886828,52.34808564190599],[5.015159722820186,52.34808729073739],[5.01509774639575,52.3480889024569],[5.015047615220737,52.34808332528226],[5.015000433426235,52.34807956388589],[5.014949883949985,52.34806961733719],[5.014944462718884,52.34806854872895],[5.014926672803859,52.3480793319363],[5.014582288394065,52.34797705596263],[5.014479529150351,52.34794869984045],[5.014476307876601,52.347947808903825],[5.014441153191757,52.34791697827914],[5.014411958883781,52.34787894031158],[5.014391628842545,52.34784092126684],[5.014380360685638,52.34777763939778],[5.014374961845488,52.34771798906477],[5.014399015606783,52.34766385107072],[5.014416942081937,52.34763680065125],[5.014432191271117,52.347579030857325],[5.014450299781569,52.34753029370685],[5.014501295422414,52.347431068390556],[5.014556669820226,52.347338175182806],[5.014562887899632,52.347300248724146],[5.014595865873906,52.347238912676055],[5.014685556719371,52.34709824099897],[5.014741499666702,52.347037192882325],[5.014757411464833,52.346975587381394],[5.014769544074933,52.346935864005275],[5.014784686962858,52.34688893298175],[5.014784853731772,52.34686905273125],[5.014779060296353,52.346856388820775],[5.01475254279832,52.3468526923349],[5.014723000247478,52.34685621242875],[5.014696437281629,52.34685793536564],[5.014663975283794,52.34685783320506],[5.014605026122197,52.34685042155976],[5.014560856159724,52.346839434372185],[5.014525641634288,52.34681582968031],[5.014484633804923,52.34677956105295],[5.014473016874317,52.34675783717154],[5.014461566792598,52.34671624202582],[5.014450026219437,52.34668367922482],[5.014432464339172,52.346667356196626],[5.014411922315515,52.34665464582046],[5.014379490807952,52.346650930624975],[5.014344139906931,52.346643593172196],[5.01430886446133,52.346629020853804],[5.014285297378414,52.346623527030815],[5.014261653925852,52.34662887212018],[5.014240884754416,52.34664146135396],[5.014228964374292,52.34665587600472],[5.014220008831752,52.34666850245786],[5.014187380013911,52.346688271429436],[5.014131077217212,52.34671700739935],[5.014089583821249,52.34673856391877],[5.014057121912555,52.346738461591784],[5.014012282796836,52.34675473176154],[5.013953349919437,52.3467314475766],[5.013880092980425,52.346737903401284],[5.013815245132236,52.346728666231655],[5.013741699587831,52.34670313386101],[5.013665372177292,52.34665590536222],[5.013627643518108,52.346606758430646],[5.013599560763335,52.34659725968354],[5.013594793592349,52.3465708118312],[5.013563920434913,52.34655283786107],[5.01353124647708,52.34653261127462],[5.013498529579702,52.34651574594081],[5.01345122078236,52.34649939176198],[5.013414732730014,52.34649816207177],[5.013372893169683,52.34648238236907],[5.013303773123109,52.34645422131786],[5.013247435316773,52.346426100608426],[5.013229278683135,52.34641598601704],[5.013207434467787,52.34640808871984],[5.013167354131719,52.34640125725752],[5.013127325091353,52.34638659766235],[5.013092769867374,52.34637196434151],[5.01306189712748,52.34635398125253],[5.013016460205339,52.34633148523251],[5.012970995071212,52.3463123415155],[5.01292727959436,52.34630326054287],[5.012898170093045,52.346291996793404],[5.012869103623249,52.34627737177522],[5.012847259464552,52.346269483398856],[5.012807226451966,52.34625706161784],[5.012774462962249,52.3462457772926],[5.012748998261912,52.346235639509466],[5.012690803605539,52.34621198853012],[5.012634494778883,52.34618051520763],[5.012598167401108,52.34616027679953],[5.012561906038461,52.34613221929477],[5.012518265726935,52.346112523940675],[5.012498256106063,52.346104641306376],[5.012469161595079,52.34609336851015],[5.012441815470308,52.346088815050116],[5.01242176816653,52.34608539916773],[5.012387171557089,52.34607746134044],[5.012345219538795,52.34607509055581],[5.012296006434637,52.346067115400245],[5.01227231445367,52.346062573474555],[5.012259575469722,52.34605917172559],[5.012252342699223,52.34605021504631],[5.012243276653423,52.34604459598177],[5.012230522925827,52.34604120317065],[5.01221780277711,52.34603557252847],[5.012201470481371,52.34602322562108],[5.012183380299579,52.34600529178342],[5.012156200096793,52.34598284428205],[5.012130754518982,52.34597047747692],[5.012094351987067,52.34595918143086],[5.012061645551773,52.3459411922669],[5.012038015576244,52.3459310601441],[5.012014370936419,52.34592092797009],[5.01194160378713,52.3458938690302],[5.011897968696072,52.34587361622471],[5.011832500380547,52.345847703820866],[5.011788837037752,52.34583080329553],[5.011759784910029,52.34581282563706],[5.011717965512055,52.345794807472004],[5.011672586555713,52.345765606293604],[5.011625364309883,52.34573919442213],[5.011601762978682,52.34572570090407],[5.011569075773535,52.345705482714756],[5.011543677895521,52.34568751659888],[5.011541924354537,52.34567969173838],[5.011514729924542,52.34565725302956],[5.011498431576481,52.345642668194884],[5.01147303368693,52.34562471105114],[5.011451261593659,52.34561010883465],[5.011431290271521,52.345597750267125],[5.011411328393575,52.34558427725182],[5.011391328717399,52.34557527099808],[5.011376798545772,52.34556852004338],[5.011365893096848,52.34556178059606],[5.011356865152979,52.345551685710845],[5.011344187265098,52.34553935927427],[5.011335182471712,52.34552479757584],[5.011326192359181,52.34551023592333],[5.011320822693625,52.34549792370342],[5.011306353520725,52.34548223916351],[5.011290036357085,52.34546989217595],[5.01128102215921,52.34545644491765],[5.011266515191105,52.34544522713773],[5.011253818484714,52.34543512957999],[5.011239411445891,52.345413845894086],[5.011234051253485,52.34540041922562],[5.01122681887326,52.3453914534953],[5.011206866664377,52.34537685701331],[5.01118872987862,52.3453645042313],[5.011176052166946,52.34535216878882],[5.011161573653375,52.34533759867526],[5.011134356464066,52.34531962668956],[5.011130768648416,52.34531179599446],[5.011129024711143,52.3453028476955],[5.01112366456547,52.34528942102177],[5.01111465045456,52.345275973750375],[5.011105579476743,52.345269240107044],[5.011096494777753,52.34526585883031],[5.011089205648508,52.34526359773275],[5.011070926862006,52.34526801552323],[5.011056240155635,52.34527802608548],[5.011054344706659,52.34528696282038],[5.011054278460692,52.345294781906055],[5.01105604134255,52.3453014923299],[5.011055956060724,52.34531155827921],[5.011050416080202,52.34531935997029],[5.011044828734423,52.34533275185789],[5.011050217187652,52.34534283520191],[5.011055577317506,52.34535626187884],[5.011055520513559,52.34536296651996],[5.011037189162084,52.34537185102342],[5.011011573891002,52.345379588912664],[5.010985939647441,52.345389564672544],[5.010960324281053,52.3453973115381],[5.010932898736812,52.34540392918181],[5.010918306636845,52.3454027683208],[5.010898250314876,52.345400466624554],[5.010865531035043,52.34538582949598],[5.010841905924507,52.34537345921091],[5.010818295425859,52.34536109795523],[5.010776514708192,52.345338612691776],[5.010747482288445,52.34531839690747],[5.010665821300482,52.34526393236463],[5.010669522754437,52.345258353791735],[5.010676854047488,52.34525391022741],[5.010675081773385,52.34524831424228],[5.010671465613658,52.345243835853765],[5.010664200712579,52.34524045134485],[5.010655082398173,52.34523930786376],[5.010640490359679,52.345238146968434],[5.010633196951894,52.34523812376563],[5.010615074142916,52.34522241852833],[5.010577014103068,52.34519211674643],[5.010520821839115,52.345147233132046],[5.01050087942815,52.345131522086206],[5.010464601242381,52.34510570181128],[5.010431971986026,52.34507876967767],[5.010408323849607,52.34507087510463],[5.01039376032474,52.34506636185837],[5.010380988102392,52.34506519773639],[5.010368221020123,52.345065157091554],[5.010357273613968,52.34506512223871],[5.010344453865494,52.345069557296924],[5.010331629869182,52.345076221289254],[5.01032243576237,52.345084011312316],[5.01031327957065,52.34508733456977],[5.010309630679774,52.34508844641351],[5.010305976650887,52.3450884347786],[5.01030052194292,52.34508617947326],[5.010291413206999,52.3450839125323],[5.010275058473816,52.345076041156524],[5.010253277582001,52.34506255316302],[5.010222344686581,52.345050168467836],[5.01019510905093,52.345034434141766],[5.010171546462111,52.34501647357238],[5.010146178014613,52.344995154834386],[5.010118994175102,52.34497160135849],[5.010091777632706,52.34495362913229],[5.010073707748501,52.34493345709328],[5.010064731971124,52.344915542976416],[5.010059400670893,52.344898763933195],[5.010055822622104,52.34488980977323],[5.010055965007536,52.344873048170264],[5.010061581146349,52.34485629502035],[5.010068959919227,52.34484626129648],[5.01007823952355,52.34482840534343],[5.010089291226697,52.344816154371344],[5.010105797739523,52.344806140737965],[5.010118617359289,52.344801714692736],[5.010129583706635,52.34479951169137],[5.010135076382968,52.34479729125216],[5.010142374851636,52.3447984379642],[5.010146004717245,52.34479956400181],[5.010153293722126,52.34480182515758],[5.010160568053031,52.34480408626615],[5.01016966726081,52.34480746766166],[5.010175140932009,52.344807485096894],[5.010180624143296,52.34480637909997],[5.010193396285859,52.34480754324359],[5.010200689622583,52.34480756647341],[5.010215243580006,52.344813194188],[5.010224337581767,52.344815461088224],[5.010242554937534,52.344819994979844],[5.01025529869999,52.34482450245],[5.010266246046683,52.344824537312256],[5.010271738719297,52.34482231686671],[5.01030092675089,52.34482240981085],[5.010315509107055,52.34482469417987],[5.010330101001028,52.3448258551152],[5.010342873153157,52.344827019242636],[5.010357459833216,52.344827065683475],[5.010373933517307,52.34482264225641],[5.010381274226545,52.34481708426555],[5.010384966220201,52.344812620145504],[5.010395932557083,52.344810417119426],[5.010406879900448,52.34481045196868],[5.010423281923924,52.344812742116964],[5.010436035160053,52.34481613512322],[5.010450602846427,52.344818419428854],[5.010463375075876,52.3448195745559],[5.010481677868728,52.344814042461024],[5.010494577642468,52.344798435934116],[5.010500202985718,52.3447805773059],[5.01049111329041,52.344776072503905],[5.010482038195399,52.344771576735354],[5.010474768091408,52.34476708671091],[5.010463877727278,52.34476033823893],[5.010452968300118,52.344755836629744],[5.010449390183339,52.3447468824813],[5.010433116162847,52.34472951138679],[5.01042041985066,52.34471941373857],[5.01040223618522,52.344712642044584],[5.010385900562428,52.34470253280729],[5.010371365613727,52.34469466723723],[5.010369621853538,52.34468571892613],[5.010351518358171,52.34466777577071],[5.010338846216616,52.34465656371586],[5.010326149946727,52.34464646605739],[5.010311577185274,52.34464305825776],[5.010300648804701,52.34464079451084],[5.010289748960763,52.34463516945463],[5.010280649779105,52.34463178806823],[5.010280716236391,52.34462395999468],[5.010269825860581,52.34461722049219],[5.010262570477996,52.34461273050132],[5.010249826851862,52.34460821404437],[5.010231624180574,52.3446036891879],[5.010202469086773,52.344598005982895],[5.010197061837056,52.34459016946288],[5.010167925760939,52.34458224837297],[5.010147869772598,52.34457995553701],[5.010124098600616,52.34458658463442],[5.01008944141437,52.34458423628485],[5.010063911862236,52.34458191700805],[5.010040182958109,52.34458184140031],[5.010027387536309,52.344585153039574],[5.010009075313469,52.34459179950888],[5.009996289354815,52.344593996700375],[5.009981697545899,52.34459283572392],[5.009963480310071,52.34458830179198],[5.009947125817589,52.34458043037033],[5.009925288218701,52.344573655944394],[5.009890640524195,52.34457019309213],[5.009857789201745,52.34457120284271],[5.00981216573634,52.344571057388215],[5.009779247865891,52.344579895190286],[5.00973543457309,52.34458086995276],[5.009688038975334,52.34457512845059],[5.009644316330133,52.34456716969602],[5.009602370170156,52.34456256900406],[5.009564026171387,52.34456579908761],[5.009529283481625,52.34457350753586],[5.009510833716822,52.344598039009746],[5.009479868544234,52.34459123537605],[5.009445230429733,52.34458664896155],[5.009417895478298,52.34458265207148],[5.009392365962538,52.34458033264985],[5.009377774174105,52.34457917159889],[5.009355870119199,52.34458021615344],[5.009323013588126,52.34458011126426],[5.009290171731879,52.34458000641283],[5.009262826867316,52.34457545221793],[5.009239122130409,52.34457426205198],[5.009202654833863,52.34457079318781],[5.009173461861621,52.344569576494216],[5.009138804663143,52.344567236853685],[5.009116938723305,52.34456380561167],[5.009106029481353,52.34455930387829],[5.009082348200886,52.34455363788179],[5.009062311342118,52.3445491069857],[5.009044118385384,52.344543458514835],[5.00902406254967,52.34454115650095],[5.009002206048325,52.34453661978088],[5.00897487081073,52.344530942087644],[5.008942057552871,52.34452748481912],[5.0089238118116,52.34452631203513],[5.008901926840482,52.34452511862951],[5.008883714844967,52.34452170801011],[5.008838081860618,52.34452268561186],[5.00881622546406,52.34451813986993],[5.008790715014348,52.34451359142985],[5.008761588739688,52.34450455554949],[5.008721510462782,52.344496041880014],[5.008701454588746,52.34449374879892],[5.008679617223221,52.34448697414316],[5.008666883296385,52.344481343071465],[5.008648699920029,52.344474580095444],[5.008619497447099,52.34447448669703],[5.008593872770659,52.344483338508645],[5.008568238426549,52.34449332273389],[5.008535320366969,52.34450216018977],[5.008500548954889,52.344513220656324],[5.008474895559527,52.34452543374985],[5.008441882154098,52.3445454425849],[5.008399626608864,52.34457884046856],[5.008366569850654,52.3446022015556],[5.008342807911447,52.344607715850586],[5.008320913328988,52.34460764576926],[5.008291672571431,52.34461202804175],[5.008266095385935,52.34461529857328],[5.008251551329996,52.3446085471873],[5.00822056731814,52.344603972112715],[5.008195104601749,52.34459383334807],[5.008169613277676,52.34458704689821],[5.008129530282793,52.34457909025052],[5.008081742195002,52.34457121676267],[5.007958559215663,52.344540371821545],[5.007934718153821,52.34452594207596],[5.007911080354714,52.344516923572],[5.007889214458382,52.344513501090645],[5.00786370418365,52.34450894346329],[5.007843724757745,52.344497707720635],[5.007825565070687,52.344486468819404],[5.007822006551605,52.34447528570314],[5.007822178501249,52.344455162794695],[5.00782777623068,52.34444065661352],[5.007838843209081,52.34442839691082],[5.007846251056355,52.344415011004955],[5.007855550584768,52.344394917349504],[5.007853945406056,52.34436809290886],[5.007846852724592,52.344344594305255],[5.007834219552375,52.34432890623018],[5.007816107628494,52.34431208611836],[5.007796209560082,52.3442913416412],[5.007779836437463,52.34428570779599],[5.00776711220695,52.344278962183154],[5.00775081559687,52.344264376829905],[5.007730836386354,52.344253132080325],[5.007701744225203,52.344241867097466],[5.00767985427965,52.34423955897457],[5.007652457622227,52.3442428235394],[5.007625032300616,52.3442494404181],[5.007603147424716,52.344248255759865],[5.007594058056103,52.34424375972261],[5.00757586034323,52.34423698754713],[5.007559487268695,52.344231353671454],[5.007539422121722,52.34423016585023],[5.007519337761255,52.34423122488907],[5.007499224807036,52.34423562725723],[5.007482823148722,52.3442333367037],[5.007459147315877,52.34422879386104],[5.007431755116608,52.344229820451744],[5.007408069757671,52.34422639204312],[5.007375242173584,52.34422293429312],[5.00733697481884,52.34421722113897],[5.007300517501722,52.34421263724444],[5.00726952425125,52.34420918535252],[5.007240331494164,52.34420797716959],[5.007212973130487,52.344206765880806],[5.007163686479559,52.34420773110663],[5.007132674162981,52.34420650806727],[5.007094339835335,52.34420862290661],[5.007061445341709,52.344212984153955],[5.006995699640378,52.34421836333574],[5.006928182162512,52.34421814643907],[5.006878962904328,52.34421295518798],[5.006862589927371,52.344207321215904],[5.006829791120487,52.344200510994554],[5.006789766162369,52.3441858492529],[5.006771544919985,52.34418355275257],[5.006735106866604,52.344176730808066],[5.006707796367263,52.3441699381941],[5.006669485737889,52.34416757709696],[5.00664029302489,52.344166368766025],[5.006623900989698,52.344162963649254],[5.006596600146533,52.344155047578006],[5.006569289681808,52.344148254932065],[5.006547399764798,52.34414595558722],[5.006514596615063,52.34414137421404],[5.006478139445831,52.34413679006618],[5.006419788017284,52.34413212648671],[5.006388789776421,52.34412755987276],[5.006361412290013,52.34412858626287],[5.006337727068326,52.34412515764008],[5.006317681123744,52.3441217407234],[5.006290336848247,52.344117185841625],[5.006268452150934,52.344115991949096],[5.006253927687312,52.34410701142903],[5.006244857763572,52.34410026842501],[5.006233987255258,52.34409129966273],[5.006226722804629,52.34408792386855],[5.006212121698685,52.34408787687145],[5.006195643421441,52.344094528655106],[5.006171866888255,52.34410003347995],[5.006162734828713,52.34410224201983],[5.006149943712118,52.34410332430442],[5.006135333036062,52.34410439174202],[5.006109794325832,52.34410319504387],[5.00609707551026,52.34409756374278],[5.006078868442593,52.34409191476875],[5.006062514900358,52.34408403382278],[5.00604978645184,52.344079525948224],[5.006031531404554,52.344079467162494],[5.00601513944837,52.344076061961424],[5.005991497174002,52.34406592858233],[5.00596240087049,52.34405521140654],[5.005931446193108,52.34404729240022],[5.00589685680521,52.344037123739035],[5.005862200274901,52.34403477415155],[5.005838423655363,52.34404028789691],[5.005814652131206,52.34404691612892],[5.00579820260776,52.34405021553738],[5.005778127939275,52.34405015084914],[5.005758053270856,52.34405008615748],[5.005734334235886,52.34404889524227],[5.00572527397848,52.34404103775431],[5.005707129612549,52.34402980756238],[5.005687122219828,52.34402191478752],[5.005648874411763,52.34401397219934],[5.005628838225802,52.344009431734406],[5.005597835592495,52.34400710283624],[5.005572306609547,52.34400478259055],[5.005550436129548,52.34400023619816],[5.005524983951136,52.343988982414544],[5.00551591917888,52.34398336283347],[5.005499527297923,52.343979957560975],[5.005479452661782,52.34397989282209],[5.005444776956386,52.34397978098801],[5.005404618101079,52.343980765932336],[5.005388187739581,52.34398183639565],[5.005362591536026,52.34398733518828],[5.005331550513811,52.34398947298412],[5.005304163425486,52.34399162256123],[5.005280473348544,52.34398707024795],[5.005260446722341,52.34398142426407],[5.005234965865243,52.34397351375032],[5.00520574447717,52.34397565738521],[5.005178338213065,52.343980035821346],[5.005149064131263,52.34399000756037],[5.005125220159427,52.34400334024572],[5.00509765994737,52.34402560369266],[5.005077325619407,52.34405570976177],[5.005073392664194,52.34408811570434],[5.005062118445006,52.34412607930807],[5.00504004130488,52.34414724596835],[5.005012823737438,52.344174013339924],[5.004999167732183,52.34418350519612],[5.004971531007843,52.34420270356],[5.00492181794791,52.34422421236053],[5.00485422075157,52.34426733271905],[5.004790323991028,52.34429312771846],[5.004712288858207,52.34431454492455],[5.004616398758843,52.344357573716465],[5.004516751783596,52.34442442566816],[5.004431470994144,52.344467488610725],[5.004349824090612,52.34449755804218],[5.004289519331041,52.34451686628171],[5.004208073839105,52.34452526691947],[5.004172581134346,52.344538157273604],[5.004119222606197,52.34457048412023],[5.004037440277592,52.344617899161356],[5.003916632468145,52.34467600897325],[5.003810131020782,52.344719002750324],[5.003700063415656,52.34476198487735],[5.003611338149669,52.34479420588938],[5.003536759261556,52.344826463701715],[5.003455125767076,52.34485653255996],[5.003384176898107,52.34487797186526],[5.003323856527586,52.3448972795626],[5.003224524930507,52.34492729985043],[5.003139316947796,52.344961688967224],[5.003096769085394,52.34497239007083],[5.003054127496554,52.344993921034586],[5.003011546242483,52.345006779047445],[5.002951333941045,52.34501525672633],[5.002905268185448,52.345023771317386],[5.002852151992764,52.34502793092501],[5.002806142465042,52.345029947552305],[5.002756450267001,52.345047123439805],[5.002657207746779,52.345068470409956],[5.002557875394588,52.34509848114881],[5.002497441677213,52.34513079326041],[5.002440690656858,52.34514794607314],[5.002387424004034,52.34516944225848],[5.002269938337726,52.345253571597596],[5.002216648585894,52.345279399702726],[5.002163419314479,52.34529655484937],[5.002103172996186,52.34530719802263],[5.001961343504714,52.34534357708621],[5.001851441841813,52.34536705472513],[5.001720221989192,52.34540345905258],[5.001701286144606,52.34541075830977],[5.001653582108731,52.34544561901721],[5.00164798877996,52.345447542141535],[5.001630136039131,52.345455168472526],[5.001604741472459,52.34546602377999],[5.001553771115616,52.34549845611504],[5.001487637962168,52.34552617440212],[5.001403722170082,52.345558499310165],[5.001307033875057,52.34560319453341],[5.001242310833968,52.3456138496372],[5.001186412205087,52.34563073499756],[5.001120452856858,52.34563673037401],[5.001084875398695,52.345649035326126],[5.00098832046081,52.34567665409309],[5.000889308792317,52.34569650837774],[5.000846182391617,52.34570103223477],[5.000810711763537,52.34569936157872],[5.000749898548706,52.34569916304646],[5.000696550721051,52.34571295574704],[5.000625420154418,52.3457313549644],[5.000546662076008,52.34575437586459],[5.000419699833588,52.34578190382371],[5.000346139696374,52.34578941981647],[5.000295425111304,52.34579235481248],[5.000249786879973,52.34579376049744],[5.000214316200704,52.34579208966257],[5.000168638502003,52.345799705688435],[5.000130466603365,52.34581665749975],[5.000097372320223,52.34583361691695],[5.000044038725469,52.34584741835806],[4.999990771709509,52.345851899747224],[4.999950197492137,52.34585486776706],[4.999896889843725,52.34586400461009],[4.999846188631746,52.345865393572915],[4.999798080393777,52.34586058049938],[4.99975499443086,52.34586043947476],[4.999724465819379,52.345874306429224],[4.999706561135384,52.34589287033237],[4.999670846491962,52.34591914129802],[4.999617417879572,52.345943799378574],[4.99957663905772,52.34596850784871],[4.999539730023203,52.34598700948987],[4.999506621809614,52.34600552356871],[4.999443147325784,52.3460192915237],[4.999382115663717,52.34604236971874],[4.999321043184903,52.34607011236521],[4.999287677162561,52.346118114183874],[4.999267125952104,52.346150645221414],[4.999246573623399,52.346181621379436],[4.99922342935401,52.34622034542352],[4.999212908965179,52.34626377545917],[4.999194786879356,52.346307171587796],[4.999179284871938,52.346341274032504],[4.999178945762112,52.34638007282285],[4.999163579382192,52.34639865395151],[4.999142904784179,52.346443596575604],[4.999104543125421,52.34648382557705],[4.999084058414418,52.34650703655426],[4.999055903998026,52.34653798775072],[4.999030275852901,52.34657205696922],[4.999007102919395,52.34661233574699],[4.998981595826876,52.34663087460625],[4.998945975187262,52.34664627953075],[4.998910314880586,52.34666789481502],[4.998861933257222,52.346692569109734],[4.998833956150042,52.34670489832067],[4.998826191417449,52.3467234953581],[4.998805801433472,52.34673584945611],[4.99877536699262,52.34673885034537],[4.998729714214419,52.34674180128266],[4.998668857692728,52.346744711286064],[4.998625772021014,52.34674611573753],[4.998575042541085,52.34675061380916],[4.998538117763093,52.34676911508578],[4.998494828173395,52.34679380595021],[4.998459044169791,52.34682783270579],[4.998451184030603,52.34685730452194],[4.998450885046133,52.34689144781105],[4.99842786201956,52.346916205209524],[4.998412358150265,52.34694875267337],[4.998386741833031,52.346979712046156],[4.99837126620481,52.34701070472505],[4.998363406053349,52.347040167546716],[4.998337830428197,52.34706647141398],[4.998302032463354,52.347102052947115],[4.998296588755918,52.347145490587835],[4.998265678022577,52.34720282042338],[4.998247636123802,52.347236914396746],[4.998231956355861,52.347291184525986],[4.998229063916829,52.347331529789685],[4.998238932730091,52.34736260573129],[4.998261507353252,52.3473890677936],[4.998291751973811,52.34740778968018],[4.998324494634033,52.34743118438137],[4.998362260762769,52.34746079708747],[4.998387292837755,52.34749657845337],[4.998435103692082,52.347535535385255],[4.998474009711399,52.3475791276695],[4.998483783607513,52.34762106940421],[4.998468034934486,52.34768154983349],[4.998436988122588,52.3477544010158],[4.998423969610321,52.34779471302244],[4.998420914226456,52.347853680261416],[4.998433334667462,52.34788166380794],[4.998463376921499,52.34792521799231],[4.99848813752366,52.34799204194906],[4.998477330552417,52.348068069344556],[4.998446242714625,52.34814557601679],[4.998412451698989,52.348240141438474],[4.998409179843245,52.348325495839795],[4.998422836437758,52.3483581390717],[4.998442791207485,52.348393903742135],[4.998503133538353,52.34844997841698],[4.998639484790012,52.3485094123322],[4.998783260936336,52.34858749295981],[4.998894159008446,52.34865925506319],[4.99894849964884,52.348725394012696],[4.998959361910212,52.34873862357774],[4.998974883735983,52.34874264704776],[4.998978005808574,52.34874813978184],[4.999009835686098,52.34876362211787],[4.999075188169238,52.34882592342223],[4.99910007229616,52.34887878076146],[4.999102109167941,52.34893621881541],[4.999101398982575,52.34895198090519],[4.999142349590555,52.349015415500546],[4.999190468370251,52.34908992844266],[4.999252763612854,52.34918641780206],[4.999318780646286,52.34928867144663],[4.999363873215737,52.349338377346506],[4.999423991464877,52.34945566598967],[4.999655405270429,52.349907102782566],[4.999639754039025,52.349909442267275],[4.999635665090818,52.3499306218615],[4.999658533674153,52.34993206286224],[4.999647141226835,52.34995764947866],[4.999606664588204,52.34999271276019],[4.999568430632673,52.35002641724234],[4.999551988941734,52.35005540263825],[4.999489092011737,52.35008976331715],[4.999421461332316,52.35014348592246],[4.999420168640196,52.35016377589935],[4.999423316316472,52.35018819678577],[4.999423218883615,52.35019935019397],[4.999423060996731,52.35021742392788],[4.999417289384277,52.35023631512734],[4.999377061867891,52.35027641225363],[4.999351164759686,52.35028561169256],[4.999338071891794,52.35028573057202],[4.999321955425443,52.35028586650567],[4.999287100705312,52.35029056070755],[4.99926733762775,52.35030322251574],[4.999276748167639,52.350318038110544],[4.999298580460733,52.35033563565651],[4.999294900952432,52.350390556378926],[4.999257896634886,52.35041616687744],[4.999189634719255,52.35041272555267],[4.999095087097289,52.35040919801053],[4.998874509479895,52.350398821832016],[4.998716926036194,52.3503950961703],[4.99844897620161,52.350394216504334],[4.998212579808878,52.35039022232866],[4.998118103395027,52.35038025905091],[4.998028894758586,52.350367095421966],[4.997903006097755,52.350344158318734],[4.997824390664035,52.350321376589456],[4.997792696128976,52.350340577896624],[4.997740055895508,52.35035327509542],[4.997703163562194,52.35036602408858],[4.997676836083085,52.35037237264681],[4.997661271119465,52.35034979826689],[4.997629971816042,52.35032395450962],[4.997598531351337,52.35031419825135],[4.997556455974197,52.3503204949511],[4.997508970480788,52.35034286179792],[4.997461484939532,52.35036522862552],[4.997398123798744,52.35040040454728],[4.997377982489795,52.350412615410775],[4.997374274683885,52.35041366374829],[4.997355784640305,52.35042335450392],[4.99674751263469,52.35074194074516],[4.996730716339962,52.350739251948106],[4.996638688402205,52.350724532089686],[4.996572690436681,52.350713969484474],[4.99648326231968,52.35073905559181],[4.996466047664765,52.35074387908819],[4.995637348405063,52.351149999971085],[4.995132762849054,52.351397270955076],[4.993777616449638,52.35205360400256],[4.992779166648348,52.35253715376516],[4.992662297041901,52.35259560673199],[4.992014060406732,52.352919886434],[4.991957250445631,52.352965156515204],[4.991954990095158,52.35296350422075],[4.991954635756908,52.35296373671765],[4.99158379448643,52.35318177067652],[4.990095523368391,52.35414700887394],[4.989290372749122,52.354671604085944],[4.989271267310402,52.35468405073059],[4.989296003270941,52.354690281455866],[4.990176514816297,52.354912007108965],[4.990228374549107,52.35492506038096],[4.990229317721766,52.3549246411223],[4.990746941273399,52.35469111399217],[4.991468380487099,52.35436562998766],[4.991955624881622,52.35413834132596],[4.992657821711085,52.35381077258537],[4.99286672211315,52.35371147159511],[4.992891931477246,52.353697453881246],[4.992899337748796,52.353691537687226],[4.992909876581835,52.35368493088664],[4.993060188027402,52.35362286812621],[4.993095782095985,52.353606359402946],[4.993514452160594,52.35337540271411],[4.997179650410539,52.351248060245005],[4.997195434678567,52.35122897745217],[4.997198563490958,52.35122200432336],[4.99720101842145,52.351216556882044],[4.997226641407626,52.35120024774532],[4.997295550311787,52.35116691469294],[4.997304346981984,52.35117302833483],[4.997362734577947,52.351137755197854],[4.997475942561438,52.35107226615184],[4.997542168129347,52.35102354617943],[4.997716961109888,52.3509262544331],[4.997868216032056,52.35083176107663],[4.997868392764371,52.35081161125043],[4.997849869648169,52.350779886684826],[4.99783604317139,52.35074816857686],[4.997808263817894,52.350699148199375],[4.997748387737577,52.35055789836453],[4.997744709348611,52.35054388343624],[4.997743842778243,52.35054060906478],[4.997772177438072,52.35052631298619],[4.997823933619199,52.35052072213064],[4.997861459298746,52.35052948273344],[4.99792257264868,52.35052968372198],[4.998011879742608,52.35052997737682],[4.998072993094109,52.35053017828767],[4.998171783583408,52.35052186582249],[4.998350347279739,52.350528213634135],[4.998524229192611,52.35053454580391],[4.998646290113705,52.35055221187888],[4.998697952382551,52.35056908057767],[4.998735345337676,52.35058129174129],[4.998805448858882,52.35062757471403],[4.998847333449182,52.35067665011926],[4.998870226372876,52.350745813615056],[4.998893476233344,52.35078928246342],[4.998907238346177,52.3508150234192],[4.99898633267559,52.35090739769533],[4.999117198582792,52.350994180544966],[4.999201206182563,52.35106354431356],[4.999012275793365,52.35116655299418],[4.998927353588388,52.35111618607342],[4.998804864158785,52.3510181419585],[4.998760911554012,52.35098899445742],[4.998742043448201,52.35097648458818],[4.998724023299166,52.350972740498534],[4.998699937312526,52.3509745039293],[4.998669703396144,52.350992829468886],[4.998630331881842,52.35102217088042],[4.998612021402668,52.351051590404786],[4.998590782808478,52.35107178792933],[4.998539376127844,52.351101098787886],[4.99843665799984,52.35115049937872],[4.998216031913257,52.35126584165938],[4.997992381321684,52.35138116459676],[4.997844191103177,52.35146910717067],[4.99778617458902,52.35150892054802],[4.997785835285224,52.35150911716107],[4.997785362864134,52.351509430176186],[4.997723403678481,52.35155027312488],[4.997723108404894,52.35155046988262],[4.995047245628724,52.35297468709725],[4.99436127374639,52.35333163270047],[4.994151071019277,52.35344100720121],[4.9938818790144,52.3535865135928],[4.993552480776159,52.35376455234992],[4.993404639186368,52.353841085142065],[4.993385941359408,52.35385077458487],[4.993384909136572,52.353851310412374],[4.993384761721733,52.353851381823446],[4.993254740213387,52.35392775800444],[4.993129263995529,52.35399472108689],[4.993095435978126,52.35401232320948],[4.991869750669103,52.35464994842485],[4.990348788483784,52.35546115730774],[4.990340293005675,52.35546569457386],[4.990332236781524,52.35546378913955],[4.989419494735572,52.35524853539104],[4.989402942907404,52.35524463304266],[4.989385090984316,52.3552531293338],[4.988908982930391,52.3554797438484],[4.987353590150509,52.35631365414069],[4.987009188961106,52.35650942863118],[4.98677972412867,52.356639872959406],[4.986700653212497,52.35669786367751],[4.986659736059173,52.356727869950596],[4.986606668948679,52.357308690436014],[4.986569906320983,52.35771097170783],[4.986568913626101,52.35772174458376],[4.986561461012435,52.35780417239235],[4.9865586619891,52.357834541297535],[4.986547918899345,52.35795136282784],[4.986531665520341,52.35801187583289],[4.986566601261939,52.358034804809144],[4.986580669044154,52.358044028841654],[4.987273944785916,52.35816713137071],[4.987277098850472,52.35816735772989],[4.987332170455918,52.35817129161797],[4.987338537302693,52.35817174453142],[4.987343626536665,52.35816899351364],[4.98901279751497,52.35726720478065],[4.98903364932083,52.35726148684365],[4.989171179902876,52.35722376963078],[4.989264101369995,52.35726612640034],[4.989561882828472,52.35747440995009],[4.989562189152381,52.35747462668337],[4.988152458457857,52.35822415674492],[4.988205822199118,52.35861889592316],[4.987348191877724,52.35906997031163],[4.987236491820912,52.359128722966126],[4.986638458653759,52.35944798377892],[4.986487030149686,52.35952814477712],[4.986454297136395,52.359545649839625],[4.986398876526062,52.359575301336235],[4.986398463468712,52.35957552462994],[4.98639912857006,52.35957827711246],[4.986399454186835,52.35957960839182],[4.986496491902778,52.35961506971651],[4.986495798634964,52.35961543586505],[4.986495959542349,52.35961549932341],[4.986499765215968,52.359613480987825],[4.986540194831779,52.35959388086726],[4.986604445089267,52.35956507706092],[4.986880834148679,52.35966830076506],[4.98688607201637,52.35967025082768],[4.986910753078758,52.35967632906329],[4.987190632115375,52.359780139049825],[4.987236423317374,52.359755263063],[4.987383016458944,52.35980927087065],[4.987428266962671,52.359769446469286],[4.987487685099627,52.35978813475385],[4.987521096167545,52.359794745645935],[4.987564125632849,52.35980429201764],[4.987569150878919,52.35980540547772],[4.987656251807399,52.35983268946474],[4.987705730321964,52.35986783649011],[4.987728357129479,52.35989340190353],[4.987766265195633,52.35991905482084],[4.987763737757535,52.35993237502495],[4.987750793844167,52.36000043101367],[4.987747517351062,52.360057824278016],[4.987752550567556,52.360111875198186],[4.987763195170478,52.360154117261686],[4.987779374599143,52.36019468831301],[4.987803879001345,52.36023022738222],[4.987897426145716,52.36025418052845],[4.988051842446627,52.36025639091575],[4.988228170677131,52.360275562796886],[4.988368605984292,52.360297983886326],[4.988493840980715,52.36034235546096],[4.988566391731708,52.36038475198637],[4.988651432716385,52.36043400317512],[4.988742068889488,52.360476514397796],[4.988889696682074,52.360517123173175],[4.989020090175049,52.36053317338735],[4.989231546933021,52.360605066796296],[4.989325010694239,52.360636855784634],[4.989330716408849,52.36064395725057],[4.989440385342579,52.3607169282246],[4.989594092820243,52.360796796747465],[4.989987322442832,52.360924744104175],[4.990165628992221,52.36103002168243],[4.990322098286493,52.3611115881943],[4.990596488737554,52.36114316465474],[4.990900881350908,52.361150673042964],[4.991672970453044,52.36147235341951]]],[[[4.896787983719594,52.397222423722766],[4.896896999624072,52.397214723208435],[4.896994501115058,52.39719996456686],[4.897082287575201,52.397181507669536],[4.897162161199841,52.39716246073695],[4.897209953717695,52.39714805349602],[4.898107761662878,52.39679871965734],[4.898139912644519,52.39678637753194],[4.898188957464685,52.39679156816948],[4.898203508899358,52.39680967546663],[4.89831831073462,52.39676615473844],[4.898301945379817,52.39674466060781],[4.898300345234995,52.39672322741812],[4.89975354632008,52.396167002331254],[4.899765906357137,52.39617466574411],[4.899865841003248,52.39613607947815],[4.899892066238867,52.39615615795686],[4.900058861168063,52.39608984102087],[4.900031546363564,52.39605927848402],[4.900727928435772,52.39579670794535],[4.901121757341791,52.39564464471419],[4.901152188485148,52.39567242462558],[4.901313006593294,52.39561221098684],[4.901285930612856,52.39558125426052],[4.902972194772777,52.394930128164084],[4.90328030987007,52.39481586894635],[4.903647371128154,52.39467425746268],[4.906275324425993,52.39366119910546],[4.906614249790614,52.393535615031894],[4.907002684154104,52.39338143424665],[4.907927548369877,52.39302916089193],[4.907937315107163,52.39301991615559],[4.907938814652849,52.393008948286806],[4.907088193090695,52.392172292990345],[4.906899636756507,52.39199455240938],[4.906739970048404,52.39183658473598],[4.906719555304401,52.39181032983955],[4.906577456918111,52.39167974672215],[4.906587196162111,52.391673036505],[4.906342537673923,52.39145761573602],[4.906221460186514,52.3912975750543],[4.906099008243709,52.39113837349882],[4.906011405577924,52.39102224748435],[4.905919993282093,52.390849771217916],[4.905822713958072,52.39066028433426],[4.905774362511302,52.39053767576364],[4.90572753510048,52.390403263567826],[4.905671308211336,52.39024432173606],[4.905660117918021,52.39016418711848],[4.905642275238558,52.39006356052722],[4.905632100077826,52.389986000504685],[4.905626921913385,52.38995691332621],[4.905641443247229,52.38995622639247],[4.905636815653923,52.38988186157168],[4.905619886785739,52.38988104676242],[4.905617255313808,52.38973381802608],[4.905622577341632,52.3896374109507],[4.905623795763554,52.38957663228936],[4.905632329200294,52.38951049975552],[4.90563646816388,52.38946755551842],[4.90564934487521,52.38939511332115],[4.905661434596226,52.38933967259532],[4.905687848802176,52.38924619136745],[4.905723077410554,52.38912019261977],[4.905745177858496,52.389032985209106],[4.905751844070052,52.38903190682388],[4.90575978311121,52.389024542242204],[4.905789660513753,52.3889462372664],[4.905808293019362,52.38889970293518],[4.905843565027864,52.388825122791495],[4.905819450927205,52.38881911089541],[4.905995152229811,52.3884566780042],[4.90599366010845,52.38844257028372],[4.905952650914119,52.38842728639119],[4.90520826612463,52.388288257888334],[4.905317583945918,52.38809113568859],[4.906112425746263,52.3882381697858],[4.90631476116807,52.38782228703086],[4.90647573721521,52.38749358723849],[4.906617658833492,52.38720690816091],[4.906642024912657,52.38721128516433],[4.906685659636923,52.38713060909015],[4.906652689525462,52.3871245254774],[4.906716154666174,52.38700588502494],[4.906792492637635,52.38685148985741],[4.906804293507722,52.38685233762841],[4.906907698315247,52.38663869756385],[4.906899186060608,52.38663665879136],[4.906923376555442,52.386585347390266],[4.906946826107967,52.386515644195356],[4.906961247983914,52.38643452599129],[4.906964831413059,52.38638847868447],[4.906961626439609,52.38632499472269],[4.906956373144636,52.386279747436035],[4.906941597945981,52.3862131247937],[4.906910728232174,52.386128461527576],[4.9068576121304,52.38604314180188],[4.906607288999631,52.385664643835135],[4.906501678802448,52.38551002262894],[4.906391992306101,52.385369711131034],[4.906338193628609,52.38531500041378],[4.906264161512048,52.38524336459759],[4.906166301968427,52.38516657189165],[4.906044440576582,52.3850804063064],[4.905825878885905,52.384960997613895],[4.905099968502589,52.384634506329306],[4.904959208300392,52.38457115429413],[4.904846020662974,52.38454406284455],[4.904821232857856,52.384535396623214],[4.904830766529512,52.38451640853581],[4.904006319374872,52.38414211703882],[4.904018935932362,52.38412599967558],[4.903272574798965,52.383788960938254],[4.903275467493207,52.38378634835531],[4.903209586282431,52.38375854985709],[4.90267318839127,52.38351553150832],[4.902626459810015,52.38351070267058],[4.90214472912663,52.38329387997812],[4.902114407462676,52.38329037641207],[4.902085420197223,52.383291102516004],[4.902053579291229,52.38330026534565],[4.901967554632348,52.38334297289917],[4.901812072131658,52.38342845572165],[4.901658021871539,52.38352392952913],[4.901538494570641,52.383604040963405],[4.901445591342876,52.383673880709836],[4.901370229536883,52.3837339598197],[4.901296116564491,52.38379532924416],[4.9011199475014,52.38395341866435],[4.900618892163853,52.38439626934491],[4.900597882244806,52.38442488967974],[4.900570793740919,52.384504148601835],[4.900539146254622,52.38462137971698],[4.900487285085625,52.38482044148677],[4.900305878822439,52.38550700181254],[4.900219475195849,52.385835101352725],[4.900144061403423,52.386042505513636],[4.900088323741143,52.386217059690566],[4.900037681078715,52.38637170910858],[4.899997132643507,52.38647927762344],[4.899945855314402,52.38662345373842],[4.899639476857678,52.38750454920227],[4.899501281679243,52.387898296586314],[4.899067760376112,52.389168967838245],[4.899081493944625,52.3891757741837],[4.899003112246637,52.38940089795822],[4.898932080158851,52.38958551756083],[4.898809613805367,52.389927820489575],[4.89881083640613,52.38994218783386],[4.898837001406045,52.38994735578457],[4.898775627986725,52.39013117924904],[4.898757543222597,52.39014461314198],[4.898715710858403,52.39018412119597],[4.898652225359064,52.390367567384374],[4.898632804053338,52.39036630089931],[4.898542473616466,52.39062750548156],[4.898701329826858,52.39067334181281],[4.899592404293041,52.390760248479445],[4.900295048220084,52.3908404241065],[4.90024273931522,52.391001906246636],[4.900225349819264,52.390993512166645],[4.900180700866585,52.39098857410366],[4.900161187815954,52.39099563007653],[4.899967104244054,52.39097223682162],[4.899959241856758,52.39098052706115],[4.899502354443364,52.39092961888641],[4.899229443131648,52.39089548309592],[4.899225746598706,52.39087763632531],[4.898715273265526,52.390818460353564],[4.898711249693242,52.390835646163694],[4.898683173787767,52.39082120401583],[4.898365834245958,52.390784914673205],[4.89825736315839,52.39110431122795],[4.898061393519969,52.39107615258357],[4.898028956915556,52.39119729826871],[4.898223066708093,52.391218313074845],[4.898215138426187,52.391232543778244],[4.898348763672541,52.39124589382148],[4.898221454809017,52.39161218213419],[4.898871934909354,52.39176911221681],[4.898926901187307,52.39178304502374],[4.899734492199815,52.39197717077893],[4.89961495029468,52.392068236117034],[4.899579696678946,52.392091872358705],[4.899550499019661,52.39209650662734],[4.899531076930259,52.392095240289116],[4.898819555691335,52.39193773862338],[4.898788430503842,52.391939983023676],[4.898162202495055,52.39180304234727],[4.898146188134005,52.39184578449982],[4.898136161667995,52.39187308359376],[4.898104669125168,52.391908625617184],[4.898061291134399,52.39196551819214],[4.898025723506268,52.39201887490329],[4.897999970938246,52.39206276318746],[4.897975949058014,52.39212687188487],[4.897963629029676,52.39218626544761],[4.897945306236586,52.39226110199299],[4.89793109948488,52.392315733279936],[4.897822444485743,52.39229983458834],[4.897804779864658,52.39234829501915],[4.897769065134811,52.392381653477344],[4.897751201454693,52.392414869988905],[4.89774126799499,52.392435042209414],[4.89773691562475,52.392476637134735],[4.89774628617593,52.39250877981424],[4.897730256565522,52.39255151285554],[4.897763216380995,52.39255878526794],[4.897699923448076,52.392713480119006],[4.897822119616434,52.39273116050069],[4.897778097201385,52.39284897771209],[4.897785695065939,52.392878021302664],[4.897734346516038,52.392996715977475],[4.897682229749597,52.393029296599],[4.897671913824041,52.393082757555945],[4.897684550115811,52.39311185792598],[4.897650236884179,52.39319118507438],[4.897624228770777,52.39326343729464],[4.89766071863458,52.39328767506645],[4.897592426098146,52.39345196598202],[4.897578219932084,52.39347188684423],[4.89754979065178,52.393542520243706],[4.897508377654308,52.39367134903215],[4.897495105251478,52.39368386790608],[4.89743372802644,52.393884344696865],[4.897384909127169,52.39390554245951],[4.897380713873927,52.39393287458226],[4.897425234105102,52.39394970384196],[4.897454331275056,52.3939715832978],[4.897469683922393,52.393990197321344],[4.897491967469263,52.39401311812796],[4.897521305927397,52.39403178097958],[4.897539419130254,52.39403856066125],[4.897574049317051,52.394045004173265],[4.897612155388377,52.39405066214014],[4.897639090365509,52.39405283164645],[4.897663800373548,52.3940529337752],[4.897705359883262,52.39404919589776],[4.8977591684384,52.39403514584175],[4.898040330467302,52.39391836216909],[4.8993798950604,52.39339005529916],[4.899371158760314,52.39338158888629],[4.899785131432209,52.393221128678576],[4.90018662890367,52.3930699718943],[4.900185630800978,52.393065878401735],[4.900488617529113,52.39295254005189],[4.900567348530497,52.392795857985625],[4.900676321246855,52.392576862761096],[4.900845518697426,52.392295578545635],[4.900913812736253,52.39209372629372],[4.901005372031373,52.391911023357956],[4.901056109885316,52.39187791433254],[4.901142263169344,52.391642844910855],[4.901293410353435,52.39132838435646],[4.901392172263387,52.391182542122515],[4.901422434972801,52.3910967261454],[4.901750067871745,52.39044564546237],[4.901769671552641,52.39043026701614],[4.901950787086674,52.39003982977582],[4.902026272501019,52.38989150988843],[4.902120452070323,52.389699415662484],[4.902135247494853,52.38970052781586],[4.902306166035988,52.3893540428876],[4.902572749578767,52.3887891712321],[4.902710041839812,52.38850538090676],[4.902749028137882,52.38842338405242],[4.903233719147202,52.38851568277958],[4.902790978456498,52.389425321714356],[4.901350867311725,52.392332210128636],[4.901279050123539,52.39246025042496],[4.901255097985796,52.39251841021957],[4.90112973132789,52.39277775623418],[4.901118470580078,52.39277976819756],[4.900899121770435,52.39322402695486],[4.900904351621138,52.39323342256324],[4.900045801189868,52.39356308530457],[4.899977775328874,52.39358090666155],[4.899491241549115,52.39377052136786],[4.899400337734957,52.393807293055126],[4.899176971938042,52.39389911667827],[4.899210317257072,52.39393153776075],[4.898989281382411,52.39401581200224],[4.898957029088344,52.393988203764785],[4.898537538035248,52.39414722725114],[4.898224015107909,52.39426890261555],[4.897480823767793,52.394555046325266],[4.897394464163523,52.39458845590159],[4.897289255024571,52.394679020910054],[4.896750938846053,52.39565335692244],[4.896564845783685,52.3956045651487],[4.896567651330519,52.39560064017262],[4.896534909456117,52.39559207411703],[4.896304461239257,52.39592141595207],[4.896333525108703,52.39592912198777],[4.896338659787642,52.39592184528295],[4.896714291539861,52.39602029733058],[4.896753492448394,52.39600416501569],[4.89682154721145,52.396066524573484],[4.896667630575337,52.39619143593718],[4.896617468847484,52.396461136711],[4.896617742877136,52.396498769191076],[4.896588988682031,52.3967112712368],[4.896586494617374,52.39688483064415],[4.896644427218699,52.39722997210821],[4.896787983719594,52.397222423722766]]],[[[4.984224339264641,52.3652220142508],[4.984236995014564,52.36524303455357],[4.984581298015519,52.36554584114023],[4.984701342101895,52.3656570672865],[4.985457139428915,52.365469472993766],[4.985998283460049,52.36532704676688],[4.986493329730919,52.365190366969735],[4.987296664259582,52.36495570957843],[4.987541561896939,52.36488178600818],[4.988515806444997,52.36457885156549],[4.989050855352857,52.36439836403793],[4.989978155298489,52.36407427348811],[4.990532679410224,52.363870233991626],[4.990783149707299,52.36376944026455],[4.990632027690184,52.36366008447959],[4.990200077889763,52.36381207445987],[4.989455007680234,52.363284999258255],[4.989032434685395,52.36298916065712],[4.989422024329611,52.36278325935138],[4.989190022624497,52.36261592904943],[4.988958958433701,52.36245556688535],[4.988956829758426,52.36246373851054],[4.988963654917362,52.36246881254179],[4.988961049769417,52.36247445702738],[4.988837148536014,52.36238055039742],[4.986622909890938,52.360822489195755],[4.986600999201256,52.36083470121849],[4.98660084453662,52.360833945730015],[4.986599996347862,52.36083195658273],[4.986579335300708,52.360847219653344],[4.985852580893652,52.36123180366548],[4.985826201829221,52.361244575608595],[4.985810406271555,52.3612477396472],[4.985592869365327,52.36109689868489],[4.985571784494516,52.361105410394444],[4.985559604314162,52.36109678584003],[4.98557897129352,52.36108505970323],[4.985391095289652,52.360945041278725],[4.98538772758279,52.36093109894421],[4.985734454036732,52.36073928272477],[4.986281448034235,52.360443329502665],[4.986348510921694,52.36040559261881],[4.98627476360747,52.360372376087106],[4.98616857092679,52.36033126627812],[4.986166567100907,52.36033045059916],[4.986157001152691,52.36033470531958],[4.985565748991226,52.3601145699799],[4.985570567738653,52.36010930157012],[4.985378209777874,52.360049680676454],[4.985356021973444,52.36006007601816],[4.984807210146265,52.36034101836944],[4.984775009097233,52.36034828780588],[4.984754927094425,52.3603482195433],[4.98467084453589,52.36031841814572],[4.983942545263309,52.3600159308469],[4.983056218126682,52.35964648967816],[4.981835736842063,52.35914311407103],[4.980443280639127,52.35856289246176],[4.979468833559485,52.35944584320921],[4.97944437860515,52.359468003507175],[4.979410449605194,52.359498741370466],[4.979443960746463,52.35951347975954],[4.979473845832843,52.35952663280616],[4.979686492779107,52.359620189779285],[4.979698146187902,52.35966203161762],[4.979665778806318,52.359688973136954],[4.97924041683367,52.36008097103637],[4.979229728888174,52.36008744129043],[4.979226284355929,52.36009165363259],[4.979168057049003,52.36014335684785],[4.979144501869537,52.360166589717586],[4.979103638169577,52.36020105145309],[4.979043821273765,52.36025317154856],[4.978696780116232,52.360565734676925],[4.978607651978525,52.36064744871912],[4.978432369656137,52.36079869058114],[4.978392261910629,52.360819493399426],[4.977128529076753,52.36029327997755],[4.976730503453098,52.36063921179398],[4.976210201961825,52.36110515282911],[4.975610999719822,52.360855235796315],[4.975406552482408,52.36076900702628],[4.975340636201793,52.36082923789665],[4.97528674209274,52.36087850064394],[4.974835818994227,52.36129060710766],[4.97451101490962,52.36157744977067],[4.974814872662089,52.36170417436352],[4.974467106010107,52.36200664737653],[4.974635554625263,52.36213289129549],[4.975023583028045,52.36240651569324],[4.975920053584556,52.36303620052626],[4.976123978715664,52.36318001958981],[4.976585664566475,52.363506247719826],[4.976947919879704,52.363743546950865],[4.977145114197045,52.36386656138115],[4.977384806156544,52.36403954128847],[4.977487378464425,52.36413096843157],[4.977570333466328,52.36418457037586],[4.977691454054106,52.364264350564184],[4.977423490357076,52.36440216623219],[4.977528942832547,52.36443299039789],[4.977871983948839,52.36466642744116],[4.977899299089774,52.3647388636875],[4.978149389456774,52.36459694973447],[4.978170760661349,52.36458797297585],[4.978164240624244,52.36459608429912],[4.978260485004926,52.36467031344219],[4.9784051453779,52.36460641629095],[4.97856083558553,52.36454364454086],[4.978719139813379,52.36446480264978],[4.979039915757162,52.364292797253825],[4.979276695780816,52.364170338295175],[4.979668517884209,52.36395923688842],[4.980193770926086,52.36368301884694],[4.980825600879444,52.36334618293008],[4.980894421782001,52.36331625647629],[4.980937320435792,52.3633098426801],[4.980969384631472,52.36331782590635],[4.981833750728852,52.36367225161457],[4.982415298260841,52.36391489531211],[4.98307055971065,52.364179421091656],[4.983634901531679,52.36442986422595],[4.983632388351547,52.36447050691412],[4.983583118280501,52.364470338964914],[4.983565949522933,52.36447421703788],[4.983553005322913,52.364483349325354],[4.983555053363389,52.36449384492433],[4.983567806662787,52.364505698207076],[4.983632042491653,52.364508532588246],[4.9836110483714,52.36469731005055],[4.98354251348603,52.36469576421493],[4.983527437607537,52.364703586019004],[4.983527330248761,52.364715386469804],[4.983533665143873,52.3647259056719],[4.983546466335,52.364732501329875],[4.983711315094482,52.364743551841826],[4.983726426668365,52.36473180252232],[4.983850638522989,52.36473616233894],[4.983850519321808,52.36474927494989],[4.983886940828214,52.36474808682025],[4.983918722564463,52.364551481842625],[4.983963658194213,52.36455687470437],[4.984774740837143,52.36488618341827],[4.98462037468102,52.36501746288303],[4.984598895109944,52.36502394186113],[4.984498567280355,52.36498426162206],[4.984224339264641,52.3652220142508]]],[[[4.925449208747727,52.37972151367422],[4.925523043711594,52.37970836497179],[4.925552939030804,52.37974994167333],[4.925583667423695,52.37975946256941],[4.925596969065486,52.37975284556291],[4.927594953928471,52.37940574735433],[4.927599704242366,52.3793470133469],[4.927671966544041,52.379333857202944],[4.927690520837904,52.37935887899175],[4.92771229748625,52.37937623780464],[4.927732933500875,52.3793817823805],[4.928614731414543,52.37922858117178],[4.931101456954207,52.378793573578946],[4.931936971151078,52.3786487706012],[4.933064515684444,52.37845252209439],[4.933070462724025,52.37842679521031],[4.933136465791763,52.37841361173281],[4.933158190138535,52.37843480707962],[4.933192706617499,52.37843301605408],[4.933222592380304,52.37842449347254],[4.936272971379515,52.37789400267806],[4.936986080964302,52.37777005267501],[4.937185328515506,52.37775833512894],[4.93790385836172,52.37771788671164],[4.938457672379813,52.37769007567563],[4.939897794008914,52.37760932340401],[4.940280481268981,52.377599255095],[4.943399625720128,52.377704062142],[4.943859118815706,52.37771771891826],[4.948487484224618,52.377872710167864],[4.948547063595398,52.377872930876876],[4.948573803238823,52.37786440176127],[4.948594357635955,52.377847203593916],[4.948600015384145,52.3777503105198],[4.948645515497303,52.37774855567159],[4.948660438348196,52.3775077593883],[4.94867101339752,52.37738881978682],[4.948680060263569,52.37726698948077],[4.948693948733879,52.37713077885295],[4.948660762123986,52.3769982406192],[4.948594542817617,52.376878045926674],[4.948580477759676,52.376873194414934],[4.948470249893908,52.3767614827725],[4.948317619724249,52.3766592037237],[4.948158439107276,52.37658376433662],[4.9479459044265,52.37651293523954],[4.947728253012038,52.37648429287368],[4.947524452169494,52.37648066029735],[4.947348909899491,52.376475208975556],[4.946790948855071,52.37645394648678],[4.945303480454081,52.37640714265914],[4.943137360339236,52.376335712398124],[4.943142669909013,52.37627623390641],[4.942777143798493,52.376296936364355],[4.942508968604405,52.376310273916765],[4.941367813266954,52.37627628775163],[4.940344359044927,52.376241386644146],[4.939552777200357,52.37621954074305],[4.939291050009508,52.37620799951854],[4.938255005865243,52.37617528862246],[4.938170424576122,52.37616729244728],[4.938120401474531,52.37615174281074],[4.938093874536127,52.376139167311536],[4.938067454456297,52.37611604067864],[4.938056717948601,52.37609297352738],[4.938061679517478,52.37606708087275],[4.938071364596133,52.376040253439484],[4.938126718342764,52.37599343984519],[4.938169419101976,52.37595618607267],[4.938376491906325,52.375790007025415],[4.938485646101676,52.375694459262704],[4.938490471447706,52.375682002650784],[4.938484346591463,52.37566759016972],[4.938468891465439,52.37564641954886],[4.938540126444877,52.37557856287283],[4.938463194565006,52.37557374157263],[4.938125991502583,52.37556337670927],[4.937984996269877,52.37569108709674],[4.937936355373051,52.375687019887636],[4.937885427769963,52.37569848367714],[4.937825583868021,52.375756550669685],[4.937742106685946,52.37584691952231],[4.937733346278328,52.37587668042285],[4.937489640499761,52.37611282311807],[4.937323014735764,52.376263758394714],[4.937273939671093,52.376302434659074],[4.937153300557183,52.376300682],[4.937153734365963,52.376257929267595],[4.936834220136127,52.37624635171462],[4.936829931585703,52.376259403487296],[4.93619079316541,52.376241314401575],[4.936172622521274,52.376227323280766],[4.935071579008568,52.37618911508606],[4.935041642625137,52.37642606877484],[4.935200309124824,52.37643443987168],[4.935195776107276,52.37646422570943],[4.935216937315009,52.376464306481495],[4.935205000073788,52.376588021242924],[4.935184504784139,52.37684681508886],[4.935126380850157,52.376858106421594],[4.932639973236124,52.37728806759462],[4.932635802529728,52.37728232643391],[4.932619619534176,52.37728510441811],[4.93264731367654,52.37733703367768],[4.93260168057462,52.377353171139106],[4.932551510505331,52.37735201684712],[4.932539175755168,52.377331819115085],[4.932519133745542,52.37730991109299],[4.932506624965964,52.37729523112339],[4.932492472994576,52.377299014521085],[4.932482985816327,52.3773076152498],[4.932483735898743,52.3773161024981],[4.931182309243886,52.37754345639973],[4.930269602323963,52.37770313639098],[4.929719899385803,52.377801693997895],[4.929718741951095,52.377795730695496],[4.929701102680644,52.377798700384396],[4.929725675158199,52.37784970152684],[4.929716227003736,52.37785445545896],[4.929698754329887,52.37785266232148],[4.929692661186906,52.377858202153924],[4.929633062117989,52.377859895242175],[4.929609714156435,52.37781405773968],[4.929561327597186,52.37782219334558],[4.929562839504266,52.377827960290496],[4.928708336935185,52.37797625908117],[4.927189391766944,52.37824096935118],[4.927173727431217,52.378238985137074],[4.927193613435897,52.37828704760623],[4.927155939045731,52.37829169168451],[4.927138563855185,52.37830314638726],[4.9271228298551,52.378307875692094],[4.927103987567093,52.37831068753022],[4.927094797769876,52.37829050144796],[4.927102702429892,52.3782745970053],[4.927092003468218,52.37825690363382],[4.92707039553994,52.378251669735604],[4.927035556478347,52.378257645981385],[4.927030876682327,52.37826847592486],[4.925026389286356,52.37861831638057],[4.92504782553523,52.378665387630335],[4.924952041558709,52.378679412041066],[4.924928017196953,52.378635485346244],[4.924138360046402,52.378773291012145],[4.92318042724629,52.378942715910426],[4.922833433162499,52.37900408973856],[4.922294639581287,52.37909696650533],[4.920709654863354,52.379371886036076],[4.920293345083195,52.379446056434034],[4.919963526804671,52.379434905073296],[4.919963583048708,52.37942956661268],[4.919588915628573,52.3792927062978],[4.919553414295883,52.37928192469183],[4.919536142518777,52.37928474152928],[4.919416976202345,52.37944061157748],[4.917869520837298,52.379269510823555],[4.917846034503302,52.37926557999801],[4.917836533811275,52.379279311471535],[4.917719234320638,52.379691120460436],[4.917719102262643,52.37970359483922],[4.917728420134878,52.37971130725993],[4.917769138035088,52.37971626809852],[4.918155979597971,52.37976001608204],[4.920022835795539,52.379969861117395],[4.920690093618076,52.38004331450926],[4.92265947203689,52.380265915724756],[4.923304930746436,52.38015381709398],[4.923986331458061,52.38003546530592],[4.924961821305852,52.37986317241702],[4.925449438183092,52.37977846948047],[4.925449208747727,52.37972151367422]]],[[[4.889970072568055,52.393033715731214],[4.889914367456512,52.393026822000124],[4.889874535324977,52.3930599451002],[4.889771279753246,52.39329089016042],[4.889759908435424,52.3933341180491],[4.889747478975928,52.39334988415167],[4.889737744643954,52.393368987011314],[4.889741669887748,52.39338315009424],[4.889744247564642,52.39339564479784],[4.889761833746242,52.39340736668102],[4.88979954619052,52.393415236481765],[4.889824719030623,52.393417265553126],[4.889868885117887,52.39341167193521],[4.889889565323404,52.393392489196465],[4.889984881443041,52.39316861097203],[4.890022746603427,52.393067227188816],[4.890006714845279,52.39304135628297],[4.889970072568055,52.393033715731214]]]]}},{"type":"Feature","properties":{"id":14,"statcode":"WS37","geometry_g":"polygon","gag_id":"1","hierarchie":"2","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.37.37_Waterschap Zuiderzeeland_p","sde_id":"1","land_code":"NL","inspire__1":"NL.37.37_Waterschap Zuiderzeeland_v","inspire__2":"NL.37.37_Waterschap Zuiderzeeland_l","wbh_code_o":"37","einde_leve":"2012/12/30","laatste_wi":"2011/12/31","admin_code":"37","waterschap":"Waterschap Zuiderzeeland","publiceren":"37","Aangemeld":1,"Actief":1,"KVK":32164084,"tnostatus":2,"CPT":433,"GMW":298,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.795202955505224,52.80650113167021],[5.795740557039295,52.80580899516552],[5.796602391284146,52.804705721990345],[5.797230858380063,52.80389868497875],[5.797915136964439,52.80301731221847],[5.798625787560839,52.802110004568334],[5.799063959452633,52.80154850421311],[5.79926015551813,52.80129788158527],[5.799603735044287,52.8009276739718],[5.799972141254304,52.80053771986694],[5.800587433255521,52.79989415727652],[5.800995471770914,52.79945856773892],[5.801670877509189,52.798756374711],[5.802349203594042,52.798046867542254],[5.802780537245192,52.79757973671999],[5.803469144418268,52.7968589517388],[5.803554427820345,52.796789008031716],[5.803923847076187,52.79648834363424],[5.804806637551448,52.795776982249066],[5.805933439654754,52.794859183252974],[5.806931989553005,52.79431702509876],[5.810257811171856,52.79252250761259],[5.811222174412809,52.79200121535986],[5.813287044069287,52.790888472539955],[5.81454759895498,52.79020208418723],[5.815314413842689,52.7897887466428],[5.816858356255811,52.78895527921039],[5.817089465367991,52.78878538125526],[5.817266085463219,52.78865668184654],[5.817950388837326,52.78814870182017],[5.818520005024437,52.78773268522978],[5.818645085687575,52.78763955676088],[5.818241086940555,52.78695071963241],[5.818534591185808,52.785757221354196],[5.818792299953768,52.78469303613045],[5.819412623264859,52.7847503244788],[5.824989283397084,52.785259057303485],[5.827450660635464,52.785480834255544],[5.828140541218013,52.78554343686954],[5.829986181805379,52.785565796705264],[5.832491503025388,52.78559521400854],[5.836065510251514,52.78563066561931],[5.836256829871381,52.78563219032876],[5.83731337821411,52.78502103071333],[5.839615913891844,52.785084764841905],[5.841620485133223,52.78513554876909],[5.842256845462288,52.78490507881975],[5.842572955962969,52.784791536398636],[5.842563159738052,52.784851672321786],[5.84253459079526,52.784955129084494],[5.842470386573021,52.78506153312001],[5.842432578085615,52.78512289944106],[5.842383399627888,52.78524890287176],[5.84251261829443,52.78526975271706],[5.842610520584163,52.78528566706898],[5.842750312706185,52.785321079815915],[5.842911735068835,52.78545414132545],[5.843241478683547,52.78551522542872],[5.843576737565129,52.785549888704445],[5.84421977774652,52.78564908670012],[5.845325844428583,52.785818957590486],[5.84671845886899,52.7860371406934],[5.848278149546214,52.786284429805654],[5.848595091635318,52.78633824687567],[5.848791047865537,52.78636163978724],[5.848998678470609,52.78637206856245],[5.84923149820388,52.78637734329152],[5.849412330269531,52.786372149247136],[5.849926788500209,52.786246021436],[5.852672294263296,52.78557366975298],[5.853668378974659,52.785330498992906],[5.854845223760802,52.785033812734554],[5.855770367411681,52.78480775309444],[5.857115671693118,52.7845002713194],[5.857720972492451,52.784361956047896],[5.858008879131536,52.78430015822853],[5.858356607702849,52.78422351770424],[5.858623449875321,52.784162924165166],[5.859822652009493,52.78386216825046],[5.860508582359196,52.78368588642972],[5.860905411334437,52.783588823836524],[5.861495542252694,52.78346346909166],[5.861595763895617,52.78343667025555],[5.861696379421533,52.7834036922144],[5.861825628609179,52.783341392779356],[5.862032889207852,52.78323328638668],[5.862108597424751,52.78314592458119],[5.862613741153825,52.782723213165326],[5.863127417934131,52.78227687498509],[5.863527127149935,52.7819354614422],[5.86373129182843,52.781756593929785],[5.863868817095695,52.78181726650946],[5.864068559730655,52.781636730172856],[5.864252392888347,52.78146243566217],[5.864386302902557,52.78134001521471],[5.864499322440177,52.7812558724067],[5.864607339567139,52.7811801738053],[5.864777905369765,52.781063784432774],[5.8649280785843,52.78096769789935],[5.865122929578898,52.78084896390507],[5.865331687352369,52.78073129711727],[5.865576006499001,52.78060450029369],[5.865803117412702,52.78049237483286],[5.865940400638495,52.78042498436138],[5.866023572068141,52.78038589516571],[5.866187978151713,52.78032120106072],[5.866348613449734,52.780271689894604],[5.866996120049412,52.78021010629051],[5.867272345068323,52.78018484112955],[5.867380692962972,52.78018215856889],[5.867503196748431,52.7801822272172],[5.867648369996837,52.78017995579127],[5.867759484301093,52.78017613747264],[5.867880892250567,52.78018182603471],[5.868091563476576,52.78019726431893],[5.86821805288383,52.78020180866581],[5.868476042023547,52.78020301322063],[5.868631060353867,52.780190591511726],[5.86872979703791,52.7801772746896],[5.868865905844556,52.78015088627098],[5.868960131040496,52.78012747639847],[5.86921601107006,52.78006353412873],[5.86930698853702,52.780039574546585],[5.869521601872995,52.77997130431742],[5.869661421555441,52.77992468044693],[5.869794508882904,52.77987639865444],[5.869929634797425,52.779824176703166],[5.870388977259929,52.77962628850934],[5.870548901111754,52.77955486908886],[5.870510720798797,52.77951570565148],[5.871332899697143,52.77912649368963],[5.872284939264236,52.778671592473884],[5.872333808636063,52.77871408098811],[5.872597540770232,52.77858662885807],[5.872929777452591,52.778413962513305],[5.873524442431358,52.7780807064052],[5.873776665871272,52.77791847544516],[5.874193525038895,52.77763087735545],[5.874596328156331,52.777370857543104],[5.875022850352009,52.77714106984008],[5.875320949117404,52.776982016808354],[5.875603378963334,52.77683032909555],[5.876246970603735,52.77648618749735],[5.876429739344506,52.776388828133086],[5.877601129700188,52.775763917197125],[5.878603057987832,52.775248098822324],[5.879632500725229,52.77471025083791],[5.880002482551187,52.77454302425393],[5.880745069905754,52.77427764597142],[5.880895892239598,52.774223661333224],[5.881280939707078,52.77405861499679],[5.881583304619879,52.773809659637394],[5.882506655829996,52.77304868009937],[5.88278012761254,52.77282567901705],[5.882857149838937,52.77275739525634],[5.882952467968589,52.77266881481962],[5.883048607114826,52.77257124311213],[5.883169088349089,52.772435377533846],[5.883308739041782,52.772254496700235],[5.883568206139557,52.77192034038123],[5.883847786345539,52.77158385106509],[5.884151844336073,52.77132364827415],[5.884487856720955,52.7710436515571],[5.885214554380326,52.770325035485655],[5.885295003153465,52.7702533647717],[5.885420741246189,52.77015342233373],[5.885570207528661,52.77008371029091],[5.885928451647333,52.769988970776716],[5.886345845680538,52.76988387383166],[5.886561635890287,52.769823992773254],[5.886695038030923,52.76978748579404],[5.886904486470991,52.76971976718611],[5.887051832175775,52.76964725376192],[5.887925844700032,52.76920378553276],[5.888383515892763,52.76895753025992],[5.88903306031246,52.76860599044682],[5.889850892041705,52.76815263613127],[5.890620374017198,52.76778429337654],[5.890796985093604,52.76770097959477],[5.89115843077327,52.767544988366865],[5.891243048831924,52.76743454172422],[5.891613689421401,52.76733355398857],[5.891771785562945,52.767291319858614],[5.892283357025777,52.76716558143889],[5.892395720171585,52.76713252732884],[5.892897876824622,52.76697368702427],[5.893088133208126,52.766909970689696],[5.893211365314164,52.76685608743886],[5.893389331473774,52.766770518184714],[5.893557617422105,52.7666889197911],[5.89375483130796,52.76658641681202],[5.89393836933337,52.76648228575477],[5.894122591880256,52.766377590713184],[5.894918999669516,52.76596136320501],[5.895160307814337,52.76582890075524],[5.895372569344031,52.76564713382462],[5.895415303292356,52.76567896727952],[5.895499917396826,52.76562917909696],[5.895669031206769,52.76553971060121],[5.895861398735581,52.765439471491426],[5.896045672491287,52.76533982833231],[5.896128459424469,52.7652922933285],[5.896300242584562,52.76519382651168],[5.896519134395609,52.76506538796006],[5.896654888136968,52.764994036315294],[5.896917078760535,52.76486653603193],[5.897099426655836,52.764780941489974],[5.897284807413947,52.764697580399],[5.897672134720132,52.764521799424934],[5.89774942021071,52.76447934199031],[5.897834077169606,52.76441382395724],[5.898013295384705,52.76425859291753],[5.89827200256068,52.76403168692341],[5.898346751572513,52.76395048395433],[5.898531211774782,52.763788488527105],[5.89875251368395,52.76362970642739],[5.898999309893857,52.76345396298718],[5.899174512592205,52.763371766006486],[5.89951275842339,52.763296169275755],[5.899599917591652,52.76328680825089],[5.899819673893543,52.763293163391225],[5.900080748943048,52.76330945133919],[5.900181295375106,52.76331632099623],[5.900379688053626,52.763336809176565],[5.900475875669223,52.763347067459875],[5.900769390048242,52.76338568133656],[5.900902714180673,52.76340420253351],[5.901068692945458,52.76342426951186],[5.901252742342445,52.76344537891881],[5.901496333623409,52.76347072704802],[5.90171328527186,52.76349450384265],[5.90202642551631,52.763528536372746],[5.902315339352359,52.763549754202906],[5.902655471812648,52.76357580477103],[5.902878700291498,52.76352316355974],[5.903134195975343,52.763458586811176],[5.903401405360049,52.76338609428997],[5.903725774714758,52.763292572808254],[5.903995658963684,52.76321164301329],[5.904943098440572,52.7629148911441],[5.905084712388796,52.7628710258257],[5.905429818336188,52.762750448747035],[5.905543184313087,52.76270614323042],[5.905722078946156,52.7626244821675],[5.906201212149763,52.76240614724968],[5.90636349840108,52.76232961273497],[5.90676381981431,52.76212229106323],[5.90714633251687,52.76193638970753],[5.907788728162706,52.76160836897388],[5.908591483326701,52.76121841929419],[5.908691364531021,52.761169677226505],[5.908919492547652,52.761102399403114],[5.909274448112668,52.76103344177678],[5.909372434414641,52.76102009342886],[5.909623390329523,52.76100382723708],[5.910282453041899,52.760969478759066],[5.910594632926479,52.76094339385043],[5.910809623680129,52.76091998136462],[5.910905273746886,52.760904956080275],[5.910978167385598,52.76088385411106],[5.91106706782413,52.760846392885185],[5.911171969676729,52.76079200980846],[5.911385861675906,52.76065738798118],[5.911459073101148,52.76060482739919],[5.911679009777029,52.760414572747244],[5.911719155044106,52.760364967850414],[5.911777945441097,52.760268100363],[5.911807742142702,52.760185400853054],[5.911827494322798,52.76011454182241],[5.911837477501312,52.759769063027875],[5.911853169126069,52.75959094138604],[5.911869186510522,52.7594981922694],[5.911889700276828,52.75943294758436],[5.911913733215709,52.75937161736806],[5.911944928080885,52.759309133116936],[5.912047113415909,52.75916376860192],[5.912188014464141,52.759023288444055],[5.91228759580527,52.75895039226762],[5.912424755662443,52.758864973230054],[5.912566835670926,52.75878458656891],[5.912743512233308,52.75869393764835],[5.912930174480355,52.758606053685],[5.913036854350003,52.7585460442311],[5.913420565563189,52.758329787102426],[5.914056402622945,52.75798434786153],[5.914569414690312,52.75770404368453],[5.915187800582071,52.757352497967645],[5.915520397192201,52.7571600512837],[5.915831717116609,52.75696938136992],[5.916294156443704,52.756681431472],[5.916604109244835,52.756473915070075],[5.917058017883168,52.75617027203359],[5.917091305717159,52.756147656558724],[5.91718818874481,52.75608263176068],[5.917916292944974,52.75560195763967],[5.918390085523088,52.75527912352757],[5.918477860177976,52.755226495327825],[5.918568070307753,52.75516486925548],[5.918652181986385,52.755096530131006],[5.918710229664767,52.75505470553063],[5.918757339813194,52.75500787637684],[5.918802406177798,52.75494532828861],[5.918833485888698,52.754874416481655],[5.918912113236312,52.75464040497314],[5.918909656877331,52.754590426994085],[5.91889586442638,52.7544837686866],[5.918880276017078,52.754362514618194],[5.918890485157475,52.754288326777306],[5.918920174974958,52.754217422039176],[5.918964479618573,52.75416835768515],[5.919007278171344,52.754128847766005],[5.919135861134729,52.754044584279214],[5.919240757139566,52.75399187719756],[5.919428055369198,52.753939927760776],[5.919544936533007,52.75390233409155],[5.919742994298351,52.75387898102382],[5.919879840753236,52.753865451024055],[5.920011398092956,52.753854750259215],[5.920148572535649,52.75384908205607],[5.920408157508988,52.75387993578668],[5.920662597550788,52.75390631853384],[5.920917219606384,52.75392876903402],[5.921085669588638,52.753925765272484],[5.921164583544927,52.75390631503475],[5.921231226917365,52.75388635720012],[5.921301203614513,52.75385515159592],[5.921534184707462,52.75373502834663],[5.921636953570851,52.75367896037901],[5.921795742699396,52.75358613134192],[5.921919736265443,52.7534867172594],[5.922486014272451,52.75304718340899],[5.922914371483639,52.75270431452946],[5.923312093266135,52.75241157190237],[5.923563308058578,52.752231824863],[5.923754127316481,52.752128176848515],[5.923926543671433,52.752071793862264],[5.924129707312039,52.7520315590102],[5.924906324109855,52.75195166591916],[5.924981592190892,52.7519372838517],[5.925095560083412,52.75190812220882],[5.925212906445823,52.7518525469242],[5.925303263739827,52.751785298135836],[5.92538344055889,52.751699558814025],[5.925436198811647,52.75162349292566],[5.925509712740006,52.75150408436855],[5.925567919354817,52.751381935659914],[5.925672410361884,52.75118431187512],[5.925773396244225,52.750965359831156],[5.925840831640483,52.75084092337952],[5.925898560956409,52.75075528523752],[5.925988600595338,52.750643664258085],[5.926091771172812,52.75054602498621],[5.926153221980716,52.750499689583975],[5.926227371265711,52.75045104901988],[5.926315337161117,52.750396728997856],[5.926426162544584,52.75033837358381],[5.927175106184499,52.749949663420665],[5.927652536588264,52.749707095997046],[5.927685725497019,52.7496962742178],[5.92770986456518,52.74968324497979],[5.927962460182805,52.74952426449457],[5.928086453689362,52.74944562704252],[5.9283846470878,52.749231393358414],[5.928516999287122,52.74913642858917],[5.928683897068488,52.74900929051228],[5.928901286509637,52.74884822136709],[5.929055713671214,52.74872338713318],[5.92961937886903,52.74825181244454],[5.929943492791169,52.74798297318522],[5.930137085942779,52.74782594198947],[5.930216157643994,52.74776435767225],[5.930310043761242,52.74772180301301],[5.930762867850932,52.74758830202636],[5.930956140439497,52.747536305166705],[5.931436507077516,52.74744087129132],[5.931744990412867,52.74734959101795],[5.931973509483328,52.747285075093025],[5.932228981328564,52.747210885786004],[5.932428281854525,52.74714144847649],[5.93261478406949,52.747047916097195],[5.9326995943755,52.747001469316174],[5.932770084196103,52.746957334842975],[5.932827078722569,52.74690708364072],[5.93287478119175,52.74685406657493],[5.932921201132435,52.746790945031115],[5.932997281164779,52.746675450747105],[5.933067172865185,52.74649033668999],[5.93316571569246,52.74624611151637],[5.933241587737412,52.74605816237623],[5.933285182510331,52.74595405058832],[5.933332448228684,52.74584767429953],[5.93337781104076,52.74575534975641],[5.933406945031309,52.745716459784184],[5.933462189732436,52.74565610594245],[5.933618739205636,52.74553631014333],[5.933828637282572,52.74538986995618],[5.93392528570885,52.745328202397154],[5.934081824454497,52.745226379961785],[5.934415136283853,52.7450125311064],[5.934661713260994,52.74485749552015],[5.934768672700108,52.744787916241364],[5.934929757889022,52.744679893208605],[5.935137588026375,52.74453514522651],[5.935524139567233,52.744249714026026],[5.935926591682276,52.74394117911818],[5.936469223838365,52.7435190972046],[5.936616306901011,52.74340214855705],[5.936807069827443,52.74320748718383],[5.937030284454543,52.742962122956996],[5.937156695479929,52.74285762708666],[5.937764905946957,52.742463882081196],[5.938373787310579,52.74206900741458],[5.938493710011559,52.74200104973456],[5.93863040272985,52.741923465580626],[5.938747618958551,52.741861137040466],[5.939143249753255,52.741694167503134],[5.939387884127669,52.741589682667026],[5.940265081755395,52.74122781607475],[5.940461975552196,52.74113590880346],[5.940671732291296,52.74103663767305],[5.941865726425806,52.74040648550739],[5.942660105767984,52.739975898519205],[5.942525537083821,52.73989114999349],[5.942646781640718,52.73983722405539],[5.943055627423613,52.7396566991739],[5.943187149723391,52.73961058829986],[5.943283841561035,52.73959104017952],[5.944341418335479,52.73941028690532],[5.944548270303686,52.73937505385568],[5.944615813011764,52.73933766714561],[5.945182739070408,52.739035631820784],[5.945402282474537,52.73890709953076],[5.945603444312924,52.73878876342681],[5.946346405539966,52.73832244646658],[5.946624679738839,52.73813746725685],[5.946695366577738,52.738092760835016],[5.946782580779291,52.73803786720306],[5.946998081718023,52.737901487287914],[5.947239075231612,52.73773240917149],[5.947476648017433,52.73754930447167],[5.94757430863583,52.7374791955154],[5.94764868619277,52.73743391034941],[5.948286908333119,52.737066368488264],[5.949026289632827,52.73659611767291],[5.94912115089107,52.736488388460856],[5.949203310068616,52.73632848129899],[5.949391432135474,52.735645703221024],[5.949438817399715,52.73566064586818],[5.949463227764203,52.73556167442428],[5.949504295033678,52.73540870046441],[5.949534734222453,52.73532879700179],[5.94962399153762,52.73512729016078],[5.949685160954393,52.73500848588313],[5.949762284173722,52.734871068671346],[5.94981970473331,52.734784859028714],[5.949956570649515,52.73459773253478],[5.950089687769742,52.73442522658608],[5.950449231181589,52.73397866885265],[5.950738096213613,52.73363130171422],[5.951018509658391,52.733292399186084],[5.951247216319554,52.73301664917758],[5.951469156414967,52.73275441309451],[5.95178181580265,52.73238783305082],[5.952283629987823,52.73183668212976],[5.952754688857323,52.73132330824708],[5.952946065491705,52.73113198631818],[5.95310013196158,52.73102509564885],[5.953207187895116,52.73096785514147],[5.95338787569584,52.73089846972168],[5.953857601635795,52.73078501990875],[5.954229545342774,52.73069450167179],[5.954452478942177,52.73061873477129],[5.954660099997766,52.73052169628922],[5.954832924126973,52.7304169597603],[5.954991583927878,52.73025443661209],[5.955316083277159,52.729912504714406],[5.955850894617008,52.72932523256083],[5.956148547639279,52.72901881293825],[5.956266280436015,52.72887614275712],[5.956266816411194,52.728614393128744],[5.956306446472384,52.72853107275933],[5.956391383486678,52.72842787838155],[5.956512692086265,52.7282756421116],[5.956561023004072,52.72820351470613],[5.956331321079159,52.72782771999845],[5.956144191158951,52.72763090015336],[5.956080711268226,52.727569417799295],[5.955878198518565,52.72739907134913],[5.956181744695082,52.72719147969032],[5.956260723621337,52.727092806462544],[5.956320931523442,52.72697344134149],[5.956436794429508,52.72675832102423],[5.956556314425598,52.72653981384563],[5.956591401035223,52.72646325623579],[5.956621967792521,52.7264659184353],[5.956632797020617,52.72642711005719],[5.956651096720985,52.72635793470814],[5.956654209067323,52.72627703654981],[5.956544744540067,52.72530976941248],[5.956550894710062,52.725249077524246],[5.956565189900515,52.72517430442939],[5.95660479387973,52.72510727389465],[5.95666506219798,52.725046322151776],[5.956749137077212,52.724984133964796],[5.956873204131013,52.72490265773959],[5.957153768078033,52.72493950927487],[5.957403293283321,52.72497257704385],[5.957541072902796,52.7249140627903],[5.957989436182701,52.725279820745115],[5.958202016611841,52.725210834736835],[5.95818792398193,52.72496319724339],[5.957698282387032,52.72446452014978],[5.956796689351331,52.72378357563703],[5.956589039577643,52.72362617373215],[5.956177763061476,52.723389423573884],[5.955612457461135,52.72317025759664],[5.954968730874564,52.72275262403812],[5.954442522819623,52.722336674540806],[5.954018783831516,52.72197471859401],[5.953598524484202,52.72157735810385],[5.953288791427632,52.72123170755122],[5.953038242722453,52.72093801194028],[5.952667740245558,52.72045222708486],[5.952355830958232,52.71995436459321],[5.952152577569583,52.71956102418564],[5.951941032239565,52.71906212410476],[5.951724205649797,52.718404290312755],[5.951607404770974,52.71779147855705],[5.951548956088351,52.7172384907432],[5.951554970906208,52.71666329117579],[5.951652836729877,52.71596633067451],[5.95177351416883,52.71499347157273],[5.951898080432057,52.71419752626454],[5.95233604968052,52.711021329469915],[5.952395027533762,52.71053799652711],[5.952454406159171,52.7104809827094],[5.952495515635452,52.71042349576883],[5.954251449584784,52.7084655073553],[5.954602563275651,52.7080661555649],[5.9553158244437,52.707264025851494],[5.955324255532311,52.70725443592848],[5.955351104834646,52.7072211687836],[5.955616886339058,52.70639308850487],[5.955852379959835,52.70569041047332],[5.956342146841216,52.70421980279914],[5.95645887954315,52.703826622118456],[5.956465302381886,52.70380496667101],[5.958242618760369,52.7038444730436],[5.958540237236122,52.70385203207582],[5.959011751636417,52.703863526803204],[5.959013828052734,52.703863236425946],[5.961189027773738,52.70390471756398],[5.961320972328081,52.70375888465795],[5.963272758451788,52.70377556778926],[5.965316224064148,52.703784471425934],[5.966511384217198,52.703801405688765],[5.966476773045713,52.703403333877574],[5.967056231562929,52.70133151443274],[5.966986951765134,52.70028654062928],[5.967028656993404,52.699751324708394],[5.967123852008755,52.69904846233186],[5.967636309284983,52.69857638701011],[5.967488329745279,52.69775085734991],[5.967174175038936,52.696926138577524],[5.967966652264596,52.69618504728979],[5.96792106589293,52.695691821980866],[5.967739871028234,52.69506332760425],[5.967614811677246,52.69385545294313],[5.967243763476794,52.69337561037755],[5.966513174313238,52.693303902895614],[5.966500427425438,52.69317870710876],[5.96712827024314,52.69320569969385],[5.966934507577299,52.69274408833733],[5.966715306990289,52.692316020946215],[5.966078737793182,52.69148584714087],[5.96497608767524,52.69127299054125],[5.963960439094185,52.69060978354529],[5.963588809575299,52.69008050220026],[5.963420358197555,52.68958899424101],[5.962813078252043,52.68945179054676],[5.961425884863393,52.689334923919226],[5.960623594861163,52.689500562693205],[5.960377765234888,52.689505116892846],[5.959980803932991,52.689067223135176],[5.959726988075356,52.68863622149082],[5.9595189684289,52.688225780725695],[5.959060351194509,52.68825129658322],[5.958531976184994,52.68797720163472],[5.958127557887414,52.68758539554028],[5.957556938244003,52.68733143786557],[5.95706233739527,52.68712991436752],[5.958636285509384,52.684431842603296],[5.958731796267696,52.68426034695542],[5.958771479753139,52.68421999547124],[5.958701768379791,52.68420797318507],[5.958672873272719,52.68424265585244],[5.958303461060788,52.684869877678544],[5.957907477126781,52.685551711066715],[5.957589599280492,52.68609190075372],[5.957325716479327,52.686555722344494],[5.955848546938544,52.6857994516204],[5.954497023060711,52.68523157236933],[5.953122030107512,52.68509910405819],[5.95204236452457,52.685074747250404],[5.952040285343433,52.68507475712517],[5.951767249781486,52.68501033524019],[5.951550724922295,52.68493778085648],[5.950352613098343,52.685407138859865],[5.950097945348166,52.68549568847499],[5.9499932573084,52.685531008098486],[5.94976505802712,52.68561128761343],[5.949509011560047,52.6857006845699],[5.949367433020154,52.685615977161554],[5.948969461278368,52.6853768896745],[5.94885768916999,52.68531001420042],[5.948653460897128,52.68518684395251],[5.947493992947156,52.68448598029669],[5.947285349638751,52.68436030132253],[5.946937264057059,52.68415355219283],[5.947018883037485,52.684103177175466],[5.946945765143973,52.68405914653733],[5.94664770979155,52.68387968322747],[5.946545013753433,52.68381725644412],[5.946181317700382,52.68359990631541],[5.945986209197937,52.683483989757704],[5.945975964264885,52.6834778592493],[5.946053748485527,52.683434805836086],[5.945911974240819,52.68327931986818],[5.94587490288207,52.68321686458179],[5.945864270776019,52.683162150613114],[5.945922383405342,52.68311666071268],[5.946015260077108,52.683097688399435],[5.946083009257833,52.68311955654043],[5.946132215273865,52.68315499337331],[5.946168580741948,52.68323458314759],[5.94618887902868,52.68330441921819],[5.946246429883528,52.68336003690064],[5.946398118564331,52.68344133121777],[5.946631636810931,52.683506793381724],[5.946774567912587,52.683517073550085],[5.946945019854116,52.683529191300046],[5.947140720834589,52.68352827004526],[5.947281159707149,52.6835062634271],[5.94745088456378,52.68346137138248],[5.947585106415015,52.68340484989597],[5.94755718655149,52.68337184234311],[5.948038203545117,52.682733454754946],[5.94803984156643,52.68269890322745],[5.947781646150545,52.68225666177919],[5.947755929241507,52.6822331918011],[5.947684095865275,52.68227144524579],[5.947649039170222,52.682276384420845],[5.947574519611892,52.682267187662625],[5.947484032467565,52.6822378441606],[5.947422920883065,52.68219291514499],[5.947408425585714,52.68212529870606],[5.946820433405018,52.68203903793564],[5.946744203468947,52.68204052001721],[5.946693355336698,52.68205732970763],[5.946611484028891,52.682069510453054],[5.946550613477465,52.68206165173975],[5.946479708448099,52.682009467165294],[5.946443981975808,52.68198014572909],[5.946377732473212,52.68184003435085],[5.946400527093592,52.68179723743349],[5.946427641255526,52.681767340986454],[5.946458527164013,52.68174332414616],[5.946651919066289,52.68170674643078],[5.946946390475878,52.68164245001291],[5.947008745888049,52.681621935472904],[5.947349302606461,52.68147513409254],[5.94739981170472,52.68144990118237],[5.947459813901131,52.68140805216784],[5.947508142844248,52.68135671019997],[5.947703210567407,52.68101708956964],[5.947714418497285,52.680971819816115],[5.947713461695796,52.68089683844035],[5.947703302195694,52.68086121821746],[5.947681481198181,52.680835202675695],[5.947647939246624,52.68081401543129],[5.947610484391395,52.68079397180506],[5.947577080136585,52.68078345700329],[5.947050379401825,52.680737069338996],[5.946964202389808,52.6807374750066],[5.946841196646248,52.68074872614489],[5.946636195638702,52.68078058484262],[5.946407752109013,52.6808221004462],[5.94632192376999,52.68085002797904],[5.946232639617042,52.68089678714039],[5.94615504232579,52.68095416441347],[5.946077857713244,52.68102586157739],[5.946026114622103,52.681117661069],[5.946011129122734,52.6811747440077],[5.94601177934172,52.68122585432442],[5.946026293549536,52.68127690129055],[5.946052313292231,52.681324523116665],[5.946105837663007,52.68139083201694],[5.946155376058492,52.68143441141891],[5.946257988989831,52.681508915843395],[5.946356996427425,52.6815904578728],[5.946325692336421,52.68174507124408],[5.946321979455822,52.68176194045568],[5.946302625567366,52.68178449835701],[5.946244684551965,52.68184318704664],[5.946181205609196,52.68192071897523],[5.946108935291285,52.68225161580257],[5.946063024738424,52.68247510492171],[5.946036213614482,52.68252887324389],[5.945981818536873,52.6825577752878],[5.945797325155013,52.68265834243502],[5.945760293059704,52.68267171665455],[5.945657655837351,52.682758980107884],[5.945634680844492,52.68278745314393],[5.945529555483618,52.68286096798581],[5.945451672142593,52.682859648521216],[5.945445407123191,52.682839456908845],[5.945592782166461,52.68272698771286],[5.945638384366289,52.68262454508559],[5.945642562110953,52.68249870577072],[5.945348042275482,52.682323434849174],[5.945375952380121,52.682301397746315],[5.944268260764641,52.681646600740805],[5.942561400100115,52.68063819609253],[5.942277645560599,52.6804718544185],[5.941897294268822,52.68024895195899],[5.940860495882558,52.67963788425644],[5.940685180261913,52.67953169785645],[5.939841622724971,52.67903514964667],[5.939528309174957,52.6788498429368],[5.939421951197096,52.67878855039684],[5.939309527500935,52.678722510165464],[5.938148726218155,52.67803700860872],[5.937927657192835,52.677910809082036],[5.937356409629794,52.677568852725365],[5.936768722482316,52.6772233199306],[5.936560175943481,52.677100148864604],[5.935749250476748,52.676619149249646],[5.935897963172413,52.676521008519586],[5.935826712849821,52.67645814607371],[5.935871323842611,52.67644137067498],[5.935884739366752,52.67640564065872],[5.935888101581459,52.67636041000254],[5.935704458181028,52.676066366171945],[5.93564334842308,52.676038282860674],[5.935557186792887,52.67602070596536],[5.935411909505647,52.67598683019314],[5.935399875123808,52.67596666553231],[5.935392617404622,52.675792292962754],[5.935330624987063,52.675730510925476],[5.93529719270099,52.67566185686907],[5.935262949487964,52.67558365861334],[5.935228858507347,52.67551753565161],[5.935096201388195,52.67523589535165],[5.934899054673528,52.674802892310815],[5.934848890401629,52.6746891000266],[5.934680465416863,52.67435454235207],[5.934511501025422,52.67399499278722],[5.934414828635115,52.673763738638534],[5.934262489233698,52.67345887706976],[5.934241551770422,52.67335421756469],[5.934222204055286,52.67321051242554],[5.934227555242169,52.673009400668846],[5.934242253636831,52.672687200866854],[5.934251474556068,52.672574256652325],[5.934312825991428,52.67217685528512],[5.93439085585946,52.67183891687821],[5.934442921320051,52.67162354675065],[5.934474952756029,52.671524541701636],[5.934503472370859,52.67145897237945],[5.934561346955764,52.67139467260857],[5.93462461178279,52.671355062623384],[5.934662254673155,52.67133579253899],[5.934734534151957,52.671315238658174],[5.93476599772043,52.67124488174294],[5.934864535022851,52.67099587689351],[5.935026627824066,52.67080499644598],[5.935080780983852,52.67075728314363],[5.935741789811293,52.670285780723745],[5.935895486575026,52.670218510080964],[5.936054885247859,52.67018238841501],[5.940091374307265,52.6704251555067],[5.940101094072984,52.67042651499997],[5.940559041955471,52.670453593736504],[5.940862350139039,52.67047240284679],[5.941230378895408,52.67049456020928],[5.941223270342469,52.67055385276931],[5.941638867438394,52.67057438342297],[5.942063433841912,52.670482250151885],[5.942334763274882,52.67043829471552],[5.94273414118526,52.67038194482434],[5.943107806265143,52.67033835153386],[5.943336023679879,52.67031959131484],[5.943635456504158,52.67030611347131],[5.94404107981843,52.67030533882674],[5.944176878945877,52.670266787791945],[5.944462730220425,52.670147773393616],[5.944671501246933,52.67005271008569],[5.94544351442801,52.66969100577254],[5.94662717199529,52.66942228796213],[5.947739711228365,52.66915670119528],[5.94836536091474,52.66898552215054],[5.949742203203033,52.668707716177074],[5.951178323869849,52.66842427734685],[5.952444065935069,52.66814949406928],[5.953177960131112,52.66795614910467],[5.954076430330223,52.66771848302168],[5.954196547703178,52.667719034557486],[5.955569401996192,52.66824581108821],[5.955668403586007,52.66825657083827],[5.956202607473421,52.66821553969413],[5.958201709877788,52.66785321066287],[5.958945181084224,52.66770584321262],[5.960614270286583,52.66736949244002],[5.961460887335763,52.66718004604708],[5.961704518863512,52.667122979678076],[5.961940422537641,52.667075499927236],[5.962129065062292,52.66698190772055],[5.962693479917641,52.66665676245448],[5.963052237111518,52.666448882216194],[5.963154625096136,52.66641861626948],[5.963382728040782,52.66639307764521],[5.963726332542636,52.66635096971866],[5.964583494673074,52.666245984926896],[5.964617665057614,52.666367987880015],[5.964936470280478,52.66684669195266],[5.965173760051481,52.667115714556964],[5.965600691652428,52.66713919611322],[5.965810268706475,52.66712750502071],[5.966072819411511,52.66706921331481],[5.966365869163963,52.666959098031725],[5.966923298672681,52.66657948188213],[5.967583186079731,52.66619346466479],[5.967965057388225,52.66597141509632],[5.968316540950098,52.66593178258287],[5.968449074424719,52.6659109135841],[5.968480917621386,52.66592592286183],[5.968582045653549,52.6659054885527],[5.969531519687044,52.66569160968011],[5.970456472847308,52.66538853251418],[5.97081263030195,52.665266581274906],[5.971119201506768,52.66508083976102],[5.971837550298664,52.664631601196824],[5.972511276158254,52.664180050689815],[5.972912438239102,52.66391828888967],[5.974602606091631,52.66282727588681],[5.974841929810158,52.66269297050885],[5.975287088033427,52.662493331638885],[5.975981186444915,52.662136868692464],[5.977475946061293,52.66146749344348],[5.977724359633705,52.66135757140509],[5.978577104056019,52.6609682871723],[5.979392079876339,52.660622156242894],[5.979546519205472,52.66049753162736],[5.979553611791852,52.660492440991305],[5.979871711709503,52.66025915403801],[5.980297716684729,52.659944444066376],[5.9804003911051,52.65986894442238],[5.980553214827247,52.659744607817835],[5.980899359975608,52.65946820936708],[5.981208953690173,52.659221760810816],[5.981301713745126,52.65914771460108],[5.981580217950684,52.65892501270309],[5.981866691800189,52.65869412696353],[5.982177459409216,52.65836453832529],[5.982396573302134,52.65817358687007],[5.982685703251881,52.65791797008053],[5.984059036814572,52.65718480358649],[5.984997428550244,52.656956251283766],[5.9852361277599,52.656899441463],[5.986069368588534,52.65676774255281],[5.986753750950263,52.65665981566522],[5.987735819797337,52.65650319940913],[5.988713514662821,52.656348000945755],[5.98981080178153,52.65617449600775],[5.990660112253483,52.656037906641934],[5.992832282684582,52.655693490987],[5.993133213456106,52.65564617838288],[5.993535749099836,52.655582058381725],[5.995688794478601,52.65524386570594],[5.996402636633406,52.655132362964046],[5.998565969318883,52.654789852963525],[5.99926043781209,52.65468095984337],[5.999540575924009,52.654633738018006],[6.001086903563651,52.653930937814124],[6.001706676047788,52.653650256758894],[6.001928321290266,52.65354912607631],[6.003468843023285,52.652849133863874],[6.004048915989112,52.65258830399333],[6.005564267347182,52.65189290755404],[6.005794811317555,52.65178554543984],[6.006928149519744,52.651266528568826],[6.007116882603733,52.651125398399394],[6.007913796345966,52.65052639876478],[6.008140440909364,52.65035614172243],[6.008355434170863,52.650194933257914],[6.009343791524632,52.649453934061526],[6.009533876223936,52.64931167125384],[6.010551655880703,52.64854775825086],[6.010740109838031,52.64840494030386],[6.0108541136242,52.648319804585746],[6.011488760153711,52.647844643522795],[6.011655542944908,52.64772075539396],[6.011785754685979,52.64763918512042],[6.011986418531293,52.64751118655194],[6.012459279864594,52.64720425613174],[6.013156316074108,52.64675122491859],[6.01330845106232,52.646653248089514],[6.014424139916332,52.645932037217065],[6.014510605996437,52.64587569187087],[6.014626123113181,52.64580065690081],[6.014913215298408,52.645614902365935],[6.015026831971608,52.64540675244942],[6.015248595440072,52.64499553827877],[6.015339239418576,52.64482795205591],[6.015732359070268,52.64411419458636],[6.015997773681115,52.64396365885601],[6.016211694691161,52.643844569154155],[6.017300699170179,52.64323496841715],[6.012528546920547,52.63949282628755],[6.012047268531989,52.639104130376424],[6.011450602064933,52.63863543548407],[6.010519911156544,52.63790420686686],[6.010491429071323,52.63788160768317],[6.010461718069141,52.63786996682021],[6.010236799781112,52.63778211563387],[5.998387688889007,52.63314555467911],[5.988626472779836,52.62932437588587],[5.986272333013734,52.62900823276869],[5.985628202066978,52.62892188627342],[5.981015525868005,52.62830215772942],[5.974325518444553,52.627403254987016],[5.971495577357742,52.62702288885078],[5.956928883993397,52.62506363248602],[5.956539145719026,52.625011295855536],[5.956497304820862,52.62500559890626],[5.956176914667814,52.62496247864654],[5.955285322080664,52.6248423281019],[5.955620205091835,52.62291717125549],[5.940349544008636,52.61811338345406],[5.932690355455285,52.61492293511527],[5.932222239923527,52.614884641966356],[5.922277702943034,52.614073814205945],[5.921887197331814,52.6140418703281],[5.915663917620214,52.61353413510798],[5.910608251818659,52.61765554469732],[5.910601855446878,52.617660909502355],[5.908193921970968,52.618390191815124],[5.905470248539953,52.61921545007066],[5.891568750085548,52.61733460321468],[5.89154772315552,52.61733188397717],[5.867371685790345,52.614056801665434],[5.857651077893583,52.612738346083724],[5.845218027216204,52.61105072063861],[5.84515981365274,52.61104279998249],[5.844297679063319,52.61092563642021],[5.840524634610121,52.610413220771896],[5.837213983954114,52.60733111765176],[5.811383593007301,52.60742336934814],[5.77796785944832,52.607534362646234],[5.777855902710792,52.59491922564868],[5.777759721995164,52.58407504736402],[5.777751380079509,52.58313422312575],[5.77775017987338,52.58299885675551],[5.77794912810884,52.582998202112265],[5.777930090565951,52.58085199956787],[5.803127179187394,52.580766395051945],[5.803319196714511,52.580765159564315],[5.803544618967964,52.58076184200585],[5.803664927520146,52.58075917320848],[5.803786385918749,52.58075593855066],[5.803887099293966,52.580753339185385],[5.803982271050603,52.580749633984865],[5.804099801505774,52.580745569791205],[5.804185522360886,52.58074189851455],[5.804282539704332,52.580738188388274],[5.804371016100053,52.58073338299076],[5.804461569442903,52.58072885242733],[5.80455165567186,52.580723761733225],[5.804662025083785,52.58071803704607],[5.80475740023512,52.58071152288904],[5.804864070367818,52.580704968918845],[5.804959215311488,52.58069845540947],[5.805057350069514,52.58069108829555],[5.805154098298254,52.580683446478],[5.805243710725353,52.58067695221791],[5.805325711069565,52.58066992209763],[5.805407018287531,52.580662614858525],[5.805499151892977,52.58065470771408],[5.805596580011776,52.580645657532685],[5.805887684662175,52.580616264752344],[5.80601595702144,52.580602612711616],[5.806176226161772,52.58058407268312],[5.806372870708277,52.5805606290769],[5.806672409441631,52.58052137522346],[5.806951425472296,52.58048135107041],[5.807221668443976,52.5804402338918],[5.807485439169863,52.58039717259706],[5.807669095537621,52.58036562766489],[5.807696942047979,52.580360755002985],[5.807832716655537,52.5803361216473],[5.808014738553375,52.580302335154606],[5.808196052169879,52.580266867579546],[5.808397599807086,52.58022598950662],[5.808470070174888,52.580210847663984],[5.808569222371501,52.580189713635626],[5.808617074281667,52.58017943311333],[5.8086759652208,52.58016658436532],[5.808820195994715,52.58013461680553],[5.808919793478946,52.58011179489139],[5.809003517997143,52.5800924004133],[5.809209596357714,52.580043360601486],[5.809379548523554,52.58000119115164],[5.809516376340842,52.579966439649986],[5.80964928411002,52.579931702837975],[5.809695958789546,52.57991917925225],[5.809802187450618,52.57989071595546],[5.809994168008317,52.57983807523127],[5.810248654680642,52.57976527052943],[5.81046426669069,52.57970102944622],[5.810628831962999,52.57965016964435],[5.810772014849729,52.57960528514599],[5.810902543223219,52.57956297195881],[5.811022032332398,52.579523506558395],[5.811143583427739,52.579482629862675],[5.811307860184513,52.57942587270017],[5.811472355590819,52.579368271521695],[5.81163660297333,52.57930870638402],[5.811760178411514,52.5792627664777],[5.811876625132366,52.579218537055425],[5.812005927241497,52.57916892577782],[5.812143258096313,52.57911507238914],[5.812278736408329,52.57906038246784],[5.81238045389204,52.579018732505375],[5.812497086114469,52.57897000907001],[5.81260360948295,52.57892497237102],[5.812725967027054,52.57887229446557],[5.812861166129616,52.57881283083745],[5.813010350928939,52.578745453031274],[5.813135653372378,52.57868770969681],[5.813240527643584,52.578639025911286],[5.813315561523561,52.57860337013999],[5.813856503676011,52.578333775610126],[5.814378175056655,52.57805048572164],[5.814880349396166,52.577754063245045],[5.815361188094159,52.57744507676046],[5.828334111544789,52.56875461778126],[5.846335734341921,52.55668687648847],[5.855076203535798,52.550824166686446],[5.85635890235053,52.54584404009512],[5.85701381871645,52.54587009599658],[5.857162254962414,52.5458358055781],[5.857304714450568,52.54578103668729],[5.857501670295484,52.54569571839658],[5.857600695125186,52.54565038906121],[5.85772587327761,52.54516345182794],[5.857761044364124,52.545027097203636],[5.857869630436504,52.5446045418036],[5.856844914190616,52.5439609494469],[5.856903076170426,52.54373407048976],[5.857050365707586,52.543160261534794],[5.85895244596691,52.5366798401784],[5.859054317550576,52.536342969121755],[5.859252276887365,52.53568863095816],[5.861139672657857,52.5310733848526],[5.860607962317922,52.52828127030816],[5.860753415366247,52.527867550731344],[5.861836526325914,52.5247864413573],[5.862625439258481,52.523345296784036],[5.862055313567763,52.52158295832923],[5.864191368568885,52.51978139811845],[5.864502378421083,52.518653068096945],[5.864310266261407,52.51817329451954],[5.864293944817463,52.518132636377054],[5.863552754527736,52.516281960760246],[5.863249954937984,52.5155257047741],[5.862911947399231,52.513722835183486],[5.862881899375981,52.51356174461098],[5.862875064317484,52.51352554010645],[5.862308231219719,52.512314790601],[5.860180887114844,52.50777087838657],[5.858767768679145,52.50475195116318],[5.858716433570986,52.5046426199331],[5.857285110582201,52.50168890670025],[5.857133220538089,52.50119014361445],[5.85670618302864,52.499831359009924],[5.856698085862344,52.49980555304549],[5.85152871843779,52.495793070301616],[5.851009558526988,52.49538982378205],[5.850762570584149,52.494721505389336],[5.849369068629655,52.490947156188916],[5.849257791416416,52.49064594811297],[5.848285878865562,52.48681826149854],[5.847867025107644,52.48516787968893],[5.847813768607073,52.484957723961834],[5.845567973628417,52.48031962065448],[5.845591315136289,52.478201853758215],[5.84529664962669,52.47784236998364],[5.844618581377829,52.477014769362555],[5.843476805408002,52.475621334966256],[5.842648587148915,52.474610618001385],[5.842576747478179,52.474467936261924],[5.84147241361688,52.47227473228523],[5.840415716454014,52.471217971779005],[5.840231938931737,52.4710341502801],[5.831353823128478,52.473340187876104],[5.829304165983648,52.47095212316987],[5.828848962371472,52.47043338696674],[5.827548021163794,52.468922150694645],[5.82730096375981,52.46863518722088],[5.825058246815141,52.466048635766626],[5.824343912888611,52.46524015098576],[5.823273829727682,52.46400297515927],[5.821363355414819,52.46181647721628],[5.820574335508739,52.46092707496893],[5.819953741205735,52.46021315095172],[5.819945032166954,52.46021599135608],[5.817031758774146,52.45685684000685],[5.81585088651435,52.45548378123943],[5.815628625535767,52.45522535189022],[5.81721726082908,52.45394842339772],[5.817642858140444,52.453606194218644],[5.820799055556924,52.451068910907345],[5.820920381076014,52.4509715695593],[5.822441895045953,52.44974818007195],[5.822404079304883,52.449712368867836],[5.822411375969686,52.449706443545686],[5.82145862534236,52.44881174822991],[5.819016167766355,52.4464847594209],[5.814318038669184,52.44200802250685],[5.813709674007372,52.441428271162714],[5.809705731719494,52.43761196060167],[5.811475094867964,52.436923142914864],[5.811428313413996,52.4368848329768],[5.8115576673245,52.43683606151602],[5.810728674101189,52.436143898229176],[5.809986429990149,52.435702789644715],[5.809805168299253,52.43560934674422],[5.809482330828586,52.435439735603175],[5.809108485017782,52.43524558862554],[5.808658446781549,52.435012391970076],[5.807955810553132,52.43464892687179],[5.807184823843601,52.43424834682602],[5.806876774510036,52.43408541591325],[5.806423744407295,52.433606748792],[5.806378875349728,52.43357545026278],[5.806354507057041,52.4335496972858],[5.806126409309154,52.43338564020307],[5.805829720428767,52.43315947218226],[5.805683721830152,52.43305129444784],[5.805219115092646,52.432706633884415],[5.804816507251836,52.43240640936265],[5.804405536412873,52.43209554020415],[5.804270470812215,52.43202551932296],[5.803929259254361,52.43185118175604],[5.803663023513541,52.4317097220982],[5.803555009062422,52.431657299977026],[5.803281169670019,52.43151305758015],[5.8029717892194,52.43135152413691],[5.802563599137841,52.43113865981228],[5.80203331049013,52.43086555670543],[5.801768506814972,52.43072829934384],[5.801346116737616,52.43056800112356],[5.800624887022087,52.430290501973346],[5.800287357730032,52.43016332664689],[5.800075555901158,52.430067167665996],[5.799800913347,52.42993275061993],[5.799497889134211,52.429785229923425],[5.799430669378991,52.42974586204278],[5.799203609383337,52.42963880147628],[5.798790915742,52.429432399185394],[5.798198769832861,52.429148258541666],[5.797791446582841,52.428949978658686],[5.797510371053689,52.428814174751174],[5.797192833234355,52.42866051859941],[5.797108900789561,52.428627105794384],[5.797041229940828,52.42858830074041],[5.796885905860907,52.428511320468864],[5.796561244243687,52.42835684603323],[5.796333013701404,52.42824585195665],[5.796244176917299,52.42820374923357],[5.795785904228011,52.42798429297197],[5.7957252290383,52.42795641616946],[5.795607722713373,52.427894189855074],[5.795079530027165,52.4276151489724],[5.794681281387215,52.427401379325744],[5.793907540261143,52.42697432138481],[5.793053332676814,52.42648827290232],[5.792569220836961,52.42622788700117],[5.791250887169319,52.42530049459936],[5.790826699933867,52.42495872950657],[5.790176863415433,52.42443179985499],[5.789790169933273,52.42411883080533],[5.789221362423158,52.423658465385515],[5.787259641288638,52.422538012730286],[5.784113772334432,52.42119428443293],[5.783901872486614,52.42110371499817],[5.783051354280262,52.42100517081085],[5.779431506535871,52.419152576980586],[5.777984087258412,52.41829961169251],[5.777912976221502,52.41825771713192],[5.776575741810742,52.41749565053273],[5.772556699528587,52.415416380334946],[5.772363774556646,52.415310000256866],[5.77215649138156,52.41518990387834],[5.768594095760453,52.4131267082615],[5.762009215339104,52.40994619531572],[5.75810537388064,52.40840729013725],[5.756331749824446,52.407390776990106],[5.756292092265157,52.40742628923902],[5.756068520044479,52.407298070027835],[5.756012710869988,52.406993509202486],[5.755983843374994,52.40683603605229],[5.755036902731577,52.40625675499931],[5.754586635050235,52.405981504685286],[5.754315462059036,52.405815513058776],[5.753050551468393,52.40504172272972],[5.746585524719309,52.40298988902009],[5.744641294949847,52.401428004009375],[5.742585184543329,52.399982699754446],[5.741154272470395,52.399275001358774],[5.739427693989566,52.39842099500486],[5.739148402325394,52.39846283167957],[5.737421961679247,52.39872044724239],[5.735373547565428,52.40066106927091],[5.733396970219871,52.402533193856954],[5.730953226013673,52.401568253451885],[5.729446864759201,52.40097325926752],[5.730913489657025,52.39958407875539],[5.733287923622389,52.39733475688094],[5.733472052845725,52.3971603642037],[5.72879110801455,52.39531128925102],[5.727387176945161,52.39367481602639],[5.727331357824643,52.39360981640445],[5.725299822697269,52.392646381153654],[5.725197995648091,52.39259808327442],[5.725093402152591,52.39254838844489],[5.722296458214907,52.39122168300103],[5.721392081624156,52.39076587287934],[5.720687361705495,52.39042464607915],[5.719907368289103,52.39005301407216],[5.719292528626362,52.389757308166494],[5.718578420279805,52.38941469218804],[5.717776983594253,52.38902541139881],[5.717005358365093,52.38866131882544],[5.716452749431395,52.38839519613673],[5.716242902133849,52.3882941066889],[5.715602104863177,52.38798862404288],[5.715559940226542,52.38802862441697],[5.715307853423961,52.38826693327057],[5.715161476483853,52.38839878175455],[5.714817187447031,52.38870896449591],[5.713826199671867,52.388442637629794],[5.713667995929847,52.38840291130002],[5.713059782765699,52.38825039371714],[5.712246885041734,52.38804114036976],[5.711307068416505,52.387800490319975],[5.710098647771096,52.38748613884505],[5.708709097287685,52.38713238393493],[5.707659823852472,52.3868577379775],[5.706920021381325,52.38665667689658],[5.706740460902221,52.38661390818463],[5.70578989628254,52.38605109550913],[5.704838517776423,52.38549922965608],[5.703703523522618,52.384846457384924],[5.702270040395981,52.38400825793946],[5.701133243872365,52.383349285893686],[5.700361005559761,52.38289745826441],[5.69929060012838,52.38227283930201],[5.699195383076501,52.382210738005874],[5.698741657360075,52.3819468000914],[5.698161282445237,52.38188204408235],[5.697113010567037,52.38175615836763],[5.696223463591412,52.38165063367782],[5.695635230439112,52.38157689641682],[5.69549075345003,52.3815587369058],[5.694407760208099,52.38142056156066],[5.693723006058606,52.381226856174564],[5.693092492085567,52.381043680296386],[5.691728893218419,52.38064359768423],[5.690910082021555,52.380407250362246],[5.690093555395342,52.380167801594474],[5.6890390827154,52.379863513011585],[5.688573957959282,52.37973297453793],[5.688545678734248,52.379725182412045],[5.687324294608467,52.379608919796354],[5.686034046013997,52.37948832563549],[5.684981689612143,52.379389868352646],[5.683110278236144,52.3792136880388],[5.681547259917264,52.379066764084556],[5.6802517756496,52.37894780514452],[5.678925515670138,52.378824131911514],[5.678672706930869,52.378800039977946],[5.677631620827954,52.378700365284345],[5.676811406054387,52.378267037973536],[5.670523540646557,52.37494421091774],[5.656964555723046,52.36776419306405],[5.655315236503769,52.3668843479928],[5.654262523932379,52.366322755615585],[5.652557848561189,52.36541350683189],[5.644862251184621,52.37085847627219],[5.63681327418584,52.36861142006655],[5.636776507343369,52.3686011061773],[5.622000379876812,52.364473749743986],[5.614576469128386,52.36239751327993],[5.614579439253355,52.36239526066644],[5.614067196166754,52.36225693641416],[5.613557502487812,52.36167399773432],[5.611647367263089,52.35948971672533],[5.611015565384419,52.360104318959344],[5.609459486917146,52.36161604849669],[5.609390084222301,52.36168190082599],[5.608998543997976,52.36205253355092],[5.608796988823939,52.362205139057984],[5.608549685457313,52.36238423005779],[5.608096808472219,52.36264740360723],[5.607812804431332,52.36278190485216],[5.607593260870654,52.36287050511313],[5.607419224273391,52.362930653541135],[5.607416295537153,52.36294161219443],[5.607398209723894,52.36294894830294],[5.606836845548587,52.363124970155084],[5.606300899171165,52.36324701569467],[5.605902539321498,52.36331263279144],[5.605468764168111,52.36336061821118],[5.604955078558,52.363391898336594],[5.598596746713974,52.363583187053244],[5.597937047690367,52.36359138646806],[5.596986788085006,52.363568360964145],[5.595456164087485,52.363448047545724],[5.591157174620013,52.36291628371325],[5.587707176765478,52.36145439523416],[5.585681624981684,52.35994733250595],[5.575604191084984,52.35076050033497],[5.565863988673571,52.33238972277943],[5.565760968600663,52.33219524003023],[5.565720307182628,52.33211694079207],[5.565552144733278,52.3317981320335],[5.565309132152221,52.331334229478934],[5.564961515692383,52.33067809308868],[5.564643698298491,52.33007723888823],[5.564308129548642,52.32944832573894],[5.563930754132628,52.32873689996913],[5.563542989348397,52.328003862301024],[5.563113888884842,52.32718971363104],[5.56285109183504,52.32669437828664],[5.562593380820316,52.32620914589025],[5.562385755391817,52.32581034492995],[5.562305154613438,52.325655989792764],[5.562006131017784,52.325094703391315],[5.561635527971447,52.324396179521855],[5.561171657194255,52.323523093048124],[5.560808022187196,52.32284168843571],[5.560765777109331,52.322763951424804],[5.560685653913509,52.3226118404209],[5.560527268947768,52.32231323190356],[5.560371874933043,52.32201714790627],[5.560180954016146,52.32166044801965],[5.560002698356957,52.321319177293354],[5.55968594789715,52.32072167942396],[5.559378898211083,52.32014242227432],[5.559112976639714,52.31964736389475],[5.558804319655398,52.31906277060368],[5.558583849535953,52.31864347844743],[5.558307754556706,52.31812034639398],[5.557979506581246,52.317501234125416],[5.557642952882511,52.316864717435195],[5.557624257140987,52.31682963582985],[5.557303419128289,52.316225677571474],[5.557006604034108,52.315669149602044],[5.556655301166097,52.315003723343466],[5.556346701363827,52.314417156588036],[5.556123086006004,52.314002357857404],[5.556039075421274,52.31384350827263],[5.555619495444949,52.31305094390599],[5.555484704748615,52.312793301729954],[5.555421001617502,52.312671216537275],[5.555279316297752,52.312407685308294],[5.554648815306249,52.3112101290547],[5.554255359408665,52.310466111713254],[5.55392909589334,52.30985681442701],[5.553657939989165,52.309338999756974],[5.553585940669886,52.309200635000956],[5.553339513489199,52.30873811474792],[5.553001717418545,52.30810158654556],[5.552867892655445,52.30784871407737],[5.55267269108861,52.30747936961407],[5.552634862117459,52.30741032969006],[5.552579944578877,52.30730564331228],[5.552450984519895,52.30706596465516],[5.552294311987295,52.30676706150925],[5.552127513254002,52.306455253363424],[5.55159041161923,52.3054406735108],[5.551370298763242,52.30501940082679],[5.55118183420468,52.30466829927871],[5.551086096741543,52.30448783509934],[5.550754793145746,52.30385494271405],[5.550403687820828,52.303192304031285],[5.550080048360783,52.30258271133118],[5.549833908595042,52.30211540858847],[5.549601395523926,52.301677016185394],[5.549227492012236,52.300971714405485],[5.548850820459291,52.300258268689774],[5.548530220418801,52.29965316023994],[5.548464491013139,52.29953023074765],[5.548296128883692,52.29921504945739],[5.548112536371772,52.29886758593558],[5.54810031258691,52.29884401075046],[5.547872208114928,52.29841206816545],[5.547755977949577,52.29819455556808],[5.54661601331644,52.29603989190011],[5.54659318128248,52.295996388028],[5.546488487666984,52.2957990808825],[5.546267338253457,52.2953811698014],[5.546052406633846,52.294972236730835],[5.545807743913476,52.29450941687591],[5.545543485634571,52.29401011105117],[5.545448261946559,52.293833011686395],[5.545208221928842,52.29337889160871],[5.545169699674545,52.29330198580593],[5.545167394651371,52.29329805676237],[5.544769201559321,52.292549237656154],[5.538367899949443,52.28044383314605],[5.538171320560574,52.28006940739318],[5.538135149604363,52.2800034503756],[5.53620580210387,52.2763537876668],[5.534811992571618,52.27408051511193],[5.533630269893755,52.27304642996041],[5.533282204168575,52.27273846808907],[5.530111839687865,52.27203343988524],[5.529393653004457,52.27187140507033],[5.522166064532829,52.27040617930105],[5.519056255249845,52.26985751007679],[5.489743784888312,52.26468018291821],[5.480184125491867,52.26298969828082],[5.476849144489198,52.262399931911624],[5.476566307432654,52.26299249475432],[5.476121636447738,52.26392418821619],[5.473443039521905,52.26344280481232],[5.47252011653676,52.26327692122587],[5.472320195458079,52.263695838592135],[5.472298994671037,52.26373995052738],[5.471446959131085,52.263540584621936],[5.47055190089137,52.26334039993201],[5.469811996564393,52.263247110823386],[5.469054928105705,52.26315158205668],[5.469075218919761,52.26310887611853],[5.469128343206944,52.26299789612962],[5.469273571676963,52.2626933357117],[5.464459317803318,52.261827864535505],[5.464760946761747,52.26063706947237],[5.463376384425702,52.2600032113619],[5.460438022060349,52.25942676725864],[5.456249357111881,52.258604948090436],[5.4311391364937,52.25412001504852],[5.430639286062617,52.25403060328081],[5.426659092870696,52.25331916427529],[5.40672823025161,52.24975377285222],[5.402896782400731,52.24952712659034],[5.401847684567144,52.25013843157138],[5.398200094323609,52.25226416071176],[5.397907246998179,52.25243495569162],[5.397614397357936,52.25260546862297],[5.395155514200188,52.25403836953241],[5.393236254941698,52.255156620842676],[5.384679402134823,52.26035477705214],[5.380280743080259,52.26302621715959],[5.372554457989176,52.26771741077335],[5.365820128825435,52.27180525501075],[5.365478938295807,52.27201219079448],[5.350671150102174,52.28099629427156],[5.343237861131804,52.285504206607605],[5.341327116549637,52.286662617283206],[5.335857378679292,52.28997852602885],[5.321037389652278,52.29895888437388],[5.317474189434251,52.30111725949052],[5.315179126213415,52.30239213910099],[5.313898097413859,52.30310362803752],[5.307260029088324,52.3067904661069],[5.304799889779524,52.30793639453799],[5.301080431740354,52.30966865291431],[5.287397497330907,52.31505613870983],[5.284546299763922,52.31583731369757],[5.281141010895493,52.31677015547296],[5.279039995256941,52.31711484155975],[5.238075263695933,52.32382457102937],[5.237281143910887,52.32395445195167],[5.229321132122017,52.32525630427606],[5.22584907229719,52.3256271397654],[5.224590056661998,52.325761354792],[5.223967078547219,52.32582790410552],[5.223536013560713,52.32587393341127],[5.220405624567927,52.32605381182036],[5.218618062267464,52.325820408489804],[5.212926298733336,52.32507714486298],[5.205188183083896,52.32418892358128],[5.190657198379571,52.322701539931515],[5.167200756403646,52.32029678752417],[5.151132273309986,52.31864663877659],[5.148879165538069,52.318729192192734],[5.146144506418332,52.319669608321064],[5.143979343319233,52.32155146917095],[5.142304520376834,52.32283999656279],[5.138441026190802,52.32581191878834],[5.138343656973633,52.325886985949744],[5.137865776010759,52.32625447431004],[5.134608618284189,52.32870878789156],[5.116204841536136,52.34263548767512],[5.114926372446681,52.34360265882664],[5.095119573345684,52.35857718644413],[5.079289013034908,52.37040777493531],[5.079226137121051,52.379465723798035],[5.079162324454694,52.38865425398802],[5.137331117368459,52.415552764432995],[5.166727767558841,52.41561136926763],[5.185489765027637,52.415645061189146],[5.182138174297843,52.4205818760874],[5.180911259243456,52.422389043108865],[5.173298445410278,52.433598114811275],[5.16658906752447,52.443472037007055],[5.161097220899183,52.451550400997824],[5.15102385162372,52.46636003469292],[5.125614163713493,52.48742712766095],[5.120204690226855,52.491908770404166],[5.100721680589948,52.50804059765533],[5.094609525516439,52.518810500471254],[5.092061834900493,52.52329785848872],[5.071662089081169,52.55919457386708],[5.060428205379767,52.578936134322305],[5.074623579958102,52.58368165784579],[5.109223916148387,52.59523724191678],[5.165735324331707,52.61407587785895],[5.217788101820324,52.631389934399806],[5.25718667966221,52.644470715529636],[5.260783895971262,52.667391443558785],[5.262266083155086,52.676829321326544],[5.264480772228277,52.67796678924265],[5.276294383531056,52.684032764954736],[5.283678343179168,52.688335162569146],[5.285048226995266,52.689133091431046],[5.286450445483907,52.68874925214466],[5.286474304098332,52.68882622285646],[5.286476827168553,52.688834650230866],[5.286498384324485,52.688906563845826],[5.286673625344219,52.68937992996474],[5.286810117874759,52.6897207060255],[5.287215343067196,52.69068685857096],[5.287450216801153,52.691263903304936],[5.287610210469602,52.69164120730369],[5.287618958860754,52.69165637913986],[5.295777273756641,52.69284469698697],[5.301635372594839,52.69242666116211],[5.353294455287148,52.678637374738365],[5.358624108841331,52.67669197054898],[5.361147023453257,52.67572645056961],[5.361353120321907,52.67686839830214],[5.366146329756101,52.70340432882633],[5.369396478888041,52.721378585463306],[5.372649059522195,52.73935267086377],[5.377259865382121,52.76480536604653],[5.402022538053935,52.76855959731646],[5.446481664247014,52.775285756325495],[5.498367869425915,52.78311194952007],[5.520610480150577,52.78645910655358],[5.631350068215266,52.80305440543778],[5.632377457514132,52.80405711923703],[5.638507321323536,52.810032844551245],[5.639332980876362,52.810837092251504],[5.639479333234362,52.81098000751479],[5.640587261941304,52.81205998842551],[5.643721381894546,52.81511099490255],[5.648685805440302,52.819946820563736],[5.649988172022766,52.82121556668015],[5.65720311143975,52.828237102592446],[5.657826769913842,52.82884340919272],[5.657897909562675,52.8289128940421],[5.660295729352161,52.83125012616721],[5.66913075672809,52.831887824600145],[5.670067853917849,52.831955251488765],[5.67069067614603,52.832003758910524],[5.670809902903328,52.832012461890116],[5.677433022301094,52.83249134411047],[5.686286660218388,52.833132220137415],[5.698055558272404,52.833981674455416],[5.698822477567306,52.83403696168292],[5.703103191609115,52.83434584226195],[5.702780512851183,52.83599349790031],[5.702903691391571,52.83625827828557],[5.703300000997129,52.83639258823817],[5.703737004743793,52.836318412176475],[5.703959022884018,52.83607855329075],[5.704281657860182,52.834430894536325],[5.709636075425635,52.83481643608795],[5.709910906294924,52.83485781720712],[5.710161670045362,52.83490544121881],[5.710353993480959,52.83495153815906],[5.710584293516782,52.83502224502081],[5.710776569341544,52.83509305466472],[5.710968241358844,52.835176223164794],[5.711258242866455,52.8353242754034],[5.711442053928033,52.83544172516934],[5.711613507528888,52.83558055154703],[5.711746585507877,52.835703755551876],[5.711871178919088,52.8358393391416],[5.711973481969395,52.835971051678534],[5.712070068253748,52.8361443428981],[5.712118928836204,52.83626047432899],[5.71228589964004,52.83682505378408],[5.712450020055944,52.837379530741664],[5.712035866255476,52.837439073172604],[5.711991857241935,52.83744537140206],[5.711950199581066,52.83745615742457],[5.711906682737831,52.83746638503492],[5.711866443236763,52.83748109791824],[5.711825284849448,52.83749637585351],[5.711788790091721,52.83751557093008],[5.711751599320403,52.83753476878903],[5.711720001442786,52.83755732139742],[5.711688632066268,52.837579873375255],[5.711663778907769,52.837605215930786],[5.711639151569765,52.83762999620175],[5.71162150197946,52.83765756579979],[5.711604305550931,52.837684010832625],[5.71159430736644,52.8377115596031],[5.711584533819935,52.837737984432195],[5.71158079656987,52.837765516163266],[5.711580846584996,52.83777225600126],[5.711580432110732,52.837778997103264],[5.711580250623079,52.83778573757124],[5.711580300644821,52.83779247830782],[5.711580350653243,52.83779921724715],[5.711580863674053,52.83780595582518],[5.711581378179018,52.837812694399105],[5.711582816011866,52.83781886879592],[5.712514552318792,52.838261729613635],[5.712575986532129,52.83829076849319],[5.712510975403565,52.83837294803729],[5.713002591648808,52.840212180247654],[5.712917903256778,52.840268016426904],[5.713877973637599,52.84027325263075],[5.716527097071642,52.84245757684733],[5.716962747763264,52.8422603518544],[5.717084595249289,52.84227349467799],[5.717197845185105,52.842345635891554],[5.71792830859817,52.84295470198594],[5.718100174148775,52.843110929287484],[5.718403458012343,52.84337968573383],[5.719330535750776,52.84388653560768],[5.719732293343744,52.84402021496434],[5.720754449867989,52.84433975448266],[5.720848430917657,52.84440801447542],[5.720958740919111,52.844458255441744],[5.7210388192626,52.84446701785032],[5.723475900524011,52.84406194802314],[5.724154453641001,52.84396904346312],[5.724737636519726,52.84389943241285],[5.725064100663604,52.84386087617674],[5.730260223891184,52.84290637216763],[5.734842596944845,52.84207924703827],[5.738267662809464,52.84145811904025],[5.744505158714611,52.84033928610027],[5.748735941800266,52.839571091034514],[5.748894371953805,52.83952118392147],[5.749043643762287,52.8394291795028],[5.758171686948822,52.833775478188954],[5.758176067186593,52.83377265622537],[5.773577998128059,52.824100678763656],[5.773583764466181,52.82409729006052],[5.780015846628344,52.82006145633909],[5.783965180021477,52.81765341564099],[5.784165972710968,52.81753423469851],[5.784344129087454,52.81739827965895],[5.784477224645034,52.817200689111374],[5.784722442829929,52.816436000603666],[5.784820516655008,52.8164401667772],[5.786939801435425,52.810557443284495],[5.787008262928494,52.81041623514836],[5.787056131121268,52.810303740381485],[5.787110088457625,52.81019852687607],[5.787734753523477,52.808138467359434],[5.787830340562354,52.80787303634189],[5.787929218422832,52.80751154928246],[5.78802620937032,52.80724779924811],[5.788351578454411,52.806341851783934],[5.788492526100063,52.80602066279074],[5.788587473829655,52.80586307586854],[5.788672543045841,52.80576561920039],[5.788719876771139,52.805747486216255],[5.788688858394674,52.80559930946089],[5.789764724081709,52.80373991524847],[5.789802758981748,52.80369373054258],[5.793757364720515,52.805735458515485],[5.793907278537404,52.805760223026866],[5.793919111389584,52.80576186765179],[5.79406258379825,52.80586641132923],[5.794218421859893,52.80597989754175],[5.795202955505224,52.80650113167021]]]]}},{"type":"Feature","properties":{"id":15,"statcode":"WS12","geometry_g":"polygon","gag_id":"1","hierarchie":"2","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.12.12_HH Hollands Noorderkwartier_p","sde_id":null,"land_code":"NL","inspire__1":"NL.12.12_HH Hollands Noorderkwartier_v","inspire__2":"NL.12.12_HH Hollands Noorderkwartier_l","wbh_code_o":"12","einde_leve":null,"laatste_wi":null,"admin_code":"12","waterschap":"HH Hollands Noorderkwartier","publiceren":"12","Aangemeld":1,"Actief":1,"KVK":37161516,"tnostatus":2,"CPT":5084,"GMW":10,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.043616479213554,52.94448469801833],[5.044699196277735,52.94437450525151],[5.044742471048112,52.94437462924604],[5.044973465096748,52.94434914050701],[5.045420954152789,52.94430684599759],[5.046098904742235,52.94430878262455],[5.046560345745874,52.94432752314284],[5.047496557707955,52.94450450516292],[5.047640676712077,52.944522339237714],[5.047727550846754,52.944479011099155],[5.047814846578965,52.944383392413165],[5.047757835092127,52.944296071727095],[5.047685919103709,52.94426971713868],[5.047268281418722,52.94418138030778],[5.046677441150689,52.94410997326844],[5.046028625946009,52.944073255966515],[5.045466072656731,52.9440716489169],[5.044051681626592,52.94417218908982],[5.043300666773725,52.944292047594296],[5.0425207880178,52.94441181815069],[5.041653802753812,52.94460105708589],[5.041017615908416,52.944790949423776],[5.04026552722354,52.94504152846307],[5.039507939222934,52.9453444952813],[5.038948440434901,52.94559549129302],[5.038282141208017,52.945942174346854],[5.038151809158922,52.94600280228205],[5.038136596518251,52.94609863342589],[5.038222676141383,52.946159893230444],[5.038308950324637,52.946195003207556],[5.038424419218484,52.9461866234128],[5.038641622911589,52.94608267363926],[5.039220912217981,52.94579674377933],[5.039799970754522,52.94553696076701],[5.040378844197852,52.9453033247419],[5.041073161972954,52.94506130348754],[5.041680576441701,52.94486260192643],[5.04257634299944,52.944682162566515],[5.043616479213554,52.94448469801833]]],[[[4.794329223305128,52.931979965180176],[4.794413798439005,52.93047120303088],[4.794403493227977,52.93045656762982],[4.794414208283608,52.93046391607467],[4.794413798439005,52.93047120303088],[4.794503314738304,52.930544302490496],[4.794506224812043,52.9308150277033],[4.794527369397065,52.931197321465675],[4.794499904840959,52.93175742357962],[4.794473773464142,52.932160142778],[4.7944755945524,52.932243934263084],[4.794504358355619,52.932297554980806],[4.79454834989145,52.93231738184123],[4.794581341933985,52.93227654078742],[4.794585875880419,52.93220663897666],[4.794575336327206,52.9320323106442],[4.794583710052957,52.93190090508966],[4.794606589318577,52.93185003879948],[4.794664659446988,52.9317903236458],[4.794659144405722,52.931761772101126],[4.794645130072066,52.9316328004877],[4.794640308428241,52.93161440807497],[4.79470916560078,52.93139566655978],[4.794696746844383,52.93133985154204],[4.794730389959898,52.931288238798345],[4.79468703304475,52.931084891885625],[4.794702967870851,52.93088182911135],[4.794724408484009,52.93075846117137],[4.794763067864527,52.93033843199349],[4.794818422086434,52.93014353659416],[4.794847313645917,52.92995647204313],[4.794923511630419,52.92968202313755],[4.795200671203199,52.92916280592116],[4.795303253765762,52.92888449833024],[4.795311045052745,52.92879690905906],[4.795278377245946,52.92877683300983],[4.795103964601175,52.92900698605073],[4.794894719276336,52.929376365528555],[4.794713160083351,52.929646319923606],[4.79456081608558,52.93019124471824],[4.794421175671838,52.93024996024241],[4.794453847815993,52.93003444784991],[4.794471645937739,52.92981885804968],[4.794624383154455,52.92952305864104],[4.794731043603037,52.92933487094642],[4.795352681075943,52.92845727175812],[4.795458971620464,52.92829603940728],[4.796483337063458,52.926924853859525],[4.79651407717882,52.92704232534391],[4.796513009484642,52.92712118518118],[4.796605447985783,52.92710570992647],[4.796692160050502,52.92702648172938],[4.796853814417516,52.926764396922366],[4.79700851577197,52.92653016282095],[4.797135397474902,52.92640332335318],[4.797276081353438,52.92622995840113],[4.79727699686867,52.9261622492099],[4.7972180203026,52.926138061812885],[4.797112478487915,52.92614948368345],[4.79703440762141,52.92616503210193],[4.797179576895359,52.925956418068324],[4.797489361401027,52.92551126175487],[4.797587426694816,52.925507070984196],[4.797694414025647,52.925526111279545],[4.79776158138118,52.925512926917264],[4.797788430405155,52.92547721110439],[4.79779218878524,52.92544336919097],[4.797842098485154,52.92540776803766],[4.798022785132071,52.9252074951561],[4.79826236983001,52.924876190865874],[4.798284791295221,52.924820199200475],[4.79826363692359,52.92478551373085],[4.798228227058084,52.92477150974197],[4.798191320619667,52.924773637328],[4.79814275167215,52.92479261111752],[4.798052088846449,52.92482136137245],[4.798013908183943,52.92482424557881],[4.797990938784466,52.924822785207375],[4.798102839427677,52.92466493095685],[4.798137856501446,52.92468499987422],[4.798186143754282,52.924686773768094],[4.798276558799333,52.92467646351163],[4.79832491122703,52.924673628463715],[4.798360636548946,52.924665356295165],[4.798393980815938,52.924643997832966],[4.798440463042351,52.92459120711383],[4.798529085987957,52.92443155725008],[4.798538556967002,52.92438854930408],[4.798524851428716,52.92436848577025],[4.798485460517398,52.924365218253044],[4.798452981953897,52.92432354117746],[4.798441574366086,52.92432041155273],[4.798348986645738,52.92431768160719],[4.798423230923881,52.92421296768025],[4.798505284248042,52.92421616597928],[4.798567641137563,52.924213399845975],[4.798708918539272,52.924202567026335],[4.798791897787953,52.92417790326044],[4.798831580181594,52.9241573388524],[4.798835836838769,52.924125071999065],[4.798832378353517,52.92409814830056],[4.798813574226288,52.924078833429895],[4.798953580887381,52.92385218177211],[4.799106376414703,52.92364642195504],[4.799259136486792,52.92344528265176],[4.79953367444356,52.92304667750956],[4.799684510606164,52.92285560121765],[4.799763223425954,52.92276987904867],[4.799833606255564,52.922642283409914],[4.799821152572534,52.92262299991347],[4.799793412791844,52.922605959785244],[4.799701952773504,52.92259936321047],[4.799565165764559,52.92260188873386],[4.80015030971345,52.92177633103788],[4.800526472245563,52.92124559909381],[4.801455636612269,52.91995647926966],[4.802020973319805,52.91914409705877],[4.802415107015523,52.91857987042838],[4.802549705482781,52.91853887742242],[4.802674320710904,52.91852501889954],[4.802724163491884,52.91849574279595],[4.80327131863083,52.917851169778096],[4.803457462997041,52.9176475801996],[4.803631844619869,52.9174898560569],[4.803686877529878,52.91743031924733],[4.803660044718114,52.917408961873576],[4.803590078998693,52.91739221955166],[4.8035936493936,52.917364261785785],[4.803774152779725,52.91729665686293],[4.803917141176407,52.91710018880242],[4.804002821018141,52.91701571995841],[4.804278329492651,52.91669064626658],[4.804245082045938,52.916672150493916],[4.804250073604661,52.91665674490188],[4.804387914845943,52.91660725536541],[4.804538530023758,52.916437253276754],[4.804677588931998,52.91635449115085],[4.804822371077621,52.91626259944468],[4.804857688493569,52.916245401477724],[4.804906951674564,52.91625914846779],[4.804982932900532,52.91630196155245],[4.805116561548901,52.91632962737021],[4.805235550578458,52.9163302071623],[4.805331758734006,52.91629208750184],[4.805448857834744,52.91624249390237],[4.805526766422865,52.91626120683715],[4.805614323186258,52.916274168558445],[4.805883366675325,52.916194456144495],[4.805985371930615,52.916199777427124],[4.806087780434404,52.91617615571846],[4.806177030613966,52.916181407593726],[4.806442734246141,52.91613458562285],[4.80671297947887,52.91608383014108],[4.807458915308712,52.91588497725268],[4.80800825875305,52.91571312294715],[4.808359600716566,52.91561838124113],[4.808470023718368,52.915589980426496],[4.80854067687338,52.91555367546859],[4.809266113556356,52.915270254361886],[4.809572471055848,52.91513902250463],[4.809810124907139,52.9150157523836],[4.80988909054197,52.91495441515838],[4.809923231639851,52.914904417091684],[4.809963075018026,52.91486063832426],[4.810089045519764,52.91486124703281],[4.810150113569424,52.91482681793934],[4.810701877448681,52.914420152669905],[4.811101719374934,52.914091852051726],[4.811471006658325,52.91378258915789],[4.81168739135774,52.91357818887385],[4.811789630947012,52.913443650005476],[4.811883039635415,52.91325371926393],[4.811946851225894,52.91313153861875],[4.811967233172097,52.9130366315472],[4.811955648199262,52.912947851238464],[4.811908996204437,52.912857922492265],[4.811784473417658,52.912746697838294],[4.811657817681446,52.91267664737798],[4.811502262038063,52.912621214354196],[4.811429325576136,52.91258999387013],[4.81140269752511,52.91255418068417],[4.811398101774575,52.912344861015434],[4.811356194596643,52.91225689600781],[4.811313767419016,52.912208468544314],[4.811240768094192,52.91218207432961],[4.811122885347472,52.91217185422735],[4.810936336412103,52.91219304334568],[4.810870669563635,52.91221491437749],[4.810807926091554,52.912256084689744],[4.810735409438922,52.91231359842975],[4.810642015909344,52.912381626303066],[4.810438924997689,52.91242405097064],[4.810152874581206,52.91240723935837],[4.810006353391031,52.91239301556069],[4.809937768816714,52.912393663642774],[4.80986595240645,52.912398133335245],[4.809784141839972,52.91243439323796],[4.809638086544711,52.91250505851317],[4.809520261185873,52.91261154587339],[4.809461908146434,52.91268263507814],[4.809410672487132,52.91269781720172],[4.809351481884609,52.91271200015208],[4.809236615810094,52.912716270173384],[4.809029257846496,52.9127191209476],[4.808981500380487,52.91271311228519],[4.808868734083586,52.91267783317535],[4.80883888653088,52.91264393503947],[4.808844195468746,52.91260441977643],[4.808907056313159,52.912554569121326],[4.809040359492431,52.91247145140834],[4.809175532743844,52.9123795429329],[4.809296549904156,52.912272164602165],[4.809491081677414,52.912033064111604],[4.809696960026032,52.91185180370078],[4.809911208233289,52.91171319597882],[4.810106330131032,52.91162476731981],[4.810366965212117,52.91146962381581],[4.810552322838912,52.91142024790705],[4.810737177063933,52.91140996991714],[4.811027950526784,52.91141974936906],[4.811263265123919,52.91143484855803],[4.811575196687251,52.911410489810095],[4.811814297882286,52.911360390513195],[4.812079930812762,52.91130721118575],[4.812170712085207,52.911253198564246],[4.812240608190217,52.911176655717874],[4.812246912440975,52.911099813914326],[4.812242675458782,52.911019714052465],[4.813349715940723,52.91024026739134],[4.813819829983492,52.90994784513794],[4.814054920977405,52.90979841313541],[4.814135769955337,52.909693100841636],[4.81419895064083,52.90961912083876],[4.814314707637497,52.909559896458205],[4.81445369975692,52.90957078172355],[4.814480818022368,52.909522832621164],[4.814518590984246,52.90947173717327],[4.815232636639328,52.909161050639575],[4.815610472820284,52.90903465682794],[4.816333725018942,52.908706385081516],[4.816839604803358,52.90851328889504],[4.818537280776203,52.90792653496804],[4.819310502415119,52.90768228308632],[4.819403900384283,52.90764649322471],[4.820773264309115,52.907121646412755],[4.821218293581649,52.906984112729646],[4.824034484717486,52.90600539595752],[4.824776630671076,52.905740778335044],[4.825046064873173,52.9056135754841],[4.82756494076321,52.90483501689363],[4.827908313293775,52.90470256349376],[4.829569463666897,52.9044142861476],[4.830227613503927,52.904216264484944],[4.830980274440762,52.903845525790324],[4.832360572604417,52.903273820291716],[4.833399858831421,52.90287087859038],[4.834623624146186,52.90247996002574],[4.836633645069632,52.90160891711429],[4.838712656855804,52.900752687725046],[4.839190908504077,52.900576499478476],[4.839955627391356,52.90029477272038],[4.842188082035853,52.899486662162325],[4.842977711613967,52.89915042722141],[4.84299684653301,52.89914855534697],[4.843188955770392,52.89910353523458],[4.843348611764908,52.89908539150597],[4.843539774058246,52.899082954889565],[4.84385719289053,52.89913570403696],[4.844355396518631,52.89924240303319],[4.844390436873473,52.89924990346372],[4.844425504860478,52.899257333914015],[4.844786207226461,52.899333723329],[4.844821306466278,52.8993411609937],[4.844856831029354,52.89934773876532],[4.845156120414182,52.89940316997624],[4.845191748979417,52.89940975800513],[4.845227365566647,52.89941635405692],[4.845647914631493,52.899494045913286],[4.845684818249347,52.899497294767016],[4.845721695335471,52.8995005264145],[4.845983059836065,52.89952352170669],[4.846123021318788,52.899530967789644],[4.846160119230247,52.89953293409122],[4.846197203559051,52.899534917394234],[4.846237631111103,52.8995370686027],[4.846538651638097,52.899540310052686],[4.846566937608531,52.899538847487534],[4.846603981414901,52.89953690334007],[4.846641010134963,52.89953497708602],[4.846931486824073,52.89951957566022],[4.84696793712854,52.89951514931421],[4.847004372465046,52.899510730977305],[4.847228194077437,52.899483552311686],[4.847393492261856,52.89945750161654],[4.847429512103502,52.89945182314916],[4.847465517075283,52.89944614460366],[4.847650321238341,52.899417027420625],[4.847809639552056,52.8993829681403],[4.847845298355224,52.899375347711796],[4.84788092446396,52.89936772622644],[4.848170607866475,52.899305822483],[4.848246515491678,52.89928206305719],[4.848279416089826,52.899271535469886],[4.848554228777475,52.89918367331663],[4.848622135757424,52.899155608933185],[4.848652802275307,52.89914293235858],[4.84899618237649,52.89900099154645],[4.849027101047087,52.89898821626112],[4.849057992928777,52.89897544264438],[4.849217015098709,52.89890971230577],[4.849331943178025,52.89883799489331],[4.849357807192257,52.89882185464184],[4.849383686036613,52.89880571535022],[4.84945629091604,52.89876039942152],[4.849625131017781,52.89862605518844],[4.849723496215339,52.898506670741526],[4.84999638049739,52.89828392581476],[4.85005544673588,52.89821072612241],[4.850063776508359,52.89812553474377],[4.850046174503569,52.898059511947146],[4.850041231301613,52.89799745435953],[4.850094538261413,52.897897089224],[4.850123254199836,52.89775774644599],[4.850118127844445,52.897703445260746],[4.850068023197527,52.89766430794413],[4.849973095063634,52.89763258869211],[4.849902958659762,52.89763207632988],[4.84982603084999,52.89765088959016],[4.849780577504135,52.897685445183335],[4.849766874006766,52.897727979966845],[4.849771278085536,52.89781328166693],[4.849756571251826,52.8978984542186],[4.849703433059183,52.89799108160959],[4.84961241686656,52.89806792155748],[4.84950925089131,52.898117539358516],[4.849394073731566,52.89813605429632],[4.849278370755167,52.89817782315964],[4.849072253227916,52.89826930363252],[4.848712489041557,52.898390628339286],[4.848519099728725,52.89848604746242],[4.848300116321329,52.89858516019027],[4.84824885544724,52.89859640562595],[4.847917285885883,52.898601675613264],[4.847814963823953,52.898616400822625],[4.847705571785512,52.89866207887868],[4.84753150197937,52.89874988307377],[4.847441945381287,52.89876470968825],[4.847352633507463,52.8987679104878],[4.847263862970951,52.89874788242614],[4.847175262612806,52.89872010862416],[4.846965060250216,52.8987146465845],[4.846588847555121,52.8987234574226],[4.846436250257632,52.89870680630381],[4.846252613321136,52.898655074507104],[4.846100870576339,52.898599712580825],[4.845981369857149,52.89852907649511],[4.845925574222049,52.89845892586812],[4.845889584663388,52.89835791426411],[4.845860217980539,52.89824534085996],[4.845868297822575,52.89816790494652],[4.845908420212178,52.898082956802384],[4.845986433789357,52.898013789200085],[4.846102278557124,52.89796427681486],[4.846307311086108,52.89791542984251],[4.846537250653039,52.897893887832204],[4.846671785617977,52.897863888537096],[4.846864358634022,52.89780331871119],[4.847025274048391,52.89773475019079],[4.84739825158592,52.8975902347663],[4.847532692693298,52.897564098315335],[4.847686117141782,52.89754586582096],[4.847839095725262,52.897546997229995],[4.848042900044086,52.897556265240425],[4.848195613185612,52.89756903263536],[4.848284950980307,52.897565815153165],[4.84834919572862,52.89754398816374],[4.848427018229701,52.89748642160154],[4.848525277692763,52.89737084704235],[4.848700938058082,52.89721707885745],[4.848760331691341,52.89712835331821],[4.848825865799879,52.897051292176535],[4.848935928095579,52.89697842177111],[4.849180226605142,52.89689105866825],[4.849276122214672,52.896880131636514],[4.849307317399222,52.89691137477048],[4.84928568249012,52.89701979046573],[4.849291376301855,52.897050855817874],[4.849354769293545,52.89706683196003],[4.849418622444453,52.897063426053],[4.849534088860026,52.89703325678221],[4.849964416370698,52.896900709190696],[4.850137690210961,52.89685837902483],[4.850173796830939,52.89685136112065],[4.850209906400225,52.89684434411749],[4.850300204874088,52.89682679493238],[4.85082916097273,52.896753298222954],[4.850916516232518,52.89675393320904],[4.850959726473112,52.89675425307248],[4.851002921865808,52.89675457195501],[4.85115637328576,52.896755701245034],[4.851248043363244,52.89672321369139],[4.851340732934051,52.896646506705686],[4.851460974272531,52.89655894164102],[4.85158836771715,52.896554345830275],[4.851669596072525,52.89658814926972],[4.851724075747858,52.896598933962906],[4.851778512555734,52.89660970226298],[4.851787592272557,52.89658897495183],[4.851798878243413,52.89649507968173],[4.851845874849644,52.896429077150096],[4.852142882445441,52.8962196097618],[4.852167737117381,52.89620207145277],[4.852192633386765,52.89618453242623],[4.85228039826297,52.89612264041317],[4.852399776407533,52.89607373896062],[4.852599088414065,52.89600884147088],[4.852700021448921,52.89597086661802],[4.852722805293094,52.89595737098049],[4.852750061847878,52.89594121914877],[4.85276455309898,52.89593262901561],[4.852765034215818,52.8959127438302],[4.852765456291614,52.8958939187989],[4.852822380080142,52.89579478269059],[4.852896939072265,52.89571791247366],[4.852989048173443,52.895668808432],[4.853081947912397,52.895586511364925],[4.853230696791597,52.89544931323145],[4.853277761878218,52.89538327358825],[4.85335196672569,52.89532297278609],[4.853452945278059,52.89528498042539],[4.853625876600733,52.89528070281789],[4.853753059759208,52.895287157283484],[4.853835864375083,52.895249027691506],[4.853991810706758,52.89519484300177],[4.854241126507105,52.895041728041704],[4.854406591962205,52.89497100502382],[4.85478688050457,52.89486896983827],[4.854875174061059,52.894811948109385],[4.854972316235545,52.894716529175646],[4.855029950834045,52.89462083613928],[4.855070504696361,52.89457789018341],[4.855063662010097,52.8945345802299],[4.855096430658845,52.8944867656782],[4.855319737018649,52.894401866653006],[4.855702032419152,52.89427964371051],[4.856192050172109,52.89411145499723],[4.85643547409876,52.894021512002475],[4.856705636720167,52.89393694536777],[4.857066770770889,52.89384479206074],[4.85725737564111,52.8937942347955],[4.857408085471955,52.89373743426919],[4.857584102181548,52.89365353348043],[4.857855783489076,52.8935156265293],[4.858036697280315,52.893440823248476],[4.85819737481782,52.8933840748865],[4.858348285243882,52.89330914000392],[4.858594810379289,52.893183215016144],[4.858823679589191,52.893070826091005],[4.858994369283343,52.89301412096188],[4.859195130761126,52.89295149160078],[4.859375767704631,52.892897858397596],[4.859561497999342,52.892838190460246],[4.859817576836824,52.892748602044946],[4.860058554821723,52.892668004010176],[4.860625734200849,52.89248602969077],[4.860826651429711,52.89241131219921],[4.861095638181347,52.89228700879148],[4.861391928650767,52.89217944124101],[4.861778662991496,52.892035965111404],[4.86192419330811,52.89199124015313],[4.862114944862276,52.891928570841806],[4.86234079685267,52.891856988940425],[4.862591800939533,52.891773410374505],[4.863438112378415,52.89145352811331],[4.863809609588969,52.8913281395986],[4.864015151020081,52.891280657434415],[4.864502297007133,52.891101333518904],[4.864698228963064,52.891023557416126],[4.865257969746647,52.89083397174351],[4.865413780674396,52.890765095546904],[4.865664628074045,52.890693615697806],[4.866041248995512,52.89055613857653],[4.866302416300825,52.89045749100311],[4.866553704999972,52.89034971522787],[4.866681781528001,52.890298852300724],[4.866920178211076,52.890267970927134],[4.867044477170166,52.89030331669791],[4.867174746223148,52.89029150149171],[4.867292550659662,52.89028080821548],[4.867980337516114,52.889957102158945],[4.868316879134275,52.88990774502971],[4.868677416017181,52.88985849295824],[4.868942147761298,52.889794300745535],[4.869315891239893,52.889643464705685],[4.870003223321503,52.8893560419263],[4.870208127424201,52.889277064494806],[4.870497103681186,52.88919120017709],[4.870762513896349,52.88906892645966],[4.871136332169745,52.888910822976996],[4.871437138746002,52.88883951998497],[4.871869831441141,52.88877604761354],[4.872146196056244,52.888740943216824],[4.872555320483493,52.888641068009626],[4.873121181024145,52.88847651757413],[4.873651036227024,52.888311817689086],[4.874204200489679,52.888205296020665],[4.874563951422846,52.888221363518795],[4.874875216279051,52.8882807799512],[4.875018923142979,52.888303179125245],[4.87517497635948,52.888296588173134],[4.876058234766403,52.88818421996542],[4.876562808937669,52.888128289603564],[4.876838914291054,52.8881149477848],[4.877150929570655,52.888109020808265],[4.877402630692636,52.88813187840072],[4.877761620316605,52.88821326559433],[4.878049235691463,52.888243537123124],[4.878660267002827,52.88831874394323],[4.879163572813633,52.888371706687145],[4.879780839638981,52.88843241104689],[4.880188088512027,52.88849222147077],[4.880571078718738,52.88857370209551],[4.880954591490983,52.8886116265622],[4.881313672738285,52.88868575033601],[4.88152955059093,52.888693926875376],[4.881924212068212,52.888804497249296],[4.882894766231582,52.888917499195536],[4.883265859262109,52.888991669603534],[4.883577310438549,52.88903654172733],[4.883924480274646,52.88910334620364],[4.884152196496065,52.88912609022606],[4.884750660186693,52.889252032017836],[4.885344723074209,52.88934890762918],[4.885763564340204,52.88944503555047],[4.886014776375109,52.889511439881566],[4.886793482649002,52.88961635330841],[4.887308389320286,52.88970562707387],[4.888230489336316,52.88986194153406],[4.888924736422081,52.89001004513283],[4.889900075022754,52.89023917234597],[4.890331103286307,52.89032082966756],[4.890690958879047,52.890329579665604],[4.890870349011225,52.89038114463478],[4.891600105692047,52.89057293818311],[4.891982476963612,52.8907124696464],[4.892484840044838,52.89085248719935],[4.892987455700602,52.890970728276606],[4.893442737014863,52.891030693006385],[4.894228207338156,52.89107750543792],[4.894538932904393,52.89118768730408],[4.895004996658907,52.891356589049515],[4.895364289450278,52.89141614981571],[4.895903750178792,52.89146192862405],[4.896371017650971,52.89152192966948],[4.896838154571074,52.89159645155731],[4.897277902674231,52.89165414419901],[4.898271511422509,52.89186149416223],[4.899097713015937,52.892017340607545],[4.899469022228309,52.89207693809487],[4.900044144695907,52.892151878537625],[4.900499530504341,52.89220455464188],[4.900822593846998,52.892285735606144],[4.901432025736749,52.89251327622645],[4.901905544091976,52.89266765797125],[4.902229029883548,52.892712539146174],[4.902541158329365,52.89269928413042],[4.902745214164087,52.89269285193337],[4.902996955266115,52.89271565557134],[4.903211567094084,52.892839948133414],[4.90341481943819,52.892906104172894],[4.903678794007067,52.892907173376415],[4.90388236858043,52.892944302392095],[4.904169551604212,52.8930180759509],[4.904274141752947,52.89305599097024],[4.904449374864047,52.89306680044397],[4.904858867181448,52.893038153428385],[4.905025807161389,52.89304387720413],[4.905151173985487,52.89303428336207],[4.905351402883936,52.89305024286873],[4.90543435188756,52.893101081194885],[4.905458567817769,52.893176927601424],[4.905549864696639,52.89322780042123],[4.905749873443603,52.893263959280205],[4.90590846240199,52.89326964994476],[4.907241416097325,52.89355277198896],[4.907948895315179,52.893762673065424],[4.9082647633312,52.89389524311714],[4.908355789630113,52.89397136403791],[4.908501776899381,52.894077721260906],[4.90855198906685,52.894134619691705],[4.908658983997991,52.89424522382967],[4.908777750396045,52.89435142667924],[4.909418993897066,52.894857286677066],[4.909511252215322,52.89491215928808],[4.910150106923964,52.895303578871314],[4.910384529325034,52.89544442783555],[4.910462040903146,52.89548779193137],[4.910699128486285,52.89557944857943],[4.91228044655009,52.89605958242938],[4.91248391000057,52.89609268014551],[4.912814467590111,52.896122012955026],[4.913023207018006,52.8961536119799],[4.913206454256497,52.89620231062883],[4.913478106659809,52.896304172836096],[4.91442535939625,52.89668966679105],[4.914424322471788,52.89672656148914],[4.91445843447432,52.89675456384773],[4.914615523798359,52.8968204549817],[4.914961075502753,52.89699609825973],[4.915260544609861,52.897210649927615],[4.915471374670875,52.897376771746856],[4.915686942258187,52.89758323545445],[4.916070325146825,52.897875931791695],[4.916253368562325,52.89799398222237],[4.91662943281325,52.898208032592926],[4.917405159111414,52.89858204263184],[4.918415667884096,52.89907449549794],[4.91881003319933,52.89926342951068],[4.919289959186361,52.899434257969865],[4.919626958813224,52.89955022915572],[4.919940629009084,52.899635678759495],[4.920456941419171,52.899760885355164],[4.926278554219385,52.90123045395846],[4.928472035521865,52.90177807455269],[4.931264537967028,52.902489141574286],[4.93320340001741,52.902994984440625],[4.934852709227098,52.90341792099667],[4.935968192877286,52.903692580320325],[4.936079975676148,52.90397896376596],[4.936119249666755,52.90415083563371],[4.936146091050142,52.90435091326483],[4.936142191331236,52.90466078178099],[4.936223521800667,52.90469101403308],[4.93621968236446,52.90425273569061],[4.93616512681027,52.90401617415765],[4.936119783943993,52.90384174607569],[4.9363480635166,52.90396229059318],[4.936422805767501,52.903982719609196],[4.936597585791118,52.90399345304816],[4.93671454390073,52.90395863202387],[4.936889429279805,52.90395929153744],[4.93698889389686,52.90400501252611],[4.937105347383816,52.90402055779652],[4.937229953096937,52.9040512579898],[4.937329419859654,52.90409696971362],[4.937469700827827,52.904223434292746],[4.937535381365842,52.90431436461859],[4.937618253606373,52.90435497307555],[4.937884232346669,52.90440635154914],[4.938075158464274,52.90446752201399],[4.938166304104311,52.90451320173914],[4.938314911797495,52.9046396984029],[4.938588297837668,52.90478177805406],[4.938720660639452,52.90486791671245],[4.938952200583685,52.90502998525939],[4.939085236923872,52.905050642144126],[4.939168526981328,52.905050954613266],[4.939400531559776,52.90516768701703],[4.939730771953705,52.905451021506124],[4.939870857625428,52.90559764820557],[4.93987794219447,52.90571857129336],[4.939827059034839,52.90580906368487],[4.939793242187115,52.90585427400552],[4.939867296440249,52.905945225367944],[4.940057778079107,52.90605072144453],[4.940231895338467,52.90612694080068],[4.940397897682451,52.906182972782254],[4.940530150380403,52.906279182854824],[4.940662345230368,52.90638546554841],[4.940736373945172,52.906476417154124],[4.940752080794742,52.90654949042145],[4.94080858906525,52.906594751040075],[4.94091088814828,52.906711985009714],[4.941295050355961,52.90700656088735],[4.941385281561326,52.90706840142741],[4.941813225034575,52.90737457793244],[4.941892843078985,52.907423330083205],[4.942272549240506,52.90759779842719],[4.94239019187817,52.90765822966408],[4.942767494565184,52.907882293911406],[4.943230048993844,52.9081632062051],[4.943481646500882,52.90832515336014],[4.94375666471768,52.90850216654136],[4.94419276067518,52.90878286086444],[4.944279589236771,52.90887317288239],[4.944339824669007,52.908951849357514],[4.944359824235394,52.90901140521259],[4.945207943916714,52.909534621891176],[4.945633213819127,52.909672206472045],[4.94606514265841,52.91001148838723],[4.94656076554517,52.91038274400764],[4.946934288487994,52.91068092669852],[4.947349539121375,52.910997209688475],[4.947984327432413,52.91150104531723],[4.94867833178648,52.912020625335224],[4.950475086302834,52.91339929322327],[4.95097789176886,52.91379590801189],[4.952103029395005,52.914664591962406],[4.953530182427635,52.91576425409387],[4.954129134107824,52.916237706156586],[4.954592575866445,52.91669120783018],[4.954817919042483,52.916994302013336],[4.955186508464749,52.917450674159966],[4.955543664451483,52.91793070292442],[4.955976409835661,52.91854660847785],[4.956219652324248,52.91891925415149],[4.95651327844781,52.91939684077667],[4.956693420746449,52.91972984678781],[4.956867505922149,52.92010005174833],[4.957060577528131,52.92068768867784],[4.957135830282098,52.920928609237116],[4.95724823439583,52.92132892976648],[4.957343482218105,52.92176982522813],[4.957372704074911,52.922152806973266],[4.957368621484521,52.92252201121798],[4.957352723174139,52.922952557670186],[4.957349441222171,52.92325388993486],[4.957369720922499,52.92343676558126],[4.957417746820817,52.92363327374574],[4.957471469351274,52.92381622561823],[4.957541659408689,52.92401951822809],[4.957688806454866,52.924314389032894],[4.957776406137328,52.9244500139874],[4.957790848054625,52.92446946676807],[4.95789709375642,52.9246127881469],[4.958028954408197,52.9247721964407],[4.95815542305414,52.924911302773594],[4.9584144509414,52.92513878134461],[4.958563351233402,52.925257667313105],[4.95890639329815,52.925496534553766],[4.961198749621388,52.926795050316194],[4.963003017099837,52.927793224469724],[4.96461232446519,52.928695289468244],[4.965337786385518,52.92910462456903],[4.965547121865741,52.929213075021465],[4.966048677986159,52.929447035686735],[4.966638353922801,52.929711489873426],[4.96711236366669,52.92991155103688],[4.967658453425373,52.93009831094796],[4.968050111599085,52.9302239778642],[4.968028799032114,52.93029687301283],[4.968068552340505,52.93030914326082],[4.968164587258092,52.930752557487246],[4.968236609942631,52.93075276510808],[4.968157399138069,52.93033655888455],[4.968277934628359,52.93037375405781],[4.96845969156348,52.93032789529979],[4.968850560175043,52.93042484422602],[4.969308727793755,52.93053382644787],[4.970209038568864,52.930687773177354],[4.971103855938419,52.93082145560889],[4.974885267147757,52.93130922811774],[4.975249438321402,52.93135053670886],[4.975812904242041,52.931365490302525],[4.976476946217884,52.93130682772295],[4.976758982662973,52.93129080436992],[4.976974293039,52.931298112827896],[4.977762654394483,52.93139090574858],[4.977955374709259,52.93142500356995],[4.978203312750934,52.93145924695583],[4.97986735001005,52.931644947242674],[4.979927331522304,52.93169731793773],[4.979926289771791,52.93173244145369],[4.982376227430988,52.93182173521652],[4.983761548616905,52.931845929960936],[4.985606050817722,52.93186372669766],[4.985986702549893,52.93181583164048],[4.986199312950814,52.931803262472094],[4.98647782414254,52.93179533706223],[4.986770697927039,52.931818461415375],[4.987085447034597,52.931854949227166],[4.987356058261483,52.93190900976174],[4.987538830416272,52.93195391440927],[4.991116837581184,52.93303843046782],[4.99331304897567,52.9336817658309],[4.995197334174537,52.9342433855141],[4.996553578117171,52.93465393287935],[4.99688180794247,52.934738030911355],[4.997144202214494,52.934796040374074],[4.997367940752639,52.93482117845982],[4.997662507264357,52.934849188131736],[4.997934972951138,52.9348574708968],[4.99825058402083,52.93484230503356],[4.998538709236437,52.934810757473336],[4.99875601725284,52.93477962427015],[4.998815584820574,52.934759392658044],[4.99887026288099,52.93477231308898],[4.998881733490811,52.934805357467475],[4.998895633454169,52.93491804735093],[4.999034954967938,52.93491785205559],[4.999044721739308,52.93478117434201],[4.999082725862192,52.93477432431963],[4.999257752844236,52.93481631103355],[4.999799556716086,52.93496534703672],[5.000308311217172,52.93509140225147],[5.001349677133655,52.93533610917855],[5.001996043541404,52.93548798802734],[5.002244096720015,52.935546265329506],[5.002588643667844,52.93562365947215],[5.002801648422865,52.93565548363356],[5.002959854488274,52.935667754732364],[5.004060927994726,52.935701781730515],[5.005169092012392,52.935714396741865],[5.005311089446824,52.93566196467256],[5.007824536469785,52.934797031252685],[5.008179596671446,52.934681846784585],[5.008411227608399,52.93460341092822],[5.008648858262264,52.93454854611465],[5.011497388279004,52.934045257088165],[5.011744245344085,52.93401473325857],[5.012046647495565,52.933960767016345],[5.012366908701427,52.93394155256299],[5.012737294908499,52.93394637212418],[5.01306440840129,52.93395638131226],[5.01365102415272,52.93401121021008],[5.0150690362794,52.934170855693154],[5.015224923377572,52.93419129175238],[5.015382436930889,52.934209727800365],[5.020606992450737,52.93482108372914],[5.020928403309402,52.93485831951985],[5.021296046531567,52.93500996893034],[5.021740725474422,52.93517020027577],[5.022058539488394,52.935262643465876],[5.022296332277092,52.93539817572596],[5.022709604548673,52.93550535065686],[5.02336048947353,52.935772127390265],[5.02401226262357,52.93593298951701],[5.024520478116881,52.936117478070145],[5.024837945004676,52.93625324607874],[5.025027978513884,52.93638861722766],[5.025168542587775,52.936509857177484],[5.025246498714899,52.936557972841314],[5.02537728303959,52.93663167003018],[5.025588833845831,52.93671783478365],[5.025960811391694,52.93695719813215],[5.026030503127524,52.937085688692136],[5.026301318068291,52.93733696757664],[5.026411335790982,52.93747780206414],[5.026562289327992,52.93755766956189],[5.026943902586602,52.93785814026598],[5.027303055324269,52.938184870415405],[5.027413013217955,52.93833180551559],[5.027574186613522,52.93839949086116],[5.027675004500295,52.93843032995387],[5.027786086343687,52.93844288555961],[5.027846528342526,52.93846750131555],[5.027916228026322,52.93859599252379],[5.027945850654196,52.9386816041703],[5.027935184309039,52.93874876336146],[5.028204024499021,52.939244379890425],[5.028323400588624,52.9394768667594],[5.028483622254435,52.93966060630969],[5.028553260606231,52.93979520675597],[5.028542509307385,52.93987458721246],[5.028460730257743,52.9399843001239],[5.028337031592452,52.9402771456311],[5.028275631836669,52.94036858556707],[5.028173853783936,52.94045380422089],[5.028122455894188,52.94055748662014],[5.028121500346694,52.94067356091271],[5.028039533916791,52.940807706040005],[5.027957852500581,52.94090519739187],[5.027836008507591,52.94097202140801],[5.027683531800151,52.94107541851282],[5.027548046426427,52.94125243809403],[5.027079588432284,52.94145066994472],[5.026866909126747,52.94154821418031],[5.026082864760279,52.94185350570308],[5.025344385181931,52.94213429835686],[5.024546008485599,52.942430702778594],[5.024361201815865,52.94248643259543],[5.024255934079369,52.94253364106392],[5.024213617397387,52.94257787923027],[5.024213274660936,52.94261906188759],[5.024228708018154,52.942653967839014],[5.02424940594485,52.94268887989019],[5.024285815414593,52.942723848631566],[5.024343198043548,52.94275888013765],[5.024400832882158,52.942765390499495],[5.024442782050714,52.942765517826764],[5.02449672503045,52.9427524895263],[5.024555318147598,52.94274572983364],[5.024637093308224,52.942792195791604],[5.025591270496593,52.943762613292265],[5.025787226416813,52.9439524591427],[5.025883840176848,52.943999966579376],[5.025985579286523,52.94399463873241],[5.02604504955149,52.943979137212146],[5.026136130713234,52.9439384623584],[5.026160813496428,52.943843046751354],[5.026110677251568,52.94377135562501],[5.025976005418992,52.94367934063648],[5.024904654449982,52.942591396724765],[5.02604919847159,52.942155831762626],[5.028936477794075,52.94096952989363],[5.030451876354838,52.94265708654039],[5.026900085516353,52.94352159804244],[5.02680833422055,52.94359477609489],[5.026845795292624,52.94366809299339],[5.026949407080045,52.94368087662968],[5.030328656818818,52.94286480642284],[5.0304903953097,52.94290200848492],[5.031925369713678,52.94238293369072],[5.032964751624876,52.941964197989364],[5.033748481788785,52.94163320435858],[5.034317527385457,52.94135392657881],[5.034400391752045,52.94131487375682],[5.034440353016934,52.94131783949322],[5.034607564070675,52.941309140726275],[5.034825798726046,52.941248596058834],[5.035049024211741,52.941200305151206],[5.035211048596701,52.9412038369006],[5.035504229096608,52.94127200887152],[5.035681109425858,52.941318421780366],[5.03588282605842,52.94142303314747],[5.036247949837744,52.94149086566423],[5.038239893416766,52.94287893794021],[5.038341107481381,52.94287363488952],[5.038431581838324,52.942833072918795],[5.038478070564965,52.94277988430113],[5.038513028980026,52.94273988907631],[5.038461939560213,52.94267712204514],[5.038382180501609,52.9426133565107],[5.038191338639092,52.94251096576704],[5.037839201811145,52.94229846055626],[5.037465531190761,52.942015474009494],[5.035694737330969,52.94077566726514],[5.035669661167419,52.94073997148881],[5.035674177418242,52.94069658053894],[5.036747312613104,52.94007557371821],[5.037175506815965,52.9398105160972],[5.037186422085584,52.93971263240747],[5.037156426204196,52.93966358762787],[5.037138622214309,52.939661576449595],[5.037045143821122,52.93965102219154],[5.036933679819297,52.93966293503423],[5.036709689366917,52.93981526260804],[5.036437490025479,52.93966759955255],[5.036356581671535,52.939655121715035],[5.036224955325729,52.939654735250166],[5.036123310187291,52.939703404429935],[5.036152946939358,52.93979526944335],[5.036475763046867,52.939943080789746],[5.036071948473718,52.940224525907084],[5.035549765460918,52.94050945862414],[5.034941960196878,52.94081971197292],[5.033745239374054,52.941388998813494],[5.033658263900978,52.94142753488498],[5.033470495450708,52.94143957013433],[5.033206589454201,52.941518336247626],[5.032232469795032,52.941766337946326],[5.032019281418768,52.941833003616566],[5.031765385760366,52.941924052821896],[5.031593147345507,52.94193578083847],[5.03142120990588,52.94191078125945],[5.031340448537316,52.9418799511816],[5.031158133045977,52.94188552704324],[5.030874108472759,52.94194586979385],[5.030665661112669,52.94196538665011],[5.030620775031327,52.94196959316706],[5.030090479165329,52.9419377707136],[5.02923138818828,52.940992475122215],[5.029140865241573,52.940918776203375],[5.029191987110181,52.94085772307147],[5.030350819765466,52.94031046696651],[5.032583592120591,52.93915557711698],[5.033542377211143,52.93864862923469],[5.033598181570304,52.93862740674604],[5.035168002941369,52.93934713286032],[5.035248758525044,52.93936571191433],[5.035339773773752,52.93936597990246],[5.035420923841806,52.93933565608152],[5.035451661959915,52.93928685161747],[5.035437006040237,52.93922263668896],[5.033833931939917,52.93848905760671],[5.03391031966136,52.938422056252094],[5.034022109065361,52.93835515048326],[5.03402748641691,52.93831543754134],[5.033992704633008,52.93823894144574],[5.03391263358218,52.93819897504566],[5.033897008548243,52.93819982839395],[5.033806396768297,52.938204772601175],[5.033694932422043,52.93823194041323],[5.033661701685124,52.937965979729555],[5.033560499281314,52.9379748464327],[5.033599356284395,52.93817054122716],[5.0330050503398,52.93850187994333],[5.031903762075106,52.93763924326698],[5.031930768813431,52.93755235323734],[5.031384410981271,52.937125554571736],[5.032610660458503,52.93653217002733],[5.032671628590252,52.936502668840916],[5.032728724625142,52.936532520269424],[5.03321372692194,52.936786115175025],[5.033405616804554,52.93774511911184],[5.033616121945427,52.9377331512548],[5.033422129639606,52.93669352448978],[5.033595015531104,52.93658058290897],[5.033979972169068,52.93677155978477],[5.034056429569602,52.9367133732709],[5.033640708244444,52.93653522267196],[5.033688740091072,52.93651083909002],[5.03404109848871,52.93627597898053],[5.034041670352988,52.93621121751221],[5.03572000227639,52.935035217074706],[5.037165413209193,52.93403558876174],[5.038042286554921,52.933417526134],[5.038701800539846,52.933737913093985],[5.038365052024893,52.934002025812966],[5.03846841806726,52.93403602559255],[5.03879700102005,52.93377693913704],[5.039479446795798,52.93407716470875],[5.03894135201093,52.934643990243316],[5.03868705219117,52.934566297484125],[5.038558349813902,52.934734417049896],[5.038637794710885,52.93476834688367],[5.038052039259125,52.93530582083646],[5.037146496425782,52.93598670407402],[5.036310496690484,52.93654309116849],[5.035558190502433,52.93703625494526],[5.035538784095441,52.937221542199325],[5.035190629802005,52.93745416166281],[5.035164828359368,52.937512498112945],[5.035184644561134,52.937561425380885],[5.03525354711631,52.93757790985411],[5.035275571644909,52.937583033151235],[5.035397048520977,52.93756485367004],[5.035503862016462,52.9374887819155],[5.036940983740497,52.936544939754256],[5.037751690817658,52.936012619855255],[5.038497078874903,52.935422264702034],[5.039170823231562,52.93483729744141],[5.039306949336624,52.934726488019976],[5.039490898803537,52.934654575029235],[5.039608367023625,52.93461110805953],[5.039721291007362,52.93458447905467],[5.039878830343673,52.93455797602181],[5.040117834001297,52.93451541706545],[5.040315963173285,52.934483481334844],[5.040469085815921,52.934462422143525],[5.040721065295189,52.93444194416037],[5.04078477774634,52.93443307955846],[5.040815627521371,52.934428775529014],[5.040919395655341,52.93439917850516],[5.040996108833127,52.93437491282917],[5.041102399795212,52.93432705360798],[5.041891602852384,52.93469493016549],[5.041891387065192,52.934724072426015],[5.041979500798362,52.93551289218046],[5.041974342389934,52.93563472379975],[5.041956286251916,52.93570798264249],[5.041903820412855,52.93579153033822],[5.041660337364386,52.93606790407226],[5.041164286187795,52.936557242676805],[5.041051102794296,52.936668894339654],[5.040939860902216,52.93677385665622],[5.040444937154579,52.937173592172144],[5.040047692947532,52.93750293142478],[5.039698724645048,52.93778185228877],[5.039544687228157,52.93789378809122],[5.039511924174259,52.93793608157984],[5.039501822864673,52.937966147610176],[5.03953383918046,52.9380063559911],[5.039574648569701,52.93802947985472],[5.039644925623132,52.93804494313478],[5.039717685460556,52.93803442495535],[5.039777418448997,52.938010443198706],[5.039861889604603,52.93795255577356],[5.040405079830579,52.93751534577194],[5.04138785449166,52.93667737285928],[5.041537715054281,52.93655832332911],[5.041689304783938,52.93648751756053],[5.04183595496436,52.93641495396481],[5.042094544031644,52.93630109749846],[5.042206681852222,52.93624408807732],[5.042276139220518,52.93617109439362],[5.042734722209122,52.935817346691096],[5.042829608555151,52.93576549007784],[5.042992845228618,52.93572976314386],[5.043147443748508,52.9356992322139],[5.043301828990231,52.935684408686086],[5.043421763649155,52.93568511320246],[5.043490043391196,52.935706472550756],[5.04352399994522,52.93573287337799],[5.043858089258841,52.93573482215856],[5.043872112944721,52.935723746278356],[5.04400029466053,52.935784062677335],[5.044071796653456,52.935817499670456],[5.044190884252188,52.93587301797708],[5.044259660308868,52.93590511704644],[5.044389521870374,52.935965680475405],[5.044465189316594,52.93600098037523],[5.044565234784857,52.936047646015105],[5.044641228529549,52.93608309950618],[5.044808361955115,52.936161059120025],[5.044795556297172,52.93621783439912],[5.044782810703103,52.93631053744035],[5.044803254163066,52.936330500868586],[5.044871088977928,52.936348119806695],[5.044926442190079,52.93638312757225],[5.04502664597601,52.93647425793261],[5.045088147370667,52.936510523345994],[5.045125207965664,52.936543402795394],[5.045190676558128,52.93656883293687],[5.045353925710355,52.936632249662175],[5.045457414061927,52.936663135302055],[5.045515230978698,52.93671223150773],[5.045641682644184,52.93671871269705],[5.045828509636536,52.93672111565984],[5.045886723475297,52.93672144368107],[5.04589445751438,52.936721492727536],[5.04594154487955,52.93668959969839],[5.046022151500131,52.93672698855894],[5.046089212507153,52.93675811113549],[5.04621220498829,52.93681517521941],[5.046280629722172,52.936846930625315],[5.046405875211277,52.9369050613281],[5.046475382212463,52.93693730497221],[5.046585511612555,52.93698840996398],[5.046653195943132,52.93701981257448],[5.046821332534931,52.937097844086026],[5.046815571573642,52.93715563711415],[5.046822841955568,52.93724371543738],[5.046866622350995,52.937309674394385],[5.047105651789362,52.93746194619891],[5.047277250354548,52.93752359573532],[5.047433719855439,52.93757601792649],[5.047486480819193,52.93760629027724],[5.04763532585861,52.93768667413718],[5.047914792365224,52.937673952306014],[5.048009858481965,52.93764461200473],[5.048102556769423,52.93768833321725],[5.048177352722675,52.93772361927704],[5.048299335465453,52.93778116358579],[5.048370945427678,52.9378149487484],[5.048483992202092,52.937868279876234],[5.048556047065027,52.93790227287421],[5.048668056879379,52.9379551156226],[5.048739771112811,52.93798895477496],[5.048899220327147,52.93806420888894],[5.048885598112435,52.93812331871452],[5.048881566156851,52.93816564215982],[5.048899999537185,52.938224582117186],[5.048948499025988,52.93830399727308],[5.049137842389922,52.93854496370149],[5.04925356819326,52.938675252062666],[5.049324633811475,52.93876999872396],[5.049348739067297,52.93885341556835],[5.049349795792608,52.938926316091646],[5.04931432576835,52.93904652550789],[5.04928300107882,52.93912315369096],[5.049217917804856,52.939218054568336],[5.049086664290249,52.93933496459514],[5.048866368656724,52.9395459435046],[5.048638978403056,52.93974697195181],[5.048380898768709,52.94001505020946],[5.048341097199209,52.94006624061525],[5.048304563530692,52.940129499995145],[5.048281767339024,52.94020705970332],[5.048268726794483,52.9402619474762],[5.048269483334117,52.940331135757035],[5.048284479063754,52.9404055944873],[5.04834437863803,52.940524654120075],[5.048425142093803,52.94060239957072],[5.048481423381442,52.940641550980686],[5.048632858330714,52.94072521188443],[5.04871395100083,52.94075106173297],[5.048848556862219,52.94077412448306],[5.048946627287872,52.94078208542372],[5.049113787135625,52.94078317844271],[5.049237308806667,52.94076431490649],[5.049377325828774,52.9407321620828],[5.049799139166087,52.94061733045961],[5.049931089030246,52.94058953057994],[5.050192246248088,52.94056152880398],[5.050305862725908,52.9405654167023],[5.050441750606629,52.94057466920884],[5.053502215827521,52.94096980206264],[5.053643749656867,52.940997686455106],[5.053903349306881,52.9410411498521],[5.053991474552073,52.94107183241627],[5.054151697839142,52.94114187845941],[5.057949008656121,52.943162470688435],[5.065071338467241,52.94691015682862],[5.075576109488069,52.95242252228806],[5.082741489532251,52.95620648194339],[5.089354684230928,52.9596684040429],[5.08957313537308,52.95978135780559],[5.093235767434384,52.961675081419095],[5.10091924293435,52.96576308857092],[5.102386324197644,52.966518906176084],[5.104451496268509,52.967597587619366],[5.107521018515172,52.96923253634326],[5.11083947257347,52.97093638410896],[5.1133902143397,52.97230326728266],[5.117544227739684,52.974487588870296],[5.124284065209541,52.978038480241956],[5.12762634332282,52.97976926195515],[5.134006367257574,52.98314100515446],[5.139065973321995,52.98580522329777],[5.147345699413286,52.99015132924047],[5.151198224486955,52.992149202473755],[5.152768104470583,52.99299248998351],[5.163781913407695,52.99876864441462],[5.166074137014715,52.99996704733514],[5.167692301809229,53.00081297786319],[5.168537976991445,53.00018538561496],[5.167939572156443,52.999872392915414],[5.16698713498058,52.99937718127477],[5.165680162424545,52.99869003970427],[5.16459957857713,52.998118157468724],[5.163787415072748,52.99769608130349],[5.15482071781172,52.9929964941032],[5.154287956487137,52.9927304190915],[5.153569538373466,52.99232713735397],[5.152095958526281,52.99157003848878],[5.150308746689326,52.99063338518332],[5.148844409636757,52.98987625502002],[5.147689498987072,52.98925186884105],[5.146675453644317,52.98872408688231],[5.145611493252758,52.988154903741844],[5.144738475607081,52.98770170586262],[5.143838169052928,52.98723193832291],[5.142978858619046,52.986776005516404],[5.14196952983572,52.98624544293683],[5.140641862829088,52.98556006629792],[5.139237126270387,52.98480569844137],[5.135622917482044,52.98291813337671],[5.134486524638185,52.982310155507676],[5.132204578377275,52.98111618163224],[5.131681884207172,52.98083704986718],[5.127786486902726,52.97881100131147],[5.126632189801307,52.97818090155341],[5.126232180132039,52.977981837691985],[5.126150613585676,52.97789908502714],[5.126060020231231,52.977799786877505],[5.12576028142949,52.977606448853464],[5.124960420077303,52.97718079827742],[5.12478748794897,52.97713086879346],[5.124514277886528,52.97707521928081],[5.12439600980575,52.97703091784321],[5.124027889511274,52.97684017493875],[5.122819022261933,52.97620440916987],[5.120728683874504,52.97509322023753],[5.120169663274445,52.974813956475934],[5.118997244862617,52.97420024922291],[5.116843454414572,52.9730613241388],[5.114657790628504,52.97193604503769],[5.111882006900563,52.9704350180377],[5.109901192320237,52.96938994722432],[5.109492250581793,52.969185306263554],[5.109529068818536,52.969130341797836],[5.108565730984621,52.968660149509184],[5.10852908790535,52.968687589111205],[5.108383812651338,52.968599157962984],[5.107843052292692,52.96833640410509],[5.106943558987506,52.967866356685285],[5.106125877779734,52.967435027917716],[5.104322433451886,52.966492130657905],[5.103404942057922,52.965999988248974],[5.100366310082986,52.96438795673224],[5.098485892221602,52.96340625221852],[5.096896319205197,52.96256559920928],[5.095874384441342,52.962040110867626],[5.093358489114866,52.96070993909907],[5.092104986968086,52.960068248878365],[5.091046892260077,52.95951786314285],[5.090274979086213,52.95910304555254],[5.08958028737624,52.95873367023071],[5.08798648962684,52.95788618265988],[5.087173672004139,52.95746849254932],[5.085657113441481,52.9566719219846],[5.084122358812047,52.95588078539491],[5.082839520572819,52.955236792464646],[5.075791619511023,52.951522535942246],[5.073554171377564,52.95033104668433],[5.073409159157387,52.95026160608033],[5.073306661594369,52.95005484878001],[5.072050130258837,52.94939451514822],[5.071794605193061,52.94937695588631],[5.065179184627417,52.945906698310154],[5.057943885609517,52.9421010315451],[5.054897626719708,52.94048939605805],[5.054615136627543,52.9402722812775],[5.054582181987434,52.940220437026376],[5.054144782816406,52.93932977419725],[5.053424762152699,52.93783575662426],[5.053414080472257,52.93778935705237],[5.053440747630718,52.93774884003005],[5.053541738258721,52.93764647953542],[5.053671186427834,52.93748526566351],[5.053727198955427,52.93737675860056],[5.053759645971027,52.937276650938806],[5.053768979285779,52.93718034292912],[5.053706325314886,52.93704473430019],[5.053657873426061,52.93699705212282],[5.053471950886151,52.93688010548496],[5.053391884628419,52.93684509558159],[5.05318999296265,52.93681503819696],[5.052986006850173,52.93680795280383],[5.052863307656095,52.93682209567374],[5.052746822398719,52.93685024761116],[5.052341638422039,52.93703863592696],[5.052030215921797,52.937198125027464],[5.051821073863337,52.93731976215342],[5.051581188220233,52.93744495206774],[5.051323759496428,52.93761329873811],[5.051192413027514,52.93771467339097],[5.051079470883511,52.93778444961158],[5.050983851327218,52.93783179052274],[5.050865132123048,52.9378829484715],[5.05073970281167,52.93792466069453],[5.050638713520865,52.93794879235341],[5.050493213878535,52.93796217663119],[5.050326740472845,52.93795641453482],[5.050198986306484,52.937942772494395],[5.050094361224469,52.93792534938475],[5.049825322327638,52.93784361391323],[5.049541496434209,52.93771230309873],[5.049466421022948,52.937743714059756],[5.049385659861009,52.937750629988415],[5.04934006240808,52.93772476408786],[5.049244870851809,52.93779918978738],[5.049109710077065,52.93773565119527],[5.04903735771818,52.93770163971541],[5.048921078365715,52.93764698794723],[5.048847363063227,52.9376123075005],[5.048735545039797,52.93755975302122],[5.048660807294375,52.937524611256656],[5.04853966799389,52.93746766280382],[5.048466086394828,52.93743308134795],[5.048340812755001,52.93737419788627],[5.048443364624841,52.937309732703696],[5.048336350408177,52.93725740713309],[5.048386347625503,52.93715711701673],[5.047513908493565,52.936742920145676],[5.047341381667949,52.936785501416885],[5.047249387178796,52.93674342610816],[5.047160854612713,52.93682779008532],[5.047029720115808,52.93676560852385],[5.046954987490236,52.936730160155854],[5.046842095604189,52.93667665725365],[5.046771364341033,52.93664311629284],[5.046656665071288,52.93658874537143],[5.046623307562848,52.936572924134275],[5.046585785919741,52.936555131986815],[5.046462373720892,52.93649661129095],[5.046387864066883,52.93646129799516],[5.046308834841161,52.93642383300002],[5.046309327730483,52.93637788699202],[5.046314099728762,52.936334424446365],[5.046328303547821,52.93620506093368],[5.045723423399008,52.93590811322193],[5.045467768141688,52.935791359158145],[5.045390640852753,52.935796152999565],[5.045253312584179,52.93582468734734],[5.045218958161513,52.93583182309225],[5.045158710871774,52.93585766628396],[5.045141294616262,52.93587274952152],[5.045019380944855,52.935815193148606],[5.0449473175567,52.93578117998727],[5.044837659343492,52.935729418800555],[5.044767552307604,52.93569632774583],[5.044644951787373,52.93563923631025],[5.044572230751508,52.935605706299924],[5.044451538083121,52.935550057956],[5.04437779469918,52.93551606658769],[5.044224409897323,52.93544537985476],[5.044299002775412,52.93538640052725],[5.044299241781238,52.935365453928966],[5.044239599721227,52.935338916706996],[5.044188636541058,52.93530195318873],[5.044163556530719,52.93524942761962],[5.044156017170201,52.93516034182432],[5.044120152849542,52.93456327263679],[5.044120798952016,52.93450569865197],[5.044138480877358,52.93445869664091],[5.044225001104159,52.93438070941045],[5.044648449124972,52.93403264963576],[5.044683289243422,52.933980529541486],[5.044910742069519,52.93354252819202],[5.044945566256813,52.9334904529017],[5.045031952371887,52.93341775767659],[5.045696463853198,52.93289379236011],[5.048857230281935,52.93043312209562],[5.048943963097639,52.93036011944665],[5.048996117469941,52.93030265522106],[5.049031191926606,52.930234592599824],[5.04905768185236,52.93016122166995],[5.049102880530868,52.929930425893296],[5.049112027497943,52.929872723100424],[5.049164180786199,52.929815294737615],[5.04931131178428,52.929716455990075],[5.052054982709097,52.927551951837664],[5.052511309704145,52.92719869892437],[5.052605021785165,52.92712147153566],[5.05266966292171,52.92704406383994],[5.052728709335492,52.926941846937225],[5.052770286079795,52.92684305885307],[5.052782819423829,52.926740540990764],[5.052784412737298,52.926563674872895],[5.05275053244674,52.92645379304034],[5.052716459897041,52.92636513656521],[5.052676395873167,52.92629767124118],[5.052590219945959,52.92618743625159],[5.052509557177155,52.92611264108296],[5.051973651877206,52.925628137004374],[5.051213244583208,52.92495147186201],[5.05117271618669,52.92493706050495],[5.051126195846793,52.92494381326842],[5.051102693238692,52.924971910596945],[5.051102416033887,52.925000181087576],[5.051136922818083,52.925035747532654],[5.051240693229531,52.9251177348607],[5.052375456107213,52.92616122338472],[5.052484899720767,52.92626807292647],[5.05255397653194,52.92633927704163],[5.052588283241591,52.926403167664574],[5.052622367766817,52.92648829254891],[5.052644839285634,52.92657333098941],[5.052655820896525,52.92664415669645],[5.052654515682032,52.92678919374319],[5.052630669646597,52.92685626446665],[5.052583332816372,52.92694792812079],[5.052536161016732,52.92702192493047],[5.052471477716652,52.92710286409657],[5.052342579499576,52.927215237491254],[5.051912480810267,52.92754554915909],[5.05094959936335,52.928303974540675],[5.050660789810665,52.92853144326386],[5.048853188797,52.92995510578174],[5.048792465374897,52.93000723471816],[5.048732156842243,52.9300173623379],[5.048654683418476,52.93002213033394],[5.048429241327151,52.93020454452173],[5.048351255545173,52.93026183640858],[5.048282154336055,52.93028767406452],[5.048187196261613,52.93031859652588],[5.048075295910778,52.93032314965204],[5.04798071271506,52.93031730064271],[5.047877768110464,52.93028513359396],[5.047738875996245,52.93022274191413],[5.047723581904507,52.93021586879913],[5.047643628238689,52.93027939120075],[5.04631639035736,52.93133382457549],[5.04616114387118,52.93145713338773],[5.046289630197575,52.93152104285332],[5.046418019840761,52.931595474980625],[5.046469138591152,52.93164838890012],[5.046445236244392,52.931751386694216],[5.046433353421321,52.931774420006384],[5.046346352007709,52.93185805995075],[5.045603408055568,52.9324395424464],[5.044986275517801,52.932915610678435],[5.044232250023168,52.93350967869909],[5.044199937870064,52.933533453837335],[5.044136943956762,52.93357981357662],[5.044005764640392,52.93367637321069],[5.043892680492402,52.933747049937786],[5.043833914131461,52.93377963652549],[5.043752654230608,52.93381482740256],[5.043346578261897,52.93397160462753],[5.042953978976175,52.93412025065669],[5.042737396386195,52.934195840219424],[5.042705430600317,52.934203835835724],[5.042512071235708,52.934252155310574],[5.042472640641201,52.93426560205006],[5.042445796028376,52.934282383093134],[5.041665884488293,52.93392495135074],[5.041683515873636,52.93389571565465],[5.04191109331876,52.93344966939079],[5.042179743558627,52.93294315581745],[5.04222325246516,52.93290677866302],[5.044696078520136,52.93097899858139],[5.044728474854728,52.930953885461456],[5.044788930838574,52.93093321294035],[5.044995906185338,52.93091350373136],[5.045098930045136,52.93093017103906],[5.045219162965644,52.93097824916106],[5.045890369803653,52.9313199718935],[5.046005330764293,52.93137835414321],[5.046024113782572,52.93138791538477],[5.046370906992184,52.931109337954716],[5.047356450743083,52.930317664812584],[5.047406868989381,52.930277154585],[5.047569348603003,52.930146412258566],[5.047483586037902,52.93011976731907],[5.04733603462422,52.93024495165964],[5.047250478596103,52.93019713516864],[5.047380747316692,52.930077357433724],[5.046878613406622,52.929836663588596],[5.046635892937749,52.929720506648444],[5.04717377696169,52.92929326091564],[5.047360924596744,52.92913260587895],[5.04713215487203,52.929028043418406],[5.048067847545482,52.928284274311864],[5.048967288122877,52.9275695911278],[5.049076817155192,52.92748228358426],[5.0496082160938,52.92707547042956],[5.049637637434429,52.92704761388972],[5.049620418844777,52.92702626834664],[5.049585601580907,52.9270154123448],[5.049550596361021,52.92701520470127],[5.049503689427251,52.92704315468995],[5.04933945499725,52.9271799956433],[5.048943303226312,52.927492258064156],[5.048157024955071,52.928101438233455],[5.047953647113492,52.92815898422743],[5.047707662217145,52.92820348727437],[5.047312248267165,52.92823141719834],[5.047231978791269,52.92825378968057],[5.047242217982824,52.928311942916515],[5.047299877306465,52.92845093799704],[5.04736790947493,52.92862871194279],[5.047318841089401,52.928757725070575],[5.047284236712561,52.92878434323717],[5.047253963842918,52.928812161719364],[5.047120876258402,52.92880558960277],[5.04704103351256,52.928773073280986],[5.046955585617471,52.92877283001491],[5.046666569849781,52.92885595868625],[5.046404219649105,52.92894237894545],[5.046216577019355,52.929035481144865],[5.046162568373784,52.9291128168272],[5.046081061405184,52.92929339163172],[5.046004231229095,52.92941742915657],[5.045879255182592,52.92959173747772],[5.044471453479736,52.93064417890162],[5.043826529524109,52.93112702816357],[5.042895256259584,52.93185281172155],[5.042456958413084,52.932180107190526],[5.042382079946886,52.932168713868776],[5.042172964833128,52.93218314544725],[5.042015746707937,52.932215239278044],[5.041983609419251,52.93224883646948],[5.042062991902843,52.932277823148695],[5.042142366936877,52.93232130482061],[5.042093842253781,52.932403162925816],[5.041981885402647,52.932455636470955],[5.041902675606492,52.93242170861615],[5.041919049092426,52.93234986470494],[5.041887556264269,52.93230652215205],[5.041784377674801,52.93227701815603],[5.041648988345826,52.93226708228607],[5.041617298011937,52.93224777771727],[5.041585604375257,52.93222870587823],[5.041482363298839,52.93218010892686],[5.041275448968676,52.93216977517941],[5.041108722854084,52.93211611989044],[5.040933363044963,52.93213526606487],[5.04073449323879,52.932100991544516],[5.040464274857708,52.93202298674341],[5.040280538006799,52.93191096096791],[5.04023451266437,52.93188274393254],[5.039980530527158,52.93176630538161],[5.039774481775861,52.93164046118898],[5.039647863656934,52.931548542201654],[5.03948887374304,52.93149528186572],[5.03939373879229,52.93145007478161],[5.039363382241074,52.93140954669917],[5.039346366623837,52.93138703385023],[5.039330902750182,52.93134374445134],[5.0392591767975,52.93133398308379],[5.039083825282447,52.931352566713436],[5.038948542993966,52.9313572309951],[5.038861676493449,52.931265426101774],[5.038862828810531,52.9311210906916],[5.038783652040191,52.93105346181458],[5.038664877574393,52.93097111448621],[5.038593843423844,52.93087486145852],[5.038514835101744,52.93081678184534],[5.03847525535014,52.93076836800072],[5.03849187578493,52.9306913742263],[5.038500417945317,52.930614547387606],[5.0385009848308,52.93054696316106],[5.038485685354788,52.93047971006313],[5.038486264424918,52.9304072543372],[5.038423065327013,52.93032057391045],[5.038400015878189,52.930238504749404],[5.038424142772295,52.93018578270969],[5.038424874528252,52.930094237592826],[5.038417851896476,52.929983571023286],[5.038466184786484,52.929925863865556],[5.038482334109764,52.92988265850175],[5.038474851959464,52.92982928794243],[5.038594671295862,52.92978656298501],[5.038595067762356,52.92973358835179],[5.038683076135128,52.92968105169671],[5.03865984530025,52.929593930780435],[5.038695307683899,52.929550002591895],[5.038767073846879,52.92955043473448],[5.038807002284406,52.92952639747638],[5.038815281516317,52.929478118754915],[5.038839267246659,52.92947313831809],[5.038918802986547,52.92949302433676],[5.038958731244905,52.92946899241917],[5.038927331866343,52.929415873893674],[5.038864230557696,52.92934346617864],[5.038872352718029,52.9293148510592],[5.038976147290619,52.92929548950517],[5.039119596363726,52.92928636567104],[5.039215557914829,52.929228789740776],[5.039249218033546,52.92914408119088],[5.039615276889863,52.92916255500236],[5.03966630697988,52.92914529494817],[5.039688429593821,52.92912325450992],[5.039688742263974,52.929100987090436],[5.039659949793763,52.92907878779467],[5.039594728062474,52.92906506455082],[5.039340484681287,52.92905249858678],[5.03926515121164,52.928983497263125],[5.039226443359638,52.92885363962502],[5.03917118082888,52.92879057199928],[5.03912371612225,52.928756870395574],[5.038844990619329,52.92875605817541],[5.03876531885822,52.9287606417072],[5.038733082574086,52.92880868881954],[5.038693149875705,52.928827937184664],[5.038629641982094,52.928798762677815],[5.038472068171136,52.928586466202475],[5.038313841489036,52.92845601585839],[5.038314426953523,52.92838874347322],[5.038306988707539,52.928330869016854],[5.038243556400341,52.92827284004044],[5.038291793452182,52.928224678018395],[5.038372000030644,52.92816256443843],[5.038420283102502,52.92808070434002],[5.038413233782044,52.927975091587804],[5.038350056431897,52.9279120040535],[5.038262780269807,52.92787355785951],[5.038247405591541,52.927791510120784],[5.038240105322727,52.92771454620915],[5.038296180992032,52.92767595154268],[5.038407949916905,52.927642660556096],[5.038576200216661,52.92752736966196],[5.038640790496274,52.92741242591639],[5.038633671452917,52.92729668526248],[5.038570997586306,52.92716172683304],[5.038587830982308,52.927055833271176],[5.038580543662066,52.9269837031971],[5.038509683665598,52.92686667480362],[5.038502320208964,52.92679925428024],[5.038614540336334,52.926712529372104],[5.038614877578438,52.92665970099818],[5.038567600673369,52.92659725214134],[5.038583985861536,52.9265392458828],[5.038696048681008,52.92645777659093],[5.038760747770733,52.92634237565787],[5.038841157971643,52.9262369127421],[5.038938190397054,52.9260445438202],[5.039049946815842,52.92602546780847],[5.039153266912649,52.92605472304593],[5.039233199676207,52.92601156042229],[5.039289498410482,52.92592986615657],[5.03922648990016,52.92584768159626],[5.03912354937683,52.92578953708142],[5.038797826746936,52.92568772420941],[5.038766474731205,52.92563965338909],[5.03881449417006,52.92559148959364],[5.038942340898376,52.9255244650166],[5.038942762201418,52.925471672815334],[5.03890356823369,52.925404161311796],[5.03881645351797,52.925346059056764],[5.038713533598517,52.92527344699566],[5.038666577892968,52.92517206810798],[5.038619717446435,52.92504669033564],[5.038572701983028,52.924969601530776],[5.038518211142576,52.92481049786598],[5.038494953295112,52.92472730647447],[5.038551367391301,52.92464546908115],[5.038607935281739,52.92454453775447],[5.038577098996663,52.92441919320957],[5.038617595501783,52.92432327523613],[5.038570469951911,52.92423158584712],[5.038483642546241,52.92414959914299],[5.038476894287583,52.92399092231074],[5.038445656112053,52.923918382573184],[5.038351285623458,52.92377825223859],[5.038304186667298,52.92368207768005],[5.038248698469994,52.92364821654279],[5.038281536080312,52.923523057826216],[5.03829813965067,52.9234512148949],[5.038227354937278,52.92332576703838],[5.038228625940656,52.923166817021716],[5.038142190423796,52.92305086428237],[5.038198522256137,52.92294993241632],[5.038215359280718,52.92284888427388],[5.038159947056055,52.922805478820905],[5.037977226965022,52.92276169233116],[5.037874144356272,52.92269399278164],[5.037755007584043,52.92265994619833],[5.037721600832271,52.922653675712766],[5.037691251330861,52.922555294272115],[5.037656602863819,52.92244230448481],[5.037581233723697,52.922223039734014],[5.037557621170992,52.92215500716267],[5.037711939039061,52.92209030432687],[5.037839516362984,52.92205697831016],[5.037745936712072,52.92164389495156],[5.037725052040569,52.921583734407086],[5.037866681905506,52.921566740964344],[5.037927751544383,52.92155865198385],[5.037977838864631,52.921551895912295],[5.038105767196114,52.92156350549171],[5.038261177396357,52.921564523808605],[5.038285103593555,52.921564593681495],[5.038347029836655,52.9215590780064],[5.038548509137999,52.92154131580831],[5.03871381717884,52.921526530122755],[5.038857971099421,52.92151178138727],[5.039003380154585,52.921486370139796],[5.039097224706875,52.92148720793638],[5.039225032309736,52.9215139724807],[5.039697337867576,52.92165913087967],[5.039608448446506,52.921794237623644],[5.042242021081004,52.92259660285168],[5.042381915480717,52.922462019726744],[5.042441171929472,52.922404937289535],[5.044978243324395,52.92318233158712],[5.045225193371515,52.92326548997418],[5.046401553047958,52.92360574302739],[5.046355245465135,52.923661686221095],[5.046220308745315,52.92382472831584],[5.046085879283465,52.92399712656641],[5.045810732352638,52.924301358793265],[5.044050160680042,52.9237593732985],[5.044030222205398,52.923753700419795],[5.041886295719812,52.92309993584274],[5.041592279762948,52.92343664379137],[5.042447016081549,52.923704212568175],[5.044116495677812,52.92424707814232],[5.045419121421236,52.9246439698974],[5.045993658292561,52.92479781490786],[5.046494791362117,52.92491943553913],[5.047350120817637,52.925178552206994],[5.047369731361699,52.925156203940354],[5.047630318618746,52.924861282593184],[5.047516659589013,52.92482630790377],[5.045933810399689,52.924339334726916],[5.045912260942475,52.924332532463275],[5.046155252335608,52.92404004604519],[5.046344763226733,52.923811997377854],[5.046436903334927,52.923704422213625],[5.046497869012641,52.923633829781245],[5.049165370544897,52.9244052527491],[5.0498267233325,52.92459976376888],[5.04988696646729,52.92459151537053],[5.049913540942305,52.92455890408333],[5.049906739311844,52.924526416950556],[5.04975968613584,52.924465901482876],[5.048624353288829,52.924121206785266],[5.048590850593985,52.9240683148276],[5.048597358114995,52.92400767672256],[5.048690596672873,52.92387763599613],[5.049069394517654,52.923417596347704],[5.051957409681948,52.91998561617126],[5.052892191932276,52.9188711132146],[5.0530976003728,52.91862062392075],[5.053435856271619,52.91822448398369],[5.054098261033428,52.91742035992116],[5.054587951519067,52.91683929436787],[5.054894959264685,52.91648574334163],[5.055235801899568,52.91608117874108],[5.056140013052824,52.91499352202929],[5.057521776728372,52.91334833159204],[5.058887010546031,52.91173802657353],[5.062537547026948,52.90742370506615],[5.065138835369998,52.904229319753206],[5.0676830307918,52.90120097172914],[5.069115775165003,52.89948163940669],[5.069523394153035,52.89902104401389],[5.071333804498572,52.89684943434713],[5.073355432430495,52.89446828693386],[5.073900864996567,52.89381971913499],[5.074131532753538,52.893586243955106],[5.074227183400304,52.89350734165275],[5.074339840731569,52.89343517875822],[5.074458153170997,52.8933766990149],[5.07462544125912,52.89330113102562],[5.074777675510192,52.893246484409374],[5.074873299385389,52.89321865083578],[5.074957925608863,52.89320146887652],[5.075042544139051,52.89318764149368],[5.075933279291746,52.893169745770095],[5.076113754967682,52.893158984679246],[5.076237849915543,52.89314189921959],[5.076356206763194,52.893118054336774],[5.076502714795915,52.893076529764876],[5.076621075322742,52.89302495232378],[5.076739209607318,52.89296628114098],[5.076823741760682,52.89291155565775],[5.076891304695301,52.89286333088611],[5.076970063871519,52.892791643576814],[5.077633159991541,52.892068272120305],[5.079483676395416,52.89003536616948],[5.079588370941928,52.88990588615928],[5.079639692216199,52.88983637299472],[5.079679669768686,52.88976321083706],[5.079708131092649,52.8896900172166],[5.079719408343172,52.88962708595918],[5.07973060764087,52.8894878240937],[5.079724853112117,52.88941479488875],[5.079695928389473,52.889338118614454],[5.079207251992004,52.88841202461588],[5.079069273847973,52.88816117089741],[5.079028914611909,52.88805659689002],[5.079011605148238,52.88797623986328],[5.079005705978978,52.88789253065885],[5.079011138629782,52.887812793973126],[5.07902808541705,52.887746560460315],[5.079056674941301,52.8876764334794],[5.079090793179886,52.88761024336282],[5.079151273746858,52.887527832306375],[5.08110468175187,52.885185130901206],[5.08301694564429,52.88290364248865],[5.085007080206307,52.880510850674675],[5.086283943038976,52.879018385094696],[5.089140448174906,52.875603367097355],[5.089712194285126,52.87490215964191],[5.090154876438867,52.874371933172725],[5.091754274166817,52.872456710603906],[5.092253393058106,52.87187775591941],[5.092739490044705,52.871302130622844],[5.093721154986874,52.87011832364839],[5.095842318827903,52.86761177841375],[5.098054419972345,52.86492905695547],[5.100090825984204,52.86250886033217],[5.101986554097378,52.86026045623976],[5.102101394223657,52.86016600321601],[5.102200134567805,52.860131216566096],[5.102853894330694,52.86002662633402],[5.104037136097712,52.85987442164373],[5.10446413637189,52.85981702380093],[5.104501347291454,52.8598030632366],[5.104576869846157,52.85974932269091],[5.104911782101794,52.859365938691475],[5.105505026386232,52.85867265265584],[5.105647542376132,52.858527847773225],[5.105758459289306,52.858446079069466],[5.105916981950138,52.85836313018013],[5.106109929050748,52.85829697536033],[5.106381797363303,52.85819723619983],[5.109693759226743,52.857516654727185],[5.109722126472716,52.85750576784398],[5.109747741113519,52.85749066524851],[5.109757544659348,52.857480578147566],[5.109757640891549,52.8574654090474],[5.109754492206057,52.85744967613678],[5.109729062555521,52.85743445579311],[5.109703610370879,52.857426533382096],[5.109681366855901,52.85742254825087],[5.109642830325062,52.85742582771618],[5.106314895647904,52.85810948584042],[5.105819410723136,52.85827937009893],[5.105637363738608,52.85837462978785],[5.10550797971823,52.85847001348387],[5.10541825788856,52.85854606980367],[5.10485933708624,52.859210115259216],[5.104575002728363,52.85953532934246],[5.103181805942543,52.85909427098962],[5.104138991968179,52.85793581369434],[5.104297427643641,52.85775610656981],[5.105158919701169,52.85800759340229],[5.105189855837752,52.857975925939726],[5.104698339657005,52.85782311540713],[5.104652587006314,52.85779717073869],[5.104636818050411,52.857760629976404],[5.104645218974841,52.857714592806076],[5.104721853402621,52.85759822918374],[5.105304943982651,52.856908368856516],[5.10627151084555,52.85719678888233],[5.106336477242347,52.85710480337509],[5.106903075172297,52.8572762410318],[5.106967472708081,52.857272843434565],[5.107741026755599,52.857111640600756],[5.107805605125536,52.8570798885559],[5.107835161812956,52.857033901572066],[5.107940284859633,52.85706958248698],[5.108586088784195,52.85628879191114],[5.108825627914716,52.85635313744615],[5.109108697457378,52.85601359358213],[5.109208040192911,52.85603863690129],[5.109320191345132,52.85588651186742],[5.109232629973669,52.855850874848265],[5.109318618578369,52.85575294080894],[5.109098267679375,52.85568558642016],[5.109138613078297,52.85563784489373],[5.109364374607436,52.85570390066231],[5.109413911232141,52.85564397577463],[5.109302918565137,52.85561182498189],[5.109627134246344,52.855244021187154],[5.109748908492541,52.8552804581759],[5.110167029309717,52.85540556082568],[5.109158705782598,52.85663177935343],[5.109150933507903,52.856672659122545],[5.109173253236598,52.8567045235628],[5.109210713114811,52.856718243430805],[5.109255728189997,52.856722895458645],[5.1093008298989,52.85671391504714],[5.109330950832392,52.856700343556675],[5.110730535670696,52.855026636493584],[5.110811770126307,52.85495194849985],[5.110940841756624,52.85489783359888],[5.111035765828973,52.85486276298461],[5.111895413680851,52.854668437106476],[5.112000027083889,52.8546363266812],[5.112068297869008,52.85459236897773],[5.112100207607118,52.854539502624746],[5.112107987037326,52.85446158000772],[5.112086473452681,52.854409965469024],[5.112085753067953,52.85440412253617],[5.112016465224944,52.854340787210326],[5.111909825108077,52.854308189649714],[5.111822501314701,52.85429181239039],[5.11164351914712,52.85430615529139],[5.111552785457413,52.854310259350186],[5.111449903808609,52.85430794582309],[5.111329978631919,52.854286891758484],[5.111045678475596,52.854223921452494],[5.110730619415968,52.8541326613841],[5.109487822635405,52.85377267681739],[5.107912238146285,52.85328510042289],[5.107845491298863,52.85326444584356],[5.110037245566107,52.850661253561626],[5.112156766472578,52.85130816782137],[5.112526461556037,52.85142862155301],[5.112671550883132,52.851514399754336],[5.11272576658056,52.85157790678751],[5.112743360883254,52.85167440919207],[5.112733759579277,52.851754312853664],[5.112696809329956,52.851839664189185],[5.112559921865488,52.851998169108334],[5.111550466928178,52.853196466895746],[5.111267511178673,52.85351682259265],[5.111207759859216,52.853610387471505],[5.111184481699924,52.853693010137135],[5.111224986461832,52.853764762742976],[5.111270102605093,52.853828248459614],[5.111351708200785,52.85387805285547],[5.111460681383625,52.853916883108326],[5.111565321933294,52.85392263356101],[5.11170650241005,52.85390642419539],[5.111820607593281,52.85385432362757],[5.111930243155104,52.853788435325285],[5.112028338332709,52.85370423173934],[5.112041478445585,52.85369899589811],[5.113740035366829,52.85167376717252],[5.113770017832172,52.851608188898396],[5.113790067289258,52.85155452114208],[5.113810191274802,52.85148892117191],[5.113791260960591,52.851363550968266],[5.113742311193085,52.85130973413054],[5.113644176338168,52.85123788711161],[5.113575500055426,52.85118401690264],[5.110387557752232,52.85022801544098],[5.111405695535096,52.84899600829871],[5.111415347572112,52.84899899437785],[5.113281062340193,52.84678513739326],[5.113621252582614,52.84638433115012],[5.113837357674927,52.846096688304364],[5.11393642748524,52.845829566724106],[5.113953054123099,52.84550833225919],[5.113903761185604,52.84504428552812],[5.113690188986164,52.84352001352153],[5.113413140922138,52.84139348161707],[5.113122224591651,52.839230408734444],[5.112800097797974,52.83708973308635],[5.112379622187689,52.83437255989811],[5.112368674823944,52.83419449082167],[5.112407980792625,52.83402945304878],[5.11240142473699,52.833816561019844],[5.112360452802267,52.833585062888375],[5.112294685387973,52.83342427278062],[5.112256111507398,52.83329163298739],[5.11224209937939,52.83308378409382],[5.111799636165313,52.830003164441024],[5.111799007422708,52.82999886108847],[5.111199766325845,52.825903869476804],[5.111000332701355,52.824407688700916],[5.110947879585888,52.82401440322595],[5.110787255874709,52.822984502674345],[5.110483479685634,52.8209870719937],[5.110182015648663,52.818882934481046],[5.110010979281153,52.81763451805914],[5.109625991659288,52.81497075297541],[5.109283940215475,52.8126659990855],[5.109030322433479,52.810856283518206],[5.108836224255254,52.809526925074174],[5.108172265891841,52.80491632437451],[5.107224488219108,52.7982285512343],[5.106304608194051,52.79221820920133],[5.105800968944054,52.78851279822231],[5.1051921145484,52.784254458481584],[5.104520855596434,52.77967411907759],[5.104232338511761,52.77762558045102],[5.104037804575046,52.77630293919316],[5.103835665601477,52.7749752195092],[5.103822190177111,52.77473366987424],[5.103825204303715,52.77466122660853],[5.103844877987814,52.77462588168157],[5.103859996661879,52.77461525122175],[5.103901067332579,52.7746007444366],[5.103910654610069,52.774587287966],[5.103899198941842,52.774569287203576],[5.103947229270642,52.77451772651984],[5.104002130086095,52.77447685033229],[5.104069396114048,52.77445791502951],[5.104164381853072,52.77445139872078],[5.104291508058339,52.77444945380042],[5.10451489741879,52.77445728999632],[5.104684612373648,52.774457692335666],[5.104759362431814,52.7744646104426],[5.105194838061109,52.774471258165754],[5.105402050609059,52.7744762424675],[5.105567084171224,52.77448336986344],[5.105694424368388,52.7744847966859],[5.105911440927862,52.77447687668528],[5.106342482061166,52.77445430365041],[5.106678603407471,52.77443094854687],[5.106901855750876,52.774422484237206],[5.107142700966463,52.77441631292629],[5.107361990371355,52.77441345876911],[5.107918216118031,52.77442687018081],[5.107929655912848,52.77442714411782],[5.108273403955601,52.77444143177792],[5.108621539065461,52.77445797269396],[5.108859459353382,52.77447368643781],[5.109614081729197,52.77450690241365],[5.110413757779706,52.77455481992379],[5.111587365633059,52.77464347686159],[5.111816041613533,52.7746557950837],[5.111929760981304,52.77465156704539],[5.112003228504353,52.774639943336695],[5.112138332916096,52.77458633455573],[5.112397948841757,52.77446673800729],[5.112436272751215,52.77444716240271],[5.112480304867447,52.774439400463635],[5.112529849475526,52.774440636178845],[5.11276689453284,52.77448724019792],[5.11287462660306,52.77451332511442],[5.112947157140878,52.77454101846535],[5.113020941361925,52.7745900501362],[5.113081480438564,52.77464860513491],[5.11311773360348,52.77466441443399],[5.113160515735769,52.77467125106666],[5.113202263632318,52.77466123601995],[5.113221440755749,52.77463039168401],[5.113225847490333,52.7745910874078],[5.113208343172992,52.77453992955394],[5.113162181533774,52.77448085049037],[5.113103135675206,52.77444420330727],[5.113044733690742,52.774415984465875],[5.112535797985062,52.774305293004346],[5.112513032201066,52.77427995987465],[5.112504164614259,52.77425466775412],[5.112515314357603,52.77421088295782],[5.112649750837042,52.773893286663125],[5.112654998277343,52.773867461791525],[5.112583856482104,52.77380326630527],[5.112382634953597,52.77362137950582],[5.112294222065056,52.77354198334484],[5.112248634644757,52.77350087068164],[5.111987977851921,52.773306496475016],[5.111750740590054,52.77314586810079],[5.111374120213451,52.77291246546935],[5.110662640666817,52.772465972797306],[5.110353736483584,52.77229057899559],[5.110300927685299,52.77225450834969],[5.110286991722662,52.77222582794407],[5.11033195339362,52.7721102258894],[5.110341097962579,52.77209115203418],[5.110375298870273,52.772065394491975],[5.110290409317466,52.77201786219383],[5.110232716947959,52.77198530568086],[5.11019296234813,52.77201105027708],[5.110166754698311,52.77201772675592],[5.109979698751911,52.77205156204307],[5.109923826658109,52.772027838219515],[5.108255036284617,52.770957324260145],[5.108559785287524,52.77076763239833],[5.108317884870806,52.77057946682905],[5.108149163788182,52.77049650145909],[5.108011099072304,52.770447733144344],[5.108161715906682,52.770380269803994],[5.108274549064957,52.770329420690054],[5.108297598100677,52.77034632213417],[5.108772703455208,52.77065450291677],[5.108813373026295,52.77068085726675],[5.109552125244971,52.771090659001835],[5.109778946441108,52.77122027404202],[5.110130394294549,52.77143294747858],[5.110511702965341,52.77165625492618],[5.110464469267298,52.77180330279706],[5.110443165224188,52.771839758508456],[5.110399262464772,52.7718621244018],[5.110472434862999,52.77190456717478],[5.11053468166753,52.77194051496696],[5.110567509258564,52.77191138504031],[5.110653933304551,52.771901475452076],[5.11076799985318,52.77187702460383],[5.11089111621229,52.77185035062672],[5.111691157685848,52.772311086772916],[5.111881918734372,52.77242555077205],[5.112316239900444,52.77191318376062],[5.112185864482878,52.771694951108195],[5.11212423103431,52.77159201818619],[5.112109236268136,52.771582441427064],[5.112070271015029,52.771558192355734],[5.111542417756115,52.771301345873525],[5.11139744074729,52.77123082471442],[5.108991668557807,52.77006036990861],[5.109221059371903,52.769664361690914],[5.109335947847681,52.76948954014923],[5.1093912352268,52.769479406115664],[5.109491825803667,52.76949873562272],[5.109580766835109,52.76952983845222],[5.109692536700299,52.76957334489538],[5.109823020224536,52.76962420103243],[5.1100641118634,52.76972249302906],[5.110459215018203,52.769884048743805],[5.110910015590951,52.77006920661035],[5.111382171443871,52.77026924754271],[5.111880672743004,52.77048552723109],[5.112308048712336,52.77067186672572],[5.112411992941132,52.77070973221888],[5.1128339467251,52.77087696131161],[5.112855165390419,52.77088880708779],[5.112918854620197,52.770923780100354],[5.112935598822385,52.77094740801176],[5.112950971157381,52.770969342352124],[5.1128737451543,52.77121349796782],[5.112857353792917,52.771280295780066],[5.112804834949055,52.7714958583602],[5.112746978841355,52.77167770552337],[5.112726135511197,52.77171473066583],[5.112653094356235,52.77184318564449],[5.112421897848052,52.77226988677325],[5.112252858987162,52.772568504854824],[5.112237241539333,52.772622954724994],[5.112240414539343,52.77267014169158],[5.112255423777502,52.77275049107972],[5.112298036222606,52.77280817837902],[5.112517730535962,52.773049905900606],[5.112824810144885,52.77337133561423],[5.112909554826142,52.7734097208117],[5.112906963401415,52.77341701390241],[5.112885059145677,52.77347594276275],[5.112896887692255,52.77350854881489],[5.112935836895366,52.77353784543072],[5.113007207519261,52.7735666495467],[5.113085356488875,52.7735783413249],[5.11314754587852,52.77356706302848],[5.113460491460254,52.77346603387753],[5.11349895493079,52.773461627913704],[5.113528329122492,52.77346618963658],[5.113548831081146,52.773483645870286],[5.113395446245342,52.774098129660445],[5.113427755201586,52.7741472635242],[5.113651248052319,52.7743850442946],[5.11371596539999,52.7744152795784],[5.113778609711402,52.77440987035528],[5.113805579758544,52.77437898089064],[5.113803323532601,52.77434370445635],[5.113640969963671,52.77415393499704],[5.113642920235108,52.774109500809594],[5.113824817901698,52.77348484347448],[5.113830744453331,52.773425320624305],[5.113823121824338,52.77338373933971],[5.113906456810742,52.7733507872205],[5.113991197572163,52.77330433834107],[5.114068991391304,52.773240513743076],[5.114135109250912,52.773180559011124],[5.114233695378179,52.773076316307716],[5.114330802188108,52.772950166681525],[5.114528097412793,52.772610243338335],[5.114542511831069,52.772601291336464],[5.114574201532689,52.77260753592943],[5.114767291849208,52.77264617204611],[5.114912747327739,52.77267515420372],[5.114937863774859,52.77261959964246],[5.115178848918806,52.77208536686318],[5.115280688038205,52.77188515557056],[5.1153951382717,52.77172308943232],[5.115623589767096,52.77143490916721],[5.11568096356937,52.771368209731875],[5.115782487028461,52.771311707441065],[5.115852850078042,52.77131580024373],[5.116155000943215,52.77138950518493],[5.116632797443806,52.771475968570755],[5.11692112246759,52.77150188986599],[5.117037716061229,52.771516758572126],[5.117089996716204,52.771523618925],[5.117188435533045,52.77151541864027],[5.117259005056635,52.77148580709034],[5.117280289411918,52.77145159951054],[5.117259399255744,52.771421777233286],[5.117217354101289,52.77140876802204],[5.117139901792374,52.771408556629424],[5.116985129781959,52.77140392818439],[5.116647681549918,52.77135186447465],[5.116092396868177,52.77125231453734],[5.11594501283933,52.77120086248212],[5.115914101973533,52.77114407122183],[5.115962267619468,52.771106543324606],[5.116461614585768,52.770783335072],[5.116512020024027,52.770750566040796],[5.116588271626945,52.770660875026536],[5.11658532573263,52.770613127899026],[5.116528987811549,52.77056545096428],[5.116441048283009,52.77054595574519],[5.116318268737324,52.77055523153517],[5.116274668800786,52.77056861171087],[5.116128998159382,52.77061209106243],[5.115981466436951,52.77069768611319],[5.115683578492999,52.77086888091273],[5.115398398596513,52.770673893802375],[5.115632201900977,52.77053008111508],[5.115836851821562,52.77042101367131],[5.115900645701969,52.77038737939227],[5.115922148773318,52.77037945616274],[5.116127575077235,52.77032001855064],[5.116471678772626,52.770264462477854],[5.116489184598931,52.77026171723394],[5.116544729745693,52.77025243960481],[5.116884146878736,52.770176256936864],[5.116975244783381,52.77014431959006],[5.117061602748363,52.77011258441834],[5.117188710260561,52.77004439407831],[5.117391928572756,52.76990475040206],[5.117443991324159,52.76986917276088],[5.117628646088082,52.769698277390205],[5.117699355069931,52.769616038426705],[5.117700531595518,52.76961482517591],[5.117719022090114,52.769568736060215],[5.117778528471894,52.769420025293186],[5.117827093113262,52.76923231860709],[5.117839465670817,52.76918425472804],[5.117872666797399,52.76905627087033],[5.117916857394905,52.76883394796386],[5.11791760233453,52.76883400446612],[5.117925952105404,52.76878566817286],[5.117989708522896,52.768462564956394],[5.117999526250049,52.76841281744992],[5.118030367698186,52.76825680292408],[5.118055220939108,52.76813057951738],[5.118062254186164,52.768094881936264],[5.118064840112702,52.76808177516496],[5.118084859436747,52.767980028009745],[5.11815037724372,52.767902664037855],[5.118230631290913,52.767880377309965],[5.118353797653997,52.76787728602822],[5.120301771775966,52.76801814681765],[5.120408713488448,52.76802175536792],[5.120762387395215,52.76791864130357],[5.120906804574207,52.76788975879022],[5.120974817344752,52.76789552655235],[5.121051350304745,52.76795073968577],[5.121259656771596,52.76826405144971],[5.121315186540198,52.76834787188687],[5.121405075181034,52.76856487746963],[5.121462341361936,52.76878012073449],[5.121478435865144,52.76906661011438],[5.121457381162609,52.76929347926878],[5.121375714882653,52.76955223583081],[5.121267061822294,52.769791823539116],[5.121148741776596,52.76998534043064],[5.120932247881394,52.770216824540285],[5.120726339535749,52.770423059306594],[5.120520394586204,52.77059503784638],[5.120220065633365,52.770791506612014],[5.119964321214598,52.770929672237976],[5.119666785250685,52.7710486349522],[5.119323172305152,52.77116638082383],[5.118934041777119,52.77127110209565],[5.118564065080265,52.77134496604562],[5.118394473652338,52.77136480487215],[5.118316929607857,52.77139889564672],[5.118295411970566,52.77143310288464],[5.118309272746973,52.77147582311361],[5.118365406975735,52.77149729240669],[5.118457099312333,52.771497499159786],[5.118632978616549,52.77147205857736],[5.119013380789203,52.77139597027851],[5.119422279199959,52.77128612037158],[5.11978184319263,52.771162916388235],[5.120099344034977,52.77103556943317],[5.120374610184821,52.77088678081998],[5.120691201790286,52.77068022892408],[5.120910403000958,52.77049761240796],[5.121122611970186,52.770284650413686],[5.121349362976365,52.77004195627091],[5.121477256031152,52.76983273007473],[5.121590835154518,52.76958304213501],[5.121667490171768,52.76930967435103],[5.121699535636441,52.76906654560464],[5.121672940503473,52.76879351303151],[5.121610792878458,52.76857994221739],[5.121534486374333,52.76841294972482],[5.121453895807631,52.76826448465131],[5.121388411210997,52.76814414317704],[5.121243917774709,52.767919716672225],[5.121014963329448,52.76768892118493],[5.120636959423155,52.767415102108195],[5.120551761003762,52.767379520706655],[5.120466034510297,52.76738888274851],[5.120433891252813,52.767421388792975],[5.120428353597616,52.767457319926024],[5.120639130637451,52.767591471624776],[5.120626591140824,52.76763637927873],[5.120588852247236,52.76767561113618],[5.120460174732205,52.767743279482],[5.120267484391834,52.76779452300598],[5.120031923587949,52.767813659228],[5.11982344527127,52.767819734140346],[5.11962576332525,52.76779332774181],[5.119428346934201,52.767744338732],[5.119129440196347,52.767636390782286],[5.118895080491022,52.76749656838547],[5.118772911520958,52.76737272419166],[5.118629706350148,52.767167953235216],[5.118554824903312,52.76695996426176],[5.118631873451896,52.76681410447667],[5.118716566762858,52.766706452987115],[5.118737184728223,52.76666605800607],[5.118928942324776,52.76642721575321],[5.119242575229541,52.7660942877949],[5.119491559947679,52.765809518672576],[5.119681379338147,52.765545391886604],[5.119632254915582,52.765515514692694],[5.119564304028238,52.76553277133543],[5.119388577206377,52.765726714056065],[5.119311033960317,52.76572653980165],[5.119243065572208,52.76574998092682],[5.119203958423381,52.7657852784688],[5.119164605096051,52.76589696221334],[5.119028247525333,52.76597304047345],[5.118911524086247,52.766019961115624],[5.11874659162155,52.76603700345343],[5.118494093212913,52.76610159137943],[5.118329232606918,52.76610683635022],[5.118106291197681,52.76607094148899],[5.117980758760925,52.766006070897674],[5.117916249186885,52.765861264900956],[5.117908941716109,52.76582560590394],[5.117939519192728,52.765596511960325],[5.118032105969556,52.76537149515621],[5.118213152347917,52.76495401830133],[5.11827644058157,52.76478790734739],[5.118318378676894,52.76470599573027],[5.118347874570779,52.7646538202729],[5.118438725788261,52.7645633862232],[5.118451027228105,52.764558030874994],[5.118555248104314,52.76451271089854],[5.118904389759182,52.76442533782931],[5.119094932668506,52.76441009362671],[5.119227252295912,52.76441430942962],[5.119375564913462,52.764444029579714],[5.119465805726563,52.76446578263541],[5.119527104577941,52.7644717976721],[5.119588309291584,52.76449348542334],[5.119607457599961,52.764528782682866],[5.119600793431051,52.76456208174209],[5.119584541625509,52.764581637348726],[5.119703630806084,52.76463676002488],[5.11973878590696,52.76469561250442],[5.119751273146599,52.76476617781524],[5.119741131437115,52.764840601599815],[5.119698369592567,52.764969807521894],[5.119701252792886,52.76502662845563],[5.119752016443259,52.76517171720471],[5.11982824099094,52.765186815266844],[5.119750159467558,52.765274818431095],[5.119854333345002,52.76531212082882],[5.119947215227935,52.76518988596693],[5.120192058676872,52.76482254084066],[5.120269243560466,52.76465252285293],[5.120375236178186,52.76443090246388],[5.120476839995897,52.764168265434755],[5.120545326999495,52.763829726390775],[5.12055577713349,52.76367360700727],[5.120528944603351,52.763402819942975],[5.120502352072485,52.76309383773301],[5.120451857308668,52.76279491303847],[5.120450538280347,52.76278939489262],[5.120396097367996,52.76256112985456],[5.120302565932696,52.76229581457019],[5.120105135257766,52.761913997965195],[5.119973428187409,52.761686221825556],[5.119945894946173,52.761531703159356],[5.119946685550481,52.76140195449132],[5.119976056359429,52.761254857986565],[5.120100772431488,52.76107035286126],[5.120290580908932,52.76084274083871],[5.120405475614753,52.760792444663664],[5.120517283345546,52.76078932574399],[5.120568463487905,52.760823140736704],[5.120606134577183,52.76087208711354],[5.120658336778022,52.76088961578574],[5.120720190264662,52.760881327179426],[5.120777681929942,52.76082922445243],[5.120787645490831,52.760751735610164],[5.120769314182533,52.760644974631965],[5.120731552412031,52.76057242967255],[5.120615708835653,52.76047725566531],[5.120279297438407,52.76026306449408],[5.120156129854248,52.76019032983593],[5.120070630570892,52.7601671122609],[5.119209874421101,52.76015674848742],[5.119086271923172,52.76015647049442],[5.118964156570173,52.760101717750764],[5.118991674188742,52.76003156762328],[5.118993781951124,52.76002652088728],[5.119046868497884,52.75993789750486],[5.119122788299403,52.75993806829612],[5.119235800197091,52.759778240598756],[5.119487854507253,52.759778807042395],[5.119747979141477,52.75978669822915],[5.119884072885422,52.75978700355468],[5.119972111155498,52.75977484233991],[5.120036415844035,52.75974353360943],[5.120573059631283,52.75934425395264],[5.120765849237561,52.759194158003694],[5.120846766072602,52.759058412624434],[5.121267977596034,52.75822582746315],[5.121405211656635,52.75803910207931],[5.121566453594365,52.757859723731784],[5.122103406487402,52.75736664336307],[5.122465241338419,52.75708604478629],[5.122955593246849,52.75683270131751],[5.123183523408287,52.756680091996124],[5.123373651896548,52.75655278987655],[5.123568851726895,52.75638471924329],[5.123668475205033,52.756290577224654],[5.123698973086301,52.75626143844079],[5.123703534678125,52.756231466745724],[5.123709029229711,52.756152457911504],[5.123617502984046,52.75599165140837],[5.123570314673251,52.75590294790585],[5.123570606905211,52.755854320942525],[5.123575845930625,52.75581786407065],[5.123556040446218,52.7557813517964],[5.123536286856324,52.7557357180244],[5.123536414706899,52.755714446535464],[5.123541587125279,52.7556871021386],[5.123586846752564,52.755653761453424],[5.123722568723044,52.75556289942028],[5.123757780015351,52.7555356223195],[5.123767937522033,52.75551133456051],[5.123793134270701,52.75548403531176],[5.124094677320524,52.755290190059064],[5.12419025038487,52.755215334215556],[5.124371122327918,52.7551063287501],[5.12447733776188,52.755060045436515],[5.124553467744753,52.755023700740274],[5.124566804947423,52.7550001406605],[5.124547148826478,52.754972993127424],[5.124572326606559,52.75494872941328],[5.124904046343537,52.754730641073074],[5.125039797229737,52.754636730162446],[5.125068598632381,52.75460807347293],[5.12524598281887,52.75447761467314],[5.12578672762787,52.75407151894875],[5.126383054727139,52.75377013449789],[5.128056097182681,52.75290543191533],[5.128276935301548,52.75277953039748],[5.128458171241618,52.75265635446427],[5.130001910704176,52.75168912129454],[5.130239805398418,52.75157280770749],[5.131430526570512,52.751086708528156],[5.131809486384142,52.75098473907652],[5.131882908088907,52.75097478444],[5.132113760936461,52.75107132450496],[5.132400703214943,52.751194947198805],[5.132852128978894,52.7513672200053],[5.133298092284283,52.751483316357664],[5.133608526063785,52.75150757134127],[5.13394826526268,52.75150435669353],[5.134364361997656,52.751463677114025],[5.13464632719167,52.75140754934394],[5.134963849054042,52.75132396866288],[5.135385637188547,52.75113838609139],[5.135805757823988,52.75092190183752],[5.136153335978332,52.75072042764749],[5.136400166203851,52.750534472766326],[5.136582384224035,52.75035456173514],[5.136654431494453,52.750221033453855],[5.136670296263137,52.750197477315325],[5.137008668033707,52.74975641519422],[5.137079446278981,52.74973598396171],[5.137370960900064,52.74968358223411],[5.137763009359543,52.74959409408152],[5.138025507381895,52.74952395294354],[5.138711148709785,52.74929666114448],[5.139158655629337,52.74912088656308],[5.139698740739292,52.74888640210982],[5.140367189843356,52.748550090000435],[5.140982397205772,52.74818323655762],[5.141398357182066,52.747864055771075],[5.141780229956483,52.747561511612474],[5.142261669298631,52.74710110890522],[5.142724301750771,52.7471118734429],[5.142921731007004,52.74710049570186],[5.143091739689637,52.74707434195151],[5.143428728811011,52.74698668325955],[5.143567195557007,52.746939737097485],[5.143710757132367,52.74689106493085],[5.144009052458079,52.74677778408129],[5.144827877883209,52.74644274308957],[5.145304655321514,52.74623166780754],[5.146175789100607,52.74579755410971],[5.146568382679004,52.7455941570324],[5.147121844427107,52.74526248321491],[5.147719319460403,52.744867087017795],[5.148336452575264,52.7444246020887],[5.148622168125701,52.744218574540696],[5.148719956545825,52.74410729859523],[5.148844132022271,52.74387979480189],[5.148910016611277,52.743663955145955],[5.14891174461019,52.74364570635532],[5.148805656317764,52.74362937089167],[5.148828239290855,52.74310585335718],[5.148925603121418,52.74310604809007],[5.14891369439326,52.74298659741092],[5.148875847446378,52.74280588645635],[5.148805584679399,52.74263690225124],[5.148729376938673,52.742373650426295],[5.148647025800059,52.742047570082825],[5.148301439410336,52.74134594974786],[5.147935795332265,52.74076799086933],[5.147213332874937,52.73995761491811],[5.147219891675599,52.73990087715485],[5.147250049788728,52.73987178459403],[5.147286304161618,52.73982449696954],[5.147238984202655,52.73969687846604],[5.14726924997733,52.739653209466205],[5.147315668157535,52.739602033022315],[5.147407613040628,52.739546526667496],[5.147565312983763,52.7394664656628],[5.14761398682166,52.73943895598055],[5.147647099413965,52.73946256717343],[5.147696791997205,52.73948958354653],[5.147779775890202,52.7395099257718],[5.147890454920976,52.739526971476366],[5.148006703457132,52.739540658194734],[5.148122918956637,52.73955770491156],[5.148172626796669,52.73958471212868],[5.148266726649508,52.7395949921828],[5.148344251391868,52.73959851857991],[5.148446640607568,52.739620435987284],[5.149822884433197,52.74040393503115],[5.149997685725355,52.74049148149723],[5.150272939166165,52.740603637524934],[5.150542635373696,52.74068091206044],[5.15078374115743,52.74073370214671],[5.151312014559406,52.74081497459196],[5.152826746256701,52.74103417784164],[5.155010366675419,52.74134465310527],[5.155331881742638,52.74138963727402],[5.155607614494667,52.74141460060744],[5.155946672186829,52.741418746001926],[5.156406500503953,52.74140568007318],[5.156700777262648,52.74139571802032],[5.16059686502797,52.74126375034313],[5.162786655800445,52.74118281619579],[5.164985520085796,52.74110386277082],[5.165094662856507,52.74110413635143],[5.166860477055034,52.7410512505119],[5.169592597467076,52.740976513012825],[5.169795910986804,52.74084545176192],[5.169963920416376,52.74073728535443],[5.16979992392096,52.740642130295726],[5.169282395672759,52.74045133732432],[5.169134648530244,52.74038591342393],[5.169038744896281,52.74026891089484],[5.169088133027977,52.74024708871883],[5.169221416693337,52.74019847121481],[5.169274065721814,52.740173856427774],[5.169286155587554,52.740159272243275],[5.16929017266675,52.74014467599101],[5.169278230720391,52.740124993664374],[5.169258141324405,52.740117657819646],[5.169221807179949,52.7401198398644],[5.16906452544593,52.74015662092276],[5.169004128443617,52.74015875615299],[5.168919486593773,52.74015129573986],[5.168678035627604,52.74008739090109],[5.168617587246906,52.74005525726014],[5.16856559402016,52.739993945383695],[5.168517652557457,52.73991352952547],[5.16849774446271,52.73986687919655],[5.16848599964168,52.73981069354244],[5.168486500625893,52.7397101497976],[5.168503022089599,52.73959784293433],[5.168536053829166,52.73946816066881],[5.168609470743759,52.73926777129452],[5.168670523299497,52.73913252630702],[5.168723389433898,52.73906409685464],[5.168767828034704,52.73901250313914],[5.168828665671729,52.73896880383813],[5.16905481996057,52.73885182218449],[5.169244634882514,52.738783090444336],[5.16943436454809,52.73873231932991],[5.169652095596152,52.73868104275401],[5.169886213502584,52.73863765914567],[5.170236916241828,52.73859673501981],[5.17038199782942,52.73858970089003],[5.170535183738212,52.73858491994006],[5.170732749975455,52.73858752661859],[5.170845619814597,52.738592791196446],[5.171002642131072,52.73860543399178],[5.171391741072645,52.738660060324975],[5.171588832302366,52.73871152163759],[5.171766031602844,52.738763517324394],[5.172067695858884,52.73886179413951],[5.172200455267794,52.73891595564315],[5.172341256048066,52.738984735997676],[5.172512420066387,52.73908558917595],[5.172668999143528,52.73919089668123],[5.172765287522119,52.73927701375765],[5.172837472134396,52.739369816733735],[5.172901538582799,52.73947047573006],[5.17292519673768,52.73955364555655],[5.17295287965046,52.73966378579897],[5.172956724901578,52.739727820280855],[5.17294824493505,52.73980699967383],[5.172919626738339,52.739887827883486],[5.172874843799046,52.739961332402316],[5.172797879610483,52.74003926163546],[5.172712888759942,52.740103140740636],[5.172527170051146,52.740185933577024],[5.172252802226438,52.740275873438435],[5.172176158271299,52.7402880929494],[5.172107423393786,52.74029021560658],[5.17197463755624,52.740287729140356],[5.171873769108835,52.740287546912654],[5.171785125070731,52.74029468400382],[5.171611680123016,52.74032357662638],[5.171036878631111,52.74043880599386],[5.170915878135604,52.74043858643318],[5.170835489622723,52.74041428659707],[5.170811313065413,52.74038952622125],[5.170779460583805,52.74032600608517],[5.170755441441858,52.74027204148476],[5.170683145166105,52.74024719456592],[5.170634759055872,52.74025215723593],[5.17062658035957,52.74027180735121],[5.170650474253287,52.74030610677087],[5.170714772644366,52.74035509487689],[5.170738828573878,52.740404000865276],[5.170750502559105,52.74056915414853],[5.170758102244171,52.74071857397271],[5.170757850014898,52.74074810423157],[5.17075760923968,52.740818552437204],[5.170937943351598,52.74093907597828],[5.171069211930753,52.741014022533975],[5.171159659513338,52.7410192380443],[5.171225697291785,52.74099913649152],[5.171110957822706,52.740898953617695],[5.171086461276936,52.74084947714763],[5.171169332973353,52.740744601054885],[5.171326145444209,52.740615130719924],[5.17173800674095,52.74056083361095],[5.172132993316579,52.74055143696675],[5.172289139034375,52.74055621299307],[5.172304612671992,52.74067143316086],[5.172397620480118,52.74069195601801],[5.17250921153629,52.74072156201994],[5.172592789746726,52.7407658100345],[5.17267255756263,52.74082927485233],[5.172724361954923,52.740900607582134],[5.172821307972576,52.74087590649342],[5.172788047768366,52.74082496323645],[5.172721282499647,52.74076717461432],[5.172647005369173,52.74072519823218],[5.172559668139041,52.74068659530027],[5.172528198446341,52.74064809296255],[5.172524617831295,52.74061755825781],[5.172530325556076,52.74059494869451],[5.172545363854752,52.740565569985144],[5.172618699559586,52.74048715898692],[5.172799829668824,52.74044760776659],[5.173005688758822,52.74040809712899],[5.17343426090128,52.74024879243248],[5.173690102216775,52.740114450481855],[5.173725686751783,52.74012630225878],[5.173846266805065,52.740164713132884],[5.174018686483266,52.74019984298117],[5.174199760246667,52.740215337449605],[5.174224486000049,52.74017549989666],[5.174134065825046,52.740165228074744],[5.174043779043403,52.740130239948066],[5.174027748382934,52.740050457660075],[5.174135082737327,52.739955728941176],[5.174357651269378,52.73986119791854],[5.174618165580983,52.73976617879325],[5.174682982164798,52.73975843093136],[5.1747930816766,52.739762565264336],[5.174787676314606,52.739541810338004],[5.176141196161185,52.73967059715774],[5.17630953086128,52.7396905466907],[5.176432473066781,52.739718292661976],[5.176451853389957,52.739730119456155],[5.176451758998016,52.7397497797748],[5.176412628157737,52.73980475758493],[5.176380046340929,52.739844016423234],[5.176347566312584,52.73986361404878],[5.176340983487115,52.73988326378426],[5.176347283016699,52.73992259050869],[5.176502758532954,52.739922865513726],[5.176697019346934,52.73993894027998],[5.176917083877705,52.73997864440021],[5.177124158056438,52.740026189585734],[5.177311731796081,52.74008549258013],[5.177531591013248,52.74016844970023],[5.177751358745118,52.74027106403694],[5.177791773530721,52.74033404105856],[5.177636364590299,52.74061291577397],[5.177715165352689,52.74063102798052],[5.177794464865674,52.74045087274229],[5.177824568713442,52.740397004677654],[5.177865870394536,52.74037124011114],[5.177917727235921,52.74036459377177],[5.177969997605318,52.74036748855156],[5.178038201940954,52.740379406192496],[5.178211644984604,52.74044429792629],[5.179228051364209,52.74087632223646],[5.179554917452838,52.741034162586246],[5.179915834857962,52.741234187903785],[5.180005808707804,52.74129051382469],[5.180154061067302,52.741396366681904],[5.180276807122225,52.74152127476085],[5.180476287288046,52.74180582926296],[5.180552456881161,52.74194413107788],[5.18059719530135,52.74207282805436],[5.180678844262986,52.74222631352637],[5.180743070164199,52.742294947533296],[5.180833582158135,52.742385529708585],[5.181077901551427,52.74258198208164],[5.181355431948452,52.742778032983296],[5.181815251386877,52.74313594370489],[5.182224543814314,52.74348432236411],[5.182363576517433,52.74363733643482],[5.182460020260702,52.74374647003228],[5.182519137549596,52.743821836182256],[5.182546415766891,52.74387524315929],[5.182536748793189,52.74391622531911],[5.182506481393355,52.7439538110262],[5.181737269864239,52.7444703544719],[5.180263451748302,52.74548162596381],[5.180243362725962,52.745519781446546],[5.180261763376374,52.745543845938506],[5.180317634286066,52.74556934147556],[5.180369912571172,52.7455750480768],[5.180416683938056,52.74556838733162],[5.180463070294355,52.7455459998737],[5.182075665020328,52.74444846856529],[5.182521136212822,52.74413694349936],[5.182849564702055,52.74391957410088],[5.182432847765135,52.743469519700206],[5.182118796845343,52.743187019117755],[5.181837163935613,52.74295343579049],[5.181555332451421,52.74270693288193],[5.181289602990491,52.74248574153197],[5.181077055995123,52.7423174292655],[5.180997546989902,52.742252134560744],[5.180964956713743,52.742195352445144],[5.180958308968597,52.74213243498272],[5.180950917933199,52.74208242939746],[5.181229644907603,52.74194979775979],[5.181185364824574,52.74191994607753],[5.181279318726251,52.741866186629835],[5.181463245815517,52.741966483609524],[5.181522292001394,52.74200590198331],[5.181575305341299,52.74204980422769],[5.182867382530771,52.742973180309704],[5.183055878599824,52.74313751011827],[5.183151919884257,52.743234285603044],[5.183365764447391,52.74347055375397],[5.183414059532714,52.743536358749054],[5.183532284851463,52.743686522991524],[5.18374767671463,52.7439901941978],[5.183749611569298,52.74399671384206],[5.183657420159256,52.74403698811022],[5.183185713929691,52.744333321641165],[5.18316120842169,52.74432002143723],[5.182974886818707,52.74443540845048],[5.182930793600492,52.744462295127626],[5.182956316567251,52.74449434901303],[5.18320844728161,52.7448104409602],[5.18343158836874,52.74508998283227],[5.183651288287935,52.745365577667236],[5.183857416738997,52.745624303137106],[5.184000511384113,52.74580371549831],[5.18425288700956,52.74612037529038],[5.184447292762052,52.74636390638467],[5.184530569070898,52.74646851881262],[5.184520939658472,52.74649715508713],[5.184663182491029,52.746561985115115],[5.184267730363405,52.74681181886805],[5.184195574424781,52.746853825252046],[5.184040741292987,52.746911976583014],[5.183813130366567,52.74699302594554],[5.183741006129753,52.74702548002661],[5.183568841492304,52.74702687730725],[5.180041392616308,52.746051901961664],[5.179988764155323,52.746027094934306],[5.179946305053424,52.74600230916359],[5.179908996850129,52.745964614691175],[5.179692602519638,52.74563003916179],[5.179600722385473,52.745487779632846],[5.179558111848697,52.745444450960534],[5.179510594545326,52.745416284363635],[5.179447698352795,52.74540718612363],[5.179390306103155,52.7454082112095],[5.17934351402999,52.745417683490096],[5.179312439189525,52.74543391249741],[5.179287056327659,52.745465885542515],[5.179282710866409,52.7455035084511],[5.179304912667589,52.74555691088904],[5.179655601163769,52.74606807831212],[5.179719231168018,52.74611481538988],[5.179782840963845,52.746155203214265],[5.179840867798368,52.746179611723456],[5.179951267703671,52.74622305908928],[5.182896224280175,52.74701785911629],[5.183358157062347,52.747151764519074],[5.183525956285434,52.74719474054399],[5.183630298899813,52.74719997749097],[5.183724014864632,52.74719901238036],[5.183807141622502,52.747185674957535],[5.183972822240307,52.74713653103781],[5.185529107346723,52.74660389149692],[5.185612204041945,52.746596732992906],[5.18569571676749,52.74660249457336],[5.185748359533126,52.746627295499636],[5.185832826088335,52.74667630043211],[5.185907653628117,52.74675787609688],[5.185962045196971,52.74685512974653],[5.186000530659218,52.74694001313396],[5.186092445251489,52.747080588965005],[5.18615707610095,52.747168319397225],[5.186273353410323,52.747243214740806],[5.18638604639989,52.74739337564215],[5.186493913893713,52.74753734358246],[5.186648910203745,52.74769992512548],[5.187092846714871,52.74818371490252],[5.187850147118535,52.74911905366395],[5.188042510894435,52.74935808094442],[5.188809888385665,52.75032825576021],[5.188969551714687,52.75052569272492],[5.188999840613845,52.75056313807256],[5.190430977082852,52.75233275329744],[5.192348837920365,52.754671901237955],[5.192492887450188,52.75480413819143],[5.192685810248511,52.7549313906725],[5.19285964392182,52.75502996272927],[5.193032273392229,52.755087533937115],[5.193173973236461,52.755126524692066],[5.1933337570878,52.75515823753282],[5.193524140603381,52.75518213644056],[5.193848361638024,52.75518546577028],[5.196109732589305,52.75514137727979],[5.198290581495593,52.7550886850739],[5.198906268238503,52.75507786225065],[5.200541076558161,52.755041112592416],[5.201916148829668,52.75501798970274],[5.202524901063145,52.75500376465522],[5.203507805624332,52.75500753093417],[5.203837596918725,52.755010851540725],[5.205225183189142,52.754985449521364],[5.205302779003945,52.75524675001956],[5.205396988644996,52.755245772185404],[5.205343783634278,52.75501764773632],[5.20536656093803,52.754993528696204],[5.208028933556082,52.75490601253856],[5.208172210010056,52.75490004399124],[5.208485341160192,52.75490276053977],[5.209059627521084,52.754936763380826],[5.209622610800619,52.75496511908953],[5.210357571740312,52.754987000773205],[5.210875081849774,52.754983273062834],[5.21134866523857,52.754967677766324],[5.211702646881949,52.75494236240474],[5.21213010028705,52.75488851302851],[5.212801906669247,52.75478670688497],[5.213792187436019,52.75462077530913],[5.214888962784967,52.75444544101772],[5.215678343757974,52.754339294246954],[5.216083124059484,52.754279782219086],[5.216797917976646,52.75418981578358],[5.218767204651884,52.75396573581108],[5.218772465113244,52.75396514022997],[5.220008977320499,52.75385286543911],[5.221052068867949,52.753784108199206],[5.222156723441478,52.753717685450034],[5.222740944501239,52.75369209144488],[5.222933653099045,52.75365135761868],[5.223190062408771,52.75353038993553],[5.223593737827808,52.753268636487626],[5.224058726205052,52.75300810061004],[5.224494802549678,52.752803679189064],[5.224955506868239,52.75263188027087],[5.225409107390433,52.752507803251255],[5.225714072808124,52.75245709899144],[5.225989511314865,52.75244793050311],[5.226431069702462,52.75244683547556],[5.228502300604115,52.752521505840924],[5.229467164092815,52.752571091206164],[5.23000957207915,52.752586978206374],[5.2306628012423,52.75260917952483],[5.231040624686514,52.75263775962391],[5.233105165984601,52.752707281597736],[5.234928508876847,52.75279444072153],[5.236999050588789,52.752875135426486],[5.23830618415609,52.752933508572596],[5.23856161562041,52.75295235714271],[5.239091759876418,52.75297099045926],[5.239531191447654,52.752986706119636],[5.243186358475034,52.7531282246948],[5.246264002257688,52.75324423437618],[5.250228062219343,52.75339014506625],[5.250235123557011,52.753390405706135],[5.254439994649287,52.753537259561085],[5.255356613403805,52.753563557272784],[5.256153363390239,52.7535891509882],[5.256384774556941,52.75359502091703],[5.256641191103904,52.75359530193772],[5.25703003111968,52.75358505074038],[5.257315675906975,52.753569636244954],[5.257690447895161,52.7535391562995],[5.257954138065905,52.753505741967956],[5.25826832454892,52.75346339218464],[5.258740449789865,52.75338133208156],[5.259109573119846,52.75330309751793],[5.259480128260156,52.75321082239735],[5.259865319399927,52.75310394834818],[5.260189606837495,52.753004315350566],[5.260582967538707,52.7528665646049],[5.260830877796626,52.75277021698189],[5.261129331181138,52.752639100305274],[5.261506212804211,52.752435050663166],[5.261982349889814,52.75215865174572],[5.264892609429246,52.750455864557445],[5.26489687351711,52.75042498134666],[5.264912908016914,52.7504008386133],[5.26500655174533,52.7503408417632],[5.265011911259566,52.75033354009889],[5.264990647037636,52.75031891298333],[5.264926698842161,52.75026549647339],[5.265031669488872,52.75021448631922],[5.265105797600315,52.75027354341848],[5.265122678561923,52.750273560701054],[5.265316457649035,52.750163668086216],[5.265338916721115,52.750159758421454],[5.265372925968437,52.75015923149666],[5.26539539586091,52.75015195268599],[5.269558280232953,52.74773506141345],[5.26958122292412,52.7477274731305],[5.269639375179607,52.7477194594354],[5.27095686837767,52.74765300135146],[5.271653513569532,52.747600878286136],[5.271701443155964,52.74758800170984],[5.271729511516921,52.74756388317886],[5.271737912753973,52.74753468603687],[5.271736610794639,52.74750490973698],[5.271715853553723,52.74747624873106],[5.271690459552292,52.747456002057014],[5.271646070937136,52.74744191539312],[5.271558586741618,52.74744351830948],[5.27094897669107,52.747483923342976],[5.26942825192554,52.74755657310439],[5.269329680987137,52.747558167028295],[5.269259800834482,52.7475552805763],[5.267063750315543,52.74732674072525],[5.263622019040492,52.74696543142392],[5.263603880764533,52.74683117687281],[5.263224547158504,52.74685942399305],[5.262751484563281,52.74688926253437],[5.261700707345744,52.74697522618319],[5.261336381567557,52.747011911799405],[5.2612282795495,52.74702302933735],[5.260917354137067,52.74675646664237],[5.260643946794082,52.746726407106586],[5.260608891808121,52.74668424518912],[5.260571962238033,52.74665331027117],[5.260494481277265,52.74663750106922],[5.259404483948756,52.74652120166694],[5.259289206511953,52.746455920189256],[5.259112420982061,52.746459659435516],[5.259077867027136,52.74648490306754],[5.258887336927812,52.74643694953587],[5.258817267932442,52.746419465787575],[5.25877935480987,52.7464098746906],[5.25861665448299,52.74634229926698],[5.258298236771235,52.746111666084246],[5.258247722005993,52.746056011944326],[5.258225582536979,52.74603127250759],[5.258220016227766,52.745961053535616],[5.258258733359646,52.74577686335968],[5.258311404264974,52.74572749381712],[5.258371933795191,52.745679258787945],[5.258989318885686,52.74542773492646],[5.259064026139597,52.74551824130281],[5.259093843881751,52.745528383491845],[5.259116352073216,52.745506504149006],[5.259070811803856,52.7454120965291],[5.25925074669031,52.74536286236137],[5.25945536528424,52.74533780099997],[5.259830705756293,52.74532753611389],[5.260295091751558,52.74533308186544],[5.261558826525114,52.74536699465346],[5.26214672720501,52.745387833884834],[5.262464592302959,52.74541007844633],[5.262763997437462,52.745415441864644],[5.262985924431263,52.745651575808985],[5.26306762819059,52.74564324026556],[5.262943344559468,52.745489768184534],[5.263005063246228,52.74542861711305],[5.265467361884136,52.74539801213417],[5.265722371071165,52.74555835312911],[5.265798711774196,52.74556235720944],[5.265833231617222,52.74554779149998],[5.265715378488639,52.745408940494606],[5.265767693209609,52.74540056506489],[5.266136518572146,52.74540094009944],[5.266410643698274,52.745412828143394],[5.266558305973122,52.74541653820064],[5.266801650862329,52.74544092988259],[5.267851066445119,52.745590266109645],[5.267967418961176,52.745601057025866],[5.267995314485903,52.74563871533058],[5.268009241286296,52.74570837692758],[5.268063095031007,52.74573258455881],[5.268095211694344,52.74574497438642],[5.268131353898034,52.74573153118462],[5.268105472558884,52.74563040477297],[5.269706832898166,52.74557694653574],[5.26983773805536,52.745600669381204],[5.269942447350587,52.74564176746075],[5.270066530500288,52.74570929397871],[5.270299397182313,52.74585106003904],[5.270498806702389,52.74595236040685],[5.270671651379581,52.746044642293754],[5.270929152703657,52.7461443154605],[5.271185119663962,52.74621533397548],[5.27128640637018,52.74624183028388],[5.271511537470952,52.74632967015512],[5.271633880260937,52.74635619108566],[5.271734061188739,52.74636358630561],[5.271833778556406,52.74636536963814],[5.271927318751128,52.7463413044893],[5.272025525005726,52.746304895018916],[5.272566897542808,52.74607568901304],[5.273008948751483,52.74586492163561],[5.273578825269131,52.74551610157591],[5.273825899550791,52.74536131538664],[5.27404141624818,52.745233460927196],[5.274372802405961,52.74503831208161],[5.274741680754875,52.74483927043763],[5.275241293555122,52.744543176202804],[5.275430615160491,52.74443551131392],[5.275818582709983,52.7441836768688],[5.276159942808484,52.743975617392806],[5.276555208653712,52.74376310726545],[5.277055886585448,52.74349958169437],[5.277372796349511,52.743347099262046],[5.277541892738802,52.74326918743117],[5.277775109834551,52.74317671987616],[5.278082672005883,52.7430607403422],[5.278375581746841,52.74297394296276],[5.278684891726406,52.7428967136552],[5.279454580939341,52.742745759262924],[5.279896239907558,52.742674302602055],[5.279903392002065,52.7426731461449],[5.28014711020996,52.74264078621803],[5.282305224135514,52.742405681526144],[5.282489682157225,52.74238281853707],[5.282581588757218,52.74236155194516],[5.282656395593794,52.7423301646342],[5.282730111726869,52.74227293926268],[5.282807823962147,52.742185942267405],[5.282863793701911,52.74209893968002],[5.282885588511279,52.74198325365323],[5.282914741820829,52.74179118262701],[5.282920570650359,52.74157326042003],[5.282873741108041,52.74093009403211],[5.282839098900339,52.740320086022656],[5.284390735957343,52.73888186381346],[5.285172171780006,52.7381231511655],[5.285572069038186,52.73766347296213],[5.286171676877833,52.73687876135722],[5.286458779180064,52.736474040361784],[5.286734457792668,52.73620410137375],[5.286750248328172,52.73617940182898],[5.286782405647926,52.736076076926324],[5.286883141206285,52.73542349409468],[5.287269846656534,52.733222050404585],[5.287311488771229,52.73302044793593],[5.287344324103424,52.73282107309148],[5.287365552500463,52.73274414927156],[5.287294324106849,52.732737903987534],[5.28727851661453,52.732768787445],[5.287262928509453,52.732808651617354],[5.28722454738987,52.73310350229797],[5.287171093372027,52.73311398194081],[5.287133626897769,52.73313162758911],[5.287081571458612,52.7331656790056],[5.287031647549655,52.73317322195956],[5.286967231532619,52.73316053325856],[5.286886203512358,52.733128893515364],[5.286788610565488,52.73307072055205],[5.286755365717914,52.733054283513034],[5.286574479565012,52.733055389168925],[5.286507977882181,52.73304269666157],[5.286401914767308,52.73305019283389],[5.286289563776507,52.73308166762594],[5.286121061635482,52.73313682893026],[5.286018782242596,52.73315528470367],[5.285906268503815,52.733192258032666],[5.285793246361128,52.733250579021515],[5.285721156616382,52.73331510599402],[5.28568015887049,52.73333641300583],[5.285608347450148,52.73337903835944],[5.285520711828529,52.73346546363511],[5.285381871522415,52.7335877879321],[5.285027686927355,52.73379362472066],[5.284904748294977,52.73383620852452],[5.284777290824686,52.73383946827754],[5.284747453895716,52.73383270522601],[5.284634909660176,52.733787671672225],[5.284574480751579,52.73370954396675],[5.284544375307425,52.73362639084433],[5.284597490650811,52.73356240454793],[5.284764300110723,52.73345245847995],[5.285044550375222,52.733310033076116],[5.285279434446561,52.733168135311004],[5.285498996955562,52.733053173699346],[5.28563546748492,52.732956683452215],[5.285718999218262,52.73284666327682],[5.285741846772159,52.73276861597274],[5.285795009515695,52.73268609024956],[5.285840226278446,52.732638945166954],[5.286436233533561,52.732279978178866],[5.286595347535745,52.73219698528638],[5.28652441889445,52.73215985207325],[5.286466027677509,52.732128755974514],[5.286264803837811,52.732066181301185],[5.286034808564498,52.732006089205406],[5.285919795543355,52.73198603183466],[5.285907354289537,52.732033426775075],[5.285582447548322,52.7321404880923],[5.285512646133016,52.7321079771605],[5.285426250841393,52.732157826171395],[5.285191783996458,52.73224497687465],[5.285089056396075,52.73224488895169],[5.285023214086947,52.732279773329886],[5.284924482653572,52.73232461472891],[5.284826591651827,52.73237719262656],[5.284770661859564,52.73238927681101],[5.2846389449517,52.7323576288243],[5.284507274330193,52.732313858402335],[5.284355716517675,52.7322336911141],[5.284204210404822,52.73213170366197],[5.284088652156956,52.73202245788941],[5.283953199518602,52.73188652367301],[5.283801959562195,52.73167296447112],[5.283639001702616,52.731349655834734],[5.283606768111574,52.73118790267333],[5.283609318226007,52.730893025471744],[5.283630107217903,52.7307065686216],[5.283720187505337,52.73067069951264],[5.283875104675919,52.73059557005549],[5.284160145834948,52.73046663103449],[5.284305362774136,52.730388680652496],[5.284581474880475,52.73022098080066],[5.284982643751873,52.729983728848595],[5.285163339429984,52.72986986858444],[5.285845016831267,52.72945873804398],[5.286422035990779,52.72909245740976],[5.286943905525189,52.72876487342811],[5.287425650982272,52.72848219582808],[5.287902788208918,52.728192201634464],[5.288404656696353,52.727903359243626],[5.288836596955381,52.72765039631154],[5.288716304405433,52.7276570344522],[5.288611977712076,52.7276625650143],[5.288462041381595,52.72768940325929],[5.288372003145452,52.72771628737936],[5.288301846336513,52.72774656068184],[5.288266389530027,52.7277824786116],[5.288251287828605,52.72780999455571],[5.288210978061133,52.72783691980841],[5.288165835501249,52.72786103354623],[5.288120933245196,52.72786717649174],[5.28807097936166,52.72786713497409],[5.28802583751271,52.72788170194408],[5.287950846006061,52.727909154543376],[5.287845507502209,52.7279540045909],[5.287459831387969,52.72809803724673],[5.287359853437908,52.72812210030412],[5.287209871109941,52.7281674767721],[5.287064778247368,52.728197116715805],[5.286915098460105,52.72821216159995],[5.286780262182591,52.72821204812176],[5.286650750385579,52.72820295394341],[5.286456569712471,52.72815785227203],[5.286143379729531,52.72806098146884],[5.285885045999886,52.72794955015814],[5.28571615981351,52.727864588782765],[5.28551081818106,52.72774870742666],[5.28527893586861,52.72759910329105],[5.285144567259477,52.72749339302955],[5.284975874775474,52.72735134636971],[5.284867165588225,52.7272308546651],[5.284768179788883,52.727127977324244],[5.284746076797721,52.727085273551346],[5.284655357851832,52.72691051659992],[5.284629155150062,52.726834665817584],[5.284529000355088,52.72654531934463],[5.28447068365803,52.72635822513213],[5.284433652277068,52.726073429028595],[5.284430051475777,52.725935807745344],[5.284463434656118,52.72560164466671],[5.284507547636632,52.725233778452434],[5.284509369286093,52.72504393477822],[5.284518810617128,52.72496193707332],[5.284591136335406,52.724897725440336],[5.284636968682574,52.72486996857031],[5.284705621341421,52.72487002760666],[5.284797138580582,52.724877053072774],[5.284894353301796,52.724897986003],[5.285003035583509,52.724901557116745],[5.285128904246755,52.724898187029275],[5.285197579666641,52.72488782016519],[5.285289204713257,52.72484967837256],[5.285415226114678,52.72478028177898],[5.285512522612644,52.72475950633694],[5.285638517813892,52.72470054230948],[5.285707433789806,52.72459286761565],[5.285747824141249,52.724439989950405],[5.2857478963284,52.72440871669464],[5.285707899243228,52.72439130209902],[5.285650748006956,52.72435997922035],[5.285622207305448,52.72433562752233],[5.285605059935282,52.72432518817354],[5.285610813772534,52.724314768337265],[5.285628079910041,52.72426612827425],[5.285639682220864,52.72419663390537],[5.2856169755415,52.724120163477345],[5.285554198443053,52.7240575525509],[5.285530384579317,52.724050294242105],[5.285451297459471,52.72402619056193],[5.285336879546368,52.72402609286414],[5.28522815234856,52.72403642466333],[5.285090746286141,52.72408843885244],[5.285010607653452,52.724109228659586],[5.284941956184314,52.72410916979941],[5.284844720409211,52.7240986535362],[5.284713122889265,52.72410897331715],[5.284656222935828,52.724123303344264],[5.284648488953374,52.72409987877289],[5.284595946668396,52.72402287831892],[5.284595737915661,52.7239144788168],[5.284604022870699,52.72373418287179],[5.284599507223001,52.723587584662724],[5.284624067561363,52.72346571810401],[5.284774360433588,52.72318669789324],[5.284810919487719,52.72307944431874],[5.284885050403934,52.72272846373064],[5.28498390648796,52.72228088396112],[5.284966671673265,52.7222409972321],[5.284949141125687,52.72221627016185],[5.284919800008337,52.722207812634124],[5.28487242084224,52.722194292604556],[5.284145709825641,52.722121770976656],[5.2837792184032,52.72209955446986],[5.283702476316381,52.72208151417584],[5.283661382356646,52.7220528293179],[5.283637867897272,52.72202022976795],[5.283638177171581,52.721988220676174],[5.283638516815996,52.721937668145046],[5.283662645195229,52.72190566715893],[5.283710108988893,52.721880440043705],[5.283934931380422,52.72186995860976],[5.284207407889681,52.7218488478409],[5.284526828197071,52.721828345752506],[5.284787535254607,52.72179992080546],[5.285073943246472,52.72175130498133],[5.285166486490702,52.721735657229615],[5.285200282499152,52.72172557594171],[5.285237170752963,52.72157114061691],[5.285364647484936,52.72125221906862],[5.285510298314685,52.720871524660964],[5.285624813107674,52.72065256686164],[5.286095326930187,52.71979416422942],[5.286185618938718,52.71964651665085],[5.286316692233592,52.719560696228946],[5.28653655551606,52.719488987231216],[5.286719396039303,52.719422297242126],[5.286815182491818,52.719402720984185],[5.286833833190831,52.71933870444516],[5.28684012456705,52.71931736775752],[5.28682402595539,52.71917244206008],[5.286782806801135,52.719097143332135],[5.286683904475835,52.71906672755294],[5.286584923982097,52.71906664406121],[5.286571529436785,52.71904814679386],[5.286407887669168,52.71902753740117],[5.286403252068617,52.718951485807544],[5.2865854510664,52.718836357216944],[5.286742347897621,52.718791553444305],[5.286907358342341,52.71873608439807],[5.287155016407513,52.718631261286326],[5.287328414149677,52.71855108303883],[5.287485307331377,52.7185012312627],[5.28755114740451,52.718526553758664],[5.287534625566932,52.71857653652924],[5.287435513117487,52.71864160654822],[5.287286856088887,52.718721798496816],[5.28720418748916,52.71877172396987],[5.287179331394927,52.71882168711618],[5.287203937075562,52.718881810053695],[5.28731118317662,52.718907172793294],[5.287451285883089,52.71892246080532],[5.28750900234527,52.71896238106427],[5.28747584186508,52.71900729030748],[5.28738511202582,52.719042601924315],[5.287178784423228,52.719062084158175],[5.287104616066927,52.71903730626117],[5.287030412691916,52.719022087606874],[5.28698090166562,52.71903215621076],[5.286947961443495,52.71908211161114],[5.286972582604196,52.719132124393],[5.287030047934438,52.7191821611743],[5.287029899468751,52.719247314852915],[5.287038112555588,52.71930293331254],[5.286965807522608,52.71937083024568],[5.286993462243394,52.719410735357904],[5.288577730303989,52.719004647186956],[5.28835024606049,52.71785687309367],[5.288200387000446,52.7172194986542],[5.288134114412155,52.71693759859264],[5.288073943478967,52.71674535557435],[5.288010270051421,52.71631569468952],[5.287938338071349,52.71595968227656],[5.287878874573462,52.7154559199584],[5.287883615220405,52.715139235796144],[5.287910793385765,52.715043359600394],[5.287998465917171,52.71480412045506],[5.288685616490148,52.71431265845251],[5.289013448793545,52.71412589513479],[5.289134885707956,52.71410240546096],[5.289242650642752,52.71409406527467],[5.289517520683975,52.71422628900976],[5.289557254640302,52.71424541775231],[5.289617816644835,52.71424884010973],[5.290357610311444,52.713778753491376],[5.290806502574744,52.713425816547925],[5.290752693147417,52.71339713277808],[5.290709737669746,52.71337406467606],[5.290673688918143,52.71332046387291],[5.290655573977212,52.71329313990848],[5.290686034362969,52.713216218103625],[5.290980741031911,52.71294291400101],[5.290995339030139,52.71292944637659],[5.291213731052246,52.71276392790184],[5.291535069723635,52.71257658887262],[5.291933938392007,52.71235504041443],[5.292154534370713,52.71223558056585],[5.292456152135978,52.71207967555699],[5.292908021608764,52.711826713666234],[5.294031733513027,52.71116256766241],[5.294116496826637,52.71108849127044],[5.294245699542377,52.71100153443775],[5.294428158395438,52.71087810704588],[5.294626851437583,52.7107526798165],[5.294711526833125,52.710699148717175],[5.29479113717249,52.71066382822768],[5.294978751760514,52.71060723936285],[5.295054207842098,52.71056854540544],[5.295119463158066,52.710541636997014],[5.295179588912877,52.71053774626973],[5.295261263273191,52.71051421963432],[5.295288521638372,52.71052098170595],[5.29538204539653,52.71057329267144],[5.295415084289159,52.71058679752386],[5.295431492837679,52.7105896149584],[5.295453236779246,52.71058626251396],[5.295464125954125,52.710572791480445],[5.295463939453962,52.71055650352602],[5.295392134429417,52.71050365306364],[5.295364456208936,52.7104704881539],[5.295353190180561,52.710446888929766],[5.295363643172737,52.710420503430164],[5.295406943388749,52.71039020517547],[5.295651785823324,52.71027918085922],[5.295835767426914,52.71019506913968],[5.295893735197948,52.71017124530625],[5.295998678075875,52.71012779320613],[5.296047917500292,52.71012726468893],[5.296085933148214,52.71011402013283],[5.296107430471707,52.71008743271291],[5.296155662832409,52.71001725689514],[5.296231380433215,52.70996058863533],[5.296327658943444,52.709910670764515],[5.296453815447301,52.70986271313068],[5.296703862040693,52.70977839689837],[5.296942874327228,52.7096937734224],[5.29726930239798,52.70959234886448],[5.29733213398954,52.70957638252622],[5.297341283167622,52.70957404384743],[5.297415721986198,52.70955483386201],[5.297460241550301,52.70960821976792],[5.297536351049701,52.7095874993721],[5.297502932265121,52.70953467723531],[5.29840043596919,52.70931067805182],[5.298482071400814,52.70930005971919],[5.298482413545015,52.70932336384394],[5.298488616367121,52.70937982311998],[5.298516508451123,52.70941636024527],[5.29855528409998,52.70944896381196],[5.298615574831912,52.70947540307796],[5.29867057481484,52.70948836615854],[5.298724918072272,52.70948503911426],[5.298790142952375,52.709467669133325],[5.298844525320439,52.709444119794135],[5.299834960043964,52.7088786781867],[5.300582061839092,52.7084647026253],[5.300932004658657,52.70850651974647],[5.301949274203315,52.70862071075559],[5.303171165156279,52.70876740008264],[5.305419684795878,52.70902250116566],[5.305435791307421,52.709017488546515],[5.305443532734388,52.709000049427914],[5.305435238559691,52.70898768858281],[5.305345791731398,52.70897582654923],[5.304113540376057,52.70882922513823],[5.303446700266156,52.70875377032045],[5.302950357923917,52.70866733625545],[5.302775438747271,52.70864107959323],[5.302462433691318,52.708603201645985],[5.302312297211196,52.7085940109183],[5.302238809257396,52.70857485876567],[5.302165353317652,52.70855066045833],[5.30193331961256,52.70850218938549],[5.301856117237358,52.708490336178286],[5.30163381096073,52.708432928639866],[5.301565336497053,52.70840014028254],[5.301536016159102,52.70836739889467],[5.301531191322459,52.70833763987295],[5.301550813199736,52.70831385581605],[5.30162432107352,52.7082752380568],[5.301658634528797,52.70826038130635],[5.301722526011481,52.708251503155736],[5.301776162582564,52.708251541594954],[5.301825111976993,52.70825752596775],[5.301849574988664,52.70826349279512],[5.301869119125325,52.70828730313989],[5.30186908448185,52.70830516094183],[5.30191309451448,52.70833196434129],[5.301952261860149,52.708331992350615],[5.302006124756471,52.70832905619112],[5.302040387278392,52.70833205532369],[5.302123596869174,52.70834996266498],[5.302226433797498,52.70834111202581],[5.302260690599721,52.70834708574762],[5.302290060344232,52.708356038724546],[5.302334070683209,52.708382842866676],[5.302387868681273,52.70840667750051],[5.302441728867541,52.70840671579874],[5.302485822895451,52.70839782316412],[5.302544584904775,52.708394891140244],[5.302662160358087,52.708362252434846],[5.302735653174534,52.708332549861645],[5.302833626589233,52.70830584731169],[5.302848313624783,52.70830883235941],[5.302887441886702,52.708320748775],[5.30297557407481,52.708332719573164],[5.303078423650318,52.70831791799448],[5.303132292139475,52.708312006672465],[5.303191020198506,52.70831204806361],[5.303230197142488,52.70832099064265],[5.303274216638157,52.70834482877366],[5.303298663347883,52.70836567666349],[5.303332914642074,52.70837462562811],[5.303450423685201,52.70836875890697],[5.303604284651934,52.70833316200622],[5.303667906022525,52.708351054533054],[5.303697265427743,52.70835703249853],[5.303780554734708,52.70833328545397],[5.303849118010869,52.70831845921799],[5.303907903833249,52.708303627910546],[5.303951982681634,52.70829472573518],[5.304005837089375,52.70829774696527],[5.304064574897866,52.70830671190248],[5.304098844642564,52.708306735790636],[5.304162494823275,52.708300830819],[5.304240923433279,52.70826518054121],[5.304289933375071,52.70823844181851],[5.304368337778968,52.70819981678258],[5.304451633500256,52.708173094615326],[5.304494468701573,52.70817312433335],[5.304520184618663,52.708173142166984],[5.304593572322699,52.70819699837292],[5.304681549736434,52.70827739299556],[5.304813541518405,52.708390531105145],[5.304984799361439,52.70844420121419],[5.305151227355869,52.70846811399709],[5.305327520131741,52.7084563365425],[5.305660546909828,52.70840598568193],[5.305699698587363,52.70842089561599],[5.305773062789878,52.7084596162714],[5.305890480568566,52.708510274540906],[5.306140182421662,52.70853638067038],[5.306184189799422,52.708566166129],[5.306335797768763,52.70866147511611],[5.306507048538303,52.70872704344773],[5.306609856653198,52.70874199434145],[5.30673716689434,52.708742080311445],[5.306903575254923,52.708777889253106],[5.30703074856175,52.708852359198076],[5.307138337131474,52.70892383221544],[5.3072018186397,52.70901908178965],[5.307235930622962,52.70910538677052],[5.307201537278361,52.709173799664676],[5.307186746685233,52.709228241224245],[5.307186634681338,52.70928981922355],[5.307206040015979,52.709390987617816],[5.307259760835532,52.709468382666834],[5.307313538323737,52.70951304752779],[5.307328141041463,52.709554711476514],[5.307318311781708,52.70958147769299],[5.307274185098231,52.70960822901463],[5.307234935482844,52.70965283152422],[5.307239681799697,52.70973613405131],[5.307294810804941,52.709876778746924],[5.307271821364348,52.70994738309933],[5.307272387062009,52.70997074845327],[5.307294562532228,52.709980873547636],[5.307316744129373,52.709987630361425],[5.307355365416306,52.70998034989722],[5.30738245228347,52.70996014666376],[5.307403805027469,52.709919719119775],[5.307569912685535,52.709387915888186],[5.307646918560398,52.709098589875886],[5.307712430456829,52.70878252736259],[5.30777049183663,52.70838265000058],[5.307773715739742,52.70799677625946],[5.307759099985847,52.70781571506133],[5.307721512160958,52.70758783577379],[5.307690375975576,52.70742043437857],[5.307636930428056,52.70722615809664],[5.307555627542933,52.70702211960218],[5.307457963655149,52.706824901929025],[5.307332566397706,52.70662093262182],[5.307225091339274,52.706480994148194],[5.307101408913989,52.70635453759226],[5.306933137575357,52.70620782142427],[5.306743539808913,52.70609817140412],[5.306559914413408,52.70600873392234],[5.306115043912581,52.70580033375795],[5.305059238807099,52.705314043453605],[5.305015080595678,52.7053109197397],[5.304987779157034,52.705321012063536],[5.304977124636822,52.70533785243059],[5.304993946251318,52.7053611778065],[5.306044236387872,52.70583763507719],[5.306061079776736,52.70585758753623],[5.306050627333225,52.70588454287221],[5.306034628556497,52.70591121493987],[5.305741711354095,52.70615721805961],[5.30548061808306,52.706339393152845],[5.305170010653812,52.70652846879074],[5.304924534425088,52.70666384970961],[5.304744019149004,52.70673849587626],[5.30451405732421,52.70682009209432],[5.30431118711243,52.706884536366374],[5.30410277758735,52.70694617611936],[5.30388328037115,52.7070010702947],[5.30358678184353,52.70706601674039],[5.303097867932147,52.70715610787914],[5.302779168835146,52.70722103665023],[5.302543021084688,52.70727928484424],[5.302307289989355,52.70735438147005],[5.302099077694716,52.70743230207749],[5.301759856922945,52.70758203613877],[5.301584927237533,52.70766334797096],[5.301272857503971,52.707808961671546],[5.30103879423748,52.707659269946596],[5.30065491466685,52.707867696034825],[5.300282099691897,52.7080510879013],[5.300266841818731,52.708053324396026],[5.300222466080763,52.708048241406274],[5.300205846317594,52.70804182073735],[5.298936160056978,52.70721881445787],[5.298027615932994,52.706634553616354],[5.29801353540103,52.70662331037895],[5.298007573098367,52.70661582074378],[5.298004555998014,52.70660645595189],[5.298042279870456,52.70634119856372],[5.298590314474083,52.70606655367459],[5.298941530445045,52.70603928736486],[5.298970027621877,52.70600785526129],[5.299310383368355,52.70597889927803],[5.29939099821383,52.70596787785023],[5.299437114589153,52.7059537206172],[5.299395825305814,52.705908188721985],[5.299326900048361,52.70592611170987],[5.299280656905656,52.70592966518189],[5.299245987176399,52.70592268286306],[5.299228453904912,52.705908910108334],[5.299163858254896,52.70584230735807],[5.298540747671163,52.70588677823868],[5.298504839759894,52.705686796039586],[5.298486097525618,52.705582306858844],[5.29845958869126,52.70543484289566],[5.298433833878446,52.70529140021519],[5.298906767915411,52.70526182507096],[5.298981991513284,52.705657338767054],[5.299005372396899,52.7056781768805],[5.299063362966586,52.70568861129989],[5.299230761808954,52.70568114820527],[5.299651806402054,52.705644668519],[5.299605184378662,52.7056098082976],[5.29956452295024,52.70559601859657],[5.299483601910636,52.70559623947879],[5.299166153269817,52.70561819411814],[5.299108650414437,52.70524014706162],[5.299107605359238,52.7051842532504],[5.299066772065669,52.705145751110926],[5.299008356274101,52.705110881931795],[5.298857715607785,52.70506583776868],[5.298556181428178,52.704986412519986],[5.298376455487168,52.70492758539542],[5.298360060790177,52.70491886398757],[5.29828916805664,52.704882307302974],[5.298247922987175,52.704812339683215],[5.298162968277465,52.70452919200992],[5.298077802869925,52.704232280678085],[5.298058026521279,52.70406797748122],[5.29803471493011,52.70404352469757],[5.297965392423802,52.70403308218852],[5.297809382181972,52.704016116692195],[5.297774523310942,52.70399896153902],[5.297722303289359,52.703981505765896],[5.29768323322919,52.70398428933171],[5.297624270451756,52.70398901528387],[5.297589633232059,52.7039749445432],[5.297566092575236,52.70395414915871],[5.297560799215367,52.703944591216896],[5.297554340486724,52.70393335364764],[5.297577263188965,52.70391905476809],[5.297634844228242,52.70390842251625],[5.297767514093167,52.703914982789925],[5.297842623192366,52.70392515115854],[5.297900190471583,52.70392491300395],[5.297934651553581,52.70391426418537],[5.297968921571264,52.70388985359042],[5.297968503606453,52.70386542601406],[5.297956558488147,52.703830307093746],[5.297908946377937,52.70371485282147],[5.298009296452507,52.703701725300405],[5.298001851187382,52.70360932641575],[5.298108423203185,52.70360519215322],[5.298143372719717,52.703697330290815],[5.298164663389467,52.70369173028607],[5.298248939287449,52.70362129913531],[5.298455254026298,52.70345464093941],[5.299200825291445,52.70285053762439],[5.299341736789724,52.70274172761781],[5.301862960927337,52.703893550152905],[5.303683665067076,52.70474073020177],[5.303649577381219,52.70479744053525],[5.303675765667114,52.70488114387101],[5.303652558968719,52.70493280220821],[5.303360611288239,52.7051555906797],[5.30332766254254,52.70527104629097],[5.303222679517533,52.70536246697751],[5.303360095324951,52.70542632024029],[5.303452029471574,52.70535083210529],[5.303485056977289,52.70519151602226],[5.303800022396121,52.70494076717348],[5.303793835605031,52.704792201526416],[5.303843945442954,52.70481555034966],[5.303888204974087,52.704821897267024],[5.303910079769205,52.704811658512114],[5.303926316113619,52.70479829736574],[5.303920525344281,52.7047849828437],[5.303898159284149,52.7047616669191],[5.303831407332908,52.704728475727954],[5.302011380435565,52.70388944234052],[5.299496943946203,52.702737296327804],[5.299402940084464,52.70269201498309],[5.299306644976904,52.702645884410416],[5.299270127841026,52.70264220880435],[5.299236611835457,52.702635166215686],[5.297055887380562,52.701589643943414],[5.296911802180762,52.70151314899389],[5.296801615006652,52.70144746025756],[5.296761734722134,52.70142372976976],[5.296667794382606,52.70135822488211],[5.296568535463471,52.701289336802986],[5.295416172375578,52.700537773375075],[5.294131265590406,52.69974059184474],[5.293885382379713,52.6996100877744],[5.293785616834136,52.6995656422077],[5.293778686791982,52.69956254438441],[5.293741479800178,52.69955634211657],[5.293693837186995,52.69957258811556],[5.293667434207194,52.699591943155724],[5.293673385547859,52.699623970843945],[5.29406949753118,52.69987591146156],[5.294208904281287,52.699977967675494],[5.294241347026202,52.70002601896552],[5.294342970905094,52.70008647215623],[5.293588649404059,52.700015112124085],[5.293444662358231,52.70000123911837],[5.293287719426002,52.70000251752807],[5.293264702407477,52.69999339566334],[5.293167760633387,52.700001578187695],[5.293067641593864,52.7000130194695],[5.292529852453628,52.700074659771104],[5.292360799832649,52.70009761092833],[5.292196896664587,52.700119883844216],[5.291736336929496,52.70017175940863],[5.291550213952418,52.70019435513788],[5.291448213534149,52.700218143342894],[5.291385772845999,52.70023775380373],[5.291293013991583,52.700266889318875],[5.291140330270552,52.7003265804653],[5.290913822611913,52.700422163887275],[5.290791461947685,52.70045688741179],[5.29062055870833,52.70049354231414],[5.290426773911157,52.70052877554075],[5.290196887626715,52.700559331951794],[5.289923649459004,52.70059323161932],[5.289734757479035,52.70061442388699],[5.289617087451967,52.700621353564664],[5.289573624356506,52.70062159926319],[5.289527637088168,52.700617343137814],[5.289473809111891,52.700600450380406],[5.289440338806069,52.70058357070268],[5.289406669538575,52.70054507107242],[5.28921633974815,52.70016971445688],[5.289201177922439,52.700129816338126],[5.289184860676237,52.70008795812295],[5.291549362631905,52.69952455098444],[5.291984832769775,52.699421827990896],[5.292063911729398,52.699404197725976],[5.292135364751907,52.699396109907894],[5.292214409645474,52.699394206590775],[5.29229877040942,52.69939680989061],[5.292500990020478,52.69941437475337],[5.293043155273035,52.699467044210245],[5.293081508415129,52.69946848184879],[5.293127530988651,52.69946205210519],[5.293170568662337,52.6994415878439],[5.293180758126221,52.69942783603918],[5.293184964894,52.69941351513765],[5.29318799075187,52.69940284198589],[5.293186182154649,52.69938178245555],[5.293185063330429,52.69936745645456],[5.29317412547103,52.6993195494473],[5.293168060703752,52.699312400077524],[5.293148245244408,52.69928879383104],[5.293107134492051,52.69926882035283],[5.293037842710483,52.69924601709371],[5.292978935196651,52.69923389304836],[5.292293657634535,52.699195999825186],[5.292158215504356,52.69919504623769],[5.291910848726279,52.69921197866909],[5.291785761549574,52.699229575607134],[5.291665992364188,52.69925334618333],[5.291543857315347,52.699294255455264],[5.291355579641471,52.69934942846456],[5.29126632479008,52.69936677327281],[5.291146341796747,52.6993689233677],[5.290924008452843,52.69935947130463],[5.290789160413154,52.69940177148834],[5.290802273584526,52.69943266018461],[5.290767350362119,52.699439667779046],[5.289708230163652,52.69944133060074],[5.289674053753067,52.69921550856462],[5.289816646835887,52.69922854831837],[5.289873240604316,52.69903705762502],[5.28972649923069,52.699018406719404],[5.289826611037795,52.69869551458712],[5.289882849916529,52.69866410726133],[5.291257165406233,52.698791319362435],[5.291369521380632,52.69878354261629],[5.291473345671885,52.69876509505505],[5.291512240268131,52.69873901304626],[5.291525257274731,52.69870475374374],[5.291512354512395,52.69868649278616],[5.291460613201417,52.69866791215729],[5.291339513203417,52.698657424167756],[5.291188340559556,52.69866516602936],[5.291119026832364,52.698675651810916],[5.291054193080685,52.69867297625361],[5.291011055901857,52.698659686667604],[5.290998191814017,52.69862316879399],[5.291002501468615,52.69855464894219],[5.290579085682694,52.69853858027452],[5.290692484609571,52.69805450096839],[5.290767729517385,52.69801697055288],[5.290861174550271,52.69797038432019],[5.290517406348088,52.69778732312543],[5.290354726985145,52.69770067412825],[5.290296706965352,52.69766971291881],[5.289781875613516,52.69739547033846],[5.287504103944688,52.69614131527164],[5.287141909538562,52.695941896001436],[5.286496746334647,52.69557990990153],[5.286172319755092,52.69564815960463],[5.286180608801845,52.69576107006847],[5.286210647068079,52.69586612642872],[5.286258033888544,52.69596080770905],[5.286339832870764,52.69607125147665],[5.286434820072714,52.696178887143176],[5.286529658902299,52.69624749426235],[5.28666353573938,52.69632091258158],[5.287078997274997,52.696066539214115],[5.287374017041517,52.69622714638223],[5.2891102200891,52.697172214061574],[5.290118349399148,52.697736681075675],[5.289797957402896,52.69795968941438],[5.289741649059659,52.69802283030303],[5.289706810385422,52.69809891189485],[5.289663329061377,52.698214582697325],[5.289563249027684,52.698530445202515],[5.289545753023639,52.69860120092612],[5.28952406337599,52.6986904958841],[5.289480367776888,52.69890080838643],[5.289449731960299,52.69906086513976],[5.289384456703702,52.69920263746592],[5.289315043956373,52.69933681781477],[5.289234837746015,52.69944234799686],[5.289226526790785,52.69944037842655],[5.289045357763385,52.699420845521985],[5.287073456558848,52.699209137365536],[5.287049344411953,52.69914312719033],[5.283690498975229,52.698782741299624],[5.283647365380252,52.69874872165448],[5.283647452003707,52.69871192845208],[5.283708270137631,52.69850163473285],[5.283708405597751,52.69844406385044],[5.283669650178311,52.69841230013013],[5.2836107636406,52.69838781446854],[5.2836225139638,52.69830918658062],[5.283709177040024,52.69831235426259],[5.283752214683987,52.698293291762056],[5.283806972209855,52.69820712342053],[5.283819256390189,52.69819196418376],[5.283941735130016,52.6982004982846],[5.284457790340507,52.69823689190684],[5.284667631736203,52.69824746058676],[5.284735627868382,52.69823207237677],[5.284973958092436,52.698122750954305],[5.285099356320872,52.69806529193867],[5.285234933539908,52.69801597914103],[5.285457383480161,52.69797347966261],[5.285549844140682,52.6979699017889],[5.285599775932199,52.69796798522123],[5.285794803611358,52.697987803884345],[5.285924887917767,52.698007579640205],[5.286109945384905,52.69804676777431],[5.286132583737109,52.698051567108415],[5.286238133594125,52.69808844086583],[5.286532327599208,52.69820917624069],[5.28671886031599,52.69830902536886],[5.286849292019585,52.69837878376165],[5.286997761015178,52.69844800088691],[5.287133125353925,52.698482091400024],[5.28729419231239,52.69850076830164],[5.287400497748669,52.698506750975845],[5.287680159275363,52.69852214572937],[5.288273808050827,52.69858611624018],[5.288843228909121,52.698634893006584],[5.288895238317729,52.69863493591518],[5.288929692908186,52.69862962431099],[5.288941257561624,52.69862458320659],[5.28896000524741,52.69861644574326],[5.28898179009932,52.69859035045587],[5.288990427058709,52.69855356429651],[5.288977559655426,52.69851929741882],[5.288938797991821,52.69848528329468],[5.288899774063377,52.69846671293323],[5.288813354816115,52.6984534380694],[5.288701041474938,52.698448294663834],[5.288593116768822,52.698440065086125],[5.288443611398792,52.69841690876781],[5.288032195764325,52.698309287804186],[5.286486827407187,52.697787966551076],[5.286108057536607,52.6976600497989],[5.2858226136068,52.69755673831938],[5.285630263845543,52.6974754129065],[5.2851897175757,52.697279289253096],[5.284904366231078,52.6971349773725],[5.284699587207891,52.69703510158483],[5.284394971132045,52.69691071204936],[5.284364764236363,52.69689832000435],[5.283999148043268,52.696780617876556],[5.283256260103919,52.69659742209166],[5.282396178123026,52.69642254387439],[5.281049062626581,52.69617421155265],[5.279855592111043,52.69604536658638],[5.279700368622511,52.69600843694924],[5.279644320900942,52.69596008083897],[5.279554941928168,52.69498884583512],[5.279418066916719,52.69482106408311],[5.279407786568195,52.694772192943695],[5.279431428953931,52.69473991536594],[5.279466860871135,52.69471466632237],[5.279543683148046,52.6946748626198],[5.280401291934883,52.69432654580311],[5.280902708665009,52.69409650048631],[5.280905921994857,52.6940950259041],[5.281782511317828,52.69363493858331],[5.282200895979807,52.69341260324112],[5.282420044842346,52.69329371951636],[5.282555189510013,52.693221098180636],[5.282631989027915,52.69318859072644],[5.28269117989425,52.6931776947922],[5.282726547843253,52.69317743732513],[5.282768102942113,52.69319152119706],[5.28319592482798,52.69347497957804],[5.28332641101678,52.69351384586417],[5.283527874145233,52.693541274120555],[5.283575257386604,52.6935410250561],[5.283645515740987,52.69353940467881],[5.283700535763409,52.69353663957362],[5.283758570152262,52.69352574210481],[5.283805985531838,52.69351118221404],[5.283835576770923,52.6935075511094],[5.283839855390025,52.69345363243561],[5.283817138514618,52.693389580963895],[5.284574117420077,52.69297768195256],[5.287857823807427,52.69169082944163],[5.287618958860754,52.69165637913986],[5.287610210469602,52.69164120730369],[5.287450216801153,52.691263903304936],[5.287215343067196,52.69068685857096],[5.286792019515323,52.68967781956196],[5.282000620824911,52.6916705374682],[5.281607129226298,52.69169164929104],[5.281460370901759,52.691602486645195],[5.281264829402375,52.691514413706976],[5.281140406764785,52.69145448429527],[5.280951818705542,52.69155541823125],[5.280507398105397,52.69126884436353],[5.280443185041602,52.69125530287558],[5.280312144401524,52.69125912346786],[5.280235336189453,52.691295279019656],[5.280176530142281,52.691338472172475],[5.280117465787951,52.691388691936105],[5.280058620808115,52.691453237016724],[5.279999900922638,52.691556813268846],[5.279982172876741,52.691621105914365],[5.279988483288387,52.69168879387666],[5.279988762001583,52.69176378277554],[5.280018699925234,52.69190282655449],[5.280007222367374,52.69196347972626],[5.279971964942849,52.692017089121464],[5.279930704671557,52.69206731581789],[5.279865864674236,52.69212118073477],[5.27980079154671,52.69216081462111],[5.279446388916737,52.69193713649459],[5.278668539640379,52.69144607278127],[5.27861554588981,52.69147495519182],[5.277318420726599,52.69066660667991],[5.277080243893702,52.69051817447934],[5.276708408547393,52.69030799459692],[5.276279483340311,52.69003574254774],[5.275934079522332,52.68981636423461],[5.275544856736595,52.68956941510207],[5.275148927726436,52.68931797749049],[5.275249149239701,52.68925853332506],[5.274198615827578,52.688712986006124],[5.274113649551934,52.68876963985465],[5.273425266827537,52.6884948841043],[5.273495449294562,52.68842867072086],[5.273395478016891,52.688392343573284],[5.27332504935115,52.68846164457124],[5.27231907076033,52.688126759617944],[5.27147174088074,52.687842850405374],[5.271140412820062,52.68773636550331],[5.271069066061404,52.687714954716974],[5.270723840762781,52.687619130675756],[5.270557569464875,52.68757852591799],[5.270416457821784,52.68754749959786],[5.270077368527714,52.6874966170345],[5.26993043901012,52.68747792976247],[5.26981837930692,52.68747220257216],[5.269772892272307,52.68746204744923],[5.26978499173665,52.6874314516891],[5.269935055709825,52.6872218076992],[5.271259094377871,52.6851389818401],[5.271970475416047,52.68402529198409],[5.2719866580122,52.684022502812695],[5.272013959667134,52.68401017127627],[5.272035939061513,52.68399783548727],[5.272048019874394,52.683975658417104],[5.272043920988776,52.68395291031393],[5.272029187321601,52.683933231753045],[5.27199270271901,52.68392280847427],[5.271939800503735,52.683918538833616],[5.271890758241311,52.683936746540176],[5.271851637408666,52.6839678861507],[5.271098947455251,52.685145286581125],[5.26978161098367,52.687224748964375],[5.269603456674378,52.68747985417915],[5.269413935893496,52.68749090331014],[5.269172200697587,52.68750161643346],[5.269070735445789,52.68750770156965],[5.268947528081201,52.68752049265536],[5.268829178000122,52.6875363826398],[5.268450672848436,52.687617451799504],[5.268048123587803,52.68770382675514],[5.267897327614835,52.687749734749985],[5.267864412432938,52.68770279720047],[5.267034708223321,52.68791540455042],[5.267068041380468,52.68797582224392],[5.266087579032125,52.68821495215273],[5.265943321480499,52.688236428855916],[5.265830058584225,52.68824923672018],[5.265707093015503,52.688255848878846],[5.26557953388177,52.688255999112705],[5.265446914592545,52.688249967322236],[5.265248923090424,52.68822982370863],[5.262410643576992,52.68768120693963],[5.262143450723014,52.68762250989397],[5.261865848446633,52.68756689459668],[5.261639318442076,52.687509365254606],[5.261478616691895,52.68746566486307],[5.261141237489048,52.68738386604987],[5.260945195774102,52.68733001813342],[5.260798780947295,52.68729896489188],[5.260672191871551,52.6872805753452],[5.260519477806922,52.68727087251125],[5.260232685236925,52.687282920609185],[5.259848317153316,52.68730525892147],[5.259751266348682,52.687305997200184],[5.259636906285562,52.68729547960555],[5.258975827662688,52.687202095693316],[5.258266449179433,52.68710556342994],[5.257998058044475,52.68706566631038],[5.257755315519149,52.687023006915766],[5.257278653913472,52.68692306373832],[5.257071979777453,52.68687818116903],[5.256877154425493,52.68680607270831],[5.256807703426503,52.6867706169439],[5.256768505443993,52.686745012494086],[5.256724469918558,52.686712954607664],[5.256676057292649,52.68666880178666],[5.256639040768134,52.68661034525173],[5.256633973530626,52.68660304500339],[5.256637605412475,52.68654435621851],[5.256662805888718,52.68646462479953],[5.256671266285947,52.68641491745292],[5.256715321024867,52.68636610375976],[5.256784304573217,52.686324045864026],[5.256874329941794,52.686276406699776],[5.256911137974456,52.68625847309752],[5.256832491421406,52.68620726936374],[5.256267081218156,52.68650518526808],[5.255854619406226,52.68673334168842],[5.255300059504321,52.6870323820077],[5.254982472593341,52.68721036390676],[5.254919785699188,52.68723388410701],[5.254811850943051,52.68724023029128],[5.254765847458431,52.68724270178438],[5.25466879669964,52.68724343951192],[5.254637084766088,52.68726137808887],[5.254581291644616,52.68729641984042],[5.254467638962852,52.687280285724064],[5.254525758511365,52.68724328027602],[5.254512691049337,52.68720591602811],[5.254462839845165,52.68718619527962],[5.254448571382298,52.68717045314478],[5.254454380480373,52.68715529866319],[5.254623614069484,52.68697995616622],[5.254654105204111,52.68698083127661],[5.254719199610285,52.68700393810206],[5.254742491193404,52.68701715772163],[5.254798329588789,52.68704896254834],[5.255823455026781,52.686491496790325],[5.256383777533888,52.686194143580636],[5.25645276502986,52.68614928105728],[5.256475285698319,52.68611588695952],[5.256496609779312,52.686017339860456],[5.256888232443327,52.68579787032007],[5.256956002733094,52.68577463053405],[5.257039309007508,52.68574873047902],[5.257116958467456,52.68573183988173],[5.257214743079837,52.685721837227106],[5.257327522309089,52.685715217348026],[5.257358737355813,52.68570654303766],[5.257385122875863,52.6856916912284],[5.257381258592698,52.685673146968654],[5.257356576222507,52.6856571134344],[5.257326080934289,52.685653430593746],[5.257223462080635,52.68566342896359],[5.256996189138686,52.68570137612321],[5.256939078670245,52.68571563885734],[5.256881717037292,52.68573579671898],[5.256358918362001,52.6860143407326],[5.256330320707126,52.68606321531772],[5.256287967829882,52.68608675858286],[5.254265271896303,52.68665677129146],[5.253463213225482,52.686570041045954],[5.252463680705878,52.686455165158726],[5.25066142578553,52.686258772140384],[5.249570697881697,52.686125245275775],[5.248662710178197,52.6860082000318],[5.248205808420241,52.685957403775085],[5.248078992468205,52.68594208576588],[5.248008820205873,52.685918979248534],[5.247899441545123,52.685866887107935],[5.24778063657746,52.68580552818575],[5.247666685607585,52.68574416943828],[5.247547391364358,52.68569179394875],[5.247417203661863,52.68564558676988],[5.247301057912551,52.68562129171673],[5.247169161245039,52.68560569805797],[5.24699564241739,52.685598752822074],[5.246699428198821,52.685591666252606],[5.246155185407956,52.68539414524006],[5.245943097435397,52.68531441969764],[5.245816166340088,52.68526259329237],[5.245809725676602,52.68525668572144],[5.245888153763719,52.68522729175684],[5.24573627901338,52.68510101302955],[5.245724600022283,52.6850689813898],[5.245709139495939,52.68498780107865],[5.245690075552793,52.684740079506305],[5.245625418864687,52.68429542772134],[5.245609857707633,52.68410415633543],[5.245572109460948,52.68379779155199],[5.245507617222245,52.683274425854684],[5.245406084757587,52.68244919481855],[5.245381021002392,52.68233963388683],[5.245339292859714,52.68223707639585],[5.245275087585151,52.68215752025307],[5.245161438625664,52.682077625620906],[5.245025798067945,52.682007814941024],[5.244845608788094,52.681954586599666],[5.243974818959723,52.68176700139973],[5.243830081202631,52.68165813731304],[5.2435285789712,52.681365975875764],[5.243531628462614,52.681210121614825],[5.24357293501379,52.68080210017228],[5.243604503666346,52.680334261477995],[5.243645080957175,52.67936989282595],[5.243628177728087,52.6789587175721],[5.243613569817951,52.678756783790575],[5.243584660850623,52.67862727299126],[5.243530529435917,52.67850504623597],[5.243469127940934,52.67842127843678],[5.243376020849293,52.67834871409751],[5.243188728970329,52.67825664646783],[5.243095319142509,52.678203171628475],[5.243020385067035,52.67815731216366],[5.242958398060182,52.678107804352244],[5.242921590289654,52.67806198201131],[5.242891327044246,52.677993141212525],[5.242892393949908,52.677947363853555],[5.242906225106005,52.67788644096713],[5.242944959554942,52.67783705604461],[5.242996145778421,52.67780285167573],[5.243091969983969,52.677745952629685],[5.243226022715432,52.677658491956045],[5.243277479901,52.67760912679764],[5.243342466326891,52.67751765789447],[5.243372313782006,52.67729273964115],[5.243371044159804,52.67704475471073],[5.243336946448959,52.67645157429425],[5.243310195971834,52.676222929915426],[5.243278551568359,52.675867347781825],[5.24330099711363,52.67564410376627],[5.243345829778915,52.675499244092975],[5.243348572459123,52.67536584585668],[5.243318831007111,52.6752770609867],[5.243207093818812,52.67511151460769],[5.243094598676683,52.67489821767172],[5.243026432989575,52.674691719911294],[5.24296195581586,52.67427851922187],[5.242752523830703,52.67298189743992],[5.242730206498942,52.67288019901418],[5.242713184750562,52.672860525662074],[5.242675809087511,52.67284587558421],[5.242638386774568,52.67284723122591],[5.242630867862889,52.67281380136498],[5.242621526565573,52.67277166541303],[5.2426584187919,52.672770535604805],[5.242684196473622,52.67275489362249],[5.242693740897199,52.672729348068884],[5.242664737440622,52.67263017763209],[5.242619416010103,52.67257395316624],[5.242551514330188,52.67250028361245],[5.242471800271317,52.67243334887432],[5.24238028920833,52.67237342394841],[5.241287947021143,52.670538181407544],[5.240506065887333,52.66907571224528],[5.240500480222805,52.669066135133015],[5.240298210164964,52.66871934794882],[5.240121319330977,52.668430146140885],[5.239950059330167,52.66818447404558],[5.23984871569343,52.668025950485465],[5.239380341239888,52.66725615010823],[5.239235332527522,52.66703662296327],[5.23907060942498,52.66677466962736],[5.238912857862061,52.6664970029022],[5.238748424765451,52.6662190463236],[5.238449356900214,52.665797686823176],[5.238205163695776,52.66540252037147],[5.238181126863964,52.665351002956314],[5.23815782051785,52.66526625437903],[5.23816461126969,52.66516936700945],[5.238196327666606,52.66507841079105],[5.238242272615008,52.66501809641564],[5.238276805470961,52.66477576691458],[5.23832777041469,52.66445791782583],[5.238330308834612,52.664324519072565],[5.238297664149334,52.66421213911713],[5.238191919906302,52.663993513387425],[5.238135235579378,52.66381735498893],[5.237977801185372,52.66338605912808],[5.237758001900299,52.66275472601336],[5.237476517383159,52.661923361447435],[5.237392570006925,52.66168762588902],[5.23735095604125,52.66156231460885],[5.236960856682585,52.660491247267665],[5.236793006301027,52.66020878883349],[5.236645976415839,52.660004356414234],[5.236514489652337,52.65987142335372],[5.236312963132399,52.65896966526958],[5.236274024954792,52.65867641416436],[5.236261274730267,52.6578807608874],[5.236247163868679,52.65775521255996],[5.236221838259006,52.65766249839361],[5.23617456588255,52.65757958995527],[5.23599489410075,52.657311160066904],[5.235888920926351,52.657172007263746],[5.2357823494062,52.65706907751311],[5.235599593528816,52.656965783749676],[5.2352609788527,52.65678925977774],[5.234475291595427,52.65641557134802],[5.233827875352175,52.656126032296704],[5.233681678039002,52.65606405727414],[5.233555106825454,52.656006879504915],[5.233395358997962,52.65592775740304],[5.233234933360273,52.655843577219386],[5.233115576130015,52.6557684459792],[5.232842580135494,52.65558975232415],[5.232675748866649,52.6554861861842],[5.232518831713131,52.65539358695385],[5.232356169525636,52.655287489643236],[5.232254382457226,52.65520900755665],[5.232126923556588,52.655078242372504],[5.231944606646694,52.65484940038076],[5.231675097080722,52.65446822762771],[5.231501307189413,52.65419270943974],[5.231275371049509,52.65375688606878],[5.231176265132946,52.6535739226425],[5.231085911551335,52.653400527392996],[5.230994655188743,52.65321729729306],[5.230922027835038,52.65305795838492],[5.230835923638928,52.652923609883494],[5.230806315058808,52.65287077048322],[5.230761457775159,52.65282324931997],[5.230643755100517,52.65276879682424],[5.230078499319752,52.65261929893833],[5.228406133446257,52.652160422349894],[5.227917797083552,52.65202496639854],[5.227342261476879,52.65187310238206],[5.227120154180825,52.65180540213882],[5.225952300767662,52.65142384471148],[5.225479774759691,52.65126845793417],[5.224923080156678,52.651082618858496],[5.224491136749885,52.6509418891613],[5.224143576081562,52.65083497844032],[5.223105486751387,52.65052686875679],[5.221727213936877,52.65012138031916],[5.221428037202823,52.65004963309159],[5.221000972901263,52.64996703359892],[5.220555027692028,52.64987372775359],[5.220374823741648,52.6498392122689],[5.220178503463755,52.6497987748127],[5.220007584125355,52.64975107345905],[5.219820096379473,52.649694364231614],[5.219625523006576,52.649618824107876],[5.219445738811952,52.64953627576043],[5.219270608957227,52.64944700332479],[5.218945779537556,52.6492609094781],[5.218850442297422,52.649195051651766],[5.218685971989485,52.64909568571755],[5.218335665502858,52.64886883210028],[5.218193825670649,52.64877033068086],[5.218000195452634,52.64863187913901],[5.217824269004441,52.64850862616744],[5.217643263192572,52.648389285834725],[5.217478621495726,52.648275305955366],[5.217292091407198,52.6481528782456],[5.217099130097684,52.64801750871496],[5.216941811616376,52.64792291817099],[5.216745826027528,52.647810508281],[5.216571578703769,52.64773270142945],[5.216392762629797,52.64763259094764],[5.216231923312173,52.647554277096084],[5.216113985851366,52.64748445813711],[5.216098028416956,52.64742995672966],[5.216104825293731,52.64728700984321],[5.216095949598223,52.647251616948466],[5.216069628185758,52.64725270068187],[5.21605283657074,52.64729536761536],[5.21601286077124,52.64742337257413],[5.215852691097787,52.647351805729585],[5.215650261035385,52.64727849178828],[5.215393649196296,52.64719106694349],[5.215129716371209,52.64708451914063],[5.214682483515339,52.646914529039776],[5.214570694523761,52.64686943357699],[5.214409989201456,52.646816113959204],[5.214244407319028,52.64676981489312],[5.213716023468403,52.64663199446464],[5.213408126132744,52.646554596452184],[5.212737209323535,52.646382862050785],[5.212714402180714,52.6463704705453],[5.212707540030228,52.64635416879339],[5.212725684836109,52.646320494030945],[5.212732965971131,52.64628736952173],[5.212726099749704,52.64627135085599],[5.212688031396107,52.64626596033371],[5.21266995747324,52.64628138073675],[5.212650495295789,52.64630185340713],[5.212622177887785,52.64633915747628],[5.212586771095351,52.64636045332199],[5.212549578305608,52.64636488866274],[5.212461929033132,52.64634538844669],[5.21233487803098,52.64630728193939],[5.211276820725876,52.645956073001166],[5.211248458074519,52.64583218346889],[5.211215709393543,52.645826794947325],[5.21118493733417,52.645841074765286],[5.211194485701549,52.645936291219826],[5.211067656899931,52.64590156550118],[5.210185176549735,52.645642436046415],[5.209744714150502,52.64552101945442],[5.209139815281367,52.64535975032355],[5.208489733530048,52.64518296334092],[5.207457430193224,52.644913991204625],[5.207229174331887,52.64485528529228],[5.206945818685469,52.64476554952767],[5.206790908074391,52.64470914938529],[5.206599657964387,52.64462488081203],[5.206532434787107,52.64457704052787],[5.206449129152806,52.64451231609624],[5.206399299985903,52.64444596010127],[5.206347491462151,52.64435938383767],[5.206288395103583,52.64424610856402],[5.206226636142704,52.64410671467466],[5.206192628305512,52.64395417269009],[5.206153091454616,52.64374572110229],[5.206128575076268,52.64364317853637],[5.206078759523269,52.64357710190902],[5.206026529229676,52.64353489834773],[5.205925169807164,52.64348250321846],[5.205785045048866,52.643425843870325],[5.205616492326115,52.64337615715877],[5.205503020999463,52.64334789944586],[5.205276478468149,52.64314674419359],[5.2052403399535,52.64312142097474],[5.205151632083461,52.643079432644264],[5.205032260746558,52.643027293177376],[5.204811707669045,52.64293905577095],[5.204578750654031,52.64283450271516],[5.204238843977612,52.64269075138223],[5.20388762765539,52.642548944416774],[5.20354084240158,52.642394505667724],[5.203332097675571,52.642298695063616],[5.203074749886159,52.642177817721766],[5.202787528736622,52.642024870891106],[5.202546614884731,52.64189362165234],[5.20239991425397,52.641811386229584],[5.202274180102167,52.64173648967773],[5.202156272431062,52.6416689044398],[5.202080937222599,52.641633396277555],[5.20200150276637,52.64163888866924],[5.201617778382039,52.64132823776213],[5.201253191502151,52.64101930775714],[5.201052458532115,52.64083082222371],[5.200831933986784,52.64063107962243],[5.200701134168214,52.64050140907847],[5.200564629792688,52.64035740138868],[5.200418657184206,52.64021393497112],[5.200361563016593,52.64012566441979],[5.200295776565381,52.63996322805342],[5.20026213306245,52.63978231175503],[5.200203375999405,52.63959601586717],[5.200149568254931,52.63938333635376],[5.20000966525529,52.63890090538934],[5.199963617973181,52.638762935632194],[5.199919721358459,52.638662608803884],[5.199869711282598,52.638539513523156],[5.199799887151568,52.638402071536085],[5.199731354311513,52.63828794484836],[5.199638617428377,52.638168431768975],[5.19952036990227,52.63802052692049],[5.199233952994633,52.63768530615523],[5.199090439707058,52.63751180265815],[5.198506540519121,52.636740516711974],[5.198453712922888,52.63667892371069],[5.198382142751969,52.63662966173699],[5.198300841226249,52.63658684146847],[5.198166201512975,52.63655096877902],[5.197839096048604,52.636506917097094],[5.197627446114693,52.63650545396218],[5.197018680593974,52.63652695182777],[5.196694581242161,52.63653681964386],[5.196173076649918,52.636556770498],[5.195713654498166,52.63657850048134],[5.195174339419843,52.63660796343988],[5.194435323425859,52.63665058023846],[5.193890490020252,52.63667412393638],[5.19336530163871,52.63669096404337],[5.192299902886247,52.63672938481627],[5.191450357167072,52.636761691499444],[5.190176824902252,52.63678823099939],[5.190062862474011,52.636775688605006],[5.18992883881576,52.63675468747184],[5.189774127364787,52.636719039801726],[5.189594297164395,52.63667521332867],[5.189130922750659,52.63654665669199],[5.188649555711391,52.63641806731597],[5.188377002281652,52.63636032052965],[5.18823904960869,52.636342961463576],[5.187873340480853,52.63631341815189],[5.187474423578053,52.636278772633894],[5.187032369119749,52.63623646363155],[5.186486023661015,52.63618751358252],[5.186058495600076,52.6361505664722],[5.185835824044808,52.63613698689395],[5.185608866041096,52.635950401428374],[5.185100870227522,52.63584366207193],[5.184269571693769,52.635675427328565],[5.183880506983702,52.63560791726209],[5.183034470247293,52.63548121742646],[5.182577511610227,52.63542201461533],[5.182206148088969,52.63537138204329],[5.182063580199019,52.63535372745045],[5.18145581566745,52.635266736403025],[5.181191493636872,52.635224713802415],[5.180934841766938,52.63517540551859],[5.180742557888093,52.635141010998424],[5.18059750626471,52.63510235925077],[5.180436821322837,52.63506416006387],[5.180237684222528,52.635003997687136],[5.179656832015101,52.63483672325697],[5.178919744302649,52.634618065795486],[5.178030652995082,52.63433229077556],[5.17719505639862,52.634057271169],[5.177069946158185,52.63401351419214],[5.176851029207922,52.633940672662],[5.176736922568762,52.63391211035018],[5.176627900252985,52.633880175095335],[5.176554436480797,52.63384775360129],[5.176421466473409,52.63375764649962],[5.176321735775038,52.633713092507506],[5.176148970562704,52.63364258094408],[5.175751386259255,52.63348347422996],[5.175656946293885,52.63344202152987],[5.175563817846482,52.63341938731197],[5.175481030266512,52.633402392837155],[5.175265930624295,52.63330792418903],[5.174984916712671,52.633190586812105],[5.174728747666058,52.63309071727423],[5.174561068433274,52.63301964538611],[5.174476379844962,52.63296894080693],[5.174114754029896,52.63272564269039],[5.173869133526878,52.63254489486199],[5.173693406917002,52.63242157175291],[5.173459664887964,52.63226865307482],[5.173389437917913,52.632230160161605],[5.17315602321756,52.63206168124929],[5.172643589963442,52.63174453176034],[5.171911721086031,52.63132474163521],[5.171561699380065,52.63112077507074],[5.171442016994501,52.631057003253446],[5.171400366553295,52.63103005814355],[5.171409250283092,52.63100366664077],[5.171754565427525,52.63082613371978],[5.171754667999101,52.630805167958925],[5.171741208009282,52.63079365719879],[5.171715955664657,52.63081107424036],[5.171622268970526,52.63082889660835],[5.171375159945061,52.63089885234953],[5.171328527549682,52.6308990481263],[5.171200204586804,52.63087460309681],[5.17105730154918,52.63088334856308],[5.170879883584638,52.63089801558732],[5.170544672531503,52.630942386711986],[5.170813164538505,52.63113908035325],[5.170726130623904,52.631143127945066],[5.170592976352872,52.6311426096433],[5.170521008532195,52.63113489078163],[5.17008006148631,52.63082479745374],[5.170390440635617,52.630831357069894],[5.170602364636173,52.630819746310046],[5.17072828992276,52.630809028387766],[5.170824661262364,52.630794699491304],[5.170880403969345,52.63079207869231],[5.170941402467797,52.63077701942512],[5.171502215527356,52.63063536518951],[5.171560370726278,52.63063771829909],[5.171628326695457,52.630662557729],[5.171788084811014,52.63073109320092],[5.171836302385178,52.630748310774244],[5.1719625547891,52.63075154996303],[5.172184314807373,52.63073695159949],[5.17230756944148,52.63071918131048],[5.172425908158729,52.63069540943622],[5.172475311503312,52.63066850145524],[5.172209154883999,52.630695017871716],[5.171933234253809,52.63070351401295],[5.171846764692856,52.63068598637761],[5.171642616741106,52.63057327636376],[5.171560768155709,52.630556555844315],[5.1715129869069,52.63055646921354],[5.170969544912174,52.63068635415196],[5.170873989498609,52.63069039444868],[5.170829492320459,52.63067992715296],[5.170764775099511,52.63065284459277],[5.170725679367391,52.6306249701341],[5.170509022821378,52.63047291694621],[5.170066184780075,52.63023227039356],[5.169621441564674,52.6299581912526],[5.169234588082472,52.62973646379273],[5.168767929584916,52.62946290024729],[5.16827314039215,52.62918311433985],[5.167767297323662,52.628900490301405],[5.166499544607185,52.62818395220032],[5.165994833961514,52.627909186319],[5.165877397136716,52.62786038368601],[5.16570549277213,52.627808954147994],[5.165666313843271,52.627799050212055],[5.165498976057372,52.62775829564813],[5.165239804916322,52.6275970594258],[5.165050089847002,52.62745765708179],[5.164815263220341,52.62728996682374],[5.164203432310432,52.626893956650186],[5.163925054750051,52.62672492744552],[5.161827826708052,52.62547120330149],[5.161409378538854,52.62521680206981],[5.161250933643609,52.625144019388586],[5.161137232689698,52.625097491056245],[5.161007076365915,52.62505483351467],[5.160910983924411,52.625030496122164],[5.160729751601853,52.624966593563144],[5.160602169137966,52.624906054369205],[5.160485616802022,52.6248232678501],[5.160260535173033,52.62457063743935],[5.160129988967394,52.62444079171338],[5.160036310032482,52.62433598599808],[5.159835394470733,52.62409413688185],[5.159707069804439,52.62388066283082],[5.15965189586634,52.62370643504694],[5.159489069692726,52.62337696839895],[5.159431621489412,52.62328642305977],[5.159381401797503,52.62322510498679],[5.159314090104026,52.62318204467715],[5.15921173932623,52.62315035773573],[5.159116038299693,52.62313669629281],[5.15900278962429,52.6231302932331],[5.158795277911,52.623143374631574],[5.158563972759204,52.623160062283965],[5.15811278088109,52.62317885600208],[5.157857311963858,52.623184825354045],[5.15757165031685,52.62318370885523],[5.157244240521424,52.623179426583896],[5.157089214439551,52.623173510696425],[5.157080012201465,52.62317359714136],[5.156917759668672,52.62317514610793],[5.156708263401121,52.62317052532869],[5.154877217346741,52.623227058357855],[5.154268833394976,52.623254798704394],[5.154043848514282,52.62325688231517],[5.153826445066059,52.62326348650724],[5.15363771928637,52.623260868347145],[5.153522053237665,52.62327512833389],[5.151042923140102,52.623526480399],[5.150338522516264,52.6235978094447],[5.150113901122184,52.62361787221798],[5.149940052698527,52.6236371829941],[5.149758414382996,52.6236432822102],[5.149656430223298,52.623639704796815],[5.149341921256962,52.62359835655133],[5.149209037732895,52.623550620862126],[5.148433274235932,52.623251371014874],[5.147226742386711,52.6227338712743],[5.147064397840712,52.622673159257104],[5.146903231625245,52.6226526118455],[5.146757446130425,52.62264502325527],[5.146619599614077,52.62265962621421],[5.14651146238185,52.62268721169498],[5.146388975123803,52.62272374882912],[5.146121361817685,52.62296614769558],[5.14600127780352,52.623069531746],[5.145945105433976,52.62312783574451],[5.145850301278348,52.62312427412135],[5.14568176598091,52.623099215653866],[5.145204393771947,52.623005561277004],[5.144902961972493,52.62293726478041],[5.14457283591369,52.62288266912684],[5.144308063715576,52.62281837506333],[5.143250089122684,52.62261231829607],[5.143036678038476,52.62256525615151],[5.142823305873824,52.62251392303232],[5.142632221026119,52.622475679243315],[5.142234924944331,52.622385835307604],[5.142036472661409,52.62234750618117],[5.1418156774346,52.622300714201664],[5.141668837850822,52.622275418891576],[5.141507427614683,52.62225458415236],[5.141302210228779,52.622229724067516],[5.140825775087149,52.62218071090412],[5.140591046005777,52.622151583380635],[5.140370628599253,52.62211792773892],[5.140201868114829,52.622097132586646],[5.140010966188462,52.62206780555121],[5.139768048965459,52.62201647022313],[5.139518176547671,52.62197438561447],[5.139352049892718,52.62193078367406],[5.139114801821738,52.62189912350249],[5.138863476635687,52.62186742177755],[5.138542298929595,52.6218237833011],[5.138213992516609,52.62177591048352],[5.13788588988076,52.62173233931119],[5.137613585813799,52.621700787772866],[5.13737612200635,52.621664901530636],[5.137117065861571,52.621612120383965],[5.136948841527031,52.6215755421741],[5.136766172105345,52.6215223556929],[5.136611547458485,52.62147280939063],[5.136428560710771,52.621406771057835],[5.136069766599998,52.62128722414591],[5.135950401790282,52.62125859882282],[5.135838789539206,52.62124685047526],[5.135125528860169,52.62113178951209],[5.134928247010775,52.62109691280127],[5.134632657216,52.62105809376438],[5.134374316750354,52.621005308141115],[5.13413134559408,52.62096602993097],[5.133934033245674,52.620931072414606],[5.133706258661657,52.620896320149825],[5.133341658312714,52.6208258922976],[5.133053256612159,52.62078259021716],[5.132893357241032,52.62074264938246],[5.132718826618828,52.62071658996319],[5.132125265872988,52.62057951676915],[5.131749239217054,52.62048828041499],[5.131519466143987,52.62045761598021],[5.131320380203105,52.62043511362251],[5.131129970273581,52.620404941142354],[5.130856359347079,52.62035912850712],[5.130643156695831,52.62032047260613],[5.130378803857631,52.62026963617564],[5.130044779798908,52.62021892171889],[5.129715079493133,52.620176918800915],[5.129443266781002,52.6201389795073],[5.12920031645969,52.62009745254969],[5.129003526969873,52.620055740440144],[5.12836531755982,52.619899045835204],[5.12826024692764,52.6198746615292],[5.128157466811188,52.61985478106741],[5.128002644870593,52.619854443700724],[5.127890357939393,52.61987974745335],[5.127807613721143,52.61990569431666],[5.12770738789246,52.61995883302253],[5.127583666543142,52.620044786213626],[5.12635698844251,52.62096130877075],[5.125949953079075,52.62127749211717],[5.125562224181233,52.62156339313273],[5.125490723196632,52.621637375841665],[5.125455781546375,52.621693180774024],[5.12541996636567,52.621777923157964],[5.125407381362464,52.62187760022121],[5.125407922077585,52.621903150859225],[5.125437726011754,52.62208942123986],[5.125490616015866,52.62223968344593],[5.125559533026935,52.62236716442038],[5.125692165930663,52.62256686117343],[5.125899655305105,52.62287091337891],[5.126065214993234,52.62312431617344],[5.126153434290365,52.62322701497659],[5.12620444182139,52.62330408440676],[5.126285890309706,52.62338093211974],[5.126366568121781,52.62343560060881],[5.126453654945778,52.62349757792675],[5.127724990527006,52.624099125286456],[5.127873380738569,52.62417527134659],[5.127991117382504,52.62424462176613],[5.128059946574747,52.62431048275942],[5.128110748358907,52.624383893145804],[5.128161939248181,52.624468260531245],[5.128201135538162,52.624552885762824],[5.128258717361021,52.62464849820061],[5.128461361183829,52.625112334807156],[5.128605251160416,52.62540612868787],[5.128655760117044,52.625488531571406],[5.128716120990227,52.625624594442925],[5.128760511535667,52.6257656733233],[5.128734038031646,52.62595125058533],[5.128690048757504,52.62609326794489],[5.128567352059414,52.62627976293823],[5.128450559419251,52.62640308146882],[5.128325501740759,52.62651655270386],[5.128262478100924,52.626561072381875],[5.128183716622667,52.626610605802995],[5.127457866360211,52.62678399519441],[5.127076815891662,52.626675316293664],[5.12701419937108,52.62672966718558],[5.127338561764489,52.62682417380357],[5.12657502833645,52.62806019942226],[5.126350024248123,52.62844782992915],[5.125950431958182,52.62897551159299],[5.125376933764367,52.62960081875805],[5.125304564055295,52.62966216167313],[5.125255426550932,52.62969631943778],[5.125171679694953,52.62973151803161],[5.125051739632676,52.629757656894284],[5.124976529626371,52.629792594668594],[5.124912274517872,52.62984834279643],[5.124848674060154,52.629909708365766],[5.12447321023296,52.63021556398505],[5.124271137857758,52.63012243446814],[5.123946675848041,52.63039020512941],[5.124017271926903,52.630433617130336],[5.124286293289399,52.63021374085622],[5.124405972148844,52.63026877448145],[5.124328507578953,52.63033179061771],[5.124270999945397,52.63037828851713],[5.124147973883255,52.63045777689282],[5.12407912688677,52.63047138473144],[5.12392651144008,52.630519918786064],[5.123904994312816,52.63052829205569],[5.123833980727005,52.63055566317651],[5.123685732339066,52.63064688448054],[5.12356248587143,52.63072637175947],[5.123319955711393,52.63083732862103],[5.123138891076957,52.630935507923404],[5.123058820937859,52.63097267686629],[5.122918737915721,52.63104932210943],[5.122918478338607,52.63109256919892],[5.122926409904776,52.631116465516705],[5.122943440059093,52.631124367059044],[5.122957711966355,52.631131139983474],[5.123020708528094,52.63113127993004],[5.123075839373568,52.631136174519334],[5.123091469596266,52.631145754415634],[5.123122981124061,52.631164920151704],[5.123138469656816,52.631198375723756],[5.123067297000707,52.63125101862119],[5.122996345619551,52.631269956793076],[5.122901710900241,52.63126974653098],[5.122893863445686,52.63126972909191],[5.122870434241432,52.63125058125868],[5.122870606185015,52.63122193979152],[5.122804534384803,52.63119595505119],[5.12278403764741,52.63118804578217],[5.12272334723698,52.63118781198059],[5.122629211230896,52.631217708456745],[5.121835522961268,52.63163141330327],[5.121716426676599,52.631700393924966],[5.121597322723169,52.631779888402974],[5.121517868462107,52.63183691285155],[5.121453172807948,52.63190300314506],[5.121353355752682,52.63205632534995],[5.121312985490952,52.63218870476186],[5.121277415747724,52.63234819095409],[5.121247212663887,52.63243543206197],[5.121141917788031,52.63255922823444],[5.121093177682382,52.63258521679147],[5.121007976839105,52.632627346319005],[5.12089699103413,52.63267568295177],[5.12062347463567,52.63278320283442],[5.120442945352549,52.63283921899162],[5.120341218545152,52.632868270713324],[5.120253252817737,52.63285679541791],[5.1200295253029,52.63279394965053],[5.119886108889594,52.63273464515994],[5.119787332578345,52.63269594670473],[5.119710611633787,52.63267415484877],[5.119612260549222,52.632677578776345],[5.119069349818862,52.6327684754972],[5.118828163106989,52.63280556134512],[5.118764889156285,52.63281103548294],[5.11838099677145,52.63278657732725],[5.118167482092427,52.63279115517681],[5.11797505790675,52.632814250645055],[5.117478499239992,52.63287384503888],[5.117332555985534,52.63288727410771],[5.11721945084745,52.63288926508619],[5.11711888636298,52.63288089266748],[5.116726626341205,52.63278985360184],[5.116492796735666,52.63275674162806],[5.116331091318474,52.63274401981239],[5.116159854539037,52.63274109354963],[5.115861422267645,52.632742660750345],[5.114928715547889,52.632676783800406],[5.114705192121631,52.632659419302236],[5.114477791218065,52.63263136883207],[5.114294046679733,52.632598937145964],[5.114085486015711,52.63255098950125],[5.11383638018621,52.63249772500957],[5.113676049167637,52.63247731787815],[5.112893859853195,52.63240586649011],[5.112396034143345,52.6323684795317],[5.112103515619197,52.63234899151201],[5.111810371957565,52.63231826207074],[5.111609575190617,52.63228128331094],[5.111432189406188,52.63222891598019],[5.111197042306924,52.632151422154806],[5.11091489848319,52.63202213394017],[5.110599891909471,52.63187115017838],[5.110343297572395,52.63175288605866],[5.110096563902366,52.63168321778508],[5.109831354385723,52.63161379529373],[5.109634667890322,52.631550704483736],[5.109494659390048,52.63150122544278],[5.109235248954979,52.63142788869529],[5.109009118232384,52.63138410419458],[5.108765586519195,52.631356014924044],[5.108568194300184,52.63136425214008],[5.108464023439702,52.63137805756309],[5.10842298467544,52.63140913490108],[5.108361086966867,52.63148987632095],[5.108201313446414,52.63179084689547],[5.108138025686835,52.63190921208647],[5.108110120714957,52.63203296805297],[5.108047882947281,52.632220463457266],[5.10780599874436,52.63222214314199],[5.107802513856206,52.63211793772509],[5.107802484225054,52.631975269381186],[5.107786116374454,52.63190108652564],[5.107641473144705,52.63181704713661],[5.107188052500859,52.6316589957386],[5.106995938651605,52.63160208815135],[5.106842892321506,52.631571113839],[5.106685746972199,52.6315670945335],[5.106547920932828,52.631574068687755],[5.106455038312961,52.631591547748265],[5.106376888948946,52.63161186100524],[5.10626581863683,52.631657657539],[5.106123466369628,52.63172388678962],[5.105526151464916,52.63201483361189],[5.105243269570848,52.632149525083975],[5.10512895978623,52.632195883553926],[5.105012153127702,52.63223492409175],[5.104814291161874,52.63228135809193],[5.10434729470635,52.63240578005279],[5.104012651864819,52.63251114731921],[5.103248031624123,52.63279803543425],[5.102587076470713,52.63307561077671],[5.10126439732992,52.633676819991116],[5.101059865172813,52.63378951418934],[5.101000346579306,52.63385592756742],[5.100968006834336,52.63392943423207],[5.100906411670971,52.63417474495074],[5.100886200026494,52.63426625406045],[5.100889157651337,52.63430867125156],[5.100918028162917,52.63441209226531],[5.101000146042382,52.63473863083449],[5.101010940498578,52.63481644724132],[5.10098837259839,52.63484616805421],[5.100805347392717,52.63495075776462],[5.100282581223409,52.63523118995855],[5.099913564372438,52.635437002173745],[5.099645406539668,52.635607387385264],[5.099371161014784,52.63578899920194],[5.09917280419261,52.6359081586908],[5.098285630264718,52.63642557460192],[5.098126856907898,52.63652657301819],[5.09739540995173,52.637051384038365],[5.096982764087829,52.637356773617356],[5.096619152928405,52.63761230528895],[5.096391152123946,52.63777800817477],[5.096146352814729,52.63793636481326],[5.095649047389132,52.638250465803466],[5.095363970886183,52.6384430599276],[5.095192743088329,52.638575477726214],[5.094723256762104,52.63898885509068],[5.094600776180926,52.63908039192561],[5.09374557363649,52.63970036352427],[5.09357481198608,52.63983053245047],[5.093355738341051,52.64003866152683],[5.092547250813877,52.64088284967049],[5.0925247416582,52.64090048856447],[5.092489402173969,52.64090235929302],[5.092447935106625,52.640890467294774],[5.092425465742864,52.6408690682027],[5.092428855664075,52.64084379595539],[5.092425832524362,52.640814300963974],[5.092371777075495,52.64078495629146],[5.091733550333398,52.640640148243094],[5.090741993653286,52.640415250813135],[5.089501547886724,52.64016584373592],[5.089341312309474,52.64018168223261],[5.089268503757781,52.640210977503884],[5.089268388922557,52.64022794302542],[5.089268154774689,52.64026253550622],[5.089328366939625,52.64030689375669],[5.089729296873735,52.640393499067805],[5.089666119290025,52.640477189597334],[5.089628959695477,52.64060234057011],[5.089652575590219,52.640690815428556],[5.089882240010509,52.64073559627017],[5.089576797741381,52.64115477247745],[5.089105515765845,52.64104307820662],[5.089020288949017,52.64111654064902],[5.08953970186625,52.641272563146224],[5.088720455200372,52.64249350745345],[5.088587061789116,52.642530009770375],[5.08794557754558,52.64252102911305],[5.087957944185354,52.64248422220367],[5.087934063955243,52.642432593387205],[5.087873864999201,52.642388244375134],[5.087710011109118,52.64231987975097],[5.087125582695318,52.64219489113299],[5.087073743328051,52.64221413647915],[5.086999378705349,52.6422518643943],[5.086917152531318,52.642257553261544],[5.08677972075748,52.642235582428285],[5.085826604795056,52.64205960123128],[5.085649843643453,52.64231865598017],[5.085338377926095,52.642260294737135],[5.085443210563207,52.641987577372895],[5.08526108192784,52.641951735757765],[5.08518896143452,52.641931606740684],[5.085147703340575,52.64192363828333],[5.084484234505657,52.64179219887038],[5.084520560167978,52.641744829655664],[5.084301333498663,52.64170158476218],[5.084268913940227,52.6417498050495],[5.083663312432044,52.64162974854335],[5.083599309669027,52.64173967780821],[5.083245036336333,52.64166153985712],[5.083215763532817,52.64165527924232],[5.083226088061869,52.64162975626161],[5.08359641780813,52.6412203781246],[5.083846639392618,52.64098932244441],[5.083965229492066,52.64093148741684],[5.084692813008391,52.6407330989662],[5.085338666025465,52.640568201121766],[5.08657800027738,52.64023600500184],[5.088125006820297,52.639802348240124],[5.088189503438032,52.63978987635838],[5.088272553606146,52.63976200048241],[5.088663623513471,52.63951892051937],[5.0886915844252,52.63948108498379],[5.088676639248233,52.63943694606772],[5.088551039540441,52.63937344259432],[5.088489707840948,52.63936374250256],[5.088454082162819,52.639375721778755],[5.088084759324075,52.63957587952843],[5.087903086885183,52.63964704416594],[5.087650947923397,52.63972364261347],[5.086716363559768,52.63998555935073],[5.086240812136489,52.64009107680432],[5.084149100038626,52.64057753434086],[5.083883769923682,52.640658585631094],[5.083722861898466,52.640760680035115],[5.083607795367966,52.64087721754051],[5.083374091851447,52.64112516839091],[5.083057103445997,52.641465309192064],[5.08271367876187,52.641855081799605],[5.082457728321278,52.642179649808824],[5.081718532465312,52.64228390813126],[5.081650658992954,52.642318281022305],[5.080848069419901,52.64297171606666],[5.080753338418467,52.64304898917704],[5.08051171186357,52.64300538752221],[5.080661571413565,52.64286760020912],[5.080714693593743,52.64288106223855],[5.080981711347233,52.642634758111335],[5.080938988406619,52.64261246800885],[5.080838227207647,52.64256221521103],[5.081027710282675,52.64236835484593],[5.081077551015643,52.642339276023336],[5.081269751388972,52.64228557215067],[5.081404478404115,52.64223311681526],[5.081495575840072,52.642145726968835],[5.081549277142866,52.642094855217685],[5.081589376910977,52.64203531011564],[5.081610503347825,52.6419502765313],[5.081567800972216,52.641850184662246],[5.081416870730539,52.64174363237906],[5.081197849170478,52.64163774683337],[5.080488663543277,52.641311266445776],[5.08048859233558,52.641311308501486],[5.079824761737823,52.64104584201228],[5.079618668152479,52.641007670443564],[5.079476343225961,52.640991856213404],[5.079373909511125,52.64098484904755],[5.079288183463381,52.64099642899093],[5.078759214760169,52.64094703148094],[5.07868094726882,52.64094879486543],[5.078611932514974,52.64097922493365],[5.078605543474775,52.64100336922872],[5.07863093384624,52.641036010576954],[5.078754408652947,52.64113827040987],[5.078804599188273,52.64118980037046],[5.078815313345129,52.64124206915536],[5.078794866598074,52.64129537334147],[5.078675316489037,52.641425608743816],[5.078504880576596,52.6414828366292],[5.078316895866127,52.64150004416313],[5.078059629665738,52.64151162518219],[5.077860603008194,52.64150838464748],[5.07769974593149,52.64148482445771],[5.077603853743527,52.641446451699956],[5.077534874610589,52.641399996753194],[5.077490504655469,52.641344072350705],[5.077460520097109,52.64126967919392],[5.077621799130982,52.64125160276006],[5.077611477168886,52.64120888905275],[5.077079363672127,52.64124569885081],[5.07700973260581,52.64126629631235],[5.076989221373808,52.64131313561546],[5.076975948132866,52.64134316368467],[5.076691549596584,52.64127923430574],[5.076366091478519,52.64117254964848],[5.075910667200375,52.64097724570545],[5.075597109944108,52.640767550465036],[5.075586028957845,52.64076013854527],[5.075355715895445,52.640521378996795],[5.075291216902497,52.640406346845865],[5.075296848980567,52.64039315779068],[5.075320788802579,52.64033592880128],[5.075466350816834,52.64025233507828],[5.075757131029103,52.64014289810197],[5.075699366238681,52.64010747252303],[5.075575876964711,52.64013803765478],[5.075321351978057,52.64025644939925],[5.075189962665204,52.6403928774494],[5.074744344458833,52.64086380996631],[5.074636298364272,52.64076663723017],[5.075009104366004,52.640326250742405],[5.07520653097972,52.640075283179016],[5.075266711670316,52.63998613545936],[5.075316636519316,52.63991240152705],[5.075347476552805,52.639827670365804],[5.075377727205907,52.63966429435625],[5.075385749806278,52.63954074295311],[5.075335821320343,52.63945243165441],[5.075205795607067,52.63936390126457],[5.074989210419132,52.63924425043189],[5.074873742621887,52.639186655491855],[5.074865955012311,52.639178214140806],[5.074665045250875,52.63896087378558],[5.074600109568236,52.63890790579023],[5.07443922045753,52.6389074828208],[5.074411760773287,52.63890741060891],[5.074165829551642,52.638814050989915],[5.073681540475426,52.63859655591657],[5.073522559752105,52.63855653063286],[5.073320613191929,52.63855179189917],[5.073279822829295,52.63851067525682],[5.073523064120603,52.63848575504003],[5.073588365142832,52.63845503861767],[5.073588647226814,52.63841544673887],[5.073523974680533,52.638357979901556],[5.073299870826424,52.63825571950005],[5.073017658864956,52.63817998426259],[5.072866085704767,52.638104606270254],[5.072700077418162,52.637980594915426],[5.072311322229262,52.63760013758991],[5.07215669493438,52.63743571636778],[5.072012603185235,52.63731625652198],[5.071846347324136,52.63722734597082],[5.071680275313162,52.63714770945298],[5.071456149625403,52.63708083843898],[5.070265245956759,52.636327524375815],[5.068887657210047,52.63537963396534],[5.068118628468803,52.634758991170855],[5.068024026280244,52.63479849624611],[5.068132132830836,52.63488248408539],[5.068052276039743,52.634913159373035],[5.067958300915586,52.634886512040225],[5.06791416668119,52.63495687668514],[5.068051732412528,52.63498814357347],[5.068044362030498,52.63501901245403],[5.067899023940635,52.63504081148477],[5.06734019649935,52.63533139413418],[5.066501302321072,52.635799643720524],[5.066422852502241,52.63584342309717],[5.066260350072127,52.635934123742814],[5.066169395945197,52.63598488902943],[5.065313984598848,52.6364622893097],[5.065167228686192,52.63654418687088],[5.064909283086145,52.63668834396721],[5.064687747669271,52.63680878882966],[5.064610801405316,52.63685070176786],[5.064516042173548,52.636929929281365],[5.064559846926938,52.63700025442016],[5.064978900284308,52.6370480146516],[5.065650720443069,52.637125099833575],[5.066222659108914,52.63719320229874],[5.066755855118887,52.63725670587849],[5.066956486018857,52.637280561495],[5.066941528586674,52.63752850750281],[5.066870555790036,52.63830485783648],[5.066797732260959,52.638353244100415],[5.065696470672478,52.63828848601181],[5.065501018899558,52.63824836037448],[5.06478444281798,52.63791446640631],[5.064027853562521,52.63752792528689],[5.063728461647851,52.6373748960477],[5.063635619353403,52.6373499280877],[5.063162974955253,52.63705684195327],[5.063810366457256,52.63693980182774],[5.06401255054135,52.63656458562431],[5.063908126311314,52.63654632761714],[5.063724110181423,52.636898001933226],[5.063066582414827,52.63698271523805],[5.063090063649351,52.63654648981597],[5.063092442117708,52.63650233369983],[5.063094139600729,52.636470613870735],[5.063096813518642,52.63644350977964],[5.063098352358634,52.63642791866231],[5.063103376150587,52.636405682095784],[5.062998604102935,52.636402860376535],[5.062999003533946,52.63638011691781],[5.063003714619112,52.63611613015269],[5.063102041642206,52.63611584094626],[5.063138073181774,52.63495351349215],[5.063061531261316,52.63393748465073],[5.06305561309213,52.633802373482425],[5.063037883668565,52.633703188416426],[5.062966972541306,52.63358363558265],[5.06290466187409,52.63351999336228],[5.062820584822896,52.63346612542943],[5.06278348911508,52.63345899722419],[5.06266935581373,52.63347385695416],[5.061795847699053,52.63358885781152],[5.061792291878642,52.63391463330558],[5.061781557779351,52.634896730703474],[5.061793490259054,52.63621842339562],[5.062892134181258,52.6361290297831],[5.062930043524136,52.636122671427636],[5.062920760117545,52.6363796223062],[5.062635107565397,52.636398500572625],[5.060434908789397,52.63662417936938],[5.058239779605066,52.63684645324594],[5.05767184724112,52.63618404965696],[5.05778683482242,52.636148979703144],[5.058165541784411,52.636032917148185],[5.058117392794669,52.6358662439606],[5.057750621831813,52.63460141721506],[5.05833278440609,52.63443844676874],[5.058717427809961,52.63433054206996],[5.05914554951323,52.63421011750506],[5.059734869854258,52.63404323437377],[5.060230995296533,52.63390248725755],[5.060324430044646,52.633876070381675],[5.060465959430635,52.6338402206019],[5.060471696747172,52.633780697695215],[5.060498668041174,52.63350638559185],[5.06171917183414,52.63303398362377],[5.062981701697189,52.63286892499647],[5.063026669304726,52.63281034111157],[5.063082514470736,52.63274870697434],[5.06317011916365,52.6327006427048],[5.063630516012233,52.63273728478228],[5.063839245490028,52.63275695281073],[5.063994473117365,52.632769163169996],[5.064106849172207,52.63277425146563],[5.064129169315958,52.63275155495483],[5.064135886998304,52.632715347979214],[5.064088291655882,52.63269162841997],[5.063162724111232,52.63260822342178],[5.0630180551099,52.63260249349968],[5.06286194827897,52.63261329993809],[5.062657348534795,52.632629879271015],[5.062500690741626,52.63265387860121],[5.062322568488094,52.632677553071375],[5.06211737918467,52.63271069310204],[5.061933646426898,52.63274416826944],[5.061771127289347,52.63278107406635],[5.061602734865518,52.63283116741758],[5.061433764522842,52.63289782667763],[5.06133528695492,52.63294895683381],[5.061226817568487,52.632980393935156],[5.061053726697335,52.633010528545675],[5.060799787290244,52.63304943802481],[5.059039057275408,52.63329285946069],[5.058446255504102,52.63336873688067],[5.05820831674924,52.63339671989135],[5.057910451444016,52.633446725675405],[5.057642072380379,52.63350159626557],[5.057142614760163,52.63359373186257],[5.056741122522541,52.6336420459812],[5.056517428467653,52.63367962028342],[5.05629425863375,52.63370792901818],[5.05610064032329,52.63373659821359],[5.055929127054345,52.633770377627556],[5.0557942638008,52.63380931957226],[5.055658789438357,52.633870728325086],[5.05554486639272,52.63395073742775],[5.055482934404233,52.63402246154558],[5.055449609026864,52.63412628110066],[5.055412196369351,52.634343555942465],[5.055415185779642,52.63446629129401],[5.055433822540872,52.6345663257291],[5.05548934313889,52.634671798685936],[5.05556166275867,52.63478349619638],[5.055636718952131,52.634900817330056],[5.055670126564104,52.635001458184874],[5.05572418861095,52.635147369817716],[5.055749344528265,52.63527044461765],[5.055740867812246,52.635506334244916],[5.055722244385906,52.635619188208125],[5.055677649008079,52.63568786826028],[5.055591389166647,52.63577103347332],[5.055544749964764,52.63583409263351],[5.055608856504059,52.635903088327325],[5.056595004653184,52.63687222479082],[5.057079669238692,52.63734145742282],[5.057168351038477,52.637427080079966],[5.057210459317867,52.63750583582642],[5.057199584099189,52.63760213925069],[5.057173438940308,52.63770289025376],[5.057140543992568,52.63778059308033],[5.057076471523252,52.637889947293566],[5.056937059665427,52.63801201213434],[5.05645534949813,52.638469572621354],[5.056299774334746,52.63862361097941],[5.056215049957318,52.63868684029893],[5.056114464684185,52.63877250123252],[5.055744214573092,52.639047827635274],[5.055643886013964,52.6391289872462],[5.055534807344565,52.63923793023958],[5.055180479605643,52.63969697120843],[5.054996534350159,52.63990708987742],[5.054850100604233,52.64007098191986],[5.054709913021281,52.64020286393595],[5.054635023017616,52.64027736335933],[5.054593071422762,52.6402682571582],[5.054546236826441,52.6402644765169],[5.054498757658451,52.640285967556636],[5.054455612823389,52.64031393152457],[5.054322597766067,52.64025823477387],[5.054242260711264,52.64032092224691],[5.054370142032993,52.64038306644005],[5.054332183381841,52.64042732948757],[5.054309119508576,52.640484276355515],[5.054312111250047,52.64051629944856],[5.054228744128169,52.64058263168172],[5.054066203918473,52.640677944781324],[5.053913472338424,52.640758680220856],[5.053670401949569,52.64087876738076],[5.053394254266341,52.641009425296794],[5.053104060989142,52.64113443067852],[5.052734105417714,52.64127549389019],[5.052657962202872,52.64130252051563],[5.052238319836778,52.64141901550375],[5.05207793867025,52.64144187803106],[5.05195579894342,52.641446027370705],[5.05189510674886,52.64141355757754],[5.051842081623322,52.641343757221286],[5.051743393270554,52.64129686377187],[5.051575419007825,52.64128711251698],[5.05138446027744,52.64132393644185],[5.051139658164431,52.641429964919354],[5.05097129297925,52.64147133477872],[5.050605242156747,52.641461032825795],[5.050360808003151,52.64148813789959],[5.050116342618539,52.641547829577945],[5.049901777961542,52.64165394120165],[5.049687616321152,52.64173703314586],[5.049435664586496,52.64175007355478],[5.049115462643575,52.64172135864036],[5.048765406038616,52.64161364315773],[5.048551823578018,52.641589720907],[5.048300070421182,52.641607543303394],[5.047841753386693,52.64168066130551],[5.047650703110638,52.6416986555124],[5.047452622100557,52.64167028469005],[5.047158280999351,52.64158209618204],[5.046572292225342,52.641389167758085],[5.046549000469075,52.641386007692084],[5.046505370323827,52.64141537027467],[5.046538148382396,52.641444114118464],[5.04674307267021,52.64150971352369],[5.046639123591404,52.64156519881297],[5.046485167941766,52.641623640418494],[5.046312517689789,52.641654312948745],[5.046051309669501,52.64166237136291],[5.045756603329601,52.64165038259292],[5.045662169371449,52.64163685459437],[5.045078540919405,52.641473060836525],[5.044544575803156,52.641299086508866],[5.044271351600784,52.641197471920336],[5.044109140543652,52.64112904459164],[5.044012608443114,52.64107596960045],[5.043898011042074,52.64099980306824],[5.043761088025427,52.64088594568358],[5.043603151592544,52.64071417839172],[5.043418533853213,52.64049907976245],[5.0433005419348,52.64038555245073],[5.043213809746077,52.64031817880017],[5.043080822321222,52.64023298195647],[5.042961408752749,52.640153712596224],[5.042823028674402,52.640080012322954],[5.042689181234882,52.6400150353116],[5.042448587854254,52.639905081094874],[5.042193906654988,52.6397979065705],[5.04186547699788,52.63964360831756],[5.041638673346749,52.63954241176687],[5.041513811400531,52.63948026170174],[5.041347651100754,52.63938878603693],[5.041214174646392,52.63930610024133],[5.041062362887633,52.6392090489739],[5.040920233147479,52.63911231059051],[5.040532256402239,52.638784554010954],[5.040345781590874,52.638603702085426],[5.040246224088855,52.63849585404727],[5.040161018702619,52.638382419179834],[5.040036615219373,52.63817647971415],[5.039935389461077,52.637988012210464],[5.039820175798328,52.63778799936143],[5.03927888663358,52.63688292448183],[5.039220417711142,52.636804402922216],[5.039097913934349,52.63667878391476],[5.038996865816886,52.63661389866024],[5.038880959476502,52.63656046790661],[5.038764132207922,52.63653570231487],[5.038651573092054,52.63652526288334],[5.038533858312496,52.63652659572022],[5.036573741836563,52.63667221087359],[5.036427352920794,52.636678800817485],[5.036338057911407,52.636674608244746],[5.036211216974373,52.636661034598674],[5.035906983031905,52.636604811678495],[5.03519439413131,52.63649597912677],[5.033950411982466,52.63633894622176],[5.033814378064029,52.636319722168125],[5.03372028765842,52.636309620528834],[5.0336126950164,52.63628486473099],[5.033505265803803,52.63625449237749],[5.03316963502022,52.636142844397924],[5.032941009607902,52.63607026668896],[5.032674792810075,52.635994207211624],[5.032454826779071,52.63593905881592],[5.032276622230564,52.635910445977665],[5.03210751707894,52.63588774749847],[5.031308096139563,52.635800550054405],[5.030860748594591,52.63576213594195],[5.030616350337885,52.63572938499617],[5.030418841568277,52.63570632393506],[5.03020305092788,52.635662708061275],[5.030043837728915,52.63562852923533],[5.029903491512081,52.63558598595618],[5.029773206839844,52.635529424993926],[5.029559599831288,52.635427954572755],[5.029217351089929,52.63522387086377],[5.029134359110851,52.635168019530155],[5.029028052942198,52.63510000665734],[5.028589702373253,52.634808016243745],[5.027779261328965,52.63426549779397],[5.027603824086601,52.63415627633263],[5.0274277779104,52.63406419299636],[5.027172602957055,52.63393927807698],[5.026959129862764,52.63383809719878],[5.026786801662938,52.63377212994563],[5.026432674854917,52.63363990442793],[5.026279084895782,52.63359618696856],[5.026065370774202,52.633538522066225],[5.025740395014686,52.633469575027554],[5.024369007729343,52.6331730377789],[5.023615858350118,52.63302413053565],[5.023522224070699,52.633002501599336],[5.023428771193602,52.63297215923052],[5.023234202738738,52.63287411651551],[5.023031664858753,52.63273587843253],[5.022504198609163,52.632330405803614],[5.022333897302881,52.63221529936239],[5.022176951920901,52.63211791853339],[5.022093490030981,52.632079186632104],[5.022014373548651,52.6320463680635],[5.021903117018132,52.631992947488406],[5.021809642541185,52.631965421229445],[5.021729508502411,52.631958432833095],[5.021681870196111,52.63196923452837],[5.021628363125647,52.63200586423491],[5.021588586412439,52.63205713751428],[5.021532246986232,52.63217154832249],[5.021493767864761,52.63230342748126],[5.021465551088958,52.63242129400843],[5.021452744706199,52.63250467220535],[5.020734886951447,52.63266675574744],[5.020686177956343,52.632668007621604],[5.020723728760987,52.632635547724476],[5.021390661742413,52.63204614060054],[5.021520551729835,52.631939816196],[5.021544783535788,52.631886247459384],[5.021516885094149,52.63184065895705],[5.021408295202727,52.63178499933274],[5.020436113701604,52.6313104611072],[5.019798154676644,52.63098524094548],[5.019654177316518,52.630883973021085],[5.019582824765844,52.63081971737096],[5.01947711855564,52.63068289492579],[5.019347992578365,52.63058645010249],[5.019162768410185,52.63040781587964],[5.019072094880163,52.63026655140919],[5.018982124581046,52.630112091440665],[5.018876531404309,52.62985113853373],[5.018697591255754,52.629280734401185],[5.018606242213509,52.62894540289059],[5.01854580459884,52.62877727297713],[5.018414281661351,52.62852690689675],[5.017973194066859,52.627765565285884],[5.017895917013202,52.62762461461484],[5.017247512869211,52.626257965952696],[5.017108392829013,52.625896923141354],[5.01705711443805,52.62569680234897],[5.016952030552127,52.625172404424134],[5.01694315124617,52.62507604270341],[5.016955491474123,52.625034805883665],[5.016984399270568,52.62500090472768],[5.016990512234827,52.62498716804167],[5.016979697756663,52.62496972537632],[5.016940472331274,52.624955553634656],[5.015718675934506,52.62496161143138],[5.015677837993961,52.624961817257194],[5.015677450077009,52.62488527165171],[5.015653796456848,52.62488638494149],[5.015653558184094,52.6248404149611],[5.015653296569052,52.62478986056557],[5.01567693536177,52.62478874812841],[5.015676663418286,52.624736964258894],[5.015690504788632,52.624738309744856],[5.015930473545795,52.624761707796786],[5.01594414254697,52.62472692350132],[5.016921612539678,52.62471537014242],[5.016966536314389,52.624696410559835],[5.016973887861212,52.62465796129055],[5.016974758970945,52.62462285932461],[5.016944409746572,52.62456827757088],[5.016926281042444,52.62452918725838],[5.016927514556651,52.62447891702132],[5.01697024995365,52.62354129553093],[5.016970517931215,52.623538229052706],[5.017014405154645,52.623035682291125],[5.017023731753502,52.62292949134794],[5.017062169636894,52.622049435863765],[5.017065208963816,52.62193345988381],[5.017052313322512,52.62190420790949],[5.017004820176424,52.62189872437236],[5.016930363921301,52.6218903492638],[5.016896999270767,52.62186496360459],[5.016890864655393,52.62184023163602],[5.016898498221538,52.62181104448125],[5.01697909521632,52.62180231012474],[5.017061752157072,52.621796395104205],[5.017085543265482,52.62139429423637],[5.017137495062537,52.6206774404142],[5.017151769672655,52.62037895054212],[5.017242661251736,52.619556342739145],[5.017257285737512,52.61940837881051],[5.017275887761981,52.61930986738375],[5.017299348449632,52.619234670266394],[5.017339210722901,52.619146047930926],[5.017356716099614,52.619093860957776],[5.017337029574403,52.61902105588771],[5.017266079983561,52.61884278252786],[5.017194589930975,52.61868725122937],[5.017168828167336,52.61863774259375],[5.017475364456194,52.61801604811483],[5.017662506305496,52.61765574347013],[5.017834075572485,52.61710076242437],[5.018067487979676,52.61651844543305],[5.019428758945526,52.613208358685874],[5.019614958729074,52.61280423437875],[5.019650694075719,52.6125712456114],[5.019665004739241,52.61237806574963],[5.019672240513184,52.612215471603655],[5.019629388833723,52.61197381255088],[5.019622376335661,52.611762867401225],[5.019693909457171,52.611499372659466],[5.019722541658739,52.611385161447],[5.019722701206502,52.611226759469496],[5.019679826357933,52.61112580345109],[5.019253885720247,52.61056242721899],[5.019215227718826,52.610452088875505],[5.019171651902097,52.610343550699604],[5.019133738990809,52.61022147738207],[5.019134842900045,52.61008936037005],[5.019174965496832,52.61000842928004],[5.019375301035835,52.609954280611944],[5.01959730708873,52.60987520619245],[5.019702351987172,52.60982329034794],[5.019814994468219,52.60975820112622],[5.019927678566082,52.60964930125172],[5.019994916179811,52.60955317455917],[5.020037877083936,52.60935109674334],[5.020018117877519,52.60916230684307],[5.019975990565961,52.60902708958331],[5.019942948834172,52.608964635381376],[5.019756529655624,52.6087076452777],[5.019728780285635,52.60864633795629],[5.019679060057322,52.60835578431056],[5.019368159685975,52.60712189776309],[5.019342105273419,52.60703811683646],[5.019355239588375,52.60691486416189],[5.019495928500653,52.60641904443581],[5.019585946844884,52.606231713668585],[5.01968151869168,52.606153650871065],[5.02048380680453,52.605661270281004],[5.020643069335917,52.60555195613656],[5.020687699078612,52.60546979633396],[5.020745912639111,52.60502876985306],[5.020798487355531,52.60497471944228],[5.020896864740457,52.604932900626146],[5.021093740424975,52.60488829266206],[5.021855942127398,52.604708081205246],[5.022068904536197,52.604642453315975],[5.022198993730041,52.60457320219144],[5.022264057896935,52.60451498797482],[5.02232321862171,52.604431478247065],[5.022358674249008,52.60435519871492],[5.022340974055534,52.60426442684886],[5.022287803053715,52.604180852666566],[5.022169458229756,52.60407207687438],[5.022039414367509,52.60397057249949],[5.021696712434636,52.603716474180196],[5.021530997917389,52.60361878873826],[5.021095069668683,52.603396702652454],[5.02097693475574,52.603305900661475],[5.020929688856937,52.60321869440357],[5.020935737281055,52.60314260055435],[5.021141377635348,52.60241696322791],[5.021167610221538,52.60229992297229],[5.021167597584927,52.60226004407999],[5.021168067869129,52.60220005783898],[5.02109458505625,52.60217739140692],[5.021068232303197,52.60216925771052],[5.020951828739221,52.6021248609543],[5.020663291100966,52.60204944073785],[5.020408001490261,52.60198767510749],[5.020208219487477,52.601943012194894],[5.020002757464726,52.60190850579528],[5.01990266771918,52.60190819653481],[5.019796999850342,52.60191125721937],[5.019669214697016,52.60189730946546],[5.019468850529071,52.60184100599278],[5.019443450941544,52.60178045259997],[5.019549458413667,52.60177380649302],[5.019622718542273,52.601617744933506],[5.019689700320514,52.6016342476387],[5.01978309596058,52.601663178564216],[5.019863549279439,52.60166736093343],[5.019950639446066,52.60166369636849],[5.019990910993684,52.60167589957953],[5.020064440947697,52.60168033992419],[5.020138124096363,52.60168056750141],[5.020238511405182,52.60167273418994],[5.020400118373083,52.60159964771198],[5.020453726164561,52.60158773615107],[5.020507195264678,52.60160419220545],[5.020547444911764,52.601604316376026],[5.020581000302553,52.60159206159848],[5.020614868704711,52.60156772989134],[5.020635164622969,52.601539151209764],[5.02087485122563,52.601560112264366],[5.021003129947609,52.60156752565841],[5.021225894443299,52.60172436511774],[5.021214980011771,52.601774883555564],[5.021168418743073,52.6018966271395],[5.021175018784697,52.60192108363358],[5.021247962485467,52.60192917203538],[5.021261163865488,52.60192106848946],[5.021275430797556,52.60189752193976],[5.021357953066532,52.60166663533402],[5.021739938398178,52.601688030755334],[5.022216680084517,52.60172741173813],[5.022282004690735,52.60173490721974],[5.022375840683358,52.60176721843484],[5.022475697334436,52.60178156198826],[5.0225930402363,52.60177405821821],[5.022728134562881,52.601737966595486],[5.022874919232716,52.60168364868476],[5.023056842134313,52.60159349218966],[5.023203670894631,52.6014922761561],[5.023285883208534,52.60140912138862],[5.023332899987182,52.601315454350726],[5.023338783708408,52.60121801617203],[5.023338730465328,52.60115314467203],[5.023280120604972,52.60107404062318],[5.023150869481475,52.600973105100735],[5.023086252593688,52.60090830723591],[5.023039318540361,52.60082532221241],[5.023015928143789,52.60073902743084],[5.023015923322356,52.60064156671666],[5.023057089172587,52.60047570840164],[5.023203716135809,52.6000897109709],[5.023233198293289,52.60005357208678],[5.02328603423178,52.60005008417611],[5.023556082749426,52.60010736287291],[5.023814419313097,52.600146625369014],[5.023955321826632,52.600146499775505],[5.024008117031746,52.600121098847055],[5.024031591309043,52.60008494590107],[5.024325863083713,52.59990357546095],[5.024383954739155,52.59989364131724],[5.024442598765412,52.59985730625657],[5.024471928517147,52.59981049161286],[5.024483870447643,52.599759972402246],[5.024472092013067,52.59972034247928],[5.024366254738218,52.59964839689125],[5.024097065962017,52.59952765868749],[5.024068343050552,52.59950116835649],[5.023805598589094,52.599258555860516],[5.02365744929954,52.5991151515839],[5.023527122557102,52.598867040615524],[5.02343614388453,52.598753863250515],[5.022746048750011,52.598221782217294],[5.022682374315913,52.59814013867238],[5.022619445736042,52.597940543109495],[5.022558979839176,52.59782100223261],[5.022468786322061,52.597712312906964],[5.022258786370278,52.5975628204845],[5.021855345613068,52.597338303908735],[5.021659098383326,52.59723996468131],[5.021599552834984,52.59719119762029],[5.020864244398378,52.59619218988965],[5.020780134625458,52.59613070797794],[5.020565045436892,52.596026853572106],[5.02048380400011,52.5959499429773],[5.020414524268237,52.59583851254831],[5.020379279840314,52.59568611471421],[5.020371849351442,52.59556460366211],[5.020437598503425,52.59542791350024],[5.020488573802359,52.595376735894405],[5.020532896580083,52.595357045081386],[5.020575775798416,52.595331339156466],[5.020964269436154,52.595311473681605],[5.02112561674669,52.5952515857648],[5.02125196517734,52.59515564823826],[5.021329352740533,52.59497305262252],[5.021340485676022,52.59481243791813],[5.021243467878626,52.594582400185786],[5.021185708128924,52.59435978897364],[5.02118803392064,52.59419045021522],[5.021287452061369,52.59406352448516],[5.022178882840706,52.59309396688367],[5.022568685498083,52.59271825889508],[5.022571844647938,52.592715103293315],[5.023017777647419,52.59226943882688],[5.023640812255277,52.59159898905668],[5.023640836231873,52.591513607034265],[5.023569047769838,52.59145160031571],[5.023241921892955,52.59140229532639],[5.023181506358354,52.591346503706525],[5.023977565716498,52.59025839614762],[5.024064307672291,52.59018226813505],[5.024295727643975,52.59006614310706],[5.024974762772427,52.589770792000756],[5.025162642683746,52.589650606043286],[5.026542661024996,52.58781325723737],[5.02674627020434,52.58765351700717],[5.026801297498524,52.5875382502908],[5.027007243986481,52.58710664345768],[5.027111085908056,52.58662688789697],[5.027172259990938,52.58643731800057],[5.02736134329837,52.58625056022575],[5.028107263555716,52.585703192454844],[5.0284162212231,52.58540277789928],[5.028583065384992,52.58521285939935],[5.028620050083754,52.585059631930065],[5.028604666737441,52.5848829236765],[5.028554632207345,52.584712301231114],[5.028464886623217,52.58450869799123],[5.028130182737495,52.583992600465734],[5.027856648165165,52.583624987829396],[5.027680121461874,52.583404264117455],[5.027681742250692,52.58336129300486],[5.027894259709144,52.58319567393665],[5.028226020432617,52.58296862401414],[5.028825862147606,52.58263004257586],[5.029001654730931,52.58245785791372],[5.02928982964165,52.58211664365291],[5.029531025121107,52.58179523442144],[5.029670513148862,52.58150890590158],[5.029696120693829,52.581322497942615],[5.029665763774734,52.58114323089604],[5.029585131477443,52.58100901290318],[5.029284202339277,52.580807581907095],[5.029088787717437,52.580713475565034],[5.029119817261848,52.580625943578546],[5.029276727563784,52.58036494184286],[5.029615339599977,52.57992811333236],[5.029898207090644,52.57949841922949],[5.030082666735433,52.579181050406156],[5.030440614740963,52.57824661032292],[5.030797273675135,52.57725403387162],[5.031004059442841,52.576910047344676],[5.031008385362152,52.576904319265985],[5.031287966498968,52.57653371185017],[5.031427722526215,52.57625327830402],[5.031502838886468,52.575928281968295],[5.031582787941216,52.575490103931365],[5.031640218945933,52.57525548504195],[5.031833863026868,52.57486624279718],[5.032072769774942,52.57445158568044],[5.032304554039358,52.57413266495887],[5.03246045699495,52.57390620266606],[5.032524151252517,52.57379657859735],[5.032574013936335,52.57367344132709],[5.03257671635086,52.57362373105856],[5.032585744672227,52.57346002838361],[5.032469324078753,52.57326252044067],[5.031308947064866,52.571620843785404],[5.031272108894584,52.57147300191607],[5.031261749270796,52.57134182084156],[5.031347404991177,52.57115446680412],[5.03121462616338,52.57051343978222],[5.031001899003602,52.5703715414169],[5.030794788067901,52.56943371062204],[5.030751234607297,52.569006127249985],[5.030734885052905,52.568562056546476],[5.0307706879574,52.56829450191716],[5.030784349752423,52.56824511389543],[5.030996327373184,52.567894412668146],[5.031305385315436,52.56747770831849],[5.031652634686275,52.567082745288644],[5.032124207482206,52.566789542661475],[5.03304190314361,52.56593933732992],[5.033003370206511,52.56588670089206],[5.033141119856748,52.56579331330177],[5.033197657427101,52.56582745903922],[5.033407727250328,52.565694399377605],[5.033693854535466,52.565576170905466],[5.03403423713827,52.565430296474766],[5.034197055378084,52.56535719992742],[5.034353033816771,52.565246727288915],[5.034525546122266,52.56505653619534],[5.034660227214483,52.56492802449477],[5.035177872308824,52.56471752227133],[5.035715711608857,52.56448628102139],[5.036363612514732,52.56423824531148],[5.036968187958129,52.5639900666501],[5.037325962337952,52.563827946437435],[5.038136548200175,52.56337198075954],[5.038866177302407,52.56292560512354],[5.039640997539992,52.56250125739145],[5.039899148251257,52.56237647024999],[5.040701972772583,52.56196287432792],[5.041199967965881,52.5617236362126],[5.041679566500031,52.56150624805671],[5.042314911686129,52.56126206987213],[5.042482098631773,52.56115835681851],[5.042670519566416,52.560960345112235],[5.042796339825147,52.56072282961904],[5.042870277577955,52.56040147056169],[5.042884392901437,52.56024619261678],[5.042884682413726,52.56023819568613],[5.042920398256922,52.559234102205124],[5.042946081179059,52.55842252092396],[5.043487137358809,52.55761691484784],[5.044006729764032,52.557138440283026],[5.044945318381993,52.55634634008729],[5.04509792266373,52.55615776384779],[5.045624393908448,52.55535154313259],[5.045719948365193,52.555240044931466],[5.04672246444613,52.55427341954345],[5.047120850454392,52.55387996725277],[5.047641847255486,52.553357382667464],[5.048285788135766,52.55266552070668],[5.048977283690835,52.55189683161894],[5.049755647656773,52.550971107791895],[5.05022206122056,52.550409604286884],[5.050845073284798,52.54957920073015],[5.052987284251324,52.54640655309181],[5.053305559912263,52.54595724882273],[5.053551665817065,52.545669502328025],[5.05384169436949,52.545391146313456],[5.05455216417616,52.54485783553999],[5.05475208749272,52.5446766794733],[5.054754929245097,52.54460451315512],[5.05439325995221,52.543419699662216],[5.05401164780832,52.541796702316404],[5.053951371851432,52.54151343136709],[5.053969865530727,52.54141322271919],[5.054013709149811,52.54127910240918],[5.054028507575271,52.541147984132735],[5.053920571704579,52.54044450381718],[5.054188040695243,52.53967551940122],[5.054636685980132,52.53868437949059],[5.054805646542277,52.538402103789345],[5.054864086208023,52.53833014421817],[5.055142265048989,52.538161152215544],[5.055203678794124,52.53810127074746],[5.055308852298421,52.53800604674927],[5.055379829761063,52.53796167795208],[5.055412625052402,52.53795397759767],[5.05546278033907,52.537949992558175],[5.055560635516567,52.537922179668364],[5.055714075092852,52.53788496747783],[5.05578821368716,52.53785765798386],[5.055952979313004,52.537781438922075],[5.056161100558878,52.537637096278694],[5.056548275048516,52.53753988086839],[5.056774125975956,52.53748826814684],[5.056970406907396,52.53744865799621],[5.057167435677155,52.537400052404585],[5.057314227491052,52.53735833050857],[5.057477284895572,52.537295316828406],[5.05757555830051,52.537242510630854],[5.057659557701951,52.53718937624468],[5.057699713770806,52.53714736596204],[5.057803399693977,52.53704682322065],[5.058650630636047,52.53562805109206],[5.06019998359187,52.5330515659824],[5.060501758427596,52.53256820769421],[5.060608184260885,52.53243761727713],[5.060759929169765,52.532283003346734],[5.061002330341539,52.53207583692672],[5.061318614102245,52.531841354545975],[5.061414181506555,52.531745561247895],[5.061535633234279,52.5316071562959],[5.061881282583636,52.531104525481226],[5.06250803177294,52.53017100433867],[5.062684920120758,52.52991338015626],[5.062733438856424,52.52985903071588],[5.062793053888855,52.52983138864504],[5.062880254832509,52.52980887727215],[5.06301055947976,52.5297800252511],[5.063296790074916,52.52968362566352],[5.063961128302911,52.529425929986495],[5.064376679938567,52.52924421983884],[5.064564392225885,52.52914391210315],[5.064709480550475,52.52904600385017],[5.064773775874826,52.528974843395275],[5.065048233395045,52.528470608679946],[5.065149234248723,52.528323158944126],[5.065152018233356,52.528319676717786],[5.065280057447781,52.52815949776375],[5.065399819429045,52.52803034025099],[5.065467323335114,52.52792941669179],[5.06547423099093,52.52786456309847],[5.065462665710466,52.52777746254659],[5.065428912631453,52.527702103116134],[5.065338019609997,52.52756816846258],[5.065227414126846,52.52748530198597],[5.065008184726762,52.52736281392067],[5.064911588468391,52.527317055189066],[5.064921249610242,52.527255009543424],[5.065082834639127,52.52726218586918],[5.065134319079824,52.52724267295921],[5.065188754861421,52.52719731598597],[5.065307992540787,52.52701199890704],[5.065380185454019,52.526932708903914],[5.065466401958368,52.526854023961164],[5.06552971379705,52.526791850428424],[5.065761153924917,52.526628172756716],[5.06579926112367,52.5265794109264],[5.065853811098131,52.52645598283109],[5.065840503304829,52.526354559859534],[5.065788935071454,52.526226630332786],[5.065674052304186,52.5260050089724],[5.065562595361275,52.5257536163532],[5.065542502928303,52.52563701601946],[5.065544392572273,52.52547103413816],[5.065534487962256,52.52496743636881],[5.065584593519424,52.52488415260852],[5.065668691953616,52.52471671364912],[5.065779901122412,52.524525473181704],[5.065847666153136,52.5243574263554],[5.065865725154708,52.524249061943706],[5.065894314944448,52.523988790669875],[5.0659124227359,52.52393687851175],[5.06640265140837,52.52288078775512],[5.066443806551704,52.522855906080615],[5.066619206639198,52.52267044987765],[5.066801861052284,52.52249850208218],[5.066976746586078,52.52238381742708],[5.067173453028815,52.52224280182489],[5.067312889306021,52.52212550644425],[5.067625427092691,52.521980858515114],[5.068014709353914,52.52182490784896],[5.068994307096986,52.52146916764799],[5.069247131930151,52.52136733551131],[5.069451625401748,52.521293457110424],[5.069512152827313,52.52126356545067],[5.069825395085064,52.52101922156631],[5.070017811991838,52.520863859455176],[5.070035697826369,52.52084200330307],[5.070099104982528,52.52076465600552],[5.070170000133458,52.52063733570296],[5.070236101665648,52.52047208946783],[5.07028162914971,52.520223657176665],[5.070376808506466,52.51979222954914],[5.070447697740943,52.519665198433806],[5.070604084970577,52.51949429534866],[5.070856240823471,52.51932084056011],[5.071075412870985,52.519191106192594],[5.071411081739154,52.51899230989744],[5.071570604858942,52.51892869755783],[5.071808834388561,52.51886951370175],[5.072012860722276,52.51882707993581],[5.072188209296909,52.51880507613715],[5.072295211047314,52.51880985460961],[5.072433480948916,52.518854874936686],[5.072791994562205,52.51906759734855],[5.073131821394965,52.519223528549134],[5.073472981014188,52.51932075428958],[5.073669083133393,52.519357790654574],[5.073877327859111,52.519370418573885],[5.07489111951711,52.51914671608883],[5.075183557106928,52.51916742711328],[5.07540216093435,52.5192112494757],[5.07562138413696,52.51923458012917],[5.076252348741525,52.51923819651344],[5.076270383562336,52.51919359465326],[5.076225951573693,52.51916202167958],[5.075821471014643,52.519164042248434],[5.075820462991951,52.51907922608337],[5.075820035856682,52.51904158778296],[5.075851932101087,52.519022860045034],[5.075852295011305,52.51900544263418],[5.075001804740474,52.51830444227999],[5.074393953664796,52.518062711978544],[5.074349521196632,52.51803114008577],[5.074335298409625,52.51769913533708],[5.074341519161752,52.51767157946383],[5.074474923857491,52.517517512263126],[5.074586251262444,52.51733552959968],[5.074583324040586,52.51722850959189],[5.07453205627346,52.51702420278226],[5.074462438211181,52.5168748807002],[5.074380217743957,52.516783948493156],[5.074291235063693,52.516738218226116],[5.074230982862285,52.51669649291237],[5.074205942222736,52.51662480853428],[5.074281669554964,52.51633263906303],[5.074274256368654,52.51620847911268],[5.074260209993345,52.51611210582328],[5.074203494580832,52.51599944280315],[5.074319388442253,52.515883074610805],[5.074473513958825,52.51566054963386],[5.074609373315717,52.51540411292139],[5.074744825288641,52.51520692765353],[5.074859663539194,52.51508559512454],[5.074957185210398,52.515042486846035],[5.075070968829142,52.51499897278172],[5.075472133406414,52.51487420322536],[5.076126187653025,52.514696450745596],[5.076710497390985,52.51451626451156],[5.077300950600819,52.514312225537026],[5.077710155493858,52.51415433305403],[5.077960051186991,52.51406706831749],[5.078486855857728,52.51394515116155],[5.078884112723101,52.513818393478225],[5.07998300088871,52.513396533873774],[5.080115837722253,52.5133455364806],[5.080325483265398,52.51325255451785],[5.080543379517447,52.51313038551301],[5.080637221539472,52.513041034827324],[5.081046456803088,52.51224671145442],[5.081238046340632,52.51189922241002],[5.081351048177599,52.51166865732879],[5.081665042465742,52.51119566176256],[5.081942886497055,52.510556585816325],[5.082146564243787,52.51002404968435],[5.082585030283749,52.5089862913438],[5.082685754087612,52.50876551653694],[5.082913929300378,52.508382180677295],[5.083228372291298,52.50787322881687],[5.083396733784554,52.50765290517853],[5.083426158323713,52.50759203810583],[5.083477712609175,52.50742197551318],[5.08348545537078,52.50726836629098],[5.08353927393286,52.5070053423977],[5.083589818263802,52.506884143231844],[5.08391190553056,52.506394590223316],[5.08440049419708,52.50575576500032],[5.084977438678804,52.50508374950555],[5.085633758078181,52.504246925720864],[5.085712044229679,52.50413323851797],[5.085762548678527,52.50401652745331],[5.085763555016256,52.503970473353284],[5.085756764539052,52.503921591796285],[5.085692750069277,52.50375768835723],[5.08562001775012,52.503625217609304],[5.085550493798802,52.5035270220002],[5.085454026787364,52.50339955519459],[5.085356995723042,52.503286399254314],[5.085013707899386,52.50297602766356],[5.084712792235801,52.50272923365272],[5.084478835642689,52.502552256396896],[5.084412846580249,52.5025105223698],[5.084335924957868,52.50248476781007],[5.084259543579175,52.50244917970055],[5.082538778736775,52.50104049880083],[5.081842396403978,52.50045340627367],[5.081003623698042,52.499763870810746],[5.080926467239001,52.499681384187745],[5.080009534847469,52.49837708641401],[5.078678518196659,52.496518024005006],[5.078025542063041,52.495630223204635],[5.077945703864241,52.49553171113634],[5.077921843680108,52.495456100086166],[5.077938615094406,52.495393233892784],[5.078007542667453,52.49530887995685],[5.078128927945111,52.49519039012483],[5.078208638711652,52.49507769636827],[5.078340304743771,52.494739043003484],[5.078352921854714,52.49464471097292],[5.078350183718283,52.494543872548306],[5.078332046159357,52.49443991495944],[5.078303412740476,52.49435473615247],[5.07823437353352,52.494225086792724],[5.078135112579264,52.49407624969046],[5.077859973186789,52.49374328334455],[5.077704725574414,52.4935718305206],[5.077588807848163,52.493467050610086],[5.077361852600521,52.49328558787864],[5.076912096996277,52.49295412691666],[5.076694343558176,52.49280750948751],[5.07693533182479,52.492627269505654],[5.076967360773278,52.49258663317503],[5.076967726953802,52.49256781363479],[5.076931925262096,52.492554804243774],[5.076875559919226,52.49255437643799],[5.076813042662028,52.4925789300456],[5.076546222188492,52.492768369053174],[5.07653344315616,52.49278490834654],[5.076519741377625,52.492802847255554],[5.076534180125982,52.492843886439225],[5.076569121600613,52.49288189482325],[5.077196467962123,52.49331548925707],[5.077403222172607,52.493490447518006],[5.077533924795309,52.493617446174454],[5.077729004379204,52.49384910088522],[5.077773622202412,52.49391859359538],[5.077787802330409,52.49396272000598],[5.076868083074324,52.49434144013413],[5.076528316302447,52.494136930079144],[5.076237076527887,52.4940016376728],[5.076173331340613,52.493972258891105],[5.075900716929393,52.493771577282175],[5.075727251710321,52.4936079452186],[5.075632197567824,52.493481595388786],[5.075583731424826,52.49324690530306],[5.075499300143762,52.49311163810073],[5.075387560322259,52.493004339736515],[5.075302294192573,52.49295833476544],[5.074867696050994,52.49282911946866],[5.074047572292415,52.49265844606659],[5.073654495081257,52.49257764401375],[5.073532977777239,52.492552610210986],[5.073574897299899,52.492479975257616],[5.07369368383134,52.49227527143982],[5.073833791980269,52.49204758372378],[5.073864263521838,52.49203361959346],[5.073921340572102,52.492030965338415],[5.074668792644024,52.49216325274538],[5.075165011390361,52.49226509978351],[5.075440776752876,52.49233997154628],[5.075777552477169,52.492443654614604],[5.076287161873851,52.49263709473802],[5.076341550856611,52.492591733173604],[5.076402644613552,52.492540784608074],[5.076148008861404,52.49243759548664],[5.075893035845459,52.49234734138239],[5.075648101891612,52.492269738575786],[5.075229274576706,52.492155741195674],[5.073774180957118,52.49185812658562],[5.073728599112545,52.491925976040925],[5.073670475103347,52.492012327939996],[5.073603973794552,52.49211101174132],[5.073417633216227,52.492109954705235],[5.073045173876617,52.49210812344483],[5.072775845253675,52.49209786454697],[5.072512538705933,52.49208059376461],[5.072328438327586,52.49205651435395],[5.07209871011344,52.49201012361806],[5.071884505240189,52.491948330647666],[5.071813736089317,52.491903764603265],[5.071753763022154,52.4918277794226],[5.071729913454249,52.49175244298284],[5.071737001389256,52.49166146534467],[5.071782490587765,52.491445611062176],[5.07178420103528,52.49136725360202],[5.071771035255984,52.491276223011134],[5.071752326309991,52.49119134932549],[5.071624375959256,52.49097025974862],[5.071408980816424,52.49075454815286],[5.071288462334162,52.49065283870159],[5.070088878832144,52.4897663472563],[5.069945523866059,52.48967581411541],[5.069839306420683,52.489632553206434],[5.069701964266432,52.489603262516816],[5.069549150210433,52.4895784167575],[5.069127864245016,52.48955566355285],[5.068828864857676,52.48954839968794],[5.068491332963327,52.48955451177492],[5.068076309741321,52.489588225118375],[5.06753045604068,52.489644329910604],[5.06689947682005,52.48973222273642],[5.066521610695715,52.489813213005036],[5.066089254770561,52.489921860734945],[5.065903567352189,52.489990440610356],[5.065794830152845,52.49004126734495],[5.065692748266227,52.490129462754524],[5.065558831000285,52.49025997523586],[5.065479437656893,52.49035777568281],[5.065266363600891,52.4906790635183],[5.065198356779431,52.490731682649916],[5.065136055037473,52.4907562262103],[5.065059198446898,52.49075882253561],[5.06454120067549,52.490747591801394],[5.06437722250331,52.49073983811238],[5.063714921364913,52.49060968701892],[5.06353042493607,52.490547671402005],[5.063413974666218,52.490489502674514],[5.062713490333447,52.49010842853595],[5.062684921783776,52.490083077826874],[5.062653710272095,52.490043108162425],[5.062382319721279,52.489156825856966],[5.062327450082012,52.48911033836992],[5.062174432113303,52.48905233608843],[5.062117251060776,52.489008086325406],[5.062092858985422,52.4889771297806],[5.062103742439161,52.48896648256502],[5.062131636600395,52.488959261219605],[5.06225101776892,52.488960424066946],[5.062349490655636,52.488927557160046],[5.062348209280931,52.4888837400529],[5.062310196610723,52.488797133094955],[5.062220709703329,52.4887334099774],[5.062073619577939,52.488652121249885],[5.06150327588469,52.48841155578447],[5.060648668117642,52.48806880778036],[5.060605589628655,52.48804509816105],[5.060589431853575,52.488021738550536],[5.060587276246006,52.48800263527466],[5.060700726104093,52.48796530647145],[5.060774311854462,52.48790737929657],[5.060732722098301,52.4877749783129],[5.060543034251183,52.487388556673594],[5.060514874097709,52.48734101663321],[5.060469815389752,52.48730606454954],[5.060416821363251,52.48727510077408],[5.060390098334012,52.48726540255111],[5.060255511679963,52.4871753014578],[5.060162351616899,52.48708912506902],[5.060002360644321,52.486978209813714],[5.059819373807563,52.48682541336655],[5.059717536831792,52.48656786589937],[5.059546563286363,52.48600239395294],[5.05956743142804,52.48589811671927],[5.059568280302866,52.48578355652234],[5.0595118830299,52.485709757010845],[5.059415240109066,52.48540689284533],[5.059348625960841,52.48506932218507],[5.059287814367104,52.48489614730357],[5.059274885617802,52.484777874047026],[5.059289599301058,52.48465545849879],[5.059456710881679,52.48448319384325],[5.059588883653077,52.48434003527974],[5.059631592802684,52.48419663407737],[5.05961159338732,52.48406992100826],[5.059522765089755,52.48395171496831],[5.059296168190982,52.48376965273188],[5.059131351618091,52.483629892121805],[5.059063111635264,52.483526347205924],[5.059001691936865,52.48340400236321],[5.05896214623968,52.48315477972304],[5.058963711914886,52.48294385565095],[5.059026644688347,52.482830287687726],[5.059084054493664,52.48256447012624],[5.059129049943859,52.48207955523727],[5.059129833390764,52.48197395432336],[5.059088999578496,52.481898012734774],[5.059061915900315,52.48179654444744],[5.059127935168409,52.48130101596468],[5.059229474063858,52.480634824575006],[5.0592305036143,52.48062978008485],[5.059337110894414,52.4801076700242],[5.05941494946901,52.47984641310966],[5.059596770091566,52.47954948464598],[5.059806259992253,52.47924617119474],[5.059918120364014,52.479077966536124],[5.059988183484457,52.47893464860416],[5.060025328531474,52.47857608805646],[5.06005428640116,52.4784242282874],[5.060167300696619,52.47807010454966],[5.060287236672386,52.47774351566421],[5.060337008082363,52.47754536319448],[5.060352015886456,52.47738082586209],[5.060346109063254,52.47724599905784],[5.06040258264782,52.477073146645175],[5.060501065241858,52.47684985471447],[5.060531089939678,52.47678832947095],[5.060571111210634,52.47670652824281],[5.060654791765778,52.476618285470146],[5.060974104163874,52.476386895597564],[5.061432620514688,52.476050844838575],[5.061585204085462,52.47594369411475],[5.061821064700163,52.475830317776094],[5.062132670092439,52.47570872104595],[5.062326686405584,52.475624993599],[5.062784612196715,52.47536897983525],[5.063554362477546,52.47495766155915],[5.063616629858141,52.4749322738732],[5.063797190374128,52.47482822177818],[5.063841987549021,52.47484099820723],[5.064028668708677,52.47485193326939],[5.064314725673864,52.47478004887304],[5.064565305784717,52.474679001045594],[5.064786297432698,52.47455606965823],[5.064959768431824,52.47442210791754],[5.065409252574017,52.473961912429516],[5.065547441612054,52.4737733632927],[5.065631823059152,52.47362099354203],[5.065644837316659,52.47346844106907],[5.065771612559375,52.473294760082545],[5.065903813743136,52.47316010990378],[5.065966960346701,52.473025279775925],[5.066034123249342,52.47287257638884],[5.066073623193769,52.47284852690356],[5.066205485663598,52.4727393512465],[5.066288817530988,52.47268887141269],[5.066357982089431,52.47267208214638],[5.066461599748407,52.47268499690825],[5.066606446979075,52.47268960359084],[5.066737862850565,52.47267310905993],[5.06695243924429,52.47260628371148],[5.067216002594407,52.47247611008056],[5.067458419956371,52.4723756560352],[5.067652334058016,52.4723042782064],[5.067721921616101,52.472220207544495],[5.067722515923524,52.47213792108247],[5.067640338335266,52.47205344071034],[5.067434463825692,52.47187144932675],[5.067345383946445,52.47175718284682],[5.067359810412074,52.47166875301528],[5.067485223471713,52.47152978494729],[5.06778378619061,52.47132809336933],[5.067908199245693,52.47129472634295],[5.068066819597473,52.47133307031625],[5.068267130529228,52.47132939397527],[5.068426546573563,52.47125819892423],[5.069012881298106,52.47088202584369],[5.069089369059057,52.47079797197331],[5.069089976953948,52.47071343866074],[5.069049092889135,52.47064170631487],[5.068897770312475,52.47054861198375],[5.068767492556492,52.4704384537838],[5.068636767155981,52.470358053442425],[5.068471219447351,52.47032362630419],[5.068319291741726,52.47031479762546],[5.068250461831128,52.47029354510607],[5.068126736839051,52.47020052398503],[5.067982754107923,52.47004398251047],[5.06796255229415,52.46997652324005],[5.067962979913332,52.46991726750286],[5.068012105999042,52.46983314515754],[5.06855002447007,52.46896111829134],[5.068550874132304,52.468843158602766],[5.068475546487287,52.46876713095852],[5.068365547938907,52.46869496184947],[5.068269261549863,52.46864412075928],[5.068117530329336,52.468605795549784],[5.067951941519136,52.468580067394086],[5.067779341271295,52.46856668774473],[5.067593027439932,52.46854512197736],[5.067399920674472,52.46850668075337],[5.066472891394922,52.46827416378281],[5.065997030300593,52.468163335296616],[5.065576402589281,52.4680779408548],[5.065148695892187,52.46801751528528],[5.064762199168322,52.46798276229825],[5.064023898733666,52.46788385926587],[5.063520227906174,52.4678063720382],[5.063071743325816,52.467758809799136],[5.062512623731825,52.46771515276845],[5.062188106735412,52.46770153054228],[5.06190497429181,52.46770505844005],[5.061196776734218,52.46773681782308],[5.059863278058327,52.46781318906404],[5.058778411778952,52.46787787899221],[5.057839002938266,52.46792583023905],[5.057389411482596,52.46799619289155],[5.056867329419364,52.468104556710855],[5.055463434833162,52.46833683752343],[5.054481590498463,52.468490246005985],[5.053451290366512,52.46866457390746],[5.053184878182263,52.468714380144355],[5.052901256914835,52.46878941537677],[5.052555111353841,52.46892240794781],[5.052187719804388,52.46906601389205],[5.05162684213466,52.469254289079494],[5.051446908900569,52.46930011734757],[5.051239482992985,52.46933323291819],[5.051066800033595,52.46933274366303],[5.05088741038636,52.46930695254992],[5.050611863388098,52.469226130500566],[5.049792378161625,52.46891991759075],[5.049744335891507,52.468856582068234],[5.049744592982003,52.46882287986468],[5.049710375787986,52.468788800061304],[5.049438467785984,52.468682702125754],[5.048832466941313,52.46845741111448],[5.048680631602001,52.46843592205125],[5.048549284688766,52.46844396833538],[5.048425212583111,52.46843097945395],[5.047392210401737,52.46802723706938],[5.045953030502511,52.467491441456524],[5.045005634191102,52.467123435611214],[5.044634416002007,52.466979282804644],[5.043980033189096,52.46674119248896],[5.043525861001443,52.46654159514033],[5.042940773677434,52.466294990075156],[5.042458684820375,52.466107937637545],[5.04178692592831,52.465920335469555],[5.041573060724115,52.46589444327258],[5.041424187342542,52.46549743590749],[5.040568738672561,52.46563255383858],[5.040400910554063,52.46565902828076],[5.040332663773487,52.46553637096784],[5.039980159404835,52.46559881969653],[5.040020694181895,52.465708467633206],[5.039806371677017,52.465741822529246],[5.039683942134598,52.465492349443295],[5.039305403425546,52.46532665139134],[5.039093931464071,52.46499714462896],[5.038762099054615,52.46503408737576],[5.038860515452517,52.46570506572654],[5.038825622073689,52.46575579540979],[5.038783976642693,52.46575989178634],[5.038645953812929,52.46576791556625],[5.038678683992209,52.466050271909786],[5.038664002754646,52.46613336096671],[5.038216034819039,52.46620113204829],[5.038219706113255,52.46623007078603],[5.038227921060219,52.46629637836792],[5.037952704439533,52.46638347637792],[5.037737094693129,52.46643368242287],[5.037504023077496,52.46651106949004],[5.036950247436218,52.46666980759379],[5.036742194650566,52.46675176167537],[5.036410395509694,52.46681173191295],[5.035873419510196,52.46691461358472],[5.035268671088126,52.467086673126055],[5.035182781867961,52.467044294011686],[5.03504693769963,52.46702316655581],[5.034816762578985,52.46702635378859],[5.034692720936251,52.466996501815274],[5.034582476619542,52.46696667635398],[5.034520305725139,52.46696228626219],[5.03445120461394,52.46699156501693],[5.034395668635677,52.46700825310944],[5.034292154941271,52.46699951670038],[5.034236790588595,52.467007780384904],[5.034181298326583,52.46704553241562],[5.034131346550105,52.46705247572633],[5.034091412026635,52.46705790389639],[5.033973699695383,52.46709996519509],[5.033904075915345,52.467167162861216],[5.033861790042585,52.46726393158514],[5.033736840349682,52.467348093509045],[5.033605334911353,52.4673898338238],[5.033522692465339,52.46737273682048],[5.033398672303511,52.46732601769395],[5.033350475521253,52.4673006002737],[5.033220285315013,52.46717775854199],[5.033204794455667,52.467115923522435],[5.033183962823636,52.467033004155056],[5.033180052271162,52.467017265326405],[5.033181234422202,52.46686954197653],[5.033209753721615,52.4667685190746],[5.033256280935931,52.46668635886427],[5.033314816226569,52.46658317774432],[5.033386556480635,52.466496608865874],[5.033426499939003,52.46644842311571],[5.033489728980948,52.46630508824719],[5.033511425781843,52.466178771275175],[5.033457176213485,52.466047727774246],[5.033287215758739,52.46570963276966],[5.033232269507907,52.465679980027296],[5.033163334226322,52.46565870765113],[5.033115560588231,52.46559537328086],[5.033095413998218,52.46552790805867],[5.033102683115215,52.46545181494001],[5.033069496359456,52.46530398083135],[5.033064048871068,52.4651225364403],[5.033085780073032,52.46499200000096],[5.033169546277988,52.46488243316456],[5.033308337514011,52.464807012076335],[5.033467395947623,52.46476957927442],[5.033661233367069,52.4647108912332],[5.033862052375643,52.46463987040672],[5.033973274684729,52.46454752119545],[5.034098820154711,52.46439798594639],[5.034108885050841,52.46437586181271],[5.034140996613818,52.46430529796661],[5.034209244632692,52.46420926334921],[5.034289739305916,52.464175404467085],[5.034401364619596,52.46417360655456],[5.034542150124759,52.464222009354934],[5.034666464947624,52.46423080829782],[5.034977084709544,52.464244365807474],[5.035253365843824,52.46424097270326],[5.035592131140272,52.46419985419957],[5.035951520271113,52.46416721616799],[5.036185844424772,52.464192436731246],[5.036585936171331,52.46421279947729],[5.036914170688648,52.46416901183922],[5.037193767820254,52.464101640456434],[5.037375203990291,52.4640936547679],[5.037730356970576,52.46408399777081],[5.038284270831292,52.463904199684556],[5.038443437425506,52.463836974279936],[5.03865201766819,52.46368592222477],[5.038728877188908,52.46355948955478],[5.038750363833606,52.46345815611605],[5.038750485456322,52.46344271331338],[5.03875062925455,52.463424454803196],[5.038365489735041,52.46322504023159],[5.037950140862515,52.46335890927657],[5.037947301423959,52.463359971321715],[5.037693940502476,52.46345504747279],[5.037638635833446,52.463442246300254],[5.037115094064387,52.463301676684836],[5.036839372090205,52.46322054146503],[5.036756569331521,52.463224511035534],[5.036681651990833,52.463249282875374],[5.036404895387944,52.463156066227064],[5.036668718033888,52.46296698339397],[5.036900129146765,52.46274775644129],[5.037182626167876,52.46246520313743],[5.037225508059044,52.462422353422994],[5.037460896879099,52.46216437774808],[5.037559923207973,52.46205626381086],[5.037736683311461,52.46185625104294],[5.037831568676096,52.4617489560126],[5.03797931626988,52.4615547576733],[5.0382153412394,52.461244829381506],[5.038332559834831,52.46110390114545],[5.038292256898432,52.461083280361194],[5.038280008714457,52.46103352924008],[5.038243856486941,52.46101124179189],[5.038191473668869,52.461006304510406],[5.038155265262462,52.46102080348048],[5.038073855065049,52.461112125479445],[5.036788114869089,52.462552223135674],[5.036654775267243,52.462666987285814],[5.036614316299668,52.462694388209385],[5.036278200414927,52.46292397744635],[5.036099590295414,52.46303663515223],[5.03598290775764,52.46311015763698],[5.035602466883434,52.46336235915218],[5.035299367869465,52.46351621713398],[5.035161854600026,52.46357731833225],[5.035066988454595,52.46359473570758],[5.035028995083846,52.46360164120267],[5.03485968238135,52.4636134969646],[5.034730998333604,52.46360552646095],[5.034598055341087,52.46358323151443],[5.034590136196218,52.463586899121324],[5.034468815517465,52.46364406621325],[5.034331055028992,52.463679330344945],[5.034371195552573,52.46358900890447],[5.034427186080783,52.4635740136132],[5.034467557007315,52.46355700448318],[5.034523175471405,52.46353089773456],[5.034602960179708,52.46349362128942],[5.034904892976202,52.46324517033328],[5.035009631080918,52.463233941515895],[5.035114198132947,52.46323902345082],[5.035239090150976,52.463232087359465],[5.035331954427566,52.46320540232327],[5.03570486010034,52.46288914273539],[5.035922150046865,52.4626547085754],[5.036311881849607,52.46224356047936],[5.03670102713029,52.461819722636555],[5.036715068494667,52.46180413492773],[5.036935760057514,52.46155926818753],[5.037038738809432,52.46144441405991],[5.037148322027531,52.46133885889807],[5.037268009741799,52.46125083744518],[5.037426265686783,52.46108933214304],[5.037524626835085,52.46100011600302],[5.037562550335307,52.4608803160986],[5.037436558433017,52.46066952991971],[5.037399444344163,52.46063127672769],[5.037288658514666,52.46039615311973],[5.037284798815517,52.460361592994076],[5.037280431522619,52.46035735779371],[5.037559708779547,52.46022102373383],[5.037656389049323,52.46021393002817],[5.037801560205291,52.460184842981704],[5.037838952895595,52.46016712200375],[5.038735268043014,52.459742360866734],[5.038765667421615,52.45967616668815],[5.038986158753251,52.45929315533086],[5.039115765497972,52.45878843267253],[5.039195629918735,52.458350312031044],[5.039275051947449,52.45796844170593],[5.039306903607081,52.45786360638486],[5.039362432419612,52.45787439337215],[5.039417742322385,52.45791490935946],[5.039428383320845,52.45792771985717],[5.039497248436339,52.45801069643951],[5.039617490004915,52.45815554146515],[5.039668895043421,52.45824916185814],[5.039675372754095,52.45828067295091],[5.039486477695423,52.45861186305979],[5.03957497200307,52.458641891715516],[5.039598711499326,52.458693358866],[5.039572219064508,52.458934821342794],[5.039538415660159,52.459199849989396],[5.039443051994723,52.45954502183367],[5.039348970960576,52.45972703339653],[5.03943729457648,52.45974947352073],[5.039400668871211,52.459818182277246],[5.039292170958928,52.45978836624125],[5.039236000216285,52.45988453903891],[5.03875324361476,52.46052404323692],[5.03981590095736,52.46083778396327],[5.039941395666125,52.460871578600255],[5.040125416194736,52.46053593114284],[5.040288204491975,52.46023925565129],[5.040334219229886,52.46014671056107],[5.040392198734667,52.4601418210871],[5.04054431832331,52.460121197429835],[5.040744448614726,52.46013442944507],[5.040979405114744,52.46013511563497],[5.041137960239555,52.46014399969084],[5.041406867058948,52.46021218922458],[5.041548432518765,52.460219063920825],[5.041631362288668,52.46019824167523],[5.041700518934062,52.46017288011828],[5.041430443236911,52.45984321447905],[5.041269695936677,52.459644178300714],[5.041262859282212,52.459636013911464],[5.0412146852851,52.459623230696316],[5.041159472151757,52.459597514622104],[5.040897094523255,52.45934172921517],[5.040751317359067,52.459199464941435],[5.040638839595891,52.459089884578255],[5.040652053356568,52.459046673680625],[5.040761544146642,52.45868608546441],[5.040854033908616,52.4583824702922],[5.041377514031421,52.458232057611255],[5.041259507846745,52.458035945571446],[5.041801232523182,52.45790355918934],[5.042292330264208,52.45777635895777],[5.042354336726111,52.457814448454506],[5.042430131758265,52.45782310179004],[5.042630644500009,52.4577857637384],[5.043460640545729,52.4575940988325],[5.04352927861324,52.45766591805219],[5.043586753351826,52.457753989287134],[5.04365879434668,52.45786036973078],[5.0437293695361,52.45795016938683],[5.043894392494408,52.45816100803175],[5.043973383801411,52.45826206534069],[5.044103699806707,52.45838489855198],[5.044124509124617,52.45839956429698],[5.04441556148665,52.45860374392005],[5.044673691058037,52.45878732640436],[5.044704257189768,52.458818869937154],[5.044817380002709,52.458935474696816],[5.044946659811225,52.45910324041569],[5.045066455722108,52.45925874577899],[5.045090961088028,52.459290426306254],[5.045167257130081,52.459412822047604],[5.04533644273021,52.45968348849673],[5.045490025279221,52.459918172434676],[5.045519843434951,52.459957012314504],[5.045705314638529,52.46020161832133],[5.045736039945793,52.46024383465123],[5.045701061928291,52.460306923917656],[5.045451664151087,52.46042023756348],[5.045375221745079,52.460466354834665],[5.045381554195944,52.460537997809446],[5.045731644555963,52.46081339913083],[5.045806378136096,52.46091727752957],[5.045813743776915,52.460927383569114],[5.045895824372916,52.46101636925633],[5.045985103922626,52.46109667842677],[5.046074118898497,52.461181192900874],[5.046246111207114,52.46126622360924],[5.046535535531408,52.46135973409919],[5.046631558118227,52.46142770437829],[5.046961543679267,52.46162693030912],[5.047133347639423,52.461739210963785],[5.04761472369538,52.46198521022987],[5.047725101224024,52.46201080887167],[5.047876874348475,52.462036515973566],[5.048000092224257,52.462158764528276],[5.048086850529894,52.462237086731804],[5.04816367887476,52.46226314445036],[5.048218022416258,52.462281564116935],[5.048445752084969,52.46232574020935],[5.048540651594905,52.46236308272909],[5.048716938657569,52.46251918863529],[5.048912013346776,52.462625347918284],[5.049073872638862,52.46268478253348],[5.049257879097798,52.46276535922938],[5.049393401670436,52.46277978554154],[5.049899327545258,52.46270342917885],[5.049946939192182,52.462671263647586],[5.050029874411115,52.46267992880427],[5.050962842898186,52.46258961399566],[5.051640077325423,52.462507272892346],[5.052393431631229,52.46242486782614],[5.052905012580335,52.462358904116876],[5.053114952461114,52.46232410308844],[5.053454713903421,52.46226748424809],[5.053793577283161,52.462179963919226],[5.054036156680143,52.462083476806285],[5.054264853909769,52.461970362968074],[5.054479874403977,52.46184009010387],[5.054653541342134,52.46170576528801],[5.054848221789852,52.46152908907352],[5.054952876563203,52.46136900825306],[5.055044219226657,52.46117519695564],[5.05506575921743,52.46106122615961],[5.055046023899282,52.46093478829071],[5.054984927424647,52.46077424756663],[5.054827888340675,52.46056287717713],[5.054458074847051,52.46015263191986],[5.053586425122567,52.45925340654213],[5.053505311711615,52.4592790163945],[5.053411086413555,52.45930514650949],[5.053151701601654,52.45903844374922],[5.053203712633013,52.459001514248015],[5.053257098839197,52.458963467859185],[5.052621798383942,52.45825083494633],[5.052310515536498,52.45800841626297],[5.052234511544681,52.45805875701661],[5.052210954547407,52.4580421184794],[5.051919417901164,52.457805370799186],[5.052005747279964,52.457759277250766],[5.051919108045841,52.45766354045568],[5.051778479035194,52.45747440588922],[5.051586458912431,52.45730085019176],[5.051248736797669,52.45700246702036],[5.051167231187451,52.45701964122384],[5.050983306253887,52.45684078328417],[5.050921097946317,52.45676786139206],[5.05091840378533,52.45672938018023],[5.050921027391646,52.456716740449096],[5.050950246266942,52.4566527866639],[5.050996493399338,52.456586638775406],[5.051052331839117,52.45649833158167],[5.05106914585501,52.456464110907866],[5.05110604011466,52.45638866678346],[5.05110637286103,52.456344853795514],[5.051041886436638,52.456269957244594],[5.050987433750135,52.45623902976162],[5.050943003875662,52.45621379278286],[5.050848220159465,52.45613403606182],[5.050764079170853,52.456013868522376],[5.050688887260242,52.4559560850051],[5.050631749667553,52.45594187362788],[5.050451937898052,52.45597872406778],[5.050346632871007,52.45595202067762],[5.050207977756027,52.45589629983158],[5.050063360383407,52.45580966293372],[5.05001311701636,52.45573677366076],[5.049961503709927,52.45566220340618],[5.049897211034263,52.455623265654125],[5.049818537068353,52.45559791376031],[5.049594058749943,52.455525501796856],[5.04947731608458,52.45546169712107],[5.049471325342367,52.45545477048798],[5.049381413753363,52.45534768115497],[5.049292317160108,52.45527552749299],[5.049151245347126,52.45529646797036],[5.049044615547468,52.4552925069397],[5.04896676354043,52.455282173095455],[5.048821789758251,52.455242728680666],[5.0488024750981,52.45524210555491],[5.048716763660159,52.45523877193098],[5.048628667200669,52.45521605084163],[5.048464970819769,52.4551004330985],[5.048404290462084,52.45506880447499],[5.048467747614866,52.45434746299438],[5.048478283015315,52.4542607019122],[5.04849912840226,52.45424194886613],[5.048228941862293,52.453953291697985],[5.048155922538734,52.45385226319851],[5.048136542096208,52.45383169565983],[5.048248102199814,52.45367164921421],[5.048290197223142,52.45357880664186],[5.048297708073559,52.45349878291871],[5.0482642003699,52.45337202030188],[5.048127796574116,52.453143850734314],[5.048046177992187,52.45299589099568],[5.048012243677995,52.45292416910138],[5.048034529088324,52.452857583485205],[5.048040474680901,52.452839995813456],[5.048152297401124,52.45267572696188],[5.048381888666532,52.45243990370586],[5.048507657470417,52.45222512246818],[5.048550603079023,52.45205027772288],[5.048609541908101,52.451556970316325],[5.048618022934596,52.45135000200314],[5.048625695396411,52.45124891561708],[5.048598530079033,52.4511940674198],[5.048502949088382,52.45103763779688],[5.048222891376049,52.45066133139011],[5.048072843632143,52.45041627016819],[5.047998150744642,52.45026608323596],[5.047978129250815,52.45017755224529],[5.047985609214199,52.45010174712129],[5.048042037554677,52.44993731980183],[5.04807754751767,52.44980233045475],[5.048085250289359,52.44969702902338],[5.048038139252111,52.44954495271319],[5.0478818603301,52.44921533794307],[5.047780177496566,52.44895777825212],[5.047691476742205,52.448835072461065],[5.0475887608938,52.44871260147433],[5.047547819477092,52.448657437625435],[5.047548110459447,52.448619516646296],[5.047590152871555,52.448531175911434],[5.047780462980652,52.44832051484973],[5.047935496773581,52.44812463402942],[5.048040452448912,52.447954729208135],[5.048102202785022,52.447815043398386],[5.048163627810461,52.447717203279446],[5.048249823039659,52.447656217045974],[5.048357310823563,52.44760428897929],[5.048750365070336,52.447537717830635],[5.048886583852485,52.447487838656095],[5.049019246488899,52.44742052333551],[5.049127074770705,52.44732478152248],[5.049128243439291,52.44732236991584],[5.049203198542108,52.44716799426923],[5.049351750697054,52.446885879675705],[5.049438859199663,52.44670496697787],[5.049454243218984,52.44655671807502],[5.04942457153714,52.44622915536844],[5.049447104410076,52.446077555608994],[5.049487452853178,52.44594033085506],[5.049567470216939,52.44575294750796],[5.049730088285262,52.44549360629147],[5.049838089823101,52.445376240385336],[5.05001773108921,52.44523491346166],[5.050153967027343,52.44515133066401],[5.05025087184227,52.44507071595238],[5.050304940552308,52.44500121651413],[5.050308935340056,52.4449596615983],[5.050280840651085,52.444907338352174],[5.050019030447378,52.4445813635562],[5.049689584574149,52.444235529188184],[5.048984956271099,52.44348614962065],[5.048850356658838,52.443356013945255],[5.048894529178074,52.44317077103186],[5.048787430029807,52.44317046537529],[5.048743808679955,52.44328605670499],[5.048633389042197,52.44327141535667],[5.048669418711608,52.443187539047656],[5.048230408743656,52.44271725311965],[5.048103211428505,52.44255314700102],[5.048007990725191,52.44238267740504],[5.047951985560932,52.44225359864258],[5.047934982310216,52.4421324991248],[5.0479415790426,52.442112859639614],[5.047956872176556,52.442067122864735],[5.048061047084682,52.441995520897414],[5.048104102933822,52.44195632373383],[5.04811869138193,52.44191058492143],[5.048034124977288,52.44153577897014],[5.0480255774313,52.441497734683246],[5.048036638194755,52.44143233191256],[5.048101361925673,52.44138251868002],[5.048173024769225,52.44135857421352],[5.048276335726739,52.441370939821205],[5.048347713588593,52.44138210141888],[5.048415496149823,52.44138454201158],[5.048497947288374,52.44135837770666],[5.048583974920923,52.441288970302594],[5.048659744466941,52.441206053187216],[5.048677839055303,52.44115386139866],[5.048682000356248,52.441090682144775],[5.048653890802832,52.44100971614346],[5.048608446512086,52.44091352522664],[5.04854174523416,52.44074117008112],[5.048525789836731,52.4406163788414],[5.048525060940606,52.44060996057974],[5.048534092932388,52.44035918017827],[5.04854557560231,52.440240405354054],[5.048631639675463,52.440194593803525],[5.048714274343105,52.44014680952778],[5.048778798907265,52.440092498899304],[5.048797235902808,52.44002486932206],[5.048755001958184,52.439928976102564],[5.048705645996463,52.43986114129637],[5.048684699374219,52.439806322411116],[5.048839370301749,52.439654254075094],[5.048868136578278,52.43961726361037],[5.049140563846267,52.43948041329558],[5.049416323022506,52.43935903035849],[5.049960187237704,52.439182790575536],[5.050131814579846,52.43915716008621],[5.050173868266025,52.439155312282644],[5.050231789603056,52.439152952342106],[5.050385275734517,52.439155631794065],[5.050513602996589,52.43917116812588],[5.05067752964971,52.43921965381427],[5.050827074897954,52.43925715438397],[5.050973413352288,52.43926206416265],[5.051130439790813,52.43925156082805],[5.051284390369644,52.43922137491955],[5.051918811007003,52.43910325416894],[5.052329739141642,52.43903222528802],[5.052504794909364,52.43903721608879],[5.052632846075809,52.43909206698677],[5.05270380027006,52.439111662245544],[5.052728923301377,52.43911845308655],[5.052836015763854,52.43911678871542],[5.052961398017512,52.43906687516242],[5.053068911808903,52.4390081923372],[5.053168872922814,52.43900847403226],[5.053431222668665,52.43901792183769],[5.053613275114537,52.43900972535738],[5.053781206978798,52.43898408278307],[5.053941875973114,52.43897807253257],[5.054127294092453,52.439011170627026],[5.054241054425642,52.43907047608088],[5.054337296476104,52.43910557472389],[5.054537045806045,52.43912803525658],[5.054893866702555,52.43913128375955],[5.055011724633488,52.439135828304806],[5.055126041161,52.439120978563146],[5.05516369623591,52.439094968141994],[5.055271682364092,52.438973093501055],[5.055365064392489,52.43889892669874],[5.055504856744028,52.43882742236257],[5.055594194745598,52.43880379877984],[5.055676245696375,52.43880178228396],[5.055822384809715,52.43883280051213],[5.055918800923677,52.43884374983087],[5.056158138160739,52.438827000614715],[5.056275785732825,52.438827329075984],[5.056421975036942,52.438851892776555],[5.056767313008911,52.438979239012134],[5.056948954704831,52.43902580701227],[5.057396549231103,52.4390924919548],[5.057489114411248,52.439127574208825],[5.057609946263013,52.43919335630178],[5.057663378207431,52.439208668553604],[5.057713471510964,52.43920880778661],[5.057752674140046,52.439189262862044],[5.05778878811813,52.4391545348415],[5.057796244970403,52.439108774116924],[5.057821472822184,52.43908497250327],[5.057907474741422,52.43901526976402],[5.058015775665694,52.43888244942631],[5.058080755788576,52.43876466795179],[5.058134671629056,52.438714821931704],[5.058192106572745,52.43868436720612],[5.058327805156192,52.43866733672724],[5.058442063535964,52.43866119162097],[5.058595872641746,52.43861780397225],[5.058628179827608,52.438600475735115],[5.058639229436219,52.43856567798292],[5.058596535496192,52.43852848799215],[5.058529482932522,52.438430004879066],[5.058530204296901,52.43833282409232],[5.058545037247877,52.438254511248594],[5.0585990533746,52.4381892139735],[5.05872086468526,52.438123835813606],[5.058889000627946,52.43806981212109],[5.059057158273849,52.43804415731012],[5.059185876327692,52.43800968964246],[5.059282312209882,52.43798805208314],[5.059580596943773,52.437951804226415],[5.060134270241694,52.43790305693989],[5.060284585630743,52.43786639988777],[5.060434813174528,52.43781231922594],[5.060678171076209,52.43774530845239],[5.061175151685046,52.4376267469809],[5.061393143651693,52.43760319326288],[5.061573353577267,52.43759497950058],[5.06193075190997,52.43755242697215],[5.06221988416292,52.43754227134578],[5.062459118421041,52.43753646490214],[5.062901807559528,52.43751801566184],[5.063248127762697,52.437512220105965],[5.063351410732203,52.43752795271365],[5.063430013471511,52.43752592143363],[5.063474672776014,52.437513960593],[5.063499905718347,52.437487913604016],[5.063546893816812,52.437411646310295],[5.063600756351624,52.43736601189915],[5.063672427777977,52.43733784115385],[5.063833138685585,52.43732507968558],[5.064179114232335,52.43730159486009],[5.064402700214647,52.43729939078266],[5.064573576204487,52.43731053309157],[5.064842864701766,52.43734327733314],[5.064910895646701,52.43740582120009],[5.06506772422899,52.437451462683775],[5.065171513683054,52.43752420281678],[5.065250313078677,52.437621319205675],[5.065262386343175,52.437699425536096],[5.065198168601822,52.43774615780632],[5.065127264083817,52.43782825297914],[5.065126781956867,52.437894536302046],[5.065177642337471,52.43794550778302],[5.065285938136617,52.438000571742066],[5.065310865760563,52.43807872195254],[5.065271984609555,52.43814910625751],[5.065271757955883,52.43818028059172],[5.065316245169659,52.43822337063805],[5.065309416183983,52.43827812283374],[5.065353659513079,52.43835660498583],[5.065553954124355,52.43849196020928],[5.065660395023658,52.438581559549576],[5.065827689196746,52.438673579631626],[5.06605897072028,52.4387528443036],[5.066312082475297,52.43879931110595],[5.066629497846273,52.43885268469813],[5.066889943932696,52.43887080823974],[5.067196760088702,52.438895508508104],[5.067521596512119,52.43890509016777],[5.067708888498042,52.438903627688916],[5.068166192649238,52.438867787564725],[5.068316266997517,52.43883083927927],[5.068570667580894,52.4387006374305],[5.068731899115178,52.438615977902785],[5.068864895201449,52.438494159016024],[5.06896921655551,52.43836580009825],[5.069134124048817,52.43828114629331],[5.069260186660093,52.438249499724435],[5.069323641243822,52.43823360023219],[5.069661186455605,52.43819296369168],[5.069986058729225,52.43819832805739],[5.070332274265537,52.43820796371834],[5.070514178273879,52.4382193938527],[5.070656649368658,52.43825039655731],[5.070760193053317,52.4382635889175],[5.070867409185481,52.43824421758961],[5.07099280898823,52.43818781493682],[5.071114756435708,52.43810079152056],[5.071361929716156,52.437981530061656],[5.071537498054993,52.437881725024184],[5.071787237313129,52.437660792114976],[5.071962807767969,52.43756099543782],[5.072063217536936,52.43749778277379],[5.072203376223624,52.43736952524939],[5.072289502195162,52.43731076818944],[5.072435967299904,52.43726313693871],[5.072656078396681,52.43724550618139],[5.072671867605678,52.43724410198391],[5.072896412921359,52.43726885322084],[5.072996054070273,52.437312642917924],[5.073095569811747,52.437374139372636],[5.07324145358894,52.437442211573135],[5.073391265914936,52.43747518971252],[5.073537520508044,52.4374910244778],[5.073728472931919,52.43748928177004],[5.074014221182121,52.437470375938844],[5.074407037102957,52.4374211450279],[5.074650237449411,52.437373758148254],[5.074668576123671,52.437369715384825],[5.075014782368663,52.43729186111206],[5.0751684208682,52.43727260903138],[5.075321853289846,52.43727946489801],[5.075496812704635,52.437299591489484],[5.075689365154632,52.437298130240144],[5.075966129073116,52.43728340584198],[5.076195016650425,52.43724693487987],[5.076395269978804,52.43719522559823],[5.076584842279042,52.43713028355846],[5.076727681010346,52.43710874439954],[5.076813603051392,52.43707835886145],[5.076957103773311,52.4369958769206],[5.077326446204502,52.4367525024204],[5.077424976397238,52.436693214135516],[5.077569864000715,52.43664191451167],[5.077695113282684,52.43660516992794],[5.077825574351835,52.436579106976346],[5.078061244193477,52.43655809782848],[5.078425523731818,52.436543594972484],[5.079332147956684,52.436519836997874],[5.080047916871798,52.43651719898603],[5.080536790603888,52.436529421254214],[5.080725993823151,52.43654732111073],[5.080993431625357,52.436583117352036],[5.081203668414757,52.43661848405074],[5.081424726078475,52.4366474297551],[5.081642406793758,52.43666989174826],[5.082272133260794,52.43671505128632],[5.083031964209835,52.43678693224455],[5.083648902952577,52.43685395328302],[5.084721207831,52.43692859402683],[5.085530882165423,52.43700480483571],[5.085851983460963,52.437023035646064],[5.08645653621207,52.43708804230314],[5.086631393754713,52.437088485748355],[5.086785040308735,52.437066969963524],[5.086924549923459,52.4370257571267],[5.087032138580462,52.43695188543092],[5.087097078361452,52.43686273209341],[5.087118982547945,52.43678414334669],[5.087102026141366,52.43667512882133],[5.087099221542545,52.43654649086351],[5.087266968359752,52.436442714329296],[5.087299106826098,52.43637848289885],[5.087292275686386,52.43633577770024],[5.087240057007388,52.43627778138129],[5.087128479275989,52.43619605700492],[5.087073525071551,52.43616810788003],[5.0870205819595,52.43604523966216],[5.086956995516479,52.435933859245324],[5.086748138493794,52.4356628621145],[5.086698940546466,52.43556668801322],[5.086681679173399,52.43546946242588],[5.086692798463353,52.43542146141399],[5.086768073113374,52.43536716997671],[5.087000733039178,52.43527816027735],[5.087094000041042,52.43521520530493],[5.087141083267513,52.43511506173279],[5.087162685700656,52.4350800022452],[5.087187606924358,52.43506145220278],[5.0872236542696,52.43503438319621],[5.087491757576873,52.4349647430957],[5.087772094373832,52.43489686697728],[5.088042323743383,52.43486271365302],[5.088359841451076,52.4348286708382],[5.088617987775366,52.43482819785559],[5.088846475323775,52.43484328792214],[5.088942285727263,52.43491852969573],[5.089347381334577,52.435307089147415],[5.089824057371938,52.43581342815461],[5.090327280963877,52.436355844551315],[5.091302033135363,52.43738057219316],[5.091530275249418,52.43767899707092],[5.091739125816679,52.43794354243823],[5.09201487213643,52.43834354451504],[5.092407192279722,52.43893040625365],[5.09263671126391,52.43930846840301],[5.092833878999035,52.439720279560255],[5.09300259784859,52.44011564545188],[5.093071335200203,52.44030406702776],[5.09325834994777,52.44084399667854],[5.093387606960055,52.441269820626864],[5.093477692785191,52.4416791802481],[5.093538660993698,52.44217683349259],[5.093647257798086,52.44302919763503],[5.093793593743948,52.44411076197211],[5.093889050525625,52.44479180064535],[5.094010576315991,52.44584821077419],[5.094221581347057,52.44741326218848],[5.094399399638148,52.44859855590723],[5.094399082072472,52.44864656709536],[5.094363196288383,52.44867265898241],[5.09419171777379,52.448685257324854],[5.093934584156199,52.44871074105029],[5.093798330461894,52.44877612757153],[5.093733749414391,52.44884562066213],[5.093399750657273,52.44964777107016],[5.09316838654048,52.45008589306991],[5.093031324369723,52.45030377876547],[5.093004560415388,52.450353431045144],[5.092951730883641,52.450451876318596],[5.092857140258289,52.45071339978119],[5.092812837863836,52.45094471800334],[5.09260937647004,52.451472223726945],[5.092608679193269,52.45157699159009],[5.092636600750446,52.451662153385605],[5.092750321889233,52.45174107345233],[5.092994534391569,52.451861889652605],[5.093113430355582,52.45192088890402],[5.093355169463548,52.45206978314962],[5.093774061569562,52.45243733641329],[5.094406245768853,52.45294528956802],[5.094569354616993,52.45313330637065],[5.094596883729596,52.45328166563784],[5.094636248422923,52.45382746348164],[5.094656207655373,52.4540435020873],[5.094684043272152,52.45414383306902],[5.094790520108405,52.454240144656865],[5.095444557311499,52.45471753550531],[5.096496489350594,52.45547927775343],[5.097317286906792,52.45608569611352],[5.098177297981477,52.45674696300915],[5.09868258250022,52.45717004377675],[5.098756649791701,52.45723173677346],[5.09877663735173,52.45726885683317],[5.09878645912622,52.45734948199844],[5.098789502449705,52.45737644996176],[5.098812863515016,52.45742397759996],[5.098886220399842,52.45752751166839],[5.098957358952546,52.45761727151948],[5.099056422866921,52.457761601785016],[5.099183116358001,52.45803882911091],[5.099253330874403,52.45823532329927],[5.099073550790188,52.45841406768417],[5.099080017366966,52.45851435458757],[5.099166665039775,52.458588991935514],[5.099205161591926,52.45857195624229],[5.09943200450845,52.45836747436388],[5.099501411981913,52.4583013594059],[5.099509506410453,52.45829351502178],[5.099499327255987,52.45816261865786],[5.099418491974659,52.45790009589417],[5.099309955399779,52.45769481161173],[5.09911339050838,52.45744913680607],[5.099075274135268,52.457408599771775],[5.099086411688476,52.457392062055085],[5.099521908935903,52.45723499759427],[5.099582073624393,52.457208734789354],[5.099681903639435,52.457164887107346],[5.100205123033746,52.457055211513364],[5.100301777435266,52.45721694002131],[5.100722046072713,52.45792009976883],[5.100600646870136,52.457956883290514],[5.100676837228733,52.45808485995735],[5.100803650422053,52.45806157330543],[5.100973601011215,52.458336946563875],[5.101320772513592,52.45889950044998],[5.100808491459462,52.45901930566983],[5.100715848214631,52.45887752869038],[5.100421740168305,52.45842688994886],[5.100300622150685,52.45842322402296],[5.099336589872941,52.45865287208351],[5.099231958903053,52.45869278299009],[5.09920791641983,52.45871407250095],[5.099221209103182,52.45875482601813],[5.099256968080731,52.4587723314203],[5.099268903404442,52.458774327750355],[5.099356853646486,52.458789979885275],[5.09959273198369,52.45875123294454],[5.099943072583041,52.45868215337259],[5.100007353062984,52.45869550891803],[5.100063962749688,52.45875686939807],[5.100099555486676,52.45883588335193],[5.100169366594741,52.458988553174194],[5.100201562712701,52.459058003416025],[5.100500856520045,52.45970048417043],[5.101218920093079,52.46131912411734],[5.101535576153428,52.46205516888956],[5.101499204023652,52.46216854325515],[5.101412269240878,52.46235173426486],[5.100761388764854,52.46359829509146],[5.100536819534165,52.46404937140385],[5.100521769732085,52.46417151118083],[5.100549756089904,52.46428953536677],[5.100733683025559,52.464538538141554],[5.101436185108149,52.465269059126925],[5.102001617478269,52.4658906268457],[5.102007191869049,52.46589674990771],[5.102709567111281,52.46665338383278],[5.102744471532322,52.46678876257393],[5.102649277125911,52.46707014647888],[5.102453730555116,52.46756487575916],[5.101676472989874,52.46955520700624],[5.100899711596239,52.47145825582909],[5.100100536037059,52.47350525908419],[5.098604351488397,52.4772329080135],[5.097758165970817,52.479332147635795],[5.096959029393913,52.481326757159984],[5.096170939336975,52.483260291278675],[5.095393136192601,52.48525058311275],[5.094688141498904,52.48702720160517],[5.094543034851358,52.48735456020101],[5.094066651024321,52.4884667148668],[5.094060040729356,52.48849110919654],[5.09406180989275,52.48852405236597],[5.094075423127383,52.48855594630849],[5.094100198810979,52.48858523361826],[5.094134895003899,52.48861048402283],[5.094177841501558,52.48863046211591],[5.094210035195719,52.48864033697624],[5.094261915140907,52.488649489313566],[5.094315803845682,52.48865144678563],[5.094369090030538,52.48864612295751],[5.09441915721654,52.48863377200818],[5.094449504295389,52.48862192061543],[5.094488891324366,52.488599368657084],[5.094510178670219,52.4885816270293],[5.094533550512662,52.48855190944482],[5.095028542933608,52.48735575673057],[5.095971437724578,52.48533927974543],[5.096756170015099,52.48337955923118],[5.097104976247969,52.482501040977816],[5.097155969642885,52.48235280067447],[5.09716376739667,52.48225244030897],[5.097192783665728,52.48218706495486],[5.097215004035437,52.48206927550992],[5.097469206426408,52.481445838948275],[5.098170253431595,52.47969537279751],[5.098816543135712,52.478114972456275],[5.099615879549174,52.47606797916362],[5.099913695324058,52.47532025651857],[5.099964501025775,52.475198185711605],[5.100058206951464,52.47507186072892],[5.100159719615979,52.47484517498006],[5.100573483273761,52.47384243255134],[5.101179856443896,52.47233174533395],[5.101463258393564,52.471594901443005],[5.102044256174826,52.47013214988969],[5.102508830014499,52.469005082914364],[5.102660007513617,52.46861857275864],[5.102718198600209,52.46860223747576],[5.102817972405524,52.468602476723255],[5.102880087264528,52.46857529575013],[5.10299124481923,52.468411603550884],[5.103091732142881,52.46830043609133],[5.10325771992121,52.468173662302256],[5.103537661537889,52.467980949543964],[5.103934394049496,52.46770419500531],[5.104259321814619,52.46754483156688],[5.1046150623021,52.46739025185915],[5.104792879168944,52.46732002514951],[5.104914860989513,52.467280284589364],[5.104927394860684,52.46727628175663],[5.106157955201569,52.46753675389647],[5.106343683782938,52.46754589453781],[5.106515320468099,52.46752861444597],[5.106687320873834,52.467454874127775],[5.106845220986428,52.46732014927387],[5.106982011646743,52.46714156690324],[5.107089932783818,52.46701937074981],[5.107305830836615,52.46680193337913],[5.108491589007609,52.46567006119488],[5.108764564338372,52.465441521835125],[5.109001249897174,52.4652805819974],[5.109810900823622,52.464898265400215],[5.111197301313501,52.464238399423216],[5.111763128864203,52.463977677053535],[5.112007183458427,52.463812534097045],[5.112201496246906,52.463583805143],[5.112489227197901,52.46323537199254],[5.112569009159857,52.46304794219615],[5.112570579684577,52.462794890141765],[5.11253012084021,52.46242378331424],[5.112619030330789,52.462397028657136],[5.11269997446649,52.46235873719741],[5.112875195070702,52.462241743270795],[5.113153811164679,52.46206180273481],[5.113270492637747,52.46200477465224],[5.113378366368568,52.461958397806576],[5.113495101122226,52.46189575696964],[5.1136447388731,52.46178881642652],[5.113712579837593,52.46178503997216],[5.117102412299797,52.46172512168398],[5.118484659774749,52.461715056983515],[5.118906057993189,52.46171601094369],[5.119348688803194,52.461743131547664],[5.120098345561521,52.46179284918436],[5.121997276582662,52.461997924675316],[5.124028049767308,52.46222516559199],[5.125905647286896,52.46242564003844],[5.128664682956209,52.462715348200064],[5.130859851623796,52.46295575497378],[5.132080529391087,52.463097967834386],[5.132237558242693,52.46309830547256],[5.132730709580151,52.46306004536538],[5.134110183515897,52.46293661463566],[5.134291187805734,52.462925768217374],[5.134392382182437,52.462919798789414],[5.134542285885701,52.46292011818925],[5.134878554176233,52.462855119689884],[5.13497115861825,52.46286430137953],[5.135056609905138,52.46291671800421],[5.135142118289268,52.46296043755117],[5.135185139704639,52.462956313859145],[5.135228217337467,52.462899676713896],[5.13545768675021,52.462734174191986],[5.135734616051026,52.46263421832119],[5.135739011035787,52.46262776657438],[5.136230548376526,52.462508879326045],[5.136523798421393,52.46240474193588],[5.136717267713868,52.46230488866409],[5.136989790800725,52.46212655015175],[5.137219397145909,52.46193492612045],[5.137370754593563,52.46171702117307],[5.137372402638062,52.46171413698225],[5.137500557221367,52.46149036182767],[5.137573375200481,52.46125487359472],[5.137553021759868,52.46103239178187],[5.137489919326169,52.46084886047853],[5.137434903734291,52.460778250805234],[5.137325453270082,52.46066118093894],[5.137596429389007,52.46038679800049],[5.138682148962869,52.45995150026748],[5.138775364305856,52.459933996583196],[5.138857158583145,52.459942031875485],[5.13900777708913,52.459975493699794],[5.139064526161238,52.45998150908958],[5.13912201797414,52.459980227309586],[5.139177929136451,52.45997219892384],[5.13922996162302,52.459956861909376],[5.139275825489345,52.45993588943892],[5.139313684503579,52.45990928397316],[5.139341898988958,52.45987873352865],[5.139359550544927,52.459845344343954],[5.139365501389952,52.45981025185562],[5.139362425308273,52.45978468695921],[5.139348371959859,52.459750675201335],[5.139323253638612,52.45971889077187],[5.139288008416534,52.45969128769552],[5.139244458933596,52.459668449463166],[5.13919396441615,52.45965121114435],[5.13913908732264,52.459640984623164],[5.139081858103137,52.45963749642925],[5.13902460120681,52.45964130684652],[5.138998823618376,52.459646587849534],[5.139011864737271,52.459532303041634],[5.139294107196357,52.45950397531694],[5.1392758700138,52.459436532325945],[5.138772817095647,52.45948715661122],[5.138707297598281,52.45948701936294],[5.138639747896892,52.459478725320466],[5.138556634037863,52.4594608656393],[5.137954987598964,52.45925990921571],[5.137901313604185,52.45931989540334],[5.138510995873534,52.45952339171833],[5.138609720375777,52.45954466522346],[5.138672235242679,52.45955245442421],[5.138590635780112,52.45967069198866],[5.138443471654146,52.459822847197835],[5.138197288913704,52.45998005114006],[5.137886663083637,52.460118721849824],[5.137615024248902,52.46021015494252],[5.137258237045495,52.46027599154822],[5.136549455947161,52.46030142220998],[5.136282767531985,52.46023320002478],[5.135362027734268,52.46011357614726],[5.134683831408317,52.460033495957866],[5.134152050886798,52.45995821536812],[5.133823889835948,52.45989628248893],[5.133517128880952,52.459830188351326],[5.13328876062958,52.459803583997186],[5.132938747146461,52.45978541653555],[5.132731530038456,52.459797895178845],[5.132581720111267,52.459784650637964],[5.131139783736757,52.45963297510137],[5.131011583297919,52.459580456080346],[5.130933153214999,52.45954545672886],[5.130492501908733,52.45918220398187],[5.130303934014369,52.459033501152874],[5.130211256300769,52.458998196339735],[5.129412021735075,52.45890489966855],[5.129147980001692,52.45884759586103],[5.128706061109202,52.45870254510055],[5.127614925817617,52.45840357733446],[5.126930423026619,52.458192561958434],[5.126274773075327,52.457959692905746],[5.125601401518995,52.457694205228684],[5.125003209026785,52.457391803119826],[5.124426188710107,52.457124274816195],[5.123728319597557,52.45676940219851],[5.123208620127691,52.45648880345836],[5.12268915607085,52.45617336129935],[5.122415332641675,52.45598738416138],[5.122159440588481,52.45580341650265],[5.121924527172101,52.45564588685084],[5.121625187500152,52.45554046011029],[5.121361253053877,52.45550924944639],[5.118528006660772,52.455200625800735],[5.117849981401998,52.455088479270415],[5.117589188110256,52.45504747909602],[5.117269280104955,52.45506768316875],[5.116715532853126,52.45513517551184],[5.116136083085053,52.45507311532168],[5.114918560400816,52.45493502825289],[5.114511664249099,52.454883054512734],[5.113923979950692,52.4547286975685],[5.113232456571184,52.45455689767127],[5.112668685558273,52.454468245767956],[5.112661975545974,52.45446660710049],[5.111606256678446,52.454208515687505],[5.111564720820467,52.454195503284126],[5.111085935794392,52.454045817884456],[5.110790630305564,52.45385077713067],[5.110356785170045,52.45357059047876],[5.110122362959389,52.45338242803983],[5.10967531059337,52.45290111991119],[5.109242809292423,52.452411412103295],[5.109058377305657,52.45220595055474],[5.108958970612067,52.45211387540577],[5.10840062134315,52.451752505699716],[5.108258658671294,52.45162999631279],[5.108081502657834,52.45140264606995],[5.107861728496828,52.45115357492608],[5.107715418436582,52.45105381807108],[5.10748152730477,52.45096055103613],[5.107116759085417,52.45084166759298],[5.106694162853559,52.4506004248305],[5.106341604737411,52.450324573045535],[5.106176919219672,52.450193533009944],[5.106053009445067,52.450157414365485],[5.105332134952541,52.450147660175624],[5.103659063835569,52.4501664637315],[5.103442144617172,52.45019029190355],[5.103241885179604,52.45023782357034],[5.102906741233758,52.45026160037761],[5.102020443413173,52.45027843667378],[5.101028616186201,52.45030147190846],[5.100121329596885,52.450356016773476],[5.099765362832332,52.45033124960347],[5.099117855445495,52.45029039320051],[5.09900897298849,52.45022016030252],[5.098272255598297,52.44988371020843],[5.097476718812935,52.449465038227935],[5.096902502744598,52.44921917469677],[5.096720967999011,52.44903328358111],[5.096425742765232,52.44883445818555],[5.096236706459439,52.44874126985059],[5.095923038228952,52.448725752223076],[5.095098297952288,52.44867553172287],[5.095016768968013,52.44864590587643],[5.094953194237004,52.448541009213635],[5.09491890689468,52.448327077697776],[5.094734995515681,52.4469802998171],[5.094422984775742,52.44448981979437],[5.094123298291501,52.442304842729925],[5.094023906769746,52.44167834009754],[5.09396176206268,52.441359606119185],[5.093871261621079,52.441010255266335],[5.093738439960016,52.440582247134984],[5.093563117059188,52.44010612329365],[5.093260654566673,52.43942238844886],[5.093079566987273,52.4390648205295],[5.092908071015575,52.43876253300337],[5.092590027412615,52.43827732629645],[5.092240120713128,52.4377549480201],[5.091921451431587,52.437365751233195],[5.091482122293168,52.43687151237098],[5.090922128952702,52.4362765880719],[5.090603174954849,52.43593321411591],[5.090320251222389,52.43553973432417],[5.089767773760479,52.43489246379096],[5.08920071141886,52.43429315434804],[5.088665307864662,52.433765930583995],[5.087913182522264,52.433091957653254],[5.087345429602063,52.43260174648233],[5.086976564866347,52.43225822805369],[5.086756399165023,52.4320918319047],[5.086628212565892,52.432047864522325],[5.086478309518766,52.43204748434368],[5.086356558063222,52.43210391354897],[5.086306164731583,52.432169241655785],[5.086348137085551,52.43229590934355],[5.086905154831783,52.432858026055996],[5.087296335960068,52.4332545923348],[5.087992386945081,52.433961510649624],[5.088219837285629,52.43419248809577],[5.088212440417993,52.43423175291064],[5.086745454324487,52.434773657221484],[5.086688296216965,52.43476480345605],[5.08661696504744,52.434746927125516],[5.086574194070868,52.43475131332056],[5.085986990134749,52.4350115828555],[5.085960129411911,52.43504129109269],[5.085922638766611,52.43504652361165],[5.085806614493282,52.43501224605579],[5.085772903214916,52.435002328918166],[5.085140708475248,52.434546850969625],[5.0835354852071,52.43335584230737],[5.083308488458216,52.4331544447055],[5.083110337087478,52.432900883472804],[5.082977257889119,52.432542724238964],[5.083020058172191,52.43253188638906],[5.083070473833637,52.43248398740688],[5.083092047301157,52.43245342860876],[5.083092556411172,52.43237928657941],[5.083021857962154,52.432269843171014],[5.082915726279455,52.43213447957321],[5.08280225988515,52.43202942898059],[5.082681912493469,52.43188953400716],[5.082575581541615,52.43178449343077],[5.08253324777778,52.43169255027726],[5.082206717312968,52.43143444227429],[5.082029013173845,52.431316027468725],[5.08192255775778,52.431228401064836],[5.081833725648098,52.431150935404595],[5.081696292830517,52.43105677595786],[5.08158328646313,52.43101969249483],[5.081297336786306,52.430908011304716],[5.081117039456411,52.430801666733316],[5.080958988083018,52.43073188123284],[5.080846216970521,52.43069479407435],[5.080770693022106,52.43068533274334],[5.080491340992837,52.430716911395805],[5.080340630900982,52.43071652135513],[5.080137004614397,52.430692959071024],[5.080031330729348,52.43069268528887],[5.079872745410667,52.43073384058609],[5.079804648618196,52.43074743378427],[5.079744263971249,52.43074278702019],[5.079608781027453,52.43070086740411],[5.079579106807503,52.43064068012745],[5.079572059805275,52.43056229882852],[5.079561339122099,52.430518745386436],[5.079557316754241,52.430502161975845],[5.079437352359704,52.430409727679894],[5.079347203582977,52.43035416646937],[5.079112989685373,52.430272381862615],[5.078880596823204,52.43019145713756],[5.078526688457311,52.43007538178856],[5.078248528394045,52.429936192812455],[5.077774027258553,52.429685273930495],[5.077572367226965,52.42954684293722],[5.077369263004093,52.429449416949474],[5.077119971828399,52.42932378471372],[5.076858055962968,52.42919446097663],[5.076700114954424,52.4291109137462],[5.07636990123111,52.42886121275731],[5.076317671624196,52.428808271433866],[5.076264980005922,52.428754768053714],[5.076040975234728,52.42842894898363],[5.075936425353989,52.42827054811396],[5.075922167124677,52.42817361624758],[5.075899976147228,52.4280951958056],[5.075964611998522,52.42801925025088],[5.076085872124583,52.42795749898727],[5.076796441844027,52.427758546579206],[5.076834240445611,52.42774011329429],[5.076842034006446,52.427710355357334],[5.076845722299831,52.42751151707409],[5.0768327112992,52.4269744796542],[5.076752236793719,52.426822603619826],[5.076650173752777,52.42656928544741],[5.076623830753938,52.42655770341304],[5.07657417937963,52.42656262429235],[5.076620924707482,52.42667902732008],[5.076048439596989,52.426778911417465],[5.076008528695144,52.42660692211625],[5.075974763361151,52.426574532315826],[5.075771748133622,52.426500132454684],[5.075653316512887,52.42651141333283],[5.075566056737036,52.42654311660843],[5.0754368344271,52.426598139922724],[5.075360059665734,52.42660857918779],[5.075248766805359,52.42660402625401],[5.075168820490143,52.42658465442961],[5.075062294503297,52.42654208047854],[5.075058837878905,52.42647972044962],[5.075089655799952,52.42640846135643],[5.075077122587878,52.42629637104083],[5.074998922242795,52.42614618313166],[5.074860794363019,52.42596157233724],[5.074774627828646,52.425866698550855],[5.074774235428806,52.42586605311118],[5.074073547209012,52.42472652385543],[5.07405516860548,52.4246618729736],[5.074066740957751,52.42461808936331],[5.074097346751826,52.42457688332403],[5.07416158949541,52.42455627475213],[5.07529706269475,52.4243136831627],[5.075323051497584,52.424303712483855],[5.075337183062967,52.42427606809011],[5.075340831824604,52.424254786243644],[5.075313108389742,52.424233421849536],[5.075285294759245,52.4242269585281],[5.075219169425805,52.42422465445087],[5.074103245130686,52.424451442043036],[5.073906122460066,52.42440855397206],[5.073788004643488,52.4243720489355],[5.073603852400868,52.42431833772485],[5.073405944609863,52.42424115933026],[5.073242774222588,52.42417472283987],[5.073097055647004,52.424101951229225],[5.073022280702332,52.424060626126135],[5.073084200947923,52.42381644456169],[5.073157568627689,52.4235767807574],[5.073200257041238,52.42341990062823],[5.073200925954034,52.42332553156363],[5.073185070061921,52.42316511880707],[5.073136880649289,52.42306135504079],[5.073099762917517,52.422950312834516],[5.073081439892798,52.42287667618975],[5.073108872557199,52.42273351194996],[5.07327852980201,52.422228974629256],[5.073306048991189,52.422073451802945],[5.073318257206865,52.4219395178087],[5.073325209790108,52.42147611038113],[5.073365450016139,52.421146494972426],[5.073373962564535,52.4209813716153],[5.07336755101565,52.420849911980916],[5.073326956970356,52.420711618476986],[5.073263782152899,52.420582256272304],[5.073192888533968,52.42047365185723],[5.07308063127177,52.42033489334967],[5.072942220635064,52.42019381850292],[5.072709837512306,52.419991536218646],[5.072278321192678,52.41965813112834],[5.071995157302561,52.41946021971267],[5.071784735862886,52.419335235552786],[5.071608135679907,52.41923310021688],[5.071408907725463,52.41914971254059],[5.071213332639588,52.4190705521165],[5.071066847690098,52.41899881660641],[5.07092799204203,52.41888779068568],[5.07080461433045,52.41876276109581],[5.070628676538306,52.41857102658976],[5.070489892564057,52.41845072609213],[5.070324977408903,52.41832333629548],[5.070159748565932,52.41820745936042],[5.069707349616569,52.41794223752186],[5.069508076140775,52.41783329491207],[5.069263805745324,52.41772197718274],[5.069034609937413,52.41762446652943],[5.068895531694126,52.417545730709705],[5.06870036883794,52.41740899211256],[5.068505637536349,52.41721242428856],[5.068412505708594,52.41706921618176],[5.068283131387191,52.41669645313833],[5.068261708911445,52.416544164498866],[5.068281948785216,52.416350429576305],[5.068371045124404,52.4160001551311],[5.068425572507165,52.4157638116843],[5.06843041172227,52.415634628758646],[5.068412876474344,52.415452585619484],[5.068364671510456,52.41532326088642],[5.068301466872075,52.41520091324235],[5.068212032625331,52.41505518845946],[5.06805108425834,52.414889889390956],[5.06794636727215,52.41476041226472],[5.067864349772742,52.41463801368668],[5.067778976161632,52.4144372516739],[5.067638999943121,52.413975420388084],[5.06752850923061,52.41363050385857],[5.0674951892187,52.413535767001136],[5.06733368412732,52.41344994587467],[5.067269816262262,52.41342225539005],[5.06722069640493,52.41341733959628],[5.067156618089411,52.41341941344554],[5.066089944359518,52.41359881605597],[5.065308335083611,52.41373964882031],[5.064387073679749,52.41391240004225],[5.063044914221112,52.41413932179217],[5.06251053105208,52.414228014753924],[5.062257687757944,52.414259622976076],[5.061918003256963,52.41429324010867],[5.061472865673223,52.41433358394153],[5.06090669485447,52.41440335877476],[5.060361084887996,52.414489483837315],[5.059285071315613,52.414652782756626],[5.058584926909154,52.41473369684949],[5.058060442963302,52.414787568652486],[5.057815257688546,52.41480543232606],[5.057634210671065,52.414816437526774],[5.057487013921128,52.41481378478611],[5.057245781825784,52.414794578345855],[5.057004821588959,52.41477087120631],[5.056763726084916,52.41473340775321],[5.056590369407557,52.41469809568882],[5.056214055433919,52.41459116470119],[5.055820840201703,52.41447462699106],[5.055452062149071,52.41437445261025],[5.055121008798904,52.41426736531597],[5.054635992509016,52.414081472761815],[5.053944137066212,52.41382367418728],[5.053389382474132,52.413628315082626],[5.052539541751818,52.413309950754275],[5.052210504786786,52.41318094750997],[5.051835409357519,52.413009123914954],[5.051488951682145,52.412816031213886],[5.051301848988075,52.41268658529897],[5.051109152440031,52.412508254277526],[5.050583543742665,52.41189616839546],[5.048945262614508,52.41002827501625],[5.048937942441695,52.41001996309384],[5.048460569491018,52.40947808197311],[5.048330477013419,52.40934513984746],[5.048268353712387,52.40924020402515],[5.048167422795585,52.40901662914015],[5.048100210793034,52.40885775147557],[5.04802679514858,52.408787887726206],[5.047856775694026,52.408651187201336],[5.047697810316349,52.40853923030901],[5.047590335028278,52.40842039520638],[5.047059562445229,52.40774565100436],[5.046830908269492,52.407439695721926],[5.046492187708006,52.406995526369045],[5.046351044369567,52.40680693871422],[5.046254705989377,52.40673335802937],[5.046180863824462,52.40669130210108],[5.046004228765062,52.40666972493727],[5.045434796480712,52.40657736241196],[5.045019126637565,52.40649612212234],[5.04464919918718,52.40640770033357],[5.044407630801524,52.406351953732],[5.04435879753928,52.40634057977744],[5.043875277839073,52.40618583109382],[5.043647813832324,52.406115234093356],[5.043499627099021,52.40609739360867],[5.042912631349614,52.4060504729475],[5.042770486231002,52.406022253179565],[5.042662517161402,52.40596941590103],[5.042355997171509,52.4057907383264],[5.041961534621994,52.405553947130876],[5.041734139504424,52.40544515304069],[5.041489852503052,52.40535399856688],[5.041233791925766,52.405272930115274],[5.04097201328912,52.4052162726252],[5.040726978024696,52.40519111912909],[5.039689901283868,52.40509399912258],[5.03908304405316,52.40503463427611],[5.038883740733058,52.40500625086274],[5.038621993925309,52.40494593840463],[5.038371611532653,52.40487217476397],[5.038223771657657,52.40481219582279],[5.038008235400421,52.40468601423604],[5.037860951613265,52.40455301511044],[5.037742008599836,52.4044377950301],[5.037588998222455,52.40433257544523],[5.037367788229137,52.40417155535712],[5.037135520681383,52.40398578094418],[5.036818182281895,52.40372672684341],[5.036628428545487,52.40359528661067],[5.036401283988314,52.40345867985299],[5.036111877011074,52.403297447343824],[5.035867617122965,52.40317819507579],[5.03562894741045,52.403076097304],[5.035361505485444,52.402984585461205],[5.035088610303723,52.40290007969978],[5.034622087265655,52.4027661272773],[5.034309268966021,52.40267812336402],[5.034047662240623,52.40259000434823],[5.033962505697444,52.4025445249745],[5.033866022195229,52.402477952954676],[5.033792762125021,52.402379993590806],[5.033713829963541,52.40225758900555],[5.033651744919948,52.402184381439405],[5.033555430735908,52.402096744566464],[5.033425126288925,52.4019848537888],[5.033238257563858,52.40183768209154],[5.033102643669039,52.40168393159109],[5.032989937582223,52.401522938917225],[5.032936525072658,52.401427001222416],[5.032857464528707,52.40133605129888],[5.032772536192622,52.401262485528854],[5.032681779827692,52.40119930269071],[5.032533767084759,52.401160661557434],[5.032317499205517,52.40113192773809],[5.032027007563076,52.40109623214127],[5.031782164796438,52.40103624003065],[5.031628712432154,52.400976517237574],[5.031526544061924,52.40092031316737],[5.031390692020275,52.40081177829007],[5.031311940998533,52.40068262560692],[5.031244504081542,52.400546203547364],[5.031199602693707,52.40044860813449],[5.031120435440908,52.40037141849508],[5.030916451705863,52.40021380286011],[5.030610717879874,52.39994802779443],[5.030347701963838,52.399680133698936],[5.0301441838194,52.3994669109853],[5.029725604222341,52.39906092404077],[5.029555999222807,52.39888263131457],[5.029426263262344,52.398714555405235],[5.029308299801421,52.398497943268346],[5.029061323132277,52.39800905110386],[5.028842775994047,52.39753907696836],[5.028764546902219,52.39734700819929],[5.028591879022375,52.39684065752572],[5.028497230511261,52.3965788858755],[5.02844718091993,52.396409372961216],[5.028448224197054,52.39628045534448],[5.028460653685886,52.39614792683577],[5.028558974480191,52.39597016316591],[5.028576434557731,52.39591095001194],[5.028560046945048,52.39583759576243],[5.028532149819823,52.39576785742534],[5.028464267276898,52.39570137194677],[5.028367970825739,52.39563142642053],[5.028192189736905,52.395508715540764],[5.028016538733324,52.395372244776524],[5.027903751804289,52.39522529614787],[5.027819488625657,52.39507140653802],[5.027701951655285,52.394802546283515],[5.027646400774875,52.39461925445031],[5.027568805403599,52.39435051525743],[5.027508155299324,52.39408856904946],[5.027507757257625,52.39408620320309],[5.027475526608582,52.39389326467161],[5.027471239610559,52.39372923062577],[5.027449106906592,52.393641814711394],[5.027415531633549,52.393565035916936],[5.027333868157806,52.39344458048396],[5.02718165270973,52.393234876706806],[5.027040441968802,52.39307042640609],[5.026932977854218,52.39297572709892],[5.02677418013425,52.3928567164307],[5.026666694698897,52.392765675663945],[5.026593312002804,52.39267136107474],[5.026565983295995,52.392545730938046],[5.026533196283541,52.39235717273987],[5.02646630686191,52.39217216324143],[5.026371705825552,52.39189269493979],[5.026328036715428,52.39164681201554],[5.026289462014669,52.39149306125556],[5.026284652614626,52.39137788660632],[5.026126945027056,52.39114036056424],[5.025957840165846,52.390906166297846],[5.025873682480528,52.390741883984354],[5.025812082857647,52.390612500105064],[5.025750807764009,52.39044154859294],[5.025678690771268,52.39019361204734],[5.025623540784886,52.38996144656484],[5.025584396639655,52.38986358592112],[5.025482854221303,52.3897203189683],[5.025336630163671,52.38949658507134],[5.025325727571178,52.389426896885745],[5.025316039528281,52.38922099887881],[5.025305622939521,52.38910581508818],[5.025205443097709,52.388822959148904],[5.025177726203065,52.38871811573856],[5.025195937260351,52.388582231969494],[5.025271647511511,52.38837490341444],[5.025278333737543,52.38825977725047],[5.025239077268115,52.38817595296386],[5.025119871544191,52.38810228476359],[5.024767949803775,52.38794083260635],[5.024574354330236,52.387898396450176],[5.024403559552476,52.38787343612589],[5.024215871028397,52.38783803230635],[5.023988488199342,52.38777442377771],[5.023779753121866,52.38768996503799],[5.023533325670789,52.387654103077985],[5.023339121322817,52.387548144856225],[5.023098626038036,52.38749123324159],[5.023073068580203,52.38748564526894],[5.022789371370624,52.38742356714222],[5.022491459869928,52.38737349695952],[5.022198800623369,52.387379614807365],[5.021894351092226,52.38742432434169],[5.021634671632718,52.387393918869584],[5.021185204311887,52.38727766010307],[5.020656316695583,52.38714682671692],[5.019980016308595,52.38695682691057],[5.019262144382242,52.38668806052321],[5.0191081668756,52.386614839025334],[5.019020027213548,52.38656035895869],[5.018937531140431,52.38650253140775],[5.018888241763892,52.38644142861486],[5.018784440391561,52.386283823362795],[5.018709479967385,52.38614793105618],[5.018576424709763,52.38584980483348],[5.018446266540463,52.38554971377726],[5.018358985664679,52.38539215954813],[5.018277085269002,52.38526327184718],[5.018151343226993,52.38509520166721],[5.018041726615837,52.384974647933106],[5.01789219299215,52.384823640906454],[5.017754839058126,52.384713113280085],[5.017644913086956,52.38462992424063],[5.01748258834967,52.38452773798118],[5.01734491367101,52.38445625200029],[5.017136860399601,52.38437443580668],[5.016932727101119,52.38431790379742],[5.016755977587808,52.384279997653664],[5.01658200630126,52.38425417121593],[5.016424434414265,52.38424188808181],[5.016163150505927,52.384241069851825],[5.01600816999018,52.384250695323324],[5.015902921080939,52.3842655293471],[5.014901577039201,52.384460390576315],[5.014488909120085,52.3845301578529],[5.014199682857477,52.38457254973431],[5.01411716950449,52.3845614328006],[5.013946149500692,52.38451658498565],[5.013805523654397,52.38447651529878],[5.013702910214894,52.38444353971699],[5.013554656910493,52.38440577347229],[5.013275049253342,52.384327696352116],[5.013215916005824,52.384304535482386],[5.012973081886827,52.384239454818804],[5.01286548750512,52.384206813286376],[5.012802135170546,52.38418133804176],[5.012737329806896,52.38415052311451],[5.012652106552555,52.384079189382604],[5.012621854682673,52.384058870655096],[5.011904974860546,52.38381955173634],[5.011128667443981,52.3835648776386],[5.010167505764436,52.383257365917295],[5.009333332309443,52.38298198867586],[5.008932009145251,52.382852074848955],[5.008880488291984,52.38284011222738],[5.008696991255096,52.38278700133921],[5.008617401772106,52.38278113058901],[5.008534795379278,52.382765980298025],[5.008492027673707,52.38275068501697],[5.008455383875817,52.382728097866824],[5.008519899153784,52.38271145055615],[5.008565876046664,52.38270232231564],[5.008614961125931,52.382704170699036],[5.008674566006922,52.382712500409696],[5.008786676005349,52.38272466211593],[5.008921862964215,52.38275064310519],[5.009098361242726,52.382802053311664],[5.009321687005232,52.38288056027718],[5.009580492293038,52.382969015107335],[5.009716072792039,52.38301550980502],[5.012233875507116,52.38384278390584],[5.012712423584335,52.38400158142384],[5.012847778595111,52.38403431084414],[5.012938787387584,52.384048078101],[5.013007984147653,52.384048296737284],[5.013060761713495,52.38403329325436],[5.013107878648171,52.383999461667216],[5.013135842445129,52.38396247333506],[5.013141728953231,52.38393188187013],[5.013133879226812,52.38354257602585],[5.013114747910256,52.383510222160766],[5.013081825575371,52.38348315798852],[5.013021165371312,52.38346442488903],[5.012957650265045,52.38345748259261],[5.012844321423287,52.38345207249754],[5.012623138751312,52.38344603273955],[5.01241861519805,52.38342347749285],[5.012062249682369,52.38336309476368],[5.012012561916897,52.38336293737413],[5.011970897043216,52.38339172576892],[5.011940367031065,52.383406799258026],[5.011890507594147,52.38341338379144],[5.011829761341009,52.38340644876447],[5.011631281001002,52.383333072793626],[5.011533257756594,52.38330889347814],[5.011489029218616,52.38330201156479],[5.011339733041792,52.38330321945738],[5.011289999252368,52.38329463751481],[5.01124037980826,52.3832725699786],[5.011119387064757,52.38319776109839],[5.011058694880582,52.3831838074074],[5.010975940100878,52.38315826146503],[5.010923601501812,52.38313282018913],[5.010868520151797,52.38309360292576],[5.010852268498987,52.383061538252015],[5.010850919349869,52.38300451914601],[5.010848185162116,52.38289384578616],[5.010868487956071,52.38278550152019],[5.010915229192539,52.38264521562983],[5.010968773259446,52.3825302263393],[5.011030593487957,52.382410215856176],[5.011166438874782,52.38220926771308],[5.011189594446363,52.38218631492173],[5.011205560486448,52.3821706363584],[5.011261029743387,52.38215030536619],[5.011321934649878,52.382140387590724],[5.01139401361058,52.38213724686168],[5.011460197354239,52.382140826311186],[5.011518053705563,52.38215112093044],[5.011570547899867,52.382171794506306],[5.011675259068674,52.38221762463709],[5.011755254859483,52.38224343727282],[5.011882241439955,52.38227417390191],[5.011987073010756,52.38229472912502],[5.012042323912117,52.38230192258954],[5.012179210945017,52.3823023561116],[5.012306797167808,52.38226203798616],[5.012367761918688,52.382245377343],[5.012403660644499,52.38224717253664],[5.012458911939169,52.38225240830237],[5.01251407830445,52.38226943644186],[5.012712671410437,52.38234280771742],[5.012756731696177,52.382354739692175],[5.012792759690081,52.38235654506263],[5.012834221683168,52.3823516115979],[5.012887001335155,52.382324817327884],[5.012973204262638,52.382267514985635],[5.013028956176837,52.3822151665306],[5.013101333745034,52.38216287056475],[5.013156960926738,52.38212597408572],[5.01327833703176,52.3820339573329],[5.013303811809426,52.38199134472147],[5.013292992410697,52.381955360047336],[5.013229302785668,52.381900391042066],[5.013148484444513,52.38185070026643],[5.013028838776466,52.38179387192983],[5.013009518838883,52.38175786037184],[5.013168552451796,52.3817976827039],[5.013322035670853,52.381830748375314],[5.013400335819625,52.38183942502495],[5.013498141173328,52.38183411730188],[5.013537125319769,52.38181064867381],[5.013562063743017,52.38179190635643],[5.013570722692896,52.3817599134452],[5.013565496987163,52.38172591203557],[5.013551836155632,52.38169890784668],[5.013560702051097,52.381627880514614],[5.013550027038735,52.38158712118932],[5.013512100121106,52.38149908632864],[5.013484754148436,52.38144816331063],[5.013387533283867,52.381344497847884],[5.013387661047664,52.38132933971356],[5.013398842189701,52.381309152835094],[5.013569604376493,52.381074320000614],[5.013667467323232,52.380925778245015],[5.013700998324547,52.38089695281001],[5.013774493241101,52.38086178947503],[5.013783221660576,52.380819412452816],[5.013784517489766,52.380665506946066],[5.013750587653734,52.38043003276039],[5.013747946505859,52.38025391986929],[5.013717739280277,52.380228549593944],[5.013687725334526,52.38018267463684],[5.013677148891751,52.38011663610726],[5.013677804085748,52.38003883942788],[5.013679369390315,52.380033992840495],[5.013703378614676,52.37995943435863],[5.013712277217274,52.37989683479791],[5.013728935951528,52.37971741418456],[5.013729477535733,52.379653097691936],[5.013719032835226,52.37958537439293],[5.013686683517271,52.37948865171641],[5.013626248129722,52.379266864691125],[5.013640786566179,52.3791770333085],[5.013636757285211,52.37916683760942],[5.013627289006944,52.37914328620563],[5.013608354114635,52.37910418419274],[5.013603083704864,52.37907552307715],[5.013600539945813,52.379036475464446],[5.013611706200846,52.37901797548998],[5.013631221478933,52.37900455649602],[5.013628644464315,52.37898235789727],[5.013606858209785,52.378953637493055],[5.013520422578294,52.37887556603224],[5.013509569043857,52.378844921698764],[5.013509739425883,52.37882469915886],[5.013570791387196,52.37879428079815],[5.013576678508663,52.378777445757734],[5.01356834666843,52.37874539922453],[5.01355486831858,52.37872316623005],[5.013535644864975,52.378704573074906],[5.013510922554164,52.37868427378913],[5.013472591771575,52.37864342536595],[5.013453527969397,52.378604325613075],[5.013398627316932,52.37855696455931],[5.013368416000523,52.37853467962548],[5.013305440820719,52.37845162740438],[5.01327404063472,52.37840575423703],[5.013238350805691,52.37837867684008],[5.013158548857617,52.3783309512319],[5.01306220142146,52.378286556246486],[5.012990598783176,52.378247574433395],[5.012972061988448,52.37824077333501],[5.012929970714468,52.37822518967613],[5.01284998205267,52.37819965823532],[5.012797711010805,52.37816747544031],[5.01277041280103,52.37812497737795],[5.01273778158783,52.378063928141884],[5.012671733646205,52.377841833401604],[5.012633699922693,52.37778076794578],[5.01259810467687,52.37774190156555],[5.012512939790242,52.377677309424065],[5.012425046884973,52.37759755003705],[5.012403335678083,52.37756012061645],[5.012392489679394,52.377526106728354],[5.012403978773201,52.377484014435204],[5.012445693370338,52.377448475408684],[5.012509491823318,52.37742171705899],[5.012576056774333,52.37740507312653],[5.012674212318916,52.37739836603582],[5.012729651434234,52.37738168683118],[5.012790744191558,52.37734817724853],[5.012999581575741,52.37718284371945],[5.013064544886151,52.3771242806007],[5.013038771021096,52.377021596292444],[5.012940499979485,52.37693035783052],[5.012865099202331,52.376836881754244],[5.012804937494964,52.37674573666595],[5.01267269230641,52.376617100846595],[5.012562771140797,52.37655614052371],[5.012442326733891,52.37654296104025],[5.012403788486382,52.37651587705942],[5.01238205622727,52.376480134538895],[5.012355097833197,52.376412365992515],[5.012340382852124,52.37633452060554],[5.012316349371828,52.37623276555716],[5.012281015925556,52.376163279003855],[5.012251122152407,52.3761174121045],[5.012185066461709,52.37605961823274],[5.012050304413965,52.37598645263134],[5.011963401067278,52.37595078756886],[5.011875215111852,52.37591989261198],[5.01180629111629,52.37590282501898],[5.011739886130337,52.37589924144137],[5.011720757618709,52.37588233076383],[5.011701725089025,52.37583985863699],[5.011685730260356,52.37576538216032],[5.01168346974711,52.37570610778808],[5.011688807248182,52.37567270147147],[5.01170707133764,52.37561546047198],[5.011779420381294,52.37549829507167],[5.012091365005909,52.37495665646956],[5.012096166846884,52.37491847329899],[5.012082951691972,52.37489399403834],[5.011900941972065,52.374777699659944],[5.011668957020079,52.374629512059236],[5.011724889183133,52.37456705812122],[5.011835574196136,52.374530612702124],[5.011926212506043,52.37448793094051],[5.011946501537117,52.37445091850743],[5.011880027125295,52.37429056690513],[5.011857080449172,52.374253438120064],[5.011807650745675,52.37421878686115],[5.011761559577474,52.37418007476281],[5.011682274145538,52.37414735101323],[5.011550258004295,52.37407793416439],[5.011515357804729,52.37404398406955],[5.011757347304683,52.373891963360784],[5.012011277725368,52.37373704732049],[5.01286001562933,52.373219410681806],[5.012808548803516,52.373185544305976],[5.012074986618621,52.373637099822176],[5.011954337856558,52.373710137649],[5.011916334918063,52.373710017220596],[5.011885808698589,52.37370616364086],[5.01181254220405,52.37369282742502],[5.01173940240913,52.37366452713612],[5.011681566143666,52.37363251849544],[5.011636039934644,52.37359307114656],[5.011569150609716,52.373549808169145],[5.011508194597917,52.37352901511579],[5.011324918855758,52.37350786080312],[5.011236428880348,52.37348885862877],[5.011166156271433,52.37347926138907],[5.011071605191335,52.3734546495285],[5.011013674488519,52.37343386582836],[5.010931465569275,52.373398049517],[5.010809400485186,52.37336770577733],[5.010708680129041,52.37334681287729],[5.0106476135701,52.3733391230153],[5.010568334751912,52.373314541337564],[5.010534978258737,52.37328260998672],[5.010458834630376,52.373246803649046],[5.010355138775555,52.37321840528302],[5.010321844914537,52.37318085679106],[5.010211900141448,52.373165524424564],[5.010138666825228,52.37314844841259],[5.010096020533897,52.373131469763194],[5.009937241461483,52.37310851288375],[5.009903808511099,52.37308218940059],[5.009885672445865,52.37306155889125],[5.009830877906686,52.37302955902938],[5.009745587120019,52.37299372307886],[5.009675279897545,52.37299349895659],[5.009629533146006,52.372980249114725],[5.009574863816882,52.37293702396064],[5.009547441509628,52.37292571093853],[5.009516918500846,52.37291811789448],[5.009483322613246,52.372916150296106],[5.009440486850796,52.37291975251742],[5.009397618003058,52.37292896290987],[5.009357724735469,52.37294569645455],[5.009317750653294,52.372973637324456],[5.009283950029678,52.372992250729254],[5.009250323561915,52.37299214341036],[5.009195383406645,52.37298074247634],[5.009137467563876,52.3729618363184],[5.009097861430578,52.372944867013445],[5.009043049089057,52.37291848400763],[5.008994310902686,52.372899607086644],[5.00891198069605,52.37287315410481],[5.008860176331358,52.372850510496335],[5.008530745887031,52.37259770450569],[5.00851049460859,52.37258413130963],[5.008483421032961,52.372571587846444],[5.00843933454092,52.37256520042745],[5.00839861333617,52.37256195145884],[5.008359551107504,52.37256390264465],[5.008303452103539,52.37257307930232],[5.008017361191674,52.372637783284716],[5.007910318731009,52.372652331214574],[5.007754638722846,52.372706880023564],[5.007640008672884,52.37277616693769],[5.006819241810655,52.373358569924285],[5.006624720674616,52.37349949769026],[5.006538213441448,52.37353938813637],[5.003979270379864,52.37427345960806],[5.003077218497457,52.37452134813093],[5.002327824418988,52.374746973801976],[5.001759581480188,52.374918138744036],[5.001697036186973,52.3749477121283],[5.001333727619337,52.37521924105743],[5.001306546337989,52.375271116365866],[5.001247241146522,52.37544281274338],[5.001209984524683,52.37562272196435],[5.001136466856026,52.37588340447179],[5.00099631093498,52.37641940206549],[5.000901521028678,52.37676427148795],[5.000829514242672,52.377047993114125],[5.000814054654485,52.37708472730453],[5.000771962976219,52.37713571258198],[5.000701777116691,52.37719782902889],[5.000584913692305,52.377309794915185],[5.000452263391707,52.37749810230203],[4.999991254243373,52.37811562068282],[4.999904285263828,52.378234421660295],[4.999852973362709,52.378276946940794],[4.999759675832809,52.37833197866349],[4.999632782977133,52.378382677079784],[4.999027857341304,52.37860931989385],[4.998731346845101,52.37871760322076],[4.998620655206266,52.378781205124795],[4.998529185321889,52.37878324175059],[4.99842644314336,52.37876774236268],[4.998325646585392,52.37874642528211],[4.998225048934398,52.378704113636495],[4.998185279702341,52.37867716388368],[4.998114940740582,52.378659442859465],[4.998052397772642,52.37862192067163],[4.998035594234589,52.37857348587393],[4.99795988004568,52.378480824306095],[4.997870080264128,52.37839823916401],[4.997798683941297,52.37834829287439],[4.997736246414402,52.37832393056928],[4.997692278252405,52.37831395977546],[4.997652788499869,52.37831663313254],[4.997541271179321,52.37835446464365],[4.997494814661069,52.378352910605784],[4.997462395171183,52.378347186642266],[4.997365475446574,52.378304179035055],[4.997236986658674,52.37826415465497],[4.997132914543831,52.37823825015733],[4.997042421151291,52.37822222368469],[4.996933631823913,52.378212033644196],[4.996847831461202,52.37820894671959],[4.996764390206836,52.37821147580018],[4.996671526757068,52.3782167868839],[4.996587977541494,52.37823223881725],[4.996495163508535,52.37823193264828],[4.996448864247916,52.37822588309889],[4.996313536130457,52.37817880950531],[4.996239594348748,52.3781586308305],[4.996167838621739,52.37815136738199],[4.995956718711035,52.3781520802589],[4.99587336217843,52.37813186306087],[4.995810886656582,52.37810047666512],[4.995741959476547,52.37804464408729],[4.995681976462402,52.378003435175636],[4.995528177036944,52.37795742935783],[4.995368585671581,52.377905778808596],[4.995098007865175,52.377831013792765],[4.995026523070656,52.37782059498509],[4.995019177798838,52.37781952000487],[4.994965951866811,52.37781794165626],[4.994924345437539,52.377799272219555],[4.994815892442172,52.3777379551209],[4.994751130574175,52.377717805927055],[4.99470129258021,52.37771061421762],[4.994652739821776,52.37771186345043],[4.994589763599686,52.37773720566316],[4.994543198225823,52.37775980979453],[4.994515434416451,52.37776112070792],[4.994441217523264,52.37774514710931],[4.994357802652008,52.377746271608096],[4.994271840668558,52.37776171480312],[4.994109041166921,52.377812297161306],[4.993997916491406,52.37785798634183],[4.993962333385642,52.37787275442958],[4.993846968032557,52.37794482969756],[4.993688037367562,52.37811506606771],[4.993661972129892,52.378143066744705],[4.99365472194191,52.37817000379021],[4.993670749417138,52.37820123609077],[4.993705221564272,52.37823392905278],[4.993758337214332,52.378261070260976],[4.994058802169723,52.37836711659042],[4.994151378336813,52.37839578708873],[4.994185962953069,52.37841584455196],[4.994251560450774,52.37847139016721],[4.994309300125611,52.37850696789106],[4.994380900806926,52.37853276357458],[4.995180317547913,52.37874719196362],[4.996030456995766,52.37898845060919],[4.996938714031132,52.37923692208423],[4.997452253307116,52.37937062282995],[4.9978965682122,52.379484151125055],[4.99794987044509,52.37948882104862],[4.997996263848201,52.37948615679744],[4.998035744667326,52.3794705581683],[4.99808009836661,52.379436725233134],[4.998129357938935,52.37938155915603],[4.99848565763146,52.37948187182304],[4.998402883193942,52.37965770034196],[4.998395421693531,52.3797231148554],[4.998378835227604,52.37975704536504],[4.998312342827482,52.37976272383358],[4.998225650253527,52.379770587324415],[4.995740431744226,52.37912792691062],[4.994871859437691,52.3788823863287],[4.994453064357014,52.37876583862238],[4.993788024794099,52.37857489161701],[4.99275751635111,52.37827066529118],[4.992182765132358,52.378095448882554],[4.992067951721921,52.378052096821285],[4.991835964207793,52.37797493026011],[4.99174918311438,52.37794093144209],[4.991500729073895,52.37784320661254],[4.991279968039432,52.37776243556875],[4.991423032143137,52.3776151298914],[4.991246714369789,52.37754085078219],[4.991307778465133,52.37748657181429],[4.99144803153242,52.37754063393824],[4.991538743044711,52.3775558655258],[4.991714325511437,52.377449310276994],[4.991738228608514,52.37736708841337],[4.99175290538842,52.37726631578802],[4.991767020589776,52.3772003576347],[4.991380148827139,52.37721394783599],[4.991313982292624,52.377222436592845],[4.990862815646265,52.37735433835859],[4.990811707151458,52.377372423010904],[4.990804613975405,52.37738391244575],[4.990748591611116,52.37742613852214],[4.990711624280629,52.37740214266808],[4.990611712571144,52.377425680210806],[4.99056800581354,52.37738593335763],[4.989828817200109,52.37758651326707],[4.989740590621008,52.377598864610476],[4.989661664089469,52.37759718503333],[4.989490410343041,52.37756824680881],[4.989354945167635,52.377525379080154],[4.989136710498135,52.377411465160876],[4.988717362802212,52.377206143962766],[4.988593789471868,52.377142811844685],[4.988472896330276,52.37708735730741],[4.987928154507741,52.376857738023745],[4.987858441034162,52.3768266115055],[4.987824380609392,52.37680065714783],[4.987790485900113,52.376755325964126],[4.987696827712534,52.37660614668163],[4.987610819282174,52.37648621378364],[4.987566154424076,52.3764394360273],[4.987513770773483,52.37639544443809],[4.987448215554084,52.37635000628948],[4.987223565896309,52.37622314379102],[4.986829482865299,52.376005260904044],[4.986506288499219,52.37581486263975],[4.986076998499871,52.37555867313372],[4.985540966043343,52.375218692139114],[4.985317213318218,52.3750814275963],[4.985246159947136,52.375048608886104],[4.985095279769399,52.37499894136934],[4.984917398115259,52.37495481180235],[4.984779872791677,52.37489985327709],[4.984655622806705,52.37483651469021],[4.984531590393052,52.37476251285727],[4.984434649990844,52.37468746789992],[4.984283920494271,52.374570682731616],[4.984133600692527,52.374433947062116],[4.984032129134857,52.374327159016055],[4.983944113553038,52.37421506904681],[4.983869224051696,52.37411117911717],[4.983820658366678,52.374064671532345],[4.983763149332282,52.3740316095519],[4.98356760516783,52.373973647768935],[4.983345257856173,52.37392402287898],[4.983064908972636,52.37389553543677],[4.982842354592995,52.373881295100965],[4.982695303637723,52.37387798962401],[4.982543710403087,52.37388308808094],[4.982347876269962,52.37390058366667],[4.982078948493078,52.37380311849982],[4.982004253819798,52.37377024672008],[4.981957206109412,52.373736256174986],[4.981801422309851,52.373507400453974],[4.981772021304508,52.37348677198112],[4.981718876132417,52.373470870595966],[4.98165730702487,52.37346100790643],[4.981598569383992,52.373473441583016],[4.981529200066644,52.37350690678186],[4.981459896719648,52.37354486779348],[4.981307101370355,52.37366877021521],[4.981168278911121,52.37374441078258],[4.981071417356836,52.37377356802845],[4.980988564299704,52.37377553165464],[4.980509909356484,52.37367867076074],[4.980378872945025,52.373667833616025],[4.980264873469025,52.37366519320065],[4.980182117132649,52.37368175974436],[4.98011962048079,52.373715528156474],[4.980057665818309,52.37380350926719],[4.979858855717778,52.3741027886864],[4.979639895045254,52.37440160474948],[4.979583740860596,52.37447820022894],[4.97943763290692,52.374670366545374],[4.97928155731605,52.374875423493016],[4.979050115298622,52.375154930396974],[4.978984214847972,52.37523446870482],[4.978696583341638,52.37556832279469],[4.978696154322368,52.37556882372474],[4.97860035806495,52.37566792547334],[4.978500671169431,52.37576559815985],[4.978359945984884,52.37588392202986],[4.978257049112528,52.37595883746532],[4.978097560853041,52.37607091092011],[4.977607322197885,52.37640681155032],[4.977456469521482,52.376514988199105],[4.977278104074951,52.376647782779024],[4.976980141296582,52.37688380041454],[4.976797231759637,52.377035675496415],[4.976467662911172,52.3773395460481],[4.976225888452655,52.37757715961404],[4.976056378145011,52.37773133145017],[4.975749468529846,52.378003542344445],[4.975420094918241,52.37828467366617],[4.974865709988803,52.37875010177983],[4.974549258820567,52.379010478226604],[4.97426575360534,52.37923137719613],[4.974093037588009,52.37935744770997],[4.973966035306486,52.37944209881436],[4.974029496714048,52.379232523259155],[4.974072938525452,52.379076224041306],[4.974106584017997,52.37893760170176],[4.974117986153094,52.37876041123799],[4.974143014037796,52.37815636010191],[4.974102073461945,52.37804219091795],[4.974197950554591,52.377467315376094],[4.974271857727331,52.3768861777842],[4.974314275015956,52.37653243667484],[4.974319262107164,52.37649033070857],[4.974319612494876,52.3764526898219],[4.974289228973046,52.37641298426345],[4.974238203602408,52.37638556384619],[4.974170007867272,52.37636650585496],[4.974092238774629,52.37636399126471],[4.974046920515681,52.376363833163964],[4.973981902731764,52.37638466978321],[4.973923426460858,52.376417892618726],[4.973881822335204,52.376461839968464],[4.973867655983814,52.37651627280728],[4.973811767408783,52.37688823055962],[4.973729066768957,52.3774398396889],[4.973688969322151,52.37772704313541],[4.973638827740855,52.378086356284214],[4.973537442497969,52.37819272878832],[4.973488396403951,52.37825996486908],[4.973377993899164,52.37864295652454],[4.972991653282946,52.37981309346236],[4.972939784712683,52.37982498245309],[4.972839499043756,52.379825477346614],[4.97271659498532,52.37981521566388],[4.97243217751758,52.37977658768518],[4.971672784316516,52.37967000227771],[4.969807858415963,52.37939690526917],[4.969685109266626,52.37938271157682],[4.969630321625015,52.37936454309813],[4.969485402266701,52.37929072870831],[4.969437027631951,52.379274828774385],[4.969385245202422,52.37926678189462],[4.969113351974098,52.37927452416735],[4.968711815810402,52.37930485120765],[4.968595195828424,52.3793224143525],[4.968543023534837,52.37935396623463],[4.968435487493997,52.37944318306233],[4.968432736979894,52.37944113044217],[4.968432647861276,52.37944108069494],[4.968407495558039,52.379466433106394],[4.968390783281622,52.379480313858316],[4.968335287732202,52.37952641299869],[4.968290420437348,52.379563687880974],[4.968269356056457,52.37958118423345],[4.968255160209222,52.37959297075664],[4.967972072799962,52.37984798231691],[4.967351695906563,52.38042911030585],[4.967096972160412,52.380671835320335],[4.966962465025484,52.38079618762343],[4.966332724442532,52.3813799912703],[4.966123992304988,52.38157455998507],[4.965954361387356,52.38171755246384],[4.965771713764123,52.3818654505757],[4.965666611005045,52.381919487770986],[4.965326117389946,52.382099574264736],[4.965209077668678,52.38215462008662],[4.964886558638978,52.38243642869028],[4.964732643326595,52.38256788138042],[4.9644716801633,52.3827828515455],[4.964214139869076,52.38297901321617],[4.963989336783093,52.383136671378445],[4.963751525368662,52.38329823716916],[4.963295669633775,52.383585793047246],[4.9631763534994,52.38350219959666],[4.962906489944145,52.38327532489916],[4.962243308888993,52.38272838800611],[4.961807726520429,52.38235823609791],[4.961510979094691,52.382504605095065],[4.961769194921033,52.382729063964256],[4.962212620037826,52.3830921097236],[4.962559608192143,52.383381091327585],[4.962945368641691,52.38367972151556],[4.963146532722956,52.38386482000668],[4.963022373787726,52.383924763406725],[4.962969925672741,52.383949003980625],[4.962871379693535,52.38399387680043],[4.962854799698632,52.38399971329396],[4.962788237770603,52.38402531427813],[4.962736519988876,52.38404535114584],[4.962715321216933,52.38405341797866],[4.962503000458063,52.38409366744331],[4.962414919105296,52.38412396349048],[4.962354903515427,52.384148464254714],[4.96229073516812,52.384174073545886],[4.962241336391598,52.384192716444296],[4.962223587815583,52.384199393495614],[4.962202754818718,52.384206059476],[4.962181354422345,52.384212157194554],[4.962170546691594,52.38421493154315],[4.962165445711373,52.384219964296065],[4.962161029624731,52.38422556572859],[4.962157536191629,52.3842314490894],[4.962150591061204,52.38423732904993],[4.962142047725836,52.38424291566934],[4.962127758824233,52.38424876028396],[4.962112905110605,52.38425376701818],[4.962097498774733,52.384258196557425],[4.962081510183152,52.384262075758045],[4.96207092817796,52.38426428468587],[4.962062406368593,52.3842676244644],[4.962044544150604,52.38427542453721],[4.962027487079497,52.38428350611491],[4.961990599091508,52.38428871234687],[4.961982190858108,52.38429092907123],[4.961973350093431,52.384292299402894],[4.961964617485718,52.38429311288801],[4.961955317486306,52.384293358113304],[4.961946260505869,52.384292768358975],[4.961939615070001,52.3842918996584],[4.961772145078561,52.38434494548724],[4.961763693710764,52.38435165586598],[4.961754466649328,52.38435807585284],[4.961744425004642,52.38436366604893],[4.961733578377031,52.38436895675989],[4.961729669912565,52.384370632397044],[4.961694310081732,52.38438342061535],[4.961664379559493,52.38439370280129],[4.961626965992883,52.384406213990935],[4.961588985103168,52.38441814792043],[4.961577126345264,52.38442176327702],[4.96155605393773,52.38443039657866],[4.961522751525997,52.38444459421333],[4.961490016394182,52.384459369087345],[4.96144509292187,52.38447689529652],[4.961399599179361,52.38449414980898],[4.961370121160155,52.38450471216464],[4.961357676073297,52.384509727464476],[4.961324158573104,52.3845233670357],[4.961291308576892,52.384537853837024],[4.961271195304008,52.384541430490515],[4.961250852375497,52.38454444908041],[4.961219385423347,52.38454798489109],[4.961199626105317,52.3845498821151],[4.96117428874569,52.384559057242356],[4.961133625887847,52.38457492695668],[4.961121536025535,52.38457965590488],[4.961049309046901,52.3846091631352],[4.960922228359589,52.384662353085794],[4.960859543122859,52.38468936901391],[4.960797525327602,52.384717232150905],[4.960736092203271,52.38474538496559],[4.96071073154962,52.384758487512734],[4.960679120044982,52.384775504133735],[4.960661589754179,52.384783871415536],[4.960653300065037,52.38478749054589],[4.960432997749837,52.38487966516084],[4.960426165623753,52.384887504735005],[4.960418281328109,52.38489478328307],[4.96040950383476,52.38490177100707],[4.960399791761302,52.3849081891406],[4.960398637971963,52.38490902982174],[4.960381719401044,52.3849148737371],[4.960364001208229,52.38491986094155],[4.960345818361639,52.38492428923441],[4.960335823629368,52.38492650012409],[4.960314736052545,52.3849351331504],[4.960271871817064,52.384953789793514],[4.960229562918164,52.384972736028],[4.960187164668788,52.384990279851905],[4.960153766632382,52.38500364090588],[4.960133061270364,52.38500918352672],[4.960112231761842,52.38501388984488],[4.960090964380269,52.38501830697553],[4.960083389260502,52.38501940311355],[4.960066696465971,52.385024672588585],[4.960034688676587,52.38503551309351],[4.960003133514454,52.38504663383953],[4.959951407828882,52.38506723568597],[4.959896108723583,52.38508978392487],[4.959841612031217,52.38511289226765],[4.959789771374859,52.38513321501158],[4.959743363060251,52.385150735217564],[4.959738750600026,52.3851538103215],[4.959728695005176,52.38516080236972],[4.959719559466464,52.38516834598457],[4.959718285467475,52.38516946484236],[4.959711446626805,52.38517645951198],[4.959705633172236,52.3851837454872],[4.959700859878815,52.38519131383372],[4.959675841861115,52.38520386016192],[4.959655656622437,52.3852133321796],[4.959551277624859,52.385256212887604],[4.959446216236698,52.38529824620012],[4.959420294415005,52.38530854229781],[4.959296581949742,52.385357806081196],[4.959172166870935,52.38540678857915],[4.959032459186037,52.38546048810354],[4.958935593672522,52.38549637607808],[4.95883805512675,52.38553197393449],[4.958740069255295,52.3855667252534],[4.958673629825181,52.385589798841686],[4.958589580994265,52.38561870456488],[4.958504849877733,52.38564676291983],[4.958419768832004,52.38567454133034],[4.958334137699721,52.38570147284887],[4.958305247243757,52.38571035587994],[4.9582290598031,52.38573283668398],[4.958152305011006,52.385754740174285],[4.958074982608707,52.38577609331174],[4.958002852218214,52.38579520931415],[4.95793771066078,52.38581462922042],[4.957889474549857,52.38582962553451],[4.957841820539971,52.38584518117342],[4.957794731243631,52.38586157469203],[4.957762361595908,52.38587325811068],[4.957727998164616,52.38587847217118],[4.957693302380166,52.38588311879454],[4.957650563935531,52.38588858107765],[4.957617700361252,52.38589211086791],[4.957598279225785,52.38589541079207],[4.957570569534135,52.385900648941664],[4.957543206954636,52.38590644557823],[4.95753837553638,52.38590783911195],[4.957503403850369,52.38591669988618],[4.957469231904108,52.385926399403225],[4.957435389497669,52.38593695393287],[4.957392214122979,52.385951114581594],[4.957307130104734,52.38598058186123],[4.957254495801321,52.38599921093821],[4.957166609769754,52.38604495356504],[4.957113653888531,52.38606189173389],[4.95706036554125,52.38607827143741],[4.957006627310269,52.38609408326107],[4.956952309705716,52.38610904811667],[4.956920674695991,52.386117642223184],[4.956870973493182,52.38613066450529],[4.956820822418742,52.38614311890992],[4.956770209403168,52.38615473576323],[4.956731450571414,52.386163294941625],[4.956689259976977,52.38617129338661],[4.956646616821441,52.38617900256657],[4.956603749547236,52.3861855874603],[4.956560532445969,52.38619189244944],[4.956549620079246,52.38619325484455],[4.956477470991069,52.38615367151582],[4.955673721146126,52.386213093093545],[4.955321210380474,52.386245511877384],[4.955202374648597,52.386251819221926],[4.955083547116232,52.38625728163814],[4.95496450737713,52.386261907309276],[4.954945565841839,52.386262683019694],[4.954801949723714,52.386267497446624],[4.954658353786557,52.38627174555122],[4.954551597956661,52.38627444737332],[4.954429816002252,52.38627708520681],[4.954308036665984,52.38627945329513],[4.95428187396313,52.386279636283604],[4.953752616021364,52.38626786803365],[4.953606716027633,52.38628390721558],[4.953511841927224,52.38631529523994],[4.95311686709824,52.386219765549264],[4.95257837533005,52.38608465661865],[4.952576997360695,52.38608437294479],[4.951818741075341,52.38590379423431],[4.951804773452753,52.38590066012262],[4.951789302160339,52.38589807771571],[4.951773602338456,52.38589633031817],[4.951757544439872,52.38589514782415],[4.951741598575814,52.38589452297432],[4.951725424003507,52.3858947511083],[4.951709344039751,52.38589581543964],[4.951693493614189,52.3858974378472],[4.95167809013675,52.385899915723186],[4.951662681272657,52.38590294182413],[4.951647736780169,52.38590654484053],[4.951633224810389,52.3859109763097],[4.951619529728971,52.38591598599119],[4.951540947024547,52.3859471537378],[4.951528285662595,52.38595160098912],[4.951515057019506,52.38595547993017],[4.95150136373682,52.3859588089137],[4.951487341011918,52.38596128285673],[4.951472971331178,52.385963189299545],[4.951458386712799,52.38596454670307],[4.951443695716059,52.38596477126926],[4.951429007457254,52.38596471722649],[4.951414445007411,52.385963818805536],[4.95140000827902,52.38596208499373],[4.951385917685071,52.38595950761457],[4.951372050243383,52.38595664345004],[4.951358661043223,52.38595294519212],[4.9513492909496,52.38594981895772],[4.951300339088012,52.385932786954356],[4.951255607336871,52.38591829599452],[4.951210297206448,52.385904369110605],[4.951164423472179,52.385890997368726],[4.951106850567744,52.38587534460651],[4.951066560216129,52.3858647975325],[4.951025911796783,52.38585481534809],[4.950984696932474,52.38584567590274],[4.950943241503076,52.38583710177891],[4.950901307842784,52.38582936173055],[4.950891915699189,52.385828482291636],[4.950821966869037,52.38582261628953],[4.950752127424681,52.38581757751317],[4.950682179516392,52.385813113505606],[4.950593404262862,52.38580828345961],[4.950499576109717,52.385803452691164],[4.950405974843513,52.3857994495491],[4.950312147604138,52.3857960207092],[4.950208191972613,52.38579339027634],[4.950105170905654,52.38579132043573],[4.950002361841838,52.38579009612744],[4.949899544452291,52.38578971653851],[4.949796603973867,52.38578990262783],[4.949728324893861,52.38579049528069],[4.949615737957454,52.38579176004973],[4.949503130737681,52.38579359085892],[4.949390527104861,52.38579654503095],[4.94921103064017,52.38579953035407],[4.948906619740225,52.38580711324973],[4.94889078026102,52.38580762085376],[4.948820754162917,52.38580959960422],[4.94877323305282,52.385811391995254],[4.948753483753491,52.38581216372469],[4.948522902338595,52.38581636993951],[4.948093128469141,52.3858411740445],[4.947752964104449,52.38586659671971],[4.947690715741182,52.38587226163583],[4.947325584728942,52.38590460978928],[4.947510450635883,52.3860741832519],[4.947498040220779,52.38609475485589],[4.947496075209981,52.386116641485344],[4.947513471195808,52.38614434310358],[4.947537849964008,52.386170003480636],[4.947548816879546,52.38617946325295],[4.947556798000246,52.38618635944714],[4.947564779123428,52.38619325564075],[4.947572774937425,52.38620015188837],[4.947578629746697,52.38620520670694],[4.947581199032317,52.38620681604615],[4.947590848231532,52.38621288257785],[4.947600482834152,52.386218940066904],[4.947627824716644,52.386236127078064],[4.947661032616755,52.38625279659365],[4.947682402060626,52.38626049742793],[4.947750056958863,52.386354085256215],[4.947745067523421,52.386356565310756],[4.947739027640861,52.38635980541787],[4.94773286713269,52.386363359644996],[4.947724056914589,52.38636897119991],[4.947718495153785,52.3863728781665],[4.947713181758429,52.38637692086922],[4.947705701586735,52.386383202444534],[4.947701061004413,52.386387535248275],[4.947696683743282,52.386391976880894],[4.947690666883131,52.386398821119926],[4.947685308950103,52.38640587451994],[4.947680639677591,52.38641310124074],[4.947676659333135,52.38642047432044],[4.947673397382943,52.38642798488078],[4.947670839406199,52.38643560590548],[4.94766901522552,52.38644329256679],[4.947667924841279,52.3864510448649],[4.947667583476802,52.38645880893033],[4.947667976444069,52.38646658470859],[4.947669104188909,52.38647432726307],[4.94767106622322,52.38648385246896],[4.947674194947261,52.38649570980655],[4.947678044207956,52.38650748892914],[4.947681007475461,52.386515292221006],[4.947684294335067,52.38652305177536],[4.94768982066662,52.3865345764791],[4.947696053382677,52.38654596898906],[4.947702977973441,52.38655721127597],[4.947698185108584,52.3866183994062],[4.947697658629545,52.38661964673626],[4.947697409627914,52.38662105687373],[4.947697469173236,52.38662245916851],[4.947697866642483,52.38662385372966],[4.947699066098206,52.386625844451906],[4.947700229149757,52.38662706210093],[4.94770165775196,52.386628163895864],[4.947738299478285,52.386651137486794],[4.947742121672224,52.38665379403889],[4.947745353566044,52.38665672701785],[4.947747951539607,52.38665989132357],[4.947749857373313,52.38666323281414],[4.947751071601469,52.38666669756572],[4.947751536093485,52.38667022244903],[4.947751452496762,52.386671246731225],[4.947751265983034,52.38667376258193],[4.947750201625252,52.38667740761972],[4.947746657754121,52.38668223881519],[4.947743924786582,52.38668528447656],[4.947569406596218,52.386833211689314],[4.947456810096812,52.38687071259131],[4.947083253133729,52.387126587592824],[4.946893163901708,52.38725789169982],[4.946824877639937,52.38730482299112],[4.946562037544529,52.38748275360962],[4.946404833118604,52.38759648258471],[4.946278237713506,52.387689815484435],[4.946157742449131,52.387781211656254],[4.946024905995301,52.38788014731353],[4.945911728948412,52.38796229523748],[4.945759381710142,52.38806143651718],[4.945664545872797,52.38812343933591],[4.945464733967441,52.388250759320144],[4.945396349539235,52.38829544250702],[4.945072702703899,52.38851556468856],[4.945004121528503,52.388568111108434],[4.944966375874571,52.38859099654014],[4.944908716208888,52.38864133677024],[4.944877168559556,52.388662843244944],[4.944775689851531,52.38873521026618],[4.944745391258737,52.38875813243253],[4.944681619032176,52.38881153248102],[4.944240609976863,52.38918877633043],[4.944180410917574,52.38924023016303],[4.944137467971763,52.389277422203534],[4.94404989900282,52.38934674888116],[4.943634071561099,52.389613976980286],[4.943223952611713,52.38981381764667],[4.943185355412925,52.38982912272961],[4.943020004297008,52.3898950652797],[4.942905164542977,52.3899485604505],[4.942743855828255,52.39002294819398],[4.942688133477639,52.39005251516446],[4.94267358258134,52.39006060336463],[4.942427225088489,52.390194214626256],[4.942295494978936,52.39030577789219],[4.942280703830588,52.39031583343673],[4.942203193080108,52.39036609777525],[4.942026278774774,52.390497722170416],[4.941965389342704,52.39053849495307],[4.941945158271208,52.39055190936241],[4.941898950987935,52.39058178135962],[4.941876552083675,52.39059602345841],[4.941852791490325,52.390606890064745],[4.941828140496315,52.39061718709644],[4.941803010325772,52.39062692508689],[4.941797144106635,52.39062886233473],[4.941735408710239,52.39064998481823],[4.94169695325587,52.39066275543284],[4.941612562876321,52.390689958164906],[4.941590454722397,52.390697181949925],[4.941523316766294,52.39071939846584],[4.941505591246645,52.39072467043076],[4.941500982039013,52.39072577654268],[4.941438273608052,52.3907530607369],[4.941421215895157,52.39076058211465],[4.94141155117013,52.39076334988616],[4.941093946948642,52.39086972725676],[4.941092563297614,52.390870000662495],[4.940888501195564,52.39093832895008],[4.940750018522423,52.390980219763826],[4.940544295024201,52.39100921124747],[4.940444677961419,52.3910195128745],[4.939852507017223,52.39107317199754],[4.939451273280421,52.39110731890694],[4.93931183983406,52.39111662422065],[4.939280841665698,52.391118196677596],[4.939121642759103,52.391131067017035],[4.939093030497184,52.391133493289736],[4.938937275079559,52.39114722124815],[4.938773936128661,52.39115980582272],[4.938482954077709,52.391174998427076],[4.938450732347863,52.39117262944107],[4.93836408151573,52.391161623788946],[4.938318914138269,52.39115668018028],[4.938288296457121,52.39115403861187],[4.938260884504008,52.39115253264239],[4.938233449398465,52.39115186243024],[4.93820580290011,52.39115175763228],[4.938178353504877,52.3911524984141],[4.937757354984202,52.391189935026965],[4.937513129537412,52.3912111985582],[4.937498307729768,52.39121255334577],[4.937474978157754,52.39121554753123],[4.937451877787154,52.391219117792],[4.937429227240341,52.39122323800306],[4.937406923413181,52.39122793473599],[4.937384934371722,52.39123345952404],[4.937363524260989,52.39123984033339],[4.937350410231977,52.39124372711793],[4.937347404902621,52.39124456054282],[4.93734408213875,52.39124482654001],[4.937342308636437,52.39124457174507],[4.937312687879742,52.39123909001838],[4.9372749467029,52.39124933638336],[4.937255140605178,52.39125544464906],[4.937099595135496,52.39131495407802],[4.937087587183622,52.3913328837456],[4.937085510598274,52.39133484414947],[4.937082631810513,52.39133623528277],[4.937081010160091,52.391336795342056],[4.937046388425752,52.39134508519366],[4.936902004723767,52.3913788062784],[4.936898206206511,52.391379627688714],[4.93689430148843,52.391379334226606],[4.936890414290343,52.3913787622138],[4.936887093985859,52.391377338529445],[4.936884587293064,52.39137536070395],[4.93688345571191,52.391373954328444],[4.936880737158981,52.39137113984597],[4.936796668384521,52.391387950652515],[4.936790306016596,52.39139242028342],[4.936614839804567,52.39141281995951],[4.936523834610146,52.39140095155723],[4.936443204987884,52.3913843591164],[4.936387060106863,52.39137543640355],[4.936362653006942,52.39137169451906],[4.936207822584989,52.39134920218146],[4.936206344652945,52.39134863033208],[4.936144820059332,52.39133856356362],[4.9360543764722,52.391337940488796],[4.936003056074049,52.39133999191508],[4.935907508032209,52.3913458114039],[4.935630010875997,52.39136665667496],[4.935580853104956,52.391369839619664],[4.935568910522368,52.39137119615646],[4.935527321349893,52.391375531394246],[4.935485606041297,52.39138071097555],[4.935456394868755,52.39138565062827],[4.93532718983915,52.391405946210035],[4.934982672997157,52.39145995933554],[4.934804149050704,52.3914876516166],[4.934676479150978,52.391504294378954],[4.934618893322246,52.39151278338924],[4.934618890478042,52.39151306199555],[4.934617627131984,52.39151305716825],[4.93458154944744,52.39151712552896],[4.934498822711457,52.39152468255464],[4.934312976663465,52.39153997910307],[4.934313079861639,52.391541381571194],[4.934258578533602,52.391546029194465],[4.934196481373424,52.391551325410774],[4.934118361139209,52.391558054949634],[4.933957552166238,52.39157147841583],[4.933956171297898,52.391571473131776],[4.933953538923624,52.39157174167579],[4.933661532282916,52.39159618478906],[4.933582630210963,52.391601778537066],[4.933450776941605,52.39161082736808],[4.933349375621699,52.39161717960568],[4.933177035757359,52.39162325985594],[4.93302272926182,52.39162856416663],[4.933007813095459,52.39162906420397],[4.932993005468385,52.391629007421244],[4.932812742217938,52.39162410979743],[4.932610790795619,52.39161967690889],[4.932507762772014,52.3916170345311],[4.932390264919911,52.39161434549024],[4.932244097609333,52.391609568931024],[4.932055117372383,52.39160378284337],[4.931887287676641,52.391596963291704],[4.931858606600625,52.391596008196096],[4.931696970173754,52.39158836734405],[4.931662318921566,52.39158654440189],[4.931565962917136,52.39158224617363],[4.931287216328859,52.3915685279327],[4.930970962661946,52.39155214802705],[4.930845925521504,52.39154549182059],[4.930284560283355,52.391513272896056],[4.930283884540438,52.39151327028928],[4.930283194107464,52.391513267625854],[4.930115731909445,52.391503633843534],[4.929904440269073,52.39149186231722],[4.929785167580766,52.39148325894908],[4.929784359627875,52.39148325582887],[4.929783672162731,52.39148296556905],[4.929754670677625,52.39148032803487],[4.929525063077859,52.39146399126437],[4.929511418685962,52.39146225784966],[4.929306969343978,52.39144517302939],[4.929306161391824,52.39144516990592],[4.929305470959983,52.39144516723677],[4.929197221799118,52.3914360486566],[4.929196531367429,52.391436045986765],[4.929195843906877,52.391435755723556],[4.929129441455676,52.39143157133257],[4.928970726044251,52.39142000145993],[4.928941827479542,52.39141736412455],[4.928825196311674,52.3914076465514],[4.928184487657393,52.391347302773774],[4.928168431308886,52.39134583847405],[4.928093003239527,52.39133796054633],[4.927923420322961,52.391321853315866],[4.927661694814185,52.39129331796215],[4.927025576785812,52.39121136141479],[4.926911328677156,52.391194353235655],[4.926541299795833,52.39113954596977],[4.926400689383751,52.391119055404744],[4.926267535694347,52.39109915991336],[4.92609119632916,52.39107178918975],[4.926077666814933,52.39107033444306],[4.925820418007853,52.39103113510323],[4.925656324756185,52.391005779729475],[4.92558549846028,52.39099623744114],[4.925469779491254,52.39097668761561],[4.925175069492006,52.39093200215922],[4.925012300370165,52.39091357155157],[4.924869610842988,52.39096298603539],[4.92473592219145,52.39101983233396],[4.924690057815173,52.39106777316195],[4.924617518251888,52.39106193550658],[4.92434328281159,52.39096278184971],[4.924298099016945,52.39094409968277],[4.924280386787056,52.39090146491193],[4.924316248422746,52.39065361761499],[4.924242178331148,52.390617161782394],[4.923761401674819,52.39040968889113],[4.923628230545012,52.390337265574026],[4.923056364238231,52.39007213780502],[4.923003340939095,52.39005030569704],[4.922924781332049,52.39003314591567],[4.92283550749088,52.38999964944812],[4.922158322251228,52.38968860789276],[4.922083680891334,52.38963691436471],[4.921995392879638,52.38959640176502],[4.921135847014794,52.38920964483345],[4.921015806259346,52.38915468020777],[4.92091235477155,52.389116084391375],[4.920027469247801,52.388718542214406],[4.919658304593245,52.38855249439207],[4.919455872620087,52.38844188381656],[4.918859055403511,52.3881755036492],[4.916951151291169,52.38731917540244],[4.915770956003318,52.386790106947636],[4.915163109111172,52.38651805572484],[4.914364496653669,52.3859891811067],[4.914170666717182,52.3860053398656],[4.914057322209334,52.38597831954386],[4.913128550863611,52.3852965933005],[4.912538276719602,52.38488613463481],[4.912412905981697,52.38479603395309],[4.911733447632327,52.38429336855069],[4.910994329490315,52.38375900239973],[4.91046880158848,52.383861702357244],[4.910385986470854,52.38370630453978],[4.910345551168729,52.38353958206884],[4.910360764128398,52.38343339996998],[4.910371137518866,52.383341542717524],[4.910315165970623,52.38330973463776],[4.910121757358588,52.383403721747825],[4.90972155380941,52.38361926018913],[4.909617871225676,52.38366968541479],[4.909531646603631,52.38369475482226],[4.909448304721184,52.383718092186726],[4.909299485373242,52.38370170937251],[4.909255348357433,52.38367303132344],[4.909188593781052,52.38362236798089],[4.908962585066693,52.38345928182742],[4.908787054956703,52.38333346435677],[4.908664010204446,52.38323989979432],[4.908500583043245,52.38316456965754],[4.908360380066989,52.383109447628144],[4.908261560465089,52.3831066842641],[4.908185589571967,52.38310988219457],[4.90802670813856,52.38323109441756],[4.907892822458168,52.38334300648042],[4.907837657306082,52.38340782614453],[4.907820840771304,52.383445349048245],[4.907822485628683,52.38345270403404],[4.907836878594423,52.3834797235381],[4.907865961848088,52.38350680609519],[4.907850793131755,52.383551681303146],[4.907806240720593,52.38359644206102],[4.907761695611657,52.38364119833762],[4.907702460005404,52.38368589871339],[4.907716269862378,52.38376684374782],[4.907568137424387,52.383883081945974],[4.907538567995701,52.383900937545974],[4.907523681644685,52.38391885261139],[4.907479429066866,52.38393664872354],[4.907420481580679,52.38395438618624],[4.907361634229688,52.38396313724431],[4.907370262139448,52.38390286307225],[4.907322321189387,52.383947544307816],[4.907220548404911,52.38398540141488],[4.907029883511536,52.384090988714746],[4.90693263901249,52.38414873569485],[4.906904179453282,52.38415900913707],[4.906875707692227,52.3841704077805],[4.906805694011751,52.38420382759553],[4.906777956897079,52.38422197804424],[4.906735642499429,52.38425157357724],[4.906542226719411,52.38438307838777],[4.906490101523016,52.38441797269579],[4.906482805133699,52.384424405220585],[4.906467680943885,52.384428028777165],[4.90646169792875,52.38444744484122],[4.906481678330433,52.38446872788195],[4.906507411919389,52.38449179585622],[4.906573389166015,52.38453270591985],[4.906656683457471,52.3845736772262],[4.906745807541125,52.38460937838123],[4.906944070732241,52.38470029301637],[4.907202779167845,52.384807351520145],[4.90742992492993,52.38489661181829],[4.907576611765863,52.38495021529503],[4.907683183712293,52.384975380937526],[4.907763872826486,52.38498984523372],[4.907851788521717,52.38500432973701],[4.907921028568483,52.38500991269766],[4.908024917322874,52.38501563581369],[4.908206712060069,52.38502697668685],[4.90835680905426,52.385032877405315],[4.908443347104565,52.38504030057158],[4.908671331128117,52.38505358902784],[4.908879128165855,52.3850632633572],[4.909164774395816,52.38508384805117],[4.909360874647547,52.38510761193565],[4.909620276365736,52.38515106213631],[4.909732546249757,52.38518331321916],[4.909688603593829,52.38524144809392],[4.909699972829675,52.38525915471777],[4.909988850696278,52.38538223691525],[4.91035667779787,52.385548031167126],[4.910968640771944,52.38583496244279],[4.911904070237416,52.38625392379658],[4.912128240360829,52.386353768518426],[4.912682901758519,52.386601589273496],[4.912731839226313,52.38661591395741],[4.912962428116908,52.386655709199246],[4.913080136697649,52.386719786227594],[4.913317300757269,52.3869539654855],[4.913449468400263,52.387016329421094],[4.913645032283505,52.387091322734],[4.913705345943637,52.38712160067514],[4.913761360146065,52.38715009082713],[4.913973432185942,52.38730112235683],[4.914148277732243,52.38742372960573],[4.914326700369645,52.387480983553495],[4.914395474162266,52.38753072625712],[4.914673520886343,52.387724423689484],[4.914894246331668,52.38787725863075],[4.915122106259383,52.388038947479096],[4.915477526745557,52.38828949278025],[4.915830076328811,52.388538254994096],[4.91650220012566,52.38901444325259],[4.916737284191957,52.3891761576321],[4.917221616170574,52.38952614578601],[4.917568056837179,52.38980844738883],[4.917588044986537,52.38982972854089],[4.917600820519789,52.389850990080156],[4.917617858805047,52.3898775532646],[4.917657554536251,52.389946619053354],[4.917691739326514,52.3899909289335],[4.917788745673156,52.390102625639265],[4.918363173449928,52.39067381984866],[4.918496089022418,52.39080332782848],[4.918641744485407,52.390957620095406],[4.91870148804288,52.39104266399064],[4.918926333525459,52.39135628777009],[4.919074162638362,52.39157772588666],[4.919120940414087,52.39166095672813],[4.919293751506316,52.391977897269115],[4.919601074135021,52.39254980921397],[4.919666125255444,52.39268080945097],[4.919849984070535,52.39304726974615],[4.920094588247547,52.39354118954803],[4.920224830819893,52.39378906133045],[4.92051758797865,52.39437504178233],[4.920738156102414,52.39482292049831],[4.920948624993385,52.3952689884298],[4.920964697069512,52.39538919861383],[4.920978692678646,52.395431657438884],[4.921185557193451,52.395808811366045],[4.921328358890568,52.395963088870566],[4.921359453543385,52.396026816759196],[4.921442811955013,52.396202062190774],[4.921493728924468,52.39630473956265],[4.921533306510693,52.396386170468645],[4.921550030221841,52.396444539090695],[4.92156397102046,52.3964923003322],[4.921563562697951,52.3965311703076],[4.92156861270765,52.39660009846066],[4.921553558280404,52.39665834215734],[4.921532618534584,52.39672716814017],[4.921502954851901,52.39680126253327],[4.921479491960371,52.396834739153036],[4.921400430969951,52.39693690544815],[4.921299639533637,52.39704605051282],[4.921220837762432,52.39712348369879],[4.920870761205109,52.397454271517766],[4.92055285301777,52.397746313450334],[4.920320918367561,52.397966261965],[4.920212874698765,52.398077148077554],[4.920148455891908,52.398159930968326],[4.920031273419233,52.39831671674014],[4.919948157321667,52.398528407487106],[4.919936068972979,52.39857959837273],[4.919928897911478,52.39871208393285],[4.919953287011085,52.398864134256904],[4.919983208388139,52.39903916982378],[4.920000325239089,52.3990908084403],[4.919798154469353,52.39928936584891],[4.919975115768024,52.3993594395826],[4.920077378272354,52.39941544943852],[4.920202101308321,52.399497108612316],[4.920309032623909,52.39956747196242],[4.92050674935025,52.39970530365041],[4.920490509759366,52.39972097703354],[4.920473009701605,52.39973634885603],[4.920454722089585,52.39975116033893],[4.920435276574913,52.399765697627224],[4.920415161236964,52.39977965706371],[4.920394240717122,52.39979333470692],[4.920372282864774,52.39980645102459],[4.920349537552112,52.39981899801327],[4.920270008134764,52.39986166346893],[4.920196114993583,52.399902095192886],[4.920187337169121,52.399906833026115],[4.920167606880683,52.399916309104626],[4.920151694042355,52.3999232657156],[4.920021349289802,52.399983130721544],[4.919864835260274,52.40005273381569],[4.919850412181845,52.400059139029636],[4.919838998293209,52.40006443265867],[4.91981247671775,52.400075562573356],[4.919785273472602,52.40008584495394],[4.919775020495566,52.40008973209756],[4.91974691215058,52.40009945366409],[4.919718342531264,52.40010832856518],[4.919689220542796,52.40011663505789],[4.919457363869955,52.40017863329082],[4.919416055179871,52.40018886887767],[4.919306481656824,52.40021567767982],[4.919238237368171,52.40023169371742],[4.919177242534017,52.400247181124044],[4.918989523606399,52.40029391204772],[4.918960060597332,52.400301093558255],[4.918847941477103,52.40032958155182],[4.918667145640907,52.40037323860017],[4.918584844869363,52.40039426769576],[4.91846986612659,52.40042217779821],[4.918398159290481,52.40044042656268],[4.918355921505985,52.400450936720596],[4.918283532943094,52.4004683378792],[4.918240830919383,52.40047827993702],[4.918108727989623,52.40050950125108],[4.91781793954391,52.400574830996504],[4.917728160850567,52.400595677077625],[4.917083834179865,52.40074753848663],[4.917061734941648,52.40075306805981],[4.91690243793842,52.40079344636223],[4.916692365097699,52.400847095265284],[4.916538013290358,52.40088664788156],[4.91652764249463,52.40088913220419],[4.916430028887847,52.400914305180095],[4.916208716466053,52.40095667400554],[4.915592969949561,52.401052252473555],[4.915536658667646,52.40105820278954],[4.91546554255102,52.4010635368901],[4.915305992010177,52.40106262280472],[4.915130363290494,52.40105096711263],[4.915114873930873,52.40104978193063],[4.914922428378631,52.401033286471986],[4.914659736335025,52.400994320014085],[4.913955710342979,52.4008651252997],[4.913828859972233,52.40084165503726],[4.913681792098796,52.40081809483772],[4.913572242232393,52.40079821660988],[4.913073054398685,52.400748522271016],[4.912449189310048,52.40073195799374],[4.911990876682781,52.400712846077575],[4.911983547821967,52.4007125380602],[4.911976218864888,52.40071223902955],[4.911968890004279,52.400711931011244],[4.911961561143773,52.40071162299246],[4.91195423228337,52.40071131497327],[4.911946888729986,52.40071100689466],[4.911832123356906,52.40070622335056],[4.911811248346331,52.400705780073594],[4.911790376421109,52.40070504920058],[4.91176955156448,52.40070403989578],[4.911744883099797,52.400702457926464],[4.911728189700078,52.400701213542376],[4.911711074155275,52.40069959896799],[4.911696738918451,52.4006990560937],[4.911679445130191,52.400697620552144],[4.9116577286559,52.400693435009345],[4.911642800043532,52.400679722844316],[4.911592058070644,52.40057198193738],[4.911527552161584,52.40044609360407],[4.911525917382864,52.40044233919083],[4.911500966884655,52.40037532596657],[4.9114692160789,52.400265621064065],[4.911444379313481,52.400188029820484],[4.911400927210603,52.400128114405945],[4.911375346731893,52.4001198149225],[4.910825156284189,52.40005888733765],[4.910467311444188,52.40001648204255],[4.910389285093409,52.400007288205536],[4.910195578257911,52.400011631312],[4.910146001986735,52.400047166560505],[4.910137885013854,52.40005183441194],[4.910130512538264,52.40005695464354],[4.910126050613845,52.400060594646874],[4.910120096571427,52.400066349725726],[4.910116629600202,52.40007038020468],[4.910113587463852,52.40007452923391],[4.910109844978975,52.40008094931754],[4.910108001670719,52.400084294286565],[4.910106083446666,52.40008777376851],[4.910105122399648,52.40008969325463],[4.910102389766382,52.40009511977624],[4.910101428912532,52.40009702128782],[4.910099818367102,52.40010058289773],[4.910097214292077,52.40010635146757],[4.91009513036868,52.40011157388581],[4.910093454375184,52.40011575537973],[4.910092735088631,52.40011705569174],[4.910084477257507,52.40013207674319],[4.910076386183438,52.40014525599774],[4.910069108024688,52.40016072138874],[4.910063856347159,52.40017357054829],[4.910062083289662,52.400178578514456],[4.910059112242235,52.400187041899784],[4.910055065169917,52.400201280008794],[4.910051588685874,52.40021711122967],[4.910049169315514,52.40023301860964],[4.910048143892142,52.40024364686714],[4.910045835194468,52.400250638945685],[4.910045060311496,52.40025300856357],[4.910039561918144,52.400266935245924],[4.910035334026833,52.40027613055505],[4.910029602311322,52.400287162274246],[4.910027050170704,52.40029765855456],[4.91002570162183,52.400305544277444],[4.910024808263535,52.40031345879687],[4.910024384982528,52.400321384197525],[4.910015066234269,52.400342135089545],[4.910005578515835,52.40036220223888],[4.909996254540316,52.40038207231875],[4.90998739166713,52.400400056849314],[4.909982750622985,52.40040804614715],[4.909976326291118,52.400417897691476],[4.909964752914166,52.40042150903923],[4.909947008755483,52.40042643468457],[4.909934942877334,52.400429387946936],[4.909917534830038,52.40043311958482],[4.909902482109946,52.400436447278445],[4.909887285458177,52.40043949577315],[4.909862318043631,52.40044386202939],[4.909841068552076,52.40044682321431],[4.9098142022692,52.40045013924127],[4.909756390073637,52.40045628747668],[4.909720288735522,52.40046029426016],[4.909705017363985,52.400462093147254],[4.909694380288274,52.400463353479],[4.909683728615797,52.40046460476327],[4.909679888708588,52.400465056642055],[4.909673176598218,52.400466153040746],[4.909662710994859,52.40046786344331],[4.909652245390695,52.40046957384489],[4.909648065026004,52.40047025802897],[4.909641807719135,52.40047141917288],[4.909617912076791,52.400475861599645],[4.90958210609159,52.400481091851944],[4.909558106938191,52.40048423064028],[4.909542128834849,52.4004861614715],[4.909511805841698,52.400491180132406],[4.9094830946163,52.40049661871729],[4.909463479776256,52.400499235908356],[4.909443779875993,52.4005015651484],[4.909423994819002,52.40050361542463],[4.909405271726118,52.400505292499666],[4.909386980314369,52.40050781615188],[4.909371924851086,52.40051002929879],[4.909356897512668,52.40051235939666],[4.909329915608843,52.400516852229465],[4.909300644459529,52.40052243231379],[4.909264682127279,52.400529890776276],[4.909231776357878,52.400535959487605],[4.90920966663719,52.400539654075615],[4.909193432223142,52.40054218599805],[4.909150608783078,52.40054683955659],[4.90905059525218,52.400557158168745],[4.909019603257406,52.400561526892794],[4.908984958657951,52.40056668975179],[4.908946140163038,52.40057193461367],[4.908907879406743,52.40058812867037],[4.908864088558284,52.40063748278186],[4.908908186746341,52.40078294617145],[4.908892958652854,52.40081612100765],[4.908877268330064,52.400832217444425],[4.908825312930512,52.4009763582556],[4.908821833644287,52.40098151210258],[4.908817929419479,52.40098655638167],[4.908813600449991,52.400991473118275],[4.908808861719915,52.40099623540995],[4.908801029318162,52.40100309730492],[4.908795325201512,52.40100745125321],[4.908789270387789,52.401011624031945],[4.908782864973983,52.40101560665385],[4.908776138637482,52.40101937227574],[4.908769106071491,52.40102292095697],[4.908761781969216,52.40102625275675],[4.908754196008129,52.40102934083196],[4.908746348188298,52.401032185182586],[4.908738267993192,52.401034776939994],[4.908732239464191,52.4010365141695],[4.908517293156467,52.40111996790412],[4.9085038210792,52.40112520718889],[4.908490319612321,52.4011304463534],[4.908476847625762,52.40113567664781],[4.908463390038003,52.40114093396186],[4.908449932349972,52.40114620026161],[4.908436474755829,52.40115145757255],[4.908369776893941,52.401177521798566],[4.908188452765221,52.4012415806793],[4.907852486140582,52.4013602786727],[4.907283964037377,52.40156781141215],[4.907260434115577,52.40157639815157],[4.907236933571392,52.40158498500535],[4.907213418324739,52.40159357179492],[4.907189888375614,52.401602158520255],[4.907166373110749,52.40161074530039],[4.907142843240753,52.401619323029095],[4.90646946842543,52.40186512772112],[4.906466574665085,52.401866392223795],[4.906463289613381,52.40186850896498],[4.906460823105456,52.40187102448437],[4.906182085292698,52.40197034792205],[4.906178115221742,52.401970592443135],[4.906172315939559,52.40197149462231],[4.906168632227054,52.40197243235475],[4.906165151394353,52.40197363155267],[4.905285632750944,52.40231965836022],[4.905263349142978,52.4023284205391],[4.905241065428469,52.402337191701086],[4.905218781802887,52.40234595387149],[4.905196498266244,52.402354707050506],[4.905174200027188,52.402363460165475],[4.905151887085705,52.40237221321646],[4.90470007741497,52.402549470695234],[4.904620520866046,52.40258873721944],[4.904493453148779,52.40263917947728],[4.904365108727623,52.402685392201356],[4.904128800304655,52.40276837343684],[4.903997747537873,52.40282032681362],[4.903873585926481,52.40286017483821],[4.903828547123354,52.40288849988898],[4.903790215169725,52.40292029455997],[4.903759257665088,52.40295497738502],[4.903712709826805,52.40303271031535],[4.903682545840403,52.40308623446595],[4.903679384151957,52.403091838840446],[4.90367622246271,52.40309744321477],[4.90367306077266,52.40310304758908],[4.903669899081807,52.40310865196328],[4.903666737390155,52.40311425633741],[4.90366357579576,52.40311985172418],[4.903612587720095,52.4032125938345],[4.903587118700576,52.4032573382191],[4.903514227385761,52.403331961648114],[4.903436221323695,52.40340800216866],[4.903367568652024,52.40345909518262],[4.903316911391825,52.403524138588075],[4.903289183627943,52.40356845126161],[4.903279207872191,52.403651708013896],[4.90328306548428,52.40368465450614],[4.903307046624061,52.40372777632424],[4.903343190264358,52.40377806602922],[4.9033764894328,52.403815671525244],[4.903405326790189,52.403844711539364],[4.903447545151793,52.40388506770783],[4.903508821054366,52.40394173336089],[4.903538073193214,52.403967791136864],[4.903600967027176,52.40401895391979],[4.903703413612319,52.40410028784851],[4.903779332498808,52.40416041943635],[4.903681700389153,52.40422770694234],[4.903756328993299,52.4042687345322],[4.903867478320731,52.40433097811975],[4.903950647654818,52.40437850254662],[4.904037457034767,52.404429133509474],[4.904087326410164,52.40445657843881],[4.90415147862632,52.40449083130668],[4.90418226392474,52.404509767968406],[4.904212370175629,52.40452898945817],[4.90424154767283,52.40454848577075],[4.904267851175926,52.404567413126244],[4.904444319231861,52.40466222400957],[4.904617009790444,52.404754484722794],[4.904727505039982,52.404812239991784],[4.904859018210774,52.40488046146006],[4.90499123161984,52.404947840792],[4.905117950149031,52.405013804529425],[4.905184294202166,52.40504664570107],[4.905241161952335,52.40507525105435],[4.90524263691061,52.40507610189323],[4.905317186931311,52.40511515987082],[4.905383618157493,52.40515082340336],[4.905384405604408,52.405151383839716],[4.905385093218737,52.40515166525324],[4.905479509542379,52.405200357785986],[4.905604977996377,52.40526519245639],[4.905703270072174,52.40531698332481],[4.905745272934669,52.4053396231351],[4.905825394426059,52.40538264001722],[4.905909623356269,52.40542904389671],[4.905961057010836,52.405460152349725],[4.906011573618348,52.40549181428895],[4.906034952858074,52.40550679278018],[4.906093322967229,52.40554466109011],[4.906153505524203,52.405584792628],[4.90615429289101,52.40558536204647],[4.906154862959462,52.40558564297809],[4.906281003326852,52.40567406321778],[4.906379678186494,52.40574355173295],[4.90638058311696,52.40574412162705],[4.906380932767769,52.405744401662986],[4.906424084808444,52.40577632113698],[4.906458028573566,52.40580229834906],[4.906477728906477,52.40581641698397],[4.906521025623404,52.4058472045662],[4.90658775917905,52.4058971859488],[4.906653681551971,52.40594745160691],[4.906718584089659,52.40599827032482],[4.906766839242745,52.40603666349273],[4.906777512618636,52.40604709648734],[4.906783073708131,52.406053302534595],[4.906828496994264,52.40608859244491],[4.906873006153564,52.40612416623552],[4.906905659817644,52.40615126154017],[4.907027018169647,52.40625679201857],[4.907043512277647,52.40627118516619],[4.907093274907311,52.40631969540048],[4.907142005981121,52.40636848004984],[4.907155059023715,52.40638173578285],[4.907137053517265,52.40640104017124],[4.907197809159452,52.406463076362186],[4.907207099405498,52.406462835385994],[4.907231349730508,52.40646124395968],[4.907290455654381,52.40652636516559],[4.907348530083154,52.40659176077953],[4.907405569899397,52.40665771839464],[4.907461566632729,52.406723662769465],[4.907599744249461,52.40688852522782],[4.907622755898655,52.40691585991076],[4.907644838669896,52.406943478433455],[4.907651373361852,52.40697788259679],[4.907657966844103,52.40699734954472],[4.90767594984483,52.40701407642527],[4.907691549879517,52.40704051828133],[4.907716284924968,52.40704712544185],[4.907737038206315,52.40706995714266],[4.907742660335304,52.40707054611678],[4.90774803829799,52.40707196995274],[4.90775283702263,52.407073957665425],[4.907756953740266,52.40707649985141],[4.907807096706412,52.40714298658548],[4.907862382682374,52.407210896177034],[4.907900498921445,52.40725346304577],[4.907904932365715,52.4072579748002],[4.907907981444086,52.40726275957057],[4.907910098598188,52.407268106791754],[4.907911084218441,52.407273449435195],[4.907913059509107,52.4072810429915],[4.907916952444349,52.40729340775295],[4.907922214957352,52.407305508425765],[4.907928388579715,52.407317612784134],[4.90793572624233,52.407329434246776],[4.907944098604618,52.40734070266111],[4.907953734667822,52.407351985174486],[4.907959163457266,52.4073595837123],[4.90810668126862,52.40751044464168],[4.908112339107306,52.407518610319464],[4.908120506741125,52.407527073750394],[4.908148640672722,52.407557799402475],[4.908162378562287,52.407573017093135],[4.90818902219982,52.407604302930274],[4.908201831200693,52.40761980446477],[4.908209769864761,52.40762770074248],[4.90822871659983,52.407649122977816],[4.908246514101853,52.407670819180574],[4.908263382703192,52.40769279922975],[4.908270621118715,52.407702939581256],[4.908285649807802,52.40772519080577],[4.908299746678985,52.40774799549503],[4.908312929437781,52.407771075104115],[4.908318327938842,52.40778148663196],[4.908323747616186,52.40778993894061],[4.908344760754836,52.4078540607755],[4.908352428935279,52.407888352633904],[4.908358616254253,52.40792096680613],[4.908363560682312,52.407953000745785],[4.908367012654117,52.407983069348504],[4.908367940753612,52.40799374142212],[4.908369803061684,52.40802268014526],[4.908370149363833,52.40803279263398],[4.908370524417348,52.408062003962534],[4.908370261175268,52.40807548435057],[4.908361248055376,52.40816700495552],[4.908347419432159,52.408192797499886],[4.908305974032312,52.40825554341766],[4.908264286904116,52.40832024764749],[4.908223385680037,52.40839788824498],[4.908211230060091,52.40843884068739],[4.90816054396806,52.4085175561681],[4.908134717704339,52.40856014300046],[4.908108876695153,52.40860272976733],[4.908048702044653,52.408699948316354],[4.908012124546356,52.408758219997715],[4.907956526342764,52.4088453459203],[4.90789067091047,52.408947313839846],[4.907863589434043,52.40898905069502],[4.907848671838558,52.40900949113069],[4.907832496415851,52.40902936924187],[4.907815395140663,52.40904924360451],[4.907810396566404,52.409054840649496],[4.907588948658393,52.40944462780744],[4.907565758555498,52.409477105107975],[4.907540857968442,52.409516891411705],[4.907514714305535,52.40955610645619],[4.907498396156849,52.4095796329213],[4.907477746182307,52.40960960395187],[4.907456073587719,52.40963900461697],[4.90744151179072,52.40965776575327],[4.907422959272405,52.409674542435724],[4.907403381130563,52.40969102735752],[4.907383000627694,52.40970696078103],[4.90735012543441,52.40973126500749],[4.907318894222126,52.40975304137137],[4.907254930079803,52.409795473524575],[4.907223481843553,52.40981556829689],[4.907189623418339,52.409835653296014],[4.907164805632226,52.409848755575304],[4.907139288552744,52.40986128879511],[4.907112751787187,52.409872982027736],[4.90709971123762,52.40987882507121],[4.907065747963743,52.40988823230328],[4.907000083190835,52.40988684272102],[4.90692555563597,52.40991940839975],[4.906919595212464,52.40994999611213],[4.906905560043239,52.40997437658707],[4.906848818436721,52.40999717286163],[4.906670960601937,52.410071444426094],[4.906537518646232,52.410126509605576],[4.906474441464255,52.41015209312637],[4.90641480614631,52.410177411964284],[4.90633508031539,52.41021219409752],[4.9062560566569,52.4102472666318],[4.906189461519193,52.41027873160682],[4.906049453234361,52.41034557033897],[4.905977900971153,52.41038010680909],[4.905906671914797,52.41041464454895],[4.905777184553249,52.41047618704532],[4.905646879893606,52.41053716884534],[4.905597475264738,52.41056225023799],[4.905514917419465,52.41060460586928],[4.905414781103368,52.41065783689768],[4.905330355263821,52.41070299793302],[4.90531199238904,52.410713034332375],[4.905228483120873,52.41075903487288],[4.905173823003165,52.410790269212356],[4.90511026610887,52.41082736321209],[4.905047511250753,52.410865026662464],[4.904889842078297,52.4109621254086],[4.904733146289013,52.41104265471677],[4.904619048784172,52.411103701384846],[4.904601741846177,52.41111121645076],[4.904479590378315,52.411172221190654],[4.904408410203626,52.41120339685591],[4.90436720733393,52.41122288490009],[4.904332187963061,52.411244087805905],[4.904301555475726,52.41126193821987],[4.904265640136755,52.41128173538381],[4.904233414878195,52.41129873445056],[4.904052963792475,52.411399675795984],[4.904024484225591,52.41142089629171],[4.904009094958812,52.41143178945326],[4.903954987296284,52.411466117228734],[4.903899380491913,52.41150043886424],[4.903843782817774,52.41153391567358],[4.903786351015821,52.4115671063568],[4.903749584027078,52.41159082748413],[4.903680192565841,52.41163576108609],[4.903644113069284,52.4116597725905],[4.90357621437552,52.41170526945703],[4.903508761819851,52.411751621930875],[4.903437139496826,52.411801606318875],[4.903366316206559,52.41185242977615],[4.903348836030118,52.41186499500013],[4.903278690917414,52.411916953615886],[4.903261560370389,52.41192979887155],[4.903192661237439,52.41198204114201],[4.903168932237975,52.41200019808098],[4.903129982920127,52.41203392232039],[4.903110238507969,52.41205058560524],[4.903066774776334,52.41208989067224],[4.903031240871531,52.41211905413119],[4.902994669976669,52.41215299476065],[4.90297488617039,52.412173252913874],[4.902925466685352,52.412220901071265],[4.902846322989282,52.412301331411555],[4.902791969841156,52.412352554395724],[4.902738560522979,52.41240616293593],[4.902698015945478,52.41244726834112],[4.902643221485872,52.41249715029503],[4.902604685944964,52.41253462389437],[4.902565245219967,52.41257153654549],[4.902524884613113,52.41260788818741],[4.902499730517415,52.4126299667561],[4.902455800830448,52.41266742722708],[4.902422313820419,52.412694810338465],[4.902376553067905,52.41273169706733],[4.902341940384508,52.41275851831669],[4.90229237535848,52.41279651289845],[4.902269671849479,52.412813559387466],[4.90221759359543,52.412851534663965],[4.902158275581431,52.41288893203426],[4.902114773483037,52.41291682230371],[4.902068493081586,52.41294474611947],[4.902027132946389,52.41297029935583],[4.901905046354137,52.4130433720932],[4.90184979562081,52.413073038631936],[4.901794643831645,52.41310708252564],[4.901714090357026,52.413150854778415],[4.901607707787708,52.41321920114984],[4.901536747621934,52.41326736261142],[4.901445150307024,52.41332501124909],[4.901358465164157,52.41337967809041],[4.901259946291928,52.4134438771469],[4.901170255562392,52.41350451728418],[4.901060813595753,52.413583626780806],[4.900999680137575,52.41362823318767],[4.900926691697409,52.413682964904424],[4.900880337531047,52.41371746689716],[4.900715631357476,52.41384060431001],[4.900561899497409,52.413944058723736],[4.900414975081134,52.41404992262737],[4.900272886628048,52.414162385166165],[4.900217596136517,52.414208812706434],[4.90018096207855,52.41424814478055],[4.900138202134348,52.41430321596048],[4.900008807283071,52.41446952131138],[4.900008451476222,52.41446979846478],[4.900008210186523,52.41447035470556],[4.899971780444164,52.414525820345375],[4.899850514353931,52.41468260509789],[4.899737959173346,52.41483043793447],[4.899719686274937,52.41485339804446],[4.89947633290208,52.41516638830695],[4.899441699856643,52.41520273550589],[4.899387306348555,52.41525694064402],[4.899323122320329,52.41531658789624],[4.899250424336812,52.415389879218885],[4.89921690546558,52.41541978681181],[4.899164812120429,52.415458614504075],[4.899008920030258,52.415594530288836],[4.89886844752205,52.41567563097482],[4.898736909445911,52.4157742312838],[4.898587342297127,52.41588286817924],[4.898548598527149,52.41590799059451],[4.898431301869258,52.415985303684316],[4.898428423339959,52.41598641526336],[4.898424389905607,52.41598695585784],[4.898390714506088,52.41601097567572],[4.898285385701602,52.4160759800074],[4.898228861377253,52.416108605517394],[4.898115900906094,52.41615785884721],[4.898096645358533,52.41616452008347],[4.897977742040524,52.416211492856426],[4.897896644787622,52.41622379458996],[4.897815439137579,52.416235259971195],[4.897733787234674,52.41624586962895],[4.897673878619212,52.41625348630798],[4.8976396270134,52.41625643653796],[4.897605267154042,52.41625854147395],[4.897583442587234,52.41625957474576],[4.897521638874211,52.41626044279771],[4.897459741610843,52.41626046559398],[4.897411872605224,52.41625998911374],[4.897350678580998,52.416258891306725],[4.897267663874977,52.41625714601178],[4.897184670136859,52.416254834524906],[4.897101670956265,52.41625168710813],[4.896750891167995,52.4162375900807],[4.896684668873247,52.41623395458084],[4.896502416326265,52.41622476956057],[4.896419488006597,52.41621656192526],[4.896066932002625,52.4161757802379],[4.89605213516468,52.416174011254945],[4.896042888262556,52.41617280453352],[4.895698671446426,52.416132964065405],[4.895344855506063,52.41605088583835],[4.89507600660511,52.415970849154554],[4.894936712528249,52.41592926897301],[4.894754750926425,52.41590463273475],[4.894709532868772,52.41590108342244],[4.894571152804255,52.41589235638841],[4.894570034283897,52.415899092459],[4.894539278272403,52.41589700527898],[4.89432830970769,52.415888820958514],[4.894233627448723,52.415884211872886],[4.89415339241897,52.41588107388758],[4.894055708685199,52.415876730786394],[4.893975145032003,52.41587274647541],[4.893889645941545,52.41586846294499],[4.893804940664081,52.415864173670734],[4.893805327851161,52.4158610835388],[4.893721533776669,52.41585680698681],[4.893721167589021,52.41585933098533],[4.893554188409952,52.41585021401938],[4.893474428062603,52.415845378889586],[4.893300469272334,52.41583342834173],[4.893301073859139,52.41583061773405],[4.893278828235442,52.41582855671299],[4.893229281695746,52.41582302050051],[4.893110022928024,52.415807909367395],[4.89305632753283,52.4158040364683],[4.892790282034307,52.41578017895077],[4.892750014495834,52.415776919175244],[4.892705657542437,52.41576999334169],[4.892399180902557,52.41573782340924],[4.892334958631844,52.415730248256665],[4.892270863305338,52.41572183774988],[4.892209284478414,52.415713159104754],[4.892123034026209,52.415703811123116],[4.892028412069474,52.415693861872526],[4.891915907741278,52.4156807550406],[4.891867966837997,52.4156749373651],[4.891786094404499,52.41566448398602],[4.891766727610634,52.4156613112636],[4.891651491685969,52.41564537962995],[4.891561576336804,52.41563518006116],[4.89147190886892,52.41562384901967],[4.891420876264558,52.415617173390274],[4.891225059718789,52.415589669604216],[4.891223681227772,52.41558938521739],[4.891137800679261,52.415577233924424],[4.891047917193786,52.41556421198217],[4.890974335821359,52.41555239068809],[4.890901090429198,52.415539447301576],[4.89085605578759,52.415531394481064],[4.890756026589583,52.415512155312896],[4.89067834467986,52.41549638007103],[4.890562165658511,52.41547286684945],[4.890518525348152,52.41546369629057],[4.890448056045376,52.415449640805996],[4.890372883551135,52.41543555657072],[4.890321176253558,52.41542747556656],[4.89027486198312,52.41542082821617],[4.890228185600161,52.415415015178525],[4.890180826873718,52.41540975649333],[4.890130125378267,52.415405049986475],[4.89007906801728,52.415400620581416],[4.890040176276409,52.415397931875866],[4.889993233210135,52.415394930755156],[4.889946292339284,52.41539304409139],[4.889938490874448,52.415392732733864],[4.889874884661588,52.415391899553484],[4.889811268865194,52.41539192012373],[4.889788075558567,52.415391822758856],[4.889721117179828,52.415392377493816],[4.88965415233953,52.41539350737216],[4.889602951169869,52.41539272613632],[4.889551979859906,52.41539110999402],[4.88950962476089,52.41538924241756],[4.889459136413778,52.41538650480992],[4.889408760451158,52.41538292281549],[4.889385806504547,52.4153811456903],[4.889353560451987,52.41537959914696],[4.889302403445066,52.415374890371446],[4.889146778325046,52.415356261041374],[4.889058710882502,52.4153452224988],[4.888919740741377,52.415327786343944],[4.88879556197497,52.41531125708329],[4.88866243347446,52.41529327897741],[4.888529787958939,52.41527418828781],[4.888410219433528,52.41525683318769],[4.888306820795584,52.41524066051879],[4.888276446732536,52.41523604779342],[4.888206644100505,52.415224231699426],[4.888136965365842,52.415211858852686],[4.888075419657449,52.41520037405104],[4.888074629213995,52.41520008311698],[4.888074753074735,52.4151995264055],[4.887980394701545,52.41518592604551],[4.887978898661319,52.415185641125525],[4.887793075531029,52.415157328919236],[4.887693124856138,52.41514174545436],[4.887526342962302,52.4151154813921],[4.887524964509932,52.41511519696223],[4.88720804237461,52.415062459737314],[4.887108073149483,52.41504855638648],[4.886929063039918,52.41502617645191],[4.886913539650658,52.415018525344266],[4.88679931263366,52.41500596360062],[4.886740065453075,52.41498493395476],[4.886718366387415,52.41498399746197],[4.886544470189794,52.414977366906065],[4.886507767005685,52.41497356283211],[4.886474034878445,52.414970885769335],[4.886440190220039,52.414969062046694],[4.886406206985642,52.41496779496196],[4.886372228900363,52.41496737272693],[4.886338226668338,52.414967786230086],[4.886314571561365,52.41496825245325],[4.886283326106121,52.41496924381569],[4.886252526828995,52.41497107290629],[4.886221497427706,52.41497375484121],[4.88619068218758,52.41497699490692],[4.886160213387431,52.41498079366301],[4.886129837809573,52.41498544663077],[4.886106714733396,52.41498955505451],[4.886082197252862,52.41499479001824],[4.886057791045445,52.415000582680904],[4.886034054524176,52.41500694439218],[4.885988069912689,52.4150219210055],[4.885965927959057,52.41503024875288],[4.885958882135028,52.415033310692614],[4.885940187744313,52.41504221924073],[4.885922280721871,52.415051688350395],[4.885905281700818,52.41506144890332],[4.885888978606773,52.41507205723598],[4.885838536485062,52.41510554743437],[4.8857806246402,52.415139284616906],[4.885769534542134,52.41514513357234],[4.885742486910231,52.41515962400963],[4.885716135193433,52.41517496222386],[4.885690691570395,52.41519058289259],[4.885665947117634,52.41520676374871],[4.885642327970855,52.415223515584174],[4.88561951393204,52.415240558427456],[4.885597487352753,52.41525815284571],[4.885576618630951,52.41527603976614],[4.885556434280858,52.415294495801334],[4.885537390038576,52.41531351389358],[4.885519374631903,52.41533253633894],[4.885304703140529,52.41550885436451],[4.885238260827441,52.41556502423279],[4.885170910228187,52.4156209115985],[4.885124787729679,52.415658347390995],[4.884954821549949,52.41579103949077],[4.884922849202131,52.415815898570514],[4.884921675319184,52.41581701704857],[4.884756002170248,52.415946922919076],[4.884755425784881,52.41594719909158],[4.884754846239568,52.4159477538673],[4.884630883751532,52.41604300036165],[4.884595901726342,52.4160701024832],[4.884471463838248,52.416167027481194],[4.884353663878685,52.41624630184398],[4.884175799562257,52.41637642479152],[4.88401059423002,52.41649453084067],[4.88375338319702,52.416673748141655],[4.883722813448109,52.416696653552385],[4.883567500650459,52.41678222084827],[4.883391667262377,52.41691431954106],[4.883150633669982,52.41706523934829],[4.882923458309266,52.417239531563915],[4.882663293966759,52.417446263044454],[4.882400199791498,52.41767769745794],[4.882147448019235,52.417918441616244],[4.881906816582479,52.418144074784045],[4.881728489732871,52.418303123261644],[4.881362865084457,52.41859163876804],[4.881246063013982,52.41868416206364],[4.881153680641485,52.418790495673036],[4.880960825007854,52.41898942196943],[4.88081839978299,52.41910504142883],[4.88068581899272,52.419231272251345],[4.88048771102005,52.41941353022873],[4.880168658943151,52.419695149942804],[4.879447756835135,52.420357893559725],[4.879354163183264,52.4204473867331],[4.879238593566756,52.420553421728094],[4.879084563494801,52.42068925644739],[4.878939912716279,52.42081728499687],[4.87882231088154,52.42093754726941],[4.878643111376146,52.4210797445175],[4.878619824638598,52.42110800952721],[4.878595497384709,52.42113599144968],[4.878572584184833,52.42116116630931],[4.87852229665799,52.4212095465493],[4.878488736783531,52.421241416408925],[4.878434407109696,52.42129229579376],[4.878391113560903,52.421331996995164],[4.878366166178583,52.42135379271961],[4.878340192877765,52.421375314404315],[4.878326172424833,52.421386488729624],[4.878274924650618,52.42143907094977],[4.878109762709401,52.42159002769899],[4.87784070629006,52.42182564151145],[4.877712447881143,52.42193377749572],[4.877624936634804,52.422022998853656],[4.877488917276224,52.42214627233368],[4.877317204559991,52.422306475023916],[4.877161724797099,52.42245353552398],[4.877066228645818,52.42253766206365],[4.874573519509325,52.425045686725646],[4.874303445032358,52.425317517155726],[4.874202234312413,52.42545863411386],[4.874082965373571,52.42561147354113],[4.873970996650906,52.42574832852039],[4.873842227340679,52.42589746859342],[4.873715090192782,52.42603510245345],[4.873578128568228,52.42617803224194],[4.873438325329076,52.42631870264583],[4.873358415116548,52.42639502957581],[4.873292256582372,52.426453162229336],[4.873183008689071,52.42655407776929],[4.873058992035235,52.42666953401776],[4.872955425680098,52.42675587809997],[4.872862107607305,52.42683832999336],[4.872741192874962,52.426944811749685],[4.872615257800661,52.427056888845115],[4.872499059506046,52.4271622673803],[4.87238450881367,52.427263725368405],[4.872291941663866,52.427340841426236],[4.872210601474358,52.4274121103217],[4.872123978183234,52.427492622434755],[4.872044011309234,52.42756333096415],[4.871921852770794,52.42766643611575],[4.871790160124275,52.42778017696774],[4.871679412406488,52.42788052735792],[4.871549435396449,52.427994554020344],[4.871431765143968,52.428097120961226],[4.871313156743656,52.428201921617884],[4.871172043243673,52.42832516561988],[4.871001639715749,52.42847750062403],[4.870860504872567,52.428602424844804],[4.870729298131693,52.428723194946414],[4.87062332587918,52.42881709407044],[4.870460436563945,52.42896524585272],[4.870346685159325,52.42906670534549],[4.870141343246537,52.42925033439992],[4.869951062958849,52.42942479046304],[4.869811373282232,52.42955110292916],[4.869661089552949,52.429680767183854],[4.869482621776958,52.42983530269123],[4.869354832272684,52.42994737718936],[4.869008995613233,52.43024863137276],[4.867511435932882,52.43042294967839],[4.867312552691197,52.43044566988514],[4.867265151552181,52.43045164541838],[4.86721730463742,52.4304567651532],[4.867169464150034,52.430461336652286],[4.867121292242338,52.43046533147016],[4.86707645626634,52.4304682264446],[4.867026804392114,52.43047053404447],[4.866977159059127,52.43047228441996],[4.866927523648343,52.43047318998224],[4.866877894783196,52.43047353832015],[4.866809676810963,52.43047295119014],[4.866762260337516,52.43047008982969],[4.866715166995014,52.4304700106382],[4.86666774722591,52.43046755546572],[4.866620690263026,52.4304642570319],[4.866571697585124,52.43045926939126],[4.866522946822005,52.43045371657323],[4.866474882232128,52.43044733090159],[4.866426500852103,52.43044037759846],[4.866407349973635,52.43043720170272],[4.866315289211967,52.430421068783076],[4.866223705564771,52.43040438065672],[4.866200098267372,52.4304000616848],[4.86612414245581,52.430382309742754],[4.866116485864698,52.430379471941215],[4.865968392721655,52.4303518578481],[4.86581653289018,52.43032198009348],[4.86560234328543,52.430279748473794],[4.865442575660246,52.43024843336513],[4.865303445513689,52.43022141512971],[4.865285918685584,52.43021768897152],[4.865261605846005,52.43021336670468],[4.865174615039866,52.430197542827514],[4.864620726908349,52.4300883737682],[4.864541767669072,52.43007229723571],[4.864235896019338,52.4300108386896],[4.864025378423696,52.42996918663061],[4.863962675101815,52.42995739666573],[4.863832671450912,52.429925923179546],[4.863745393466784,52.42991458180301],[4.863691242955574,52.42990816811713],[4.863646685815379,52.42990740506314],[4.86358565253689,52.42991107199539],[4.863551739573619,52.429912890442964],[4.863515942397859,52.429909919140655],[4.863511105214784,52.429909897765754],[4.86346669083328,52.42989706490047],[4.863438918025629,52.42988570763592],[4.863374102807493,52.429848625847974],[4.863323953189507,52.42982593512141],[4.863302022123627,52.429815448483886],[4.863281324205111,52.429806369362645],[4.863259837058997,52.42979813158497],[4.863237876245987,52.429790161337735],[4.863215214313721,52.42978304181048],[4.863253505543068,52.42945965674163],[4.863257656118511,52.42936137747416],[4.863245005035212,52.429264983224044],[4.863235466971897,52.42913911434588],[4.863228421494593,52.42911324378194],[4.863219253241152,52.429082870020636],[4.863208802594776,52.4290527692046],[4.863197102153141,52.429022671848884],[4.863187700079122,52.42900212052191],[4.863149851608612,52.42891909626963],[4.863108672492602,52.42882680002259],[4.863097754164752,52.42880765303868],[4.863080966485024,52.42878004970575],[4.863063260581995,52.428753008529334],[4.863044389921882,52.42872624081477],[4.863034341401969,52.4287118700994],[4.863015682608548,52.4286870805941],[4.862995873867357,52.42866255562777],[4.862975356141383,52.42863830613804],[4.862959596978279,52.42862195085287],[4.862939499861205,52.428601918412554],[4.862918017346616,52.4285821674437],[4.862895620120314,52.428562682052636],[4.862777184506858,52.42845739827147],[4.862659589760128,52.42835689051796],[4.862539584661532,52.42824766296495],[4.862437708134502,52.428159582554045],[4.86233110293988,52.428063616937905],[4.862202366331726,52.42795435934708],[4.861948484438985,52.42773443960508],[4.861815448075878,52.42762093833852],[4.861699534875141,52.427515386009695],[4.861579011994791,52.42741177242036],[4.861424301996033,52.42728498073177],[4.86114606581932,52.42703658620775],[4.860999933617129,52.42691319339695],[4.86084169506601,52.42677431487116],[4.860538481370623,52.4265114816485],[4.860375909503697,52.42637004871007],[4.860186614288631,52.426206018637906],[4.860020409434895,52.426061198677466],[4.85984220075253,52.425912109859226],[4.859703262047069,52.42579268399111],[4.85961132675734,52.425710262589725],[4.859524279892938,52.425630954627174],[4.859296042043126,52.42544007438354],[4.859179915786824,52.425343506187275],[4.859075715727505,52.42525906141524],[4.858975492253231,52.42516789355035],[4.858852939406974,52.42506174252328],[4.858767974776283,52.42498187704883],[4.858682994907619,52.424904545955734],[4.858629106521682,52.42484841151059],[4.858595146842225,52.42480641360946],[4.858580609846249,52.424782756225206],[4.858553176745023,52.424743312950284],[4.858531168143014,52.424710068373166],[4.858509868437555,52.42467655732533],[4.858488246198195,52.424640510321645],[4.858470603867133,52.42460728521305],[4.858453112646727,52.424571256634],[4.858437774975625,52.42453832940743],[4.858423705036631,52.4245051202312],[4.858418346404147,52.42449218108969],[4.858407689669729,52.424461234050256],[4.858398065336534,52.424430013],[4.858393762607514,52.42441483166049],[4.858385859579223,52.424384741744454],[4.858379106552992,52.424354378343004],[4.858374901170925,52.42433104565262],[4.858369730168958,52.42429254651352],[4.858365823444323,52.42425405301599],[4.858362138321381,52.42420685148909],[4.858360408920579,52.42417931464645],[4.858358872894587,52.424144202090595],[4.858358369250081,52.424108815525116],[4.858358513482693,52.4240967367877],[4.858361545307664,52.42406444875868],[4.858365602744643,52.42403245291073],[4.858372084408383,52.42398950296647],[4.858377976091228,52.42395779392001],[4.858380300633983,52.42394656974985],[4.858389045524758,52.42391599688975],[4.858398816124027,52.42388570722272],[4.858409748062293,52.4238554227371],[4.858414617844437,52.42384280785281],[4.858431518006135,52.42380271752413],[4.858449447181419,52.42376263178436],[4.858477131500347,52.42370462328467],[4.858496191794232,52.423667068109665],[4.858499004534598,52.42366174200368],[4.858525860611529,52.42362507543089],[4.858526447344484,52.423623954594085],[4.858566947701648,52.423569921858466],[4.858625069303248,52.423492950376215],[4.858703674161197,52.42339219007219],[4.858810047111427,52.42325588161017],[4.858914642533178,52.42312433756107],[4.859052738083295,52.42294744731779],[4.85917454655845,52.4227974472463],[4.859266958321911,52.4226765259016],[4.859359968779962,52.42256206926125],[4.859444458696014,52.42244953390336],[4.859523425911515,52.42234766019178],[4.859597035335828,52.422252485323966],[4.859668474532815,52.4221654615228],[4.859769919655189,52.42203755166053],[4.859924330921622,52.42184051081744],[4.860082459219568,52.42163983732308],[4.860107395049452,52.42160990257071],[4.860131411595812,52.42157938851517],[4.860154405639465,52.42154832166089],[4.860174257978533,52.42152060220561],[4.860194016112431,52.421490914035076],[4.860212748436647,52.42146095166991],[4.86023846127975,52.421413880918244],[4.860261156640886,52.42136960088545],[4.860276449214292,52.42133961422572],[4.860301748295296,52.42128776918338],[4.860304827241556,52.421281042145054],[4.860323713135349,52.42123815621967],[4.860342259667519,52.42119413633953],[4.860356948039281,52.421156849019326],[4.860370471791377,52.42111983513591],[4.860382752669781,52.42108225849139],[4.860385132735987,52.42107496212234],[4.860393890368528,52.42104438915858],[4.860401607622125,52.421013532951854],[4.860407943198672,52.420982661614296],[4.860409820086229,52.42096946711622],[4.860414525892958,52.420931011952526],[4.860417964205052,52.42089282977037],[4.860419996021608,52.42086784417761],[4.860423047413086,52.42082264092817],[4.860424746537645,52.42077742267896],[4.860424706342902,52.42073136084657],[4.860423530857347,52.42068558157105],[4.860421581121551,52.42064680921231],[4.860418199404563,52.42059371317647],[4.86041466275965,52.42055240823503],[4.860409904041595,52.42051868342845],[4.860409262525483,52.4205046418824],[4.860406991483368,52.42048299853582],[4.860403570458792,52.420461637680965],[4.860398747585928,52.42044196026994],[4.860391252760792,52.42041580886595],[4.860382828561193,52.42038993194615],[4.860368761783437,52.420356444369666],[4.860355965918033,52.420322396220605],[4.860342293927671,52.42028414694614],[4.860335526226625,52.42026360705841],[4.860334584068413,52.420256304904925],[4.86033091785553,52.42023578779483],[4.860326219476754,52.42021553572425],[4.860271080580439,52.420072054503386],[4.860269061421174,52.42006755170368],[4.860254172999324,52.4200351839121],[4.86023813462539,52.42000309860877],[4.860224433515638,52.41997719820721],[4.860201270130293,52.41993608458169],[4.86018043926414,52.41990031998466],[4.860157581905217,52.419863144297764],[4.860150130611613,52.41985188559041],[4.860132070636396,52.41982539956738],[4.860112860713472,52.41979919603064],[4.860085811520477,52.41976592928166],[4.860059523028449,52.41973520042536],[4.860039350337581,52.41971208434164],[4.860006255863654,52.4196754203126],[4.859974602532051,52.419642420656594],[4.859938635068951,52.41960631004592],[4.859913657943093,52.41958176150118],[4.859869157072895,52.419538872162896],[4.859749108544791,52.41942599230877],[4.859272888296467,52.41898937287354],[4.858971396293674,52.41870351634068],[4.858869645884533,52.41860729035035],[4.858497692846685,52.41826915180603],[4.858443861885025,52.4182175202393],[4.858411665395755,52.41817356178449],[4.858176184958537,52.41794753189259],[4.857954287692179,52.41773786577837],[4.85792368098095,52.41770486123905],[4.857893988850804,52.41767159114766],[4.857865446692581,52.417638038581146],[4.857837951506694,52.417604212067886],[4.857823805794673,52.41758617357409],[4.857801276244361,52.41755012232514],[4.857783838791936,52.41751971110345],[4.857802711254101,52.41751614644158],[4.85778926134485,52.41741160494353],[4.857818827610002,52.417301638358936],[4.857903056096909,52.41720062499235],[4.858010774939997,52.41711425849556],[4.853251815756938,52.417757005744605],[4.853070867926136,52.4177873054329],[4.852925207923891,52.417809513305095],[4.852775823352571,52.41782730025076],[4.851444444399602,52.41801734435282],[4.851395611352937,52.41802838506501],[4.851366859216259,52.41805632347667],[4.851263997317121,52.41806924087532],[4.851256810682123,52.41805940284214],[4.851240589428192,52.41804788818986],[4.851220639221127,52.41803962817234],[4.851168132618911,52.41804326432463],[4.850610455355409,52.41812511618065],[4.850020079162524,52.4182025300665],[4.84992175787251,52.418210667481],[4.847696024084942,52.41851088873638],[4.847470926558534,52.41855562872893],[4.846599479552956,52.41866321072402],[4.845413967397449,52.4188236900331],[4.844889246672227,52.418887079226316],[4.843511668963417,52.41906667581695],[4.843413171881953,52.419087677351186],[4.84334728669472,52.41911883175202],[4.843004214265728,52.41943761251975],[4.842925552776395,52.41955738918257],[4.84283346796807,52.41981724859548],[4.842832729807341,52.4198773096877],[4.842851848470184,52.41992566121541],[4.842899337052947,52.419977720148836],[4.842966664916018,52.420019507423355],[4.843005014191434,52.420036544392524],[4.843071443617434,52.42005455514001],[4.843107541022945,52.42006703398273],[4.843609665374361,52.420084231134425],[4.843611517470363,52.42015371417905],[4.844726540066948,52.42018531079718],[4.844734862853411,52.420109493125885],[4.845110964631942,52.420110962707206],[4.845137805519864,52.420124315321196],[4.848150786533635,52.42021415890598],[4.84815269110797,52.42027870787463],[4.848236419212435,52.42027908874396],[4.848245243427514,52.42021955874663],[4.848874341475846,52.420234003581285],[4.848872662340736,52.42030055667668],[4.849003096718772,52.420305734686615],[4.849011974794094,52.42024289742593],[4.84972577666932,52.420259492097685],[4.850221687908919,52.42027324557893],[4.850209138596698,52.42036743317509],[4.850791183266079,52.42037705289647],[4.850797619922546,52.42031774559151],[4.851710512915957,52.42034281586823],[4.851635747516815,52.42099808176712],[4.851657356078841,52.42099817943107],[4.851656455777396,52.42107263799933],[4.851615943330492,52.42107245489241],[4.851611779120938,52.42114450799319],[4.851605702952595,52.42124945621717],[4.851588867875765,52.42141016009005],[4.849273943421259,52.42132659512689],[4.848288350288334,52.42130887793178],[4.847575664855494,52.42128231153917],[4.847411065403089,52.42126998574374],[4.846784542318794,52.42126381356591],[4.846061072442706,52.42123569692065],[4.84521026216844,52.42119476127623],[4.844962298474607,52.421417643970365],[4.844959148096508,52.42145402952988],[4.845496592708242,52.42233841857023],[4.845555767865242,52.422358542785815],[4.845608805015254,52.4224382090362],[4.84558147161651,52.4224662064488],[4.845793090632347,52.422829546405595],[4.845833220495206,52.422861159546045],[4.846015882077778,52.42316313394236],[4.846064086514158,52.4231981003185],[4.846096284097724,52.42321479360256],[4.847081677482479,52.4234741158401],[4.847281450352563,52.42348164115059],[4.847276829194054,52.42363881396871],[4.84823474389076,52.42371598361195],[4.8482239108316,52.42393931318774],[4.849304002138517,52.42396572834092],[4.849319647513914,52.42378875181901],[4.84954108697023,52.423793064206194],[4.849518967932982,52.424057712777454],[4.852494440669838,52.42414397626891],[4.852484163117484,52.424324284829716],[4.852702905997686,52.424326916415694],[4.852843317627402,52.424330857114015],[4.852881081019985,52.42390843763529],[4.853371034017147,52.42391721581094],[4.853367098561686,52.424086372394285],[4.85349684514425,52.424096888163646],[4.853495798287691,52.42418375795546],[4.853369989157278,52.42418319126365],[4.853368074546965,52.42434203014584],[4.853841794675106,52.424355065270596],[4.854312232052655,52.424367256875186],[4.855767539454524,52.42441186399271],[4.856534357245032,52.42443679884583],[4.856588135434595,52.42445523962325],[4.856614764280311,52.424486797604594],[4.856592429597606,52.42477294478211],[4.855518659079291,52.42473608202494],[4.855511517070124,52.424816651093685],[4.856584385872585,52.42484917783144],[4.856552830181515,52.42525332727426],[4.856533989565686,52.42528094279227],[4.856488633447374,52.42529081481081],[4.855210249078134,52.425251073456074],[4.855129857318093,52.425268346265455],[4.855057441315405,52.42530580511322],[4.855025856716058,52.42536738136209],[4.854958508594105,52.42618196966983],[4.854925213279961,52.42621456207098],[4.854881913519468,52.42622570996921],[4.854033405967447,52.42611313608166],[4.854072066878729,52.42539674390556],[4.853487145362656,52.42498839110632],[4.852908491134772,52.424970522507586],[4.850900787416761,52.424912902043936],[4.850890729647158,52.42481835151072],[4.849753935015712,52.42479004001456],[4.849736784019178,52.42482346814479],[4.848521683452008,52.42479313591103],[4.848524950962119,52.42474448269497],[4.8484331554022,52.42474309471295],[4.848427196650783,52.424789389916896],[4.847976222526487,52.42478072376077],[4.847461586258158,52.42465655337515],[4.847112374744244,52.42457228497936],[4.84716342637499,52.42447040905573],[4.846649142923215,52.42436237852636],[4.846602584153588,52.424424540366914],[4.846320148120228,52.424366135087055],[4.846331215866545,52.424344678177],[4.846370724342077,52.424284057101225],[4.845767652940942,52.42412146691913],[4.845535358840045,52.42404652689308],[4.845508298497529,52.4240497106483],[4.845275359317947,52.424103245520364],[4.845133584290386,52.42413513233169],[4.844903385693673,52.423753470342945],[4.84471169353796,52.423805098742356],[4.844350947942358,52.42320912069709],[4.844258167548853,52.42304729548237],[4.844079073749411,52.42277188418893],[4.844060500490038,52.42276036677167],[4.843985734446924,52.422752869883645],[4.842400131508412,52.42292149673282],[4.841592180075585,52.42299950221781],[4.841587406247313,52.42298127306038],[4.841189300917119,52.42302042300456],[4.840423779558495,52.42308957625745],[4.840421501025971,52.4231264780148],[4.839742933516485,52.423215926728176],[4.839771813945727,52.42324508126938],[4.839801303215759,52.4235556418754],[4.839738755149664,52.42358843644963],[4.839665814291708,52.423591406893024],[4.839395925941911,52.42357361326883],[4.839372535579798,52.42371746029069],[4.83924026233465,52.423711887521996],[4.839234068830863,52.423776390192685],[4.839063991256197,52.42376898867708],[4.838995040860998,52.424321311161414],[4.838717048323089,52.4243034695269],[4.8386077005866,52.4244088647949],[4.838529784639045,52.424375411540204],[4.838464183995422,52.424439639085435],[4.838560129019903,52.42447745487564],[4.838418570698343,52.424631359051986],[4.838475014333407,52.424654790587034],[4.838421328610009,52.42506489093969],[4.838397720443373,52.42522362026918],[4.839113090181631,52.42525659037482],[4.839087733506637,52.42529426613999],[4.839049748809557,52.42537343336884],[4.839057015767902,52.42545030235835],[4.838286024005422,52.42530594205415],[4.838241425640418,52.425401417931766],[4.838146760139716,52.42559466310677],[4.838130658490321,52.425620985214955],[4.838085430141862,52.42569488776309],[4.837996164277804,52.42588770844859],[4.837206840841828,52.42575114733935],[4.836961375034036,52.426220870543425],[4.837059546326522,52.42624064078705],[4.837030831922458,52.42629396598776],[4.836809880105246,52.42624949369857],[4.836721358478484,52.4263416912123],[4.837482648105051,52.426502383118894],[4.837434080651097,52.426585733910095],[4.837512623919744,52.426602060321386],[4.838103415802157,52.42672488318913],[4.838057344559615,52.426819237682466],[4.837563475982336,52.426713689044334],[4.837516530768499,52.426784788244845],[4.837577412421711,52.426802650461475],[4.837522519638465,52.42688151407608],[4.837325412309882,52.42683226408716],[4.837202692535036,52.42679780218179],[4.836500588910683,52.426614788622075],[4.835967283835262,52.42726956738949],[4.83551895224503,52.42785167608553],[4.83535510436129,52.42802167841213],[4.835246628874462,52.42815833453094],[4.835087500459323,52.42833631252785],[4.834952774988796,52.42835064021021],[4.833870342497205,52.42971555025581],[4.833445264264418,52.43025069397384],[4.833251095941196,52.43049245189267],[4.832986893482455,52.430831084204875],[4.832809850772202,52.43105846126243],[4.832768789149467,52.431117848224105],[4.832791368507029,52.43121813006789],[4.832731335585346,52.431254276108966],[4.832695258305495,52.4312796142284],[4.832676968770405,52.4313123155547],[4.832696144672692,52.43144718389241],[4.832723666212541,52.43151457613791],[4.832793911268719,52.4317290442111],[4.832822545095198,52.43183081934243],[4.832914703154638,52.43208276940746],[4.832935005829996,52.43211948897839],[4.833071463259148,52.43228496931552],[4.833262908399075,52.43246162648996],[4.833338072363249,52.432526643819095],[4.833373785732791,52.43253045070836],[4.833623928523349,52.432420514239936],[4.833658062418023,52.432430685899256],[4.833778864281905,52.432539622966964],[4.833768140027852,52.43256235654175],[4.833685813801258,52.43259383323486],[4.833639360146307,52.43261638194506],[4.833627048381465,52.43264729582712],[4.833642408331935,52.43267013324993],[4.833978631876994,52.43294491829697],[4.834002329924894,52.432955957878555],[4.834040569554658,52.43296591491092],[4.833991859670646,52.4330019077151],[4.833965483958579,52.433028639644164],[4.833729090840452,52.432958322143705],[4.833615676200221,52.432932357432385],[4.833513220999946,52.43291661781555],[4.833424461764295,52.43291450444689],[4.833338262834078,52.43293106130573],[4.833271373154738,52.43295448502972],[4.83298244159661,52.43314972075924],[4.832817580132084,52.433229092429215],[4.832703506033503,52.43329686478548],[4.832664320146982,52.433333108321094],[4.832453631596186,52.433503336745346],[4.832357401976179,52.433573915546276],[4.832276264246005,52.433630004967696],[4.832212923139201,52.43369163316647],[4.832167058852316,52.43378431456441],[4.832136286920205,52.43386248868719],[4.83210488779122,52.433956314522874],[4.832080446560828,52.434038906042325],[4.83207236075766,52.43410208717918],[4.831987633996783,52.434074898158826],[4.831988113654822,52.43403664903968],[4.832006770309996,52.43397480265871],[4.832031861405818,52.43387475302316],[4.832059717262335,52.43379109179916],[4.832102528272719,52.43370386961033],[4.832169159469551,52.43361674997374],[4.832253559358439,52.43353973471338],[4.832346929775595,52.43345912139834],[4.832625223179863,52.4332436781731],[4.832679295853028,52.43320931980668],[4.832843828928169,52.433084550251465],[4.832890164408085,52.4330245318522],[4.833223029759631,52.432614445589216],[4.833220409608732,52.432585286441466],[4.832359837920113,52.43180835091898],[4.832332183963402,52.43178335265642],[4.832250119546281,52.43175502494495],[4.832180643430616,52.43175168064634],[4.832107314172871,52.43177865063668],[4.831290115480449,52.43279663361834],[4.829924733012319,52.43451874118469],[4.829518227697812,52.435013700501656],[4.829368919820528,52.435192752301234],[4.829325422677909,52.43526269513922],[4.829082923354315,52.43559122877699],[4.829034332892361,52.435663853696084],[4.829003714788899,52.435729283259214],[4.828966759266052,52.435823811878876],[4.828637230501553,52.43690964582454],[4.828520692665018,52.43717138255175],[4.828367899561925,52.437473015067496],[4.828198111454175,52.43770535349274],[4.828023225429676,52.43786845389211],[4.827764546566847,52.43806030543654],[4.827424759247455,52.43830458468156],[4.827394697962566,52.43832448511282],[4.827319454887681,52.43838423896306],[4.827093340974667,52.43859264528533],[4.826882272967016,52.4387940481414],[4.826822765176642,52.438847692573574],[4.826777962840453,52.43890140650805],[4.82671868527301,52.4389370785192],[4.826689274052431,52.438936939436516],[4.826659747595901,52.43894578473259],[4.82648974952767,52.43888272514589],[4.826296078112136,52.43881323318479],[4.825906144270594,52.43869896099919],[4.825745939898468,52.43865548402128],[4.826121630018354,52.43796158464766],[4.82599070696688,52.437933273913444],[4.825810715512025,52.43820369514026],[4.825593905969318,52.43816391336687],[4.825533592866018,52.43821861388555],[4.825398618929669,52.438212815290726],[4.825265204168385,52.438023945915134],[4.825021890216396,52.43802279208698],[4.82502359661425,52.43778535597396],[4.825024353043413,52.43768062670135],[4.825024397947391,52.4376736165623],[4.825025042686433,52.43758231427813],[4.825027739192256,52.43720552961184],[4.825003937207024,52.43715403442162],[4.825001760023108,52.43714945837741],[4.824953391207758,52.43704765071855],[4.824872702912685,52.436936288638094],[4.824751706303895,52.43683882782895],[4.824581478986673,52.43674107927975],[4.824513519540379,52.43670206489826],[4.824405991468595,52.43661296325395],[4.824138363209886,52.436725026183225],[4.824115442504128,52.4366806531973],[4.824115603107996,52.43666802633549],[4.824115862703064,52.43664761665343],[4.824030173712615,52.43661630104981],[4.823861701615882,52.43653682266579],[4.823550671994979,52.4364274204022],[4.823498748021344,52.43641920142428],[4.823396935250439,52.43641732406128],[4.823315770438889,52.43651464250446],[4.823249338079411,52.436478232082884],[4.82319314288877,52.43644744267298],[4.823317693538438,52.43636365939745],[4.823047116855411,52.43623235574957],[4.82284117559358,52.43613381541635],[4.822668422519852,52.43600864875321],[4.822119989442789,52.43543762111557],[4.822045809653612,52.4354150589627],[4.821969594454737,52.43541025561464],[4.82153676311083,52.4354570384067],[4.821485530339298,52.435465044524314],[4.821429258291385,52.43547383545137],[4.821379837919038,52.435481553583145],[4.821274720042891,52.43549797541496],[4.821201909751797,52.435510947403515],[4.821143513785048,52.435532876965866],[4.821103177814503,52.4355615615902],[4.820841745013441,52.435555863706625],[4.820638097052618,52.43557486989149],[4.820591108361203,52.435556876699785],[4.820551213242958,52.43555223708377],[4.82046947184075,52.43555408416481],[4.820403953654655,52.4355648705863],[4.820356453360608,52.43558684288061],[4.820327368285998,52.435610790640744],[4.8198698380219,52.43556270153487],[4.81978883226393,52.43555418892082],[4.81815070505881,52.43538199603713],[4.81817418068207,52.4352511049098],[4.818032733273881,52.43523488608221],[4.818104040728353,52.435044861295445],[4.818593945087581,52.43510322366844],[4.818991416803089,52.435151020816484],[4.819897490807393,52.43526380617749],[4.820412350905887,52.43533510582411],[4.820427369368995,52.43533591463191],[4.820593821914178,52.43534485331583],[4.820697653601806,52.435320912274584],[4.820762275865178,52.43537896671774],[4.820940598943537,52.43535317049959],[4.82097657802852,52.43537999074198],[4.821312851140673,52.43533460045479],[4.821371435187928,52.435326692422024],[4.821431300793905,52.43531861072536],[4.821494620094845,52.43531529095623],[4.821486363445715,52.43528591589629],[4.821420365556928,52.43505122123161],[4.821516181208247,52.43497783616068],[4.821538358906149,52.43493046930664],[4.821518360728901,52.434682962141125],[4.821421874631241,52.43449932450186],[4.821351677909197,52.43432174413598],[4.821324555503817,52.43424631619302],[4.821237963547885,52.434005474353334],[4.821213056356552,52.433828110149626],[4.821205854453924,52.433684057798736],[4.821234499296514,52.43356787654368],[4.821318580374009,52.4333688782302],[4.821383525406028,52.43324733386582],[4.821472507163703,52.433133076343715],[4.821531752992332,52.43305702709601],[4.822299561343335,52.43274962707746],[4.822748364414047,52.432587453397964],[4.822784993314821,52.43256320842383],[4.822796313166856,52.432529954132136],[4.822786238634775,52.43246551868458],[4.822692780195631,52.43238344778786],[4.822640896564606,52.4323387756234],[4.822559958274737,52.432266820532966],[4.82239590040491,52.43213789297113],[4.822524778678756,52.43207021000626],[4.82271590607406,52.432222293567754],[4.822846669277324,52.432323954508675],[4.822890629864981,52.4323579402979],[4.822922662364808,52.43238385050313],[4.822937598842071,52.43239563251726],[4.822996181926806,52.43242324284761],[4.823039476087042,52.4324436531692],[4.823120633813176,52.43245484262402],[4.823212433016371,52.432461768596646],[4.823261952422495,52.43245983822052],[4.823375421889936,52.43243012570153],[4.823716148334448,52.432319391703295],[4.824601922035816,52.4320102817357],[4.825329814615873,52.431747961376125],[4.82610188149613,52.43148584571216],[4.826804792626109,52.43124068127613],[4.8277329412509,52.43093174834159],[4.829886218063824,52.43023400942206],[4.8302288190175,52.43010953245138],[4.830556698455788,52.429986333492444],[4.830870215008535,52.42985694562033],[4.831146999781465,52.42973113242443],[4.831374759250103,52.42961255738684],[4.831658267065223,52.42943816936416],[4.831935970026964,52.42923757246396],[4.832152303743977,52.42905539077974],[4.832409715739141,52.428813399512066],[4.832604066789509,52.42887637786677],[4.8328299626373,52.42861591238893],[4.832635849441883,52.42855279170941],[4.832840067577743,52.42834077600424],[4.832950581235893,52.42821693989171],[4.833520996211975,52.427579569268644],[4.833555930300238,52.42754072610677],[4.83359204217506,52.42750057624048],[4.833615331678071,52.42747466580738],[4.833638427221656,52.42744897915469],[4.834217163226372,52.42680535265924],[4.835312431243697,52.425593054974726],[4.83590033809277,52.42496347461751],[4.837433942746974,52.42325830872117],[4.838804117712611,52.42174437869097],[4.838808312512118,52.42170716226298],[4.839059242220832,52.421430191425884],[4.839133030342502,52.421327579183746],[4.839204678764705,52.42120777260737],[4.839281652834231,52.421036509336965],[4.839340125887762,52.42084800304275],[4.839351612213783,52.420676436910114],[4.839342885337577,52.42062491528159],[4.839295260080228,52.42050456609279],[4.83921487006485,52.420384056371205],[4.839124916257514,52.42028209781104],[4.838921221882109,52.4201081161421],[4.83873788801407,52.41998999675741],[4.838603181298069,52.41991357127329],[4.838407900368505,52.4198154205505],[4.838163433177261,52.41971376110673],[4.838015296834268,52.41967017652487],[4.837856750824099,52.41962796354523],[4.837744770944313,52.41960384274443],[4.837576690280692,52.41957661253574],[4.837464545180064,52.41956464201451],[4.837296242913832,52.4195552868282],[4.837155909704134,52.41955463546663],[4.836959283455839,52.41956516382672],[4.835032115181602,52.41981216729462],[4.830649955752958,52.42038238816208],[4.827889281077902,52.42075007050659],[4.827813675226725,52.42076298837767],[4.827740757079591,52.420780754252384],[4.827671352176974,52.420803183292975],[4.827606272386561,52.42083000971006],[4.827546227138997,52.420860931280934],[4.827491941252307,52.42089559193057],[4.827433419015201,52.42094324667547],[4.827279135431206,52.421116644664316],[4.827231087526031,52.42117064016608],[4.827110486360686,52.421283206839654],[4.82705475365872,52.42131712346173],[4.826766442881254,52.421330050567605],[4.82676221073589,52.421255567781905],[4.826548731347986,52.421259977445565],[4.82635773510475,52.421263917932826],[4.826359542262355,52.42132552791456],[4.826250828511606,52.42132340451581],[4.826036207270214,52.42132508459007],[4.825987233685252,52.42128029182322],[4.825930719034576,52.42123895951556],[4.825867319118369,52.4212015401462],[4.825797733941438,52.42116847741615],[4.825722796708773,52.421140143756894],[4.825643326601188,52.421116857608894],[4.825560246259875,52.42109889296623],[4.825474508744866,52.421086443080426],[4.825387096966771,52.421079665396505],[4.825322431273297,52.4210783431691],[4.823721099163073,52.421277086717204],[4.823552183655337,52.42131562233307],[4.823388175640815,52.421345094532604],[4.822210155922487,52.42150048839673],[4.820755541042792,52.421688593920145],[4.818807122110718,52.42194011263179],[4.817643085739745,52.42209391944878],[4.816613799266117,52.42222990312805],[4.816388876489079,52.42225599853518],[4.815573370072598,52.42236648022772],[4.815376569353145,52.42238913228596],[4.815235922923707,52.42241204609821],[4.815152599457672,52.42243238740363],[4.815087981755471,52.42245566805773],[4.815003210501319,52.42249816585355],[4.814913431729955,52.42256638906843],[4.81479374894513,52.422685931139156],[4.814714051049775,52.422788535784036],[4.814654242462893,52.422891218502656],[4.814596105262066,52.423045399603225],[4.814577458443177,52.42313111473777],[4.814580513243805,52.42316546238202],[4.814609086679814,52.4232170818052],[4.814735076359955,52.423334251573735],[4.814814921158713,52.423379602574336],[4.814876726831602,52.42338746872081],[4.815078994387984,52.42335395981507],[4.814571001061514,52.423798813106856],[4.815983099431111,52.42570175555523],[4.816055781908019,52.425797878391876],[4.817183810659905,52.426767270321186],[4.817050812273559,52.42682641819081],[4.817218009002395,52.426909792108404],[4.818028095999827,52.42730492740081],[4.818212419897383,52.42727999103488],[4.818267709196991,52.42743275902142],[4.818526768301095,52.428148476030785],[4.818398350368696,52.42816585299874],[4.818496318022178,52.42843701332025],[4.818624913359525,52.42841961912043],[4.819263424503184,52.43018357736886],[4.819669280698855,52.43162267345401],[4.820086860061632,52.431581459834554],[4.820124591593324,52.43156301798361],[4.820143768185174,52.43155363676332],[4.821161780734099,52.43126895742571],[4.821215228896452,52.4312368032459],[4.821339594229451,52.430934252819746],[4.821397106099838,52.430831439110904],[4.821511525742006,52.43072827687959],[4.821533334530647,52.43068084531662],[4.821544818642971,52.430611749179256],[4.821539997117361,52.430436700732635],[4.821564920404311,52.43042169348235],[4.821688973506477,52.430394199116705],[4.821781196857321,52.43036870979808],[4.82179920064384,52.4303428663333],[4.821803391450217,52.430291027604305],[4.821796898851638,52.430245617998374],[4.82183194064069,52.430195858796914],[4.821836432577694,52.43018952595988],[4.821822346821183,52.4301065926529],[4.821843630106856,52.430091055682304],[4.822166387406642,52.430119899458965],[4.822213950337593,52.43011553353555],[4.822252105931245,52.430068296608866],[4.822568918655012,52.43014476345343],[4.822566180288942,52.43016464006879],[4.822535332401348,52.43019921236968],[4.822266907112266,52.43052623384085],[4.822327050704049,52.430556925736504],[4.821839731095059,52.4308916027168],[4.82168535817179,52.43100192650982],[4.821645085284928,52.43104559403756],[4.821619546880331,52.431086860268856],[4.821607252498168,52.43112729992552],[4.821603771762422,52.43116957018586],[4.821612015669022,52.431213702918484],[4.82162929806773,52.431244370353994],[4.821753901793417,52.43139500468429],[4.821769577897506,52.4314328725248],[4.821775643625902,52.431494448856654],[4.821796087659005,52.431555051218695],[4.821837788912843,52.43161143192929],[4.821890159296491,52.43166138342572],[4.822012685096051,52.431753794581205],[4.822061858006355,52.431777801397175],[4.822121729513796,52.431795370126125],[4.8221674418543,52.43181287131829],[4.822247229172823,52.43187027829565],[4.822105428041341,52.43194472096387],[4.82198203198695,52.431875502868856],[4.821863064515695,52.431806108040625],[4.82181610766488,52.431785895512434],[4.821779790700504,52.431785722249614],[4.821682245353437,52.43174528876595],[4.821631798617325,52.431713968757535],[4.821248400357701,52.431590014343534],[4.821049083829813,52.431555754126144],[4.82093670056481,52.43153967755804],[4.820842276994966,52.43153922635142],[4.820531008905431,52.43159768600735],[4.82029781375808,52.43165652732461],[4.820064362207444,52.431735337505515],[4.819896081178921,52.43183000783728],[4.819797114775886,52.43190059037812],[4.819738381487607,52.43194915701675],[4.819697579018516,52.432015569077365],[4.819676843825978,52.43207539940156],[4.819636582886142,52.43224064217657],[4.819607735347121,52.432325347386815],[4.819534910951785,52.432522142569354],[4.819419308516012,52.432756948227684],[4.819396635138039,52.43282567596546],[4.819377963684075,52.43286555456037],[4.819286143935725,52.432945041714575],[4.81915413195519,52.43304321021161],[4.819062510713618,52.433107167495585],[4.818405900943938,52.43361247595122],[4.818129747547239,52.43390409350889],[4.818103980103354,52.433930761942634],[4.818051735415468,52.43403930647234],[4.81799662925181,52.43408788966002],[4.817897968747687,52.434134052652816],[4.817832480591046,52.43414261784725],[4.817770824150274,52.434135661781895],[4.817381437918849,52.43391175055366],[4.817513499323526,52.43381024984983],[4.817652709602665,52.43371766314578],[4.817729749649715,52.43365807678264],[4.817847096416511,52.433570948144336],[4.81832002580096,52.43322905535011],[4.818446370962933,52.433118916004304],[4.818783121273843,52.43280386095429],[4.818992796274246,52.432596155338814],[4.819084843802553,52.43249890092513],[4.819129250905799,52.43243472630425],[4.819170339633185,52.43234609835498],[4.819193354843423,52.4322507329116],[4.819198439143424,52.43213752193782],[4.819192471589467,52.43203647220238],[4.818840722912168,52.43199481774994],[4.818852359016258,52.43193714590441],[4.819193297660679,52.43197207968122],[4.819194123613836,52.43190769614627],[4.819166351620996,52.43180765636563],[4.818679205919214,52.43184527951966],[4.818654553747862,52.43178521365576],[4.819152821947872,52.43172986635347],[4.819048258616552,52.43138743010534],[4.818880009259458,52.430914798858424],[4.818916382590307,52.43091052439723],[4.81875891680085,52.43044570995819],[4.81869383316681,52.43042320725472],[4.818603612071191,52.430180413467774],[4.818242622600462,52.42910604075503],[4.818220922440106,52.42889192260176],[4.818146494632848,52.42888737698475],[4.817754237636325,52.42776166757557],[4.817723687310297,52.42770319987733],[4.817683094712581,52.4276470476617],[4.817670042770787,52.42763186769914],[4.817617284798936,52.4275796385232],[4.817542381897071,52.427521910278834],[4.817095146316337,52.42735584266497],[4.817017652782773,52.42734181757765],[4.816955990592498,52.42733239929932],[4.816897182181318,52.42733211629487],[4.816440734875321,52.42738384467251],[4.81641167893193,52.42735673905864],[4.8163989280853,52.42732531251849],[4.816377540887676,52.42730096080253],[4.815701719435125,52.42680198024923],[4.815065663559726,52.42633294587504],[4.815178003396955,52.42628404709697],[4.81446184539502,52.42580843019238],[4.814397359893549,52.425844949934046],[4.814388402679926,52.425838408557944],[4.814330346402357,52.425814346558255],[4.814260243451925,52.42579754224123],[4.814189951239523,52.42579536887905],[4.814065870689052,52.42580516754205],[4.813997256431207,52.42582783508791],[4.81380537666374,52.42587340893747],[4.812681726478754,52.42614031962268],[4.812625858113345,52.426149368951],[4.812569713721179,52.426149096709906],[4.812527668575542,52.42614317666531],[4.812485740314096,52.42612938398137],[4.812465994055588,52.42611927595782],[4.812443960448216,52.426104159696976],[4.812423116254838,52.426086892162395],[4.812178714531568,52.425811115413694],[4.81203685441425,52.42565596498626],[4.812010382363182,52.4256215126122],[4.811961919893384,52.425569787048794],[4.811948117865505,52.42555256259983],[4.811887850528441,52.42548946423021],[4.811741319291012,52.425322840469946],[4.811922057258636,52.42526235926199],[4.811730705197168,52.42504898874146],[4.811550453207635,52.42510945404362],[4.810757754518135,52.42422220205052],[4.810496498231203,52.42393225688504],[4.810390469226476,52.42381160266495],[4.810347832036609,52.42375990476432],[4.810314379563357,52.423725426995034],[4.810240623893397,52.42364067370184],[4.810026137125544,52.42340436796805],[4.809993720059742,52.423378469382676],[4.809956628539155,52.423352530041576],[4.809936902486957,52.42334101061884],[4.809871779803158,52.42331136658564],[4.809825217588266,52.423294692283726],[4.809769231329577,52.423283697184814],[4.809713113276448,52.42328055663934],[4.80968501692697,52.42328184874717],[4.809628801535364,52.423287299898554],[4.808813315415778,52.42339344813221],[4.80867274105996,52.42340920932456],[4.808419660583663,52.42344157833618],[4.799142694539095,52.424642133342836],[4.794747469652923,52.42525290033344],[4.792706306474931,52.42551455295783],[4.788542080715902,52.42605802522119],[4.785585027937643,52.426439136278674],[4.785398967673009,52.42646846201896],[4.78527903396529,52.42649055575167],[4.785117661765788,52.426525057528536],[4.784960180243271,52.426577239650555],[4.784785916706587,52.42664824632922],[4.784586049207479,52.42678346534946],[4.784494046216688,52.426873817949286],[4.784426898281136,52.42695925482156],[4.784367487569065,52.42708004360834],[4.784307801715642,52.4272210172909],[4.784299157210618,52.427259845022256],[4.784281444534356,52.4273394576407],[4.784296875023112,52.42741774692941],[4.784324355785901,52.42752131694716],[4.784697776481067,52.428580265849504],[4.784744252513228,52.42871862474326],[4.784765519285937,52.4287819431833],[4.784769261113255,52.428791138622536],[4.784791314631736,52.42884526666401],[4.784822943678619,52.42892290120835],[4.78484252956425,52.42898550106043],[4.784834702200269,52.429060463424214],[4.784834021957832,52.429110467391354],[4.784901274936781,52.429177470810004],[4.784921272417789,52.429210907731886],[4.785006143208623,52.42948635289749],[4.78502512109822,52.42959477777107],[4.785092941530781,52.429620126085055],[4.785180759928275,52.42967891123561],[4.785180306848797,52.429712235228365],[4.785125322189446,52.42974529116995],[4.785097425855437,52.42979098657355],[4.785123735892074,52.42986195210219],[4.785150201163543,52.429920425546214],[4.785174010108025,52.43001530354088],[4.785191690298142,52.430101342475155],[4.785123298748812,52.43019038642365],[4.784890455089024,52.43016746204099],[4.784357329284847,52.430140592356636],[4.784290105370614,52.4301426770404],[4.784254046472625,52.43017872289461],[4.784261546983076,52.43020775529086],[4.784300819233761,52.430227278592334],[4.784344115745639,52.430239578287775],[4.784430855064115,52.43025451662617],[4.784722684073692,52.43029949197099],[4.784703722816318,52.430531340443565],[4.784668025446321,52.43054082069866],[4.784416143287723,52.4304646454939],[4.784334440631748,52.43051496529943],[4.784265078764569,52.43051096342785],[4.783828999859429,52.430485807417035],[4.783675577416281,52.4304342997467],[4.783611565513024,52.43049195321473],[4.783605455935984,52.4305032915037],[4.78358899847307,52.430533783744146],[4.783574285329423,52.4305290801505],[4.783558313268133,52.430523965697155],[4.783548262491204,52.430490048947256],[4.783501578013941,52.430332607735934],[4.78311406271035,52.43023236178359],[4.783066755280705,52.43021123326927],[4.783047858148812,52.430198518237205],[4.783022128167246,52.43018117566484],[4.783033703433141,52.43015828914535],[4.783071443592977,52.4301424205714],[4.78317268183347,52.43014752932895],[4.783270860083774,52.43015814982542],[4.783929493904323,52.430229397401085],[4.784016096181245,52.43020689269772],[4.7840691912707,52.430165855585756],[4.784118678589071,52.43011333181823],[4.784126972801176,52.43005601469307],[4.784116116901917,52.43002612935752],[4.784092379048277,52.43000931844122],[4.783360479132192,52.429944636941144],[4.783341243656882,52.42992546708061],[4.783349603208025,52.42988499323965],[4.783369571448752,52.429849351004314],[4.783389182290274,52.42983991500433],[4.783439879567058,52.42983779157297],[4.783689000444708,52.42986050511948],[4.783913267728247,52.42941953431615],[4.784001269565312,52.429253162043196],[4.783927521039309,52.42923133305186],[4.783841889311342,52.42922375189189],[4.783831525171167,52.42916536011988],[4.783823790521618,52.42912117327474],[4.783789180244069,52.429087634794904],[4.783828336036918,52.42907353477322],[4.783859664121646,52.42906415835393],[4.783777478349205,52.428801578363846],[4.783698401192447,52.42857420987327],[4.783683729124964,52.428532018897236],[4.783665236361173,52.42847888843239],[4.783553816736398,52.428158548339844],[4.783622763411243,52.4281441956903],[4.783825790078698,52.42811661284188],[4.783736381094328,52.4278134795312],[4.783627148888465,52.42782245914866],[4.783482725962098,52.42783840459305],[4.78342637837219,52.42783886348937],[4.783382357220933,52.42779040231939],[4.783356662183603,52.42774686988838],[4.783344417472399,52.42768090084364],[4.783337246068927,52.42762781003049],[4.783317570714807,52.42752884529585],[4.783279309737376,52.427441847304266],[4.783175785764636,52.427322358738614],[4.7830360592488,52.4272129494383],[4.783024916009623,52.427204228501466],[4.782865815864356,52.42711178782182],[4.782719618265649,52.42703709150997],[4.782614896880884,52.42700440833632],[4.782469426755685,52.42697231703054],[4.782382907132103,52.426955805497535],[4.78222546736346,52.426935705278204],[4.782057296176322,52.42692842040706],[4.781886420337632,52.42692754767355],[4.781718044226598,52.426936331248406],[4.780033949439797,52.42714794847548],[4.77884489621636,52.42729939518828],[4.774903553988154,52.4278136202508],[4.772595141852592,52.42810951640718],[4.770817325601793,52.4283414221227],[4.767446615999066,52.42877349654447],[4.765086226431564,52.42907828519564],[4.76296331180964,52.42935327146182],[4.760332141917576,52.429686621605185],[4.758878312138992,52.429878799445824],[4.755923681538107,52.430237263551064],[4.754496993974027,52.430412455706026],[4.754185591064416,52.43045408643109],[4.753444696293421,52.43054153136502],[4.753212049060313,52.43057877227225],[4.753014756432731,52.43061860164545],[4.752754018862053,52.43069417664],[4.752512593222542,52.430793905569075],[4.752385777252586,52.43085817139616],[4.752317307065898,52.43089673030448],[4.752195278585492,52.43097367625263],[4.751972003034498,52.43114560063448],[4.751799651102669,52.43132125790852],[4.751683442191038,52.43152838534915],[4.751647639467085,52.43165630395049],[4.751634131457622,52.43180857293409],[4.751643961775508,52.43191250542874],[4.751671361765443,52.43201299099177],[4.751692364118585,52.43209001131973],[4.751936886115885,52.43285218449174],[4.751970047111952,52.43295554095322],[4.752316830335099,52.43394575766917],[4.75241033639238,52.434222836735664],[4.752416506782819,52.43427348845331],[4.75241584148536,52.43431988833006],[4.752394669196475,52.43435352369694],[4.752380272145056,52.43439562580463],[4.752392975798923,52.43447162184983],[4.752460137883982,52.43459852824127],[4.752590954063717,52.434799645270196],[4.752700622738954,52.43496810450603],[4.752748454861931,52.43519926326382],[4.752809818136432,52.43531023916758],[4.752957709360849,52.43569828317301],[4.753241258816582,52.43650556423703],[4.753395303098202,52.43701390467597],[4.753535372420964,52.43739949725107],[4.753615176760346,52.43759715859293],[4.753693071642474,52.43765289416665],[4.753676476699606,52.43771294204215],[4.753981050465748,52.43815233269438],[4.754011708608415,52.43821022436248],[4.754054022757936,52.438277804095726],[4.754120160221727,52.438331067865775],[4.754147049620236,52.438376913848295],[4.754312795088755,52.438618327322075],[4.754362545181932,52.438717214780084],[4.754404997942473,52.43877516931249],[4.754450807489256,52.438874026701995],[4.754524008302684,52.43898265609511],[4.75463978073068,52.43914202340886],[4.754674312796867,52.43920474397087],[4.754669375045768,52.43927447098998],[4.75468022138055,52.4393418735467],[4.754756539901766,52.439508247272755],[4.754791641786005,52.439530085889295],[4.754845320512318,52.439628985092185],[4.754871077716874,52.43975419502873],[4.754866807610279,52.43977823225886],[4.754850783025505,52.439797380393586],[4.754815130996391,52.43981403308235],[4.754628149761903,52.43981904804213],[4.754584733319588,52.43982843312945],[4.75455509852675,52.43983669640362],[4.754537100579475,52.439857047299384],[4.754526832757575,52.439887056270436],[4.75451327500812,52.44000318557498],[4.754418976666152,52.44002152932334],[4.75441787125896,52.43993939402892],[4.754423874038568,52.43981783179184],[4.754419894842652,52.43975154440187],[4.754060809770657,52.43970443669575],[4.754016457357621,52.43970419975989],[4.753986640351708,52.439722114684784],[4.753951580580725,52.43976108668321],[4.753827992515735,52.43997840445363],[4.753825013706941,52.43999027024484],[4.753709119972154,52.4399617171621],[4.753714634036859,52.43995048507391],[4.753721536669374,52.439952184687506],[4.753719494505662,52.43990990472453],[4.753690614801566,52.439841758582446],[4.753656323477578,52.43977358350521],[4.7536000892974,52.43972187338238],[4.753587713513505,52.43970491937576],[4.753548675520769,52.43967760383758],[4.753494671121051,52.43966226074272],[4.753303576777761,52.439593031369476],[4.753191175746236,52.439560991257906],[4.753238118572358,52.43951794871044],[4.753123207205435,52.43948458290432],[4.752999108151699,52.439438630011345],[4.752974172850988,52.43946377892352],[4.752655935806809,52.4393866689401],[4.752301695471888,52.4393456125522],[4.751908174627095,52.439295302953866],[4.751662057056811,52.43927590924961],[4.751557245508113,52.43925419018131],[4.751398614341928,52.43923302716188],[4.751344193372392,52.43920991548972],[4.751247967771627,52.439154628281955],[4.75117862847268,52.439132955402286],[4.751081929420523,52.43910961672355],[4.751002466888615,52.439098539809315],[4.750940495900875,52.43908299998865],[4.75085884728406,52.4390521293551],[4.75075247724317,52.439008965582104],[4.750665646923957,52.4389917552279],[4.750593625972911,52.43898376482808],[4.750525634618573,52.438983956845874],[4.750484049170137,52.438990779791276],[4.750453978220122,52.43900583438641],[4.750413689071051,52.43903908805627],[4.750380607532128,52.43909064340895],[4.750362320906305,52.43915139175823],[4.75034442794232,52.43918477472882],[4.750294197733909,52.439217965952935],[4.750178927256507,52.43927516421685],[4.750128762397864,52.439303798967714],[4.750051500755174,52.439358460162325],[4.749954651915643,52.439435431273196],[4.749745819980718,52.439563838747375],[4.74965613235657,52.43963264237685],[4.749615882124587,52.43968965941407],[4.749436534483499,52.43982424669602],[4.749132808322376,52.44003950269349],[4.749061489400212,52.44009697242936],[4.748958282856186,52.44018012797088],[4.748778424598647,52.44035085995974],[4.748683314827137,52.44045276223729],[4.748607919312688,52.440527663813604],[4.748549985814598,52.440575723356595],[4.748474278264537,52.440629412240646],[4.748432434435766,52.44064381868046],[4.748385513056144,52.44064929993539],[4.748334792229101,52.44064493715745],[4.748311029580469,52.44063752006138],[4.74826222806185,52.440604119414644],[4.748262749819883,52.44056797377605],[4.748283079194687,52.44052591316818],[4.748362787299447,52.44046609839418],[4.748607474674459,52.44024450453762],[4.749111215632274,52.43982851747171],[4.74930738348012,52.439687162707216],[4.749639796066356,52.43939758954182],[4.749988459379579,52.43914041263143],[4.750128045282002,52.439029697779475],[4.750187912781274,52.43897881673797],[4.750257589467523,52.438930999255675],[4.750416749091285,52.43882943984946],[4.750496942559645,52.43873648866355],[4.75070082741381,52.438608053298324],[4.750710857746997,52.43855687737425],[4.75071254219089,52.438478594716656],[4.750756724993534,52.43844246781884],[4.75093843915194,52.43824590319065],[4.751018053257128,52.438136833622536],[4.751178766287246,52.43792683614436],[4.751319946020764,52.4377046901493],[4.751375533199542,52.43760859546603],[4.751430254972613,52.437572740558835],[4.75147510961466,52.43753683270018],[4.751683497890868,52.437095145074295],[4.751750621939295,52.436881634042365],[4.751767648440908,52.43672508795556],[4.751758920401238,52.436646722469455],[4.751661724955982,52.43655281026357],[4.751755642792339,52.43584544368557],[4.751692844330892,52.43575774664292],[4.751623480714079,52.435441079978304],[4.751523682740969,52.43518451246101],[4.751507510992753,52.43493741707255],[4.751465340767396,52.43478657517575],[4.751452884132386,52.43462384915279],[4.75141935492681,52.43455739406166],[4.751237443965272,52.434498618196805],[4.751379560038294,52.43443369869855],[4.751260806832211,52.4340576457],[4.75138519348568,52.434041443204215],[4.751305333671791,52.43383854002861],[4.751167276670637,52.43384622963122],[4.750871504009449,52.433000032503706],[4.750722723407945,52.432551978949036],[4.75070152525146,52.43248816930996],[4.750684373218986,52.43243646984675],[4.750603108696964,52.4321926016364],[4.750571428039382,52.43210517890946],[4.750526756067167,52.43204180036388],[4.750440016823471,52.43194662199999],[4.750330641310641,52.431865207911734],[4.750280842597757,52.43183422932253],[4.750060695268529,52.43172460039407],[4.74979642146448,52.43159967932701],[4.749502379386707,52.43148965187117],[4.749237370712432,52.43141593748461],[4.748932857729248,52.43134802250955],[4.74861829220565,52.43129511596056],[4.748342841520844,52.431263513572276],[4.748096566822314,52.4312561639112],[4.747918944955064,52.43127328012534],[4.74194586833446,52.43204217045855],[4.73760165214807,52.43260282674425],[4.736318087653773,52.43277049596712],[4.733277044234033,52.43316341432064],[4.728947341998516,52.43372684496339],[4.726849006792898,52.434007361803445],[4.726537786835084,52.43405985009895],[4.726359740934011,52.434104038626295],[4.726250760078608,52.434142590327056],[4.72613152275108,52.43420819164974],[4.725972009186718,52.43433081086371],[4.725766076045129,52.43452688799047],[4.725692071054446,52.4345973430215],[4.7256221643553,52.434660208294574],[4.725483512282067,52.4346865591095],[4.725439374193527,52.43469494984218],[4.725402431646804,52.434634166388015],[4.725194810018367,52.43466557825387],[4.72494886782346,52.434702788402646],[4.724976700399274,52.43476206508582],[4.724928537396882,52.43476720655019],[4.72485666519917,52.43478050215875],[4.724753742329262,52.434771721114124],[4.724659911867686,52.43475477604446],[4.724495029716058,52.43469631483218],[4.724462995439634,52.43473995977063],[4.724418185891696,52.434739160928864],[4.72437728165289,52.43478003296187],[4.724515598413667,52.434816424768016],[4.723377152133336,52.43496617894228],[4.723604723963887,52.43562689967986],[4.723519257570985,52.43564834211649],[4.723479091244707,52.43563988443394],[4.723400668007121,52.43548876625514],[4.723352682211551,52.43540357260295],[4.723303913119135,52.435367681118564],[4.723214813806207,52.43533428694002],[4.723031636937802,52.4353003924639],[4.722762706584641,52.43530710877178],[4.722538512303158,52.435319548890284],[4.722392237116638,52.4353714773093],[4.722335863122333,52.43538963979372],[4.722300879472292,52.435397433602546],[4.72215601612686,52.4354297404917],[4.72214213862818,52.43545978942271],[4.722207743709496,52.43556427120075],[4.722246843142913,52.435646674210815],[4.722223898832088,52.43568216376861],[4.722183373909752,52.43569563364715],[4.722143289884471,52.43568171144496],[4.722117095381696,52.435634990131646],[4.722082413607701,52.435558076398515],[4.722025498552682,52.43546737654669],[4.721943094754153,52.435473852524154],[4.721895451778208,52.435477584607725],[4.721643715356363,52.43553095124562],[4.721468216490776,52.43558204032926],[4.721256730330745,52.435641114745884],[4.721072208152793,52.43569761706992],[4.720773183673235,52.43576905998159],[4.720727843554823,52.4358044143271],[4.720740638450868,52.43584830137204],[4.720806915407557,52.43590894565214],[4.720810354413334,52.43597746932208],[4.720774122155014,52.436004660128994],[4.720720501105955,52.43599615281488],[4.720571313483543,52.43578709543557],[4.720526798079994,52.43576767424254],[4.720297535660364,52.4358156819469],[4.720261827989528,52.435825610156854],[4.720191993412245,52.435844981117164],[4.720104083320368,52.43586938227657],[4.719834296589841,52.43593361747485],[4.71968993756202,52.43599855858045],[4.71968944186544,52.43603143283786],[4.719781496677195,52.43616620972107],[4.719803094894716,52.4362211294264],[4.719789213031539,52.43624841883215],[4.719748754531809,52.436256423727],[4.719724166533554,52.43625349905847],[4.719654096020488,52.436148999737064],[4.719553608814591,52.43597857492257],[4.719464192160498,52.43596437388666],[4.719338557152589,52.4359773632328],[4.719226193693546,52.43599865100535],[4.719167317735201,52.436042143234346],[4.719090927496191,52.43605540988951],[4.719028227883962,52.43605505640998],[4.718938438851096,52.43606552414808],[4.718812513980271,52.43609768209369],[4.718686476460853,52.43613533975047],[4.718610032531699,52.43615408829824],[4.718520355551448,52.43615906486035],[4.718479746530417,52.436177997531594],[4.718484024496306,52.43619171894373],[4.718510381102814,52.43622747697429],[4.718585211443134,52.436315574296316],[4.718633245134928,52.43639802891325],[4.718685556790877,52.43649422288761],[4.718617901864835,52.43652397703844],[4.718595506810084,52.43652385069792],[4.718560292256742,52.43648256919826],[4.718511939779868,52.436419274556116],[4.718368073621163,52.436155464303646],[4.718323434979589,52.43614423838027],[4.718278423325512,52.43615769958102],[4.718197148645637,52.4361983236526],[4.718081698793737,52.43624860525677],[4.717955607165508,52.43629171737507],[4.717685690396373,52.43636417072051],[4.717519165770683,52.4364125454463],[4.717375106819668,52.436458296673614],[4.717127885515911,52.43650895599111],[4.716925346861855,52.43657081454593],[4.71682618652369,52.43660861324843],[4.716785549288382,52.43663030440992],[4.716802920128095,52.43666602097804],[4.7169397043695,52.43680652660754],[4.716948066665785,52.43684767470869],[4.716911719316603,52.43688031923212],[4.716866816300842,52.43688555675687],[4.716835809812456,52.436860728082024],[4.716773980431223,52.43680283900115],[4.716650956513791,52.436643240242375],[4.716625524888618,52.43663484562843],[4.716549355069223,52.436634414622965],[4.716369598163296,52.436671765825146],[4.716252610120812,52.43670397164515],[4.716148853914768,52.43674997650979],[4.716100928390367,52.436776102051006],[4.716049458285591,52.436804193784624],[4.71592794303777,52.43683912388801],[4.715828879095623,52.4368714398004],[4.715783299165756,52.43692323842221],[4.715764389435544,52.436988058531604],[4.715783695869444,52.43703214658554],[4.715807684347161,52.43708692597973],[4.715789358230807,52.437114234684394],[4.715717548086101,52.43712203362748],[4.71568216956351,52.43709170636189],[4.715629504196326,52.43702018031868],[4.715549401475497,52.43698135783962],[4.71539728322949,52.4369667983807],[4.715120794558786,52.437000813140955],[4.714900685329607,52.43703792429698],[4.714827371137139,52.43705760491393],[4.714810714851993,52.43706207617524],[4.714756467189405,52.43709190419582],[4.714698013622957,52.43710526979769],[4.714643670307584,52.43714332098213],[4.714589425035891,52.43717588120512],[4.714526569381699,52.4371837572097],[4.714494885979453,52.437205480434095],[4.714516879680761,52.437233008808924],[4.714547730763929,52.43726606096853],[4.714583233591756,52.437288165522006],[4.714591704024379,52.437321090649654],[4.714631441881446,52.437359675725894],[4.714581818224425,52.437381315137515],[4.714545857436705,52.43738934378767],[4.714519033339188,52.43738645028806],[4.714395445371693,52.437262455301095],[4.714346473340282,52.43724025624686],[4.714252308731397,52.437245204110276],[4.714195276873251,52.43725499143996],[4.714109540607361,52.437295605360795],[4.714010891160341,52.43730050958645],[4.71392558339921,52.43731099899204],[4.713871280997217,52.43734629981615],[4.713785654646807,52.43737869037002],[4.713655070513221,52.43742178139176],[4.713614124451609,52.4374626494972],[4.71358668729023,52.437498111864734],[4.71356791592106,52.4375555445152],[4.713522568496417,52.43759087810327],[4.713436914403012,52.437626009501315],[4.713360880132984,52.43761463018813],[4.713266979570971,52.43760314024436],[4.713208399953851,52.43762471018038],[4.713190057306327,52.43765201839316],[4.71321624369689,52.43769873265877],[4.713175380445695,52.437734118578426],[4.713134961276251,52.437739371205794],[4.713103831068226,52.43772276460732],[4.713059859537246,52.43766771640734],[4.713001947272991,52.43764545695689],[4.712916557606138,52.43766415994351],[4.712826418020924,52.43769925639474],[4.712785497992899,52.43773738311088],[4.712722391049487,52.4377616772854],[4.71260535791968,52.43779937075546],[4.712529031545306,52.437807151052986],[4.712459273819793,52.437827803154],[4.712441340023663,52.43784658423892],[4.712422853222837,52.43786594637402],[4.712404468206382,52.43789599547762],[4.712399246312228,52.437945272344386],[4.712327141570629,52.4379722653186],[4.7123003861436,52.43796388920346],[4.712260315574717,52.43794722248421],[4.712192806467455,52.43796601779023],[4.712089266953831,52.43799830509878],[4.712016827745377,52.43804720802648],[4.711979742597617,52.438062356752475],[4.711917618242759,52.43808773462405],[4.711755678829111,52.43813065389028],[4.711670300396611,52.438146596818484],[4.711616538593001,52.438146290372345],[4.711567205300777,52.43814875040035],[4.71151406356121,52.438182007567285],[4.711511395283126,52.4382094048831],[4.711423300556199,52.43825683408586],[4.71134223942454,52.43828376640671],[4.711274869547371,52.438294347215255],[4.711114689137068,52.4383674024588],[4.710896365589835,52.438433277077785],[4.710812844504395,52.43847390126478],[4.710720395399366,52.43851266790333],[4.710587534029369,52.43855711768143],[4.710562678581797,52.438570682044535],[4.71053055248797,52.43862117135984],[4.710523476234987,52.43864441812552],[4.710469001865701,52.43869068142706],[4.710412717170038,52.43870817368107],[4.710148544329044,52.43844080825648],[4.710401029250739,52.43832798953185],[4.710690771118152,52.43821760290971],[4.710973497284111,52.43808502982359],[4.711540613998745,52.437871408706314],[4.711719507169463,52.43781800782284],[4.711830032014045,52.43776836941524],[4.711823224317731,52.437741295575336],[4.711781674847873,52.43773290693724],[4.711743746957069,52.437725230979005],[4.71167101801726,52.437736266804016],[4.711254730214012,52.43789604065099],[4.710173265990671,52.43829945588498],[4.708683389864661,52.43890760079648],[4.707186016423935,52.43957891261972],[4.706084985920286,52.44011809965991],[4.704761969860131,52.440798292049095],[4.703105840722286,52.44169396034529],[4.702679681870302,52.44192267287765],[4.7026242151374,52.44195242541522],[4.702114790410767,52.44222582721678],[4.700047572451095,52.44335229829783],[4.698607999635439,52.44413041361213],[4.694367467360384,52.44642225870913],[4.691571067495156,52.44792765132322],[4.688673347588927,52.44951165643594],[4.686460429088243,52.450706723587004],[4.685777172498003,52.45107571754346],[4.684708640434446,52.45165796828705],[4.682978418543494,52.452600750046955],[4.680146428587279,52.45416901904978],[4.678882053710016,52.45486123621695],[4.677503781683873,52.4556157979545],[4.674950578450749,52.45697844712859],[4.674024507823716,52.45746728280458],[4.67337416640767,52.45780857765142],[4.672344307954612,52.4583573452573],[4.672265101850148,52.458399550259266],[4.672577599197725,52.459620661704996],[4.672532804876019,52.45968935435318],[4.672425506738191,52.45982453869322],[4.672147023195581,52.46008388032933],[4.672010563192233,52.460189759252444],[4.671900588824456,52.46020910241808],[4.671491721918978,52.46028100812695],[4.670777216074214,52.46040666384431],[4.670439749942196,52.459956533028944],[4.670331705083892,52.4598422751551],[4.670239575491426,52.45979008366671],[4.670020351617358,52.459757759120386],[4.669817347516785,52.45976685779364],[4.669799803437761,52.45977082306481],[4.669639175064741,52.459807096031795],[4.669424100421082,52.45988360967295],[4.669251127899767,52.459969662195334],[4.668592604702617,52.460276566319806],[4.668221314688486,52.460449620487694],[4.667365060343,52.4608291975003],[4.666801173782416,52.46106158296915],[4.66479584202655,52.46182999942738],[4.664262448632924,52.46203435524822],[4.664098865207817,52.462147995878716],[4.664006109689685,52.46228184129723],[4.663951699744436,52.46244357574057],[4.663994595602373,52.46259008538052],[4.664882422078215,52.46368256062044],[4.665421850497419,52.46432226498793],[4.666437502628807,52.465514316714845],[4.666468791770836,52.46553484607939],[4.666683079905273,52.46578864888794],[4.666690211772481,52.46588743108318],[4.666855240860183,52.46608211870819],[4.667127672061731,52.46643558794015],[4.667254803814603,52.46657470756393],[4.66746956467466,52.466743074684935],[4.667478384636882,52.46674999482267],[4.668005339311418,52.467365892449045],[4.668200873929845,52.467675401152604],[4.668135466068382,52.467718486972345],[4.668479016592075,52.46847557203503],[4.668586009860856,52.468565881732076],[4.668720144308939,52.46876559218973],[4.668635533329968,52.468796707155036],[4.668615417567988,52.46884006769955],[4.668773813400301,52.4690465759987],[4.668818835459008,52.46906265812157],[4.668915946824962,52.46905929184856],[4.668951450647421,52.46909056837219],[4.669024388139883,52.46915482276072],[4.669087536303218,52.46925007028508],[4.670093414599432,52.47065944146059],[4.670307540823002,52.47102045036257],[4.671323829582673,52.472603479216104],[4.671973706698437,52.473615701604324],[4.671809140742234,52.47378864746571],[4.671450339130246,52.47326104551523],[4.670975897380401,52.4725661294367],[4.670631006758807,52.47205174699955],[4.669862751086975,52.47091894082845],[4.669765507548836,52.47093020726902],[4.669535885236736,52.470727223946746],[4.668747229940815,52.47068292029391],[4.667841823517761,52.47065766708866],[4.667552594657139,52.47093656165021],[4.66719700734885,52.47128558796798],[4.666355869061528,52.47211120955977],[4.666240034186581,52.472070977497324],[4.665628700572659,52.47266019469932],[4.664701847894362,52.473547900146954],[4.664042315465636,52.47431075413971],[4.662629472570921,52.47602559906621],[4.661123997393991,52.47785843433729],[4.660975751389707,52.477821962348976],[4.66056723829218,52.478266138697826],[4.659878190873294,52.478060312091216],[4.660122227320796,52.477781150222754],[4.660481944964576,52.47755013378175],[4.660939877805226,52.477248571296364],[4.661058014077166,52.477146520589116],[4.661163257220465,52.477044372853825],[4.661777269552243,52.47630103838513],[4.661546863199118,52.47614546299556],[4.661455627638891,52.47618443250481],[4.660898291979288,52.475841079176725],[4.66007206868509,52.47532213606059],[4.661045539044092,52.47475492940837],[4.662326682404157,52.47515410936618],[4.662742192685029,52.474674387357055],[4.663678882155105,52.47358515441465],[4.663791267803638,52.47343957447079],[4.665179329781824,52.47204475977034],[4.666191789743065,52.47106268800922],[4.666303065146261,52.470984308854234],[4.666390620249748,52.470890308605796],[4.6668237744902,52.47043984451337],[4.667133219133969,52.46927378267794],[4.667176414027439,52.469005250084436],[4.66716673178339,52.46880359735445],[4.667212104166165,52.46879991828385],[4.667182012561329,52.468661379022706],[4.667133284095088,52.46847529851687],[4.667041273171384,52.46816641689551],[4.666788440954483,52.46819649074446],[4.665714852067961,52.466924315692424],[4.663916005869028,52.46477403175014],[4.662454326785543,52.463023396496105],[4.662434039590766,52.463023218556586],[4.661993008950816,52.463147068657406],[4.661910528243132,52.46304773528356],[4.661840282242487,52.462991977209214],[4.661711607141815,52.462947716361775],[4.661550118178506,52.46293487330154],[4.661401093609108,52.46294977049232],[4.661270977556011,52.462992447438076],[4.661069247746186,52.46306631341352],[4.660822034868851,52.46315177316484],[4.660237067012078,52.46331815445112],[4.659334033267927,52.46354979075019],[4.658593552229052,52.463731036508904],[4.658421982594522,52.46376635529918],[4.657717259524039,52.463911433145846],[4.657679749180533,52.46383213746426],[4.657394203611521,52.46388572647931],[4.657456551230442,52.464028421641544],[4.656016044629507,52.464292278858224],[4.654406971070382,52.46457486785477],[4.654343322639219,52.46451122792792],[4.65406304498469,52.46454833108132],[4.653770895039194,52.4645870048848],[4.65336979134094,52.46463729886517],[4.652832938179837,52.46469557669747],[4.652635206209402,52.46471257890098],[4.651872187323277,52.464778196016375],[4.651456526898375,52.46481164015874],[4.650947195380181,52.46485259914408],[4.650485874826108,52.464871726521494],[4.650422238342986,52.46488718542201],[4.650369873794021,52.464915009532795],[4.650295224905141,52.46507298103068],[4.649410215362701,52.465100057701136],[4.64805247713509,52.465133843470866],[4.648027228891388,52.4652648348222],[4.647899042675534,52.465866104691344],[4.647858725937667,52.46586497250083],[4.646627007681641,52.465773663818446],[4.645562122320672,52.4657000851578],[4.64538078585373,52.465687554324994],[4.642856826814802,52.46550623622643],[4.642079712648681,52.465453827972894],[4.641935900401617,52.46543706976444],[4.641849308234239,52.465411225008026],[4.641815515285477,52.46540110809835],[4.641566865830042,52.46527984617967],[4.641541460893031,52.46526972801477],[4.641389411197714,52.465209192065856],[4.641262814436761,52.465197826105275],[4.640974879415751,52.46518547165135],[4.639148267517313,52.46517396124504],[4.636370785613763,52.46516343338025],[4.635646214749877,52.465177078813404],[4.634969956837787,52.46519836033488],[4.634005741091468,52.46527262522877],[4.633658190943074,52.465310601011964],[4.633460163000302,52.46534953540057],[4.633381854312612,52.46538191466458],[4.63310599530209,52.46577471278214],[4.633032787431437,52.46585827342095],[4.632942327984003,52.46590154013658],[4.632853816157845,52.46591343402749],[4.632847576649183,52.465846139158174],[4.632624997190645,52.46584296123697],[4.632391486731093,52.4658396234325],[4.632380035673496,52.4659052867818],[4.632241309698069,52.46586913568938],[4.632170785460939,52.46584107630767],[4.632118855512046,52.465774604906386],[4.632089122431633,52.46571039595238],[4.632025447002865,52.46565873338303],[4.631980678822831,52.4656347925301],[4.631903238933295,52.465634299240875],[4.631792843121782,52.46567302510702],[4.631720890214694,52.46572777828183],[4.631706826102341,52.465794737130615],[4.631785588154984,52.466096930079225],[4.631842212703448,52.46618405836824],[4.631880656422261,52.46620007674114],[4.631929327082013,52.46621268199654],[4.631989909021198,52.46622837399035],[4.632015126352987,52.46626403613688],[4.632077037369304,52.46641822845503],[4.632151552516618,52.46678924004783],[4.632234129884419,52.46720010953419],[4.632249577520302,52.46727708890461],[4.63224346131224,52.467319858501384],[4.632242257352798,52.467328317273534],[4.63218295246695,52.467398924710544],[4.632182346612582,52.46743441338283],[4.632223481782571,52.46767128618244],[4.632126538912873,52.46767856908158],[4.63213109889368,52.467789021315724],[4.632234583529123,52.46777785242933],[4.632264362568521,52.467923948766824],[4.632199606763414,52.467935373282295],[4.632282936181035,52.46834802697937],[4.632444569210753,52.46833328250003],[4.632465297298463,52.46835183028821],[4.633150363081754,52.46896482853451],[4.633614030643153,52.46940946886419],[4.633670782737785,52.46948870577423],[4.633691135716455,52.46957510824518],[4.633638713524379,52.46984633008141],[4.633567034343176,52.46989425541987],[4.633494144705502,52.46988884887821],[4.633546709040801,52.469640429854635],[4.631778701939939,52.469500897429825],[4.631726433229307,52.469747807666714],[4.629924683897659,52.469596950735166],[4.629873317885607,52.46958084921563],[4.62987372310092,52.469557187126526],[4.630008491986066,52.4692267782817],[4.629731609126165,52.46918557167395],[4.630185618383998,52.46830802457077],[4.630681077630798,52.46840189092435],[4.630740150155156,52.46834508790137],[4.630669507064123,52.46832294082009],[4.630657377827241,52.46827751136581],[4.630655980864384,52.468194860313254],[4.630655774082295,52.46818286037971],[4.63068313553061,52.46809232183902],[4.630883003846319,52.46772978272454],[4.630878539498573,52.467715463762445],[4.63071777802181,52.467199279646906],[4.630590371529398,52.46672324056984],[4.630655043768543,52.46671576201632],[4.630598655084563,52.4660489171217],[4.630401876638069,52.466043715651665],[4.630151389402493,52.46653607320668],[4.629787712056924,52.46722882560854],[4.629394401923595,52.467954911679875],[4.629077172894463,52.46857401661718],[4.628728493720383,52.46876700912211],[4.628680605569189,52.46873612653777],[4.627832542694549,52.46925126745632],[4.627636100087638,52.46960099791103],[4.6276133618167,52.46960874347354],[4.627600456471473,52.46960866080031],[4.627520923656954,52.469541120810696],[4.627403952634937,52.469585714414976],[4.627429303723209,52.4696134871527],[4.62728940539915,52.46967766179172],[4.627257492710997,52.469655760894476],[4.627146061384694,52.469706815974114],[4.627277808421923,52.46978899932021],[4.627009183944287,52.46983065219875],[4.626866660303968,52.46985827440376],[4.626682776099303,52.46989391784659],[4.626238990381373,52.469569372909916],[4.626210432130806,52.46954157933067],[4.626157127568324,52.46950137664329],[4.626139017599161,52.469428307020664],[4.626135753068445,52.469379410803896],[4.626145329532943,52.46935400105015],[4.626162802225865,52.46930760170558],[4.62626244410195,52.46914458366131],[4.626354336463388,52.46905643750699],[4.626523892245133,52.46895696169296],[4.627051767665212,52.46866751784635],[4.62746548195536,52.468447345652365],[4.627700080421068,52.4683187062905],[4.627896368829078,52.46816616544062],[4.628070714171251,52.46797501630227],[4.628709342202127,52.46724852679662],[4.628872794219681,52.46705801681725],[4.62901893122856,52.46688769018582],[4.629127852894828,52.46674640746398],[4.629130174308845,52.4667156303426],[4.629136002127316,52.466647873153725],[4.629091876883043,52.4665864564871],[4.629005651286878,52.46653266182089],[4.628896366116764,52.46650632992269],[4.628770466229295,52.46650749296763],[4.628488265041242,52.46658949808775],[4.62791044742288,52.466782990049396],[4.627348771207658,52.46697459636503],[4.627293392842774,52.46700382007945],[4.627247482950288,52.467066089429736],[4.627044290641319,52.46714612587918],[4.626715259560516,52.46721504600454],[4.626647183774001,52.467230382822706],[4.6265142411251,52.46726699085686],[4.626410329775383,52.46730380299975],[4.626296227533308,52.46737011030228],[4.626246885994377,52.46742302798055],[4.626108143524722,52.46760847112178],[4.625968926844013,52.467820541700696],[4.625948156118836,52.46790125298733],[4.625782737731761,52.468927335578684],[4.625622044774762,52.46992041819954],[4.625608602410007,52.47000107760091],[4.625365523185369,52.47050237937948],[4.625307399896418,52.47062225271528],[4.625305452719593,52.47065411966817],[4.625303477973052,52.470686732424916],[4.625301528777488,52.470718716204814],[4.625300313105321,52.470738876850426],[4.625299039504661,52.470759837031345],[4.625296081549465,52.47080851352333],[4.625293363813736,52.47085349760307],[4.625290212553028,52.47090570502802],[4.625280356634113,52.471067726338],[4.625201301146021,52.47153453508677],[4.625111004844724,52.4719386980689],[4.6249509863088,52.4726836496518],[4.624837284154559,52.47330307330408],[4.62482194192987,52.47333892645012],[4.624776245660089,52.473428509861165],[4.624700645165292,52.47354486412904],[4.624700490243569,52.47355384815747],[4.624700025292009,52.47358081102675],[4.624699250479774,52.47362574285118],[4.624697390833136,52.47373358444024],[4.624681592301148,52.473796395096976],[4.624680972407794,52.473832341992605],[4.624615131059977,52.474236366891915],[4.624467335322506,52.47512520141662],[4.624301710469223,52.47619367523906],[4.624250576794321,52.476597790782805],[4.623026217893428,52.476751687971564],[4.622485236684302,52.47654148314845],[4.622086770819932,52.47660182515017],[4.621009894243655,52.476738677572435],[4.619888697533399,52.47688421849785],[4.618855957766334,52.477021336088605],[4.61776418252003,52.47716704850044],[4.61562508090635,52.47744075791294],[4.6149168978085,52.47753501212962],[4.614874316805426,52.47744485669767],[4.614431675826069,52.47750488533588],[4.614459698010793,52.47758596013725],[4.614444983004824,52.477585864250365],[4.613589297864969,52.47769712563929],[4.613559861896807,52.47769693360915],[4.613531684021285,52.477624846196186],[4.613177507556398,52.477676461351706],[4.613190969829801,52.47774845280433],[4.613146812886175,52.47774816458869],[4.612660015443498,52.47780789840455],[4.612556992260026,52.47780722547829],[4.612439404096119,52.47779747138067],[4.611896886275978,52.47767708622874],[4.611867921693523,52.47764993098964],[4.611854146376995,52.47759591457589],[4.611854461573274,52.47757794118685],[4.611913648504203,52.47756035269705],[4.611871703905185,52.47743425391308],[4.611798118862563,52.47743377278761],[4.611769942540183,52.477361685846866],[4.612965078617347,52.4771987279503],[4.613007970275867,52.47727090707581],[4.61333255217991,52.477228088834984],[4.613333810545282,52.4771561952522],[4.614307700786377,52.4770187412359],[4.614335722440057,52.477099816074116],[4.614586708613683,52.477056510247344],[4.614558527977643,52.47698442395497],[4.615325890589364,52.47687258256938],[4.615724208285289,52.47682124820204],[4.616904602122077,52.476658155698146],[4.617494400255571,52.476599072217],[4.618821959055071,52.47643691129462],[4.619147300970162,52.47634914529999],[4.619694347871772,52.476208882724386],[4.619930453246175,52.476174459727844],[4.620727067569962,52.47607175687584],[4.62109578122898,52.47602920268193],[4.621493930591591,52.47598683382011],[4.622069310284082,52.475909659999964],[4.622143214233867,52.47589216138182],[4.622585975353689,52.47582311441255],[4.622807977578509,52.47575264389312],[4.622986760476366,52.475627969929235],[4.623299395328742,52.47542326406713],[4.623358885360147,52.47538769550591],[4.623508232264848,52.47526283294497],[4.623615129647574,52.47503882835835],[4.623798408453608,52.474653536465745],[4.623815610860937,52.47450984279441],[4.623846751356039,52.47441117923989],[4.623972866123069,52.47392665411633],[4.623973641757948,52.473881717807664],[4.624018874770949,52.47381909668456],[4.624094471612823,52.47370274462224],[4.624139555121011,52.473649107515115],[4.624154579003097,52.47363122874972],[4.624154734113642,52.47362224022898],[4.624070001378166,52.473414978259974],[4.624043210808331,52.47326201457111],[4.6240768255065,52.47301956330067],[4.624284114022766,52.472095160741794],[4.624315096735874,52.472005481936534],[4.624346544374033,52.471888845635924],[4.624468768259287,52.471628986974125],[4.624558918200317,52.47152171412059],[4.624559538166312,52.471485766309],[4.624575186962359,52.4714319406046],[4.624640715900271,52.4710458889416],[4.624656965830042,52.470957016754454],[4.624663251924244,52.470914239652394],[4.624671073314942,52.47086094779542],[4.624675826554896,52.4708285416583],[4.624680443931726,52.470797186211065],[4.624685528816889,52.47076261616386],[4.624690398681436,52.47072941985559],[4.624717556518367,52.470572111549075],[4.624674774081621,52.4704338029233],[4.624567079889943,52.47031480486325],[4.624426760497537,52.470215306916515],[4.624201921702798,52.47015075750155],[4.623930613745117,52.47016084821786],[4.623553981873012,52.470202930440514],[4.623518630530008,52.47010837655151],[4.622967676144417,52.47018355932133],[4.623005232074512,52.47028333148148],[4.622704187722746,52.470317638416745],[4.622667853983373,52.47035236641862],[4.622278514417463,52.47040317962636],[4.621662950363979,52.4704874305825],[4.621628032497634,52.470389310788136],[4.620519150518104,52.47053182779079],[4.620538259563586,52.470584960980005],[4.620646610113857,52.47057041829719],[4.620660582840386,52.470615069793865],[4.619468896536841,52.47076327017676],[4.618187428969723,52.47092737784967],[4.617125496257961,52.47106335497971],[4.615976819016331,52.47120567901676],[4.615950354201595,52.47112735854066],[4.615748253107727,52.47115271044776],[4.615788085864704,52.47123581852289],[4.61446758735672,52.471410120852106],[4.614441493668099,52.47131660419013],[4.61425992262977,52.47133938205144],[4.614292038304538,52.47143105058337],[4.613650367446469,52.471507567142034],[4.613366541268037,52.47143255504808],[4.61333275363349,52.47140794182847],[4.613175622415326,52.47093660596934],[4.613182110025615,52.47089135911326],[4.613205650954974,52.47084971081494],[4.613280383561301,52.470815362139795],[4.616749781387186,52.47037112375007],[4.618200278539934,52.47018846283439],[4.619367399307616,52.47004147331043],[4.621573334883886,52.46977180611391],[4.622253576384808,52.46968039626728],[4.62291802654482,52.469510480771234],[4.623456783403013,52.46935370098052],[4.623825810073623,52.469119178776374],[4.624113891538427,52.46894858553571],[4.624252244462507,52.468862375752444],[4.624339030024736,52.46878979199219],[4.624561355945935,52.468463736237894],[4.624708584142433,52.46819294804701],[4.624693227224427,52.46809181820046],[4.624659555744128,52.46806025245101],[4.624602956435512,52.46803549573483],[4.624523354154558,52.46802105275125],[4.624272404990534,52.46810918979611],[4.623685707607337,52.468315267851956],[4.622292246890727,52.46876264781946],[4.621363759306902,52.469033611457746],[4.621291615163319,52.46891819236248],[4.621154221763996,52.468948662994706],[4.621237769825078,52.46906415584309],[4.620241085936374,52.469319004549426],[4.619554092150737,52.469473066552005],[4.619418148709498,52.46950038088661],[4.618714695903109,52.46964172167701],[4.617742811147918,52.46980357030247],[4.617039911085091,52.46989229956536],[4.615970798391447,52.4700074400041],[4.615351365259444,52.47006675500435],[4.613486554577205,52.47018475284221],[4.611815721970036,52.47028255426413],[4.609333480487678,52.47042781491907],[4.609314029890674,52.47029781445467],[4.609231339993548,52.4702991413993],[4.609153876153079,52.470300385737715],[4.609165915919842,52.47043834568127],[4.608579477526554,52.47047512084371],[4.608363983419559,52.47050709505582],[4.608204898523759,52.4705475284507],[4.608049311503964,52.47060409065163],[4.607745397470849,52.47073109430379],[4.607535614039208,52.47083055756143],[4.607045725170509,52.47106280523445],[4.606650986892256,52.47120878379342],[4.606488212215555,52.471244570908844],[4.60624264699384,52.47127059113325],[4.604883572017569,52.47135953571704],[4.603403816124379,52.471448799546565],[4.603299532282608,52.47145764617011],[4.6032605784805,52.471438343608945],[4.603220687357231,52.471409651631575],[4.603153686316471,52.471387611072856],[4.602931109563193,52.47138444943926],[4.602319582298648,52.471412480420234],[4.602041971279903,52.47126703630421],[4.601974578396826,52.47126876506964],[4.601826938688923,52.47127253280991],[4.601503204919555,52.47130107230671],[4.601455983269648,52.471310618957375],[4.601491886013339,52.47148502141953],[4.60071778675778,52.47164620778685],[4.600738466112301,52.47175703803612],[4.600103751497042,52.47179087168554],[4.599837809647957,52.47178219450991],[4.599597009397991,52.471728691069615],[4.598251382096461,52.47134443506574],[4.598090564554383,52.47130246079335],[4.597812947254034,52.47122141557808],[4.597613761138017,52.47118525913823],[4.597398972029544,52.4711793338918],[4.597187817370061,52.471175679408645],[4.597170983417953,52.47106265862356],[4.596627650709523,52.471084315349486],[4.596640455387237,52.47121106780408],[4.595243896668117,52.47128825287543],[4.594839781261484,52.47131785959225],[4.594828505955829,52.47132452236447],[4.594835606238652,52.47133862036618],[4.594869425827255,52.471357097787774],[4.59619354321218,52.47173696076885],[4.596081316707714,52.471897436138605],[4.59712440961372,52.47219564610984],[4.597247717779535,52.47204452255605],[4.598163186950083,52.472303954623165],[4.598388442277494,52.472361903556646],[4.598561357980762,52.472395360180535],[4.598809901485372,52.47241076959453],[4.599534083170586,52.47237767197997],[4.601214434342972,52.4722688895963],[4.603788876187638,52.4721154405121],[4.603835151826777,52.472430318133654],[4.603846245912632,52.472505106527485],[4.606533904636565,52.47235374330161],[4.607553292640501,52.47228545467925],[4.60805923771345,52.472238226863304],[4.608879657225877,52.47212706001361],[4.609144663019294,52.472925895534296],[4.609095368966513,52.47293034277032],[4.609102703266299,52.47295090270976],[4.608781094010295,52.47299737871893],[4.608770341523273,52.47297427166464],[4.606143413038804,52.47331735201677],[4.602775831026923,52.47374423192599],[4.602791727730259,52.47385303661921],[4.602796028791914,52.47388255384791],[4.60264855055764,52.4739060158576],[4.602623611234705,52.47382748673848],[4.602657619334692,52.47382293655945],[4.602639702576051,52.47377001683745],[4.602393933231906,52.47379815519867],[4.602415746104804,52.47385138206041],[4.602472479969255,52.473842490262655],[4.602486298792327,52.47392544149213],[4.599753807211578,52.47427020941631],[4.599672666922942,52.47424888281762],[4.598860920676788,52.474018790905525],[4.598430615786715,52.474073678342506],[4.598352004279483,52.47405305881286],[4.598263606491888,52.47402988451572],[4.598290384340954,52.473988359535845],[4.598241861237159,52.47397413266167],[4.59827193273795,52.473928666003914],[4.598126292690112,52.47388996639731],[4.598093095575781,52.4739274760404],[4.597866550787442,52.47386638848453],[4.59785739619934,52.47383256957442],[4.59785152945723,52.47379678625778],[4.59798124872923,52.47363481870344],[4.59768677518186,52.473553424733154],[4.59759323163967,52.47367416430674],[4.596188961119622,52.47328451282578],[4.596039660606323,52.473333229813555],[4.59605636164026,52.47336283004364],[4.59597443490401,52.47339206071736],[4.595921664727745,52.47336586881659],[4.595889135002444,52.47339092259194],[4.595564673154231,52.473819611582776],[4.593972151285409,52.47345760574309],[4.594006934698469,52.47341627007726],[4.592989126041287,52.4731825157958],[4.589710518592788,52.4724372753763],[4.588046892466742,52.47205167910792],[4.586387060669145,52.471673107087504],[4.586100776738781,52.47207197437203],[4.585935495002339,52.47204332810161],[4.585886262084078,52.472047569275546],[4.585794892907752,52.472092934064335],[4.585680042073306,52.47219354600704],[4.585611497396565,52.472227678342975],[4.585517143576509,52.472229242463236],[4.584844466963093,52.47210392229876],[4.584089689963107,52.47192832645255],[4.58399604394927,52.47189314229415],[4.583936393223109,52.47185341855419],[4.583847203824722,52.4717820329974],[4.584353429989863,52.47152454058764],[4.584319362102557,52.471492086987936],[4.584283015015666,52.4714574977313],[4.583773119946762,52.47170795003409],[4.582417084627915,52.47080081174607],[4.58244779652604,52.47076872804584],[4.582475032599269,52.470725377052666],[4.582480044131274,52.47065856005914],[4.582435993608578,52.470589171233456],[4.582365174899222,52.47054487519708],[4.582128963079238,52.470477542291285],[4.580630782561498,52.47011852735418],[4.57998121127107,52.46997114658215],[4.579741570607762,52.46991552805795],[4.579646129379253,52.469889775231735],[4.57954243820182,52.4698572342928],[4.579018986821318,52.46958629039124],[4.578864385214818,52.469534725243385],[4.578691769093825,52.46950254950919],[4.577796387705605,52.46936262174819],[4.574288761745157,52.46881438643298],[4.574113702786946,52.46880494430404],[4.5739114336657,52.46880904860455],[4.573483769182244,52.46885277894309],[4.573317397907372,52.46885986985823],[4.57312885995025,52.46885034273928],[4.572949060210635,52.46882103031218],[4.572652774130805,52.46877272616214],[4.572302757319818,52.46871566640186],[4.568332666648907,52.46784907814084],[4.567479590441049,52.46771791433661],[4.567408217957129,52.467704224108196],[4.5671844682884,52.46768048780135],[4.564045314218252,52.467739904329235],[4.562668854891299,52.46776963122126],[4.562775011978592,52.46793690868186],[4.563693044991613,52.4678954715985],[4.563962316687219,52.4686170297459],[4.564514191988795,52.46936161655603],[4.565324823262457,52.470317866380675],[4.56558020767523,52.47071100122221],[4.566611291323109,52.47176752770782],[4.567382102846016,52.4726988074222],[4.568096006264307,52.473429674748004],[4.568767529950155,52.47426696496238],[4.569479871918146,52.4750862883083],[4.57022365489797,52.475844131678436],[4.570545219144673,52.476279468080406],[4.570664797199872,52.47641980773123],[4.571511854198623,52.4773060068735],[4.571561771507226,52.477375970337576],[4.572198022370042,52.47794476731999],[4.572489982742353,52.47827433246908],[4.572987116996631,52.47884829881357],[4.573490112379868,52.47931478170797],[4.57367531011492,52.47952425462335],[4.573966445160295,52.47982942557584],[4.574145745559212,52.48004683749926],[4.574676718274727,52.48078419291785],[4.57522612139195,52.48159401346191],[4.575548594887111,52.48207616592002],[4.57558462713552,52.48212527981592],[4.576211311889048,52.48311047999582],[4.576686025594396,52.48384743187345],[4.576978669040828,52.48427361711388],[4.577071256911527,52.484490403965765],[4.57714072472129,52.484653044338145],[4.577314202532019,52.484950707803286],[4.577491784598438,52.48599770704673],[4.5779302296215,52.48663887493269],[4.578137061356546,52.48687647482988],[4.578191869725652,52.48696287034314],[4.578345148346833,52.48715276522989],[4.57851658184021,52.487443960449106],[4.578713573396322,52.48770403251698],[4.578762158449217,52.48778868663645],[4.579041899895197,52.488075100756625],[4.579468821945227,52.48866361378641],[4.579649861914607,52.48902131714211],[4.579811221885303,52.48931520903108],[4.579891335864601,52.48949399096907],[4.579929756845361,52.48967247919513],[4.579960739603066,52.489793979499545],[4.58001923311502,52.48989182256535],[4.580047119617619,52.49009339143654],[4.580347053921419,52.49077266566102],[4.580526179702423,52.491340156746915],[4.580583309293827,52.49154832265157],[4.580688949881601,52.49172626190441],[4.580795266277529,52.491882462539145],[4.580901731759803,52.492031259095604],[4.581007481631133,52.49221706213814],[4.581160691443957,52.49246243557781],[4.581302849978849,52.492648494724186],[4.581361605065565,52.49275254843016],[4.581504035369746,52.49292379829165],[4.581622625716915,52.49307267650105],[4.581812897290597,52.49328127939157],[4.581900022199992,52.49338879696117],[4.581960809274378,52.49349460056522],[4.582203420485114,52.49381699122517],[4.582477141800964,52.494105764427914],[4.582896153626709,52.49474290564014],[4.583219785994327,52.495299057598984],[4.583559541033007,52.49587438973071],[4.583830976893649,52.49632172153412],[4.583980454463602,52.496560181101536],[4.584502253359561,52.49736533536208],[4.584630435065464,52.49757176151651],[4.584840023870905,52.497926036861735],[4.585019782301162,52.49825325479888],[4.585105795935916,52.49842141225849],[4.585236714021608,52.49870149967082],[4.585346873193241,52.49896577383143],[4.585403563386079,52.49911155924942],[4.585618739972397,52.4997168983409],[4.585751933828836,52.50007805157583],[4.585902508453819,52.50045956413142],[4.586075206224216,52.50086373825313],[4.5862266578753,52.50119457457266],[4.58631699423914,52.50138246122503],[4.58677574124353,52.50228821011461],[4.586959121853294,52.50265716099552],[4.587138249585158,52.503027628751404],[4.587233603350697,52.50323076460225],[4.587607215668873,52.5040541826562],[4.587822060610055,52.50451323088289],[4.587939305814759,52.50480194070301],[4.587988144960954,52.504898896415156],[4.588029750336707,52.504967555954764],[4.588222718990898,52.505412640975784],[4.588466402008612,52.505718442376406],[4.588740330201699,52.50624092610484],[4.588914540307164,52.50654867750343],[4.589004688527793,52.50671217691407],[4.589156053164084,52.506994860336],[4.589295236186588,52.5072645364205],[4.589403717496742,52.507312757774976],[4.589439781727647,52.50738491885274],[4.589576664553292,52.50761173659854],[4.589702549898427,52.50793687563518],[4.589766049209767,52.50815566815332],[4.589887852149775,52.508379982617264],[4.589917718918211,52.50852546924499],[4.590080959579928,52.50888942585509],[4.590114745118529,52.508991672931174],[4.590184887247528,52.50917721850787],[4.590233422950028,52.50932818619097],[4.590260053885636,52.509420516678674],[4.590277260184756,52.50951278205803],[4.590321407741763,52.50968011554582],[4.590370321659478,52.51010665788355],[4.590387351102209,52.510207855797404],[4.590459393849087,52.5103982861326],[4.590522814631419,52.510542613738075],[4.590602824257676,52.51076762722576],[4.590674566509837,52.51102138166698],[4.590822672172241,52.51145345185164],[4.590933486961432,52.51183546183978],[4.590965127949281,52.51201122147839],[4.591016145156835,52.512220238796104],[4.591269994593548,52.512866682674144],[4.591353901240138,52.51306071416671],[4.591410940896424,52.51332066075179],[4.591621513695141,52.5137664593235],[4.591646334051481,52.51384674993974],[4.591670575586734,52.51395909749176],[4.59171819797815,52.514231842082275],[4.591817763989481,52.5144587193327],[4.591845202661865,52.51464152463484],[4.591912813247022,52.51500527650491],[4.592000448153589,52.515389448565124],[4.592056287885353,52.51560112375168],[4.592170259859758,52.51598142765637],[4.592297560064362,52.51636554159],[4.592372206235921,52.516582590449154],[4.592514593948025,52.51698238885368],[4.592712620857388,52.51739164790259],[4.59278618564434,52.51752651498465],[4.592992339875921,52.51799377046556],[4.593158080058497,52.51842262943563],[4.593268293146636,52.518653262260955],[4.593466589905102,52.519077816835676],[4.593662648236795,52.51952310046773],[4.593769745153116,52.5197830575101],[4.593960418991539,52.52027662219396],[4.594138659897146,52.52077585550839],[4.594228160188219,52.52104382736745],[4.594373144325455,52.52151237792559],[4.594536104729843,52.52209106707568],[4.594682051419107,52.52265576625208],[4.594826149747695,52.523014949290136],[4.594852911990185,52.523122296722725],[4.594908341923638,52.52324807148354],[4.595080638100047,52.52352815335461],[4.595122371662769,52.52365038801732],[4.595162265591344,52.52379526285347],[4.595181560840714,52.52396580643504],[4.59521071757658,52.52411791833928],[4.595310740931089,52.524440811855534],[4.595328867445827,52.524788215488634],[4.595359029392767,52.52490660339379],[4.595390461143478,52.524991171157964],[4.595452192254845,52.52524319215681],[4.595566681268899,52.52554185230572],[4.595624458187732,52.52571280431053],[4.595834123043207,52.52603649139704],[4.595945976288114,52.526288351948715],[4.596204654383802,52.52683595873872],[4.59630774883717,52.527076840524195],[4.596419791344822,52.52731777283571],[4.596456985202791,52.527403358299686],[4.596731892842389,52.52788211870683],[4.597036967997759,52.52834069528571],[4.597237962114852,52.52875811504772],[4.597282314307374,52.528871241936855],[4.59737901075092,52.52934849081998],[4.597488970000833,52.52955725032304],[4.597540651755928,52.52984654664511],[4.597594528597667,52.530093821464334],[4.597729528822274,52.53042134809317],[4.59775493496627,52.530576239182814],[4.597806965388989,52.53081727404354],[4.597831436805673,52.53102372182596],[4.59789000260456,52.53142523738834],[4.597943927888022,52.53156039247457],[4.597998214161092,52.531675292711256],[4.598060150420907,52.53188758700288],[4.598128518824809,52.532266007307314],[4.598372009301154,52.532828859142526],[4.598540892437687,52.53336257020834],[4.598647139145081,52.53372406548235],[4.598744825176081,52.534038329513436],[4.59877777010995,52.53429642127265],[4.598803386931499,52.53443984426741],[4.59882982545729,52.53453743762625],[4.598901884121116,52.53470983057558],[4.598939042061075,52.53478805486435],[4.598996324229388,52.534938671465525],[4.599084098707421,52.53544115097669],[4.599198553824069,52.53589058189699],[4.599389128894876,52.53641260758105],[4.59950695102668,52.53690914655738],[4.599591675650228,52.537712653496655],[4.599593284764352,52.53787514140157],[4.599665704183373,52.538172420826896],[4.599857088323732,52.53841604954127],[4.600065959499694,52.53864784215398],[4.600211305271337,52.5388911658573],[4.600231422299747,52.5391244469021],[4.600235348012649,52.53945076730536],[4.600188513467187,52.53982206849277],[4.600205412968003,52.5399233441899],[4.60015497664871,52.540058668801684],[4.600201204554238,52.54043052401756],[4.600245876482627,52.54088959271603],[4.600254499111061,52.54098386698563],[4.600279853400643,52.541278226462275],[4.600282479549533,52.54130868490092],[4.600310422103279,52.541616471015885],[4.600319031459853,52.54170001397245],[4.600363480675828,52.54207580993133],[4.600407727705521,52.542356499447735],[4.600437694231061,52.54250546001253],[4.600501623687956,52.54276273238063],[4.600687824415474,52.54341515407467],[4.600768258876758,52.5436722380931],[4.60081702569336,52.54381105022105],[4.601007135885615,52.54429842273546],[4.601054193594996,52.5444356065513],[4.601129689166475,52.54468796511415],[4.601212799211464,52.54499696984081],[4.60128478217938,52.54527191870691],[4.601330194766517,52.54547508832152],[4.601397748985053,52.545539373507324],[4.601426910999787,52.545633648713356],[4.601499713364672,52.54579490970692],[4.60169043758424,52.546425735029466],[4.601749783359559,52.54655785978045],[4.601794766476645,52.54672165973144],[4.601975144504792,52.547207041635204],[4.602041882303014,52.54747812645779],[4.602127078434671,52.54789267641097],[4.602186732837112,52.54800598110784],[4.602233239534457,52.54810951021592],[4.602305430636296,52.54827021920567],[4.602392608043027,52.54857187086153],[4.602382901668579,52.549117524238085],[4.602439242717721,52.54941897194589],[4.602518890295706,52.54990699421276],[4.602670630633446,52.55028612371082],[4.602759487144767,52.55049370306207],[4.602849517179293,52.55068425141874],[4.602929610643535,52.55083572613553],[4.603024742596919,52.550968266208606],[4.603210980651872,52.55112902488453],[4.603451721518375,52.55146933032948],[4.603600612346943,52.55177139716412],[4.603627456855199,52.551997387370896],[4.603715653006189,52.5522425934383],[4.603772006902332,52.55254404841101],[4.60388872173885,52.552921174362474],[4.604053046618532,52.553468164000236],[4.604092640156004,52.55359995837959],[4.604166071393409,52.55417721067303],[4.60426203022029,52.55448550714062],[4.604289897717313,52.554655052806844],[4.604310643770999,52.5549376511697],[4.604357060233724,52.55526596779689],[4.6043658848409,52.555341944032186],[4.60440789431367,52.55543837008119],[4.604455527508401,52.55567492252017],[4.604514976354365,52.55587968287216],[4.604642482028371,52.55625874737042],[4.604705190169511,52.55650929289648],[4.604782257268384,52.55679175978142],[4.604888345397722,52.55711989401607],[4.604951151666748,52.55736588419731],[4.605028702536099,52.55762107586448],[4.605090951944723,52.557898553814475],[4.605169874842055,52.5580765430779],[4.605241497817023,52.55821549523281],[4.605292540830439,52.55831260950257],[4.605364891481497,52.558440502666855],[4.605422643235029,52.55855009894122],[4.605473337585056,52.558636893098544],[4.605544641034158,52.55882393541457],[4.60558049452008,52.5589060841141],[4.605600700393929,52.55902908704643],[4.60560574109781,52.55916563237921],[4.605618268735945,52.559300851889795],[4.605554870859254,52.559509763987734],[4.605543732979104,52.55971717761674],[4.605574211703495,52.55994537480424],[4.605593631955695,52.56005872708032],[4.605679723075894,52.56039011788161],[4.605800818235412,52.56074940175694],[4.605866605395405,52.560953402948286],[4.605983102843692,52.56133089208801],[4.606161686232507,52.561934359243516],[4.606276493682573,52.5623310342983],[4.606387389522575,52.562725516575995],[4.606544416247877,52.5633168967053],[4.606627756456614,52.563680308164194],[4.606646707051453,52.563777858737055],[4.606663836947593,52.563874039317476],[4.60671080527131,52.564210257913835],[4.606738021228559,52.564529153457045],[4.606742690670764,52.56461440413681],[4.606746132821042,52.56469833366719],[4.606748277771053,52.56499048011534],[4.606818981011314,52.5652306517894],[4.606899383002804,52.565393693043205],[4.606979065430497,52.56559735324201],[4.606995550211134,52.56560761747947],[4.607075234780557,52.56581128660148],[4.607171625159873,52.56601202669624],[4.607200087705221,52.566286460667406],[4.607411237812733,52.56659256121809],[4.607595831853756,52.566869276597195],[4.607655683604004,52.567016949347554],[4.607672938749044,52.56721903978514],[4.6076825742358,52.56738150802316],[4.607709112956127,52.567528871283876],[4.607715389523134,52.567638641446116],[4.607847893666833,52.56806623079862],[4.607954792838222,52.568357113156985],[4.608068417552047,52.568677400925964],[4.608228612033663,52.56909935643735],[4.608332520396425,52.56935859158216],[4.608549023410337,52.56994326679278],[4.608623816916474,52.570175834328644],[4.608660126620875,52.570258047717694],[4.609040629742728,52.57170583656752],[4.60910585685348,52.57192151543224],[4.609123880567421,52.572017845093725],[4.609167458805915,52.57234282330478],[4.60917503340232,52.572472733831006],[4.609201544348799,52.57264728366022],[4.609177034233101,52.57295376881405],[4.609206985690225,52.573361369045514],[4.609232307198422,52.57376210927521],[4.609254704317618,52.57418414064325],[4.609001060051849,52.57467054694541],[4.608971234672825,52.574854963505885],[4.608945489641988,52.575096613319296],[4.608864016881571,52.57549839814848],[4.608801430724574,52.57574525291505],[4.608760582674067,52.57595228256758],[4.608751785444835,52.576149797755164],[4.608765321014223,52.57658714768009],[4.608796314262405,52.576938169935175],[4.608846001981928,52.577132832839084],[4.608951862270357,52.577457418957586],[4.609000463551072,52.577713611334524],[4.609117347452763,52.57801560293604],[4.609281276429762,52.5783613311249],[4.609377863622321,52.57860812202816],[4.609432588858688,52.57885458570631],[4.609434721982839,52.579000423118124],[4.609445569635653,52.579289433978744],[4.609498859278763,52.57958129223751],[4.609527367289441,52.57977257244169],[4.609757786009861,52.58026640810281],[4.609963883363165,52.58063122106708],[4.610097702481809,52.58087809394842],[4.61020122682223,52.58103415545395],[4.610326009092529,52.58119033971446],[4.610501079214467,52.58150870793328],[4.610608840934008,52.58182203422866],[4.610608931990379,52.581991045038464],[4.610703898191824,52.58240533416672],[4.610702126912341,52.58248326230535],[4.610723175054693,52.582599976926666],[4.61071741327043,52.58266497200984],[4.610721383318125,52.58294204702855],[4.610738472781748,52.5830332291973],[4.610781618176009,52.58318721653786],[4.610802314926524,52.58331310417734],[4.610820954643016,52.58355652692242],[4.61093135997807,52.583863588648825],[4.611019909347799,52.58403839014718],[4.611085703527506,52.58414475580476],[4.611282908426662,52.58466270898744],[4.611362065689654,52.585375395188784],[4.611409622177062,52.585647874426186],[4.611497864549081,52.58584394778993],[4.611534645772933,52.58599094403527],[4.611555360779201,52.58611674348674],[4.611606525374749,52.5864828060667],[4.611645417493378,52.586873053830224],[4.611620703078871,52.5870263729721],[4.611641684565249,52.58723693435328],[4.611647538041279,52.587605216595],[4.611703607270171,52.58811458076344],[4.611768709014875,52.58832446840126],[4.611841411942599,52.58850830680011],[4.612021530996406,52.58915933232189],[4.612089557726389,52.58953104970879],[4.612115666868553,52.58973645763723],[4.612140435741516,52.58998686798436],[4.61217041610876,52.590600639897715],[4.612196361387392,52.59083790735128],[4.612418338554532,52.591171363094894],[4.612571781161241,52.59132460281514],[4.612728509022702,52.59156790044292],[4.612898066628,52.59189430790696],[4.612966316590399,52.59207675838332],[4.613081891394423,52.592351944529945],[4.613124894377551,52.59263682168209],[4.613236090632223,52.59286911866633],[4.61328112888194,52.59297603063783],[4.613321828136318,52.5931072434577],[4.613383571005383,52.593264782860835],[4.613486704396492,52.593514245277014],[4.613609730156814,52.59385551037274],[4.613675020249557,52.59410021535065],[4.613730863777215,52.59436687901618],[4.613790998219272,52.59461606114946],[4.613804955200539,52.59498291417263],[4.613926610294627,52.59540272946157],[4.613976243757164,52.59550277669517],[4.614008691408871,52.59582118158891],[4.614169924442895,52.59624235863651],[4.614248320312676,52.596781065967555],[4.614263880777197,52.59701555167864],[4.614296653478045,52.59713884929896],[4.614350065670201,52.5975427704789],[4.614380901179075,52.59789937846841],[4.614489204408985,52.59834991505653],[4.614615787910584,52.59854421968401],[4.614694878324046,52.59897567527481],[4.614718672208409,52.599266052598985],[4.614596973015795,52.5996170490485],[4.614477416646364,52.59984493180477],[4.614458509189339,52.60009985535378],[4.614170549789866,52.60066654688582],[4.613898307916348,52.60116646599389],[4.613791421920298,52.601627312903545],[4.613648420337426,52.602268545738184],[4.613767465147443,52.60299174142324],[4.613888630200244,52.6035945563519],[4.614106798695295,52.60414600880778],[4.614220168419393,52.604745868633316],[4.614350932319344,52.60540363075773],[4.614572681024207,52.6059067528027],[4.614830178296248,52.606249580798845],[4.615284600335332,52.606633809331896],[4.615402337350544,52.60676668070224],[4.615542249081972,52.606968547953514],[4.615878162764079,52.60722912799887],[4.615998828270397,52.60740816833747],[4.616074658038755,52.607620251185516],[4.616105656735972,52.60777814711615],[4.61619172258064,52.60816962385567],[4.616244780070319,52.60839995701638],[4.616328381204173,52.60880417888222],[4.616390990099962,52.60918140279155],[4.616403692033569,52.60927895319038],[4.616414380848843,52.60937351747964],[4.616436224608633,52.609690224135974],[4.616476561276421,52.609976933752556],[4.616479537536585,52.61005227597248],[4.616490567443051,52.6101205361832],[4.616563212557646,52.610325174264865],[4.616583051312231,52.61051355491073],[4.616615866687024,52.61058303395912],[4.616659571132275,52.61069931832968],[4.616653514891545,52.6108640279717],[4.61662676774225,52.611049426467154],[4.616568573515623,52.611257459039294],[4.616544539054192,52.611392259589216],[4.616536464357232,52.61171623163448],[4.616615117616681,52.61240877403493],[4.616705931940229,52.61269502065556],[4.616737343264374,52.61291236093161],[4.616829030159425,52.613624751745576],[4.616863752230243,52.61395093333168],[4.617069067421767,52.61423767718551],[4.617094588425496,52.61431497276713],[4.617219243060722,52.61477821204145],[4.617237268350009,52.61515070535768],[4.617336613868282,52.615427559837535],[4.61744649262029,52.61562056673251],[4.617552278467802,52.61577999690819],[4.617746682272069,52.6161468726235],[4.617802591360301,52.61681075979534],[4.617798998354294,52.617372127577454],[4.61779176174595,52.61779224319523],[4.617770223632438,52.618179650802695],[4.61774697279903,52.61852739474178],[4.617734621938715,52.61882852850402],[4.617730130275556,52.61911012052779],[4.617730466784055,52.619399265368365],[4.617739222053117,52.6196350083668],[4.617749751424038,52.61977102036406],[4.617779031169864,52.62002648879364],[4.617828198845156,52.620371673498134],[4.617884091520727,52.62073854160032],[4.617936858744156,52.6210383090714],[4.6179934478264,52.621110250246964],[4.618011306436722,52.62119527091375],[4.61807311015748,52.62139130909279],[4.618175420276248,52.62158493105144],[4.618511300786276,52.62202127706063],[4.618837306374992,52.622476252047576],[4.618867102630621,52.622573885368375],[4.619001135484798,52.622854989314874],[4.619055958751146,52.62310783527776],[4.619049734691144,52.62319615127353],[4.619064003901822,52.623495677316924],[4.619145430183209,52.623920049208635],[4.619137813778643,52.624288862467495],[4.61917604446183,52.62445846836262],[4.619233189154584,52.6246639205137],[4.619264012532547,52.624705434796994],[4.619390353073283,52.62506227929495],[4.619489599829606,52.62541373504187],[4.619600889581891,52.6261104839462],[4.619660817019201,52.626528335284796],[4.619731674008599,52.6270903351824],[4.619793055691008,52.62746905646472],[4.61981935475705,52.62758045531143],[4.619958909513358,52.62793491176609],[4.620114359871593,52.628271521837696],[4.620320432483757,52.628788540697855],[4.620417035244783,52.62909164306427],[4.620446971255859,52.629211467500724],[4.620586879426781,52.6296988589012],[4.62075887723143,52.63039802849528],[4.6208408739678,52.63070230432487],[4.620922210941536,52.63104453859759],[4.621005280861127,52.631288065451784],[4.621087148730922,52.63159993545146],[4.621119273147654,52.63190388958141],[4.621144434155714,52.632278655451614],[4.621183530011709,52.632486884729374],[4.621127452435953,52.63289103712762],[4.621109422132601,52.633313381573494],[4.62107750698999,52.633919628234146],[4.62109398759821,52.634296746613465],[4.621079342556255,52.63437422153309],[4.621091802282923,52.63465732470894],[4.621087394658545,52.63491050709518],[4.621069851286303,52.63517150473654],[4.621071469963792,52.635258414253855],[4.621058425350085,52.635319543314736],[4.621114043988818,52.63550109560269],[4.621138557734968,52.635704395542916],[4.621162475172278,52.63582315713514],[4.621206720040401,52.635996133998745],[4.621228396133859,52.63615210689319],[4.621225240451842,52.6363791439552],[4.621246889447882,52.63710608359677],[4.621251014467901,52.63715520017795],[4.621193633269347,52.6377578212081],[4.621204203427384,52.637810016144705],[4.621214625212481,52.638008219184876],[4.621229909902674,52.63814857478528],[4.621261808791831,52.63835377264088],[4.621295399378544,52.63846188257655],[4.621289448429965,52.63853811208075],[4.621362014873352,52.63871046233301],[4.621445980595498,52.638980724396205],[4.621494212305144,52.63905566624699],[4.621522742732963,52.63911673051011],[4.621599757517365,52.63931618911146],[4.621684834589733,52.63956450103944],[4.621855140495121,52.639899424686675],[4.621962176241224,52.64011610642705],[4.622019384203033,52.64023910829842],[4.622118905605972,52.640466688141295],[4.622212194657402,52.640695721488065],[4.622260563933623,52.640820804449824],[4.622341880361021,52.64104352250446],[4.622419017068163,52.64127045564558],[4.622537624387271,52.64164788840585],[4.622647892756516,52.64188728421311],[4.622672994282458,52.64195966726346],[4.622711286494392,52.64203214500332],[4.622760524445554,52.642233078646015],[4.622854589379292,52.64251923020893],[4.622912303638985,52.642603201746276],[4.622973200548882,52.6427862705108],[4.623007725028575,52.642938018610735],[4.623047054760863,52.643059726726044],[4.623084930171695,52.64315620781044],[4.623099211244706,52.64329949448282],[4.623148754575165,52.64341087968165],[4.623176086800191,52.64349682179252],[4.623185795160664,52.643555463858675],[4.623252440497693,52.64375666093953],[4.623327844563076,52.64392811121944],[4.623356243490057,52.64409996230856],[4.623368280922527,52.64414957711849],[4.623539030470446,52.6444719273638],[4.623576492095524,52.64459246387781],[4.623620605731038,52.644818313034314],[4.623657617118083,52.64506442710693],[4.62365303761524,52.645127371285646],[4.623675689451012,52.645369196923625],[4.623603275958851,52.64583726041576],[4.623601104381897,52.64590788806445],[4.623520232751341,52.64613107322569],[4.62344873059223,52.64671405484172],[4.623565650493206,52.64715692201035],[4.623752917749709,52.64735329401999],[4.623782697440464,52.64739897024835],[4.623870067880389,52.64758040987779],[4.623952683132058,52.64783675642767],[4.623973827367575,52.64801822113371],[4.62402032823922,52.64835045874644],[4.624089777874027,52.64878757327567],[4.624165677376697,52.6492429284973],[4.624243435379089,52.64969013591551],[4.624318440847182,52.65010281232529],[4.624348448145105,52.65035363610624],[4.624361303066357,52.65043628540038],[4.624355081003381,52.65053866448601],[4.624343134938552,52.651076571781346],[4.624384185769363,52.65154872507382],[4.624411065426624,52.65176693964499],[4.624397796799876,52.65192540940033],[4.624442076492174,52.65250195338228],[4.624401064805321,52.65304582853563],[4.624362935624572,52.65342327820251],[4.624377059234339,52.653778862453954],[4.624434103468272,52.65410878627616],[4.624490855055793,52.654659993697386],[4.624502158550305,52.654950734913434],[4.624489381387345,52.65540295816398],[4.624599726540358,52.65598995601573],[4.62471860052221,52.65636897655525],[4.624791312004723,52.65680915825056],[4.62496149039717,52.65742095677341],[4.625095515268651,52.657800461226394],[4.625215500190064,52.65815436048213],[4.62525372708707,52.658294779986136],[4.625324262197595,52.65851035273541],[4.625376683472815,52.65862225821666],[4.625469526970821,52.65883427995315],[4.625467289227585,52.6589634666579],[4.625521528883513,52.65917524108469],[4.625545053309091,52.65959970266333],[4.625566616913804,52.65991552084138],[4.62583042288945,52.66039357443141],[4.625901639608942,52.66063416280574],[4.626199597763073,52.661313516564796],[4.626283407255986,52.661474144058026],[4.626346793535886,52.66168239051674],[4.626322410852757,52.66197587661873],[4.626377066181663,52.662164161147516],[4.626451647166925,52.66231734186447],[4.626583919757491,52.66248262891592],[4.626696119961649,52.66269244549419],[4.62672821161993,52.6627940978159],[4.626769326916194,52.66292433718203],[4.626880894387625,52.66317171562806],[4.626912375936726,52.66358302493604],[4.627010794263923,52.663933520591456],[4.627072297641012,52.66438275850494],[4.627102594571541,52.66486453772997],[4.627167078162214,52.665320140472055],[4.627197481090226,52.66539728326333],[4.627222682147361,52.6657344957105],[4.627281091806589,52.66614908629331],[4.627308481151696,52.66622110588677],[4.627407974925452,52.66665017583718],[4.627500483481527,52.66690518863039],[4.627569127851615,52.66723854414715],[4.627588673926412,52.667313587225806],[4.627591423740367,52.667461598898875],[4.627647299795148,52.66774772533263],[4.627667742344769,52.66791046243249],[4.627754412038134,52.668239278309805],[4.627765531335532,52.66832302118008],[4.62784823753389,52.668639345344545],[4.627902097447823,52.66887444671296],[4.62786955569247,52.66908526105586],[4.627882598292061,52.66917493791176],[4.627854974380036,52.66936711698455],[4.627889935014562,52.66957862281653],[4.627972157977821,52.669856343205765],[4.627994936646453,52.66994120385781],[4.62805314674937,52.67019001151828],[4.628147621082929,52.67050914164584],[4.628180277884285,52.67058115051535],[4.628198580458124,52.670836336051785],[4.628295844675184,52.6710840086549],[4.628347151139629,52.67147255969189],[4.628401045784526,52.67171113895097],[4.628464195106234,52.67192339945871],[4.62861315683634,52.67238215369008],[4.628676421763183,52.672640008261155],[4.628689441084926,52.67286665126924],[4.62867824706789,52.67351535517742],[4.628749632390525,52.67384339828949],[4.629412871453219,52.6748484314672],[4.629581793370256,52.67518415020375],[4.629666111320303,52.67568203505667],[4.629679820150614,52.67605930110564],[4.629728441512393,52.67649323859277],[4.629970306885554,52.67713209410123],[4.630014713874707,52.67730956117291],[4.63001940610157,52.677386522242784],[4.62999707845496,52.67746376969628],[4.629995241233352,52.67757040927656],[4.630068754111891,52.67792962366678],[4.630098444972027,52.6780558503536],[4.630206187520586,52.67827953752923],[4.630423831448478,52.67860086957761],[4.630549003065937,52.678737399807346],[4.630635353629403,52.67885194459014],[4.630861449560649,52.67910782118582],[4.630890991402497,52.67924374395793],[4.630930582973681,52.679391943420704],[4.630941871899923,52.67952820939312],[4.630975621498894,52.679784858102224],[4.631047745907673,52.68021255399954],[4.631028095770628,52.680496885602956],[4.631043809495493,52.68069478566951],[4.630981620378777,52.680973643236854],[4.63093616135572,52.681392225403975],[4.630972811577409,52.681485547709144],[4.630920002644827,52.681693582139104],[4.630943401891239,52.68180338557088],[4.630927118063295,52.681867019854685],[4.63098678751592,52.68212749906543],[4.631213031583443,52.682649130347606],[4.63152571848558,52.68311929988144],[4.631667359657171,52.683427357501095],[4.631691234031257,52.68382192374904],[4.631703508703334,52.68396720099153],[4.631819137582087,52.68454305681578],[4.631877959885629,52.68485582872209],[4.632085737195574,52.68552317619375],[4.632213409498111,52.68585559863825],[4.632480804982095,52.686662140807],[4.632529522870232,52.68705991168263],[4.632562882894923,52.687273885384094],[4.632681549882212,52.68812940768891],[4.632668180424109,52.68812944783695],[4.63266330444846,52.688413379400394],[4.632622306874404,52.68866479784511],[4.632568959479938,52.68907540301311],[4.63256898125658,52.689378112097415],[4.632566897258002,52.68949944488138],[4.632529925912857,52.689867777973056],[4.631543005937546,52.68994739801712],[4.631490580028846,52.68999255590569],[4.631501354127082,52.690024083336205],[4.631523698268037,52.69004163894953],[4.631569111743185,52.690048949981055],[4.632462757053804,52.689977293124116],[4.632562368866487,52.69068456520076],[4.632570817001796,52.691070200000816],[4.632623573300431,52.69168614365687],[4.63179775160089,52.69177173755524],[4.631829685368345,52.69186967667878],[4.632684325225222,52.69178581018679],[4.632732500687809,52.692206890835784],[4.632724348680487,52.69287105025087],[4.632793054326362,52.69328029798198],[4.632903288107867,52.693644496034395],[4.63301991500155,52.69389644685167],[4.632406162319421,52.6939440507959],[4.63236015704191,52.693964826908164],[4.632359558805691,52.6939856106255],[4.632380848211374,52.69403825816998],[4.632941395716719,52.69399751413406],[4.632887948201913,52.69419492093852],[4.632844756959016,52.694560914439435],[4.63282861718362,52.6947850439973],[4.632887217197867,52.69518940035029],[4.632936412345531,52.6953981542939],[4.632984919682682,52.69564699505467],[4.633098724284188,52.695936322788576],[4.633198428732761,52.69613531293121],[4.633360296835254,52.69664951903693],[4.633538478803641,52.69705556782251],[4.632951422173921,52.69711637709331],[4.632904406544397,52.69714386497442],[4.632897923960262,52.697171875770266],[4.632903225323894,52.697193010519804],[4.632937600726288,52.69721063847699],[4.632989646899162,52.69722135577943],[4.63352328762552,52.69716679570025],[4.633472725158102,52.697403847436306],[4.633466692303378,52.697658867160484],[4.633446357383784,52.69796111321427],[4.633488029183634,52.69836370893748],[4.633494533290252,52.698634797196135],[4.633566966326516,52.698960513064065],[4.633661994371526,52.699268765020825],[4.633694148755167,52.6999934846149],[4.633654649278191,52.70034534545139],[4.633706088687961,52.700596208284566],[4.633777585404824,52.70110873464918],[4.633766277440954,52.70110988802542],[4.633714307266565,52.70112697268474],[4.633684999068548,52.70115122432237],[4.633672966718884,52.70118597547187],[4.633677912435641,52.701214091889355],[4.633706167105492,52.70123167634622],[4.633751799627023,52.70123898695896],[4.633814157849359,52.70123203823529],[4.633933080837937,52.70187009360188],[4.633999621249637,52.70199132018439],[4.634111255601891,52.7022478930688],[4.634294278196309,52.70275914819759],[4.634531627595729,52.703202344728496],[4.634561594145005,52.703303847250545],[4.634674713805945,52.70362626122366],[4.634785840673762,52.70403382451637],[4.634839979600104,52.704321362537],[4.634874427045232,52.70460876615967],[4.634887762312135,52.704979808023026],[4.634759357699933,52.70558814047877],[4.634559469394115,52.70561105322076],[4.634575614411841,52.705707766156856],[4.634719974945635,52.705692467731254],[4.634859065693151,52.70582844200048],[4.63489969477856,52.7059200449246],[4.635122831004989,52.706197579315806],[4.635276618018387,52.70641378496974],[4.635426942769753,52.70683326933179],[4.63548292012858,52.707012989783685],[4.635577665013087,52.70722883288044],[4.635745626791949,52.707768003019964],[4.635780904512884,52.70800738454864],[4.635794460449234,52.70836620293634],[4.635848801469575,52.70864158170504],[4.635865222216901,52.70883301506505],[4.63587817239761,52.70894354877056],[4.635989151189007,52.709305922540146],[4.636091153456521,52.709511510626065],[4.636162697527019,52.70977360586267],[4.636158757908259,52.710003932230244],[4.635981969840467,52.71002321045131],[4.635427715254154,52.71007925159904],[4.635464697103695,52.710187897889995],[4.63571636938916,52.71016063714274],[4.635893860146009,52.71039099342414],[4.63604167295908,52.71059774237414],[4.636125895760856,52.71072964076571],[4.636152844750813,52.71083928400185],[4.636171915604077,52.71098828643652],[4.636219435123245,52.711159369270945],[4.636296243841866,52.71130436004087],[4.636430097753692,52.71148474178795],[4.63667049442839,52.7117555674781],[4.636817640691032,52.7120017110667],[4.636886558736445,52.71218605966832],[4.636967581751137,52.71250623624432],[4.637030306534795,52.71305400621202],[4.637042158902493,52.713202962916945],[4.637055300857963,52.71327748673736],[4.63710454534947,52.71334786127873],[4.637182800594661,52.71340856860787],[4.637254114201614,52.71345280444496],[4.637310715021756,52.71351446271669],[4.637352979876412,52.71357165389083],[4.637366496179669,52.713624296187945],[4.637328893352377,52.71371601637778],[4.637285132762963,52.71374638707204],[4.637219680061975,52.71378100684411],[4.637140335537921,52.713784883706076],[4.637075464871264,52.71378447495306],[4.63700392788184,52.71375337779487],[4.636903340374005,52.7137352269017],[4.636824207132464,52.713725965594456],[4.636716037712564,52.71372967035993],[4.636650792908563,52.71375115184178],[4.636606882025309,52.713790283863425],[4.63659149796636,52.713847111802174],[4.636602914618503,52.71402234435783],[4.636629645134869,52.71414512529173],[4.636619817540743,52.71429832117617],[4.636577780006557,52.71450829461233],[4.636274329855059,52.7145383204571],[4.636230573133184,52.71456949873791],[4.636242848319678,52.71460889877248],[4.636298475986785,52.71462778127975],[4.636453307417682,52.71461983981932],[4.63657155375765,52.71460932451401],[4.636872319725481,52.71470606342698],[4.637286726706448,52.71491886640757],[4.637536124231049,52.71508683609333],[4.637627955083944,52.71519688741012],[4.637676979813388,52.71528039956673],[4.637676082769498,52.71533294206582],[4.637639301494292,52.715376495210954],[4.637559493597863,52.715406648911355],[4.63745845200074,52.71541476613185],[4.637365141703119,52.7153922856187],[4.637279621534282,52.71533482110784],[4.637173171688517,52.71523781670414],[4.637060156775685,52.715101352977506],[4.636975716230006,52.714982585267485],[4.636904999034537,52.71490332274278],[4.636812122941617,52.71485456595139],[4.63671153445715,52.714836415804555],[4.636617387496567,52.71486210081258],[4.636558686923921,52.714923032378955],[4.636555792176219,52.71498760423271],[4.636637180239523,52.71528589117806],[4.636712573851629,52.7155140742544],[4.636745536276064,52.71569381122154],[4.636815282886048,52.71583000160032],[4.636914079226074,52.71595323663596],[4.637012365786146,52.716107115610924],[4.637131063936256,52.71633119537333],[4.637248784053128,52.716613290172404],[4.637372074184388,52.716990648225014],[4.63744597888481,52.717306401533975],[4.637510793640303,52.717731571419804],[4.637512841169201,52.71803372563121],[4.637530349260737,52.718274683632174],[4.637543118225777,52.718371096842915],[4.637584489311586,52.718480830319876],[4.637725206472987,52.7186831470709],[4.637848424611561,52.71895848136012],[4.636754097188577,52.71906639877093],[4.636597112208444,52.71908450959216],[4.636571015856026,52.71910961434044],[4.636576826797721,52.719141105245846],[4.63661164104091,52.71916098961406],[4.636681915596888,52.71916929554341],[4.636927535069144,52.719145834140626],[4.637008286749364,52.719298261567666],[4.637091553442136,52.71948707683062],[4.63717251785054,52.71981162989833],[4.637230275960573,52.72022799269828],[4.637323714132736,52.72066647294405],[4.637349626318353,52.72083741964395],[4.637310147186583,52.72103859987709],[4.637233273159962,52.72130184459942],[4.636519591428859,52.72137238262862],[4.63653055181392,52.721475805263395],[4.637062237047109,52.721422580283715],[4.637157213443389,52.7215510752799],[4.63719235308473,52.72160384381584],[4.637255722824061,52.721691824005205],[4.637361007938853,52.72185888395395],[4.637459072940469,52.72202590012974],[4.637555654937422,52.72228048517121],[4.637602593627761,52.722486596161524],[4.637614617543649,52.72262680089705],[4.63761771117255,52.722867658853836],[4.637623200472885,52.72296841274777],[4.637635969460112,52.723064826725455],[4.637684255293081,52.723192119562746],[4.637703785038038,52.72331485460072],[4.637680217763831,52.723428554933875],[4.637590686829925,52.723579857537246],[4.637115157506474,52.723636968919315],[4.637024356467043,52.72369200771024],[4.637030101874263,52.723727992628156],[4.637048873838334,52.72376012593182],[4.637131752550934,52.723768510964895],[4.637247113454398,52.72376474317372],[4.637555568303856,52.72372514784333],[4.637666766496695,52.723794114534456],[4.637737962623363,52.72384711074881],[4.637801487613895,52.72392633714516],[4.637864265521886,52.72404933534698],[4.637960915636121,52.7242995444705],[4.638106393489383,52.72464639335253],[4.638146652333351,52.724821807596754],[4.638200746110752,52.72503233996149],[4.638304980594306,52.72526069379202],[4.638366431633018,52.725462519718576],[4.638357417357419,52.72556754915321],[4.638270044355744,52.72580731663014],[4.637756586747086,52.725886677078755],[4.637703784968667,52.72591780341718],[4.637696857628512,52.72593797735691],[4.63772227239544,52.72597352972503],[4.637754535753632,52.725993954845976],[4.637806357953045,52.726006069497735],[4.63785883727315,52.72599461131161],[4.638150811295764,52.72595464914455],[4.638198553706769,52.72600554637051],[4.638247069877433,52.726119710950776],[4.63825976643654,52.72622050107142],[4.638257450083399,52.72635623774091],[4.6382338078702,52.72647431527655],[4.638231416734472,52.726614428219406],[4.638279185080162,52.726772372661586],[4.638412200504652,52.72700529393912],[4.63853093369752,52.72722936185676],[4.6386349672206,52.72747085501518],[4.638788923847706,52.727743316198136],[4.63893878362257,52.72807809539211],[4.638158784643593,52.72817869153723],[4.638173153287674,52.728278765069135],[4.638745915275747,52.728207008414685],[4.638895222077097,52.72827494526853],[4.639016572385839,52.72834576370433],[4.639187580016461,52.728465073276354],[4.639279514639548,52.72857073681834],[4.639377898644391,52.72872024603367],[4.639440986058881,52.728825737250396],[4.639489358089905,52.728948644820754],[4.639523463428008,52.72906271647509],[4.639584104890659,52.7293126986592],[4.639618373487382,52.72941799982643],[4.639660192686963,52.72950146553796],[4.639759998719243,52.729567770269334],[4.639962701054893,52.729630928994155],[4.640135004849758,52.730206478558976],[4.638929380802429,52.730355627492536],[4.638975742089405,52.73049914452902],[4.639671202297317,52.73042120000445],[4.639809676074917,52.730462494386465],[4.639959854820825,52.73053349991951],[4.640073872698399,52.73061303366943],[4.640165874944416,52.730714330002584],[4.640228965756191,52.730819812659824],[4.640373066987177,52.73124985340296],[4.640441283131604,52.73147798796702],[4.640482035682782,52.73162712479354],[4.640493682369579,52.7317892192104],[4.640520729432024,52.731894483735495],[4.640568809669638,52.73203491386924],[4.640618307210944,52.73209214796746],[4.640675607066288,52.73211439991951],[4.64075861661369,52.73212754814757],[4.6408633146309,52.73245671012702],[4.639809555577072,52.73258940097084],[4.639747663472571,52.732610925877765],[4.639705732586145,52.73264829279597],[4.639725017342874,52.73271132394536],[4.639770903676966,52.73273969593516],[4.639842850368124,52.73274014750338],[4.64092607174434,52.73263010978707],[4.641217570664243,52.733587942084846],[4.640563854377899,52.73367371752318],[4.640172570667324,52.73372013568302],[4.640092180512101,52.73374097493909],[4.640056728529884,52.733764903688616],[4.640051108440224,52.73379576626082],[4.640070435537243,52.733829588449616],[4.640125077200973,52.73385407974567],[4.640210012095716,52.73385180767592],[4.640651180692422,52.7338101966149],[4.640959464902516,52.73377528878275],[4.641010224836107,52.73389155012202],[4.641009310797594,52.73394529745175],[4.640989366302801,52.73400275315861],[4.640937687369588,52.734067702994764],[4.640867106815646,52.73412868694618],[4.640771111536791,52.73419719646791],[4.640585704378204,52.734318888526175],[4.640489316421688,52.734410421340776],[4.640398937396718,52.734521196405],[4.640383731685692,52.73467082608877],[4.64043136114041,52.73484389467154],[4.6404862955343,52.734959409485874],[4.640566970122209,52.735048223067075],[4.640735559270931,52.73517213340986],[4.640835853846399,52.735222667693826],[4.640961434551838,52.735273361247856],[4.641106177095543,52.735312670273245],[4.641257499692397,52.735336651415196],[4.641434516166101,52.73533776011082],[4.641567644009202,52.735315560584944],[4.641767196109957,52.73530711185618],[4.64208004309175,52.736260844604686],[4.641043275270484,52.736395901521774],[4.641025111235273,52.736430614701234],[4.641041984025749,52.73645206399628],[4.641128576816736,52.73648798532763],[4.641219772492556,52.73648518824598],[4.64211520087075,52.736384638735295],[4.642532481382716,52.73778587213435],[4.641682173935846,52.737891767102525],[4.641615210764203,52.73790426330698],[4.641592318322946,52.73793838975421],[4.641624591492189,52.737999809527615],[4.641674044174001,52.73801641640593],[4.641702181394166,52.73801434486308],[4.64258640257373,52.737907534809764],[4.642944972679451,52.738986547087706],[4.64213908234413,52.73909890521054],[4.642053284074777,52.73913712005619],[4.642031106579562,52.73917629912782],[4.642052075354395,52.73920226835499],[4.642136768047673,52.739228636264514],[4.642243176885173,52.73922930193138],[4.642954660597101,52.739111302385126],[4.643268257469448,52.74006084573015],[4.642479400893627,52.74019072518758],[4.642368259436635,52.74022934886675],[4.642330526818911,52.74028471359336],[4.642366276018591,52.740346168337894],[4.642429738584482,52.74039711876569],[4.642548841305558,52.740420328672705],[4.642705417329539,52.74041007545651],[4.643358585673727,52.74033495139324],[4.643637301603397,52.7411792384099],[4.643562935280809,52.741212474939715],[4.643065411149467,52.741270598491376],[4.642806989362827,52.741330200303544],[4.642751443717419,52.74135232184378],[4.642704778175255,52.741402028257674],[4.642694264815398,52.74146936603767],[4.642730090818779,52.741519575527946],[4.642794038920168,52.74154805914158],[4.642895152662471,52.74154869110385],[4.643005599461934,52.74154376524029],[4.643484637981792,52.74149058714845],[4.643622702868472,52.74148078240673],[4.64374470027402,52.74150456906659],[4.644015505369371,52.74232465258331],[4.643699814933196,52.74235750555829],[4.643478653358724,52.74238983003173],[4.643303415631646,52.74242186846777],[4.643146143926749,52.74246582438386],[4.643109301577055,52.742482442383775],[4.643098351482251,52.74258235669755],[4.643152566279284,52.742638865870966],[4.64321650940273,52.742661730456206],[4.643354505266165,52.74266259240555],[4.64411323491651,52.742620716975885],[4.644274328618363,52.74310870392494],[4.64450410516746,52.743860006728596],[4.643729720116449,52.7439927852564],[4.64361783160147,52.74401399827252],[4.643565787468748,52.744053548318334],[4.643539313455594,52.74410674857771],[4.643549624089524,52.74414051557931],[4.643580155209515,52.74417496423375],[4.643618458666046,52.744201606656304],[4.643685619609506,52.74421213645654],[4.643816178191799,52.74420901685643],[4.644577094267327,52.74407952394925],[4.644630879543937,52.74421691206483],[4.645074158566614,52.745396986362415],[4.644177171517913,52.74552620348972],[4.644063504142657,52.745563121616755],[4.64402907293788,52.74562863140867],[4.644065176442461,52.74567603727237],[4.644135271786054,52.74572478307942],[4.64420118496056,52.745747657588886],[4.644262388183016,52.7457542171184],[4.645145258357138,52.74563334310373],[4.645247665513312,52.74596088492007],[4.645444428162671,52.746564807397405],[4.644548211568224,52.746681113194235],[4.644441936008551,52.746718646657015],[4.644424654855563,52.74675561255547],[4.64446293261889,52.746845154466946],[4.644519960641897,52.74688033695815],[4.644601108710647,52.74689151961874],[4.644690575055476,52.74688252227747],[4.645527053325571,52.74675574190467],[4.64563791923786,52.74711955941511],[4.64564166282643,52.747131844745994],[4.645822374377981,52.74772481808807],[4.644929711406978,52.74785462152643],[4.644865090185884,52.74788567280817],[4.644834223982573,52.74791805963019],[4.644874873640154,52.74798403845756],[4.644939108407904,52.74802431190992],[4.644993271015581,52.74803026637381],[4.645869106528536,52.747931247332986],[4.646191082226349,52.748870721914464],[4.645353444582367,52.74896885879746],[4.645234660296004,52.74899339248873],[4.645154185981029,52.74904456707635],[4.645162996453683,52.749091246210824],[4.645205086545302,52.74914711348367],[4.645248862604695,52.74918614759464],[4.64531519164728,52.749205091271456],[4.645383829232919,52.74920383727097],[4.646256889245645,52.74909861219409],[4.646541432209192,52.750042908763135],[4.645648367060236,52.750146883555246],[4.645584030116939,52.750174004231496],[4.645580166785006,52.750211615501044],[4.645595085841745,52.75026618735381],[4.645637609830626,52.75031812798629],[4.645711173416834,52.750333191797324],[4.645800581445937,52.750328133186386],[4.64659849674595,52.75022019910564],[4.646669915883855,52.75041779605467],[4.646821721952326,52.7508366393814],[4.647070021399914,52.75154366946923],[4.646649952504419,52.75160004010656],[4.64619600976408,52.751661251098504],[4.646091690579565,52.75167800832829],[4.646025165450357,52.75172590100686],[4.646019082137702,52.751784280246476],[4.6460527002664,52.75185638717437],[4.646117475119326,52.75189218231049],[4.646172470119003,52.75189027767125],[4.646646225349642,52.75182075643868],[4.647145037074382,52.751747468826416],[4.64763809006431,52.75306546206952],[4.646845879241614,52.75318186681103],[4.646747308371276,52.753207649250214],[4.646688447599598,52.753247165419204],[4.646655190322497,52.75330425414387],[4.646671631403773,52.75334479561846],[4.646727654088305,52.75339906649337],[4.646793980518964,52.753418579061155],[4.646855961477355,52.753414470745334],[4.646994766269554,52.75339679386024],[4.647246121310954,52.75335510777295],[4.647543425671175,52.75331931533151],[4.647736456420937,52.75330535073412],[4.648216943502487,52.754615957277665],[4.647460079785318,52.75472078718352],[4.647355648513376,52.75473755203056],[4.647297400192573,52.754760784976675],[4.647287603440143,52.75478543684925],[4.647328124332399,52.75486657511278],[4.647393365500967,52.75490235981733],[4.647447120487498,52.75491280413342],[4.647523317608775,52.75490316680823],[4.648280824309292,52.75479384872948],[4.648746144504051,52.7560313382706],[4.648721583359857,52.75609465107554],[4.64800105643924,52.75621207328361],[4.647887553571216,52.75624507411856],[4.647850262635058,52.756273483650205],[4.647825278854573,52.75631433759677],[4.647831483495575,52.75638570397812],[4.647881663011042,52.75642927119569],[4.647948464138704,52.75644878153545],[4.64805264824439,52.75643987743405],[4.648490622362063,52.75635384390935],[4.648713838028341,52.75633500692129],[4.64886214779428,52.756364580682664],[4.648935479463739,52.7564223269883],[4.64896815547615,52.756488240416616],[4.649228352288795,52.75722230147553],[4.648279722092306,52.7573450542533],[4.648216421816675,52.75735926742104],[4.648198658278507,52.75739622718245],[4.648246251868592,52.757531883290234],[4.648283745025049,52.757566942630746],[4.648414269387744,52.75756775216394],[4.649298950606702,52.75743562679958],[4.649497572608344,52.758010905488035],[4.649637126410703,52.758335306569634],[4.648701277351648,52.75851598999158],[4.648626239960956,52.75856045844801],[4.648622527957086,52.75859526309814],[4.648695849723421,52.75868783620532],[4.648769633809796,52.75871805701791],[4.648839740282378,52.75872018202437],[4.649739951689314,52.75856623636698],[4.650092611377771,52.75947330347092],[4.64921269847967,52.759616705414224],[4.649133232829207,52.75964148570474],[4.649116812419829,52.759675650831106],[4.649125509190948,52.759715025906],[4.649187046511734,52.75979965836677],[4.649242353373642,52.75982134889589],[4.649287413640827,52.75981881145773],[4.650154432504044,52.759678705629035],[4.650519537120835,52.76059090784959],[4.649594182141938,52.76073684011933],[4.649533520294248,52.760765670743616],[4.649529097404095,52.760808330201456],[4.649565062802656,52.76089224329687],[4.649582209939592,52.760912014098395],[4.649662147290251,52.76094227241915],[4.649746417515868,52.76093380880453],[4.650587485662498,52.76079633860993],[4.651029414424459,52.76171182685303],[4.650174768759539,52.7618565092256],[4.650088530848599,52.76188462560268],[4.650039229226106,52.76192588579937],[4.65003604495443,52.76195675558664],[4.650092467337677,52.76202956571092],[4.65014218972906,52.76206638334455],[4.650190477611102,52.762072298100534],[4.651071209790053,52.761924403043935],[4.651109920059746,52.761921829267635],[4.651133934577197,52.76193827390892],[4.651143945994303,52.76196248404161],[4.651563566683061,52.76280143746056],[4.650642913471032,52.76296088762785],[4.650578966374905,52.76298520852436],[4.650566298469588,52.7630222000917],[4.65057646777429,52.76309247000691],[4.650605146595246,52.76311455871182],[4.65065772699272,52.7631542013451],[4.650691440723386,52.76316620350534],[4.650780551766593,52.763153270141565],[4.65163779406422,52.76301309383795],[4.651664035665718,52.76301437743761],[4.651680395657,52.763025714979634],[4.652129972778462,52.764011450841835],[4.652127643187395,52.76403277896858],[4.652099732446409,52.76404776885211],[4.651311888887949,52.76419624986932],[4.651249051374098,52.76420990223361],[4.651211228073383,52.764235506422224],[4.651208473839029,52.76426189163049],[4.651254121427868,52.76432788977996],[4.651310893881796,52.76437317401968],[4.651353519384687,52.76438523821767],[4.651415262567134,52.76438224669449],[4.65220277941467,52.764239379892174],[4.652228811857797,52.764240104874986],[4.652245713532881,52.76424638685194],[4.652717988846955,52.76518507437873],[4.652733802940888,52.765201468119585],[4.652718885150479,52.765283941259554],[4.651850613397213,52.765471247568414],[4.651799492345601,52.76549620367925],[4.651789771514758,52.76553770887366],[4.651853375584959,52.765583038593846],[4.651912930915833,52.76560025510718],[4.652008191649183,52.765593544565036],[4.652891415730024,52.7654243042974],[4.65300090771981,52.76548114465381],[4.653122563396007,52.76563243035651],[4.653382660674632,52.76604743679068],[4.653458582415412,52.76617934021808],[4.653566940999029,52.76628954004688],[4.653492653295258,52.76630199611442],[4.652526904182495,52.76646175215526],[4.652451117058162,52.76650060233073],[4.652485387870082,52.76654912004785],[4.652615546340988,52.76655329095456],[4.653576752794295,52.76640868177977],[4.653712349972826,52.766378059199965],[4.65424606259737,52.767168838760355],[4.653472002331165,52.76736234257936],[4.65305078013492,52.76748556857024],[4.653020128785522,52.767519081190684],[4.653029693742735,52.76754947236689],[4.653094449982539,52.76757403039149],[4.653169577102105,52.76757449324915],[4.653551508925543,52.76747461595632],[4.653593976674877,52.767463742471875],[4.653983367393363,52.767466139362995],[4.654198462126661,52.767487566889805],[4.65436324689398,52.76754388692122],[4.654637207171157,52.76767787826843],[4.654733682709072,52.76781515651069],[4.654705110111647,52.767913019808574],[4.654686783554455,52.76801849611949],[4.654643845634073,52.76810873183609],[4.654489432788369,52.768223427864626],[4.654062894690656,52.76834107612854],[4.653801920552288,52.768406876593346],[4.653730954453054,52.768454742510976],[4.653745131731609,52.76850033306901],[4.65379989076576,52.76852818941738],[4.653895139206479,52.76852877566106],[4.654150488881504,52.768432612654266],[4.654405668082411,52.76836359616595],[4.654684438662172,52.76836531034036],[4.654799601017568,52.76837139255087],[4.65490563090799,52.76839356916712],[4.654975910992526,52.768431656869254],[4.655037163636968,52.76848044566807],[4.655098060038046,52.76855074906256],[4.655140755149309,52.7686478460533],[4.655156963999575,52.768739388963574],[4.655154987620053,52.76885772739577],[4.655117465718623,52.76898122259089],[4.655035601217044,52.76910444440172],[4.654825257004021,52.7692958791386],[4.654439876551019,52.769424089888105],[4.654439219258692,52.76946340691955],[4.65447859577382,52.76950353183609],[4.654553310796701,52.76952813769823],[4.655236835291144,52.76930236254179],[4.65541196559358,52.76939724516638],[4.655499367240429,52.76947309346237],[4.655577803366976,52.76955425191381],[4.655690634510123,52.76970021144919],[4.655750633184214,52.76982429559428],[4.655739336260885,52.76996946604851],[4.655569626211658,52.77024741824127],[4.655521803660488,52.770262044897265],[4.655375472070827,52.77032461820874],[4.65536950957102,52.77037625715255],[4.655429098762278,52.77041312854594],[4.65554463895534,52.770398679606366],[4.655859222171455,52.77030174249282],[4.655974880639517,52.77038338524498],[4.656140050526418,52.77049540324707],[4.656335994664219,52.7706725807826],[4.656572013036514,52.77093044682045],[4.656763392450778,52.77113029691965],[4.656281120355126,52.7712878545817],[4.656260176096218,52.77133603240564],[4.656304525986367,52.77139135014608],[4.656394291351951,52.7714160597224],[4.656892600674083,52.77125422949422],[4.657214185216539,52.771503227131845],[4.65754119859232,52.771771704189675],[4.657638723936181,52.77188794760051],[4.657730891708654,52.77212837621482],[4.657113366611632,52.77230962132856],[4.657112253272716,52.77237645568049],[4.657241576790611,52.77243173106951],[4.657362170655344,52.77242011167724],[4.657853847584813,52.772282060579016],[4.657958974034399,52.77231475271057],[4.658057657915121,52.77236060639976],[4.658221042912612,52.77250238816367],[4.658277379307876,52.77260328887284],[4.658333047065121,52.77274441058333],[4.658412743924188,52.77293595366287],[4.658447217344274,52.77310585879835],[4.657969353102736,52.77325682049485],[4.657938649731648,52.77329932015991],[4.657997826017758,52.77335416087878],[4.658117693937232,52.77337286844848],[4.658507748716623,52.773256582250134],[4.658653893816379,52.773384903189964],[4.658808598576019,52.77355177676332],[4.658938011490243,52.773743623325615],[4.65910015178352,52.77396080557044],[4.659286283658975,52.77423093480478],[4.659521852412595,52.774518961351795],[4.659692283075547,52.774736193347714],[4.659821382863013,52.77494815084173],[4.659885439930623,52.77508429915944],[4.659883281610121,52.77521434732001],[4.659355685515761,52.775336241710164],[4.659384171456164,52.77541280733016],[4.65989717769105,52.775286057938615],[4.660020207793083,52.775452153219675],[4.660092883335254,52.7755682320161],[4.660132563011561,52.77567406283636],[4.660163627510592,52.775799945979664],[4.660218554767784,52.775986312760615],[4.660280650394275,52.77611490063859],[4.660491619160613,52.776387693844065],[4.66067739489275,52.77668043794876],[4.660846852925253,52.77695800292577],[4.660991533808986,52.777230383004174],[4.660998753563876,52.77739291256521],[4.660724928928956,52.777462168339625],[4.660771219845842,52.777519741969954],[4.660977376832187,52.77746750048756],[4.661152713789442,52.777507895244035],[4.661267646888951,52.77757395812593],[4.661414743971481,52.777700556624694],[4.661536811031135,52.77783704912123],[4.661764864299236,52.77807977534846],[4.661862235222026,52.77820605976363],[4.661975397216723,52.77838020715659],[4.662103505544462,52.778652494762454],[4.662257062943074,52.77888973393086],[4.662394888518021,52.77907660286523],[4.662475594442054,52.77920781990278],[4.662548033149679,52.779338985709565],[4.662621255533694,52.77951250310109],[4.662496701625003,52.779532074385365],[4.661971303112171,52.77967439612445],[4.661970401518388,52.779728869994706],[4.662021527793573,52.77978816297323],[4.662502136918533,52.779708046458296],[4.66264945213862,52.77972171187459],[4.662855994637243,52.779763193378386],[4.662929833271707,52.779808891832644],[4.663036256565803,52.77988998233983],[4.663117215088999,52.780006119308084],[4.663189823177722,52.78012722923162],[4.663237466484575,52.78025321029745],[4.663315829434227,52.78040200906496],[4.663459786670204,52.780719630152504],[4.663539352431456,52.78092124379784],[4.663740821968678,52.781269374148906],[4.663941894302835,52.78164265817114],[4.664084839092945,52.78196385893809],[4.663839382088802,52.782021250503526],[4.663050098057365,52.7822046193384],[4.663103286449807,52.78226504680422],[4.664006568669843,52.782053469882634],[4.664149513934056,52.78212156013068],[4.664248322745987,52.78216237557998],[4.664396176866068,52.782243725095434],[4.664526964988323,52.78235512957494],[4.66461444820529,52.78245370929604],[4.664694271505849,52.7826402155282],[4.664781303882005,52.782892136955425],[4.664909855754899,52.78313927720815],[4.665029877229747,52.78340144582184],[4.665143272203978,52.783563026522756],[4.665249446752409,52.783659201708325],[4.665404199566227,52.783826058206266],[4.665550418839103,52.78400794123087],[4.665614161057643,52.78416418086352],[4.665636796535554,52.78430007482805],[4.665626522897183,52.784420682144905],[4.665592213100431,52.784659888420116],[4.664367467481051,52.784930063804275],[4.664421486372427,52.78501072092411],[4.665459124774802,52.78477922001359],[4.665668920276208,52.784865902865874],[4.66577602454687,52.784906777991395],[4.665882616225778,52.78497780852851],[4.665996928713616,52.78508408960649],[4.666053284403881,52.785184977288694],[4.666109338852428,52.78530598413449],[4.666124336941937,52.785401607689856],[4.666106028881757,52.78550708439935],[4.666071051318031,52.78561748488133],[4.666044181558287,52.78573798278434],[4.666041285129547,52.78591393987812],[4.665988248159656,52.78611473921136],[4.665920694704108,52.786189739497516],[4.665837133306101,52.78622946051932],[4.665778611132475,52.78625927568652],[4.665761128325242,52.78631447590928],[4.665775796459806,52.78643020052489],[4.66584791093423,52.786581474942054],[4.665895169814297,52.786732588999556],[4.665975088816723,52.78691408083492],[4.666102503754744,52.787021670442634],[4.665541684809605,52.787131701074436],[4.665567440952588,52.78721329906785],[4.666560855476647,52.787016390313624],[4.666587491008901,52.78701111511828],[4.666783933506527,52.78713265664274],[4.666873549401346,52.787228721162386],[4.666963079990817,52.78732981781752],[4.667117439122161,52.78752180521775],[4.667261861475265,52.78781429694619],[4.667277194910339,52.78788980849328],[4.667243375169986,52.78792982104695],[4.667176894937062,52.787939484896796],[4.667135617306101,52.78792917008539],[4.667061993675315,52.787868395520384],[4.666971732722201,52.78781254410799],[4.666847885126763,52.78778162628623],[4.666764817652549,52.787791179768384],[4.666681505072268,52.78781581370038],[4.666655971826409,52.787855884272],[4.666670738768216,52.787966586479314],[4.666701662279451,52.78810252209782],[4.666789543728756,52.788304164454715],[4.666837220836323,52.78843015381731],[4.666835980758402,52.78850556524186],[4.666809536492075,52.78860092825374],[4.666633582680132,52.78886016415182],[4.666244463152574,52.78894402248404],[4.666303774165174,52.78902807537312],[4.667232726406571,52.78882309165363],[4.667277710269652,52.7888677223069],[4.667441850321461,52.78896926916723],[4.667688479902345,52.78909645132239],[4.667845159875067,52.78914767930523],[4.667968351796289,52.789218808924396],[4.668066422427033,52.78930487511947],[4.668172300635346,52.78942115049444],[4.66836762204664,52.78964355166791],[4.668407433194653,52.78974434727429],[4.668413655289744,52.78987008682654],[4.668412170315749,52.78996058501973],[4.668394017733139,52.790055990250025],[4.66839255201254,52.79014531215698],[4.667038553869161,52.79042606285042],[4.667080947789255,52.790510013090795],[4.668511061792986,52.79020838755653],[4.668686140298814,52.79031668401405],[4.668776329022085,52.79037756634187],[4.668882787284301,52.79045865055757],[4.668980550510307,52.79056482789359],[4.669150183662375,52.790837347929845],[4.669254914778859,52.791024009580724],[4.669326884120204,52.79118532820968],[4.669350273148443,52.79127597707993],[4.669348872796996,52.79136142596147],[4.669308840109141,52.791471301580174],[4.667796448873651,52.791738244675194],[4.667755709020369,52.79178630477017],[4.667794963663833,52.79182867451904],[4.669251232281496,52.79157520371671],[4.669319386383339,52.791642818937724],[4.669475253699249,52.79174431303373],[4.669606577196032,52.79182554717349],[4.669696452878186,52.79190653077663],[4.669777386657182,52.79202768626035],[4.66981718540449,52.79212848123454],[4.669823181218023,52.79226929852418],[4.669837547463339,52.79240513346983],[4.669835818352269,52.79251071120587],[4.669842196422453,52.79262638428557],[4.669873366735503,52.79274723208703],[4.669937329505854,52.79289343088868],[4.66997498785743,52.79302650315144],[4.668418458674163,52.79328776230823],[4.668397626889557,52.79333593815902],[4.668416965581999,52.793378746567136],[4.668515644872304,52.79342146988157],[4.670119415887851,52.79311896748178],[4.670213058104553,52.793143965505145],[4.670295379479405,52.79317966357548],[4.670360960316623,52.79322530746782],[4.670409806376129,52.793280907129684],[4.670474813143023,52.79336174054618],[4.670514876259728,52.7934474557669],[4.670538502590388,52.7935230085221],[4.670520778942408,52.79359329612739],[4.670494668486833,52.793668558824976],[4.670501639085126,52.79374904235114],[4.670500487450322,52.79381942239979],[4.670532168701386,52.79391011182898],[4.67056335800515,52.79403096670064],[4.670570343432106,52.79411146108781],[4.670519194528027,52.79419661979873],[4.670484714523216,52.79427686397503],[4.670475275860546,52.794347201375835],[4.670507205787068,52.7944228040446],[4.670571803193585,52.794528770610555],[4.670672511337568,52.79468302738056],[4.669217764600062,52.79492034744156],[4.669226802656675,52.79496927310054],[4.669295986124647,52.79502361258814],[4.670630563704814,52.79481472211589],[4.670706529234815,52.79490917360937],[4.67081259361874,52.79501540813923],[4.670934244681039,52.79518205685384],[4.670998842750757,52.79528802316184],[4.671080524776746,52.79536392456479],[4.67118682151525,52.79545507099441],[4.671302078064946,52.79550604540782],[4.671401076191952,52.795536799330165],[4.671525113375545,52.79555764886811],[4.671616232055421,52.795563237590564],[4.671732474991405,52.79555387801766],[4.671881785679291,52.795549741391206],[4.671948044731302,52.79555517169169],[4.672030369246228,52.79559085864874],[4.672137093827383,52.79565686210992],[4.672210804738388,52.795712610130394],[4.672267531296232,52.79579339192338],[4.672283053560503,52.795858848219474],[4.672273602754238,52.79592917666258],[4.672213676704174,52.79604446168927],[4.67219554139642,52.796139884499176],[4.672202679622811,52.79621031423187],[4.672250545123547,52.79632623587763],[4.672314656959405,52.79646237857307],[4.672394539810185,52.796648879065174],[4.672483267008752,52.796800248504546],[4.672572325954159,52.796931506105565],[4.672603862991237,52.797032250443465],[4.672597067502717,52.79709524435892],[4.67076094596691,52.79753305266513],[4.670828879583683,52.79763624498188],[4.672691442705166,52.797193337634084],[4.67281381214671,52.797252215873904],[4.672920840312564,52.79729810665148],[4.673043996121994,52.797374264126425],[4.673158276209048,52.79748556938804],[4.673190783796213,52.79752598081411],[4.673198415665429,52.79756624323783],[4.67317288263311,52.797606316000966],[4.673105898759133,52.79764613956146],[4.673006320950461,52.797650567630406],[4.672939827351697,52.79766022566033],[4.672881457210715,52.79767998875587],[4.672872284038053,52.7977352387305],[4.672895409881717,52.79784095628027],[4.672959376765766,52.797987153212695],[4.673040313082812,52.798108298126124],[4.673121839802359,52.79819426161683],[4.67321214774979,52.79825010837492],[4.673344479482375,52.798271013735636],[4.673410810029429,52.798271410924166],[4.673477058727438,52.79827683040482],[4.673526240441737,52.798312327724986],[4.673566302290875,52.79839803366699],[4.673628563800166,52.798521590801286],[4.673733400903125,52.79870321500896],[4.673863195712799,52.798879966539296],[4.673950640389529,52.799111760466374],[4.674005900537169,52.79928305021298],[4.674019789216746,52.799449049837555],[4.674014651501115,52.7997645255218],[4.672393684836258,52.80016423639393],[4.672501711096643,52.80027385017915],[4.673716924311087,52.799958444219016],[4.673960958849807,52.80000678054357],[4.674043457134506,52.80003240974936],[4.674166689534496,52.800103542711355],[4.674289431398114,52.800204831973325],[4.674403790723011,52.80031109469766],[4.674657252776543,52.800533841187075],[4.67475470755745,52.8006601162459],[4.67481924252151,52.800771112579284],[4.67486661433129,52.800917200174275],[4.674888223969421,52.801118439596415],[4.674885607175457,52.80127930949762],[4.674858600014942,52.80140987160674],[4.674770999227479,52.801582842371005],[4.673522802318495,52.801891449041314],[4.673590963983496,52.80198846423297],[4.67432175898424,52.80180785956444],[4.674434271551739,52.801877434457516],[4.674516461136218,52.80192317518354],[4.674646760825431,52.80206976752861],[4.674826167139097,52.802256861734435],[4.674956961022172,52.802373286543144],[4.675072075271265,52.80243430459296],[4.675212726738816,52.802455257495744],[4.675271183893809,52.802430469170794],[4.675321746484241,52.80238048995661],[4.675306639502513,52.80228989205908],[4.675192422862001,52.80217358281811],[4.675053180061608,52.80206716330373],[4.674963175656776,52.80199120793051],[4.674972459977532,52.80193093301946],[4.675031228799339,52.801886034749316],[4.675097824865115,52.80187135333699],[4.675163997541429,52.80188179510891],[4.675295607081821,52.80194794417376],[4.675484201238794,52.802079793677606],[4.675680746091001,52.802231813031234],[4.675811243905142,52.80236833087025],[4.67595779808622,52.80253512346238],[4.676046567110101,52.80268649824752],[4.676109816922745,52.80287792930282],[4.676140290328756,52.80304402021393],[4.676138494301062,52.80315462099119],[4.676115672055547,52.80322040421027],[4.674473130649916,52.8035687091174],[4.674521367067687,52.8036661608857],[4.675983430918603,52.80336264282144],[4.676175177753679,52.80344896495157],[4.676306710505981,52.80352013519875],[4.676429711636085,52.8036063435348],[4.676535974115959,52.80370251645543],[4.676650018831063,52.80382887881089],[4.676788308685436,52.803995621027184],[4.676973941254849,52.804310964927005],[4.677013606001527,52.804421812656095],[4.677061835587263,52.80451762228779],[4.677239600660965,52.80480526599291],[4.677246274063529,52.804905860757394],[4.677237383211268,52.80499964059385],[4.676974043794779,52.80504983697527],[4.676600661467991,52.8051113466615],[4.675448552116307,52.80532586958541],[4.675408990692484,52.80535764313212],[4.675405562343915,52.80538964587712],[4.675430491872753,52.80541057165027],[4.675491398224962,52.805448006435945],[4.676008238766272,52.805347739773495],[4.676654411931555,52.80521401134323],[4.677340430705579,52.805085881884196],[4.677491065944198,52.805153686550504],[4.677545092055955,52.805173689573],[4.677601398376526,52.80521596682373],[4.677653530804526,52.80526315304311],[4.677744639981493,52.80537138588824],[4.677776505934493,52.805452017714565],[4.677799515687614,52.80556779872335],[4.677797723732309,52.80567839855945],[4.677810406878467,52.80591980960641],[4.67780682293148,52.806141011950714],[4.677829896854575,52.80625176062039],[4.677869418924153,52.806372662639724],[4.677900797112236,52.806483461592514],[4.677915829639796,52.80657907330582],[4.677894533062138,52.80673290202764],[4.677460182755239,52.806807416193436],[4.677387456070355,52.806823869711216],[4.676296823270668,52.807053608841784],[4.676295838358465,52.807114266673196],[4.676365407909007,52.8071326571685],[4.677427942233626,52.8069051999784],[4.677877100364657,52.80683587861355],[4.67817876003091,52.80711609756394],[4.678326102781157,52.80723764054228],[4.678530493817639,52.807419852704385],[4.67861162846261,52.80753094626624],[4.678667405664809,52.80767205825509],[4.678723005677745,52.807823225549974],[4.678753425755663,52.807994347889846],[4.678750659804495,52.8081652802169],[4.678722605308833,52.8083611906637],[4.678687478263567,52.80848165052113],[4.678618312051145,52.808596856512935],[4.677262915369708,52.808852262080855],[4.677182003386688,52.80891862516207],[4.67724153676633,52.8089487471262],[4.677371056819521,52.808949518290255],[4.678448451988955,52.80872626543094],[4.678573607347163,52.808855549592174],[4.678646617841792,52.80895653840197],[4.678702707593869,52.809077538494414],[4.678759071431472,52.80918345290565],[4.678821676740001,52.80941510292214],[4.678852408713097,52.80956612232506],[4.678884282676409,52.80964675468968],[4.67891672312116,52.809692196650694],[4.678998609691987,52.80975804418336],[4.679080574923857,52.80981886033694],[4.67914456496432,52.8099650534599],[4.679159194855884,52.81008579988839],[4.679074703502081,52.810447849215905],[4.678122323448462,52.810609832460855],[4.678071928814632,52.81064548050945],[4.678071337406037,52.81068199092529],[4.67818038609164,52.81073094512916],[4.679363110891401,52.81051682806209],[4.679556589361201,52.81064498890395],[4.679687840490817,52.81073626626421],[4.679785902512808,52.81082734656824],[4.679882991627575,52.810978759309585],[4.680035702306638,52.81128132960912],[4.680083133887587,52.81142741495454],[4.680122050650395,52.811583524134505],[4.680143865535475,52.81177468877042],[4.680166057922495,52.811940747035],[4.680164109187571,52.81206140304222],[4.680133512729449,52.812193527247544],[4.678761748773833,52.81241832346851],[4.678741203999002,52.812448534100895],[4.6787405223833,52.81249065091234],[4.678809898604433,52.81252139490112],[4.680100846054065,52.81230964242301],[4.680346600694033,52.81244710689817],[4.680501919656646,52.81258880785051],[4.680591533362571,52.8126898937269],[4.680639683888523,52.812790725753125],[4.680630242560587,52.81286106444176],[4.680563159454544,52.81290591610566],[4.680488191593551,52.812925583653644],[4.680388564771454,52.8129300258123],[4.680313923013793,52.81292958332996],[4.680213986327115,52.81295412817067],[4.680088825287198,52.81299863519755],[4.680004593578952,52.813078576776896],[4.679944647848126,52.81319386595778],[4.679926049691602,52.813319445962655],[4.679931498680323,52.81349545227452],[4.679952811148486,52.81371680006622],[4.67995061809864,52.81385253463423],[4.679957282698914,52.81395312891926],[4.679980707307451,52.814043767132105],[4.680078269756274,52.81413045759828],[4.679290550128825,52.814262663540525],[4.679239952358574,52.814310669680694],[4.67925928036429,52.81434728934092],[4.679318796144989,52.81437179684653],[4.680025018782473,52.814240753813515],[4.680531247140188,52.81416240534641],[4.680648847146126,52.81427774848239],[4.680820565396239,52.81443211880234],[4.680942876011018,52.81456356625324],[4.681073153800841,52.81471516540538],[4.681153930954671,52.81485140113773],[4.681209303896392,52.81501764472648],[4.681223696299432,52.81515347745029],[4.681229164048891,52.81532948370457],[4.681210053896404,52.81548523079994],[4.681140956400867,52.81565576107245],[4.681049859818831,52.815809616995665],[4.679921355070886,52.81598683894232],[4.679900722912804,52.81602322864027],[4.679920184328229,52.81605929177307],[4.679989344192037,52.81609620685389],[4.680892324182712,52.815947046657094],[4.681192113637979,52.8160834290454],[4.681282387719249,52.816144291815014],[4.681493583448465,52.8164220704024],[4.681620358110994,52.8167923628251],[4.681642168391912,52.816983544828034],[4.681653481719575,52.8173104211236],[4.681617629044493,52.81747612549973],[4.681528642223032,52.817666534120555],[4.681458283090029,52.81767395522469],[4.681037962594697,52.81774984181132],[4.680576924817304,52.81787405006304],[4.680575945507823,52.81793470866193],[4.680634848689654,52.81798335968522],[4.681205517894361,52.817878043770726],[4.681477083450318,52.81783099606939],[4.681643432846556,52.81793380132407],[4.681773965767701,52.81807033985486],[4.681879463709499,52.81821675866266],[4.681960073089891,52.81836303916546],[4.682063330048759,52.81864771633859],[4.682094163581986,52.81879370238546],[4.682123293528251,52.819045265614605],[4.68212899501593,52.819206183978196],[4.682126889442354,52.81933688530535],[4.682075423821051,52.819442177246025],[4.681884507785702,52.81954143294231],[4.681840046715418,52.819546914401215],[4.681256383238146,52.81961984671138],[4.681244565269378,52.81966303166908],[4.681249525340619,52.81970013025728],[4.681265616758528,52.81972999197356],[4.681315018145916,52.81975724335275],[4.681475948245473,52.81973123689799],[4.681707589447939,52.819699814273015],[4.681872025310788,52.81970744627303],[4.681962955612059,52.81972810576075],[4.682078207786781,52.81978408287593],[4.682201022984843,52.819885363583545],[4.682348094372797,52.82002701295336],[4.682437310883693,52.82015323210396],[4.682501974878153,52.82025919248719],[4.682574929366333,52.82036521080435],[4.682656355711744,52.82046122277062],[4.682720818326955,52.82057975452122],[4.682760591719972,52.82068556680522],[4.682850230111497,52.82078665081875],[4.682956789541524,52.82086773186866],[4.683021779429662,52.820953581160175],[4.683053747144736,52.82102918806917],[4.683027563647713,52.82110948427764],[4.682978654371855,52.821230159267316],[4.682056496917187,52.82141241883051],[4.681979395029093,52.821471500283266],[4.682032793933817,52.821530789947964],[4.682173971487305,52.82154510413235],[4.683068025750834,52.82138555839614],[4.683050590684486,52.82134799711505],[4.683164394145597,52.82137173033384],[4.683304691273111,52.82141780760334],[4.683403268166874,52.82147872751405],[4.683460210266694,52.82154944901781],[4.683516748285617,52.821645312577395],[4.683548801074288,52.82171589705321],[4.683572155117451,52.82181154770212],[4.683561358649627,52.821967352918726],[4.683526557196934,52.82206770207692],[4.683517037665645,52.8221430640271],[4.683515663425683,52.82222852948741],[4.683603124429967,52.82246534723854],[4.683663401287922,52.82265255050019],[4.683674984477438,52.82276635710409],[4.683665667239831,52.82285682633313],[4.683640317957345,52.82296625501411],[4.683551798749591,52.823079542019904],[4.682842757987139,52.82317174184634],[4.682816055470758,52.82317809065226],[4.682795784984771,52.823190381840114],[4.682785348654181,52.8232065685203],[4.682786493287865,52.823223937981055],[4.682799013726104,52.82323956826612],[4.682820848425191,52.823250840993495],[4.682848302294452,52.82325588303205],[4.682876790150352,52.8232538315163],[4.683318191783622,52.82319691730463],[4.683549813350093,52.823215843667825],[4.683651500102053,52.82324979490102],[4.683760928152228,52.823288552970176],[4.683877637205256,52.82336546913227],[4.684155378703447,52.82369584678877],[4.684293901416744,52.82388247740118],[4.684423720039743,52.82412145826853],[4.684506518856399,52.82435063492312],[4.684550264249354,52.8245652841576],[4.684539787634803,52.82472721219716],[4.684486533379856,52.824820973284695],[4.683559953375225,52.824950932746866],[4.683530857407981,52.8249585347454],[4.683508354606513,52.82497204498381],[4.683495537114162,52.8249896016517],[4.683494175459779,52.82500877166121],[4.683504460202657,52.82502693196229],[4.683524982463742,52.82504155700852],[4.68355287688602,52.82505064648029],[4.683584337544477,52.82505293413142],[4.684073020751495,52.82497780188344],[4.684197330727589,52.82499914167206],[4.68447898818884,52.825086554599636],[4.684541199743236,52.8251297967456],[4.684618600855543,52.82520648950609],[4.684718047090255,52.82537858936087],[4.684801629229032,52.825560132585856],[4.684892446859167,52.82577982189182],[4.685005342209161,52.82609492915957],[4.685112666531726,52.826267075911886],[4.685150055851921,52.826386408318726],[4.685148756557869,52.82646739056668],[4.685124174642504,52.82652918354017],[4.684966130312374,52.826660548247766],[4.684294202767431,52.82675734209534],[4.684267429129862,52.82676337716658],[4.684246923929151,52.82677542366619],[4.684236147157994,52.82679144758702],[4.684236924061878,52.82680875193853],[4.684249134204993,52.826824398194695],[4.68427068937384,52.82683574987114],[4.684297966045745,52.82684088937241],[4.684326348962109,52.82683895371408],[4.684948326405317,52.82674927976548],[4.685142019705753,52.826765121769654],[4.685259428206941,52.8267991632068],[4.685334832238413,52.82684217250197],[4.685360696668122,52.82685692571567],[4.685446194405112,52.82691936558576],[4.685515738901848,52.82699601147863],[4.685554170520822,52.82706821540461],[4.685569158321417,52.827096375935305],[4.685590928510059,52.82721084514047],[4.685573736354852,52.82730127795679],[4.685540987815161,52.8273820652841],[4.685523594684122,52.827486777977334],[4.685521532009165,52.82761540421108],[4.685549914747323,52.827806147210126],[4.685593578931424,52.8280255575014],[4.685598614034397,52.82820187396228],[4.685580750476713,52.82833517117074],[4.685518937490945,52.82846740818509],[4.68544712458796,52.82847848889027],[4.685101606502142,52.8285237902665],[4.685072676189232,52.828531940919454],[4.685050611663159,52.828545885392344],[4.685038379596328,52.828563733237864],[4.685037670607466,52.828583041889864],[4.685048581583004,52.82860119583526],[4.685069609050031,52.828615726508275],[4.685097894721745,52.82862463636711],[4.685129599907034,52.82862673721079],[4.685413131257778,52.82858963643514],[4.685507157982733,52.828575567992466],[4.685694150668124,52.82861931975924],[4.685842313728264,52.828696408928934],[4.685982248534581,52.828797283661295],[4.68612949654201,52.82893155065422],[4.686260941246004,52.829070487632855],[4.686353088407887,52.82920919264692],[4.686491039413704,52.8294339294447],[4.686590426262653,52.829610791968776],[4.686658617509874,52.82977318112707],[4.686687920398147,52.82990675455973],[4.686662118324939,52.830044767382724],[4.686578910076641,52.830232579925],[4.685969203316632,52.830342546132904],[4.685942401682401,52.830348446614636],[4.685921792969516,52.83036039483001],[4.685910868721486,52.830376345226874],[4.685911482233629,52.83039361263946],[4.685923546943659,52.83040926683412],[4.685944998393779,52.830420653525486],[4.685972202593942,52.83042583713703],[4.686000544018394,52.83042394576323],[4.686513092920962,52.83033153520332],[4.686610032674449,52.83035175897275],[4.686742842706622,52.830404940632654],[4.686890647030364,52.83050586043666],[4.686975681589027,52.83059689355128],[4.687052485563537,52.830711675552706],[4.687120514312114,52.83088359851253],[4.687262285512567,52.83136086110596],[4.687275574067278,52.83151339163476],[4.687257331619041,52.83167051095569],[4.687207176863846,52.831856029352885],[4.687114778056199,52.832063676208534],[4.686489472262672,52.83215929228324],[4.686467278595338,52.832169262253394],[4.686453911665454,52.83218391411755],[4.686451773401317,52.83220059019078],[4.686461270504733,52.83221631910446],[4.686480683114185,52.83222823292426],[4.686506509333367,52.83223419825781],[4.686534097982545,52.832233147996476],[4.687084538135076,52.83214881205605],[4.687083402682904,52.83221976578928],[4.687121122218127,52.83232003811084],[4.687197915937803,52.83243483786449],[4.687404981363427,52.83276478301168],[4.68752027146045,52.83293221086933],[4.687650667566377,52.833137841442145],[4.687741822619137,52.83333847780523],[4.687800012573132,52.83363420773286],[4.687797727637839,52.833777131478435],[4.687717547011145,52.83392588835607],[4.687344251008311,52.83399250217649],[4.687315078024385,52.83399985301759],[4.687292383491621,52.83401316421654],[4.687279298439494,52.834030584879784],[4.687277642390513,52.83404969024423],[4.68728765201852,52.83406783865934],[4.687307925298621,52.83408250826666],[4.687335661771049,52.83409167586047],[4.68736702381514,52.83409405266904],[4.687462848011042,52.834077781535235],[4.687583401829253,52.83412257110461],[4.687648276914717,52.834146676052086],[4.687772960520005,52.834218870854556],[4.687881216054519,52.83433384558178],[4.687981546546956,52.834453545778004],[4.688180140668326,52.83482156288488],[4.688317738218561,52.83507010935398],[4.688385231087891,52.835275379376135],[4.688399093933506,52.835392181165275],[4.688372913517509,52.835554008031615],[4.688294445102308,52.83569777856242],[4.68813616956162,52.8357307854999],[4.688111408378469,52.83574151449462],[4.688095220780975,52.835757128669556],[4.688090002241275,52.83577528750802],[4.688096542233058,52.83579329957761],[4.688113870523316,52.83580845414229],[4.688139367973003,52.835818516091045],[4.688169273245486,52.83582196256906],[4.688199117005415,52.83581830006538],[4.68833718094159,52.83579178896397],[4.688454703908938,52.835849876593684],[4.688579302792901,52.83592683303832],[4.688703156198833,52.8360514333604],[4.688764931085388,52.83612325866188],[4.688818474093286,52.836227636495224],[4.688833567117237,52.83625706159236],[4.688850120235278,52.83631605933395],[4.6888785502759,52.83639548814923],[4.688906889006057,52.836590993491725],[4.688912700317445,52.83671966552153],[4.688911255411718,52.836810180870245],[4.688932265327564,52.836972284033855],[4.688969001490181,52.837134496315194],[4.689021621116026,52.837287257493244],[4.689052328329081,52.83744332337695],[4.688940537570306,52.837464542172896],[4.688915155642139,52.83747422522274],[4.68889785196397,52.83748907807066],[4.688891306238261,52.83750680768178],[4.688896510048017,52.83752470403209],[4.688912680763113,52.83754001255796],[4.688937313556879,52.837550393690684],[4.688966634895797,52.83755424095269],[4.688996161839858,52.83755097181428],[4.689176681260281,52.83752023186857],[4.689320925834406,52.837628460793496],[4.689436998828791,52.83774825171036],[4.689823295206529,52.83818406393763],[4.689984569842142,52.838427984454434],[4.690092021206238,52.8385953636497],[4.6901758785056,52.83876260487497],[4.690220928019797,52.838896268154954],[4.69030084111811,52.839311226981145],[4.690352555697918,52.83952115745711],[4.690396331117938,52.8397358126452],[4.690411168530392,52.840016477993906],[4.690155195893329,52.840067096446056],[4.690130403908205,52.840077772652954],[4.690114156630734,52.84009335079099],[4.690108849649404,52.84011149120456],[4.690115346736466,52.84012949389846],[4.690132602966628,52.84014466479592],[4.690158073583105,52.840154735118944],[4.690187953483989,52.840158199797955],[4.690237712282785,52.84014916396565],[4.690310796491804,52.84013589317295],[4.690379693692241,52.84012338063315],[4.690467417413223,52.84021026570665],[4.690590833032998,52.84036344848392],[4.6907987063948,52.8406457539625],[4.690967859223799,52.84088972700532],[4.691113585797717,52.84112402983735],[4.691211536693267,52.84126990978736],[4.691357251005434,52.84150421131661],[4.691462137266869,52.84183355314459],[4.691520969580913,52.84209117183234],[4.691516347302676,52.84238176974863],[4.691477163024353,52.84262722374718],[4.691325311318911,52.84265805355799],[4.691296288025503,52.842665936474084],[4.691273999029802,52.84267967226181],[4.691261459245288,52.8426973670101],[4.691260455301394,52.84271661997278],[4.691271059218741,52.842734771462645],[4.691291845490458,52.84274934447336],[4.691319962030424,52.84275834255975],[4.691351554498439,52.842760539895494],[4.691443957069153,52.842743159060774],[4.691509148655249,52.84283433249365],[4.691546659985758,52.84294889990924],[4.69159890030378,52.84312548246504],[4.691666928294365,52.84329977462142],[4.691780595860322,52.843572001841736],[4.691932446373642,52.84391591486623],[4.692083917666886,52.844283649572915],[4.692203338102872,52.84468931053471],[4.692316696388739,52.84498059640555],[4.692394071959385,52.84523759447508],[4.692350727568155,52.845244288860265],[4.692321535845974,52.845251559041586],[4.692298764038829,52.84526479073722],[4.692285587641171,52.84528217452391],[4.692283831193081,52.845301262232255],[4.692293754919747,52.84531940965202],[4.692313960602133,52.84533409501636],[4.692341644118826,52.845343279049374],[4.692372970881951,52.84534569114041],[4.692511143603495,52.84532434323044],[4.692663732911282,52.84541854203989],[4.692748959760804,52.84550003658011],[4.692841010655025,52.84564826212426],[4.69289312286559,52.845834377342264],[4.692927840770621,52.84612519583402],[4.692947733882042,52.84635876273696],[4.69298448095354,52.846520963450665],[4.693083114147711,52.846750226330734],[4.693205181711711,52.84698915058007],[4.693457155361896,52.847345551177526],[4.693557077425787,52.847493830824675],[4.693594747818849,52.84759886240511],[4.693582229034964,52.84782941878856],[4.693457592017763,52.847846686657064],[4.693429378697553,52.84785656089405],[4.693408815683853,52.8478718798022],[4.693398571510323,52.84789061170267],[4.693399995445692,52.84791032811324],[4.693412920610997,52.84792844974001],[4.693435583982606,52.84794260997902],[4.693465139618755,52.84795095896215],[4.693497641294746,52.8479524159886],[4.693520656082703,52.84794826218584],[4.693732404987002,52.847920268873224],[4.693808424859991,52.84801459527915],[4.693924519798182,52.84813438145314],[4.694032389039292,52.848277934826996],[4.694178443565209,52.84849318309228],[4.69433200234302,52.84873228894819],[4.694469175863685,52.84901179411277],[4.694536053261644,52.849259921480474],[4.694603703972547,52.84958129864307],[4.694638476884601,52.849746479822244],[4.694712923112068,52.85001370394327],[4.694733959047022,52.850175813625775],[4.694684719834127,52.8503041644023],[4.694644252852785,52.85037539277262],[4.694524948354953,52.850460435436666],[4.694417644845501,52.85047665374264],[4.694388901122445,52.85048533796573],[4.694367296606604,52.850499718151276],[4.694355651482359,52.85051784885542],[4.694355610688797,52.850537287127736],[4.694367141029634,52.85055544456895],[4.694388690156809,52.85056985875756],[4.694417380544176,52.85057859878553],[4.694449354622697,52.85058050002406],[4.694463302957959,52.85057815546557],[4.694530657451823,52.85059389601614],[4.694672022435502,52.85060901377722],[4.6947974435087,52.85063832071027],[4.694937831191544,52.850715370595644],[4.695038671039853,52.85080647095905],[4.695214194395917,52.85102425942929],[4.695558091575729,52.85166466942545],[4.69571878433147,52.851951461805726],[4.69580865793027,52.85223783549734],[4.695875410368715,52.852495497935024],[4.695910153058634,52.85278632405608],[4.695907592170526,52.8529482957696],[4.695865762576421,52.85305497051615],[4.695521670208372,52.85311024033068],[4.695496134398494,52.853119690221476],[4.695478605440537,52.85313436203583],[4.695471749697939,52.85315200026552],[4.695476663071302,52.85316986669067],[4.695492572730889,52.85318520057154],[4.695517023275099,52.85319565019777],[4.695546220651874,52.85319958582868],[4.695575682040486,52.85319640452228],[4.696196346395915,52.853096517376926],[4.696194258030216,52.85322865647175],[4.696223152223742,52.85339081122955],[4.696337780296727,52.85360587353993],[4.696484315614219,52.853792523479285],[4.696623825413834,52.85392673222571],[4.696802676181873,52.85406116754176],[4.696942401522928,52.85418108720783],[4.697035145229658,52.85428643693623],[4.697096282762832,52.8544011289186],[4.697110138441909,52.85452032121397],[4.697092673390991,52.85462979644834],[4.697059546254803,52.85473441807738],[4.697066212326729,52.8548106908896],[4.697127425825747,52.854920621162314],[4.697212078154993,52.85504021296324],[4.697364022584664,52.85538412718559],[4.697394082735857,52.855474817053725],[4.69737750357909,52.85552713140383],[4.697249376255799,52.8556411252486],[4.696599053746693,52.85573195024482],[4.69657564965451,52.85573983102386],[4.696560044040114,52.85575300523549],[4.696555250329905,52.855768964131514],[4.696562172557917,52.855784615191126],[4.696579497788447,52.85579698246875],[4.696603887510568,52.85580368400457],[4.696630660080788,52.85580343364702],[4.69726460560264,52.85571471734987],[4.697442699842009,52.85575738198686],[4.697551426019497,52.85584852651774],[4.697651740701131,52.85597297958541],[4.697759339360537,52.85613558951373],[4.697843260853532,52.856302823760785],[4.697919372073719,52.85646525160989],[4.698018804447798,52.85664686523831],[4.698111105418741,52.85678079761249],[4.698357619096856,52.8571157214388],[4.698457519798298,52.85726875930974],[4.698564959739355,52.85744089352818],[4.698625190364095,52.857612753426466],[4.698693379694367,52.85777989709718],[4.698754151252117,52.85791841179124],[4.698775732465788,52.85804717344225],[4.698758645281909,52.85813282696143],[4.698694497076539,52.85820869102199],[4.698598679745847,52.85827318552282],[4.697644544797616,52.85840885749397],[4.697621195089719,52.85841688258057],[4.697605753251273,52.858430175595515],[4.697601135586151,52.85844618047284],[4.697608237978897,52.858461849573125],[4.697625697262551,52.85847418151166],[4.697650193270669,52.858480838502025],[4.697677027824799,52.85848052715113],[4.698704573186847,52.85833432179124],[4.698786329239872,52.85837358143029],[4.698887629798612,52.85843610286255],[4.698964591469098,52.858546122882295],[4.699025214867475,52.85869417064716],[4.699085374040291,52.85887079283327],[4.699106880223527,52.85900431785648],[4.699105005668783,52.859123409148225],[4.699110698147213,52.859261613166716],[4.699163830884928,52.85938578553147],[4.699248886984347,52.85948156298548],[4.699435097720974,52.85964938647524],[4.699512584536839,52.85972605819977],[4.699566303463295,52.85981212970528],[4.699619247783798,52.85994821635342],[4.69964075761227,52.8600817403543],[4.699707980766803,52.86031080576899],[4.699859124254999,52.86070711266918],[4.699873438843964,52.860797720036665],[4.699840766077282,52.86087375696656],[4.699736184485479,52.860944735269705],[4.698635863315127,52.86112056272308],[4.69861317782336,52.86112979606659],[4.698598966224321,52.86114394016211],[4.698595887555048,52.86116037722453],[4.69860445841975,52.861176099658294],[4.698623140640185,52.861188177875746],[4.698648479668226,52.861194399160674],[4.698675781907554,52.861193630153046],[4.699862118178907,52.86100397373756],[4.699907916441892,52.861107594678224],[4.699977237997457,52.861203280923796],[4.700070005338446,52.86130862813514],[4.700224913810798,52.861466743115756],[4.700456025021806,52.86165625685101],[4.700525125664674,52.86176623138715],[4.700562899754381,52.86186649873129],[4.700600299831148,52.86199058790059],[4.700613121300863,52.86217647173039],[4.700648726054687,52.86241488951834],[4.700676146361236,52.86267231309403],[4.7006803492264,52.86290579616904],[4.700693768493531,52.86305356140887],[4.70069946953353,52.863191758039285],[4.700767974738778,52.863339840134394],[4.70087649920024,52.86344527816372],[4.700970017928717,52.86359769272442],[4.699775193983692,52.86375729551424],[4.699753307101549,52.86376770285419],[4.699740448466954,52.863782653796804],[4.699738922992832,52.86379948715383],[4.699748996220134,52.86381519927241],[4.699768870625745,52.86382700557294],[4.699795018568932,52.86383279180851],[4.699822793173841,52.86383154985207],[4.700983618612258,52.86367732199875],[4.701198799499041,52.863968823455146],[4.701669693201808,52.86455276789217],[4.701800115096863,52.86476790580308],[4.701930151414488,52.86500686530914],[4.702034800897908,52.86536002585835],[4.702116798455064,52.865651121123726],[4.702184862776622,52.86582778759671],[4.70222256950423,52.865932816881966],[4.702243789969999,52.86608539945511],[4.702222547130259,52.866208081920284],[4.700922785765496,52.86635724540024],[4.700897314007146,52.866366831609554],[4.700879916568479,52.866381604687845],[4.700873238256405,52.866399297205604],[4.700878317016206,52.866417173265965],[4.700894382006878,52.86643249824971],[4.700918944408938,52.866442902404664],[4.700948242408304,52.866446792305865],[4.702279546557957,52.866296982789216],[4.702373271429287,52.86636007764073],[4.702482034063286,52.8664512255604],[4.702598798666754,52.86653288340559],[4.702683950596959,52.86662390467742],[4.702729678515934,52.86671944570228],[4.70274400098469,52.866810051689455],[4.70273493878531,52.86688622469163],[4.702684808576934,52.86707174874463],[4.70267596715703,52.867133625935395],[4.702674997292187,52.86719554827362],[4.702692986904363,52.867237291699865],[4.702697637477083,52.86725762310365],[4.702767873094683,52.86729613975092],[4.702866664261705,52.867394364701944],[4.702912543861363,52.86748038950227],[4.702941710719675,52.86762825444228],[4.702939174755676,52.86779022658395],[4.702876522372161,52.867936091221154],[4.70190794318954,52.86806553200168],[4.701881997585184,52.86807412805204],[4.701863644364527,52.86808817683762],[4.701855740579217,52.86810542201213],[4.701859605575896,52.86812317512036],[4.701874570695953,52.86813861945993],[4.701898313195665,52.8681492972855],[4.701927040909759,52.86815355032543],[4.701956254413791,52.86815068951808],[4.702874777391232,52.86802856324741],[4.702941750821656,52.86812850277219],[4.702996006005645,52.86818121662236],[4.70308108754932,52.86827699115438],[4.703283167031088,52.868440135090886],[4.703485617708383,52.86857945865288],[4.703609456822876,52.86871356683291],[4.703771890366104,52.86889553568016],[4.703918596112749,52.86907742413487],[4.703995052911083,52.869220787486775],[4.704016802422293,52.86934002268657],[4.70399162684325,52.86943993730753],[4.703918780043546,52.8695681389747],[4.703765155548219,52.86968041182629],[4.70277465888748,52.86980250975004],[4.702751680221261,52.86981126499408],[4.702736969178332,52.86982505710489],[4.702733253930942,52.86984132881822],[4.702741235749092,52.869857028653755],[4.702759430932316,52.86986922020983],[4.702784444565051,52.869875619346764],[4.702811570990126,52.86987503798563],[4.703785238308503,52.86975510805215],[4.703889279077383,52.86981928427702],[4.703958909043219,52.86989591859525],[4.704020160871918,52.87000584403898],[4.70414324489553,52.870187578053724],[4.704314092440717,52.870336263177364],[4.704391145207895,52.87044151672802],[4.704483138837618,52.87059926653338],[4.704566219219992,52.87082365609511],[4.704633542390457,52.8710479644551],[4.704646829957329,52.871205263960356],[4.704598206127566,52.871295500610536],[4.704493368943914,52.87142555960108],[4.703295528948508,52.87157039852432],[4.703257298556965,52.871611373902915],[4.703311590176043,52.871645071746755],[4.704536890942176,52.87149935535055],[4.704703602736772,52.87160220164181],[4.704820028068783,52.87170768000247],[4.704928272104445,52.871832171510256],[4.704996732045454,52.8719850233238],[4.705033930192498,52.87212339937241],[4.705039494375318,52.87227111878036],[4.705020926200317,52.872452060923536],[4.704890991348164,52.87270739516592],[4.704857500094946,52.87283583126162],[4.704847842041956,52.87295012453063],[4.704877528003072,52.87306463193536],[4.704875523576893,52.87319299728986],[4.704029666557937,52.873311717800554],[4.70400274494304,52.87331701866985],[4.703981684225149,52.87332849104153],[4.703970122197241,52.87334411574716],[4.70397006041009,52.8733612711251],[4.703981490995102,52.873376946564484],[4.704002461028808,52.87338846990278],[4.704029347961246,52.873393845109895],[4.704057536386021,52.87339216506269],[4.704641430499124,52.87331097517853],[4.704839659108901,52.873474140843484],[4.704917330031844,52.873541284610745],[4.705034284456613,52.87361342482025],[4.705198525027209,52.87368106224265],[4.705296804901185,52.8737387975446],[4.705362303861335,52.87377727559779],[4.705525906267437,52.87388779553717],[4.705649641959314,52.874029037112486],[4.705718550684895,52.87415330317492],[4.705779218384857,52.8743013478411],[4.705816259075901,52.87444924680764],[4.705821454657968,52.87462078966292],[4.705795923618115,52.874744516496314],[4.705755156141838,52.87483480827143],[4.705602016018319,52.87495408682957],[4.704493594921563,52.87508902306062],[4.704468454548225,52.87509917898641],[4.70445162461968,52.87511436919593],[4.704445671981356,52.875132299677],[4.704451466584064,52.87515024343272],[4.704468159588122,52.87516549059166],[4.704493222026561,52.87517572517545],[4.704522825279161,52.87517939034291],[4.705593116277678,52.875035096565895],[4.705625348490021,52.87508180506956],[4.705686463145646,52.875201255532104],[4.705771266973047,52.87531608630841],[4.705855759302172,52.87544996896252],[4.705901651709081,52.87553599153814],[4.706018536024278,52.87561288341023],[4.706166002961881,52.87574711531449],[4.706243308677018,52.8758380808556],[4.706358792840184,52.87600310648812],[4.706419704346625,52.8761368541978],[4.706448220757435,52.87632758994898],[4.706453791678448,52.87647530913563],[4.706396686537889,52.87660362073173],[4.706289577850831,52.87673027029137],[4.705134349298503,52.87684076310223],[4.705126514601726,52.876844143184975],[4.70511481295506,52.87684574695586],[4.705089930993384,52.8768563259665],[4.705073559075533,52.87687183431058],[4.705068150497689,52.876889929684616],[4.705074510780579,52.87690792066712],[4.70509168242022,52.876923107555754],[4.705117086866537,52.876933201962615],[4.705146949365471,52.876936705789596],[4.705317511908669,52.87692167396705],[4.706365005297483,52.87680654065185],[4.706478303594211,52.87692328669528],[4.706594658174934,52.8770335337577],[4.706710065219306,52.87720570480262],[4.706794491402885,52.87734434749928],[4.706921117833447,52.87780720389189],[4.706957511163869,52.87799797532394],[4.706963604508076,52.87811235834569],[4.706961898627987,52.87822192315681],[4.706927960976535,52.87837895291953],[4.706863648832256,52.87846433883961],[4.70671050486528,52.87854604512256],[4.705847431098205,52.87859579625995],[4.705820389203434,52.87859994745205],[4.70579855404806,52.878610463119834],[4.7057858272553,52.87862547922029],[4.705784435212016,52.87864234838809],[4.705794662685834,52.87865805180285],[4.705814634989928,52.8786698315112],[4.70584086880119,52.87867558899027],[4.706526914882192,52.878635935275526],[4.706600248505671,52.87869628515099],[4.70665483426143,52.87872994709173],[4.70674884036366,52.87875906985297],[4.706803202191713,52.878807027464745],[4.706960773936058,52.87895531716363],[4.707062587494354,52.87905834533859],[4.707252964108796,52.87928349646312],[4.707372128858831,52.87949729676166],[4.707483415735088,52.8797249437757],[4.707511447737149,52.879891880296015],[4.707507483640819,52.880146675951025],[4.707421692560303,52.8802481069848],[4.70727682500798,52.880317980631396],[4.70594205806746,52.880413221057104],[4.705952165360304,52.88048686489715],[4.707512902874757,52.880383652181806],[4.707600925303806,52.88041476218833],[4.707699565941964,52.880470915716906],[4.70780530993426,52.88056417091639],[4.707872688972333,52.8806618538395],[4.707886619793499,52.8807499573559],[4.707907927136776,52.88085663530353],[4.707906270420372,52.8809631816688],[4.707896171520116,52.88112064289907],[4.707855191405825,52.881294142259094],[4.707749704030254,52.88167807550967],[4.70768543375636,52.881872299546814],[4.707638962459948,52.882061682160476],[4.706045968466189,52.88221959198702],[4.706073149513591,52.88230736779055],[4.707615016701697,52.882156985006404],[4.7076499056101,52.882187136419574],[4.70772531212237,52.88226168737358],[4.707823452717461,52.88235027194305],[4.707990516819541,52.88243924680637],[4.708173012309588,52.88251904567982],[4.708309218403733,52.882621747039366],[4.708429621191203,52.88275678342466],[4.708526499982137,52.8829287571286],[4.708562735477347,52.8830586866578],[4.70857589177609,52.883197740411745],[4.708573516809075,52.88335061823217],[4.708555826653903,52.883503400893915],[4.708515128476035,52.88366068810114],[4.708429057093913,52.88381705408794],[4.706889327827201,52.883981309183625],[4.706807570680112,52.884006114833745],[4.706792091327006,52.88403972596417],[4.706796133999054,52.88406221763928],[4.706837668832637,52.88407874551526],[4.706954038270021,52.88407779196134],[4.708108555375264,52.88394766790758],[4.708241509653948,52.88402281633577],[4.708332147407235,52.88410209242925],[4.70840698236727,52.884213710815914],[4.708502208866597,52.88449222894695],[4.708632635122632,52.88496552955529],[4.70869715949903,52.88524850110861],[4.708702391692546,52.8854060511425],[4.708655061685151,52.885493806249855],[4.708483469850741,52.88564939851654],[4.707209153716394,52.88578103496572],[4.707152253674789,52.885804869877575],[4.707162873723226,52.88583862971128],[4.707202288071056,52.88585682768156],[4.707270504094956,52.88585889404359],[4.708351605706308,52.88575231067676],[4.708456661693778,52.885944388245655],[4.70857770683806,52.886037738538946],[4.708638452916714,52.88607051693362],[4.708752782195291,52.886103589936404],[4.708836711414796,52.88612258942048],[4.708928523189318,52.886127757224344],[4.709012596250742,52.88613750017343],[4.709088716154615,52.88616572851973],[4.709156394419423,52.88624487260124],[4.709192951821041,52.8863562729982],[4.709243745715367,52.88653724858192],[4.709286805548103,52.88672280748086],[4.709300092480497,52.88685260721115],[4.70928256355206,52.88699612363144],[4.709194100899514,52.88726896148597],[4.7091673453355,52.88738460347549],[4.707674600070171,52.88751869153442],[4.707558561603154,52.887532065567726],[4.707526683353549,52.88756615406222],[4.70753763726911,52.887601037287105],[4.70755683089201,52.88762810942624],[4.707606945924075,52.88763007343444],[4.709090236882548,52.88749933937628],[4.709128715580013,52.88753498359587],[4.709218643188311,52.887660580530074],[4.709389774906168,52.88798122885932],[4.709461886038784,52.888268888931655],[4.709450570496798,52.888505095485144],[4.709425086361583,52.88866709821631],[4.709430938576516,52.88878297026787],[4.709466997311082,52.888926782758865],[4.709509466663484,52.889173492714136],[4.709032709208027,52.88922096915125],[4.708700106384886,52.8892308753532],[4.708657608268246,52.889238501696006],[4.708626584082179,52.8892635933264],[4.708631286074703,52.88929002573012],[4.708679024290783,52.889317811690766],[4.708727998607597,52.8893326952338],[4.708778115469098,52.889334670434344],[4.709477762593822,52.88927001074392],[4.709581835987116,52.889420840551516],[4.709663901828924,52.88956029489493],[4.70972393654614,52.88963939607534],[4.70979971856312,52.88969078975554],[4.709936955082687,52.889728628666234],[4.71005946522371,52.889729323570855],[4.710151413768162,52.8897252078945],[4.710289296753592,52.889721362479946],[4.710357860606099,52.8897449099728],[4.710455592514317,52.889861293790524],[4.710515053455017,52.88997745072836],[4.71052900583833,52.89006555559354],[4.710504888525278,52.89013954043695],[4.71045724404889,52.89025046301874],[4.710386440573072,52.890370519598875],[4.71037740878201,52.89045849417543],[4.710413542081891,52.89059768754622],[4.710433893610251,52.89066031360082],[4.710442384590482,52.89071367092363],[4.710427397569689,52.890776519932885],[4.710402461181808,52.89082000098869],[4.710258226132225,52.89092274527062],[4.708861786057546,52.890988701865105],[4.708778541777257,52.89101855544296],[4.708769697954145,52.89104265608791],[4.70877366709624,52.8910713264929],[4.708831642171409,52.89109804989609],[4.70888460026212,52.89110396658342],[4.709005085944526,52.89110409387639],[4.709697486065021,52.89105908334041],[4.709775365752797,52.89113728818992],[4.709851005401978,52.89119793641431],[4.709995542143986,52.89125897719747],[4.710254666864343,52.89133920625393],[4.710399274745051,52.891395626875806],[4.710559504661035,52.89143359536964],[4.710635132374253,52.891494253802136],[4.71067978035977,52.89157788462091],[4.710701329604912,52.89167067859931],[4.710683713605098,52.891818832569825],[4.71069637814377,52.89199032585214],[4.710731566136412,52.892189733650966],[4.71084169478742,52.89249613038993],[4.710870524806975,52.89261211352191],[4.710837853642146,52.89271824122016],[4.709625550944565,52.89278813016182],[4.709288878538992,52.89281149147851],[4.709230102243856,52.892829131160326],[4.709218887447672,52.892863332905996],[4.709224206765896,52.892893694157245],[4.709272522758541,52.89290014057807],[4.710754381273622,52.89282437855857],[4.710843751839296,52.89285751470458],[4.710957584965854,52.892923017473585],[4.711055784253164,52.89301159753422],[4.711130893918659,52.893106995292165],[4.711182334149863,52.89324627498168],[4.711187621058182,52.89339919487259],[4.711154271893297,52.89357504665423],[4.711097667506605,52.89376930631095],[4.711072027728634,52.89394059242743],[4.711091929667235,52.89413991253614],[4.711081894281461,52.894292746527405],[4.711011562481501,52.89438500116743],[4.710816964824534,52.89450460836618],[4.709239761385826,52.89459227300553],[4.709176046224749,52.89461268757163],[4.709154410245577,52.89464570408313],[4.70917019016999,52.89467612562315],[4.709217591686314,52.89469661488048],[4.710438579502187,52.894627729926405],[4.71049289740513,52.89474343696542],[4.710575551924538,52.89484582270548],[4.710696999939278,52.894916005060466],[4.710848858320751,52.89500026198603],[4.711000515540395,52.895098411018026],[4.711060723251889,52.89516592848279],[4.711105732525326,52.89522642122284],[4.711126839571239,52.895346989513584],[4.711145866770952,52.89560190620141],[4.711160397402945,52.89565295116081],[4.711220871925618,52.89570425803141],[4.71136506533503,52.895788470871814],[4.711463258621354,52.89587704237505],[4.711561525394571,52.89596098605873],[4.711613543659984,52.896063207551],[4.711589209730981,52.89615109459311],[4.711534610832866,52.89621565074626],[4.711363687045635,52.896298070998995],[4.709434727983616,52.8963469068295],[4.709335572768993,52.896354767186324],[4.709277426891284,52.896383086673204],[4.709268903776329,52.89640887504817],[4.709297438717555,52.89643262625001],[4.709345255472295,52.896449180722364],[4.710463033481392,52.89641925985114],[4.710592217759081,52.896471882064745],[4.71064937477937,52.896507146227556],[4.710703195301378,52.896568910311146],[4.710739184454791,52.89664201431606],[4.710880776226899,52.89689529861163],[4.7110292687699,52.897197283863996],[4.711140029165251,52.89746199412815],[4.71116817423917,52.89762430045271],[4.711119918340151,52.89777227177977],[4.711001823384282,52.89798008542419],[4.710826820282399,52.89815284302353],[4.709436402739356,52.89819873440761],[4.709360736306079,52.89821852585676],[4.709346339081994,52.898240911766536],[4.709380338713025,52.898272001935304],[4.709441030932504,52.89828133044584],[4.710966350714545,52.89824114575133],[4.711154403279922,52.89851374268961],[4.711197996765558,52.898666872036735],[4.711234432382104,52.89878521738301],[4.71127709564203,52.89899856844192],[4.711311144356165,52.89927210042196],[4.711352517649407,52.899568842416414],[4.71139558417598,52.89975440072615],[4.711385152396272,52.89989441723834],[4.709665818102092,52.89994907175413],[4.709504626658432,52.899958833226826],[4.709477247750538,52.89998788728292],[4.709509968919645,52.900034126193674],[4.70959526823802,52.9000441550322],[4.711351389328533,52.90000081638575],[4.711405956240609,52.90007413398964],[4.71151037997662,52.900255401430165],[4.711599336838749,52.90044585731966],[4.71165112751601,52.90056428844548],[4.711717039431023,52.900759241096075],[4.711723059008307,52.900865840194655],[4.711713240888377,52.90100476288528],[4.711672235915329,52.90118058012979],[4.711646737394473,52.901342592559615],[4.711628348392039,52.901541704497134],[4.711625978498963,52.90169486106831],[4.710458679958509,52.901771692792295],[4.710060858387506,52.90181100010767],[4.709996446075252,52.90183871913148],[4.710003885376045,52.901890991046145],[4.710052387689156,52.90190025547766],[4.711658436050097,52.9018074492597],[4.711662344322148,52.90181987389443],[4.711850574546877,52.902029411718225],[4.711947564494963,52.90219675307934],[4.712021939614616,52.902340789828536],[4.712058072962659,52.90247998217711],[4.712056138777317,52.902605056889826],[4.712038789832747,52.902737000138124],[4.712020743903095,52.902912947223676],[4.711932697021949,52.90315799249272],[4.711899632679083,52.903315323178944],[4.711848569624111,52.903507017780804],[4.710177412139227,52.90360955598169],[4.710126230573723,52.90363060827265],[4.710110437321058,52.90366759148682],[4.710156164455218,52.90370604055473],[4.710254473881937,52.90370941341638],[4.71196715922892,52.90360033209291],[4.712016950918026,52.90365419221744],[4.712144200813713,52.90384485409927],[4.712330165165553,52.904202640429574],[4.712366244337684,52.90434646043515],[4.71236459722486,52.904453014263225],[4.712354689107766,52.90459889294015],[4.712304867161902,52.90484878341668],[4.712255317611381,52.905080152956806],[4.712201307778667,52.90527032838902],[4.711131851171676,52.90532187610179],[4.710842904152879,52.905339334836796],[4.710773622454997,52.905350735643516],[4.710726266171915,52.90537180895707],[4.710724054461974,52.9053948301814],[4.71074376538516,52.90542751584525],[4.710788287911354,52.9054384388159],[4.710840978239007,52.905440424048926],[4.712189606466844,52.90536756099425],[4.712188253825679,52.905455039539646],[4.712202289073153,52.90553850623779],[4.712276582643187,52.90568717933011],[4.712342576526963,52.905877503637576],[4.712408372588484,52.906081720176715],[4.712421532729996,52.906220782438986],[4.712418489410638,52.906417663263134],[4.712408760045316,52.90655195905318],[4.712343041123122,52.906838827816145],[4.712326355385727,52.90692675887813],[4.712325209423911,52.90700088256174],[4.712331361850327,52.907092401649564],[4.710889748225356,52.90712008515242],[4.710842678416467,52.907137226664716],[4.710840153308582,52.90716473944129],[4.710853161287733,52.90718783696751],[4.710897161125069,52.90720325655169],[4.712299464864613,52.907179796509176],[4.712298437063899,52.90724627409653],[4.712320768986348,52.90728809845434],[4.71242594305068,52.907423044390946],[4.712553351527887,52.90760445919524],[4.712634759964444,52.907790224191444],[4.712671129373595,52.90791551507055],[4.712677159926274,52.908019785508685],[4.712652606558764,52.90812157272833],[4.712604859816529,52.908237124118244],[4.712557755630215,52.908310988163855],[4.712474707463826,52.90872747432736],[4.712411396040506,52.908894960605686],[4.711201215862179,52.90892535653963],[4.711025719655408,52.90893504189757],[4.710990588384429,52.90895393785785],[4.710987522757233,52.90898649896915],[4.711005658559343,52.90900794319445],[4.711052014015369,52.90901382141815],[4.711347473767609,52.90901268279682],[4.712376816759369,52.90898270874386],[4.712401129397572,52.90902820182765],[4.712540643493083,52.90941814773623],[4.712576297877558,52.90958977068792],[4.712582017393897,52.90962846902167],[4.712604047329932,52.90977755102645],[4.712646556234573,52.910000174230525],[4.712666241012089,52.91021340504323],[4.712655652465835,52.91040328735546],[4.712622567269284,52.91056061871233],[4.712569412766687,52.91066424023479],[4.711183582633178,52.910694506561164],[4.711175719289752,52.91081915470267],[4.712549817937577,52.910774027441526],[4.712580196288857,52.91082446054434],[4.71264083675872,52.91086649218943],[4.712693164472507,52.910950183952345],[4.712714068496076,52.91108465259884],[4.712705410978645,52.91114947931155],[4.712657802870361,52.91125575628653],[4.71257984682808,52.91134334930018],[4.712516543107315,52.911472705167014],[4.712507454404625,52.91156530539361],[4.712559496280534,52.911667526973055],[4.712657083075549,52.9117977997084],[4.712708836418409,52.911918540189895],[4.712744013299029,52.91212027365731],[4.712733439163701,52.91231017482778],[4.712670222233004,52.91246732696742],[4.711366233310014,52.912504104937256],[4.711359465988664,52.91261078591113],[4.712577875877125,52.912576999782814],[4.712559260993674,52.91267517272218],[4.71255782880832,52.912767826055536],[4.712654329221664,52.91296758642216],[4.712736736639265,52.9130885098555],[4.712833811294158,52.913251204239685],[4.712898748286533,52.91351101561364],[4.712904699397422,52.91362224109214],[4.712894954955893,52.91375653656345],[4.71289223518973,52.913932569763155],[4.71285973557706,52.9140528424837],[4.712781332172876,52.91416822068314],[4.712664215670266,52.91427004310693],[4.711280084400093,52.91430993449622],[4.711273316567929,52.91441661540969],[4.712638552611135,52.91437788988146],[4.712708128908075,52.914442304628466],[4.712768073401671,52.91453066739562],[4.712819646531852,52.91466531804137],[4.712900254897164,52.91490205019824],[4.713022133749587,52.91544477703254],[4.712996202304707,52.915634581475395],[4.712923947780497,52.915847282101275],[4.712868678820151,52.91595353466121],[4.712735035056853,52.91606444816653],[4.711365182607502,52.91609651672104],[4.711358906210926,52.91619421102087],[4.712775585285029,52.91616873354297],[4.712854746083592,52.9163588347175],[4.712920989557791,52.91653525712189],[4.713083227400247,52.91694386109403],[4.71314911486213,52.91714344889832],[4.713146753679561,52.91729631548528],[4.713121766745727,52.9174258975935],[4.713095921022871,52.91761106443086],[4.713048293071448,52.91771736015108],[4.712977912573376,52.91780961519858],[4.712866251414273,52.91790417139097],[4.711489695130183,52.91794172962779],[4.711469775956812,52.918021374312374],[4.712795274499778,52.918007844086944],[4.712896652700185,52.918110298916304],[4.7129640279077,52.91821259587114],[4.71300126562149,52.918282299771114],[4.713015361568567,52.91836113916825],[4.71300620375986,52.91845837597075],[4.713055890366619,52.91871346455282],[4.713135948201387,52.91898726303012],[4.713156428013512,52.91914952455687],[4.713115339841193,52.919329978075986],[4.713036498197731,52.91947314771134],[4.712973555085312,52.91957934792791],[4.712806000478332,52.91966707321661],[4.711551381764457,52.9196972840019],[4.711488938682658,52.91975365535353],[4.711545114122475,52.91979498005882],[4.712727864429977,52.91977295297101],[4.712885717186364,52.91984942182516],[4.712961333019662,52.91991606132527],[4.713036557777719,52.92000918308997],[4.713099799883568,52.92016845162794],[4.713205836984145,52.920394165260134],[4.713287298957042,52.9207918971259],[4.713296415818692,52.92091112842801],[4.713260899911644,52.921083076942985],[4.713203382722942,52.92126153253914],[4.71314688649038,52.921373771350915],[4.71302479099048,52.92147030871631],[4.711580619538474,52.92150039542373],[4.711474350451023,52.92155090131503],[4.71157348997244,52.9216070731932],[4.712940352139477,52.92157898288474],[4.712978585767228,52.92163435865374],[4.713021160260901,52.92171405067925],[4.713063337554219,52.92182023124426],[4.713083296056551,52.921946139673636],[4.713133948393366,52.92221127955911],[4.713184923115562,52.922456551776556],[4.713203244386854,52.92268839342198],[4.713200585400585,52.92286052542576],[4.71313213457649,52.92303891022967],[4.713031307436295,52.92318400552422],[4.712903483315219,52.923282560256645],[4.71196220266873,52.9233026843919],[4.711929433552943,52.923355293813465],[4.712072500485162,52.92341171264071],[4.71284263986324,52.92339299498163],[4.713013510103517,52.92362753005196],[4.713076658100078,52.923793412045114],[4.713106791847709,52.923969054999],[4.713121035353717,52.92446570944818],[4.713118273430472,52.92464447381274],[4.713071080702788,52.92486270833037],[4.713014695142154,52.92496832446581],[4.712863024404253,52.925065233889356],[4.711729122264278,52.92507679016906],[4.711623075057611,52.92512729922731],[4.711691469023281,52.92520463847729],[4.7127619048026,52.925181749775675],[4.712886962074679,52.925437701962295],[4.712959930332495,52.92567647594212],[4.712965873854991,52.92600095355367],[4.71292883390039,52.92627221239359],[4.712834761478983,52.92668881341494],[4.71274917510163,52.92686025329781],[4.711641374519682,52.92687137305226],[4.71153510741207,52.92692244514064],[4.711603489277524,52.926999776234396],[4.712679034134975,52.9269763149011],[4.71277228452325,52.92718836755684],[4.712844740493792,52.927460236305805],[4.712852936400568,52.92763905338498],[4.712840442197899,52.9277383020696],[4.71283860005184,52.92785747310437],[4.712879132074733,52.92806957939],[4.712864810575911,52.928287999169505],[4.712817421323101,52.928519469557855],[4.712687364040205,52.92868821391601],[4.71141890776076,52.928707881222444],[4.711356659495944,52.92875975750973],[4.711413012641644,52.928796588923355],[4.712585330932243,52.92878917666535],[4.71269049593705,52.92893588476365],[4.712796637912495,52.929154984562],[4.712869215864618,52.92942023787293],[4.712920707537099,52.92963240590419],[4.712917125858801,52.92986412348999],[4.712880988399439,52.93007579779456],[4.712823147664531,52.93027411049138],[4.712726815344575,52.930457262912114],[4.711596020233467,52.93049047577366],[4.711548622574485,52.93054243792101],[4.711603182131229,52.93060621980849],[4.712763980711651,52.93056692066906],[4.712903182204251,52.930766184708524],[4.71297718267302,52.93093874986137],[4.713039944984094,52.93113112093662],[4.713101463793463,52.93140293556128],[4.713129725136654,52.93170104512913],[4.713126451217855,52.93191290481249],[4.713068919133863,52.93209135078078],[4.712985142395358,52.93223264176455],[4.711859942113144,52.932287601406614],[4.711797063939839,52.932349028889234],[4.711895675040344,52.932404627489085],[4.712945697294221,52.93234635136171],[4.713052433583756,52.93244879889929],[4.71315858598766,52.93266788918682],[4.713307337148589,52.932966678309775],[4.713424452269178,52.933185848125916],[4.713454951823928,52.933338308013276],[4.713440733670167,52.933550104085676],[4.713417088849592,52.933662528845566],[4.713392830224353,52.93381467900761],[4.713335577292339,52.933992290833146],[4.712061595425325,52.93404843437085],[4.711970536867007,52.93409116421417],[4.712041852177838,52.93414493058324],[4.713373958763416,52.93409476495004],[4.713495612865565,52.93425225910513],[4.713728626638064,52.93477002284],[4.713790362231176,52.93502859266264],[4.713826899762381,52.935160937542506],[4.713844278351653,52.935250236463894],[4.713862389953155,52.935352659944684],[4.71379375599917,52.93580671639101],[4.712056687217125,52.935851899686284],[4.712060565934606,52.93594628358204],[4.713781370224323,52.93591144737809],[4.713826614644481,52.93600118192153],[4.71391712290302,52.93614965628732],[4.713981046379848,52.936280943099064],[4.714062322100967,52.93650910337658],[4.714106349705074,52.93670860129423],[4.714122559946879,52.93687946486467],[4.714115005178476,52.93736898585798],[4.714104887769693,52.93741446392877],[4.714101273020673,52.93744426108],[4.714061816155775,52.93754511998964],[4.712040206753543,52.937637338972465],[4.712058867979388,52.93775314681304],[4.714084653832913,52.9376547403907],[4.714251074501082,52.937933058848365],[4.714266844327759,52.93801472793948],[4.714285446836721,52.93804604313757],[4.714305325495088,52.9383204069621],[4.714309490541043,52.93855264390201],[4.714302165994404,52.93867364392553],[4.714247746833855,52.93902101958397],[4.714238468646613,52.93909210516213],[4.714172590973939,52.93930486902272],[4.712393576737067,52.93941811234129],[4.712432926250187,52.93953403689321],[4.714128049068354,52.939434492290616],[4.714362800255813,52.939629798884184],[4.714372127557459,52.93963554890217],[4.714401114479982,52.93966758754563],[4.714489133825493,52.93990271300726],[4.714475282177621,52.940153703152184],[4.714489932913141,52.94020963636438],[4.714455020713212,52.94037064206775],[4.714443498644115,52.940507245175255],[4.714413288467212,52.940632365140274],[4.714373569573889,52.9408570846782],[4.714420460660302,52.94104201400583],[4.71407440095026,52.941063715935414],[4.712801056262435,52.941158761097014],[4.712806301512456,52.94127841741092],[4.714645129574084,52.94113935522886],[4.714814558969892,52.941449483118106],[4.714874189782277,52.941907145762656],[4.714936033152596,52.94217515001261],[4.714968543539805,52.942300200535996],[4.714966239931482,52.94230102332846],[4.714760190378949,52.942390852190535],[4.713222172562789,52.94315503392663],[4.713344836075246,52.94323436007498],[4.714550192670058,52.942664149140526],[4.715055389185381,52.94242188297834],[4.715171938632721,52.94276586984126],[4.715247742305755,52.94297477575062],[4.715333734899708,52.94327361363856],[4.715414693265867,52.94352463252239],[4.715579915666154,52.94381030180494],[4.715606012098722,52.943928055780724],[4.715624133291954,52.94399847757053],[4.715651605881028,52.94404988150021],[4.715647901598514,52.94413681567356],[4.715658845886375,52.94419229738036],[4.715619576891718,52.94451647312592],[4.714349454827398,52.944945223771626],[4.714449216654465,52.945017675340736],[4.715684788375119,52.944613643862844],[4.71585770405839,52.94474294369293],[4.715960378604556,52.944806165873246],[4.716056021449385,52.944896137441276],[4.716110427862617,52.94495222174696],[4.716368686494525,52.94521848001175],[4.716426705713845,52.94546324940142],[4.71644552238412,52.94573713086686],[4.716413390141622,52.94598751402073],[4.716388495808681,52.94638031107556],[4.716396963627187,52.94644300397169],[4.716406864081014,52.94656546558017],[4.715508821315829,52.94668727473709],[4.715540209635188,52.94677731773323],[4.716762127625698,52.946611700111916],[4.716987237796181,52.94682481214901],[4.717072014274904,52.946921479779576],[4.717130016913254,52.94703403914101],[4.717187562117898,52.94717464207553],[4.717238662858444,52.94745378166916],[4.716510227263754,52.94823240650772],[4.716375057571208,52.94839003419489],[4.716526018923052,52.94844480177403],[4.716656254579224,52.94831242633413],[4.71697251485844,52.947950988758606],[4.717292662735065,52.94810870071284],[4.717411108407369,52.9481735205938],[4.717581466572174,52.94831481841896],[4.717698263420235,52.94855780352051],[4.717733327158779,52.94863075514891],[4.717821947102784,52.9489308464091],[4.718001373486078,52.94927918988457],[4.718110409769225,52.949401981653544],[4.718263691079354,52.94953854665254],[4.718375114588977,52.94979473810034],[4.718017538759429,52.94991460399506],[4.717900695337483,52.949954390980174],[4.717888518726745,52.949982971030586],[4.717944559175588,52.95002709434059],[4.717991319207758,52.950032971890856],[4.718032905526459,52.95003790472339],[4.718150833430596,52.95003032431128],[4.718489622274593,52.95022048884508],[4.718744657581141,52.950540892508585],[4.718872672887968,52.950709972473035],[4.718966036498939,52.95086833348784],[4.719092900552936,52.951056341423936],[4.719228428050724,52.951304381973564],[4.719338797019742,52.95148914224151],[4.719491991155042,52.95172150079062],[4.719661627751664,52.95201708058075],[4.719790377415011,52.952138804442356],[4.719883343147464,52.95232347594328],[4.719917047355439,52.95239731788882],[4.720048295519145,52.95284291173299],[4.720052373850564,52.95291176157032],[4.720096467953539,52.95299288932764],[4.720152119140733,52.953025216320874],[4.720228182951693,52.9530312565272],[4.720293585449717,52.95301424331539],[4.720359622380883,52.95297141345996],[4.720599243422074,52.952995917527026],[4.720792824949053,52.95307601579473],[4.721005134887647,52.95322368913042],[4.721170816485301,52.95337111122344],[4.721329018286925,52.953582583442504],[4.721270111079579,52.95360939369797],[4.721341464598076,52.95367157464685],[4.721364418472954,52.953660470245644],[4.721716110270352,52.953488727225775],[4.722520436604196,52.95414021631686],[4.723162292127768,52.95478883813765],[4.723839735474445,52.95553398952737],[4.724839938556625,52.95668554464883],[4.724667042039815,52.95696807556924],[4.724656248996346,52.95701142968388],[4.724689964239981,52.957046052967236],[4.724729127079195,52.95706102592718],[4.724760787741609,52.95705263724091],[4.724797702615967,52.957020670042986],[4.724928781090772,52.956805827455604],[4.725404435255364,52.957350071442335],[4.725855189632114,52.95785018656651],[4.726185413716431,52.95820211050672],[4.727771437733296,52.95973597454551],[4.72796460184186,52.95990849394465],[4.727822346049571,52.960007684344326],[4.727796683096233,52.96004743394742],[4.727826290986855,52.960086302235695],[4.727873753136998,52.960113658415075],[4.727937951016116,52.960107029988826],[4.728089536059121,52.96001682350206],[4.728262512408529,52.960168346396344],[4.729127412576141,52.96100280975749],[4.730587765214987,52.9624610020998],[4.730682234256735,52.962519934234244],[4.730775492219504,52.96255751397482],[4.730839440499779,52.96257359602548],[4.736507783080847,52.963328563003564],[4.737564868063077,52.96345955931837],[4.738312237995717,52.963564159701015],[4.738606572189934,52.96360900195889],[4.73998705997134,52.96385574646775],[4.740599224328762,52.96394499999172],[4.741034630808217,52.9640108143889],[4.74144463839269,52.96405683920504],[4.742125843194125,52.964108265198114],[4.742688481885927,52.964141630450456],[4.744724559541588,52.96423416869597],[4.747800035001773,52.964364534764066],[4.748296954166698,52.96437673626998],[4.748795122582933,52.96437378216328],[4.748864107779341,52.96435562131142],[4.749310794947862,52.96435968357329],[4.751251336257289,52.96418636612615],[4.754764642296917,52.96385171953711],[4.755216229802407,52.96382153096191],[4.755503819044733,52.96382698805633],[4.755862219717923,52.96385696607005],[4.756248065446018,52.96391853789304],[4.756616408187982,52.963991808207155],[4.761991444104594,52.96523153379241],[4.762316944291406,52.96529445256122],[4.762668342217448,52.96535133113066],[4.76289577952639,52.96536824458598],[4.763210211025943,52.96538336961168],[4.763979589792192,52.965387383200735],[4.766450294764102,52.96545472176107],[4.767121220978786,52.96546381948818],[4.773012447274774,52.96530944406687],[4.774249254885007,52.96528209204141],[4.774798775368297,52.96528266273336],[4.775532440751703,52.965295971608356],[4.775784635701527,52.96528097198967],[4.776521332860034,52.96519318889898],[4.776903953876989,52.96516481716319],[4.778237514701083,52.965135102340795],[4.778758365721446,52.965115291021625],[4.778812310149147,52.96510040540034],[4.778888449354876,52.96506035285993],[4.778949103588545,52.965021346587434],[4.778988014029412,52.96501592892024],[4.779036026484144,52.96503414613305],[4.779084756940293,52.965066402048095],[4.779392601401219,52.96539597291744],[4.779457319436489,52.96543281308155],[4.779519867448825,52.96544211932059],[4.779583143317958,52.96544075060553],[4.779639369362075,52.96542812192758],[4.779694405814101,52.9653924557568],[4.779716608181865,52.96533415923365],[4.779709208237453,52.965315023584616],[4.779663808397716,52.96529288564749],[4.779605697389604,52.96527461736275],[4.779559005733578,52.965228888729015],[4.779163434027393,52.96470341544741],[4.779111587698492,52.96467731561823],[4.77904125504762,52.96466684804365],[4.778952397824892,52.964660779407716],[4.778861390403764,52.964616507259514],[4.778539658472742,52.96439862806253],[4.778207730274773,52.96416273476573],[4.778329976193584,52.96410157548008],[4.778265038435256,52.964055744392006],[4.778150117690702,52.964116940933714],[4.778114546622107,52.964107215161455],[4.77796269348658,52.964098578167864],[4.777877603772266,52.96408916069659],[4.777797177095439,52.96406122334792],[4.777746678688145,52.96402165097538],[4.777720200894737,52.96397770691849],[4.77771062427836,52.96391475007603],[4.77771300645089,52.96384456078318],[4.777757274709286,52.96365550706441],[4.777741730750051,52.96347850838415],[4.77771129932774,52.962910516673574],[4.77799002830968,52.96314165791266],[4.77802769886255,52.96316712165842],[4.778064459115268,52.963173488985284],[4.778102697906281,52.96315851376523],[4.778128400298034,52.96312439007869],[4.77812079143894,52.963095147059704],[4.778087198935318,52.963036561998635],[4.777988657811896,52.96289058854849],[4.777995904438852,52.96287152652122],[4.778000026443549,52.9628760416654],[4.778118203859995,52.962822167856494],[4.778112597416183,52.962816523640214],[4.778185471585966,52.962835425055665],[4.778945557834152,52.9635671987034],[4.778995623768805,52.9635961014274],[4.779032092322796,52.96359909075158],[4.779038339703393,52.963592950625426],[4.779043532776362,52.96358791766058],[4.779040585094785,52.96353230155111],[4.778962506752788,52.963285900452526],[4.779343483972825,52.96319852986504],[4.78023576219261,52.964009600689124],[4.780643612224789,52.964264416271725],[4.78109500909667,52.964648073675725],[4.781214189368539,52.96472337342955],[4.781319281321139,52.96475872779416],[4.781422102967948,52.96475644421393],[4.781529571335059,52.9647216027457],[4.781713017144416,52.96464053052705],[4.782075059305885,52.96445982880079],[4.782156508731243,52.964438899111556],[4.782270376599588,52.96443722877293],[4.782359776456863,52.964446664917915],[4.782443244829964,52.9644644958035],[4.782546858748952,52.964505460851676],[4.782633077131178,52.96456936566012],[4.782720995696578,52.964668664120296],[4.783110194711313,52.96528058622133],[4.783253039010678,52.96545204994243],[4.783356042886785,52.96555734978634],[4.78336070252744,52.96556211458277],[4.783533530133563,52.96570227766713],[4.783810876952,52.965894639366745],[4.784241008403266,52.96609620042485],[4.784363755378608,52.96613276533188],[4.784485565124904,52.96615359907552],[4.784612347399475,52.966151427251745],[4.784732119771324,52.96612563768896],[4.784824944605617,52.96608959076857],[4.784898590769659,52.96604559567617],[4.78495308126947,52.96599812782145],[4.784994244216485,52.9659393651167],[4.785004481288761,52.96589672918661],[4.785002523114065,52.96586189857278],[4.784973428112521,52.965796601937996],[4.78491281379774,52.96573169736685],[4.784806758968124,52.965655902249225],[4.784695960710169,52.96560424054178],[4.784431142245975,52.96552370782865],[4.78431330325405,52.965460205639154],[4.784093894973455,52.96528218414611],[4.783883738078128,52.96504185902308],[4.783496608999917,52.96447263201441],[4.783361976485661,52.96421976384114],[4.783330494601301,52.96410839815057],[4.783325627345413,52.964023570944484],[4.783333553500025,52.96393823592592],[4.783373107930139,52.963852500815435],[4.783438154488012,52.96376633279295],[4.783572099662547,52.96364850825043],[4.783658873030159,52.96358828502058],[4.783763839134978,52.96353152708776],[4.784333434770047,52.963297939173636],[4.784619117884351,52.963138748246145],[4.784689111205534,52.963072267771466],[4.78470721252434,52.96304090725597],[4.784725805608545,52.96300842321116],[4.784716865650637,52.962957262204604],[4.784690548519544,52.96291781464557],[4.78460851962615,52.962846077334184],[4.784029073967551,52.96242921012463],[4.783962401609409,52.96239124552084],[4.783848853950693,52.96235416040846],[4.783801616616444,52.96234774916306],[4.783731261703299,52.96234907716949],[4.783661737695439,52.96236445159386],[4.783595777739641,52.96230312644636],[4.783278110687306,52.96200699023868],[4.783174987674193,52.96204803163983],[4.783507682278124,52.96233895996717],[4.781831599387028,52.96301872883135],[4.781269953863435,52.963246503966154],[4.781078499912377,52.96308434476333],[4.781035677997616,52.963111640613356],[4.781252884436627,52.96329584214552],[4.781103682351273,52.96335518906611],[4.780426700082461,52.96274741152737],[4.780598715807047,52.96267807502781],[4.782688823422364,52.96183270058245],[4.782854427560491,52.96175490809052],[4.782743463300045,52.961657183446746],[4.782421864384174,52.96177406233629],[4.781779992880555,52.96202917431312],[4.780294012812698,52.9626405824905],[4.779636626874322,52.962030656737525],[4.780914282569563,52.96150750783505],[4.781171022545467,52.961381307810704],[4.781078230324404,52.96129041537898],[4.780224103910943,52.96163206433075],[4.779509676068607,52.961936776707645],[4.779347503217497,52.961777567262494],[4.779250027075318,52.96170462165164],[4.779105697377669,52.96163255283715],[4.778974350235284,52.961588639842155],[4.778803015955829,52.96156024143593],[4.778691089601046,52.96154788324536],[4.778555979239399,52.961539889359905],[4.778444980664274,52.96154550412895],[4.778316025321188,52.96143027240027],[4.777745900336358,52.960916449520404],[4.777351146563871,52.96091087931784],[4.775229183269927,52.9608652090523],[4.775228390685005,52.9607405193234],[4.775269332986648,52.96073960292246],[4.775274088291853,52.960714347387295],[4.774396886529313,52.96052113819272],[4.774390823708781,52.96047412756083],[4.774381972847829,52.96040599158164],[4.774376036856157,52.96035927725289],[4.774460252886356,52.960340503070185],[4.774520270703012,52.960241034660314],[4.775039715268712,52.959604443206054],[4.775450040491704,52.95908926192285],[4.775579094994463,52.9589065584437],[4.775584489660387,52.958898919674034],[4.775774581049459,52.95862979787546],[4.776046348310703,52.95829363991058],[4.776310550452307,52.95795013213546],[4.776520191605319,52.95801410883766],[4.776947962899712,52.95746306006565],[4.776866085848122,52.95739019290989],[4.778140171154682,52.95576788649624],[4.778273786383049,52.95558996249522],[4.778524705869318,52.955246382904484],[4.778648911566816,52.95508469228369],[4.778940329215683,52.95469526488115],[4.779195963408027,52.95453705523964],[4.779879191546625,52.954861237179564],[4.780143885152206,52.954987271295956],[4.780859578078996,52.955327330699554],[4.78065168867802,52.95547961423771],[4.780488870834826,52.95561695251459],[4.780283122220777,52.95584955946605],[4.780044160761557,52.956179155711375],[4.780025078806911,52.956205459295774],[4.780005862515588,52.95623232474901],[4.778995160554024,52.95763918578589],[4.778795709209745,52.957926861695704],[4.778776737611784,52.95798630151534],[4.778779421130467,52.958035739965176],[4.778811922182574,52.958089259080154],[4.778843407702777,52.958124809025975],[4.778920617701865,52.958181924689356],[4.779058083210576,52.95823710925284],[4.778244258856774,52.959385483729406],[4.778417297635394,52.95943185295642],[4.779241529987088,52.958296451939916],[4.780349510344412,52.95861379750989],[4.779552800079625,52.95972014881058],[4.779748142975856,52.95977618300999],[4.779807991683896,52.95968717767255],[4.780079174422066,52.95934089796228],[4.781242924688617,52.959655145661856],[4.781359506953732,52.95969112718038],[4.78144923487858,52.959567451646365],[4.781054278562975,52.95945873227126],[4.780151858058128,52.959223318609006],[4.78055190450062,52.95866481941626],[4.780803477030393,52.95872450542521],[4.780964090558577,52.958770811530876],[4.781023399828002,52.95876943005511],[4.781087468183816,52.95873605563303],[4.78112537250674,52.95868570155002],[4.783209431693704,52.959227576470354],[4.783295767597147,52.95912185178598],[4.781189698969422,52.95855796848651],[4.781654657755295,52.95790318632601],[4.783761350662689,52.95844516831422],[4.783839814088524,52.95834558797709],[4.78172703520171,52.95778167195134],[4.782202649899715,52.957112336706594],[4.784330207851318,52.95766452430747],[4.784412923457343,52.957550929934456],[4.78326391869992,52.95724126886343],[4.782282661776136,52.95698468690235],[4.782759120055294,52.95632828068526],[4.784906394322102,52.95689066417165],[4.784990751471344,52.95690232502543],[4.78515819111527,52.95690934044328],[4.785557072963869,52.954305832928995],[4.786069713372942,52.954299983928635],[4.786330102656619,52.9543170187405],[4.786300858851785,52.954481413501746],[4.786183290408978,52.95447385872786],[4.786176843987472,52.95452590213723],[4.786471479120287,52.95454483604243],[4.786477940084457,52.95449279179308],[4.786360833974887,52.95448526468002],[4.786390155928999,52.954320689669345],[4.78671225720453,52.95434814454989],[4.787295460457801,52.95440948631382],[4.786996667985805,52.95558521650423],[4.786673774089735,52.956997841285485],[4.787273167797515,52.957050845789794],[4.787670756525979,52.955581857975325],[4.78795210783084,52.95447343830254],[4.788178975014666,52.95447738741448],[4.788574074434822,52.9545141913879],[4.789009698650788,52.954562428196674],[4.791121729287192,52.954853809562394],[4.792100144116317,52.955021256935204],[4.792083471478987,52.9550783109031],[4.791877242983899,52.95553492879192],[4.790871496358393,52.95754289020258],[4.791470440961876,52.95764697387992],[4.791978546411063,52.956672781627724],[4.792582850735826,52.95551428643079],[4.792759114268496,52.95516244363574],[4.794388288279524,52.95549573715455],[4.79332319823159,52.95724337372338],[4.793516050862505,52.95728757920372],[4.793567604905911,52.957214821906035],[4.793720897958328,52.95725321132989],[4.794108024993705,52.95661372104074],[4.79575851669834,52.95695664672639],[4.795879857700936,52.95697971328295],[4.796089835911403,52.95701970738772],[4.796478165171533,52.95709388029551],[4.796331238519581,52.95733241635214],[4.797309859790036,52.95753327206426],[4.797231482573223,52.95766262568976],[4.79627876113645,52.95745572099289],[4.796085678575249,52.957796256001686],[4.795510621577928,52.95880873692276],[4.795495268837196,52.95883576413082],[4.793199403754664,52.958376740773176],[4.793084884457431,52.95856376612213],[4.793227402456097,52.95862513493132],[4.795374461923207,52.95905927253741],[4.798150799906068,52.95962115777753],[4.797955693031095,52.959965610890485],[4.798118611218793,52.959998434485314],[4.79790364609465,52.96039333490776],[4.797720273166468,52.96035198983574],[4.797668543804778,52.96044553817821],[4.797564514702586,52.96063261400417],[4.797508969620451,52.960629529031515],[4.797429317726761,52.960638688677456],[4.79735165931893,52.96068155017459],[4.797310799200361,52.96071954192943],[4.797232011111432,52.96084496005088],[4.796755701655839,52.96173508126223],[4.796704669057336,52.96181065068633],[4.796663811571806,52.96184920657615],[4.796621976433064,52.96187259026482],[4.796572865407368,52.96187684174924],[4.796493691078456,52.96189329745078],[4.796339288774183,52.961892534348515],[4.796146178287747,52.96186574266937],[4.795526776372318,52.96173967163579],[4.796136381876756,52.960685101535276],[4.79573631323181,52.960598871781166],[4.795697913403902,52.960677868742074],[4.795960573818688,52.960737023992856],[4.795407571705999,52.96171493580409],[4.794453238507594,52.961518123366275],[4.794365252122979,52.961489604317116],[4.794301265177615,52.961449402313896],[4.794274151919143,52.96140883141535],[4.794252227337675,52.96135312248084],[4.794254307974046,52.961285733386376],[4.794716666221985,52.96046014836843],[4.794816213859083,52.96027080075203],[4.79482038471301,52.960237121256064],[4.794805958444848,52.96020390855386],[4.794786264990234,52.96018134747046],[4.794691628600628,52.960146054032634],[4.793717995841924,52.959942962533034],[4.793534500678835,52.959910034325034],[4.793468856906017,52.95989904223706],[4.793413502046282,52.95989988878135],[4.793364965874025,52.95991200496294],[4.793322962709806,52.95993145239682],[4.793282448021438,52.959977306773915],[4.792226235942227,52.9619148204918],[4.792091389538061,52.962134873081204],[4.792033328014748,52.962094711947636],[4.791903325532934,52.96218055756112],[4.791818971639663,52.96223630377111],[4.791857223949731,52.96226176603585],[4.791766605792925,52.96230737033424],[4.791699154552234,52.96233399193571],[4.791562338092429,52.962365331755514],[4.791240859153348,52.962414831882235],[4.789811028598913,52.962586303579265],[4.789719144371761,52.96260550404872],[4.789633386508835,52.962635405606655],[4.789560731439474,52.96268615022714],[4.789523236244561,52.96274044592244],[4.789515632895522,52.96281117454844],[4.789539133898271,52.96286072122099],[4.789586858007347,52.96293397487484],[4.789660371934858,52.96300004873271],[4.789738646476716,52.96304087998496],[4.789821755303135,52.963067697582915],[4.789909358067693,52.96307318573061],[4.790002395723373,52.963071972798076],[4.79070298100881,52.96300188689468],[4.79078475711103,52.96300791147298],[4.791002577671908,52.96304606992572],[4.791118683588876,52.96307710048941],[4.791126777228375,52.96307926255311],[4.791887859873378,52.96331277536711],[4.794421275754824,52.96409034044224],[4.795494463465394,52.96441018347465],[4.795676250596484,52.96444983276231],[4.795876343044747,52.964477223129855],[4.796192406850395,52.96451079502463],[4.796507388115477,52.96452807816748],[4.796905352090856,52.96454072258218],[4.799998407561604,52.96459695314736],[4.800556824844362,52.964602507607474],[4.800921789542873,52.964595865199556],[4.80108769108815,52.96458095332993],[4.801208041778502,52.964555150128156],[4.801327676460881,52.96452203730806],[4.801451609933006,52.96445355677077],[4.801559968872724,52.96434232402607],[4.801773158563073,52.96355031166985],[4.80231436569873,52.96216792650682],[4.802406230788935,52.9619599970015],[4.802881134555324,52.96079352297282],[4.803135509144031,52.960110102682876],[4.803243127775811,52.95985338909721],[4.803394981729145,52.95945367682797],[4.80342069826081,52.9591819626824],[4.803420459358476,52.95903424464892],[4.803386108819645,52.95883918463888],[4.803286181106838,52.95850450680779],[4.803214135110255,52.95827724916072],[4.803042844881069,52.95773459804265],[4.802668066490155,52.95654793612246],[4.802208712648433,52.955078313847366],[4.801729114354342,52.953609569434064],[4.801665966310429,52.95346860364058],[4.801593868282549,52.95334615104532],[4.801587136195213,52.9533310108812],[4.80168734001001,52.95328323540185],[4.801711431234089,52.953195645329764],[4.801697513148658,52.953094020883],[4.801500494704329,52.95297302397793],[4.801417390242408,52.952903374927445],[4.801326965008276,52.95281060544592],[4.80129032261878,52.95269501237948],[4.801269069861369,52.9525702647246],[4.801239438567557,52.952500869588],[4.80095817322711,52.952397934005994],[4.800830737447866,52.95231445434139],[4.799227784062226,52.950751610828995],[4.798510863418014,52.95002400386669],[4.796848321316753,52.94836153154306],[4.794665218925441,52.94619446145053],[4.794640917970445,52.94617302496116],[4.794441939634767,52.9459974662604],[4.79397494196432,52.945546572080076],[4.79375089670702,52.94533024804254],[4.793685592878842,52.94525096734393],[4.793111550940143,52.94455395272216],[4.792839512060301,52.94412405201908],[4.79257751618478,52.94368353360357],[4.792406681970545,52.943359166133384],[4.792288709114214,52.943095723246834],[4.792230946002332,52.94294154424187],[4.792168277130431,52.94277330113496],[4.791962122281096,52.942098839021],[4.79185886881717,52.9414557883675],[4.79187173199585,52.9411183042818],[4.791873556459322,52.94067823521789],[4.791884253321375,52.938098326532646],[4.791871106637946,52.93803984678395],[4.791826548771052,52.937984026904005],[4.791794073730934,52.937962519379276],[4.791758963426638,52.93793912502155],[4.791649283721489,52.937880902851],[4.791456083337398,52.93780660965194],[4.791406625947615,52.937768475838396],[4.791334879987663,52.93765244343262],[4.791294339826907,52.93746453056344],[4.791286807919742,52.937336470848926],[4.79129485786075,52.937072801165435],[4.791350979895831,52.936709044622184],[4.791411801568405,52.936410591444364],[4.791530681546401,52.935934267781136],[4.791590506903869,52.93579138442071],[4.792001112281116,52.935839422708625],[4.79212068219578,52.93585343517187],[4.792115716555013,52.93577478004258],[4.791592358021928,52.93572324873679],[4.791659448457487,52.93560173469137],[4.791681819173321,52.93557434738601],[4.79171702009459,52.935531260734365],[4.791769890513415,52.935469463188326],[4.791894981589833,52.93535806930161],[4.791981526347216,52.93524182015181],[4.79201113765279,52.93516458367983],[4.792055243690202,52.93506605120678],[4.792079931199304,52.934956249932036],[4.792068579690003,52.934633693455595],[4.792068158243025,52.934080399047964],[4.79205803225567,52.933792311981065],[4.792069613865743,52.933404350539234],[4.792075350921967,52.93320667247027],[4.79208777811469,52.93301071089275],[4.79212365760156,52.93295247975961],[4.792282590500577,52.932869586739606],[4.792303416668529,52.93286687764868],[4.792406385299326,52.932851413118684],[4.792432427150968,52.932847300210994],[4.792481357394805,52.93283855903002],[4.792537677417045,52.93281468981619],[4.792555937708572,52.93277883452244],[4.79278677193362,52.932782786062695],[4.792934886666893,52.9327852141181],[4.792998076987767,52.9328630373382],[4.793036036272682,52.93286602901742],[4.793085555128784,52.93286320276351],[4.793117782497514,52.932861385073224],[4.793143671825672,52.93288004315345],[4.793208369673515,52.93293260718891],[4.793235227429331,52.93297430257341],[4.79324935798206,52.93301986090344],[4.793258500643434,52.93310023076939],[4.793248966888179,52.93462789442292],[4.793264377169856,52.93464548489262],[4.793268634623868,52.93465045943615],[4.793294342096947,52.934665187651525],[4.793338287382992,52.93466484082705],[4.793375691568769,52.93464874491994],[4.793387208455491,52.93462183984576],[4.793391088475033,52.93454954804506],[4.793391097905242,52.934549401611356],[4.793391626206406,52.934511687732595],[4.793410132858467,52.93310961961852],[4.793401697524081,52.933048612990085],[4.793380126956278,52.93297249670576],[4.793562997188276,52.93297394463742],[4.793655575716059,52.93296009980316],[4.793763279512138,52.93293316204231],[4.793837961037802,52.93290545899267],[4.79398059374773,52.932838687306486],[4.794012225078122,52.93284208849579],[4.794797335897281,52.9333093209365],[4.794848114243322,52.93332012199471],[4.794866486355073,52.93330460345588],[4.794878250225746,52.933281540304186],[4.79486462256912,52.93325117012714],[4.794363685352264,52.9329515536937],[4.794246394980365,52.9328696173882],[4.794181396236482,52.93281317383275],[4.794141736716726,52.93276020800042],[4.7941342295725,52.93272592212242],[4.794145930152192,52.932699983030254],[4.794169632155604,52.93265671364645],[4.794248221224226,52.93256021078623],[4.794292875073644,52.93248985117617],[4.794303042187675,52.932411494035726],[4.794329223305128,52.931979965180176]],[[5.048583450011272,52.93779821627983],[5.048655545692187,52.937832694599024],[5.048767401689712,52.93788618383949],[5.048839497591929,52.93792067103325],[5.048991588664789,52.9379933969922],[5.04893987545492,52.93803306032717],[5.048784303444109,52.93795845527869],[5.048712237759248,52.937923905232914],[5.048601227525439,52.93787067894278],[5.048529443689231,52.93783626437961],[5.048417307670909,52.93778249554299],[5.048345790878304,52.93774820743436],[5.048224719523514,52.93769014454698],[5.048150579925623,52.93765461774605],[5.048054167743235,52.93760838781604],[5.04810298280855,52.937568465017364],[5.048204286361298,52.93761689247465],[5.048278322799218,52.93765229314077],[5.048399350824853,52.937710185110355],[5.048471401802145,52.93774463645627],[5.048583450011272,52.93779821627983]],[[5.046594858402963,52.936852391660814],[5.046704722463084,52.93690508637874],[5.046775748549295,52.936937109515746],[5.046933584072004,52.937008560451865],[5.046867220868497,52.93706136422304],[5.046704274541015,52.93698534254075],[5.046634835137759,52.93695393495757],[5.046525218838221,52.936901887902465],[5.046454443669128,52.9368701439091],[5.046330262162456,52.93681290594378],[5.046261183499849,52.93678108579571],[5.046137817525468,52.936724236369095],[5.046068887387472,52.93669247943702],[5.045990546320327,52.93665639111597],[5.046059405203037,52.936609750625706],[5.046135483168786,52.93664422387989],[5.046206433060622,52.936676372951595],[5.046330695405339,52.93673271264063],[5.046400874827015,52.93676451791512],[5.046522829881571,52.93682115635964],[5.046594858402963,52.936852391660814]],[[5.048375980444277,52.93070510251798],[5.048932853802049,52.92999488767732],[5.048988555482943,52.92995246954549],[5.048954118309812,52.930197332504804],[5.048866985660048,52.93031235446187],[5.048771546129728,52.93039581054667],[5.048375980444277,52.93070510251798]],[[5.046753027638591,52.93673996429669],[5.046865643710858,52.936792603803205],[5.046939046508213,52.936826925141666],[5.04707943564329,52.936892538980885],[5.047009002007131,52.93694855736132],[5.046857868569438,52.93688170866785],[5.046784555063515,52.93684928366254],[5.046670316111882,52.93679875125788],[5.046598470317332,52.93676697733906],[5.046477947522834,52.9367116910125],[5.046407385840159,52.936679318550155],[5.046283602941954,52.93662253997449],[5.046211203694305,52.936589335405195],[5.046172610540324,52.93657163892082],[5.046138641510474,52.93655605843542],[5.046228793561054,52.93649493863181],[5.046297290206318,52.93652694585617],[5.046371151642875,52.9365614665568],[5.046394270417932,52.936572271221515],[5.046494125907903,52.93661893468967],[5.04656494952745,52.93665204473188],[5.046682322300902,52.936706908622725],[5.046753027638591,52.93673996429669]],[[5.044584878619425,52.93591372421136],[5.04468818442967,52.93596189083743],[5.044763051985904,52.93599680184084],[5.044915810689793,52.93606802525558],[5.044847133263637,52.936127507168166],[5.044685336303893,52.936051854431945],[5.044609832338558,52.93601653716845],[5.044508720886838,52.93596924844778],[5.044433735795822,52.93593418417842],[5.044304912852444,52.935873947286986],[5.044235544565785,52.93584150506088],[5.04411672513833,52.93578593364973],[5.044044941560895,52.93575237006511],[5.04391361517161,52.93569097529978],[5.043985409931163,52.93563423473136],[5.04412180578566,52.93569781867911],[5.044194153172527,52.93573155457775],[5.044313255495467,52.935787081792576],[5.044383469269051,52.93581981396396],[5.044510870821687,52.93587921994784],[5.044584878619425,52.93591372421136]],[[5.04883693965324,52.937705835255976],[5.048951076098093,52.937760624822346],[5.049022889333828,52.9377951111068],[5.049162633585056,52.93786221238226],[5.049086111648316,52.93792090167839],[5.048939791964861,52.937852002400284],[5.048867321460439,52.93781787366129],[5.04875342890402,52.937764234963865],[5.048680484539524,52.93772987112215],[5.048568103998949,52.93767695543939],[5.048494804139721,52.93764243770703],[5.048373280172858,52.93758520941947],[5.048299135814985,52.93755030275671],[5.048188741960383,52.93749833591661],[5.048261057866506,52.937439275803605],[5.048379612578961,52.937493799875064],[5.048454148509673,52.93752807855134],[5.0485765868439,52.93758439273694],[5.048651271265205,52.93761874360049],[5.048764178268813,52.93767089685403],[5.04883693965324,52.937705835255976]],[[5.044673202187068,52.93576355416293],[5.044744717984679,52.93579718849271],[5.044852006761287,52.93584763994923],[5.044925078817426,52.93588200652543],[5.045058286460907,52.9359446366929],[5.044977868738463,52.93601428462545],[5.04483430624413,52.93594631374863],[5.044760598903711,52.935911397127335],[5.044655994869386,52.93586187888328],[5.044583398932854,52.93582752249311],[5.044528033985761,52.93580170760699],[5.0444656749407,52.93577066951591],[5.044460015322352,52.93576785851684],[5.044386404619837,52.93573586251648],[5.044266884834141,52.9356804689717],[5.044193898705628,52.93564663243294],[5.044052609674525,52.935581138387825],[5.044139370425232,52.935512587643586],[5.044285764543235,52.935581412215036],[5.044358939607061,52.93561580639674],[5.04447793446468,52.93567174651523],[5.044549509383261,52.93570539011932],[5.044673202187068,52.93576355416293]],[[5.041265513324822,52.93425383741898],[5.041615202269272,52.934003211127575],[5.042345073229523,52.93434854689353],[5.041999868337609,52.934600508347884],[5.041265513324822,52.93425383741898]]],[[[4.857696778078409,53.184609591728844],[4.858783344981885,53.184262256929685],[4.859193746639543,53.184141065040215],[4.859923094344311,53.18387413929389],[4.860560150686018,53.18361298089933],[4.861786296299223,53.182843888560754],[4.862245408068942,53.18250949372031],[4.86242082200146,53.18237491051303],[4.862514692290401,53.18222762216889],[4.862598954604246,53.18202524195353],[4.862744475576231,53.1818293143968],[4.863013999760934,53.1815356506511],[4.863201276742268,53.1812601513529],[4.8634503905165,53.18095347584631],[4.863690766869622,53.1806731530186],[4.863968355597265,53.18041826908977],[4.864396975377591,53.18000286234043],[4.865046586260673,53.179449126869464],[4.866517219466067,53.17808799440235],[4.866907581113941,53.177681956305165],[4.867298043446898,53.17729669346492],[4.867507392173199,53.177057229744285],[4.867939077052259,53.17665361456834],[4.868370759191763,53.17627864011775],[4.868912335741511,53.17590807111195],[4.869647771021016,53.1754473528437],[4.870980165229148,53.174583714801805],[4.871465985455029,53.17427971917152],[4.871882859721951,53.17396644947155],[4.872589978104082,53.173348530778846],[4.872911033008946,53.17255362627915],[4.873093215920347,53.17232549307614],[4.873220000559069,53.17213673179617],[4.873343340470825,53.171928141852156],[4.873478020844391,53.171688787906746],[4.873682733348918,53.17125761642743],[4.873737350470774,53.17114256193431],[4.873851812313421,53.170818294669],[4.874301927961462,53.16888208212243],[4.874364108018733,53.16884524543081],[4.874694761194112,53.16803794162438],[4.874863931188215,53.1676939133427],[4.875006496252802,53.16739418823309],[4.875103292379006,53.16729013205986],[4.875252612354565,53.16715495735444],[4.875594038957183,53.16693703359847],[4.875900173312444,53.166765963405034],[4.876730722100087,53.16633073985892],[4.876924127335612,53.16625286472183],[4.877255771170756,53.16613935509987],[4.877587275378644,53.16603629451137],[4.877936474108952,53.16590719525647],[4.878137241029025,53.16583491166076],[4.878303366784388,53.16575203920554],[4.878382439030632,53.16567924781179],[4.878540060710362,53.16558066763024],[4.878601512966693,53.165528693469206],[4.878681028451638,53.16541934033004],[4.878725704511288,53.165315060229],[4.878804974110322,53.16522659806346],[4.878823159830434,53.16515876906643],[4.878867421194625,53.16509105057728],[4.878876843645406,53.16502840521003],[4.878878559741734,53.16488215876036],[4.878905554677538,53.16480391653074],[4.879055021530609,53.164658296105614],[4.879300822056615,53.1644503891539],[4.879449627915506,53.16436222097407],[4.879502620471149,53.164289318418504],[4.879555306886752,53.164171071925956],[4.879609217726788,53.16401976264592],[4.879671232622779,53.16392074036983],[4.879785627069502,53.163801029576774],[4.879838373911404,53.16374899996423],[4.87983054398692,53.163675813000104],[4.879844054651675,53.163603543004484],[4.879959304054462,53.163443902512746],[4.880121754027956,53.16330353843487],[4.880178743151171,53.16326198613841],[4.880288064582257,53.163204992651615],[4.880353831722188,53.16315563271754],[4.880437796058656,53.1630384345318],[4.880517499993002,53.16291217851483],[4.880561909610335,53.16283135861322],[4.880579969671571,53.16277395237206],[4.88058505380522,53.16271125256469],[4.880585817706062,53.16264592860928],[4.880582016986291,53.16259888057801],[4.880582628108789,53.162546621411934],[4.88060532939714,53.1624630949058],[4.880658806371349,53.1623509526114],[4.880685919096613,53.162262223932466],[4.880686866152941,53.16218122041778],[4.880661617115873,53.16211055682453],[4.880671280984114,53.16202698421988],[4.880693767450012,53.161963072907895],[4.880733473498577,53.161913593707894],[4.880790659304325,53.1618537287583],[4.880895748311856,53.161786230336276],[4.880957146503869,53.16173945751371],[4.880979296468201,53.161705575467195],[4.880966825424288,53.16165326106971],[4.880967497066251,53.161595781357946],[4.880976778415779,53.161546164668565],[4.881033993194619,53.161486308706415],[4.881073530838258,53.161449894119166],[4.881095818232809,53.16140294718736],[4.881088276993053,53.16130362160427],[4.881071408698709,53.161259124326286],[4.881028467064097,53.16121451701148],[4.88091165591171,53.161169606867425],[4.88073417200639,53.16110693596035],[4.880691199526998,53.1610675671483],[4.880635527464696,53.160996766053174],[4.880592525388643,53.16095738809286],[4.880480295496505,53.16089158677044],[4.880433218312729,53.160828666545754],[4.880420640206794,53.160789417066084],[4.8803820657379,53.16074222206225],[4.880352146216242,53.160700284407135],[4.880308930653425,53.16067920065499],[4.880265332774436,53.1606920728481],[4.880256264857379,53.1607233951829],[4.880277467657553,53.16076791090648],[4.880423340163887,53.16093054246016],[4.880492079102786,53.16099877498998],[4.880603514878591,53.16113251504486],[4.88065094444423,53.161164067040545],[4.880741742301946,53.161206261697195],[4.880771662444001,53.161248208234575],[4.880788515580706,53.16129269650597],[4.880757617825374,53.161334377254924],[4.880739329129043,53.16141269267951],[4.880698798707789,53.16153272538379],[4.880654207359078,53.1616292249237],[4.880605387513868,53.16171524704345],[4.880499977673018,53.16180887473831],[4.880358569307233,53.162008176688296],[4.88008028276216,53.1623911278785],[4.880022743909392,53.16247972776564],[4.879964898781739,53.16259446618872],[4.879898719272987,53.16267779970095],[4.879828356663084,53.16274805902908],[4.879736637525456,53.16278686731666],[4.879658032237009,53.162817895359524],[4.879605516140879,53.16284903376384],[4.879556983325583,53.16291154065993],[4.879490588147337,53.16301316823417],[4.879433720964976,53.163044288144256],[4.879350963017717,53.16305961808498],[4.879307255647141,53.16308032513151],[4.879145002406337,53.16320375960091],[4.87897769272006,53.16338597586684],[4.878889448874022,53.16349796106988],[4.878697390946074,53.16366112088073],[4.878596599107275,53.16373125046485],[4.878465350613392,53.16380385668474],[4.878311794246674,53.16392602395136],[4.878197994474538,53.16399347413868],[4.87813249972109,53.16401933603385],[4.878010489077287,53.16404494899708],[4.877784370047737,53.164053783435826],[4.877680131262937,53.16404811090749],[4.877606026730564,53.16406609128971],[4.877509798263108,53.1641179441465],[4.877452698200361,53.16416733935386],[4.87738200565944,53.16426635955067],[4.87731160581718,53.16433921413975],[4.8772373468362,53.16437025907021],[4.877154585581234,53.16438558748439],[4.877102619666925,53.16436968617946],[4.877085846549932,53.16431735311543],[4.87710834010704,53.16425212161291],[4.877165794929962,53.16417136744393],[4.877201248656461,53.164114017711],[4.877189072403342,53.16404080310331],[4.877189626185567,53.163993764504625],[4.877231045708299,53.163797959102205],[4.877205924401268,53.163716844796035],[4.877163784193457,53.16360429747377],[4.877143144941871,53.16351080172525],[4.877178092671008,53.163126813913806],[4.877212086093619,53.16282383849391],[4.877286866334176,53.16237862853546],[4.877319997257374,53.16214882121455],[4.877320858390743,53.162075653010156],[4.877299319578062,53.162059890102206],[4.877251384614254,53.16207012787662],[4.877179480653727,53.162271033535255],[4.877136080576803,53.16226561920648],[4.877119062044095,53.162234195163535],[4.877123997299538,53.16218456028571],[4.877147289643913,53.16205138105032],[4.877153301320303,53.16191031062006],[4.877152272374386,53.161720857319],[4.877139789233273,53.16167377223026],[4.877105275444021,53.161652724333706],[4.877070469960559,53.161655182202374],[4.877043965592212,53.16169165091526],[4.87698981800426,53.16186128033848],[4.876954581421239,53.161900326769185],[4.876906707938348,53.161905352867755],[4.876885169466973,53.16188958089943],[4.876881249843213,53.16185297379277],[4.87694875725735,53.16165727935184],[4.876949249670009,53.16161547022852],[4.876928188702776,53.161557898064345],[4.876920087328208,53.16150820771936],[4.876933831885855,53.16144816874352],[4.876943687568213,53.161348907899146],[4.876947341960175,53.161038623598316],[4.876961855761679,53.160913251662805],[4.876938447469107,53.160647520922375],[4.876869986448701,53.16063998703308],[4.876875000424366,53.16062302508174],[4.877374155898541,53.15880820546486],[4.877578036310032,53.15812531007082],[4.877605297863286,53.158087793076376],[4.878427021888438,53.158216571809035],[4.878460358804993,53.15821671322562],[4.87848137450836,53.158201777993334],[4.878481639203197,53.15817923356457],[4.87846097631092,53.15816412153922],[4.877678944935755,53.15804809189386],[4.877647640011221,53.15803535171394],[4.877701256633714,53.15792295956169],[4.877693238943313,53.157895374814295],[4.87760622768392,53.15785492813753],[4.877589637274259,53.15782916703187],[4.87768168384,53.15781518072324],[4.87774017764973,53.157802902908564],[4.877844536710994,53.15768769798657],[4.877908742425674,53.15767022355618],[4.877967841170535,53.157667509168704],[4.878419890323423,53.15774044309295],[4.878430421613627,53.15768131579615],[4.878391829893208,53.15761309307377],[4.878318393559366,53.15758023466339],[4.878161188098608,53.15755293338795],[4.878023655681745,53.15752572441676],[4.878018911354099,53.15751090454017],[4.879274936935896,53.156543878111606],[4.879818895617448,53.15609892665841],[4.880512823938998,53.155549480634534],[4.880870731531775,53.1552542965291],[4.881068165323369,53.15508388604543],[4.881426199807746,53.155061503097826],[4.881810629284887,53.15504719180645],[4.882705482431827,53.15504763476419],[4.883937994126497,53.155451642399434],[4.883784073067517,53.15559879607134],[4.883768139876931,53.15562688193617],[4.88377553414599,53.155662101664205],[4.883814373652585,53.155678690876606],[4.883873020646374,53.15566955577455],[4.883908143933784,53.1556495838045],[4.884069226630293,53.15549974628741],[4.88523357446731,53.15586038518937],[4.88514878107748,53.15597405200437],[4.885133026962421,53.15602416317086],[4.885155476592091,53.156051619136775],[4.885223708714428,53.15605646957503],[4.885269491235002,53.156033855048605],[4.885384788384168,53.15590663030621],[4.88579292877907,53.15604516528912],[4.886027300303034,53.156119119215774],[4.886178952839466,53.15612887352633],[4.886338342456662,53.15612498345971],[4.886503466581407,53.15628074215722],[4.886556067061089,53.15632657403588],[4.886639472660455,53.156331487006995],[4.88668514938746,53.15631799216164],[4.886693164788508,53.15628153398758],[4.886663345813802,53.15623580623806],[4.886565911900301,53.15613048948785],[4.886506048876173,53.15605726530741],[4.88694992548596,53.15573072892223],[4.887385202220962,53.15549080581998],[4.888192935647494,53.15519314268065],[4.888376190486235,53.15509355979513],[4.888605119098859,53.15498049002575],[4.888995146811222,53.15471301094811],[4.889033100038836,53.15471316861024],[4.889214254412565,53.15479601593261],[4.88927490631717,53.154800832595],[4.889297919406393,53.154778121991924],[4.889290707538493,53.154746165237135],[4.889132424088098,53.154654283367904],[4.88913273856885,53.154626922684216],[4.889822649964828,53.15412202112778],[4.893032433208334,53.15186049759743],[4.893353427638198,53.15162265171372],[4.893608947908185,53.15141497965506],[4.893857672324145,53.15117248575172],[4.894172743539101,53.15081720373621],[4.895216235489758,53.1496036774077],[4.896965619822151,53.147594031283425],[4.897165816968363,53.147339704192056],[4.897400733981734,53.147015078170405],[4.897426059196999,53.14698011866244],[4.897890981020849,53.14627778331597],[4.897988037557876,53.14623559517897],[4.898063078769208,53.146166907617705],[4.898145226399474,53.1460657739708],[4.89817278182031,53.146017173820226],[4.898604521855477,53.14538361306053],[4.898863040835527,53.14498928674204],[4.899622913160698,53.14386914174558],[4.900382645214914,53.14275797697848],[4.900823480120398,53.14209480917002],[4.901006332558708,53.14178104411092],[4.901159295234928,53.14146715758867],[4.901297112308835,53.141171181281386],[4.901435528612764,53.14082129177743],[4.901621088631812,53.14026491712283],[4.901700736579543,53.139824930105206],[4.901765941622194,53.13933995494604],[4.901800354453234,53.13893572823505],[4.901775499493985,53.138486331949146],[4.901710947982219,53.137578493150585],[4.901643483862293,53.13693123389345],[4.90141242134951,53.1348815078035],[4.901318005104684,53.133973546699266],[4.901144019428083,53.13216667047729],[4.90104960707242,53.13125870746474],[4.900996496203287,53.130665420316575],[4.900955508316598,53.13032378936222],[4.900914420317332,53.12999114298889],[4.900874836966422,53.12952371447253],[4.900794270860795,53.12871465020801],[4.900767214537656,53.12846293672473],[4.900753790323581,53.12832808950919],[4.900618109513342,53.127105453898864],[4.900562892191229,53.12670086121345],[4.900507675887365,53.126296268452016],[4.900451854047054,53.1259455888537],[4.900380595183194,53.12563977894695],[4.900309432233863,53.12532498160572],[4.900237267432594,53.12510003964713],[4.900239758977347,53.12501330746697],[4.90009583975505,53.124849798390365],[4.900047402638195,53.124837075127346],[4.899978157273695,53.12482425828157],[4.900034463820352,53.12475347114375],[4.900077048715061,53.12467009281029],[4.900070524899704,53.124632469065965],[4.900050639855026,53.12454885482141],[4.899996852608048,53.124394059819714],[4.899942643292633,53.124276869292714],[4.899923415825894,53.12413475911836],[4.899869879005789,53.12395909067844],[4.899781956644749,53.12375403309401],[4.899741531640123,53.12364525544031],[4.899721741696122,53.12355327557232],[4.899730142985906,53.123423804117515],[4.899683007286716,53.12329411577297],[4.899684509682624,53.12316044676603],[4.899659030402166,53.12295668535979],[4.899618700278296,53.12283956006377],[4.899598691246013,53.122768453643715],[4.899613183512768,53.12263002098219],[4.899613973692523,53.12255972702939],[4.899580765538753,53.12245622643423],[4.899567767282743,53.122390009925354],[4.899582810752033,53.12227429600348],[4.8995838798674,53.122179192938155],[4.899517046193054,53.122009391875785],[4.899525001314662,53.12191431681972],[4.899492026433779,53.12179013144008],[4.899465411093762,53.121711467854496],[4.899480097734042,53.12162882081298],[4.89950187251805,53.12152554387899],[4.899502941787071,53.121430440792075],[4.899497047162405,53.12134358543971],[4.899512090549207,53.12122786250274],[4.899540657861117,53.12113288027415],[4.899535507000431,53.120979864282944],[4.899516181281577,53.120864010478236],[4.899483300161119,53.12073155834587],[4.899409287950408,53.12059066273886],[4.899271983996775,53.11809567956496],[4.899172060382726,53.11600194464161],[4.899046319232408,53.11350908037646],[4.898951856607657,53.11139239623989],[4.898691926389634,53.10683121210741],[4.89857430676838,53.10455131466435],[4.898552329836103,53.10409757519409],[4.898511000727805,53.103336354150436],[4.898463368996314,53.102458738272865],[4.898407190099817,53.101231899485185],[4.898334792536648,53.1001330089249],[4.898455766209351,53.100093595511225],[4.898487916488126,53.10007449655788],[4.898501538328666,53.10004481736301],[4.898495798315013,53.10001758426895],[4.898477861925912,53.10000481385713],[4.89844475982867,53.100001048478916],[4.898260868918006,53.100007558924695],[4.898259640740664,53.099964169385295],[4.898484343327949,53.09990255237437],[4.898467304641907,53.09987237969162],[4.898416292186131,53.09985222262624],[4.898317006619685,53.09983912030493],[4.898327279315343,53.09973034145327],[4.898362811755322,53.099518290414736],[4.898413938255264,53.09925914430124],[4.898517907482171,53.09863068125869],[4.898604721212322,53.09825808815292],[4.898654403364045,53.09812568390551],[4.898739113917085,53.09801143943353],[4.898865272140566,53.09790873116645],[4.898953138868438,53.09784960174059],[4.899163646152148,53.09774023673783],[4.899377161778983,53.09762213121913],[4.899485473012078,53.09755433224606],[4.899547203192586,53.097493352696944],[4.899576858385298,53.097440985986445],[4.89957738902195,53.09739374858014],[4.899293542782392,53.096544894738706],[4.899139348193001,53.0961106914458],[4.89908308729982,53.09590551773696],[4.899070464466749,53.095691438701024],[4.899093007773508,53.09554381538173],[4.899307931652196,53.094518035957215],[4.900015897627498,53.091219111122655],[4.900191497521162,53.0903689540575],[4.900369652720746,53.08893697072847],[4.900394491551859,53.08854168614875],[4.900395292632617,53.087856500803916],[4.900334434373322,53.08675616306807],[4.900278848826631,53.085896499414],[4.900194496777017,53.0852879195045],[4.899928904978123,53.08410180012127],[4.899805806234668,53.08369411267917],[4.899711351078516,53.083403929359946],[4.899587487278179,53.083064202833235],[4.899412025014876,53.08263776968791],[4.898896101363847,53.08166236883477],[4.898661705334767,53.08130477456642],[4.898346692476951,53.08084801022917],[4.897892945747842,53.08029688341468],[4.897653055495502,53.079972406096424],[4.89745733108535,53.079680680698786],[4.897381165683906,53.07950906936357],[4.897347294225973,53.079358980082965],[4.897315069682815,53.07906342900465],[4.89728133365737,53.078891991098324],[4.897233562831794,53.0787334132577],[4.897157113844356,53.07856573467038],[4.897066144928804,53.07844574057861],[4.89649002529506,53.07786490409844],[4.896339040333268,53.07773173792921],[4.896178093348529,53.07761369474552],[4.896032974470582,53.077539528822314],[4.895246787529095,53.07723863980384],[4.893778763038662,53.07666872196898],[4.893680817124273,53.076609346288485],[4.893403592778397,53.07642511200764],[4.89289613282113,53.07606694476266],[4.892006296810683,53.07543368512644],[4.889571427523635,53.0736724267414],[4.889041526855873,53.073313023464316],[4.888058749721107,53.07278492565892],[4.887657814983902,53.07258837048461],[4.887063935708464,53.07235225485449],[4.886587546369012,53.07218963955696],[4.886070348567988,53.072026281872944],[4.885509558255594,53.071885213591706],[4.885013553192887,53.071765751867616],[4.884509959988506,53.07166816167033],[4.883963142235021,53.071578815795924],[4.883451873739113,53.07152050132384],[4.882854183483219,53.071465751270416],[4.882227540538373,53.07141537819349],[4.881946857963965,53.071374876504635],[4.881846227280781,53.071348617730266],[4.881092331802676,53.07108427153494],[4.880761978028269,53.07096605637222],[4.880531187746235,53.07086567395823],[4.880393226318407,53.070786219947216],[4.880243487013261,53.070665010447655],[4.880061792409024,53.07047971123575],[4.879771528643807,53.07014876303566],[4.879735774156623,53.07006249755252],[4.879769891654743,53.06959020585075],[4.879946234294953,53.069451443400155],[4.880026981594965,53.069369382670004],[4.880080150736575,53.06930298473242],[4.88010298640247,53.06924354837803],[4.880103687746445,53.06918346205261],[4.880090798514167,53.069100286746675],[4.880064119897278,53.06901873075151],[4.880026146596134,53.06896689973418],[4.879938575441906,53.0689103646648],[4.879852014281528,53.06886675585279],[4.879746418184481,53.068822988139374],[4.879639546689304,53.06878892712764],[4.879490319565893,53.068740448842206],[4.879295679405176,53.06867481017173],[4.879128234989043,53.0686026242547],[4.879043271455964,53.06855405319981],[4.878986043174241,53.068493971746086],[4.878975606284261,53.0684424010171],[4.878979221702872,53.0683692782947],[4.878994032236794,53.06828290361633],[4.879141918477934,53.067904550283785],[4.879174925462673,53.067799390892716],[4.879204957268851,53.06770369024564],[4.879220361894588,53.06756389372498],[4.879212914716247,53.06749254194312],[4.879186298916961,53.06741604516012],[4.879116014897631,53.06729780315991],[4.878990976947792,53.067125971824595],[4.878882231553677,53.06699745704661],[4.878781239634518,53.06690211951871],[4.878685453043446,53.066830380013634],[4.878581308189239,53.066776585274965],[4.878441132056347,53.06672319810426],[4.878026151682327,53.066579901889675],[4.877922019946699,53.066534526628786],[4.877877016306273,53.06650568834111],[4.877809808172869,53.066462720147335],[4.877520058793891,53.06622392091344],[4.877244358347594,53.065981800197456],[4.877058602626435,53.06582126342174],[4.876951896759868,53.06574748194902],[4.876853328582069,53.065684160772136],[4.876749109698006,53.06563709290662],[4.876672126321435,53.06561205555122],[4.87659776002115,53.06559320906916],[4.876487751554111,53.06557307738341],[4.87625625078759,53.06554513322283],[4.87601619741093,53.065512653645015],[4.875708065287926,53.06546309311584],[4.875615740957171,53.06544123084678],[4.875360403560759,53.065349990813154],[4.874991721418302,53.06520674794215],[4.874707692262371,53.06513255627656],[4.874691226443486,53.065129718074736],[4.874426731444397,53.06508413133846],[4.874177753972241,53.06505730166161],[4.873842707418025,53.06508162902208],[4.873679104401061,53.0650637550282],[4.873508421875731,53.06504155506696],[4.87332437156023,53.06494632107501],[4.873197138273628,53.06486420782862],[4.873035009358076,53.06472185430734],[4.872810510963409,53.064433261811196],[4.872762269792331,53.06429568345851],[4.872744890035683,53.06411430443473],[4.872723095854933,53.063659440190115],[4.872722502894906,53.063135006392656],[4.872742882527707,53.06256150841057],[4.872771074322846,53.06191146395284],[4.872785620803115,53.06172854154893],[4.872856133918953,53.06130751098053],[4.87312625868038,53.059601608064476],[4.873460922703443,53.05735891396738],[4.873501748041939,53.05690951161022],[4.873511681144547,53.05666978551429],[4.873492660757984,53.05647703164416],[4.873393820010396,53.056147660105516],[4.873125570902903,53.05549108488821],[4.873220069055845,53.05546596809845],[4.873146600876418,53.05536231269756],[4.872986999899263,53.05539869795691],[4.872951918390501,53.05535136632541],[4.872929460963698,53.0553181288914],[4.873079421064559,53.055279459363334],[4.873022021553529,53.05518710378633],[4.872963464262075,53.05520258167337],[4.872896370421671,53.05511074872543],[4.872864680868063,53.0550718561634],[4.872786560289592,53.0550069360708],[4.872594686335814,53.05486738309196],[4.872110550134886,53.054571569480494],[4.869288918923879,53.052881232096716],[4.868745256265237,53.052549758578614],[4.865258604010403,53.05055090963706],[4.864921940122456,53.050343885142766],[4.863963077314846,53.04974491876791],[4.863643887757409,53.0495284227353],[4.862746803739281,53.048929716525805],[4.862398280171644,53.048684437001405],[4.86175505767541,53.04823230778054],[4.861599031543768,53.04810895234858],[4.861542640211905,53.048055389673195],[4.861459667627004,53.047976593829766],[4.861327753996329,53.04781026411851],[4.861252014963858,53.04766118294302],[4.861224963993802,53.04756756275725],[4.861275164199271,53.04749553432288],[4.86151002455051,53.04730956323256],[4.861598249773332,53.047229102747075],[4.86166667739663,53.04717716373015],[4.861716691614994,53.04712683864278],[4.861738443350955,53.04707133384719],[4.861753360112104,53.04700343853619],[4.861719054008984,53.04693139839686],[4.861649343875401,53.046867064840285],[4.861347706845557,53.04673375995871],[4.861130625566306,53.04662272438339],[4.86080837182709,53.046470225561464],[4.860788305327084,53.04644374576223],[4.860547758113488,53.04557664114708],[4.860449172367026,53.04524371800655],[4.860356313565428,53.04504224313251],[4.860248473558848,53.0448468739464],[4.860100101896849,53.04453676648809],[4.860015407818998,53.04431148505642],[4.859876657743827,53.044143190467985],[4.85979947977286,53.044082195381066],[4.859746500190776,53.044061185844626],[4.859594854881261,53.044019513500686],[4.859449646364025,53.04400539498243],[4.859218753417965,53.04398341018117],[4.859006197723391,53.043948064284734],[4.858900254393822,53.0439028724204],[4.858847373501126,53.04387281381051],[4.858855897428353,53.04379715164737],[4.858868000146959,53.0437398730803],[4.858945017827407,53.04366222171809],[4.859043271109869,53.04356945754801],[4.859068148365202,53.0435459794206],[4.859114583698066,53.043481591443985],[4.859127553548605,53.043362582338894],[4.859094286123469,53.04327313784933],[4.859037972080134,53.04321054398848],[4.858110006911083,53.042435877693634],[4.85682594820539,53.04136926593444],[4.856739106765016,53.04130710090105],[4.856472244312599,53.041050368022404],[4.856283920115108,53.04090463105748],[4.85611608331698,53.04079829847861],[4.856017702089193,53.040747881500934],[4.855851226212716,53.040682550592685],[4.85570717149038,53.04064091501393],[4.855581851169565,53.04062182081823],[4.855232517118731,53.0405927511859],[4.854863780836862,53.04057032761559],[4.854365756944071,53.04055687619798],[4.854301164596671,53.0405520982309],[4.853780189845682,53.040397012870876],[4.853204019992035,53.04023156500609],[4.853113175967957,53.04019241111665],[4.853030065460785,53.04015047988265],[4.852973606370718,53.04010922289279],[4.852842433685792,53.039950257058244],[4.852752577726195,53.0398307893712],[4.852749359908933,53.03978921463724],[4.852758045133387,53.03969770810316],[4.85278161655932,53.03963827964309],[4.852823961166401,53.03959466087731],[4.852949968019512,53.0395491680963],[4.853236046107203,53.039481927426664],[4.853377144589707,53.03945053709786],[4.853415679092499,53.03942319494396],[4.853446477071278,53.039372783900085],[4.853441316343441,53.039337372252895],[4.853413196917319,53.039303548528196],[4.853344995169561,53.03928022075932],[4.853272829903642,53.03927540935063],[4.85290283654694,53.0393658634794],[4.852349847027293,53.03949369661597],[4.852258140858745,53.03952529391233],[4.852219704867366,53.03956443594155],[4.852207765851325,53.03959640227895],[4.852211252292865,53.0396357316772],[4.85221843344248,53.03966777538622],[4.852255542991286,53.0397364593748],[4.852281946898228,53.039777581499116],[4.852419890118225,53.03999329922999],[4.852554265521795,53.04017699373413],[4.852625762594589,53.0402441534623],[4.85267847132959,53.040287631435504],[4.852738699828578,53.04033395564826],[4.852852218104634,53.04038500725376],[4.853007530403335,53.040428952066996],[4.853945457243629,53.040712263252445],[4.853958015704994,53.04071456665328],[4.854432678395682,53.04140806081943],[4.854654071496016,53.04136355151894],[4.855029225367741,53.04191956242884],[4.855057497485463,53.041941028577725],[4.855142429649609,53.04195881421927],[4.855241668570587,53.04195925529275],[4.856522207838793,53.04166109576508],[4.856578887749509,53.04166527221752],[4.858434461091332,53.043228099440604],[4.858514827168404,53.04330596044909],[4.85854091503399,53.04339200895899],[4.858546308514987,53.04349425266637],[4.858455821388163,53.04369379787008],[4.858441137033687,53.04379987805913],[4.858438103119646,53.043906017794676],[4.858459790071325,53.043956956636464],[4.858470716293749,53.043983102632886],[4.858597004274692,53.04409655046906],[4.858823941206895,53.04421942688345],[4.859111289929348,53.044338078983245],[4.859358234403211,53.04447283881896],[4.859531546022564,53.04459097889631],[4.859597805760758,53.0446597925439],[4.859653198754883,53.04472293829216],[4.859759438123143,53.044886284941875],[4.859996716450543,53.04540628235677],[4.860029049507752,53.045545154594535],[4.86016546519379,53.046015284136175],[4.860289105343266,53.04641571419134],[4.860388389073782,53.04661609132994],[4.860495385767573,53.04672664484679],[4.860466528837917,53.046752353188],[4.860171386171301,53.04690105981929],[4.860048084432229,53.04696336545995],[4.85999153979838,53.046975473362856],[4.859942324519825,53.04697133143441],[4.85973406060452,53.0468142770105],[4.857089465578643,53.04495930256255],[4.85722465695813,53.044886885587566],[4.856933211120985,53.0446784638138],[4.856764042301108,53.04476675859783],[4.85665729461729,53.0445945690625],[4.856997425276585,53.04424392291773],[4.857413671049373,53.04426992258776],[4.857427721454898,53.04421718902427],[4.857823549726298,53.044255441253604],[4.85788405770754,53.044251784553616],[4.857944844842914,53.044223970546604],[4.857992609276606,53.04416745181617],[4.857993497934761,53.04409444463297],[4.857975237289687,53.04406340463015],[4.857940880661879,53.044004914289836],[4.857887804579542,53.04394402452087],[4.857747680223312,53.04386645595151],[4.857607263677028,53.0438130381461],[4.85752030516511,53.04378850835374],[4.857358095549093,53.04377486920619],[4.857189163366971,53.043757270405024],[4.856986339306769,53.043719870212605],[4.85693267039633,53.04367862841922],[4.856851376917873,53.04360912929811],[4.85684560767785,53.04360047697881],[4.856388415084929,53.04291437540211],[4.85626480678641,53.042728882032876],[4.856194215556342,53.04264755822494],[4.856146858945172,53.042618141157185],[4.856042995835194,53.04260358275431],[4.855984363577194,53.04261742013074],[4.855834800624014,53.04265494858287],[4.855813508837374,53.04265994115708],[4.855852526576165,53.04271626918611],[4.855798539068847,53.04272946390729],[4.855759969222215,53.042673092918186],[4.855440622429954,53.04223282409527],[4.855344079567509,53.04225473488886],[4.855284571842919,53.0422682463268],[4.855628874435516,53.04277093677016],[4.85599621747738,53.04330716694895],[4.85544617202312,53.043439516046725],[4.854390784464095,53.043381470995506],[4.854338967924234,53.04330976583406],[4.854064540912703,53.04293126506517],[4.85369468544594,53.04217838969526],[4.853436891480611,53.04222193064634],[4.853820478052135,53.04297118185855],[4.853962581832495,53.04296338771362],[4.854212815958906,53.04332144340709],[4.85424923151842,53.04337353864483],[4.853271967620691,53.043319755800304],[4.852514811701917,53.04210605111751],[4.852614507078884,53.042078974332355],[4.8526224270623,53.042070021692936],[4.852672136355999,53.04206294508325],[4.85251831894199,53.04180278386912],[4.852075877567128,53.04114256733003],[4.851651272802128,53.040527959259286],[4.851560950856673,53.04039722797631],[4.851466923326097,53.04026114221874],[4.85133304243489,53.04006707051344],[4.850879278347998,53.03985667288814],[4.850856409290189,53.039858817868954],[4.850318746560834,53.04029223910276],[4.850245777206281,53.040344704026005],[4.850230510715753,53.04034463553925],[4.849659478200048,53.04008484458126],[4.849617941818821,53.0400621915864],[4.849574747171272,53.03987159662926],[4.849574948466305,53.039855316297604],[4.849939764786509,53.03956321186601],[4.849951316746058,53.03956101716247],[4.850586575102838,53.03984580774595],[4.850605582851477,53.03984364640496],[4.850682377628903,53.03978445694274],[4.850682543927317,53.03977097925557],[4.850157009125905,53.039524316730144],[4.849438500895413,53.03919084706782],[4.849400839137904,53.03916539960709],[4.849401179458008,53.039137883523026],[4.84941277286943,53.03912389194365],[4.850313713773127,53.03883195640965],[4.850344287766846,53.03882759863824],[4.851402958298162,53.03933725308314],[4.851418058098792,53.03933956812926],[4.851441015276629,53.039330125725655],[4.851460216501502,53.0393122392277],[4.851475711010448,53.03929377090277],[4.852858224608267,53.03896858119251],[4.853056317175759,53.03892397981301],[4.853103652693836,53.03890060311168],[4.853121997694993,53.03885743338658],[4.853107450192403,53.038809066632616],[4.853073583614502,53.038779154938084],[4.853085748654584,53.03871742894742],[4.85305947132106,53.038685291078885],[4.852994997655852,53.038670968657726],[4.852877189330041,53.03866594879185],[4.85278224177526,53.038667771449646],[4.852686802832753,53.03868082371717],[4.852591730614488,53.03868320281297],[4.852451379554957,53.038655062729795],[4.852334047672379,53.03860174171225],[4.852213402854865,53.03852313201731],[4.851967451343365,53.03827322816063],[4.850714056691394,53.036895527694064],[4.850044274427989,53.03617587536158],[4.849823200256607,53.035922709547755],[4.849676813075712,53.03576142509466],[4.849439923104385,53.03554356809295],[4.849251793559527,53.03537760061791],[4.849033593590782,53.03519295632805],[4.848762209593557,53.034996853056434],[4.848364405501803,53.03472098345755],[4.848108021009501,53.03454571876951],[4.84788168592361,53.03439979599778],[4.847409584589024,53.03413312990295],[4.847167934561574,53.034001184861296],[4.846733258753359,53.0337880451966],[4.846415522089201,53.033649000928875],[4.846101814259316,53.03350549258182],[4.845804758189782,53.033381149098645],[4.844008751590869,53.03272319696525],[4.840503531059867,53.03145365475536],[4.839879132319363,53.03121883870941],[4.839314945086567,53.031039899267],[4.83852497572626,53.030812749773325],[4.838282360345312,53.03075154703108],[4.837967673021862,53.03067933468524],[4.837342077916327,53.030541103809796],[4.836520795400618,53.030389052508674],[4.836091884832436,53.030334285658434],[4.83449518316063,53.03015973096062],[4.832294702006624,53.029931450535386],[4.831087295171248,53.02979554690304],[4.830901498110753,53.029770788003056],[4.83070104969015,53.02975399529933],[4.830576228451069,53.029717829197935],[4.830489377212237,53.02962657409602],[4.830443852917273,53.029608084253674],[4.830385212329808,53.029626790408656],[4.830344169574603,53.029655274598476],[4.830258935047739,53.0298010035593],[4.830244787361234,53.029817454465594],[4.830233650872358,53.029830396770116],[4.830215459356275,53.029828559783034],[4.830214209247624,53.029814436547916],[4.830203443623901,53.02969249678814],[4.830193131539416,53.02961662271336],[4.83017901156899,53.029580863558934],[4.830135571201936,53.02955446640112],[4.830074532357625,53.02955675232567],[4.830011394135498,53.029605397557866],[4.829966198612271,53.02964968709141],[4.829930342507893,53.02965841652775],[4.829888955165644,53.029662582132374],[4.829688257455654,53.02963065190432],[4.828975705514485,53.02960206447372],[4.828668036055471,53.02959388742519],[4.828359803973908,53.02960143291865],[4.826965506345402,53.02966623953558],[4.824844678014561,53.02974784614144],[4.824067809992054,53.02977564404671],[4.824044929633658,53.02954526420685],[4.824020193656303,53.0295226812361],[4.823970167100967,53.029518508016665],[4.823938748560721,53.02952622312577],[4.823926043474082,53.02954470468959],[4.823930826550093,53.02966154776688],[4.823393658440247,53.02968597523338],[4.8225618195526,53.029625323023836],[4.822442970748077,53.02962083700816],[4.822123678443054,53.02961932977272],[4.821616764685979,53.02960176628993],[4.820547223348712,53.02953654275588],[4.820178470071049,53.029489496332225],[4.820091041001806,53.029473985115224],[4.819698445260323,53.02933624261793],[4.819605332726433,53.0292754132898],[4.81928179531818,53.029012332913865],[4.819447063660752,53.02893830730283],[4.819462768717403,53.02893107597292],[4.819463259827376,53.028893450987546],[4.8194384604173,53.02887479555276],[4.819394567606119,53.02887458730012],[4.819072606480291,53.02900673092748],[4.818305370256507,53.028406062366614],[4.817170775522778,53.02751158180867],[4.816306153111712,53.026863259872925],[4.814636286056681,53.02555844351791],[4.810758405839993,53.022497095655545],[4.809636891669291,53.021611343198494],[4.809017608761523,53.02111129591598],[4.807860659334712,53.020191341802985],[4.806473387250562,53.019136347175824],[4.804470181054593,53.0176128278307],[4.804491421361851,53.01757237605023],[4.804440166413441,53.01753624406934],[4.804309115929545,53.017597764017324],[4.804282111996048,53.01757677522604],[4.80425168662398,53.01755311879619],[4.804386443995933,53.017490754281276],[4.804327622946927,53.01744210340635],[4.804263558381047,53.01743892465694],[4.803157947423512,53.01657452200668],[4.795079138133137,53.01028986933209],[4.792669967503373,53.00840876415015],[4.792696570783379,53.00837744055713],[4.792715899571702,53.00833429791162],[4.792720730149819,53.00825344210904],[4.792714666923408,53.00815175124296],[4.792726832558909,53.00807936377581],[4.792768867499935,53.00801891302076],[4.79283360090105,53.00794902523916],[4.792954314254271,53.007863698394765],[4.792992242828814,53.007830188897145],[4.793030397953499,53.0077809535069],[4.793053677649578,53.00772882880103],[4.793054382991542,53.00767716080836],[4.793040624785217,53.00759396966111],[4.79302846690183,53.00747933514043],[4.793050506024304,53.007356446664154],[4.793140063212235,53.0072507366059],[4.793194842615422,53.00721001290682],[4.793269777657081,53.00717780766645],[4.796715972491531,53.0073201125767],[4.796864870361994,53.007326463024235],[4.797068070436487,53.00732746561191],[4.797259607259254,53.00731380662763],[4.797323488052227,53.007298960778634],[4.797435499748725,53.00726075495058],[4.797535909283146,53.007211825935556],[4.797642258106404,53.00716292610737],[4.797772458623694,53.007071456773225],[4.797825875358432,53.007029036616736],[4.797843933068462,53.006993744543166],[4.797856354620047,53.006944381737384],[4.797839399604702,53.006898243183926],[4.797822123399128,53.00687681639476],[4.797792984199891,53.00686262537011],[4.797740389083891,53.006844392625474],[4.79768172284072,53.00684410352966],[4.797640595238795,53.006847838660505],[4.797605293608392,53.00685833146776],[4.797563820085087,53.00687891157033],[4.797528183598158,53.00691411695316],[4.797457115458486,53.00697049741584],[4.797386178858974,53.00700946204775],[4.79731530842759,53.0070512298051],[4.797238486758015,53.00708624009355],[4.797161803713345,53.00711057613639],[4.797008905968619,53.00714183035445],[4.79693834366233,53.007152157083866],[4.796885622482367,53.00715189693317],[4.796821130324192,53.007144271869585],[4.796731890888015,53.00711687417911],[4.796742729142413,53.00697763930984],[4.794259610055581,53.00687718396953],[4.794246838842975,53.00695967824846],[4.793733957310546,53.00693017407237],[4.793685396649511,53.00691533302959],[4.793612898635458,53.00687060411245],[4.793023454368956,53.006030260461195],[4.793187688841259,53.00599569504945],[4.793347994653389,53.005957733737205],[4.793446888423902,53.005934635468165],[4.793484033970385,53.00592583168692],[4.79356033335605,53.00590319091575],[4.793695298020404,53.00604370531396],[4.793710312167443,53.006052764358785],[4.793748474907033,53.00604453437819],[4.793782668840164,53.00603739810625],[4.793786455811894,53.00603292191951],[4.793712502309407,53.00589214509461],[4.793963939853337,53.00584565499682],[4.794269039607201,53.005757307746286],[4.794635321138673,53.00566307300759],[4.794765193111226,53.00561317074311],[4.794933315404207,53.00554043020087],[4.795032765385108,53.005493179861965],[4.795201378190995,53.00564959422984],[4.795110787338682,53.005678910463374],[4.7951057228881,53.00569068177904],[4.795155297911006,53.00574259866725],[4.795174253440146,53.00574437472658],[4.795421355439707,53.00567482719811],[4.795421531000706,53.00566191468046],[4.795412290253011,53.00564052728095],[4.795395681270927,53.0056202249248],[4.795379247867615,53.005613963709614],[4.795350533932816,53.00561101790518],[4.795300803617849,53.00562200298841],[4.795300918213822,53.00561357615544],[4.795143549319991,53.00545216724843],[4.795348104511304,53.00536163283727],[4.796104728178178,53.005062643566106],[4.796138989316723,53.00505102096756],[4.796173053867498,53.005053435867005],[4.796237022702459,53.00509980785973],[4.797010050711117,53.00582140815838],[4.79704032507245,53.00583783988689],[4.79707814672294,53.005847014620336],[4.797131325143353,53.00584727694721],[4.797184539975317,53.005845292842764],[4.797230421360522,53.00582698928245],[4.79727277089737,53.00579293498702],[4.797280802743443,53.00575871503854],[4.797270011810336,53.005722151184],[4.79672506162993,53.005234764793364],[4.797219986079218,53.005068149282415],[4.797276308053967,53.00504315653432],[4.797297244805609,53.005018545520855],[4.797288629293287,53.005001091079684],[4.797250710799358,53.00497394232916],[4.796942571575248,53.00479831347921],[4.795679981517198,53.00410686630653],[4.795624836922925,53.004139735279594],[4.795475491656059,53.00405642997376],[4.795544356965983,53.004023637022016],[4.795150894834201,53.00379927884447],[4.794938928654533,53.00379373546103],[4.794815966126384,53.003780769442706],[4.793757273909375,53.00319758309582],[4.793676249294847,53.003121921235426],[4.793093577148161,53.002376529763325],[4.79301091101751,53.00231153417008],[4.792927876689166,53.00226337892747],[4.792807021278851,53.002207734272524],[4.792625391112213,53.00216302306333],[4.792424570858318,53.00211597316103],[4.791358969141101,53.00199159690383],[4.791030374131217,53.00195345790311],[4.790813803893425,53.00195237830502],[4.790333054145857,53.001961216027155],[4.789998397208359,53.001973580556985],[4.789652613091943,53.00197634774096],[4.789371460762756,53.0019749428876],[4.788976510436045,53.001954439308506],[4.788519161554793,53.001920130000606],[4.788234303890812,53.001900174938434],[4.788036909265395,53.0018924447576],[4.786199798098254,53.00188996992121],[4.785808457966778,53.00188800300161],[4.785686883218353,53.00188514420185],[4.785527810985269,53.001850080934375],[4.785399111994644,53.00181517835881],[4.785169540457956,53.001748537657214],[4.785043942136729,53.001753360167754],[4.78498117299868,53.00175306213451],[4.784915474006882,53.00177826161721],[4.784686982081858,53.00163810074475],[4.784637955420218,53.00161893747239],[4.784561638484069,53.00162669464765],[4.784522412017604,53.00164638384635],[4.784502911294404,53.00165617059637],[4.784475291624521,53.00170471957602],[4.784492581832133,53.00174807606692],[4.784630545559001,53.00181633067688],[4.784751283570456,53.00189039342491],[4.784696069616973,53.001932935368906],[4.784557093993364,53.0020819212018],[4.784460893009493,53.00220130564947],[4.784020898414415,53.00269340084129],[4.78365828883492,53.00307763509124],[4.783442359684559,53.00330659816905],[4.782983157154769,53.00381537904039],[4.782779133334344,53.00400491135175],[4.782698496825684,53.004057137012666],[4.78257059982259,53.00410704070439],[4.782425634220064,53.00414562231316],[4.782299902397595,53.00417250011781],[4.782155264153605,53.00418749834165],[4.782033620808849,53.00418912599125],[4.781908558457743,53.00417726206117],[4.781768411166946,53.00413723836212],[4.781583362590887,53.00405374388725],[4.781443756513343,53.00398226667005],[4.781410117131049,53.0039405343719],[4.781411039387729,53.00387426818952],[4.781426902576521,53.003830539991526],[4.781447597199317,53.00381547490764],[4.781515202635727,53.00376583238263],[4.781572632861222,53.00372007163487],[4.78170370249288,53.00360166222423],[4.782444273804853,53.00307970980657],[4.782574557678621,53.00300061351486],[4.7825788844595,53.0029658114145],[4.78256010791691,53.002952237851275],[4.782522110268945,53.002947551691356],[4.782503045425565,53.00295419688722],[4.781727954361024,53.003489458097704],[4.781582349884009,53.00358250990841],[4.781452343837532,53.003641386301965],[4.781426464964489,53.00362777659663],[4.781382992665665,53.003605396054205],[4.781370746741513,53.00359901661694],[4.78132790039338,53.00357672729077],[4.781320565752466,53.00355142407124],[4.781324736903995,53.003519424077716],[4.781575096084349,53.003275256256316],[4.78161373461306,53.00323389082789],[4.781610290463803,53.003213653165716],[4.781599224577382,53.00319730665438],[4.781561155307891,53.003190372336746],[4.78151930717806,53.003203639098395],[4.781257123338547,53.00346853597008],[4.781086930288257,53.00361369947335],[4.781184516756604,53.003677101175285],[4.781170641924311,53.00368714054326],[4.781103989437625,53.00365142261351],[4.78086572268441,53.00362774737726],[4.78063972518335,53.00353449043361],[4.780569600149716,53.00348920478048],[4.780539777026934,53.00349130012289],[4.780393571112278,53.00356020287298],[4.780367975434543,53.003560073026115],[4.78014189053433,53.00343985738478],[4.780149559260942,53.003424171058064],[4.780480366989345,53.00324555593044],[4.780614973482277,53.003172664512256],[4.780870879528607,53.00302344208455],[4.78147461363544,53.00266816851125],[4.78127628816111,53.00260257091738],[4.781235274540332,53.002588884496625],[4.781343221510314,53.002475978385405],[4.781705682580493,53.00208746917298],[4.781883014475577,53.001905269403814],[4.781954112727294,53.00185508354101],[4.782011343581425,53.00183234104608],[4.782137313128188,53.00178692227458],[4.782454327816181,53.001733061579905],[4.782587815004579,53.00164826701864],[4.782638241721227,53.00161375363093],[4.782674030074526,53.00157031466512],[4.783105180803797,53.001496809703234],[4.783172650548315,53.00147823412184],[4.783195600631003,53.00143780350761],[4.783200646644397,53.00139728248166],[4.783169629780408,53.00137279974806],[4.783125200137123,53.001345544371404],[4.783031234681003,53.00133696407995],[4.782923241339238,53.001368850369225],[4.782528094502771,53.00143172608254],[4.782462590329986,53.001403159746836],[4.782412350017946,53.00137708788676],[4.782256358499871,53.001369451446394],[4.781992386083828,53.00142168477743],[4.781581113269123,53.00148812244322],[4.781413249564303,53.001524343889926],[4.781314091872779,53.00155809681315],[4.781210730235472,53.00161036544462],[4.781084251897358,53.001692291396616],[4.780949930752932,53.0017854041387],[4.780890055368081,53.00183958412524],[4.780703513488639,53.00202285813898],[4.780675858487357,53.00205223904144],[4.780485536033332,53.00225460844961],[4.780109435664238,53.00263325501345],[4.780042337457505,53.002700797487655],[4.779980541708568,53.00277158396162],[4.779919112421182,53.00281715650988],[4.77985027840542,53.00284891532435],[4.779793144593525,53.00285780029755],[4.779751362186156,53.00285758812035],[4.77972491849984,53.002845987219935],[4.779717865954331,53.002806950557634],[4.779726102925166,53.00276111697073],[4.779745638988353,53.002722224323904],[4.779742288648659,53.00269009900879],[4.779715892065385,53.00267619783384],[4.779685554050682,53.00267146070544],[4.779632233844759,53.002680355983976],[4.779609236486026,53.002694006289914],[4.779570644268667,53.00273739414957],[4.779515996150896,53.00284033398086],[4.779496779977229,53.00285629499878],[4.779462515369729,53.00286071294931],[4.779352331958056,53.002860153085535],[4.77928003655181,53.00286666025626],[4.778975049542114,53.002938510515314],[4.778929261390406,53.00295204480173],[4.778826065468042,53.00299510388178],[4.778779924655954,53.003033861058334],[4.778775805710996,53.003056773323856],[4.778783017713907,53.00308434424476],[4.778805551771621,53.00310280902717],[4.77883943196452,53.003125914559924],[4.778887041402555,53.00314516286041],[4.779046807861852,53.003148518392805],[4.779092897047119,53.003161432477434],[4.7791172650353,53.003222447995945],[4.779117194236643,53.003227515948325],[4.779116733542794,53.003260493581486],[4.779186526408234,53.0032796208849],[4.778782738681226,53.003416577891315],[4.778232553366656,53.00359949048219],[4.776820074590144,53.004077878720224],[4.776716796410915,53.00411584029202],[4.776577779153627,53.00407525820503],[4.776350979439469,53.00405334171933],[4.776144549423767,53.004052287373675],[4.775964933060256,53.004101181134764],[4.775784558083493,53.00420405186922],[4.775562058586267,53.00436482179457],[4.775415625182871,53.00450107015009],[4.775199961542872,53.004666017075074],[4.77490147620498,53.00485781332432],[4.774347883807906,53.00515221147427],[4.773891938490366,53.00539793434749],[4.773626267632169,53.00553542927831],[4.773475174793809,53.00561577411653],[4.773395740489313,53.00566012764117],[4.773386565780946,53.005665247724274],[4.77331576995417,53.005735094913284],[4.773167076895457,53.005827933740946],[4.773008374940173,53.00589732948121],[4.77281873790259,53.00595875697905],[4.772600780149957,53.00601381112055],[4.772362350971722,53.00605313235601],[4.772136961607622,53.006084746957704],[4.771800294257729,53.006122016265834],[4.771411985650021,53.00615434589013],[4.770909843382239,53.00619076075218],[4.770467360146885,53.00621499904113],[4.770299205744291,53.00622037749896],[4.770198774516182,53.006215750957296],[4.770118458788837,53.006209209762396],[4.769940564990735,53.00616704451797],[4.769837999522543,53.00610566852663],[4.769801354399346,53.00608545776822],[4.769686629530848,53.00602220363919],[4.769530201772336,53.005930903285254],[4.769453077366627,53.00589930435135],[4.769411790559388,53.005894409233065],[4.769370407513405,53.00589419550189],[4.769168174867815,53.00593371529647],[4.768843904576506,53.0060084865401],[4.768610397057254,53.006065007687475],[4.768425959417072,53.006124891500505],[4.768238788478869,53.00619570628506],[4.768108670943721,53.0062543070387],[4.767999229751294,53.00631302366629],[4.767913205160354,53.006362506613875],[4.767839785242763,53.00643389163973],[4.767500150045723,53.006680192384536],[4.767377509819035,53.00675755867102],[4.767325357880364,53.006788498094366],[4.767257705574782,53.006817784551394],[4.767164295678167,53.0068407009253],[4.767065760840572,53.00686047238869],[4.766905024156986,53.00689083968319],[4.766549867964867,53.00695452612787],[4.766101500279417,53.00702708240188],[4.765878656502344,53.00706024410706],[4.765469056383027,53.00713456299532],[4.764278734787159,53.00737799387716],[4.763811886413481,53.00747540948599],[4.763321684416913,53.007580501651915],[4.763072705488231,53.007632249429825],[4.762740337328203,53.007728798799064],[4.762272884371517,53.007869888003235],[4.761852087413573,53.008001864481244],[4.761280746796463,53.00817361635549],[4.760371673760003,53.008454353301175],[4.759982017157173,53.008577122589735],[4.759553384622179,53.00871528645992],[4.758205181449324,53.0091419233625],[4.757791948873157,53.009284843807585],[4.757511349434833,53.00937697814008],[4.756937223469895,53.00955960411507],[4.756700795440964,53.00963636892471],[4.756297288646341,53.00976138071409],[4.756194483838812,53.00973163369045],[4.756077844512269,53.009731018393396],[4.756002138461604,53.009742976123626],[4.755926241195718,53.0097757137761],[4.755856900017752,53.00982083864386],[4.755815508270354,53.00984140476362],[4.755753415786137,53.00986185351631],[4.755539452710589,53.00994329070306],[4.755443018420087,53.00996355795915],[4.755326261092371,53.00997923629165],[4.755194943591064,53.01004481438275],[4.754994836439844,53.01011845173932],[4.754857781626385,53.01011380211829],[4.754721105002708,53.0100754437721],[4.754597791268677,53.010062434590395],[4.754460445287309,53.01007014013036],[4.754461049530266,53.010028581366406],[4.754373586874969,53.00989556707414],[4.754319422222593,53.00984978164295],[4.754277801820908,53.00982260413349],[4.754179798283913,53.00978950819125],[4.753998783383101,53.00974306388901],[4.753963647333997,53.00972602666304],[4.753952102491147,53.009695070407766],[4.753968635027269,53.009647424115236],[4.753992851535354,53.009607112730016],[4.754044902171987,53.00955739884409],[4.754053537158344,53.009507458753944],[4.754046046105918,53.00947877145247],[4.753917397738046,53.00936857536884],[4.753823098886199,53.009329883152866],[4.753740396899452,53.009317645246],[4.753653453507352,53.009309890586394],[4.753499501753053,53.00931412190432],[4.753357180587281,53.009320673823325],[4.753285886533358,53.00933208886834],[4.753226474385013,53.00935086826826],[4.753095916508709,53.00936422379344],[4.753040355331987,53.00938302351384],[4.752992780725078,53.00939737595809],[4.752840344468141,53.00941004637673],[4.752806287422995,53.009422779191794],[4.752394554796324,53.0096323400325],[4.752268694821977,53.009681653394445],[4.752092580474543,53.00974643766719],[4.751664500753579,53.00993512463072],[4.751488784237019,53.0099796818064],[4.751404957115673,53.00998934598431],[4.751346744416534,53.00998903658419],[4.751263179394768,53.00996556930109],[4.751306628456258,53.00988267272568],[4.751349394794497,53.00980764007362],[4.751358881883492,53.00973243052531],[4.751359472698338,53.00969199318973],[4.751381337345602,53.00963762592019],[4.751394004865642,53.00960680708236],[4.751395473608392,53.009506275342936],[4.751338641715791,53.009404877469585],[4.751322715517562,53.0092447275201],[4.751312991979157,53.00920030201626],[4.751267198002967,53.00914783067548],[4.75115141715961,53.00908206031964],[4.750919404919188,53.00898028693168],[4.750402088634274,53.008777590090006],[4.749760640435246,53.00852985935419],[4.749699316030732,53.00850482272135],[4.74963612086162,53.00846460258733],[4.749536038728012,53.00840004029935],[4.749454292448243,53.00836253750926],[4.74943405134354,53.00833771526087],[4.749434594503858,53.00830065024512],[4.749483032984832,53.008275637884616],[4.749545086926959,53.00825125883194],[4.749648328187331,53.008235514110524],[4.749814639919355,53.00812463768038],[4.749897785917501,53.00807509124488],[4.749980248186666,53.00806317336691],[4.750166185968317,53.00802709217505],[4.750214448835985,53.00801443575279],[4.750242221168668,53.00798593595799],[4.750223552258847,53.007861716688886],[4.750217054552732,53.007836402507166],[4.750286219084751,53.007787346594036],[4.750355536353807,53.0077506486237],[4.750472763379832,53.007709710647475],[4.750550356104024,53.00756915250109],[4.750619756700761,53.00752009765051],[4.7506955289189,53.007487359083534],[4.750785339185169,53.00745863208688],[4.750881550154264,53.00744678673497],[4.750929840563789,53.007430761177915],[4.750985133479786,53.00741420400655],[4.751335413830863,53.007387418776695],[4.751387946672969,53.00737590607983],[4.751414426874196,53.007347967981765],[4.75144886046383,53.007333546324396],[4.751477297822271,53.00732358777792],[4.751528589604288,53.00731767951924],[4.751673095122428,53.00730609015716],[4.751830794834728,53.00730692787127],[4.7519198796748,53.00731975817529],[4.752062994898295,53.007386789976145],[4.752185934450283,53.00743294159068],[4.752267974114432,53.00744179640341],[4.752336748505052,53.00744216142141],[4.752391992381746,53.00742167809131],[4.752405965177199,53.00740546173357],[4.752448910227757,53.007285495008645],[4.75244933611972,53.00725629333504],[4.752400703297964,53.007167860917214],[4.75239421985772,53.00710155106705],[4.752406079882659,53.007006689981154],[4.752410621417327,53.00687079778554],[4.752356165040402,53.00670987455477],[4.752326086441937,53.006641196466816],[4.752304049324722,53.00655683039084],[4.752305712304902,53.0064428299017],[4.752317019745116,53.006377169814805],[4.752373806552115,53.00620280559501],[4.752408210430904,53.00614232829728],[4.752450559480133,53.00609593257339],[4.752500037985666,53.00606306142487],[4.752631821110729,53.00589357648278],[4.752710696199178,53.00580220886715],[4.752897063905877,53.00561415791312],[4.752986463848433,53.00550904193848],[4.753123088908937,53.00536598680206],[4.753152427674578,53.00530211433585],[4.753186623655387,53.005255683217456],[4.753231369910953,53.00520424867076],[4.75342131623858,53.004948018182084],[4.753427194391522,53.00489637851572],[4.753501241726589,53.00479061555683],[4.753556424284734,53.00471789440752],[4.753619331705347,53.00466487366237],[4.753726850364474,53.00457051992545],[4.753802826354483,53.004492858428065],[4.753858265956595,53.00442575408953],[4.753907821823864,53.00438725908303],[4.754025197404466,53.00431149437613],[4.754126766785516,53.00426541959305],[4.754243761172155,53.00422391235017],[4.754324490578798,53.004178848623475],[4.754408192138328,53.00411357580612],[4.754473835753076,53.00404876906084],[4.754515523117766,53.004023722542605],[4.754583305982361,53.00399599858918],[4.754679730503771,53.003935847710295],[4.754841823959662,53.00381819227636],[4.755006113117397,53.00371740848442],[4.75511316687343,53.003646082247045],[4.755214735157404,53.00359999844735],[4.755326274486149,53.00356464216266],[4.755386147917932,53.00353687507433],[4.755474833719951,53.00348117766821],[4.755571612685087,53.00341317024535],[4.755649788936006,53.00336697064091],[4.755850258694437,53.00327422632035],[4.755969915812383,53.003224876446176],[4.756185692876703,53.003145139260226],[4.756393563126795,53.00307097108854],[4.756557117437286,53.00302858561801],[4.756689533185297,53.00298996553879],[4.75676750282133,53.00295892504934],[4.756830039255,53.002923873430206],[4.756899631012224,53.002875941024755],[4.758221282079665,53.0024712038364],[4.759134258735699,53.002182818488606],[4.760128038582353,53.00187463405302],[4.760541030340154,53.001771773650525],[4.760935728712122,53.00169408576766],[4.761182287928778,53.00166639714118],[4.761395372827607,53.00161511255499],[4.761837390644236,53.00208906582733],[4.762274275969209,53.00223013487937],[4.762533941320067,53.00231396826274],[4.762582133835348,53.002320052094724],[4.762620909978785,53.00230860822174],[4.762650576881442,53.00225926612349],[4.762651454091742,53.00219812734477],[4.762618297752029,53.002154289375994],[4.762536656739324,53.00212474716002],[4.761949854577471,53.00198775713456],[4.761503638105492,53.001470117445855],[4.762414089904285,53.0012061297065],[4.762715928496104,53.0015043555733],[4.762846271164165,53.001633136940185],[4.762887948666669,53.00165304365227],[4.762929868217604,53.001656075180655],[4.762962624685639,53.001647807919355],[4.762981555843488,53.00162821754532],[4.762968819658026,53.001540947190826],[4.763675314259355,53.00153941105654],[4.763871726508957,53.001544307899934],[4.763843921527698,53.001723818807555],[4.763796340540964,53.00187581816007],[4.763688455268135,53.002006187450554],[4.763580933110361,53.00211220543378],[4.763514315562377,53.002181888986605],[4.763513573848473,53.00223365567584],[4.76355334464209,53.002276494444544],[4.763618610394257,53.002301178824126],[4.763674082017127,53.00230452337094],[4.763755019603624,53.00229276870728],[4.763826206759513,53.002256610075676],[4.763958787305581,53.00216289000876],[4.764071517604116,53.00204472227235],[4.764081127023553,53.00202486749238],[4.764139136494451,53.001905003749684],[4.764212719447795,53.00170137812228],[4.764260723580021,53.00165501575903],[4.76429925690165,53.00165005824845],[4.764656894938361,53.00170064434224],[4.764692851000627,53.00165820006887],[4.764884076290672,53.00169878014241],[4.76489104050921,53.00167011386456],[4.764993642786865,53.00168392950476],[4.765567358571171,53.00084544541642],[4.765628762561937,53.000831717005866],[4.765737950970784,53.000813754437104],[4.765847610308435,53.00077051551216],[4.765908543751094,53.00074162807564],[4.766054001797254,53.00072609211656],[4.76614168635269,53.00072991643093],[4.766262417763627,53.00075076351214],[4.766380329390093,53.00076597574993],[4.766416537113868,53.00076504217324],[4.76650744469129,53.00076326645566],[4.766750208423021,53.00072240768402],[4.767092445467871,53.00061747093083],[4.767238111509212,53.00061990378795],[4.767578928079269,53.00050934269188],[4.767953396734407,53.00038771827922],[4.767993817295981,53.000344118909545],[4.768035038070339,53.00024435786047],[4.768069004612467,53.000180504788354],[4.768105287931989,53.00015766947416],[4.768147847339404,53.00013542648345],[4.768240584690668,53.000119055147785],[4.768559663980769,53.00012070589939],[4.768753188191058,53.000121706678904],[4.768881175187743,53.00013078771549],[4.769001220759782,53.000191511864955],[4.769171620721988,53.00023114173846],[4.769370824037886,53.000249018534234],[4.769477594822111,53.00024564474283],[4.76972734147868,53.000195262579304],[4.769934371429467,53.00016206338774],[4.77002022425201,53.00013217646755],[4.770092168418349,53.000080875963015],[4.770157746838273,52.999978439702446],[4.770188938049404,52.99978089924141],[4.770247788236543,52.99965202352038],[4.770348904971931,52.99955369660172],[4.77049255742196,52.999460078518204],[4.770693293602498,52.99935383208312],[4.770872241507243,52.999290169157945],[4.771037113902253,52.999209577692234],[4.771281702311028,52.999029986421206],[4.771547348759457,52.99886791596222],[4.771734484271958,52.9987273470583],[4.771963783599923,52.99861675137324],[4.772200103476119,52.99851911826561],[4.772471085851674,52.99848176200653],[4.772576145977427,52.99848285818236],[4.772581573118518,52.998503375032556],[4.772617369563699,52.998531641431036],[4.772658378358829,52.99855681632344],[4.772733113521213,52.998574364287826],[4.772784109454183,52.998583199275004],[4.772863239258777,52.99856377278001],[4.772954183803797,52.99853147549832],[4.773011571056331,52.99849587857139],[4.773080093914553,52.99840262821838],[4.773151795065778,52.99826882959124],[4.773192361574178,52.998142662287215],[4.773205211020756,52.998055362592126],[4.773138811702805,52.997081499253795],[4.773144815916556,52.997022246863814],[4.773163285857286,52.99699581386413],[4.773205393641058,52.99694298337214],[4.773642473961873,52.99647094262364],[4.773702983913169,52.99639636942168],[4.773729740220989,52.99633254152852],[4.773733159205083,52.99627171220669],[4.77371588485132,52.99621545865219],[4.773664790502924,52.99617151370807],[4.77364629006729,52.996162108901004],[4.774271288366168,52.995833293243464],[4.774244608769879,52.99579653696421],[4.774138881645703,52.99563415013084],[4.774052975694976,52.99561481137214],[4.773860449327518,52.995580134224],[4.772792856778806,52.99545571070756],[4.772128675420221,52.99536844481336],[4.771654654487099,52.995277732756556],[4.770824117761344,52.995061610045234],[4.769935340095285,52.994827531661564],[4.769017963928246,52.994549166594304],[4.768457040244249,52.99440062338606],[4.768107880944124,52.99431071382472],[4.768006202750349,52.99427601216741],[4.76782946490167,52.99420745637041],[4.767739172847646,52.99418064959131],[4.767593835407013,52.99411812419685],[4.7675067012351,52.994073522551055],[4.767303335972885,52.99397979187601],[4.767107538582009,52.99386402948135],[4.766947815380503,52.99378376143056],[4.766737110663397,52.99368999171107],[4.766143301577883,52.99346969920046],[4.765888919701549,52.99338620625284],[4.765693300930536,52.99333037276651],[4.765310527053364,52.99323833021528],[4.764863631938556,52.99311444643982],[4.764699257799936,52.99307557847733],[4.764420256561744,52.99300393311042],[4.764165601665385,52.992942020392775],[4.76357703640742,52.99277731427317],[4.76340276398353,52.992724697613546],[4.763047438937202,52.99263332112941],[4.762761158631765,52.99257010805683],[4.762136270785401,52.992529442259595],[4.761853933827135,52.99248941458269],[4.761589761053139,52.99245498992678],[4.761398525378657,52.992426455036096],[4.760976237025339,52.992346143675114],[4.76035381554164,52.99227828857145],[4.76025342840629,52.992277762354604],[4.760091705234705,52.99228386094163],[4.759653861867172,52.992252834680826],[4.759249984181914,52.99224495443521],[4.758766306606125,52.99224241381516],[4.758255988555979,52.99219015309093],[4.757928664791754,52.99217385527935],[4.757828539689453,52.99215727866738],[4.757453705116767,52.992130835471336],[4.757125427454725,52.992112580382525],[4.756633917705178,52.992082266773245],[4.756541720975443,52.99206434697533],[4.756115156569098,52.99204665812346],[4.75578686522678,52.99202839928229],[4.755386896943884,52.99203661230325],[4.755287779080516,52.992023579527775],[4.754901739320407,52.9920182141533],[4.75408134140378,52.99202322868945],[4.752710060266549,52.99195078284289],[4.752599726596312,52.991947106097385],[4.752223283857602,52.99190769750548],[4.751788063032266,52.99187618004536],[4.751536330923408,52.99187484229314],[4.750559697068391,52.991787861837764],[4.75030849326361,52.991751459293404],[4.74990711421874,52.991715729820356],[4.749583323999105,52.99168333328173],[4.749283723197431,52.99164667952109],[4.749158114611067,52.99162848592118],[4.748916324869789,52.99158804184485],[4.748629313539817,52.99151761974568],[4.748198619023153,52.991437901194594],[4.748101286542963,52.99138057790005],[4.748159742245205,52.991365271868546],[4.748170835392471,52.99136236562454],[4.748363295503435,52.99136339386828],[4.750179008808967,52.99144741499649],[4.751156476461189,52.99146654656604],[4.751934778502886,52.99141958660633],[4.752058083374109,52.991410949572476],[4.752058422191658,52.99138772147291],[4.751836657011115,52.9912843409174],[4.751184812865234,52.99110899273108],[4.75044134903807,52.99088204737737],[4.748996863321471,52.990683880218384],[4.748013541726517,52.99053925810266],[4.746999924124374,52.99036196177865],[4.745871023617362,52.990170082714826],[4.745073362560187,52.98991503603481],[4.744398951274587,52.989706935636626],[4.744044603931433,52.98951335883301],[4.743722873173583,52.98932383860386],[4.742146398206037,52.9885883338569],[4.741805501718028,52.98845006246405],[4.741070963354036,52.98827624328498],[4.740647836002563,52.98818440647637],[4.740469830134529,52.988143598058805],[4.739613712110288,52.98803382364163],[4.739240050281481,52.98792664922393],[4.738800692535062,52.98773017862498],[4.738456126797712,52.98746950930214],[4.738122420355691,52.9873787326811],[4.736732478131596,52.9871204674012],[4.735582653580244,52.98693627578058],[4.735292508277823,52.98679615933092],[4.734570257688796,52.986526373672056],[4.734182841479738,52.986443380633084],[4.731990496273725,52.986075524940816],[4.729224430040719,52.985568355552914],[4.729093395469127,52.98553745795577],[4.726733033646131,52.98510102939479],[4.725502684300632,52.984843415365845],[4.725276489701759,52.984736994931616],[4.725009238660723,52.9845495674117],[4.724838473935647,52.98445948492247],[4.724611775784364,52.98438542066328],[4.724443763779463,52.98432785688603],[4.723561469782115,52.984185416676496],[4.723066524032885,52.98412603604057],[4.722705473138846,52.98407549429667],[4.722437962857484,52.98404163816932],[4.721323380091464,52.98387854191753],[4.720750201848282,52.983809774448105],[4.720621797455752,52.983790663421765],[4.720485664961533,52.9837637808064],[4.720233945974143,52.98371702233165],[4.719964438678229,52.98367188048059],[4.71940227015305,52.98362829412363],[4.719160944834121,52.983635033951394],[4.718932786090949,52.983658031506266],[4.718609073122103,52.983793750839325],[4.718568375858217,52.983825892535194],[4.71845982334578,52.98391427848002],[4.717994500528834,52.984333859439445],[4.717834530752192,52.984512208132266],[4.717792034764329,52.984559571553994],[4.717723549434194,52.98469929614126],[4.717655063800815,52.98483901169713],[4.717439019068262,52.98640636215663],[4.717083584356359,52.98854385814808],[4.717002220896776,52.98892276543187],[4.716564467456462,52.99016347044698],[4.716498765528044,52.990409780099924],[4.716433393456901,52.99063366136866],[4.716381659524455,52.99091089976012],[4.71627065747477,52.99134045844134],[4.716152541347446,52.99247693192871],[4.716327166759243,52.99384841641108],[4.716972871227009,52.995736933628415],[4.717139100457739,52.99622803924568],[4.717297227237358,52.996739696071195],[4.717325354631915,52.997070356694636],[4.716933494785422,52.998294575673434],[4.716495237379858,52.99903282535772],[4.716120852841021,52.99961358511897],[4.71594804785225,52.99981739814775],[4.715619686655962,53.00011757971793],[4.715325779528996,53.000458024398256],[4.715284278257243,53.00054204799879],[4.715084576340277,53.00079711100915],[4.714907266429824,53.00107690437053],[4.71486433852337,53.001153865453055],[4.714568657649948,53.001814556423575],[4.714263503540401,53.00239172738469],[4.714156841982538,53.00255463520545],[4.713887057912514,53.00312021395452],[4.713751911935249,53.00341876382639],[4.713629252592142,53.003753590124546],[4.713476202457013,53.00412489171384],[4.713431783665062,53.00418809461754],[4.713198629938441,53.00469388462266],[4.712902146406795,53.005141624345846],[4.712659066558856,53.00553256478079],[4.71234242109872,53.005932821963036],[4.711609777383413,53.00688173142894],[4.711066714088116,53.00753055537835],[4.710768170866992,53.007490837062036],[4.710133396211343,53.007396643959055],[4.709584027864992,53.00732051951233],[4.709153084923444,53.007256852240396],[4.709016584688042,53.00723305434665],[4.708992730802486,53.007262128544355],[4.708989642340491,53.00729693069013],[4.709007319434627,53.00732005500193],[4.709048450622999,53.00733938252002],[4.709506810436173,53.007406578094525],[4.710797625554763,53.00759241526956],[4.710981415615263,53.007623882361656],[4.710944507072862,53.007863907427556],[4.710916683203474,53.00798140919666],[4.710912273339695,53.00808302954755],[4.71091278285597,53.00823240452747],[4.710817157319073,53.00852995204351],[4.710588729615143,53.009007159508116],[4.710426988656147,53.00937492989626],[4.710266616984021,53.00965641132848],[4.710045528459021,53.0100346200029],[4.710016797630233,53.01011058120414],[4.709878746948506,53.01035236068386],[4.709689806199717,53.010798418282526],[4.709648848693686,53.010923690422246],[4.709554266779328,53.0111532784966],[4.709458627264688,53.01145070782791],[4.70925417349818,53.01192501086335],[4.70792985231432,53.01172739122739],[4.707370284509786,53.0116467057978],[4.707225753275115,53.01162847590706],[4.707171429892055,53.01162647677725],[4.707140381282875,53.01163135962341],[4.707121921102521,53.011643611884104],[4.707114106910748,53.01165929276827],[4.707121315566634,53.01168235781272],[4.707141864896709,53.01170775428231],[4.707172609236355,53.01172196401544],[4.707893404601462,53.011827778055206],[4.709206054083976,53.01202399295572],[4.709108012596293,53.012194169895395],[4.709088818695066,53.01232820109219],[4.709026747349447,53.01246763268063],[4.708995978612113,53.01256896862063],[4.708893556077727,53.012781095997504],[4.708821601584883,53.01300769341122],[4.708732527302986,53.01323419367966],[4.708678304231167,53.013419608031896],[4.708621184510108,53.013790736765785],[4.708514520435695,53.01404808620384],[4.708487709376755,53.01416207031203],[4.70847913406292,53.014262849017676],[4.708387853297503,53.014491052845415],[4.708353432834755,53.01471547246542],[4.70831356978899,53.0149143218471],[4.708259234185177,53.01516494954765],[4.708061797683547,53.0155838978444],[4.70654963538514,53.01551574424399],[4.706275535302152,53.01550463105607],[4.70624188611403,53.015512302628196],[4.706218084673266,53.01553856737832],[4.706217566144103,53.0155716981587],[4.706240664361975,53.01559036766442],[4.706289638388927,53.01560019175581],[4.708038366738974,53.01567689979834],[4.708180132099162,53.015889190228144],[4.708242378913414,53.01602070886308],[4.708415293937633,53.016338792796326],[4.708543167256,53.01683627682576],[4.708615818099802,53.01714644970255],[4.708660978629561,53.01735708614548],[4.708657606513011,53.01757330643776],[4.708583322632262,53.01798782248647],[4.708521928156753,53.018197872466196],[4.708405270817609,53.01846173387275],[4.708324032861433,53.01870088587638],[4.708200099980693,53.01913284098858],[4.707280688487191,53.019116136842726],[4.706333087858604,53.01910288492766],[4.706012477801321,53.01910105997764],[4.705952850545166,53.0191097050645],[4.705908545697092,53.0191285470558],[4.705895127721689,53.01915936943233],[4.705899885813908,53.01918298578527],[4.70594625983831,53.019195602531674],[4.705987601627486,53.01920201426648],[4.708195131636042,53.01923538335895],[4.708454881732377,53.02001097999878],[4.708499497124577,53.020256696044946],[4.708524361481283,53.020525673591834],[4.708501707490589,53.02073593417228],[4.708497787241969,53.02098721598003],[4.708452827746523,53.02138438344458],[4.708420577958255,53.02158873939267],[4.708349264091165,53.02181710994401],[4.708312655226067,53.022085864425804],[4.708260768147181,53.02251705973301],[4.708271551664788,53.02267409488489],[4.705989569523028,53.022682565204924],[4.705960530407278,53.02270879285492],[4.705952423432977,53.02274301443919],[4.705967536092966,53.02276668881825],[4.706006036238241,53.02278375566682],[4.706686406781512,53.02278144636524],[4.708274258584476,53.022772807575095],[4.708302879932512,53.022922332468355],[4.708410926771732,53.023448926768246],[4.708387176235584,53.0237293195476],[4.708373477182049,53.02398637780615],[4.708349361218255,53.02429015099225],[4.708380813119039,53.02475787216605],[4.708382895488544,53.02522994679355],[4.708325885733185,53.02579434451316],[4.708274059994221,53.026010289347454],[4.708257030722314,53.026224697220236],[4.706941985338621,53.02627654738435],[4.706033533575348,53.026307127135574],[4.706017926585268,53.02633007034316],[4.706017363705928,53.02636601259768],[4.706045457175146,53.026378529672996],[4.706089281017801,53.026383830367564],[4.706348212494343,53.02637912673188],[4.708259687103322,53.02631042422359],[4.70825433907745,53.026653043881105],[4.708261563679699,53.026810876400546],[4.708175296710476,53.027109497931875],[4.708116919799347,53.02738689012344],[4.708085940981697,53.027509450017384],[4.708121041913021,53.027743411391945],[4.708224519071939,53.02794270494876],[4.708326811500098,53.028217962348364],[4.708391174712041,53.028440416316606],[4.70846531783586,53.02865706660085],[4.708577027667842,53.028949918496075],[4.708716895429718,53.02917688918993],[4.708782173644378,53.029340900809764],[4.708921692281208,53.029744289338296],[4.708059195101729,53.02979128468434],[4.706396958614223,53.02987060748909],[4.706373395148562,53.02989574036281],[4.706382695051359,53.02994858990504],[4.706426479304652,53.02997074593588],[4.706571461286774,53.02997157064656],[4.707143676173485,53.02994392881415],[4.708070582943091,53.02988963306283],[4.708859171185537,53.02985070180448],[4.708983519860068,53.03010005001501],[4.709189036601056,53.03059213000673],[4.709353866216669,53.03084874342258],[4.709375949663576,53.030950629933756],[4.709414237740994,53.03106678867875],[4.709447639595447,53.03140945659253],[4.709384226404505,53.03174806246861],[4.709313385851114,53.03194052618313],[4.709291640334538,53.03209235313637],[4.709245674301093,53.032553784231055],[4.70929844700364,53.032898889233806],[4.709319381157486,53.03299327456759],[4.709337036321059,53.03314979087407],[4.709394201141567,53.03326292921646],[4.70717241744757,53.033438659637525],[4.707102391748641,53.03344781508522],[4.707073805273174,53.03345888465716],[4.707057974664048,53.03347283405324],[4.707060305746658,53.03348801625123],[4.707065352205932,53.033500958308984],[4.707090935012173,53.03351008824824],[4.707132322945412,53.03351538276414],[4.707927531525093,53.033463733536365],[4.70878688354751,53.033390535763395],[4.709355525568016,53.033345573227415],[4.709463066170271,53.033529261067294],[4.709844956913039,53.03394020289444],[4.710005490158378,53.034169346486806],[4.710094261033159,53.03437063955737],[4.710113871760079,53.03445060312428],[4.710192205013596,53.03462625294065],[4.710266003564326,53.034866282129954],[4.710349492195427,53.035106366057676],[4.710373575387638,53.035313763142305],[4.710388111976885,53.035381683208975],[4.710400457471014,53.035568354301745],[4.710454501254629,53.03583164503506],[4.710507938113652,53.036170381553426],[4.710521099333232,53.03623761983259],[4.710526938436277,53.03632511683751],[4.710577318740781,53.03656047518366],[4.710606364955398,53.03676521326839],[4.709264381184179,53.03687207970521],[4.708703429802826,53.036918324761395],[4.707848389663361,53.03699322885525],[4.70781190950982,53.03701043369431],[4.707788370561976,53.03703332395501],[4.707785219123188,53.03706307868866],[4.707818349561741,53.03708965962737],[4.707882907764612,53.037102947535274],[4.708028068105405,53.03709254027568],[4.708468438330365,53.03705628047192],[4.710635521260735,53.03686707642265],[4.710660100667943,53.03694499207713],[4.710697495675154,53.037032865131785],[4.710763265638438,53.037166495198285],[4.710838616885175,53.037307179721644],[4.710941838398596,53.03752516033556],[4.711015056346432,53.03771010832093],[4.711101128242216,53.03787671587454],[4.711328025903994,53.03824501707322],[4.711440836420102,53.038468892439774],[4.711533879707521,53.038719561148746],[4.711617927426173,53.038924582366846],[4.711664849480713,53.039024200039094],[4.711672179060204,53.03917619118757],[4.711669546102878,53.03934565841738],[4.711617175855263,53.039596656393904],[4.711605559657523,53.039784836337915],[4.711564891472865,53.039907332989806],[4.711511045426517,53.04026184498799],[4.709218213081696,53.04046803818624],[4.708816553076076,53.04050001721703],[4.708797897931652,53.04054541103386],[4.708807302057087,53.04059993853429],[4.709636447607711,53.0405310624936],[4.711474166345889,53.04036401795207],[4.711621446864886,53.040569189351025],[4.711905422219451,53.04092026096038],[4.712049335839722,53.04110342326163],[4.712162825390662,53.04128523658017],[4.712342986516316,53.04154339605564],[4.712466713325387,53.041690202161824],[4.712637005883511,53.04195998772805],[4.712759858217511,53.04216522659073],[4.712891375759918,53.04243480222943],[4.712936824517472,53.04262792256416],[4.712943770218604,53.04283959838643],[4.712953914907146,53.042990185281205],[4.712937700736274,53.04323094511871],[4.712907955261379,53.04333949396565],[4.712886245980664,53.043724938385864],[4.711385212295772,53.04389509535003],[4.709907615219501,53.044068149204776],[4.709788444349207,53.044068596302786],[4.709764428662053,53.04411395898638],[4.709763921062398,53.04414653329686],[4.70978947436326,53.044166893529756],[4.709815206726312,53.044174902184174],[4.710009755322353,53.044145108093126],[4.711409876843897,53.043979478593464],[4.712859709193893,53.04380443456476],[4.712947967300442,53.044179337438045],[4.712982837781708,53.04434511561831],[4.713030086308539,53.044518485039106],[4.713115255405378,53.0446619728441],[4.713171372975628,53.04473558120427],[4.713268280623944,53.04489141028628],[4.713365300542415,53.04500444711306],[4.713390636716682,53.04505050078951],[4.713567453664459,53.04528921980068],[4.71376297711999,53.04556126614775],[4.713911661581118,53.045835510934175],[4.71396650362643,53.04592233955023],[4.714026471493971,53.04608068301915],[4.714067960442192,53.04622386148673],[4.714089717151766,53.04643087550902],[4.71410529947859,53.04663410750537],[4.714120066781233,53.04688998564924],[4.714125954366851,53.04712610688078],[4.712907287616881,53.04730499496598],[4.711706252236409,53.047479628887004],[4.711105864488583,53.047565546050116],[4.71113563372443,53.047651640317994],[4.712341350276482,53.047483211187775],[4.712755147793513,53.047424331426264],[4.714133597418074,53.047226706571315],[4.714200072617143,53.047493676929115],[4.714198051801676,53.04762420056711],[4.714208820900739,53.047764663066054],[4.714220661915477,53.047834930612275],[4.714251651593153,53.04795135160675],[4.71432461525451,53.04807672525266],[4.714413077513699,53.04825578024242],[4.714485719393173,53.0484106809409],[4.714557886653405,53.04851919165163],[4.7146839953318,53.04872681870153],[4.714771573375852,53.048902480578406],[4.714824254924916,53.04899244176548],[4.714877166053849,53.04906853836116],[4.714943387574952,53.049158575536666],[4.715073863256573,53.04946496805099],[4.715084010018392,53.049554267912576],[4.715124271271882,53.049730023243875],[4.715207315494988,53.05001591210753],[4.715235068146059,53.05035742120202],[4.715224684630076,53.05052552339081],[4.715238702634062,53.050609471137314],[4.715135724168569,53.05065402218932],[4.713891910373095,53.05085001411108],[4.713522061620997,53.05091251775981],[4.713387426641891,53.050924682285576],[4.7128584113844,53.05101100196166],[4.712645168129312,53.05105023613952],[4.712676329365535,53.05112174581445],[4.713604520478543,53.05097476343944],[4.713763768091764,53.05095319189584],[4.713938765242319,53.05092441544665],[4.715175037372465,53.05072237695574],[4.715349597179244,53.05087092965641],[4.715521613086923,53.051115657062674],[4.71567401739984,53.0513161335316],[4.71574009011264,53.05141516462479],[4.715885677250625,53.05161974523806],[4.715977947092454,53.051727918368414],[4.716055644735711,53.05183236129222],[4.716106737211154,53.051915528254256],[4.716314581602761,53.05228409756677],[4.716482679586536,53.05260946237859],[4.716584929292331,53.05295451543844],[4.716748546155015,53.053680876516026],[4.716765895349682,53.05386335025828],[4.716809451051445,53.05404473962471],[4.716697777396051,53.054084040250764],[4.716460326848415,53.05412163865207],[4.716071608038009,53.05419052359408],[4.715947209347052,53.05421257041492],[4.715566523126881,53.05427982641364],[4.714978456424332,53.05438436200605],[4.714781340465044,53.05442032250686],[4.714695034782144,53.05443275099514],[4.714004053758064,53.05455411995121],[4.714003531822449,53.054587814672814],[4.714029678628066,53.0546300795041],[4.714126861437041,53.05461490084174],[4.714853060635162,53.05448418824127],[4.714912339117147,53.05447777964157],[4.715052762639249,53.0544544229057],[4.715907235861192,53.05430139222566],[4.716070154544067,53.05427257456591],[4.716252790219408,53.054239678686784],[4.716731702463334,53.05415398176454],[4.717000157024168,53.05439801567048],[4.717243409917,53.05469326449318],[4.717288747664946,53.054763098959164],[4.717605782970873,53.0551109251873],[4.717780519912909,53.055297100571174],[4.717975086328874,53.05552452570298],[4.718092835470289,53.055846389284596],[4.718114632498854,53.056015515968376],[4.718109938088758,53.056320420956254],[4.718032245284569,53.0566139007443],[4.71801800187044,53.05670103290366],[4.718056438883398,53.05694801975806],[4.718217264866755,53.05735730861424],[4.718264563300373,53.05741729565444],[4.718155838713771,53.05746801768414],[4.718072168586873,53.057482152763455],[4.716351652985935,53.057848968181595],[4.716014026381089,53.057918966906406],[4.715657594957181,53.05799279159512],[4.715715671895126,53.058064443172874],[4.716012733918299,53.05800264610158],[4.716244976145857,53.05795677175946],[4.716755526301553,53.057849548341395],[4.717106636585957,53.05777344314286],[4.717476593072136,53.057697817971366],[4.718192403243023,53.05754122647196],[4.718429104471714,53.05754180307977],[4.718647566732526,53.057666296872085],[4.718842737473947,53.05780013175791],[4.718989737580377,53.05795589354913],[4.71904490735481,53.0580502157936],[4.719248760682993,53.058524740859745],[4.71932054131868,53.05880001321265],[4.71939294854478,53.059034572225464],[4.719499842912585,53.05922349356688],[4.71958983944928,53.05941232955976],[4.719679617161072,53.05961643191168],[4.719735910776617,53.05979999362819],[4.719817795196442,53.05996842131351],[4.71994040525618,53.060233786054184],[4.720086579674287,53.06044994737521],[4.720228999029902,53.06071842355473],[4.719905265905356,53.06082603637504],[4.719084827913108,53.06103977308735],[4.718507715020029,53.06119268930154],[4.717742593204273,53.061392850093206],[4.717585962835892,53.06143747252853],[4.71764115843242,53.06150910335661],[4.718171164144132,53.061366037627835],[4.718636115288803,53.061247320321996],[4.719700196060776,53.06096738926647],[4.719963349389711,53.06090097299718],[4.720345124225346,53.06085650625143],[4.720363328101064,53.060868784022354],[4.72063520622357,53.0610521618703],[4.72081002130128,53.06124828057055],[4.720918006377214,53.06137849932572],[4.721081643660037,53.06159262675705],[4.721147223422569,53.06168475924365],[4.72123032015153,53.06187492133997],[4.721267972956216,53.06206652003235],[4.721350121312172,53.06232351650252],[4.721503831777604,53.06265919004586],[4.721582576555813,53.0628522391768],[4.721627210520507,53.062981682648925],[4.721658664593323,53.0631340486554],[4.72174831127442,53.06340043213197],[4.721872596411323,53.06366398861771],[4.722076694641728,53.06402683707649],[4.722134393154152,53.064129394129836],[4.721859364273064,53.06419296254493],[4.721513334931027,53.064285125248006],[4.72043493201322,53.06455475192775],[4.7195752548163,53.064775738385634],[4.71958302031065,53.06480161714986],[4.719625247257238,53.064852402036365],[4.719982080470782,53.064763407031066],[4.720482210490777,53.06463307784018],[4.721132381077692,53.06446877038613],[4.721912021043601,53.06427111199371],[4.722241571107689,53.06423217203376],[4.72250912730772,53.0644113067705],[4.722800854103445,53.06466742539479],[4.723008514712058,53.06489662146926],[4.723166696472518,53.065141268697516],[4.723239187525486,53.065279645497434],[4.723370229718594,53.065548108232875],[4.723469457220379,53.06591489265095],[4.723576793261416,53.06640335964087],[4.723657912405719,53.066622696048995],[4.723764921532328,53.06680652742108],[4.72394678574888,53.0670671294118],[4.724199513973701,53.06728980617085],[4.724305130051372,53.067366711037415],[4.724372280085944,53.06741560845109],[4.724073428471436,53.06748859346866],[4.723529308769746,53.06762887343936],[4.722605332122216,53.06787937121969],[4.722545921157017,53.06789195468341],[4.72210788361104,53.068008032957245],[4.722158079572205,53.06807963372621],[4.722282321682171,53.06804944159354],[4.722831125814448,53.06790510272796],[4.724115545316545,53.06755208981759],[4.724663991532871,53.06767476842639],[4.724981238489478,53.06792085012788],[4.725234372348206,53.06825367112724],[4.72530159745881,53.06836144621966],[4.725617690793831,53.06884058671277],[4.72583187950102,53.06911855484916],[4.725925565007575,53.069315178783],[4.726055612828617,53.06965183813041],[4.726083361260068,53.07004902092864],[4.726083288866207,53.070409637880005],[4.726069986948485,53.07050526776721],[4.726078327518409,53.070667982506905],[4.726140743623799,53.07082448974222],[4.726186465869685,53.07087991757248],[4.724464180881177,53.07134712553103],[4.724522348406522,53.07140810626602],[4.726241638390674,53.070938893188],[4.726348079109522,53.07108696259308],[4.726544819221389,53.07124966544466],[4.726713365018259,53.071363066790134],[4.726856746841283,53.071475107002875],[4.727036303347287,53.07161025235458],[4.727364837070892,53.07188713136826],[4.727833069162667,53.072318802564034],[4.728373548204941,53.072918282600725],[4.728644161733619,53.073365451590426],[4.728697925616272,53.07382582358644],[4.728690633056448,53.073961385490044],[4.728650150878687,53.074097259118545],[4.726969011765106,53.074624083258065],[4.726954020296573,53.074628494613],[4.727009941772581,53.07467597874622],[4.728277754897809,53.07429145164831],[4.728474649476569,53.07422501243072],[4.72873367192078,53.074415704600256],[4.728935015924535,53.07460603422809],[4.729068854111813,53.07475814260061],[4.72943757117711,53.075133042276036],[4.729662431574257,53.0755002315932],[4.729965687727889,53.07576733095088],[4.730021466403493,53.07584419057601],[4.730281426305635,53.07612196973383],[4.730445360507607,53.07636262988757],[4.730650416414662,53.07665399076388],[4.730813019602578,53.07698298645518],[4.730821848373008,53.077085028281154],[4.730818440161089,53.077194030248144],[4.730786780419433,53.07732696039685],[4.73073675685514,53.07744667001464],[4.72973996641757,53.077781131284524],[4.729817620388603,53.077841647410786],[4.730752291281203,53.07752563606974],[4.731005612545196,53.07773611533083],[4.731134475946909,53.07789464601836],[4.731189805702832,53.07798277126956],[4.731407434794344,53.07824279274882],[4.73167320161506,53.078531860096575],[4.731809105705385,53.07868397644567],[4.73194278157704,53.07881866518286],[4.732205155675925,53.0791204191942],[4.732411569042544,53.0793926704912],[4.732467309126326,53.07944595784816],[4.732646794432089,53.07962480273304],[4.732831133663536,53.07983517945923],[4.733037721147686,53.080118151071105],[4.733159142333911,53.080304091583585],[4.733227749978654,53.08042169113776],[4.733300761221392,53.08052437064851],[4.733372330209236,53.08063960493575],[4.732433242020852,53.08101350511657],[4.732493128004385,53.08106999261003],[4.733387546580586,53.08070836948212],[4.733471047656434,53.08079732131958],[4.733605211240969,53.08093012362951],[4.73374039162415,53.08102813679096],[4.734023520738019,53.08124256410595],[4.734289492030901,53.08152933487734],[4.734433552127935,53.08168018949902],[4.734926177534536,53.08217865940759],[4.735047647917474,53.0823046063112],[4.735248052309781,53.082519038421836],[4.735577063145318,53.082878497067775],[4.735743515207934,53.08305245849984],[4.735798592357151,53.08313758764603],[4.735820770024511,53.083161458747476],[4.735897531244086,53.08330438808874],[4.735935751823138,53.083386037707534],[4.735985334458036,53.08346142281473],[4.736083917473232,53.08365205250461],[4.736181486508533,53.08386657084723],[4.735173965803411,53.08418822155271],[4.735239141233534,53.08424980009498],[4.736196872462355,53.08393534485457],[4.736415101451666,53.08411549958746],[4.73671691429376,53.08428346431168],[4.736850219451046,53.08441317584108],[4.736899572152748,53.084505093858574],[4.736959719975231,53.08462762346957],[4.737119097839259,53.08481135735155],[4.737339330761503,53.084966863121615],[4.737445360781582,53.085093325727094],[4.737705523155136,53.08528559418339],[4.737903959850624,53.08554656825987],[4.737996001033175,53.0857054395382],[4.738121057759828,53.08591322168142],[4.73821930000184,53.086108673140664],[4.738316475878984,53.08632060835691],[4.738524390100038,53.086622115342266],[4.738722975697293,53.086919824189835],[4.738825386236678,53.08707735802187],[4.739024906310514,53.08733374397004],[4.739205749831592,53.087570573463566],[4.739263184897449,53.08768156681519],[4.739321033233376,53.08776488496813],[4.739457882425076,53.08791839894206],[4.739193166517842,53.08801064796635],[4.738753134749066,53.08817041307779],[4.73841622780868,53.088284995580636],[4.738385301589399,53.08829493840844],[4.738373727314038,53.08832014571955],[4.738395650693537,53.08835171516059],[4.738428887796962,53.088357735295396],[4.738501200237335,53.088339067270105],[4.738605289316934,53.0883024821109],[4.739463315715049,53.0879874151406],[4.739662381738064,53.088208724455704],[4.739733585834718,53.088276334879296],[4.739791789189677,53.08833595817863],[4.740056775642138,53.08861814490267],[4.740198907091741,53.088773124293176],[4.740289637341197,53.08885270157294],[4.74045183988969,53.08898406556487],[4.740700098820062,53.089253436051706],[4.740910902238133,53.08946518232533],[4.741036645113816,53.0895633336024],[4.74113119320704,53.08962128314147],[4.741339337968829,53.089817351401955],[4.741569480080766,53.089991773362954],[4.741760471996987,53.09019324793292],[4.741838866155428,53.09026261213633],[4.742219414798299,53.090614915306695],[4.742425190625965,53.09077615644949],[4.742539284874828,53.09088119866716],[4.742744546406787,53.09107724884488],[4.742835403702606,53.09118913002115],[4.743154042314538,53.09153895831541],[4.74341620426372,53.09179797364712],[4.743669461710979,53.09208994667986],[4.743795359805614,53.09219970587195],[4.743867553723343,53.09230917652227],[4.744241669581026,53.09267985099036],[4.744357005038673,53.09278436785747],[4.744558758168218,53.093042103813616],[4.744786243846784,53.093266917353816],[4.744919880035667,53.09343120880559],[4.744962021222664,53.093469562971016],[4.745169388848672,53.09368121999174],[4.745301160268863,53.093847630709426],[4.745330897909428,53.09388996204074],[4.745450650785833,53.094006066633405],[4.745460268538651,53.09401790798105],[4.745550575939835,53.09408910371317],[4.745633692969662,53.09420543422489],[4.745730074587251,53.09430809588452],[4.745829159520885,53.09444808241155],[4.745831006062578,53.0944595047026],[4.745912857482725,53.09456459554425],[4.746073589502578,53.09476778789764],[4.746305531864569,53.09504981902285],[4.746450860340336,53.09519441964155],[4.746743279389069,53.09543116864244],[4.746900010164152,53.0956419496757],[4.74710722679648,53.09582671578316],[4.747319689543901,53.096024350730076],[4.74750623698105,53.09617544247927],[4.747719314303092,53.096344773626996],[4.748074233052399,53.09663982241412],[4.74828681967404,53.09684279399],[4.74856305780084,53.097060527248146],[4.748790846227739,53.09724931792626],[4.748868761779368,53.097325441294565],[4.749115245018885,53.09751520259355],[4.749312220628889,53.09769406917653],[4.749598263391961,53.09797275117639],[4.749777480858746,53.09820624798639],[4.749842510302693,53.098287819608394],[4.750033271799799,53.098486681964886],[4.750399617195192,53.09889453328012],[4.750691163369817,53.09913287607193],[4.750869288905986,53.09931632157577],[4.751189869073349,53.09961648909784],[4.751280011190408,53.09969733951528],[4.751606446542299,53.09995285792723],[4.751835538842938,53.10014018471683],[4.751959199903519,53.10024562765531],[4.75210464161031,53.10039413959398],[4.752279356689542,53.10053591412585],[4.752507759626401,53.100769766063735],[4.75260462898879,53.1008718044068],[4.752777459791607,53.10106305476967],[4.753061026805507,53.101369104626535],[4.753640799467711,53.101982554042316],[4.75379257329183,53.102173700476236],[4.753881985091104,53.10230528957706],[4.753977858808347,53.1024749959192],[4.754060239690887,53.10260655669692],[4.75416993208158,53.10279324775695],[4.754320847520309,53.103043607416595],[4.754382704298609,53.103136994345704],[4.754423695060491,53.10321757366095],[4.754497860026508,53.1033249989341],[4.754526639751187,53.103371618103125],[4.754689237134412,53.10352762183247],[4.754768434417713,53.10359309036925],[4.754861235942156,53.10364615792603],[4.75500024647735,53.10374561292689],[4.755160016780397,53.10388064545736],[4.755205162640469,53.10392622751968],[4.755234100557744,53.10395283526941],[4.75541860707462,53.10416115383934],[4.755567193208392,53.10437129563785],[4.75575877670057,53.104576811340664],[4.755918271432981,53.10476503013113],[4.756208774176931,53.105029592733324],[4.756505575161293,53.105292552277206],[4.756558243596071,53.10535190416667],[4.756755292808927,53.10554360834352],[4.756903861304751,53.10570741589923],[4.757257315893376,53.10600794585964],[4.75729750749588,53.106051551055174],[4.757658994166924,53.10633506637879],[4.757994972487394,53.10654090554574],[4.758456870016857,53.10680921095914],[4.758498472919882,53.10685036094751],[4.758746695363029,53.106990579243785],[4.759170796559024,53.10727204591768],[4.759373817875289,53.107421865734146],[4.759430544504565,53.10744887861944],[4.760072807966843,53.10781916216194],[4.76055861813686,53.10815304812492],[4.760699320170368,53.108293418808046],[4.760795591911187,53.10842279171529],[4.760899849346394,53.10860313946048],[4.760986944282361,53.10876211834061],[4.761090892418714,53.10897746511071],[4.761311653451912,53.109280542143125],[4.761429823999223,53.1094149173016],[4.761714881872031,53.10963693328256],[4.761835835737116,53.10970372018818],[4.762265137822223,53.11002752711914],[4.762738406883656,53.110416989294094],[4.762925893003466,53.11074333443677],[4.762982816907384,53.11096053713216],[4.763015729381039,53.11117761471244],[4.763097721311624,53.111322645855445],[4.76321916781652,53.11152283229358],[4.763719425931072,53.11192836317676],[4.764052915445606,53.11212532048682],[4.764625130736854,53.112493147600176],[4.765030853609551,53.11285451825675],[4.765148325968,53.11299219277057],[4.765628181012143,53.11351184945231],[4.765707458050247,53.113572080941196],[4.765892015441805,53.11366952145933],[4.766076684168647,53.11375924322513],[4.766320252161223,53.113929641335446],[4.766387697266276,53.11398084295428],[4.766476841983681,53.114023763941084],[4.766891535399794,53.11417032644196],[4.767248425591069,53.11432263609756],[4.767381747076979,53.114415918234094],[4.767635137708711,53.11463327170477],[4.767786208870548,53.114830811683255],[4.767942932238797,53.11508238694673],[4.768087459542155,53.11528761172569],[4.768421951220236,53.115663564169],[4.768725484178433,53.1159622014687],[4.769178962263938,53.116465163691004],[4.770035756788197,53.11725851960642],[4.770395516147746,53.117607611166726],[4.770860602817628,53.11808033436824],[4.770951897913361,53.11815362687811],[4.771395088548528,53.118528224351735],[4.771637127166374,53.11877184872041],[4.771829393149282,53.11893906917111],[4.772036250894963,53.11914229943718],[4.772195228275026,53.119337807235134],[4.772450063690907,53.11961818559435],[4.772672689322443,53.11988865733967],[4.772826954789021,53.12003547160996],[4.77286704774701,53.120076455838195],[4.773146685079873,53.12030318721392],[4.773413423578282,53.12050641623046],[4.773448231007018,53.12053781202717],[4.773648261056188,53.120675684787024],[4.77385513026853,53.12084126025058],[4.774520739307664,53.12143524581333],[4.77485368696711,53.121798761575874],[4.775044687958866,53.12202038964448],[4.775219957232907,53.12220949743699],[4.775385038803621,53.12235636347289],[4.775529193500645,53.12245768903345],[4.77571004189566,53.122633839709074],[4.775841873732722,53.122845432642215],[4.775964475779006,53.12313647785501],[4.776080819384405,53.123299314108614],[4.776315398629539,53.123488722583026],[4.776761471233842,53.123977733136925],[4.776896991918887,53.12415819796535],[4.776979926970705,53.12419663117823],[4.777260449586587,53.124387188192436],[4.777441966581068,53.12451791507909],[4.777720062860923,53.12468157241944],[4.778459150659234,53.12504227170629],[4.77876925995766,53.12523204979435],[4.778837798454993,53.12527788499409],[4.779100290172996,53.12546736658444],[4.779238400589172,53.125587734196415],[4.77931299537807,53.125663056048055],[4.779574645240383,53.12588521448721],[4.779944299766465,53.12618152414179],[4.780267930093237,53.12645979824664],[4.781207800122977,53.127348185702445],[4.781744398007178,53.127800746771115],[4.782114440719797,53.128070389870295],[4.782913924907617,53.128818825084174],[4.783721138578436,53.12959354176138],[4.784489330826521,53.13015403658638],[4.784536808830482,53.130194011460446],[4.784703022951659,53.130350907140055],[4.784817345351945,53.130451109645826],[4.784932478557611,53.13062313233564],[4.78497641843836,53.130658668130806],[4.785254989473228,53.13098349192389],[4.785386573268265,53.13112339087678],[4.785569977563675,53.13137600970644],[4.785795958836889,53.13176808906102],[4.78591892460595,53.13188652149597],[4.786086167531423,53.1319883540287],[4.786263443436657,53.1320756882705],[4.786475721399711,53.13217314516832],[4.786750300629786,53.1322709227547],[4.787165623501698,53.132489906643414],[4.787412619217893,53.13265180354868],[4.787712199088187,53.13287287516538],[4.787923744043685,53.13302388237253],[4.788091300798683,53.133137179748786],[4.788249879917605,53.13325578768622],[4.788767425632294,53.13380997823671],[4.788846192492489,53.13390676426257],[4.789047867593024,53.13422581227297],[4.789178191487447,53.13447273280111],[4.789299414986657,53.13462121108278],[4.789535011523762,53.13477468960017],[4.789745340277169,53.13488605014394],[4.790013358640042,53.13506163308333],[4.790166345222162,53.135172752131844],[4.790319027760111,53.135307098266075],[4.790586796355661,53.13550010248484],[4.790777864986664,53.13565206288823],[4.790920324964898,53.13582701000503],[4.791081865827211,53.13601947566396],[4.791560958549805,53.13664869293243],[4.791881498452193,53.13721969141316],[4.792032517731601,53.137476101640246],[4.792389811069283,53.13789056540044],[4.79269980292243,53.138118540918],[4.79298360704481,53.13834509182694],[4.793327463657466,53.13869329525728],[4.793427471824637,53.13881607189566],[4.793567495762883,53.13902094484905],[4.793643203050899,53.13914947779268],[4.794416786462117,53.139722081973794],[4.795794040333158,53.13940929740918],[4.796504026895607,53.139342446408726],[4.797027164694543,53.13915864457247],[4.797482294036462,53.138986646008924],[4.797983507000467,53.138664995035974],[4.798418999314665,53.138190967405855],[4.798562976213209,53.13772330700055],[4.798726497071115,53.137035343037624],[4.799030944212616,53.13661223127774],[4.799032168958007,53.136599054844154],[4.799046479186405,53.13654213592388],[4.799628534600419,53.13620956838493],[4.799782083905801,53.136102492614064],[4.799930219305307,53.13598247276683],[4.800040074396723,53.13590438077887],[4.800166133044331,53.135820188372044],[4.800313939210138,53.13573217722064],[4.800478131534482,53.13564144245648],[4.80064751390762,53.13556419836482],[4.800816772410538,53.13549651002687],[4.800961312691713,53.13545060661927],[4.801206588472336,53.13539002714039],[4.801468063968737,53.13533906673709],[4.801843752355485,53.13525890819773],[4.80228447996183,53.13520264866585],[4.802781750048807,53.135178682946346],[4.803237934495557,53.13518090598308],[4.803622018293576,53.13519568918276],[4.804191663314066,53.13524114160282],[4.804479288613258,53.135268374760834],[4.804977927617202,53.13533314589431],[4.805530656528898,53.13543073542848],[4.806034206430852,53.135547195392185],[4.806131542594007,53.13558361116133],[4.806316327438528,53.13565470518531],[4.806493594137249,53.13571116656952],[4.806665623700002,53.135758052923094],[4.807042932663754,53.135896350494335],[4.807327457333731,53.136033640969586],[4.807841738368179,53.1363961310291],[4.808029761216027,53.13652172271564],[4.808389448397707,53.13675652742864],[4.808740699451262,53.137012074894606],[4.809120231746287,53.1373789636341],[4.809444300185799,53.137651228382744],[4.809657310062583,53.137794905305114],[4.809818890357583,53.137942828944816],[4.810235596265023,53.13814926512837],[4.810388749374072,53.138256156997116],[4.810494531832647,53.13832573748601],[4.810577549878337,53.13838566888158],[4.810607347989882,53.13843636009482],[4.810606825101268,53.13846668613802],[4.810573342312534,53.138482814871445],[4.810462172716113,53.13846768061323],[4.810393838497997,53.13844432081142],[4.810272639986255,53.138393189737755],[4.810204655622842,53.13835186854896],[4.809928731850831,53.13817250115375],[4.809734972242378,53.13802891656733],[4.809571973002478,53.137925914960675],[4.809434328149219,53.13782977569953],[4.809381288633884,53.1378064971064],[4.809215244839409,53.13768663341917],[4.808853866498225,53.13735914985378],[4.808395449334236,53.136875620628345],[4.807995230718198,53.13660747893573],[4.807685308353714,53.13642289092139],[4.807326154627332,53.13621784640296],[4.807138032407898,53.13612595413619],[4.806869165751682,53.13601401658379],[4.80658314183504,53.135901987236736],[4.806298907849476,53.135804577979606],[4.805712605800236,53.135633805475216],[4.805145071329632,53.13552658741871],[4.804651640558331,53.13545567521999],[4.804239490260426,53.1354177268696],[4.803837896143705,53.13539275121518],[4.803376623723169,53.13537084255476],[4.802738378339872,53.135374473866676],[4.802390502164057,53.135382886576785],[4.802178745320781,53.13539140279392],[4.802004621407795,53.135413575039166],[4.801754170481066,53.13546121800967],[4.801506344899879,53.13551280285705],[4.801233951129376,53.13557661924804],[4.801070550237848,53.13560839555555],[4.800847010489947,53.13568592800251],[4.800622888044741,53.13577974248815],[4.800387843126755,53.13589597435056],[4.80031649438994,53.13594841955715],[4.800113446612921,53.13608951179585],[4.799954625845833,53.13620611966242],[4.799855488170691,53.136293804498905],[4.799707564515908,53.13639810430019],[4.799586705770459,53.136495235467294],[4.799493142042601,53.13658631886392],[4.79943783876226,53.13666130447262],[4.79937687499399,53.136749184147625],[4.799285880879037,53.13704640141262],[4.799272754002768,53.13720471322597],[4.799273830449983,53.137538322274025],[4.799309720374045,53.13769855661573],[4.799345172771116,53.13788181986616],[4.799392587108942,53.13799325298768],[4.799317777263326,53.13814554183131],[4.798576958190012,53.13882752821869],[4.798014690972609,53.13919077425366],[4.797590657160616,53.1393662256139],[4.79627951179531,53.139716441776784],[4.795343667505271,53.140148220568044],[4.795225308885538,53.14030492679019],[4.795136904740635,53.14039652464422],[4.79504807139711,53.140518421031096],[4.794987585528722,53.14069289055936],[4.7949744803273,53.14094332792138],[4.795020906791176,53.14108919297351],[4.795173784433492,53.141241415601414],[4.79533723634284,53.14132960224561],[4.796435709616275,53.14173698057439],[4.79678211848036,53.14190180036802],[4.797019084584024,53.14203416228227],[4.797083532532955,53.14208194341916],[4.797470671674133,53.14232468132149],[4.797979333471143,53.14266506370091],[4.798187884137583,53.142824789648],[4.798250619401483,53.14286901226493],[4.798410876919135,53.142987533540406],[4.79875072547907,53.143294509258745],[4.799152107353395,53.14355194062238],[4.799503804190572,53.1437496399815],[4.800061968835233,53.144269750526796],[4.801243983056271,53.14569222367388],[4.802366456787069,53.14647758617315],[4.803099676259127,53.1471611004769],[4.803517378216913,53.147467587605895],[4.803700799543416,53.14763085649181],[4.804273009296486,53.14862103384668],[4.805212183674896,53.14974246819572],[4.805419411575976,53.15001748220342],[4.805560997800347,53.15015516876231],[4.805727616723692,53.15031328476677],[4.805852889623114,53.150410311338305],[4.805986306085337,53.150527649531384],[4.806194850074263,53.1507062583171],[4.806554029715207,53.15097692933431],[4.806796083334035,53.15117395871929],[4.807176163371189,53.15149296548326],[4.807237245040126,53.15155067208035],[4.807755682957779,53.151975256842796],[4.808030559455172,53.15224043880962],[4.808249160254048,53.1525089248285],[4.808312320956635,53.15257234695514],[4.808869465497349,53.15323903280393],[4.808985198556241,53.15341920170441],[4.809246964880018,53.153700222584845],[4.809308627996685,53.153760725492404],[4.809602469010122,53.15395497023592],[4.809903246546257,53.15417968297167],[4.810178300060754,53.15443472446025],[4.810630646888549,53.154840592947544],[4.810941701769567,53.15520274718289],[4.811190853543182,53.15550332821918],[4.811344556696871,53.155665624310146],[4.811511093123565,53.15583312174659],[4.811913109302441,53.15632065915636],[4.812270739683423,53.156721025586066],[4.812615928971772,53.15704883287882],[4.812913630525832,53.157325686226955],[4.813193947170775,53.15768845080887],[4.813230637265115,53.1577277241354],[4.813487916115638,53.15813602615151],[4.813641277439727,53.15835146914671],[4.813797108244045,53.15872271250712],[4.813834763274708,53.15885072613082],[4.814013512540336,53.15916916067519],[4.814098871007144,53.159464791721604],[4.814228515583596,53.159787466187815],[4.814539221438127,53.160341583562044],[4.816312990461604,53.16193215220131],[4.817327108818263,53.16278162362402],[4.818714084801677,53.16398501117539],[4.819601549891413,53.16470471418719],[4.822115786384451,53.16702146768908],[4.822582954633803,53.16746958849825],[4.823341172461623,53.16813024859343],[4.823985061622856,53.16878082210801],[4.824339727394323,53.169105981131324],[4.824872706749348,53.169510599721846],[4.825679712017031,53.17018101336392],[4.827332212896074,53.17169443760503],[4.82844644830609,53.17258192793269],[4.829205263722971,53.17318358593868],[4.829817482948928,53.17377500503209],[4.830943775879923,53.17468723654299],[4.832123106127913,53.17559522032763],[4.832784985919774,53.1761469768354],[4.833672285038889,53.17692610535482],[4.834559239668924,53.17774397777082],[4.835936081733669,53.17916726082903],[4.836980381068481,53.1804469238807],[4.837945360069344,53.18155492252046],[4.838602162682493,53.18251884331852],[4.838874381259362,53.18292220434588],[4.839034037939493,53.18319756497644],[4.839112373883343,53.183452896515085],[4.839192327689037,53.183590294642016],[4.839355207698012,53.18361069227902],[4.839552302087017,53.1835138712517],[4.839653220302131,53.18326891103746],[4.839639458593564,53.18306273139575],[4.839593850688994,53.182807549559094],[4.839435047834247,53.18245413007614],[4.839179577514768,53.182021088403985],[4.83898856881507,53.18163775285207],[4.838538144894607,53.181125747098605],[4.83804160087049,53.18039787023958],[4.837737561934068,53.17992584329609],[4.837335625534396,53.17945337042898],[4.836885719646397,53.17891215726854],[4.836467686820952,53.17841995360984],[4.836016690779215,53.17795679104441],[4.835278934073179,53.17728395209024],[4.834585299881745,53.176662983845716],[4.833957246683408,53.176022660909865],[4.833361567429008,53.1754021324206],[4.833184489582212,53.1752148601451],[4.833050637621024,53.17508225861398],[4.833034384987679,53.17502826752363],[4.833079680050091,53.17500433356772],[4.833168671581364,53.1750625847321],[4.833266544958079,53.175166374006636],[4.833766561690526,53.17561966370234],[4.834427206082272,53.176260138825135],[4.835104589688616,53.17688103690193],[4.835797879772555,53.17752166240577],[4.836536119972666,53.17817483837741],[4.837019483323562,53.178657796706844],[4.837420169679581,53.179218446678206],[4.837886935183412,53.17973052738475],[4.838239432590939,53.18024208874289],[4.838833135900932,53.18102937396353],[4.839669093599693,53.18201377054912],[4.839939443144505,53.18257381550776],[4.840130348695188,53.182947599682464],[4.84046926637089,53.183344519924155],[4.839576017078136,53.18389307338612],[4.839019478596078,53.184226932319895],[4.839118756186617,53.18425940414694],[4.839953469936186,53.183756640375584],[4.840220614660608,53.18360060667255],[4.840310781524356,53.18365997907567],[4.840326452242441,53.183695994692286],[4.840317995621743,53.18372740562555],[4.840205149207121,53.18385381953718],[4.840122808274828,53.18389556784903],[4.840012213347454,53.183944484637166],[4.83995795705051,53.18398354925282],[4.839943270923378,53.184027288147504],[4.839950119001148,53.18404978483516],[4.839977973373786,53.18405552711976],[4.840010864720481,53.18405118781363],[4.840062645666303,53.184023342366366],[4.840128424538686,53.18400679210175],[4.840172927770041,53.18399801098913],[4.840194157149024,53.18400147656277],[4.840228263509101,53.184021851049664],[4.840392791957245,53.184152328394894],[4.840442555491296,53.18420142007288],[4.840480097049071,53.18424427559024],[4.840504708296074,53.18429493027856],[4.840518969838691,53.18434104848823],[4.840533636488218,53.184447254922446],[4.840519343775109,53.18450559942649],[4.840500346310063,53.184548192813395],[4.840476317386996,53.184572239901506],[4.84044738376098,53.18459625205409],[4.840403085867774,53.18461514325137],[4.840234144034675,53.18464807362621],[4.840081150978508,53.1846861319133],[4.840008674800307,53.18471443920617],[4.839968059723342,53.18473840605529],[4.839942873503068,53.18476131284897],[4.839919296677964,53.18478648331756],[4.839919156841185,53.18481624191607],[4.839930161347586,53.18485111395752],[4.839958280883697,53.184883256890885],[4.840006140772958,53.18491492463903],[4.840221455884876,53.185023737137705],[4.840285114141738,53.1850537901546],[4.840368304880415,53.18508337234321],[4.840804846282381,53.18521003754715],[4.841386696001916,53.185362075947225],[4.841556709838813,53.185411713203806],[4.841778405549533,53.185485734544784],[4.842307718367503,53.18568020953396],[4.84252242443026,53.18574413902089],[4.84273702626603,53.185807960716026],[4.843502473937939,53.18595238947305],[4.844978696052094,53.18611070620755],[4.845802021236346,53.18611442404599],[4.846199610497497,53.18614262040071],[4.846648650080073,53.18616935251383],[4.847110747970375,53.186237140382275],[4.84773630698712,53.18628881940448],[4.848245965454748,53.186327610137454],[4.849013066961381,53.186342283825596],[4.850023839886813,53.18629065110566],[4.851612244869021,53.186112418690996],[4.853537006743946,53.185781783416104],[4.855461209868177,53.18521860257529],[4.8563420029032,53.184993933497374],[4.85683998104189,53.18482315892513],[4.857391486664623,53.184698103024665],[4.857544170962939,53.18465553562812],[4.857696778078409,53.184609591728844]]],[[[4.826382066419352,52.435671295652284],[4.826432199854847,52.435650184539874],[4.82652525185073,52.4357222418328],[4.826922590711519,52.43553622267711],[4.827811387320426,52.43555110096533],[4.828308718536567,52.435415260577976],[4.829640937853402,52.43369927823567],[4.831161186380161,52.431766775387686],[4.831214312327601,52.43171618695792],[4.831267827551696,52.431636107395846],[4.831277322733657,52.431593182937505],[4.831238382787324,52.431555647645],[4.831072905009623,52.43146106006981],[4.830983216195139,52.43142503103761],[4.830950310012907,52.431411814857526],[4.830937795424631,52.43140678415632],[4.830811229007012,52.43136855248448],[4.830688783622699,52.43134944595129],[4.83052246467433,52.43133770709796],[4.830325356478797,52.43133678106889],[4.830177833237424,52.431566675548744],[4.829998225211471,52.43156302708722],[4.829858006092728,52.431567695615385],[4.829078675369352,52.43173395998583],[4.828840000061307,52.43178479057554],[4.828825723321084,52.43178809637218],[4.828402659766482,52.431622632449034],[4.828389139526535,52.431665262685165],[4.828330605484999,52.43178828630376],[4.828317136310614,52.43180030127537],[4.828267973941696,52.431844729904846],[4.828319338798014,52.43189805314209],[4.827669218330099,52.43203709718529],[4.82733957168873,52.43211587100124],[4.827212007703624,52.43215543407645],[4.826959177905137,52.432055087508836],[4.826898252820463,52.4320387951931],[4.826867483185048,52.43203864971698],[4.826846484812405,52.43220032526039],[4.826825176608514,52.43225808873246],[4.826780277658803,52.43227500686628],[4.826455458362216,52.432398452550586],[4.825992854322886,52.43259708176987],[4.825882725872138,52.43263952922585],[4.825577845275238,52.432511981044044],[4.825553458327984,52.43253236448432],[4.825566008866401,52.432675381365186],[4.825542400374987,52.43269802888334],[4.825484252245512,52.43275420286366],[4.825476227822812,52.43276175309466],[4.82554232465181,52.4327946438552],[4.82469090083976,52.43317004773604],[4.824390916648854,52.433054874164846],[4.824377276235264,52.43307110667522],[4.824376260297215,52.43324102127068],[4.824368237982791,52.43324884645859],[4.824318329059627,52.433297195709635],[4.824295417917796,52.433319276475224],[4.824705557287523,52.43348946520004],[4.824238917521494,52.4339237063464],[4.824102128850305,52.43387502746767],[4.823874080392298,52.43407476173457],[4.824454677421141,52.434302214518794],[4.825247809942879,52.434909839164106],[4.825428699164636,52.434995509434394],[4.825971059345783,52.43526770980672],[4.82635246462348,52.43559559653956],[4.826308909675613,52.43561421142851],[4.826382066419352,52.435671295652284]]]]}},{"type":"Feature","properties":{"id":16,"statcode":"WS33","geometry_g":"polygon","gag_id":"2","hierarchie":"2","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.33.33_Waterschap Hunze en Aa's_p","sde_id":null,"land_code":"NL","inspire__1":"NL.33.33_Waterschap Hunze en Aa's_v","inspire__2":"NL.33.33_Waterschap Hunze en Aa's_l","wbh_code_o":"33","einde_leve":null,"laatste_wi":"1899/12/29","admin_code":null,"waterschap":"Waterschap Hunze en Aa's","publiceren":"33","Aangemeld":1,"Actief":1,"KVK":1173230,"tnostatus":2,"CPT":831,"GMW":0,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[6.473602561010023,52.914837788968036],[6.47693451081084,52.91645599257404],[6.482463818316089,52.9142821921033],[6.489659943821521,52.91897406999403],[6.482299654500067,52.92230805190696],[6.488836950949969,52.92663747603172],[6.49569212866133,52.927477323569114],[6.503678402456315,52.92382266699489],[6.5089402082537,52.92793232451453],[6.509695643643616,52.927617261694735],[6.512124567563914,52.926588729341425],[6.51430279381201,52.926839022978676],[6.519826609008922,52.93085261499634],[6.520387112413709,52.93126648807705],[6.519388489675734,52.931690689250175],[6.514175545257733,52.93389739713243],[6.514059444619614,52.93394656468812],[6.514107497543824,52.93402807360907],[6.514196150039502,52.93417145301916],[6.51438724846372,52.934484224918194],[6.514490021063183,52.93465416251371],[6.514573580322808,52.93478972600031],[6.514582802730019,52.93480469233013],[6.514599839024233,52.93483249935491],[6.514870258498122,52.9352736752113],[6.515128601430916,52.93569515693276],[6.515143991653646,52.935720256333525],[6.515157440947298,52.935742201618694],[6.515205181634844,52.93582010920654],[6.515269771661254,52.93592545699591],[6.51529656130363,52.93596915084843],[6.515719570154221,52.93665924581112],[6.513918988379884,52.937368171597065],[6.51390421888036,52.937373990774226],[6.513717787458036,52.93745114211654],[6.513498102470652,52.93753782751953],[6.513171035261371,52.93766612860325],[6.512841822496489,52.937794368112],[6.512618114667948,52.93788151217324],[6.51225879419543,52.938019685880725],[6.512045990221466,52.93810346382148],[6.511936282215285,52.93814666444065],[6.511672425715776,52.93824895955368],[6.511418682659358,52.9383466114103],[6.511145614706773,52.93845463593338],[6.510758494459096,52.938611750800064],[6.510737972349122,52.93862007716886],[6.510728697336527,52.938611707575795],[6.510295060659145,52.9382117537966],[6.510037397233384,52.93797250482387],[6.509887604898133,52.937833444882244],[6.509696572944476,52.93790212235582],[6.509654306012133,52.93791865141524],[6.509286346823687,52.938062550178785],[6.508430070412023,52.93839864740423],[6.507898861327,52.93860807128182],[6.50731739210287,52.93883525526828],[6.507227785355153,52.938871918110834],[6.50721851121872,52.9388757167448],[6.506977749138737,52.93897425286658],[6.50639307388876,52.939207303923475],[6.505223427871654,52.939667828062255],[6.504299829003003,52.940033328849324],[6.503727927906085,52.940259174299904],[6.503468697875046,52.940361542573804],[6.502849456079098,52.93979300986063],[6.502705205230749,52.93966056672389],[6.502605481282997,52.93956716081982],[6.501893129938772,52.93889993392852],[6.501767920454967,52.9387853130489],[6.501472614546628,52.93851497840782],[6.501076382936018,52.938143392373284],[6.500917134130869,52.93799641107561],[6.50069117458524,52.937787869998864],[6.500206256828299,52.937349929541874],[6.500058714386104,52.93721668708746],[6.499894860758457,52.937286488556914],[6.499575234761098,52.937411735082826],[6.499349996247724,52.937498715618254],[6.499091067218154,52.937602725330784],[6.498864274999868,52.93769477013047],[6.498833518676738,52.93770725185871],[6.498820488851757,52.93771254070076],[6.492671396651337,52.9403049095823],[6.491765881299978,52.94068182840194],[6.49114029053427,52.9409422244197],[6.49075005796811,52.9411046497717],[6.489805512598901,52.941512874415594],[6.489695704672922,52.94141727730426],[6.488658928926249,52.94185409603574],[6.48876443200277,52.94195170194601],[6.489471822652316,52.942602326448785],[6.490860392880704,52.943878848112966],[6.492973102974497,52.94583309623902],[6.49348546857384,52.946307001738774],[6.492446308590882,52.946713507099844],[6.49232629942428,52.946760451357996],[6.491953395675444,52.94690426305814],[6.492109227839202,52.947049370615005],[6.4922456487172,52.9471761020138],[6.493128189524807,52.94799590091707],[6.493713095399001,52.948539250545004],[6.493726093819053,52.94855132554314],[6.495169358302053,52.94989196103457],[6.495383229048635,52.95009061266461],[6.496971822548076,52.95156610360807],[6.497751907164246,52.952276801924285],[6.498322501123798,52.95208086047041],[6.499426908619189,52.95315832838118],[6.492368253623411,52.9559001960652],[6.493535849816093,52.95694701867949],[6.493377893412747,52.956996555542524],[6.494786925909953,52.95837016360473],[6.493956886140111,52.95869544496401],[6.498528647683282,52.96286632279694],[6.499814355404688,52.96405052735288],[6.502041285489581,52.96609498293603],[6.502396251229348,52.96642178099668],[6.502474385673642,52.96649511359776],[6.502325105221659,52.96655337658724],[6.502158796639937,52.96661865535959],[6.50115343339281,52.96700395837829],[6.499936778340328,52.96746832900682],[6.499342165125329,52.96769699384917],[6.498998676930406,52.967830411839024],[6.498974474678235,52.967839812744295],[6.500076718391614,52.969247599529105],[6.500374819211139,52.969337470633846],[6.501464667565592,52.96965409784152],[6.50253155120973,52.96996331755285],[6.503451086247087,52.97022190560879],[6.503630200692446,52.97027360604209],[6.504246959162599,52.970451644120544],[6.50502863031191,52.97067879255726],[6.504862498212155,52.971467085696794],[6.504556908097041,52.972880925731246],[6.504847574462446,52.97295589648466],[6.50511129926095,52.97302120952196],[6.504920892615361,52.97329685999518],[6.504719248397453,52.973590688040815],[6.504597179586832,52.97377788702819],[6.505409862395031,52.9740069980177],[6.504405037877002,52.97567827306017],[6.504399539897856,52.97567694945031],[6.502011067133806,52.97514415111542],[6.501716758325744,52.97681031770851],[6.501625767403186,52.977183550378285],[6.501502755239927,52.97768270135419],[6.501391906147581,52.978133613505],[6.5013550232259,52.97828189183002],[6.501314626636338,52.97844007956763],[6.501246511021603,52.97871252533975],[6.501166802399907,52.979016659299724],[6.501120953997498,52.97921671409136],[6.501083028949822,52.97938311071948],[6.501183052492804,52.979411439999176],[6.501344184704505,52.97945844961427],[6.501538657801323,52.97951661551662],[6.501671089133939,52.97955453686623],[6.501812051914682,52.97959534420271],[6.501868353321131,52.97960938338538],[6.501789629505394,52.979762908567054],[6.501779899298336,52.97978240216605],[6.50250255823151,52.980568045636254],[6.503606541339074,52.981766534283594],[6.504351181465783,52.983718023627866],[6.504621537873359,52.98378217957302],[6.505003913987338,52.98385591889624],[6.505409463141484,52.98393549741654],[6.505768576263621,52.9840061177844],[6.506098287754363,52.98407180887424],[6.508579318840913,52.98455995128003],[6.509146831532568,52.98467154585651],[6.509238343346409,52.984687878875334],[6.509174110880962,52.98482054523796],[6.509124761740037,52.984921707363505],[6.509092357192805,52.98498928791298],[6.509081189979336,52.98500783397383],[6.509075581635802,52.98501383598247],[6.509067681319009,52.985025089914345],[6.509059535569325,52.9850383772023],[6.509053465147207,52.98505476348584],[6.509040151987224,52.98509231913063],[6.508940885461618,52.985324080846674],[6.508867737684831,52.985473186942286],[6.508786694713647,52.98563550600221],[6.508746644154066,52.98571327749868],[6.508709174633174,52.98578603699969],[6.508646674430001,52.98602826472994],[6.508599164482956,52.98620785647368],[6.508539865853689,52.986445497686496],[6.508498992791122,52.986608742735946],[6.508487846630561,52.986651256740224],[6.508553354526142,52.98673671925038],[6.508632124073342,52.98683923137286],[6.508573936189909,52.98699225894533],[6.50846181251201,52.987262992208635],[6.508371651891169,52.98748069222164],[6.508282678839097,52.98769035655889],[6.508201191324178,52.98789290483932],[6.508125733535731,52.98807575102752],[6.508037320575707,52.98829395646702],[6.507971355449606,52.98845163992507],[6.507897880926844,52.98863581537325],[6.507876203123576,52.9886875318086],[6.507818382514046,52.988825520288245],[6.507715511326898,52.989071720504725],[6.507648533020228,52.98906343329824],[6.507628789375159,52.989112201803984],[6.507497532579484,52.98943660266709],[6.507265310453914,52.98999760512925],[6.507104322730989,52.99040078497292],[6.506953887686458,52.990771395858424],[6.506836441469777,52.991096924572275],[6.506961544984334,52.99111765390373],[6.507214517478295,52.991154862402006],[6.507649977752384,52.99121850710225],[6.508113259499781,52.99128557398773],[6.508333828074738,52.991317107662994],[6.508497360816103,52.99134080911804],[6.508542553463363,52.991347368041986],[6.508605102294282,52.99135643324985],[6.508817789451304,52.991387258109334],[6.50897177918584,52.99140819959912],[6.509103012381982,52.99142859956926],[6.509393034582101,52.991470632226694],[6.509436372599648,52.991218105639824],[6.509471693932522,52.99100010124103],[6.510178158357551,52.991093688905636],[6.510947913599265,52.99119264477435],[6.511710819355612,52.99130017078125],[6.512322326940553,52.99138149116784],[6.512348555693753,52.991384982861724],[6.51267682528083,52.99143209365198],[6.5129473808923,52.99146590718172],[6.51334820810062,52.99151393247651],[6.513866420459316,52.99158348823581],[6.514483999737186,52.9916596987059],[6.51457799904956,52.99167309248486],[6.514835540814689,52.991709792474566],[6.514909747950349,52.99172037105629],[6.51540383377323,52.991791513802],[6.515867690847871,52.99185994728123],[6.516223379833262,52.99191249619588],[6.51622179617663,52.991656239222394],[6.516218394831741,52.991355172474385],[6.516219993883227,52.99116763559665],[6.516273087033071,52.99126627819646],[6.517018952827302,52.991382918326245],[6.517822022320057,52.99151074076484],[6.51868388233794,52.99164657492401],[6.519257736327218,52.99173856033828],[6.519682970069706,52.99180549350674],[6.52021274233081,52.99189061253981],[6.52082629207313,52.99198704919239],[6.522113681973035,52.992198429010436],[6.522307550211691,52.99222898623524],[6.522394725941175,52.992242726267754],[6.522748420709092,52.99230003786394],[6.522683017896567,52.99247346938032],[6.522615474914558,52.992657373009564],[6.522563995017582,52.99279018594461],[6.522514692774847,52.99292655497751],[6.522432567775716,52.993148180414174],[6.522574739320327,52.993090706628976],[6.522751394636722,52.99304251216196],[6.522972871546843,52.9930082078059],[6.523202812574204,52.99298891170551],[6.523484190286025,52.99297729538912],[6.523650003088621,52.99298393322854],[6.523789693347149,52.992996921360124],[6.524000872831974,52.99302174833895],[6.524188316904252,52.993046800704064],[6.524384680677119,52.99307176792398],[6.524605203688422,52.99310187915676],[6.524864091275579,52.9931369811045],[6.525267680327104,52.99332595472348],[6.52563542867827,52.99337170162212],[6.525957656501417,52.99341160813589],[6.526061853191096,52.9934051604187],[6.526256563771923,52.99342774979762],[6.52660372749612,52.99347112858535],[6.526911071467026,52.99350625853485],[6.526921513930034,52.99347218825694],[6.527253566490954,52.993504412622286],[6.527312236926917,52.993373685897495],[6.527429417093114,52.99340005037831],[6.527746748357909,52.993447413032676],[6.52925407577655,52.99362250323793],[6.53082533726528,52.99384044183559],[6.530865164534895,52.99384437455626],[6.530900554631078,52.993846093987074],[6.530932175396086,52.9938409744411],[6.530970564234327,52.993833246818554],[6.531008201487961,52.993822992050134],[6.53104831935667,52.99381247987259],[6.53161133492091,52.99389346502405],[6.531610498469794,52.993933024677766],[6.531621447601445,52.99394837744293],[6.531637175320958,52.993961932000595],[6.531656391303085,52.993975596952275],[6.531683696139587,52.993988735110904],[6.531707619154943,52.993995614763776],[6.531744276047114,52.99400132101813],[6.531926007523367,52.99402460063003],[6.532590944356929,52.99410133390474],[6.532612901909484,52.99410313659825],[6.533464583094397,52.99415523967562],[6.533610823497467,52.99416896239215],[6.533905302618479,52.99418631372766],[6.534033159182327,52.994192537400714],[6.534202551078836,52.99420078889799],[6.534500378159182,52.99421177981948],[6.53479675607974,52.994220339455524],[6.535094051390426,52.99422471060647],[6.535524680671898,52.99421707883017],[6.535714022811951,52.9942136961285],[6.535857151599669,52.99421050555391],[6.536010559486587,52.994205688240115],[6.536529086272671,52.99418861656406],[6.538542971533444,52.99411192735375],[6.538523519013725,52.99418399254691],[6.538522453939294,52.9941870853378],[6.538506790104062,52.99424190397659],[6.538476565333212,52.994347630275016],[6.53845381098253,52.994332050307705],[6.538391758370199,52.994334831722966],[6.538381843411744,52.99435022303689],[6.538363195309782,52.994358113439915],[6.538262514674451,52.994369687554894],[6.538154641303908,52.99438582432421],[6.538010496503746,52.99441707577828],[6.537993027876738,52.99442225867553],[6.537967800371811,52.994429745030395],[6.537924093838254,52.9944430710554],[6.537887822649856,52.99445819478479],[6.537805875923826,52.99449048290095],[6.537755218455012,52.99451470507089],[6.537671701556731,52.99455972477479],[6.53754496238749,52.99463077322401],[6.537459558207719,52.9946821737138],[6.537282417515157,52.99478379522256],[6.535905917673188,52.99563875870431],[6.534100911433641,52.9967633912752],[6.533304243539749,52.99725974259482],[6.533009208392056,52.99744664164458],[6.532927932131706,52.99749682192536],[6.532829031097721,52.997554252771316],[6.53263782816091,52.99767537780111],[6.53244872767437,52.99778869966639],[6.532590096209513,52.99787380884862],[6.532635881937225,52.99790136455027],[6.532722973789758,52.99795379577639],[6.532611592605811,52.99802552743001],[6.53249655747755,52.99809767143314],[6.532326984324567,52.998207624619944],[6.532191295392923,52.99829309609619],[6.53200992992252,52.99840954249551],[6.531888105111213,52.99848810468674],[6.53167134244898,52.99862032906294],[6.531644082645509,52.99863676653948],[6.531585695394528,52.99867154778246],[6.531502835913072,52.9987200167095],[6.531462470938895,52.998742825514185],[6.531426213454774,52.9987637886142],[6.531398980191131,52.998779542770386],[6.531279820689999,52.998854176674165],[6.531251507750565,52.99885940841722],[6.531094667243586,52.998972906419276],[6.530864349879297,52.999093450117115],[6.530567592192093,52.999272918167705],[6.530336731805905,52.999418836175884],[6.530082295094595,52.99957861230903],[6.529995277966898,52.99963395897021],[6.529938363079465,52.999670450800934],[6.529894359695855,52.99969829057996],[6.529849586073009,52.999726299469046],[6.529792650769844,52.99975975383378],[6.529583953063355,52.999887574489556],[6.529430444445694,52.999979566764026],[6.529415195618947,52.99998885217883],[6.529322647206399,53.0000452217685],[6.529298176381356,53.00006014920116],[6.529227342293463,53.00010328020064],[6.529094590023531,53.00018417258609],[6.529012189519255,53.00023445070696],[6.528772921697366,53.00038054473641],[6.528525656685111,53.00053360760259],[6.528379754684481,53.00062271294989],[6.528389307582187,53.00062854416242],[6.528219945965029,53.000731991725196],[6.527940950698238,53.00090112825113],[6.527768407111765,53.0009997705366],[6.527688434387335,53.001036508188],[6.527531894298231,53.001131366731755],[6.527425097979769,53.00119222936425],[6.527379033503148,53.00122282885834],[6.527343827473418,53.00124427493228],[6.527302479289657,53.00127123464192],[6.527151518839382,53.00136760318968],[6.526909922121776,53.00152080626044],[6.526660719523271,53.00167944651748],[6.526501086881254,53.001780399321596],[6.526330521460969,53.00188771098107],[6.526217065762265,53.00195951014307],[6.526102426440311,53.00207147411102],[6.526070367389523,53.002092539327236],[6.526036887369585,53.002114525750585],[6.525925122180277,53.0021587455813],[6.525819554369654,53.00220183683896],[6.52570271133863,53.00227405419267],[6.525119718204365,53.002629681472634],[6.524600945274958,53.00295360907912],[6.524341064584549,53.00310788838627],[6.524235010866454,53.00317072712067],[6.523838566841687,53.003405137331654],[6.523600998222847,53.00354688177309],[6.523524659216141,53.00359243414636],[6.523320202977238,53.00371520643253],[6.523255282925505,53.00375420649067],[6.522774387631787,53.00404061400641],[6.522480083911582,53.00421733289885],[6.522250882523717,53.004352919952176],[6.521965116147269,53.00453610795376],[6.521925284041469,53.00464885851684],[6.521888223037029,53.00474448064333],[6.521861621932097,53.00481673634017],[6.521834772806425,53.00488462673687],[6.521804140838364,53.00498170660801],[6.521750143969703,53.0051266209075],[6.521679144056771,53.00532510579682],[6.521635072138285,53.005449579456744],[6.521586036473757,53.00552939923218],[6.521561081371024,53.005602537914484],[6.521526235465033,53.00570032269779],[6.521509284915201,53.00574790749874],[6.521438845619545,53.005933688355476],[6.521370763087133,53.006130455779655],[6.521306145873523,53.00630472297844],[6.521285103758101,53.00636340045736],[6.521253298901729,53.00645215139244],[6.521167306452158,53.006695227373115],[6.521109453641219,53.00685241803452],[6.521047627735133,53.007026964126354],[6.520945734276895,53.00728714000346],[6.520832858440013,53.00760847700267],[6.520700654062165,53.00799033523774],[6.520621745443843,53.00820816218573],[6.520611799256002,53.008236439431236],[6.520556973997151,53.008392181095815],[6.520450540057793,53.00869391898142],[6.520299521204166,53.009138530787716],[6.520252819787444,53.00926931950132],[6.520230314030186,53.00933254898348],[6.52020321243451,53.00940868227719],[6.520143318729196,53.009580459417734],[6.520087764814217,53.00973581226251],[6.520035121511975,53.00992627631285],[6.520012139690662,53.0100193108384],[6.519993914874346,53.01005242051602],[6.519977106209062,53.01008097838559],[6.519961883331329,53.01011664784844],[6.519917854654502,53.01021912027197],[6.519872991625545,53.010329041738174],[6.519825552015826,53.010446455708546],[6.519786567997884,53.01054183455029],[6.519778174273585,53.01057255042082],[6.519766420855979,53.01061558321432],[6.519747786429418,53.01069878974533],[6.519740023316684,53.01074113768296],[6.519738296325171,53.0108115844283],[6.519738799821196,53.01083149464467],[6.519743904659888,53.010857589206246],[6.519746285250362,53.0108729073083],[6.519795369944942,53.010985174152744],[6.519814925200572,53.01100771681417],[6.519848768072699,53.01105421803342],[6.519903589189444,53.01113841830789],[6.519951023716464,53.01119473026599],[6.520072102775047,53.01130848081014],[6.520099244211806,53.01133680202848],[6.52013115957395,53.01136934679035],[6.520159375384157,53.01139829588622],[6.520221929146738,53.011484714408944],[6.520265782547397,53.0115499572101],[6.520272937718865,53.011564367314854],[6.520336191780526,53.01171311231528],[6.520347596763896,53.01178655306972],[6.52034852940403,53.01179261039259],[6.520346649800211,53.01184572283804],[6.520343639385741,53.011930929247676],[6.520297930708524,53.01204216192754],[6.52029577731756,53.012111651101215],[6.52026198464139,53.012227291257965],[6.520239736592146,53.012304474895394],[6.520217127278229,53.01235749616674],[6.520127912293289,53.012566756716645],[6.519991801825868,53.01289269802368],[6.519644238116078,53.01362888071471],[6.519476919471575,53.01398353339652],[6.519391530216358,53.01416886086585],[6.519375956483982,53.014198566220244],[6.51921175001141,53.01455158032222],[6.51884609106289,53.01531781286706],[6.518543851962273,53.01597840528267],[6.518392789577973,53.01629069086377],[6.518031471819596,53.01704674205471],[6.518030214038564,53.017049378119594],[6.51799478041556,53.0171269285146],[6.517959851593895,53.01719925274188],[6.517927266978668,53.017277486137225],[6.517884905552488,53.01736429558024],[6.517836951471461,53.01746700176078],[6.517758827227365,53.01764224770321],[6.517718191052611,53.017723217261384],[6.517678052294256,53.01780784874988],[6.51764228534198,53.017878356447824],[6.517584414722092,53.018009536822525],[6.517546221917415,53.01808591787657],[6.517518255060366,53.01814290742461],[6.517499880055881,53.018177321124554],[6.517343732795831,53.018521610489834],[6.517316924762963,53.01857561437057],[6.517268037066382,53.01867862565772],[6.51722516039227,53.01877553195021],[6.517177167376123,53.01887513769599],[6.517137977122972,53.01896710228005],[6.517089104076635,53.019065548002324],[6.51705601449824,53.01913248935872],[6.516731348430983,53.01978605352504],[6.51673789888909,53.019788076613075],[6.516870860093031,53.01982909502059],[6.516890796705228,53.01983524244845],[6.516960327060889,53.01985668437226],[6.51697858114518,53.01986231745403],[6.516167422065442,53.021591099001014],[6.515289125389902,53.02346282302225],[6.515265835083668,53.02351245249019],[6.514822575609973,53.024457008998574],[6.514405103484648,53.02534657248752],[6.514400258666423,53.02535689911557],[6.514393267411475,53.025355149658],[6.514324540746308,53.02533797639873],[6.514309814289964,53.02538800123822],[6.52067458430419,53.02700377463534],[6.520529172542569,53.028066162278584],[6.520660671331575,53.02803127840052],[6.520934276711316,53.02795869562598],[6.521023427223139,53.02797626464869],[6.521851390611777,53.02813938827967],[6.521966223367474,53.02816201522157],[6.522468891483313,53.029220777518695],[6.522635817257342,53.02957237670012],[6.52263846717788,53.02957795035951],[6.522640533768993,53.02958230734315],[6.522657060223108,53.02961715068883],[6.524388066004958,53.02918121639193],[6.526050313571012,53.028750960265924],[6.532744804568146,53.02706007416519],[6.534277573563094,53.031258081149545],[6.534360210674612,53.03126082049859],[6.535011519969856,53.03128240477548],[6.535371029364082,53.03129431301841],[6.535810303953021,53.03130886029013],[6.539752002950931,53.03143378748726],[6.540496154439622,53.0314584554782],[6.541204542235288,53.03148194510034],[6.541565965129828,53.03149391514367],[6.542931580279447,53.03153917007986],[6.5432481421128,53.03154757830925],[6.543404692568173,53.03155173592853],[6.543525090164797,53.03142467484618],[6.545530957437721,53.02716940214929],[6.545599919513876,53.02686285166613],[6.545599208709247,53.025617301846935],[6.545650631971483,53.02526197925767],[6.547298124374783,53.02204524691888],[6.547611214317404,53.02145735987863],[6.549142087893278,53.01906692654187],[6.549284458435897,53.01917236629195],[6.549971754270578,53.019702951202014],[6.550896306114723,53.02038788391139],[6.551228067948031,53.020620777752036],[6.551801184968427,53.02099771764329],[6.551964909601927,53.02111863296223],[6.55255861690349,53.02148035696607],[6.552990640109281,53.021101062801115],[6.553142493992279,53.021158205983895],[6.552686683860731,53.02155838355901],[6.552961361771279,53.02172573278373],[6.553832219498358,53.02221087479688],[6.554261933488491,53.022433772918205],[6.555263698063493,53.02291893023406],[6.555743329497822,53.023142458924426],[6.556490173726198,53.02346722646051],[6.5571370916658,53.02373327574685],[6.558403568553289,53.02421714737939],[6.563327539318927,53.02596011176099],[6.564353180226196,53.026314876733196],[6.564099286318577,53.0264795677446],[6.563807132266401,53.02666907362663],[6.563798770591297,53.02667460196011],[6.563283418310039,53.02701534113608],[6.563000287156988,53.027202527489216],[6.562277014811752,53.027675238863615],[6.562076694635175,53.027806160042125],[6.561590732436521,53.02813444363119],[6.561317416004011,53.02831908502932],[6.560903689517242,53.02856821878553],[6.560720967363813,53.02870582193344],[6.560437414605753,53.02889366215437],[6.560204832129322,53.029051911187956],[6.559586187930445,53.02945654611964],[6.559457271504161,53.02952945330013],[6.559426995111076,53.02954657351941],[6.559255101292464,53.02965486074336],[6.559067958982071,53.02978756176459],[6.558912833797033,53.02988810822421],[6.558492132168926,53.03017099357479],[6.558419069238518,53.0302201214867],[6.558270805250542,53.03031981803591],[6.558077212459957,53.030442380452186],[6.557287172348531,53.03096676861732],[6.55634586699441,53.0316050021651],[6.557143163727839,53.03240680971826],[6.558018032827699,53.03329405507637],[6.56054886334696,53.03584678090838],[6.56062017700961,53.03591870631423],[6.562411922715325,53.03454305727031],[6.562560210312184,53.034450722980694],[6.562709715265366,53.03440342609052],[6.562935362394418,53.034360042158234],[6.56318252546824,53.03434984521219],[6.563596370088385,53.034403253607984],[6.563739593051103,53.034409613307446],[6.563966353355322,53.03440738279501],[6.564130490482817,53.03437702877585],[6.564306145536457,53.034296073648754],[6.564481764166233,53.03416618400747],[6.564634814519578,53.03397970460147],[6.564669497413349,53.03399004774628],[6.56469883052411,53.034018418256856],[6.564755543504327,53.0340344228568],[6.564901796488147,53.034062523014356],[6.565007346279965,53.034082800749275],[6.565248435840383,53.03412202710506],[6.565593669946628,53.03418190351635],[6.565940834802028,53.034238174134785],[6.566008266177584,53.03424037647677],[6.566089470296611,53.03424302719811],[6.566581290398116,53.034248064823416],[6.568226631029334,53.03425482017238],[6.569039157131592,53.034252466066],[6.569741174763202,53.034250426068986],[6.570085325662417,53.03425159774606],[6.571104612829036,53.03425505740081],[6.57112177406168,53.034255112226376],[6.571191510180857,53.03425488933152],[6.571664010049149,53.03425336609223],[6.571667359061387,53.034338461504774],[6.57203796866934,53.03431916298787],[6.572283880110031,53.034263131728885],[6.572495111193537,53.03421132864683],[6.577000719094773,53.03431107099548],[6.577326310454277,53.03434123111049],[6.577520089843651,53.03440532637315],[6.577700717854411,53.0345068335722],[6.577791249515917,53.034625393952055],[6.577886853485597,53.03462552080576],[6.579434857433998,53.03463274944072],[6.57964369538211,53.034633723396105],[6.580038649021672,53.03463556427904],[6.580126968243188,53.03472525381815],[6.580781299681359,53.03545665242485],[6.582280211003753,53.03717850976507],[6.583687856933391,53.03884726767253],[6.58409774143939,53.039347145122285],[6.584117068365464,53.039382450098095],[6.584180587023606,53.039445271229525],[6.586304132977446,53.04207423921187],[6.586605867973578,53.04246018634778],[6.586802139800366,53.04270301313025],[6.587326175533344,53.04336556629732],[6.587577460460056,53.04368325813458],[6.587718081453876,53.043879280705035],[6.587975617525816,53.044213597672005],[6.589142032896683,53.04569393767851],[6.589185214076835,53.045743875515],[6.590076990078415,53.046906060476665],[6.59095793775643,53.04807938358911],[6.591351972714042,53.04862483686485],[6.591170154387269,53.04900076090055],[6.591202345249194,53.04903976907222],[6.589745163638472,53.05328469816932],[6.58718688707527,53.05780314081361],[6.586171430521346,53.059624385958216],[6.586341813866596,53.059650790622406],[6.586431326429611,53.05965289077155],[6.58652006675818,53.059641502111354],[6.586623630686075,53.059609922296296],[6.58668786798787,53.05957628765141],[6.586731466974924,53.05952563201019],[6.587538473096897,53.058086316749716],[6.588245827646078,53.05824971945386],[6.589084025868924,53.058452127186044],[6.589221883390882,53.05848484775228],[6.589998821284166,53.05866927957688],[6.590802486633912,53.05886409601981],[6.589387575914089,53.06059304988165],[6.589128689247093,53.06091410902072],[6.588984409211074,53.06109271615632],[6.589849779164496,53.061374586403495],[6.590779689996686,53.061671321705184],[6.592041135934396,53.062081955306844],[6.592937670945941,53.06236832460603],[6.593614773128391,53.062588248730414],[6.593878757618286,53.06215242901294],[6.594243922082763,53.061549537654706],[6.594516922774211,53.06109881498915],[6.594759725838908,53.060708770166194],[6.595105320021463,53.06014059182649],[6.59544607295473,53.06022398323604],[6.596494413859086,53.060480520450916],[6.59672090428039,53.06054038484219],[6.596736019030207,53.06050889481843],[6.59679729246773,53.06051717252798],[6.597009896083939,53.06004633948219],[6.597027377910627,53.060007621597826],[6.600288935341825,53.06075353043692],[6.600363569085274,53.0607930665899],[6.601240706978276,53.06199782466549],[6.600964104008818,53.06230129911556],[6.600700055804475,53.062592985987166],[6.600499758681622,53.062816076116604],[6.600350085369713,53.06298121757178],[6.600135730585055,53.06321656385273],[6.599923353477922,53.0634522940859],[6.599683292675009,53.06372356888866],[6.599668092802914,53.06373166727908],[6.5995977857716,53.0638061258569],[6.599597410796042,53.06381460428159],[6.599395992606897,53.06403908773592],[6.599197166359612,53.06426189997445],[6.598928612863094,53.0645539068114],[6.598695193142107,53.064812323893456],[6.598463878695716,53.065068760035075],[6.598265821881545,53.06528740187982],[6.597991773899793,53.065594155565456],[6.597963578426396,53.0656092152204],[6.597855585941899,53.06572673257068],[6.597756382455642,53.06583468875741],[6.59775481204813,53.065841507701954],[6.597760292323091,53.06584703311723],[6.597525347724374,53.06610744025147],[6.597277505614702,53.06638536687384],[6.597053217722962,53.066635950449616],[6.596978944783761,53.06671619005485],[6.5968162141482,53.06689719468655],[6.596791733368403,53.066894611238155],[6.596741048752938,53.06689721740441],[6.596700451527934,53.06690630898269],[6.59666786784773,53.06692563648918],[6.596580899675687,53.06700704659668],[6.596556976133299,53.06704000950658],[6.596543112341539,53.06708757327574],[6.596547778308196,53.067111539031714],[6.596561918350952,53.067126395232705],[6.596574224481146,53.06713968827467],[6.596590070810965,53.06714991696967],[6.596522013000214,53.06722998562234],[6.596540673896448,53.067235737387385],[6.596097014787851,53.06773575500887],[6.59566924625435,53.06824473205758],[6.595666213391552,53.06824833944999],[6.595545828373316,53.06840138788071],[6.595442990364306,53.06853304107044],[6.595351534589136,53.068653381644204],[6.595239729310161,53.06880223613383],[6.595151741153327,53.06892390754039],[6.595066322724393,53.0690430366217],[6.594978377830967,53.069166298121985],[6.594868031804369,53.069325867803656],[6.594773420835735,53.069466999355036],[6.594679930171601,53.06960766118961],[6.594578216793169,53.06976439350089],[6.594482970338144,53.06991010550926],[6.594369048631582,53.07008932004821],[6.59426211787931,53.070255972236],[6.594261818114042,53.07025646054906],[6.594167800808238,53.070413186741455],[6.594069840090093,53.0705864255078],[6.593979473196958,53.07074838101389],[6.593884078946687,53.07091952674857],[6.593806448327252,53.071066264777386],[6.593790777527951,53.07109674437998],[6.593717589899217,53.07123961813994],[6.593629329747352,53.07142002905503],[6.593542107176829,53.07160773574003],[6.593452668962009,53.071798430333374],[6.593378509013204,53.071969765994105],[6.593309881395173,53.07213669621647],[6.593257779862184,53.072265787016185],[6.593214150762815,53.07237651317868],[6.593155197896333,53.072538313170945],[6.593104376441175,53.072682902277656],[6.593058317000902,53.07281145578568],[6.592998189361094,53.07299493478462],[6.5929780985798,53.07305973459842],[6.592949129343262,53.07314656971205],[6.592907897686835,53.07328350416396],[6.592861165731473,53.07343785657401],[6.592818304780233,53.073593517993444],[6.592793436783548,53.07368781575477],[6.592762143462073,53.07381619341239],[6.592731732970623,53.07394842650556],[6.592699550635546,53.07408456873013],[6.592673300844274,53.074204897264636],[6.592655625209629,53.074287924941],[6.592626989844504,53.074450255003754],[6.592602077656137,53.07458813930491],[6.59257632957805,53.07476686820205],[6.592467157447366,53.07552479393293],[6.592444370664348,53.07592095635055],[6.592419120197941,53.0764815666143],[6.59238989298428,53.077438643882246],[6.59238624696871,53.07780292577934],[6.592368616057071,53.07833487188676],[6.592365696497783,53.07857803989065],[6.592392215319036,53.079126292835326],[6.592389105322198,53.07916424854851],[6.592382740896258,53.07918604276596],[6.592527365028922,53.07920952511977],[6.592526907849527,53.07926078158793],[6.59252635787508,53.07932267040364],[6.592344127018599,53.07931701007155],[6.592324753169579,53.07967009972697],[6.592316634647348,53.079874919269315],[6.592294309918146,53.08049642101098],[6.592277495175217,53.08119061546607],[6.592265320901125,53.08177888036866],[6.592247011962013,53.08256443157669],[6.592246725128168,53.08276214440461],[6.592250468163797,53.082976523145355],[6.592267477620735,53.08325747745532],[6.592310138959725,53.08359468260828],[6.592333278993881,53.08375614041178],[6.592363141680921,53.08396457649201],[6.592408895411317,53.08424108944114],[6.592475101258243,53.08455748661888],[6.592532292739995,53.08477982867013],[6.592619339126023,53.085083937637435],[6.592694285278043,53.08531993152148],[6.592762933102948,53.085514002400494],[6.592853402528179,53.08573972969236],[6.592926001005197,53.08593733742779],[6.593034005291394,53.08617952255373],[6.593102406463743,53.08634151279218],[6.593200684429321,53.086535491634365],[6.593352086531391,53.08682021419961],[6.593510804096868,53.08709095128109],[6.593682204540886,53.087392043580756],[6.593864133783693,53.08767981890904],[6.59407420732702,53.08802088957988],[6.594341669701439,53.08846303998437],[6.59465470998142,53.08898616853055],[6.595173822925645,53.089770620449706],[6.595352381642654,53.09005457211588],[6.596321190957286,53.09165578400506],[6.596706479663096,53.09229253707764],[6.596375014904181,53.09265246919636],[6.594551753051442,53.09414097604171],[6.594141560067078,53.094427876083046],[6.59375599548857,53.09468096534704],[6.590790965169396,53.09640071043957],[6.590580756012248,53.09648780207365],[6.590558928610879,53.0969117073877],[6.590509137318693,53.09728639001001],[6.590438709092772,53.09748441576932],[6.590247339563367,53.09797059966459],[6.59003431410377,53.09845185575349],[6.589763100335301,53.09902915854373],[6.589686319022495,53.099218088196864],[6.589613863168359,53.099620255448336],[6.589606456303811,53.09994515910743],[6.58962342347886,53.10026468745479],[6.589584641344127,53.10047495640413],[6.588823178252961,53.101827290065486],[6.588757834503748,53.10195728940261],[6.588477060508191,53.102948490183365],[6.588355151805908,53.103232805582415],[6.587885279198059,53.104133163042086],[6.587178159196998,53.10584124548553],[6.586948091236786,53.10646830518845],[6.58676896450983,53.10732425676461],[6.586670282310593,53.10756928988374],[6.586263793022434,53.108417754843636],[6.586174304299461,53.10855531649632],[6.585555027096075,53.109322649226144],[6.58546687739874,53.10930877495533],[6.584588788531142,53.10917056977696],[6.58376344376835,53.10904338820099],[6.582887866246232,53.10986690511177],[6.582784647980994,53.109978301482165],[6.582684704594125,53.110105580558894],[6.582549375121951,53.11031665444519],[6.582525238705015,53.11045204667371],[6.582621158876424,53.11054784402404],[6.582062195142524,53.11075049232295],[6.581902282151964,53.11082510912234],[6.581691129359045,53.11107088557416],[6.58131101004526,53.11155913463996],[6.58212654444331,53.11165852740817],[6.582243548808761,53.11207711626377],[6.582418158074496,53.11237798918339],[6.58243308266421,53.11247789837662],[6.582403395330724,53.11257825273658],[6.582333355848609,53.11268633120294],[6.580580145752284,53.114722056616],[6.580432543577964,53.114960250470574],[6.580376206280517,53.115124321231676],[6.580336562461888,53.11530530850654],[6.580294628373535,53.116140356635285],[6.580288603998227,53.11790375053435],[6.580196259306413,53.11786002432946],[6.577858841639953,53.11675314927802],[6.57667448187174,53.11619359190127],[6.57255719884783,53.11934435605179],[6.573708921375231,53.11988910935455],[6.57503848242674,53.120517941817475],[6.575436789093029,53.12070631569161],[6.57548802964486,53.120903694221035],[6.575565173319431,53.12120078363344],[6.57564290406945,53.1215001767294],[6.575708057671961,53.1217510765832],[6.575810424693449,53.12214528622926],[6.575783037418836,53.122147301377154],[6.575795146894007,53.1222010294245],[6.575799229048126,53.12221915100494],[6.575809084215439,53.12224677713478],[6.575829290313858,53.12231929238002],[6.575720442578666,53.122440681512415],[6.573525784069372,53.12414677143757],[6.57213658613804,53.125209450255134],[6.573535809400377,53.12557569206468],[6.575492162215745,53.12602615363704],[6.574649062092172,53.12700549104107],[6.573909422265753,53.12756644130469],[6.573156103269628,53.12812062851021],[6.572574021091691,53.12850815128431],[6.572548681541368,53.12855908135108],[6.572570489669186,53.12862896691605],[6.572845308441988,53.12881008766827],[6.572889220164767,53.12887398859309],[6.572790121288073,53.128970919825655],[6.571554906007615,53.12996535553616],[6.570637207079129,53.130647375464726],[6.570435799330202,53.130759253421324],[6.570154490241841,53.13098201537437],[6.568766530858701,53.132313818114035],[6.568579695503797,53.132371746072714],[6.568196185953177,53.13279666777895],[6.56772790957181,53.13373813504437],[6.567703261590965,53.133839347246024],[6.567715946464384,53.13422026013767],[6.567030867666697,53.135616633315706],[6.566591855713193,53.13647546769155],[6.565849006047162,53.136426883761],[6.564901037441097,53.13634818065006],[6.564122267134358,53.136258148584105],[6.564261765764603,53.13680929306515],[6.564288981223071,53.137701168138356],[6.564305992850258,53.13780175902003],[6.564628996066948,53.138771108611344],[6.5647316034813,53.139455437782985],[6.56482596480853,53.14041801045155],[6.564916443641527,53.14096184931702],[6.564982477826717,53.14161441016391],[6.564997060699259,53.14259206385856],[6.564815213813408,53.14370659501035],[6.564856203016282,53.14402740490441],[6.56491599603557,53.14416047506451],[6.565265201186122,53.14490670070023],[6.565437776569071,53.1452223929249],[6.565473411361197,53.14527988932523],[6.566304678893281,53.14604837155925],[6.566522819005669,53.14626472894188],[6.56669469306603,53.14649889620106],[6.566812786297793,53.14677567501984],[6.567326652908082,53.14819960725172],[6.567500453709955,53.14879798009946],[6.567533555793796,53.148987235280885],[6.567518760600207,53.15026473512485],[6.567445932184051,53.15109946615218],[6.567402885867875,53.15135178406812],[6.567262610936666,53.15160161741049],[6.56714077571139,53.15172365502653],[6.567079295794289,53.15177542808021],[6.566655934795511,53.15187577119904],[6.565984795063976,53.15188099432444],[6.565735633641951,53.15199338642796],[6.565624935591385,53.15209721845652],[6.565522652605775,53.152421098443604],[6.565383208109611,53.15298583344741],[6.565159691978026,53.153481892250475],[6.56460253481002,53.15496770255423],[6.564219265631722,53.15592920602638],[6.563842839904363,53.156843308441964],[6.56365841125508,53.15760275349325],[6.563652584815497,53.15762674728769],[6.563687534971399,53.157638386942814],[6.563890462008584,53.157705969030346],[6.564341882303474,53.15785629437677],[6.565074406031521,53.15810022803416],[6.565238320329677,53.15815481920212],[6.565545998291975,53.158258043164146],[6.568303095512798,53.15918302603119],[6.568608785099446,53.15929064723655],[6.569222835380839,53.1594945738636],[6.56980941498208,53.159694293082374],[6.570390809906828,53.159883546348816],[6.570993794472916,53.16008352026543],[6.571567713227157,53.16028768751283],[6.571763638078362,53.1603481722644],[6.572139384641993,53.16046416866522],[6.572526006506443,53.16059502798325],[6.572860677149997,53.160709136727306],[6.573450890482731,53.16090327560391],[6.574039311412452,53.1610901951586],[6.574310590428524,53.161188958365074],[6.574462948742059,53.161229677353774],[6.574634028157396,53.16127041739806],[6.574789841003626,53.161325309520244],[6.574943918282725,53.16138178230111],[6.575303484898217,53.161517241319494],[6.575507220532849,53.16158625172375],[6.575693646439824,53.16164562006874],[6.575855579122869,53.16168695231629],[6.57601845975311,53.16171324041522],[6.57612012413832,53.16173621730675],[6.576216698827974,53.16177258965225],[6.576413763609425,53.16184741610004],[6.576768422937022,53.16200096447831],[6.577099866533089,53.16214972775522],[6.577213343993392,53.16219497201514],[6.577284814947067,53.162220997545326],[6.5773778311617,53.16224533532805],[6.577524879272135,53.16227921048066],[6.57771937515635,53.16233113557011],[6.577926030722369,53.16239240242421],[6.578155187373427,53.162462791415734],[6.578321484214174,53.16251635265798],[6.57850242582762,53.1625826189328],[6.578663910801434,53.162651468746965],[6.578821720999191,53.16271282412808],[6.578911003365273,53.16274594178],[6.579025604991086,53.1627775764833],[6.579124495687123,53.16279958990156],[6.579242119609431,53.162818244700354],[6.579349201913089,53.162840158504906],[6.579396649532621,53.16285544908723],[6.579485791444566,53.162885611129745],[6.579573683927114,53.162925239407016],[6.579605166940624,53.16294070667312],[6.579725067951251,53.16299967008321],[6.579742060351875,53.163008029300286],[6.579872484066927,53.16306357183952],[6.579996033344796,53.1631127302815],[6.580133301885348,53.16314966513629],[6.580326598968005,53.163194184039334],[6.580499788686392,53.16325078303633],[6.580702176865525,53.16332726594404],[6.580915496209007,53.16340482589191],[6.581123769944625,53.16347995542133],[6.581217973743791,53.16352169439789],[6.581271638217723,53.163545477539856],[6.581302312896382,53.16355870577326],[6.581383902797181,53.163579523714525],[6.581450428700593,53.16358384853998],[6.581514773619641,53.16358445664302],[6.581666152987262,53.163580459122926],[6.581842402600991,53.16357495545164],[6.581904581429487,53.16357184651713],[6.582152887645632,53.16354567406364],[6.582325015710801,53.16354145989865],[6.582383107340071,53.16354088074326],[6.582497729059445,53.16355844796431],[6.582579960971158,53.16357216828764],[6.582737499985033,53.16359846463903],[6.582766226957476,53.16360828804069],[6.582805613290974,53.16362236361378],[6.582904785774429,53.163679346870474],[6.582907792256421,53.16368154555333],[6.583014573646089,53.1637595533019],[6.583121631542238,53.16382806837576],[6.583221589243156,53.16386905642485],[6.583268169586753,53.16388642105228],[6.583385842894104,53.16393266908847],[6.583439433852724,53.16395372907068],[6.583466213859383,53.163968298672245],[6.583618855155865,53.16403319515219],[6.583638580394085,53.164039216998745],[6.583794105810728,53.1640867134257],[6.584028184036462,53.16413431511296],[6.584271818632077,53.16416301202022],[6.584401103492432,53.16418838413288],[6.584521397523718,53.16422388390858],[6.58472353611239,53.16430821684562],[6.584986716237506,53.16441691325526],[6.585299158638194,53.16457656491247],[6.585565918660452,53.16470427582414],[6.585670437769079,53.16475431066734],[6.585788803015155,53.16481349011749],[6.585903741766707,53.164870960318275],[6.586157154084677,53.16499767108324],[6.586309488889285,53.16507443850125],[6.586384334331755,53.165102608639835],[6.58642330583454,53.165117271312695],[6.586587388495935,53.16518138459032],[6.586706414133474,53.16521627481092],[6.586846472061575,53.16525628348768],[6.586963836818008,53.16530892957448],[6.587076463682042,53.165357336371784],[6.587249565533628,53.165438181349124],[6.587362424658069,53.16545772067567],[6.587484050879505,53.16549574737069],[6.587565734043732,53.165549891413576],[6.587617172701607,53.165616685805325],[6.587621127058084,53.16569458677548],[6.587717052592765,53.165699862892204],[6.587718047639539,53.16572010866806],[6.587721175277438,53.16573690920275],[6.587845474553952,53.1657995679294],[6.588100253640519,53.165918541472294],[6.588375348536032,53.16605124011815],[6.58857745744142,53.166145775669],[6.588837271052425,53.16623371149817],[6.589482807460311,53.16636300853084],[6.58959866797371,53.16638980378397],[6.58981688736509,53.16644027086617],[6.589451306788599,53.16724342371592],[6.589480322660455,53.16743334882892],[6.589479929995204,53.16756174932126],[6.589405307475198,53.16772418045699],[6.589279940091632,53.16781609588267],[6.589216547762222,53.16786995894624],[6.589146622505258,53.16793521953694],[6.589107789213024,53.167989222739244],[6.589075588996598,53.16806722546641],[6.589007499708947,53.16826436344862],[6.588956918939123,53.1684285338815],[6.588945838940307,53.16846629867079],[6.588919990851653,53.16855442843571],[6.588901232222264,53.16861834920827],[6.58888992690618,53.168657697883916],[6.588866243585237,53.16874031513892],[6.588840751809372,53.16886607705119],[6.58879912794152,53.169087905282254],[6.588796865414984,53.16910175828509],[6.588795923999567,53.16910124649954],[6.588787159116658,53.169165318701324],[6.588774380980608,53.169258835168726],[6.588744279901903,53.169443235641474],[6.588709267158883,53.16969477002668],[6.588678705332009,53.16991054716732],[6.588645669953323,53.17009271236224],[6.588605140848212,53.17025113823532],[6.588556580892575,53.170411738425344],[6.588500938467208,53.17057905061953],[6.588455187287429,53.1706932249843],[6.588388348767267,53.17084298170341],[6.588318968639508,53.17097823256829],[6.588204702719612,53.171171042614084],[6.588162943681795,53.171239408296344],[6.588123660477925,53.17130375912995],[6.588046749819886,53.171419377711324],[6.588004812855507,53.17148242506883],[6.587928102335173,53.17150122037559],[6.587911033990125,53.171477900446746],[6.587880973160488,53.17149031537499],[6.587826235311049,53.171508126712],[6.587753362249428,53.17153209568145],[6.587651498723383,53.17156393953273],[6.587557495116498,53.171601473975024],[6.587550208873929,53.1716046113391],[6.587445231192972,53.1716498312282],[6.587369865100891,53.17168423135104],[6.587351935620572,53.17169241784952],[6.587268067715236,53.17173358900834],[6.587165619441412,53.17178321370138],[6.587084295696402,53.171826075697176],[6.587036947540649,53.17185529753132],[6.58697515612943,53.17189600491233],[6.586930831744045,53.171929105596334],[6.586881464660849,53.17196751385592],[6.586810320161935,53.172024220938944],[6.586684305738816,53.17211993039971],[6.586612702937003,53.17216875174888],[6.586572010232373,53.17219637909725],[6.586526412947645,53.172217567199525],[6.586470748698081,53.17223978159513],[6.586414093690559,53.172258626929576],[6.586355964535044,53.17227284991868],[6.586290419231374,53.17228552946916],[6.586185176772346,53.172296458182615],[6.586144337683755,53.17229829543627],[6.586109769976517,53.172299225229075],[6.58606715343097,53.172298986363096],[6.586024252868073,53.17229713274222],[6.585977538113982,53.172294184936334],[6.585915927109673,53.17228853730755],[6.585755468608828,53.17227144942409],[6.585674805812526,53.172262640139266],[6.585576852687211,53.172252709556865],[6.585492930188948,53.17224392374463],[6.585407580295917,53.172235439708544],[6.58531976613339,53.17222653989633],[6.585229427400336,53.17221720693186],[6.585159756016277,53.17221158553749],[6.585071777340215,53.17220484396063],[6.585004188822096,53.172202607569716],[6.584996840960415,53.17220244732689],[6.584925488006403,53.172200913504305],[6.584867110598429,53.172199151172514],[6.584805731183425,53.172199701382745],[6.58475219776326,53.172200577588896],[6.584701584073617,53.17220319496016],[6.584645913480387,53.17220791174909],[6.584639452713151,53.17220846154872],[6.584579666969429,53.17221472016014],[6.584522666535323,53.17222056450492],[6.584460849650394,53.172228550785256],[6.584399990692232,53.172239268366596],[6.584332578774102,53.17224990756173],[6.584268023504449,53.17226217172281],[6.584209548088237,53.172275255831515],[6.584159112927671,53.17228974242436],[6.584097581006763,53.17230858142462],[6.584023807087784,53.17232767739325],[6.583978130459897,53.17234279938617],[6.583939165357124,53.17235940904419],[6.583887753307547,53.17238292776846],[6.583834907245338,53.17240975884628],[6.583765760560079,53.172445846969715],[6.583705808150644,53.172485590689675],[6.583623857910409,53.17254599829201],[6.583616353185255,53.17255152801528],[6.583505218362578,53.17263557380885],[6.583402924861687,53.17271646687226],[6.583314009258176,53.172779765521014],[6.583205427654416,53.17284475204239],[6.583106546591463,53.17289707851143],[6.582998076012629,53.17294228434016],[6.582868281060413,53.17298382952395],[6.582718971585401,53.173011972503566],[6.582545043320747,53.17302818396964],[6.582321611435765,53.17303038435119],[6.581858284073108,53.17302677913894],[6.581581597545195,53.17303457716891],[6.581405824939811,53.17305714086553],[6.581382679789772,53.17306119966156],[6.581281108384184,53.17307898914852],[6.58118629240398,53.1731107033254],[6.581167532917093,53.173119768843264],[6.581075728152162,53.17316414194489],[6.581059051850213,53.173175532190044],[6.580984286406204,53.17322656532596],[6.580918998465052,53.17329207124142],[6.580875126053441,53.17335750769816],[6.580846419645447,53.17341698784612],[6.580834506391678,53.17348883703184],[6.580832441842366,53.17351105434541],[6.580828460295418,53.173553789046444],[6.580830541040961,53.17360971854488],[6.580840338930324,53.17368136056993],[6.580854695946091,53.17372633008072],[6.58085836242282,53.17373779635285],[6.580863208545528,53.17375298928226],[6.580897087644126,53.17382683589547],[6.580942543080855,53.173914774964786],[6.580989308544108,53.173994891667824],[6.581069087677723,53.17412124788873],[6.581126397916121,53.17420949121094],[6.58116975225669,53.17429985051782],[6.581200431852978,53.174379129810646],[6.581213735996147,53.17446344384499],[6.581214158935591,53.174532995455124],[6.58119738903565,53.17465053565354],[6.581156470845998,53.174788401227055],[6.581104242080426,53.17495002298658],[6.581070417745801,53.17503220917726],[6.581032554913846,53.17509595924292],[6.580997731475609,53.17514355718368],[6.58097113467543,53.17517489743883],[6.580957268877024,53.17519006098039],[6.580947711133376,53.17519981666612],[6.580918862676191,53.17522598510727],[6.580916550240286,53.17522728421771],[6.580858591997354,53.17525984430912],[6.580786222603784,53.17529159525753],[6.580737574133123,53.1753092078665],[6.580689417399335,53.17532187296529],[6.580656579521026,53.17533138406478],[6.580608131176359,53.175345409000144],[6.580516125841268,53.17536425284977],[6.580451148283838,53.17537279867994],[6.580381748903534,53.175376661559326],[6.58031070354019,53.175375616155144],[6.580216837638532,53.17537309033107],[6.580136713609628,53.1753633732825],[6.58005389009264,53.175352308096535],[6.579947528597253,53.17533163674666],[6.579801307309233,53.17530122496006],[6.57965532583934,53.17526756647188],[6.579492949487998,53.17523220163763],[6.579256213118278,53.175187834484255],[6.579115995163403,53.17516356289206],[6.579052427815266,53.17515433655298],[6.578997060877237,53.17514905463825],[6.578931726800329,53.17514628015544],[6.578875060939033,53.175145971662175],[6.578874390033977,53.17514605022239],[6.578785905422974,53.17515588020348],[6.578699137891365,53.175172666606805],[6.578635020088559,53.1751950601456],[6.578575940750469,53.17522498822121],[6.578511184419685,53.17526766165802],[6.578466907344676,53.17531262086228],[6.578436091359325,53.175355397383484],[6.578418110092788,53.175396599553046],[6.578402006438587,53.17544787494259],[6.5783979023623,53.1754933156821],[6.578404006319686,53.1755509755439],[6.57841741521925,53.17560938959224],[6.578452082975621,53.17568862091759],[6.578494678556344,53.17576079991611],[6.578516643905014,53.17579587179191],[6.578532382435767,53.17582099453466],[6.578572132260855,53.175878895219526],[6.578621317118088,53.17596276308385],[6.578636694516604,53.17600138717219],[6.578652938039052,53.17603506904569],[6.578665604530531,53.176075733050496],[6.578673893215388,53.17614699476389],[6.578680855173064,53.17631187337095],[6.578681604894013,53.17646570634765],[6.578676010780292,53.17657763525702],[6.578655711525746,53.176652550979924],[6.578610486076659,53.17674569641971],[6.578540943154651,53.176842785901435],[6.578490468796757,53.17689795244623],[6.578472361245598,53.17691774095479],[6.578363995025813,53.17700097238202],[6.578286156505087,53.17704667826144],[6.578200808714801,53.17708856751002],[6.578132630458043,53.177115170825246],[6.578053709688719,53.1771384119915],[6.577964261444192,53.17715849554224],[6.57787608418512,53.17717312955529],[6.577785944605528,53.17718494324485],[6.577692935006228,53.177191932636624],[6.577609079791863,53.17719349307592],[6.577505040721596,53.17719049096348],[6.577417444828553,53.17718384775707],[6.577337353778611,53.1771737959957],[6.577262035015105,53.1771605065994],[6.577135368851197,53.177133707751764],[6.5770861577717,53.17712336734288],[6.577015642661508,53.17712049044061],[6.576968228508489,53.17712817709813],[6.576933082583643,53.17713868959007],[6.576898507299348,53.17715146101436],[6.576865613751816,53.17716827765273],[6.576846752196126,53.17717916774159],[6.576778372783084,53.17721862300723],[6.576695249192452,53.17727347463285],[6.576690033955233,53.17727692327567],[6.576648715522256,53.17731320736411],[6.57660942093567,53.17735455773528],[6.57658739182495,53.17738735240455],[6.57657717123993,53.1774073319787],[6.57656729077256,53.17742662520221],[6.576555336075356,53.17746460401138],[6.576550297278438,53.17750332300763],[6.576552011823763,53.17755646129493],[6.576558591999867,53.17759560423315],[6.57656835443289,53.1776373306841],[6.576575348931649,53.177647461010125],[6.576603596892986,53.177699437450556],[6.576638522771571,53.17775927375587],[6.576679018730329,53.17782040277421],[6.576748229998847,53.177910767641556],[6.576775521490529,53.1780019437586],[6.576779320543338,53.178077033406346],[6.576772493433923,53.17813993490792],[6.576758836652361,53.17819762008661],[6.576734953155709,53.178253843060695],[6.576727258361077,53.17827211710457],[6.57670972152581,53.17831380880922],[6.576672674064752,53.17837980489427],[6.576632863177428,53.17844213491688],[6.576589670103583,53.17850332123815],[6.576542136074763,53.17856603337469],[6.576483051107942,53.17862101482215],[6.576427933133996,53.17867012464262],[6.57637810344811,53.17871408663307],[6.576317232756865,53.178747643864156],[6.57622590459839,53.17878547512683],[6.57612733570392,53.178811300228595],[6.576022813651343,53.17883169350626],[6.575901736233364,53.17885548595907],[6.575787278621866,53.178883939580096],[6.575707487067738,53.178913217743684],[6.575635382313101,53.17894897084141],[6.575572205917354,53.17898902083118],[6.575522012184365,53.17903883628448],[6.575493103526204,53.17908699395497],[6.575473055902358,53.17914244173913],[6.575469479579484,53.17920177921444],[6.57547440286818,53.17925306141851],[6.57548621312394,53.17929748156585],[6.57550006635326,53.1793307741296],[6.575543309905252,53.17940916633159],[6.57558915099468,53.179483003569054],[6.575658180165975,53.179565633433],[6.575738005058926,53.17965789763688],[6.575816195847488,53.179751651774126],[6.575871820841428,53.17982712631615],[6.575912691391614,53.17989423686561],[6.575947154565661,53.179947544724946],[6.575972897131489,53.179998683412435],[6.575993076134298,53.18005802802125],[6.576014410900803,53.1801175139384],[6.576029626576235,53.180175874296765],[6.576042661969964,53.180257782967615],[6.576054279324651,53.18033925636835],[6.576064750248764,53.180424191954394],[6.576075218326288,53.180516101101695],[6.576087610107775,53.18060996820627],[6.576101118225145,53.180689472774674],[6.576119103965638,53.18077514262677],[6.576147474401412,53.18086201255468],[6.576181082435295,53.18094513708457],[6.576219767763564,53.18104427016006],[6.576251122744017,53.18111289480127],[6.576286922012306,53.18118320077393],[6.576332408608577,53.18125980906867],[6.576361260732305,53.18130756485433],[6.576373917616964,53.18133810132259],[6.57641424121018,53.181384682925085],[6.576453742573346,53.181424748459676],[6.57646881965477,53.18144155648242],[6.576433471860288,53.18147424950448],[6.576383432982714,53.18152051405686],[6.576294824577045,53.1815960167467],[6.576161714893489,53.18169939642835],[6.575996732769838,53.18182261961984],[6.575888392906548,53.18190143592076],[6.575766543464169,53.18198403454581],[6.575672001322244,53.182052172705475],[6.575551491120621,53.18213890061019],[6.575491927405666,53.182178303599486],[6.575420520913261,53.182225525344386],[6.575337605674677,53.18228020305288],[6.575299079669801,53.182305621178934],[6.575198445015114,53.182367672538874],[6.575027928628646,53.182470406003226],[6.574898799409192,53.18255277926307],[6.574781456304328,53.182626372663584],[6.574652665601103,53.182699854639814],[6.574607791478281,53.1827234751886],[6.574578223233871,53.18274499409574],[6.574535371495361,53.18276217822578],[6.574480274270231,53.182777964861565],[6.574479101649223,53.1827782999857],[6.574428374587053,53.182785434255905],[6.574399166139599,53.182788446338755],[6.574373522965458,53.18279109061784],[6.574322195627183,53.18279270408417],[6.574281566116626,53.18279001493105],[6.574277980629338,53.18278964603153],[6.574239605326991,53.18278569441166],[6.574152627283889,53.182772518437126],[6.574073744446276,53.18274850543061],[6.574010056353449,53.182724333006036],[6.57391123274948,53.18268614782075],[6.573834375381894,53.18265688446744],[6.573673603830254,53.182578854825756],[6.57350845979287,53.18249955619682],[6.573395173137544,53.18245707433512],[6.573318352476899,53.18242912232099],[6.573213331377038,53.18240274322957],[6.57293696529997,53.18233875145641],[6.572343266945587,53.18229125862482],[6.572260534121314,53.18228555204901],[6.572028486851248,53.1822862723682],[6.571867837715491,53.18229177766322],[6.571719328112505,53.18229591370646],[6.571669802372619,53.182301570145086],[6.571636129049549,53.18230541647032],[6.571503926517756,53.18232545005922],[6.571400605627142,53.182345297144096],[6.571313320993702,53.18236677410469],[6.571225862686605,53.182395028539034],[6.571137106656702,53.182431626208995],[6.571049987205813,53.182471182187385],[6.570984457198228,53.182509203962134],[6.570924012495096,53.18254774165151],[6.570868523983636,53.18258809059393],[6.570810818943326,53.18263546187192],[6.570758526201455,53.18268217760678],[6.570684659095378,53.18274740275676],[6.570630096818062,53.182795380967534],[6.570591053995797,53.18282608671721],[6.570563024141931,53.18284813761432],[6.570508753051351,53.182881608681285],[6.570458837224676,53.18290694889808],[6.570393243760774,53.1829355800697],[6.570298703922428,53.182971901666654],[6.570165013601692,53.18301586151064],[6.570002999192963,53.183069491470974],[6.569806583836756,53.18313432514546],[6.569588239950233,53.18320529681148],[6.569441688245496,53.183252743597855],[6.569242249495656,53.18332141641427],[6.568964381733155,53.1834127798803],[6.568894695849453,53.18343569020072],[6.568726095243562,53.183489841619206],[6.568593781100346,53.183534460110145],[6.568520960700996,53.18355764372511],[6.56842044019346,53.18359200076764],[6.56833750670615,53.183619022266434],[6.568267281504685,53.183644121246466],[6.568198537598883,53.18366978073201],[6.568151992687841,53.183690449737355],[6.567912266851526,53.183788336726565],[6.567676821300676,53.1838841321708],[6.567609760015318,53.18391501387381],[6.567566870284946,53.183929850379336],[6.567515487365603,53.18395032411686],[6.567460337320306,53.18397803308914],[6.567409779239394,53.184004070287656],[6.567360143577488,53.18403815028384],[6.567304315303757,53.18407061971118],[6.567259842050042,53.18410419953728],[6.567197760462188,53.1841492935639],[6.56704426546177,53.18425723984229],[6.566893222943425,53.184367372466184],[6.566754268290419,53.18446765362444],[6.566673037664038,53.18452925518343],[6.566437609616919,53.18470114554509],[6.56627747118173,53.18482511612752],[6.566131077047668,53.184948412178336],[6.565985206110486,53.1850854522229],[6.565918074905985,53.18515836343499],[6.565891408789141,53.18519547013128],[6.565854985207693,53.185258823399195],[6.565834962905526,53.185309164782446],[6.56582397667894,53.185389162623295],[6.565836607155319,53.18546838916204],[6.565867070042639,53.18555418029709],[6.565934400363201,53.185730192831585],[6.565986245817889,53.185886946723144],[6.566023982524713,53.18605848724374],[6.566039267264993,53.18617471197335],[6.566041823684532,53.18624657871897],[6.566035794899516,53.186338300119004],[6.566023869510507,53.186422261237],[6.566004912652033,53.18648975633785],[6.565957322388164,53.18659356867613],[6.565913450779863,53.18666364513026],[6.565823119375561,53.18677470721643],[6.56575394299435,53.18684404378386],[6.565654905411645,53.1869266142781],[6.565600959448201,53.186967403805745],[6.565472553576368,53.1870538573059],[6.565250163597272,53.18719425415214],[6.565145541906693,53.187264118255804],[6.565112185795797,53.18728637289387],[6.565052118631615,53.187327671609154],[6.564985978313434,53.18737451168943],[6.564959204938387,53.18739346650195],[6.564841028205565,53.18748754721103],[6.56475404416618,53.18756784180489],[6.564689957214727,53.18764287909346],[6.564653692072519,53.187701197936654],[6.56463107718073,53.187760820588],[6.564623301159272,53.18779944892126],[6.56462042396262,53.18784216293774],[6.564624631238182,53.18790880129456],[6.564645509341779,53.187983273942365],[6.564687044262495,53.18808009982983],[6.564867512949204,53.18843859565359],[6.564916567616071,53.18855880231409],[6.564932304281764,53.188636740252186],[6.564939357791606,53.18871997561374],[6.564928872878877,53.18881848048292],[6.56489823245249,53.18897352847148],[6.564863341244784,53.18910983645276],[6.564803239802011,53.189276406782035],[6.564748104715489,53.189394581080876],[6.564722527257193,53.18944982942792],[6.564760200964272,53.189459704107605],[6.564692692674046,53.1896015444172],[6.564681606770361,53.1896241194403],[6.564623935953189,53.18974150977657],[6.56452820078376,53.18993476010995],[6.564381641171536,53.190157265927574],[6.564258514672959,53.19033371056589],[6.564156118932248,53.19048573308771],[6.563680482838266,53.19118951100656],[6.563411830056348,53.191590165566886],[6.563213437989906,53.19188514167365],[6.562963196640692,53.192257190367506],[6.562842223807226,53.192429622248675],[6.562841314236961,53.192429739002],[6.562795821524205,53.192493970824856],[6.562720158578216,53.19263127069638],[6.562604051352166,53.19282314624623],[6.562516326408796,53.19297805182507],[6.562438639814284,53.193124645341626],[6.562369095285544,53.193257562508954],[6.56230189054541,53.193403918417324],[6.562237715622231,53.193551107294965],[6.562192653665525,53.19366818398624],[6.562129950148103,53.19383872316076],[6.562069191367234,53.194016423418404],[6.562029947619315,53.194143355092656],[6.562024376716455,53.194161373584784],[6.56198208826537,53.194299073872386],[6.561951677687609,53.194411315998686],[6.561930076434696,53.194520650085124],[6.561901068608784,53.19465535357083],[6.561889755790663,53.194711000652],[6.561881628395448,53.19475115084695],[6.561867853384337,53.1948423185287],[6.561834629872655,53.19505268426788],[6.561822720709642,53.195149198573326],[6.561812796579334,53.19525379022774],[6.561807655609722,53.19531961241516],[6.561804491021917,53.19536012737123],[6.561798277493943,53.19545202975503],[6.561792622057527,53.19555291312132],[6.561786898576148,53.19566121097208],[6.56178594049195,53.19574055274077],[6.561786379349691,53.19586582854739],[6.561788792791432,53.19595140084966],[6.561791886306462,53.19602344188289],[6.56179750874331,53.19615940572314],[6.561810732552925,53.19629700254305],[6.561820570459967,53.19639201877477],[6.561822374742308,53.1964094168429],[6.561840406993329,53.196525695637156],[6.561842710986402,53.196540554632165],[6.561864125025925,53.196688783068396],[6.561888947744478,53.196819805010584],[6.561913375414959,53.196944540299086],[6.561947365012309,53.19707806952576],[6.561968452210715,53.19717401797696],[6.561995645923355,53.19727164998363],[6.562070194174823,53.1975259731235],[6.56210145028235,53.197609519493],[6.562153122094998,53.1977587544878],[6.562228374407272,53.19794252701429],[6.562277432800366,53.19805667750824],[6.562340381072265,53.198195692188285],[6.562388800234511,53.198301716162156],[6.56244053342516,53.19841128424872],[6.562496867443346,53.19852163398351],[6.562556029967941,53.19863142577385],[6.562597966896449,53.19870924182336],[6.562675802019906,53.198846951181956],[6.562768568218551,53.19900320595665],[6.562881926126114,53.19919409926625],[6.562950487821753,53.199307707828126],[6.563029434397882,53.19943997824077],[6.563091252318458,53.19954385760369],[6.563164965305075,53.199666348061605],[6.563223777827435,53.19977030174921],[6.56327620776224,53.19986902497173],[6.563333164183964,53.19998835462757],[6.56338163319112,53.20009439565403],[6.56341786008663,53.200177308782116],[6.563457519458503,53.20028627587356],[6.563489548212207,53.200393655286334],[6.563513752799865,53.20049673501976],[6.563536268808866,53.20059715334611],[6.563554754131938,53.20070399156519],[6.563567796896654,53.200798356057796],[6.563575933002121,53.20086803798812],[6.563580186089463,53.20090445425779],[6.563587246382014,53.20099895829051],[6.563591996348401,53.20110150986625],[6.563592663564994,53.201171157199184],[6.563589146339272,53.20124542865027],[6.563577360582316,53.201340342155376],[6.563566415271959,53.2014215880305],[6.563540977170913,53.20160662558101],[6.563532655761152,53.201642383335184],[6.563301315077331,53.20159821613042],[6.562993222109981,53.202323074453005],[6.563338922234255,53.202390806793474],[6.563314350729582,53.202487406534345],[6.563286545679793,53.20258821935599],[6.563293070851583,53.202653702421216],[6.563314837759195,53.20266876594596],[6.563284696553588,53.20275522337349],[6.563276043036657,53.20277107940238],[6.563228591772582,53.202952989655614],[6.563204391741783,53.20304714409719],[6.563201889762095,53.203065213379176],[6.563209947756753,53.20306763261066],[6.563199403982868,53.20309653748803],[6.563189956678972,53.20311843118529],[6.563178396878293,53.203145198263634],[6.563128600362138,53.20327391379953],[6.563115975482099,53.20333527109462],[6.563102908473304,53.203382020785575],[6.563086066622365,53.20345507481152],[6.563054155489588,53.203583812679774],[6.563029380511983,53.20368437103487],[6.56301039355654,53.20374899882422],[6.562991095691947,53.20382916719144],[6.562966894668684,53.203923321560985],[6.56293181332896,53.20406099599447],[6.562899487350609,53.20418882124018],[6.562864819785761,53.20432741718589],[6.562852818075675,53.20438419422896],[6.562844387598545,53.20442038431282],[6.562828548308768,53.20447584201009],[6.562810735285932,53.204541833165294],[6.56279654259933,53.20458904315256],[6.562781200464698,53.20463581508011],[6.562774196953312,53.204656228980475],[6.562738077619097,53.20474640225607],[6.562712696999075,53.20480105478573],[6.562697051746983,53.204837782844976],[6.562643005654674,53.20493913113025],[6.562556348745098,53.20509567001029],[6.562486155554609,53.2052296353785],[6.562427677514981,53.20533536740973],[6.562407139186226,53.20537270950188],[6.56238796968951,53.205407548941146],[6.562329389459173,53.20551449508318],[6.562214213314975,53.20572708276999],[6.562096318526355,53.20594707480121],[6.562092913800213,53.2059534256003],[6.561981268299145,53.206155015005926],[6.561799593744837,53.206490190133046],[6.561632268078341,53.20679165120024],[6.561463836636856,53.20710980160172],[6.561356977390272,53.207305412425626],[6.561350486956654,53.20731940489469],[6.561336625077873,53.20734305801519],[6.561216373320716,53.2075614635041],[6.561202328821013,53.207557997392456],[6.561160378220138,53.20763152138781],[6.56105624339181,53.20781400304008],[6.560710912913407,53.20840593764835],[6.560482806800918,53.208794818043955],[6.560407964515696,53.20892394779528],[6.560326190969505,53.20904148090924],[6.560294373103835,53.20908251844346],[6.560238566611127,53.20914861997394],[6.560224159400078,53.209168216418774],[6.560142655333978,53.209259299756155],[6.560042826954069,53.20935913520784],[6.559970753439801,53.20942762425822],[6.55986245889487,53.2095216472259],[6.559757530311042,53.20960236426869],[6.559637253745593,53.20969671980265],[6.559472301800497,53.20982448287614],[6.559398523403085,53.20988867474479],[6.559391296658165,53.20989542225382],[6.559375645982695,53.20991003429537],[6.559335976913931,53.20995416769468],[6.559284911983037,53.21001305126798],[6.55926094508238,53.210064355154195],[6.559239704227635,53.210121797076674],[6.559219697270485,53.21019052285049],[6.559170922868081,53.2103499418547],[6.559116461913968,53.21034817333272],[6.559102275469929,53.2103936213564],[6.559093418872999,53.21042197909426],[6.559076413593802,53.21048990268381],[6.559067364983997,53.210526089451555],[6.559076630731298,53.2105282904785],[6.559071158293923,53.21060308384854],[6.559046773161563,53.2106141236911],[6.559040815676236,53.21064561631907],[6.55902532451888,53.210727436057546],[6.558995439680277,53.21091003509672],[6.558917890401456,53.21115499796921],[6.558898694751326,53.21121558304295],[6.558796750974525,53.21151770390303],[6.558668972538981,53.21188186737417],[6.558583123189462,53.21214991614961],[6.558400515926778,53.212720007611594],[6.558387363539866,53.21276113194064],[6.558321191731302,53.21275931560071],[6.55831575261056,53.21277405246346],[6.558312686280221,53.212790725199135],[6.558312090933858,53.21280798489003],[6.558378758039623,53.21281150381572],[6.558330376237755,53.21294695175144],[6.558325047454002,53.21295857824379],[6.558318925707156,53.21297243211566],[6.558312625211633,53.2129824505412],[6.55830455092132,53.212994409368854],[6.558293902326494,53.21300694149365],[6.558285171097039,53.21301620182727],[6.558274153326175,53.213027263784795],[6.558262134276684,53.213038389432704],[6.558250774219946,53.213048421293415],[6.558238312744763,53.213058688563194],[6.558222352825514,53.21307133542651],[6.558205428493153,53.213082643741245],[6.558176794009255,53.21310045567064],[6.558156170324527,53.2131128065596],[6.558130289472595,53.21312671846672],[6.558111965093134,53.21313608139754],[6.558087928229146,53.21314788146916],[6.557966070879677,53.213193202814224],[6.558034251529339,53.213316711469815],[6.558058056544408,53.21331292953617],[6.55808369522503,53.2133094172675],[6.558123700412946,53.21330627700968],[6.558161973883004,53.21330552604753],[6.558193526890139,53.21330647618897],[6.558225601647196,53.21330900283499],[6.558235105811756,53.213327170423966],[6.558253560900044,53.213362423645634],[6.558346534066341,53.21334503509751],[6.558355256246529,53.21334925444029],[6.558363728869192,53.21335365594632],[6.558395173816266,53.21337216740255],[6.558423565989717,53.21339237832362],[6.55844832384455,53.21341426293637],[6.558468805992357,53.21343768641805],[6.558714356550157,53.21376228593186],[6.558931933355227,53.2140532794295],[6.559015876445724,53.21427489079903],[6.559064376678938,53.21439181532954],[6.559184555262262,53.21468153996279],[6.559188973346291,53.214697618392755],[6.559189129070825,53.2147077804802],[6.559188266027394,53.21472675019612],[6.559186735620428,53.21478847469339],[6.559185181624168,53.21495425283821],[6.559182562683274,53.21514977734099],[6.559189789500239,53.21514962587197],[6.559205168288639,53.215300518890814],[6.559221583417601,53.21544490461841],[6.559223364800343,53.21547527019914],[6.559221603359457,53.215625108480936],[6.559218865697306,53.215761027389306],[6.559215563042287,53.21608926050469],[6.559211621771565,53.21633595735172],[6.559208353690215,53.21647495475299],[6.559207946186749,53.21649802678662],[6.559206331392455,53.21653013294437],[6.559210059462875,53.21655112467192],[6.559219716919366,53.2165605469206],[6.559233560266722,53.216570296721954],[6.559243016689138,53.21657893013049],[6.559248256208714,53.21658774851246],[6.559220633828373,53.216636886298],[6.559212078770215,53.21665211192364],[6.55921489593557,53.21666877212374],[6.559213316018975,53.216693329375296],[6.559220991408658,53.21678647017779],[6.559222891877527,53.216822882419585],[6.559224718322284,53.21684662458107],[6.559228181090678,53.21690255796244],[6.559229360319789,53.21692230750404],[6.559230233781373,53.217018579097974],[6.559229562338894,53.21704130323682],[6.559226998995825,53.217154385977125],[6.559225309922385,53.21717381306578],[6.559213459906586,53.217280111928716],[6.559209301540266,53.21730012927813],[6.559184114774892,53.21742365949094],[6.559177307478469,53.21744426885392],[6.559119427521524,53.21756964605819],[6.559106530981813,53.217590413739686],[6.559048376273966,53.2176664583453],[6.559023133387711,53.21769736641205],[6.558948866158731,53.21777718084736],[6.558933251613102,53.21779489272175],[6.558811412605491,53.217911494570586],[6.558791624601927,53.21792934602647],[6.558740338623047,53.21797050117281],[6.558643389437361,53.218039870031085],[6.558622210245422,53.21805556033546],[6.558479770450356,53.21814240235479],[6.558458173620585,53.2181564971301],[6.558389913635052,53.21819561614573],[6.558367763301818,53.218210282448716],[6.558235517632635,53.21828493798458],[6.558037435062047,53.2184047453516],[6.557951163042899,53.21845713302051],[6.557912879708042,53.2184831177294],[6.557882881856536,53.21850434867115],[6.557859279865364,53.21852292014146],[6.557795795753019,53.21859911493868],[6.557799789342299,53.21864430441733],[6.557670335319269,53.218772931209806],[6.557636830781321,53.21880622006514],[6.55757240981896,53.218817982561845],[6.557550972610411,53.218833019178994],[6.557527085960651,53.21885546648462],[6.557484397546465,53.21889849623877],[6.557482384229447,53.218900447946],[6.557333618899338,53.21904472825022],[6.557229650979991,53.219110515887],[6.557096439000361,53.219142449321346],[6.55696510862203,53.219155951180305],[6.556927065209464,53.21915986268456],[6.556472276096924,53.2191003662695],[6.556095353067591,53.21905007551284],[6.555607586285114,53.21898572992053],[6.555597304093034,53.21901356199205],[6.555516969241782,53.21900325503675],[6.555386102102159,53.21898847054085],[6.555244870625129,53.21896967103615],[6.555146953779227,53.2189641719536],[6.555112653227266,53.218961980649226],[6.555090175881259,53.218961273832086],[6.555051776465494,53.21896253722716],[6.554967404589195,53.21896627895237],[6.554964083826097,53.21896639214804],[6.554904670052925,53.21896845311019],[6.554762321254508,53.21898255403591],[6.554711131841313,53.21899033108477],[6.554653110824172,53.21899794992118],[6.55460456097229,53.21900478463251],[6.554554898507976,53.2190125557447],[6.554322215523605,53.219051914977825],[6.554013363833469,53.219103858499714],[6.553785248889383,53.219143864213514],[6.553616613262343,53.219172588544936],[6.55349608558765,53.21919196650905],[6.553420640406107,53.21920361824473],[6.553280373382435,53.219225003087885],[6.553271267179921,53.219225999205875],[6.553246242417046,53.21922965721498],[6.553225387755791,53.21923305003612],[6.553124252643307,53.21925201451325],[6.553004896578312,53.2192732138155],[6.552791532664946,53.21930896753622],[6.552719103811606,53.21931922359903],[6.552650078214723,53.219328538939344],[6.552615539269831,53.219332504898176],[6.552597713350012,53.219334951582994],[6.552528196508092,53.219339931208246],[6.552414233406705,53.21934737333203],[6.552313472540769,53.21935080504312],[6.552271252319914,53.21935142168149],[6.552249587356303,53.21935253067598],[6.552178784334414,53.21935089963351],[6.55199491212707,53.21934710415543],[6.551836553402659,53.21934444466399],[6.551785140747787,53.219342858829606],[6.551660563757101,53.21933646539561],[6.551576778494817,53.21933311777961],[6.55152761319009,53.21932991944004],[6.551451039283234,53.219325818797124],[6.551409103718698,53.219322550259896],[6.551356535119081,53.21932029249381],[6.551254475918753,53.21931665465546],[6.551195066789379,53.21931446317993],[6.551171433094498,53.21931307489524],[6.55115695765359,53.21931206505865],[6.551131024336175,53.21930979145026],[6.551090244791038,53.21930719455208],[6.551053251705097,53.21930342863117],[6.551020851822653,53.21930120873509],[6.550910734739472,53.219294683259335],[6.550877580405997,53.21929224598245],[6.550809015717015,53.219289217511324],[6.550759880987772,53.21928715084353],[6.550703897041306,53.21928538421558],[6.55055020971162,53.21927103140219],[6.550478115514754,53.21926369654763],[6.550351483435759,53.21925046508422],[6.550283562071511,53.2192424066992],[6.550187030816627,53.219231642102294],[6.550126738324955,53.219224435282754],[6.55009885142637,53.21921966420349],[6.54993540078111,53.219194666521126],[6.54982233629297,53.21917651329533],[6.549637870613195,53.21914782773268],[6.549486200561234,53.21912271531343],[6.549363959397643,53.21910236801091],[6.549250138041735,53.219084446238476],[6.549092790147172,53.21906030492083],[6.548971365365668,53.219042465497196],[6.548889631015869,53.21902904939794],[6.548847241803877,53.21902280987403],[6.548819300128414,53.21901599013835],[6.548800489108473,53.21900908200447],[6.548798437247414,53.219006271163515],[6.548739158797956,53.218994991996944],[6.548691212316305,53.21898586767322],[6.548457800905937,53.21894145167183],[6.548311217117793,53.21891556964176],[6.548262059412563,53.21890147842292],[6.548098230401265,53.21885450126796],[6.54805181830082,53.21884005989096],[6.547981178000641,53.21881322704189],[6.547975940260074,53.21881722272514],[6.547918809383798,53.21879947915795],[6.547927645638816,53.21879010178072],[6.547932915038938,53.2187844972343],[6.547882979858744,53.21876485981003],[6.547874812125742,53.21877292769463],[6.547810552059726,53.21874839644258],[6.547748364415474,53.218724653884486],[6.54768546609956,53.21870064857695],[6.547619132471636,53.218674717432464],[6.547558564251547,53.218651057965424],[6.547488933717449,53.218623891555175],[6.547468610831843,53.21861642270669],[6.547427193990207,53.21860120489164],[6.547361840293608,53.218577187212524],[6.547297212613715,53.21855344105603],[6.547240871192276,53.21853273302271],[6.547223303463366,53.21854591511761],[6.547214038781205,53.21854323688592],[6.547171970870836,53.21853108962756],[6.547150206155997,53.21849610943468],[6.54716767221317,53.21847746462444],[6.547226650463566,53.21841455604935],[6.547240392763263,53.218416714713705],[6.547338351639831,53.21831341293641],[6.547377357031229,53.21827226466481],[6.547412345796501,53.21825550826428],[6.547414611307822,53.21825456974907],[6.547458812433328,53.218251374543726],[6.547493987822004,53.21824882375615],[6.54758232031315,53.21815505952364],[6.547611420736589,53.21816324325167],[6.5477570475506,53.21801529414836],[6.547739800526854,53.218009736650295],[6.547803716745809,53.21794566570177],[6.547772576395408,53.21786874706857],[6.547464126934689,53.217762168357],[6.547445947213842,53.21777205841217],[6.547379618188686,53.21780815997394],[6.547409056124717,53.21783004469362],[6.547366945978474,53.21785144401487],[6.547389439206877,53.21786950479161],[6.547383834579852,53.21787321643446],[6.547449807082972,53.21791586583745],[6.547478527252967,53.21793443252562],[6.547585546056136,53.21800360808147],[6.547516369542119,53.218038497133655],[6.547454005540894,53.2180722868379],[6.547419458673379,53.218090998007284],[6.547392251457547,53.21810760727963],[6.547357576259289,53.21812879092158],[6.547314845265604,53.218187876048056],[6.547303087133668,53.21818935565889],[6.547282885878671,53.21820370449537],[6.54724156905371,53.218226228378896],[6.547194600157868,53.21825293163035],[6.54713988842176,53.21828512849099],[6.547132744481752,53.21830624361509],[6.547074151086366,53.218338298241065],[6.547036339568731,53.21831626073725],[6.546998073555938,53.21833922233555],[6.546981694917752,53.21833868869852],[6.546931403063674,53.21830962763442],[6.546834429532177,53.21836263186385],[6.546833130901018,53.21836333636443],[6.546782927083956,53.21837383235721],[6.546706808523568,53.218343088720864],[6.546640559117479,53.21831634745375],[6.546579091526647,53.218290934860086],[6.546506867248895,53.21827587061822],[6.546417385318096,53.218253172898855],[6.546374799751178,53.21824236034617],[6.546317047557727,53.21822651814764],[6.546214226702522,53.21819547499429],[6.546137815177781,53.21817053003383],[6.546069032421066,53.218148117390456],[6.546027788765878,53.218134856450874],[6.54599513826069,53.21812436118556],[6.545927390571388,53.218102576497174],[6.545854115791268,53.21807902091118],[6.545814714732885,53.21806635317879],[6.5458043913292,53.218064385998495],[6.545787816655981,53.218062119724244],[6.545715885858749,53.218057422437894],[6.545655352151381,53.218053414859355],[6.545523767737394,53.217964129630076],[6.545421085407995,53.217930388556816],[6.545277779630502,53.21788807109592],[6.545058898239681,53.217850841164335],[6.544831821228196,53.21798332545078],[6.544853923216117,53.21799743647091],[6.544857335222108,53.21799961419643],[6.544860283096325,53.2179978783464],[6.544907643875291,53.21797011184258],[6.54492761849602,53.21796248110407],[6.544951035020006,53.21796038060799],[6.544973853245485,53.217964171048514],[6.544992137593844,53.217973200248714],[6.545002733667697,53.21798590896113],[6.545003996097678,53.21799793850378],[6.544998972753019,53.21800960993529],[6.544988159652186,53.21801976641713],[6.5449868206691,53.218020642027916],[6.54497345798225,53.21802817572773],[6.545002053480825,53.21804491997278],[6.545028775770477,53.21802917861797],[6.545136987183411,53.21806644323937],[6.545139569086275,53.21806725405452],[6.54526011489929,53.218108892713474],[6.545265949340032,53.218110957183896],[6.545386282867622,53.21815360423852],[6.545506525861013,53.21819621610206],[6.545627071581104,53.218238941746115],[6.545747572153155,53.21828164973341],[6.545863643978391,53.21832278282157],[6.545868042544929,53.21832433991938],[6.545876975836287,53.21832750671792],[6.545988603704881,53.21836705606795],[6.546109104748412,53.21840975470437],[6.546236634845359,53.21845494643682],[6.546506977754547,53.218550744399664],[6.547103459320836,53.2187620993582],[6.54712696894311,53.21877388955758],[6.54714408255951,53.21878914112375],[6.547153448753219,53.21880664767427],[6.547154326762887,53.218825027979015],[6.54714664913123,53.21884282869686],[6.54713798179878,53.21885571804971],[6.547132024733883,53.21886080799897],[6.547123905031524,53.218865092108516],[6.547104675941098,53.21887104723594],[6.547086533346637,53.2188745295945],[6.546416886222736,53.21890005197846],[6.546098982085058,53.21891564979966],[6.545844721090733,53.218947886055254],[6.545603901267158,53.218979434852436],[6.545461267085439,53.21900925360764],[6.545422514543106,53.21901746378349],[6.545354358955346,53.21903190672022],[6.545260677235481,53.21905031633314],[6.545152269350302,53.21908517822685],[6.544856794965545,53.21919481419287],[6.54483391171349,53.21920578264968],[6.54430062444473,53.21944884025091],[6.544229079458205,53.219487722166626],[6.543999201519028,53.219627852167655],[6.543923348847981,53.219686500472804],[6.543631361810643,53.2199082853751],[6.543311806706608,53.22015131828177],[6.54329726910944,53.22016366181555],[6.543116934414643,53.220279921230556],[6.543085485390217,53.22029815195398],[6.542774045634618,53.220478685989605],[6.542293526304303,53.220742514863296],[6.54223349779757,53.220775470516465],[6.542233519333602,53.22079588729457],[6.542233534686322,53.220818874227916],[6.542136360467367,53.220886083888765],[6.542124070014798,53.22089233087303],[6.542106702237502,53.22089515799326],[6.542042046396433,53.2209056832255],[6.542010531851571,53.22091869321937],[6.541970760062238,53.220940400577334],[6.541421751258625,53.2212521351537],[6.541331442791074,53.221303471113295],[6.54095730108038,53.22151614540773],[6.540596315489339,53.22172539405185],[6.540534202456005,53.22176562084223],[6.540476401712557,53.22180304734643],[6.540361412251786,53.221878963761114],[6.540168783117493,53.22202660021291],[6.540096490405812,53.222089390432636],[6.540075754377106,53.22210910799312],[6.539844604148057,53.22232887890961],[6.539720901719607,53.222443690379464],[6.539297231244447,53.22283690325481],[6.539085981422533,53.22302103043603],[6.538965966582321,53.22311198289541],[6.53896245296438,53.22311554825042],[6.53893676457797,53.22314163052923],[6.538945627246157,53.22314325286978],[6.538562115133502,53.223454876988605],[6.538420943927227,53.223578014230796],[6.538205987888261,53.22376550026768],[6.538119358496985,53.22383556188363],[6.53793758439179,53.22398601998183],[6.537682953424683,53.224223948341795],[6.537683036889076,53.22422708377169],[6.537518412984926,53.22436828260121],[6.537514810985479,53.22437753710621],[6.537508906452601,53.22438410879683],[6.537466614883283,53.22442274204454],[6.537298593297123,53.224576428176675],[6.537247268139279,53.224634612312556],[6.537051587998981,53.2248564099335],[6.537035119220215,53.224875088560964],[6.536916998571336,53.22501902207201],[6.53670481875956,53.22529901086166],[6.536567810268873,53.2254619782329],[6.53636791767831,53.22570301875511],[6.536248987971105,53.22584541363865],[6.536122133523419,53.22599729294672],[6.536098097677575,53.226008495366784],[6.536060332381357,53.22606033957451],[6.535998288736329,53.22615088664267],[6.535940958802878,53.22623455894621],[6.535667133177195,53.2266324073029],[6.535587739893986,53.22674691594863],[6.535520515468055,53.226851081658936],[6.535476864396369,53.226918735000716],[6.535423532935473,53.227001362294864],[6.535387892507947,53.22705659174754],[6.535323224935984,53.22716177528015],[6.535170017177188,53.22734559135484],[6.535095983356712,53.22743645927414],[6.535082887845408,53.22745422468008],[6.534943459834654,53.22764329143351],[6.534813383082495,53.22781968773589],[6.534752480973547,53.22791281121603],[6.534735857207318,53.227940396417274],[6.534635196306332,53.228107435035916],[6.534557096391269,53.22823701856639],[6.534551388574688,53.22824088333461],[6.534556235755627,53.22825254616289],[6.534218786849997,53.228746415721616],[6.53386236396141,53.22911416286684],[6.533751167329725,53.229211711300984],[6.533717287137938,53.22924142920613],[6.53360392504055,53.22935051863461],[6.533535545323348,53.2294221906317],[6.533446333046068,53.22952769732567],[6.533281151112481,53.229722534481986],[6.533226733874707,53.22978540115902],[6.53311670853787,53.2299402254997],[6.532885795912298,53.2303249233397],[6.532869163063109,53.23037088533213],[6.53283093083258,53.230476578808535],[6.532812323078349,53.230528832084545],[6.532763942470771,53.23066468160098],[6.532712292054735,53.2308122175386],[6.532652152637726,53.230981895846675],[6.532655168155943,53.230983790135],[6.532659797274928,53.23098384480246],[6.532645880472622,53.23102720175803],[6.532590770135331,53.23122842786844],[6.532554618528003,53.2313725537565],[6.53254909700095,53.231391378840165],[6.532532790076254,53.231760422226316],[6.532507808420734,53.23184345143704],[6.532496819145052,53.23187635631177],[6.532464403492395,53.23195070379207],[6.532449200635575,53.23197946125232],[6.53243570155787,53.23199847927321],[6.532405604349408,53.23203429830567],[6.532389094149901,53.232051026587136],[6.532300184261834,53.23212021575185],[6.532233355400183,53.23215966519607],[6.532000066078043,53.23228185781234],[6.531919949168999,53.23232514516785],[6.531872099344542,53.23234948713575],[6.531687021501435,53.23244861874842],[6.53142141157142,53.232598616487635],[6.531370050088431,53.23263176235626],[6.531313917418252,53.232667982067966],[6.531180492176976,53.23275127186566],[6.531131225172261,53.23278604215648],[6.530989690834942,53.23289343838395],[6.530916932300601,53.23294547047795],[6.530894287421782,53.23296358697488],[6.530863480600592,53.23299077652675],[6.530834640944892,53.23301872913331],[6.530779304960418,53.23307546569424],[6.530680516248044,53.23318014475393],[6.530615249849996,53.233252153699084],[6.530563938271231,53.23331214079624],[6.530521457078369,53.2333826565649],[6.530467325389418,53.23347248700832],[6.530403945701548,53.23358300209963],[6.53033906028659,53.23370228414334],[6.530264824421442,53.23384574745199],[6.530218402517764,53.23392812658734],[6.530026542698925,53.23423330390261],[6.530000681409283,53.234265190883214],[6.529976176973889,53.23429798154012],[6.529880256152937,53.234426329411065],[6.529874659475102,53.23443614180747],[6.529758699375543,53.23460814704395],[6.529573261548773,53.23484035662097],[6.529528912895225,53.23489587366642],[6.529487435133174,53.23494781378629],[6.529290871628668,53.235255595615854],[6.529254858669159,53.23528991545089],[6.529285949310532,53.235295460697195],[6.529211160534329,53.235420506608534],[6.529180454052734,53.23547766400122],[6.529164336950502,53.23550766080889],[6.52909532969458,53.235647470012914],[6.529076222879924,53.235686193975496],[6.529020983340806,53.23579610057559],[6.529008193952239,53.235822237542216],[6.528944819137401,53.2359445416894],[6.528918016789182,53.23599699797954],[6.52873492567481,53.23630537846687],[6.528607034952059,53.23650465243807],[6.528457252053304,53.236697394702205],[6.52824248964897,53.2369535686203],[6.52806964665799,53.23715632461706],[6.528068484273166,53.23715768360782],[6.527964238696502,53.23728036663976],[6.527760134096927,53.23750472573238],[6.527572148743741,53.2377116596736],[6.527324437092815,53.23797546146267],[6.527119568717568,53.23793639212391],[6.527017273920742,53.23791688385796],[6.525833375321083,53.2376929767285],[6.525767400221113,53.23767954804176],[6.525689011971627,53.23766172595054],[6.525627234180498,53.23764614559992],[6.525562716284775,53.23762832666387],[6.525510884468687,53.237612750773174],[6.525416804635792,53.23758320644881],[6.525332895438905,53.23767226712312],[6.527082078688818,53.23823125271408],[6.52700772983335,53.238309647814326],[6.526873271503669,53.23844899869198],[6.526820975662343,53.23850333200183],[6.526754960385166,53.2385719129772],[6.526685090040501,53.238647108463844],[6.526560129221132,53.23878827388775],[6.526317026492558,53.23906287430571],[6.526178127551343,53.23923565946839],[6.526085636630921,53.23937790012226],[6.526055508290101,53.23942202101521],[6.526010222586557,53.23948836497551],[6.525998555721929,53.23950832633809],[6.525944406996243,53.23960099426824],[6.525926631617192,53.239675057004426],[6.525915845473627,53.239722750617965],[6.525906216495552,53.23980127413058],[6.525905153623321,53.23986437681422],[6.525903666919346,53.240059150335874],[6.525912530963274,53.24015390732908],[6.525927591645675,53.24029223386676],[6.525932838304362,53.24035090935686],[6.525942998092247,53.240398781672425],[6.525945980830535,53.240438059312346],[6.525940286256472,53.24046922379611],[6.525929422969543,53.24050433735397],[6.525920861209679,53.24052958911328],[6.525900304174002,53.240570312197086],[6.525864366423042,53.24063730426167],[6.525804432934234,53.240744144383264],[6.525756323295827,53.24083185737715],[6.525658400201925,53.24099153754466],[6.52560216139551,53.24107661371367],[6.525599582732513,53.241080511250026],[6.525342286342458,53.24141238762377],[6.525137254704411,53.241677296537326],[6.525137196929528,53.241677377961395],[6.525030891177771,53.241823801397196],[6.52492251704608,53.241962246558074],[6.524769510600606,53.2421476813989],[6.524750636415096,53.24217160196747],[6.524717517245725,53.242205236879144],[6.524685871680041,53.24223680894941],[6.524650451862112,53.24226954904378],[6.52460450700447,53.242308778088244],[6.524553003330053,53.24235422435866],[6.524522384408385,53.24238098799226],[6.524509295526798,53.24239137431467],[6.524494727292184,53.24240360784876],[6.524438748675373,53.24245320318582],[6.524405862096066,53.242480895883965],[6.524337234944973,53.24254338946059],[6.524298001743312,53.24257639921173],[6.524220409798871,53.24264719108008],[6.524197296325482,53.24266886021339],[6.524171211791443,53.24269375659134],[6.5240263899749,53.242821555894096],[6.523982318889912,53.242859167385895],[6.523884855665836,53.24294338396415],[6.523832735739942,53.242987101393624],[6.523846689105573,53.24298962920192],[6.523779416661315,53.24304502843983],[6.523509656732591,53.2432554524336],[6.523418756793005,53.243327277337784],[6.523343560707456,53.24338617508153],[6.523247074126343,53.243463758997144],[6.523163679445547,53.24353048935123],[6.523099095271724,53.243586779344646],[6.523046480303313,53.243634517953126],[6.522976786377519,53.243700453545905],[6.522963795848648,53.24371517912024],[6.52294869729301,53.243737473091464],[6.522927054113766,53.243773515045696],[6.522902883421664,53.243814846853],[6.52286911273634,53.243869955542216],[6.522848434642931,53.24391421975759],[6.522822637925567,53.2439683543672],[6.522805725031158,53.24401053408732],[6.522790381850408,53.2440554397618],[6.522776677215011,53.24410511960569],[6.522759209367742,53.244188874970746],[6.52275217638352,53.24424673209002],[6.522749570265858,53.2442986074184],[6.522748481875023,53.244333565248574],[6.52274848783409,53.24438336700053],[6.522747059040416,53.24443614778701],[6.522745095473795,53.24451588339959],[6.522743755839316,53.244556100560864],[6.522738102980994,53.24465733922298],[6.522734682063746,53.244706715087275],[6.522727242188153,53.244779870642034],[6.522713572322246,53.24486336539632],[6.522701758708821,53.24492857354118],[6.522693691216404,53.24497500991707],[6.522680064598468,53.245027672429025],[6.522668959622078,53.245074820487886],[6.522655281791178,53.24512496732945],[6.522633782805038,53.24518362623374],[6.522621206274218,53.245216401218904],[6.522609156286627,53.245238432654375],[6.522594659632466,53.2452705428422],[6.522566416799774,53.24531715205171],[6.52253116499314,53.24537410781077],[6.522493154647158,53.24544296048048],[6.522455287541166,53.24550244811053],[6.522433310905193,53.245540101637914],[6.522421593140755,53.24556053035701],[6.52239951147101,53.24559361985646],[6.52237884933904,53.24562258022616],[6.522364394478679,53.24564340954824],[6.522149674690912,53.24566878786822],[6.521987885904013,53.24569647095773],[6.521893589754298,53.24572827140651],[6.521850997936094,53.245766715467894],[6.521843945999472,53.245800068976365],[6.521942239196676,53.24592039849064],[6.522032169520627,53.246024163555184],[6.522050204897459,53.24609221124502],[6.521980903012758,53.246200303230815],[6.521980600753109,53.24620077337284],[6.521775985073635,53.246497411317364],[6.521575420545722,53.246721374780336],[6.521388232227138,53.24693105816936],[6.521191848465493,53.24713808729893],[6.520835804816212,53.24747713106085],[6.520647917334649,53.24765643732483],[6.520534343785503,53.24777025094382],[6.520403513840798,53.24789676314332],[6.5203135245866,53.247975882700615],[6.520166129847341,53.24809408593918],[6.520029384462261,53.24819506971478],[6.51981577267335,53.248316359563866],[6.519545595335664,53.248479698985065],[6.519393422093557,53.24857236249173],[6.519273877559058,53.248655794782415],[6.51921116950216,53.24869954698753],[6.519161761487616,53.24873742256223],[6.519097422118369,53.24878982585748],[6.51904170455408,53.248835066677685],[6.51898824277846,53.2488800615481],[6.518944559634994,53.24891858398265],[6.518907634989985,53.248953160635956],[6.518874832543927,53.248984957617694],[6.518816501733149,53.24904941755404],[6.518793912149585,53.249078161772786],[6.518769153330553,53.249111033141666],[6.518736913768557,53.24915059786767],[6.51871105242218,53.24918599576003],[6.518697435487544,53.24920666662845],[6.518687899170224,53.249222967671436],[6.518673661806352,53.24925026723708],[6.518650232722662,53.24929158208952],[6.518631399078481,53.24933445317576],[6.518610684172327,53.24937757562993],[6.51858933382428,53.249427326920454],[6.51857463147954,53.24946719360458],[6.518554767076098,53.24951419008288],[6.518536199440089,53.2495689384397],[6.5185123971949,53.249644062973935],[6.51845302687965,53.24981245825416],[6.518431939169409,53.24987339488778],[6.518412907159845,53.249923582588124],[6.518393530207216,53.24997604705054],[6.518366348797128,53.25003658278813],[6.518333780838427,53.250095111423505],[6.518293746352589,53.25016031527333],[6.518267662118691,53.2502021133463],[6.518243699222127,53.250236810279446],[6.518207835735008,53.25028508069138],[6.518168889576615,53.2503306393324],[6.518144354651602,53.25035780218701],[6.518118285771835,53.25038360459347],[6.518079501628082,53.25042048098093],[6.518047863103958,53.250452734029594],[6.517999326577204,53.25049654077072],[6.517948531207255,53.25054106070575],[6.517903673943096,53.25057890184215],[6.517864035961444,53.25061122119388],[6.517816143619116,53.2506493155356],[6.517752456098865,53.25069645496578],[6.517702064138523,53.25073293730546],[6.517700858170622,53.250733802353054],[6.517426948181164,53.2509300075359],[6.517308586933088,53.25101267175291],[6.517018079233174,53.25119770057056],[6.516892625161502,53.251264166045154],[6.516593999476241,53.251414493505806],[6.516516105936057,53.2514519169913],[6.516386333389566,53.25150857364428],[6.516127417238814,53.251612741618416],[6.516039941380221,53.25164587860339],[6.515728171546778,53.25175442469844],[6.515580809262759,53.25180659992868],[6.515493875340527,53.251839291089986],[6.515379358118764,53.25188235987564],[6.514963527440632,53.25203692070141],[6.514687864220355,53.252142087527204],[6.514463149730044,53.25224288430891],[6.514262723045503,53.252338528208824],[6.514049610008142,53.252451616262874],[6.51387112190882,53.25253708786197],[6.513382531238935,53.25279785099672],[6.512726153612573,53.25314631800824],[6.512111780950227,53.25347811373199],[6.511833505191261,53.25364294878181],[6.511261407938222,53.25397661750733],[6.511271680441226,53.25398442020728],[6.511218301379658,53.25401817791138],[6.511158818081906,53.25405344850176],[6.510962866172311,53.25416272184651],[6.510947032808744,53.25417155071996],[6.510881593063489,53.25420826978126],[6.51072418610173,53.25429937130481],[6.51057180302841,53.254386049326406],[6.510526381614191,53.254408939822206],[6.510292680844084,53.25453492011234],[6.51025469921264,53.25455695910834],[6.510076926332617,53.25465268944046],[6.509982068736594,53.25470201219293],[6.509870746995252,53.25476013354871],[6.509742931245863,53.25482706272596],[6.509614183890545,53.25489102603925],[6.509369073361805,53.255017533492456],[6.509160216517099,53.255136827210094],[6.508959222497598,53.25526062106537],[6.508883683839561,53.25530960965777],[6.50880362074234,53.2553615250372],[6.508699542390151,53.25543037901816],[6.508626335553601,53.25548724452979],[6.508592595906343,53.255522668741854],[6.508575987278329,53.255539187733184],[6.508549881944075,53.255562193591544],[6.50852315901547,53.25559142366133],[6.508491426123419,53.25562507679207],[6.508447636423159,53.2556693473757],[6.508385691715848,53.25573060964186],[6.50805699810887,53.25641399659072],[6.508052227071334,53.25642300935324],[6.508285596178273,53.256437131506736],[6.508634785696251,53.25646051459149],[6.508701792371066,53.256449302979],[6.508845955470941,53.25636131139367],[6.508953623931808,53.256390768718894],[6.509003925703362,53.25640795662349],[6.509010881277476,53.25640170913205],[6.509112422635506,53.256439877270914],[6.509876892450349,53.25582581261596],[6.509911759839415,53.25579806069677],[6.509937656061808,53.25578317103439],[6.510019638843162,53.25573825517217],[6.510137738645446,53.25568369175777],[6.510206421392172,53.25562175448485],[6.510529333467838,53.25529422400234],[6.510665589034725,53.255156008354746],[6.510873167060227,53.254945118600354],[6.510980350496586,53.254834537642274],[6.511078413102266,53.25473336964005],[6.511248362321249,53.25456166080613],[6.511359356451102,53.25446226757744],[6.51145526690985,53.25438670312388],[6.511563260285667,53.25431481761404],[6.511657241519624,53.254258411678904],[6.511851470317245,53.25414286299138],[6.512129080488346,53.25397133945931],[6.512171484814266,53.2539534729475],[6.51224003948833,53.25390869031082],[6.51233784412841,53.25385072034032],[6.51239499417167,53.25382371137627],[6.512465941538347,53.25377876240225],[6.512525954996872,53.253748940811626],[6.512633234972775,53.253692355517956],[6.51288911729405,53.25354803740051],[6.513016694024241,53.25347974112549],[6.513100498606356,53.253429701823606],[6.513241174714474,53.25335121790062],[6.513303338713436,53.25332633612873],[6.51348598754653,53.25321753413001],[6.513532948000677,53.25319688358778],[6.513617628813963,53.25314256724109],[6.513851157584792,53.25300950078432],[6.514529385649218,53.252622586013764],[6.515033801277308,53.25240240400011],[6.515758426902139,53.25210773905056],[6.517020556141941,53.2515695541281],[6.517212270653514,53.25149233740599],[6.517558304038489,53.25130946325978],[6.517850547753968,53.25110610285559],[6.51811818116682,53.25089224398683],[6.518304318112848,53.250728118296195],[6.518355838770105,53.250682692756016],[6.518580792140676,53.25040808363803],[6.518741461320346,53.250179038077434],[6.518793550348154,53.25006271461341],[6.518795556240142,53.25005864291676],[6.518916433073948,53.24981261075259],[6.518948961045177,53.249736586132954],[6.519039189041981,53.24954228891035],[6.519129051475572,53.24941353163826],[6.519169851729376,53.24934274879633],[6.519283222482546,53.24919232857975],[6.51936076807468,53.24910072851032],[6.519428323398819,53.249018972670356],[6.519503741046986,53.24893652258186],[6.519575961766563,53.2488715808223],[6.519708157310511,53.248784371495226],[6.520099091761646,53.248548990820744],[6.520349578095673,53.248402110086786],[6.520413389358693,53.24834907306208],[6.520560962646373,53.24821026240328],[6.520870074639105,53.24793225700791],[6.521148544581585,53.247675370311114],[6.521423468288054,53.24742904830413],[6.521685122929552,53.24718188949659],[6.521863969502378,53.24698602447055],[6.521986030027515,53.246853312106836],[6.522093396574575,53.24672872729425],[6.52215404189881,53.24664888628888],[6.522271467627934,53.246455039071094],[6.522439044155708,53.246195971562436],[6.522476071782212,53.24613872048352],[6.522674685272679,53.24584823071632],[6.522886409843933,53.24552488861904],[6.523066575368233,53.245235516191805],[6.523103349206173,53.245170386350246],[6.523119084477593,53.24511817112118],[6.523178190703179,53.24491844953482],[6.523235384334761,53.2447303292809],[6.523281772205083,53.244569395815475],[6.523360760813799,53.244359583071805],[6.523423929206496,53.24417483888177],[6.523477205066521,53.24401952840388],[6.523532366365943,53.24386016521549],[6.523551898415079,53.243813934749596],[6.523694960041658,53.24364012515796],[6.523853434174988,53.2435078207351],[6.523978870330255,53.243404360331475],[6.524241249379805,53.24319928013173],[6.524342500089835,53.24311383221894],[6.524594997489356,53.242897710838264],[6.524738645530284,53.242776589771026],[6.524870918106729,53.24265813741842],[6.52508826268845,53.242446985003326],[6.525172769210708,53.24235896324723],[6.525254476496889,53.24227273825953],[6.525316888726898,53.24219844120159],[6.52548262916268,53.241983562722865],[6.525528282606167,53.241917970398134],[6.525620277535335,53.24176402594457],[6.525621425203626,53.24176210098592],[6.525677918857423,53.241675863187815],[6.525680906642116,53.24167214149565],[6.525743741990559,53.24159406594616],[6.52578843319146,53.241527233544765],[6.525853726352283,53.241435008209244],[6.52603073367659,53.241190304421934],[6.526118646926874,53.241073143095576],[6.526186848910468,53.24097709775133],[6.526272502372973,53.24086459465501],[6.526332084812799,53.24077799470354],[6.526343152929604,53.24073816137627],[6.52637111623719,53.24065736106319],[6.526388482462704,53.240533715937126],[6.526393325324297,53.2404231208991],[6.526398549058332,53.24021677354312],[6.52640535503107,53.23995511863592],[6.526411460518797,53.2397736907932],[6.526435172487998,53.23971119987221],[6.526473964337664,53.23961731156463],[6.526496315861602,53.23956174398253],[6.526604562962167,53.239417762878794],[6.526605301591893,53.239416803322435],[6.526812848273306,53.23914519987741],[6.526864889018703,53.239073786104264],[6.527084204906131,53.23884755891139],[6.527115160688839,53.23885301614676],[6.527285386470733,53.23867383061427],[6.527632556319215,53.238309104538665],[6.527959571797354,53.237969820368214],[6.528309365092517,53.237580085382326],[6.52866080073393,53.237150704163696],[6.528848559049623,53.236921295894454],[6.529235545647748,53.23644897968275],[6.529362260121975,53.23619966260117],[6.529546427475424,53.235744102449765],[6.529625638109605,53.235590312048814],[6.529758222859937,53.23538757740804],[6.530067686379162,53.23492242127259],[6.530088890189667,53.23489054269175],[6.530179856515089,53.23475380373165],[6.530319433327116,53.23452682866883],[6.530412221385777,53.234389371224495],[6.530641105164634,53.23405031271003],[6.531031288318954,53.2333847541402],[6.531141193820362,53.23327344478757],[6.531333386083197,53.233097224700174],[6.53150058882636,53.23297448636304],[6.5317054284015,53.23283198745956],[6.531929712897966,53.23269029121943],[6.532049752297799,53.23262528059048],[6.53208964723271,53.23260367438496],[6.532589396210704,53.23234611242733],[6.532611198698908,53.23233636988614],[6.532681398272048,53.23229639381564],[6.532704864880852,53.23227880830517],[6.532715745544426,53.23226779508343],[6.532743485639901,53.23223458652857],[6.53276894691922,53.232200725745486],[6.532840539132865,53.23209014887909],[6.532853156907166,53.23206896453978],[6.532883970070663,53.23201723280261],[6.532902222097769,53.23198034951883],[6.53292078609352,53.231934899306545],[6.532959271457118,53.23181668552218],[6.533000016997653,53.23167188662687],[6.53301301885319,53.23162057650813],[6.533094675195131,53.23117347408236],[6.533114059082497,53.231060133441524],[6.533133080934872,53.23097211067432],[6.533189311706808,53.23075846348989],[6.533223872102934,53.23064761088209],[6.533253146426607,53.23056501675772],[6.533263901988086,53.230540273592666],[6.533293540818724,53.230482720813995],[6.533356106344796,53.23036623588361],[6.533387317695469,53.23030812888035],[6.533404041216266,53.230271817240876],[6.533410780645514,53.23026222738731],[6.533418545094607,53.230252888346534],[6.533729059151915,53.22984259083377],[6.533815008990819,53.22974112300502],[6.533890385501119,53.22966166476223],[6.534247635607055,53.22929389174997],[6.534339461040834,53.22918367758839],[6.534679706621823,53.228794489577616],[6.534848963638694,53.22854595410885],[6.535144211750274,53.22810256711533],[6.535354577462665,53.227786662572065],[6.535498204550807,53.22758096641582],[6.535837221175293,53.2271030196389],[6.53615937078626,53.2266279651104],[6.536397934936713,53.226288433045475],[6.5367401314817,53.22584070988814],[6.536789650813192,53.225775920382844],[6.537014720041474,53.22548897839038],[6.537099661302715,53.22538792200159],[6.537166454707862,53.22531167996913],[6.537420468678982,53.22502715566034],[6.537505508870447,53.22494338770753],[6.538088388686583,53.22437635991523],[6.538615988706885,53.22387354566958],[6.538967519065806,53.22357480029752],[6.538969964930547,53.22357274590979],[6.539442336306241,53.22317603833543],[6.539638736086906,53.22300836335417],[6.539930813480098,53.222764283710035],[6.540089412325194,53.22262114432083],[6.540687595749612,53.222081265492236],[6.540745174178316,53.22202764763733],[6.54093935921339,53.22191144749182],[6.541096362617265,53.221829932406315],[6.541221479107236,53.22176323672302],[6.541523140915683,53.221628631325096],[6.54165500975109,53.2215541150043],[6.541805188800511,53.22147338352751],[6.542107904816915,53.22129600044934],[6.54216334967419,53.221263502360465],[6.542299182892494,53.221182216375304],[6.542413086493773,53.2211140457506],[6.542523965690882,53.22104768522764],[6.542580737526837,53.2210865868802],[6.54261869066586,53.22111055647025],[6.543088266825581,53.22140717557368],[6.543491490480037,53.22166188189433],[6.545322660275398,53.22280046016699],[6.545997287530278,53.22321196525762],[6.546239662047271,53.22335980430097],[6.547192235949145,53.223952074074646],[6.547304770962602,53.22402204123698],[6.547365604236536,53.22406031906489],[6.547412150445434,53.22408959588145],[6.547509371090576,53.22415076051666],[6.547571606713806,53.22411409652113],[6.547723898313468,53.22401620029852],[6.547838715910953,53.223899579325646],[6.547919266345791,53.22377770018577],[6.547966886663969,53.223644025926305],[6.547962634499561,53.2234857006265],[6.547752591764239,53.22295291857841],[6.547568360695651,53.22248761664369],[6.54753955992699,53.22218004068933],[6.547506016016773,53.22191384778977],[6.547517372392377,53.22164274998634],[6.547574021440305,53.22126901235824],[6.547822799478912,53.220560939218096],[6.547842134972789,53.220515708076825],[6.548450342627818,53.21925285639955],[6.548674331170755,53.219287038302454],[6.54899751148752,53.219324509966505],[6.549161456575114,53.21935453650031],[6.549467233244531,53.21941180165423],[6.549822784687027,53.21948209026877],[6.550197225327882,53.21953096896465],[6.550685682818549,53.21957378052284],[6.551113425363754,53.219592017225025],[6.551358550474308,53.219595255743904],[6.551685662090912,53.21960619024784],[6.552142760634086,53.2196264388998],[6.552536726040935,53.21964298551248],[6.552576912477912,53.21964467107247],[6.552717093962031,53.21963282243309],[6.552797584335766,53.21962500424974],[6.552862505452226,53.219618927848714],[6.552955363629206,53.21960391713915],[6.552961418532365,53.219618020829536],[6.553022809770398,53.21960763821978],[6.553018711330988,53.21959557340191],[6.553085793145914,53.219584677165855],[6.553111890731247,53.219578043266374],[6.553138043802357,53.219573466700375],[6.553186053829158,53.21956046420015],[6.553287813851165,53.21953577827419],[6.553369194194587,53.21951767065049],[6.553694351434662,53.219478375882105],[6.553726058670205,53.219436056358255],[6.553773070146228,53.21941325021227],[6.553885073202193,53.21940308501278],[6.554008732265066,53.21938710001917],[6.554091323833313,53.21937172995203],[6.5542390399621,53.21934342409787],[6.554346297478729,53.2193255314103],[6.554517245391649,53.219282630026356],[6.554611782946365,53.21925777958291],[6.554681087740568,53.219244407540266],[6.554789104362011,53.21923357035564],[6.554880281646836,53.21920460967869],[6.554970362187031,53.21919879052687],[6.555032627697686,53.21919476072302],[6.555259532174374,53.219199750197],[6.555519071071682,53.219217289978936],[6.555861197114356,53.219264731299816],[6.555969956138203,53.2192802518392],[6.556475291380535,53.21934965485038],[6.55682587829597,53.21939817921314],[6.556895825770834,53.21944398388458],[6.556721439806397,53.219552882158695],[6.556260230501001,53.22044858197826],[6.556255158406284,53.22046477091511],[6.556224283225337,53.22057599048301],[6.556186507278508,53.220697243149495],[6.556092609809983,53.220645632541036],[6.556055207023702,53.220624007241426],[6.556087796016731,53.22065642713136],[6.55610438645081,53.220688562529745],[6.556090721025968,53.22080943650453],[6.556088128854399,53.220824316223315],[6.556030561728153,53.22104636131236],[6.556028268916941,53.22109457124745],[6.555992780466032,53.221765295405696],[6.555960977339647,53.22198484104142],[6.555814227435109,53.2225032872848],[6.555785780284299,53.22261518573544],[6.558406556524501,53.22361172430055],[6.55938861526819,53.22401265938346],[6.562040431184272,53.225049377853495],[6.562656318494316,53.22529792498084],[6.56277686401802,53.225203138569505],[6.563347418267433,53.22480152770058],[6.563579865816958,53.22464924877819],[6.563762831146811,53.22451544526124],[6.564598734313329,53.22394722499139],[6.564805056193292,53.22381519460385],[6.565040504479478,53.223650877488105],[6.565139543151468,53.2235558988884],[6.565337198251921,53.22334994982436],[6.565410242402905,53.22327643403734],[6.565522385729713,53.2231761233176],[6.565863524905516,53.22291676014374],[6.565938409041516,53.22285202360364],[6.566212119022803,53.22264216358154],[6.566309490874666,53.22267062733595],[6.566575094844625,53.222390383005106],[6.566601965301796,53.22239178138903],[6.566695685436705,53.22239568589947],[6.566778014879071,53.22239973825433],[6.566891174464961,53.222398850493],[6.566959860044109,53.222398948052685],[6.567035315249746,53.222396912145385],[6.567081492085141,53.22239522698152],[6.567184775872704,53.22238909813784],[6.567219287167285,53.22238572137059],[6.567275759775182,53.22237888453949],[6.56742376918717,53.22234973286448],[6.567530452163752,53.22233100732888],[6.567630569411279,53.22230927294392],[6.56773178693747,53.22228068002735],[6.56786287202726,53.22224590707677],[6.568157389130965,53.22216559123631],[6.568221894552704,53.22214861913837],[6.568278335696633,53.222135168163774],[6.568436935495803,53.222092530264476],[6.568579274025045,53.22205317950986],[6.568621406275981,53.22203829662707],[6.568668493569517,53.22202392209829],[6.568754118181733,53.22199516730917],[6.568983906948701,53.221919386839346],[6.569143311057737,53.2218662439746],[6.569143110316642,53.22186602129225],[6.569306634423901,53.221811336899016],[6.569423854446137,53.2217777592002],[6.569542084633855,53.221745537362466],[6.569673760528804,53.22171167319629],[6.569722117692135,53.22170105102965],[6.569842978824091,53.221674158850604],[6.570008088516008,53.22163370128247],[6.570009247500167,53.2216333753347],[6.570225307033284,53.2215720071495],[6.570389587528569,53.22152754030977],[6.570475165460045,53.22148074905338],[6.570576673863768,53.22141369808032],[6.570628118061078,53.22137365961017],[6.570711875446672,53.22129539782802],[6.57096832867748,53.22101477084472],[6.571080115750898,53.220892293309035],[6.571203507262055,53.220756738287946],[6.571322352466459,53.22063397968221],[6.571508778732282,53.22044490836064],[6.571642759462843,53.22030575262841],[6.571736528308816,53.22020995765011],[6.571814607128176,53.220131706164075],[6.571899174482616,53.220043829038],[6.572009715807026,53.21993836062608],[6.572060339901041,53.21985431423735],[6.572132465349014,53.21973316634429],[6.572203333606086,53.219617512517374],[6.572292027315402,53.219473231659165],[6.572385729074858,53.2193210471476],[6.572579341350635,53.21900019838301],[6.572674669285326,53.21884241698936],[6.57272902020487,53.21875077588833],[6.572813608365579,53.21860814370843],[6.572834712631152,53.21857679730043],[6.572842991569186,53.218565311753174],[6.572851593877038,53.21855142364115],[6.572852624109855,53.21854204064608],[6.572973798063606,53.21837848593043],[6.572979107416526,53.21837554882671],[6.573007527105791,53.21834836268459],[6.573033931591517,53.218315939406885],[6.573128361337953,53.21820302658727],[6.573215030340018,53.21809976091437],[6.573321509169829,53.21797475894128],[6.573447604252295,53.21782698010131],[6.573601174088636,53.217644376734604],[6.573762853832941,53.217450738524924],[6.573928881527466,53.21725683241146],[6.574041434498965,53.21712309777786],[6.574075783126018,53.21708124980541],[6.574122029362807,53.217020691255286],[6.574126223239313,53.217015851027746],[6.574265686616675,53.21685514235656],[6.574371349896046,53.21673337354707],[6.574412851548138,53.2166881566824],[6.574484126823775,53.216656951549396],[6.574527598334745,53.216638764238105],[6.574690664771673,53.2165749196075],[6.574833041752578,53.21652039175885],[6.574933607831139,53.21648237229079],[6.574940586826225,53.21647973309237],[6.575136926249631,53.216406913540574],[6.575171867993314,53.21637363239566],[6.575217378544288,53.21635339371153],[6.575325656629651,53.21631927852732],[6.575607674199665,53.216230081230044],[6.575735025345232,53.21622320328247],[6.576033344577842,53.216277706949164],[6.576398544338296,53.21634809999675],[6.576703203998304,53.2164060798124],[6.576995784183824,53.21646194102592],[6.577199763034271,53.216500887207026],[6.577236857582565,53.21653661771855],[6.577356097904435,53.21655921305492],[6.577612999849732,53.21660788706813],[6.577843735611512,53.21665178780004],[6.578053843080906,53.21669140860854],[6.578265128419736,53.21673192498663],[6.578418400785554,53.21676161320488],[6.578618541022442,53.216821973776526],[6.578696227555085,53.21684531289578],[6.57889346184957,53.21690341932058],[6.579337348903246,53.21703576507698],[6.579563538558673,53.217104132765655],[6.579753762265504,53.21716038436307],[6.579683857699136,53.217216749963875],[6.580063171884946,53.217332067510455],[6.580134171185972,53.21727469331252],[6.580299510107304,53.21728471372499],[6.581392176151565,53.21760899206227],[6.581670152659242,53.217691739859745],[6.581693061585614,53.21771998974959],[6.581819068569462,53.21775806880339],[6.581885192858657,53.2177784296636],[6.582451306506607,53.21794896137097],[6.582773396544434,53.21804477377442],[6.583232455598597,53.21818402637309],[6.584514927856918,53.21856307070253],[6.584742572299003,53.21863147709763],[6.584900525725846,53.218678939429466],[6.584903349136551,53.218679791915754],[6.585710242048036,53.21892114403484],[6.586267947935991,53.21908865952448],[6.586499323462394,53.219157510596126],[6.586823319867887,53.21925500058419],[6.587389838914292,53.219423078800226],[6.587923008634073,53.21958162998613],[6.588384358684872,53.219720229037826],[6.5886616764729,53.219801996834605],[6.58879232464322,53.21984177450672],[6.589295508683024,53.21998988114607],[6.589966350432557,53.22018929817707],[6.59034542705622,53.220301126098796],[6.590346344031506,53.220299643131476],[6.590566698079229,53.22036742870129],[6.591405740552169,53.220618413318846],[6.59197826223368,53.22078943823621],[6.592031164316084,53.22080511857212],[6.59244933970286,53.220929065398245],[6.592466022708559,53.220934011102315],[6.592745421515575,53.221016818021475],[6.592999976455737,53.2210962344491],[6.593773328818261,53.22132462385509],[6.594139987567991,53.22143570924645],[6.593971676105721,53.22163670471736],[6.592927781842633,53.222883262326924],[6.592980258397606,53.22298663598159],[6.593160333775323,53.22304038041226],[6.593798724695794,53.2232309093009],[6.593985777987483,53.223286730092866],[6.594400598134329,53.22341053502782],[6.594381991415887,53.22343282700094],[6.594313144859677,53.22351013776485],[6.594235264686485,53.22360392158944],[6.594049413954024,53.22381001614837],[6.593892123935434,53.22398954691963],[6.593842128626224,53.22404623361357],[6.593898255955545,53.22408099391678],[6.594270952302087,53.22431180896595],[6.59420445593872,53.22486741581294],[6.594196831936732,53.22492846530531],[6.594195667200887,53.22493769707949],[6.59419131526248,53.22496899559388],[6.594717083434836,53.225028093855165],[6.595325947341709,53.22509527678937],[6.595832796041978,53.224830125025186],[6.595981792189426,53.224925490637396],[6.597282549645859,53.22433977005087],[6.597678889695815,53.22417847891653],[6.598081660206777,53.22406338454868],[6.59844941574468,53.223982568684946],[6.598817861393169,53.2239264178352],[6.599212080628507,53.2238730905714],[6.599647574191265,53.2238255123678],[6.600026897773055,53.22379083685991],[6.600617036833571,53.223760196877365],[6.601271178887654,53.223751437232856],[6.601440791577446,53.2238019070631],[6.601662030566142,53.223869007470725],[6.601777425268118,53.22373172214686],[6.601851553935541,53.223752242700705],[6.602015586697012,53.223797284686256],[6.60218334502927,53.22384380743465],[6.602277814605046,53.223868264518835],[6.602412010025891,53.22390336355947],[6.603056684966742,53.22408325678649],[6.603150295028322,53.22410906087576],[6.603288966441671,53.22414565925423],[6.603432716275203,53.224186052194035],[6.603602985363555,53.22424133625366],[6.603909307353725,53.224325785552274],[6.604330825512124,53.22444262105508],[6.604678202175323,53.22453424552693],[6.605067737968713,53.22463827376462],[6.605535732717717,53.22476485094833],[6.606088992608353,53.22491420358775],[6.606674146439472,53.22507344716242],[6.607264722970791,53.22523525681209],[6.607546026185553,53.22531136922486],[6.607779299583156,53.22537448987106],[6.608482521599544,53.22556432671666],[6.60904999453977,53.22571672932219],[6.609709030544375,53.22589096814246],[6.610211323088969,53.22601994565379],[6.610211594590586,53.22602001477825],[6.610329817192903,53.22605112507461],[6.611125201511008,53.22626051420599],[6.611430249554616,53.226343357869546],[6.61212915151381,53.226532327931736],[6.612321493831752,53.22658213532447],[6.612494965470427,53.22662973571136],[6.612726781800064,53.22669588113693],[6.612942093265278,53.226751357060856],[6.613196301737439,53.22681919596682],[6.613273978304102,53.22684034725864],[6.614144439097712,53.22707740951334],[6.614551181337836,53.22718665910126],[6.615015841741752,53.22731196662651],[6.615090692191487,53.22733214817224],[6.615292909873513,53.227386684499514],[6.617655042273967,53.228032499169544],[6.62047560792766,53.228793778102165],[6.622636837681087,53.22937963436825],[6.622816126424643,53.22942822946088],[6.622995006969615,53.22947667572168],[6.62381970092184,53.22970002194187],[6.62438356357358,53.229852731314324],[6.626547879869818,53.23043593375683],[6.627411334104497,53.23067159800064],[6.628648116828331,53.23100735007416],[6.62945593928899,53.23122888234497],[6.629776532362766,53.23131651531451],[6.630183739654023,53.23142819678414],[6.630585907206423,53.23153850025169],[6.630964262722499,53.231640961356234],[6.631487451814933,53.23178264634894],[6.632415487413415,53.232036719483006],[6.633474251272383,53.232325517642785],[6.633965490240362,53.23246180831351],[6.634058429275113,53.232484351353804],[6.634137040051144,53.232506018734625],[6.63421788038829,53.232524499667946],[6.634282885126676,53.23254436725192],[6.634343359137721,53.23256604322602],[6.63447477456033,53.23260207018193],[6.636730620312086,53.233199595947205],[6.636885645837449,53.23323827709734],[6.637051907587659,53.233284308778785],[6.637147898088329,53.233308668877335],[6.637190797093302,53.23331242775094],[6.637233423910555,53.233324897316734],[6.63738454972897,53.233445655769465],[6.637733221053107,53.233540793393466],[6.6379246012377,53.233593005439545],[6.638717414296406,53.233806975851],[6.638893896292052,53.23385460585563],[6.639139108581015,53.233920255442754],[6.639335492043323,53.2339067400624],[6.64075563230824,53.23429282838891],[6.641618070966095,53.23452680229166],[6.642575988394611,53.23478862692539],[6.643257196932005,53.234973073096],[6.643613764538377,53.23506897384038],[6.643610508396606,53.23507443574652],[6.644376743305677,53.23527851058126],[6.64437160794822,53.23528578948374],[6.645280093337139,53.23553807261101],[6.645597818176028,53.23562630481623],[6.645698017258695,53.2356580188491],[6.645803308301576,53.23569690451582],[6.645892990429322,53.23574343950456],[6.645976693836036,53.23579965264157],[6.646040604718542,53.23586284011594],[6.646080640906615,53.235936324832295],[6.646087623440796,53.23597651092839],[6.646088666256693,53.23598248497188],[6.64609528493509,53.23602046421469],[6.646077138448481,53.236088565210814],[6.646043470376306,53.23616218492685],[6.646007854188959,53.236211615546154],[6.645994123630014,53.23622863521965],[6.646376111937353,53.23633956606596],[6.646530167860086,53.23620041202069],[6.646616138262915,53.23616631398203],[6.646717905586855,53.23613204112345],[6.64685157417028,53.23610693206396],[6.646946264632795,53.2361011933971],[6.647112233672817,53.23609945130156],[6.647207006276406,53.236111527222704],[6.64743220945445,53.23618498608645],[6.647726776499746,53.23627850624716],[6.64806199654,53.23639718308821],[6.648711292863691,53.236629418263426],[6.649099370400437,53.23677040721092],[6.649595736935725,53.23697670190001],[6.650176451028041,53.23721878078424],[6.650273406128588,53.237259179130575],[6.650555672349198,53.23738285461464],[6.651497511311717,53.237811863194295],[6.652349501489575,53.23820069848382],[6.652954152180466,53.23847797234394],[6.653567808044765,53.23875557953228],[6.654313060309171,53.239097862935864],[6.654735933035472,53.23929099239318],[6.655350565833464,53.239580676027096],[6.656069904841073,53.23991234879904],[6.656414169677642,53.24006995312034],[6.656908177762552,53.24029798108345],[6.657030350944829,53.24035447161668],[6.657130701635467,53.240400867463755],[6.657741218021028,53.240683959518265],[6.658603571935489,53.241081052526525],[6.659517006674713,53.241497377185894],[6.660108656517024,53.241768004367415],[6.660446382436218,53.24192180241274],[6.660982373060985,53.24216589456921],[6.661888038963006,53.24258593232715],[6.662478904144415,53.2428578862827],[6.663254718341989,53.24321413247666],[6.663980048781656,53.243545685685085],[6.664258035900446,53.243673895001656],[6.664849285905546,53.24394771149451],[6.665042516387307,53.24403495316506],[6.665704950942004,53.244334032495175],[6.666507513574556,53.244698303458016],[6.666624277861455,53.24474582855386],[6.666782986586822,53.24481042105464],[6.667007427040365,53.24490409371606],[6.667177070189569,53.244970600065436],[6.667811294788525,53.245220695907264],[6.668155283123139,53.24535142730252],[6.668284263047954,53.2453985149086],[6.669045591245416,53.2456708552292],[6.669395138113394,53.24579377741917],[6.669737802097663,53.245916421666045],[6.670381343864425,53.24614380356352],[6.670682063833734,53.24624980122832],[6.67077104465216,53.2462811651648],[6.671098270791162,53.246399800915455],[6.67125530900547,53.24645564362691],[6.671443471660723,53.24652631333651],[6.671642971922575,53.24659683448611],[6.671859778265152,53.246678475082696],[6.672300355279321,53.2468365582731],[6.672965873576275,53.24707551738152],[6.673332840885107,53.2472040828391],[6.673770249094102,53.24736154761338],[6.674245804024233,53.24753454383018],[6.674617856892946,53.24766809228428],[6.675531389028235,53.247994862030176],[6.675608749677338,53.24802217740113],[6.675910364489782,53.24812866472595],[6.676198844478496,53.24823225490842],[6.676530286697576,53.24834958161395],[6.67691278753236,53.248485329323856],[6.677462031997529,53.24867918761702],[6.678112212569243,53.248911363749315],[6.678543437416298,53.24906530118442],[6.678671980680277,53.24911005494451],[6.678936895807742,53.24920229058551],[6.679077507826419,53.24925327647623],[6.679300311419476,53.249331622079026],[6.67950544173014,53.24940615854235],[6.679842387711639,53.24952704748378],[6.680048423005625,53.24959921882886],[6.680696302070941,53.24983115427251],[6.680943854365194,53.24991718322421],[6.681324629440384,53.25005490365504],[6.681708586244437,53.25019321763526],[6.68262594562438,53.250519587134406],[6.683298883132592,53.250763271166804],[6.683745653348661,53.25092419348145],[6.685556437897549,53.251567735748324],[6.686590332796539,53.25194162943411],[6.687010037077896,53.252091114301955],[6.688135699242173,53.2524946541054],[6.688669823711582,53.25268656758277],[6.689149582841758,53.2528553799317],[6.690754734304509,53.25343638974687],[6.690852133827788,53.253471646524865],[6.691059736345874,53.25354584005101],[6.691935991638025,53.253860966019595],[6.693216184683125,53.25432014889395],[6.694039100552932,53.25460870072511],[6.694942675808107,53.25493136178184],[6.695672124408909,53.25519127418048],[6.69658810832229,53.25551908078394],[6.697285786014248,53.25576887869103],[6.698040866446727,53.25604090748765],[6.699164269073179,53.256444594291054],[6.699884395391992,53.256699811408254],[6.700756699312113,53.25702018294838],[6.701519029992168,53.25729460003458],[6.702430648981477,53.25761882470399],[6.702867599247931,53.25777488653517],[6.703027698920403,53.25783206544442],[6.703064394452432,53.25784516997201],[6.703970147294341,53.2581674254053],[6.705037212748615,53.25854964080677],[6.705904834881522,53.25885945861865],[6.706197853064585,53.258964086877256],[6.70716941009447,53.259308753702044],[6.707516678235296,53.25943077331843],[6.707620779240395,53.25947501030835],[6.709584689743568,53.26017486814123],[6.711475512303957,53.26084491028948],[6.714246300009672,53.26183331563575],[6.715220997832384,53.2621910664658],[6.71538292360803,53.26225050043271],[6.715497842318544,53.26229267891567],[6.716326425634448,53.262611319339726],[6.718817653259677,53.263652517610105],[6.721068227508664,53.264587961137934],[6.725476873920565,53.26642015054305],[6.725848086018059,53.26656443393042],[6.725852489587368,53.26656626301848],[6.726850480860454,53.26698114743584],[6.727542774185927,53.26726784686235],[6.728421557718357,53.267634524286244],[6.728660216205959,53.26773422368608],[6.729473835569257,53.268074122739954],[6.729750071790357,53.26818952174109],[6.730680734573593,53.268566521404985],[6.731135948206086,53.26875387368412],[6.731727948763544,53.26899751197376],[6.731979269364842,53.269092246323794],[6.73213528970869,53.269150591784054],[6.732291840687565,53.26920863454594],[6.732522211813673,53.269290518080716],[6.733832199782523,53.26974180350492],[6.733879853563433,53.26975140589992],[6.734323754791046,53.26988716477511],[6.734355471096747,53.26990627374709],[6.735893593991497,53.27037200693686],[6.736240693775646,53.270476413613856],[6.737102389361316,53.27073558887109],[6.737564605893288,53.27087585690941],[6.737735149110387,53.27092646523668],[6.739633287496835,53.27148968521772],[6.740457292774312,53.2717369316001],[6.740733628067657,53.27181889268261],[6.741410917405058,53.27202087652382],[6.742840340944658,53.27245553066573],[6.743081744469731,53.27253140143335],[6.743369317761966,53.27262240485521],[6.743944453799882,53.27281301884581],[6.744146888597096,53.272886658730926],[6.744316865044965,53.272953538769876],[6.744619444437555,53.273061992194876],[6.744674982190921,53.27308278828573],[6.745023014243659,53.27320018972837],[6.745689790501639,53.27344070383209],[6.745709229645961,53.27344959626155],[6.746970961108566,53.27390909498935],[6.749977363794437,53.27498836628951],[6.750778969402574,53.27527232690951],[6.751020499352099,53.275357885883935],[6.751389712711848,53.27549065608908],[6.756637073871106,53.2773774449586],[6.75665800185655,53.27738493473805],[6.756882067876898,53.277434411611175],[6.756907785976016,53.27740859662084],[6.757024867225505,53.27745066620577],[6.756998416904594,53.27747702876296],[6.757166748866211,53.277565513154734],[6.758544133825048,53.27806481151891],[6.76082857397963,53.27888667445236],[6.76144960982899,53.279108097435724],[6.762897812978662,53.2796273848443],[6.763987534192506,53.28001848313283],[6.765068887753245,53.280408454455596],[6.766242518734662,53.28083168522644],[6.766326555308535,53.28086199343581],[6.76655638216533,53.280945346352524],[6.767081422495897,53.2811357700165],[6.768061661779172,53.28148908796317],[6.769731449934206,53.282088332407874],[6.769922030862373,53.28215380715831],[6.771731415428224,53.28280264021547],[6.77252686558787,53.28308660912947],[6.77260073820047,53.28311298628547],[6.772630016883779,53.2831235222806],[6.774373497666506,53.28374881249193],[6.775021103826893,53.28398118226177],[6.776542730283197,53.284527137156125],[6.776776872518768,53.284611013935006],[6.778376267142395,53.285183949358895],[6.780475021525562,53.285934622610036],[6.781379323609503,53.28626076575678],[6.781726443320955,53.28638476756663],[6.781964330508478,53.286469741148466],[6.784227186077533,53.28727793490023],[6.78445371976852,53.28735932420926],[6.786388536442604,53.28805644504302],[6.787170775774936,53.288323792951445],[6.787198133572905,53.28833314362678],[6.788377743825415,53.288736275579765],[6.789737476646813,53.28920073815884],[6.790530469561931,53.289470958357],[6.791994029040485,53.28996711839693],[6.792476410189936,53.290130648042066],[6.794524260901957,53.290827575120126],[6.79505736103558,53.291009237272924],[6.796453908473495,53.2914851453285],[6.79689419447536,53.291634907569026],[6.798745462053135,53.2922646041727],[6.799954498490039,53.292677073295856],[6.800544517046505,53.29287835159984],[6.804207894427662,53.29412917054617],[6.804389613543733,53.29419101126565],[6.808209136472446,53.29548965299452],[6.80948790878248,53.29592393837771],[6.810608665190504,53.296305354441266],[6.811809879693679,53.296715192175],[6.81206305539573,53.2968053354507],[6.812501865493313,53.296961573889206],[6.812673059645693,53.29702011219254],[6.814344609241764,53.29759167314745],[6.815774524183229,53.298065614803754],[6.81660175832702,53.29834064963841],[6.817553312584132,53.29867764394506],[6.819376432201986,53.299299543035794],[6.819744692667653,53.29942572744391],[6.821400010045819,53.29998884766996],[6.822559395924743,53.300384160764644],[6.823354730407686,53.300649106305784],[6.82384522629176,53.30080985325964],[6.824241062189209,53.300934436204855],[6.82478650750798,53.30110081273046],[6.825441204401084,53.301286278591284],[6.8257098735471,53.301358010198435],[6.825935707590917,53.301418302009964],[6.826093237879986,53.30145919163256],[6.826266327808,53.301503309587574],[6.826545469088404,53.30158258394942],[6.826941825693408,53.3016797626131],[6.827154984919892,53.301727419748936],[6.827708756137188,53.301844788380784],[6.828098422980202,53.30192043078334],[6.828675278608413,53.30202552200035],[6.830485564061886,53.30234136280791],[6.831623618705996,53.302542232517304],[6.832764277491626,53.302740042505874],[6.833920493683276,53.30294531997094],[6.837396158864453,53.30355481415554],[6.839959293218831,53.304005349119535],[6.840258352570954,53.30405935762397],[6.841327747705057,53.304243398497704],[6.841749386909274,53.30432198269944],[6.842019870208597,53.30436632351673],[6.842757307013017,53.304497493529155],[6.84412078706735,53.30473710020393],[6.845010815194892,53.30489773435907],[6.845560449034473,53.30499254398889],[6.846018820868656,53.305073411999416],[6.846142083735311,53.30510607165735],[6.846349418861974,53.30522008762774],[6.846444006646133,53.30524084737184],[6.846652572687277,53.305279542989105],[6.846703877905609,53.30528826587982],[6.847246549162365,53.3053755560683],[6.847336108001748,53.30540364726837],[6.847401547656979,53.30543588674883],[6.847447164868669,53.3054751070269],[6.847476770014806,53.30549826514422],[6.847510371664913,53.30553478986093],[6.847555343622268,53.305602922395714],[6.847566279502806,53.30569150865894],[6.847558694316533,53.30577602622235],[6.847447785011192,53.306104852428966],[6.847444529144867,53.30622962398596],[6.847460862654255,53.306302737148044],[6.847465491151311,53.306304862843106],[6.84749906954587,53.3063203080114],[6.847680717166543,53.30635290000987],[6.847766214359636,53.30636377703806],[6.84778599901187,53.30636629543666],[6.847788199310575,53.306363042508075],[6.847795353934596,53.306362542159704],[6.847822744784446,53.30633183456113],[6.847838704805162,53.30633306043981],[6.847851359455156,53.30632086459191],[6.847874911811987,53.30629067094217],[6.847899316071105,53.306251525279684],[6.847914655499283,53.306213181772605],[6.847926555982212,53.30617164489715],[6.847942759731878,53.30611674657472],[6.847973066217187,53.30602376240242],[6.847993451634141,53.30597007135595],[6.848008195131849,53.30593584194609],[6.848026548765913,53.305895691417476],[6.848043217323643,53.30585982999974],[6.848061043326348,53.305832446831424],[6.848083329948659,53.30580431746218],[6.848107765483765,53.30577894780381],[6.848140314760085,53.30574773706313],[6.848177198413953,53.30571471224252],[6.848215815144237,53.30568545867728],[6.848259151654697,53.30565558155537],[6.8482867346756,53.305639420785084],[6.848302327826774,53.30563027155298],[6.848353996419316,53.30560675443703],[6.848407306371232,53.30558651541627],[6.848442210845721,53.30557699653106],[6.848464970060828,53.3055707886125],[6.848532896030946,53.305557282476],[6.848596849242159,53.3055496209669],[6.848667254046065,53.30554949259574],[6.848721919412913,53.305551982002854],[6.848771511605417,53.30555794799625],[6.848858523176097,53.30557193315169],[6.848859926105215,53.305572158724104],[6.849510817669434,53.30568451590037],[6.849866132455317,53.305746341626524],[6.850114414344072,53.30578954616895],[6.850404383775279,53.30584006990043],[6.85125717350978,53.30598666023822],[6.852065386031025,53.306125933723905],[6.852283049032838,53.306158049175856],[6.852329005221629,53.30616338404788],[6.852374908718746,53.3061658438352],[6.852496533918836,53.306183762811564],[6.852568904451144,53.30619729477429],[6.873714183872902,53.30984637293803],[6.873963235029668,53.309886975832896],[6.874037863478645,53.309900332227926],[6.874429096376741,53.30996608082662],[6.874933277069088,53.310054190514855],[6.875768307425539,53.310198176971866],[6.876373632764658,53.310302560620286],[6.877498315563097,53.31049529244096],[6.878186594452379,53.31061350212082],[6.878858593636382,53.31072728185271],[6.879588178524718,53.310852995890386],[6.880051976565762,53.31093213182839],[6.880786114515271,53.31105739565978],[6.881237181299332,53.311133602876374],[6.881474845089888,53.31117684814487],[6.881662412399445,53.311212448259994],[6.881764418783739,53.311229377586585],[6.881867541781998,53.3112456189417],[6.882208876922953,53.31130183506861],[6.883274383787549,53.31148537308729],[6.883959797981107,53.31160398101913],[6.884035823595357,53.31160121878782],[6.884271661842392,53.31164617977861],[6.884285547189797,53.311647202020794],[6.884305431200781,53.311658061788215],[6.884617085239639,53.31171925103063],[6.884813297573898,53.31175778501271],[6.894042339063303,53.31331933435302],[6.894518186032563,53.313400321733],[6.895213502232394,53.313519218047205],[6.896485266457386,53.31373637546139],[6.897658248016191,53.313936527202095],[6.897759439305711,53.31395380377422],[6.898654660147433,53.31410663530102],[6.900108589623138,53.31435882096596],[6.901363869148051,53.314578156657056],[6.902498307462438,53.31477550293811],[6.902669492019843,53.31480513919486],[6.902695857049107,53.31481022568026],[6.902856450322419,53.31484122640466],[6.902952830887838,53.31486112050581],[6.902996298161262,53.31486008698734],[6.903702212541988,53.31502590895176],[6.904002190543318,53.31509707199406],[6.904285497123507,53.31516908280098],[6.904587692581172,53.31524222042939],[6.904831507661521,53.31529729445342],[6.905343825105756,53.31543341516375],[6.905519513100353,53.3154846843095],[6.906156620900812,53.31567332466767],[6.906461301173174,53.31576269208759],[6.906474824056183,53.31574699218319],[6.906994435620766,53.31591432325819],[6.907200911491204,53.31598402768932],[6.907257317183191,53.316005160858396],[6.907450194507898,53.3160662658773],[6.907486588235013,53.31607781168623],[6.907732799929381,53.31615590934833],[6.907949048243163,53.31622477892184],[6.908396959974828,53.316378273129985],[6.908637024497009,53.31648066583194],[6.909012252396296,53.31661943210958],[6.90917304185422,53.31668073401453],[6.909853465793711,53.31695054017252],[6.910281063061372,53.31713052588689],[6.910852503670419,53.317371063033036],[6.911292546156351,53.31757935718119],[6.911380530995794,53.317625933624335],[6.911580896216497,53.31772694577715],[6.911849980801308,53.31786483883979],[6.912114587877269,53.31799659630667],[6.912489151668603,53.318186287746485],[6.91262929635265,53.31825931408357],[6.91264426489999,53.31826711324418],[6.912681295362486,53.31828383472594],[6.913308807698677,53.31863890265268],[6.913625675948099,53.31881542082809],[6.913897979286989,53.31897177204316],[6.913905308390488,53.31897234395677],[6.914167118936145,53.31912264503162],[6.915040452543119,53.31964899390764],[6.915284949063015,53.319807259188536],[6.915722572161149,53.32011230959697],[6.915920949294374,53.320239580977486],[6.915909233977406,53.32024610153438],[6.915926530107503,53.32025770799443],[6.916118101640821,53.32040251772448],[6.916122810668849,53.32040030102131],[6.916165984330758,53.32043144777937],[6.916107432335591,53.3204617857156],[6.916099695108395,53.32046579333907],[6.916157398456011,53.320507979618],[6.916365897952797,53.320672991320045],[6.916442234748388,53.32063503094994],[6.916752270743747,53.32088170596958],[6.91685905069419,53.32095857147545],[6.916863544571485,53.32103637476192],[6.916673733869934,53.321181842769064],[6.916797838638653,53.32127328620403],[6.916831387134952,53.321297923059774],[6.917083796472724,53.32123224056173],[6.917303270974502,53.32127833958432],[6.917948515138447,53.32174280244924],[6.919234762915407,53.322668630257816],[6.919420805459749,53.32280253255753],[6.919531179558816,53.32288008232096],[6.918872583549657,53.32339200496791],[6.91982710830619,53.324031138782104],[6.920268882362675,53.324337919079085],[6.920632656058502,53.32459256194917],[6.921023287979776,53.32486578691853],[6.921060755708579,53.32489200817103],[6.921471041323056,53.325179143884355],[6.921610131519556,53.32527627560824],[6.92200126399117,53.32555013809799],[6.922393043427289,53.32582432357806],[6.922781078258123,53.326095643960116],[6.922947293405202,53.326113470817944],[6.923197574940398,53.32599636688143],[6.923449354230889,53.325879629691],[6.92369181772885,53.325766875304026],[6.923741356981756,53.32580279979822],[6.92388851052478,53.32582279216225],[6.923913828045209,53.32584201448718],[6.924261119854868,53.326105772040485],[6.924540362401231,53.326318321231774],[6.924913478573922,53.32660096012889],[6.925286611192711,53.32688392119456],[6.925546230436621,53.32708135198171],[6.925575500771902,53.32710361478662],[6.925597883132883,53.32711878539439],[6.925619012806603,53.32712998195165],[6.925645572052068,53.32713769408127],[6.925702952863142,53.32715435784858],[6.925771337121638,53.3271529613386],[6.92577468284947,53.32715207376753],[6.925816244433546,53.32714105434264],[6.925928763737392,53.32708805752898],[6.925983714681602,53.327130409196776],[6.926154593062098,53.327260981573076],[6.926770617353863,53.327739298633084],[6.926720697807895,53.32776343811815],[6.92681657700063,53.32783495715317],[6.926725589475529,53.32787806327836],[6.926878759677958,53.32797922341772],[6.927010662951276,53.32807458979554],[6.927055695333769,53.32810816225116],[6.927185001372841,53.3282064374443],[6.927200200914045,53.32822430591203],[6.927207242548469,53.328237363187874],[6.928144209297561,53.32885723496131],[6.928436468438155,53.32881543226399],[6.928652813752826,53.32885189126108],[6.928848732398843,53.32888811128829],[6.928988404091811,53.32891805183215],[6.929074987004214,53.32894062113788],[6.929390596244763,53.329033556540146],[6.929556956992098,53.32909697983038],[6.929848652066121,53.329230912505054],[6.929931933271563,53.32927066114468],[6.930075484563123,53.329355638912325],[6.930286438827784,53.32950432947045],[6.93033736328378,53.32954051209464],[6.930447641164911,53.32963612541189],[6.930583440629619,53.32977912116217],[6.930644546873361,53.32985184751361],[6.930765112857205,53.33003009563411],[6.930932740698139,53.33031303602188],[6.930975606841861,53.33039743646638],[6.931038565937445,53.33054444056152],[6.931076182869167,53.33064362853778],[6.931099060081961,53.33071271176502],[6.931116246345709,53.33083578805966],[6.931115014444033,53.33103472366966],[6.931737911909471,53.33206843786823],[6.931838741590379,53.33226118230812],[6.931874114314181,53.33234039453736],[6.931901318433876,53.33242918365883],[6.931957838783628,53.33267946377256],[6.931963881547015,53.33279563754582],[6.931951485326501,53.33292720874901],[6.932641121274575,53.33332452400871],[6.93275420677783,53.33343729959208],[6.931906178544312,53.334015733577964],[6.931560416779008,53.33401508944389],[6.931474098224105,53.33404460511501],[6.93140878076487,53.33407824543544],[6.931127999959362,53.334277931574256],[6.931020349261079,53.33434898758025],[6.931329236945688,53.33455640452465],[6.931733859407272,53.33546189601811],[6.932166165621982,53.335507617180575],[6.93239488302959,53.33549414352169],[6.93497307300983,53.33522169135143],[6.935071150650781,53.33520388506377],[6.935149452001935,53.33519638940769],[6.937156159640093,53.33483049412922],[6.937322886345349,53.33479350224107],[6.937802722350599,53.33459250754466],[6.938117528611358,53.33429689767221],[6.938171810680828,53.334196244969746],[6.938321521988255,53.333850139303735],[6.939136862802158,53.33312127676855],[6.940379924821546,53.3325665551996],[6.940401434543512,53.33255517514934],[6.94041621138019,53.33254984115205],[6.940809343770042,53.33236296597338],[6.94350838163063,53.331079988555096],[6.944999950551349,53.33052703003554],[6.945043019397026,53.33051044952533],[6.945122876246815,53.33047621686527],[6.945198839676222,53.33043893510226],[6.945270555018911,53.33039875981685],[6.945337729977489,53.3303558691471],[6.945400065931686,53.33031043232649],[6.945457321082934,53.330262653798776],[6.945509211460395,53.33021273406096],[6.945555554344482,53.330160892068],[6.945566388035772,53.33014747737785],[6.945760954225414,53.32990134449506],[6.94579069815326,53.32986120889935],[6.945825334603647,53.32980618450835],[6.945853878088431,53.32974992615285],[6.945876230578304,53.329692669661185],[6.945892265829507,53.3296346593147],[6.945901931447793,53.329576147423],[6.945905196046396,53.32951738602223],[6.945902017443339,53.32945861919959],[6.945892440970946,53.32940010338655],[6.945876469623117,53.32934208657575],[6.94585549875456,53.32928770140796],[6.945533976826189,53.32855844766643],[6.946180038236605,53.32828684192137],[6.94642543112449,53.328179161728045],[6.946665854699295,53.32806436511309],[6.946779658043227,53.32800770040229],[6.946919381723736,53.327936383434206],[6.94713784798358,53.32781430484311],[6.947523962141218,53.3277608182736],[6.947994126326217,53.32767595572982],[6.948454004556926,53.32757286418622],[6.948454659521725,53.327572711891946],[6.948638744943274,53.32752726545559],[6.949085746760136,53.3274065360559],[6.949519222952436,53.327268383888075],[6.949933862540688,53.32711467817781],[6.950414396766124,53.32692333055605],[6.950417206531792,53.32692220662314],[6.950558940137394,53.3268643032938],[6.951245708334683,53.326576780999844],[6.95184888658926,53.32635128261236],[6.952261814801894,53.326258367218614],[6.952757696867142,53.32613669987021],[6.953446805561838,53.3259820307366],[6.953801454266131,53.32592170842346],[6.954010359137516,53.32592843955575],[6.954401436571708,53.32593491611316],[6.954892247185327,53.32592577483289],[6.955381019617318,53.325897426545964],[6.955865630817478,53.32584999693288],[6.9563440294907,53.325783685360996],[6.956814154409788,53.32569878841588],[6.957158674919095,53.325623473604615],[6.957349968768841,53.32558650091272],[6.957449295333795,53.325565954702],[6.959051513564584,53.325226954595415],[6.959060450511895,53.325225058352046],[6.959150211024268,53.32521109637842],[6.959620340501986,53.32512618647565],[6.95978001233751,53.32509269880317],[6.959985580060809,53.32504801501712],[6.960285733342896,53.32497836534523],[6.960733315614218,53.32485744149581],[6.96089972104859,53.32480695112143],[6.960950143011326,53.324795119540376],[6.961072717734718,53.324765602689084],[6.961520296997961,53.32464467410156],[6.961953703693996,53.32450647814652],[6.962371069286112,53.32435160562324],[6.962662531661984,53.32422931252258],[6.962687466326598,53.32421831842567],[6.963636895907721,53.32392563709313],[6.963944185719036,53.323825412266594],[6.964361547917941,53.323670530016635],[6.964396193410679,53.323656633025216],[6.964405407218609,53.323653663322126],[6.964593079029589,53.32359113220417],[6.964672156225491,53.32356178613658],[6.96501133875675,53.3235128578035],[6.965016109721026,53.323513210362314],[6.966091300773499,53.32358386250209],[6.966408305433098,53.32360062803441],[6.966899039517183,53.32361067011156],[6.967121192498087,53.32360889061403],[6.96795660904403,53.32359478984778],[6.968225219863547,53.32358736472073],[6.968713956437929,53.323558962341295],[6.969198527651438,53.32351147998237],[6.9694744702449,53.32347561311267],[6.970093332148802,53.32338784015818],[6.970295743394722,53.32335734234587],[6.970765814155259,53.323272399963116],[6.971225606262877,53.32316921235246],[6.971302674657333,53.3231498726384],[6.972283283289059,53.32289992677397],[6.973624614591428,53.322563524203865],[6.973709178126319,53.32254194514253],[6.975087780198704,53.32218421975408],[6.975208666113961,53.32215209456296],[6.97547839240436,53.32207869342927],[6.975683573844274,53.322020597272584],[6.976116905274588,53.321882350450444],[6.976443828012137,53.32176292456349],[6.97717717028318,53.321479399296926],[6.977267535164978,53.32144390219793],[6.977667022816624,53.32127296222685],[6.977914971208276,53.32115428250159],[6.977996187996117,53.32111369178173],[6.978119645208133,53.321096915842844],[6.978428020795357,53.32106820887242],[6.978729633277292,53.32103633924379],[6.979034872528845,53.32099625093226],[6.980253160910436,53.32082025138837],[6.981327153024091,53.320675352341425],[6.981610907895004,53.3206335832725],[6.982080927361716,53.3205485868672],[6.982540661422976,53.320445356121155],[6.982608858246013,53.32042826656047],[6.983573506365031,53.32018313911759],[6.983602009477831,53.320175857767246],[6.983994539502084,53.320074961773585],[6.984029905279484,53.32006580166924],[6.984828189356318,53.319857689972395],[6.984964346114016,53.31982122777742],[6.986227278982072,53.31947392222257],[6.986406520697065,53.31942290166213],[6.986839779320261,53.31928461735755],[6.986862548155633,53.31927616327497],[6.987473320571495,53.31911039389642],[6.988588511006069,53.318818206936896],[6.989801134596537,53.31850785100753],[6.989827504897813,53.31850106570809],[6.990868581870442,53.318231772436725],[6.992140953352044,53.31790504716352],[6.992495045669815,53.31780752101364],[6.992928284807574,53.31766921370887],[6.993310947721757,53.317527061244796],[6.994582059212322,53.31746212090551],[6.997199265214131,53.31741777895083],[7.000122037734881,53.3174862053896],[7.002029558995531,53.31767289609578],[7.003553277494693,53.31788814780589],[7.003605623433792,53.317894955890154],[7.003628295310945,53.31789754562366],[7.004322762601575,53.317973469493445],[7.004396982531563,53.31798043314817],[7.004494705352093,53.317986172811],[7.004592853095321,53.31798807827976],[7.004690989716082,53.317986128461236],[7.00478869888886,53.31798034783094],[7.00488557397973,53.31797073916703],[7.004981197047111,53.31795736381559],[7.005075148313851,53.317940274161906],[7.005121153559028,53.31793040737461],[7.005557518290084,53.31783198470381],[7.005603391430391,53.31782112376549],[7.005639022204784,53.317811953666215],[7.010298304830235,53.31656936719846],[7.010590179088627,53.31652145309687],[7.010676517708717,53.31650559328257],[7.010768393451814,53.31648485961711],[7.010857805789791,53.31646056441644],[7.010944389807509,53.316432821357246],[7.011027740296963,53.31640175005353],[7.011107533254948,53.31636747441521],[7.01118339940137,53.316330151317175],[7.011255031026372,53.316289938600384],[7.011322114627225,53.316246999576485],[7.011384360423253,53.316201529589485],[7.011441508467743,53.31615371908691],[7.011493321824966,53.31610377168534],[7.011539570036661,53.31605190349533],[7.011580051248773,53.315998332936395],[7.011587331725237,53.31598759587863],[7.012129205560879,53.315173499515176],[7.01214370094648,53.31515081837259],[7.013666709631878,53.31266955591773],[7.013679472892782,53.312647940476346],[7.013685918717761,53.31263626914563],[7.014158118845873,53.311762598034086],[7.014180114221648,53.311717994902565],[7.014202349887112,53.31166071700556],[7.014218303480178,53.31160270635147],[7.014227873677772,53.31154418000006],[7.014229715964028,53.311523458260694],[7.014273439387155,53.31089761266055],[7.014274747894437,53.31085957142476],[7.014271479227204,53.31080080549337],[7.014261812661728,53.310742287951655],[7.014245758395538,53.310684288267076],[7.014244102516997,53.3106793777847],[7.014038366752798,53.31007906125566],[7.014259102527836,53.310028496100145],[7.014298091073345,53.31001949355101],[7.015071686820328,53.30983931682891],[7.015109657915843,53.30983039969096],[7.015887422631983,53.30964632375932],[7.015996023907224,53.30962002996289],[7.016011276067518,53.30961624734014],[7.016830142588933,53.30941225840108],[7.016859114198208,53.30940499950811],[7.017691971009147,53.309195064152924],[7.017712806604667,53.309189785620134],[7.018378619270817,53.30902053002206],[7.018835669219973,53.30891323034749],[7.018916162286713,53.3088940107734],[7.019678474716379,53.308708916409024],[7.019726032882241,53.30869725235607],[7.019835492669432,53.30866954231378],[7.020682481291932,53.308450344081386],[7.021427971910733,53.30826362300144],[7.021579607825845,53.30822445279281],[7.021894865364298,53.30814055838981],[7.022222569320133,53.30806200276743],[7.022603307684666,53.307976551343465],[7.022617857851163,53.30797327889273],[7.023165492684895,53.30784958844703],[7.023789597612303,53.30771915537723],[7.024747880142257,53.30752717930318],[7.025751157876508,53.307329477361385],[7.025813743556945,53.30731696876968],[7.026007968413106,53.30727576520937],[7.026870344345246,53.307084800481036],[7.026963203380975,53.307063816907764],[7.027468268425129,53.30694740073695],[7.027621463593417,53.30691520231947],[7.028115680470206,53.30692973531019],[7.028419338588629,53.30693497049803],[7.028713818942899,53.306936465918525],[7.02873951978581,53.30693757878558],[7.028785413393183,53.306939487024096],[7.028918719689112,53.3069440464845],[7.030070450867316,53.30734566625235],[7.031033176149187,53.30768591172055],[7.031091009095895,53.30770614097097],[7.031474767519513,53.30783023918289],[7.032394424636284,53.30810725511511],[7.03244343228605,53.308121878979705],[7.032758595020616,53.30820970732677],[7.033345183530237,53.30836337388501],[7.033477008448133,53.30839702135692],[7.033728226797052,53.308456282042634],[7.034437538543466,53.30861483200192],[7.034645626193851,53.30865926943879],[7.035115284475143,53.30874473797607],[7.035593252249363,53.30881163243678],[7.036077522254074,53.30885966392068],[7.036565984786643,53.308888612366104],[7.037056564373318,53.30889836871251],[7.037547174230359,53.3088888816042],[7.038035679988379,53.308860189343626],[7.03850164567385,53.30881459394793],[7.03854702772056,53.30880927102225],[7.03856540056839,53.3088071043135],[7.038910437692412,53.30875900908321],[7.038897909661964,53.30888356057686],[7.039657853043596,53.308892065918705],[7.039715583406797,53.30860969395768],[7.039972722912593,53.30855180348558],[7.04041990781304,53.308430574928195],[7.040852882299383,53.30829209477448],[7.041269815038341,53.308136939280814],[7.041614744576124,53.307990430562576],[7.041699391195955,53.307952283795736],[7.041753556796917,53.30792764167751],[7.042133108744626,53.307741228931484],[7.04249147335882,53.30754033315933],[7.042827135972708,53.30732583546846],[7.043138674739153,53.30709864804574],[7.043424716675712,53.30685974172042],[7.043575316412343,53.306719257678246],[7.043623943761217,53.30667198906756],[7.043732687600785,53.306562872016904],[7.043964212625505,53.3063036405456],[7.044032723853101,53.306213158787955],[7.044890033701748,53.306058343817725],[7.046134055885044,53.3058539494623],[7.046458291281507,53.30579593715811],[7.046787374323628,53.305732177250775],[7.046887674782911,53.30571227872371],[7.04734707833659,53.30560881008758],[7.047592580826223,53.305544854660376],[7.047699140173161,53.30551572830984],[7.047900773799125,53.30545842670831],[7.048333706320267,53.305319922210025],[7.048425902044428,53.305287533790775],[7.048818616959863,53.30514730802698],[7.049143283898824,53.30502451237944],[7.049542332450525,53.30485333620789],[7.049921809695753,53.304666890118476],[7.050010410352938,53.30461962372767],[7.050125262089661,53.30455738113307],[7.05096980632691,53.3041307069462],[7.051074009235072,53.30413284172189],[7.052053905063818,53.304148600883074],[7.052253361153763,53.30415021371296],[7.052473968981436,53.30414829774657],[7.053291810313687,53.30413400336369],[7.053326248720935,53.304133346085024],[7.053751090042481,53.30412474824364],[7.054265205049455,53.3041216703231],[7.054961065217149,53.304130140404204],[7.056051395077308,53.304161616965516],[7.056410999794223,53.30416682201024],[7.056439714712429,53.304166790659124],[7.057249126228208,53.30416502444438],[7.058085927341339,53.30416375261961],[7.059036963236613,53.30416678101285],[7.05907570401313,53.30416684498951],[7.059224412319769,53.304165979958626],[7.060486956297972,53.30415108225903],[7.06172947024165,53.304181062822416],[7.063182332656134,53.30422106311595],[7.063390958278617,53.30422506300035],[7.064902842975615,53.30424143885013],[7.064999521663085,53.30424211186647],[7.065692559338821,53.304244258459484],[7.065709904838189,53.304244302835365],[7.066578698204828,53.30424578813879],[7.06663235020565,53.30426085538161],[7.066946012001379,53.304343770665376],[7.067165499581937,53.30439581939956],[7.067328220846457,53.30443265564695],[7.067568076094881,53.304484157326364],[7.068037737999267,53.304569508238394],[7.068363730152837,53.30461718093428],[7.068606175346612,53.304649205406335],[7.06875815292396,53.30466829692886],[7.069242396427031,53.30471618701421],[7.069730847969293,53.304745007789855],[7.070221401017074,53.30475462064783],[7.070314903932045,53.304754271617405],[7.071195621167438,53.304747684881846],[7.071509636007086,53.30474138632022],[7.072405159331757,53.304712176715775],[7.072610563768863,53.30546144753899],[7.072762728102613,53.305431047972085],[7.072568580087651,53.30470684696358],[7.072988036832113,53.304693170897956],[7.073071054025763,53.304690181758005],[7.073105701745146,53.3046887690534],[7.073840216516242,53.30465786335391],[7.073941127418761,53.304742209102415],[7.074252521785144,53.30496946177761],[7.074588070692845,53.305184023580765],[7.074946318850556,53.305384974711366],[7.075325758020951,53.30557146351845],[7.075724736205196,53.30574268621137],[7.076141563633778,53.30589791143754],[7.076574455436629,53.30603647210459],[7.077021554494371,53.30615777405016],[7.07748093779658,53.30626130494323],[7.077505999596149,53.30626637157041],[7.077852049143532,53.30634243126336],[7.078321751190737,53.30642774086748],[7.078799771715571,53.306494462293806],[7.079284063004895,53.30654231332343],[7.079772526142596,53.30657108438603],[7.080263103555226,53.30658066421886],[7.080753657119408,53.30657099215621],[7.081242124166914,53.30654213322015],[7.081726386470676,53.306494189197764],[7.082204371295793,53.30642738798515],[7.08267403124591,53.30634199040529],[7.083133370123662,53.30623837521807],[7.083394451129331,53.306170056056416],[7.083529348852326,53.30613291260877],[7.083715289121673,53.30607985214869],[7.083985317008747,53.305993359372714],[7.084491914449623,53.30594050440602],[7.084669633497827,53.30592063000667],[7.085147607281287,53.30585381712029],[7.08561725353662,53.30576840809281],[7.08607657915392,53.30566478258881],[7.086523605877179,53.30554339108877],[7.086888848309018,53.305427837075435],[7.087588780039471,53.30519140631061],[7.08765633061482,53.30516830623999],[7.088073066335614,53.30501299889753],[7.08847194365483,53.304841692533515],[7.088851266023084,53.30465512402133],[7.089209384348348,53.304454089788884],[7.089306984266641,53.30439449623239],[7.089842225813058,53.304061555044335],[7.09008003892591,53.30390651916543],[7.090391287439676,53.30367920138306],[7.090677046748693,53.30344018258423],[7.090936092120954,53.30319047069136],[7.091167315999214,53.30293115104571],[7.091369725865357,53.302663332511656],[7.091542466865781,53.30238815074677],[7.09168477453031,53.30210678684379],[7.091736706456464,53.30198361921233],[7.091916797386508,53.30152943761739],[7.091976161334252,53.30136627076835],[7.092055950216986,53.30107618615151],[7.092084434909642,53.3009269658546],[7.092127301067199,53.300658100506666],[7.092127326828034,53.30065799319491],[7.092141071236852,53.300473293443076],[7.092143525588395,53.30041164320487],[7.092145690666154,53.300302500359145],[7.092129466521016,53.30000867335811],[7.092099869891167,53.29980806135929],[7.092068981897418,53.29964493480658],[7.092040348140588,53.29952705316575],[7.091989601045319,53.29933591615075],[7.091988192131262,53.299330635562086],[7.091723641281562,53.29834177309256],[7.091673585881813,53.29817489300744],[7.091562001526442,53.29788860174546],[7.09149558776037,53.297749596115246],[7.091466581954487,53.29757364592075],[7.09138648767791,53.297283600504365],[7.091274909098139,53.296997308850386],[7.091132324216234,53.296715995329656],[7.090982047078516,53.29647408227194],[7.090948853187801,53.29629615932124],[7.090914950083577,53.296158634388284],[7.090727275867131,53.295471284085316],[7.090539236125066,53.29467198906087],[7.09053289953926,53.2946456568532],[7.090270758642506,53.29357715827956],[7.090264771672826,53.293553175713875],[7.090062805849402,53.29275972901177],[7.089872604771274,53.29196808954915],[7.089801950407322,53.29148349100343],[7.089772077479723,53.29103034438956],[7.089813368523025,53.29070966732938],[7.089970510372472,53.290228362617846],[7.090007774855918,53.29010510738202],[7.090095811307859,53.28978890538288],[7.090390355557965,53.28897557614097],[7.090404374875107,53.288935978774276],[7.090710161909275,53.28805326844632],[7.090723028792827,53.28801530325056],[7.090735822716959,53.28797579510142],[7.091000453099761,53.28713812745775],[7.091272089359302,53.28632810363785],[7.09127542802973,53.28631808955777],[7.09128719158671,53.28628179355192],[7.091572642321061,53.285381763510124],[7.091839220407341,53.28455133591512],[7.091853198496032,53.28450655150893],[7.092130750219044,53.28359202828769],[7.092187931673992,53.283373089086695],[7.092235856750237,53.28308049868982],[7.092249691393368,53.282893280097646],[7.092268170656948,53.282420303600155],[7.092270224973276,53.28231368703817],[7.092254022781868,53.282019849042214],[7.092205779212866,53.281727283698665],[7.092134547114629,53.281464207895745],[7.092000219979031,53.281046837757216],[7.091991400096163,53.28101986583167],[7.091879860838031,53.28073357390337],[7.091737313490301,53.28045225953688],[7.091564376746024,53.28017714598583],[7.091450988869182,53.28002157892103],[7.0910303385711,53.27947302269593],[7.090941174519855,53.2793608339329],[7.090709812189063,53.27910160229946],[7.09045065746207,53.27885198338073],[7.09016483449698,53.2786130601897],[7.08998355329541,53.27847708386153],[7.089530828839004,53.278150663875664],[7.089400826462863,53.27805943566503],[7.089065415659675,53.27784492078937],[7.088850343989659,53.277721097696364],[7.088014273237403,53.277258598684696],[7.08780737160245,53.27706230169731],[7.087521574020947,53.27682338096754],[7.087210315000696,53.27659616085796],[7.086874928005078,53.27638164054599],[7.086516866989895,53.27618072134038],[7.086508474667951,53.27617659905666],[7.086587361682305,53.27546027806077],[7.086702343890222,53.27458507276304],[7.086709547306801,53.27452509846441],[7.08672547111724,53.27423125408725],[7.086709312183649,53.273937423336726],[7.086695487668406,53.2738308426844],[7.086624726587704,53.27335810453638],[7.086590353926746,53.27317211570078],[7.086510355710518,53.27288205600307],[7.086398871366649,53.27259575710978],[7.086271270103149,53.272340979389554],[7.086103612237731,53.27203896556213],[7.086088729849192,53.27201243034218],[7.085915864945734,53.27173730757014],[7.085713367899588,53.271469540849495],[7.085616738026658,53.27135623238228],[7.085255787857451,53.27094731671686],[7.085249470697461,53.27093951532324],[7.085018201592598,53.27068027057899],[7.08491226426929,53.27057375082648],[7.084330434049535,53.26992821451817],[7.084294854793752,53.269889210719754],[7.083553052846161,53.26908527434171],[7.082818248570969,53.26828669253201],[7.082804988591256,53.26827233046456],[7.082074455183887,53.26748517663325],[7.082071152488101,53.26748161939986],[7.081373674241839,53.26673162492174],[7.080648750818474,53.26593141581479],[7.080635796822699,53.265917174117206],[7.080168901694798,53.265406169445136],[7.080318412166398,53.265281647273824],[7.081114511609718,53.26469970748283],[7.083097119483815,53.26327850399286],[7.083105880449561,53.263272205166174],[7.084051430068358,53.26259183620955],[7.084056502796946,53.26258818852343],[7.0849716967682,53.2619282193607],[7.08499190874819,53.26191358103511],[7.085954941034745,53.26121307831135],[7.086176283870961,53.26105497145342],[7.086205802665723,53.261035303200885],[7.086319981596235,53.26096217642203],[7.086559645391703,53.260789726626186],[7.086586832930298,53.2607691386286],[7.086621065941069,53.26074278987397],[7.086880152040038,53.2605543530936],[7.087795370329481,53.25988997590423],[7.088772064357115,53.25920073234576],[7.088854748841132,53.25914135041691],[7.089717247471524,53.25851098355846],[7.090385910288592,53.25802693960022],[7.090654822414045,53.257852475476014],[7.090671809173942,53.25784082071212],[7.090988431018449,53.257726558184416],[7.092211287985942,53.25728544232711],[7.093513249238357,53.25681917562893],[7.093583725121527,53.256793620908894],[7.094134248519662,53.25659151034086],[7.094526452841133,53.25646568362573],[7.094898610155707,53.25632788308943],[7.094941978669448,53.25631075668596],[7.094986066593504,53.25629321560814],[7.095142797139878,53.256225810737966],[7.096091997911531,53.255882544417865],[7.097255167222655,53.255464837318776],[7.097302045066255,53.25544785687313],[7.098661599340489,53.254951459125536],[7.099960757782326,53.2544898259666],[7.100008587895156,53.254472687954504],[7.101247425944572,53.25402496764278],[7.101254963352611,53.254022236652304],[7.102531090277092,53.253559797481465],[7.103111466266442,53.253351437549135],[7.103175860357705,53.25333259656828],[7.103608078915921,53.25319389184481],[7.103779434543966,53.25313265531102],[7.104020350921445,53.25304393116337],[7.104265158559561,53.252949792667025],[7.104442560727531,53.252876391616695],[7.105113040286878,53.25263335510925],[7.106272899411895,53.25222267876316],[7.106326562359987,53.25220349542365],[7.107243431275693,53.25187262663715],[7.10851076983236,53.251482702591154],[7.109671355209217,53.25113833516315],[7.109680877574894,53.25113550325137],[7.111314518925649,53.250649000797964],[7.111512695887265,53.25059278706558],[7.111557500442054,53.250580442962665],[7.111605450690638,53.250566120494334],[7.111612379814185,53.25056406083595],[7.112044559473232,53.250425317526236],[7.112052369904745,53.25042240127425],[7.112491561782485,53.25028600010256],[7.113821508985444,53.24988455894049],[7.11508320605243,53.249516025938746],[7.115120766081573,53.249504980963806],[7.115178200728714,53.24948777760014],[7.116463300950634,53.24909880005299],[7.11778923836893,53.248709028303296],[7.117810164827418,53.24870284892526],[7.117840740355255,53.248693735385665],[7.119133735665644,53.24830622176589],[7.120460544797368,53.24790877712339],[7.121783805648316,53.24751789446604],[7.121792214774429,53.24751540120334],[7.121901615438689,53.247482309905514],[7.123208123053914,53.247079054030344],[7.124398411514384,53.24672712860393],[7.125423517735786,53.24643334949378],[7.1254469513747,53.24642660219984],[7.12562173597242,53.246376474208134],[7.125650993626171,53.24636775519171],[7.125714623073446,53.24634868826266],[7.125843514041017,53.246307069648026],[7.125946921664354,53.24627488013674],[7.127220289530845,53.245883922965795],[7.128545536278746,53.24549330394031],[7.128560505779963,53.24548887981079],[7.128562103399926,53.2454884072677],[7.129758420116569,53.24513357296011],[7.130275865937159,53.24498052817502],[7.130548022306829,53.24491645049669],[7.130994308363653,53.24479488511416],[7.131151976454134,53.24474674021422],[7.131214427877498,53.24472711313549],[7.131488785591037,53.244636443747645],[7.131801562310089,53.24451954751098],[7.132497386960106,53.2443073339196],[7.133911933954551,53.24388503178898],[7.133926099203057,53.24388079033836],[7.135268023969577,53.243478017445575],[7.135284705744015,53.243472992333565],[7.136598012226662,53.243076328009984],[7.136676030141029,53.243052416059065],[7.138028113480447,53.242632054209814],[7.139261518148812,53.24226276867556],[7.140568425655975,53.241873701883954],[7.140596236019318,53.241865386748],[7.141644621948977,53.241550005938],[7.142782533950268,53.24139305670479],[7.143134968554967,53.241341625275254],[7.143435878926723,53.24128897849432],[7.143504359526855,53.24127606819279],[7.143654549178924,53.24124655780073],[7.143675911234831,53.241242461504456],[7.144537507578362,53.24111693231763],[7.144556451248798,53.24111415646509],[7.144658776348367,53.24109907740555],[7.145859521288679,53.24106557288485],[7.147417603234436,53.241023150394334],[7.148936498334422,53.24098612614106],[7.148960563677398,53.24098551226985],[7.150438930563105,53.24094659232826],[7.150476611421672,53.24094554535743],[7.151901237997654,53.24090371023932],[7.153050038525436,53.240874007028154],[7.153078636785082,53.240873236664406],[7.153567953743678,53.240859457721506],[7.153570319470095,53.24085938785474],[7.154893556497985,53.240821868137395],[7.156402096620105,53.240784929637044],[7.156422972853798,53.240784404415656],[7.157768682629735,53.24074918285553],[7.159381596605556,53.24070720605579],[7.160720295829207,53.2406735207108],[7.160765549629689,53.24067229569157],[7.162466469518548,53.24062328786634],[7.162475208195965,53.24062303188966],[7.163747675404807,53.240585466113416],[7.163815297304824,53.240583898069495],[7.163816737978149,53.24058395763097],[7.164187995162685,53.240592715638364],[7.164261790477267,53.240593357619055],[7.16438037312534,53.24059382081942],[7.16487015618766,53.24058381836464],[7.165357799837058,53.24055460355139],[7.165511996662724,53.240541317512324],[7.167124932378368,53.24049187637883],[7.167242697905238,53.24048771135874],[7.167730352188681,53.24045848582093],[7.168213759049001,53.2404101951923],[7.168448741109425,53.24037959391927],[7.169168954675005,53.240278499523924],[7.169411089142144,53.24024194653624],[7.169879852789081,53.240156211072005],[7.170338261308711,53.24005226448973],[7.170784367030411,53.239930551962196],[7.171216232695833,53.23979158773659],[7.171632019419262,53.23963598078695],[7.171809210636285,53.23956250730807],[7.172387539029837,53.23931520943893],[7.172608290024143,53.23921709936642],[7.172986655880075,53.23903025748787],[7.173343840373655,53.23882896952913],[7.17366176837388,53.238625426558585],[7.174560328096095,53.238013063226795],[7.174576877722366,53.23800174333406],[7.174582878741074,53.237997610513105],[7.175610732672521,53.23729062396485],[7.176587341309942,53.237350815756166],[7.177633465122734,53.237422644796055],[7.17778678211222,53.23743221192718],[7.17787793268138,53.2374396686602],[7.178068843767687,53.237453078363515],[7.179408753655109,53.237536747222165],[7.179765455716221,53.237561331207466],[7.17978327635012,53.237562951504415],[7.18014760106774,53.23759869077394],[7.180463149869651,53.23761923917],[7.180564998867029,53.23762456486552],[7.180648896884911,53.23762866770429],[7.180721718624844,53.237631984236515],[7.181091109035375,53.23764930964324],[7.182352655878396,53.23774388639164],[7.182503071593754,53.237754236875226],[7.184019749590319,53.237849284451755],[7.185409049268157,53.237942052210926],[7.186755212769225,53.23804201878745],[7.186827302726356,53.23804715716949],[7.188458915387466,53.238158670853856],[7.188526529976844,53.23816310156544],[7.190050487271987,53.238258836645414],[7.191375151601849,53.23834356217609],[7.192031499429563,53.238393595353216],[7.192054674515966,53.23839681577199],[7.192538319007895,53.23844420351247],[7.193026095998,53.23847251861383],[7.193212323277413,53.238478253652104],[7.19359020628588,53.23850242225855],[7.196740618294616,53.23870673246494],[7.196932481031548,53.23871999906928],[7.197313237648932,53.238740418808355],[7.197602801198535,53.23874812058066],[7.198124945007436,53.238755937202846],[7.198325192773289,53.23875732841615],[7.198625697410361,53.23875338648894],[7.200158087471787,53.238714789137774],[7.200233575323859,53.2387126521072],[7.201653256493477,53.23866827048341],[7.201713544285488,53.2386662346934],[7.202366397617141,53.238642648638155],[7.202419881856705,53.23864059765354],[7.202595424201882,53.238632254340224],[7.203524999302036,53.238581458062484],[7.203609392194954,53.23857655888734],[7.205212620906608,53.23847793950551],[7.205234450608669,53.23847657526709],[7.206001018372102,53.23842804912255],[7.20674607408552,53.23838103055306],[7.206779437283727,53.23837887912706],[7.206900449426683,53.23837456475455],[7.207388054398674,53.23834518726726],[7.207834917430802,53.23830107426988],[7.207936852012435,53.23828910328608],[7.20797332736843,53.23828476618365],[7.208450354539064,53.23821744765355],[7.208919034814325,53.23813155897143],[7.209104458003914,53.238091912573886],[7.209150748242712,53.23808160220439],[7.209278892181546,53.238051336242435],[7.209747187841979,53.2381162616011],[7.210123667174593,53.238153100700885],[7.210193343964042,53.237863461169205],[7.210516272188384,53.2365123413807],[7.211133974447297,53.233927398563125],[7.212534831932314,53.228193498367766],[7.211908513241109,53.22825427190475],[7.211115136670855,53.2284002831341],[7.210510683000724,53.22839187144873],[7.210941576958347,53.2272089606858],[7.211926137870954,53.22452446278412],[7.212547120793828,53.22342495251163],[7.212703169829645,53.22316332214093],[7.213871500306734,53.221117396013774],[7.215839550650206,53.217678604197054],[7.216546205732668,53.21655208524005],[7.21702544402434,53.21476661683725],[7.217207227121435,53.21065147223979],[7.217429689020768,53.20561450654828],[7.217441521970903,53.20534660152827],[7.217604384608117,53.20165778286226],[7.217632525999433,53.201020219317485],[7.217622841585028,53.19781734854793],[7.21655176520283,53.19554803961663],[7.215457767360682,53.19468824539178],[7.212657574413874,53.193356238277275],[7.211453336001316,53.19250860190072],[7.209962574814831,53.19074479237768],[7.208121674386978,53.18856961582565],[7.208042787266174,53.18847653313411],[7.210248237979714,53.18756304262749],[7.210434545128955,53.1874802917593],[7.217465652450516,53.184561761482655],[7.219583263688871,53.18368376671187],[7.21976866510544,53.183606893561944],[7.221695111075372,53.18280807027742],[7.223939624411839,53.181876555890994],[7.22528516472379,53.18131802184151],[7.226632139023642,53.18075886601568],[7.22711993500815,53.18055636510233],[7.227388972230197,53.180444680226074],[7.227409336642747,53.18041378334664],[7.22749845280372,53.180278524518776],[7.227104255867925,53.18018761462767],[7.226995578709664,53.180162553660544],[7.223659928009234,53.17939321974173],[7.222452223733256,53.17911448789569],[7.219889674337386,53.17852301776183],[7.219550053045388,53.178444639897734],[7.21652087673706,53.17774549996297],[7.216119581527047,53.17765287413419],[7.215614181627686,53.177536507266474],[7.21541998352248,53.177491788856656],[7.214708606082974,53.177340352137115],[7.214002363922747,53.17720413007301],[7.213283960993747,53.1770791790372],[7.212870411792808,53.17701384589224],[7.212561679849963,53.176965069822444],[7.212004324442282,53.17688795525383],[7.211832483306358,53.176864182682294],[7.211100654075132,53.176775284831784],[7.210363058935946,53.176698693493556],[7.209623282899668,53.17663408443141],[7.208991207886029,53.17658918102866],[7.208880265323197,53.176581293960965],[7.208135283919377,53.17654218912719],[7.207388530577179,53.17651434209384],[7.20664140378487,53.176498899998954],[7.205893341040767,53.17649676743415],[7.205146139571363,53.176508010595114],[7.204509369775746,53.17652708333185],[7.20439895529166,53.17653039266632],[7.203654946720957,53.17656422619451],[7.203407226432069,53.17627035188631],[7.202594504862676,53.1753061937799],[7.202261738117835,53.17492799718942],[7.201757136761203,53.174354491729844],[7.201250884523573,53.173796557862914],[7.200595585837609,53.1730904234685],[7.200434166715314,53.172907897472356],[7.200354873265737,53.17281113093727],[7.200233304158861,53.172644270591725],[7.197403113593126,53.169347483653375],[7.195436766142635,53.16709275873483],[7.194535519548134,53.166057037016664],[7.191013740371143,53.162009269461784],[7.190900503880703,53.1618397578403],[7.190816882388808,53.16164526407969],[7.190807623943805,53.16161933906905],[7.190721914360332,53.1613793989043],[7.190676926496896,53.16121838800649],[7.190670560328524,53.16111943845278],[7.190689717885675,53.16102648702753],[7.190733580567451,53.16092354703042],[7.190867600106799,53.160647854037755],[7.191148667687059,53.16000379062641],[7.191199095261262,53.15986462013163],[7.191208431370613,53.15975132442407],[7.191202873395326,53.15966099267182],[7.191179419805109,53.15957182813163],[7.191127621302598,53.15948785367138],[7.191065638542314,53.15940349319784],[7.19078449637937,53.159058461801955],[7.190578831588288,53.15882733588542],[7.190557248663305,53.158809615103],[7.190457601211903,53.158727779426755],[7.189809867757734,53.15794570595247],[7.189323543492967,53.15732289107197],[7.189291033870243,53.15580877119319],[7.189223302237356,53.155440483623885],[7.189239232182638,53.15497710818365],[7.18924207192035,53.154938669975486],[7.189250269999515,53.1548287896537],[7.189345549085752,53.15299039181866],[7.189493115451449,53.15047540408126],[7.189498053582131,53.150061660694156],[7.18951715635182,53.14966453824247],[7.189597207686852,53.148642966258464],[7.189623644003413,53.148155577346955],[7.189625428928228,53.148012447808895],[7.189601336747233,53.14796158907396],[7.18953511610934,53.14790385020387],[7.18740942033302,53.14604143043752],[7.186818812149887,53.145523844964586],[7.185930102872567,53.14474496437139],[7.185865280657397,53.14466810359222],[7.185104935962054,53.143729591377614],[7.184708240789006,53.143233155268426],[7.184223566922277,53.1426507124521],[7.18406114957716,53.14246013644912],[7.183977464433942,53.14233959760388],[7.183962893141381,53.14231587366513],[7.183919535291377,53.142207511534174],[7.18364125500864,53.14152401318394],[7.183626170416236,53.1414691184329],[7.183590668692916,53.14133032274742],[7.183529674973228,53.141053282317614],[7.183503900584436,53.14091179723702],[7.183453771624992,53.14060072716025],[7.183407893424703,53.14048958044971],[7.183352972677523,53.140400428355356],[7.183334661909948,53.14037445054227],[7.18327179442442,53.140296156085675],[7.183255855901647,53.14027584092983],[7.183168806958049,53.140189343565645],[7.183123480982309,53.140149146686255],[7.183090808044418,53.14012287988808],[7.182983715299841,53.14004426037308],[7.18258853034406,53.13976925261035],[7.182134001876283,53.13944351597012],[7.181974856387686,53.13932379155248],[7.18191910854408,53.13928348160263],[7.181216203589777,53.138775244601355],[7.180482572704212,53.13820674136535],[7.180346935653163,53.138101630273184],[7.180263739463649,53.13803250041864],[7.178992722669292,53.13856445446069],[7.178961642906834,53.1385455039215],[7.178909185600813,53.13837898253222],[7.178902295275337,53.13828572994072],[7.178989824243534,53.13769957991908],[7.179242401672155,53.13598943472481],[7.179389538343619,53.13498344736598],[7.17941751966744,53.13482705452975],[7.179541869315559,53.134132032159414],[7.179622373134836,53.13359148183456],[7.179749142946371,53.1327962002522],[7.180061518470647,53.13146356700119],[7.18009054330884,53.13118881723838],[7.180127466235225,53.13087554454031],[7.180173606310049,53.13074031712063],[7.180242215667529,53.130539221817685],[7.180266823496945,53.13040295855397],[7.180280663132869,53.13032026173241],[7.180334379982948,53.12999914374448],[7.180376288623831,53.129799571411596],[7.180404074209024,53.12966786225038],[7.180491841704383,53.129229230786926],[7.180509846439948,53.12908585805505],[7.180510838830936,53.12906758904572],[7.180594690041302,53.12882723315433],[7.1807248468914,53.1283774142458],[7.180755206851408,53.12829571927021],[7.180888402823572,53.1279591283478],[7.18092205226151,53.127871721764855],[7.180936607041647,53.127833467588566],[7.181018614848612,53.12767865660916],[7.181363943898143,53.12718864787539],[7.181405066916755,53.12714172786232],[7.181651584852824,53.126865292439646],[7.181729123655803,53.12678128970819],[7.181780070114979,53.12672339212642],[7.181808650397806,53.126695865832694],[7.181998516488744,53.126543851225826],[7.182006532979749,53.12653537248735],[7.182094885377037,53.126460709361105],[7.182182075516946,53.12638678080457],[7.182282894382725,53.12630102765897],[7.182326842782932,53.126263636044676],[7.182789800574866,53.12578879383315],[7.183129484612079,53.12544036851497],[7.18332883170514,53.125217357896915],[7.183641272193409,53.124867902308054],[7.183729871841076,53.12484257620754],[7.183812308976615,53.12485598904482],[7.184054983861142,53.12493593559916],[7.185862061673599,53.1242563922436],[7.185872891640683,53.12422576191379],[7.184847646885871,53.12328970517802],[7.184510343311667,53.12301740243428],[7.184379647835247,53.122917441777595],[7.184124130335969,53.12276902186605],[7.183834140581875,53.122589032045376],[7.183715167374263,53.12253023780618],[7.183645270549371,53.122476820954525],[7.183627270206113,53.12238496603802],[7.183601627807838,53.1223141663806],[7.183552307387163,53.122256125855834],[7.183470816784848,53.12218607559725],[7.183311315519735,53.12210470200059],[7.183180191691592,53.12202308068579],[7.182898773873418,53.12176494609583],[7.202793583674282,53.1134105878184],[7.200765681698925,53.09526413400219],[7.199219402149204,53.081386199385506],[7.200517202139084,53.07466054554857],[7.201745376747453,53.06835628501166],[7.204254306311672,53.055517270543476],[7.205927391236156,53.046875253945146],[7.20886865480091,53.03175795363479],[7.209418784523044,53.02892615985142],[7.209624624280827,53.027879485643005],[7.210484741506145,53.02350876044684],[7.212968189160613,53.01087749557354],[7.216555452961375,53.00780047995222],[7.217445436463286,53.007037155077775],[7.216102744100479,53.00592204615318],[7.216487811190108,53.005649925901],[7.215128967768687,53.00511685740198],[7.209562415483974,53.00050668743278],[7.181515571559222,52.94158425354306],[7.171213528552997,52.931219270516614],[7.16388331541557,52.92384043947534],[7.149745885836057,52.90960943708881],[7.146316615229559,52.906163297671135],[7.140405119222691,52.90022448976097],[7.139558926053416,52.899374069086186],[7.138079749061341,52.89788170342382],[7.138014347620883,52.89781571726942],[7.137467610110278,52.89726585210045],[7.136867671972753,52.89666245726178],[7.135718186996421,52.89550628848937],[7.135694896422453,52.89548286470908],[7.133423570984852,52.89318393083547],[7.133071963511124,52.89283609734922],[7.132545986200076,52.89231574754658],[7.132494968797253,52.89226526946945],[7.13165194607033,52.891417543940676],[7.130028945686766,52.889785364279795],[7.129016522449635,52.888767150988585],[7.128955155856096,52.888705505349726],[7.12865741488625,52.88840646036246],[7.127949435182445,52.88769535483679],[7.127301013400286,52.887044047622275],[7.126916764697711,52.88665806684151],[7.126151382451525,52.88588694609571],[7.125738547380651,52.88547291231038],[7.12550439154358,52.885238080273176],[7.124616753331344,52.88434783846636],[7.124246631337821,52.88397660908507],[7.12341000808523,52.88313747823616],[7.123364770715642,52.883091729063366],[7.122031453780062,52.88174318812864],[7.121698990118817,52.88140691529497],[7.1211194747214,52.88082072733734],[7.119854104126827,52.879546333449774],[7.119640957155403,52.87933166039675],[7.119011707757207,52.87870117124843],[7.118613450466154,52.87830211895581],[7.118341688452923,52.87802854909868],[7.11772290995031,52.87740564928308],[7.117345621323385,52.87701665130167],[7.117270220180407,52.87693890934867],[7.115789093237924,52.87544623021966],[7.11563770432061,52.875293654265036],[7.11546146170641,52.87511590153821],[7.114105569873806,52.873748337417865],[7.113519007220206,52.87315976161071],[7.11349090104984,52.87313156758236],[7.113275005174432,52.872914936786415],[7.111992977250098,52.871619993447325],[7.111066254546359,52.8706853487126],[7.110791847780715,52.87040858246671],[7.110693480690426,52.87031026150804],[7.110029663467373,52.86964033456709],[7.109091540026402,52.86869353452709],[7.106675118820755,52.866254579012406],[7.104385508318959,52.86394332448805],[7.104362608604258,52.863924483025386],[7.10434920803463,52.863913458550186],[7.102627485596948,52.8624962853191],[7.102539805806185,52.86242412091912],[7.102531165237613,52.86241700960407],[7.10181855898363,52.861830343017374],[7.100838281370151,52.86102328820824],[7.100803383521573,52.86099455965874],[7.100099922780394,52.86041538181621],[7.099990546430857,52.86041722221642],[7.09998046850628,52.86031921474903],[7.099662584554424,52.8600569797039],[7.099633212127892,52.860032745630605],[7.09958927384578,52.85999648940359],[7.098704292970124,52.85973783450388],[7.098662602605063,52.859266044802055],[7.098661582145451,52.85925443757877],[7.098659748375547,52.8592337818239],[7.09669184719256,52.857621559741446],[7.096620831509179,52.85756338160795],[7.096606979573441,52.85755203018596],[7.096591851016851,52.85753962745264],[7.09643789704193,52.85741342623886],[7.0948946036431,52.856148293296044],[7.094640236689917,52.855939766539066],[7.093743902502402,52.85520493139494],[7.092400218819033,52.85410329282396],[7.092388562365721,52.8540937332569],[7.091916022058766,52.85370629905704],[7.091875450127089,52.853673029080376],[7.091865647251877,52.853664998842206],[7.091838805550837,52.85364299177097],[7.091050088777999,52.852996374547274],[7.090843971054375,52.852827390223545],[7.090814016754855,52.852802831572646],[7.089717007162855,52.85190342642816],[7.088812130697496,52.85116149629269],[7.088356326742754,52.85078775754465],[7.087842590477234,52.850366513218795],[7.087709069953205,52.850257027138035],[7.087701814308857,52.8502510796823],[7.087399366701614,52.85000307274332],[7.087257996461918,52.84988715370766],[7.087834205082278,52.84865911792881],[7.087868110428992,52.84858692573789],[7.087886675623074,52.84854738209838],[7.08789199637754,52.84853608072761],[7.087990945495147,52.84832537692683],[7.088085946460668,52.84812307856984],[7.088095363452673,52.84810300729944],[7.088108565481292,52.84807486537358],[7.088642349478814,52.84693738650438],[7.088948411926799,52.84628515901771],[7.08900587591986,52.84616268218236],[7.089029401418866,52.846112560194534],[7.08932737573687,52.84547750761976],[7.089663734918289,52.84476062386338],[7.089847496230166,52.84436896069645],[7.09000770033515,52.844027011792654],[7.090685857565669,52.84257944615594],[7.090847884929591,52.842233571544064],[7.090857409854874,52.842213248580784],[7.09103163466606,52.84184134806377],[7.091069402957218,52.84176071251996],[7.091374480622878,52.841109461983294],[7.091378948837075,52.841099907348024],[7.09156000809257,52.84071361673618],[7.091726839921574,52.84035768500996],[7.092129551033994,52.83949847637681],[7.092399778340445,52.83892190245062],[7.092704542833755,52.83827161474645],[7.092709281041353,52.838261462057204],[7.092739745874789,52.83819614846711],[7.092651330805604,52.83808061878734],[7.091802864104006,52.836971915232574],[7.091483241750987,52.83655424042672],[7.090315255105216,52.8350302402567],[7.09016970680495,52.83484032849405],[7.090140191077422,52.834801587912125],[7.089070210672867,52.833397419487085],[7.087999251072002,52.831991853414145],[7.087473886352751,52.83130231968879],[7.087466456220707,52.83129256545062],[7.08705138140755,52.83074872182327],[7.086813638953169,52.83043721402121],[7.086788915651978,52.83040482107468],[7.086139093049464,52.82955336111326],[7.085641040627985,52.82890072283372],[7.085335675058233,52.82850084853666],[7.084798844920229,52.82779784112351],[7.084276151210947,52.82711332493812],[7.084267989193047,52.827102646135835],[7.083982966398347,52.82672926498616],[7.08372521376223,52.82639160932771],[7.083532093232531,52.826138613216976],[7.083191350816346,52.82569221082787],[7.082666183149594,52.82500419048483],[7.082161100937282,52.82434246979371],[7.082123613821691,52.824293360198205],[7.081313530203226,52.82323188337352],[7.081027214024865,52.822856698913974],[7.080921405682592,52.82271804623447],[7.080534541982065,52.822211081084056],[7.08008957462227,52.82233416018353],[7.080056980544568,52.82229363623658],[7.079512679494699,52.82161690272235],[7.079983452265806,52.82148599888742],[7.079514939289122,52.820871817509506],[7.078916381385254,52.82008711056553],[7.078480923727017,52.8195162122128],[7.078135101552068,52.81906281993472],[7.078101378804469,52.81901862535032],[7.077833788561213,52.81866789374674],[7.077295050271402,52.817961752244564],[7.076749453710119,52.81724659947088],[7.076248891825728,52.81659044375484],[7.075729751841021,52.81590992109101],[7.07568897806421,52.8158563430182],[7.075383406922262,52.8154548664263],[7.075004596401079,52.8149571255436],[7.074628821475677,52.81446336009003],[7.074361789440079,52.81411248618672],[7.074324521581874,52.81406352477765],[7.074088544266625,52.81375345012524],[7.073557996069732,52.81305691048632],[7.073012448915977,52.812340677777634],[7.072448126595089,52.81159975913244],[7.0720162652198,52.811032721815224],[7.071825559455542,52.810781902038435],[7.071551265939615,52.810421166392054],[7.071517092215411,52.8100042839929],[7.071469846108339,52.80942769148053],[7.071426239207422,52.80889563150741],[7.071413378257846,52.808738723691356],[7.071302033577702,52.807379550008136],[7.07113588397685,52.80535140724192],[7.071132242008784,52.805306867412675],[7.07090780190257,52.802580781972964],[7.070833657632948,52.801680054690344],[7.070683738774949,52.79985874467192],[7.070642392987518,52.79935629410205],[7.070598472284524,52.79882272520799],[7.070571220940316,52.798491673490474],[7.070459075222347,52.79712910869681],[7.070346682930532,52.79576344587099],[7.07033583447307,52.795631667547376],[7.070233558756865,52.794388462909765],[7.070177366172302,52.79370557166371],[7.070121805495619,52.79303015959289],[7.070064923548712,52.79233880356413],[7.070051590615449,52.792176751333386],[7.070008423404233,52.79165200721602],[7.069950779283459,52.790951213979156],[7.069895256878988,52.7902761783598],[7.069760087063067,52.78863275136069],[7.069558742677509,52.786184725933346],[7.069342272191456,52.78356296771918],[7.069163741284369,52.78140037746593],[7.069074816700036,52.78032310340143],[7.068941409201964,52.77870690885447],[7.068674335724194,52.775471131691695],[7.068607474380935,52.774661041109894],[7.068540785833599,52.77385310513134],[7.068012633127879,52.76745258108799],[7.068007263819396,52.76738759936445],[7.067682045396126,52.763444414006685],[7.06714914503325,52.756715977031185],[7.067073273727694,52.75606116752936],[7.066974325709937,52.75486061553302],[7.066967763964757,52.754780630661166],[7.066938930207963,52.75442952414845],[7.066926353376124,52.754276466002615],[7.06689160449293,52.753853330118275],[7.066867913161088,52.75356486359482],[7.066768600678738,52.752355219573055],[7.066669431791997,52.75114735284479],[7.066634186355859,52.750718038624896],[7.066593755467094,52.750225698321785],[7.066570032800334,52.749936729497165],[7.066511408842556,52.74922267497768],[7.06642984182727,52.748229032436555],[7.066359580390312,52.74737313432432],[7.066301044849397,52.7466600748813],[7.06627783476471,52.74637738150362],[7.066207338097016,52.74551861714784],[7.066204843913559,52.74548829817081],[7.066149331345123,52.74481187868779],[7.066096362420401,52.74416663936781],[7.066026730271322,52.74331826289709],[7.065967737953099,52.7425995463497],[7.065965127195297,52.742567720721624],[7.065920836252269,52.74202907015358],[7.065874050509132,52.74146000253011],[7.065851101506068,52.74118091844916],[7.065710161748998,52.739466909843365],[7.065695201562961,52.73928496864225],[7.065606884340915,52.73820644209209],[7.065559646631263,52.7376296321505],[7.065536046677468,52.73734151451171],[7.06548929246043,52.73677035948334],[7.065442441050256,52.73619810104805],[7.065396544769436,52.73563803636332],[7.065349012064067,52.73505796734619],[7.065326144555625,52.73477889061894],[7.065284980910122,52.73427660012577],[7.06517428399505,52.7329257477337],[7.065150038516639,52.73262982690147],[7.065127173336291,52.73235074007028],[7.065081401325651,52.73179211121345],[7.065034042061546,52.7312140975192],[7.06501118066036,52.73093502940361],[7.064964394468791,52.73036412641163],[7.064941007313269,52.730078720640286],[7.064917623339611,52.72979331210553],[7.064882735145776,52.729367343975255],[7.064874231309629,52.7292956355977],[7.064665304958809,52.727532972917025],[7.064575186913593,52.726772644492975],[7.064317469816913,52.72460518507762],[7.064158937858061,52.72326975242391],[7.064153523263637,52.72322414984634],[7.064043862914015,52.722300243573066],[7.063989616341277,52.721845378569476],[7.063982333962418,52.72178343234925],[7.06398230562917,52.72178319455202],[7.061531853479143,52.721889039241766],[7.059816061802328,52.721963166435145],[7.059684437333479,52.72196894887553],[7.058247589612386,52.72203070597444],[7.057653644974173,52.72205646003465],[7.055802493721597,52.722135799912365],[7.055433002423328,52.72215165406551],[7.054228481463037,52.7222039258207],[7.052598097185419,52.722273943345066],[7.052294659664029,52.72228717796866],[7.052145021142282,52.72229376588543],[7.051878507834601,52.72230479749294],[7.050657332555826,52.722357265987306],[7.050436111355853,52.72236709946064],[7.05013449921362,52.72237974126886],[7.049844447003204,52.722392220802746],[7.049549330508214,52.7224053321531],[7.049254191077623,52.72241788130805],[7.048958589834313,52.72243043617807],[7.047543884775515,52.72249119275994],[7.046655689551415,52.72252886179222],[7.046482951660295,52.722536326463974],[7.046360549862255,52.722541403758015],[7.046064946879028,52.72255395144837],[7.045036355825836,52.72259805960415],[7.0435019673107,52.72266268240055],[7.043498268278463,52.722662733883865],[7.043280279701386,52.72267250903229],[7.042098762890023,52.72272209047494],[7.041463689767103,52.72274945904474],[7.041286326236539,52.7227569804568],[7.041252131252626,52.72275801752332],[7.040945449238796,52.72277126823787],[7.040402260755261,52.72279398352921],[7.039815187015661,52.72281842934181],[7.039567142711066,52.7228286150542],[7.038621178402241,52.72286814965464],[7.038337108478554,52.72287995628088],[7.03831817267586,52.72288078078675],[7.037933408829327,52.72289679237982],[7.036089517955423,52.72297403886764],[7.035715366870437,52.72298933444565],[7.035423456608309,52.72300180449028],[7.035201765311042,52.72301161608974],[7.035024862668881,52.723019121766605],[7.034239652170269,52.723052462976796],[7.033953751295007,52.72306484623744],[7.033934815322475,52.7230656700466],[7.031288228990032,52.72317922671084],[7.030327956253206,52.723220016476674],[7.030255907933358,52.72322325835914],[7.02537303435254,52.72342540094469],[7.025222462761114,52.72343196777571],[7.0239073969983,52.72348657700963],[7.023714789959866,52.7234948435998],[7.023528633905963,52.723502459397984],[7.0231600222094,52.72351763924989],[7.022695800477185,52.72353694085615],[7.022409410304252,52.72354874126626],[7.021322992477352,52.72359400034171],[7.021068948139105,52.723604791581685],[7.020818118775163,52.72361497636716],[7.020317869983051,52.72363588677872],[7.019615299567131,52.72366518829524],[7.019542324866032,52.72366843638405],[7.018151958118347,52.723726261831175],[7.016773127308822,52.72378335125871],[7.01547466492625,52.72383707797473],[7.015375354569824,52.723841245607595],[7.014831213557901,52.723863856959255],[7.013957735767368,52.723900518345474],[7.012569645526745,52.72395768553713],[7.011182033937816,52.72401539174927],[7.009793955383044,52.72407308811394],[7.00837585916917,52.72413230072605],[7.007214454979027,52.72418968773775],[7.00668249332,52.724216590168055],[7.006167136037455,52.72424214077808],[7.006049810069001,52.72424710746928],[7.005600347080295,52.72426557970487],[7.005304719758624,52.72427802625638],[7.004204433834238,52.724324440826365],[7.003525403287372,52.724352765523335],[7.00282375608519,52.72438251693025],[7.002435728810521,52.724398457807574],[7.002433416045534,52.72439848919757],[7.001879571712307,52.724421734674436],[7.001037957067315,52.72445730693169],[7.001025955169404,52.724458031461495],[7.000693814959897,52.724471523442446],[7.000484109702428,52.72448054594137],[6.999363467214127,52.724527191610846],[6.999141759439047,52.724536936108166],[6.998994396715745,52.72454286444157],[6.998625324461622,52.724558536149004],[6.998551864292178,52.72456121613546],[6.998227604756385,52.72457515629137],[6.998079778621362,52.72458108976311],[6.997902399573432,52.72458854658503],[6.99772548213048,52.72459599689511],[6.997515293332173,52.72460445891948],[6.997134660513394,52.72462028242056],[6.996839489843321,52.724632701720786],[6.996542470843086,52.724645145282146],[6.996475503228048,52.724648297961345],[6.996473416424003,52.7246292258185],[6.996362582537737,52.72463465692626],[6.99636466929391,52.72465372907124],[6.995986768864798,52.72466838839669],[6.995958603833419,52.72466989268523],[6.995988600020059,52.72483184024257],[6.995989144056965,52.724834079989186],[6.996015707058165,52.72497809713822],[6.996043400990128,52.7251277167414],[6.996063968765933,52.725196537042606],[6.996109970544662,52.72556781031785],[6.996178553501118,52.72612584937083],[6.996226779684934,52.726532484287446],[6.996237473857419,52.72662222370831],[6.99629872962716,52.72714440804005],[6.996289577325583,52.72718497957823],[6.996315294294237,52.72739417392866],[6.996248323947574,52.72739732647469],[6.996333098080587,52.728093904709944],[6.996379958524368,52.72847583977257],[6.99647449685089,52.72924924887252],[6.996494765276331,52.72941076592063],[6.996520160055953,52.72940929899427],[6.996521732102643,52.729414333709535],[6.996545479529727,52.72950670542102],[6.996505864920289,52.72966285265232],[6.996455539746373,52.72966578021161],[6.996455848752483,52.7296742026528],[6.996464634785394,52.72967408385597],[6.996467597062769,52.729704379631954],[6.996459735947903,52.72970448592306],[6.996461905413459,52.729725804024845],[6.996465143389307,52.72972576024375],[6.996485790706173,52.72985974519767],[6.996486602645535,52.72986928438735],[6.996496263921573,52.72999386771257],[6.996493046527065,52.72999447299061],[6.996493777546314,52.73000176617579],[6.996500713783989,52.730001672388504],[6.996504077512543,52.73003027740969],[6.996498085322588,52.730030920206865],[6.996499207765936,52.730048881816224],[6.996453927330652,52.73005061760938],[6.996656222807409,52.73184387516721],[6.996656264016004,52.73184499815865],[6.996698557874909,52.73221575906453],[6.996778211476927,52.73292364102035],[6.996782953968617,52.7329645864036],[6.996859523927193,52.733638803450816],[6.996914330141784,52.73412343506645],[6.996782658711701,52.734129148128574],[6.996777165813437,52.73408034806727],[6.99605673415774,52.73410694135631],[6.994771587437641,52.73415407941681],[6.994578865855732,52.73416061456079],[6.993840114661393,52.73419249776262],[6.992618975719576,52.73424380449769],[6.992449418544345,52.734251147294586],[6.992175438082008,52.734262706815194],[6.992150019791087,52.734263611328345],[6.99187004632512,52.73427581272668],[6.991695865257441,52.73428321678478],[6.991620557356563,52.734286479008865],[6.991559567493284,52.73428898642125],[6.991265256570933,52.73430137964623],[6.99113404705543,52.73430708022282],[6.991014379021377,52.73431206336815],[6.990864227729988,52.73431858064598],[6.990525113580916,52.73433326098463],[6.99039804520751,52.7343383431928],[6.990277010724533,52.73434390577328],[6.99007093553171,52.734352298770986],[6.98986256895336,52.734361284037],[6.989642659249604,52.73437098611371],[6.989486955902983,52.734377576396234],[6.989348345704553,52.734383374623896],[6.989178768362244,52.7343901512498],[6.989036457976526,52.73439599891381],[6.988812364037008,52.73440519399012],[6.98867699198537,52.734410947862415],[6.988635807076215,52.734410940211006],[6.988456310979839,52.7344122315254],[6.988249043579778,52.734413334352745],[6.988069526959952,52.73441406358683],[6.987891880878044,52.734415329167994],[6.987870123000131,52.73441505999425],[6.987682927313364,52.73442094786797],[6.987477232513968,52.734427084160885],[6.987383382507939,52.73442946944233],[6.987293716339091,52.734432360179184],[6.987188787948162,52.73443545600636],[6.987181387730133,52.7344355554809],[6.987109297053427,52.73443820982613],[6.987028216348508,52.734410087457],[6.986978534504604,52.73439277848076],[6.986843066657121,52.73434516313836],[6.986785902840269,52.73432570754359],[6.986761524521114,52.73431704679145],[6.986738091715149,52.73430893510102],[6.986658882011522,52.73428134911344],[6.986452191702345,52.73420941060433],[6.986417031690658,52.73419696223566],[6.986413696480748,52.73423239873023],[6.986399242622176,52.73439438347601],[6.986371398865157,52.734468349794405],[6.986313700940308,52.73458653546169],[6.986261229087829,52.734670382753166],[6.986255544682786,52.734679447481774],[6.986185320305138,52.734771398042966],[6.986110864717713,52.73484879930733],[6.985958675880877,52.73497724239714],[6.98564800589602,52.73523926840766],[6.98551456276266,52.73524723984056],[6.985419814069992,52.73532659845364],[6.985303322841725,52.73543152866589],[6.985241426544313,52.73549808704955],[6.985192464612659,52.73547514993808],[6.98503954318154,52.73559629858054],[6.984283085379041,52.73619743515071],[6.984278139918535,52.73620143391105],[6.984255585830018,52.73621746614576],[6.984202417822764,52.736256941776425],[6.984199703965152,52.73625866350385],[6.98362443566908,52.736714674404254],[6.983694252555236,52.73673845599241],[6.983693368360863,52.73673959139562],[6.983580419666092,52.73682761913529],[6.983505280044422,52.73688648935031],[6.983437313182656,52.73686268284197],[6.982800810592287,52.73735321699068],[6.982551444476052,52.73754587649649],[6.982480846019856,52.737602438079385],[6.982474112804512,52.73760814603497],[6.98241832962767,52.73765215004619],[6.982012062621948,52.737971624266606],[6.982073474509026,52.73799327233038],[6.981476685904147,52.73845686359191],[6.981060432371907,52.73878208583028],[6.980636133654857,52.7391152790209],[6.980551979710663,52.73918100918535],[6.980242363682238,52.73942278235096],[6.980125359702464,52.73951423152017],[6.979949431780032,52.73965253423397],[6.979925146428202,52.73967195939428],[6.979330183037094,52.740136076618896],[6.979327489136172,52.74013835973361],[6.979219467849203,52.74022238479436],[6.979177670670804,52.74025665004026],[6.979151317124842,52.7402828439447],[6.979116581542387,52.74032038535645],[6.979095050532742,52.7403392117323],[6.97907886659057,52.740352348889424],[6.9790270147689,52.740390119162235],[6.978755158423495,52.740601609431444],[6.978735003272549,52.7405945758806],[6.978261067308929,52.74096381530702],[6.978212916218181,52.74100153574311],[6.978203909012096,52.741008397376184],[6.977030925982506,52.74192121638696],[6.977012467845324,52.741935507159795],[6.977028862987285,52.74194090590699],[6.976997295714599,52.74196379830852],[6.976980205715271,52.741977509034164],[6.976738107955412,52.74216781150027],[6.976353754473385,52.74246843423624],[6.976166983802732,52.742614740560725],[6.97601666617235,52.742732471547804],[6.976013971940088,52.74273475458739],[6.975679575299469,52.74299650788344],[6.974939688946582,52.743576574933456],[6.974912363513909,52.743601657257116],[6.974885202192516,52.74363123154553],[6.974842574825761,52.743668315099555],[6.97474989494004,52.74372909869779],[6.974748085146567,52.743730246372444],[6.974640386163676,52.743810892118155],[6.974480126728594,52.743935494861496],[6.97442475021305,52.74397836594343],[6.974322200537646,52.74406062803992],[6.974271911767363,52.74410343121695],[6.974201918067948,52.74416447369314],[6.974192909586702,52.74417133502229],[6.97399404090786,52.74432903441057],[6.973895258953637,52.744406751737976],[6.973711228752371,52.74455245568806],[6.973623244003959,52.74462160233871],[6.973620318589833,52.74462388840144],[6.973438477062825,52.74476619212061],[6.973418457947061,52.744782188411776],[6.973177173307891,52.74497022529807],[6.972892925104363,52.74519254010945],[6.972745052012252,52.74530798708483],[6.972663590750704,52.74537199017642],[6.972484437613433,52.74551200947219],[6.972301009740236,52.74565545601564],[6.971862831933628,52.74599891274766],[6.97179147269471,52.74605435420089],[6.971794772791668,52.746055995583724],[6.971610856721463,52.746198885730365],[6.971355872407859,52.74639889818872],[6.971319644480584,52.746427468709925],[6.971165237706596,52.746548056469486],[6.970889766490818,52.746764069981275],[6.970862085593146,52.74678578542872],[6.970850381302951,52.7467949294271],[6.970681131195887,52.74692751112051],[6.97054002470056,52.747038371044205],[6.970277810693136,52.74724353313098],[6.97017000585203,52.74732810839304],[6.970015845465691,52.74744925306797],[6.970004830818375,52.74744546712499],[6.969777262716055,52.747623202519705],[6.969662679014114,52.74771236155786],[6.969548787723291,52.74780151127646],[6.969522452209394,52.74782208497531],[6.969411698376335,52.74790838401196],[6.969366226970742,52.74794381797303],[6.969294438547787,52.748000387084126],[6.969137094803128,52.748123258164824],[6.969091853914234,52.74815868895203],[6.968969834978242,52.7482535637639],[6.968832763069613,52.748360997330984],[6.968698596160478,52.74846558329891],[6.968552723368281,52.7485793128875],[6.968416996178556,52.74868560454973],[6.968408890948096,52.748691891651276],[6.968284637458906,52.74878904247192],[6.968279257128219,52.74878742861801],[6.968275888000977,52.74879028220289],[6.968223676498795,52.74883142289624],[6.96822039657502,52.74883034291549],[6.968208038797665,52.74884061885406],[6.968178956822709,52.7488685317004],[6.968077876340583,52.74896649810604],[6.967944521697904,52.749119384471925],[6.967831096366696,52.74924728828029],[6.96769241060239,52.749406424565585],[6.96751749297327,52.74960705068997],[6.967450803704549,52.749683212823335],[6.967381016395403,52.749763348411804],[6.967311904463117,52.749842913223674],[6.967242770561848,52.74992191651482],[6.967173425679804,52.75000148432993],[6.96710317541958,52.75008162588323],[6.966964926105924,52.75024019367817],[6.966826213851302,52.75039876743897],[6.966687753283829,52.75055789945148],[6.966713041887935,52.75056599048162],[6.966360641728572,52.75096727330166],[6.966273625166776,52.75106392796643],[6.966127117213341,52.75119900997245],[6.965992592668194,52.751351909452815],[6.9659912645107,52.75135361236822],[6.965843635059536,52.75152185317089],[6.965314241784435,52.752124906793014],[6.965126580661675,52.752338618625494],[6.965043430687797,52.75243353576048],[6.965072502587965,52.75244382407592],[6.965020256306521,52.75250350204846],[6.964984394635694,52.75249105662568],[6.964842972738015,52.75265191082892],[6.964761730731968,52.75275418633908],[6.964700263523921,52.752826089052085],[6.964676717163654,52.75285634996799],[6.964660100135961,52.75287910374263],[6.964635879223478,52.75291861353784],[6.964611681440786,52.75297235146712],[6.964600788710981,52.753004745724006],[6.964589332343208,52.7530432954296],[6.964584026803546,52.753070815922705],[6.964471786551477,52.753033774588445],[6.964472622082774,52.75329498536765],[6.964570160571046,52.75332726443893],[6.964570572871338,52.753564306837035],[6.964570650800434,52.75357882187338],[6.964570009356709,52.753937246922995],[6.964569844970141,52.75409733929988],[6.964570044772988,52.754327652247696],[6.964570646968468,52.754551856812014],[6.964570404386517,52.75460966272699],[6.96456965803371,52.75480471009847],[6.964567094294223,52.75492447687201],[6.964566287494699,52.754962570880174],[6.964567916628521,52.75571340272825],[6.96456551763095,52.75615101057655],[6.964563257950965,52.7563129822035],[6.96456361484431,52.756699554028536],[6.964564083034897,52.756989599310494],[6.96455446497422,52.757209418011],[6.964564442044345,52.757211982325074],[6.964564691731222,52.757367934478516],[6.964561720248982,52.75812594551674],[6.964560091440106,52.758730670712005],[6.964560058664896,52.75920643801316],[6.964559403855727,52.759214590055166],[6.964546257308927,52.75934042014246],[6.964505031344583,52.75971110294843],[6.964478789722639,52.75996256464351],[6.964474441520552,52.75998459854176],[6.964461142524237,52.76002477875762],[6.964441174672912,52.7600639291636],[6.964378453226491,52.76017167530229],[6.964303549173408,52.760300327660545],[6.964261733160137,52.760357520106915],[6.964212914017247,52.76041263192087],[6.963934013267115,52.76069932957507],[6.963745067543365,52.760893559831075],[6.963575090565699,52.761087520679794],[6.963488360059247,52.7611914072719],[6.963410113863611,52.76129774314536],[6.963340539981232,52.761406275056366],[6.963176086336016,52.76166451808631],[6.962905661552884,52.762089681847456],[6.962769357528734,52.76230348233144],[6.962680184885166,52.76242825062657],[6.962658122265357,52.76245751165806],[6.962636109287569,52.762481972300805],[6.962555994671703,52.76257103615996],[6.962464740545688,52.762659779928086],[6.962375609725957,52.762742886865226],[6.962175343510635,52.7629020930941],[6.962056594834755,52.762992701199934],[6.961960576023262,52.76306848359059],[6.961976909643533,52.763074105463424],[6.960329003774214,52.764326714109934],[6.960305810907894,52.76431915577061],[6.960241555313255,52.76429641041318],[6.960103616748644,52.76440103544538],[6.959714378061171,52.76469660851347],[6.959611822433516,52.76477436275245],[6.959570791428551,52.76480523983143],[6.959415957658751,52.76492300769582],[6.959026244646021,52.765218584651144],[6.958745174626366,52.765431832456656],[6.958614220705991,52.765531307609926],[6.958678457144387,52.765553492334945],[6.958306593720429,52.7658370341865],[6.957940019532393,52.766113202107185],[6.957873288554187,52.76616351753744],[6.957808840692425,52.766141896930186],[6.957773834639442,52.766166514483686],[6.957542922029406,52.766332471327345],[6.957317892400475,52.766449476613616],[6.956820769534796,52.766707700285664],[6.95579557561565,52.767239716459024],[6.955827472626341,52.76725109338189],[6.955351553426453,52.76750060495281],[6.9554061620113,52.767518985867326],[6.954771910587788,52.76784754153988],[6.954762582796781,52.76785215843016],[6.954621179959696,52.76792536359955],[6.954296613323021,52.768095355262865],[6.953721346223018,52.76839672607696],[6.95370793186593,52.76840364369061],[6.953503581399162,52.768510257759544],[6.953382181235593,52.76857308658511],[6.95322142282262,52.768655532795506],[6.953156130636082,52.76861032669287],[6.952871927791136,52.768756751287725],[6.95293555931352,52.76880085584881],[6.95265954448638,52.76894323991807],[6.95265341556066,52.768946691062396],[6.952590016660062,52.768902583295315],[6.952309682520368,52.76904727036124],[6.952374008603756,52.769091366090045],[6.952135999754597,52.769215272980595],[6.951877944807399,52.76934843096215],[6.951543021022683,52.76952079798784],[6.95147140000036,52.76955769157776],[6.951468662752667,52.769558851057],[6.951145168492403,52.76972713446023],[6.950833275518805,52.76988964700772],[6.950572051770704,52.77002509071992],[6.950508850579197,52.77005794084213],[6.95032129199746,52.77015534063422],[6.950313562240874,52.7701593744274],[6.9500927527909,52.770272377855676],[6.95008411722648,52.77027698528341],[6.94929290836067,52.770686778985805],[6.94907396376952,52.7708003177648],[6.948916410123148,52.770882154176306],[6.948905038397139,52.77088792092009],[6.948622676707132,52.771034872642346],[6.948621076175589,52.771035455388585],[6.948399623234357,52.77115014929641],[6.948397580538108,52.771151299598486],[6.948174273306457,52.77126601737959],[6.948092630248889,52.771223269895394],[6.947732908976735,52.771408871383684],[6.947417982786747,52.77157141443306],[6.947277441486712,52.77164347577778],[6.946616410225978,52.77198413434905],[6.946715808927172,52.77205080613654],[6.946230284244746,52.7722740029266],[6.946209707335054,52.77241808346759],[6.946201772382593,52.77247492534167],[6.945974227496479,52.772509924049125],[6.945794515265114,52.772542049333246],[6.945671190928886,52.77256444831752],[6.945472881397849,52.77259456940845],[6.945285593329342,52.77261555778854],[6.945089528742653,52.77263722243367],[6.945093965600135,52.772605705709545],[6.943191757919603,52.77281820038601],[6.941123687139648,52.77304911969482],[6.939282328505821,52.77325457828471],[6.936512878331354,52.77356028097251],[6.93731664744343,52.774200904085546],[6.937745829360726,52.774543047857584],[6.937990347815412,52.77478423054432],[6.938361642089753,52.775070684566366],[6.938810325458782,52.7754229654362],[6.938957714884649,52.7755423587684],[6.939210162430438,52.77574795846114],[6.939539270725623,52.77601598991748],[6.939862824058297,52.776284456017294],[6.940294401741074,52.776627683084335],[6.941459980197701,52.777553991121174],[6.942790736826521,52.77862362707214],[6.942840805681727,52.77866398174626],[6.942899529014273,52.778713211546716],[6.943100523567682,52.77887518230806],[6.943316985430168,52.77904874765837],[6.943415908212558,52.77912778714186],[6.944578367645849,52.78006028540596],[6.944878293604011,52.780302994832944],[6.944911622445231,52.78028609265065],[6.945068247122429,52.78040610382373],[6.945279239602033,52.7805752431218],[6.945489487499062,52.7807494476448],[6.945695954534141,52.78092145422665],[6.945767500252249,52.78099242356486],[6.945963026205132,52.781208390217564],[6.946070621411828,52.78130304336862],[6.946278838930333,52.78149805826012],[6.946598576016703,52.78180677398768],[6.946894344179935,52.78210569100898],[6.947091963944322,52.78232162842843],[6.9473545119762,52.7826176087728],[6.94758070016821,52.78288766205711],[6.94771121899789,52.7830533571384],[6.947767743237347,52.78312508383943],[6.94790945288079,52.78330579965077],[6.948111731621069,52.783580659279785],[6.948280284519885,52.783838545945066],[6.948412077556262,52.78404635564789],[6.948451172035483,52.78410988404015],[6.948492741267492,52.784177874072874],[6.948738918465434,52.78459877691456],[6.948955041195532,52.78502119678536],[6.949002686226373,52.785116633271805],[6.949046133806489,52.78521774237996],[6.949105018598291,52.78534898416192],[6.949188192057186,52.78553776881999],[6.949246033059157,52.7856527331493],[6.949248329076604,52.78565214128226],[6.949331067555851,52.785861154931865],[6.949416344732253,52.786121817226764],[6.949602093696379,52.78675080040158],[6.949700937533287,52.78717082458572],[6.949761600602959,52.78752056760787],[6.949766849597671,52.78755083383747],[6.949833401607086,52.788033075065556],[6.949873282418652,52.78835219373363],[6.949897371134224,52.788546808675235],[6.949920933201255,52.788752665722775],[6.950067528836906,52.79012087640411],[6.950194414658338,52.791215767871535],[6.950204899328664,52.79130832075291],[6.950213218845909,52.79141157547983],[6.950215711441178,52.79144243958804],[6.950243351205537,52.791794862341256],[6.950244322763502,52.791828555201775],[6.950247958699116,52.792008270731756],[6.950250226313186,52.792117222436914],[6.95025465480017,52.79231265683699],[6.950193709281328,52.793090932194715],[6.950184941648796,52.79320227567634],[6.950099234443856,52.79403986038959],[6.950040381843409,52.79461081850026],[6.950027594046895,52.794732888085754],[6.949990090490175,52.795570963563314],[6.949957635309439,52.795836539742695],[6.949944516618587,52.796133410686764],[6.949900721829845,52.796522452954605],[6.949890464405076,52.79655081027635],[6.949872396047951,52.796596594698265],[6.949778607653128,52.79692252161109],[6.949768215849696,52.79710522966247],[6.949679020126573,52.79810905413768],[6.949663192768516,52.79829379730411],[6.949592352242795,52.799079400216556],[6.949514330750765,52.79990652339893],[6.949535148275071,52.79990684366509],[6.949501088700797,52.800142212383115],[6.948568357651105,52.800109516279925],[6.948515332135382,52.800141358586494],[6.948371654432012,52.80021622121044],[6.948263552562714,52.80026258717609],[6.948149128803,52.800309377407046],[6.948013589476795,52.80034879071718],[6.9478762280686,52.800382610149825],[6.947698691370282,52.80042043847397],[6.947556616820703,52.800439039425385],[6.947492470465299,52.80044662050495],[6.947426084177276,52.80045277030701],[6.947084214105971,52.80045994265986],[6.944466821678414,52.80046271073707],[6.943220789680252,52.800460760722046],[6.942007053276972,52.800457019071395],[6.942017513196896,52.80044003883798],[6.941718013801226,52.80044100735404],[6.941475291140421,52.800441782815234],[6.941158961849521,52.80044280766645],[6.941025575916502,52.80044221918892],[6.940717571834993,52.80043922447238],[6.940147796584798,52.80043387946683],[6.93980452956361,52.80045210452156],[6.939338795892926,52.80027616261978],[6.939062059570981,52.80016966259099],[6.938862305586469,52.800090809119745],[6.93880597466627,52.80026006991037],[6.938782653119315,52.8002362180176],[6.938718044830347,52.80021121844234],[6.938679754902448,52.800196549549796],[6.938494138242706,52.80012425248097],[6.938413079678622,52.80009272581721],[6.938238516231867,52.80005118112341],[6.938205097512461,52.800043189762434],[6.938210034451187,52.80003863144056],[6.938180552705322,52.800030588826715],[6.938135295733905,52.80001544868948],[6.938104094401335,52.80000461965163],[6.938062714754829,52.79998774374856],[6.938059411826819,52.79998610146495],[6.938023570896187,52.79996859170262],[6.937993308460734,52.79995157108427],[6.937961053939755,52.79993064408223],[6.937940175192614,52.79991687187083],[6.937902215437698,52.79988534571106],[6.937908058925396,52.79988021384629],[6.937739861475275,52.79981555352821],[6.937717879334445,52.79983606284151],[6.937467890135544,52.79973876098561],[6.937218134761952,52.799641455571354],[6.936969325313855,52.799544699095726],[6.936991538896398,52.79952418691059],[6.936492554417446,52.79933125202979],[6.936470571930703,52.79935176111693],[6.936221052201638,52.79925445057964],[6.935971532096304,52.79915713953242],[6.935721319400562,52.79905983697125],[6.93547157027704,52.79896252786883],[6.93522323246929,52.79886576167245],[6.935030830155789,52.798791300416205],[6.934842868988509,52.79871790468411],[6.934754054078292,52.79868310576799],[6.934651163140202,52.79864343377767],[6.934455924026214,52.79856732317645],[6.933886218882198,52.79834608447773],[6.933789895123626,52.798308573537],[6.933693801275542,52.79827105953552],[6.933502351871865,52.79819714523675],[6.93331065057061,52.798122672146256],[6.933052706692707,52.798022655596306],[6.932903753137195,52.797964479970624],[6.932541979274156,52.79782423919042],[6.932261699996283,52.797714960758455],[6.932074463038521,52.797642113089736],[6.931714567050032,52.79750240724349],[6.931578300683726,52.7974491213393],[6.931314728707817,52.79734692700214],[6.931188792067867,52.79729743909221],[6.931202722847286,52.797271979505155],[6.931087617334788,52.79722740694972],[6.931083137475864,52.79722521796872],[6.929657605925425,52.79985865799465],[6.929595150736928,52.79997350301789],[6.929524374869044,52.79995082536863],[6.929338549399375,52.80029309313229],[6.929246725513517,52.8004622466456],[6.928802677628743,52.801275797853116],[6.928728018982299,52.80141270871051],[6.92802919644614,52.80270423604558],[6.927316624785502,52.80401447410257],[6.926839958173147,52.80489753406461],[6.926799273457443,52.804880645291036],[6.926614524418449,52.80522177056063],[6.926315549885666,52.80577446729576],[6.926300534766396,52.80580218722966],[6.925906153260306,52.806528573764766],[6.925408529618468,52.80744335577244],[6.925003300962857,52.808185046122254],[6.925225157642156,52.80827262558835],[6.925197957824222,52.808322972793626],[6.925149667865941,52.80841291499595],[6.924461485447526,52.80813979330097],[6.923836551848379,52.80789225462689],[6.923045795739298,52.80758168637801],[6.922751363061531,52.807466388610024],[6.921940133902357,52.80714652710328],[6.92146543557741,52.806959396028375],[6.920923545568557,52.8067461636566],[6.920323137577881,52.806509526269245],[6.919993613345915,52.80637782060532],[6.919492053363643,52.806177545180155],[6.919004128917859,52.805982709946626],[6.918794479074414,52.80589889445937],[6.918219133794635,52.80566922731562],[6.91818316152592,52.80565452210125],[6.916136139571909,52.80483761027223],[6.914967079857598,52.805948024162674],[6.914714502349935,52.80618776037004],[6.911872569442312,52.80888742695746],[6.912535351906502,52.80975696581451],[6.912772879902127,52.8100685071562],[6.912816615200599,52.81012636960901],[6.912676494829967,52.81012254572256],[6.912474925372144,52.81011782288192],[6.912211615374472,52.810110519246244],[6.912192367386123,52.810110203793805],[6.911953751476726,52.81010651586949],[6.911614263911798,52.81010130901924],[6.911041507340185,52.81009290482787],[6.910689973473524,52.810087849375385],[6.910544796631187,52.81008521113026],[6.91031083377256,52.81008202219534],[6.909916846689506,52.81007582176333],[6.909606587445519,52.81007135925033],[6.909285421663706,52.81006647347311],[6.909029199769815,52.81006300455504],[6.908739761247614,52.81005604937399],[6.908450204724007,52.81005175545705],[6.908184430154567,52.81005019528082],[6.908154467109391,52.80999496418167],[6.907409396835145,52.81004997254837],[6.907274398020165,52.81006012079678],[6.907258498771922,52.810029427206096],[6.906997354147666,52.81002433145412],[6.907093442747241,52.81020848432549],[6.90726721345365,52.810540510699774],[6.907354864190844,52.81070848016023],[6.907467570409036,52.81092387888765],[6.907536849365942,52.81105669217103],[6.907577071319014,52.81113370087414],[6.907625468924676,52.81112578066985],[6.907682208399921,52.81123122797981],[6.907722992412885,52.81131103822441],[6.907858248000227,52.811568280303035],[6.90794808535489,52.81173903018172],[6.908016574113171,52.81186904450424],[6.908132706465992,52.812089454642816],[6.908137168623745,52.8120978239813],[6.908248086044612,52.812308189016676],[6.908354546701461,52.812523666599496],[6.908402653635549,52.81261405643157],[6.908426124158363,52.81269577266985],[6.908459587155948,52.8128116282365],[6.908512337101192,52.812922181834026],[6.908858059385977,52.81365254006435],[6.908906810237279,52.813801343676545],[6.908937717313622,52.8138902676307],[6.908949735233345,52.81396258019513],[6.908930693296915,52.81404820962608],[6.90888155425462,52.814188151507835],[6.908879412418183,52.814193234621285],[6.908871351201708,52.81421468411661],[6.90885881992821,52.81421428235521],[6.908810622195772,52.81434129188539],[6.908631094573428,52.81481770233226],[6.908649734716436,52.81488712161359],[6.908656535879649,52.814949389247346],[6.908676550502209,52.81503171126894],[6.908707678799633,52.81509366834654],[6.908757403998033,52.81516381428253],[6.908800732091496,52.81521662756115],[6.908844247988918,52.815254832879724],[6.908854290719614,52.815263692693506],[6.908908486318649,52.81530906441438],[6.908970558792445,52.81535433553974],[6.909014107937871,52.815380181833326],[6.908704335538308,52.81577736291727],[6.908576947999988,52.815940211763724],[6.908388394580353,52.81616394855188],[6.908295060951944,52.81621962962783],[6.907917412203781,52.81657835208126],[6.907785567780719,52.81671316929148],[6.907681938823092,52.81681279781849],[6.907565374587066,52.816920455769164],[6.907270480027996,52.81719947519161],[6.907246314705224,52.81722450043512],[6.906872090823279,52.81758625853914],[6.906822625556279,52.817647234767556],[6.906677373212922,52.81779575305929],[6.906554646483007,52.81790629726387],[6.90624203169473,52.81818273107602],[6.905898885614062,52.81851460462783],[6.905656938155136,52.818743511033446],[6.905310151341149,52.8190709351357],[6.905153714648657,52.81921898268936],[6.904939887601928,52.8193632667982],[6.904655614835507,52.81956181367634],[6.904290545408533,52.81981700154012],[6.903412737163531,52.820354531002295],[6.900305874553077,52.819617110208505],[6.899828114332291,52.81950352132957],[6.89828447165305,52.81913493147954],[6.898106587560211,52.81909224647064],[6.898033614684263,52.81907351020308],[6.897932951446462,52.819051754357645],[6.897849493738154,52.81903820661837],[6.897605863835222,52.81900478035309],[6.894146374180848,52.81851602953988],[6.89028701720187,52.817964250529286],[6.886457147005959,52.81739737097936],[6.886397215890621,52.81752901230721],[6.88632175757061,52.81769455382166],[6.886201663517689,52.81795783918357],[6.886123594904304,52.81812846910733],[6.886013870279072,52.81836971562638],[6.885955869132838,52.81849683841651],[6.885894408869886,52.81863130739746],[6.885804498905898,52.81882848813373],[6.885660466871434,52.81914431639719],[6.885583708171048,52.819312682414434],[6.885506717541571,52.81948105128486],[6.885506291832967,52.81948218013306],[6.885381880648463,52.81975506844745],[6.88535858594096,52.8198059185976],[6.885154610510348,52.820253386879216],[6.885081941901699,52.82041271311588],[6.884978310256955,52.82063590592229],[6.884731366942057,52.821169298935104],[6.884553033351875,52.82155352798016],[6.884378172207807,52.8219309721007],[6.884297444794664,52.822105566153276],[6.884254269772303,52.82219879681503],[6.884214359508079,52.822285807228674],[6.884036169151177,52.82267452748982],[6.883883013889118,52.82300900529559],[6.883814644259129,52.82315872687233],[6.883782074077319,52.82322991601021],[6.883668170379565,52.82347851500295],[6.883485024216202,52.823878531397504],[6.882631722986612,52.82361005072926],[6.881975239467899,52.82340201186331],[6.88167884826515,52.82383321797155],[6.881600881722928,52.82394654490521],[6.881310897911819,52.82436868168839],[6.880877350066416,52.82499990135227],[6.880592645898465,52.82541410553303],[6.880289601723934,52.825854940759356],[6.880177624473514,52.82601812634834],[6.880104963057031,52.826124083017284],[6.879700072319443,52.82671280790361],[6.879188499307703,52.827457346777756],[6.878818709389754,52.827995071755616],[6.878456446510321,52.82852258983816],[6.878208138296336,52.82888352809643],[6.877542317908695,52.82985243951748],[6.876691380902968,52.83109217416292],[6.874535764801749,52.8342322789118],[6.874534875823095,52.83423341349202],[6.874430968724248,52.834348743938136],[6.874127320032686,52.834686769576024],[6.873755526498649,52.83510091785284],[6.873696972058206,52.83516568682662],[6.873393080635945,52.83550371344722],[6.873278460894016,52.83563153471511],[6.873063731402719,52.83587070546658],[6.872723187771959,52.8362496326039],[6.872656583977474,52.836336971091],[6.872607573993122,52.83647801781654],[6.872558555364491,52.836728043045035],[6.872555086815205,52.83675561173383],[6.872532775968878,52.836931715684166],[6.872531609784941,52.83708171596644],[6.872544202898874,52.83713155433451],[6.872559282546648,52.83719315835566],[6.872671224108362,52.837559706297725],[6.872723676329541,52.83773150830209],[6.872776647607712,52.83790498904475],[6.872778289754362,52.83790553032854],[6.872789865738391,52.837939090752926],[6.872802465876165,52.837975447136735],[6.87297626272797,52.83849008625685],[6.873003097942035,52.83857682221012],[6.873009877522041,52.8385784229597],[6.875470128138534,52.83920104812865],[6.875649423842189,52.83924936703364],[6.8769745304868,52.83964176781027],[6.876988824371073,52.83964608317099],[6.878450796168068,52.84007945016127],[6.879263849578189,52.84032880476483],[6.879371969730804,52.84035722421848],[6.879403573293898,52.84036581662838],[6.879549480231038,52.84039376302663],[6.879694440877696,52.840421159347905],[6.87983457064819,52.840456480394636],[6.880611769342743,52.84068099623245],[6.880753715672495,52.840721910906204],[6.880795910388499,52.840714641432704],[6.880914033144977,52.84076428050811],[6.880804800399164,52.840859460222305],[6.880730655583968,52.840929483565745],[6.880598500950344,52.84105977836129],[6.88049525136094,52.841173982154075],[6.880430852801905,52.84127814966036],[6.880406471233702,52.84128407243773],[6.880380832177633,52.841293943169624],[6.880357162827373,52.84130715969807],[6.880272291337047,52.84138911369602],[6.880154783671483,52.84150012523719],[6.87996129112258,52.841681744264456],[6.879740706817179,52.84188504836126],[6.879674811684898,52.84194541807948],[6.879612510718794,52.84200237230711],[6.879471213192531,52.842123230535634],[6.879374325755936,52.84219297584888],[6.879365901519438,52.84219757522521],[6.879213100228919,52.84227363753887],[6.878934839003439,52.84241137590599],[6.878777921353421,52.842489174374215],[6.878687414747715,52.84253524602886],[6.878161764592438,52.8427844933143],[6.878127950284108,52.84279952146427],[6.877927616251638,52.8428829173255],[6.877851467029672,52.84291476522929],[6.876962789440749,52.843265164772205],[6.876610015242164,52.84340832242248],[6.876563326204479,52.84344036324665],[6.876405723856661,52.843518728798],[6.876390130665594,52.84352397923346],[6.876018967398764,52.843644894993766],[6.875998098701817,52.84365189647622],[6.875804762601492,52.843702620171726],[6.875528198717519,52.84438128832],[6.875446437573254,52.844582289503116],[6.875381152904505,52.84474263945119],[6.875321650220723,52.8448888736081],[6.875124513413042,52.84537330950994],[6.875074214627642,52.845496958923185],[6.874986666689161,52.8457120754812],[6.874818417374332,52.84612537063505],[6.874513160463786,52.8468751732909],[6.874500744969955,52.846905662269265],[6.874317284734746,52.84735622125437],[6.87422118073766,52.84759279000911],[6.874123975540438,52.84783105762166],[6.874108348560671,52.84786945099119],[6.87404934094415,52.84801006071313],[6.873961574433653,52.848218999837826],[6.873880034371217,52.848413255942205],[6.873828549087585,52.84853635771577],[6.87359671954344,52.84910660769447],[6.87319557759926,52.850094094679925],[6.872943850805542,52.850707283352854],[6.872716540742331,52.85127466606694],[6.872223618039662,52.852463833963114],[6.87179924624975,52.853493172957556],[6.871585070378421,52.85401095606244],[6.871475358520249,52.854278025336484],[6.87126111933156,52.8547941232454],[6.87117386551388,52.85500530028478],[6.871087674686789,52.855213655307814],[6.871038360051761,52.85533279631378],[6.87101436938487,52.855391515900656],[6.870964182436228,52.855512352943585],[6.870787754533898,52.85593978593062],[6.870650984568863,52.856271229303964],[6.870436877086651,52.856791817573374],[6.870305386307605,52.85710802776504],[6.870221974640177,52.85730960651957],[6.870077689917411,52.857659118188145],[6.87001145636249,52.85782003782335],[6.869932549960017,52.8580108872244],[6.869852559848907,52.85820399699237],[6.869739538412674,52.858476722729854],[6.869615989837609,52.85877429576209],[6.869312830748068,52.8595021470231],[6.869261513296895,52.859624120661046],[6.869323044389514,52.85963908481567],[6.869114212266264,52.86013825825999],[6.868926950325202,52.86058941533703],[6.868847025838223,52.86078477036127],[6.868750331748582,52.8610056119287],[6.868162390518502,52.862409961131355],[6.867898459289618,52.863064294406186],[6.867690982605271,52.86357018865976],[6.867448089592734,52.864147301150574],[6.867107807781301,52.864973348446334],[6.866915487887133,52.865440854603825],[6.866588286398343,52.866242582903176],[6.866198485022856,52.867204058351845],[6.8660008340864,52.867699715625044],[6.86572386241246,52.86839577291342],[6.865377094276541,52.86925840714646],[6.865112359422439,52.86937010278253],[6.864911917006913,52.86945459971497],[6.864678318957737,52.86954006868563],[6.864470999602011,52.869613415260915],[6.864219450106647,52.86968281519814],[6.864128264462925,52.86971090761291],[6.863995758302885,52.8697524314748],[6.863727669271076,52.869806306432764],[6.863539078477218,52.86985020915364],[6.863219991132413,52.86990583756046],[6.862992371368747,52.86991427105212],[6.86279108867629,52.86991226705017],[6.862593310610767,52.869904040243675],[6.862395250734374,52.869880649662065],[6.862136558414575,52.86984171801152],[6.861937809321159,52.86983911950982],[6.861789851232587,52.869856115437194],[6.861611082326674,52.869895399777334],[6.861376694234735,52.86996458155502],[6.861367263237072,52.86996020419292],[6.861343004160162,52.869956571802575],[6.861393842697624,52.87001885824015],[6.861222970008171,52.87007208786192],[6.861184451195454,52.870086045514476],[6.858515586877832,52.87092901749019],[6.857806597378739,52.87115065809072],[6.857579253555723,52.87139500753458],[6.857276196414883,52.871720617976194],[6.856891541077148,52.87213205518427],[6.856818072247154,52.87221104173723],[6.856663471809359,52.87237584992838],[6.856575645394101,52.872469618334975],[6.856410963883546,52.87264522334231],[6.856403102984769,52.872659925317414],[6.85329595536319,52.87139211176542],[6.847753247636807,52.86917214669945],[6.847655874969357,52.8691334555259],[6.841301795935586,52.87281966700105],[6.837482362967754,52.871070292009776],[6.833936762829742,52.87024995620567],[6.833777433100347,52.87052657676048],[6.833396194738475,52.87113169362688],[6.833241289346275,52.87133186377659],[6.833055839040445,52.87163295441891],[6.832883727270409,52.87187433921355],[6.832505695320362,52.872464808851156],[6.832293079942168,52.87275892467961],[6.831977762541133,52.873211007775915],[6.831612095352354,52.87377604638114],[6.827922784137118,52.872936487240906],[6.826228542627992,52.872550801995835],[6.827830273391042,52.87013174223059],[6.828532152528136,52.869071697083264],[6.828571036039182,52.869026288505225],[6.830692052197191,52.86581223371418],[6.830718681374115,52.865761355287646],[6.830947232907445,52.86541649243355],[6.831484356955003,52.86460670841145],[6.832397413275369,52.863194680519236],[6.833072807663872,52.862161327241104],[6.832994279250893,52.862144303556846],[6.827871655600855,52.86104236878663],[6.827782137063338,52.861022665763436],[6.827528129545493,52.86096843624198],[6.825050101956168,52.86043491308059],[6.824064580506617,52.86022040986094],[6.823958005123789,52.86019697731928],[6.823981410900717,52.86014670091991],[6.82400058960916,52.86013017956447],[6.822409185272643,52.8588326312401],[6.822380847661362,52.85801227653467],[6.822297542722913,52.85800485286939],[6.817183290099893,52.85724165162144],[6.817096659028871,52.85722471472248],[6.813146462484939,52.85664286411311],[6.811862624245227,52.856453734960375],[6.81176369363926,52.85644368194912],[6.807641316776926,52.855827755536545],[6.80754797346687,52.85578011763545],[6.807534596240791,52.85576644479584],[6.80557996129455,52.854462557290994],[6.802727404204862,52.853684180193376],[6.802632878649481,52.853659462299866],[6.799016814129547,52.85268277642118],[6.797701288539402,52.852519710993136],[6.797671112988194,52.85253354948673],[6.797599811945571,52.85256697328427],[6.797585419462639,52.85257388429634],[6.797491892111375,52.85250084145442],[6.797004002919229,52.8521190135584],[6.795476723281081,52.850927083632506],[6.795384629762911,52.850855145700294],[6.794143969492738,52.84990248328132],[6.793278315426845,52.849616097406624],[6.792423156242385,52.84894872616329],[6.79183497332997,52.84848941648933],[6.791608432184312,52.84805898783718],[6.788569165273485,52.8456972623744],[6.787627762972321,52.844968518294394],[6.786945370698166,52.8444395127648],[6.787019628040445,52.844404375315285],[6.786014206055295,52.843637610564414],[6.784337362698444,52.844445381641656],[6.784240491441818,52.84449145527941],[6.782350230453104,52.845387642979134],[6.778432442740897,52.84724725011756],[6.776240292149901,52.84830807701387],[6.772898329729164,52.84987879906859],[6.768792377769256,52.85177003856213],[6.768767938777213,52.85178211802588],[6.767851907430541,52.85222469718734],[6.766881696568121,52.85269317377043],[6.76486604703574,52.85366692231478],[6.761664453712654,52.855212106487066],[6.757783476369742,52.85706553623811],[6.757304689969883,52.85729741390869],[6.756260018758607,52.85780316929511],[6.755862308659097,52.85799279588264],[6.755731270167314,52.8580552744477],[6.755585868169758,52.858131652590565],[6.755566435776184,52.85814086318792],[6.75502519675265,52.85837962693627],[6.754975194207622,52.85840547813295],[6.754494556380324,52.85863848888799],[6.754491576757118,52.85863964650148],[6.754327473692889,52.85871904608386],[6.754357666099319,52.858742292600674],[6.754324991315622,52.8587954695839],[6.754305863593113,52.8588366949892],[6.75429682264592,52.858866570213294],[6.754294038157615,52.85890367619387],[6.754294576431502,52.85893568853501],[6.754303105397643,52.85900805372212],[6.754315452932587,52.859150591168195],[6.754336720316572,52.859296396737975],[6.754349627109129,52.8594642055288],[6.75436118578772,52.859581474229344],[6.754397086568112,52.85986866753263],[6.754454856300318,52.86042467787047],[6.754527966052775,52.86103331468964],[6.754528632755147,52.86109172675428],[6.754532727367201,52.86111134029457],[6.754528235707799,52.86113835472528],[6.75451088932421,52.86118461526178],[6.754474962168678,52.86128220602535],[6.754184417289643,52.86173323323471],[6.754076369655737,52.86190636014921],[6.753946818742997,52.86211905428417],[6.753751020897232,52.862431933034294],[6.753584976429083,52.862687174374145],[6.753356010323397,52.86305997544345],[6.752855804435067,52.863856615506776],[6.752876873295834,52.86386255329324],[6.752722690783158,52.86410417598595],[6.752697921956749,52.86414321871054],[6.752635098169475,52.86424167840887],[6.751795158994685,52.86402098195477],[6.751238174519506,52.86387737131661],[6.750910444837643,52.86379292735879],[6.750685190707853,52.863735397553356],[6.7505445910319,52.86369880716314],[6.750405417652916,52.8636633237629],[6.750164698554944,52.86360091417622],[6.749923069816005,52.86353907622737],[6.74964399551133,52.86346699268489],[6.74937148552513,52.86339708044184],[6.749121885642404,52.863332523277066],[6.748995756767437,52.86329857449132],[6.748777803760297,52.8632443281259],[6.748573356613605,52.86319161240538],[6.74834036691751,52.86313135786352],[6.74812002675008,52.86307489063922],[6.748089377572157,52.86306681441346],[6.747896404027813,52.863017337002965],[6.74770248560405,52.86296730833319],[6.747511600172495,52.86291780648949],[6.747303658864852,52.862864566733776],[6.747110438030363,52.862814529156225],[6.746918394520717,52.862765039575024],[6.746699449010304,52.86270855385285],[6.746507422412703,52.86265962515014],[6.746507320599139,52.86265959844874],[6.746507127482168,52.86265988286105],[6.746502704002793,52.862666341450065],[6.746480727823385,52.862698448536925],[6.746415142609987,52.86279425985419],[6.746334735603311,52.86283796616576],[6.746189068733307,52.863061449513296],[6.74606311723936,52.86325469837363],[6.746048692117107,52.863272676181005],[6.745978310964033,52.863360406262416],[6.745896665776524,52.86346271670579],[6.745763037156618,52.86362979979741],[6.745690740738029,52.863712806038365],[6.745615184491443,52.86379223632903],[6.745576425223433,52.86383001231317],[6.745536195775784,52.8638692250702],[6.74549339833231,52.86390752335383],[6.745447101710019,52.86394934866361],[6.745064544935698,52.86424467841533],[6.744766483413071,52.86443766489596],[6.744101768502488,52.86486805968057],[6.743899887086891,52.865002132434356],[6.743101573555132,52.865532257519696],[6.742989385898806,52.86560642224192],[6.742790520230993,52.86573787032701],[6.742752053798908,52.86572060185018],[6.742495225394221,52.86589095038921],[6.742527502094105,52.86590832522545],[6.742423594209749,52.86597704768824],[6.742045725954415,52.866226998474616],[6.74187341834617,52.86634101293171],[6.741688448580703,52.86646340355754],[6.741526486632698,52.866570577285714],[6.741483325718832,52.86656093825661],[6.740971458885359,52.86689922702805],[6.741029191341851,52.866909878248045],[6.740868639431786,52.86701664857404],[6.740767909061312,52.86708263719164],[6.740665535875993,52.867149300455345],[6.740562636435682,52.86721528653955],[6.740457505496991,52.867281163031784],[6.740350340705318,52.867346118799304],[6.740241308990655,52.86741026878219],[6.740111476816581,52.867482815314375],[6.739912900058081,52.86758577339418],[6.739871708594751,52.86761289772221],[6.73963181444676,52.8677269651455],[6.739460322300076,52.86830719874379],[6.739411720577593,52.868471611665896],[6.739376320990145,52.86859135931334],[6.739237493138065,52.869061070100706],[6.739083199305896,52.86958304804194],[6.739045176544661,52.869711678053],[6.738994313396864,52.86988374681526],[6.738967261993098,52.86997527748064],[6.738921494776907,52.870130131124846],[6.738760350379238,52.87067528418236],[6.738731737718596,52.87077207222377],[6.738586293207561,52.87126408314609],[6.73837162996994,52.871160748579065],[6.738174488221491,52.8710658522925],[6.737963189159057,52.87096413262094],[6.736366671416537,52.872735264154876],[6.734912938332786,52.87438518878147],[6.733430597385088,52.87599160244578],[6.732635287169826,52.87692236177568],[6.723834036362153,52.88257222300874],[6.7203744830367,52.88504542526818],[6.706991010827531,52.90163643190379],[6.706423742405412,52.90221365886323],[6.706902509073624,52.90231850774886],[6.707320034790059,52.902409948705966],[6.707435399280705,52.902435212714906],[6.706941862308854,52.90319315524115],[6.706779373288736,52.90344170974006],[6.708615926621062,52.90407810890749],[6.70846495037044,52.90422729954938],[6.708153190923444,52.904537393359924],[6.708021663918367,52.904649673247285],[6.707773565771923,52.90479872520503],[6.707337936090672,52.90503239165158],[6.707145117306406,52.90513973121485],[6.706993137815005,52.90519716092277],[6.706786401948182,52.90526363500065],[6.708335950358012,52.90627690529528],[6.707770842958459,52.90658433714846],[6.708108599156944,52.90681590251494],[6.707107399676143,52.90786394090517],[6.706846659514074,52.908136860678745],[6.706453236638345,52.90832369051898],[6.705423880256256,52.90917882178589],[6.703030847086218,52.91002707138816],[6.702461354521397,52.90982324793968],[6.702067702887414,52.91024975152447],[6.699703224637018,52.909926295281515],[6.698136814819926,52.91010095819003],[6.698119795514389,52.910097091756015],[6.69806101661454,52.91008679951488],[6.698035809507556,52.91008057839709],[6.696188979653461,52.90973160414291],[6.693824689779744,52.90951595724666],[6.687626501102419,52.90896142493379],[6.687213044392543,52.90932254010304],[6.68718774624954,52.90934462806699],[6.686726661404099,52.90974253332877],[6.678055468700427,52.91111027493259],[6.67257125289427,52.90988203574385],[6.670127054947652,52.90776989088196],[6.665287771232816,52.89821598437235],[6.66073029508983,52.8960579736248],[6.660583081916023,52.895984292820266],[6.65993197017671,52.895659171272605],[6.659780484430715,52.895575460167095],[6.659673404116968,52.8955105803876],[6.659519388622687,52.89539765988331],[6.659314342975994,52.89523791947361],[6.659287685756891,52.895217146108386],[6.658403152804422,52.89434232659905],[6.656091629297347,52.892055965750835],[6.655884642259455,52.89205802256919],[6.65587892285907,52.89205808337082],[6.65533369801662,52.89206353675229],[6.654604286024561,52.892039982235005],[6.654144071838902,52.89202275083929],[6.654577107651483,52.89276527620792],[6.655521672109081,52.894372983905015],[6.655960827178685,52.895120409122285],[6.655753212766829,52.89515558186969],[6.654724315718011,52.89534664825049],[6.654029685214139,52.89547213597767],[6.652854770570507,52.89568559569812],[6.652243304652259,52.895796575061006],[6.650336332609411,52.895764834868],[6.650112114442018,52.89576110526467],[6.650041873551824,52.895771177432614],[6.648411022113065,52.896005584968236],[6.647654840541199,52.8961162724088],[6.646400638820253,52.89629993043852],[6.645916535321777,52.896370465203674],[6.64556813946023,52.895324726805946],[6.645554207217617,52.895301794090216],[6.64525160916588,52.894481685443935],[6.645058789014486,52.893959112198296],[6.644817569822679,52.89399030884066],[6.64282314330756,52.89425213490119],[6.64073926591766,52.89452916594176],[6.640700063695339,52.89453437695632],[6.640582131090827,52.894548338995996],[6.640572766779212,52.89451685837415],[6.640467439698571,52.894066923666784],[6.636704291688918,52.89444708457238],[6.636396334430277,52.89320690461539],[6.636342669859669,52.89300270685025],[6.636254939665108,52.89305536542457],[6.636111345150471,52.893128156110656],[6.634721516651235,52.89397254183068],[6.633932886084487,52.89443355775809],[6.633651603790867,52.894603400311624],[6.632234026941516,52.895459324967426],[6.631023737044099,52.89617630236161],[6.630926037801916,52.89620812920238],[6.630782775367723,52.89624525694055],[6.630607083844327,52.896285481483595],[6.628705001389354,52.89661995710813],[6.628167611578558,52.89670647712258],[6.627289932123497,52.89685737532215],[6.62722905769058,52.89687618024825],[6.626989285148176,52.89689211628922],[6.627007950158662,52.89706210697273],[6.627060872656226,52.89745813324911],[6.627084417926867,52.897570751852435],[6.627110895404178,52.89765579374526],[6.627175815545227,52.8978096927992],[6.627075242685165,52.8978253420815],[6.627007946582699,52.89765528143203],[6.626976077611057,52.89753320471046],[6.623237656820842,52.89774632494761],[6.623103399047742,52.89760534669191],[6.622444938443733,52.89770404996648],[6.621906731376948,52.897708459615345],[6.620885750824241,52.897723007768214],[6.614310842324263,52.897799092692445],[6.614299811992558,52.897494517459094],[6.614289606192426,52.897235122049835],[6.612179883964433,52.897311509068864],[6.611230576801505,52.89734519989342],[6.61039998932556,52.8973734783943],[6.610647053692646,52.899082340072574],[6.603625033441429,52.89910805277102],[6.604037015498297,52.90160370140713],[6.603560577065164,52.901636391302134],[6.602876266721779,52.901689984607685],[6.602543924855162,52.901714713890655],[6.601988140675844,52.901755197502126],[6.601398939469719,52.90179658016639],[6.600800232471606,52.90183861827151],[6.600447766745482,52.90186635484209],[6.600337764401845,52.901877583636775],[6.600653441061731,52.903341594168815],[6.600970921561723,52.904727423447525],[6.589180554994547,52.91098791415066],[6.588051430322539,52.91116983786638],[6.586930851329688,52.91135037976757],[6.586917782127778,52.91135248830652],[6.586248923407235,52.911460251987464],[6.586238577481362,52.91146191968493],[6.586227318814986,52.91146283263191],[6.585030441640402,52.91155989430367],[6.585001975916852,52.91156220205279],[6.584202220232275,52.911627050197346],[6.578015308780867,52.9121715402424],[6.577401641792349,52.91265784839341],[6.57674930035926,52.913158648561094],[6.576553258407241,52.91330793861713],[6.575738397109496,52.913954983630475],[6.574681415435387,52.91478312449429],[6.574132085772227,52.91523238571308],[6.5738914909156,52.915420282885535],[6.573849057698975,52.9154541641195],[6.571694718857475,52.91717385579314],[6.568642089221222,52.919579783116454],[6.567515475538015,52.920488941408934],[6.555755183927857,52.918427063139234],[6.558448111585684,52.91407740065158],[6.551901041294586,52.91272235045812],[6.550593054471197,52.912818372376925],[6.549994809428378,52.912862531269475],[6.549473926270258,52.91290259975413],[6.549434653862972,52.9129056243308],[6.548474277811796,52.91297947125498],[6.547616901245884,52.9130467462279],[6.547402341525617,52.91306357958198],[6.5472167665694,52.913077956011655],[6.547184348708758,52.91308046388149],[6.546911816393099,52.91310156235519],[6.546630259198244,52.9131248868068],[6.546380402879452,52.91314558409106],[6.545904063949856,52.913182625104646],[6.541984374369835,52.91343276500791],[6.541865547539304,52.91343694303281],[6.541832024448578,52.913438156992314],[6.541675373614879,52.91344507325966],[6.536762701750429,52.9152846309675],[6.536405730845046,52.91557094806858],[6.535390179717538,52.9163854848458],[6.53501797781674,52.916168239961344],[6.534959971698277,52.916135814696574],[6.53490460737318,52.916105467006645],[6.534823291265949,52.91606637259455],[6.534670638481328,52.91599054119013],[6.534592058713556,52.915961063560125],[6.53436231067713,52.91587541274159],[6.534169359765613,52.915824179353244],[6.534012573492045,52.915782196573446],[6.533936478774224,52.91576181662612],[6.533544048643497,52.915661468920675],[6.533069413438803,52.91554008810294],[6.532694350664073,52.91544418135354],[6.532053905916608,52.91527828312315],[6.531957283706379,52.91525348834973],[6.53153711696375,52.91514567108115],[6.530258367154037,52.914804958177214],[6.530123644635374,52.91466968883605],[6.5301002785706,52.91468352808927],[6.530085734862872,52.91469191754047],[6.530078409304431,52.91469264373151],[6.530060953964846,52.91469261311203],[6.528613587897179,52.91382749653633],[6.528607063165729,52.913823595575664],[6.528299210730538,52.913639605337785],[6.528291175733546,52.91363480210407],[6.528285995297544,52.913631706109584],[6.528052635803435,52.913492280573934],[6.527594278958185,52.91321875135716],[6.527263762993723,52.913021507689336],[6.525871240759998,52.912856207344944],[6.522698409124613,52.91247222721408],[6.518249807335222,52.913270663714435],[6.518160344913076,52.91331109968832],[6.517218025042022,52.91373698200159],[6.516859475784835,52.91389902551652],[6.516776432680159,52.913936559746226],[6.515114134751624,52.91468863850196],[6.514998318160887,52.91474103128918],[6.490296204306579,52.91343561527573],[6.490020067848826,52.91324988538565],[6.489878230144046,52.913158457460014],[6.489681653042647,52.913031146041334],[6.488912725366069,52.91253327622514],[6.488641002667797,52.912358854072956],[6.488356480888167,52.91217555325841],[6.48781369102185,52.911822197241456],[6.487304350351648,52.911493245125214],[6.486352383288352,52.910876762843884],[6.473602561010023,52.914837788968036]]]]}},{"type":"Feature","properties":{"id":17,"statcode":"WS34","geometry_g":"polygon","gag_id":"1","hierarchie":"2","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.34.34_Waterschap Noorderzijlvest_p","sde_id":null,"land_code":"NL","inspire__1":"NL.34.34_Waterschap Noorderzijlvest_v","inspire__2":"NL.34.34_Waterschap Noorderzijlvest_l","wbh_code_o":"34","einde_leve":null,"laatste_wi":null,"admin_code":"34","waterschap":"Waterschap Noorderzijlvest","publiceren":"34","Aangemeld":1,"Actief":1,"KVK":50130994,"tnostatus":2,"CPT":1890,"GMW":55,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[6.514161695733218,53.02529726247895],[6.514008085906226,53.02525888808208],[6.513995711055276,53.02528626720555],[6.507082855781138,53.023196890975115],[6.505159922900596,53.02729372406923],[6.504851395463549,53.027954742268356],[6.50477986827053,53.02794234733828],[6.498015924675763,53.026769970635975],[6.49791553344931,53.026753046710205],[6.498265475937576,53.026120708737444],[6.498954828361121,53.02489941696469],[6.499164434783324,53.024518700618316],[6.494975969065178,53.02386459306641],[6.494075822368158,53.02374395694969],[6.493291126315643,53.02364298805283],[6.492385866449667,53.023524310038106],[6.491576169081972,53.02342213236027],[6.491123496199173,53.02336327746781],[6.490821541643498,53.023325667439906],[6.49043475581977,53.02327647451752],[6.490003721099528,53.02322320422376],[6.489739717020302,53.02318743522362],[6.489533136533733,53.02316018583727],[6.489099135348932,53.023105707848956],[6.48889189410233,53.0230783289414],[6.488619050247547,53.02303996082932],[6.488355089809072,53.023005823987276],[6.488039892808088,53.02296588566499],[6.487818697383123,53.022938291548186],[6.487545848259351,53.02291092961764],[6.487274784663061,53.02287218319297],[6.486815768833525,53.02281542869571],[6.486586356406952,53.0227811230973],[6.486289678798656,53.022745520443735],[6.485996277998855,53.02270869259347],[6.485696497584469,53.02266765387854],[6.485476330598641,53.0226416899887],[6.485180638255379,53.022599030772724],[6.484888721474941,53.02256065014159],[6.484601108012632,53.022525041599025],[6.484342712835053,53.02249557135098],[6.483826583237716,53.02242551749481],[6.483601460816272,53.0223956060469],[6.483316922553872,53.022358922866616],[6.48290495159408,53.02230680879056],[6.482650521125886,53.022273085248614],[6.482369893436156,53.02223950101012],[6.482256019688664,53.02222273211522],[6.482221708544086,53.02221854386797],[6.482203945063457,53.02221739413314],[6.482195970829379,53.02221800664858],[6.482194351754788,53.02221826411646],[6.482099360046627,53.02219909886347],[6.482141698391398,53.02212280313823],[6.482310549902114,53.02195714093553],[6.482572206455279,53.02162929311833],[6.482641913557993,53.02146592897916],[6.482778669647258,53.020575942388334],[6.482822381304213,53.020387925683345],[6.482861877613892,53.020276163087544],[6.482845573469151,53.02024598998928],[6.482742193273337,53.020054546960225],[6.482457772337833,53.020133127041326],[6.482364817995846,53.01999639948821],[6.482058089069481,53.020099320923514],[6.482089926564938,53.02013503998056],[6.481576217797387,53.020310293367174],[6.481533187970865,53.020269932435475],[6.481329927369909,53.020338383984075],[6.481250522679541,53.02036749081024],[6.481118716718413,53.0204107910999],[6.481040247324334,53.02043794777752],[6.480988200841846,53.02045617307757],[6.480950513614776,53.02046877548822],[6.480909281663651,53.02048030611913],[6.480853767370656,53.02049224443459],[6.480815274255765,53.020500657916074],[6.480765654283162,53.02050931662136],[6.480683638034287,53.02052403148044],[6.480642879025472,53.02052888916269],[6.480594955536385,53.02053507888196],[6.480555985486237,53.02053991899266],[6.480514988066426,53.020543574575896],[6.480471771510406,53.02054614386515],[6.480429107374722,53.02054806132502],[6.480383794647813,53.0205484491663],[6.480345596352421,53.02055082963972],[6.480305919285379,53.020550707008844],[6.48024605607156,53.02055030154418],[6.480198654894252,53.02054820078155],[6.480084961360542,53.0205360192716],[6.48002915936705,53.02052879212507],[6.479967856926614,53.020515593444635],[6.479891984462986,53.02050258177554],[6.479843213515166,53.02049288034113],[6.479770964298436,53.02048115745509],[6.479693571408496,53.02046815026739],[6.479627585324385,53.02045714175334],[6.479564104615624,53.020445086710765],[6.479501357905644,53.02043187312522],[6.479414302883893,53.02041513520604],[6.479303238540413,53.020396648051936],[6.479198368489494,53.020376747225605],[6.478961457033183,53.02033443438963],[6.478852195490133,53.02031466381202],[6.478781398486107,53.02030256580511],[6.478563542946087,53.02026238817313],[6.478405446388597,53.02023632211344],[6.478272803402825,53.02021129136798],[6.478103609363695,53.02017880171941],[6.477923294059959,53.020146844629224],[6.477788443708884,53.02012170677585],[6.477617915457974,53.020091888108794],[6.477454470403317,53.02006107180408],[6.477306155791355,53.02003387175289],[6.477176935316421,53.02001161189829],[6.476988476023473,53.01997693332089],[6.476805727437667,53.01994288482406],[6.476642163094201,53.01991319005775],[6.476462533423376,53.019881108295486],[6.476257052861686,53.01984385970351],[6.476108142952164,53.019818497204206],[6.475973812538932,53.019792652211635],[6.475854492545736,53.01977171232611],[6.475720859924362,53.019747495096645],[6.475632250869748,53.019732880487595],[6.475581672621376,53.01972405800028],[6.475557020998806,53.01971929436125],[6.475420097699434,53.0196940106484],[6.475090444187694,53.01963474911886],[6.474864971946167,53.01959421198764],[6.474341786239181,53.01950038393103],[6.473973430659381,53.01943222370861],[6.473468165516161,53.01934030406608],[6.47296035391963,53.019248397322116],[6.472214668224486,53.019111384828385],[6.471401709884556,53.01896401309119],[6.470888878586791,53.01886950099037],[6.470853999401863,53.01886196136173],[6.470910553086383,53.018730359370295],[6.470914083324948,53.01872428823731],[6.470921113104848,53.01871458137167],[6.470930577158441,53.018702049169704],[6.470944903741264,53.018686076172216],[6.470954672713312,53.018665407531024],[6.470968605552601,53.01864206771103],[6.470985316023144,53.018592624466606],[6.471102335220751,53.01826500953715],[6.471306625158642,53.0176815938731],[6.471505234225511,53.017120408418734],[6.471703340340678,53.016565571175455],[6.471941876438909,53.015892621617674],[6.47211523487906,53.015396324338404],[6.472242004933015,53.01504990043263],[6.472370393794519,53.01467759665211],[6.472424971713015,53.01452806433878],[6.472436705904512,53.01448829865989],[6.472474242997915,53.014361081583566],[6.472477760337812,53.01434916128571],[6.472735835727509,53.01362481564454],[6.472963100656052,53.01300964369964],[6.473012997906551,53.012891184169504],[6.473274147614333,53.01215340215078],[6.473670769679913,53.01103285060442],[6.47380863952425,53.010638990464386],[6.47406193536999,53.00991531339292],[6.474078401767577,53.00986828023763],[6.474098942233479,53.009809597844644],[6.474099373509947,53.00980837231527],[6.47410432394462,53.00979422664741],[6.474109051978536,53.00978072137258],[6.474115102582175,53.00976343828974],[6.474094417592402,53.00975795531559],[6.474068034196653,53.009559531872135],[6.474063141443454,53.00946689527553],[6.474058185240787,53.0093937238684],[6.47405765757845,53.00933382263703],[6.47405221551217,53.00925082492918],[6.474050432660095,53.0092295417002],[6.474050163164454,53.009215157103164],[6.474052528529953,53.00920075664477],[6.474055631837262,53.00918358992288],[6.474057988637536,53.00917121187967],[6.474065910459936,53.009147145282896],[6.474079504225147,53.00910437852702],[6.474104286153017,53.00903004739692],[6.474148445607552,53.0089040820215],[6.47418325307804,53.00880577358375],[6.474266820943967,53.00859935787927],[6.474322023280304,53.00843238446763],[6.47437014697394,53.00829277594521],[6.474422668772046,53.00814679256364],[6.47446829260543,53.00800737776318],[6.474575746433949,53.007709340480936],[6.474648117088239,53.007509299968795],[6.474731025439561,53.00728560870847],[6.474778401623269,53.00715732239403],[6.474808166092758,53.00707671815426],[6.474874610983478,53.00688284182464],[6.474974089926957,53.00661052508537],[6.475053935176151,53.00640029703589],[6.475112558061967,53.00623862958371],[6.475235804913083,53.00590467979975],[6.47532173997532,53.005626499772355],[6.475461965973366,53.00524477406807],[6.475551220655519,53.004988034092584],[6.475663393745571,53.004670199396564],[6.475760393539525,53.004423579504085],[6.475842837998121,53.00417821479426],[6.475910337979943,53.00399060177971],[6.47592383697553,53.00395309349931],[6.476013918288295,53.00371709530311],[6.476525087009597,53.00230070180197],[6.47655038393637,53.00223232297359],[6.476575787378178,53.00216104189988],[6.476774614181544,53.00160276297044],[6.47685937839995,53.00136474628712],[6.476865867163218,53.00133528598807],[6.476864646382387,53.00130557512347],[6.47685574384711,53.00127634617574],[6.47683938106411,53.00124831366591],[6.476815957222336,53.00122216864715],[6.475128766139619,52.99965878269648],[6.475114547282816,52.999632301946704],[6.47507861454481,52.99961256152507],[6.475026906080553,52.99956414343077],[6.474709785945654,52.99926715503953],[6.474704175306424,52.99926200207296],[6.474578167803878,52.999146364064025],[6.473984529215381,52.99860155813707],[6.473596664277971,52.99823941605993],[6.472250805988037,52.996990618656106],[6.470855346143312,52.99571535775435],[6.470417721812797,52.99532139323007],[6.469994202192916,52.99493065176624],[6.469113283103209,52.99411788297884],[6.468981022114922,52.99399573556456],[6.468915835160565,52.99393552858262],[6.468386355778779,52.99344648008016],[6.46832241741332,52.99338742348672],[6.474330865631575,52.991022697250955],[6.474374772070568,52.99100542023415],[6.475207292640249,52.990677858091786],[6.475233633288497,52.990667498792334],[6.476969131792628,52.98998463624418],[6.481136711835306,52.988350726836416],[6.485311921362476,52.98670504295778],[6.485384262433123,52.986676527856524],[6.48530243941063,52.98660127627883],[6.485164505343848,52.986466481669076],[6.485074312673256,52.986392404417984],[6.485066649874461,52.986390893102865],[6.4850642354159,52.9863872926507],[6.485065174293667,52.98638318659174],[6.485111456900492,52.9863488981417],[6.485124430968451,52.9863437106486],[6.485095634195361,52.986316718411096],[6.485082738585799,52.9863214738171],[6.485029884222208,52.98633023563902],[6.485023940516339,52.98632894339604],[6.484999343224688,52.98630609957255],[6.48498800268749,52.98631053452817],[6.484985592587975,52.98630824792268],[6.484912486507554,52.98623019328607],[6.484823857012715,52.98614785149432],[6.484738141652367,52.98606820532337],[6.484626108026468,52.98596411364267],[6.484597333279008,52.9859373820099],[6.484484642311126,52.985832667156394],[6.4843884836407,52.98574331246569],[6.484326943447624,52.985692849004515],[6.484339448696779,52.985687971741285],[6.483901302173963,52.985278818551315],[6.483893118478679,52.98528203876776],[6.483735702609041,52.98513611571264],[6.483589696729515,52.98500091703411],[6.483357122862381,52.984786312805106],[6.483213540112645,52.98465322074528],[6.483115941428046,52.98456209853058],[6.483015155807984,52.98446799424137],[6.482904717798814,52.984364884770564],[6.482809696775857,52.98427615586303],[6.482684528592687,52.984159286534236],[6.482486945584762,52.983983237340986],[6.481707573096424,52.98325884938182],[6.48167023612676,52.98322429504587],[6.480694236672076,52.98232109178952],[6.480656901313798,52.982286537123265],[6.479791493972368,52.98148794674115],[6.479497742015035,52.98121687131049],[6.479043832584025,52.98079837249923],[6.478359470028011,52.98016434027395],[6.477828922537646,52.979673634546366],[6.477178128020215,52.979072450738244],[6.476414757783283,52.97836875877202],[6.476048438121487,52.9780394990744],[6.476029062045753,52.9780214417187],[6.476033706779678,52.978019629272325],[6.474984569070235,52.97703832869358],[6.474043470400622,52.97615802947616],[6.474037602213406,52.97615611470446],[6.47400320577936,52.97612435283068],[6.47382577112373,52.975960507812694],[6.472778157095897,52.97498967080528],[6.472085380305209,52.97434640407843],[6.471141371341867,52.97347371083891],[6.47071660052603,52.97307879478386],[6.470245056004896,52.972641126995946],[6.469809457593546,52.972237579537484],[6.469316704505394,52.97178145322169],[6.468743542877314,52.971253950437315],[6.468630838640297,52.97115037111813],[6.468331016949542,52.97087563051613],[6.468329531175415,52.970870889560295],[6.468067379860854,52.970628644865116],[6.467679059152672,52.970266604079995],[6.467181993352448,52.96980465748187],[6.466805210242901,52.96945522552074],[6.466644711658288,52.9693040589025],[6.466650426204315,52.96929976603541],[6.466657938873199,52.96929596889283],[6.466690854831655,52.96928289120485],[6.466669732059632,52.96926371515789],[6.466640980314866,52.969237616180585],[6.466608605015341,52.96925028395664],[6.466598118863518,52.9692530301248],[6.466590707395421,52.96925366325066],[6.465389107243707,52.96813834832413],[6.457342651017633,52.96066785767145],[6.457349655860048,52.96066520668647],[6.457367813885117,52.9606579626203],[6.45734892362913,52.960640831933176],[6.457347415554292,52.9606394614499],[6.457334386300739,52.96062764347569],[6.457309441556717,52.96063732956976],[6.456165439702666,52.95959720280134],[6.456151806583976,52.95958325061284],[6.456132846081386,52.95956928377117],[6.456123367687341,52.95955906981845],[6.456061108742913,52.95950423152461],[6.456057809296261,52.95950447613643],[6.455773021778676,52.95923778397664],[6.455565921322406,52.959043846574346],[6.455438114948812,52.958921463361946],[6.454752878690782,52.95828060795276],[6.453454249950896,52.957068090830845],[6.452879290314595,52.956531496901704],[6.452148145188811,52.95585657110373],[6.451224882034431,52.95499850857651],[6.450475280289609,52.9543035438404],[6.449611172221482,52.95350634158861],[6.449533098342917,52.95343637109609],[6.449527304939962,52.95343438167502],[6.449032030165954,52.95298056661148],[6.448800374855852,52.95276204132116],[6.448602160456858,52.95257481604027],[6.448283645217475,52.952275269303605],[6.448076274598001,52.952080934602684],[6.447893660090885,52.951905845796055],[6.44792468714874,52.95189372547912],[6.447915368878482,52.95188501027669],[6.447849529046551,52.9518234323365],[6.447815049300709,52.951836814197705],[6.447607720319017,52.95164216317853],[6.447279948558245,52.9513371078438],[6.446982226063545,52.95106094593839],[6.446693299331472,52.95079576104771],[6.4463443952453,52.950479655072414],[6.446186977649647,52.9503361813752],[6.446176419410399,52.950326559469545],[6.445602218894378,52.9497979932692],[6.445344515396999,52.94955860775733],[6.444437006798279,52.948725499471266],[6.444365558722369,52.94865931369672],[6.44429012796518,52.948589639639025],[6.444092539140222,52.948410031283814],[6.443933000973919,52.94826369636134],[6.443786134312902,52.94813062295921],[6.443683814331865,52.94803676007229],[6.443541953074605,52.947906966677415],[6.443296441097099,52.94768234267657],[6.443332609956622,52.947668155701734],[6.443320343766079,52.94765686897142],[6.44328413190615,52.947671082690604],[6.442971703682109,52.94738520099586],[6.442520943326845,52.94697172176398],[6.442344641942176,52.94681162189277],[6.441574847989148,52.946105473004906],[6.441405122106594,52.945948153897014],[6.441338874714238,52.945885578411335],[6.441284913164939,52.94583460390302],[6.441122943822176,52.945686022873296],[6.440940956918812,52.94551742389696],[6.44079455013432,52.94537985766825],[6.440620737973754,52.94521878068373],[6.440431795791544,52.94504542495911],[6.440268621281066,52.94489409379757],[6.440041650052355,52.944684227627256],[6.43985762396791,52.94451214005862],[6.439656477264951,52.944321052413585],[6.439295928618241,52.94398670496808],[6.438616301822176,52.94335643825079],[6.438605512549196,52.9433464321612],[6.438465495976725,52.94321658056675],[6.438093285975927,52.94288709464005],[6.438069245418604,52.942864928585614],[6.438085556459931,52.942819490718],[6.438108524478546,52.94282189545193],[6.438028033696831,52.94274756147538],[6.437975493867315,52.94274038567054],[6.437981780319906,52.942723434257516],[6.437940744330945,52.94271831380105],[6.437913049586911,52.94269258537655],[6.437893151414963,52.94270030887489],[6.437262325885697,52.94211181759032],[6.436536708277798,52.94143437561665],[6.436509148044541,52.94140864568569],[6.435632653812736,52.940593404620735],[6.434819138695814,52.939847164562366],[6.433994533759307,52.93909005205915],[6.433232328087582,52.938390623314625],[6.432354108089178,52.937585079901915],[6.431540724797371,52.93683962494656],[6.430739520220254,52.93610457341528],[6.430615400670725,52.93598999510129],[6.430596096489505,52.935997622655975],[6.430583928345896,52.93598640626239],[6.430567031228492,52.93597028683967],[6.430538445884326,52.93594429397258],[6.43053446547809,52.935940586871226],[6.430372760737579,52.936002234383004],[6.430305206044242,52.936027987990116],[6.430256872950187,52.93606502280352],[6.429836217168161,52.93621054589859],[6.429486906104756,52.93633028252146],[6.428983675958149,52.93650627099451],[6.428352568982975,52.93671997554999],[6.427725264960789,52.93693364358693],[6.427022771149589,52.93717084437871],[6.426850885834337,52.93723051317707],[6.426684737286855,52.9372881819162],[6.42556154955207,52.937670893619085],[6.424291723243006,52.938098330221074],[6.423010783173082,52.938537288118994],[6.422026527262227,52.93887300004125],[6.422004377780647,52.938880489664704],[6.421823812785905,52.93894796439288],[6.42168112998477,52.93899953661803],[6.421545962329154,52.93904876000734],[6.421331813517154,52.93912153924422],[6.421121471412988,52.93919428634167],[6.420749658885188,52.93932562262131],[6.420546870855711,52.93939831140831],[6.420299092633731,52.939489676888606],[6.419702423219257,52.93972134478277],[6.419173297498913,52.93992726136678],[6.418520318055243,52.94017999710353],[6.418187619632735,52.940310376712986],[6.418189711224,52.940312578733156],[6.417783390269005,52.94047256603832],[6.417528294243817,52.940573273228274],[6.417367107080732,52.94065243642157],[6.417171470525295,52.94072671159219],[6.417035400851331,52.94077973035948],[6.416856422136983,52.94083312008514],[6.416805313804386,52.94084911648796],[6.416567008449315,52.94093412882029],[6.415877717986763,52.94118374894554],[6.415375738439421,52.941369544758665],[6.415077966697265,52.94148098433313],[6.414737435920508,52.941597977376674],[6.414661165403989,52.941624560858315],[6.414371385391314,52.94172556764504],[6.414107571414102,52.94182115660908],[6.413645147589282,52.941986698537654],[6.413528825318274,52.942028338312404],[6.413018123340432,52.9422090135357],[6.411945697121717,52.94259151807729],[6.411307345488613,52.94281994177444],[6.410532791956475,52.9430961886099],[6.409800899090965,52.94336169388891],[6.409332819219673,52.94353160857007],[6.408788237306714,52.94373328790855],[6.408524412488046,52.943828873716264],[6.408354236650479,52.94389254527202],[6.408252233535589,52.94393490038031],[6.40822684877003,52.94395066507146],[6.407929056131653,52.944062095691706],[6.407818104780177,52.94408896180759],[6.407775435562223,52.944099697921715],[6.407537112108686,52.94418469210155],[6.407051970245897,52.94435992920419],[6.406788122402777,52.944455510115624],[6.406566824670346,52.94453517272971],[6.406536058246494,52.94455047013285],[6.406439556252849,52.94459847532346],[6.406363053818699,52.94463023187332],[6.406295013388069,52.94465673970412],[6.406260925810124,52.944667400551126],[6.406218255133922,52.94467813611401],[6.406133050042481,52.94470478100261],[6.405903164703763,52.94478451531776],[6.405494634696037,52.944929345241206],[6.405273224097813,52.94500764755795],[6.404668406225483,52.9452046366396],[6.404455561024941,52.94527903721954],[6.404363411124451,52.94531045750707],[6.40441619353159,52.945370149434375],[6.404430297926396,52.945386097046296],[6.404812237850577,52.945818062965806],[6.40909346230365,52.9506592573537],[6.410454318858358,52.95219785138821],[6.410616324960114,52.95244324402762],[6.410891204286878,52.95275666240351],[6.411178227678507,52.9530839330346],[6.411198488132492,52.95310703487755],[6.411282245690066,52.95320253920007],[6.411711859370096,52.953692363651726],[6.411739520535637,52.95372390415706],[6.411802839428631,52.95379610058875],[6.413981875353194,52.95628036440321],[6.416875974904857,52.95957934586308],[6.420980377337915,52.9642569582781],[6.423188751005905,52.96677327756338],[6.424449752569392,52.968209973770605],[6.424703042920108,52.96849853703585],[6.42618050016251,52.970181669162415],[6.42675700127513,52.970838377921766],[6.427147098808645,52.97128273861595],[6.427205037818584,52.9713487367495],[6.427550504905439,52.97174224878419],[6.427614685326081,52.971815355531696],[6.427561680161958,52.971866098643616],[6.427488823031301,52.97193584208033],[6.424429988781918,52.97486365690786],[6.424417660280952,52.97487545583617],[6.423049060186563,52.97618528272792],[6.422982971155837,52.97624852968229],[6.421662951309322,52.97751177104763],[6.421516090555973,52.977652302026776],[6.420713717932627,52.97842011596869],[6.416858938241079,52.98210839626782],[6.416433158224484,52.982515734753875],[6.415637334928075,52.98327706730057],[6.414896493437343,52.98398554496687],[6.414640985006799,52.98422746496524],[6.414217793761381,52.984628141415406],[6.413279813749309,52.98552288312765],[6.412629980857498,52.986136759979],[6.412164964401268,52.98658044800324],[6.411530941363877,52.98718535787314],[6.410166536404459,52.988476407436046],[6.408788904422106,52.98980509952291],[6.407904760385359,52.99064999024527],[6.40785801621081,52.9906946488411],[6.406525078893639,52.99196945130378],[6.405592049041818,52.992873352339714],[6.405012868021669,52.99342436879369],[6.403995220495882,52.994397015483564],[6.40324189445483,52.99511964166826],[6.402758272791995,52.995583533193745],[6.401904132673489,52.99641305156017],[6.400701204906748,52.997558241251994],[6.399566827185986,52.99864267200792],[6.398572467208953,52.99959337889847],[6.397247747049151,53.00086359858945],[6.396421808359243,53.00165206312418],[6.395897171325561,53.002147131909375],[6.39494084558712,53.00305323553506],[6.394096659387558,53.00385696122433],[6.393852461858792,53.00408968936745],[6.393833804051458,53.00410747008464],[6.393173034635034,53.004715359983784],[6.392464089753537,53.00536754208211],[6.391258424042297,53.006449666869365],[6.389380900374273,53.0082424579957],[6.384724765321489,53.01269278112583],[6.384141332696315,53.01334771965036],[6.383937736290326,53.013545174051316],[6.383183917171356,53.01425619419311],[6.38210228542315,53.01529030389914],[6.380943347684489,53.016390216963224],[6.380358071088706,53.01695009828752],[6.379503006360236,53.017764185042],[6.378638703651104,53.01859288147951],[6.377995265875573,53.01921450429884],[6.377544928317174,53.01964245153785],[6.37696231836571,53.02019565223564],[6.376496690906555,53.02063630260088],[6.376211829384896,53.020907764899974],[6.3759286425575,53.021177613612636],[6.375422087569793,53.0216604860427],[6.375340016880322,53.021738710311425],[6.374714429099006,53.02233660318068],[6.374185208306245,53.02284703034352],[6.374050033278071,53.02297739200639],[6.37397533031342,53.023048194687135],[6.373491053574538,53.02350713119486],[6.372970002222787,53.023999888454604],[6.372533353801423,53.02440223515089],[6.371334506278187,53.02555069971835],[6.370526838334988,53.02632483152556],[6.369759423173028,53.02705386426946],[6.369442825375191,53.02735462434546],[6.368619427372052,53.02814277401218],[6.367749231439788,53.02897095914323],[6.366929238264824,53.029750243628584],[6.366128520043435,53.03051361108509],[6.364656921561499,53.03191194485994],[6.364535006951744,53.032027789514295],[6.363613322311838,53.03290879205548],[6.36358782664007,53.03293316555385],[6.363441850420093,53.033073928585715],[6.363412354141724,53.03310205486878],[6.363245311707779,53.03326132172811],[6.362946779596414,53.033552677852306],[6.362624440684089,53.03386811440177],[6.362521349465042,53.033968985612255],[6.362578963387046,53.03438470459784],[6.362649218655219,53.03491783063132],[6.362685225880947,53.03518238196621],[6.362726885096158,53.03549279991589],[6.362764981307361,53.03576006607996],[6.362798498459417,53.03599402974516],[6.362807229268227,53.03605882438353],[6.362838290307188,53.03628961719195],[6.362884941377811,53.03665492179455],[6.362920150096122,53.03691766444608],[6.362946459332105,53.03713853873119],[6.362977266602022,53.037359906825095],[6.363005208258576,53.03757315638325],[6.363033107835148,53.037825047886834],[6.363059666641182,53.03802781260538],[6.363072821325527,53.038128284272936],[6.363112662821857,53.0383834129467],[6.363140522527016,53.03860160602697],[6.363163003799944,53.038788757323545],[6.363218906921808,53.03926307386221],[6.363253216678896,53.03952607519291],[6.363262786288455,53.039602905576956],[6.36327260661874,53.03968173643031],[6.363296845781194,53.039855403545985],[6.363306422107982,53.03992267928318],[6.363324444341016,53.040049315864216],[6.36332610051582,53.04006390532282],[6.36334238994087,53.04020701084426],[6.363365544116773,53.04037222077097],[6.363378243839946,53.0404603385545],[6.363394512645549,53.04058186703789],[6.363416436151964,53.04073745331838],[6.363440213477138,53.04090851770738],[6.363456519511071,53.04102575864222],[6.363477390356691,53.0411934935134],[6.363505654154723,53.041422206985146],[6.363534149869478,53.041657225660835],[6.363539435330244,53.041691323002674],[6.363563201291072,53.041844602882406],[6.363588268137845,53.04204641756819],[6.363637417624988,53.04242220509001],[6.363681240422155,53.04279446025399],[6.363729478476184,53.04314421157492],[6.363749525753935,53.04330970756611],[6.363788182170286,53.043578720380836],[6.363831251017889,53.043888101864844],[6.363873406139554,53.044213216446565],[6.363912750022257,53.044480876451026],[6.363931608148969,53.04461269153716],[6.3639659191437,53.044885352591955],[6.364008238887911,53.04517318952806],[6.364039811064133,53.0454108523471],[6.364065177078337,53.04562120187613],[6.364100776109403,53.04588800201793],[6.364134344938337,53.046160677968665],[6.364167743580257,53.04645362129022],[6.364178731604621,53.04654705462677],[6.364214468165269,53.04679138701285],[6.364234312122528,53.04693841694847],[6.364282288231369,53.04729401199381],[6.364360998830604,53.04787163970851],[6.364402387887777,53.04816962945952],[6.364403121365921,53.048175078033346],[6.364412874396939,53.04824801515259],[6.364413752797243,53.04825455891748],[6.364632109489412,53.04988539950484],[6.364738426580466,53.05067940417354],[6.364818146995045,53.05124044254261],[6.364883244738994,53.051723523506006],[6.364898174457457,53.05182095162802],[6.364910410934259,53.051900760757725],[6.364995571634296,53.05238583562853],[6.365069523812321,53.052780389537276],[6.365085796809847,53.05286724678168],[6.365202606832013,53.05347545703744],[6.365259065906479,53.05377579478603],[6.365268840940226,53.053827791890484],[6.365324113773294,53.05412179533749],[6.365424847912768,53.05465428947579],[6.365469518450439,53.054884744531165],[6.365473096019032,53.05490321897588],[6.365516076246609,53.05512489055018],[6.365610926197529,53.055642183154184],[6.365665353706742,53.05594224030282],[6.365711028135487,53.05619401245779],[6.365810380247018,53.056762033163096],[6.365856189477996,53.0570044394942],[6.36589551271192,53.05721250777826],[6.365985903262018,53.057697043946355],[6.366051941114481,53.05805727939112],[6.366081718796739,53.05821972049054],[6.366180187873182,53.058717624344034],[6.366214581438299,53.05885905324373],[6.366267650403421,53.05907731646052],[6.366272808559413,53.05911022744083],[6.366291292400052,53.059228133191255],[6.366318023018131,53.0593856639814],[6.366345343282272,53.05953420546029],[6.36637407971828,53.0596747360824],[6.366414770866148,53.059904881561955],[6.366472600660504,53.06016678882823],[6.366476786997504,53.06018571683966],[6.366509749626472,53.06036884454366],[6.366568805557553,53.060661854406845],[6.366620387567513,53.060913136928384],[6.366656355396206,53.061085887422045],[6.366667024807292,53.061144959017916],[6.366678102920201,53.06120625563153],[6.366686649168697,53.0612120808769],[6.366699391775532,53.06121687426646],[6.366709732903104,53.061215657912676],[6.366693628382325,53.061273546427174],[6.366689088712019,53.061289848686215],[6.366876653295172,53.06226570253778],[6.366977942487603,53.06279265459202],[6.367062589978445,53.06326353176125],[6.367102282939308,53.063466995168945],[6.367178893782641,53.06387846518501],[6.367255960433982,53.06430881064027],[6.367348697769733,53.064786909586665],[6.367431068709771,53.06523062024002],[6.367504731236289,53.06558326101462],[6.367531737045193,53.06572742749716],[6.367562000658317,53.06588905394521],[6.367565128185133,53.06590799865237],[6.367577307717784,53.06598158030378],[6.367581264727178,53.06600552433214],[6.367660046697606,53.066439423517494],[6.367691401413316,53.066641400789905],[6.367717765677667,53.06681129947368],[6.36775907979634,53.067061803717195],[6.367796683945737,53.06719688711832],[6.367810495066753,53.06735995128691],[6.367436633044568,53.06744540253625],[6.367078221324592,53.0675273109207],[6.366419151791909,53.06767093636147],[6.365620315105628,53.06785047933565],[6.365587821556495,53.06785778112241],[6.364757757075446,53.06804421281986],[6.36386113247474,53.06824539138962],[6.363061645757347,53.068424112751686],[6.362226001749813,53.06860950372692],[6.361344401682066,53.0688004115534],[6.360768681412839,53.06892467982682],[6.360666779074934,53.06894667256581],[6.360626412575097,53.06895563724169],[6.359931255637356,53.06910997927054],[6.359688878170321,53.06916321795477],[6.359047588851579,53.069304077648034],[6.358562280130557,53.06941000542988],[6.358222029607015,53.069484264073154],[6.357727843674486,53.0695943667071],[6.357619778114606,53.06961844645229],[6.356982956711676,53.06975960055843],[6.356970307844198,53.06976240828705],[6.35690336328929,53.069777248849185],[6.356392490158248,53.069892711575456],[6.356092247187532,53.06995957493554],[6.355634869313675,53.070061436688434],[6.355338195725819,53.070124451475024],[6.354926133799224,53.070211968989426],[6.354275639952505,53.070362970090954],[6.353710264982942,53.07048989737683],[6.35317282563205,53.070610549485245],[6.352944113727574,53.07066111941817],[6.352186751299456,53.070828563206746],[6.352145388637416,53.07083777446088],[6.352051331826153,53.070858716734485],[6.35193028161876,53.070885663214945],[6.351905161690793,53.07089125819646],[6.351765492476511,53.07092235417875],[6.351384973207876,53.071007071302475],[6.35117050575905,53.0710515832829],[6.350790289803571,53.07113397812639],[6.349449637683858,53.07143178458191],[6.34871016021283,53.07159745291658],[6.348176820619504,53.071716457655285],[6.348156969840066,53.0717208856228],[6.347620272284491,53.071834551060846],[6.34502068373309,53.07240954306811],[6.3433680400721,53.07277504603041],[6.342571760022531,53.07295114083537],[6.341695785553971,53.073145138484655],[6.339990737772114,53.073522712425785],[6.339188884218048,53.07370027602335],[6.338492528387483,53.07385446785875],[6.338034758823158,53.073955823944495],[6.337963600118441,53.07397157635966],[6.337568003926532,53.074059163738454],[6.33723879840269,53.07413204278223],[6.336270884578885,53.07434629367537],[6.335078842383574,53.07461014681601],[6.333360904289324,53.074990387298215],[6.332872503998439,53.07509848109885],[6.332722543335043,53.07513166603289],[6.332381516714203,53.07520714179862],[6.332321682872031,53.075220383143716],[6.332055323179361,53.075279334756885],[6.331129650266962,53.075482714073544],[6.330373102316955,53.07564851120505],[6.329701318758667,53.07579705577696],[6.328952958788073,53.07596385836043],[6.327703423295959,53.076238801038436],[6.326605463503645,53.07648169114504],[6.325350907388342,53.07675902178186],[6.32426705007923,53.07699548890326],[6.323454633427333,53.07717423428393],[6.322996809407607,53.07727495766817],[6.321372329743455,53.07763477508768],[6.319938231135141,53.07795045579884],[6.31945707168059,53.078057638495466],[6.319213291052548,53.07811193595399],[6.318855757740351,53.07819157194349],[6.318417183072439,53.07828831730296],[6.31841480657094,53.07828883932858],[6.317679099481277,53.078451122071314],[6.315499344015391,53.07893046187559],[6.312559816129547,53.0795835125118],[6.310676624600689,53.07999655060533],[6.309961234642334,53.080153443311],[6.307662974200835,53.080662066363196],[6.307436341720856,53.080712218999196],[6.305547790032763,53.08113252204422],[6.305273737070423,53.08118950455351],[6.305364709779628,53.081308568944564],[6.305975983262306,53.08210860704139],[6.307174461915871,53.083672623784175],[6.307792454752605,53.08447311268402],[6.308510780859174,53.08540353402799],[6.30917556984274,53.0862715118056],[6.309684454856225,53.08693591232535],[6.309803371949853,53.087091171878896],[6.310435961244937,53.08787090089636],[6.310600326295476,53.08807056941298],[6.311288014472112,53.08890592686237],[6.311381131814576,53.08901903927597],[6.311530702891408,53.08920073189493],[6.311773529828525,53.08953962249159],[6.311994805908874,53.08985061471318],[6.312360018231632,53.09037459551738],[6.312400409620605,53.09043255112404],[6.312594672067035,53.0906985042672],[6.312687155190905,53.090825584851814],[6.312768074405324,53.0909367960621],[6.312933600006727,53.091157669896134],[6.31319264457984,53.09149297236788],[6.313321829202199,53.09166018986225],[6.313455481007714,53.09183317818505],[6.313684350324284,53.0921252189869],[6.3138073969457,53.09227880699775],[6.31385806874354,53.09234206450302],[6.314016760102461,53.09255270083932],[6.314101776898412,53.09266811111587],[6.314217048529292,53.09281967343044],[6.314303850910698,53.09293469229694],[6.31434311939652,53.09298671709273],[6.314365395690224,53.093016244439745],[6.314398057297679,53.09305952206411],[6.314687764978059,53.09344340643173],[6.314949896959696,53.093779463214844],[6.315157422767489,53.094052741099055],[6.31456687643648,53.09419223745074],[6.31435008886066,53.09424344069816],[6.313618899081304,53.09441614919247],[6.312752268731602,53.094620839800555],[6.312744633306999,53.0946226415908],[6.312449908037825,53.094691140813644],[6.31052050563745,53.09513957412615],[6.31003946780477,53.09525128169692],[6.309205085854178,53.095445039377324],[6.309119980233684,53.0954648363059],[6.307773385337026,53.09577803804223],[6.306535401597627,53.09606685530132],[6.306453309467278,53.09608750695105],[6.306449545430719,53.09609094169488],[6.305146095596927,53.096395991788974],[6.304306154042195,53.09659573450715],[6.304208915700612,53.096619645243415],[6.30385327123394,53.09670463964264],[6.303759065777037,53.096727854017466],[6.30266140917043,53.096984777960145],[6.301668164033832,53.097216398417764],[6.301481875921323,53.09725977779496],[6.300890489211287,53.097397506586596],[6.300807334810292,53.09741687767676],[6.300299574911574,53.097536009756496],[6.299382727047169,53.0977511136132],[6.297950871363813,53.09808467705774],[6.297896526250488,53.09809746492656],[6.296426907679163,53.09844329430086],[6.296306718414592,53.098471642550315],[6.295871612218511,53.09857640130042],[6.295797174121144,53.0985935906425],[6.295103312648717,53.098754767402355],[6.294636894445919,53.098863937688996],[6.294542821408287,53.09888691848209],[6.294460707984351,53.098906978769946],[6.293228165863129,53.09919527423109],[6.29191646330063,53.09954227977753],[6.29056888418959,53.099830841836805],[6.290538996883712,53.09985830530306],[6.290510673139946,53.09989338670803],[6.28875066609518,53.102073074831836],[6.288687500081228,53.102079930961374],[6.288446677007062,53.10227629875936],[6.288354910343389,53.10235395758007],[6.287915775075002,53.102716140808106],[6.287653224583861,53.102935765318875],[6.287398492930824,53.10315955284055],[6.287169025430107,53.10335322624076],[6.286865329697425,53.10360953492477],[6.286771733021757,53.10368852661113],[6.286346706931524,53.10403751366963],[6.286086373852799,53.10425828674289],[6.28591928195235,53.10440298076271],[6.285898158831411,53.10442127435251],[6.285829375798873,53.10448083057019],[6.285568905373603,53.10470169186264],[6.28513971400932,53.10507108702547],[6.285073744859415,53.105126685672886],[6.283577931911765,53.10641070946071],[6.283506803468688,53.10647119874177],[6.283145975566834,53.106780943652545],[6.283050280749886,53.10686309380136],[6.282838946106995,53.10696845835372],[6.282280159251729,53.10716395486938],[6.281221496950497,53.10756735129498],[6.281149662700141,53.1076025652009],[6.280880738816358,53.107778287817766],[6.280424242005055,53.10802392943919],[6.280267212348925,53.108108430528624],[6.279857434729248,53.10833300773568],[6.278618144646918,53.108968856115666],[6.278574595464456,53.108991195867446],[6.278325885776884,53.10911165729531],[6.27758833022069,53.10946888589043],[6.276789986627028,53.10985555127029],[6.276721858580822,53.10988906497187],[6.276443283822037,53.11002609003819],[6.275759431394694,53.11037399424454],[6.275066916697948,53.11071574820189],[6.274722018461067,53.11088760626167],[6.274650161724971,53.11092151452976],[6.274369537519508,53.111053948853645],[6.274137381767699,53.11116701811095],[6.274017042946892,53.11122038932726],[6.273877330616203,53.11126707362999],[6.27347935575414,53.11139267382348],[6.273246736218907,53.11146275416429],[6.273235929592524,53.11146601586873],[6.272655561576223,53.111605003180244],[6.272028935108468,53.111762069602584],[6.271822890711648,53.111813716969486],[6.271820137391847,53.11181050163464],[6.271082807041648,53.11198881492976],[6.270850219663952,53.11204251785146],[6.270470977584374,53.112127251801255],[6.270165412766223,53.11219977808368],[6.270171583136347,53.11220942824496],[6.270135856076423,53.11221741086376],[6.269317912873776,53.11240021705496],[6.268480992255634,53.11259248445203],[6.268331883662309,53.112626309623415],[6.267642827277173,53.11278259868826],[6.266673725070298,53.11299730130003],[6.26590642832041,53.113177986746415],[6.26589972176758,53.11317947375649],[6.265221423626242,53.11333025110555],[6.265208666689714,53.11333308423927],[6.265214079141259,53.113341492004395],[6.264498423810444,53.11348340835575],[6.264502591557987,53.11349011846241],[6.264230096842444,53.11356823734968],[6.263624860856259,53.113741744525186],[6.263618312932903,53.11374362474477],[6.263608935156128,53.11378944326852],[6.262662443085457,53.114082399375015],[6.262659099867909,53.114126159579556],[6.261678479245471,53.11428117451341],[6.261057743372811,53.11434016200752],[6.260449041229183,53.114353829573034],[6.260411944053159,53.11435466705654],[6.259824184893848,53.11436179849972],[6.259540374996284,53.11436524157482],[6.258639000833506,53.114372341006174],[6.258372337384935,53.11437123500019],[6.258371351111407,53.11437123289058],[6.258024089787972,53.11434903701686],[6.257626554933879,53.11431410285699],[6.257378344993656,53.11430009041184],[6.254842365628805,53.11414594065411],[6.254304635702446,53.114127378392155],[6.253679953690474,53.11408788343842],[6.253425927393962,53.11407186559497],[6.252880669775578,53.114037472311324],[6.252697048132167,53.11402592098874],[6.251559385375828,53.11395420321671],[6.250700275891702,53.113903813267626],[6.249855686217608,53.113854183376866],[6.249180938826322,53.11380071997519],[6.249011623766099,53.11379345525307],[6.248639447370864,53.11378040646605],[6.248517984875845,53.113776148774974],[6.248014237756908,53.11375741279174],[6.247201841684762,53.11371318492282],[6.246893182260667,53.113693924631605],[6.246509635593656,53.11366998636193],[6.245707816295391,53.11362721065363],[6.245604811453975,53.11362061607561],[6.24508183638673,53.11358712368247],[6.24506176962046,53.11358742975851],[6.245014350810554,53.11358814648337],[6.244941628316536,53.11358120805952],[6.244805708757902,53.11356555666987],[6.244716666240582,53.11355657943497],[6.244211223817097,53.11354025633645],[6.244116470884892,53.11353476066989],[6.243737596121033,53.11351279455413],[6.243669835244717,53.11350897376137],[6.243615166834331,53.11350569883852],[6.243597341268377,53.11345987040347],[6.243594590846049,53.11345980051113],[6.243522069408118,53.113458457637506],[6.242961259226954,53.11344722492489],[6.242419779874555,53.11343622090419],[6.241676319227427,53.11341611339095],[6.241289266429901,53.113405017067855],[6.240585253507886,53.11340330488651],[6.239914906658544,53.113404673224686],[6.23946492452483,53.113402259112306],[6.238477375606557,53.11339701551088],[6.238415776534117,53.11339668945152],[6.237912988701406,53.11339363860899],[6.237456417890348,53.11339642128243],[6.236896902188367,53.11339549541995],[6.236592719401346,53.113393104614225],[6.236348577738665,53.11339016339841],[6.236262156112534,53.113394361268604],[6.235854912979624,53.113419057365235],[6.234541059722102,53.11348322900867],[6.234372694822955,53.11350151274548],[6.23403143583049,53.1135385677256],[6.233336440787179,53.11359953511571],[6.232182830581253,53.11369961804253],[6.231721247819729,53.11373893442608],[6.231228063505779,53.11378587730228],[6.230993184000161,53.113806988649976],[6.23069592692058,53.11383370441917],[6.229570621365169,53.11392455736363],[6.228900948891178,53.11397649753069],[6.228718385359231,53.113990548876465],[6.228417901639793,53.11401367007347],[6.227910761847792,53.11405070513282],[6.22764367645417,53.11406924868539],[6.227509791495347,53.114076738720385],[6.227480444501604,53.11408058374287],[6.227245674006435,53.1140950811427],[6.227022387793967,53.11411570648148],[6.226929491641134,53.11412428396373],[6.226423727023675,53.11421552532794],[6.225961786025898,53.114300095990885],[6.225219808291637,53.11442587613499],[6.224939414189394,53.114472435773884],[6.223568168301497,53.114736636116945],[6.223030605581237,53.114840207564825],[6.222679404303378,53.114904994838575],[6.222637198054803,53.11491122914201],[6.222606740072316,53.114914102109324],[6.222561898084337,53.11491539495325],[6.222146745405987,53.11492837122223],[6.221480696322359,53.114951767050464],[6.220521001894166,53.114985478181],[6.218681734332717,53.115047162196866],[6.217082470648569,53.11510231298244],[6.215477491229171,53.115142969406264],[6.214856575053407,53.115165026896825],[6.21317092404469,53.11522059588972],[6.212785343140889,53.11523537654794],[6.211837560541176,53.115270175748],[6.211779022440448,53.11527301491185],[6.208644687181045,53.115370080103524],[6.20777790990258,53.11539690492105],[6.206351115183072,53.11544105278977],[6.206319946705885,53.11544202047596],[6.206205363547866,53.11544771887176],[6.206180553934203,53.11544840940062],[6.206176941186174,53.11544852516843],[6.206041406725928,53.11545280364038],[6.205048249282092,53.11548411169497],[6.20478582780718,53.1156583045581],[6.2041840546058,53.1160493314599],[6.200989578650223,53.118124898462405],[6.200394127285799,53.118511756336524],[6.200152480619783,53.11866874989555],[6.199988412266523,53.11877533433471],[6.199577437279885,53.1190423268992],[6.196657179314274,53.12093935314535],[6.195858218546147,53.12146415324051],[6.195650322837825,53.12160070916337],[6.195552270577124,53.12166156982338],[6.194469663647043,53.122364187608184],[6.193846650456738,53.12276851312234],[6.193763699699534,53.12282234131665],[6.193409976464754,53.123052074396476],[6.191362785964643,53.12438159432069],[6.191297908931707,53.12442360837534],[6.191109685806533,53.12454551168791],[6.190827281886553,53.12472840593956],[6.190555282698142,53.12490456317368],[6.189658184477499,53.1254855486885],[6.18960735732516,53.1255184638109],[6.189567661251524,53.12554416930928],[6.189193449149121,53.12578634714006],[6.187838011309036,53.126674379781974],[6.186921432138823,53.12727471317103],[6.186595959459932,53.12748637144029],[6.186440640852504,53.127583452114166],[6.186428891490195,53.12759195145559],[6.18614213098529,53.12780166977551],[6.186115415554433,53.127820942684664],[6.18543982499441,53.128263523525554],[6.184877474811458,53.12863177511783],[6.1846372693758,53.12878389249269],[6.183951252122685,53.1292192273963],[6.183803569278719,53.12931288363796],[6.183204424504956,53.1296999021814],[6.182894708263354,53.12989459688164],[6.182594670772983,53.13009485096186],[6.182396364656906,53.13022927090831],[6.18228377449829,53.13028899383384],[6.18137725845794,53.130885847702096],[6.18090206487222,53.13118554101855],[6.180593450294499,53.13139089606288],[6.180182208448298,53.13166432767739],[6.180157765620194,53.131680772099664],[6.179528167207259,53.132103917892415],[6.17951387602638,53.13211412184223],[6.178611581847011,53.13270418684754],[6.178481780647306,53.13279322511975],[6.178466211819887,53.1327972548933],[6.176327009893634,53.13417052000848],[6.175444788930779,53.1347385288987],[6.175164853902111,53.134918969490855],[6.175208973485392,53.1349310350079],[6.175701854925082,53.13506033928853],[6.175677621955193,53.13507622453606],[6.175665677662129,53.13508904550987],[6.175419083310837,53.135320767544535],[6.175317193650605,53.135481902704704],[6.175282380608921,53.13590201921373],[6.17523484418361,53.13590258376436],[6.175260164583727,53.13626534985269],[6.175265742206455,53.136572046622575],[6.175269438524578,53.13665204492636],[6.175294646922056,53.137198433828694],[6.17532399993617,53.13783460418415],[6.175347104169954,53.13833495420397],[6.175363085166104,53.13868122983176],[6.175374435979706,53.13892731276345],[6.175394683285029,53.139365918705316],[6.175438295922689,53.140311002304074],[6.175464931307509,53.140887854081974],[6.17547674494874,53.141143755952406],[6.175477389599955,53.14115785905749],[6.17549115771974,53.1414833103669],[6.175500730653797,53.141709705944244],[6.175517256523409,53.142100513224676],[6.175530965485092,53.142287155334685],[6.175546784078668,53.14248303807342],[6.175560109474836,53.14278821013537],[6.175586573711637,53.14320777852522],[6.175592502830199,53.14327404792688],[6.17560514425556,53.14341515494013],[6.175626938512771,53.14365846365995],[6.175703214845385,53.14450979315307],[6.175749470276213,53.14502613782407],[6.175803995224773,53.145634671204],[6.175865256897956,53.14631850790522],[6.175868483567966,53.1463643875095],[6.17587242225451,53.14642056024278],[6.17589692556177,53.14676986020287],[6.175947079791901,53.14763395112215],[6.175998602014718,53.14846051482873],[6.176049572871764,53.14915004448794],[6.176057534897483,53.14928109898461],[6.176084336103021,53.14972266253696],[6.176096504340291,53.149922999550135],[6.176108821853759,53.15012572706978],[6.17613062311847,53.1504848383433],[6.176181792093776,53.151263796041555],[6.176234267281975,53.15205844277379],[6.176281528410224,53.15255209819514],[6.176303826866345,53.15278491630966],[6.176304381042597,53.15279318047575],[6.176305638248654,53.152811971446944],[6.17655310073143,53.15280455400219],[6.177261897535947,53.15279782606959],[6.177806335200499,53.15281035292594],[6.181334688269457,53.15346847995353],[6.184467961241316,53.15406135853769],[6.185234301369236,53.154203487117684],[6.185593301006874,53.15428125755881],[6.185898791508261,53.15445629337428],[6.186280692281454,53.154764775037535],[6.187998918845385,53.15594596308271],[6.189530085888124,53.15700228923379],[6.190824852716763,53.15790582805462],[6.192411419957913,53.15900342894448],[6.194008315119833,53.16005032027803],[6.194937663102074,53.16068595206032],[6.195167339923463,53.16062687575426],[6.194986064259993,53.159361136210435],[6.194815484137466,53.158160366551144],[6.194769279791836,53.157843237098504],[6.194830168469193,53.15783904490291],[6.195357953264284,53.15780270631673],[6.19630597884116,53.15773930352184],[6.196950864543307,53.15770370403982],[6.196980866193232,53.158002505389],[6.197012005429577,53.15831260325462],[6.197043023905446,53.15862818372549],[6.197071501606426,53.15893168601671],[6.197532927590506,53.15891674186321],[6.198103930368018,53.15889631961365],[6.198109208660893,53.15896501899884],[6.198121228866532,53.159121493154885],[6.198535240966148,53.15917710107087],[6.199166483050236,53.15926595024727],[6.199358586200302,53.15929144542689],[6.199436959995891,53.15930184150625],[6.200023651777681,53.15939297308082],[6.200717146949487,53.15950205105723],[6.202860340702702,53.1594892660167],[6.203892181237288,53.15947995849305],[6.205471714514417,53.15946275213136],[6.206714068638483,53.15944818137333],[6.206800516815639,53.15944716467698],[6.206741715424133,53.157315774056464],[6.206651188919768,53.15449395154771],[6.209915736825609,53.15443433261729],[6.211104515797317,53.154416682104504],[6.21135024586335,53.15442550112317],[6.211598057989954,53.15444900784831],[6.211787527153064,53.15448575274678],[6.213620762925165,53.155049227772196],[6.217234125108476,53.15616311868698],[6.221848226320096,53.157583971575384],[6.22192850017833,53.157608735843155],[6.22191572774092,53.15765695845432],[6.221803499216289,53.15808065498278],[6.221743229716679,53.158327986777856],[6.221700335215949,53.15850397312494],[6.221620905378615,53.15880365725946],[6.221620250882824,53.1588061324014],[6.221515712787003,53.1592094483004],[6.221328613339723,53.15990001367637],[6.221262927940702,53.1601512830254],[6.221172317045841,53.160497933511245],[6.220938214379748,53.16137174630924],[6.220852399360246,53.161697479569305],[6.220757930096308,53.162056098934656],[6.220747075684155,53.16209729493206],[6.220498456907342,53.1630684554143],[6.221252616129019,53.16318343665294],[6.221909455405325,53.16327523178854],[6.222042187308619,53.16329379002531],[6.222044885446448,53.16329416572606],[6.222597457371252,53.16338238841565],[6.223128354617326,53.16347078576968],[6.223321920823764,53.163503008618676],[6.223183245165642,53.16393777260004],[6.223120117079479,53.16412910505735],[6.223040063076781,53.164375559238565],[6.223694776089615,53.164418771815086],[6.224482301777894,53.16447221375988],[6.224554643906574,53.1644771226175],[6.22421039544806,53.16549391589383],[6.223688307012491,53.166990100973194],[6.223018173227391,53.16888700714617],[6.222888498430226,53.16923830679872],[6.222855269534842,53.169373519364065],[6.222652741212089,53.17050297396141],[6.22489679707054,53.16989930145392],[6.225550308881669,53.16972286483381],[6.226569087608271,53.169445132986766],[6.227590432377228,53.16916464712159],[6.229791960006343,53.168567115497254],[6.230788425061243,53.16847725634331],[6.230765494737974,53.168525820227764],[6.230602792925746,53.168870405409145],[6.230203367822066,53.169678280853304],[6.230023779100218,53.170033929495375],[6.229849376133906,53.17040486209572],[6.229604922464613,53.17089953082789],[6.229571057789558,53.1709660146764],[6.23021953866785,53.171064724792956],[6.230454067783618,53.17109946985014],[6.230449544522184,53.17110840659506],[6.231058772840639,53.17122854995012],[6.23180530653552,53.171369300196844],[6.231665179057626,53.171637650748366],[6.231599909904142,53.17176008821846],[6.232233909198211,53.17191586202874],[6.232339098846975,53.17194078463284],[6.232697979877496,53.17202583329205],[6.232846451163858,53.1720608112114],[6.232766454941728,53.17220474821695],[6.232764794578024,53.172207743621094],[6.232641975475521,53.17243638936537],[6.232496803511229,53.172697553044586],[6.232252767444014,53.17313611468588],[6.232159618302891,53.17330674310248],[6.232021967160293,53.17355885710288],[6.231781249549139,53.174008653830946],[6.231749451416566,53.174067610393685],[6.231589324285465,53.17436228755773],[6.231536500216736,53.17446197426784],[6.231431080878614,53.17466092245198],[6.231171328378287,53.17513678594257],[6.230963768946741,53.175506084075614],[6.230805643030717,53.17579810939045],[6.233902373790674,53.17639788407906],[6.234861603792928,53.177606936973376],[6.235873397025064,53.17693563922646],[6.238266252410804,53.17524107288155],[6.239479726902781,53.175536730913436],[6.241122530884788,53.17482649839659],[6.241788436252208,53.17501192175412],[6.241737414034911,53.17507806883645],[6.241497539587343,53.17540975747049],[6.24216694957236,53.175594709267614],[6.242290196144416,53.175441246518524],[6.243087170904083,53.17566384369245],[6.243729112986504,53.17582677819282],[6.243755403544628,53.175833446786655],[6.244355981445235,53.175997833829086],[6.244408838149512,53.17601217551739],[6.245075605264741,53.176190156518174],[6.245287293142478,53.17593618620812],[6.245835895519413,53.17606934234878],[6.246354125912196,53.17546927532688],[6.246651372011079,53.17511834923801],[6.246750941943649,53.17501092474586],[6.247283760108516,53.174383152716835],[6.247518765322686,53.174104783759326],[6.247542084617859,53.1740771629353],[6.248239430357828,53.17422480554592],[6.24872248817351,53.17432963601837],[6.249810835122574,53.17457271277953],[6.250289163337428,53.174716732515634],[6.25044570073624,53.17476237836938],[6.25092287803346,53.17489572897443],[6.251274147381513,53.174976885812036],[6.251379457844793,53.17498902222526],[6.251498040762617,53.17497677338431],[6.251573251531613,53.17499072492903],[6.251645889027199,53.17501818854106],[6.251858204529222,53.17511640869634],[6.252083000809803,53.17518836606348],[6.252542214220881,53.175292337493],[6.252974605219769,53.17538361144308],[6.25374174101993,53.17557208376453],[6.253721500303232,53.175597157854774],[6.253846538418722,53.17562195476537],[6.253925712159615,53.17550283783337],[6.254157681539756,53.17557650855013],[6.254181354832406,53.1755830593041],[6.254201252668131,53.17558856769901],[6.254146931808048,53.175635948312156],[6.257180920531589,53.176342721695086],[6.258706583938132,53.176670076026674],[6.26172750293188,53.177262274458215],[6.262031972724214,53.17732189057904],[6.263641665333644,53.17774215981324],[6.26510815699892,53.17809660497461],[6.265793603948821,53.17828294530835],[6.267855004087384,53.17866374647729],[6.270706147283249,53.17912125374583],[6.27125193241338,53.17920882466518],[6.271719001809808,53.179258861197404],[6.272135621082266,53.17929088411159],[6.272521743363614,53.17932814441934],[6.272819388130348,53.179392797622555],[6.273280774274402,53.17950470604458],[6.273601498344956,53.179609297263426],[6.273832656714906,53.17968780959451],[6.274875066797567,53.18025000306666],[6.275113629097845,53.18035018449909],[6.275411474860717,53.18042402112978],[6.277583127800716,53.18075971927346],[6.280006753115329,53.18116871073488],[6.284224545928214,53.18195114464662],[6.284448414923908,53.18201214331022],[6.284673012278933,53.182108231774066],[6.286410770353627,53.182980989757375],[6.287006492922171,53.183245579656806],[6.287761383995376,53.18116002360441],[6.288450757708773,53.179243503090966],[6.28857296557018,53.179273314143494],[6.288583025590178,53.17924180377198],[6.290534743462256,53.17972267258396],[6.292009433968314,53.1800778923322],[6.293723720701428,53.18045878957644],[6.294374167683753,53.180603009221144],[6.294536965882767,53.18068144453675],[6.294640653404265,53.18069954433],[6.29527010525941,53.18081469055433],[6.296122990402562,53.18095012893961],[6.296685734615798,53.181084212659364],[6.297156508236846,53.181215762079894],[6.297551057112577,53.181332494473935],[6.2978150198992,53.18142331245562],[6.297966439310339,53.181516049846174],[6.298094607940013,53.18164732286124],[6.299853697578654,53.18357886393775],[6.301045967825693,53.18489176571456],[6.301333435897421,53.18512940397247],[6.303462426430674,53.18664906008154],[6.306408711103403,53.188184980891634],[6.30805905225557,53.18910238656262],[6.30831323997719,53.189211573998215],[6.308521199695634,53.18924089583314],[6.309760151851594,53.189182112301296],[6.309497303519115,53.18983574861733],[6.309628498516895,53.18989495398027],[6.314008622581325,53.19203841109109],[6.314913724813266,53.192482198817665],[6.3160902531063,53.19305557403112],[6.316230047864765,53.19309386464742],[6.31636702173239,53.19310834542088],[6.317175650555328,53.19313440975557],[6.318909729920148,53.19318239102059],[6.318903264541705,53.19330619302671],[6.318853363535291,53.19403214786648],[6.318742442240352,53.19564558104835],[6.318732756047719,53.195786460048154],[6.318713083591209,53.19603335475188],[6.318494259189563,53.19852800399331],[6.318474663151303,53.19875143534837],[6.318467028582987,53.19894798527497],[6.318463303795069,53.19905575785078],[6.318450471187812,53.19920350851811],[6.318429605361372,53.19958968659901],[6.318390415362853,53.200172336598975],[6.318360429629988,53.2006299189693],[6.318316667018039,53.20128106888659],[6.318313225839451,53.20133183212785],[6.318309920435059,53.20138269195736],[6.318288313826916,53.2017046702634],[6.318265492711289,53.20204474730758],[6.318243013876776,53.20237837830912],[6.318191932474736,53.20302341142108],[6.318159561729916,53.203432234282566],[6.318071249243055,53.20453236197197],[6.317995511958827,53.205481307590574],[6.317877673231385,53.20699157352008],[6.317818563426743,53.2075193622671],[6.317768394377749,53.20796732301962],[6.317663454929797,53.209154733185315],[6.317599058393772,53.20986760557932],[6.31760583491049,53.2100044462762],[6.317521241691605,53.21123760761951],[6.317444747997272,53.21201530838017],[6.317417134252791,53.212295951597355],[6.317396642375742,53.21264801427635],[6.317366523571872,53.21323876892404],[6.317459073398615,53.2133774614699],[6.317461021489271,53.21338038511112],[6.317465759872221,53.21339951568723],[6.317418400130678,53.21382827609812],[6.317416039889308,53.213860536162244],[6.317215856298867,53.213866509485854],[6.317205084897975,53.21391572916877],[6.3171377106845,53.213915003222766],[6.316984904844442,53.21391335567705],[6.31666218275097,53.21393070088432],[6.316403219636038,53.21396907310204],[6.315794179103627,53.21413724154274],[6.315340355301364,53.21427812684597],[6.314806890063603,53.21447284141818],[6.31418817594137,53.21470825779801],[6.313626553939106,53.21474936363766],[6.313034797112227,53.21468373814839],[6.311483281951375,53.21430790215787],[6.310642968857966,53.214109013915795],[6.30933293197783,53.213919372961286],[6.309050395526235,53.2138588722645],[6.308131857604574,53.21355005710791],[6.307892870393056,53.213507603125315],[6.305959281786174,53.213260036997234],[6.30405885227469,53.21304062763338],[6.3023455281752,53.21283155903647],[6.301774136086964,53.212761142676925],[6.300514903668353,53.212575440856185],[6.299868519365316,53.21393890420419],[6.299600789486111,53.21439885156084],[6.298927646775205,53.21583552899428],[6.298441449765249,53.216876779426705],[6.297916740963509,53.21803187131765],[6.297699473572626,53.21848229683241],[6.297434429337645,53.219053094116646],[6.297317583797532,53.21903312263571],[6.296752932566951,53.21899521078307],[6.296079880448964,53.21893029154043],[6.295604034418958,53.21886714573303],[6.295021518280196,53.21875867709052],[6.29415264281073,53.21858692300762],[6.293369761885032,53.21841129775892],[6.292802683108746,53.21824625149773],[6.292185079474004,53.218039032647745],[6.291138967645215,53.217645547983494],[6.290811607621752,53.21745645350857],[6.290440094699276,53.217228727358204],[6.29030483175469,53.217166744985995],[6.289999747053691,53.21704669623028],[6.289215158234696,53.21683306839038],[6.28870827151241,53.216707527164395],[6.288304625100855,53.2166266029998],[6.288145147737831,53.21659439857625],[6.288128108075115,53.21661846682658],[6.288077276064617,53.216732440134564],[6.288034055363209,53.21682938254024],[6.287942223311306,53.21705138104584],[6.287923558580891,53.21707454280066],[6.287862352187429,53.21715048498177],[6.287804231400912,53.21717911044728],[6.287726301276729,53.217213932756216],[6.287739268588044,53.21723711796205],[6.28765995013778,53.217328318868454],[6.287626782141954,53.21738465922944],[6.287224046007897,53.21833533052089],[6.286812387244447,53.21926420964888],[6.285570881861759,53.21906598994153],[6.28547201639917,53.219047652767],[6.285154143114905,53.218988711943915],[6.285010414513366,53.21897575157822],[6.284942384834625,53.21897074286334],[6.284875305859359,53.218969698822896],[6.28478044885849,53.218962635212755],[6.284743129676274,53.21896071309972],[6.284591354068964,53.218939411089785],[6.284207415452575,53.21885606873649],[6.284136726912646,53.21884700906813],[6.28400322783409,53.21883059288735],[6.283975554237029,53.21882738472883],[6.283912595429521,53.21880628878096],[6.283629918150414,53.21836739357502],[6.283618579210952,53.21834548976676],[6.283579285475787,53.218215781512434],[6.283502960521166,53.21810674936207],[6.283313752807444,53.217959327241196],[6.283219285725278,53.217885726928024],[6.282983903835344,53.217694087653086],[6.282876344167645,53.21765907198814],[6.282809594150342,53.21764930789726],[6.282232835243224,53.21755615863832],[6.281816034101519,53.217469873668826],[6.28162116683366,53.21743129336467],[6.281416365477135,53.21738657802646],[6.281163308737319,53.217340864393876],[6.280837413545225,53.21729355465653],[6.280736906789575,53.217301914040796],[6.280555690332283,53.2172972616477],[6.280247560779291,53.2173162862019],[6.279886683981212,53.21738871250538],[6.279757696760614,53.217418598705514],[6.279639421923791,53.217446032490415],[6.279463263441806,53.217473086361615],[6.279242382889528,53.21750658506886],[6.279031164311615,53.217532390206166],[6.278620925572601,53.21758316319204],[6.278353246317923,53.21761316160238],[6.27817624050904,53.217610144247644],[6.278138095611243,53.21771266181138],[6.277068784976241,53.21757536451593],[6.277058049996495,53.21759564530876],[6.277043596127884,53.217628457447304],[6.27703962857249,53.217662314764134],[6.277038445006363,53.2177044314543],[6.277036767124898,53.2177342448552],[6.277029628716203,53.217763765064234],[6.277017115734306,53.217792635003235],[6.276985472110288,53.217837242359735],[6.276962947186743,53.21787102671503],[6.276905085125911,53.217951143534215],[6.276659710545861,53.21805023613815],[6.276541965628649,53.21830665344347],[6.276579788087768,53.2183134367179],[6.276361778679266,53.21894388527012],[6.273168254561716,53.218688329851965],[6.272868399072959,53.218568873148755],[6.272745475272414,53.218523133690134],[6.27262393255443,53.218487843649086],[6.272084019252879,53.218399378418674],[6.271861320424436,53.21837235515791],[6.271589921402936,53.218343130032366],[6.271423029487092,53.21838676472166],[6.271062548606117,53.21845409241056],[6.270976627220987,53.21846805155668],[6.270521980380496,53.21832685002905],[6.268902128889382,53.217914463212175],[6.267858189836949,53.217783798506694],[6.266959734795571,53.21767467742062],[6.267109520172866,53.21730910631085],[6.266024652184646,53.21748308187899],[6.2654731009503,53.21756325944307],[6.265420751513584,53.21757015747504],[6.264409764985203,53.21770341131167],[6.26437875197386,53.21770750142216],[6.264354116440951,53.21771074574998],[6.264154084534203,53.217737153663705],[6.264031573592088,53.217753334204104],[6.263890545015192,53.21780500956662],[6.263756531048961,53.21778467415515],[6.263627085765573,53.217770459733174],[6.263427382250014,53.21775694727631],[6.263286499912433,53.21774641191296],[6.263279846841908,53.21776976001044],[6.262569604047421,53.217707099926564],[6.2625026292027,53.217700394028356],[6.262241240186555,53.21862662919533],[6.261987322738736,53.21892548642356],[6.261789672480109,53.2190754524161],[6.261531359581779,53.219236018790845],[6.261101591555365,53.21944717528058],[6.260808556095258,53.21960970446433],[6.260590906624811,53.21977058014434],[6.260440847480327,53.219953853582254],[6.260386622107189,53.22010409963669],[6.260221166195068,53.22047684258407],[6.259991053541394,53.22162734063587],[6.259374158764714,53.2245915692182],[6.259297715025527,53.224694537763035],[6.259109015621241,53.224855401216715],[6.258965953452305,53.22496761489687],[6.258761287743204,53.22519414172426],[6.258090616803082,53.22633337442252],[6.257834700667427,53.22674580521599],[6.257767588565672,53.2272532761237],[6.257599854027101,53.228811313053505],[6.25754527242789,53.22934193928362],[6.257528277652309,53.22966874354557],[6.257469746072958,53.23023344665749],[6.257399753102849,53.23090094111051],[6.257358258422832,53.231383747816764],[6.257325375686575,53.23185922234649],[6.257274973021426,53.23266465855467],[6.257240281433969,53.23321575381429],[6.257212035273461,53.23357318602697],[6.257173688409908,53.234172257248886],[6.25713181823433,53.23447941280949],[6.257121018354098,53.234543605573315],[6.257033223010345,53.23484201661223],[6.256994922272304,53.23483946570173],[6.256980609611378,53.23491737819603],[6.25604163111433,53.23487256864675],[6.25547351198072,53.234844074117326],[6.255055404908958,53.234844649127076],[6.254853341329709,53.23516397993972],[6.254695293711107,53.23555629900881],[6.254643281187564,53.2357075615774],[6.254583047566403,53.23597482170709],[6.254582406679257,53.236141712441245],[6.254646483010835,53.23650743684862],[6.254731236307028,53.23675024335136],[6.254937503860195,53.237148654379105],[6.254999268220787,53.23735752251173],[6.254959546880619,53.23758309596022],[6.254819232772112,53.23797385696596],[6.254440137142443,53.23897817843132],[6.254137345800573,53.23973612854631],[6.25384601978534,53.24016257450037],[6.253315649665479,53.24082758783552],[6.252758021924022,53.24147872349321],[6.252573145545604,53.24175825151026],[6.25254135680485,53.241859078137466],[6.252484752957341,53.242007393946885],[6.252475392489121,53.24203440122992],[6.252331257644594,53.24201479077136],[6.252301484266092,53.242119125882475],[6.252282308582675,53.24218632514757],[6.252444061539334,53.24220521649183],[6.25300117040612,53.24226587057837],[6.253009293232852,53.242245836571584],[6.253286269979384,53.24227299807996],[6.25327205807291,53.24231342886654],[6.254453515272545,53.24244398324776],[6.254458845033763,53.24239906841645],[6.254612046051742,53.24241565504781],[6.254638514521398,53.2424387735711],[6.254963914123106,53.24247141315211],[6.25531900975647,53.24252145790468],[6.255462651936989,53.24254385428643],[6.255642323831714,53.24257771617537],[6.255763244108243,53.24260321527972],[6.255903621866033,53.24262564403894],[6.257713874309569,53.242828380713775],[6.258630337344057,53.24292623680306],[6.259341410005767,53.2430060435408],[6.25955671069552,53.243031823853975],[6.262433486384344,53.24334785483057],[6.264312386754473,53.243562680463825],[6.264762410437138,53.24360724086286],[6.264970580869638,53.243631885870315],[6.265799813240787,53.243729562894885],[6.266002043609626,53.243751525958444],[6.266187912494654,53.243769691817],[6.267150159100233,53.24387690740261],[6.267606874446331,53.24393117552221],[6.267714504076202,53.24394211363512],[6.267958739437268,53.24395008929562],[6.268141400199811,53.243970234610444],[6.268604368491938,53.244010794736475],[6.26893405241344,53.2440591626705],[6.269429992271094,53.2441209538228],[6.269638845473658,53.244148722426246],[6.270137938852118,53.24420560811592],[6.271002578227761,53.24431352008653],[6.27164521620327,53.244387907841336],[6.27301840987895,53.2445369864122],[6.273918604657343,53.244632887521185],[6.2747634094942,53.244725283161195],[6.274890560492196,53.24473606932436],[6.275569049779492,53.24481211257074],[6.275862603149088,53.24484314283314],[6.276456335490819,53.244911990728795],[6.276668326118633,53.244933864775746],[6.276811785758374,53.244946477414864],[6.277206561445983,53.244993360537755],[6.27739243996148,53.245011517416906],[6.277607723507702,53.2450353150348],[6.277741553493639,53.24505384903806],[6.278318784457971,53.245111092195714],[6.278458977907794,53.24512372831272],[6.278566696138306,53.245138555066674],[6.278661261874414,53.24514762026515],[6.278819056208493,53.245165983497095],[6.279212438824804,53.245218468634505],[6.279418343355427,53.24524651117295],[6.279594394179632,53.24526082910605],[6.281378813887765,53.24546243119975],[6.281554944980756,53.24548064586502],[6.282998655246255,53.24564090143608],[6.28540826546323,53.24591037491572],[6.286032125902794,53.24598139464369],[6.286439315254311,53.246027749577685],[6.286537929539225,53.24602892483621],[6.286827976165164,53.24605919981268],[6.288305617768399,53.24622753932198],[6.289735394327742,53.2463866685019],[6.290699605756579,53.24648820835616],[6.291408901085618,53.24656685091483],[6.291682984177219,53.2465934160055],[6.292373240323418,53.24667409985432],[6.292574061957664,53.246695490646566],[6.293025283970151,53.24675126014814],[6.293379180868006,53.24679248534498],[6.293643764197626,53.24682103169008],[6.294219263334679,53.24688921887965],[6.295658569504249,53.24704629140652],[6.296368003339416,53.24713062836184],[6.296677229748954,53.24716455308794],[6.297281418705198,53.24723441420664],[6.297574590831913,53.247260819972794],[6.297913896196386,53.247288789951796],[6.29824530225284,53.24731872364981],[6.298500271010176,53.24734350306425],[6.29935941840457,53.24743814289769],[6.299855078992286,53.247489729207736],[6.300406602389249,53.247550430733014],[6.300892682289375,53.24760017164157],[6.301863110262263,53.2476920409741],[6.302210268691981,53.24771420625851],[6.302480809125613,53.24772360129297],[6.303007428066375,53.24773485159194],[6.303319109912269,53.24773438747683],[6.303848537873482,53.247728441370064],[6.304220524899632,53.24772178048293],[6.305058215695206,53.247703930802324],[6.305674803192609,53.24768589773031],[6.306219977719588,53.24768488847507],[6.306609949775816,53.24768633310757],[6.30674093331808,53.24769268878896],[6.30694382527126,53.24770165767221],[6.307151171856787,53.24771081523397],[6.307726133800319,53.24775221948954],[6.308012909402096,53.24777674383066],[6.308497675217818,53.247831190412334],[6.308212958682793,53.24878676424797],[6.308195510421251,53.2488444301629],[6.304718290493071,53.24846587965542],[6.304719687676878,53.24846321782086],[6.304083717786724,53.248395255099],[6.303394252853659,53.24832312284623],[6.302565940823026,53.248233515777244],[6.302025713164137,53.24817620602247],[6.30135233607793,53.24810432617181],[6.301163415994445,53.24808450293659],[6.301057364199789,53.24807337693421],[6.300787979305795,53.24804510926412],[6.300050010717652,53.24796717098503],[6.299529502980422,53.24791256660791],[6.299009093630488,53.247856952500086],[6.298291714668498,53.24778033093469],[6.29717362366491,53.24766226151659],[6.296417202050811,53.24758253611768],[6.296230343369828,53.247562843790845],[6.295155392944689,53.24744832944936],[6.294073932385274,53.247332362724734],[6.292952312439898,53.24720857557032],[6.292872059888132,53.247199968943704],[6.292824761433481,53.247309344272786],[6.292704778858051,53.247586792693696],[6.292622790121098,53.24758203720022],[6.292193661934314,53.247557165535014],[6.290651753651215,53.24746778369889],[6.29034538405206,53.24816637613793],[6.290257695187712,53.24836630820855],[6.290182962679772,53.24853668740783],[6.289604420488755,53.24985578063757],[6.289635730078167,53.24986782817271],[6.289681831123639,53.24989437685545],[6.289704895956479,53.249909075498444],[6.289718483789223,53.24992553414707],[6.289815559344268,53.25009277016723],[6.289741247371769,53.25009712931966],[6.289692827127261,53.250103693924686],[6.289668263812325,53.25011410518134],[6.289647625884912,53.25013304872271],[6.289633723021791,53.250155385351924],[6.288994473490376,53.2516378904249],[6.28882926409354,53.25166053548225],[6.288585422678322,53.25170531958027],[6.288374924080465,53.251751047736406],[6.288158865891498,53.25180764559202],[6.287956702828974,53.251898958710875],[6.287945479251286,53.251910436788265],[6.287917837483044,53.25196651032655],[6.287888493265821,53.252035139808406],[6.287885830772502,53.252106472163135],[6.287893283572584,53.252154922623475],[6.287957077722262,53.25233426154463],[6.287998571406917,53.252448790756354],[6.288081038418853,53.25267635987519],[6.288154983679226,53.252880441643555],[6.286966515561673,53.252684717778585],[6.284688788188679,53.25230956597173],[6.28412165241108,53.2540213111201],[6.284103091860777,53.25405109493622],[6.284064761329965,53.25409353365549],[6.284016913924642,53.25413659218457],[6.283966808853434,53.25415685229455],[6.283733494217333,53.25422969198348],[6.282741530667871,53.25453934538706],[6.282478547845564,53.254579093096375],[6.282309845295776,53.254609527944666],[6.281391805907567,53.25477515000926],[6.281311568158094,53.25468110727319],[6.28100337999386,53.254757239877904],[6.280426775118361,53.2548996802544],[6.280339328055901,53.25492128266579],[6.280743351621661,53.25527116186199],[6.280843490719224,53.255343893199516],[6.281061296499296,53.255460909026],[6.281327578105044,53.25556246262974],[6.281905685866403,53.255813000513],[6.282260926793048,53.25597374399777],[6.283498521870091,53.25656793388024],[6.284097816247082,53.25683946135111],[6.284486212349899,53.2570622439761],[6.285252519736853,53.25756364480754],[6.285610111625815,53.257784650958726],[6.286071696162048,53.25807322652539],[6.286034964765386,53.258105220587055],[6.285767077064175,53.25833855907208],[6.285260025559491,53.25880708636897],[6.285114169720998,53.25894454680382],[6.28445696674031,53.25956389794537],[6.284429485427167,53.25958634342525],[6.284403005963015,53.259607963694776],[6.284384214683226,53.25964338308808],[6.284368402423373,53.25965764505704],[6.283496700437444,53.26044375473581],[6.282867629331329,53.26106768540896],[6.282903120127513,53.26107794255845],[6.282957465847318,53.26109264275902],[6.283012815136026,53.261115332595736],[6.283041473712349,53.261130664990496],[6.283047348883475,53.261157462047905],[6.28302864308513,53.261207149574226],[6.282796547130601,53.26170181091438],[6.282717309691212,53.261870681440904],[6.282394716177069,53.26255815320433],[6.282156491152918,53.26306582594876],[6.282031929689948,53.26331063234388],[6.281548269775469,53.264261177980735],[6.281550310920251,53.26426201614167],[6.281889396814326,53.26444490507353],[6.281940087271795,53.26448186376186],[6.282013823124112,53.264549005645364],[6.282137272127669,53.26465083004754],[6.282319833122242,53.26476792104826],[6.282762482368343,53.26505662612737],[6.28305013570057,53.2652442361463],[6.283125672783934,53.26529540346716],[6.28316299651227,53.26532669211956],[6.283234822381308,53.265395546438015],[6.283489780810303,53.265664217543915],[6.283563589309463,53.26574036958219],[6.283730304330036,53.26591238225082],[6.283897937335378,53.26607229223138],[6.284013198158158,53.26618567777943],[6.284134561876493,53.26630505765888],[6.28439620147712,53.266576561689476],[6.284688951304667,53.266802336786434],[6.284708500680828,53.26681191311193],[6.284752322894505,53.266836288388426],[6.284834823496715,53.26683792598517],[6.285049289394124,53.267462701870286],[6.285019785367008,53.26746448689983],[6.285158953125424,53.26787590686575],[6.285212776970003,53.268035018802856],[6.286730336404389,53.26784483142645],[6.289784565312368,53.267581268621804],[6.291849028557999,53.267388378819994],[6.294507461024136,53.26712422625469],[6.295118172425727,53.26704960169375],[6.296205611985418,53.26681095423358],[6.297918486127749,53.26638367581266],[6.299268718722561,53.266100063452996],[6.299926492846669,53.26599715528927],[6.300617255474729,53.26589295949875],[6.300782929030577,53.26588254255585],[6.30076765176812,53.26563062202791],[6.300963770669521,53.265520360512554],[6.302037919521518,53.26502658285314],[6.30326301788362,53.26445118884157],[6.304070900059674,53.26405829197225],[6.304336217821208,53.26396615028872],[6.304552174471774,53.26393991971032],[6.304826254832722,53.26400668465921],[6.305054945087934,53.26402596479608],[6.30515330031753,53.26401390627848],[6.305265624327617,53.26396589546132],[6.305550594403423,53.26384032206418],[6.305796452058524,53.263789225660176],[6.306216129710513,53.26378599827978],[6.306478068185744,53.26379907016189],[6.310137866289477,53.263635842701014],[6.31024078114012,53.26491029586152],[6.308436127421823,53.26511745625415],[6.308449254042137,53.265256476746444],[6.308469239400691,53.26546812180816],[6.308489835863322,53.26574001183965],[6.308495678360124,53.26579121430192],[6.308505748137187,53.26587954918344],[6.308515439228076,53.26594314064307],[6.308523114969196,53.26600013243705],[6.308528740049025,53.26604184743431],[6.308543062103819,53.26615035990446],[6.308551938372931,53.266213713496256],[6.308553408063158,53.266224216334386],[6.308563071760964,53.26630620187504],[6.308353363918097,53.26631350745418],[6.3083856116522,53.266315751284466],[6.308415166595132,53.266323803878954],[6.30843919307939,53.26633689505586],[6.308455382031799,53.266353765023396],[6.308462182637746,53.26637279684115],[6.308496667386241,53.266696385234034],[6.308195433473272,53.26670679222037],[6.307695241557336,53.266724060419385],[6.307574450157954,53.26672823107263],[6.306922073546782,53.26675075153044],[6.306834775501426,53.26675376512746],[6.306885597973806,53.26697595754003],[6.30703638099739,53.267635154481724],[6.307102207791044,53.26797929970283],[6.307178596392681,53.268344549424],[6.307319520566407,53.26866548453092],[6.307801911913925,53.2694524484236],[6.30785168858954,53.26974290402992],[6.307813590628443,53.26999043424676],[6.307716036637151,53.27022015722591],[6.307528836634533,53.27050071085232],[6.307044379529634,53.271272457518194],[6.306915059836512,53.27145658863782],[6.306711546567865,53.27165162715399],[6.306221708443613,53.272004038631195],[6.306065987888422,53.27212357829577],[6.305909056289,53.272284782312596],[6.305849723828811,53.272363956505814],[6.305793551609164,53.27245423611709],[6.305734638521061,53.27257421706632],[6.305667321122682,53.272792761708715],[6.305615227207342,53.27321212280425],[6.30556924064901,53.27336651419668],[6.305406592148403,53.273596543969894],[6.305199781987812,53.27381290535484],[6.304320220232837,53.27473233002527],[6.304166650610955,53.274920220611484],[6.303956900321467,53.27525944005347],[6.303825715347489,53.275527771636455],[6.303734604796012,53.27577620710731],[6.303657844875525,53.27616703586836],[6.303671590193493,53.276427081482254],[6.303861551065151,53.277436052762205],[6.304013449708566,53.27830819046106],[6.304097481212355,53.27899532802106],[6.304083261217413,53.2793216287999],[6.304039758941505,53.279742950383195],[6.303969539061857,53.28016612982323],[6.303986733792512,53.28040591226934],[6.304024050999721,53.2805212620688],[6.304139340701968,53.28076009798656],[6.304470188397872,53.281219747332464],[6.304618413039599,53.281471499427056],[6.304694966467186,53.281673051733044],[6.30469749891881,53.28183580263051],[6.304621468601898,53.28202772803871],[6.304577701007743,53.28214329762625],[6.303383507633209,53.28389101381166],[6.301919673123198,53.286061626556716],[6.300650963340759,53.287818645470274],[6.299610985766658,53.2893271613347],[6.299706630757758,53.289342438332014],[6.299977775419804,53.28938574882618],[6.300229449607545,53.28942371575356],[6.300633495636464,53.28948642893845],[6.301254528750047,53.28958188774946],[6.30130011752441,53.28959042846224],[6.301332511342757,53.28958347853546],[6.301402954816051,53.28957032607195],[6.301434670870017,53.28955828630565],[6.301456506866014,53.28954838815971],[6.30152272567052,53.2895616864339],[6.301653314292989,53.28958582644474],[6.301542990343372,53.28973594789002],[6.301942991244029,53.28988056731974],[6.301997394832424,53.28990023639962],[6.302553115980213,53.29009838208294],[6.302590709541922,53.29004662476188],[6.302616549415792,53.29007426598628],[6.302674804103368,53.29014186252855],[6.302881038812549,53.29034976855957],[6.303125998606042,53.29060088032032],[6.30339148973395,53.29086456612919],[6.303378419094195,53.29088823534955],[6.303344368686028,53.290955584468406],[6.303337935537217,53.290968311937824],[6.303290219097271,53.29104540584994],[6.303242005003346,53.29111253854131],[6.303190574790928,53.291190585368334],[6.303107049005621,53.291328570659125],[6.303047763020031,53.29142441684302],[6.302956444634241,53.29156483428098],[6.302863886593832,53.29170556569883],[6.302758344869385,53.29186408939165],[6.302568265458004,53.292149903128774],[6.302384453892673,53.29241875744649],[6.302348964940497,53.292471541871734],[6.302307212030759,53.29253365456255],[6.302156420086291,53.292768641868754],[6.302060167843353,53.29292340992643],[6.302017499797281,53.29291418260582],[6.302007644929384,53.29292897643188],[6.301955030186245,53.293007948528675],[6.301903765942673,53.2930848897101],[6.301818361580143,53.2932088880635],[6.301680935402311,53.293419402481724],[6.301593331545829,53.29355580046475],[6.301640517000117,53.293566565775855],[6.301488339564804,53.29379445428774],[6.301368375984764,53.29397288240879],[6.30136627060772,53.293976151000344],[6.301346117909032,53.2940075031208],[6.301280130572604,53.294106352925134],[6.301227693280727,53.294114922990204],[6.301017975585403,53.29414937887611],[6.301022392764614,53.294160343322616],[6.300816512131018,53.29419045797478],[6.30030004367089,53.29427443843906],[6.299732268668317,53.29436141255322],[6.299292964828149,53.294431397186074],[6.298906588967069,53.29449445337155],[6.298604121680337,53.29453961123151],[6.298311923093919,53.29458170656801],[6.298006417932299,53.29463289657579],[6.297635392365572,53.29470211365988],[6.297208624200413,53.29477942690202],[6.29681741492465,53.29485115788691],[6.296592234496737,53.294895886324454],[6.296514690386708,53.29491347411591],[6.296462269042691,53.29493035983129],[6.296405405637273,53.29494925631545],[6.296352817525764,53.2949617932116],[6.296259171284752,53.294980420738085],[6.296140941548852,53.294997425928265],[6.296128429004709,53.294998625846226],[6.296027874618303,53.295008291172635],[6.295920257122718,53.295027849915],[6.295791064837766,53.29504282690791],[6.29576128371025,53.29504728474078],[6.295732830715049,53.29505154412623],[6.295667375396806,53.295054203769325],[6.295641378708705,53.29505469687324],[6.295576495746223,53.29504888000858],[6.295518480218676,53.29504656838523],[6.295482760956477,53.295044717470695],[6.295215377738835,53.2950733009594],[6.295159882116697,53.29507952550156],[6.294990412910592,53.29509852583932],[6.294828289336047,53.29511516198032],[6.294617687798248,53.295130887477065],[6.29432688947959,53.29515359807209],[6.293988394222752,53.29518047735682],[6.293641958319108,53.2952085579794],[6.29340363316228,53.295227599298975],[6.293210004692154,53.295242385575875],[6.292969361276556,53.29526027505322],[6.292733163875857,53.29527920134951],[6.29255945849927,53.2952900614732],[6.292456284134421,53.29529780351792],[6.292237443699064,53.29525398433568],[6.291998940923579,53.295207409529084],[6.291663365046621,53.29514978527353],[6.291601386899034,53.295140215286054],[6.291335656718294,53.2950988947421],[6.291154556847113,53.29507248174167],[6.29094071394309,53.29504453647286],[6.290815102747476,53.29502865086063],[6.290782326091351,53.29502404474145],[6.290767478805336,53.295024867182626],[6.290714304819727,53.29502958835474],[6.29067197977338,53.295038075041035],[6.290553548537678,53.2950692213982],[6.29034101978009,53.29512554247025],[6.290173991981806,53.29517166437555],[6.290040533634073,53.29521645487908],[6.289904959997032,53.295261350696165],[6.289805521111997,53.295296315744636],[6.289679433486499,53.29535018064777],[6.289503944484692,53.2954249666809],[6.289302040680278,53.29550890934227],[6.289114914402469,53.295585875561095],[6.288987794924837,53.29564132898068],[6.288934778747378,53.295667318471864],[6.288927698294508,53.29567079579799],[6.288839053179095,53.295706442517734],[6.288674069886998,53.29577449927453],[6.288653844088707,53.295782719690365],[6.288600381621038,53.29580445310855],[6.28844222078222,53.29586674308705],[6.288349601556176,53.29590453121022],[6.288341956665585,53.295907652709396],[6.288123487636422,53.29599506151173],[6.287937422807028,53.29607350026316],[6.287693508770731,53.296176419524684],[6.287416402643463,53.29629730517734],[6.287231728326329,53.2963736222331],[6.287083578958239,53.29643782964629],[6.286911186298142,53.29651254369741],[6.286551189539397,53.296664915731206],[6.286369911520376,53.29674385592544],[6.286118710276991,53.29685793230729],[6.285943434042734,53.296937060274196],[6.285721455796057,53.29704080847979],[6.28550382616783,53.29713944677816],[6.285241362554316,53.297258241864576],[6.285046922085776,53.29734637173055],[6.284961656395443,53.29738465096512],[6.284869149622829,53.29742307380934],[6.284740238862983,53.29747811248998],[6.284590596552201,53.29754301143179],[6.284435058948889,53.297602850573966],[6.284354973522925,53.297633568380306],[6.284230589686233,53.29768127744096],[6.284059240352595,53.29774968107954],[6.283909862482311,53.29780789116091],[6.283844438321077,53.29783611017253],[6.283638986536099,53.29789407341792],[6.283508097881914,53.29793332908143],[6.283505238508305,53.297934312197455],[6.283421125486311,53.2979632454821],[6.283334467281402,53.29798954539038],[6.28323081873994,53.29801679115224],[6.283020009616367,53.29808040969534],[6.283045914226921,53.29810285205278],[6.283092880357281,53.29815000074624],[6.282933864181884,53.29821515618191],[6.282735055028194,53.29828174051266],[6.282660258522466,53.2983079161735],[6.282654411610944,53.29831028767107],[6.28248774747026,53.298377772010845],[6.282487330033598,53.298377918893976],[6.282439198469961,53.29839382324398],[6.282428682707149,53.29839729822483],[6.282367344625911,53.2984129765589],[6.282244715012707,53.29846151571526],[6.281955799403937,53.29856125237091],[6.281867902111983,53.29858788512501],[6.281769272371864,53.29861997091734],[6.281647139639441,53.29865207883714],[6.281629085169934,53.298651530015086],[6.281615235513136,53.29864767997032],[6.281591627574898,53.29862744928287],[6.281524384296634,53.29857744070988],[6.281450155940018,53.29860293714879],[6.281384421382829,53.298620662015345],[6.281271643231518,53.29874504686035],[6.281157048623163,53.29886594034384],[6.280973866695793,53.29894934305614],[6.280847948557681,53.29900446365241],[6.280675906191449,53.29907392816244],[6.280405296528616,53.299181621091144],[6.280400912035519,53.2991834960676],[6.280228206126448,53.29925725047436],[6.280072149758002,53.29931942403827],[6.279959723270633,53.29936482893401],[6.279850471670683,53.29940852948839],[6.279737362307857,53.299454999873404],[6.279555772682709,53.29952651773129],[6.279322835473217,53.29962034337186],[6.279141259444749,53.299691860491116],[6.278954573139632,53.29976648061424],[6.278676872793786,53.29987251639895],[6.27834450571922,53.30000436788682],[6.278122170579453,53.30009760902409],[6.277867302746068,53.30020468579228],[6.277602174491467,53.30031182007339],[6.277470468669366,53.30037110531239],[6.27733646021983,53.30042923812541],[6.277107345467614,53.300531306677186],[6.276953019837435,53.30061900984901],[6.276931653002795,53.30063076511263],[6.276992148986184,53.300695763536346],[6.277003191018455,53.30070674325499],[6.277047342101641,53.30075506527548],[6.277112912981671,53.30083169557448],[6.277143751142233,53.300862809555525],[6.277155287382193,53.30087960897501],[6.277161361504274,53.300896960446295],[6.277166120640394,53.30092259696293],[6.27719264027636,53.300961893312],[6.277194205835833,53.300964245271196],[6.277222070155718,53.301006164188834],[6.277284187533172,53.30110221097779],[6.277295539926038,53.301119496985784],[6.277303685515381,53.30113189991351],[6.277368231775506,53.301224216936916],[6.277456217247942,53.30134959953837],[6.27754164319835,53.30146948467196],[6.277615916133056,53.30157511858261],[6.277618891929087,53.30158200688692],[6.277635086680776,53.301619437829245],[6.277682705844351,53.30171576346087],[6.277739058291164,53.30183612359551],[6.277744963024197,53.30183513573338],[6.27785936486134,53.30181960562659],[6.278096995675581,53.301784488767055],[6.27820482809206,53.30177200679506],[6.278239218710249,53.301768032263034],[6.278308208321389,53.30181183009306],[6.278400546071193,53.301892879256066],[6.278564842381504,53.30205020584599],[6.278628050891579,53.302108818090616],[6.278662981799364,53.30214119526666],[6.278691869517368,53.30216861189714],[6.278812041383056,53.302282702189075],[6.279096470881522,53.30254903285265],[6.279323449960617,53.30276392292614],[6.279431160555523,53.30280259737525],[6.279638242871666,53.302878616014695],[6.279647977159654,53.30288211047463],[6.279794830966993,53.30293485372397],[6.280181279623879,53.303076105789714],[6.280601819773107,53.30322778573167],[6.280616042898381,53.3033126227769],[6.280661896046897,53.30331600165223],[6.280689060444493,53.303318792520194],[6.280789903083136,53.30335022008366],[6.281250157191264,53.303481772019346],[6.281798983200305,53.30363587246853],[6.282025782501889,53.30365030479356],[6.282384594592036,53.303669261271864],[6.283176253670856,53.303780247815396],[6.284154492137252,53.30391401667952],[6.284650711678912,53.30398384245852],[6.284682503787859,53.303963844994115],[6.284690913422864,53.30395856144756],[6.284716218981801,53.30394197339819],[6.284721237550121,53.30393869234509],[6.284757337288091,53.30393977865262],[6.290156156958319,53.30377144521682],[6.290250444908737,53.30377327962277],[6.290258766124444,53.30377159095584],[6.29026974102007,53.30377054669929],[6.290331645495833,53.303773181237474],[6.290421658356554,53.30378137363058],[6.29050473975609,53.303795270119984],[6.290612917466886,53.30381768478802],[6.290748277428321,53.30385158667106],[6.290840874048499,53.30387578007206],[6.290904669618158,53.303851183358034],[6.290934716625352,53.303843328152254],[6.290913216714379,53.30388043039891],[6.291072129000286,53.30393647486173],[6.291056150888006,53.30414535271314],[6.291058055955137,53.30417110930534],[6.291061129996777,53.304196740882134],[6.291063332658783,53.30422240567406],[6.291064437150931,53.3042478990106],[6.291064772064379,53.30427320044857],[6.291064174655406,53.304349224048934],[6.291064468081759,53.30437466957057],[6.291065498094511,53.30440016346606],[6.291067267810171,53.304425140200834],[6.291069853268684,53.30445119748554],[6.291073012289695,53.304476683758445],[6.291076650992373,53.30450141280345],[6.291081024887689,53.304527482998736],[6.291085556373335,53.304551935161044],[6.29109083501266,53.30457832322403],[6.291096008367899,53.30460252764469],[6.291102007718034,53.30462894593204],[6.291107713508536,53.304652786618995],[6.291114421474687,53.304679397262],[6.29112074334506,53.304703333352236],[6.291127997403652,53.30472951665598],[6.291134842351386,53.30475328646422],[6.291142729872299,53.3047796549069],[6.291150226180585,53.30480372443188],[6.291158356640342,53.3048287521556],[6.291166817006205,53.304853749846394],[6.291176049962357,53.304879891903944],[6.291184862400997,53.30490381704383],[6.291194047638799,53.30492758780624],[6.291204475079017,53.30495345969431],[6.291215003746523,53.30497838790608],[6.291225793986949,53.30500286515657],[6.291236733127214,53.30502666765787],[6.291248954336599,53.30505218428113],[6.291260667971176,53.3050756484703],[6.291273692133934,53.3051008002206],[6.291286460832294,53.30512457037818],[6.291300242144357,53.30514929469023],[6.291313877298871,53.30517291455309],[6.291328057141471,53.305196683074165],[6.291342841920009,53.30522063604867],[6.291358057744362,53.305244468351695],[6.29137386368965,53.30526849390845],[6.29139000855695,53.305292274296725],[6.29140652528566,53.30531585508709],[6.291422781320148,53.3053384488082],[6.291440398587293,53.30536233432282],[6.291457373578091,53.3053849687619],[6.291492778690576,53.30543147329687],[6.291526290583656,53.30546216781007],[6.291532729835665,53.3054680586518],[6.291609537683082,53.305560213805116],[6.291645243517257,53.30560256520385],[6.291663761805102,53.30562424238777],[6.291682039383582,53.30564526691054],[6.291700262071403,53.305665842267274],[6.291718429878615,53.30568592320552],[6.291738403516346,53.30570758133563],[6.291757429402772,53.30572782625097],[6.291778060040996,53.305749408135576],[6.291798115932097,53.30577005024365],[6.291817703932908,53.305789913515085],[6.291838098626013,53.30581032871801],[6.291858229619281,53.30583023401898],[6.291879608845843,53.305851071924906],[6.291900140497394,53.30587076692742],[6.291921687657981,53.305891003311594],[6.291943253508257,53.30591077108671],[6.29196542361958,53.3059305702603],[6.291987959323883,53.305950061753684],[6.292011153818184,53.3059694665208],[6.292034898231576,53.3059886257127],[6.2920589042418,53.30600733335371],[6.29208389086698,53.30602630256784],[6.292107743177979,53.306044094501836],[6.292133388128123,53.30606304947476],[6.292228862575569,53.30612818749283],[6.292615004063799,53.306390107427596],[6.292855618142782,53.30655558211805],[6.293017716052259,53.30666706980621],[6.293410633266438,53.30693529773541],[6.293799861101737,53.30720558330658],[6.294192100423083,53.307477561171495],[6.294586217164298,53.30775144653683],[6.29497659094871,53.30802346229468],[6.295153251063407,53.308144810409416],[6.295574895545308,53.30843443429118],[6.295792778579754,53.30853407502616],[6.29582898423855,53.30856556597999],[6.295890095183042,53.30860781327057],[6.295959748700259,53.30864884604707],[6.296379172728113,53.308800634972776],[6.300736664256689,53.311295037574425],[6.300658198276859,53.311348339753245],[6.300534066878361,53.31143266096601],[6.300384987485859,53.31151567039503],[6.300321600449966,53.31154932898538],[6.300253923350347,53.311585259398036],[6.300306954428867,53.311621911691155],[6.300349002229725,53.31165485421838],[6.30042113091955,53.3116165596195],[6.300485843378067,53.31158219629609],[6.300608945735508,53.31151365089194],[6.301766011427099,53.311675641106326],[6.302407348846533,53.31176392317254],[6.302763305908342,53.31181291567282],[6.303516811397852,53.31191866761842],[6.303588526003977,53.31192831155685],[6.304807483911248,53.312205143779295],[6.305504177311527,53.31236276122141],[6.305711163060057,53.312409432724394],[6.305781145911337,53.312426510537634],[6.305785712025562,53.31243098679942],[6.305995018820635,53.312635789644695],[6.306555422845057,53.31317815300536],[6.306773199855897,53.31339139082723],[6.306932408702361,53.313548079153136],[6.307024256712245,53.31363972296601],[6.307041817175774,53.31365611339259],[6.307042665489233,53.31365653821669],[6.307075590263953,53.313672937138975],[6.307174007421509,53.31372228786154],[6.307426812325429,53.3138484628087],[6.307572470244946,53.313919080518154],[6.307663141895035,53.313963360470524],[6.307774102952244,53.31401887861008],[6.307760094430034,53.31403041520869],[6.308022415303883,53.31415593164739],[6.308309833700767,53.31429434742982],[6.30836964645601,53.314324062908284],[6.308387536913411,53.31433062916416],[6.308394172091174,53.31435181167739],[6.308482121641609,53.314517113941605],[6.308610150185603,53.31475680725899],[6.308659011393167,53.31484829384975],[6.308812945138014,53.31513800047407],[6.308916818429807,53.31532999441223],[6.30896688725903,53.315418856451004],[6.308985604301566,53.31545209561118],[6.309142395348445,53.31574121376835],[6.309190252243093,53.31582640041453],[6.309279269089071,53.31599569192948],[6.30951795532688,53.31643589686505],[6.309713655517077,53.31679544375666],[6.309770699044792,53.31690508927076],[6.309874568609093,53.3170965072512],[6.309986235751629,53.3172952680418],[6.310062104381397,53.31743329117537],[6.310109156759141,53.317524764354175],[6.310322163015099,53.31792752398757],[6.310541819896958,53.3183302312278],[6.31067796763751,53.31859270216951],[6.310834415799795,53.31886755178574],[6.31103026494549,53.31923165907491],[6.31115602218357,53.31945998134926],[6.311231858739357,53.319596853456424],[6.311274882046143,53.31967866148222],[6.311304958543148,53.319738320006536],[6.31131328269875,53.31975072853099],[6.31136565481083,53.31976460421858],[6.31145387317734,53.31978607576247],[6.311456775084794,53.319787760444555],[6.311550836190861,53.31981431815118],[6.31172283068925,53.31987042355903],[6.31177936356712,53.31989013416807],[6.311957430392579,53.31995223095879],[6.312029611844631,53.31998011579313],[6.312100024160335,53.320013737827765],[6.312153098300801,53.32004008839325],[6.312191611067826,53.32005572405248],[6.312244483371723,53.32007408809105],[6.312300447311898,53.32010154914937],[6.312388224697935,53.320143573828176],[6.312456845525436,53.32018177450506],[6.31255433896543,53.32023112882725],[6.31261094804808,53.32024603198025],[6.312663798055871,53.32026324552497],[6.312715548013266,53.32027477115026],[6.312775870420924,53.32028564606402],[6.312839003858233,53.32029478452074],[6.312909950237503,53.32031127482426],[6.312958834958593,53.32032282211618],[6.313030703517704,53.3203381559589],[6.313060435294919,53.32034531322903],[6.31307570492441,53.3203477652353],[6.313090084351364,53.320336746056796],[6.313434217614428,53.32072195485932],[6.313415273158218,53.32072802305983],[6.313384556456048,53.32094878784381],[6.313381245954781,53.32116405839387],[6.31340425055326,53.3214977464793],[6.313405517801822,53.32171105876392],[6.313297513186298,53.322215353896404],[6.31322834351697,53.322609219424145],[6.313148669526495,53.32302135351711],[6.313075346943647,53.323425271117294],[6.313000723859266,53.32384777156688],[6.312998100984164,53.32386258200752],[6.312992467768065,53.32391191249981],[6.312920120874215,53.32421053550718],[6.312887068540911,53.32437448303644],[6.31287049354107,53.32445666877948],[6.312806646581128,53.324710271123195],[6.3127621738787,53.32513631305159],[6.312782306552407,53.325141494661125],[6.312747272618767,53.32535930050564],[6.312718757433496,53.32550534033619],[6.31264223869585,53.32576574371932],[6.312610773885849,53.32576266992391],[6.312589180152196,53.325825718358566],[6.312561059297453,53.3259315714713],[6.312518074367322,53.32602308933539],[6.312385108046078,53.32621523044494],[6.312250093988466,53.3263762701362],[6.312910662125593,53.326617681340906],[6.31291484380198,53.32666700748857],[6.31276953359781,53.32683086708724],[6.312639784895762,53.326981362017115],[6.312295510800022,53.32733111259509],[6.311633436786883,53.32781105750752],[6.311091598251148,53.328162521575656],[6.310739651780631,53.328375240435115],[6.310197899966477,53.328671166974665],[6.30973258842842,53.328891600605836],[6.309611560922638,53.328948932429036],[6.309036548804928,53.329214792472925],[6.308431999327448,53.329492323872024],[6.307243714646212,53.33003627133793],[6.30664546709694,53.33030705005193],[6.30629535127824,53.33045755198679],[6.306032528516827,53.33056706649885],[6.304799541490916,53.33107005147439],[6.304176131787163,53.33132370322985],[6.303542186046511,53.33157071128339],[6.30283386581385,53.33184146525944],[6.302826301199633,53.331844353373],[6.30219349104602,53.33208401231239],[6.301544583231231,53.33232018762343],[6.300891171765258,53.33254955607594],[6.30024408052107,53.33277228580817],[6.299603499054863,53.332993623729756],[6.299203178820773,53.33313256071208],[6.298880747077,53.333068466570964],[6.298720984647098,53.33303812083628],[6.298549766195168,53.333028887967465],[6.298364278929737,53.333075994916186],[6.297961623289189,53.33325026821661],[6.297450334084445,53.33347808209001],[6.297427163902962,53.333488402965514],[6.297221366198602,53.333580544853675],[6.297154205775394,53.333525813047096],[6.296568688581178,53.33378694376071],[6.296540120459788,53.33379968531575],[6.295481904783933,53.33426485955942],[6.295380551802161,53.33431279144419],[6.294930824288077,53.33452545537952],[6.294271774525968,53.33482535797204],[6.29393972713776,53.334928807405284],[6.29382491601431,53.3348496560056],[6.293811436957893,53.3348567931503],[6.293790057780415,53.33486809721682],[6.293749540223708,53.33488951881921],[6.293754461329713,53.334892905555265],[6.293720668041968,53.3349099989583],[6.293538472040611,53.33500219097979],[6.293583212929313,53.33503378940947],[6.293588268418648,53.33503150487343],[6.29360163170732,53.335044425285204],[6.29360745179324,53.3350592149796],[6.293602141037714,53.33508087698332],[6.293588669271951,53.335101230789654],[6.29356527502952,53.33513083319401],[6.293539022111355,53.33515956216963],[6.293522377471442,53.33517469374625],[6.293521534992726,53.33517748595702],[6.29345359775574,53.33522355492161],[6.293446608471305,53.335244713188985],[6.293448852261536,53.33526623766327],[6.293460182237087,53.33528671150982],[6.293346698637495,53.335429064215816],[6.293178684149299,53.3355490945514],[6.29260413744528,53.335169728910074],[6.292779023718641,53.33502952445134],[6.292996618432466,53.33496514686147],[6.292931869967843,53.33492006855894],[6.291932752540834,53.33422454198567],[6.291879881255815,53.33425099925219],[6.291796059153348,53.334269726868655],[6.29173181573219,53.33426789133202],[6.291673583079872,53.33425636081854],[6.291616268509807,53.334222753908826],[6.29155856391534,53.334184127211486],[6.291526859834688,53.33415485700246],[6.291522264637267,53.33412689185716],[6.291545464836193,53.334087172223725],[6.291562825572165,53.33405963558475],[6.291603436535149,53.334026989691466],[6.290881322982452,53.3335276397647],[6.287813946998877,53.3314063572704],[6.286441188437241,53.330456916965126],[6.28643658789362,53.33045373419439],[6.28627951986637,53.33034510471506],[6.286005562343782,53.330155631932946],[6.285968355293723,53.3301298875415],[6.284454745741027,53.32908293083012],[6.284182067071223,53.32889431715797],[6.283665969251559,53.328558785343375],[6.282795344452349,53.3279513180902],[6.282195250221048,53.32753361300649],[6.281840589477599,53.32728753700223],[6.281771647992175,53.32723969802762],[6.281033057674433,53.32672945864392],[6.2803926289686,53.32628303864811],[6.279896584292731,53.325935957374355],[6.279291329331424,53.32551273135744],[6.278727633812897,53.32512236958202],[6.278113455462053,53.324696894189266],[6.278028803593853,53.32463787388791],[6.277600830069566,53.32433947597381],[6.277053241918108,53.323960156254955],[6.276434006229994,53.32353308332221],[6.276036482619435,53.323259784976905],[6.275535880305699,53.322905153760566],[6.272937282493268,53.321092738346],[6.272586320265416,53.32084843309106],[6.271748089929026,53.32026493530864],[6.271643006102764,53.32019217825109],[6.270580502439332,53.31945655027449],[6.270197622211791,53.31918974747253],[6.269922328518586,53.31899326627299],[6.269330745580127,53.31858330507157],[6.268501345366379,53.318007439769204],[6.267917147711282,53.317599888242924],[6.267106692785202,53.31703143117066],[6.266419638040871,53.31655522059179],[6.265675060296412,53.316036555092765],[6.265257414809921,53.315746141980476],[6.264937323483917,53.31552356851988],[6.264236862977242,53.31503572538661],[6.264180790591757,53.314998188180965],[6.264295326678765,53.31494454328857],[6.263766968219453,53.314573873353545],[6.263682021267597,53.314604541138564],[6.263361821352384,53.314381782761856],[6.263143399619717,53.314223879311704],[6.262860658759094,53.314032880959054],[6.262550017420028,53.313817051844794],[6.262317644148004,53.31365078336954],[6.262161985835101,53.31352873088841],[6.261954840896016,53.31333971518775],[6.261630624741697,53.31327892777457],[6.261425877389893,53.31324259405135],[6.261111431467716,53.31319635873586],[6.260849229704373,53.313151094273316],[6.260579830441743,53.31310898790195],[6.260319296696387,53.313055375012176],[6.26008956765007,53.3130106250804],[6.259441277279206,53.3128563324141],[6.25861481468504,53.31261880295645],[6.258126814482194,53.31248327657808],[6.257680564591553,53.31235920064738],[6.257487502648463,53.312306073847],[6.25740641289949,53.31228266858252],[6.257323331560442,53.312258685218985],[6.257119478250118,53.31220246370739],[6.256864452351205,53.3121367551364],[6.256607835998997,53.312070311421664],[6.256542910642214,53.31205969211999],[6.256482498320181,53.312055636564125],[6.25643173048906,53.31205517678264],[6.256358775591526,53.31205636129319],[6.25569589091534,53.31207946654401],[6.254997368330223,53.312107686457296],[6.254865277836386,53.31211156955049],[6.254661875890952,53.31212825133493],[6.254500649565034,53.31214122132007],[6.254450452000573,53.31214370450278],[6.254433573859425,53.31214453617293],[6.254386857757505,53.31214779334146],[6.254311430151104,53.31214843673454],[6.254261637661827,53.31214721450413],[6.254226908847172,53.31214595606399],[6.254177769798573,53.31213845585086],[6.254132440167647,53.31213453291906],[6.254102996973776,53.312132813077625],[6.252782444436487,53.31214918807319],[6.251137588537429,53.31216815951214],[6.24849666391339,53.31219813997292],[6.248256896869355,53.3121265979305],[6.24822973250359,53.31212252434506],[6.247995923825872,53.312076450117026],[6.247490611471953,53.312033746239],[6.247441568371941,53.31203251582048],[6.247174536000193,53.31203273765934],[6.246005778554155,53.31210788683672],[6.24521745939828,53.31215156318733],[6.2437011071664,53.31223607093368],[6.242401805831143,53.31224849624087],[6.240102037348096,53.31227046540123],[6.239584961933041,53.312272424597765],[6.238285489928471,53.312281634360005],[6.237665538958102,53.312302673099545],[6.23525663666277,53.31231969614049],[6.234378085336321,53.312330126354844],[6.23364628287686,53.31230736374284],[6.233168612969726,53.312282468653216],[6.232332367080398,53.31220767491672],[6.230906599090044,53.31206511746489],[6.230803525500698,53.31206584105242],[6.230689476364553,53.312068442615484],[6.229894810707576,53.312114831434684],[6.229124520223694,53.312167674768475],[6.228905413547293,53.3121850186883],[6.228254313999772,53.3122519357156],[6.228063292059469,53.312267597709635],[6.227692986323962,53.31227925018014],[6.226761151542084,53.31226852726288],[6.22557573867058,53.31233794792302],[6.224576732198597,53.31240197507404],[6.223667255855539,53.31245672057551],[6.222941144500618,53.312504799944136],[6.222445016711791,53.31254001108053],[6.222292801944338,53.31255782329293],[6.221842697561851,53.31261758567933],[6.220866785560612,53.31274260683197],[6.220380509807661,53.31279987130464],[6.220119686246322,53.31281928162745],[6.21986129196822,53.31282703330056],[6.219640562824071,53.312822458458996],[6.219081817233297,53.312786683519775],[6.218517122478898,53.31273864155242],[6.218258372346417,53.31272167204455],[6.218154856890124,53.31272109269976],[6.218061783828522,53.31272433097111],[6.217955088828434,53.31273323924404],[6.217842225611562,53.31274668738625],[6.217715672837244,53.31277338445455],[6.217592893052664,53.312801931231085],[6.217513301742639,53.31283008514975],[6.217357737710592,53.31288903717803],[6.216332298094962,53.3133333450233],[6.215668968555451,53.31360894241822],[6.215612620907193,53.3136337994169],[6.215567248232936,53.31366260543265],[6.21549360080807,53.31371527875038],[6.215366589219241,53.3138115842781],[6.214688978074008,53.31433897331561],[6.213936500144851,53.31482651876595],[6.21392994318352,53.314829627983144],[6.213923399723736,53.31483273710717],[6.213804192125258,53.31488925950226],[6.213550247739157,53.31500489854931],[6.213227141917137,53.31513845478057],[6.212796161233133,53.31529923946298],[6.212454690350393,53.315415766118726],[6.212092822994276,53.315539251300784],[6.211254162885567,53.31579504796573],[6.211111503227968,53.315838673184665],[6.210886493216986,53.315908941118],[6.209047512082945,53.316488520064695],[6.208202717246635,53.31667432661044],[6.206140118224324,53.31702618345283],[6.205359905108367,53.317099644385124],[6.204982152022609,53.31696139040908],[6.204477175699802,53.31678237861187],[6.203983592478134,53.316605124849964],[6.203179430847232,53.316329622158605],[6.2024387867018,53.31604826463126],[6.201817423044867,53.31577646265921],[6.200011062580772,53.31496473201452],[6.19805637764244,53.31407380068045],[6.197695221554877,53.31390556188995],[6.197332172010617,53.313677306419244],[6.196795420302601,53.31328931915249],[6.196177880404876,53.31286439416467],[6.195809951894921,53.31263458906606],[6.195678221328444,53.31251493009102],[6.195537433863229,53.31230719489105],[6.195414250721736,53.312156382371235],[6.195015566716184,53.31180277662717],[6.194698166831215,53.311515637816505],[6.194521659805966,53.31135200159586],[6.194152604943966,53.31108925935338],[6.189887961037425,53.309075937581326],[6.187309262616771,53.307827770812445],[6.187273460634422,53.30780955263964],[6.187215250583722,53.30779258887598],[6.187171157982541,53.30778113785911],[6.187108111172133,53.30775414230283],[6.187039180575631,53.30771151488441],[6.186976826944713,53.30767165586883],[6.186921033776466,53.307632868577805],[6.186884026254461,53.30760067572559],[6.186846265438277,53.307577986913216],[6.186807661304289,53.30755922115211],[6.186757750801616,53.307536613156856],[6.186686045327729,53.3074957016961],[6.186604597816431,53.30743247260952],[6.186533642297271,53.30738090895004],[6.186475169101523,53.30734886894614],[6.186430908583203,53.307328460368275],[6.186387859453473,53.30732313962838],[6.186320663305769,53.30732469054028],[6.186268259560631,53.307318893725245],[6.186245788969663,53.30731177315217],[6.18612581908006,53.30727377104159],[6.186037885537271,53.30729291132015],[6.185941944054867,53.307313793177194],[6.185852338791609,53.307333294871555],[6.185737405546599,53.30735831127974],[6.185467936694275,53.30741982965028],[6.184968166554927,53.30753790383143],[6.184334345032253,53.307685107750856],[6.183665203667868,53.30784759308188],[6.183164787927429,53.307963787172405],[6.183063407191644,53.30798685929885],[6.182825211963414,53.30804108415922],[6.182414935845197,53.308127771119246],[6.182310812035958,53.30815093293094],[6.18215511114506,53.308185577786624],[6.182046116749603,53.30821880017975],[6.182032812781167,53.30822306680286],[6.181888861021574,53.30826922598945],[6.181650183236548,53.3083300456708],[6.181500283346804,53.308361309842425],[6.181470066490477,53.308367610233546],[6.181123853535528,53.30842862888943],[6.180904292048995,53.308463676626616],[6.180422998697419,53.30856321638909],[6.180184423011015,53.30859879326907],[6.179915723900115,53.30862877144211],[6.179604073042133,53.30866369640097],[6.179460153182968,53.308674286933645],[6.17936131501046,53.30868156124003],[6.17906354840282,53.30868592292847],[6.178625989316483,53.308664103607185],[6.178097462958069,53.30862721944662],[6.177546149003976,53.3085993528709],[6.177394846611028,53.30859357210209],[6.177245587233153,53.30857636624343],[6.176554967081483,53.30853079204281],[6.175456540632397,53.308453500941766],[6.17493372547021,53.308433243983195],[6.174839917987703,53.30841947255027],[6.174050944533993,53.3082422772628],[6.173999512136655,53.30823875978586],[6.174001603937928,53.308258046952304],[6.173950690945362,53.3082508766862],[6.173216142659511,53.308228663741204],[6.172937239434559,53.30821992118554],[6.172740538465358,53.30820736869423],[6.172612513679185,53.30819282209996],[6.172482928000601,53.308179004421476],[6.1724103848883,53.30817290155974],[6.171981107081371,53.30812839638638],[6.17191975061533,53.30812203058392],[6.171610812006119,53.308096650678905],[6.171481415154807,53.30807844510299],[6.171058470408323,53.30801502545609],[6.170610633132132,53.307947121328546],[6.170392834627415,53.307912723954345],[6.170267339964418,53.30789454674251],[6.17011852501471,53.30788416783425],[6.169904620766488,53.307881552781446],[6.169591493861485,53.307876664569015],[6.169574887576144,53.307949475525646],[6.169482923995193,53.30794616488909],[6.169378945410395,53.30793796482034],[6.169288820253723,53.30792939504677],[6.169204584013142,53.307919500732154],[6.169097019209424,53.30791222202542],[6.168975293066877,53.30791397546501],[6.168794959213671,53.30792936351767],[6.168241957813598,53.30798630712786],[6.167992366056514,53.308012091502725],[6.167690208608865,53.30804299714403],[6.167403543548866,53.30807030602431],[6.167307107568659,53.308076853347075],[6.167125531800431,53.30808917445459],[6.166752993563271,53.308112410884505],[6.166431285347826,53.30813235250364],[6.165849901644537,53.30817150713359],[6.165757550831909,53.30817672322046],[6.165508191246411,53.30819052335973],[6.164900564390559,53.308199605484354],[6.164644283497919,53.3081965825899],[6.164455491966681,53.30818652657385],[6.164292339567147,53.30816809220225],[6.163785983018873,53.30811159314135],[6.163004288024552,53.308013280532435],[6.162947591759379,53.30800646732384],[6.162882192499495,53.30799708676636],[6.162768701957532,53.30798389994121],[6.162741680498208,53.3079703712409],[6.162731578086387,53.307950002806386],[6.16271856381102,53.30789958781692],[6.162696372976935,53.307880267841675],[6.162653729731469,53.307874855419286],[6.162547451095341,53.30786469524022],[6.162451209887626,53.3078529429504],[6.161599044855366,53.307799114441686],[6.160864730430806,53.30775225843244],[6.160794278633795,53.30775039340666],[6.160765887949497,53.30775847424918],[6.160751154152121,53.30777176030442],[6.160750754911162,53.30779713890937],[6.160774355121989,53.308024637137706],[6.160835119868646,53.30883577440854],[6.160877890301152,53.309490219963],[6.160914613189718,53.31017379886207],[6.160950633224418,53.310721950462565],[6.160978088380187,53.31116404587025],[6.160999046251904,53.31145066885555],[6.161008526374722,53.31162102016423],[6.161013339477028,53.31165344554028],[6.161021307681872,53.31167519305767],[6.161030636998549,53.31169848721238],[6.161044621552376,53.31173368400963],[6.161051821008366,53.3117743958336],[6.161062305784006,53.31180859049782],[6.161071182866364,53.31184669557031],[6.161073886723607,53.31188200064133],[6.161076309059263,53.31196931571405],[6.161078458025412,53.312047198530934],[6.161082423501966,53.31217447259658],[6.161082955189333,53.3121814956324],[6.161085858765502,53.31222042930768],[6.161087918398867,53.31226327805199],[6.161095674293167,53.31235595043623],[6.161109960523977,53.31266784846857],[6.161127716034285,53.313090139115715],[6.161149455459535,53.31340507952912],[6.16115866190668,53.313577678586704],[6.161169287263978,53.31377667752026],[6.161187332577914,53.31405216813163],[6.161198539978114,53.314206639252724],[6.161206721450718,53.31437647789458],[6.161222018085878,53.314615882543706],[6.161223844901111,53.314665749626116],[6.161224698065387,53.31471250497035],[6.161224760871959,53.3147618718252],[6.161221400170642,53.31479698229145],[6.161215375689071,53.314830034236245],[6.161208492032531,53.314863621864866],[6.161201980678209,53.31489460186906],[6.161189184293447,53.31494981011958],[6.161174377840595,53.314979316285],[6.161162002523423,53.31500204840675],[6.161135419221401,53.31504491923098],[6.161036852225606,53.315167748981345],[6.160945428117326,53.31528142124627],[6.160815023924446,53.31542950854017],[6.160708275939922,53.3155539814069],[6.160692304654392,53.315572845560865],[6.160680631699998,53.3155895886894],[6.160425557928607,53.31587281299819],[6.160079788880385,53.316271481538635],[6.159982546237307,53.31641407075928],[6.159944809889459,53.31646940385911],[6.159800778579552,53.31668055769365],[6.159798278014275,53.31668423031714],[6.160075660451298,53.31673325149338],[6.160206506583421,53.31676000478842],[6.160124074808545,53.31690771019057],[6.160017569957472,53.3170985505677],[6.161068346126606,53.317392185297194],[6.161950777796019,53.3176342393331],[6.16175434743113,53.31793531340183],[6.161228839191217,53.3187407520166],[6.161671679010594,53.31889797927473],[6.163225826720339,53.31915703725869],[6.163291718530909,53.31916788004242],[6.163332566450908,53.31917460677472],[6.164027043487808,53.319288928098295],[6.164685540128514,53.31941921196667],[6.165170987827723,53.319546856500146],[6.165694359397004,53.31970536938811],[6.166121306580202,53.31983488060096],[6.166586392464439,53.31997718110844],[6.166796312619192,53.32004822538766],[6.167476078236154,53.32033672732085],[6.167529535425114,53.32036430722808],[6.167797808975441,53.320502740613065],[6.168155563395477,53.3207069596907],[6.168514019800929,53.320906805842775],[6.168598430921055,53.32095386311832],[6.168945677365383,53.321145137306466],[6.169092545107445,53.32119453700214],[6.169276739286931,53.32124655076677],[6.169472110169158,53.32129920227879],[6.169568921544494,53.32132494519251],[6.169591842777349,53.32133104128163],[6.169995467051888,53.32142841373206],[6.170509544526272,53.3215571439571],[6.170934978780189,53.32170146556565],[6.171515620042991,53.32195231118067],[6.171904609417808,53.32215441965059],[6.172474174250385,53.32245064824725],[6.172596242402816,53.3225749212647],[6.172685639923936,53.322675281621194],[6.172862374678505,53.322877317916],[6.173191762709571,53.32326168841366],[6.173492291098986,53.32365567355775],[6.173681294992933,53.323930115469146],[6.173865721966729,53.32436231060592],[6.17392684953678,53.3246433663569],[6.173897750537582,53.32520071788318],[6.173850902097737,53.32536479531868],[6.173752172116836,53.325710560336866],[6.173561187835126,53.326159534641945],[6.173380862248781,53.32663838870206],[6.173215922078989,53.32706416217633],[6.173041131111598,53.32751434169728],[6.172864278562573,53.32797202863414],[6.172711764497364,53.3283800719681],[6.172440252056779,53.3289544433768],[6.172268133107214,53.329167509850556],[6.172511948565487,53.32916250248419],[6.172334540002899,53.329409956655596],[6.172268879297091,53.32949682646013],[6.172167244109787,53.32962751149119],[6.172072933702234,53.329740267303784],[6.171956358611777,53.32986997111707],[6.171930524260728,53.329898714195785],[6.171701201581755,53.33013105013589],[6.171361558558411,53.3304627677935],[6.1709592140048,53.33083829237481],[6.170811675180812,53.33097098328661],[6.170728903679239,53.331041699529834],[6.17063165930527,53.33112545044289],[6.170487540346794,53.3312482333326],[6.170317581680171,53.331394636999065],[6.170124963138641,53.33155781250046],[6.16990191336454,53.33174823147896],[6.169580025166323,53.332017557022276],[6.169375440812253,53.33219177122296],[6.168958220416346,53.3325434839096],[6.168806024037926,53.332668385071855],[6.16854036419182,53.33288531597514],[6.168351994014243,53.333035251201004],[6.168218286076883,53.33313684810005],[6.16809711328646,53.333226053199304],[6.1679407646822,53.33333741168921],[6.167773414126262,53.333454681128856],[6.167766741944629,53.3334592801306],[6.167537829299599,53.33361714223663],[6.167385287310525,53.33371499692598],[6.167066229620962,53.333918523044694],[6.166847452821488,53.33405607267308],[6.166628152900127,53.33419802940985],[6.166599023762553,53.33421758213848],[6.166472722498684,53.33430246108682],[6.166341561197085,53.334395952306465],[6.166336743649092,53.334399307591774],[6.166060482467469,53.334591681049645],[6.165797172704446,53.33477399720837],[6.16522927404442,53.33514742906177],[6.164892962617944,53.335369302141075],[6.164715298798379,53.335489869273],[6.164630835930401,53.335534444398455],[6.164527017217234,53.33557123732719],[6.16443096901263,53.33559782624675],[6.164175909219149,53.335655635505645],[6.163677932871713,53.33577045331862],[6.163444502206856,53.335820842123056],[6.163220110481669,53.33586452281971],[6.162974857879416,53.33590860727294],[6.162835505940327,53.33593134098295],[6.162715100584046,53.33594757316864],[6.162596025384039,53.33596253778788],[6.162480961475828,53.33597523092373],[6.162220972151364,53.33600134790857],[6.16204176492716,53.3360116685828],[6.16143783906661,53.33607064016346],[6.161272567989776,53.33596442622405],[6.161140885333034,53.33596787112018],[6.160771111666071,53.3359864599904],[6.160581756014895,53.33599847946123],[6.159986658128545,53.33603743035386],[6.159153350850403,53.33609760467182],[6.158709992524426,53.336120660018324],[6.15700775213653,53.33617158397818],[6.155207130052952,53.33625005968585],[6.153554755113742,53.3387226326585],[6.153501497356791,53.33897457509346],[6.153455882093517,53.33919033914946],[6.153425428686603,53.339360449009334],[6.153386780494631,53.33954238302404],[6.153338818565179,53.33972419693956],[6.153280696125119,53.33990868077274],[6.153194804650775,53.34009352059955],[6.153084667930697,53.340274382638476],[6.15300919370552,53.340378106190016],[6.15294058885771,53.34045447144028],[6.152886131055362,53.34049902764913],[6.152880802110245,53.34050335606494],[6.15278504532755,53.3405810799133],[6.152649216539288,53.34065957966478],[6.152491321827052,53.34072141588053],[6.15223113639077,53.34078916951214],[6.152136231853714,53.34080080785947],[6.151988435584088,53.340806645466],[6.151675645495727,53.3407985433303],[6.151388107530457,53.34079619385176],[6.151107082967498,53.340811529536694],[6.150936940070753,53.340827211599574],[6.150701359220267,53.34087292495648],[6.150145241811891,53.340997804869446],[6.149588200682893,53.34113341645446],[6.149039284289525,53.34126782410687],[6.148736514597255,53.34135180720195],[6.148670202914508,53.34120777567397],[6.148348510236745,53.341292255331346],[6.14810760106494,53.34137410172384],[6.148033224974362,53.34139969500212],[6.147646933549141,53.341547794333906],[6.147418899737064,53.341639541406096],[6.147041078195191,53.34175208253253],[6.146234068607987,53.3419928159581],[6.145276645654544,53.34228516194546],[6.145150791716747,53.3423310353949],[6.144869747601476,53.34245679810179],[6.144825087792396,53.34253662825572],[6.144774225405741,53.34283568974143],[6.144771274536068,53.34287102139235],[6.144758645766519,53.34294356012054],[6.144713944548328,53.34327628765957],[6.144685316346655,53.34352320081969],[6.144599271413338,53.34426520897903],[6.14456237662479,53.344614222773146],[6.144509542040828,53.34506605049783],[6.144432902096451,53.34578234527144],[6.144364446436661,53.346459428863064],[6.144291383247994,53.347176932270195],[6.145138269459958,53.34683258328978],[6.145029722510502,53.34708009847947],[6.144963851405686,53.34730470207443],[6.144939082299959,53.34756103527069],[6.144958077923852,53.34777695385359],[6.145007082840555,53.34798642910152],[6.145015765650384,53.348013869700836],[6.145062736876297,53.34816237347191],[6.14511312587671,53.34834634897215],[6.145141928905712,53.348532436717086],[6.145192281262304,53.349072507178725],[6.145255625770495,53.34960836199138],[6.145306513225554,53.349965483673216],[6.145359920897213,53.35032070185807],[6.145431179834069,53.35067464020874],[6.145509939994706,53.351028262214676],[6.145517470507793,53.35105593524927],[6.145519766630037,53.35106440306892],[6.14557962552316,53.35128435838748],[6.145584673306376,53.35141749114887],[6.145543193470887,53.351535013309565],[6.145517874113872,53.35157332534075],[6.145497701888483,53.35160386001518],[6.145460951123817,53.35165737567113],[6.145406339189949,53.35170291699385],[6.145395816701188,53.35171089056301],[6.145353878276903,53.35174269432528],[6.145214968252426,53.35182812250562],[6.145013088579246,53.35192805515116],[6.144602803587201,53.35209848933503],[6.143658758373371,53.35251515745117],[6.14364698511477,53.352520352926206],[6.14362582791467,53.35252983090697],[6.143636922428994,53.352554382234295],[6.143948454528221,53.353027933216445],[6.144053558708051,53.35319328777702],[6.144160361573087,53.35336130921991],[6.14462634255951,53.35399122179925],[6.144959748556705,53.354434890923166],[6.144983925726217,53.354451811280846],[6.145160188052541,53.3545340857059],[6.145193230913175,53.35469615541424],[6.145232437020894,53.354798971094255],[6.145251003131193,53.35482985395306],[6.145485219568682,53.35508149787651],[6.145786829665889,53.35537324164269],[6.146237487408049,53.355847077492605],[6.146670612227568,53.356322639123874],[6.146902750358206,53.35659163651515],[6.146941168458127,53.35663846780582],[6.147169063418846,53.35691630621871],[6.147224384166107,53.35698541371562],[6.147637645851793,53.357501712215424],[6.147796438102945,53.35768230498231],[6.147927355528508,53.357781215959484],[6.148112894849928,53.357915632034114],[6.148313195463593,53.35806073845815],[6.149063967841708,53.358591787681384],[6.149088619698162,53.35860987291273],[6.14914589733444,53.35865185795329],[6.149154374330333,53.3586580668218],[6.149269614102119,53.35862715479726],[6.149377921799945,53.35873392595748],[6.149451130465876,53.35880610020333],[6.149467898080609,53.3588183315782],[6.149478322339059,53.358825930111266],[6.149478966782289,53.35885298994302],[6.149449438978789,53.358869189187075],[6.149245253416201,53.358884275492606],[6.149922871592504,53.35937111635904],[6.149978905909374,53.3593529257464],[6.150019933665242,53.35943647265402],[6.150748312213014,53.35996423886527],[6.151428565404723,53.36046220604274],[6.152219126124373,53.36103853984476],[6.152395972267167,53.36112332426937],[6.152433344274989,53.36114113798651],[6.153037850133101,53.3614320135061],[6.153046831565922,53.36144121164774],[6.153075793205709,53.361470859555155],[6.152938365663219,53.361589803219466],[6.153104231585595,53.36174365704895],[6.153261254964895,53.361890206967956],[6.153338697361383,53.361962486638326],[6.153650990365541,53.36225791598006],[6.154087358039408,53.36267951709879],[6.154369734459073,53.36296462200788],[6.154602932255728,53.36320421478597],[6.154690613799009,53.363302765220205],[6.154687597603671,53.36330215517873],[6.154797257508374,53.36342868946265],[6.155338408493113,53.3640386714982],[6.155708149328838,53.36445395360507],[6.156139051462986,53.364945669192664],[6.156422752805007,53.36526122079501],[6.156675669369797,53.36549322484887],[6.156843182036198,53.36563681978952],[6.156876934144721,53.36566769318441],[6.156926518010535,53.3657438417861],[6.156948658927774,53.365814326639715],[6.156951016582319,53.36585366692643],[6.156947078720946,53.36590904249998],[6.156947052504831,53.36590931282426],[6.156853648238216,53.3663480404358],[6.156662019009678,53.367031801612065],[6.156631726084195,53.36716929300506],[6.156603447412532,53.36733534431684],[6.156553383123004,53.367694544096835],[6.156540356066531,53.36793220195646],[6.156528653131009,53.36831963954001],[6.156531420736982,53.36845754837339],[6.156546612217573,53.36865189556408],[6.156613990578347,53.3689835664979],[6.156649737948303,53.36909233183222],[6.15669239498587,53.369200963097974],[6.156753079475558,53.36933481645617],[6.156830296892009,53.369494173994504],[6.156909587062044,53.369643363779254],[6.156976520340677,53.3697568702325],[6.15716312211195,53.37004267176725],[6.157317542510486,53.370276292732896],[6.157403493903102,53.37039884262863],[6.157431477187385,53.37043873880023],[6.157265202569943,53.37047466742036],[6.157459128358948,53.37074551322407],[6.157630242734789,53.37096715739251],[6.157861170393122,53.3712527625339],[6.158014330061222,53.37143229829992],[6.158122677997348,53.37155084100629],[6.15819230115412,53.371621380024514],[6.158271809763125,53.37168996810483],[6.158383348627997,53.371777040798],[6.158502502280969,53.37186136952714],[6.158630638995689,53.37194393270725],[6.158762615456862,53.372022696343215],[6.158926261010302,53.37211635340717],[6.159097839432567,53.37220834225691],[6.159274209288694,53.37229940067815],[6.159452022919717,53.37238703480332],[6.159996528519444,53.37264690203899],[6.160536790397577,53.37291263313627],[6.160775170058643,53.37303438120162],[6.160948611554084,53.37312922958876],[6.16111504249501,53.37322690949656],[6.161336300119294,53.373365478010356],[6.161394300982808,53.373407426442654],[6.161474497748723,53.37347223438889],[6.161552069060575,53.37354128262972],[6.161643011657741,53.37363034455669],[6.161714318674883,53.37359432085293],[6.161721412637506,53.37360111399172],[6.16175312936673,53.37363194516832],[6.161784278956197,53.37366298665296],[6.161833420796037,53.37372106744115],[6.161867335608301,53.37375452614082],[6.161915059168608,53.3737973039565],[6.161926007980171,53.373807117726194],[6.162007879518418,53.373980520815806],[6.162097011587083,53.37425759618608],[6.162189164753811,53.37453555143897],[6.162281604898141,53.374860227785135],[6.162291823409578,53.37489609557026],[6.162423872037939,53.375303191768054],[6.162554872499777,53.37573544444494],[6.16267718374088,53.37610216083684],[6.162750651325417,53.37634339482607],[6.162847115036618,53.37669320381111],[6.162891439666474,53.37687469310744],[6.162911605617732,53.37695722895769],[6.162918568013208,53.37698090557686],[6.162928152025221,53.377024944522425],[6.162955815408095,53.3771381798311],[6.163009900555193,53.37738762634313],[6.163038050819102,53.37753210976899],[6.163065830598433,53.37765593000628],[6.163081329340001,53.377765451560705],[6.163096087807606,53.37791720965414],[6.163100137302707,53.37794763541635],[6.163072917100575,53.37795064166516],[6.163091741253069,53.37805448994326],[6.163120692972182,53.37820251738116],[6.163129659220639,53.37825557266033],[6.163130003394736,53.37826304630754],[6.163150063271281,53.37840211900825],[6.163149054562032,53.378435335613446],[6.163152808138482,53.37851430249607],[6.163148632896208,53.37859098461131],[6.163136937189906,53.37864745220716],[6.16308741913271,53.37879956159147],[6.16304295473394,53.37885715700669],[6.162965216331627,53.37894441277357],[6.162919015343887,53.37900236108737],[6.16285653695568,53.37907506144781],[6.162776525103159,53.3791538393195],[6.16277214085324,53.37915815392088],[6.16272501578213,53.37920232508809],[6.162589961607009,53.379312034978255],[6.162529087843816,53.37935134310714],[6.162511635592073,53.3793626151509],[6.1624341157297,53.37940968696945],[6.162354307879514,53.37944563007465],[6.162152122821881,53.37953187194983],[6.162024277150876,53.379588099701735],[6.161898135530482,53.37964634615612],[6.161773920750286,53.379692279330285],[6.161544926305198,53.37979438997852],[6.161345434607244,53.37988768435934],[6.161116358470885,53.37999884390719],[6.16103804937474,53.38003471417631],[6.161129004949003,53.38009619974477],[6.160842566609925,53.380249958250644],[6.160360383408342,53.380520194281495],[6.159950457375269,53.380739106862706],[6.159705899357656,53.38086135134208],[6.159397012339826,53.381004890280856],[6.159379902780803,53.38101284375575],[6.159262539286207,53.38106738415672],[6.159090532476565,53.381134458041444],[6.15892956780671,53.38119548614994],[6.158882275055586,53.38113683625171],[6.158748358697285,53.38117519147694],[6.158161110936028,53.38133409844845],[6.158148047730105,53.3813179721824],[6.157756157750278,53.38146517488542],[6.157508430600296,53.381557854870756],[6.157193069846364,53.381668740324365],[6.157092292021278,53.38154440759051],[6.157085157989276,53.38153627562688],[6.156967116794139,53.381576728996734],[6.156733024962115,53.38164133990377],[6.156436056026806,53.38172021713501],[6.155924277620072,53.381857252794354],[6.155579452818707,53.38194851930647],[6.155222824441675,53.38204472066531],[6.155064303290154,53.38209916860606],[6.154921201368684,53.38215531473222],[6.154788533920653,53.38221683956417],[6.154726504733284,53.382253447319954],[6.154681420370185,53.382300619810394],[6.154653752314082,53.38232916319083],[6.154630856154245,53.382362393757035],[6.154615211126799,53.382396862980976],[6.154602910453996,53.382433583583776],[6.154600671035122,53.38246979133691],[6.15460545205724,53.382505198649746],[6.154795583457758,53.3826531529603],[6.155078533910637,53.382951765187244],[6.155673176105956,53.38358505920285],[6.15595595750585,53.383886222560456],[6.15618196469635,53.38412690829968],[6.157179652783696,53.3851954945547],[6.157233344067579,53.38517411616379],[6.157277929534143,53.38522917183648],[6.157312470536306,53.385268837207406],[6.157330397027532,53.385289631768],[6.157337869560907,53.385297409620996],[6.157382685542211,53.385282180064635],[6.157425091510735,53.38529104766026],[6.157574969146578,53.385450781963286],[6.157496126714115,53.385478512452295],[6.157757468660593,53.38580303566092],[6.157149449629454,53.38658189074328],[6.15691491883972,53.38669399233228],[6.15634874977569,53.38746377800363],[6.155647680213423,53.388380884238664],[6.155273788334131,53.38886996430817],[6.153835101596926,53.39075005579269],[6.153776725777851,53.39082797051051],[6.153578123025652,53.39109304590366],[6.153511102605318,53.39117845661182],[6.153289089898003,53.39140450496139],[6.153082745047475,53.391510371828964],[6.152902014491859,53.39159258761885],[6.15274848839208,53.39165275100232],[6.151262876262964,53.39216746643937],[6.151277499012865,53.39211905091264],[6.149711630002258,53.392663530521375],[6.149501505078675,53.392736591879746],[6.149142411299981,53.39286145329489],[6.149084758982356,53.39288149683852],[6.14898573820667,53.39291592603134],[6.148707303192579,53.39301274496763],[6.148468369012495,53.39309581677813],[6.147975898673749,53.39326438686834],[6.147451322092822,53.393443473530944],[6.14649138963907,53.39376618747257],[6.145989057167375,53.39401308353235],[6.145338715490225,53.39433272957553],[6.14476225616001,53.394616047027576],[6.141538522036913,53.39620514676186],[6.141207063529794,53.3963673600218],[6.14081847974646,53.396533238189036],[6.140003510221114,53.396882198067125],[6.138860113485814,53.397380231938385],[6.13864572973534,53.397473607192865],[6.137359559543012,53.39803379788848],[6.135233195070215,53.398950255763815],[6.132623580005288,53.40008840892265],[6.130195308758319,53.401136824346565],[6.131029976293595,53.401197621290386],[6.131085752419243,53.40120183241769],[6.131541662426644,53.40123287066581],[6.132045021059379,53.40129848436545],[6.132718972204566,53.40137660871731],[6.133218064060393,53.40144222658475],[6.133954392098966,53.40156669898431],[6.134426221108891,53.401645625920295],[6.134896333516546,53.40171485005077],[6.135246130271213,53.40176026272788],[6.135287976199621,53.401787254805576],[6.135275250063473,53.401815360003425],[6.135791535772428,53.40193198650432],[6.135992538550768,53.40198280576285],[6.136225072389679,53.402041596411806],[6.136606515629767,53.40212728764017],[6.137038392789278,53.40225271911756],[6.137782632515901,53.4024654792888],[6.138491964272195,53.402692578603215],[6.138839359445082,53.40279873719556],[6.138955516796154,53.402836190052504],[6.139003236838952,53.40285157166025],[6.139144922541196,53.40288811010779],[6.139323286769342,53.40293020573541],[6.139459645354984,53.40289170567679],[6.139624159013695,53.40285112338156],[6.139676407802401,53.40293884414976],[6.139725220405491,53.403017385719515],[6.139756312666041,53.40302076687128],[6.139831861994136,53.403029980938676],[6.139952157736579,53.40304102636784],[6.140164348198643,53.40296441922428],[6.140292386553547,53.40301139428738],[6.140416191595291,53.40305970546072],[6.140543378031851,53.403101877833784],[6.14083272718922,53.403189739292635],[6.14265338369791,53.40372852346062],[6.145707551177864,53.40463286200794],[6.148126730274267,53.405352842724525],[6.150583548475901,53.40607935676599],[6.151574401555994,53.40637751801788],[6.151950525817326,53.40649069863597],[6.151950479271432,53.40649143513464],[6.153765196291806,53.40702629780771],[6.154067191010459,53.407114514870635],[6.156591198024134,53.40785173698875],[6.156647080018068,53.40785705909754],[6.156695976482181,53.40784920754738],[6.156797064578331,53.40779182798429],[6.156859624414603,53.40782480005373],[6.156888211738876,53.40784258789301],[6.156980542287837,53.407792307457484],[6.157239520978205,53.40796236068865],[6.157299439422435,53.40799989569253],[6.1573650767764,53.40803766304188],[6.157597645686129,53.408168798637625],[6.157664462242485,53.40820521047927],[6.157767655750328,53.40825765343346],[6.157875915961826,53.40830754708179],[6.158272016443394,53.40848453730795],[6.158454151511463,53.40856181226156],[6.158710664923373,53.40866934002252],[6.158900283405912,53.40874458927292],[6.15895073727376,53.40876565115202],[6.159174630733819,53.40884858698918],[6.159562802629305,53.408985459477876],[6.159876462921624,53.40909297807574],[6.160112764801543,53.40917169928773],[6.160823438916813,53.40940551467925],[6.161063307569925,53.409481695814094],[6.161263351272471,53.40954240797583],[6.16544905174351,53.41078127052876],[6.169190920756224,53.411888586271495],[6.173372768653089,53.41312589747854],[6.17450319497136,53.41345941228798],[6.174866789338753,53.41356333039301],[6.175315044438554,53.413691132941295],[6.175520287657706,53.41374621627502],[6.175770342608399,53.41380918325425],[6.175980301308295,53.4138590237313],[6.176190495113115,53.41390517831426],[6.176444597938286,53.41395913265483],[6.176658330761978,53.414001400146965],[6.176874435322075,53.414041764175835],[6.177345886001196,53.41412187381451],[6.177529381327976,53.414147265822244],[6.177794815883005,53.414179307711294],[6.178058946100357,53.4142059669976],[6.178284306550738,53.414226140893184],[6.178506897740744,53.414243008605546],[6.178731241985248,53.414256898021996],[6.179001691306074,53.414267339522574],[6.179270719809566,53.414274016227765],[6.179539232820859,53.41427728100783],[6.179810234319516,53.41427684513007],[6.180082217636335,53.41427253758143],[6.180350639301183,53.41426259303203],[6.180618960939808,53.414247346611695],[6.180888137042955,53.41422948911485],[6.181155883147247,53.41420750539325],[6.181423548147228,53.41418112031261],[6.181689662209044,53.41415231942743],[6.181954627231222,53.414118223300164],[6.18221710104123,53.41407955962735],[6.182476205791229,53.414037683819245],[6.182737748327287,53.4139894126607],[6.182990074819094,53.4139389543188],[6.183244106334882,53.41388309268862],[6.183493704083922,53.413823306591695],[6.183757844718413,53.41375395382496],[6.183986585892105,53.41368796196042],[6.184229504457949,53.41361689703201],[6.184261352668858,53.41360685592476],[6.184469032171052,53.41354136140242],[6.184704572829587,53.41346180919687],[6.184937336008002,53.41337859005664],[6.185277822542434,53.4132491010389],[6.185562700310292,53.41313777109504],[6.186248711890605,53.41285916733056],[6.189045728607952,53.41171883948572],[6.189285225736763,53.411594414109835],[6.18932827917955,53.41161290658743],[6.189683486786938,53.411443681471496],[6.189685146850277,53.41144394086351],[6.189723960163222,53.411436673244495],[6.191178864804193,53.41083524269202],[6.191559881078097,53.411164284844624],[6.19366262884169,53.412980035276924],[6.194020171863543,53.41328876571324],[6.197071802667351,53.41393495981617],[6.203095228776723,53.41141543398512],[6.208063787275922,53.41229943739989],[6.214372849918347,53.41339797355092],[6.228573387269646,53.41623833561022],[6.229505064786339,53.416424776208174],[6.232032059583257,53.41692460508091],[6.233262509970303,53.41717209969708],[6.234538054155846,53.417432928754586],[6.23840970661884,53.418205025754766],[6.239688390894497,53.41844925328143],[6.241059147545926,53.41871941010159],[6.241750938623215,53.41883881880174],[6.242350668396145,53.41893677317561],[6.242879998758771,53.41900618125617],[6.243647710807159,53.419110507739035],[6.244417458402327,53.4191940349905],[6.244869042255224,53.41923903730985],[6.245577733333532,53.419302828639715],[6.246669295672729,53.419381101252306],[6.247719700774579,53.41943723187506],[6.248297789936692,53.419457990189535],[6.249510893347497,53.419506815809314],[6.250571223013069,53.41949588761235],[6.251812407187876,53.41947042164219],[6.252576748128893,53.41944779382196],[6.253685918973483,53.41937388388969],[6.254556438103898,53.41930837139102],[6.254918200142588,53.41926328414207],[6.256035191269891,53.41916605817501],[6.256746707478225,53.41904913482581],[6.257627316494419,53.41891851704287],[6.258710790227754,53.41872825157955],[6.259595430580934,53.41855894788608],[6.261030749458548,53.41824431950533],[6.262740657740444,53.41780385825889],[6.263450222777061,53.417598811931796],[6.264360053399447,53.41731724981901],[6.265175874790714,53.417038915215876],[6.266447111253625,53.416597853903994],[6.268969458009645,53.415730358248474],[6.271526314587976,53.41485602934483],[6.272841096448164,53.41440419188992],[6.274124613473202,53.41395398271454],[6.275321750086249,53.41353891562722],[6.276590126387876,53.41312152386016],[6.283023672544167,53.41092509926401],[6.28433521502889,53.410475051432236],[6.286834308125185,53.40959930596185],[6.288107686631279,53.40917672811243],[6.289441307211614,53.40871362764242],[6.290693465273938,53.40828130907584],[6.291985686196671,53.407843264205866],[6.294930640145676,53.40683025814301],[6.295293441014826,53.40670545442998],[6.296029353715992,53.4064522881327],[6.297158394260403,53.40602694360996],[6.297446376425805,53.40591844232502],[6.298151369744395,53.40560018037844],[6.298606968285873,53.40540116482013],[6.299591902068263,53.40493200686773],[6.30037159503069,53.40452970287927],[6.301105458285668,53.40413424358295],[6.301833022089459,53.40370340410255],[6.302626534506063,53.403194909756444],[6.303402688358441,53.40266226992672],[6.303870625975738,53.402316075434626],[6.30440158817906,53.401906930165815],[6.304956242049323,53.401444018007886],[6.305967765405211,53.40051571079781],[6.306906731802187,53.39963843824341],[6.30781733786356,53.39875934978661],[6.308666446991868,53.397925018884656],[6.309045982110522,53.3975592320573],[6.310391092680956,53.39793124050932],[6.311535039388778,53.39824629488305],[6.312363467072788,53.398470694763056],[6.312927054952515,53.39862493646546],[6.314123402777992,53.39895773918863],[6.320157156196316,53.40063997257386],[6.334029019755938,53.404279127549486],[6.348140159407641,53.4079185651666],[6.361686260649019,53.41137015832869],[6.375679172012912,53.414965230105125],[6.389673525439584,53.41839559630221],[6.393666269965512,53.419292914338705],[6.405799978492523,53.42049599207997],[6.415103638217277,53.421350015795056],[6.415241080146828,53.42136345763397],[6.416246091750207,53.42145676413928],[6.416750984043365,53.42150201906179],[6.41706618071742,53.4215245964601],[6.418207541565885,53.421600864650514],[6.418928240257909,53.421626753903965],[6.419321274599747,53.421636408965036],[6.419628102513684,53.42164471075525],[6.420090496331151,53.421640744854024],[6.420767068237959,53.42162416777197],[6.421439200393658,53.42159268711967],[6.421945647790947,53.4215610935131],[6.422369018774446,53.42154323215937],[6.430785465716325,53.4211327712417],[6.430980228737942,53.421124561495795],[6.431126924798359,53.42132112398469],[6.431371237091946,53.42164687965462],[6.43192263100536,53.42218354199064],[6.432505816854267,53.42265057358755],[6.433029411238438,53.422986030809156],[6.433507678122854,53.423269606963714],[6.434219951460002,53.42360460327088],[6.434897744470299,53.42388917213344],[6.435513164793966,53.42408969844431],[6.435880329737034,53.424204422472506],[6.436673273935569,53.42441057758133],[6.437505816469415,53.42457290896494],[6.438230392317896,53.42467734253709],[6.438687887571107,53.424726233399014],[6.439795851441788,53.42481939023013],[6.440024225798521,53.42483909942806],[6.447141125394195,53.42541843522072],[6.461921775060843,53.426601277921684],[6.476683869399747,53.427841196487094],[6.491994214146846,53.42838023664315],[6.506465884107095,53.42965963998003],[6.520926505221085,53.431028817800645],[6.521959309032247,53.431053828286466],[6.523493826153712,53.431009762292014],[6.525294469101629,53.43067748410909],[6.526394450138342,53.43032930379979],[6.526941600264546,53.430119864714754],[6.527925008584897,53.42970839613607],[6.528831766447052,53.429342936930674],[6.529084147308356,53.42924466212925],[6.529804395170681,53.42896810773225],[6.530352080545094,53.42874978066286],[6.530435058992583,53.428720247951375],[6.533935628090076,53.42926105506114],[6.534397676594906,53.429337252093255],[6.54871276364281,53.431537272462165],[6.563462872324666,53.433801532160494],[6.564947443138875,53.43400090582663],[6.579301776442606,53.43701341690813],[6.579880217591053,53.43714294122271],[6.591200482865506,53.439517776302985],[6.599172173977411,53.44114616573933],[6.600035587458354,53.441324704567215],[6.601085916948817,53.44155789755573],[6.607271238268784,53.445092319606424],[6.608787529334247,53.44593381578082],[6.608843074043166,53.44596075841658],[6.608944600960044,53.446017409967915],[6.609596899115831,53.44636816522484],[6.61056263362364,53.44673125473973],[6.611155350009438,53.44692558918846],[6.611638656326845,53.44705239803211],[6.611889702595529,53.44711956441267],[6.611928825141681,53.447133506087404],[6.612480447911269,53.44729124947576],[6.613310758084039,53.44750202125646],[6.616246946340784,53.44827615603803],[6.629899373568416,53.45159877283948],[6.644326328321197,53.45506419186641],[6.65867206076223,53.45823281594025],[6.659609862467707,53.45842007761077],[6.660023632235759,53.458540928223066],[6.660547488791734,53.45865577776795],[6.660939574469633,53.45873439570044],[6.660985529067669,53.45874422431726],[6.66123303381832,53.45881001478808],[6.661717955571614,53.458911805810594],[6.661813564616787,53.45893057682292],[6.662155236168157,53.45903348022175],[6.662263792664343,53.45906757870815],[6.66279514392737,53.459232898072656],[6.663094260400447,53.459347837482184],[6.664306657595255,53.459744424276984],[6.666456280001703,53.4604333925923],[6.667278547573248,53.46068469474176],[6.6689026867853,53.46116669692129],[6.669073049229001,53.46120358563098],[6.669601974660877,53.46136944799602],[6.67242917066658,53.46199922938557],[6.672845524672388,53.46209683081341],[6.675637921763016,53.46269512064056],[6.677193651503506,53.4630317243039],[6.67874415138021,53.46334222918155],[6.67934514973549,53.463445561425935],[6.680605588432502,53.46367018783491],[6.681420434092382,53.463807575001084],[6.68523028315952,53.464468261091994],[6.686349215090104,53.46465755772051],[6.690634686564515,53.46538650366033],[6.692864942969108,53.46576701468828],[6.694207437919124,53.465949892741754],[6.695189192893602,53.466058824478885],[6.696444928982372,53.46616651561828],[6.698037286447676,53.46630627458986],[6.698389287270986,53.46633656732711],[6.701751473707163,53.466613069689934],[6.704685398755982,53.466864560640346],[6.711091917633691,53.46740644324855],[6.714968563458189,53.467737506032],[6.717038416757148,53.46791745496306],[6.718906095355042,53.46807391824317],[6.721706165063915,53.468314741811874],[6.725779950362092,53.46866496778869],[6.738492649143405,53.46974581593855],[6.740958393832781,53.469923675853416],[6.742029433478149,53.469976166034954],[6.744182546600401,53.47005587390234],[6.745947695729218,53.470072139093496],[6.747991854427235,53.47004592325704],[6.750265539529554,53.46996186656578],[6.751273284982245,53.469905052682456],[6.751620067382274,53.46988264903944],[6.752187476357702,53.469855231058126],[6.754261305165493,53.46965928868251],[6.755943427097148,53.46947247612372],[6.758268551240477,53.469167878109104],[6.760154601146701,53.46884940273492],[6.761824349112601,53.46854531040019],[6.763299937617178,53.46824803493909],[6.766698654351091,53.46756370363612],[6.768433603426017,53.467207013892136],[6.76980128243309,53.46693206098654],[6.771802508763742,53.46652440039673],[6.774106652763908,53.466055832194805],[6.775727680747318,53.4657277585589],[6.777800427488206,53.46529860475032],[6.779423792831696,53.46495737358425],[6.780700716260773,53.46466738726736],[6.782114968307496,53.46432418646651],[6.783469288295902,53.4639324663974],[6.784520506915054,53.46361072115716],[6.784991822585251,53.46344898761877],[6.78535427172022,53.463319413590256],[6.785506364756318,53.46326771372498],[6.786301695804083,53.46298197860078],[6.787629163465421,53.46250803618875],[6.78960218940039,53.46179701660879],[6.791956903375089,53.460939353274235],[6.794169096361979,53.460137872203475],[6.796168952845312,53.4594123704207],[6.797040468988294,53.45989077167159],[6.798088627353776,53.46047203771322],[6.7996605612647,53.46133364240129],[6.80069136626985,53.46189843007044],[6.802258064847252,53.46275656716058],[6.804298390555212,53.463878301357376],[6.805386761264131,53.46447186344973],[6.806317417613404,53.464977405672606],[6.807345410988073,53.46554042066611],[6.808365458817356,53.46609405366175],[6.809275419993146,53.46652487410572],[6.810566811704247,53.46695549422276],[6.81230870317651,53.4673115745686],[6.813884913230054,53.4673685384468],[6.815062488891244,53.46733260058635],[6.816352481836945,53.46715613847724],[6.817405424747773,53.466911608500595],[6.819002726734966,53.466520012842814],[6.820262079567152,53.46621541339543],[6.820482309094619,53.46615857269536],[6.847770858568018,53.4594010825835],[6.84979256760245,53.45890828945836],[6.850901714754425,53.458632764305015],[6.852322022890243,53.45828391521954],[6.853402815340379,53.45801474930872],[6.85481146215866,53.45766896940705],[6.855042070059516,53.457616466266416],[6.855834313008951,53.45741931253963],[6.857013886701877,53.45712298301925],[6.857646500514646,53.45696444217563],[6.858228287412564,53.456814871521665],[6.859633873266767,53.45645876108642],[6.861026081472652,53.45607658421201],[6.861636648583447,53.45589925228616],[6.862248207635299,53.455712129941475],[6.862696555805268,53.45557468048016],[6.863298000866627,53.455378345372466],[6.864548147267319,53.454933410693776],[6.864739972033948,53.45485810070518],[6.865224405966611,53.45468202407408],[6.865638207312314,53.454528581588065],[6.866282364826984,53.45427622503957],[6.866747472371229,53.4540882220631],[6.86746304072862,53.453792563692346],[6.86871260678402,53.45324226241963],[6.869127062862092,53.45304602606145],[6.869524365618923,53.452859555791996],[6.869936562171297,53.452658277665925],[6.870281244243158,53.45248368612803],[6.87045882496587,53.4523981265772],[6.871408410865846,53.45189857226766],[6.872256604743677,53.451429582420516],[6.873140371483971,53.450924190559675],[6.873645702438269,53.450638989148736],[6.874188473621544,53.450334707563336],[6.874680457495364,53.45005217413453],[6.874983246976094,53.4498788407912],[6.875304778182413,53.44970325231701],[6.875708946942992,53.44947498110321],[6.876647713952789,53.44893714293173],[6.877268392713633,53.44857855586326],[6.877340300577012,53.44853826932214],[6.877889805367387,53.448218395169135],[6.878267277175075,53.44800146666829],[6.878607743642807,53.447809369606105],[6.879367067917748,53.44736536090972],[6.885327350442266,53.44391703300893],[6.88580883869321,53.44361368676374],[6.886096678916624,53.44342682398046],[6.886508442030133,53.44313798031674],[6.886793296634909,53.44290237330163],[6.886904683779186,53.442815780750564],[6.887164145739469,53.4426128178461],[6.88754223322482,53.44226076492332],[6.887780921685968,53.442025488781276],[6.888076710895509,53.441729891567654],[6.888270200510268,53.441496048979594],[6.888514190019909,53.441204212910556],[6.888812500502395,53.4407852803204],[6.889091485488394,53.440336408494794],[6.88931026314521,53.439922258137855],[6.889440214668372,53.43962593163419],[6.889525549755129,53.43940230128413],[6.889630752069912,53.43907375032524],[6.889764130608252,53.438557414663],[6.889815797591967,53.43812701322827],[6.889841616642729,53.43764055420008],[6.889825272589263,53.43717350426957],[6.889751038128961,53.43663903203166],[6.88962544051438,53.43610590020539],[6.889485792428022,53.435729893802026],[6.8893837367741,53.43546666336136],[6.889260990361796,53.435195188412166],[6.889200189947568,53.43507431180868],[6.888662528347684,53.43318590584255],[6.882868095261547,53.4224458704976],[6.88218350337805,53.42110776851146],[6.882159921876875,53.42099965254245],[6.88214972893271,53.42087859091723],[6.881936220849179,53.41858505070299],[6.881760563579905,53.41572689873755],[6.881237263509527,53.40954098581885],[6.882650431201141,53.408791264062394],[6.883562563861997,53.40830913212945],[6.884551466133461,53.40762594021159],[6.887064989626157,53.40520906305614],[6.887808568365163,53.40445307579987],[6.890003365744946,53.40236373008959],[6.893139789207295,53.39932210916396],[6.893880999727351,53.3985095356405],[6.894313761621337,53.39788273518029],[6.894646733880931,53.39738736362165],[6.895054422348023,53.39649665388522],[6.895108424058391,53.39547714772639],[6.894726934303613,53.39391877938116],[6.89579829514124,53.392741161034124],[6.896237550541277,53.391999798367166],[6.89711753923751,53.3904820526077],[6.897279356587837,53.39014543026817],[6.897602768747849,53.389361935861366],[6.897560807087523,53.388167224118924],[6.89676022761303,53.38622106478772],[6.895763745727328,53.383831037536254],[6.895700953149292,53.38363800005981],[6.89564393654503,53.38342404220596],[6.895662522741467,53.383259427847996],[6.89570921953524,53.3827659175862],[6.895835411484342,53.3816214354693],[6.895959554984813,53.38092940470958],[6.895982967797994,53.3808554926727],[6.895993274958251,53.3808287848182],[6.896315073493465,53.38031111968094],[6.89689736985455,53.37940183985296],[6.897020898113223,53.37921067593402],[6.897891671915584,53.377724646621765],[6.898179438610698,53.37727138374361],[6.898521257779781,53.376774096038396],[6.898859548318911,53.37574599486046],[6.898831616719273,53.37495108179162],[6.898766925067657,53.374556650702345],[6.899245837621198,53.37370813366709],[6.899499494344735,53.37324141426365],[6.899820818524676,53.373140197615335],[6.90219917926943,53.37135825547383],[6.902678998240799,53.36918944592291],[6.902155355621312,53.36788927997613],[6.902097121938849,53.367740544327255],[6.90208600129799,53.36770522847433],[6.902117108222331,53.36758903254176],[6.901814255855453,53.366186646029014],[6.901666514880282,53.365422861051556],[6.901585296493167,53.365120257047444],[6.901600688226495,53.365038734213606],[6.90163990571405,53.364896929487905],[6.901951066791479,53.36460227213008],[6.902540256588162,53.364070676460614],[6.902979242451013,53.36342041279612],[6.903312682922005,53.36280547849989],[6.903526713264223,53.36188894270384],[6.903475617116648,53.36117556143557],[6.903365639694347,53.360510322871015],[6.903276809419392,53.35967341668174],[6.903252215798235,53.35937594810923],[6.903296299005602,53.35928197869978],[6.903491922874171,53.35887868120333],[6.903779622743739,53.35819359398085],[6.903885328925814,53.3577013748622],[6.903951158289453,53.35730688283563],[6.903960413113595,53.356856079608],[6.903917899581814,53.35630472196224],[6.904547773413428,53.355122016939845],[6.904664317925898,53.354872589244145],[6.904778689259866,53.35461001275163],[6.904849138575217,53.35445539276108],[6.905469257539919,53.35387032554106],[6.906310559938274,53.35269757062569],[6.910033980529592,53.35140830632876],[6.912330589562806,53.350824347038056],[6.913745509582858,53.35014199118466],[6.915014997306114,53.34935479683561],[6.917317442426119,53.34794527005176],[6.917623053029127,53.347767291748035],[6.917843952567023,53.34766055945804],[6.918379556683877,53.34741982665034],[6.920335951023391,53.346601350834284],[6.921473777607649,53.34614340608028],[6.921966667487212,53.34595602807376],[6.92292587824371,53.345549513424245],[6.92421965842626,53.344858172481864],[6.927496688078496,53.34304482314275],[6.928085139721172,53.34273393116707],[6.928816301200041,53.34232272326622],[6.92941990999604,53.34195537148296],[6.930434209228281,53.34134614554902],[6.930983360526525,53.340972393173836],[6.931254030311573,53.34075535519407],[6.931654289728185,53.340384794885004],[6.931991869430396,53.33999251980047],[6.932263513990767,53.339582314926886],[6.932466604231586,53.33915813856001],[6.932599182219079,53.33872408327385],[6.932659971399112,53.338284337019964],[6.932648387469665,53.33784314285011],[6.932564543823959,53.33740475687288],[6.932409252547886,53.33697340872632],[6.931740338107958,53.335476558078156],[6.931329138907838,53.3345563500666],[6.931020251224093,53.334348933122],[6.931127901922407,53.334277877116065],[6.931408682728018,53.33407819097751],[6.931474000187245,53.33404455065709],[6.931560318742107,53.33401503498604],[6.931906080506979,53.334015679120434],[6.93275420677783,53.33343729959208],[6.9326410232379,53.33332446955175],[6.931951387291601,53.332927154291475],[6.9319637835124,53.332795583088306],[6.931957740749287,53.33267940931502],[6.931901220400179,53.33242912920122],[6.931874016280721,53.33234034007976],[6.931838643557146,53.33226112785049],[6.931737813876803,53.3320683834105],[6.931114916414516,53.33103466921142],[6.931116148316643,53.3308357336014],[6.931098962053198,53.33071265730673],[6.931076084840591,53.33064357407948],[6.931038467909143,53.33054438610317],[6.930975508813976,53.33039738200798],[6.930932642670499,53.33031298156345],[6.930765014830425,53.33003004117551],[6.930644448847141,53.32985179305491],[6.930583342603639,53.329779066703416],[6.93044754313943,53.32963607095302],[6.930337265258655,53.32954045763568],[6.930286340802806,53.32950427501145],[6.930075386538751,53.32935558445316],[6.929931835247567,53.329270606685405],[6.929848554042318,53.32923085804572],[6.92955685896897,53.329096925370735],[6.929390498221986,53.32903350208037],[6.929074888982047,53.32894056667787],[6.928988306069803,53.32891799737205],[6.928848634377082,53.32888805682811],[6.928652715731393,53.3288518368007],[6.928436369900397,53.32881537720797],[6.928144111276754,53.32885718050055],[6.927207144530254,53.32823730872633],[6.92720010289587,53.32822425145051],[6.927184903354727,53.32820638298273],[6.927055597316042,53.32810810778951],[6.927010564933684,53.32807453533385],[6.926878661660748,53.32797916895591],[6.926725491458743,53.32787800881638],[6.926816478983827,53.32783490269127],[6.926720599791379,53.32776338365618],[6.926770519337338,53.32773924417118],[6.926154495047441,53.32726092711063],[6.925983616667459,53.327130354734166],[6.925928665723412,53.327088003066365],[6.925816146419585,53.32714099987996],[6.92577458483554,53.327152019304776],[6.925771239107706,53.32715290687583],[6.925702854849296,53.32715430338575],[6.925645474038332,53.32713763961841],[6.925618914792916,53.32712992748875],[6.925597785119248,53.32711873093152],[6.92557540275833,53.32710356032369],[6.925546132423137,53.3270812975188],[6.925286513180006,53.326883866731364],[6.924913380562332,53.326600905665394],[6.924540264390754,53.326318266768006],[6.924261021845228,53.32610571757643],[6.923913730036608,53.32584196002283],[6.923888412516258,53.32582273769792],[6.923741258973464,53.32580274533374],[6.923691719720701,53.32576682083952],[6.923449256222785,53.325879575226296],[6.923197476932347,53.32599631241658],[6.922947195397195,53.32611341635283],[6.922780980250367,53.326095589494855],[6.92239294542064,53.32582426911249],[6.922001165985641,53.325550083632095],[6.921610033515143,53.32527622114203],[6.921470943319038,53.325179089418015],[6.921060657705736,53.32489195370433],[6.921023189977039,53.324865732451826],[6.92063255805688,53.32459250748215],[6.920268784362092,53.32433786461171],[6.919827010801956,53.32403108430806],[6.918872485047366,53.323391950209306],[6.919531081562494,53.32288002785296],[6.919420707463745,53.32280247808945],[6.919234664919943,53.322668575789606],[6.917948417146711,53.321742747979904],[6.917303173006011,53.321278285716325],[6.917083698483243,53.32123218609167],[6.916831289145636,53.32129786858953],[6.916797740649437,53.32127323173379],[6.916673635386021,53.32118178830502],[6.916863446087668,53.32103632029797],[6.916858952716137,53.32095851730161],[6.916752172755483,53.32088165149925],[6.916442136761074,53.320634976479326],[6.916365799965495,53.320672936849434],[6.916157300469348,53.32050792514717],[6.916099597121902,53.320465738868215],[6.916107334349096,53.32046173124476],[6.916165886344258,53.32043139330856],[6.916122712682476,53.3204002465504],[6.91611800365445,53.32040246325364],[6.915926432121703,53.32025765352341],[6.915909135991651,53.32024604706328],[6.915920851308619,53.32023952650644],[6.915722474175936,53.32011225512579],[6.91528485107905,53.31980720471701],[6.915040354559824,53.31964893943584],[6.914167020955148,53.31912259055913],[6.913905210410164,53.31897228948407],[6.913897881306677,53.31897171757047],[6.913625577968486,53.31881536635513],[6.913308709719863,53.31863884817947],[6.912681197385274,53.3182837802522],[6.912644166922862,53.318267058770424],[6.912629198375554,53.3182592596098],[6.912489053691852,53.31818623327263],[6.912114489901421,53.31799654183247],[6.911849882826092,53.31786478436538],[6.911580798241938,53.31772689130247],[6.911380433021719,53.31762587914957],[6.911292448182488,53.317579302706335],[6.910852405697589,53.31737100855778],[6.910280965089806,53.31713047141114],[6.909853367823095,53.31695048569647],[6.909172943885072,53.31668067953788],[6.909012154427491,53.316619377632826],[6.908636926528993,53.31648061135484],[6.908396862007349,53.316378218652716],[6.907948950276595,53.316224724444176],[6.907732701963241,53.316155854870495],[6.907486490269362,53.31607775720814],[6.907450096542321,53.31606621139924],[6.907257219217995,53.31600510638015],[6.907200813526126,53.315983973211],[6.90699433765611,53.315914268779764],[6.90647472609256,53.31574693770431],[6.906461203209531,53.315762637608714],[6.906156522937755,53.31567327018851],[6.905519415138529,53.315484629829825],[6.905343727144269,53.315433360683905],[6.904831409700987,53.315297239973205],[6.904587594621072,53.31524216594893],[6.904285399163952,53.31516902832029],[6.904002092584286,53.31509701751317],[6.903702114583494,53.315025854470605],[6.902996200204032,53.31486003250555],[6.902952732930662,53.314861066023994],[6.90285635236541,53.314841171922794],[6.902695759092369,53.31481017119824],[6.902669394063152,53.31480508471284],[6.902498209506028,53.314775448455954],[6.901363771193515,53.314578102173925],[6.900108491670682,53.3143587664818],[6.898654562197376,53.314106580815675],[6.897759341357126,53.31395374928813],[6.897658150067773,53.313936472715866],[6.8964851685109,53.31373632097424],[6.895213404288,53.313519163559015],[6.894518088089315,53.313400267244276],[6.894042241120835,53.31331927986387],[6.884813199646588,53.31175773051598],[6.884616987312661,53.31171919653373],[6.884305333274339,53.31165800729108],[6.884285449263401,53.31164714752363],[6.88427156391602,53.3116461252814],[6.884035725669382,53.311601164290444],[6.883959700055223,53.31160392652167],[6.883274285862795,53.31148531858929],[6.882208778999956,53.31130178056975],[6.881867443859558,53.311245564442515],[6.881764320861468,53.31122932308733],[6.881662314477337,53.311212393760634],[6.881474747168101,53.31117679364535],[6.88123708337794,53.31113354837667],[6.880786016594618,53.31105734115968],[6.880051878646315,53.310932077327706],[6.879588080606037,53.31085294138935],[6.878858495718903,53.31072722735105],[6.878186496536006,53.31061344761864],[6.877498217647857,53.31049523793818],[6.876373534851272,53.31030250611657],[6.875768209513154,53.31019812246765],[6.87493317915808,53.31005413600996],[6.874428998466566,53.30996602632129],[6.874037765569111,53.30990027772232],[6.873963137120258,53.30988692132718],[6.873714085963899,53.309846318432086],[6.852568806577032,53.306197240250945],[6.852496436044846,53.3061837082882],[6.852374810844951,53.306165789311706],[6.852328907347896,53.30616332952438],[6.852282951159175,53.30615799465229],[6.85206528815771,53.30612587920017],[6.8512570756378,53.30598660571384],[6.850404285904704,53.3058400153753],[6.850114316473976,53.30578949164364],[6.849866034585633,53.305746287100995],[6.849510719800335,53.30568446137456],[6.848859828237194,53.30557210419774],[6.848858425308077,53.305571878625294],[6.848771413737538,53.305557893469796],[6.84872182154511,53.30555192747639],[6.848667156178334,53.30554943806922],[6.848596751374518,53.3055495664403],[6.848532798163367,53.305557227949414],[6.848464872193305,53.30557073408583],[6.848442112978209,53.30557694200432],[6.848407208503745,53.305586460889494],[6.84835389855185,53.30560669991026],[6.848302229959319,53.30563021702618],[6.848286636808144,53.305639366258305],[6.848259053787237,53.30565552702851],[6.848215717276767,53.30568540415041],[6.848177100546461,53.30571465771557],[6.848140216892566,53.30574768253618],[6.848107667616216,53.30577889327682],[6.848083232081082,53.30580426293518],[6.848060945458736,53.30583239230443],[6.84804311945599,53.30585977547271],[6.8480264508982,53.30589563689046],[6.848008097264065,53.305935787419],[6.847993353766299,53.305970016828894],[6.847972968349248,53.30602370787536],[6.847942661863764,53.30611669204762],[6.847926458113994,53.30617159037004],[6.847914557630983,53.30621312724548],[6.847899218202738,53.30625147075255],[6.84787481394356,53.30629061641504],[6.84785126158669,53.306320810064726],[6.847838606936686,53.306333005912606],[6.847822646915992,53.30633178003392],[6.847795256066107,53.30636248763249],[6.847788101442092,53.30636298798086],[6.847785901143382,53.306366240909426],[6.847766116491183,53.306363722510845],[6.84768061929822,53.30635284548256],[6.847498971687894,53.30632025378041],[6.847465392778422,53.30630480802521],[6.847460765281227,53.306302682614536],[6.847444430782218,53.306229569464456],[6.847447686658866,53.306104798203904],[6.847558596449677,53.30577597169493],[6.847566181151279,53.305691454434],[6.847555245250877,53.30560286757783],[6.847510274803457,53.305534735321224],[6.847476672148689,53.30549821061673],[6.847447067002642,53.305475052499375],[6.847401449791099,53.30543583222125],[6.847336010136027,53.30540359274076],[6.84724645129682,53.3053755015406],[6.846703780040943,53.305288211351694],[6.846652474822696,53.30527948846091],[6.846443909286827,53.30524079313391],[6.846349321982318,53.30522003248529],[6.846141985871765,53.30510601712874],[6.84601872300534,53.30507335747071],[6.845560351171918,53.304992489459835],[6.845010718327995,53.30489767952089],[6.844120688702284,53.30473704538323],[6.842757209175431,53.304497439599615],[6.842019772846804,53.30436626897874],[6.841749288548153,53.30432192787679],[6.84132765084429,53.304243343656545],[6.840258255721948,53.304059303078375],[6.839959194860699,53.30400529429537],[6.837396062020184,53.30355475960763],[6.833920395365346,53.30294526604011],[6.832764179640351,53.30273998766983],[6.831623519861822,53.302542177988855],[6.830485465229525,53.30234130857492],[6.828675180258868,53.30202546686146],[6.82809832414189,53.301920376251935],[6.827708657829498,53.30184473444479],[6.827154887087916,53.30172736520472],[6.826941728336567,53.30167970746089],[6.826545371257525,53.3015825294047],[6.826266229977653,53.301503255042604],[6.826093140049958,53.30145913708744],[6.825935609761177,53.30141824746476],[6.825709775717784,53.30135795565301],[6.82544110657227,53.30128622404563],[6.82478640968041,53.30110075818428],[6.824240964362706,53.300934381658244],[6.823845128466038,53.300809798712656],[6.823354632582947,53.300649051758434],[6.822559298101608,53.30038410621661],[6.821399912225043,53.29998879312098],[6.819744594850243,53.29942567289356],[6.819376334385325,53.299299488485126],[6.817553214771181,53.2986775893929],[6.816601660516034,53.29834059508544],[6.815774426373912,53.29806556025013],[6.814344511435323,53.29759161859262],[6.812672961842657,53.29702005763634],[6.812501767690624,53.29696151933285],[6.812062957593947,53.29680528089398],[6.81180978189242,53.29671513761806],[6.810608567391691,53.29630529988332],[6.809487810985943,53.29592388381893],[6.808209038678508,53.295489598434656],[6.804389515757555,53.29419095670261],[6.804207796641855,53.29412911598296],[6.800544419268153,53.29287829703358],[6.799954400712889,53.292677018729115],[6.798745364278445,53.292264549604965],[6.796894096704433,53.29163485299974],[6.796453810703462,53.29148509075887],[6.795057263268386,53.29100918270215],[6.79452416313585,53.2908275205489],[6.79247631242799,53.29013059346915],[6.791993931279515,53.2899670638236],[6.790530371803932,53.28947090378246],[6.789737378890429,53.28920068358369],[6.788377646071798,53.2887362210035],[6.787198035821689,53.28833308904955],[6.787170678023776,53.288323738374146],[6.786388438693035,53.28805639046505],[6.784453622022973,53.28735926962972],[6.784227088332456,53.28727788032049],[6.781964232768088,53.28646968656687],[6.781726345581055,53.28638471298487],[6.781379225870324,53.286260711174705],[6.780474923788261,53.28593456802722],[6.778376169409442,53.28518389477432],[6.776776774789131,53.28461095934913],[6.776542632554046,53.28452708257],[6.7750210061009,53.28398112767444],[6.774373399941855,53.28374875790405],[6.772629919162746,53.283123467691304],[6.772600640479498,53.28311293169612],[6.772526767867053,53.283086554540034],[6.77173131770905,53.28280258562542],[6.769921933146953,53.28215375256678],[6.769731352219172,53.282088277816165],[6.768061564067604,53.28148903337008],[6.767081324786366,53.281135715422565],[6.766556284456891,53.28094529175816],[6.766326457600574,53.28086193884124],[6.766242421026877,53.28083163063182],[6.765068790047899,53.280408399860036],[6.763987436489408,53.28001842853633],[6.762897715277826,53.279627330246946],[6.761449512131156,53.279108042837144],[6.760828476283081,53.278886619853274],[6.758544036133243,53.27806475691793],[6.757166651177273,53.277565458552615],[6.756998319216067,53.277476974160734],[6.757024769537006,53.277450611603555],[6.756907688287758,53.27740854201851],[6.756881970188614,53.27743435700885],[6.756657904168662,53.277384880135514],[6.756636976183262,53.27737739035606],[6.751389615034895,53.27549060148219],[6.751020401675914,53.2753578312767],[6.750778871726886,53.27527227230213],[6.749977266120403,53.27498831168144],[6.74697086344077,53.27390904037882],[6.745709131980795,53.27344954164995],[6.745689692836521,53.273440649220504],[6.745022916579924,53.27320013511623],[6.744674884527894,53.273082733673284],[6.744619346774643,53.273061937582405],[6.744316767382678,53.27295348415715],[6.744146790935176,53.27288660411807],[6.743944356138384,53.27281296423275],[6.743369220101624,53.2726223502417],[6.743081646809959,53.27253134681962],[6.742840243285361,53.272455476051746],[6.741410819748547,53.272020821908676],[6.740733530412458,53.27181883806694],[6.740457195119649,53.2717368769842],[6.739633189843768,53.27148963060113],[6.73773505146099,53.270926410618515],[6.73756450824422,53.27087580229111],[6.737102291713147,53.27073553425241],[6.736240596129151,53.270476358994436],[6.735893496345677,53.2703719523172],[6.73435537345392,53.2699062191261],[6.734323657148302,53.269887110154144],[6.733879755921556,53.26975135127859],[6.733832102140729,53.26974174888352],[6.732522114174551,53.26929046345825],[6.732291743048922,53.269208579923294],[6.732135192070373,53.26915053716127],[6.731979171726855,53.26909219170086],[6.731727851126089,53.26899745735066],[6.73113585056993,53.268753819060535],[6.730680636938434,53.26856646678099],[6.729749974157227,53.26818946711636],[6.729473737936738,53.26807406811494],[6.728660118575235,53.26773416906042],[6.72842146008816,53.267634469660386],[6.727542676557666,53.267267792235764],[6.726850383233717,53.2669810928087],[6.725852391962832,53.26656620839049],[6.725847988393531,53.266564379302444],[6.72547677629683,53.266420095914725],[6.721068129894642,53.264587906506],[6.718817555650609,53.26365246297629],[6.716326328030881,53.26261126470384],[6.715497744716746,53.26229262427915],[6.71538282600647,53.26225044579605],[6.715220900231162,53.26219101182904],[6.71424620241049,53.26183326099816],[6.711475414710504,53.26084485564957],[6.70958459215402,53.26017481349983],[6.707620681654905,53.25947495566529],[6.707516580650038,53.25943071867528],[6.707169312509927,53.259308699058614],[6.706197755482046,53.25896403223304],[6.705904737299589,53.25885940397418],[6.705037115168477,53.25854958616161],[6.703970049716416,53.25816737075923],[6.703064296876375,53.25784511532516],[6.703027601344424,53.257832010797564],[6.702867501672285,53.25777483188818],[6.702430551406733,53.257618770056645],[6.701518932419309,53.25729454538644],[6.700756601740835,53.25702012829966],[6.699884297822538,53.25669975675881],[6.699164171505212,53.256444539641045],[6.698040768881088,53.25604085283666],[6.697285688450178,53.255768824039436],[6.696588010759664,53.25551902613176],[6.695672026848181,53.25519121952755],[6.694942578248885,53.2549313071283],[6.694039002995581,53.25460864607084],[6.693216087127466,53.25432009423897],[6.691935894085015,53.25386091136358],[6.691059638794687,53.25354578539428],[6.690852036277029,53.25347159186793],[6.690754636753954,53.25343633508989],[6.68914948529454,53.25285532527339],[6.688669726165352,53.252686512924065],[6.688135601697049,53.252494599446266],[6.687009939535106,53.25209105964189],[6.686590235254616,53.25194157477366],[6.685556340357777,53.25156768108703],[6.683745555812625,53.250924138818675],[6.683298785597484,53.25076321650369],[6.682625848090673,53.25051953247068],[6.681708488712624,53.250193162970795],[6.68132453190937,53.250054848990274],[6.680943756834973,53.249917128559154],[6.680696204541225,53.249831099607256],[6.680048325477252,53.2495991641631],[6.679842290183686,53.249526992817756],[6.679505344202883,53.249406103876034],[6.67930021389265,53.24933156741259],[6.679077410300052,53.2492532218096],[6.678936798281667,53.24920223591878],[6.678671883154744,53.24911000027756],[6.678543339891031,53.24906524651736],[6.678112115044865,53.2489113090819],[6.677461934474499,53.24867913294909],[6.676912690010458,53.24848527465546],[6.676530189176465,53.248349526945205],[6.676198746958065,53.24823220023942],[6.675910266969952,53.2481286100567],[6.675608652158125,53.24802212273167],[6.675531291509185,53.24799480736065],[6.674617759375786,53.24766803761397],[6.674245706507847,53.24753448915954],[6.673770151578707,53.24736149294236],[6.673332743370618,53.24720402816772],[6.67296577606254,53.24707546270987],[6.672300257766964,53.246836503600875],[6.671859680753708,53.24667842041015],[6.67164287441159,53.24659677981338],[6.671443374150149,53.24652625866365],[6.671255211495293,53.24645558895381],[6.67109817328131,53.24639974624227],[6.670770947142987,53.24628111049131],[6.670681966324747,53.246249746554774],[6.670381246356057,53.24614374888971],[6.66973770459062,53.24591636699169],[6.669395040607057,53.24579372274453],[6.6690454937398,53.245670800554294],[6.668284165543914,53.24539846023304],[6.668155185619368,53.245351372626864],[6.667811197285482,53.24522064123135],[6.667176972687894,53.244970545389045],[6.667007329539054,53.244904039039476],[6.666782889086005,53.24481036637787],[6.666624180360985,53.24474577387695],[6.666507416074342,53.24469824878101],[6.665704853443625,53.244333977817526],[6.665042418890441,53.244034898486845],[6.664849188409119,53.243947656816154],[6.664257938405385,53.243673840322856],[6.663979951287235,53.24354563100597],[6.663254620849234,53.24321407779694],[6.662478806653443,53.242857831602386],[6.661887941473394,53.242585877646334],[6.660982275573465,53.24216583988765],[6.660446284949927,53.24192174773076],[6.660108559031505,53.241767949685126],[6.659516909190556,53.24149732250314],[6.658603474453423,53.24108099784301],[6.65774112054095,53.24068390483398],[6.657130604156796,53.24040081277899],[6.657030253466393,53.24035441693181],[6.656908080284396,53.2402979263985],[6.656414072200624,53.24006989843496],[6.656069807364846,53.23991229411341],[6.655350468358895,53.239580621340885],[6.654735835562332,53.23929093770642],[6.654312962837,53.23909780824881],[6.653567710574311,53.23875552484457],[6.652954054711413,53.23847791765571],[6.652349404021911,53.23820064379512],[6.651497413846004,53.23781180850486],[6.650555574885644,53.237382799924426],[6.650273308665671,53.23725912444015],[6.650176353565338,53.23721872609374],[6.649595639474303,53.23697664720902],[6.649099272940106,53.236770352519564],[6.648711195404169,53.236629363571744],[6.648061899081821,53.23639712839594],[6.647726679042258,53.23627845155465],[6.647432111997541,53.236184931393666],[6.647206909296528,53.23611147192266],[6.647112136216506,53.236099396608516],[6.646946167176692,53.23610113870393],[6.646851476714284,53.23610687737071],[6.646717808130969,53.23613198643014],[6.646616040807081,53.23616625928854],[6.646530070404279,53.2362003573272],[6.646376014481428,53.23633951137236],[6.645994025189113,53.23622858113813],[6.646007756733785,53.23621156085224],[6.646043372921199,53.23616213023293],[6.646077040993498,53.23608851051693],[6.646095187480242,53.23602040952085],[6.646088568801935,53.23598243027798],[6.646087525986056,53.23597645623452],[6.646080543451975,53.23593627013841],[6.646040507264118,53.23586278542206],[6.645976596381834,53.23579959794764],[6.645892892975356,53.23574338481056],[6.645803210847828,53.23569684982172],[6.645697919805167,53.23565796415489],[6.645597720722696,53.23562625012197],[6.645279995884406,53.23553801791645],[6.644371510497206,53.23528573478845],[6.644376645854672,53.23527845588602],[6.643610410947029,53.23507438105061],[6.643613667088807,53.23506891914447],[6.643257099483102,53.234973018399785],[6.642575890946983,53.234788572228645],[6.641617973520268,53.2345267475941],[6.640755534864028,53.23429277369063],[6.639335394601774,53.23390668536299],[6.639139011139679,53.23392020074314],[6.638893798851174,53.23385455115584],[6.63871731685586,53.2338069211511],[6.637924503798638,53.23359295073896],[6.637733123614403,53.233540738692724],[6.63738445229092,53.23344560106844],[6.63723332647297,53.23332484261557],[6.637190699655799,53.2333123730498],[6.637147800650887,53.23330861417611],[6.637051810150393,53.23328425407748],[6.636885548400498,53.23323822239592],[6.636730522875419,53.23319954124563],[6.634474677127855,53.23260201547855],[6.634343261705492,53.23256598852249],[6.634282787694574,53.23254431254832],[6.634217782956312,53.232524444964305],[6.634136942619311,53.23250596403093],[6.634058331843429,53.232484296650036],[6.633965392808846,53.23246175360963],[6.633474153841791,53.23232546293853],[6.632415389984814,53.232036664777894],[6.631487354388073,53.23178259164307],[6.63096416529662,53.2316409066499],[6.630585809781251,53.231538445545105],[6.630183642229609,53.23142814207721],[6.629776434939118,53.231316460607225],[6.62945584186594,53.231228827637445],[6.628648019406803,53.231007295365956],[6.627411236685286,53.23067154329137],[6.626547782452227,53.23043587904685],[6.624383466160035,53.2298526766026],[6.623819603509351,53.22969996722971],[6.62299490955867,53.2294766210088],[6.622816029014034,53.229428174747845],[6.622636740270813,53.229379579655124],[6.620475510521435,53.22879372338722],[6.617654944873017,53.22803244445229],[6.615292812477,53.22738662978032],[6.615090594795351,53.22733209345287],[6.615015744345756,53.22731191190706],[6.614551083942709,53.227186604381444],[6.614144341703347,53.22707735479321],[6.613273880911366,53.226840292537744],[6.613196204344849,53.22681914124588],[6.612941995873164,53.226751302339736],[6.612726684408347,53.22669582641561],[6.612494868079151,53.226629680989895],[6.612321396440804,53.22658208060282],[6.612129054123216,53.22653227320993],[6.611430152165326,53.226343303147175],[6.611125104122292,53.22626045948337],[6.610329719805663,53.2260510703513],[6.610211497203565,53.22601996005487],[6.610211225701949,53.226019890930424],[6.609708933158278,53.225890913418674],[6.609049897154899,53.22571667459789],[6.608482424215731,53.22556427199189],[6.60777920220066,53.22537443514567],[6.607545928803494,53.225311314499315],[6.607264625589258,53.225235202086296],[6.60667404905905,53.22507339243617],[6.606088895229026,53.224914148861025],[6.605535635339426,53.22476479622111],[6.605067640591298,53.22463821903701],[6.60467810479863,53.22453419079902],[6.604330728136079,53.22444256632689],[6.603909209978476,53.224325730823765],[6.60360288798888,53.22424128152486],[6.60343261890087,53.224185997465085],[6.603288869067609,53.224145604525184],[6.603150197654518,53.224109006146634],[6.603056587593117,53.22408320205724],[6.602411912653482,53.223903308829705],[6.602277717232887,53.22386820978897],[6.602183247657285,53.22384375270468],[6.602015489325344,53.22379722995619],[6.601851456564183,53.223752187970504],[6.601777327896898,53.22373166741657],[6.601661933194754,53.223868952740375],[6.601440694206492,53.223801852332535],[6.601271082511666,53.22375138219553],[6.600616940483617,53.223760142737916],[6.600026799909905,53.22379078213315],[6.599647476320198,53.223825457344276],[6.599211983243317,53.22387303523707],[6.598817764025235,53.22392636310254],[6.598449318871086,53.223982513946936],[6.598081563341769,53.224063330106866],[6.597678792337051,53.22417842447931],[6.597282452278925,53.224339715316916],[6.595981694805971,53.2249254353005],[6.595832699661923,53.22483006967804],[6.595325849975529,53.225095222053824],[6.594716986069576,53.22502803911912],[6.594191217898014,53.224968940857416],[6.594195569836488,53.22493764234306],[6.594196734572352,53.224928410568864],[6.594204358574469,53.224867361076484],[6.594270854939007,53.22431175422954],[6.59389815859346,53.22408093918007],[6.593842031256009,53.22404617858032],[6.593892026573562,53.2239894921829],[6.594049316592359,53.22380996141179],[6.594235167325055,53.22360386685299],[6.594313047498358,53.22351008302847],[6.594381894054659,53.223432772264594],[6.59440050027085,53.22341048],[6.593985680627083,53.22328667535617],[6.593798627335756,53.2232308545641],[6.593160236416521,53.223040325674916],[6.592980161039152,53.22298658124412],[6.592927684484478,53.2228832075894],[6.593971578749072,53.221636649980645],[6.594139890211586,53.221435654509825],[6.593773231462568,53.221324569118224],[6.592999879101533,53.221096179711566],[6.592745324161872,53.221016763283714],[6.592465925355397,53.220933956364355],[6.592449242349729,53.2209290106603],[6.592031066963762,53.22080506383379],[6.591978164881457,53.22078938349785],[6.591405643201056,53.220618358580005],[6.590566600729738,53.22036737396175],[6.590346246682448,53.220299588391754],[6.59034532970716,53.22030107135905],[6.589966253084229,53.220189243437076],[6.589295411335992,53.219989826405524],[6.588792227297154,53.21984171976573],[6.588661579127089,53.21980194209348],[6.588384261339595,53.219720174296505],[6.587922911289692,53.21958157524443],[6.587389741570941,53.2194230240581],[6.586823222525629,53.219254945841605],[6.586499226120764,53.21915745585326],[6.586267850594811,53.219088604781426],[6.585710144707936,53.21892108929132],[6.584903251798012,53.21867973717157],[6.584900428387314,53.21867888468526],[6.584742474960775,53.218631422353305],[6.584514830519133,53.21856301595802],[6.583232358263285,53.21818397162754],[6.582773299210015,53.21804471902851],[6.582451209172811,53.217948906624756],[6.58188509552596,53.21777837491697],[6.581818971236894,53.21775801405669],[6.581692964253292,53.217719935002805],[6.581670055327012,53.21769168511294],[6.58139207881987,53.21760893731521],[6.580299412777721,53.217284658977015],[6.58013407385662,53.21727463856442],[6.580063074555556,53.21733201276227],[6.579683760370481,53.217216695215384],[6.579753664936889,53.21716032961463],[6.579563441230423,53.21710407801712],[6.579337251575437,53.21703571032824],[6.57889336452262,53.21690336457145],[6.578696130228517,53.21684525814646],[6.578618443696022,53.21682191902717],[6.578418303459522,53.21676155845537],[6.578265031093965,53.21673187023696],[6.578053745755494,53.216691353858714],[6.577843638286453,53.216651733050085],[6.577612902525064,53.21660783231797],[6.577356000580198,53.21655915830455],[6.577236760258532,53.21653656296807],[6.577199665710364,53.21650083245653],[6.576995686860263,53.21646188627524],[6.576703106675239,53.2164060250615],[6.576398447015745,53.216348045245624],[6.576033247255907,53.216277652197725],[6.575734928023798,53.216223148530716],[6.575607576878375,53.21623002647824],[6.57532555930852,53.216319223775265],[6.575217281223211,53.216353338959394],[6.575171770672251,53.21637357764349],[6.575136828928533,53.216406858788424],[6.574940489505211,53.216479678340036],[6.574933510510131,53.21648231753841],[6.57483294443161,53.216520337006415],[6.574690567450759,53.21657486485495],[6.574527501013894,53.2166387094854],[6.574484029502939,53.216656896796685],[6.57441275422732,53.216688101929606],[6.574371252575177,53.21673331879425],[6.574265589295666,53.21685508760369],[6.574126125918115,53.21701579627474],[6.574121932041604,53.21702063650227],[6.574075685804735,53.217081195052394],[6.574041337177632,53.2171230430248],[6.573928784205972,53.21725677765834],[6.573762756511217,53.21745068377165],[6.573601076766677,53.217644321981204],[6.573447506930115,53.21782692534781],[6.573321411847478,53.217974704187654],[6.573214933017519,53.218099706160665],[6.573128264015328,53.21820297183349],[6.573033834268754,53.218315884652995],[6.573007429782989,53.21834830793071],[6.572979010093698,53.218375494072795],[6.572973700740779,53.21837843117652],[6.572852526786809,53.21854198589209],[6.572851496553972,53.21855136888715],[6.572842894246102,53.21856525699915],[6.572834615308051,53.21857674254641],[6.572813511042435,53.218608088954426],[6.572728922881511,53.21875072113424],[6.572674571961827,53.21884236223522],[6.572579244026898,53.21900014362879],[6.572385631750641,53.21932099239321],[6.57229192999096,53.21947317690472],[6.572203236281428,53.219617457762865],[6.572132368024184,53.21973311158974],[6.572060242576029,53.219854259482744],[6.572009618481887,53.219938305871445],[6.571899077157379,53.220043774283226],[6.571814509802843,53.220131651409275],[6.571736430983406,53.22020990289524],[6.571642662137334,53.22030569787348],[6.571508681406628,53.22044485360559],[6.57132225514061,53.220633924927014],[6.571203409936079,53.22075668353268],[6.57108001842477,53.22089223855366],[6.570968245951021,53.22101470246565],[6.570968216751417,53.22101472971288],[6.570711778120096,53.221295343072306],[6.570628020734433,53.221373604854435],[6.570576576537097,53.22141364332454],[6.57047506813335,53.22148069429751],[6.570389490201876,53.22152748555385],[6.570225209706698,53.22157195239342],[6.570009150173713,53.22163332057845],[6.570007991189557,53.221633646526236],[6.569842881497757,53.221674104094205],[6.569722020365892,53.22170099627318],[6.569673663202598,53.22171161843979],[6.569541987307736,53.22174548260589],[6.569423757120097,53.2217777044435],[6.569306537097932,53.221811282142205],[6.569143012990754,53.221865966535326],[6.569143213731851,53.221866189217664],[6.568983809622895,53.22191933208227],[6.568754020856044,53.2219951125519],[6.568668396243871,53.222023867340944],[6.568621308950362,53.222038241869704],[6.568579176699444,53.22205312475244],[6.568436838170293,53.222092475506926],[6.568278238371228,53.22213511340613],[6.568221797227341,53.22214856438068],[6.568157291805641,53.22216553647856],[6.567862774702125,53.22224585231876],[6.567731689612423,53.2222806252693],[6.567630472086296,53.22230921818575],[6.567530354838845,53.22233095257066],[6.567423671862357,53.22234967810615],[6.567275662450487,53.22237882978099],[6.567219189842651,53.222385666612084],[6.567184678548101,53.222389043379316],[6.567081394760654,53.22239517222296],[6.567035217925316,53.22239685738677],[6.566959762719767,53.22239889329399],[6.566891077140705,53.222398795734236],[6.566777917554958,53.222399683495446],[6.566695588112705,53.22239563114058],[6.566601867977924,53.22239172663003],[6.566574997520788,53.222390328246114],[6.56630939355053,53.22267057257672],[6.566212022701808,53.22264210881239],[6.565938311717438,53.22285196884408],[6.565863427581387,53.222916705384165],[6.565522288405425,53.223176068557734],[6.565410145078532,53.22327637927741],[6.565337100927472,53.22334989506436],[6.565139445826805,53.22355584412826],[6.565040407154726,53.22365082272787],[6.564804958868464,53.22381513984344],[6.564598636988463,53.223947170230794],[6.563762733821715,53.22451539049996],[6.56357976849179,53.224649194016806],[6.563347320942211,53.22480147293899],[6.562776766692611,53.225203083807514],[6.562656221176908,53.22529787051521],[6.562040333860136,53.22504932309089],[6.559388517949744,53.22401260461862],[6.558406459208199,53.22361166953491],[6.555785682989828,53.22261513156958],[6.555814130124578,53.22250323251706],[6.555960880030105,53.22198478627378],[6.555992683156949,53.221765240638014],[6.556028171609327,53.22109451647979],[6.556030464914619,53.221046306539904],[6.556088031547322,53.220824261455725],[6.556090623718919,53.220809381736906],[6.556104289144018,53.220688507762176],[6.55608769871003,53.22065637236374],[6.556055109717116,53.2206239524738],[6.556092512503301,53.220645577773425],[6.556186409971593,53.220697188381976],[6.556224185918649,53.22057593571553],[6.556255061099808,53.22046471614767],[6.556260133194555,53.22044852721081],[6.556721342501395,53.21955282739159],[6.556895728465858,53.21944392911763],[6.556825780991186,53.21939812444611],[6.556475194076302,53.21934960008308],[6.555969858834765,53.21928019707146],[6.555861099811089,53.219264676532035],[6.555518973768955,53.21921723521084],[6.555259434872012,53.2191996954287],[6.555032530395622,53.21919470595453],[6.554970264885034,53.219198735758326],[6.554880184344942,53.21920455491006],[6.554789007060167,53.21923351558691],[6.554680990438833,53.21924435277144],[6.554611685644691,53.219257724814106],[6.554517148090037,53.21928257525742],[6.554346200177235,53.21932547664126],[6.554238942660702,53.21934336932875],[6.554091226532033,53.21937167518278],[6.55400863496386,53.219387045249846],[6.553884975901104,53.219403030243356],[6.553772972845256,53.2194131954428],[6.553725961369245,53.21943600158868],[6.553694254133644,53.21947832111256],[6.55336909689389,53.21951761588063],[6.553287716550529,53.219535723504265],[6.553185956528594,53.21956040943015],[6.553137946501825,53.21957341193034],[6.553111793430737,53.219577988496326],[6.553085695845422,53.219584622395764],[6.553018614030554,53.21959551863183],[6.553022712469937,53.21960758344968],[6.552961321231952,53.21961796605935],[6.552955266328836,53.21960386236899],[6.552862408151938,53.21961887307846],[6.552797487035547,53.21962494947943],[6.552716996661895,53.219632767662745],[6.552576815177927,53.219644616301984],[6.552536628741006,53.219642930741955],[6.552142663334689,53.21962638412896],[6.551685564792139,53.21960613547664],[6.551358453175969,53.219595200972456],[6.551113328065732,53.219591962453364],[6.550685585521108,53.21957372575083],[6.550197128031151,53.219530914192205],[6.54982268739088,53.219482035496036],[6.549467135948991,53.21941174688122],[6.549161359280089,53.21935448172703],[6.548997414192772,53.219324455193146],[6.548674233876497,53.219286983528775],[6.54845024535009,53.219252802227615],[6.547842037676801,53.22051565330251],[6.547822702182847,53.220560884443756],[6.547573924142955,53.22126895758371],[6.547517275094251,53.22164269521177],[6.547505918718049,53.22191379301524],[6.547539462627622,53.222179985914806],[6.547568263395553,53.22248756186919],[6.547752494462855,53.22295286380408],[6.547962537196709,53.22348564585232],[6.547966789360753,53.22364397115215],[6.547919169042334,53.2237776454116],[6.547838618607323,53.223899524551385],[6.547723801009717,53.22401614552418],[6.547571509410027,53.224114041746695],[6.547509273786791,53.22415070574217],[6.547412053141912,53.22408954110689],[6.547365506933137,53.224060264290245],[6.547304673659366,53.22402198646232],[6.547192138646209,53.223952019299915],[6.546239564746875,53.223359749525414],[6.545997190230521,53.223211910481886],[6.545322562977421,53.222800405390664],[6.543491393186946,53.22166182711649],[6.543088169533575,53.22140712079556],[6.542618593375113,53.22111050169169],[6.542580640236192,53.22108653210164],[6.542523867898498,53.22104763015729],[6.542412989203278,53.221113990971865],[6.542299085601991,53.22118216159648],[6.542163252383672,53.221263447581556],[6.542107807526394,53.221295945670384],[6.541805091509971,53.22147332874826],[6.541654912460557,53.22155406022497],[6.541523043625149,53.221628576545655],[6.541221381816776,53.221763181943345],[6.541096265326813,53.22182987762651],[6.54093926192295,53.22191139271189],[6.540745076887861,53.222027592857316],[6.540687498459107,53.22208121071213],[6.540089315034223,53.22262108954027],[6.539930716189004,53.22276422892934],[6.539638638795628,53.22300830857325],[6.53944223901483,53.22317598355434],[6.538969867638837,53.22357269112831],[6.538967421774094,53.22357474551603],[6.538615891414942,53.223873490887875],[6.538088291394165,53.22437630513307],[6.537505411577485,53.22494333292491],[6.537420371385938,53.22502710087765],[6.537166357414494,53.22531162518626],[6.537099564009259,53.225387867218636],[6.537014622747897,53.22548892360738],[6.536789553519252,53.22577586559968],[6.536740034187674,53.225840655104925],[6.536397837642108,53.226288378261984],[6.536159273491188,53.22662791032671],[6.535837123879554,53.22710296485496],[6.535498107254412,53.227580911631655],[6.535354480165986,53.22778660778773],[6.535144114453147,53.22810251233083],[6.534848866340939,53.22854589932416],[6.534679609323716,53.228794434792796],[6.534339363742278,53.22918362280325],[6.534247538308366,53.22929383696477],[6.533890288202049,53.22966160997676],[6.533814911691665,53.22974106821949],[6.53372896185264,53.2298425360482],[6.533418447794798,53.23025283356065],[6.533410683345691,53.23026217260148],[6.533403943916429,53.23027176245503],[6.533387220395571,53.230308074094474],[6.533356009044806,53.23036618109776],[6.53329344351855,53.23048266602809],[6.533263804687818,53.23054021880672],[6.5332530491263,53.23056496197175],[6.533223774802478,53.230647556096116],[6.533189214406142,53.23075840870387],[6.533132983633793,53.230972055888266],[6.533113961781245,53.231060078655446],[6.533094577893647,53.231173419296304],[6.533012921550797,53.23162052172199],[6.53299991969516,53.23167183184074],[6.53295917415435,53.23181663073605],[6.532920688790535,53.23193484452038],[6.532902124794704,53.23198029473262],[6.532883872767536,53.2320171780164],[6.532853059603959,53.232068909753536],[6.532840441829628,53.232090094092875],[6.532768849615823,53.2322006709592],[6.53274338833646,53.232234531742264],[6.532715648240945,53.23226774029709],[6.532704767577362,53.23227875351881],[6.532681300968544,53.23229633902926],[6.532611101395403,53.2323363150997],[6.532589298907205,53.23234605764086],[6.532089549929259,53.232603619598116],[6.532049654994349,53.2326252258036],[6.531929615594523,53.23269023643248],[6.531705331098016,53.23283193267241],[6.531500491522812,53.232974431575705],[6.531333288779584,53.233097169912725],[6.531141096516593,53.23327338999996],[6.531031191015074,53.233384699352484],[6.530641007859741,53.23405025792206],[6.530412124080405,53.23438931643631],[6.530319336021549,53.23452677388059],[6.530179759209185,53.234753748943284],[6.53008879288357,53.234890487903364],[6.53006758907302,53.23492236648415],[6.529758125553133,53.23538752261936],[6.529625540802508,53.23559025726005],[6.529546330168079,53.2357440476609],[6.529362162813833,53.236199607812196],[6.529235448339199,53.23644892489366],[6.528848461740496,53.236921241105094],[6.528660703424523,53.2371506493742],[6.528309267782584,53.23758003059251],[6.527959474486978,53.23796976557816],[6.527632459008484,53.23830904974838],[6.527285289159613,53.238673775823614],[6.527115063377532,53.238852961356],[6.527084107594873,53.23884750412063],[6.526864791707212,53.239073731313326],[6.526812750961718,53.23914514508642],[6.526605204279952,53.23941674853129],[6.526604465650227,53.23941770808764],[6.526496218549471,53.23956168919132],[6.526473867025439,53.23961725677336],[6.526435075175608,53.23971114508091],[6.526411363206294,53.239773636001864],[6.526405257718165,53.23995506384465],[6.526398451744844,53.24021671875182],[6.526393228010349,53.24042306610783],[6.526388385148509,53.24053366114583],[6.526371018922741,53.24065730627188],[6.526343055615006,53.24073810658492],[6.526331987498126,53.24077793991222],[6.526272405058179,53.24086453986364],[6.526186751595526,53.24097704295987],[6.526118549611803,53.2410730883041],[6.526030636361362,53.241190249630336],[6.525853629036726,53.24143495341753],[6.525788335875778,53.241527178753],[6.525743644674783,53.24159401115441],[6.525680809326242,53.24167208670382],[6.525677821541542,53.24167580839594],[6.525621327887623,53.24176204619404],[6.525620180219328,53.24176397115269],[6.525528185289931,53.24191791560617],[6.525482531846351,53.24198350793088],[6.525316791410291,53.242198386409484],[6.525254379180192,53.24227268346731],[6.52517267189392,53.24235890845499],[6.525088165371568,53.242446930211],[6.524870820789645,53.24265808262598],[6.524738548213102,53.24277653497842],[6.524594900172077,53.24289765604555],[6.52434240277239,53.243113777426046],[6.52424115206229,53.24319922533876],[6.523978773012611,53.243404305538284],[6.523853336857264,53.2435077659418],[6.523694862723835,53.24364007036455],[6.523551801097044,53.243813879956086],[6.523532269047829,53.24386011042192],[6.523477107748114,53.244019473610265],[6.523423831887809,53.244174784088116],[6.523360663494774,53.24435952827816],[6.523281674885681,53.24456934102173],[6.523235287015052,53.24473027448713],[6.523178093383119,53.24491839474104],[6.523118987157155,53.24511811632732],[6.523103251885637,53.245170331556366],[6.523066478047598,53.24523546139795],[6.522886312522869,53.245524833824994],[6.52267458795115,53.24584817592215],[6.522475974460277,53.24613866568919],[6.52243894683369,53.24619591676806],[6.522271370305542,53.246454984276575],[6.522153944576129,53.24664883149428],[6.522093299251787,53.246728672499614],[6.521985932704582,53.24685325731213],[6.521863872179299,53.24698596967571],[6.521685025606255,53.2471818347016],[6.52142337096453,53.247428993508926],[6.52114844725785,53.2476753155157],[6.520869977315141,53.247932202212276],[6.520560865322167,53.248210207607436],[6.520413292034359,53.248349018266104],[6.5203494807713,53.2484020552908],[6.52009899443726,53.24854893602453],[6.519708059986084,53.248784316698675],[6.519575864442105,53.24887152602568],[6.519503643722472,53.24893646778518],[6.519428226074214,53.24901891787357],[6.519360670749974,53.249100673713485],[6.519283125157732,53.24919227378289],[6.519169754404365,53.24934269399936],[6.519128954150453,53.24941347684129],[6.519039091716686,53.24954223411328],[6.518948863719555,53.249736531335834],[6.518916335748195,53.24981255595543],[6.518795458913984,53.25005858811954],[6.51879345302199,53.250062659816166],[6.518741363993983,53.25017898328013],[6.518580694814,53.25040802884062],[6.518355741443091,53.25068263795845],[6.518304220785795,53.25072806349857],[6.518118083839628,53.250892189189074],[6.51785045042663,53.25110604805758],[6.517558206711061,53.25130940846152],[6.517212173326109,53.2514922826075],[6.517020458814605,53.251569499329435],[6.515758329575178,53.25210768425088],[6.515033703950594,53.252402349199855],[6.514529288322644,53.252622531213106],[6.513851060258199,53.25300944598313],[6.513617531487363,53.25314251243966],[6.513532850674059,53.253196828786336],[6.513485890219926,53.25321747932855],[6.513303241386819,53.25332628132707],[6.513241077387879,53.25335116309893],[6.513100401279759,53.25342964702184],[6.513016596697637,53.25347968632361],[6.51288901996745,53.25354798259858],[6.512633137646173,53.25369230071579],[6.512525857670276,53.253748886009355],[6.512465844211761,53.25377870759996],[6.512394896845072,53.25382365657391],[6.512337746801824,53.253850665537904],[6.512239942161737,53.25390863550833],[6.512171387487658,53.25395341814497],[6.512128983161751,53.25397128465675],[6.511851372990611,53.2541428081886],[6.511657144192974,53.25425835687595],[6.511563162959007,53.25431476281099],[6.511455169583165,53.2543866483208],[6.511359259124366,53.25446221277424],[6.511248264994427,53.254561606002866],[6.511078315775272,53.25473331483664],[6.510980253169488,53.25483448283879],[6.510873069733012,53.254945063796804],[6.510665491707297,53.25515595355098],[6.510529236140269,53.255294169198464],[6.51020632406427,53.25562169968076],[6.510137641317491,53.255683636953634],[6.510019541515232,53.25573820036795],[6.509937558733879,53.25578311623006],[6.509911662511485,53.25579800589242],[6.509876795122398,53.255825757811614],[6.509112325307133,53.25643982246592],[6.509010783949319,53.25640165432699],[6.509003828375198,53.256407901818434],[6.508953526603748,53.25639071391384],[6.50884585814308,53.256361256588484],[6.50870169504319,53.25644924817371],[6.508634688368434,53.256460459786155],[6.508285498850951,53.25643707670109],[6.508052129744338,53.25642295454739],[6.508056900781888,53.25641394178492],[6.508385594389999,53.25573055483624],[6.508447539097367,53.25566929257018],[6.508491328797674,53.255625021986575],[6.508523061689761,53.25559136885583],[6.508549784618398,53.25556213878611],[6.508575889952672,53.25553913292775],[6.508592498580702,53.25552261393644],[6.508626238228,53.255487189724406],[6.508699445064584,53.255430324212796],[6.508803523416799,53.25536147023197],[6.508883586514037,53.255309554852595],[6.50895912517209,53.255260566260205],[6.509160119191614,53.25513677240513],[6.509368976036327,53.255017478687684],[6.509614086565043,53.25489097123466],[6.509742833920343,53.25482700792142],[6.509870649669723,53.25476007874431],[6.509981971411055,53.254701957388626],[6.510076829007073,53.25465263463624],[6.510254601887085,53.25455690430428],[6.510292583518532,53.25453486530828],[6.51052628428863,53.254408885018314],[6.510571705702842,53.25438599452257],[6.510724088776167,53.25429931650113],[6.510881495737931,53.25420821497767],[6.510946935483186,53.25417149591642],[6.510962768846754,53.25416266704297],[6.51115872075635,53.2540533936984],[6.511218204054103,53.25401812310806],[6.511271583115684,53.25398436540405],[6.511261310612711,53.253976562704054],[6.511833407865781,53.253642893978935],[6.51211168362477,53.25347805892934],[6.512726056287091,53.253146263206126],[6.513382433913412,53.25279779619519],[6.513871024583268,53.252537033060804],[6.514049512682562,53.25245156146185],[6.514262625719908,53.25233847340794],[6.514463052404413,53.2522428295082],[6.514687766894666,53.25214203272669],[6.514963430114834,53.2520368659011],[6.515379260792791,53.25188230507567],[6.515493778014508,53.251839236290095],[6.515580711936703,53.25180654512887],[6.515728074220655,53.25175436989872],[6.51603984405395,53.25164582380391],[6.51612731991251,53.25161268681902],[6.516386236063168,53.25150851884513],[6.516516008609623,53.25145186219225],[6.516593902149793,53.25141443870679],[6.516892527835017,53.2512641112464],[6.51701798190668,53.2511976457719],[6.517308489606647,53.251012616954455],[6.51742685085476,53.25092995273756],[6.517700760844318,53.25073374755494],[6.517701966812218,53.250732882507364],[6.517752358772579,53.250696400167705],[6.517816046292857,53.25064926073757],[6.517863938635211,53.25061116639589],[6.517903576616886,53.25057884704416],[6.517948433881075,53.250541005907856],[6.517999229251059,53.25049648597283],[6.518047765777851,53.250452679231735],[6.518079404302008,53.25042042618309],[6.518118188445797,53.250383549795664],[6.51814425732559,53.25035774738925],[6.518168792250632,53.25033058453466],[6.518207738409077,53.250285025893696],[6.518243601896263,53.250236755481765],[6.518267564792875,53.25020205854866],[6.518293649026832,53.25016026047568],[6.518333683512769,53.250095056625916],[6.518366251471561,53.25003652799053],[6.518393432881751,53.24997599225296],[6.518412809834476,53.24992352779056],[6.518431841844129,53.24987334009025],[6.51845292955448,53.24981240345663],[6.518512299870038,53.24964400817646],[6.518536102115363,53.24956888364224],[6.518554669751476,53.249514135285445],[6.518574534154999,53.24946713880715],[6.518589236499809,53.249427272123015],[6.518610586847943,53.24937752083251],[6.518631301754168,53.24933439837836],[6.518650135398422,53.249291527292165],[6.518673564482176,53.24925021243975],[6.518687801846096,53.24922291287409],[6.518697338163438,53.24920661183112],[6.518710955098102,53.2491859409627],[6.518736816444528,53.249150543070385],[6.518769056006573,53.24911097834439],[6.518793814825647,53.24907810697552],[6.518816404409248,53.24904936275675],[6.518874735220099,53.24898490282049],[6.518907537666188,53.248953105838815],[6.518944462311225,53.2489185291855],[6.518988145454724,53.24888000675097],[6.519041607230379,53.24883501188062],[6.519097324794703,53.24878977106042],[6.519161664163983,53.24873736776524],[6.519211072178551,53.24869949219061],[6.519273780235469,53.24865573998555],[6.519393324770007,53.248572307694936],[6.51954549801213,53.24847964418843],[6.519815675349844,53.24831630476745],[6.520029287138762,53.2481950149185],[6.520166032523899,53.24809403114302],[6.520313427263238,53.247975827904554],[6.520403416517502,53.24789670834734],[6.520534246462327,53.24777019614795],[6.520647820011588,53.24765638252902],[6.520835707493318,53.2474770762652],[6.521191751142918,53.24713803250354],[6.521388134904785,53.246931003374165],[6.521575323223606,53.24672131998527],[6.521775887751773,53.24649735652243],[6.52198050343166,53.24620071857806],[6.521980805691308,53.24620024843606],[6.522050108054618,53.246092155843755],[6.52203207319523,53.24602410845452],[6.521942142370174,53.24592034369118],[6.521843848679101,53.24580001418148],[6.521850900129315,53.24576666097416],[6.521893492434028,53.245728216611695],[6.521987788583694,53.24569641616298],[6.522149578366162,53.245668732767626],[6.522364297142184,53.245643354151895],[6.522378752018394,53.24562252543172],[6.522399414150406,53.24559356506205],[6.522421495820196,53.2455604755626],[6.522433213584665,53.24554004684354],[6.522455190220697,53.24550239331617],[6.522493057326773,53.2454429056861],[6.522531067672864,53.24537405301646],[6.522566319479583,53.245317097257434],[6.522594562312347,53.24527048804792],[6.52260905896656,53.245238377860105],[6.522621108954186,53.245216346424655],[6.522633685485064,53.24518357143951],[6.52265518447131,53.24512491253523],[6.522668862302308,53.24507476569369],[6.522679967278787,53.24502761763486],[6.522693593896828,53.24497495512288],[6.522701661389338,53.24492851874698],[6.522713475002896,53.24486331060218],[6.522727144868975,53.24477981584789],[6.522734584744726,53.2447066602931],[6.522738005662078,53.24465728442881],[6.522743658520621,53.244556045766714],[6.522744998155189,53.244515828605444],[6.522746961721992,53.24443609299285],[6.522748390515781,53.2443833122064],[6.522748384556827,53.24433351045442],[6.522749472947741,53.24429855262422],[6.522752079065516,53.24424667729587],[6.522759112049862,53.24418882017659],[6.522776579897299,53.24410506481155],[6.522790284532791,53.244055384967695],[6.522805627713621,53.244010479293195],[6.522822540608106,53.243968299573076],[6.522848337325559,53.24391416496344],[6.522869015419041,53.24386990074814],[6.52290278610445,53.243814792059],[6.522926956796612,53.243773460251674],[6.522948599975908,53.24373741829744],[6.52296369853158,53.24371512432623],[6.522976689060469,53.24370039875186],[6.523046382986324,53.24363446315921],[6.523098997954775,53.24358672455075],[6.523163582128646,53.243530434557364],[6.523246976809489,53.243463704203336],[6.523343463390653,53.24338612028784],[6.52341865947624,53.24332722254415],[6.523509559415875,53.243255397640034],[6.523779319344735,53.2430449736465],[6.523846591789032,53.24298957440863],[6.523832638423426,53.24298704660029],[6.523884758349354,53.24294332917088],[6.523982221573497,53.24285911259272],[6.524026292658515,53.24282150110095],[6.52417111447516,53.2426937017983],[6.524197199009224,53.242668805420365],[6.524220312482633,53.242647136287054],[6.524297904427137,53.2425763444188],[6.524337137628824,53.24254333466767],[6.524405764779971,53.24248084109109],[6.5244386513593,53.24245314839296],[6.524494629976149,53.242403553055986],[6.524509198210773,53.242391319521865],[6.524522287092368,53.242380933199485],[6.524552906014061,53.242354169565914],[6.524604409688514,53.24230872329554],[6.524650354546186,53.24226949425113],[6.524685774364144,53.24223675415676],[6.524717419929861,53.24220518208654],[6.524750539099266,53.24217154717489],[6.524769413284807,53.24214762660634],[6.524922419730506,53.24196219176563],[6.525030793862374,53.24182374660484],[6.525137099614326,53.24167732316913],[6.525137157389213,53.24167724174504],[6.525342189027598,53.24141233283165],[6.525599485418081,53.241080456458114],[6.525602064081081,53.24107655892172],[6.525658302887617,53.240991482752776],[6.525756225981758,53.24083180258534],[6.525804335620302,53.2407440895915],[6.525864269109277,53.240637249469934],[6.525900206860343,53.24057025740541],[6.525920763896084,53.2405295343216],[6.525929325655997,53.24050428256229],[6.525940188942991,53.240469169004434],[6.525945883517116,53.240438004520676],[6.52594290077892,53.240398726880734],[6.525932740991157,53.2403508545652],[6.52592749433261,53.240292179075084],[6.525912433650543,53.240153852537404],[6.525903569606839,53.240059095544225],[6.525905056311251,53.23986432202253],[6.525906119183625,53.239801219338865],[6.525915748161863,53.23972269582628],[6.525926534305525,53.23967500221273],[6.525944309684721,53.23960093947655],[6.525998458410547,53.23950827154641],[6.526010125275206,53.23948831018391],[6.526055410978842,53.239421966223645],[6.526085539319724,53.239377845330715],[6.52617803024035,53.23923560467693],[6.526316929181784,53.2390628195143],[6.526560031910674,53.238788219096556],[6.526684992730201,53.23864705367272],[6.526754863074951,53.238571858186155],[6.526820878352197,53.23850327721081],[6.52687317419358,53.238448943901034],[6.527007632523408,53.23830959302346],[6.527081982390105,53.238231198210215],[6.525332797137013,53.23767221263693],[6.5254167073295,53.23758315165667],[6.525510787162208,53.23761269598105],[6.525562618978196,53.23762827187184],[6.525627136873799,53.237646090807935],[6.525688914664811,53.23766167115856],[6.525767302914161,53.237679493249885],[6.525833278014018,53.23769292193669],[6.527017176611675,53.23791682906712],[6.527119471408326,53.23793633733315],[6.527324339289052,53.23797540667675],[6.527572051434439,53.237711604883216],[6.527760036787854,53.23750467094212],[6.527964141387677,53.23728031184965],[6.52806838696449,53.23715762881783],[6.528069549349317,53.23715626982707],[6.528242392340536,53.23695351383042],[6.528457154745178,53.23669733991253],[6.528606937644182,53.236504597648505],[6.528734828367219,53.2363053236774],[6.528917919482057,53.235996943190166],[6.528944721830362,53.23594448690009],[6.529008096645398,53.23582218275293],[6.529020886034009,53.23579604578631],[6.529076125573305,53.23568613918631],[6.529095232388025,53.23564741522371],[6.529164239644174,53.23550760601974],[6.529180356746455,53.23547760921208],[6.529211063228138,53.23542045181942],[6.529285852004531,53.235295405908154],[6.52925476136321,53.23528986066181],[6.529290774322752,53.235255540826785],[6.529487337827706,53.234947758997386],[6.529528815589822,53.23489581887754],[6.529573164243439,53.23484030183214],[6.529758602070501,53.23460809225527],[6.529874562170301,53.23443608701885],[6.529880158848152,53.234426274622486],[6.529976079669273,53.23429792675162],[6.530000584104711,53.23426513609469],[6.530026445394393,53.23423324911415],[6.53021830521368,53.233928071798964],[6.530264727117485,53.233845692663714],[6.530338962982862,53.23370222935508],[6.53040384839801,53.23358294731144],[6.530467228086048,53.233472432220154],[6.530521359775135,53.233382601776775],[6.530563840968106,53.23331208600816],[6.53061515254694,53.233252098911045],[6.530680418945066,53.23318008996592],[6.530779207657554,53.233075410906345],[6.530834543642086,53.23301867434545],[6.530863383297814,53.23299072173894],[6.530894190119027,53.23296353218707],[6.530916834997857,53.23294541569014],[6.530989593532224,53.232893383596185],[6.531131127869607,53.23278598736887],[6.531180394874339,53.232751217078075],[6.531313820115632,53.23266792728049],[6.531369952785823,53.232631707568835],[6.531421314268825,53.23259856170023],[6.531686924198844,53.23244856396125],[6.531872002041941,53.23234943234873],[6.531919851866393,53.232325090380876],[6.531999968775433,53.23228180302541],[6.532233258097554,53.23215961040932],[6.532300086959211,53.23212016096516],[6.532388996847319,53.2320509718005],[6.532405507046846,53.23203424351913],[6.532435604255351,53.23199842448661],[6.532449103333081,53.23197940646572],[6.532464306189948,53.23195064900554],[6.532496721842732,53.2318763015252],[6.532507711118476,53.23184339665052],[6.532532692774152,53.231760367439826],[6.532548999699661,53.23139132405368],[6.53255452122675,53.23137249897],[6.532590672834361,53.23122837308195],[6.532645783172035,53.2310271469716],[6.53265969997442,53.230983790016055],[6.532655070855443,53.23098373534859],[6.532652055337233,53.230981841060235],[6.53271219475455,53.230812162752244],[6.532763845170854,53.23066462681461],[6.532812225778678,53.230528777298204],[6.532830833533004,53.230476524022244],[6.532869065763723,53.2303708305459],[6.532885698612996,53.23032486855344],[6.533116611239147,53.22994017071364],[6.533226636576194,53.22978534637301],[6.533281053814041,53.22972247969603],[6.533446235747859,53.229527642539836],[6.533535448025265,53.22942213584598],[6.533603827742542,53.22935046384891],[6.533717189840036,53.22924137442053],[6.53375107003185,53.22921165651542],[6.533862266663614,53.22911410808133],[6.534218689552582,53.22874636093637],[6.534556138458903,53.22825249137795],[6.534551291277997,53.22824082854961],[6.534556999094579,53.22823696378143],[6.534635099009837,53.22810738025104],[6.534735759911074,53.22794034163244],[6.534752383677344,53.227912756431216],[6.534813285786424,53.22781963295113],[6.53494336253882,53.22764323664888],[6.535082790549825,53.22745416989552],[6.535095886061153,53.22743640448957],[6.53516991988174,53.227345536570404],[6.535323127640757,53.227161720495786],[6.535387795212878,53.22705653696324],[6.535423435640486,53.22700130751057],[6.535476767101499,53.226918680216485],[6.535520418173283,53.22685102687475],[6.535587642599364,53.22674686116448],[6.535667035882732,53.22663235251885],[6.535940861508973,53.226234504162306],[6.535998191442538,53.22615083185888],[6.536060235087692,53.22606028479071],[6.536098000383979,53.22600844058301],[6.536122036229817,53.225997238162996],[6.53624889067769,53.225845358855054],[6.536367820385065,53.2257029639716],[6.53656771297592,53.22546192344951],[6.536704721466803,53.225298956078376],[6.536916901278946,53.225018967288875],[6.537035021927999,53.22487503377796],[6.537051490706787,53.22485635515045],[6.537247170847341,53.224634557529725],[6.537298496005251,53.22457637339388],[6.537466517591546,53.224422687261864],[6.537508809160898,53.22438405401417],[6.537514713693786,53.224377482323554],[6.537518315693247,53.22436822781859],[6.537682939597512,53.22422702898921],[6.537682856133125,53.22422389355931],[6.537937487100447,53.22398596519954],[6.538119261205752,53.223835507101455],[6.53820589059708,53.223765445485625],[6.538420846636195,53.22357795944886],[6.538562017842572,53.22345482220682],[6.538945529955448,53.22314319808829],[6.538936667287278,53.2231415757477],[6.538962355673714,53.22311549346893],[6.538965869291657,53.22311192811392],[6.539085884131924,53.22302097565468],[6.53929713395399,53.22283684847356],[6.539720804429502,53.222443635598594],[6.539844506858055,53.22232882412883],[6.540075657087308,53.2221090532125],[6.540096393116035,53.22208933565205],[6.540168685827768,53.222026545432364],[6.540361314962151,53.22187890898073],[6.540476304422949,53.22180299256613],[6.540534105166407,53.221765566062025],[6.540596218199752,53.22172533927167],[6.540957203790811,53.22151609062783],[6.541331345501515,53.22130341633371],[6.541421653969069,53.221252080374164],[6.541970662772695,53.22094034579825],[6.542010434562026,53.22091863844032],[6.542041949106877,53.22090562844647],[6.542106604947891,53.22089510321428],[6.542123972725169,53.22089227609405],[6.542136263177738,53.220886029109835],[6.542233437396722,53.22081881944904],[6.542233422044054,53.220795832515705],[6.542233400508069,53.22077541573761],[6.542293429014801,53.220742460084494],[6.542773948345103,53.22047863121119],[6.54308538810072,53.22029809717578],[6.543116837125146,53.22027986645239],[6.543297171819978,53.220163607037506],[6.543311709417156,53.22015126350374],[6.543631264521338,53.21990823059735],[6.543923251558809,53.219686445695274],[6.543999104229894,53.219627797390224],[6.544228982169095,53.219487667389316],[6.544300527155622,53.21944878547369],[6.544833814424258,53.2192057278729],[6.544856697676306,53.21919475941609],[6.54515217206094,53.21908512345033],[6.545260579946063,53.2190502615567],[6.54535426166585,53.21903185194383],[6.545422417253554,53.21901740900715],[6.545461169795858,53.21900919883135],[6.545603803977465,53.21897938007624],[6.545844623800807,53.218947831279266],[6.546098884794888,53.21891559502388],[6.546416788932199,53.21889999720295],[6.54708643605531,53.218874474819536],[6.547104578649761,53.218870992461],[6.547123807740175,53.21886503733357],[6.547131927442531,53.21886075322402],[6.547137884507435,53.21885566327479],[6.547146551839903,53.21884277392194],[6.54715422947159,53.218824973204136],[6.547153350968014,53.218806592904116],[6.547143984758204,53.21878908575167],[6.547126870649092,53.21877383479233],[6.547103362029743,53.218762044583265],[6.546506880464685,53.21855068962424],[6.546236537556054,53.21845489166114],[6.54610900745937,53.21840969992858],[6.545988506416088,53.21836700129208],[6.545876878547724,53.218327451941924],[6.545867945256384,53.21832428514339],[6.545863546689853,53.21832272804559],[6.545747474864858,53.218281594957304],[6.545626974293058,53.21823888696997],[6.545506428573213,53.21819616132576],[6.54538618558007,53.21815354946214],[6.54526585205273,53.218110902407425],[6.545260017612,53.21810883793701],[6.545139471799232,53.21806719927797],[6.54513688989637,53.21806638846284],[6.545028678483658,53.218029123841326],[6.545001956194004,53.218044865196084],[6.544973360695503,53.21802812095102],[6.544986723382351,53.21802058725119],[6.544988062365441,53.21801971164044],[6.544998875944104,53.21800955455191],[6.545003899312843,53.21799788401881],[6.545002636381005,53.217985854184434],[6.544992040793201,53.21797314517076],[6.544973756460766,53.21796411656347],[6.544950937725498,53.2179603255348],[6.54492752121742,53.21796242662379],[6.544907546588756,53.2179700570658],[6.544860185809788,53.21799782356961],[6.54485723793557,53.217999559419624],[6.544853825929588,53.21799738169409],[6.544831723941727,53.21798327067396],[6.545058800953226,53.2178507863877],[6.545277682343689,53.21788801631945],[6.545420988120904,53.217930333780416],[6.5455236704501,53.217964074853846],[6.545655254863717,53.21805336008316],[6.545715788570999,53.2180573676618],[6.545787719368129,53.21806206494822],[6.545804294041323,53.218064331222465],[6.54581461744499,53.218066298402746],[6.545854018503294,53.21807896613518],[6.545927293283269,53.21810252172124],[6.545995040972434,53.218124306409706],[6.546027691477562,53.218134801675035],[6.546068935132666,53.21814806261463],[6.546137717889242,53.21817047525807],[6.54621412941383,53.218195420218606],[6.546316950268838,53.218226463372005],[6.54637470246218,53.218242305570584],[6.54641728802902,53.218253118123336],[6.546506769959652,53.21827581584277],[6.546578994237283,53.218290880084716],[6.546640461827978,53.21831629267837],[6.546706711233924,53.21834303394557],[6.546782829794146,53.21837377758201],[6.54683303361117,53.21836328158924],[6.546834332242327,53.218362577088655],[6.546931305773822,53.21830957285932],[6.546981597627769,53.21833863392342],[6.546997976265935,53.21833916756047],[6.547036242278729,53.21831620596224],[6.54707405379627,53.21833824346611],[6.547132647191654,53.21830618884015],[6.547139791131698,53.21828507371602],[6.547194502867813,53.21825287685546],[6.547241471763654,53.218226173603995],[6.547282788588617,53.21820364972056],[6.547302989843618,53.21818930088408],[6.547314747975545,53.218187821273226],[6.547357478969308,53.218128736146845],[6.547392154167569,53.21810755250486],[6.547419361383405,53.21809094323256],[6.54745390825092,53.218072232063214],[6.547516272252143,53.21803844235902],[6.547585448766149,53.21800355330688],[6.547478429963274,53.21793437775092],[6.547449709793357,53.21791581106271],[6.547383737290416,53.21787316165969],[6.547389341917444,53.21786945001685],[6.547366848689109,53.21785138924011],[6.547408958835349,53.21782998991891],[6.547379520899404,53.21780810519914],[6.547445849924556,53.217772003637464],[6.547464029645403,53.2177621135823],[6.547772479105492,53.21786869229414],[6.547803619455681,53.21794561092735],[6.547739703236659,53.218009681875834],[6.547756950260375,53.21801523937394],[6.547611323446211,53.21816318847713],[6.547582223022827,53.21815500474908],[6.547493890531581,53.21824876898149],[6.547458715142943,53.21825131976904],[6.547414514017484,53.21825451497438],[6.547412248506165,53.21825545348953],[6.5473772597409,53.218272209890046],[6.547338254349459,53.21831335816166],[6.547240295472778,53.21841665993883],[6.547226553173106,53.218414501274495],[6.547167574922641,53.21847740984951],[6.547150108865449,53.21849605465971],[6.547171873580179,53.21853103485265],[6.54721394149047,53.21854318211105],[6.547223206172615,53.21854586034275],[6.54724077390153,53.218532678247875],[6.54729711532285,53.21855338628124],[6.547361743002608,53.21857713243778],[6.547427096699069,53.218601150116946],[6.547468513540621,53.21861636793199],[6.547488836426183,53.218623836780516],[6.547558466960134,53.218651003190836],[6.547619035180095,53.21867466265796],[6.547685368807874,53.218700593802424],[6.547748267123655,53.2187245991101],[6.547810454767775,53.21874834166816],[6.547874714833652,53.21877287292027],[6.547882882566663,53.218764805035654],[6.547932817746752,53.21878444246001],[6.547927548346621,53.21879004700643],[6.547918712091596,53.21879942438365],[6.54797584296776,53.21881716795091],[6.547981080708325,53.218813172267666],[6.548051721008357,53.218840005116746],[6.548098133108711,53.218854446493815],[6.548261962119696,53.21890142364892],[6.548311119824832,53.21891551486777],[6.548457703612734,53.218941396898],[6.548691115022708,53.21898581289955],[6.548739061504276,53.21899493722334],[6.548798339953632,53.21900621638998],[6.548800391814683,53.2190090272309],[6.548819202834586,53.21901593536478],[6.548847144509996,53.21902275510048],[6.548889533721925,53.21902899462441],[6.548971268071587,53.219042410723716],[6.549092692852898,53.219060250147514],[6.549250040747211,53.21908439146528],[6.549363862102932,53.21910231323778],[6.549486103266323,53.219122660540414],[6.549637773318038,53.21914777295979],[6.549822238997515,53.219176458522576],[6.549935303485472,53.21919461174847],[6.550098754130468,53.21921960943099],[6.550126641029008,53.219224380510276],[6.550186933520588,53.219231587329844],[6.550283464775328,53.21924235192687],[6.550351386139472,53.219250410311915],[6.550478018218275,53.219263641775406],[6.550550112415032,53.21927097663008],[6.550703799744492,53.21928532944355],[6.550759783690884,53.219287096071554],[6.550808918420061,53.2192891627394],[6.55087748310895,53.21929219121058],[6.550910637442377,53.21929462848748],[6.551020754525405,53.21930115396336],[6.551053154407803,53.21930337385945],[6.551090147493688,53.2193071397804],[6.551130927038768,53.21930973667857],[6.551156860356146,53.21931201028701],[6.551171335797034,53.21931302012357],[6.55119496949188,53.219314408408295],[6.551254378621175,53.219316599883896],[6.551356437821366,53.21932023772233],[6.551409006420915,53.21932249548846],[6.551450941985389,53.21932576402572],[6.551527515892139,53.21932986466871],[6.551576681196794,53.21933306300829],[6.551660466458967,53.219336410624344],[6.551785043449479,53.21934280405847],[6.551836456104287,53.21934438989291],[6.551994814828493,53.21934704938449],[6.552178687035592,53.21935084486269],[6.552249490057389,53.219352475905204],[6.552271155020977,53.219351366910736],[6.552313375241778,53.219350750272426],[6.552414136107595,53.21934731856142],[6.552528099208858,53.219339876437715],[6.552597616050699,53.21933489681256],[6.552615441970501,53.219332450127695],[6.552649980915361,53.21932848416893],[6.552719006512175,53.21931916882861],[6.55279143536545,53.21930891276591],[6.553004799278624,53.219273159045365],[6.553124155343516,53.21925195974325],[6.553225290455917,53.21923299526617],[6.553246145117153,53.219229602445026],[6.553271169880006,53.21922594443597],[6.553280276082512,53.21922494831797],[6.553420543106054,53.21920356347492],[6.553495988287529,53.2191919117393],[6.553616515962114,53.219172533775286],[6.553785151589008,53.21914380944402],[6.554013266532897,53.219103803730405],[6.55432211822276,53.21905186020876],[6.554554801206926,53.219012500975815],[6.554604463671195,53.21900472986368],[6.554653013523032,53.21899789515239],[6.554711034540118,53.218990276316056],[6.554762223953265,53.21898249926719],[6.554904572751535,53.21896839834156],[6.554963986524635,53.21896633737948],[6.554967307287731,53.21896622418385],[6.555051679163931,53.21896248245866],[6.555090078579649,53.218961219063615],[6.555112555925627,53.2189619258808],[6.55514685647754,53.2189641171852],[6.555244773323305,53.21896961626781],[6.555386004800115,53.21898841577264],[6.555516871939539,53.21900320026867],[6.555597206790668,53.21901350722401],[6.555607488982798,53.2189856751525],[6.556095255764514,53.219050020745165],[6.55647217879326,53.219100311502224],[6.556926967905091,53.21915980791763],[6.556965011317618,53.2191558964134],[6.557096341695812,53.21914239455454],[6.557229553675349,53.219110461120316],[6.55733352159471,53.21904467348359],[6.55748228692496,53.21890039317947],[6.557484300241982,53.21889844147228],[6.55752698865621,53.21885541171815],[6.557550875305991,53.21883296441254],[6.557572312514545,53.21881792779537],[6.557636733476852,53.218806165298744],[6.557670238014834,53.21877287644347],[6.557799692037992,53.21864424965103],[6.557795698448817,53.218599060172394],[6.557859182561254,53.21852286537526],[6.557882784552441,53.21850429390496],[6.557912782403955,53.21848306296323],[6.557951065738825,53.218457078254396],[6.558037337757984,53.21840469058554],[6.55823542032859,53.21828488321869],[6.558367665997776,53.21821022768294],[6.558389816331015,53.21819556137996],[6.558458076316551,53.21815644236437],[6.558479673146326,53.21814234758909],[6.55862211294141,53.21805550556988],[6.558643292133356,53.218039815265506],[6.558740241319078,53.217970446407314],[6.558791527297985,53.217929291261015],[6.558811315301566,53.21791143980511],[6.558933154309287,53.217794837956376],[6.558948768854936,53.21777712608203],[6.559023036084002,53.2176973116468],[6.559048278970297,53.21766640358],[6.55910643367824,53.21759035897443],[6.559119330217982,53.217569591292964],[6.559177210175138,53.217444214088765],[6.559184017471599,53.21742360472577],[6.559209204237222,53.217300074512984],[6.559213362603582,53.21728005716358],[6.559225212619605,53.21717375830066],[6.559226901693087,53.217154331212],[6.559229465036406,53.21704124847169],[6.559230136478937,53.217018524332865],[6.559229263017573,53.21692225273889],[6.559228083788504,53.21690250319729],[6.559224621020244,53.216846569815964],[6.559222794575547,53.21682282765444],[6.559220894106759,53.21678641541264],[6.559213218717296,53.216693274610115],[6.559214798633946,53.21666871735861],[6.559211981468632,53.21665205715847],[6.559220536526814,53.216636831532874],[6.55924815890723,53.21658769374735],[6.559242919387682,53.2165788753654],[6.559233462965296,53.21657024195682],[6.559219619617979,53.216560492155445],[6.559209962161522,53.21655106990676],[6.559206234091154,53.216530078179204],[6.559207848885519,53.21649797202146],[6.559208256389037,53.216474899987816],[6.559211524470697,53.21633590258657],[6.559215465741971,53.21608920573951],[6.559218768397728,53.21576097262415],[6.559221506060182,53.21562505371573],[6.559223267501406,53.21547521543397],[6.559221486118734,53.2154448498532],[6.55920507099012,53.21530046412563],[6.559189692202079,53.21514957110677],[6.559182465385124,53.215149722575745],[6.559185084326456,53.21495419807298],[6.559186638323091,53.21478841992817],[6.559188168730191,53.21472669543087],[6.559189031773665,53.21470772571498],[6.559188876049152,53.2146975636275],[6.559184457965165,53.214681485197566],[6.559064279382649,53.21439176056422],[6.55901577914976,53.21427483603364],[6.55893183605987,53.21405322466405],[6.558714259255733,53.2137622311662],[6.558468708698972,53.213437631652184],[6.558448225564809,53.21341420878224],[6.558423468696496,53.21339232355775],[6.558395077000708,53.21337211202994],[6.558363631576132,53.21335360118041],[6.558355158953491,53.21334919967436],[6.558346436773321,53.21334498033157],[6.558253463607104,53.21336236887965],[6.558235008518918,53.21332711565794],[6.558225504354412,53.213308948068985],[6.5581934295974,53.21330642142291],[6.558161876590305,53.213305471281465],[6.558123603120295,53.21330622224353],[6.558083597932423,53.21330936250136],[6.558057959251825,53.21331287477004],[6.558034154236777,53.21331665670362],[6.55796597358748,53.213193148048006],[6.558087830936898,53.21314782670299],[6.558111867800884,53.213136026631425],[6.558130192180341,53.21312666370057],[6.558156073032276,53.2131127517935],[6.558176696717002,53.21310040090459],[6.558205331200905,53.21308258897518],[6.558222255533271,53.21307128066046],[6.558238215452526,53.21305863379713],[6.558250676927718,53.213048366527374],[6.558262036984464,53.213038334666656],[6.558274056033964,53.21302720901876],[6.558285073804841,53.213016147061275],[6.558293805034306,53.213006886727655],[6.558304453629146,53.212994354602905],[6.558312527919475,53.212982395775235],[6.558318828415016,53.2129723773497],[6.558324950161885,53.212958523477795],[6.558330278945658,53.212946896985486],[6.558378660747769,53.212811449049774],[6.558311993642097,53.212807930124036],[6.558312588988497,53.21279067043312],[6.558315655318871,53.2127739976975],[6.55832109443964,53.21275926083476],[6.558387266248118,53.21276107717471],[6.558400418635106,53.21271995284569],[6.558583025898846,53.21214986138385],[6.558668875248861,53.21188181260843],[6.55879665368507,53.21151764913739],[6.558898597462424,53.21121552827739],[6.558917793112665,53.21115494320371],[6.55899534239194,53.21090998033123],[6.55902522723092,53.21072738129212],[6.559040718388443,53.210645561553605],[6.559046675873834,53.21061406892564],[6.55907106100619,53.21060302908314],[6.559076533443724,53.21052823571309],[6.559067267696442,53.21052603468615],[6.559076316306315,53.21048984791842],[6.559093321585647,53.210421924328855],[6.559102178182625,53.21039356659099],[6.559116364626753,53.21034811856735],[6.55917082558079,53.21034988708937],[6.559219599983495,53.21019046808519],[6.559239606940776,53.21012174231137],[6.559260847795623,53.210064300388915],[6.559284814696364,53.210012996502755],[6.559335879627327,53.20995411292946],[6.559375548696143,53.209909979530174],[6.559391199371625,53.209895367488635],[6.559398426116549,53.20988861997962],[6.559472204514013,53.20982442811105],[6.559637156459194,53.209696665037676],[6.559757433024704,53.20960230950379],[6.559862361608582,53.20952159246107],[6.559970656153589,53.209427569493506],[6.56004272966792,53.209359080443186],[6.56014255804793,53.209259244991536],[6.560224062114132,53.209168161654254],[6.560238469325208,53.20914856520945],[6.560294275817994,53.20908246367898],[6.560326093683717,53.2090414261448],[6.56040786723007,53.20892389303091],[6.560482709515491,53.208794763279656],[6.560710815628571,53.20840588288426],[6.561056146107875,53.2078139482762],[6.561160280936487,53.20763146662406],[6.561202231537472,53.20755794262871],[6.561216276037151,53.20756140874039],[6.561336527794651,53.207343003251566],[6.561350389673466,53.207319350131066],[6.561356880107106,53.207305357662],[6.561463739353998,53.20710974683817],[6.561632170795991,53.2067915964368],[6.561799496462956,53.20649013536972],[6.561981171017793,53.206154960242785],[6.562092816519173,53.20595337083721],[6.562096221245326,53.20594702003812],[6.562214116034297,53.205727028007],[6.562329292178829,53.205514440320286],[6.562387872409336,53.2054074941783],[6.562407041906106,53.20537265473904],[6.56242758023492,53.2053353126469],[6.562486058274713,53.20522958061572],[6.562556251465417,53.205095615247544],[6.562642908375235,53.204939076367594],[6.562696954467705,53.20483772808238],[6.562712599719862,53.20480100002314],[6.562737980339974,53.20474634749349],[6.562774099674345,53.20465617421792],[6.562781103185772,53.20463576031759],[6.562796445320488,53.204588988390036],[6.56281063800718,53.20454177840276],[6.562828451030143,53.204475787247624],[6.562844290320024,53.20442032955035],[6.562852720797228,53.2043841394665],[6.562864722507427,53.20432736242342],[6.562899390072546,53.20418876647775],[6.562931716051143,53.20406094123203],[6.562966797391135,53.20392326679859],[6.562990998414578,53.20382911242905],[6.563010296279328,53.20374894406184],[6.563029283234894,53.20368431627253],[6.563054058212695,53.20358375791742],[6.563085969345721,53.2034550200492],[6.563102811196804,53.203381966023265],[6.56311587820569,53.20333521633235],[6.56312850308585,53.203273859037225],[6.563178299602231,53.20314514350136],[6.563189859402959,53.20311837642307],[6.563199306706893,53.20309648272581],[6.563209850480828,53.203067577848444],[6.563201792486185,53.2030651586169],[6.563204294465911,53.20304708933499],[6.563228494496893,53.20295293489339],[6.563275945761318,53.202771024640185],[6.563284599278275,53.20275516861132],[6.563314740484038,53.202668711183776],[6.563292973576488,53.20265364765904],[6.563286448404853,53.20258816459381],[6.563314253454837,53.20248735177216],[6.563338825453457,53.2023907520265],[6.562993124836012,53.20232301969057],[6.563301218298362,53.20159816136337],[6.56353255848804,53.20164232857319],[6.563540879897871,53.20160657081903],[6.563566317999301,53.20142153326847],[6.563577263309829,53.201340287393364],[6.563589049066984,53.20124537388826],[6.563592566292871,53.20117110243722],[6.563591899076436,53.201101455104265],[6.56358714911029,53.20099890352854],[6.56358008881796,53.20090439949582],[6.563575835730703,53.20086798322613],[6.563567699625406,53.200798301295826],[6.563554656860917,53.20070393680317],[6.563536171538109,53.20059709858406],[6.563513655529362,53.20049668025771],[6.563489450941971,53.200393600524286],[6.56345742218855,53.20028622111146],[6.563417762816972,53.20017725401997],[6.563381535921695,53.20009434089187],[6.56333306691484,53.199988299865375],[6.563276110493456,53.19986897020945],[6.563223680558941,53.19977024698692],[6.563164868036886,53.19966629329922],[6.563091155050641,53.19954380284126],[6.563029337130378,53.199439923478295],[6.562950390554647,53.19930765306558],[6.562881828859352,53.19919404450367],[6.562768470952363,53.19900315119397],[6.562675704754188,53.19884689641919],[6.562597869631141,53.19870918706053],[6.562555932702859,53.19863137101096],[6.562496770178587,53.198521579220575],[6.562440436160722,53.198411229485764],[6.562388702970385,53.19830166139912],[6.562340283808439,53.198195637425215],[6.562277335536935,53.19805662274513],[6.562228277144159,53.19794247225115],[6.562153024832392,53.197758699724616],[6.562101353020147,53.1976094647297],[6.56207009691285,53.19752591836017],[6.56199554866205,53.19727159522029],[6.561968354949663,53.19717396321359],[6.561947267751505,53.19707801476236],[6.561913278154496,53.19694448553567],[6.561888850484328,53.196819750247116],[6.5618640277661,53.19668872830489],[6.56184261372694,53.19654049986867],[6.561840309733904,53.19652564087366],[6.561822277483167,53.19640936207939],[6.56182047320087,53.19639196401128],[6.561810635294052,53.19629694777952],[6.561797411484764,53.19615935095959],[6.561791789048232,53.19602338711935],[6.561788695533368,53.19595134608606],[6.561786282091824,53.19586577378383],[6.561785843234365,53.1957404979772],[6.561786801318743,53.19566115620853],[6.561792524800358,53.19555285835772],[6.561798180236993,53.19545197499145],[6.56180439376517,53.19536007260766],[6.561807558353062,53.19531955765161],[6.561812699322815,53.19525373546416],[6.561822623453348,53.19514914380976],[6.561834532616563,53.195052629504325],[6.561867756128676,53.19484226376518],[6.561881531139979,53.19475109608346],[6.561889658535273,53.19471094588847],[6.561900971353509,53.19465529880736],[6.561929979179683,53.19452059532168],[6.561951580432819,53.19441126123521],[6.561981991010794,53.19429901910894],[6.562024279462137,53.19416131882136],[6.562029850365033,53.19414330032927],[6.562069094113188,53.194016368654985],[6.562129852894381,53.19383866839743],[6.56219255641211,53.19366812922295],[6.562237618369021,53.193551052531724],[6.562301793292452,53.19340386365413],[6.562368998032833,53.19325750774579],[6.562438542561784,53.19312459057854],[6.56251622915653,53.19297799706203],[6.562603954100139,53.19282309148327],[6.562720061326476,53.192631215933496],[6.56279572427268,53.19249391606208],[6.562841216985524,53.1924296842392],[6.562842126555787,53.19242956748587],[6.56296309938949,53.192257135604834],[6.56321334073923,53.19188508691116],[6.563411732806085,53.19159011080453],[6.563680385588571,53.19118945624442],[6.564156021683544,53.19048567832595],[6.56425841742447,53.190333655804196],[6.56438154392329,53.19015721116599],[6.56452810353583,53.18993470534847],[6.564623838705575,53.18974145501517],[6.56468150952294,53.189624064678945],[6.564692595426661,53.18960148965587],[6.564760103717123,53.18945964934631],[6.564722430010114,53.189449774666606],[6.564748007468502,53.18939452631956],[6.564803142555224,53.18927635202075],[6.564863243998295,53.189109781691556],[6.564898135206266,53.18897347371031],[6.564928775632962,53.18881842572176],[6.564939260545901,53.18871992085256],[6.564932207036255,53.188636685491],[6.564916470370759,53.18855874755291],[6.564867415704226,53.18843854089236],[6.564686947018553,53.18808004506845],[6.564645412098105,53.18798321918096],[6.564624533994706,53.1879087465331],[6.564620326719299,53.187842108176305],[6.564623203916045,53.187799394159846],[6.564630979937577,53.18776076582653],[6.564653594829474,53.187701143175246],[6.564689859971768,53.18764282433207],[6.56475394692331,53.187567787043506],[6.564840930962767,53.18748749244975],[6.564959107695651,53.18739341174073],[6.564985881070705,53.18737445692827],[6.565052021388913,53.18732761684806],[6.565112088553111,53.18728631813279],[6.565145444664016,53.18726406349476],[6.56525006635462,53.1871941993912],[6.565472456333755,53.18705380254513],[6.565600862205618,53.18696734904507],[6.565654808169086,53.1869265595175],[6.565753845751856,53.18684398902333],[6.565823022133134,53.18677465245599],[6.565913353537574,53.186663590369854],[6.565957225145976,53.18659351391573],[6.566004815410023,53.18648970157754],[6.566023772268622,53.18642220647666],[6.566035697657808,53.18633824535866],[6.566041726443023,53.18624652395863],[6.566039170023648,53.186174657213016],[6.566023885283647,53.18605843248337],[6.565986148577261,53.18588689196275],[6.565934303122992,53.185730138071136],[6.565866972802912,53.18555412553657],[6.565836509915822,53.18546833440152],[6.565823879439642,53.18538910786276],[6.565834865666391,53.18530911002191],[6.565854887968646,53.18525876863869],[6.565891311550192,53.18519541537079],[6.565917977667088,53.18515830867455],[6.565985108871669,53.1850853974625],[6.566130979808976,53.18494835741807],[6.566277373943131,53.18482506136738],[6.5664375123784,53.184701090785026],[6.566672940425609,53.184529200423604],[6.566754171052025,53.18446759886465],[6.566893125705085,53.184367317706496],[6.567044168223488,53.18425718508273],[6.567197663223956,53.184149238804466],[6.567259744811834,53.18410414477788],[6.567304218065572,53.18407056495181],[6.567360046339304,53.184038095524556],[6.567409682001226,53.18400401552839],[6.56746024008213,53.18397797832987],[6.567515390127419,53.18395026935766],[6.567566773046745,53.1839297956202],[6.567609662777098,53.18391495911472],[6.56767672406244,53.18388407741172],[6.56791216961321,53.183788281967686],[6.568151895449445,53.18369039497867],[6.568198440360473,53.18366972597339],[6.568267184266246,53.18364406648786],[6.568337409467681,53.18361896750792],[6.568420342954947,53.18359194600918],[6.568520863462433,53.18355758896674],[6.568593683861744,53.183534405351814],[6.568725998004895,53.183489786860974],[6.568894598610696,53.18343563544266],[6.568964284494361,53.18341272512225],[6.56924215225672,53.183321361656475],[6.569441591006464,53.183252688840234],[6.569588142711122,53.183205242053994],[6.56980648659753,53.183134270388145],[6.570002901953636,53.18306943671376],[6.570164916362285,53.18301580675359],[6.57029860668295,53.182971846909695],[6.570393146521259,53.18293552531285],[6.570458739985143,53.182906894141226],[6.57050865581181,53.1828815539245],[6.570562926902399,53.182848082857575],[6.570590956756279,53.182826031960495],[6.570629999578567,53.18279532621086],[6.570684561855921,53.182747348000134],[6.570758428962053,53.182682122850196],[6.570810721703965,53.18263540711539],[6.570868426744307,53.18258803583745],[6.570923915255788,53.18254768689506],[6.570984359958931,53.18250914920576],[6.57104988996652,53.18247112743102],[6.57113700941739,53.18243157145272],[6.571225765447263,53.18239497378286],[6.571313223754312,53.18236671934857],[6.571400508387693,53.18234524238805],[6.571503829278222,53.18232539530324],[6.571636031809891,53.182305361714455],[6.571669705132927,53.18230151538922],[6.571719230872766,53.18229585895065],[6.571867740475573,53.18229172290752],[6.57202838961114,53.18228621761264],[6.572260436880916,53.182285497293655],[6.572343169705071,53.18229120386951],[6.5729368680586,53.18233869670161],[6.573213234135178,53.18240268847501],[6.573318255234845,53.18242906756651],[6.573395075895331,53.182457019580674],[6.573508362550419,53.18249950144244],[6.573673506587414,53.18257880007155],[6.573834278138679,53.182656829713416],[6.5739111355061,53.18268609306677],[6.574009959109858,53.18272427825214],[6.57407364720255,53.18274845067673],[6.574152530040013,53.18277246368332],[6.574239508082973,53.182785639657936],[6.574277883385265,53.182789591277846],[6.574281468872545,53.182789960177374],[6.574322098383046,53.18279264933049],[6.57437342572126,53.18279103586419],[6.574399068895374,53.18278839158512],[6.574428277342797,53.18278537950229],[6.574479004404921,53.18277824523214],[6.574535274251024,53.18276212347228],[6.57457812598952,53.18274493934228],[6.574607694233939,53.18272342043521],[6.574652568356758,53.18269979988642],[6.574781359059989,53.182626317910255],[6.574898702164873,53.182552724509875],[6.575027831384348,53.18247035125014],[6.575198347770833,53.182367617785935],[6.575298982425535,53.18230556642603],[6.575337508430419,53.182280148299995],[6.575420423669022,53.182225470591604],[6.575491830161443,53.18217824884677],[6.575551393876411,53.18213884585753],[6.575671904078078,53.1820521179529],[6.575766446220038,53.18198397979327],[6.575888295662449,53.181901381168345],[6.575996635525784,53.18182256486752],[6.576161617649504,53.18169934167614],[6.576294727333128,53.18159596199459],[6.576383335738852,53.181520459304835],[6.576433374616471,53.181474194752525],[6.57646872241098,53.18144150173041],[6.576453645329614,53.181424693707726],[6.576414143966588,53.18138462817306],[6.576373820373528,53.181338046570566],[6.576361163488953,53.18130751010228],[6.57633231136537,53.1812597543166],[6.576286824769326,53.18118314602182],[6.576251025501241,53.18111284004913],[6.576219670520983,53.18104421540789],[6.57618098519299,53.18094508233235],[6.576147377159336,53.18086195780245],[6.576119006723794,53.18077508787452],[6.576101020983513,53.18068941802236],[6.576087512866343,53.180609913453964],[6.576075121085082,53.18051604634939],[6.576064653007779,53.18042413720208],[6.576054182083872,53.180339201616064],[6.576042564729383,53.18025772821523],[6.576029529335855,53.18017581954444],[6.576014313660575,53.18011745918603],[6.575992978894228,53.18005797326887],[6.575972799891579,53.17999862866006],[6.575947057325899,53.179947489972555],[6.575912594152015,53.17989418211321],[6.575871723602032,53.17982707156364],[6.575816098608334,53.17975159702159],[6.57573790782008,53.17965784288428],[6.57565808292744,53.17956557868035],[6.575589053756419,53.179482948816364],[6.575543212667214,53.179409111578856],[6.575499969115451,53.17933071937682],[6.575486115886224,53.179297426812994],[6.57547430563058,53.1792530066657],[6.575469382342005,53.17920172446159],[6.575472958665011,53.17914238698631],[6.575493006288958,53.179086939202186],[6.57552191494719,53.179038781531695],[6.57557210868023,53.17898896607845],[6.575635285075987,53.17894891608872],[6.575707389830609,53.17891316299105],[6.575787181384706,53.17888388482754],[6.575901638996124,53.178855431206586],[6.576022716414004,53.17883163875387],[6.576127238466495,53.17881124547632],[6.576225807360902,53.17878542037463],[6.576317135519345,53.17874758911203],[6.576378006210589,53.178714031880965],[6.576427835896511,53.17867006989055],[6.5764829538705,53.17862096007013],[6.576542038837371,53.178565978622736],[6.57658957286627,53.17850326648626],[6.576632765940203,53.17844208016498],[6.576672576827615,53.17837975014242],[6.576709624288775,53.178313754057406],[6.576727161124116,53.178272062352704],[6.576734855918778,53.178253788308865],[6.576758739415526,53.17819756533479],[6.5767723961972,53.178139880156095],[6.57677922330675,53.17807697865457],[6.576775424254113,53.1780018890068],[6.57674813276267,53.17791071288973],[6.576678921494447,53.17782034802236],[6.576638425535876,53.177759219003974],[6.57660349965747,53.17769938269861],[6.576575251696287,53.177647406258146],[6.576568257197561,53.17763727593212],[6.576558494764644,53.17759554948114],[6.576551914588636,53.17755640654297],[6.576550200043431,53.177503268255656],[6.576555238840432,53.1774645492594],[6.576567193537705,53.17742657045021],[6.576577074005109,53.17740727722674],[6.576587294590162,53.17738729765259],[6.576609323700925,53.17735450298334],[6.576648618287556,53.17731315261221],[6.576689936720564,53.177276868523776],[6.576695151957783,53.17727341988098],[6.576778275548434,53.177218568255405],[6.576846654961479,53.17717911298985],[6.57686551651717,53.17716822290099],[6.576898410064699,53.17715140626261],[6.576932985348977,53.17713863483836],[6.576968131273803,53.17712812234647],[6.57701554542678,53.17712043568902],[6.577086060536879,53.17712331259131],[6.577135271616288,53.17713365300029],[6.577261937779978,53.177160451847996],[6.577337256543359,53.17717374124435],[6.577417347593178,53.17718379300578],[6.577504943486095,53.17719043621224],[6.577608982556226,53.17719343832482],[6.577692837770488,53.17719187788558],[6.577785847369688,53.17718488849385],[6.577875986949191,53.177173074804365],[6.577964164208185,53.17715844079139],[6.578053612452647,53.17713835724075],[6.578132533221923,53.17711511607457],[6.578200711478654,53.17708851275936],[6.578286059268929,53.17704662351088],[6.578363897789661,53.177000917631496],[6.578472264009494,53.176917686204334],[6.578490371560678,53.176897897695845],[6.578540845918631,53.176842731151034],[6.578610388840771,53.17674564166944],[6.578655614290011,53.17665249622966],[6.578675913544701,53.176577580506695],[6.578681507658667,53.17646565159736],[6.578680757938066,53.17631181862068],[6.578673795980772,53.176146940013616],[6.578665507296084,53.17607567830021],[6.578652840804713,53.176035014295365],[6.578636597282362,53.17600133242186],[6.578621219883956,53.17596270833351],[6.578572035026972,53.17587884046916],[6.578532285202062,53.17582093978426],[6.578516546671389,53.17579581704149],[6.578494581322823,53.17576074516567],[6.578451985742317,53.17568856616711],[6.578417317986166,53.175609334841724],[6.578403909086753,53.17555092079338],[6.578397805129505,53.17549326093155],[6.578401909205891,53.17544782019207],[6.578418012860189,53.17539654480254],[6.578435994126794,53.17535534263298],[6.5784668101122,53.17531256611183],[6.578511087187258,53.17526760690758],[6.578575843518056,53.1752249334708],[6.578634922856139,53.17519500539528],[6.578699040658916,53.17517261185651],[6.578785808190449,53.17515582545326],[6.578874292801365,53.17514599547222],[6.578874963706419,53.17514591691201],[6.578931629567647,53.175146225405314],[6.578996963644464,53.175148999888215],[6.579052330582412,53.175154281802946],[6.579115897930451,53.17516350814212],[6.57925611588509,53.17518777973443],[6.579492852254416,53.17523214688801],[6.579655228605472,53.175267511722375],[6.579801210075106,53.17530117021069],[6.579947431362875,53.1753315819974],[6.580053792858081,53.175352253347356],[6.580136616374937,53.17536331853341],[6.580216740403721,53.175373035582034],[6.580310606305256,53.17537556140618],[6.580381651668508,53.1753766068104],[6.580451051048731,53.17537274393107],[6.580516028606101,53.175364198100944],[6.580608033941118,53.17534535425143],[6.580656482285755,53.175331329316094],[6.580689320164042,53.175321818216624],[6.5807374768978,53.17530915311785],[6.58078612536844,53.17529154050893],[6.580858494761991,53.17525978956062],[6.580916453004924,53.17522722946923],[6.580918765440828,53.175225930358806],[6.580947613898036,53.17519976191766],[6.580957171641694,53.17519000623196],[6.580971037440116,53.17517484269042],[6.580997634240333,53.17514350243527],[6.581032457678631,53.1750959044945],[6.581070320510683,53.175032154428884],[6.581104144845452,53.17494996823825],[6.581156373611322,53.17478834647874],[6.581197291801237,53.17465048090523],[6.581214061701418,53.17453294070686],[6.581213638762133,53.17446338909674],[6.581200334619172,53.1743790750624],[6.581169655023099,53.17429979576953],[6.581126300682789,53.174209436462625],[6.581068990444664,53.17412119314037],[6.580989211311431,53.17399483691936],[6.580942445848419,53.173914720216274],[6.580896990411949,53.17382678114696],[6.580863111313556,53.17375293453371],[6.58085826519089,53.17373774160429],[6.580854598714191,53.17372627533216],[6.580840241698543,53.17368130582132],[6.580830443809359,53.17360966379628],[6.580828363063939,53.173553734297876],[6.580832344610982,53.17351099959679],[6.580834409160343,53.17348878228325],[6.580846322414257,53.17341693309752],[6.580875028822348,53.17335745294959],[6.580918901234051,53.17329201649288],[6.580984189175269,53.1732265105775],[6.581058954619299,53.17317547744159],[6.581075630921253,53.173164087196454],[6.581167435686169,53.173119714094916],[6.581186195173051,53.1731106485771],[6.581281011153207,53.17307893440023],[6.581382582558708,53.17306114491341],[6.581405727708728,53.173057086117396],[6.581581500313942,53.1730345224209],[6.581858186841525,53.17302672439116],[6.58232151420359,53.17303032960378],[6.582544946088295,53.17302812922243],[6.582718874352767,53.1730119177565],[6.582868183827657,53.17298377477701],[6.582997978779805,53.1729422295933],[6.583106449358598,53.17289702376468],[6.58320533042155,53.1728446972957],[6.583313912025318,53.172779710774414],[6.583402827628858,53.17271641212571],[6.583505121129805,53.17263551906242],[6.58361625595253,53.17255147326894],[6.583623760677688,53.17254594354565],[6.583705710917958,53.17248553594338],[6.583765663327405,53.17244579222353],[6.583834810012659,53.17240970410009],[6.583887656074864,53.17238287302232],[6.583939068124427,53.17235935429811],[6.583978033227188,53.17234274464013],[6.584023709855056,53.17232762264721],[6.584097483773983,53.17230852667866],[6.584159015694856,53.17228968767844],[6.584209450855391,53.172275201085625],[6.584267926271557,53.17226211697701],[6.584332481541159,53.172249852815966],[6.584399893459228,53.17223921362087],[6.584460752417338,53.172228496039594],[6.584522569302205,53.17222050975926],[6.584579569736253,53.17221466541458],[6.584639355479914,53.17220840680321],[6.584645816247143,53.17220785700354],[6.584701486840313,53.17220314021468],[6.584752100529898,53.172200522843454],[6.584805633949999,53.17219964663737],[6.584867013364927,53.17219909642716],[6.584925390772824,53.17220085875899],[6.584996743726742,53.17220239258165],[6.585004091588413,53.17220255282451],[6.585071680106445,53.17220478921545],[6.585159658782379,53.17221153079236],[6.585229330166338,53.17221715218683],[6.585319668899256,53.17222648515135],[6.585407483061653,53.17223538496368],[6.585492832954558,53.1722438689998],[6.585576755452695,53.1722526548121],[6.585674708577865,53.172262585394556],[6.585755371374047,53.17227139467952],[6.585915829874652,53.17228848256306],[6.585977440878872,53.172294130191894],[6.586024155632896,53.17229707799783],[6.586067056195735,53.172298931618734],[6.586109672741226,53.17229917048473],[6.586144240448421,53.17229824069199],[6.586185079536968,53.1722964034384],[6.586290321995887,53.172285474724994],[6.586355867299502,53.17227279517456],[6.586413996454978,53.17225857218554],[6.58647065146247,53.17223972685111],[6.586526315712014,53.17221751245552],[6.586571912996732,53.17219632435324],[6.586612605701373,53.17216869700499],[6.586684208503206,53.17211987565584],[6.586810222926384,53.172024166195186],[6.586881367425335,53.17196745911222],[6.586930734508559,53.17192905085269],[6.586975058893961,53.171895950168704],[6.587036850305194,53.171855242787736],[6.587084198460952,53.171826020953645],[6.587165522205955,53.17178315895787],[6.587267970479765,53.17173353426494],[6.587351838385089,53.17169236310618],[6.587369767865404,53.171684176607705],[6.587445133957467,53.17164977648493],[6.587550111638394,53.171604556595945],[6.58755739788096,53.17160141923185],[6.587651401487812,53.171563884789634],[6.587753265013802,53.17153204093845],[6.587826138075385,53.17150807196905],[6.587880875924795,53.17149026063204],[6.587910936754422,53.171477845703826],[6.587928005099395,53.17150116563272],[6.588004715619675,53.171482370326046],[6.588046652584143,53.17141932296853],[6.588123563242347,53.17130370438726],[6.588162846446314,53.17123935355366],[6.588204605484231,53.17117098787143],[6.588318871404419,53.17097817782571],[6.588388251532396,53.17084292696092],[6.588455090052812,53.17069317024183],[6.588500841232788,53.170578995877094],[6.588556483658463,53.17041168368296],[6.588605043614401,53.17025108349296],[6.588645572719821,53.17009265761992],[6.588678608098877,53.16991049242501],[6.5887091699262,53.16969471528443],[6.588744182669742,53.169443180899215],[6.588774283748825,53.16925878042652],[6.588787061885069,53.16916526395907],[6.588795826768112,53.16910119175731],[6.588796768183528,53.16910170354288],[6.588799030710092,53.169087850540066],[6.588840654578393,53.16886602230898],[6.588866146354508,53.16874026039673],[6.588889829675608,53.16865764314176],[6.588901134991766,53.16861829446614],[6.588919893621276,53.16855437369358],[6.588945741710099,53.16846624392866],[6.588956821708981,53.16842847913938],[6.589007402479113,53.16826430870656],[6.589075491767124,53.16806717072439],[6.589107691983684,53.167989167997234],[6.589146525275991,53.16793516479498],[6.589216450533016,53.167869904204316],[6.589279842862468,53.16781604114079],[6.589405209760953,53.16772412601665],[6.589479833751317,53.167561693967606],[6.589480224430234,53.16743329409727],[6.589451210053869,53.16724336896923],[6.589816790155074,53.16644021672665],[6.589598570747361,53.166389749042345],[6.589482710234169,53.16636295378911],[6.588837173827387,53.166233656755914],[6.588577360216906,53.166145720926515],[6.588375251311986,53.16605118537555],[6.588100156417117,53.16591848672946],[6.587845377331139,53.16579951318633],[6.587721078054924,53.165736854459574],[6.587717950417065,53.16572005392489],[6.587716955370337,53.165699808149],[6.587621029835791,53.165694532032234],[6.587617075479494,53.165616631062065],[6.587565636821836,53.16554983667029],[6.587483953657833,53.16549569262737],[6.587362327436635,53.165457665932216],[6.587249468312378,53.16543812660557],[6.587076366461196,53.165357281628054],[6.58696373959741,53.16530887483069],[6.586846374841244,53.165256228743736],[6.586706316913411,53.16521622006694],[6.586587291276102,53.16518132984624],[6.586423208615055,53.16511721656841],[6.586384237112351,53.165102553895544],[6.586309391670037,53.16507438375693],[6.586157056865796,53.16499761633878],[6.585903644548431,53.16487090557362],[6.585788705797151,53.164813435372714],[6.585670340551358,53.16475425592244],[6.58556582144298,53.164704221079155],[6.585299061421342,53.1645765101673],[6.584986619021408,53.16441685850985],[6.584723438896867,53.16430816209998],[6.584521300308639,53.16422382916274],[6.584401006277585,53.16418832938693],[6.584271721417451,53.16416295727423],[6.584028086822203,53.16413426036674],[6.583794008596873,53.1640866586793],[6.583638483180534,53.16403916225219],[6.583618757942352,53.16403314040562],[6.583466116646208,53.16396824392557],[6.583439336639616,53.163953674324006],[6.58338574568111,53.16393261434168],[6.583268072374011,53.16388636630545],[6.583221492030513,53.163869001677995],[6.583121534329813,53.16382801362881],[6.58301447643395,53.16375949855483],[6.582907695044593,53.16368149080621],[6.582904688562611,53.16367929212337],[6.582805516079409,53.16362230886653],[6.58276612974599,53.163608233293395],[6.58273740277361,53.16359840989174],[6.582579863759988,53.16357211354024],[6.582497631848412,53.16355839321683],[6.582383010129222,53.16354082599571],[6.582324918500023,53.16354140515104],[6.582152790435063,53.163545619315855],[6.581904484219171,53.16357179176919],[6.581842305390745,53.16357490070363],[6.581666055777225,53.16358040437475],[6.581514676409787,53.16358440189474],[6.581450331490823,53.16358379379162],[6.581383805587501,53.16357946896616],[6.581302215686851,53.16355865102477],[6.581271541008261,53.16354542279136],[6.581217876534453,53.16352163964935],[6.581123672735498,53.16347990067277],[6.58091539900031,53.16340477114314],[6.580702079657271,53.16332721119508],[6.580499691478567,53.163250728287224],[6.580326501760524,53.16319412929005],[6.580133204678213,53.16314961038687],[6.579995936137915,53.16311267553196],[6.57987238686031,53.16306351708988],[6.579741963145548,53.16300797455059],[6.579724970744964,53.16299961533348],[6.579605069734622,53.16294065192327],[6.579573586721186,53.16292518465712],[6.57948569423884,53.1628855563798],[6.579396552327073,53.16285539433722],[6.579349104707635,53.162840103754874],[6.579242022404159,53.16281818995024],[6.579124398482043,53.162799535151294],[6.579025507786179,53.162777521733005],[6.578910906160583,53.162745887029565],[6.578821623794687,53.16271276937758],[6.578663813597268,53.16265141399631],[6.578502328623812,53.162582564182074],[6.578321387010743,53.16251629790707],[6.578155090170324,53.16246273666472],[6.577925933519713,53.162392347672984],[6.577719277954095,53.162331080818724],[6.57752478207024,53.16227915572909],[6.577377733960067,53.162245280576386],[6.577284717745604,53.162220942793574],[6.577213246792081,53.16219491726332],[6.577099769332023,53.162149673003334],[6.576768325736706,53.1620009097261],[6.576413666409901,53.16184736134755],[6.576216601628866,53.16177253489959],[6.576120026939416,53.16173616255408],[6.576018362554383,53.16171318566245],[6.575855481924409,53.16168689756338],[6.575693549241663,53.16164556531567],[6.575507123335057,53.161586196970525],[6.575303387700835,53.161517186566115],[6.574943821086099,53.16138172754744],[6.574789743807321,53.161325254766446],[6.574633930961412,53.16127036264414],[6.574462851546381,53.16122962259972],[6.574310493233131,53.16118890361088],[6.574039214217625,53.161090140404184],[6.573450793289065,53.16090322084901],[6.572860579957507,53.16070908197185],[6.572525909314633,53.16059497322759],[6.572139287450964,53.16046411390922],[6.571763540888068,53.160348117508065],[6.571567616037243,53.16028763275638],[6.570993697284185,53.1600834655085],[6.570390712719307,53.15988349159139],[6.569809317795718,53.15969423832444],[6.569222738195662,53.159494519105216],[6.568608687915502,53.159290592477674],[6.568302998329483,53.15918297127208],[6.56554590111421,53.158257988402774],[6.565238223152533,53.15815476444045],[6.565074308854706,53.15810017327234],[6.564341785128131,53.15785623961439],[6.563890364834146,53.15770591426755],[6.563687437797371,53.15763833217988],[6.56365248764154,53.15762669252473],[6.563658314574418,53.15760269872545],[6.563842742731933,53.156843253679135],[6.564219168460877,53.15592915126385],[6.564602437640859,53.15496764779198],[6.56515959481151,53.153481837488634],[6.565383110943932,53.15298577868572],[6.565522555441195,53.15242104368205],[6.565624838427405,53.15209716369501],[6.565735536478067,53.151993331666574],[6.56598469790003,53.151880939563235],[6.566655837647123,53.15187571704034],[6.567079199114313,53.15177537301856],[6.567140678546346,53.151723600266294],[6.567262513771741,53.15160156265031],[6.567402788703338,53.151351729308054],[6.567445835020028,53.151099411392146],[6.567518663437975,53.150264680364856],[6.56753345863442,53.14898718052087],[6.56750035655105,53.14879792533943],[6.567326555750739,53.148199552491505],[6.566812689637432,53.146775620254324],[6.566694595913315,53.146498841440305],[6.5665227218537,53.14626467418098],[6.56630458174207,53.14604831679816],[6.565473314212761,53.145279834563475],[6.56543767942081,53.145222338163094],[6.565265104038792,53.14490664593824],[6.564915898890356,53.144160420302256],[6.564856105871446,53.14402735014208],[6.564815116669345,53.143706540248004],[6.564996963557477,53.1425920090963],[6.564982380687154,53.14161435540165],[6.564916346503517,53.1409617945547],[6.564825867671856,53.14041795568912],[6.564731506346912,53.139455383020426],[6.564628898934231,53.13877105384875],[6.564305895720128,53.137801704257114],[6.564288884093191,53.137701113375435],[6.564261668636765,53.136809238302185],[6.564122170492889,53.136258093519686],[6.564900940313491,53.13634812588761],[6.565848908918189,53.1364268289993],[6.566591759592204,53.13647541321711],[6.567030770538061,53.13561657855499],[6.567715849338031,53.13422020537743],[6.567703164465481,53.13383929248579],[6.567727812446526,53.133738080284175],[6.568196088829423,53.13279661301909],[6.568579598380517,53.132371691313125],[6.56876643373532,53.13231376335464],[6.570154393119712,53.13098196061609],[6.570435702208218,53.13075919866324],[6.570637109957143,53.13064732070683],[6.571554808886013,53.129965300778984],[6.572790024175267,53.1289708653659],[6.572889123043946,53.128873933836964],[6.572845211321363,53.128810032912064],[6.572570392549316,53.12862891215967],[6.5725485849146,53.12855902658982],[6.572573923972088,53.12850809652792],[6.573156006150167,53.12812057375425],[6.573909325138471,53.127566386252866],[6.574648964973343,53.127005436286325],[6.575492066098774,53.126026098873055],[6.573535712286164,53.12557563730896],[6.572136490043559,53.12520939609032],[6.573525686958387,53.124146716681864],[6.575720345468761,53.122440626758426],[6.575819797573587,53.12231082495628],[6.575808987105859,53.12224672238084],[6.575799131938618,53.122219096251],[6.575795049784545,53.12220097467059],[6.575782940309513,53.12214724662321],[6.575810327584095,53.12214523147535],[6.575707960563623,53.12175102182924],[6.575642806961756,53.12150012197532],[6.57556507621251,53.12120072887931],[6.575487932538703,53.12090363946679],[6.575436691987382,53.12070626093737],[6.575038385322018,53.12051788706285],[6.573708824273592,53.11988905459887],[6.572557101247944,53.11934430100358],[6.576674384774688,53.11619353714795],[6.577858744540156,53.11675309452564],[6.580196162201192,53.117859969578994],[6.580264918244534,53.117892526603015],[6.580294531764832,53.11614030187998],[6.580336464361769,53.11530525376614],[6.580376109173062,53.115124266184864],[6.580432445986204,53.11496019572515],[6.580580048670202,53.114722002467744],[6.582333258752338,53.112686276454085],[6.582403298234608,53.11257819798783],[6.582432985075548,53.11247784363275],[6.582418061471544,53.11237793442972],[6.582243451713975,53.11207706151485],[6.582126447842334,53.11165847265424],[6.581310913961353,53.11155908017674],[6.581691032267213,53.11107083082475],[6.58190218506042,53.11082505437311],[6.582062098050946,53.11075043757382],[6.582621062277314,53.11054778927049],[6.582525141613528,53.11045199192502],[6.58254927803074,53.11031659969649],[6.582684607503218,53.110105525810255],[6.582784550890247,53.109978246733654],[6.582887769155604,53.109866850363325],[6.583763346678477,53.109043333453236],[6.584588691439945,53.109170515029874],[6.585466780306128,53.10930872020895],[6.58555493048783,53.109322594178444],[6.586174206706771,53.108555261458996],[6.586263695939024,53.10841770039439],[6.586670185713063,53.10756923513338],[6.586768867411847,53.10732420172281],[6.586947993656037,53.10646825044816],[6.587178061093135,53.10584119014856],[6.587885182122252,53.104133108594056],[6.58835505521596,53.103232750833335],[6.588476963426101,53.10294843543936],[6.588757738431902,53.10195723494525],[6.58882308217311,53.10182723531166],[6.589584544266204,53.1004749016609],[6.589623325925452,53.10026463331853],[6.58960635871778,53.09994510376722],[6.589613766084105,53.09962020040865],[6.589686221454689,53.09921803345868],[6.58976300224363,53.09902910320874],[6.590034217029831,53.09845180101057],[6.590247242490243,53.09797054492188],[6.590438612020501,53.09748436102671],[6.59050904024678,53.097286335267476],[6.590558831539742,53.096911652645154],[6.590580658942037,53.096487747331146],[6.590790868099116,53.09640065569728],[6.593755898418436,53.094680910607124],[6.594141462997029,53.09442782134341],[6.594551655981522,53.0941409213024],[6.596374917835318,53.09265241445848],[6.596706382594625,53.09229248234003],[6.59632109389073,53.09165572926714],[6.595352284580909,53.09005451737713],[6.595173725864763,53.08977056571079],[6.594654612922952,53.08898611379122],[6.59434157264454,53.088462985244725],[6.59407411027145,53.08802083484001],[6.593864036729152,53.08767976416899],[6.593682107487219,53.08739198884056],[6.593510707044093,53.08709089654074],[6.59335198947942,53.08682015945914],[6.593200587378182,53.086535436893776],[6.593102309413163,53.08634145805151],[6.593033908241265,53.08617946781297],[6.592925903955746,53.08593728268696],[6.592853305479263,53.08573967495147],[6.592762836054654,53.085513947659514],[6.59269418823027,53.08531987678046],[6.592619242078876,53.085083882896356],[6.592532195693639,53.08477977392897],[6.592475004212456,53.084557431877656],[6.592408798366326,53.08424103469984],[6.592363044636606,53.08396452175069],[6.592333181950075,53.083756085670416],[6.59231004191631,53.08359462786689],[6.592267380578129,53.0832574227139],[6.592250371121842,53.08297646840388],[6.592246628086699,53.082762089663134],[6.592246914920988,53.08256437683524],[6.592265223861844,53.08177882562719],[6.592277398137238,53.08119056072457],[6.592294212881708,53.080496366269514],[6.592316537612275,53.07987486452786],[6.592324656134957,53.07967004498546],[6.592344029984746,53.07931695533006],[6.592526260840986,53.07932261566235],[6.592526810815569,53.0792607268466],[6.592527267995081,53.07920947037848],[6.59238264386265,53.07918598802451],[6.592389008288628,53.07916419380709],[6.59239211828555,53.07912623809388],[6.592365599465563,53.07857798514921],[6.592368519025391,53.0783348171453],[6.592386149938202,53.07780287103787],[6.592389795954587,53.07743858914078],[6.592419023170357,53.076481511872785],[6.592444273637991,53.07592090160911],[6.592467060421868,53.075524739191444],[6.592576232554119,53.074766813460705],[6.592601980632574,53.07458808456357],[6.592626892821221,53.07445020026242],[6.592655528186674,53.074287870199676],[6.592673203821484,53.07420484252332],[6.592699453612993,53.074084513988836],[6.592731635948337,53.07394837176429],[6.592762046440042,53.07381613867113],[6.592793339761769,53.07368776101355],[6.592818207758632,53.073593463252216],[6.592861068710168,53.073437801832796],[6.592907800665817,53.07328344942283],[6.592949032322501,53.07314651497095],[6.592978001559197,53.07305967985736],[6.592998092340613,53.07299488004353],[6.593058219980756,53.072811401044625],[6.593104279421262,53.07268284753667],[6.593155100876679,53.07253825842995],[6.593214053743449,53.07237645843774],[6.593257682843013,53.07226573227534],[6.593309784376226,53.072136641475616],[6.593378411994544,53.07196971125333],[6.593452571943645,53.07179837559263],[6.593542010158776,53.07160768099935],[6.593629232729613,53.07141997431446],[6.593717492881772,53.07123956339941],[6.593790680510732,53.07109668963949],[6.593806351310083,53.07106621003693],[6.593883981929753,53.070919472008164],[6.593979376180286,53.07074832627356],[6.594069743073672,53.07058637076753],[6.594167703792085,53.07041313200125],[6.59426172109812,53.07025640580894],[6.594262020863388,53.07025591749588],[6.5943689516159,53.0700892653082],[6.594482873322724,53.06991005076931],[6.594578119777958,53.06976433876101],[6.594679833156614,53.06960760644984],[6.594773323820945,53.06946694461529],[6.594867934789776,53.06932581306402],[6.594978280816593,53.06916624338239],[6.595066225710187,53.06904298188219],[6.595151644139279,53.06892385280098],[6.595239632296278,53.06880218139445],[6.595351437575446,53.06865332690492],[6.595442893350772,53.06853298633126],[6.595545731359948,53.06840133314161],[6.595666116378375,53.068248284710975],[6.595669149241178,53.06824467731855],[6.596096917775287,53.06773570027019],[6.596540576884449,53.06723568264906],[6.59652191598825,53.06722993088403],[6.596589973799095,53.067149862231375],[6.596574127469321,53.067139633536385],[6.596561821339171,53.06712634049439],[6.596547681296467,53.067111484293385],[6.59654301532987,53.067087518537384],[6.596556879121721,53.067039954768255],[6.596580802664151,53.06700699185838],[6.596667770836266,53.066925581750944],[6.596700354516473,53.06690625424449],[6.596740951741445,53.066897162666194],[6.596791636356854,53.066894556499996],[6.596816117136614,53.06689713994844],[6.596978847772376,53.0667161353168],[6.597053120711666,53.066635895711656],[6.597277408603685,53.06638531213604],[6.59752525071367,53.06610738551393],[6.59776019531268,53.065846978379874],[6.597754715037736,53.06584145296455],[6.597756285445264,53.06583463402005],[6.597855488931637,53.06572667783338],[6.597963481416261,53.0656091604832],[6.597991676889656,53.065594100828264],[6.598265724871753,53.06528734714287],[6.598463781686167,53.06506870529824],[6.598695096132842,53.06481226915679],[6.598928515854118,53.06455385207494],[6.599197069350954,53.06426184523822],[6.59939589559849,53.064039032999844],[6.599597313787886,53.06381454954564],[6.599597688763464,53.06380607112093],[6.599667995794857,53.06373161254322],[6.599683195666951,53.063723514152784],[6.599923256470173,53.06345223935021],[6.600135633577568,53.063216509117275],[6.600349988362482,53.06298116283647],[6.600499661674577,53.06281602138139],[6.600699958797678,53.06259293125214],[6.600964007002345,53.062301244380734],[6.601240610472584,53.06199777022237],[6.600363472082938,53.060793011854535],[6.600288838339672,53.060753475701524],[6.59702728192168,53.0600075671461],[6.597009799087481,53.06004628474408],[6.59679719547048,53.06051711778972],[6.596735922033053,53.060508840080146],[6.596720807283186,53.06054033010389],[6.596494316862297,53.060480465712395],[6.595445975959833,53.06022392849667],[6.595105223027181,53.060140537086845],[6.594759628843783,53.06070871542626],[6.594516825778516,53.06109876024905],[6.594243825086398,53.06154948291441],[6.59387866062103,53.06215237427236],[6.593614676130485,53.062588193989576],[6.592937573949377,53.062368269864656],[6.592041038939599,53.06208190056473],[6.590779593004393,53.06167126696205],[6.589849682174034,53.06137453165958],[6.588984312222326,53.06109266141169],[6.589128592258566,53.06091405427622],[6.589387478925959,53.06059299513732],[6.590802389647886,53.05886404127662],[6.589998724299585,53.05866922483305],[6.589221786407687,53.0584847930078],[6.589083928885976,53.058452072441426],[6.588245730664634,53.058249664708576],[6.587538375616397,53.05808626171232],[6.586731369992517,53.0595255772637],[6.586687771005407,53.05957623290491],[6.586623533703614,53.05960986754972],[6.586519969775779,53.05964144736467],[6.586431229430675,53.05965283542288],[6.586341717376532,53.05965073587066],[6.586171333047287,53.05962433121618],[6.587186790112784,53.05780308666938],[6.589745067158346,53.05328464342016],[6.59120224876849,53.04903971402767],[6.591170057422898,53.04900070615745],[6.591351876242296,53.048624782116924],[6.590957840794388,53.04807932884581],[6.590076893120107,53.04690600573263],[6.58918511712225,53.0457438207702],[6.589141935942263,53.045693882933676],[6.587975520576176,53.044213542926165],[6.58771798450531,53.04387922595897],[6.587577363512104,53.04368320338839],[6.587326078586417,53.04336551155096],[6.586802042855581,53.042702958383394],[6.586605771029584,53.042460131600784],[6.586304036034692,53.04207418446462],[6.584180490089405,53.03944521648051],[6.584116971431482,53.03938239534902],[6.584097644505511,53.03934709037319],[6.583687760001145,53.038847212923045],[6.58228011407701,53.03717845501441],[6.580781202760348,53.035456597672955],[6.580126871324637,53.034725199065676],[6.580038551104821,53.03463550953651],[6.57964359846437,53.03463366864329],[6.579434760516521,53.03463269468771],[6.577886756570076,53.0346254660515],[6.577791152600516,53.034625339197696],[6.577700619940781,53.03450677882775],[6.577519992420749,53.03440527102152],[6.577326213056361,53.03434117665712],[6.577000622672916,53.034311016235584],[6.572495014269283,53.0342112732862],[6.572283783702274,53.03426307726169],[6.572037871745425,53.03431910762692],[6.571667263144827,53.034338406439076],[6.571663913142257,53.034253311332904],[6.571191413274554,53.03425483457182],[6.571121677155466,53.034255057466574],[6.571104515922842,53.03425500264103],[6.570085228757509,53.03425154298545],[6.569741077858727,53.034250371308076],[6.569039060227995,53.03425241130452],[6.568226534126747,53.03425476541026],[6.566581193497606,53.03424801005992],[6.566089373396728,53.03424297243425],[6.56600816927781,53.034240321712836],[6.565940737902342,53.034238119370805],[6.565593573047503,53.03418184875209],[6.565248338941824,53.03412197234049],[6.565007249381797,53.034082745984506],[6.564901699590159,53.03406246824953],[6.564755446606584,53.034034368091845],[6.564698733626474,53.03401836349184],[6.564669400515813,53.03398999298123],[6.564634718612677,53.033979649530075],[6.564481666286238,53.034166129854086],[6.564306048638692,53.03429601888343],[6.564130393577062,53.034376973713904],[6.563966255451096,53.034407327742755],[6.563739496145768,53.034409558245166],[6.563596272715709,53.034403199448896],[6.563182428079911,53.034349790450776],[6.562935264499616,53.0343599874016],[6.562709617885526,53.034403371625224],[6.562560113408243,53.03445066791749],[6.562411825819377,53.034543002503426],[6.560620080112831,53.03591865154594],[6.560548766450429,53.03584672613999],[6.558017935940056,53.033294000305894],[6.557143066843279,53.032406754947054],[6.556345770112647,53.0316049473932],[6.557287075467013,53.030966713846155],[6.558077115578625,53.03044232568172],[6.55827070836924,53.030319763265595],[6.558418972357256,53.030220066716495],[6.558492035287683,53.030170938804645],[6.558912736915892,53.02988805345441],[6.559067862100964,53.02978750699493],[6.559255004411418,53.02965480597385],[6.559426898230058,53.02954651875],[6.55945717462314,53.02952939853076],[6.559586091049427,53.02945649135039],[6.560204735248434,53.02905185641917],[6.560437317724928,53.02889360738577],[6.560720870483055,53.02870576716508],[6.56090359263656,53.0285681640173],[6.561317319123369,53.0283190302614],[6.561590635555951,53.02813438886352],[6.56207659775473,53.027806105274834],[6.562276917931349,53.02767518409646],[6.563000190276735,53.02720247272269],[6.563283321429853,53.02701528636975],[6.563798673711225,53.026674547194176],[6.563807035386334,53.026669018860694],[6.564099189438567,53.026479512978945],[6.56435308434466,53.026314821957904],[6.563327442441046,53.0259600569947],[6.558403471685478,53.02421709260905],[6.557136994800659,53.02373322097545],[6.55649007686246,53.02346717168859],[6.555743232635749,53.0231424041519],[6.555263601202521,53.02291887546112],[6.554261836629857,53.02243371814446],[6.553832122640764,53.02221082002276],[6.552961264915861,53.021725678008885],[6.552686587006032,53.02155832878399],[6.553142397137902,53.021158151209214],[6.552990543763063,53.02110100862342],[6.552558519066942,53.021480302802594],[6.551964812749116,53.021118578186574],[6.55180108811609,53.0209976628675],[6.551227971097258,53.02062072297575],[6.550896209264884,53.02038782913481],[6.549971657423429,53.019702896424654],[6.549284361590795,53.019172311514055],[6.549141991048594,53.0190668717639],[6.547611117453227,53.02145730449744],[6.54729802701797,53.02204519154224],[6.545650534625566,53.02526192448168],[6.545599112346106,53.02561724706143],[6.545599823131922,53.02686279627872],[6.545530860579435,53.02716934736854],[6.543524993315519,53.031424620665824],[6.543404595710635,53.03155168144263],[6.543248045247581,53.03154752352678],[6.542931483414645,53.03153911529707],[6.541565868266838,53.03149386035977],[6.541204445372779,53.031481890316144],[6.540496057578054,53.03145840069342],[6.539751906090349,53.0314337327019],[6.53581020709766,53.03130880550157],[6.535370932509308,53.03129425822947],[6.535011423115557,53.03128234998626],[6.534360113821179,53.03126076570881],[6.534277476233833,53.031258026966434],[6.532744707726136,53.02706001937404],[6.526050216234052,53.02875090517755],[6.524387968170181,53.02918116160353],[6.522656963887577,53.02961709618136],[6.52264043693401,53.02958225254384],[6.522638370342911,53.02957789556018],[6.522635720422387,53.0295723219008],[6.522468794649354,53.029220722719224],[6.521966126536513,53.02816196042167],[6.521851293781013,53.028139333479665],[6.521023330393778,53.02797620984805],[6.520934179882104,53.027958640825275],[6.520660574502544,53.02803122359959],[6.520529075229565,53.028066107778635],[6.520674487953521,53.027003719227714],[6.51430971747481,53.02538794643201],[6.514324442925146,53.025337921305436],[6.514161695733218,53.02529726247895]],[[6.470576650799491,53.018808739426895],[6.470195972878358,53.01874308802366],[6.469737933492649,53.018656431659394],[6.469003920147087,53.01852892776051],[6.468598792107439,53.01845614994342],[6.46844712577675,53.01842855648106],[6.468220732973249,53.01838648744519],[6.468085668647367,53.018362500240585],[6.46772840577108,53.01829784201847],[6.467573424218346,53.01826998982964],[6.467406278898596,53.01824076537653],[6.467136746759072,53.01819522711416],[6.466995983803265,53.01816855815351],[6.466796756262871,53.018131057800325],[6.466565792995498,53.01808724722193],[6.466359513294127,53.01804892848367],[6.466122799158244,53.01800694863509],[6.465917799358684,53.01796860830853],[6.465650340680316,53.017919310690935],[6.46547474682098,53.01788944918887],[6.465316575220487,53.01786084159397],[6.465177307358658,53.01783189205209],[6.464972219589604,53.01779833278117],[6.464760711882909,53.01776009406669],[6.464522362222061,53.017714467873994],[6.464345827591953,53.01768330052099],[6.464167251572633,53.01765084940891],[6.463759211735922,53.017573596484475],[6.463719231423321,53.017564098158346],[6.4636483183014,53.017552370629865],[6.4635469180033,53.01753596542023],[6.463427583885659,53.01751455530666],[6.463296941252026,53.0174919782002],[6.46316462825814,53.01746695448336],[6.462953591380516,53.01743135167173],[6.462792458695805,53.01740094187416],[6.462643407680826,53.01737336339201],[6.462511349065566,53.017349576552164],[6.462389358128934,53.01732614779935],[6.462249899582715,53.01730014484929],[6.462034351446335,53.0172640046179],[6.461627176790953,53.017191285212874],[6.461557840014517,53.01717875205132],[6.461014456143138,53.01708055285384],[6.460463527219294,53.01697718079981],[6.459637199793884,53.01682532045049],[6.459528258375467,53.01680571847003],[6.459588011468518,53.016652667199125],[6.459601233760387,53.01661713191531],[6.460796269317517,53.01340527826745],[6.46234394222491,53.0091846567106],[6.462571311486846,53.00856451556499],[6.463199370910501,53.00687311422113],[6.463248480194676,53.00673943336594],[6.463308571148224,53.00657999591866],[6.463373031733664,53.006407479184396],[6.463458714281707,53.006191311311945],[6.463454813985333,53.00619021467963],[6.463543951512492,53.00595653651282],[6.463610011428437,53.005786692285234],[6.463667463653067,53.00563507893283],[6.463728188491823,53.0054767145107],[6.463814189705169,53.00526570127944],[6.463868252022298,53.00510539299327],[6.463909397811354,53.0049962993033],[6.463985700162693,53.00474259645562],[6.464234293544584,53.00409635139435],[6.464789835491819,53.00265202881623],[6.464997396706362,53.00211239375309],[6.465436083291233,53.00095904638041],[6.465990822750915,52.99950052496038],[6.467590829419805,52.99992591145875],[6.468715877446901,53.00022501301299],[6.469884908831284,53.00053578499023],[6.471050974128911,53.000845753514724],[6.471582514705219,53.000987051655855],[6.47218551576284,53.001147334082106],[6.472189790788917,53.00114847315868],[6.473332926380194,53.00145231019845],[6.474455609486886,53.00175070648641],[6.474644508826475,53.00180091372431],[6.476252934811733,53.002228373518875],[6.475746136757034,53.003687091027906],[6.475655191834861,53.003930249829125],[6.475632316517808,53.00399313306703],[6.475602611308907,53.00407475199194],[6.475540654262002,53.004241672731496],[6.475503679970736,53.00435493702027],[6.475390551760052,53.004664918291475],[6.475338460943185,53.00481123986594],[6.475258909859582,53.00503663508096],[6.475180034081739,53.00524851652004],[6.475118215105464,53.00544549585502],[6.474843113663876,53.00619693745377],[6.474760076771003,53.00642432275877],[6.474728465128181,53.006510884118065],[6.474660337386823,53.0067292103624],[6.474601113223765,53.00688887026344],[6.474545224765664,53.007036062278765],[6.474488586492945,53.007193685532776],[6.474430703350431,53.007365402173896],[6.474361246213657,53.007543165210485],[6.474311468702637,53.00767616430452],[6.474244277784904,53.00786291147295],[6.474175497566708,53.008072040719604],[6.474125198941808,53.00820987128316],[6.474068861352201,53.008373090033515],[6.474015951973768,53.00851141097952],[6.473971225114926,53.0086456766464],[6.47392565918511,53.0087713761638],[6.473880936899005,53.00889988206959],[6.473846849006766,53.00900076279256],[6.473815327753884,53.00908154504843],[6.473799709012229,53.0091308986716],[6.473794411779275,53.009149711952055],[6.473789194322585,53.00916509871148],[6.473787289320454,53.009183656790505],[6.473785630330227,53.009196037770074],[6.473787186897042,53.009233220191845],[6.473790200970167,53.009318154171574],[6.473792327848955,53.00938657868084],[6.473800782767895,53.009478149725446],[6.47380919521532,53.00955364338592],[6.473830508746704,53.00968811730607],[6.473795456155939,53.00984524823931],[6.473795606155945,53.009858430580806],[6.473796266976035,53.009880073593514],[6.473795565946128,53.0099242233557],[6.473787308889786,53.00996168367166],[6.47377359084799,53.01001019411313],[6.473755248283474,53.01007335768611],[6.473720123374894,53.01016209843609],[6.473646957363814,53.01036223586179],[6.473554494757574,53.01062383793112],[6.473477283361709,53.01084466254046],[6.473367804206448,53.011151722869535],[6.473265281175308,53.01142890933097],[6.473107643941068,53.01186559167595],[6.473013570626064,53.01212205863341],[6.472824187450406,53.01266377063844],[6.472701661564551,53.01300662542396],[6.47249780982704,53.013581529430375],[6.472300834931733,53.01413059781785],[6.472172821273821,53.014501675078606],[6.472059964517624,53.01483119553493],[6.471910712945586,53.01525022049173],[6.471729148327553,53.015768214522545],[6.471572763768009,53.01620443397301],[6.471454190618605,53.016546487575816],[6.471251427481497,53.01711434208764],[6.471171734859233,53.01733570955675],[6.470999242460767,53.01781851699095],[6.470838238100066,53.018271410397816],[6.470791203941522,53.01826599544879],[6.4707605405108,53.0183392112149],[6.47063234931291,53.0186791304962],[6.470576650799491,53.018808739426895]],[[6.471705594895296,53.000866993457],[6.467231556372818,52.999676887024535],[6.465478122992787,52.99921158562318],[6.463879739132244,52.99879092817611],[6.463263762609595,52.9986250846915],[6.462464765963656,52.99842133402747],[6.46180621393839,52.998245209387626],[6.460572975402127,52.99791538903856],[6.459561188391485,52.997647610512935],[6.458527228784606,52.99736683934862],[6.458461465578295,52.99734447652597],[6.458439082753819,52.9973368675117],[6.458373002703198,52.99731548613996],[6.45834427108397,52.99730619024644],[6.458357403230674,52.99730103304876],[6.467090637906279,52.993869683727056],[6.468119202641895,52.99346717115936],[6.468186454719584,52.99353032077034],[6.468461019406314,52.99378812412609],[6.469632104102957,52.994898136536754],[6.471011650170964,52.99618642571406],[6.471877692630874,52.99698906146472],[6.471860500899672,52.996990763486004],[6.472971513570965,52.99802462061355],[6.474587898737544,52.99953575808054],[6.474738183640664,52.99967624830919],[6.474754632314157,52.999669790495815],[6.474806524485425,52.99971954607844],[6.474831355012324,52.99973611575828],[6.474854064867985,52.99975787337462],[6.476503132673415,53.00128989610032],[6.476533168558828,53.00133527545431],[6.476532265004642,53.001384253752214],[6.47628756167574,53.00208515846079],[6.474640787896315,53.001652035433395],[6.471885651412548,53.00092732446565],[6.471839535918153,53.00091556533264],[6.4718149230488,53.00089567661469],[6.471705594895296,53.000866993457]]]]}},{"type":"Feature","properties":{"id":18,"statcode":"WS59","geometry_g":"polygon","gag_id":"WDOD","hierarchie":null,"hierarch_1":null,"inspire_id":"NL.59.59_Waterschap Drents Overijsselse Delta_p","sde_id":null,"land_code":null,"inspire__1":"NL.59.59_Waterschap Drents Overijsselse Delta_v","inspire__2":"NL.59.59_Waterschap Drents Overijsselse Delta_l","wbh_code_o":"59","einde_leve":null,"laatste_wi":null,"admin_code":null,"waterschap":"Waterschap Drents Overijsselse Delta","publiceren":"59","Aangemeld":1,"Actief":1,"KVK":64208338,"tnostatus":2,"CPT":904,"GMW":967,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[6.505160016128378,53.027293774719446],[6.507082958934272,53.02319694183639],[6.513995805988707,53.025286325921044],[6.514008183220155,53.02525894318036],[6.514161793530798,53.02529731667385],[6.514324540746308,53.02533797639873],[6.514393267411475,53.025355149658],[6.514400258666423,53.02535689911557],[6.514405103484648,53.02534657248752],[6.514822575609973,53.024457008998574],[6.515265835083668,53.02351245249019],[6.515289125389902,53.02346282302225],[6.516167422065442,53.021591099001014],[6.51697858114518,53.01986231745403],[6.516960327060889,53.01985668437226],[6.516890796705228,53.01983524244845],[6.516870860093031,53.01982909502059],[6.51673789888909,53.019788076613075],[6.516731348430983,53.01978605352504],[6.51705601449824,53.01913248935872],[6.517089104076635,53.019065548002324],[6.517137977122972,53.01896710228005],[6.517177167376123,53.01887513769599],[6.51722516039227,53.01877553195021],[6.517268037066382,53.01867862565772],[6.517316924762963,53.01857561437057],[6.517343732795831,53.018521610489834],[6.517499880055881,53.018177321124554],[6.517518255060366,53.01814290742461],[6.517546221917415,53.01808591787657],[6.517584414722092,53.018009536822525],[6.51764228534198,53.017878356447824],[6.517678052294256,53.01780784874988],[6.517718191052611,53.017723217261384],[6.517758827227365,53.01764224770321],[6.517836951471461,53.01746700176078],[6.517884905552488,53.01736429558024],[6.517927266978668,53.017277486137225],[6.517959851593895,53.01719925274188],[6.51799478041556,53.0171269285146],[6.518030214038564,53.017049378119594],[6.518031471819596,53.01704674205471],[6.518392789577973,53.01629069086377],[6.518543851962273,53.01597840528267],[6.51884609106289,53.01531781286706],[6.51921175001141,53.01455158032222],[6.519375956483982,53.014198566220244],[6.519391530216358,53.01416886086585],[6.519476919471575,53.01398353339652],[6.519644238116078,53.01362888071471],[6.519991801825868,53.01289269802368],[6.520127912293289,53.012566756716645],[6.520217127278229,53.01235749616674],[6.520239736592146,53.012304474895394],[6.52026198464139,53.012227291257965],[6.52029577731756,53.012111651101215],[6.520297930708524,53.01204216192754],[6.520343639385741,53.011930929247676],[6.520346649800211,53.01184572283804],[6.52034852940403,53.01179261039259],[6.520347596763896,53.01178655306972],[6.520336191780526,53.01171311231528],[6.520272937718865,53.011564367314854],[6.520265782547397,53.0115499572101],[6.520221929146738,53.011484714408944],[6.520159375384157,53.01139829588622],[6.52013115957395,53.01136934679035],[6.520099244211806,53.01133680202848],[6.520072102775047,53.01130848081014],[6.519951023716464,53.01119473026599],[6.519903589189444,53.01113841830789],[6.519848768072699,53.01105421803342],[6.519814925200572,53.01100771681417],[6.519795369944942,53.010985174152744],[6.519746285250362,53.0108729073083],[6.519743904659888,53.010857589206246],[6.519738799821196,53.01083149464467],[6.519738296325171,53.0108115844283],[6.519740023316684,53.01074113768296],[6.519747786429418,53.01069878974533],[6.519766420855979,53.01061558321432],[6.519778174273585,53.01057255042082],[6.519786567997884,53.01054183455029],[6.519825552015826,53.010446455708546],[6.519872991625545,53.010329041738174],[6.519917854654502,53.01021912027197],[6.519961883331329,53.01011664784844],[6.519977106209062,53.01008097838559],[6.519993914874346,53.01005242051602],[6.520012139690662,53.0100193108384],[6.520035121511975,53.00992627631285],[6.520087764814217,53.00973581226251],[6.520143318729196,53.009580459417734],[6.52020321243451,53.00940868227719],[6.520230314030186,53.00933254898348],[6.520252819787444,53.00926931950132],[6.520299521204166,53.009138530787716],[6.520450540057793,53.00869391898142],[6.520556973997151,53.008392181095815],[6.520611799256002,53.008236439431236],[6.520621745443843,53.00820816218573],[6.520700654062165,53.00799033523774],[6.520832858440013,53.00760847700267],[6.520945734276895,53.00728714000346],[6.521047627735133,53.007026964126354],[6.521109453641219,53.00685241803452],[6.521167306452158,53.006695227373115],[6.521253298901729,53.00645215139244],[6.521285103758101,53.00636340045736],[6.521306145873523,53.00630472297844],[6.521370763087133,53.006130455779655],[6.521438845619545,53.005933688355476],[6.521509284915201,53.00574790749874],[6.521526235465033,53.00570032269779],[6.521561081371024,53.005602537914484],[6.521586036473757,53.00552939923218],[6.521635072138285,53.005449579456744],[6.521679144056771,53.00532510579682],[6.521750143969703,53.0051266209075],[6.521804140838364,53.00498170660801],[6.521834772806425,53.00488462673687],[6.521861621932097,53.00481673634017],[6.521888223037029,53.00474448064333],[6.521925284041469,53.00464885851684],[6.521965116147269,53.00453610795376],[6.522250882523717,53.004352919952176],[6.522480083911582,53.00421733289885],[6.522774387631787,53.00404061400641],[6.523255282925505,53.00375420649067],[6.523320202977238,53.00371520643253],[6.523524659216141,53.00359243414636],[6.523600998222847,53.00354688177309],[6.523838566841687,53.003405137331654],[6.524235010866454,53.00317072712067],[6.524341064584549,53.00310788838627],[6.524600945274958,53.00295360907912],[6.525119718204365,53.002629681472634],[6.52570271133863,53.00227405419267],[6.525819554369654,53.00220183683896],[6.525925122180277,53.0021587455813],[6.526036887369585,53.002114525750585],[6.526070367389523,53.002092539327236],[6.526102426440311,53.00207147411102],[6.526217065762265,53.00195951014307],[6.526330521460969,53.00188771098107],[6.526501086881254,53.001780399321596],[6.526660719523271,53.00167944651748],[6.526909922121776,53.00152080626044],[6.527151518839382,53.00136760318968],[6.527302479289657,53.00127123464192],[6.527343827473418,53.00124427493228],[6.527379033503148,53.00122282885834],[6.527425097979769,53.00119222936425],[6.527531894298231,53.001131366731755],[6.527688434387335,53.001036508188],[6.527768407111765,53.0009997705366],[6.527940950698238,53.00090112825113],[6.528219945965029,53.000731991725196],[6.528389307582187,53.00062854416242],[6.528379754684481,53.00062271294989],[6.528525656685111,53.00053360760259],[6.528772921697366,53.00038054473641],[6.529012189519255,53.00023445070696],[6.529094590023531,53.00018417258609],[6.529227342293463,53.00010328020064],[6.529298176381356,53.00006014920116],[6.529322647206399,53.0000452217685],[6.529415195618947,52.99998885217883],[6.529430444445694,52.999979566764026],[6.529583953063355,52.999887574489556],[6.529792650769844,52.99975975383378],[6.529849586073009,52.999726299469046],[6.529894359695855,52.99969829057996],[6.529938363079465,52.999670450800934],[6.529995277966898,52.99963395897021],[6.530082295094595,52.99957861230903],[6.530336731805905,52.999418836175884],[6.530567592192093,52.999272918167705],[6.530864349879297,52.999093450117115],[6.531094667243586,52.998972906419276],[6.531251506308553,52.99885941022842],[6.531279820737245,52.998854178471085],[6.531398980191131,52.998779542770386],[6.531426213454774,52.9987637886142],[6.531462470938895,52.998742825514185],[6.531502835913072,52.9987200167095],[6.531585695394528,52.99867154778246],[6.531644082645509,52.99863676653948],[6.53167134244898,52.99862032906294],[6.531888105111213,52.99848810468674],[6.53200992992252,52.99840954249551],[6.532191295392923,52.99829309609619],[6.532326984324567,52.998207624619944],[6.53249655747755,52.99809767143314],[6.532611592605811,52.99802552743001],[6.532722973789758,52.99795379577639],[6.532635881937225,52.99790136455027],[6.532590096209513,52.99787380884862],[6.53244872767437,52.99778869966639],[6.53263782816091,52.99767537780111],[6.532829031097721,52.997554252771316],[6.532927932131706,52.99749682192536],[6.533009208392056,52.99744664164458],[6.533304243539749,52.99725974259482],[6.534100911433641,52.9967633912752],[6.535905917673188,52.99563875870431],[6.537282417515157,52.99478379522256],[6.537459558207719,52.9946821737138],[6.53754496238749,52.99463077322401],[6.537671701556731,52.99455972477479],[6.537755218455012,52.99451470507089],[6.537805875923826,52.99449048290095],[6.537887822649856,52.99445819478479],[6.537924093838254,52.9944430710554],[6.537967800371811,52.994429745030395],[6.537993027876738,52.99442225867553],[6.538010496503746,52.99441707577828],[6.538154641303908,52.99438582432421],[6.538262514674451,52.994369687554894],[6.538363195309782,52.994358113439915],[6.538381843411744,52.99435022303689],[6.538391758370199,52.994334831722966],[6.53845381098253,52.994332050307705],[6.538476565333212,52.994347630275016],[6.538506790104062,52.99424190397659],[6.538522453939294,52.9941870853378],[6.538523519013725,52.99418399254691],[6.538542971533444,52.99411192735375],[6.536529086272671,52.99418861656406],[6.536010559486587,52.994205688240115],[6.535857151599669,52.99421050555391],[6.535714022811951,52.9942136961285],[6.535524680671898,52.99421707883017],[6.535094051390426,52.99422471060647],[6.53479675607974,52.994220339455524],[6.534500378159182,52.99421177981948],[6.534202551078836,52.99420078889799],[6.534033159182327,52.994192537400714],[6.533905302618479,52.99418631372766],[6.533610823497467,52.99416896239215],[6.533464583094397,52.99415523967562],[6.532612901909484,52.99410313659825],[6.532590944356929,52.99410133390474],[6.531926007523367,52.99402460063003],[6.531744276047114,52.99400132101813],[6.531707619154943,52.993995614763776],[6.531683696139587,52.993988735110904],[6.531656391303085,52.993975596952275],[6.531637175320958,52.993961932000595],[6.531621447601445,52.99394837744293],[6.531610498469794,52.993933024677766],[6.53161133492091,52.99389346502405],[6.53104831935667,52.99381247987259],[6.531008201487961,52.993822992050134],[6.530970564234327,52.993833246818554],[6.530932175396086,52.9938409744411],[6.530900554631078,52.993846093987074],[6.530865164534895,52.99384437455626],[6.53082533726528,52.99384044183559],[6.52925407577655,52.99362250323793],[6.527746748357909,52.993447413032676],[6.527429417093114,52.99340005037831],[6.527312236926917,52.993373685897495],[6.527253566490954,52.993504412622286],[6.526921513930034,52.99347218825694],[6.526911071467026,52.99350625853485],[6.52660372749612,52.99347112858535],[6.526256563771923,52.99342774979762],[6.526061853191096,52.9934051604187],[6.525957656501417,52.99341160813589],[6.52563542867827,52.99337170162212],[6.525267680327104,52.99332595472348],[6.524864091275579,52.9931369811045],[6.524605203688422,52.99310187915676],[6.524384680677119,52.99307176792398],[6.524188316904252,52.993046800704064],[6.524000872831974,52.99302174833895],[6.523789693347149,52.992996921360124],[6.523650003088621,52.99298393322854],[6.523484190286025,52.99297729538912],[6.523202812574204,52.99298891170551],[6.522972871546843,52.9930082078059],[6.522751394636722,52.99304251216196],[6.522574739320327,52.993090706628976],[6.522432567775716,52.993148180414174],[6.522514692774847,52.99292655497751],[6.522563995017582,52.99279018594461],[6.522615474914558,52.992657373009564],[6.522683017896567,52.99247346938032],[6.522748420709092,52.99230003786394],[6.522394725941175,52.992242726267754],[6.522307550211691,52.99222898623524],[6.522113681973035,52.992198429010436],[6.52082629207313,52.99198704919239],[6.52021274233081,52.99189061253981],[6.519682970069706,52.99180549350674],[6.519257736327218,52.99173856033828],[6.51868388233794,52.99164657492401],[6.517822022320057,52.99151074076484],[6.517018952827302,52.991382918326245],[6.516273087033071,52.99126627819646],[6.516219993883227,52.99116763559665],[6.516218394831741,52.991355172474385],[6.51622179617663,52.991656239222394],[6.516223379833262,52.99191249619588],[6.515867690847871,52.99185994728123],[6.51540383377323,52.991791513802],[6.514909747950349,52.99172037105629],[6.514835540814689,52.991709792474566],[6.51457799904956,52.99167309248486],[6.514483999737186,52.9916596987059],[6.513866420459316,52.99158348823581],[6.51334820810062,52.99151393247651],[6.5129473808923,52.99146590718172],[6.51267682528083,52.99143209365198],[6.512348555693753,52.991384982861724],[6.512322326940553,52.99138149116784],[6.511710819355612,52.99130017078125],[6.510947913599265,52.99119264477435],[6.510178158357551,52.991093688905636],[6.509471693932522,52.99100010124103],[6.509436372599648,52.991218105639824],[6.509393034582101,52.991470632226694],[6.509103012381982,52.99142859956926],[6.50897177918584,52.99140819959912],[6.508817789451304,52.991387258109334],[6.508605102294282,52.99135643324985],[6.508542553463363,52.991347368041986],[6.508497360816103,52.99134080911804],[6.508333828074738,52.991317107662994],[6.508113259499781,52.99128557398773],[6.507649977752384,52.99121850710225],[6.507214517478295,52.991154862402006],[6.506961544984334,52.99111765390373],[6.506836441469777,52.991096924572275],[6.506953887686458,52.990771395858424],[6.507104322730989,52.99040078497292],[6.507265310453914,52.98999760512925],[6.507497532579484,52.98943660266709],[6.507628789375159,52.989112201803984],[6.507648533020228,52.98906343329824],[6.507715511326898,52.989071720504725],[6.507818382514046,52.988825520288245],[6.507876203123576,52.9886875318086],[6.507897880926844,52.98863581537325],[6.507971355449606,52.98845163992507],[6.508037320575707,52.98829395646702],[6.508125733535731,52.98807575102752],[6.508201191324178,52.98789290483932],[6.508282678839097,52.98769035655889],[6.508371651891169,52.98748069222164],[6.508461816955478,52.98726299126824],[6.508573936189909,52.98699225894533],[6.508632124073342,52.98683923137286],[6.508553354526142,52.98673671925038],[6.508487846630561,52.986651256740224],[6.508498992791122,52.986608742735946],[6.508539865853689,52.986445497686496],[6.508599164482956,52.98620785647368],[6.508646674430001,52.98602826472994],[6.508709174633174,52.98578603699969],[6.508746644154066,52.98571327749868],[6.508786694713647,52.98563550600221],[6.508867737684831,52.985473186942286],[6.508940885461618,52.985324080846674],[6.509040151987224,52.98509231913063],[6.509053465147207,52.98505476348584],[6.509059535569325,52.9850383772023],[6.509067681319009,52.985025089914345],[6.509075581635802,52.98501383598247],[6.509081189979336,52.98500783397383],[6.509092357192805,52.98498928791298],[6.509124761740037,52.984921707363505],[6.509174110880962,52.98482054523796],[6.509238343346409,52.984687878875334],[6.509146831532568,52.98467154585651],[6.508579318840913,52.98455995128003],[6.506098287754363,52.98407180887424],[6.505768576263621,52.9840061177844],[6.505409463141484,52.98393549741654],[6.505003913987338,52.98385591889624],[6.504621537873359,52.98378217957302],[6.504351181465783,52.983718023627866],[6.503606541339074,52.981766534283594],[6.502502552161848,52.98056804119938],[6.501779899298336,52.97978240216605],[6.501789629505394,52.979762908567054],[6.501868351924529,52.979609386993175],[6.501812051914682,52.97959534420271],[6.501671089133939,52.97955453686623],[6.501538657801323,52.97951661551662],[6.501344184704505,52.97945844961427],[6.501183052492804,52.979411439999176],[6.501083028949822,52.97938311071948],[6.501120953997498,52.97921671409136],[6.501166802399907,52.979016659299724],[6.501246511021603,52.97871252533975],[6.501314626636338,52.97844007956763],[6.5013550232259,52.97828189183002],[6.501391906147581,52.978133613505],[6.501502755239927,52.97768270135419],[6.501625767403186,52.977183550378285],[6.501716758325744,52.97681031770851],[6.502011061294983,52.97514415566334],[6.504399539897856,52.97567694945031],[6.504405037877002,52.97567827306017],[6.505409856556717,52.974007002565834],[6.504597179586832,52.97377788702819],[6.504719248397453,52.973590688040815],[6.504920892615361,52.97329685999518],[6.50511129926095,52.97302120952196],[6.504847574462446,52.97295589648466],[6.504556909493206,52.97288092212344],[6.504862496816061,52.97146708930465],[6.505028631892462,52.97067879613727],[6.504246959162599,52.970451644120544],[6.503630200692446,52.97027360604209],[6.503451086247087,52.97022190560879],[6.50253155120973,52.96996331755285],[6.501464667565592,52.96965409784152],[6.500374819211139,52.969337470633846],[6.500076719902831,52.96924760041372],[6.498974474678235,52.967839812744295],[6.498998676930406,52.967830411839024],[6.499342165125329,52.96769699384917],[6.499936778340328,52.96746832900682],[6.50115343339281,52.96700395837829],[6.502158796639937,52.96661865535959],[6.502325105221659,52.96655337658724],[6.502474385673642,52.96649511359776],[6.502396251229348,52.96642178099668],[6.502041285489581,52.96609498293603],[6.499814355404688,52.96405052735288],[6.498528647683282,52.96286632279694],[6.493956886140111,52.95869544496401],[6.494786933280873,52.9583701608403],[6.493377890437061,52.95699655557008],[6.493535854348064,52.956947021333626],[6.492368259460681,52.95590019151767],[6.499426905689639,52.95315833020584],[6.498322504144967,52.95208086223971],[6.497751899702946,52.95227680109493],[6.496971822548076,52.95156610360807],[6.495383229048635,52.95009061266461],[6.495169358302053,52.94989196103457],[6.493726093819053,52.94855132554314],[6.493713095399001,52.948539250545004],[6.493128189524807,52.94799590091707],[6.4922456487172,52.9471761020138],[6.492109227839202,52.947049370615005],[6.491953401557111,52.94690426030761],[6.49232629942428,52.946760451357996],[6.492446308590882,52.946713507099844],[6.49348546857384,52.946307001738774],[6.492973102974497,52.94583309623902],[6.490860392880704,52.943878848112966],[6.489471822652316,52.942602326448785],[6.48876443200277,52.94195170194601],[6.488658928926249,52.94185409603574],[6.489695709134861,52.94141727726307],[6.489805506649637,52.94151287447048],[6.49075005796811,52.9411046497717],[6.49114029053427,52.9409422244197],[6.491765881299978,52.94068182840194],[6.492671396651337,52.9403049095823],[6.498820488851757,52.93771254070076],[6.498833518676738,52.93770725185871],[6.498864274999868,52.93769477013047],[6.499091067218154,52.937602725330784],[6.499349996247724,52.937498715618254],[6.499575234761098,52.937411735082826],[6.499894860758457,52.937286488556914],[6.500058714386104,52.93721668708746],[6.500206256828299,52.937349929541874],[6.50069117458524,52.937787869998864],[6.500917134130869,52.93799641107561],[6.501076382936018,52.938143392373284],[6.501472614546628,52.93851497840782],[6.501767920454967,52.9387853130489],[6.501893129938772,52.93889993392852],[6.502605481282997,52.93956716081982],[6.502705205230749,52.93966056672389],[6.502849456079098,52.93979300986063],[6.503468697875046,52.940361542573804],[6.503727927906085,52.940259174299904],[6.504299829003003,52.940033328849324],[6.505223427871654,52.939667828062255],[6.50639307388876,52.939207303923475],[6.506977749138737,52.93897425286658],[6.50721851121872,52.9388757167448],[6.507227785355153,52.938871918110834],[6.50731739210287,52.93883525526828],[6.507898861327,52.93860807128182],[6.508430070412023,52.93839864740423],[6.509286346823687,52.938062550178785],[6.509654306012133,52.93791865141524],[6.509696572944476,52.93790212235582],[6.509887604898133,52.937833444882244],[6.510037397233384,52.93797250482387],[6.510295060659145,52.9382117537966],[6.510728697336527,52.938611707575795],[6.510737972349122,52.93862007716886],[6.510758494459096,52.938611750800064],[6.511145614706773,52.93845463593338],[6.511418682659358,52.9383466114103],[6.511672425715776,52.93824895955368],[6.511936282215285,52.93814666444065],[6.512045990221466,52.93810346382148],[6.51225879419543,52.938019685880725],[6.512618114667948,52.93788151217324],[6.512841822496489,52.937794368112],[6.513171035261371,52.93766612860325],[6.513498102470652,52.93753782751953],[6.513717787458036,52.93745114211654],[6.51390421888036,52.937373990774226],[6.513918988379884,52.937368171597065],[6.515719570154221,52.93665924581112],[6.51529656130363,52.93596915084843],[6.515269771661254,52.93592545699591],[6.515205181634844,52.93582010920654],[6.515157440947298,52.935742201618694],[6.515143991653646,52.935720256333525],[6.515128601430916,52.93569515693276],[6.514870258498122,52.9352736752113],[6.514599839024233,52.93483249935491],[6.514582802730019,52.93480469233013],[6.514573580322808,52.93478972600031],[6.514490021063183,52.93465416251371],[6.51438724846372,52.934484224918194],[6.514196150039502,52.93417145301916],[6.514107497543824,52.93402807360907],[6.514059444619614,52.93394656468812],[6.514175545257733,52.93389739713243],[6.519388489675734,52.931690689250175],[6.52038711243706,52.93126648897553],[6.519826602967804,52.93085261145881],[6.514302799782457,52.926839023821046],[6.51212457200113,52.92658872840092],[6.509695643643616,52.927617261694735],[6.50894020818436,52.92793232181905],[6.50367840554474,52.92382267145961],[6.495692134585829,52.927477322615395],[6.488836945093523,52.926637479680586],[6.482299654500067,52.92230805190696],[6.489659948394715,52.91897407444535],[6.482463821288871,52.91428219207601],[6.476934506351439,52.91645599261477],[6.473602565581148,52.91483779342001],[6.486352384751991,52.910876761931675],[6.487304350351648,52.911493245125214],[6.48781369102185,52.911822197241456],[6.488356480888167,52.91217555325841],[6.488641002667797,52.912358854072956],[6.488912725366069,52.91253327622514],[6.489681653042647,52.913031146041334],[6.489878230144046,52.913158457460014],[6.490020067848826,52.91324988538565],[6.490296205770219,52.913435614363465],[6.514998318160887,52.91474103128918],[6.515114134751624,52.91468863850196],[6.516776432680159,52.913936559746226],[6.516859475784835,52.91389902551652],[6.517218025042022,52.91373698200159],[6.518160344913076,52.91331109968832],[6.518249807335222,52.913270663714435],[6.522698409124613,52.91247222721408],[6.525871240759998,52.912856207344944],[6.527263761577837,52.913021510399055],[6.527594281883883,52.91321874953177],[6.528052635803435,52.913492280573934],[6.528285995297544,52.913631706109584],[6.528291175733546,52.91363480210407],[6.528299210730538,52.913639605337785],[6.528607063165729,52.913823595575664],[6.528613587897179,52.91382749653633],[6.530060953964846,52.91469261311203],[6.530078409304431,52.91469264373151],[6.530085734862872,52.91469191754047],[6.5301002785706,52.91468352808927],[6.530123644635374,52.91466968883605],[6.530258365691191,52.91480495908993],[6.53153711696375,52.91514567108115],[6.531957283706379,52.91525348834973],[6.532053905916608,52.91527828312315],[6.532694350664073,52.91544418135354],[6.533069413438803,52.91554008810294],[6.533544048643497,52.915661468920675],[6.533936478774224,52.91576181662612],[6.534012573492045,52.915782196573446],[6.534169359765613,52.915824179353244],[6.53436231067713,52.91587541274159],[6.534592058713556,52.915961063560125],[6.534670638481328,52.91599054119013],[6.534823291265949,52.91606637259455],[6.53490460737318,52.916105467006645],[6.534959971698277,52.916135814696574],[6.53501797781674,52.916168239961344],[6.535390179717538,52.9163854848458],[6.536405730845046,52.91557094806858],[6.536762701750429,52.9152846309675],[6.541675373614879,52.91344507325966],[6.541832024448578,52.913438156992314],[6.541865547539304,52.91343694303281],[6.541984374369835,52.91343276500791],[6.545904063949856,52.913182625104646],[6.546380402879452,52.91314558409106],[6.546630259198244,52.9131248868068],[6.546911816393099,52.91310156235519],[6.547184348708758,52.91308046388149],[6.5472167665694,52.913077956011655],[6.547402341525617,52.91306357958198],[6.547616901245884,52.9130467462279],[6.548474277811796,52.91297947125498],[6.549434653862972,52.9129056243308],[6.549473926270258,52.91290259975413],[6.549994809428378,52.912862531269475],[6.550593054471197,52.912818372376925],[6.551901045801485,52.91272235221157],[6.558448115972372,52.91407739791237],[6.555755177981852,52.91842706319743],[6.567515478632722,52.92048894587195],[6.568642089221222,52.919579783116454],[6.571694718857475,52.91717385579314],[6.573849057698975,52.9154541641195],[6.5738914909156,52.915420282885535],[6.574132085772227,52.91523238571308],[6.574681415435387,52.91478312449429],[6.575738397109496,52.913954983630475],[6.576553258407241,52.91330793861713],[6.57674930035926,52.913158648561094],[6.577401641792349,52.91265784839341],[6.578015308780867,52.9121715402424],[6.584202220232275,52.911627050197346],[6.585001975916852,52.91156220205279],[6.585030441640402,52.91155989430367],[6.586227318814986,52.91146283263191],[6.586238577481362,52.91146191968493],[6.586248923407235,52.911460251987464],[6.586917782127778,52.91135248830652],[6.586930851329688,52.91135037976757],[6.588051430322539,52.91116983786638],[6.589180554994547,52.91098791415066],[6.600970921561723,52.904727423447525],[6.600653439525797,52.903341592386994],[6.600337758583056,52.901877588189535],[6.600447762412623,52.901866359379774],[6.600800233957524,52.90183861825645],[6.601398935011974,52.90179658021176],[6.601988140800897,52.90175520199452],[6.602543927952095,52.901714718352814],[6.602876266846922,52.90168998910005],[6.60356058152289,52.90163639125669],[6.60403701995602,52.90160370136167],[6.603625036413074,52.899108052740715],[6.610647047749373,52.89908234013351],[6.610399981896758,52.89737347847041],[6.611230576801505,52.89734519989342],[6.612179883964433,52.897311509068864],[6.614289606192426,52.897235122049835],[6.614299811992558,52.897494517459094],[6.614310842324263,52.897799092692445],[6.620885750824241,52.897723007768214],[6.621906731376948,52.897708459615345],[6.622444938443733,52.89770404996648],[6.623103399047742,52.89760534669191],[6.623237656820842,52.89774632494761],[6.626976077611057,52.89753320471046],[6.627007946582699,52.89765528143203],[6.627075242685165,52.8978253420815],[6.627175815545227,52.8978096927992],[6.627110895404178,52.89765579374526],[6.627084417926867,52.897570751852435],[6.627060872656226,52.89745813324911],[6.627007950158662,52.89706210697273],[6.626989285148176,52.89689211628922],[6.62722905769058,52.89687618024825],[6.627289932123497,52.89685737532215],[6.628167611578558,52.89670647712258],[6.628705001389354,52.89661995710813],[6.630607083844327,52.896285481483595],[6.630782775367723,52.89624525694055],[6.630926037801916,52.89620812920238],[6.631023737044099,52.89617630236161],[6.632234026941516,52.895459324967426],[6.633651603790867,52.894603400311624],[6.633932886084487,52.89443355775809],[6.634721516651235,52.89397254183068],[6.636111345150471,52.893128156110656],[6.636254939665108,52.89305536542457],[6.636342669859669,52.89300270685025],[6.636396334430277,52.89320690461539],[6.636704287231973,52.89444708461903],[6.64046744266984,52.894066923635584],[6.640572766779212,52.89451685837415],[6.640582126711275,52.89454834173819],[6.640700063695339,52.89453437695632],[6.64073926591766,52.89452916594176],[6.64282314330756,52.89425213490119],[6.644817569822679,52.89399030884066],[6.645058783149646,52.89395911495634],[6.64525160916588,52.894481685443935],[6.645554207217617,52.895301794090216],[6.64556813946023,52.895324726805946],[6.645916535321777,52.896370465203674],[6.646400638820253,52.89629993043852],[6.647654840541199,52.8961162724088],[6.648411022113065,52.896005584968236],[6.650041873551824,52.895771177432614],[6.650112114442018,52.89576110526467],[6.650336332609411,52.895764834868],[6.652243304652259,52.895796575061006],[6.652854770570507,52.89568559569812],[6.654029685214139,52.89547213597767],[6.654724315718011,52.89534664825049],[6.655753212766829,52.89515558186969],[6.655960827178685,52.895120409122285],[6.655521672109081,52.894372983905015],[6.654577107651483,52.89276527620792],[6.654144071838902,52.89202275083929],[6.654604286024561,52.892039982235005],[6.65533369801662,52.89206353675229],[6.65587892285907,52.89205808337082],[6.655884642259455,52.89205802256919],[6.656091629297347,52.892055965750835],[6.658403152804422,52.89434232659905],[6.659287685756891,52.895217146108386],[6.659314342975994,52.89523791947361],[6.659519388622687,52.89539765988331],[6.659673404116968,52.8955105803876],[6.659780484430715,52.895575460167095],[6.65993197017671,52.895659171272605],[6.660583081916023,52.895984292820266],[6.66073029508983,52.8960579736248],[6.665287769615499,52.89821597989595],[6.670127062378084,52.90776989080209],[6.672571254512776,52.90988204022015],[6.67805546713448,52.91111027225327],[6.686726661404099,52.90974253332877],[6.68718774624954,52.90934462806699],[6.687213044392543,52.90932254010304],[6.687626501102419,52.90896142493379],[6.693824697291137,52.90951595986067],[6.696188979653461,52.90973160414291],[6.698035809507556,52.91008057839709],[6.69806101661454,52.91008679951488],[6.698119795514389,52.910097091756015],[6.698136814819926,52.91010095819003],[6.699703224637018,52.909926295281515],[6.702067702887414,52.91024975152447],[6.702461354521397,52.90982324793968],[6.703030847086218,52.91002707138816],[6.705423880256256,52.90917882178589],[6.706453236638345,52.90832369051898],[6.706846659514074,52.908136860678745],[6.707107399676143,52.90786394090517],[6.708108599156944,52.90681590251494],[6.70777083706873,52.906584339011104],[6.708335951898436,52.90627690707575],[6.706786401948182,52.90526363500065],[6.706993137815005,52.90519716092277],[6.707145117306406,52.90513973121485],[6.707337936090672,52.90503239165158],[6.707773565771923,52.90479872520503],[6.708021663918367,52.904649673247285],[6.708153190923444,52.904537393359924],[6.70846495037044,52.90422729954938],[6.708615929565739,52.90407810797616],[6.706779377800834,52.90344171148768],[6.706941862308854,52.90319315524115],[6.707435399280705,52.902435212714906],[6.707320034790059,52.902409948705966],[6.706902509073624,52.90231850774886],[6.706423742405412,52.90221365886323],[6.706991010827531,52.90163643190379],[6.720374483173866,52.8850454297604],[6.723834043925684,52.882572227417796],[6.732635288793229,52.87692236625116],[6.733430601840015,52.87599160239555],[6.734912942787544,52.874385188731154],[6.736366678840852,52.87273526407092],[6.737963189159057,52.87096413262094],[6.738174488221491,52.8710658522925],[6.73837162996994,52.871160748579065],[6.738586293207561,52.87126408314609],[6.738731737718596,52.87077207222377],[6.738760350379238,52.87067528418236],[6.738921494776907,52.870130131124846],[6.738967261993098,52.86997527748064],[6.738994313396864,52.86988374681526],[6.739045176544661,52.869711678053],[6.739083199305896,52.86958304804194],[6.739237493138065,52.869061070100706],[6.739376320990145,52.86859135931334],[6.739411720577593,52.868471611665896],[6.739460322300076,52.86830719874379],[6.73963181444676,52.8677269651455],[6.739871708594751,52.86761289772221],[6.739912900058081,52.86758577339418],[6.740111476816581,52.867482815314375],[6.740241308990655,52.86741026878219],[6.740350340705318,52.867346118799304],[6.740457505496991,52.867281163031784],[6.740562636435682,52.86721528653955],[6.740665535875993,52.867149300455345],[6.740767909061312,52.86708263719164],[6.740868639431786,52.86701664857404],[6.741029191341851,52.866909878248045],[6.740971458885359,52.86689922702805],[6.741483325718832,52.86656093825661],[6.741526486632698,52.866570577285714],[6.741688448580703,52.86646340355754],[6.74187341834617,52.86634101293171],[6.742045725954415,52.866226998474616],[6.742423594209749,52.86597704768824],[6.742527502094105,52.86590832522545],[6.742495225394221,52.86589095038921],[6.742752053798908,52.86572060185018],[6.742790520230993,52.86573787032701],[6.742989385898806,52.86560642224192],[6.743101573555132,52.865532257519696],[6.743899887086891,52.865002132434356],[6.744101768502488,52.86486805968057],[6.744766483413071,52.86443766489596],[6.745064544935698,52.86424467841533],[6.745447101710019,52.86394934866361],[6.74549339833231,52.86390752335383],[6.745536195775784,52.8638692250702],[6.745576425223433,52.86383001231317],[6.745615184491443,52.86379223632903],[6.745690740738029,52.863712806038365],[6.745763037156618,52.86362979979741],[6.745896665776524,52.86346271670579],[6.745978310964033,52.863360406262416],[6.746048692117107,52.863272676181005],[6.74606311723936,52.86325469837363],[6.746189068733307,52.863061449513296],[6.746334735603311,52.86283796616576],[6.746415142609987,52.86279425985419],[6.746480726394771,52.86269845035073],[6.746502700949907,52.86266633878859],[6.746507133336372,52.862659880098015],[6.746507488252695,52.862659354770955],[6.746507530831471,52.8626592913723],[6.74642439273579,52.86263763487636],[6.746361316860798,52.86262120521607],[6.746110420730965,52.862555838704],[6.746088354216517,52.862589775729404],[6.745713360109957,52.86249355649181],[6.745699854013367,52.86251243154525],[6.745698929985119,52.862512325229865],[6.745562508267029,52.86249683831636],[6.745474565721262,52.862486847892505],[6.744083247302945,52.86212331517781],[6.742979943539145,52.86183501794753],[6.741660349241141,52.86149019904717],[6.74165191024619,52.861484794448096],[6.741599318465151,52.86140166291651],[6.741577628547267,52.86136736076956],[6.741638569856989,52.861230739939515],[6.741683113122789,52.86113089390602],[6.741841219347606,52.860776441919946],[6.741866100673393,52.86072066074309],[6.741948130348165,52.86053674099039],[6.741982869551924,52.86045886407974],[6.742059275756496,52.86028757280713],[6.742161422672407,52.860058567103245],[6.742229525161097,52.859905902512864],[6.742325478086022,52.85969078098482],[6.742352843085888,52.859629417106625],[6.742434118953665,52.85944717719599],[6.742513673322592,52.85926882145843],[6.742561516695388,52.859161558666614],[6.742580703683229,52.85911853254477],[6.742658257302582,52.85894464829901],[6.742741586226353,52.85875782806296],[6.742825511474357,52.858569670806],[6.742846128181849,52.85852344675811],[6.742982378125682,52.85821797222881],[6.743016336237647,52.85814183843075],[6.743093608509513,52.857968568185335],[6.74321397287462,52.85769869418157],[6.743321660384492,52.85745722129408],[6.743348037605474,52.85739808830545],[6.743473645993047,52.85711643446555],[6.743530993918533,52.856987843288245],[6.743546125336672,52.856953904654674],[6.74386045619126,52.85624905104199],[6.744076191809882,52.85576529966933],[6.744307663892044,52.855246245030216],[6.744502205920655,52.854809945935884],[6.744697175469555,52.854372715847575],[6.744699312996673,52.85436791907718],[6.744835869771585,52.8540616744349],[6.744911215917831,52.853863663656995],[6.745032988872235,52.85358632053845],[6.745144662931302,52.85333282863503],[6.745332626895847,52.85294051639016],[6.745378540078169,52.85284467948386],[6.745480458160753,52.85261610420825],[6.745587510559377,52.85237601108481],[6.745774784123846,52.85195601487487],[6.745833506708175,52.851824314888376],[6.743071421589053,52.84847241814849],[6.741144233759548,52.84613335484823],[6.741039562161252,52.846006307275175],[6.740578973633679,52.84544722714486],[6.737961846008938,52.84587368798034],[6.737733806885191,52.84591084632894],[6.735878136648291,52.846212721075744],[6.734708269492998,52.846403155679205],[6.733240522249868,52.84664205939986],[6.732463644157924,52.846768501121325],[6.731377883254727,52.84694520948722],[6.729900084407075,52.847185703983314],[6.727348720720253,52.84760085380821],[6.727062817071731,52.84764737783469],[6.72636416176124,52.84688590197612],[6.722977736600479,52.84319541641975],[6.7217037332377,52.84180682751087],[6.721093507634459,52.841141667483726],[6.72102702656154,52.84106920682847],[6.720980996451084,52.841019031420764],[6.720734497081143,52.840750361676385],[6.720651651403602,52.84077737030221],[6.720473056657446,52.84058009341277],[6.720434855566078,52.8405378921703],[6.720426021630434,52.8405407321747],[6.72036762293847,52.84055948623349],[6.720329949589581,52.84057158238561],[6.72036905645083,52.84061477116176],[6.720513258621189,52.840774046564874],[6.720473860381259,52.840817681704216],[6.720469552974493,52.840824398696775],[6.720457425500242,52.840843354418475],[6.720444320232125,52.840863830995296],[6.720400929619246,52.84089823550297],[6.720337055336875,52.84094674592618],[6.720259789009314,52.84099075942281],[6.720191204851113,52.84101770714539],[6.720129603853888,52.841029306766444],[6.720054274525437,52.841042902276556],[6.719970761043815,52.84105533993314],[6.719954639444189,52.84105721879062],[6.719913612490376,52.84102748786501],[6.719271731165075,52.841252682405575],[6.7178069036335,52.841805401529285],[6.717300564514566,52.841996447552575],[6.717292566763705,52.84199946673267],[6.716527194167826,52.842288236028836],[6.716271495482857,52.84238471045706],[6.715450827679476,52.84269433813703],[6.714412758847689,52.84308596540212],[6.714332894092006,52.843116091033764],[6.71289089461704,52.84366009102184],[6.712714063364226,52.843726794623905],[6.711697857773482,52.84411015575351],[6.710928521975755,52.844400361424704],[6.71042474971003,52.84459038748025],[6.708258457410978,52.84540749982804],[6.707962139605784,52.84551926256986],[6.707948944649036,52.8455242350585],[6.706887165897156,52.84591720847701],[6.704529334727739,52.846791015878125],[6.704485027479274,52.84680743134531],[6.704196368489425,52.8468453836441],[6.70419554042761,52.8468454916527],[6.704145141571391,52.84684794462343],[6.704121468900926,52.84684909582105],[6.703811141880082,52.846854724393545],[6.703327038403671,52.84686621573656],[6.702758967170294,52.84687015615346],[6.702210753793646,52.84687690370877],[6.702209254952455,52.84687692023677],[6.70217087949238,52.846877370367025],[6.7020543877769,52.84687774710214],[6.701899366000874,52.84687886307381],[6.701895462536744,52.84687888813269],[6.701351053992355,52.84688134764275],[6.700654159789428,52.8468833631925],[6.700432225094016,52.8468857355073],[6.700367891151664,52.84688537443027],[6.700221245540893,52.84688710600349],[6.69986908847996,52.84688692052344],[6.699434390116116,52.84691084827295],[6.699364181606784,52.84691358910345],[6.698911176255625,52.84693841740993],[6.698531778445849,52.84696149090402],[6.698427376545856,52.84696850779324],[6.698311641375184,52.84679812630968],[6.697609037891048,52.846864663812056],[6.696686836332901,52.84695961881606],[6.694999469047074,52.84714810882612],[6.693222550663077,52.847344332251346],[6.691785250676306,52.84749452768866],[6.691773677762135,52.84749573280126],[6.691582149567478,52.84751574911297],[6.689764364747395,52.84770854802907],[6.688414956342917,52.847856286623795],[6.68663617777354,52.848006810828686],[6.685836947560928,52.848049112398265],[6.684795046344112,52.84809363590457],[6.681295000885131,52.84822051929144],[6.679425578143306,52.848289503334186],[6.678655525233848,52.848314804553006],[6.677480155262399,52.848353411466505],[6.676042075793912,52.84836268883526],[6.675008608149315,52.84836697805544],[6.674069111938995,52.848367242475796],[6.67381007576489,52.848369785783724],[6.673136272802492,52.84836670870801],[6.672171266418578,52.84836726920484],[6.671248948993196,52.84837064271094],[6.670566471970568,52.84837549063908],[6.67032012965207,52.84837908510217],[6.669811776199539,52.848374910007436],[6.669064425632814,52.848384338655535],[6.668934217687533,52.84838132530122],[6.667170128981014,52.84839957140323],[6.66700239928832,52.84839832476371],[6.666554215332867,52.84840736680806],[6.666143602793619,52.84842394922162],[6.665919295589914,52.848440402100515],[6.665739460184116,52.84845466116056],[6.665566691084575,52.84846942839052],[6.665559331272224,52.848470055524245],[6.66550980563273,52.848480158130826],[6.665454075276948,52.84849536024255],[6.665089072148477,52.84859489938932],[6.664877302756953,52.84865738490734],[6.664685671757446,52.84873438488608],[6.664501208886171,52.848831143259595],[6.664376254165076,52.84891700028734],[6.664176748904449,52.849040099918334],[6.664024927942529,52.849165277086975],[6.663898774928565,52.84927370512348],[6.663832477226078,52.849346998147844],[6.663746534097548,52.84944199959326],[6.663656052266655,52.84957375462105],[6.663584408803659,52.849698378565456],[6.663526236779425,52.84981204628866],[6.663465706760949,52.84995987384425],[6.663394293675047,52.85015140733015],[6.663222178423302,52.85077869998264],[6.663149044942374,52.85105784408723],[6.663051372016606,52.85137928529443],[6.662906949916571,52.8515904821955],[6.662677378780089,52.85193944258118],[6.662336696942108,52.85232522601392],[6.662104580139792,52.85257244669859],[6.661854695031615,52.852820890363574],[6.661156277333466,52.85344915653765],[6.661064425658206,52.8535212199007],[6.660919330195433,52.85361563756756],[6.660806763835582,52.853703928712434],[6.660855663723468,52.85372764583938],[6.66043044309275,52.85405997868956],[6.660388029283472,52.85404128806943],[6.660311925141004,52.854007750196324],[6.660239868922421,52.853971985102135],[6.660143241205958,52.85392706330924],[6.660133683730465,52.85392261763571],[6.660563376783363,52.85358680485646],[6.660600634824962,52.853604867411235],[6.660719777374571,52.85350685364756],[6.660999964945189,52.8532667078721],[6.661471433012067,52.85287467792855],[6.661704961817713,52.85264871690316],[6.661850728569805,52.852503161046805],[6.661890476485443,52.85245745710176],[6.662020123280951,52.852323262774526],[6.662145205340219,52.85216646854179],[6.66236936866333,52.85187673192047],[6.662434385892348,52.85178936106445],[6.662495898116911,52.851715185381714],[6.662565617076851,52.85163021776321],[6.662651711082034,52.851501997778314],[6.662724048397648,52.851379083693644],[6.662785898314121,52.85124529897525],[6.662812309717772,52.8511766214234],[6.66283901217323,52.851087907558885],[6.662876308774803,52.85098881661139],[6.662978130990275,52.85061267798589],[6.663010433002131,52.85050932639542],[6.663047809753005,52.850393176189634],[6.663104923454039,52.850178599116155],[6.663148204168422,52.850016028033274],[6.663215801617445,52.849870731414086],[6.663296189333224,52.84970233475272],[6.663415269917737,52.84951633082102],[6.663472548560297,52.84942647168085],[6.663536606357547,52.84935016505101],[6.663554539774028,52.849328807486],[6.663632004595828,52.84923679989544],[6.663784983505275,52.84906938742522],[6.663902843050854,52.848975886701275],[6.664186020152465,52.84879086626235],[6.664415992373737,52.84865219744833],[6.664919165939458,52.8484029217176],[6.665019009646874,52.848359547607394],[6.665138634537874,52.8483494310164],[6.665315522530928,52.84834658266827],[6.665371009831064,52.848338303626655],[6.665497933082632,52.84831937256591],[6.66550142129328,52.84831884984861],[6.665671779194127,52.848294752533086],[6.665841228893045,52.8482720937285],[6.665977134084218,52.84825623845054],[6.666269288778074,52.848235912135365],[6.666440980982791,52.848225981737116],[6.666726130798467,52.84822450440623],[6.666875867356828,52.84822372458646],[6.667253854204859,52.8482205397423],[6.668050790473814,52.84821381638348],[6.669334879747369,52.848201177121815],[6.669634646460063,52.848199508721606],[6.669965300944686,52.848197660114444],[6.67029160656652,52.84819583940598],[6.670665231141049,52.84819375121155],[6.671414860102862,52.848188215526434],[6.671880886390853,52.848184768938815],[6.673080260810981,52.848184020640886],[6.673509924765619,52.848184905297614],[6.674038019140207,52.84818599355853],[6.674358830888451,52.848186656628975],[6.675659308361192,52.8481886287924],[6.675769056847467,52.848188530480485],[6.676959517412365,52.84819406786255],[6.677467792053742,52.84818654748802],[6.677785472609591,52.84817618052712],[6.678231413575248,52.8481561646937],[6.678650346588253,52.84813953139167],[6.681543070546423,52.84802463947229],[6.684772594442815,52.847899910545955],[6.685835859058561,52.8478645735306],[6.686676940978624,52.84782448520781],[6.687355818946622,52.84777528451306],[6.687772046957803,52.84773780642671],[6.688181767202765,52.8476961737189],[6.688753743735661,52.84763657320153],[6.689618615942035,52.84754168579256],[6.691121787455491,52.84738287825275],[6.691527039510051,52.84733598917043],[6.691536152934222,52.847334945796035],[6.69206073948517,52.84727499384507],[6.693362635001192,52.847133405324236],[6.693781344407538,52.847088419300235],[6.694718921504919,52.84698808747993],[6.695494660923592,52.846901836856965],[6.695734896820469,52.84687358639577],[6.696310330751185,52.846810649030246],[6.696578764310511,52.84678217718653],[6.697006240171308,52.84673569045247],[6.697517550441956,52.84668297836778],[6.69779439808242,52.846652973307144],[6.69802690332443,52.84662938683759],[6.698189034545533,52.84661539041867],[6.698067750220977,52.84643464409568],[6.697694796733241,52.84587880730086],[6.697605346273265,52.8458902967789],[6.697166495935596,52.84529686833824],[6.696554613866065,52.84444853582081],[6.696105033862876,52.8438333994008],[6.696034475419071,52.84372860558522],[6.695990503911243,52.84365261276595],[6.695963412345326,52.843593061717264],[6.69592585582275,52.843455163813466],[6.695925916302968,52.84340462590304],[6.695934018062542,52.8433365997532],[6.696020345984783,52.84332509183099],[6.696050292431174,52.84316319313029],[6.696097318100491,52.84291434967396],[6.696164028810242,52.84255456289269],[6.696209126050188,52.84231571674415],[6.696247187060462,52.842104629607846],[6.696292463245028,52.84187674629848],[6.696343636771003,52.84161284780766],[6.696369990194751,52.84144603621322],[6.69637358505125,52.84142333001593],[6.696398932736896,52.84127349803771],[6.696403314743673,52.841231477828636],[6.696403436739203,52.84119094240801],[6.696398739786423,52.84115800948175],[6.696390851105353,52.841127538250795],[6.696384203291646,52.84109885091554],[6.696373215184926,52.84106400978814],[6.696359305222277,52.84103072863147],[6.696350314827114,52.84101303188733],[6.696340622484438,52.841001634170276],[6.696328758247891,52.84099205781784],[6.696314587188705,52.84098475369088],[6.696295268555948,52.84097903396804],[6.696277392962183,52.84097689344032],[6.696248728645914,52.84097630936814],[6.696233015348181,52.84097747949561],[6.6961372779719,52.84098687995654],[6.695689429668554,52.841030262223875],[6.695451751480987,52.84105363152023],[6.69500668340065,52.841095722444926],[6.694895319528133,52.84110623699],[6.694909071615695,52.84117496712979],[6.694020398131706,52.84125707802795],[6.693508369580802,52.841306610901825],[6.693472997382377,52.841211684947396],[6.693364649255815,52.84122777328032],[6.693401146961918,52.84131964014052],[6.693119466497114,52.84133440031259],[6.692457321188909,52.84142346433183],[6.691964203448626,52.84149552214975],[6.691867239387744,52.84126294163266],[6.692125318715038,52.8400531823492],[6.692549998571527,52.838062301268664],[6.692584089828917,52.837905687551775],[6.692963059653369,52.83616469212271],[6.692951637146678,52.83613852846335],[6.692721905903119,52.83561201554384],[6.692193040920957,52.834419442348235],[6.692033781515141,52.83406917662822],[6.692124143436285,52.83405020344836],[6.692093651510345,52.83401308579805],[6.692009877970837,52.83394698202159],[6.69194490609418,52.833906691569815],[6.6918268534224,52.83384562736363],[6.691711329310562,52.833803148719646],[6.691311467872884,52.83371258699477],[6.690469018421453,52.83354071649389],[6.689687615977215,52.83337638786068],[6.68942872300648,52.833327429276835],[6.689230533393558,52.8332871453479],[6.688512558792844,52.83314247330621],[6.688313957724366,52.83309977468917],[6.6881812963345,52.83307717152691],[6.688124661074974,52.83307351141688],[6.688042155043632,52.833067212582414],[6.687903188128677,52.83309205158935],[6.688089010200013,52.832947642502766],[6.688189136427249,52.832871809007194],[6.688286239658265,52.832801122362454],[6.688351715175757,52.83275377111181],[6.689151911923441,52.83217070018231],[6.689530444942973,52.8319084776012],[6.689874909539095,52.83166047593066],[6.690851304822401,52.83094811320391],[6.691350699581206,52.83058339829647],[6.691533793454038,52.83044925031675],[6.691608019078272,52.830389524373416],[6.691686406974251,52.83033154137465],[6.691699299635804,52.83032199925313],[6.692061419650111,52.830052829660666],[6.692514972782331,52.82971849521387],[6.69253856603107,52.829730397143415],[6.69261106105102,52.8296784008734],[6.692816590973814,52.829528582397394],[6.692971985112666,52.829428681711214],[6.693068751540605,52.829374558868686],[6.693171414630671,52.82932758841253],[6.693296350285685,52.829281596175406],[6.693412542539405,52.829245936508194],[6.693547324654297,52.82921365009989],[6.693712794566888,52.82918388529532],[6.693907764605295,52.82916506740257],[6.694139106455949,52.829147800776994],[6.694403514258254,52.82913219335626],[6.694677556876464,52.82911723464165],[6.694964768723143,52.82910400924907],[6.695258437213356,52.82909332772043],[6.695393799932858,52.82908993705338],[6.695346663789648,52.828979043631854],[6.695514625817691,52.8289701541887],[6.695790563780908,52.82895064233896],[6.695588830654937,52.82891991684707],[6.695439336811025,52.82890081398467],[6.695315396172227,52.828887685943016],[6.695253457755965,52.82874574985139],[6.695247882163936,52.82873297669245],[6.695107349099794,52.828537141217154],[6.695068035257709,52.82850120857019],[6.695001717408526,52.82844996962371],[6.694853638475547,52.82835107631615],[6.694522171034441,52.82814598295906],[6.694451460734223,52.82809817122749],[6.69403495291191,52.82783431317872],[6.693704342605359,52.827624867158306],[6.693488501526538,52.82747923313926],[6.693302337594366,52.82735096125106],[6.693301580092703,52.8273504392801],[6.693189400171312,52.82727333208979],[6.692555504727489,52.8268505672289],[6.692261930868637,52.8266685014671],[6.692172997673576,52.82663389299493],[6.692090171155282,52.826598561516896],[6.691957404865224,52.82653106160465],[6.691508461105834,52.826277624986815],[6.691096989695732,52.826045643746966],[6.69105888387285,52.826019187520394],[6.69103222654272,52.82599351381848],[6.690984280491846,52.82591071389191],[6.690972032798228,52.82590302860429],[6.690191542574467,52.82590724798129],[6.690169494999461,52.82590928648844],[6.690141036008727,52.82591525974682],[6.690010853923146,52.82596323844406],[6.690002531399215,52.82596279013991],[6.689993430900987,52.82595614887405],[6.68999097580512,52.82594844634457],[6.689981287416316,52.82577710423071],[6.689950435286941,52.82530718169132],[6.689940340353486,52.82514011311395],[6.689939985745288,52.82513767235391],[6.689926089158448,52.82504023653293],[6.689982515079772,52.824877303290144],[6.690012774586417,52.824767413375426],[6.69002227844639,52.824678511715746],[6.69000806745283,52.8246462396537],[6.68999257774643,52.824571532982716],[6.689910575396079,52.82429416308091],[6.689834576134151,52.824006095142515],[6.689820844813767,52.82398144831327],[6.689704493307468,52.823939138646814],[6.68968843152991,52.823934883240916],[6.689653631067116,52.82392566468468],[6.689638752646641,52.82392477569245],[6.689609233391561,52.82392300409428],[6.689546744456644,52.823929151289164],[6.688978510756217,52.822997300795706],[6.688964915238253,52.82296672054636],[6.689026725901832,52.822949292584546],[6.689304704492217,52.82288438560625],[6.689382337483661,52.82286618245372],[6.690210674519271,52.8226719676168],[6.690361359661519,52.82233692401271],[6.690440434991156,52.82218242484279],[6.69047732446872,52.822095973883314],[6.690547093724749,52.821932417968085],[6.690556967981034,52.82190928367427],[6.690557550485476,52.821907920171824],[6.690594536365239,52.82182123443349],[6.690599707026962,52.821809538903764],[6.690609839789748,52.821786617481166],[6.69072759432278,52.8215201854983],[6.690798416893609,52.82138207986257],[6.691216647954889,52.820423907530696],[6.691409019790405,52.82000471328701],[6.691440809482096,52.81993543022453],[6.691592834523289,52.819604153811675],[6.691629499630139,52.819524256850976],[6.691614963933628,52.81949351639294],[6.691651867848462,52.81941068683604],[6.692009220250871,52.81860862753011],[6.692021957092829,52.818580051182174],[6.692422252121301,52.81779419234939],[6.692435831555931,52.81776752109017],[6.692531068316804,52.81758092809635],[6.692754932526137,52.81715802489853],[6.692816580279831,52.81701565928099],[6.692695392602934,52.816767004077],[6.692693826056128,52.81676372276598],[6.692591769825445,52.816551141067094],[6.692439379623629,52.816246025339034],[6.692332759053135,52.816032522724186],[6.691933312962588,52.815212763868736],[6.691569171152018,52.814481055808706],[6.691338186652962,52.8140279810632],[6.690887874227384,52.813103835205546],[6.690715882068968,52.81275086558093],[6.689099779716657,52.81312338049293],[6.687025330209804,52.81360150752431],[6.686967518154492,52.81350744408658],[6.686965367427843,52.81350395336866],[6.686747216105106,52.81314905499401],[6.685961815732102,52.811871249125254],[6.686140484403266,52.81153913147857],[6.686353931272709,52.81116298136369],[6.686761642923989,52.810388950077716],[6.687299371182736,52.80939962844346],[6.687311699830446,52.809382758922474],[6.68736470592127,52.80931023442362],[6.68729684163962,52.809292019781154],[6.683310195697712,52.80821671297013],[6.682408700331269,52.80796746255705],[6.682302670230519,52.80793343715431],[6.681828367611181,52.80780506988745],[6.681813446276713,52.807801034743726],[6.681343676502827,52.807673883584386],[6.681294113005189,52.80765294129014],[6.681262470634094,52.80762111805498],[6.681157678118079,52.80748793534979],[6.680912743185671,52.807176628652854],[6.680862719662335,52.80712303901279],[6.680839147994846,52.80709779689911],[6.680594830104866,52.80678864887842],[6.680510090705354,52.80667996402817],[6.680441516477054,52.806592817882326],[6.680398560079247,52.80653291392197],[6.680364998747557,52.806447140379575],[6.680335313838665,52.80632490676745],[6.680326168610053,52.806298492405546],[6.680336679714729,52.80625568696658],[6.680177323574585,52.80633764886499],[6.680097983540464,52.80618826294565],[6.680306852483443,52.80607241069962],[6.680288169442635,52.80607505806682],[6.680274208405077,52.80607890347993],[6.680265812400997,52.80607784415979],[6.6802618178153,52.806071650066514],[6.680260274492149,52.806064090214655],[6.680026007914023,52.80531466125881],[6.680021340063639,52.80529972946623],[6.68001431300294,52.805277228693136],[6.67969670855348,52.804238068999894],[6.679691848664727,52.804222150631716],[6.683250094188007,52.80228094978265],[6.683411220890763,52.80237664159981],[6.68442756802725,52.80297365210658],[6.684443158887774,52.80298281159084],[6.685186273248449,52.8034193040331],[6.685250122328747,52.80345698592941],[6.685273925292797,52.80349950797738],[6.685272667801096,52.80352711383452],[6.685242491305177,52.803574717704656],[6.685614519658125,52.80334868716895],[6.685662313270572,52.80332406146589],[6.685971872077611,52.80312098189438],[6.686018883141247,52.80309098994181],[6.686536453944896,52.80271140638623],[6.686839349811852,52.80248998136034],[6.687313897934532,52.80213927352711],[6.687532646285876,52.80197987193567],[6.687579718090458,52.80193702629346],[6.687784926587288,52.80178017168003],[6.687861891246413,52.80172624140178],[6.688068444558986,52.801565803487236],[6.688165348122362,52.801473250964165],[6.688748964928058,52.80104342310701],[6.688929226509392,52.80091064728291],[6.689017180250092,52.800845864880365],[6.689340104075326,52.80061660181877],[6.689692761393461,52.800381009066875],[6.689799009499424,52.80030866517525],[6.69032608075335,52.79998141268458],[6.690678909041766,52.799783779033945],[6.69102321719072,52.799603395035135],[6.691225765689918,52.79951382722113],[6.691204281993818,52.79949950226483],[6.691230585747753,52.79949642822494],[6.691283881295103,52.79947355548851],[6.692127355087463,52.79902122810998],[6.692322116404128,52.7989287687322],[6.692379413114138,52.79890585166839],[6.692953638605748,52.79859469788832],[6.693490910987306,52.79829770653579],[6.694205447957619,52.79792370314372],[6.694283604777527,52.79787989360091],[6.695086812969222,52.797447237961904],[6.695484350792017,52.79725009650618],[6.69597970424809,52.797020674012224],[6.6966708278363,52.79673282605961],[6.697502321022364,52.79640100848101],[6.697587688339897,52.796366949969645],[6.697589651750389,52.796366164421556],[6.697661245163514,52.796337596034675],[6.697339106545132,52.79611744340215],[6.695813000619448,52.79507447307171],[6.695156882133479,52.79462604535287],[6.694934340908721,52.794715399235734],[6.69470008348107,52.794810651372565],[6.694515599999243,52.794886033354516],[6.694321094146926,52.7949664322828],[6.694296565111498,52.794949391045776],[6.693977657074352,52.794733229496615],[6.693622680181275,52.794488827751486],[6.693260410647918,52.794241386168004],[6.692851720376352,52.79396008319748],[6.692648152796519,52.793812623473045],[6.692502850118496,52.79369728530731],[6.692131024443476,52.79339542558711],[6.691433485742503,52.792830573102904],[6.691324475745883,52.792742302675364],[6.691222853605666,52.79265515564436],[6.690972839901502,52.79245022171833],[6.690760124648317,52.792276920383884],[6.690531433985,52.792090860117966],[6.690359026560951,52.7919501559604],[6.690140517308291,52.79177430148374],[6.689936519624519,52.791610735918795],[6.689738039832138,52.791448700509555],[6.689577753381546,52.791319061409574],[6.689485399896926,52.79124173403009],[6.689409379463545,52.7912564419659],[6.689074784186285,52.79131922869102],[6.688912349553147,52.79134963833909],[6.688898240265351,52.791351805737456],[6.688892709120111,52.791350275343376],[6.688875714363702,52.791353130366794],[6.688704687278642,52.7913872646383],[6.688429867617646,52.79144102898457],[6.68814647148274,52.79149458075711],[6.687970143935448,52.791527001262565],[6.687954572697044,52.79152986757513],[6.687568517107335,52.79160481497021],[6.687466258747371,52.791626701590495],[6.687340640421746,52.79165079336881],[6.687281878330024,52.79166207603035],[6.687007407986602,52.791714736753654],[6.686982729543038,52.79171947287104],[6.685161917595958,52.79206880295757],[6.685084471631657,52.79209053404516],[6.685000683898378,52.79200485923433],[6.684989384593898,52.791993298302025],[6.684987075973341,52.79199094170802],[6.682403871655861,52.78934939888653],[6.682360072231275,52.78930461296361],[6.682296413462804,52.789239497016766],[6.682293401861294,52.78923642000883],[6.682252614258655,52.78919471105232],[6.682182932638335,52.78912344102356],[6.682089158386146,52.78902754586287],[6.682066456199422,52.78900432571147],[6.682051352302574,52.78898888721499],[6.681968096041976,52.78890373479114],[6.68055591181406,52.78745946173653],[6.680447959004083,52.78734906027438],[6.680336444385875,52.787234994442116],[6.680321341712547,52.78721955571522],[6.68002625575188,52.78691773355495],[6.679925872163011,52.78681506878798],[6.679916593288989,52.78680557060328],[6.680758706831651,52.78647710569919],[6.681356036164024,52.78624468536767],[6.682061722937802,52.78597010032617],[6.681071773482766,52.785698093704774],[6.679659582453156,52.78531889842267],[6.678391320457231,52.78498022509461],[6.677737271298602,52.78480250693969],[6.677043146679882,52.78461783124252],[6.676774534031971,52.78454513467382],[6.676410139302804,52.784446519957164],[6.675406844954298,52.784843233334605],[6.674530133147036,52.785194692351816],[6.672609860049689,52.78338486653201],[6.669070382632992,52.78004870825425],[6.669043932220815,52.78001603497404],[6.669025831044504,52.779991612434436],[6.669013612053335,52.77997065876427],[6.669001304553106,52.77994617387748],[6.668986558474089,52.779914839635495],[6.668882445941168,52.77943409307712],[6.668873089212156,52.779390899974544],[6.668817114494178,52.77939268859808],[6.668756430328549,52.77939410543986],[6.66869230443291,52.779394912162026],[6.668558925348421,52.77939504375892],[6.668423726330891,52.77939275012546],[6.667425848920877,52.77935461269212],[6.666163812504347,52.77930465346449],[6.666116613114539,52.7793029132984],[6.665386960357908,52.77927604337109],[6.665376578880361,52.77930935533086],[6.664352668456626,52.77926576433645],[6.664194848347049,52.779259789803184],[6.663641126104119,52.77923621793889],[6.663625638797501,52.779235763742435],[6.663427150850901,52.779229900404395],[6.662793121156249,52.77920367078609],[6.66263949884322,52.779197280747965],[6.661976802309448,52.77917147955773],[6.661996143250425,52.77912457251193],[6.66061272917239,52.779019527596645],[6.659978440391995,52.77896788658318],[6.659976910042374,52.77896775913169],[6.659799087260294,52.778953283437886],[6.659754991813553,52.77894969208145],[6.6597483668004,52.77898694493911],[6.658454184748544,52.77888580204691],[6.657688212944251,52.77882253097305],[6.657247688051405,52.77878188576848],[6.657262082864895,52.77874671625434],[6.657243468004729,52.778745225041284],[6.657148076517363,52.77873759590721],[6.656925724745489,52.77872136171359],[6.656259715192247,52.778667792157215],[6.654803637569397,52.778555311256326],[6.653383540261053,52.778441306699655],[6.653296037936707,52.77843428268317],[6.652293505390931,52.77838813210749],[6.652244772880257,52.77838918892048],[6.652274638600068,52.77825679775066],[6.652197329997026,52.778262463129295],[6.652077787689689,52.778268909475464],[6.651897156736337,52.77828325736416],[6.651822634580392,52.77829046575902],[6.651749153906285,52.77829935273491],[6.651676699889198,52.778309918451086],[6.651603219152122,52.77831880533711],[6.651531278667375,52.77833021934301],[6.651459866301684,52.77834247254195],[6.651319079982257,52.77837033654614],[6.651180362158813,52.77840157577656],[6.651043697468263,52.77843617242775],[6.650976391705503,52.778455149486255],[6.650909599474307,52.7784749748878],[6.650841795080587,52.77849311231719],[6.650776029646931,52.77851462542169],[6.650750823177998,52.77852405124717],[6.650711818689955,52.77853864753855],[6.650582370171399,52.77858502185874],[6.650519185913723,52.778610731651824],[6.650456515165033,52.77863728979442],[6.649859528632674,52.778930380177385],[6.648719242454538,52.77949017057653],[6.648196055279566,52.77974700545485],[6.647617908446559,52.78003240711759],[6.64700600850124,52.78033445751091],[6.646445603104064,52.78061108247322],[6.646273205365846,52.78069618449012],[6.64275991352313,52.77767004534795],[6.638573972519105,52.774063851790046],[6.635294276109146,52.77124048983785],[6.63339111388072,52.76959990047391],[6.632855325423272,52.76913834406787],[6.632699623448139,52.76900420462478],[6.632451671953637,52.768790589846894],[6.630621907506625,52.767214170199686],[6.630366047980033,52.766993731158536],[6.627011676401036,52.76410338985183],[6.625677034318341,52.76295323793327],[6.625585492090082,52.762874343373916],[6.625855972372461,52.76287309423464],[6.627148508105776,52.762867094163795],[6.627216642781319,52.762796217906185],[6.628747656679524,52.7612034938404],[6.62989078940809,52.760014192045425],[6.63006995376021,52.759827786959924],[6.63126632912719,52.75858299148193],[6.627124705169841,52.757253309370014],[6.624634261571635,52.756456320729086],[6.624462296073336,52.75640109874005],[6.624443711588494,52.75637196500509],[6.624414308559201,52.756325885035984],[6.624398282124043,52.75630077816407],[6.623359641707613,52.75467308198048],[6.623326808164767,52.75390383353889],[6.623264308516201,52.75391950079588],[6.623045351607927,52.75275460438524],[6.622870751619605,52.751826576176626],[6.61825176505702,52.752988194759084],[6.617072712821209,52.751144978310634],[6.616964557646436,52.75097616513692],[6.616518129857822,52.75027940265034],[6.615466787534435,52.74863839573345],[6.615188322915856,52.74837260793413],[6.615150977670929,52.748336970422024],[6.613561979980989,52.74682024516118],[6.613164755051612,52.746441055819005],[6.61227157278609,52.745588428580966],[6.610678435014188,52.74406846325722],[6.610284675245853,52.74369276994303],[6.610263546480385,52.74367223441166],[6.611732320032864,52.74312025564526],[6.612679820947053,52.74276415584405],[6.613274318627117,52.742540720935416],[6.61327629721803,52.742539981541604],[6.61467574087915,52.74201208376045],[6.615164655209305,52.74182764697595],[6.616269493114022,52.74141085476841],[6.61711464455402,52.741092014095805],[6.617156598422128,52.74107618468959],[6.617305439524833,52.741020118334966],[6.616476907385054,52.7401794723757],[6.616227950466043,52.73992867916494],[6.615815045164728,52.739512720651376],[6.614824137347221,52.73851220278025],[6.614224745265671,52.737904889930284],[6.614162025102507,52.73782941043648],[6.614103922546772,52.73772896037394],[6.614100450438115,52.737718121020144],[6.613807875582631,52.73766400120002],[6.613734395333449,52.73765061166355],[6.613871818303172,52.73729406389823],[6.613947268460085,52.73712856843841],[6.614231149534647,52.73654554810554],[6.614457782126776,52.73608488286919],[6.614630186220209,52.73573160438862],[6.61482763390241,52.735329407786764],[6.614928801842934,52.73512125123372],[6.61499982620441,52.73500526905261],[6.615047166684882,52.73494138132053],[6.615132987702983,52.734825587954205],[6.61528593239755,52.734638593294314],[6.615710363781982,52.734103533183266],[6.615971527205733,52.73376972950915],[6.615983806247023,52.733754036002324],[6.616052171236386,52.733655876277],[6.616272821555662,52.73333905449713],[6.616504770314093,52.7330054882679],[6.616590961928419,52.73288152904868],[6.616618772280646,52.73284154299041],[6.617035221496221,52.73223262699973],[6.617762774453926,52.73118474092358],[6.618605403331171,52.72995965240581],[6.618661804003236,52.72986606371447],[6.618724742928876,52.729742226498836],[6.61877336996276,52.729613818767525],[6.618924144471335,52.729163554390574],[6.619145336725208,52.72848431707126],[6.619318671878542,52.72795204795234],[6.619267604324277,52.7279423125904],[6.618499740550918,52.72780040609324],[6.618141555991401,52.7277342223481],[6.617227489291656,52.727565292566695],[6.616511934751409,52.72743209009821],[6.615874511670674,52.727313868274614],[6.615797752709494,52.72729963314589],[6.615785684516041,52.72729742090739],[6.613495846412263,52.72687875805483],[6.612653806033542,52.72672459104103],[6.612454742148216,52.72668028173274],[6.612011051968755,52.72659919537858],[6.61182867158126,52.726561714790336],[6.611818582937005,52.72655986825656],[6.611309715406517,52.72646718165275],[6.610725824119926,52.72636017375443],[6.610460798399826,52.72631217117495],[6.609975385716948,52.72622425298975],[6.609921905120855,52.726214367667986],[6.609383781142711,52.72611486414154],[6.609059848583532,52.72605497040335],[6.608755870084249,52.72599658764602],[6.608667447852246,52.72597960056752],[6.608486978665226,52.725946229637046],[6.608430418476767,52.725935773072],[6.608420046675081,52.72593384826779],[6.608395494135116,52.7259293097323],[6.608323027010205,52.725915915562254],[6.608278728230844,52.725907723859955],[6.607734472948092,52.72580519303525],[6.607012718957,52.72567106267169],[6.606795879622107,52.725630763907944],[6.60652683254964,52.72558103223519],[6.606315595131466,52.72554198741929],[6.606078541334664,52.72549817349517],[6.605889172048645,52.72546347872428],[6.605599204236362,52.72541035510655],[6.605213295764286,52.72533965301587],[6.605181688333232,52.72533372102084],[6.60419541869379,52.725148614624985],[6.603718291523442,52.725059067429626],[6.603706090356293,52.72505681938228],[6.602606257395193,52.72485445375037],[6.602095395093685,52.72476045413509],[6.601571846015197,52.72466475728248],[6.600750848047398,52.72451468687699],[6.600542233912513,52.72447591071252],[6.599780661278627,52.724334341361114],[6.599624793942672,52.72430525420762],[6.599043615934107,52.72419682254455],[6.598393740929786,52.724075569666034],[6.597770304106938,52.723957936027496],[6.597416240569596,52.72389715786151],[6.597144819308371,52.72385824148898],[6.596804764496408,52.72381530353149],[6.596803781583266,52.723804887760586],[6.596792199556055,52.723682251126874],[6.59678780759506,52.72363570339718],[6.596783642838695,52.72359149016623],[6.596779419079111,52.72354674725857],[6.596772886231955,52.7234773115732],[6.596772571850805,52.723473962346745],[6.596766775222266,52.72341243736379],[6.596755537386767,52.723293149639474],[6.596683003632434,52.72252368355439],[6.596623899643399,52.721896572272904],[6.596567312698303,52.72129627265909],[6.596509137158682,52.720679092145915],[6.596450355159138,52.72005541955132],[6.596389946527347,52.71941455185843],[6.596332571967944,52.71880583829741],[6.596270489247013,52.71814705684102],[6.596264989628954,52.718088737365456],[6.596144138331609,52.716806363327926],[6.594322572500394,52.71686695368306],[6.592975405404641,52.71691558290112],[6.592577999382524,52.716930924551306],[6.592562394188047,52.71693127136174],[6.592561006674848,52.716916320838386],[6.592192658220832,52.71693018947663],[6.592194099853076,52.71694442043664],[6.592112040806674,52.71694804652584],[6.59119827220947,52.71698836582391],[6.590062129261745,52.71705326958118],[6.58905098926305,52.71711435652791],[6.588638140372304,52.71713392139303],[6.588617509134775,52.71711611827939],[6.588317613453454,52.71713168351137],[6.588302927206143,52.71714938477698],[6.586043202728683,52.71723150833497],[6.585990640237792,52.717233493864434],[6.585975455566374,52.717234069254566],[6.584110777375508,52.71730448233381],[6.583060035867507,52.7173407240065],[6.582441431808558,52.71736391667563],[6.582435006399765,52.717347003411724],[6.582242615191692,52.71735422938956],[6.582241560646443,52.71736713735545],[6.581805367484474,52.7173845850881],[6.580840846603659,52.71742878548394],[6.578594524426365,52.71752412353177],[6.578593331570006,52.717537428301284],[6.577792835966275,52.717556836293355],[6.577376817816972,52.717572277363544],[6.576188112356526,52.71761638108357],[6.575546332985926,52.71763446666325],[6.572932892369361,52.717723548593796],[6.572705236645628,52.717737680513714],[6.57269854585965,52.71771792928112],[6.572546455012245,52.71772791073929],[6.572220614231794,52.717742750059394],[6.572041580627181,52.717750905030215],[6.572042555835711,52.717764547640975],[6.571889392003803,52.717767142061206],[6.571880670106607,52.71760087550068],[6.571876486423523,52.71755665271324],[6.571830630703582,52.71713001354177],[6.571982491165985,52.71712472685879],[6.571978551794476,52.7170363809967],[6.572001514315738,52.71703498397524],[6.571980624588787,52.71690319853069],[6.57198414187434,52.71670127269846],[6.572001247626813,52.716618909824724],[6.572043225815463,52.716490237309365],[6.572163724901062,52.71625431453706],[6.572179483102664,52.716223464601576],[6.572320987977226,52.71621737282479],[6.572411435119433,52.71603386877269],[6.572521974004018,52.715809585007584],[6.572710467475352,52.715602401073866],[6.572799988043511,52.71547345231509],[6.57284393606781,52.715410145415106],[6.572942480572878,52.71524492210626],[6.573025640746722,52.71506741302233],[6.573117004089192,52.71490102979015],[6.573170961498691,52.71476838167265],[6.573230609709249,52.71462945730732],[6.573289330786907,52.71455864203855],[6.573352963778837,52.714498724809125],[6.573398091213428,52.714447359577264],[6.573451968172635,52.71437529827923],[6.573478135828695,52.714308564290704],[6.573483022267978,52.71423529268146],[6.573485278419358,52.7141939267103],[6.573624005974396,52.71357459335894],[6.573633076266028,52.71354824980904],[6.573650567396237,52.713474825536274],[6.573654890122802,52.71346337702534],[6.573671546084063,52.71341927900084],[6.573680933316227,52.71337510065908],[6.573682850531285,52.71336609382743],[6.573703007817211,52.71319367922443],[6.573708934329543,52.71301711936936],[6.573695281691166,52.71270974079386],[6.57367607485495,52.71270490817497],[6.573658766091642,52.712692003633485],[6.5736447701803,52.71264124574625],[6.573623355597355,52.71213430934931],[6.573603338640578,52.711826320079425],[6.573761813083085,52.71123433660403],[6.57381590858656,52.71123730235943],[6.573926267710687,52.71087462575125],[6.573892885680542,52.71058194099224],[6.57358164736132,52.71059357399274],[6.573511592818135,52.70991582529169],[6.573487015626232,52.70967556785287],[6.57347206323678,52.70953243464344],[6.573439462207227,52.709227976969785],[6.573431128991333,52.70914358442999],[6.573407541564048,52.70889885016749],[6.573304444805829,52.707829394861754],[6.573247243231887,52.70715656856931],[6.573241128612967,52.70709675327489],[6.573182329427623,52.706481922612646],[6.573173278664723,52.706387363045835],[6.573100621243468,52.70562755447264],[6.573049173027385,52.705089693121145],[6.573080945465232,52.70508874729785],[6.573083187413095,52.70503371103852],[6.573092642621484,52.70502604912359],[6.573152869551807,52.70499171783797],[6.573209501254574,52.704980952245506],[6.574766374650934,52.70492092420394],[6.575204949406929,52.70490356746149],[6.57546918490503,52.704893109390326],[6.575464664949839,52.70485130763066],[6.575453292653231,52.704746039994724],[6.57508669106717,52.704755237243646],[6.574970290331341,52.7040942278329],[6.57484744358409,52.703396630570595],[6.574721682392774,52.70268248878415],[6.57461689039527,52.702007719495626],[6.574614630796965,52.701965751317424],[6.574604659401904,52.70171797789331],[6.574647167437579,52.701248114812195],[6.574859001041261,52.69981003715614],[6.574875391998483,52.69970715255712],[6.574897658919686,52.69948349484826],[6.574898892730328,52.69933221872825],[6.574869992183398,52.69906781805753],[6.574853862184451,52.69897579174622],[6.574742477199652,52.698183348279095],[6.574644871504638,52.69747959299477],[6.574639044093638,52.69743752556763],[6.574638805152614,52.69745166568688],[6.574346221513473,52.69746529919768],[6.574341363921729,52.697435562263024],[6.57433784070832,52.69736708378907],[6.574336154101174,52.69733425038636],[6.574390232811764,52.697302756896896],[6.574642660032961,52.697282945071606],[6.574636547438555,52.69721939077234],[6.574826732463413,52.697212036688256],[6.57654780187865,52.69714358514835],[6.576748062990136,52.69711992232555],[6.576823433988888,52.697100653855834],[6.576892870676945,52.69706985047936],[6.576924152290157,52.69704500106319],[6.576964896939305,52.696998126870284],[6.576978253398216,52.69695053793262],[6.576978746661472,52.69681041386998],[6.57694738097462,52.696526408853856],[6.576880611544531,52.6959578279612],[6.576878727122231,52.69594178568191],[6.576877555947369,52.69593186592097],[6.57685019061091,52.695698817366164],[6.576816441990728,52.69541142971812],[6.576769906979838,52.695015175334234],[6.576754352799325,52.694882788365334],[6.576657684869363,52.694059460396154],[6.57657302611875,52.693338580497205],[6.576568352646653,52.693298748515375],[6.576553520044532,52.69322791145641],[6.57655086768286,52.69321518433817],[6.576477226659915,52.69253995978576],[6.576417462990068,52.6919160782827],[6.576404307056679,52.69182355491628],[6.576352083682841,52.691456207673404],[6.576332819687742,52.691362073628],[6.576289815022079,52.69101283439665],[6.576277858910008,52.69092526924148],[6.579919553124068,52.69076483191912],[6.580003979430465,52.69074284608786],[6.580080432524825,52.690707233798534],[6.580131810168791,52.6906568004427],[6.580154761019818,52.69060267057861],[6.580137364507895,52.690129962205425],[6.580132609160046,52.690000639840434],[6.58007767967235,52.68928695001824],[6.580023429004799,52.68857531145118],[6.58001313562754,52.68843811735057],[6.579964538070938,52.68779077444549],[6.579914132290261,52.68711927242336],[6.579911747441703,52.68708755148868],[6.579897638605658,52.68689969550723],[6.579868667745184,52.68652564482047],[6.579850466220416,52.68629163263636],[6.579796321564221,52.68559559522375],[6.579789439496851,52.68550717947487],[6.579739906542284,52.684870343169905],[6.579495636364605,52.684877933131425],[6.577536776296401,52.68496129503317],[6.57658078982077,52.685000671231315],[6.57532442222618,52.685067505491986],[6.57430746203758,52.685114878395794],[6.573151855029901,52.6851500535947],[6.572568226874226,52.685171869851494],[6.57199999563315,52.68519701712283],[6.571288297136602,52.685219266926374],[6.570365616852662,52.685261739778625],[6.570328000264128,52.6852631745288],[6.567333883199718,52.685377342602706],[6.566178716621606,52.685411160348295],[6.564320506852542,52.685496353372635],[6.563302161193524,52.68553250091791],[6.561079066935091,52.68562529523317],[6.560693143416529,52.685638891174094],[6.558762069255764,52.68572335895139],[6.55851870612308,52.68572864091558],[6.558505538713921,52.68559759429647],[6.558269973257187,52.685610186900156],[6.557888715655683,52.685619629380966],[6.557890789328507,52.68563694634916],[6.555550752052084,52.68574038712923],[6.551208823444854,52.6859321914205],[6.549800994841364,52.68599422501704],[6.549808997359523,52.68606019771361],[6.549100734766413,52.68608515708174],[6.54828877393671,52.68611837767528],[6.547337859641247,52.68615222013668],[6.547323615286575,52.68615272757173],[6.547147632559004,52.6861439912065],[6.547134824620491,52.68614456550018],[6.546192058375357,52.686186812741425],[6.544901093548257,52.68623166024612],[6.544897472927138,52.68619586138738],[6.544808426214043,52.68619942440353],[6.544475775289082,52.68621273677027],[6.544218253285677,52.68622304350043],[6.544024217594916,52.686230799854044],[6.543782282763164,52.68624048667388],[6.543773048572774,52.686240855086844],[6.543521480434071,52.68625092265638],[6.54320802092879,52.686263460692345],[6.542988099808258,52.68627225785672],[6.542585179352862,52.68628837783403],[6.542339225017396,52.68629821760017],[6.541994028138593,52.68631256160912],[6.541820078420819,52.68631981376286],[6.541066911413011,52.68635121886764],[6.540861891582556,52.686359768668886],[6.540777044023003,52.68636330590844],[6.540741054328832,52.68636480538727],[6.539673117400016,52.686407972112214],[6.538226573947692,52.68646231644843],[6.537987740312659,52.68646118517182],[6.538022802027945,52.68680302658425],[6.538066958086104,52.687180901626604],[6.538063706732892,52.687225026856886],[6.538068176943057,52.68728668432396],[6.5380903353299,52.68753906987377],[6.538114341932129,52.687791985772975],[6.538108792808506,52.68783421884648],[6.538070258839119,52.687926068731066],[6.538072891565279,52.687956547584946],[6.538076541579485,52.68799875455996],[6.538145958093465,52.68810385937565],[6.538159456522262,52.68824474610682],[6.538168170561462,52.688335698412324],[6.538203874934073,52.68870815457657],[6.538212221025792,52.68879521874744],[6.538217455741322,52.688849912294266],[6.538238016469176,52.68906441197751],[6.538274983683616,52.68945001386084],[6.538311408169717,52.68983012046917],[6.538346767247103,52.69018987117863],[6.538370282305642,52.69042166151509],[6.538403996836923,52.69075193039333],[6.538403302404182,52.69078976641022],[6.538362701312801,52.690925846887126],[6.538365392343628,52.69095289184293],[6.538367727688974,52.69097652490894],[6.538442404592028,52.691102088568066],[6.538449932209674,52.69118159294228],[6.538454658427705,52.69123153687049],[6.538500409172291,52.69171448929854],[6.534856551718438,52.69185268267514],[6.53285873780108,52.69192549875531],[6.532797988182273,52.69192726122697],[6.532528886222686,52.691935056467926],[6.532291661590366,52.69194343401851],[6.531382915188155,52.69197437824796],[6.530448741771,52.69201221080886],[6.529624795780943,52.69204313543419],[6.528268037128094,52.69209291781961],[6.527045728537277,52.69213726209225],[6.526137418536517,52.69217161329302],[6.526136561501994,52.692171648462015],[6.525700090161063,52.692188256745965],[6.524407311425558,52.692237921928154],[6.523524046712035,52.69226964095613],[6.522825169844425,52.69229465000049],[6.522276550683628,52.69231561479862],[6.521689302074225,52.69233919241359],[6.521108653449478,52.692361176304615],[6.520681164046594,52.692374597751666],[6.520357910480364,52.69238955028234],[6.519931731542251,52.69240447546834],[6.519698407326947,52.69241226944555],[6.51949942177856,52.69241685105563],[6.519387648249607,52.69242188752237],[6.518578026245663,52.692450684819676],[6.518513506716474,52.69245257470886],[6.517760629182979,52.69248031444961],[6.517072843164008,52.6925054269125],[6.516426815622265,52.69252308365521],[6.513805279796379,52.69261921344777],[6.512923406729538,52.69264690388421],[6.512825190919385,52.69264999036001],[6.512617481672009,52.69265651243376],[6.512562375423461,52.692158756989976],[6.512561143656182,52.6921476329112],[6.512495477263554,52.69160196511042],[6.512491230677913,52.69156670168306],[6.512437746264879,52.691070359763486],[6.512395947030516,52.69068249638588],[6.512393383557859,52.690643639929995],[6.512391101606104,52.69060884324223],[6.512348453230055,52.6902472678214],[6.512347073289178,52.690235551950465],[6.51230239930523,52.68983991435498],[6.512296370797937,52.68978646770603],[6.512222794599802,52.689098617244724],[6.512222077131103,52.68909197314489],[6.512200224242985,52.68890348341253],[6.512195117436354,52.68885944712304],[6.512138095841124,52.6883835402795],[6.512134178875762,52.688350727335795],[6.512133973867593,52.68834907554064],[6.512070839355578,52.68780306854923],[6.512067288716985,52.687772427154954],[6.512008421055082,52.68722374631834],[6.511983340668601,52.68700502544771],[6.511975473819595,52.68693636200327],[6.511918280640836,52.68644604921701],[6.511909505517242,52.68635576996851],[6.511909062634284,52.68635118144724],[6.51188712082193,52.686125609180586],[6.511847550678331,52.68576723070805],[6.511795896113671,52.685334844966434],[6.511794660498225,52.68532239970926],[6.511794201471858,52.685317757412996],[6.511773518410381,52.68510837798158],[6.511734314486469,52.684790224842494],[6.511729369065679,52.684745521879286],[6.511705074147753,52.684526173257154],[6.511680304580161,52.68430387215619],[6.511661367254568,52.684159178562616],[6.51166007898355,52.684149295291434],[6.511657896515203,52.68412181358192],[6.511638338237654,52.68403373933497],[6.51162302134777,52.68399002419453],[6.511605825388342,52.68395378660245],[6.511584702347605,52.68391435056327],[6.511559092355395,52.68387873176912],[6.511534715208083,52.68385083073211],[6.51150694886628,52.683823411113075],[6.511478022032126,52.683802653351314],[6.511446784701018,52.683784074469294],[6.511405488491678,52.683765410904186],[6.511362568185963,52.68374685255251],[6.511313745121798,52.683728799359855],[6.511172905713359,52.68369813421876],[6.511083302327984,52.68369023593285],[6.510954841009263,52.68369133291804],[6.510667423979088,52.68370051035757],[6.509790008223114,52.68372958371877],[6.509053383466679,52.683749305663476],[6.505796674996012,52.683856168320645],[6.503971292890894,52.68391633711765],[6.503934365274915,52.683917555655086],[6.502754925374493,52.68395642288128],[6.502312619202726,52.68397445660529],[6.502312461428847,52.68395659057358],[6.502311260607435,52.683822487645564],[6.502194712437943,52.68382507226629],[6.501800780805395,52.68381561564172],[6.50185061744994,52.68377527024887],[6.501851006331377,52.683706088420394],[6.501836363373466,52.68343735016308],[6.501787609888661,52.68276559130338],[6.501748905822289,52.6823610318883],[6.501739589538881,52.68226371965637],[6.501735142978834,52.682179978129376],[6.501709947363778,52.68187821903291],[6.501690781670023,52.68164857452369],[6.501678860443111,52.68148063448154],[6.501652576850559,52.681110309469915],[6.501636508619587,52.68088381752876],[6.501611300583151,52.680556443529326],[6.501605984560189,52.68048737801948],[6.501587602726377,52.68021105300906],[6.501568530489388,52.67992440759237],[6.501566116404832,52.679900945379714],[6.501540662406098,52.679653608978725],[6.501519926708788,52.679353830113385],[6.50151196222959,52.67924796682651],[6.501508007993366,52.67919526410564],[6.501460972323221,52.678593745168484],[6.501414248216144,52.67803302734162],[6.501411731958812,52.67795421985607],[6.501389268941444,52.67724924681866],[6.501393273638624,52.67704390337179],[6.501378583817329,52.67683374689208],[6.501367781449391,52.67665559511768],[6.501376704651873,52.6765654817601],[6.501395476528821,52.67643924444928],[6.50141269774589,52.676374892967296],[6.501413463884137,52.676373034323525],[6.501452846129206,52.676277611445784],[6.501463589854134,52.676258124316895],[6.501498153779267,52.67619544381075],[6.501538392947228,52.67612740737207],[6.5017308617297,52.675855963767305],[6.501919369480484,52.67560333225119],[6.50192103950757,52.6756032986215],[6.502135653849415,52.67531612494867],[6.502139944165835,52.675310386522476],[6.5021991456946,52.6751838149075],[6.502241656746176,52.67503291725757],[6.502250199419568,52.67487953393368],[6.502214423912032,52.67440321558715],[6.50216258807831,52.67380148055257],[6.502113613728811,52.67348377499845],[6.501965819645244,52.671838765597855],[6.501945362632219,52.67161111897114],[6.501970408675264,52.67160994945268],[6.501976330662815,52.67160967823061],[6.501948336576171,52.67138041256094],[6.501839043497183,52.671383854779016],[6.501717923086709,52.671387911061885],[6.501411051785944,52.67139817475071],[6.50140292636354,52.67134011838918],[6.501788919736201,52.67132489788021],[6.501782617751384,52.67126064090506],[6.501930266363333,52.671255580902475],[6.502145024525299,52.67124819282329],[6.502175558650264,52.67124714256893],[6.502865564458784,52.67122096068332],[6.503220861736024,52.67120803675944],[6.503649750004096,52.67119243457285],[6.504441946448616,52.67116500540838],[6.505096356458934,52.671142083981785],[6.505707448152765,52.67111926083657],[6.505837562272531,52.67111483725757],[6.506393079191333,52.671096191380705],[6.506996535862261,52.67107318180714],[6.508253101454474,52.671032608274224],[6.509540270740243,52.67098627705464],[6.510536662270818,52.67095040861668],[6.511190902438089,52.67092685303763],[6.511231700921194,52.670925379874255],[6.51139861767447,52.67091937099523],[6.511803485106567,52.6709076244612],[6.511845428847891,52.670906418875134],[6.51184678781819,52.670906370071286],[6.512399231011298,52.670885657998085],[6.512761854181954,52.670872060996416],[6.513005138301405,52.6708632957479],[6.514236535561358,52.670818924622324],[6.515643812075617,52.670768207163576],[6.515547856220222,52.669450177314076],[6.515543060582885,52.66938432477207],[6.51540627171575,52.66750517312486],[6.515312561584222,52.66750823727341],[6.513990100956038,52.66754800966195],[6.513947733467995,52.667549282956706],[6.511716070885212,52.667626951201214],[6.510417860492418,52.66767408505559],[6.510141608399602,52.66768449565876],[6.509073655520091,52.667724721478876],[6.507909935013337,52.66776280251642],[6.506235685718855,52.66781972572901],[6.505741058782475,52.66783770850557],[6.505651314535858,52.66784097039286],[6.505305800152813,52.66785264137799],[6.505155424481567,52.66787324410015],[6.505125923675197,52.66787530103381],[6.505112344682379,52.66775238679892],[6.505106854152699,52.66770276328393],[6.504995104338423,52.666597326380035],[6.504919460481433,52.665888888058],[6.504909389380307,52.66579457566509],[6.50477772930257,52.66456151079557],[6.504675180448693,52.66369403537502],[6.504672437232119,52.66366405112856],[6.504614045255031,52.66302674969443],[6.50458826609289,52.66274537040176],[6.504570893562634,52.66255567682492],[6.504532461259643,52.66220799706173],[6.504524110451901,52.662132443769366],[6.504456809591337,52.661523644985294],[6.504434179001782,52.66131895528237],[6.504394474122725,52.6609094876752],[6.504326949608002,52.66021322210932],[6.504266639585314,52.659591370000136],[6.504208736299391,52.65904903665669],[6.504180456000284,52.65878420000004],[6.504101610022163,52.65804579797511],[6.504082696572075,52.65786859359749],[6.504023467567405,52.65730647242392],[6.503950840159654,52.656617156634],[6.503947961561738,52.65658762298424],[6.503907329778932,52.656170398096044],[6.503836978261094,52.65553212906671],[6.503829468559854,52.655462823190035],[6.503828868991947,52.65545725641888],[6.503746344015767,52.65469571778141],[6.503743816895867,52.65467070165072],[6.503620793643609,52.65345437654165],[6.503598001658227,52.653229033994734],[6.503594842635249,52.65319775033719],[6.503538246618039,52.65263812020996],[6.503532818142757,52.6525843884781],[6.503523581391007,52.65242199462874],[6.50341996861252,52.651437100890476],[6.50334711956529,52.65070334150299],[6.503277550159458,52.6501015992972],[6.5031855982296,52.6492205298356],[6.50318456380873,52.64920713879817],[6.503129906511626,52.64850453947152],[6.503123500020621,52.64842212792297],[6.503078413775357,52.64813620111403],[6.503044339572541,52.64799828022511],[6.503045924829515,52.64793322091228],[6.503043080143541,52.647811220773036],[6.503034477923221,52.64773777264313],[6.503026789406413,52.64767528999207],[6.503025357467702,52.647663700232926],[6.503017245975975,52.647603765087624],[6.502996277530673,52.64751467748733],[6.502981229574386,52.64746615000698],[6.502965832624008,52.64743007385172],[6.502948474479414,52.64740580804814],[6.502942507414594,52.64739835028892],[6.502894355212772,52.64733802701142],[6.502764454711691,52.64725724186229],[6.502666417663495,52.6472103919501],[6.502548823643564,52.64716617013991],[6.501972211717795,52.64694937481764],[6.501823207455497,52.64690123161192],[6.500722866756756,52.64649766724978],[6.500594701085759,52.64644837459665],[6.500446391209309,52.646391343267766],[6.499951954732558,52.64620477635387],[6.499865381214777,52.646173940881226],[6.498968210229344,52.64584228388149],[6.498861034749578,52.645810085497565],[6.498841782616758,52.64580430666578],[6.498148808895062,52.64555342104573],[6.497750033934778,52.645407015994266],[6.497702232499027,52.645389469106945],[6.496587665763792,52.64499765685413],[6.496561649079794,52.64498786933776],[6.496515642648859,52.64497056586942],[6.496128587164626,52.64482498077824],[6.495809740906431,52.64470987389412],[6.49574912840662,52.644688742759605],[6.495623408530953,52.644636977315386],[6.495349584035793,52.644469536058],[6.495223447943654,52.64439241062],[6.495118000129762,52.64432061968333],[6.495107085556233,52.64431318967788],[6.495066732691772,52.64427684182187],[6.495046399390448,52.64425156003355],[6.495022209612172,52.64421924081936],[6.494988169387872,52.64417539223575],[6.494969236072155,52.644137640351914],[6.494949230071646,52.644097777351],[6.494922756990231,52.64404226401415],[6.494897718861161,52.64398974819765],[6.494847019071181,52.6438834191335],[6.494666659521677,52.643506517352066],[6.494633080146302,52.643436339221495],[6.494439141961352,52.64304110273323],[6.494462036596427,52.64303786956398],[6.494373916931004,52.64286187422309],[6.49435267142287,52.64286487630821],[6.494259834411944,52.642675191523246],[6.494169626070435,52.64249070406973],[6.494107831517175,52.642364336431264],[6.494062190673635,52.64227100114396],[6.493594024935948,52.64130975982549],[6.493352086415079,52.64081461991819],[6.493320752994755,52.64075133208638],[6.493304860156976,52.640719213920164],[6.493260876088336,52.64062523374817],[6.493132569103182,52.64037363785532],[6.493090981866841,52.64029210134453],[6.492970292409531,52.640055461932896],[6.492766865597153,52.63964713480498],[6.492702075518034,52.63951706434351],[6.492451702571013,52.639002964883744],[6.492420705799483,52.63893827158163],[6.492226214001183,52.638532341019115],[6.492223845608885,52.63852745571867],[6.492011071338291,52.638088745614546],[6.491993468587435,52.63805435127943],[6.491975260476667,52.638018794158924],[6.491935345100943,52.6379807065334],[6.491883261608217,52.63793930765755],[6.491800457575244,52.63789179499683],[6.491788974307247,52.63788457669359],[6.491526905046756,52.63771997444815],[6.491412105240098,52.63764905807468],[6.491330780965515,52.63759865525599],[6.490597800419594,52.63731260522339],[6.490507043363665,52.63727245458869],[6.490462897299671,52.63725292055229],[6.490359154491884,52.63720334534361],[6.490288795783822,52.63715830459713],[6.490235463429443,52.637115900981236],[6.490166413047098,52.63705114683262],[6.49006576698685,52.63695770928579],[6.489957050412126,52.636844052159596],[6.48966543279951,52.63653916930571],[6.489529795175402,52.63640404707254],[6.489092752113084,52.63596868800864],[6.489077737122806,52.635953727771344],[6.488760777754941,52.635606241960765],[6.48867541367665,52.635519896749194],[6.488664121632989,52.635508470098856],[6.488558681821949,52.63539381963976],[6.488555887501936,52.635390780706295],[6.488299523779134,52.635086529495425],[6.48832473467141,52.63508332095616],[6.488062427887951,52.6346542032789],[6.488035128971092,52.63465779061668],[6.487566602950197,52.633892677652184],[6.487564021499496,52.6338886930084],[6.487543249285891,52.63385671810709],[6.487487009972767,52.633788778961005],[6.487386891845312,52.63372123702811],[6.487264860876794,52.63366705595288],[6.487138708380112,52.63363353983668],[6.487017864498172,52.63362150017057],[6.486869072815231,52.63362134018601],[6.487506138978962,52.633541851563194],[6.487523706656051,52.63353962171889],[6.488612691232292,52.633401323297555],[6.488703194105075,52.63338982497159],[6.488738580508569,52.63338537158553],[6.489706337296439,52.63326361872313],[6.48996044943914,52.63323176308471],[6.490476256919203,52.63316711694252],[6.491031401094972,52.633094805102246],[6.491227113721167,52.63306930426519],[6.491615878539774,52.63301709501828],[6.491908244704927,52.63298040376301],[6.493212385660852,52.63281673044342],[6.493278654189131,52.63280794377605],[6.495002518597087,52.632587917677874],[6.495050123634168,52.63258183855278],[6.495106887575415,52.63257459548726],[6.495200640012802,52.6325626304802],[6.495220733520878,52.632559836675426],[6.495176494213055,52.632465526886435],[6.495150311056829,52.6324687639344],[6.495152956827322,52.632455922686226],[6.495146527810405,52.63243937319958],[6.495041152625033,52.63222560146234],[6.494941647315694,52.63202373765324],[6.494786764557274,52.63170340061068],[6.494689470802403,52.63150890392822],[6.494647265444144,52.631440145229064],[6.49460059983074,52.631384909758474],[6.494357429871351,52.63115780726258],[6.4941485876308,52.63097517065317],[6.49388993509283,52.630748975391256],[6.493425114601761,52.6303345353871],[6.493131307486692,52.63004814198301],[6.492879958566633,52.62977006197597],[6.492869735476189,52.62975824827874],[6.492612639222817,52.62946116707491],[6.492499556659001,52.6293466899345],[6.492476865019867,52.629320683620215],[6.492431821452421,52.62926043500533],[6.492239226974617,52.629045350826416],[6.491830668059081,52.62856601987325],[6.491441099571235,52.62811793235815],[6.491429119389411,52.62810434629547],[6.491373794731853,52.62804160433422],[6.491072500450996,52.627699955599006],[6.491042109714413,52.62766549112132],[6.4909369867087,52.62751821401965],[6.49087978793546,52.627402488240605],[6.490736541941639,52.62705195564637],[6.490616137688273,52.62674579020213],[6.490541124163038,52.6265580487268],[6.490473297023596,52.6263882789732],[6.490357989212352,52.62609967300713],[6.490339602688371,52.62605792464286],[6.490312634902517,52.62599673445588],[6.490276397247707,52.62590807374634],[6.490225447442412,52.62578340968295],[6.490148575051375,52.62559385168419],[6.490101189530394,52.62547700980934],[6.490063654423714,52.62538428061417],[6.490003338062435,52.62523530152493],[6.489914137766069,52.62500636541254],[6.48986310603102,52.624875401497334],[6.489695812512347,52.62446101671479],[6.489659642342811,52.6243714114564],[6.489549640426342,52.624097854902345],[6.489522323348425,52.624019680829896],[6.489522261809292,52.6240195825351],[6.48946626559056,52.62392735694946],[6.489465179319132,52.62392526388239],[6.4894650792453,52.62392480643316],[6.489454914176906,52.62387925171817],[6.489361723855679,52.62362935667655],[6.489360204401295,52.623625299299306],[6.489316599714822,52.62350356860364],[6.48929279618369,52.623438277345564],[6.489245111232021,52.623307524767704],[6.489182601463764,52.62311142457472],[6.489167117968436,52.62306283634057],[6.48899933084874,52.622553283275],[6.488926109991563,52.622342784931504],[6.488901252005394,52.622271310769214],[6.488880308873516,52.62221108897701],[6.488822019593408,52.622057794266986],[6.488761319023193,52.62190727214718],[6.488741478860826,52.62185805914334],[6.488680029205689,52.62170767874015],[6.488632596906468,52.62159159163296],[6.488583014854651,52.62145568835927],[6.488495940696058,52.6212373369694],[6.488372535526914,52.620917975793965],[6.488325866071528,52.620802798238955],[6.488233570363531,52.62056511733212],[6.488212487894635,52.62051283292856],[6.488149557212534,52.620356821611935],[6.48792785355533,52.61979444181136],[6.48791776182891,52.6197688391782],[6.487752906018665,52.61935060900214],[6.487707168614946,52.6192389098166],[6.487700562764126,52.61922277498273],[6.487654202300064,52.619134575664035],[6.487643999975345,52.619117530418706],[6.487583433920032,52.61901635842745],[6.487528308333944,52.61892427661585],[6.487489658405049,52.61892591082115],[6.487404628685828,52.61892951141995],[6.487325570717339,52.61893452167469],[6.48688839290297,52.61896224277263],[6.484855509974134,52.61909108790612],[6.484744029022527,52.61909815758806],[6.484359632038839,52.61912251466705],[6.484084740340664,52.619139936621636],[6.48408295567101,52.619140025000384],[6.483968822919523,52.61914558152156],[6.483902091132737,52.619142728225455],[6.483805392342616,52.619137949474606],[6.483766353106801,52.61913108360289],[6.483724762809154,52.61912377389694],[6.483710092779797,52.61912057481445],[6.483684672623063,52.61911503026026],[6.483636430827091,52.61910451035022],[6.483616291535937,52.619098135109084],[6.483561202457152,52.61908069483773],[6.483479517082982,52.619055545748665],[6.483418422154531,52.61903116832119],[6.483352673446833,52.619004928385294],[6.483158656709563,52.6189337103469],[6.483082051553975,52.618905584102976],[6.482828340400155,52.61881398354061],[6.482592578395793,52.618725578394034],[6.482433943441182,52.618666094594154],[6.482414729075654,52.618658299540726],[6.482343375936285,52.618629333484655],[6.482255106156389,52.61859351282337],[6.482156790833262,52.61855338065673],[6.482123362161023,52.61853635127026],[6.482070878130941,52.6185096019121],[6.482019879841601,52.61847668219896],[6.481975695314563,52.61844815762642],[6.481884981519224,52.61838707653982],[6.481810852614639,52.61832128577394],[6.481805627876207,52.618316651267655],[6.481801013611707,52.61831162466159],[6.481768380492607,52.618276099947934],[6.481767606528583,52.61827526222534],[6.481723991636305,52.618283878878245],[6.481716600049622,52.61828534008091],[6.481709163547595,52.6182760882426],[6.481708355811101,52.61827508006263],[6.481650259902239,52.61828808131868],[6.481649789916496,52.61828818451384],[6.48164476480695,52.61828920148604],[6.481576865855981,52.61830289519098],[6.481553602341759,52.61830744159094],[6.481507618881155,52.618316421516916],[6.481479555974816,52.618320967168394],[6.48144007963337,52.61832736156419],[6.481430401862285,52.61832893368265],[6.481429796319724,52.618328930271836],[6.481408293629052,52.61832886766197],[6.481401898857586,52.618328845665836],[6.481386539136325,52.6183263986377],[6.481364730097773,52.618322923478544],[6.481355581302243,52.61831963730918],[6.481316319050998,52.618305537515894],[6.481235263473081,52.618272346007146],[6.481234965068627,52.618272222925796],[6.481233667657043,52.618271713580555],[6.481189097107984,52.618254364104466],[6.481156753830677,52.61824651897039],[6.481139114733595,52.61824326602088],[6.481125673910831,52.61824078331537],[6.481072229619903,52.618236556792034],[6.481025034764003,52.61823066389372],[6.480992336283743,52.61822872696758],[6.480987559520726,52.61822844738292],[6.480812765833718,52.618190653944744],[6.48078004324787,52.6181835851507],[6.480707139023884,52.61816938137111],[6.480597923813231,52.61814810577688],[6.480595955090084,52.61814791717563],[6.480581744091752,52.61814652902014],[6.480564706192381,52.61814666783994],[6.480547929292517,52.618147801900825],[6.480523523227016,52.618150345347175],[6.480482070169932,52.618155634140926],[6.480481643358234,52.618155691995206],[6.480480647098106,52.618145904465294],[6.480445224088133,52.617797081503106],[6.480444518940559,52.617790095485965],[6.480444500828769,52.617789960835644],[6.480409923772357,52.61777420881853],[6.480279008620185,52.61771454799467],[6.479984567603497,52.61752301233034],[6.479945768257581,52.61749777195134],[6.47967570516869,52.61732209047799],[6.479424375914308,52.617158603382734],[6.479356792876334,52.61711952557205],[6.479309914976697,52.61709242687447],[6.479302846185414,52.617089633733144],[6.479183454379942,52.61704253858283],[6.478301001100408,52.61673328705304],[6.47830720270603,52.61672790932318],[6.47833656155055,52.61670240196004],[6.478332092771955,52.61670202956319],[6.478274754483526,52.616697298288905],[6.478253254557441,52.616695527406605],[6.478225995390029,52.61670208716892],[6.47819424446672,52.61670973075686],[6.477196307758412,52.61659753734609],[6.47695760465039,52.616570705511066],[6.47691928173763,52.61656639235815],[6.47685918007722,52.61655381244097],[6.476845657516238,52.61655097948093],[6.476570285497196,52.61651683456491],[6.476444353232041,52.616501226971984],[6.476425141869058,52.616498841583386],[6.476383031228252,52.61649720539572],[6.476045762809745,52.616484136846005],[6.475881208228921,52.6164777625605],[6.475814205621005,52.61647630932737],[6.47558273260247,52.6164712847783],[6.475342675502302,52.61646606876649],[6.475267432403765,52.616446067993095],[6.475267164887695,52.616445998540776],[6.475267060656209,52.61644596354417],[6.475182744102699,52.616417920850424],[6.475154550630311,52.61640342107704],[6.475117682100492,52.616384452912556],[6.475086037114038,52.61636413367585],[6.475036656838579,52.61633243649808],[6.474767941463232,52.61603630421933],[6.474716512310557,52.61597963061376],[6.474717361688784,52.61597934421715],[6.474722969782547,52.61597742342087],[6.474780150155368,52.615957890805944],[6.474781380043134,52.6159574661087],[6.474590492834836,52.61573805976275],[6.474476660412596,52.61560721470927],[6.474440666939256,52.615566245198515],[6.474405205108249,52.61552587299389],[6.474324238586069,52.615433689111946],[6.474309835397326,52.61541730134362],[6.474256391930953,52.615345977891614],[6.474252140386781,52.615338251339445],[6.474228765411702,52.61529580016058],[6.474216506082838,52.615273541711346],[6.474212121275324,52.61526221227171],[6.474203966476328,52.615241129618276],[6.474198209427556,52.61522625356708],[6.474197267197219,52.615198265210246],[6.474196069523602,52.61516232499271],[6.474195956780473,52.615158955601544],[6.474204181418888,52.61507942825046],[6.474217004579397,52.61501271136797],[6.474233071074113,52.614945785050864],[6.474275893188769,52.61479035376893],[6.474288398235606,52.61477234464455],[6.474314392081669,52.614734906305706],[6.474322303856617,52.61470669312189],[6.474417548845887,52.61436671200439],[6.474431634112375,52.61431644018847],[6.474468818499281,52.61417193563338],[6.474468982581914,52.61416303621321],[6.474469452516256,52.61413722794877],[6.474471503994718,52.614023612412296],[6.474465920665823,52.61399424645198],[6.474444694583651,52.61388274935835],[6.474371622172734,52.613744188115184],[6.474370026410909,52.61374115585503],[6.474288422286478,52.613647530730695],[6.474266494865377,52.613636155092856],[6.474220665688346,52.61361237928575],[6.473934685272503,52.613452136763506],[6.473862187890219,52.61341153693874],[6.47359435936585,52.61326156240264],[6.473588415572572,52.61325944170992],[6.473110815205819,52.61308910345648],[6.473083453215292,52.61306869061539],[6.472970471021553,52.612984420089774],[6.472969963346493,52.61298419104696],[6.471915109962025,52.61251224311563],[6.471867438713043,52.61249090993464],[6.471799483937584,52.61246254471902],[6.471786728518398,52.61245722355503],[6.471637541677307,52.61239495188295],[6.471417625429999,52.61231152116712],[6.471411738261065,52.612309291996205],[6.471068468871247,52.61218425837399],[6.471020195757317,52.61216903306114],[6.470951059750567,52.612147221256976],[6.470916855579503,52.61213789836698],[6.470864278363829,52.61212356609531],[6.470844478438963,52.612118174273306],[6.470840884616123,52.612117335239],[6.470746869337353,52.61209551657326],[6.470736815855075,52.612093181565015],[6.470663772833388,52.6120805907576],[6.470646216312367,52.61207756020827],[6.470542907234526,52.612063268036934],[6.470534062359381,52.612062045464526],[6.470443937187204,52.61205489511975],[6.470428432965998,52.61205366135946],[6.470336496650337,52.61204791156839],[6.470263843595905,52.612043361037536],[6.469915100945193,52.61202154490881],[6.469869155103259,52.61201867411442],[6.469820271310297,52.612014014541764],[6.469812590261806,52.612013284626215],[6.469697773575342,52.61200235017336],[6.469627787030469,52.61199454833864],[6.469606126211896,52.61199213025143],[6.469602218889529,52.611991150231525],[6.469519067484307,52.611970364076775],[6.469379826040015,52.61193406358881],[6.469351764331548,52.611924127053086],[6.469178984445449,52.611862903096466],[6.469130784929829,52.61184582486527],[6.468741213928424,52.611686782995804],[6.46866913239269,52.611644162982905],[6.468631930317398,52.61162215799001],[6.468567415331464,52.61158401685989],[6.468402904027282,52.61142652015735],[6.468292958706925,52.611320476121286],[6.467934229972032,52.61097402507303],[6.467911523335103,52.61089109454139],[6.46791947172755,52.61083235889543],[6.467930021683813,52.61075450051597],[6.467937396013768,52.61070004827969],[6.46799930432116,52.610395158292704],[6.468005232090577,52.61036598390227],[6.467972942265726,52.61036298814071],[6.467841119365143,52.61035075960316],[6.467814557899544,52.61050172655605],[6.467786157995001,52.61066321695177],[6.467745682519046,52.61089336708138],[6.467745631193187,52.61089368212107],[6.467737806900345,52.61089131759699],[6.467608394765859,52.61085224728654],[6.467568767966446,52.610840285407264],[6.466901245219235,52.61059307819226],[6.466617256534199,52.61049409689181],[6.466144690588879,52.61032923061324],[6.466142948324996,52.61032862627946],[6.466133244897311,52.610376691252256],[6.466124647934927,52.61041929957151],[6.466123462203202,52.61041730606268],[6.466118704295855,52.610409323175524],[6.466098472413315,52.610375407235544],[6.465790081754015,52.61028910267273],[6.465689257475492,52.61026088862281],[6.465582755107794,52.61023232158164],[6.465573733847441,52.61022990486736],[6.465516501840445,52.610214641821266],[6.465421788973599,52.61018938298226],[6.465319223929033,52.61016362011243],[6.465227013355113,52.61014045054093],[6.465131138418865,52.61011535480982],[6.465061104683503,52.61009702602874],[6.464954796219556,52.610065490697664],[6.464954453852576,52.610065376962474],[6.464918526470158,52.610053695215996],[6.464714901939086,52.609999081044435],[6.464122787153298,52.609840270326096],[6.464105311457524,52.60983807394918],[6.464071538575077,52.609832969456626],[6.464023993627936,52.609827387612405],[6.464008371212137,52.60982550697019],[6.46395313757766,52.60981886233005],[6.463828209577776,52.60980530856909],[6.463794660291039,52.6098014962137],[6.463721921059088,52.60979323951895],[6.463679042240254,52.609787678166576],[6.46359539147485,52.60977697672687],[6.463321406827211,52.60972734779057],[6.462805323583227,52.60963385709748],[6.460658070208702,52.6092448567767],[6.459959742302233,52.60911833458667],[6.459794662141165,52.60907520985795],[6.459382304397154,52.6089674658493],[6.459369852972408,52.60896421679909],[6.459360379614631,52.608960185894766],[6.458768776383158,52.608708185631556],[6.458768437323448,52.608708206665646],[6.458572132083891,52.60872141874568],[6.458512745205192,52.60872541463531],[6.458512455456907,52.60872564194309],[6.458467655417181,52.60875997485712],[6.458317659759824,52.60887493305537],[6.458280285229085,52.60890439047553],[6.458104126085021,52.60888216104154],[6.457945294077502,52.60886211199252],[6.457944341525015,52.60880534473273],[6.457942754022578,52.60871033117627],[6.4579423869515,52.60868795489646],[6.457941244069699,52.6086852778498],[6.45786869786455,52.60851607155255],[6.457848162253103,52.60846815400391],[6.45779186104089,52.60842903427422],[6.457520628371921,52.60824056884591],[6.45751978745499,52.608240594398254],[6.457342764979952,52.6082452810634],[6.457225497553678,52.60824838664269],[6.457159554858753,52.60825233305866],[6.456945760181783,52.60826510679676],[6.45689122795281,52.608268366102024],[6.456474990036194,52.60831269338454],[6.456213298249754,52.60834055600721],[6.45617145116797,52.60834759253595],[6.455605557745757,52.60844271417216],[6.455088855360367,52.60849827606324],[6.454583313694013,52.60855263890593],[6.454422216215672,52.60856995874235],[6.454415810770153,52.60857065442138],[6.453875549763231,52.60856011081049],[6.453839600579449,52.60855283893252],[6.453749121652518,52.60853676327785],[6.453748113352727,52.60853658358733],[6.453747536161237,52.608536525855094],[6.453563003955212,52.60851649498984],[6.453496465246895,52.608509272906026],[6.453299595277493,52.608467485107845],[6.453264513009318,52.60846003450872],[6.452747978069173,52.608328054657854],[6.452401629675175,52.60824005175664],[6.452318321903686,52.60821887755712],[6.452087220929029,52.60816015612296],[6.452102408128591,52.60812883238023],[6.452095233559195,52.60812702723858],[6.451935610612048,52.60808686262475],[6.451882714882571,52.608073549471264],[6.451855882627935,52.60806778612106],[6.451729304949164,52.60804059102268],[6.451722878866236,52.60803921056464],[6.451713239532525,52.60803743647546],[6.45149895183344,52.607998075705325],[6.451357454616858,52.60797846475293],[6.451324746729861,52.607973931318135],[6.451204145494503,52.6079655294995],[6.450924345028439,52.607946042252735],[6.450898243207072,52.60794422676934],[6.450868734318312,52.60794377197912],[6.450626341601554,52.6079400192182],[6.450592815468905,52.60793950145686],[6.450554845109781,52.607942025386976],[6.450244124220331,52.60796265614362],[6.450139410779046,52.60796961498285],[6.450076765511748,52.607973779618575],[6.450034227100663,52.607979112490156],[6.449719045648515,52.608018647124275],[6.449535099978918,52.6080417191463],[6.449046336150709,52.60811658925281],[6.448407328196978,52.608214478143026],[6.448278935850706,52.6082338163156],[6.448105323378193,52.60825995750884],[6.447334126625013,52.60836687639951],[6.446768838060214,52.60844741719672],[6.446658148897825,52.60846195801051],[6.44591243301384,52.6085598862761],[6.445310224144229,52.608638969561],[6.445243082876583,52.60864778241186],[6.445203809376926,52.6086538664016],[6.44487814815031,52.60870432970431],[6.444807956439688,52.60871953280892],[6.444518449581756,52.60878222015478],[6.444344222333273,52.60883212495369],[6.444319295045779,52.60883926736456],[6.444225040174571,52.60886626050162],[6.443881950712786,52.608978064855904],[6.443881722518888,52.60897839943317],[6.443874530203393,52.60898876339227],[6.443859546094115,52.60901035047921],[6.443375820963758,52.60916807343096],[6.443319942860509,52.609191012680455],[6.443301989494395,52.60919838946967],[6.443301642231562,52.60919806899735],[6.443283197008515,52.609180634932606],[6.442358132333586,52.609484741523474],[6.441927897336553,52.609613905593584],[6.441939084162825,52.60964083247508],[6.441895336954715,52.609654360999826],[6.441882469752132,52.609627547898725],[6.44184050165412,52.60964015284363],[6.441861687161002,52.609664753010605],[6.441823011308336,52.60967673552754],[6.441804651283571,52.60967578404004],[6.441793445982116,52.60967520044618],[6.441580486128434,52.609740544426806],[6.441348182896379,52.60981199159486],[6.441308220439548,52.60982574696069],[6.441300342178761,52.609828459269984],[6.441173191604209,52.60987223439046],[6.441001044803992,52.60994647260048],[6.440921878427353,52.60998225408165],[6.440878205379802,52.61000199211237],[6.440832527615924,52.61002063342488],[6.440747532048365,52.61005530706763],[6.44045397250516,52.61020036620701],[6.440322390171828,52.61026880615808],[6.440217771461742,52.61032321972771],[6.440212404840144,52.6103260085653],[6.440206279504337,52.610331644260164],[6.44020157025856,52.61033599114049],[6.439983872852705,52.61049486488566],[6.439855476604221,52.610588558636145],[6.439836536614947,52.610599179228],[6.439752835770956,52.610646090985725],[6.439749411944981,52.61064800875097],[6.439578398831093,52.61077359984819],[6.438846161843613,52.61131130567565],[6.438852489120303,52.611314727925006],[6.438882763955618,52.61133108726094],[6.438884454140226,52.61133199803699],[6.438755274210755,52.61142893308027],[6.438699372422008,52.61147087942513],[6.438627725925893,52.611526824213826],[6.438495868712198,52.611629786479696],[6.438494464363489,52.61162909786258],[6.438477970972256,52.611621020023534],[6.438183778758805,52.61147687999415],[6.437939388935624,52.61135371657895],[6.437666845321366,52.61121637627469],[6.43766252623447,52.611214194491],[6.437661465290154,52.611213664607135],[6.437680692124933,52.611199563570736],[6.437693969597782,52.61118982926298],[6.437693252031727,52.611189458122546],[6.436159537572953,52.61039350153396],[6.436143999816418,52.61040442403773],[6.435424887907871,52.61003521821799],[6.435101089476843,52.60986896134635],[6.435100237605795,52.60986852846089],[6.435091698527007,52.609876989360565],[6.43507571675992,52.60989283194396],[6.435074146938,52.60989200993009],[6.434577064428238,52.609631506535614],[6.434097644348972,52.60938025560658],[6.433773863256458,52.60921306926136],[6.433772981461853,52.60921261865458],[6.433756144300548,52.60922478361827],[6.433746419548079,52.60923181682675],[6.433646192851329,52.609180552817975],[6.43332958210812,52.6090186138724],[6.433294363313208,52.60900031936623],[6.433161156851669,52.60893111820496],[6.433011492637326,52.60885337062828],[6.432985915912734,52.60884008720163],[6.432739410440412,52.608742852502836],[6.432703636600674,52.608731006928245],[6.432553844645827,52.608681391575395],[6.432332543651628,52.608661920981284],[6.432069018622823,52.60863874093916],[6.432049064163808,52.608638386176224],[6.431982524843378,52.608637209815804],[6.431869031008095,52.608635188067225],[6.43168647228312,52.60863194897767],[6.431513058473277,52.608628341605645],[6.431470192505201,52.60862745116627],[6.43110020381346,52.6086197560036],[6.431005859712207,52.60861590241341],[6.430987889459747,52.60861517052721],[6.430982637010801,52.60861469538936],[6.43086418045547,52.60860386335143],[6.430860496277428,52.60860352722161],[6.430704787749241,52.608574516521436],[6.430677961658303,52.60856579137974],[6.430545141386424,52.608522621437004],[6.429811531495926,52.60823052533819],[6.429546846570208,52.60812513894127],[6.429402210126703,52.60807104344284],[6.429380395337995,52.608047597045854],[6.42939508500704,52.60803262040271],[6.429395243544962,52.60803245723229],[6.42937832749469,52.6080257300127],[6.429338370083368,52.6080098486841],[6.427967707196717,52.60746520021239],[6.427967423986612,52.60746508585298],[6.426438538797807,52.606857534643424],[6.426435245177569,52.60685622428342],[6.425092358166584,52.60632255258756],[6.424841304880745,52.60622268099997],[6.424596601263853,52.60612533291727],[6.424586705760088,52.60612139282538],[6.424006038611793,52.60589039926258],[6.423991940706337,52.60588478812915],[6.423977932210486,52.60587921216469],[6.423937352422471,52.60586306483513],[6.422131382249331,52.605144478263405],[6.42107049866716,52.60472240363497],[6.4202644814761,52.604401714054205],[6.419168420375843,52.60396554812722],[6.418731605383018,52.60379171748311],[6.418479895238002,52.603691550665815],[6.418442880811079,52.60367681754805],[6.418280583451751,52.603672968643046],[6.418252992197231,52.60367230937002],[6.418256524824661,52.6036113507696],[6.418256554162118,52.60361071238492],[6.417110639073011,52.60358673395605],[6.41661081271593,52.60357627288294],[6.416049882560423,52.60356566490587],[6.415941834644943,52.60356361680402],[6.415941459875592,52.603570954049104],[6.415938132671359,52.603635155358226],[6.415936149226667,52.60367346931354],[6.415936128736123,52.603673855964],[6.415875579188455,52.60371451062776],[6.415874140887935,52.603713606333905],[6.415777038184701,52.60368783451368],[6.415736738417176,52.60367713754094],[6.4155625056187,52.603656518278406],[6.415561913570948,52.60365645150214],[6.415561425863509,52.60364884310575],[6.415559364511551,52.603616837621644],[6.415479220550235,52.603613675703876],[6.415219225938997,52.60360343320012],[6.415217157342822,52.60360335223799],[6.414967529815737,52.60364766493654],[6.414955503912805,52.60364852396135],[6.414851514919089,52.60365593979116],[6.414759581319356,52.60366249627091],[6.414727077943186,52.60366262465575],[6.414646365488125,52.60366293636236],[6.414532416712845,52.60365727102032],[6.414528463630135,52.60365677493329],[6.414144808816888,52.60360867362573],[6.414084406104783,52.603601888797186],[6.414031877521218,52.60359598856939],[6.413875772475683,52.603577843537245],[6.413533188311135,52.6035380134966],[6.413114366062906,52.60349091377632],[6.41288603240405,52.60346523938334],[6.412885943639735,52.60346523116206],[6.412885806095808,52.603465663761334],[6.412880703571827,52.60348109483379],[6.411564206738869,52.60332586778094],[6.41153972302623,52.60332297815511],[6.411323039968399,52.60330498367721],[6.411324783311553,52.60329425526127],[6.411324847074731,52.60329382330003],[6.410862936551154,52.60324280001441],[6.410489593395379,52.60320041314336],[6.410006530925299,52.60314557820391],[6.409920255692998,52.603135787449624],[6.409166853165634,52.603048934324576],[6.408705654041973,52.60299526315113],[6.408165191934146,52.60293236703225],[6.407704312009727,52.60287834770706],[6.407680527078019,52.60286673318159],[6.407679015413831,52.602866476536754],[6.407674465870649,52.60286571571479],[6.40762813769694,52.60285784500769],[6.407554643466015,52.60285043234306],[6.407548695363644,52.602849836321816],[6.407517474791826,52.60284668917011],[6.407392341021463,52.60283407567824],[6.407323573576968,52.602829336569066],[6.407317895930311,52.602828944931446],[6.407280007444998,52.602831723974255],[6.407269234873207,52.60283251753161],[6.407268925351111,52.60283253816518],[6.405991044854375,52.602683200351144],[6.405725366078696,52.60265215230151],[6.405155746738159,52.602585573902836],[6.404792629131571,52.60254314446773],[6.404100306912875,52.602462252131254],[6.404098589696721,52.60246204213942],[6.40208076229506,52.60223102304836],[6.401414181606183,52.60215469461268],[6.401298838147158,52.60214077778237],[6.401074013500153,52.602113657704805],[6.401106058578965,52.601693648217285],[6.399649571380568,52.601532590945084],[6.399649583246524,52.60153246501572],[6.399750529677896,52.600232877539085],[6.399750836817877,52.600228902343495],[6.399750985694943,52.60022703162621],[6.399806736875122,52.599490074600475],[6.399806294291233,52.599415623993366],[6.399808102486497,52.599395404153476],[6.399809757262263,52.599376857339806],[6.399824876496063,52.599205655921644],[6.399831409676225,52.59913158623485],[6.399852287054216,52.59888728340593],[6.39987369248381,52.59863129200033],[6.399873704348396,52.59863116607086],[6.399875907905368,52.598605676042276],[6.399894773242202,52.598387508686905],[6.399898995641946,52.598338768146604],[6.399913879613006,52.598166993462044],[6.399915792509525,52.5981449122599],[6.399915790443036,52.59814482240017],[6.399917037317609,52.59813100660612],[6.399932397558817,52.597960692850066],[6.399938920833309,52.59788813315766],[6.399948403686791,52.59778252728285],[6.399949846268207,52.597781715073516],[6.401404363132622,52.59794395330042],[6.4020938185374,52.59802096682116],[6.40225908966273,52.59804146657689],[6.40327147027812,52.597863687780496],[6.404572090920732,52.597635284281225],[6.404583586658346,52.597633262432545],[6.404918797297522,52.59757290494371],[6.405265986765168,52.597510394618055],[6.40550615814419,52.597468034641324],[6.405605060652508,52.59745058626815],[6.405981751032558,52.59738413589872],[6.406021146987753,52.59737717399371],[6.406299547997026,52.597327905428074],[6.406722782884833,52.59682699008889],[6.406722869138292,52.59682689048328],[6.406779004897846,52.596762667491326],[6.407084269278993,52.59641343402684],[6.407130956570483,52.59635808200978],[6.407131042822103,52.59635798240384],[6.407733108678435,52.59642300489016],[6.40780645650872,52.59643093095082],[6.408493268953949,52.59650205200358],[6.408493296592146,52.59650197087614],[6.408514281237123,52.59643370821968],[6.408558817289538,52.59628885613648],[6.408599777372189,52.59614765684696],[6.408628505338844,52.59604862541222],[6.408675026193394,52.595907926514556],[6.408677233441364,52.595901274570174],[6.408707373003224,52.59581602716665],[6.408730089190139,52.5957518120279],[6.408811397041099,52.59551883319198],[6.40883395368425,52.59543884589376],[6.40883396677313,52.59543877387913],[6.408929400780589,52.59515819112259],[6.409076657153527,52.59459025529015],[6.40908678429225,52.59455664382832],[6.40908681088567,52.59455651777095],[6.409252105613275,52.59457654018853],[6.409427313369816,52.5946580162126],[6.409445762700995,52.59459825961075],[6.409918639305161,52.59324481154176],[6.409992931270864,52.59302667697537],[6.410091124830411,52.59273835778688],[6.410096844292599,52.59271582114969],[6.410110217523469,52.59266316351945],[6.410100405311002,52.592661351616364],[6.410088860229985,52.592659276017194],[6.410088888071571,52.5926592038753],[6.410100858138421,52.5926223857764],[6.410178016082424,52.59263194026253],[6.410281520131531,52.59264476397767],[6.410290045419435,52.59264581400496],[6.410300311653361,52.59261189563395],[6.410498402164747,52.59195769546203],[6.410498415249908,52.5919576234472],[6.410702796073582,52.59132287204386],[6.410756707719357,52.59115078605054],[6.410900786042971,52.59069088056656],[6.41093775571439,52.59057283113945],[6.41095397333161,52.590521982362006],[6.411035487973315,52.590266431525436],[6.411218825136978,52.58966854838111],[6.411259792818585,52.58954353477129],[6.411298483719286,52.58951800840688],[6.411339734897247,52.58950168139974],[6.411377180234239,52.589490501241016],[6.411409670004785,52.589488333602944],[6.41143850887439,52.58949035878119],[6.412127488515796,52.589567677136245],[6.413470053167226,52.58971413231136],[6.414198958302478,52.58979710646868],[6.414716397580376,52.58985636279371],[6.415306390496573,52.5899221070876],[6.41555936746939,52.589950645902164],[6.415794988608189,52.58997597308079],[6.4158937327414,52.58997917125731],[6.416023280011886,52.589974957217095],[6.416098435114261,52.58997156482539],[6.416161445585653,52.58996694742398],[6.41626711859268,52.589953412934925],[6.416405394225981,52.5899299069821],[6.41654353059797,52.58989918489198],[6.416660579054325,52.58986407965861],[6.41669644832528,52.589851176839645],[6.416732488013646,52.58984177776414],[6.416874782378531,52.58980018896972],[6.416995863616562,52.58976716955009],[6.417111324581994,52.589743725789326],[6.417229750257166,52.58972590052353],[6.417357136605787,52.58971829739901],[6.417431838985756,52.58971260721686],[6.417539287177389,52.58970939213054],[6.417598943928637,52.58971977669439],[6.417607390186842,52.589697908053026],[6.418291961948684,52.589822711397865],[6.419784233423849,52.59011608478173],[6.419860379742759,52.59013105240787],[6.420993806452493,52.590353956586355],[6.420980159523869,52.59038242283733],[6.422476211359892,52.59067995393397],[6.422800490872762,52.590713428189474],[6.422901632235419,52.59071241134233],[6.422990994698319,52.590706284232084],[6.423091832530221,52.59069173427316],[6.423273832705553,52.59063803543109],[6.423366057278062,52.590598628278414],[6.42342746043184,52.59056331878823],[6.423505041781126,52.59050809497217],[6.423585771711627,52.5904016671984],[6.423602197431639,52.59040293493176],[6.423604206640148,52.59039173659686],[6.423606777991267,52.59037745953472],[6.423697807693035,52.58993422351578],[6.423754008401303,52.58964214233885],[6.423806354798473,52.5893700476356],[6.423904609397147,52.58888094650949],[6.423923692539239,52.588780080768586],[6.423928911770611,52.58878050256904],[6.423969689309642,52.58878377763458],[6.424010257136559,52.58858503605986],[6.424039206210038,52.588443153774854],[6.424056413093044,52.588338457608515],[6.424265207569683,52.58745198442995],[6.424576016797463,52.58596379463744],[6.424646409533745,52.585628159703795],[6.424686234362107,52.58544135100839],[6.424790016809518,52.584954662946686],[6.424878207955333,52.58450150962223],[6.4249421524649,52.58417295917661],[6.425017100041453,52.58380228556047],[6.425085557415443,52.583463701097706],[6.425241088896341,52.582687530375765],[6.425295282323943,52.58239560920947],[6.425372612331118,52.58203612213855],[6.425396762012189,52.58192386007004],[6.425455080109896,52.58161044881895],[6.425455106437155,52.58161031377172],[6.425481209987652,52.581608530630035],[6.425919623777215,52.57944509744904],[6.426034777251933,52.57887677956206],[6.426212638697892,52.57806914257113],[6.42622856739718,52.57799071036146],[6.426228963298667,52.57798872957857],[6.426231876099101,52.57797398205451],[6.426247683384029,52.57789415779193],[6.426260576561647,52.57782902713546],[6.426264568649839,52.577809371807675],[6.426505142034062,52.57662284327801],[6.426569441599089,52.5764060246136],[6.42674799761576,52.57548606840172],[6.42698677357668,52.574300084119685],[6.426990827753794,52.57427996083709],[6.426995925634724,52.57425467839293],[6.427218390921307,52.57314947481624],[6.427221456201906,52.57313433943532],[6.427241462986835,52.57303195465869],[6.427440368563034,52.57201407565385],[6.427464531514675,52.57186720060781],[6.427471662560133,52.57170309233763],[6.427473210142822,52.571624291499134],[6.427474875666599,52.571539863246784],[6.427469106530497,52.57143543931089],[6.427468608739916,52.571413099937445],[6.427465652196601,52.571283467464355],[6.427463683299022,52.57118817780613],[6.42734369991202,52.57118210173868],[6.427290679289168,52.5711794205207],[6.427379853524209,52.57077013352424],[6.427379880475568,52.57077002543419],[6.427382564043923,52.57075935134623],[6.427397676403642,52.57069902745502],[6.427426477563123,52.570618693556085],[6.427453714034803,52.57055706804013],[6.42747366872502,52.570511918097516],[6.427501906523453,52.57046272294799],[6.427537044449381,52.57040151351301],[6.427840504193948,52.569869246046245],[6.427840546528007,52.56986916478471],[6.42802789222782,52.56952475353216],[6.428198167159256,52.56923274688289],[6.428203613765599,52.5692222822257],[6.428669266754143,52.56841400272088],[6.428671303108157,52.56841029085642],[6.428737744157048,52.568290034945846],[6.428925113670533,52.56795095164495],[6.428927547187818,52.567946571190525],[6.428930036720159,52.567942064414765],[6.428976522201029,52.56786187147433],[6.428616809610305,52.56773520733211],[6.428144802636338,52.56756904562131],[6.428095506899354,52.567550900012485],[6.427862421039443,52.56746513238638],[6.427243040298493,52.567237209286944],[6.427121641624134,52.567192569670766],[6.426594745165788,52.56699881366553],[6.426587616134868,52.56699610783171],[6.426427546881687,52.56693530442608],[6.426087793968291,52.56680625593297],[6.425799113002586,52.566704379271805],[6.425540537185676,52.56661312286032],[6.42550608624477,52.566600796285556],[6.425478924106046,52.56659107533754],[6.425414960757703,52.566435426216295],[6.425414898807682,52.56643530092844],[6.42488892291493,52.566257383907946],[6.424520982947462,52.5661266449777],[6.424431907174357,52.566095192945674],[6.424416826820259,52.5660899140346],[6.424097687373377,52.56597824201241],[6.423832322148037,52.565914678802784],[6.423517785824904,52.56583932980784],[6.423287243150641,52.56579196304581],[6.423209420775843,52.56577548447877],[6.423109886955988,52.565755231693196],[6.423103010368532,52.565753835672496],[6.422994040583479,52.565729971133074],[6.422907324261326,52.56571097248944],[6.422910847154664,52.56569016188513],[6.422915597069395,52.5656675879478],[6.422956376986388,52.565487331688885],[6.422956403523168,52.5654872056277],[6.422903743476019,52.56548010631898],[6.422871813046856,52.56547580110574],[6.422871825893107,52.56547572010318],[6.422910361342248,52.56531795301631],[6.42303093178629,52.564803650760126],[6.42309590792306,52.56448443806769],[6.423168650453857,52.564089057527376],[6.423169965037527,52.56407972566908],[6.423174501991994,52.56404810281904],[6.42319598724403,52.563897944277976],[6.42324025241589,52.563337076443865],[6.42324999670037,52.56305825158599],[6.423260152395057,52.56276744232906],[6.423261647489657,52.56246834096457],[6.423262672452864,52.562260937623755],[6.423249713266073,52.56195238134704],[6.423249696197822,52.5619522826298],[6.423233674697149,52.56179706764601],[6.423253000798497,52.561688128116806],[6.423268596846817,52.56158489246628],[6.42333361279548,52.56112519905162],[6.423189595216042,52.56111123967809],[6.42316837542137,52.56095256476998],[6.423162363510006,52.56090885543565],[6.423126912463483,52.56065102500768],[6.423105799803054,52.56052764439894],[6.423067711855456,52.56030506030593],[6.422979797183956,52.55992827514392],[6.422979764950337,52.559928158583226],[6.422889772009848,52.55955575057132],[6.422697985202684,52.559015924160626],[6.422697953392602,52.55901582557185],[6.422418162805123,52.55822360570931],[6.422414418245917,52.558212978781754],[6.422412206817482,52.55820672455193],[6.422572021844712,52.55817603021126],[6.422792647727018,52.55814573085103],[6.422899996569131,52.55814031824988],[6.422982114030943,52.558178249428416],[6.422994786579935,52.55818410677212],[6.422583264250385,52.557887386287106],[6.422534646491352,52.5578523353415],[6.422510389982856,52.55783484086201],[6.422510284032773,52.55783472494414],[6.422475679925849,52.55779796089021],[6.422412043751945,52.557697321744364],[6.422397467387229,52.5576656408805],[6.42238649642197,52.55764180192512],[6.422386406060393,52.55764172182259],[6.42208990090376,52.55739016703834],[6.422059019755308,52.55733041543828],[6.422035661582004,52.557285203493834],[6.421898434870132,52.557079975926925],[6.421302382026629,52.5559478301213],[6.421199590571212,52.55574617546638],[6.420876289643187,52.55511187876811],[6.420846056232279,52.55505257059254],[6.420836874893927,52.555034558006575],[6.420342270129812,52.554054811466834],[6.420180003101748,52.55375806981102],[6.420179941605654,52.55375796249203],[6.420030551348163,52.55344430126483],[6.419922515847762,52.55322537150035],[6.419842406812407,52.553063019870834],[6.419371741979882,52.55222411622118],[6.41897046233884,52.55143723136665],[6.418552071347966,52.5505888730517],[6.418552009229829,52.550588738773634],[6.417832935799937,52.549225927956776],[6.416949995352579,52.54754136707919],[6.4165961287988,52.546848012590694],[6.416247170764136,52.54616424943218],[6.41587877408422,52.54544239236988],[6.415802483826654,52.545255414001176],[6.415710371456813,52.54502970019272],[6.41540932272877,52.54436860904314],[6.415316274452201,52.544199975970606],[6.41507748031353,52.54381794811141],[6.414509221530053,52.54270109316853],[6.414263648715695,52.54224570940163],[6.414263587040984,52.5422455930931],[6.413639631363609,52.541058993665814],[6.413132598754036,52.5401028626403],[6.413132552659252,52.540102782147976],[6.412770113999019,52.53939883030736],[6.41232208400881,52.53855383308469],[6.411808429530066,52.53758553889445],[6.411808383440353,52.537585458401544],[6.411621075483858,52.53721640669818],[6.411581067768648,52.537137541949534],[6.411575557032157,52.537114140155566],[6.411549204136919,52.53700186641304],[6.411491796270034,52.536821103493565],[6.411470836932472,52.53675510668688],[6.41147079000974,52.536754990249555],[6.411292368676881,52.53634242286938],[6.41116248116765,52.536001959557524],[6.411154476219165,52.53598094307718],[6.411007451369312,52.535787309654175],[6.410906377980026,52.535687373696575],[6.41085347320369,52.535635071291935],[6.410821703777334,52.53560876821846],[6.41071895671613,52.53552369451698],[6.410632187773817,52.53545642271388],[6.410585118495133,52.53541992447401],[6.410569412398404,52.53541383134092],[6.410545987035454,52.5354047399169],[6.410272874940102,52.53523919259474],[6.410258098301859,52.5352687283456],[6.410151783340246,52.53548040175186],[6.409999759375921,52.53578104460852],[6.409948051469373,52.53590113694996],[6.40993224633827,52.535937826880705],[6.409873165758407,52.53607497880685],[6.409852226674899,52.53608794902918],[6.409845818425877,52.53609191398743],[6.409737835450469,52.53600984158918],[6.409473488122328,52.53582946780517],[6.409835077905048,52.535114107513145],[6.409874733977667,52.535015869740796],[6.409899660607601,52.53495939076804],[6.409908949829404,52.53493410868711],[6.409910288896706,52.53493083454488],[6.409916147964767,52.53491653825398],[6.409919203353775,52.53490909691752],[6.409919297018924,52.53490232823732],[6.409919488825464,52.53488771229272],[6.40991969698139,52.534872529970784],[6.409918895490214,52.53486847435804],[6.409917909820785,52.53486346761759],[6.408991557688267,52.53463328802343],[6.408568271451174,52.53452402682701],[6.407872130174361,52.53433157403716],[6.407642125216809,52.53425497141202],[6.406892390630638,52.53375018671608],[6.406756614111194,52.533658221154305],[6.406344091827703,52.53337878198672],[6.406187694897731,52.533260505626444],[6.405936711386424,52.53305690143],[6.405782926675397,52.532927187506786],[6.405602446752408,52.53277428011861],[6.405546661441998,52.53272701533392],[6.405479421740534,52.532670052044296],[6.404971116214523,52.5322780930306],[6.404617017577197,52.531988709453465],[6.40461695718562,52.53198864705618],[6.404322977909057,52.53175288104068],[6.404323049306536,52.53175278156192],[6.404345377533281,52.531723370548775],[6.404517759965505,52.531478141291416],[6.404301929974691,52.53144142475983],[6.404080329838182,52.53140372368708],[6.403994808967099,52.531389177254276],[6.403787250702175,52.531353862912574],[6.403699122662228,52.53128371262625],[6.403509475634394,52.531132750101875],[6.403340982985275,52.53099861116397],[6.402870012685372,52.53061478105231],[6.40236140871177,52.530213564987235],[6.402205720136903,52.53008476154626],[6.402080762531742,52.529981049833744],[6.401921505184393,52.52984887014493],[6.401315410411502,52.52934542840238],[6.400924453572381,52.52902058618254],[6.400589496360671,52.528742279957896],[6.40018977328161,52.52840230272419],[6.400189683226725,52.52840223159008],[6.400093827920005,52.52832749789451],[6.400062811766352,52.528303324651894],[6.40003475167609,52.52828145402561],[6.399970609398957,52.52822913489506],[6.399660728005803,52.52797636228003],[6.39941335006526,52.527778897296294],[6.399299276932133,52.52768784361402],[6.399061694561313,52.52748297820098],[6.398880987225107,52.527327150542085],[6.398635195804741,52.527113078792404],[6.398474559165113,52.52697317669755],[6.39822300994404,52.52674946424592],[6.397828451675251,52.526388897797666],[6.397838990770197,52.52638386468086],[6.397895110698141,52.526357016137666],[6.3979003678952,52.5263555692395],[6.397900499672876,52.526355532165304],[6.39630070035812,52.52488242954092],[6.396300610111231,52.524882349417624],[6.396218511493988,52.52480863705994],[6.395687653790324,52.52433203875185],[6.395651082200527,52.524299247273845],[6.395136469228694,52.52463342214202],[6.394807791766178,52.52443733942792],[6.394227786085081,52.52456218071781],[6.394015074261249,52.52460795490762],[6.393870538877708,52.52439637544883],[6.394033938562488,52.52435938776024],[6.394113424621436,52.52434139347278],[6.394118878847514,52.52434665002769],[6.394122433895554,52.5243500442353],[6.395688213203834,52.52400893756911],[6.39567975018693,52.52399711854454],[6.395665048642139,52.523976679245635],[6.395555272074708,52.523823955547186],[6.395442278943378,52.523738740116904],[6.395333056899074,52.5236611951488],[6.395281698775197,52.5236345151463],[6.395229475964827,52.523607393075125],[6.395182915594538,52.52358883326034],[6.395044885005601,52.5235337958002],[6.394854778899222,52.52345547252143],[6.394538303459928,52.523333246715154],[6.394311287093092,52.52324329109702],[6.394295137242428,52.5232336044466],[6.394283319873678,52.52322651446346],[6.394195937105513,52.52317408394551],[6.39410317626935,52.52311842742315],[6.394010564139552,52.523060882111345],[6.393870181109453,52.52297363271227],[6.39364083560207,52.52283632045484],[6.393431262283981,52.52269561339525],[6.39335345258121,52.52264223822352],[6.393184451188563,52.52252629875281],[6.393104474776994,52.52247092850773],[6.392911675280068,52.522337421403016],[6.392741655688637,52.52221161225578],[6.392705393790918,52.522183185363986],[6.392699587668382,52.52217863278186],[6.392693631565162,52.52217396462826],[6.392646297889524,52.52213686837813],[6.392644107912176,52.52213517025416],[6.392465703786566,52.52199568930614],[6.392324672556119,52.52188033847647],[6.392173588144225,52.52174212658278],[6.392050631010959,52.52163035227885],[6.392050555510329,52.52163027202747],[6.392043318496532,52.52162370027256],[6.391864975073164,52.521447870911565],[6.391785944954639,52.52136400017858],[6.391689706879202,52.521236827676496],[6.391617705028281,52.52114385550531],[6.391567214624716,52.52107867145441],[6.391506810219106,52.521009697539604],[6.391455542929674,52.52095115307732],[6.391358880852414,52.520838939735896],[6.391395895153321,52.52067320437743],[6.391413292236544,52.52059530290706],[6.391208604946319,52.520568858516434],[6.391124574151659,52.52055781356156],[6.390903652145244,52.52025413991071],[6.390868774202288,52.52020221540717],[6.39081982074542,52.520129360354744],[6.390817845819439,52.520126096485775],[6.390817769302019,52.520125971302754],[6.390692397399772,52.51991864784045],[6.390691845825794,52.519917717766425],[6.39063186520547,52.519797904338304],[6.390548809142217,52.519631971486575],[6.390470069762126,52.519475717969726],[6.390442834814943,52.51942162552973],[6.390372367425512,52.51928182171913],[6.390324058706611,52.519154916842396],[6.390302262073001,52.519097632618035],[6.390245221993798,52.51894697465385],[6.390188322367117,52.5187668172254],[6.39018830559432,52.51876672748835],[6.390137928687133,52.5185656090508],[6.390114331292096,52.518478976583545],[6.390075076301756,52.518283579237846],[6.390045369208928,52.518201033970236],[6.389984311345278,52.51803815933833],[6.389948834883214,52.51794354714367],[6.389944562205909,52.517915010764675],[6.389913191105038,52.51770535482345],[6.389893957751656,52.517598705331906],[6.389883220738304,52.51737897927704],[6.389872028989231,52.5171872273695],[6.389866065339728,52.51708488773413],[6.389862498140804,52.51703097256923],[6.389856089459209,52.516934335014675],[6.389849557874687,52.51686017721176],[6.389852938954784,52.516571844047384],[6.389852920915208,52.516434832780824],[6.389852909955631,52.51626115983866],[6.389849869618372,52.5159560555812],[6.389848271201675,52.51588762628964],[6.389846140056269,52.51579639022787],[6.389638582992989,52.51574829768658],[6.389274342371398,52.515672884177626],[6.389243232605168,52.51566729587897],[6.389213099099263,52.515661879082856],[6.389179754936324,52.515655860248664],[6.388970875452402,52.51561824861146],[6.38874285712382,52.515580573516985],[6.388593112735344,52.515555835861946],[6.388156759837321,52.51549409612187],[6.387481864814426,52.51540343037199],[6.387289523064681,52.51538685179139],[6.387136958635973,52.51536503018403],[6.386940161548841,52.51533710992906],[6.386728791697227,52.51530712809502],[6.386668701777294,52.51530406625622],[6.386582859281128,52.5152997024179],[6.385993407216358,52.51526970456389],[6.385908420193911,52.51526537797408],[6.385635235381904,52.51523091739338],[6.385368731785321,52.51518829288527],[6.385323723143974,52.515181094852316],[6.38502981009303,52.515129011290206],[6.384974873340481,52.515119272182375],[6.384858540895316,52.5150975652942],[6.384741897818393,52.51507579798964],[6.384604973141986,52.51504903308468],[6.384361134122989,52.515001362275775],[6.384167086797434,52.514965882471095],[6.383807270025469,52.51488667611121],[6.383565438877509,52.51483258742893],[6.383394181304165,52.51479176486559],[6.383236796371811,52.51475134685943],[6.383198496424463,52.51474108973347],[6.382698921717373,52.51460720279047],[6.382265606326756,52.51448530499386],[6.382065180353867,52.514429400877624],[6.381945525286176,52.51439477646132],[6.381629668613651,52.51430336679266],[6.38127930864692,52.51419683124376],[6.38112709779199,52.51414982391193],[6.380974442141455,52.51410267630679],[6.380628707166799,52.513992684703084],[6.380332525491911,52.51390332682135],[6.380046720731777,52.5138259520734],[6.379779467691194,52.51375133346799],[6.379504671477557,52.51367403606741],[6.3792347707544,52.51360738368409],[6.378931447378094,52.51351924149774],[6.378554360827501,52.51343628093572],[6.37859232276363,52.513352205543185],[6.37871538785039,52.51307974271733],[6.378714336233524,52.513079490859724],[6.37879765578827,52.51289042621284],[6.378803974543035,52.51289168561719],[6.379455147123841,52.513046314041375],[6.379723661401195,52.51311237532697],[6.379979332792508,52.51317527191655],[6.380181803424945,52.51322551801312],[6.380439399628625,52.51328944009768],[6.380584328589831,52.513328563995586],[6.380602263284865,52.513333411050574],[6.380887281717548,52.513406710542554],[6.380893583080322,52.51340850026731],[6.380982742769772,52.51341774779214],[6.381172974279746,52.51344513070239],[6.381211283639129,52.513450642792534],[6.381407340862736,52.51347699682566],[6.381458409090011,52.51348385792556],[6.381676415229879,52.51351404510896],[6.381724564526109,52.51352081372595],[6.38187161375282,52.51354149311193],[6.382148284557092,52.51357631054296],[6.382304545750674,52.51359651665258],[6.382585508631744,52.513632833986776],[6.382751203489375,52.51365390406941],[6.383029981827582,52.51368934888972],[6.383231967755903,52.5137171960586],[6.383338088803185,52.51373182693529],[6.383416822793129,52.51373991986767],[6.383539206071098,52.51375249955476],[6.383723573377889,52.51377057125762],[6.384006526431623,52.51378009359315],[6.384027821004977,52.51378039098755],[6.384264287480979,52.5137837332386],[6.384508921033885,52.51378079571478],[6.384628672779542,52.51377860233896],[6.384687046463718,52.51377752722678],[6.384937852297926,52.5137660972802],[6.38524291130777,52.513747280635386],[6.385341891292291,52.513739248422226],[6.3855349104511,52.513723593837966],[6.38568675163484,52.51370655991849],[6.385736449313185,52.5137009824888],[6.385797553285395,52.51369296316681],[6.386037253672923,52.513661491510305],[6.386210172692715,52.513634545526614],[6.386247798240246,52.51362868308179],[6.386494106004171,52.51358650418981],[6.386561455528196,52.513573254826106],[6.386624566376931,52.51356084106246],[6.386891825396383,52.513503834530866],[6.387154200768474,52.51344002877728],[6.387243397620582,52.51341833495824],[6.38755621656165,52.513329278418546],[6.387749924517961,52.51327587423118],[6.387966109151123,52.51319955867695],[6.388078836848153,52.51315598687241],[6.388169366462838,52.5131209969924],[6.388351486557253,52.51304649614305],[6.388586651695872,52.51294455651557],[6.388655144480381,52.512914884398995],[6.388713559191411,52.51288644779181],[6.388863377534782,52.512813549099505],[6.388979292478976,52.512754706032524],[6.389108693796502,52.512682545704784],[6.389143916744288,52.51266174676551],[6.389150327552381,52.51265796263173],[6.389288979909448,52.51257607094943],[6.389356501937832,52.51253483020722],[6.389409987737824,52.5125021656432],[6.389476414832493,52.512458776986946],[6.389540823870298,52.512416699604344],[6.389665495300456,52.512327708336834],[6.389831872740252,52.512208290868244],[6.389911899279691,52.51214233522234],[6.389939389558179,52.51211968698947],[6.390021357562477,52.51204452921815],[6.390061788416633,52.512011138855094],[6.390121595733206,52.51196173896422],[6.390169641264166,52.51191272611675],[6.390230183686565,52.51185095260004],[6.39035707070384,52.51172669128948],[6.390401715450603,52.51168298300434],[6.390596363548572,52.51149250961133],[6.390596435761488,52.51149244608512],[6.39078921568305,52.51131058958562],[6.390789331263652,52.5113104897407],[6.390816462578516,52.51128829372722],[6.39081895174627,52.511286331277155],[6.390830118659835,52.51127663770291],[6.390876795109721,52.51123615666996],[6.390900777889527,52.5112154343328],[6.390941216572696,52.51118050665765],[6.390977656575052,52.51114788674954],[6.391022816549158,52.51110745444227],[6.391058847936621,52.511074361607456],[6.391092051155135,52.51104387222777],[6.391092152210331,52.511043781493406],[6.390947567281914,52.51099655141414],[6.390938959270639,52.5109937391463],[6.39092178784494,52.51098813220725],[6.39086570172547,52.51096978616844],[6.390725345485679,52.51092386822134],[6.390603525479128,52.510883967982],[6.3905086578896,52.51085289044117],[6.39041705200818,52.51081494544116],[6.390382788927413,52.51080074675188],[6.390367337819371,52.51079434323464],[6.390303672236351,52.51075748304337],[6.390184594906497,52.510688483312755],[6.390299181074311,52.51056499114101],[6.390420812494237,52.5104339163824],[6.390765715590009,52.510062206744365],[6.390774968251682,52.51005644809537],[6.390779485755508,52.51005364159467],[6.390851563150383,52.509914932501715],[6.390852639538627,52.50991433019115],[6.390926935198707,52.509873219922845],[6.390961428016467,52.509854134293796],[6.391010979055607,52.509822239271415],[6.391011080925392,52.50982218448177],[6.391101709142884,52.50974204519465],[6.391425141463769,52.509502583568086],[6.391936328193898,52.509131143007195],[6.392116217755561,52.50899911447793],[6.39227921284975,52.50887948834821],[6.392320069684549,52.50884301070158],[6.392401696218523,52.508770119017896],[6.392406897578794,52.50872683409764],[6.392410711303265,52.508695065462945],[6.392365978683425,52.5086460470382],[6.392365903818288,52.508645993745205],[6.391999109996388,52.508416530699364],[6.391998990336198,52.508416450822],[6.391685174444421,52.508210481755235],[6.391591851230731,52.50812922149617],[6.391571097581195,52.5081111428075],[6.391553770486045,52.50803194427004],[6.391541737931153,52.507976986227234],[6.391551604734585,52.50783246694432],[6.391633326819528,52.50737980873388],[6.391659766713148,52.50736489855587],[6.391739579342342,52.50731140958376],[6.391777894463472,52.507283033767166],[6.391922650945383,52.507102013312526],[6.391949961440131,52.50706970408035],[6.391965552984338,52.507051254621246],[6.392005404780693,52.507003685501886],[6.391986498233967,52.506995558829615],[6.391961894615936,52.5069849907688],[6.391903569020633,52.50702856396201],[6.391798170124003,52.50700689715209],[6.391359023343806,52.50691659367751],[6.391232802793049,52.50689064465913],[6.391137112374915,52.506872903681824],[6.390957062655187,52.506839527633154],[6.390956781617568,52.50683947608427],[6.391279483537198,52.50681105695469],[6.391611034701331,52.506781860941786],[6.391770884996604,52.506819541541155],[6.391889756298594,52.50682221962456],[6.39228132017548,52.50679837344178],[6.392379054176391,52.50678422503444],[6.392501261780887,52.50676652558967],[6.392611681260335,52.506727939174006],[6.392667986953118,52.50670826363702],[6.392831414849416,52.506628772987355],[6.393052736573908,52.50652112629977],[6.393265779412144,52.50641736928605],[6.393389170076246,52.50636502844027],[6.393462069485683,52.5063341116574],[6.393675584680073,52.50625309830143],[6.393784429867788,52.50621145925674],[6.393905555345719,52.50617675340776],[6.394010344158069,52.50614586218293],[6.394158462718897,52.506121236053595],[6.39425530916511,52.5061070127304],[6.394387141193277,52.50610002408679],[6.394480854874732,52.50609504878795],[6.394598854246997,52.50606604015271],[6.394751069804106,52.50602862462131],[6.394925915171903,52.50588689156514],[6.395003968497929,52.505770158313865],[6.395140333307833,52.50556623195237],[6.395349302108471,52.505243793687235],[6.39545327002008,52.50509645164848],[6.395561545008523,52.50497005069656],[6.395561630903997,52.50496994211117],[6.39556378075309,52.50496733531019],[6.395654236741952,52.50485722808337],[6.39573104992046,52.504761168083306],[6.395862260227503,52.50444792858648],[6.39609887601758,52.503839743310245],[6.396151721790971,52.50372365508019],[6.396191873648423,52.50364764412741],[6.396209930682337,52.50361346220895],[6.39631093839458,52.50343483956776],[6.396390586203299,52.503302506661896],[6.39647607995701,52.503160470910295],[6.396537854457764,52.503065868525404],[6.396558406901002,52.50303713895472],[6.396601039082787,52.50297755463878],[6.396711856599745,52.50285901329759],[6.39687752273178,52.50274178447999],[6.397104820417887,52.502663586451156],[6.397128792954812,52.50265949052431],[6.39720855951169,52.50264585957996],[6.397279415918425,52.502632897677785],[6.397321539687918,52.50262519574208],[6.397413636404846,52.5026213373646],[6.397554761104355,52.50261542541098],[6.397576822932734,52.50262502529936],[6.397576913572041,52.50261675563281],[6.397576985373957,52.50260830636821],[6.397577554674819,52.50254242000057],[6.397579016148585,52.50237068417909],[6.39751372155425,52.502178656119014],[6.397529237802334,52.5021525847618],[6.39755141981667,52.5021153025903],[6.39757033996436,52.502083512866676],[6.397624160407249,52.50199419063883],[6.397625222424028,52.50199039767142],[6.397625808324389,52.50198832545534],[6.397695370387583,52.50172187873949],[6.397783713023101,52.50138348530998],[6.397788519924345,52.50136506402611],[6.397796305808519,52.50133522964583],[6.397830563485548,52.50129534585624],[6.397839142054732,52.50128535006975],[6.397839169654128,52.50128526894316],[6.397908652947949,52.50112617457831],[6.398071207427224,52.500819370074275],[6.398161698245682,52.500667673282884],[6.398299739222472,52.50047523314369],[6.398299796475849,52.500475160752046],[6.398354972330236,52.50039822993238],[6.398483654713233,52.50011359922125],[6.398523254308085,52.50002600663692],[6.398716353906682,52.49936076237876],[6.398709904119881,52.4990727090852],[6.398709902061864,52.499072619223384],[6.398707986871853,52.49906551711403],[6.398701547037188,52.49904154729053],[6.398540006942094,52.49890466368703],[6.398540883254177,52.498890194622426],[6.398541737524785,52.49887604931146],[6.398541940305195,52.4988739713685],[6.398542237628061,52.498870876982394],[6.398542725064626,52.49886579464062],[6.398543035877047,52.498862646211805],[6.398544324648466,52.49884946789223],[6.3985516392416,52.49877465283334],[6.398555231698828,52.49873795140927],[6.398555530666058,52.49873492891243],[6.398556081432352,52.498729396633514],[6.398560724091851,52.49871797830807],[6.398572448889668,52.49868912589587],[6.398616525213354,52.498604155491705],[6.398621045345039,52.498597034442774],[6.398627910592336,52.498586208336576],[6.398690185317516,52.49849527646961],[6.398708483387227,52.49846857900423],[6.398724619103841,52.49845228104998],[6.398828454202308,52.49836076088875],[6.398836873784072,52.498354145840175],[6.398841126717155,52.49835079300788],[6.398846305730959,52.49834672222758],[6.3988560560472,52.49833905322373],[6.398920445385271,52.4982883961151],[6.39892056111941,52.498288305248245],[6.39894227827922,52.498246937220166],[6.398968369821055,52.49821202115563],[6.398971499283451,52.49820784202595],[6.398975345271299,52.49820472634723],[6.398976313872884,52.49820393613202],[6.398977631940182,52.49820297216414],[6.398985713737569,52.498197043069915],[6.399063043011891,52.49814039735658],[6.399172786404607,52.498059989483096],[6.399307033452428,52.49799173077859],[6.399424714050915,52.4978804891987],[6.399464286744594,52.49784265370154],[6.399538934671498,52.4977712364056],[6.399583732212035,52.49773776933934],[6.399613877125455,52.497715248839775],[6.399647294497051,52.4976896534795],[6.399696865878747,52.497638951677736],[6.399737775076835,52.497597123014785],[6.399782573044685,52.49754505981602],[6.399807458891666,52.49752633214532],[6.399835891479094,52.49750493172604],[6.399879813605194,52.49753093623994],[6.399892264889188,52.49753831685845],[6.399892369192083,52.497538369895324],[6.399934460577776,52.49757187697937],[6.399944056018152,52.49755875352489],[6.399958535141411,52.49753896424601],[6.399961533596787,52.49753485811126],[6.399962118934867,52.49753405318514],[6.39996273289636,52.497533212062834],[6.399988350402455,52.497498227906185],[6.400142094227561,52.49728812477329],[6.400242404935396,52.49715105556661],[6.400435218110804,52.49688584570858],[6.400715283040219,52.49650062873543],[6.400729914609711,52.49645157330303],[6.400748364164477,52.49641295618903],[6.400790139391566,52.496325532880014],[6.400803618729493,52.49630648904557],[6.400924868703997,52.4961669752504],[6.401038848796187,52.4960405380268],[6.401085908573476,52.495988347105026],[6.401087551216733,52.495986131012764],[6.401563654658814,52.49535154562014],[6.400904291215886,52.49516959697667],[6.400698293658961,52.49511068925477],[6.400654282527904,52.495098050879974],[6.401323029420885,52.49422124814969],[6.401324688134999,52.49422101825224],[6.401325965090348,52.49422083655965],[6.40135444708492,52.494217105630355],[6.401379875211977,52.49421376932074],[6.401464587288404,52.494202681618496],[6.402102994569036,52.494112696279984],[6.402379262761388,52.49407369638216],[6.402512685898456,52.49405361636134],[6.402526597523048,52.494051519888025],[6.402632204078994,52.49403400580065],[6.402680963801398,52.49402390819506],[6.402781604842736,52.494003066017754],[6.402827430462898,52.49399152844619],[6.402899141009007,52.49397347755965],[6.402965824010815,52.49395836381952],[6.402968076621395,52.493957706377486],[6.402976970315369,52.49395512254881],[6.403031370942645,52.49393931406344],[6.403152319921808,52.493896142281045],[6.403185992684564,52.493883144793955],[6.403216220868479,52.493871480066296],[6.40322220504055,52.493869163824826],[6.403231283735451,52.4938656616204],[6.403240347913026,52.4938621685276],[6.403307456353388,52.49383547446436],[6.403358251040674,52.49381527465549],[6.40339478789316,52.49380004152637],[6.403445692055197,52.49377884307837],[6.403479049517079,52.49376494941373],[6.403584436000657,52.49371679642379],[6.40367296221101,52.493676346746405],[6.403674961619007,52.49367556563003],[6.403680069420242,52.49367356246834],[6.40376005812259,52.49364221880784],[6.403822344471176,52.493617812778254],[6.404069848298832,52.493517353224036],[6.404112403966161,52.493507730663374],[6.404226472885022,52.493487536058616],[6.404288493694105,52.493476560062696],[6.40448383635947,52.493450176382005],[6.404686802282119,52.49342936240899],[6.405048897145791,52.49338521561459],[6.405059422262287,52.493383786057606],[6.405009265235325,52.49329547852662],[6.404959430622665,52.49320773444774],[6.404927568729472,52.493151644459964],[6.404915699129608,52.49296688205254],[6.404914919914138,52.492954790951146],[6.404915112846236,52.49295229963119],[6.40489906937557,52.492922561367585],[6.404888186376358,52.49290973009561],[6.40488812583118,52.49290965871166],[6.404863791122955,52.4928952172056],[6.404718007711468,52.49281511835654],[6.404709534338977,52.49281036453876],[6.404595084582544,52.49274616597871],[6.404699129803386,52.49269236106151],[6.404896888697213,52.49259013353132],[6.404906477971007,52.4925851617759],[6.405397827023234,52.492330404055075],[6.405465503707034,52.492295300118734],[6.405372852301935,52.492279243350296],[6.405215386035708,52.49225762222129],[6.405179021732645,52.492252784335605],[6.40511881822295,52.49224477163037],[6.405057585856019,52.49223044919234],[6.405057408156452,52.492230405777995],[6.405087643751462,52.49219612679262],[6.4051046482986,52.49217683645902],[6.405156216633923,52.49208872518762],[6.405220947095687,52.49198392708573],[6.405251240673908,52.49192789669626],[6.405272367958454,52.4918887974274],[6.405336625882466,52.49183124402636],[6.405412355664017,52.49179163989612],[6.405527254430701,52.491731647178135],[6.405527341518982,52.49173159250238],[6.405657880001809,52.491669146437104],[6.405732528801592,52.49163632830489],[6.405765808050099,52.49162169763553],[6.405766494174276,52.49162144007844],[6.40576830414055,52.49162075043264],[6.405731299739145,52.49160792792058],[6.405673019151969,52.491588762898964],[6.40569911104675,52.49146484645981],[6.405700408268429,52.49146235463948],[6.405714456444585,52.49143556668448],[6.405742728129189,52.49138384977047],[6.405747512913378,52.49137168390781],[6.405756024535833,52.491350003730666],[6.40579480956468,52.49126955185467],[6.405804492010659,52.4912494794478],[6.405804519589275,52.49124939831926],[6.405542347060785,52.49122636722005],[6.4054477051242,52.49121584622379],[6.40537941371787,52.491208235670356],[6.405482003914753,52.49050315684913],[6.405482016150676,52.490503048888485],[6.405596221099309,52.48985484478768],[6.40559795634039,52.48985474899125],[6.405598529847005,52.48985471710126],[6.405598926905981,52.489854695714804],[6.405455618047018,52.48984516798162],[6.405453066096375,52.48984496519931],[6.405194412696163,52.4898247613242],[6.405122383155139,52.48982032851646],[6.40501935889882,52.4898139596947],[6.405012055690043,52.489601133494695],[6.405002310753418,52.4893168289937],[6.404988456003798,52.48917560320703],[6.404962145563587,52.48890785290566],[6.404768328485188,52.48891968190324],[6.404537341489394,52.488933770930906],[6.404480642494375,52.4884805090336],[6.404480379058974,52.48847865977316],[6.404478704535808,52.48846732234125],[6.404565304952404,52.48846266050776],[6.40485388461703,52.48844712435982],[6.404840012688166,52.488346029947465],[6.404840113663456,52.488345939201125],[6.40484527833046,52.48834131999679],[6.408013098216783,52.485508051321524],[6.409996233033792,52.48373550789051],[6.410646429644963,52.48156841231243],[6.411254691955087,52.47954082609793],[6.411144761480295,52.47947809577813],[6.410947913141779,52.47938010113574],[6.410878413825453,52.47935327895423],[6.410877893917829,52.47935307672007],[6.411287732907328,52.47942617747034],[6.411436628396543,52.47839831857408],[6.411447508493743,52.47828406806385],[6.411450497010689,52.47823517452152],[6.411451767071229,52.47821439229465],[6.411449270791521,52.47802474922035],[6.411443774461993,52.47760593820093],[6.411426542136762,52.477362880940404],[6.411402666718963,52.477026253112335],[6.411352445653586,52.47674816700163],[6.411352413512815,52.47674805043538],[6.411305354953602,52.47653717617136],[6.411243679047375,52.47634467379491],[6.411223685551906,52.4762936688614],[6.41118075728961,52.47618414346176],[6.411101467820001,52.475951814543],[6.411052940611834,52.47585854281514],[6.411052834681588,52.47585841789813],[6.410939734967154,52.47570865702373],[6.410939659303179,52.47570856779724],[6.410781270516595,52.475538543482216],[6.410580554907608,52.47536681715281],[6.410541796245998,52.47533364451237],[6.409494622673379,52.47455484637722],[6.409494547637846,52.47455478410838],[6.409304404277641,52.47441337085692],[6.408615893176797,52.47433311987893],[6.408565078995655,52.47432720322243],[6.408446079224368,52.47431332643969],[6.408011199281063,52.47426264109524],[6.407488448465943,52.47415521433383],[6.406607126726712,52.47397410311388],[6.406476022501229,52.473905025323845],[6.406385833710157,52.47385750832751],[6.406941167199117,52.472364948803346],[6.406941209272194,52.47236485856139],[6.399248772613674,52.45979712695072],[6.39924766588185,52.459796345456965],[6.399244480350253,52.4597940986938],[6.399227939252565,52.45978242071472],[6.398941655802682,52.45956867648374],[6.398437599624336,52.459204640969965],[6.39806474800972,52.458960669609816],[6.397884315738968,52.45886555148091],[6.397757023176879,52.458798444980474],[6.397521009608179,52.458676539617166],[6.398052236320098,52.45230752876162],[6.398559336838309,52.4462259696657],[6.3985045268059,52.44622137724902],[6.39849009829779,52.44622016118631],[6.39841228095382,52.446220007457896],[6.398034652430338,52.446219212196986],[6.398034343588793,52.446219214831935],[6.398581229521393,52.4461142322275],[6.39862088905367,52.44610662235236],[6.398747395162839,52.44608234422131],[6.398761366576403,52.446079654357725],[6.398894053223819,52.44605099106537],[6.39902719289257,52.446024777489455],[6.399417443861614,52.445947930899536],[6.399595611465865,52.445911552993735],[6.399959925093519,52.445837164254286],[6.399961740483312,52.44583678921473],[6.399966308576611,52.44583586035066],[6.400185222621959,52.44578993847721],[6.40052309690018,52.44572241620584],[6.400723214003865,52.44568111216346],[6.401155011399843,52.445591995238985],[6.401543225082163,52.445511941311445],[6.40164614537392,52.445490720185276],[6.401773849865224,52.44546432533628],[6.401904321151751,52.44543735838193],[6.401940041877089,52.44542994290604],[6.40210267356852,52.44539618394997],[6.402421816757023,52.44532993119208],[6.402549312776515,52.445303465382864],[6.403230616294752,52.445164385932145],[6.403245635681384,52.4451612371465],[6.403282276265513,52.44515354373294],[6.40334267565819,52.44514087388772],[6.403383473823421,52.44513231788436],[6.403446815510264,52.44511902953862],[6.403831373299996,52.44504154303277],[6.403900129752784,52.445025143055645],[6.403956202904017,52.44501177300005],[6.404217112237029,52.44495726814184],[6.40442767660021,52.44491386378043],[6.404437924711281,52.44491176246899],[6.404454834836323,52.44490832765375],[6.404536162854225,52.4448917384718],[6.404620456148542,52.444878089825885],[6.404470152361669,52.44475503977689],[6.404287528582739,52.44462409686185],[6.404287423986584,52.44462402585538],[6.403875054732572,52.44432833504257],[6.403806589303376,52.44427926356465],[6.403765851199,52.44425006939734],[6.40369684771565,52.44420061598721],[6.403615745488779,52.44414248500905],[6.40348440908046,52.44404834733919],[6.403213228478187,52.44385396973739],[6.402329313270994,52.44322309851595],[6.402298188774314,52.443200616442084],[6.402270773801135,52.443180825956766],[6.402048163376687,52.44302007629814],[6.401990536742508,52.44297846089832],[6.401990447271838,52.442978407736334],[6.401769857526521,52.442819096316114],[6.401325499128219,52.44250082303726],[6.401229957735047,52.44243362825308],[6.401011488824033,52.44227997773038],[6.400990246763956,52.442264430416],[6.400596422439985,52.44197634427945],[6.400351288395703,52.44180069319068],[6.399698439700399,52.44133289182372],[6.399526729800361,52.4412097308913],[6.399049809777286,52.440867594482114],[6.398976285417639,52.44081486037276],[6.398764727988303,52.44066174892241],[6.398364603048212,52.44037214532003],[6.398126175963496,52.44019958723443],[6.398048221557196,52.44014340299407],[6.397314584524351,52.43961480865492],[6.397290898417804,52.43959774456643],[6.397273821490674,52.43958543272973],[6.397025385858337,52.4394063695441],[6.396912772426945,52.43932519660848],[6.396877335759663,52.43929976584536],[6.396800033425756,52.43924430326663],[6.39676995006018,52.43922272766377],[6.396761890893607,52.43921694512218],[6.396589673713923,52.439093388825064],[6.396584066703685,52.43908936501209],[6.396567619438541,52.439077560028544],[6.39655008072319,52.439064973393585],[6.396513224189547,52.43903852998222],[6.396250146201552,52.438849783973005],[6.396228316832254,52.43883413295937],[6.396040976538106,52.438695424995366],[6.395889914349603,52.43859131743962],[6.395890030549262,52.43859125353386],[6.395905567841029,52.43858315782639],[6.39576812179605,52.43848471349512],[6.395732388485308,52.43845911414554],[6.395616682054617,52.43837624061615],[6.395593869521171,52.43835937548086],[6.395328602237149,52.43816326689175],[6.395328527283551,52.438163204613275],[6.394985292750286,52.437924103768594],[6.394721398789048,52.43774027780435],[6.394461773722421,52.43753327073017],[6.394599682627993,52.43749081593704],[6.394633876175419,52.43748437732859],[6.396284679731966,52.43717381129121],[6.396613921317575,52.43713277113579],[6.396799417467028,52.43710965501921],[6.39692010582552,52.43708736964648],[6.396942263128701,52.43708326199514],[6.397147231886235,52.4370453917383],[6.399690639111276,52.43657540142687],[6.40035293396565,52.43645301104549],[6.400512810279332,52.436417839492826],[6.400595864846551,52.436399557364766],[6.400637363006094,52.43639043000996],[6.4007174619853,52.4363728112332],[6.400802711402208,52.43635405178949],[6.401394782122058,52.43624405770861],[6.401890639411439,52.43615192617756],[6.401947691943515,52.43614132590593],[6.402038645084128,52.436124431165034],[6.402141928301607,52.43610524661488],[6.402131073940491,52.436074420674515],[6.402691889847414,52.43597416125764],[6.402812573901844,52.43595258892296],[6.402996763193619,52.4359196592867],[6.403839115132496,52.4357690555539],[6.404678458924186,52.43561898395023],[6.404791157492958,52.43561283878215],[6.404892076679507,52.435607342975764],[6.406543493765305,52.43530265874966],[6.408443476687387,52.434952081737634],[6.408644085359495,52.43491474136439],[6.408892795921128,52.434868456105306],[6.409147386677205,52.434821463462775],[6.409198345682225,52.43481205373001],[6.410450400747698,52.434574835449126],[6.410497078432539,52.434566001420606],[6.410502656725624,52.43456493758012],[6.410558410651627,52.434554317387466],[6.410885964631119,52.43449193221292],[6.411027267097375,52.434465023106505],[6.411059228756771,52.43445893157403],[6.41117148297486,52.43443755834996],[6.411178452176718,52.43443623078803],[6.411185143273078,52.434434959558175],[6.411281072201905,52.43441668442595],[6.411315698672264,52.43441009341811],[6.411329358953434,52.43440749460972],[6.411494159790758,52.43437610346048],[6.411632972447855,52.43434966455952],[6.41202044981173,52.434275882415676],[6.412064278088669,52.43426913068652],[6.412325490012658,52.43422893178707],[6.412357557594849,52.43420965347318],[6.412382112207479,52.434194889270145],[6.412388624612008,52.4341909860111],[6.413199990591401,52.43404941872365],[6.413264111787053,52.434040747094855],[6.413480575900298,52.434011485230435],[6.413605208685987,52.43400400586979],[6.413637001930378,52.43400209455406],[6.413804383121341,52.433992051467925],[6.414003306009088,52.433988907230905],[6.414173519454535,52.43398621828713],[6.414192467997933,52.433985919188984],[6.414223794057643,52.43398542289473],[6.414541024109701,52.433980416082846],[6.415058426322786,52.433972242585604],[6.415071935723315,52.433972026494494],[6.415078300908788,52.43397192632225],[6.41563034407732,52.43396542711304],[6.415645723418151,52.43396531156695],[6.416016442766695,52.43396243395336],[6.416086968844222,52.43396172253618],[6.416179430362438,52.433960784584656],[6.41626057583273,52.43398545304943],[6.416402755905512,52.433982573001444],[6.41640635547648,52.43399570927076],[6.417059695286504,52.43399003098855],[6.417079034023808,52.43399006958346],[6.417150212832865,52.433990232690995],[6.41912159795455,52.43399459319565],[6.419398943232197,52.433995133906805],[6.419687921202649,52.433995698410854],[6.419810674401969,52.43399594067823],[6.419869499471988,52.4339960570433],[6.419896103181765,52.433996112737624],[6.419897603266141,52.43399611763625],[6.41989889730444,52.43399611534308],[6.420013738619624,52.43399634548187],[6.420028797854411,52.43399637596724],[6.420101961522645,52.43399651999556],[6.420164183732099,52.4339966425449],[6.420219596751465,52.43399674354916],[6.420165228414199,52.43582234767901],[6.420159417497895,52.43601755664976],[6.420150323290278,52.43632348250587],[6.420157279815299,52.4363253902375],[6.420158789418629,52.436325799514094],[6.42071203830418,52.43647734873455],[6.42148075260848,52.436687917653636],[6.421538447844387,52.43670371829787],[6.421555513773429,52.43670839589006],[6.421560190956497,52.436709676299806],[6.42156085702503,52.436709859233794],[6.421581297622791,52.43671546009337],[6.42165881179893,52.436736687201915],[6.42169152272075,52.43674565029418],[6.421705495060078,52.43674947404768],[6.421708336831565,52.4367502491708],[6.421710779087344,52.436750919925686],[6.421752459395612,52.43676233032518],[6.422472248068313,52.436959406564775],[6.422521521954645,52.4369728984863],[6.42256940448237,52.43698600707215],[6.422577397194434,52.436988193225176],[6.422583672936955,52.43698990902756],[6.423168879612753,52.437150173600116],[6.423335397067309,52.43719576991545],[6.42334660179993,52.437198835719954],[6.423362025061846,52.43720306004093],[6.423696171880668,52.43729458371891],[6.424214972037846,52.43743669299142],[6.42423806275244,52.4374430162084],[6.42430816487412,52.43746225719717],[6.424356374887558,52.437475488032206],[6.424809660372846,52.437600030323],[6.42535266511669,52.43774922995849],[6.425479520771809,52.43778408853439],[6.42551030950608,52.437792546117635],[6.42555652214259,52.437805236712755],[6.425593690862917,52.43781545394692],[6.425666547846269,52.43783546993001],[6.425689299098833,52.437841723937204],[6.425787981887711,52.43781476639816],[6.425914893158682,52.437776793537346],[6.426008915268048,52.43774865429749],[6.426073843633787,52.43773665207706],[6.426142198519154,52.43772401756802],[6.42617611798128,52.43772049336303],[6.426205680324079,52.43771742980313],[6.426226042011626,52.43771586705124],[6.426264812730212,52.43771288449721],[6.426302116291415,52.43771255729791],[6.426317858931336,52.43771345284188],[6.426332865115216,52.43771430091514],[6.4263882260714,52.43772200344354],[6.426409930723821,52.4377250217933],[6.426430925797018,52.43772600606743],[6.426458398991117,52.43772729303081],[6.426641532001217,52.43772368196739],[6.427065779449042,52.43773428575688],[6.427266767882559,52.437743244129855],[6.427405178981168,52.437745956656485],[6.42757731384831,52.4377493345839],[6.427608271382961,52.43774994353818],[6.428755186176342,52.43778746621388],[6.429506035518195,52.43781202399967],[6.430100812927723,52.43782645533665],[6.430561315609585,52.43783646678844],[6.430568911687226,52.43783677738682],[6.43059309826828,52.43783775977958],[6.430706567867883,52.437842377887094],[6.430731770291047,52.43784340523204],[6.431343545402828,52.43786014334328],[6.431417715942344,52.43786216803679],[6.431431843503308,52.43786254684077],[6.431455939490183,52.43786405116575],[6.431542129943574,52.437869376314815],[6.431698180629418,52.43785112987024],[6.431790293028041,52.43785313095815],[6.432153033478865,52.43781617256445],[6.432216672174294,52.43780753989243],[6.432286072039129,52.43779811933763],[6.432804676755928,52.43773447333404],[6.432878165691163,52.43772819812603],[6.432959429988586,52.43770492964592],[6.433111323870663,52.43766144349433],[6.433243578549812,52.43760964579701],[6.433289839462897,52.437586344615305],[6.433311814657587,52.43757528395157],[6.433361959614637,52.43755515719381],[6.433430047830336,52.437515170034864],[6.433660906760682,52.437366202489955],[6.433674224461912,52.437359083116505],[6.433751806263878,52.43731758279553],[6.434113464018615,52.43710209728267],[6.434417037615856,52.43692122497155],[6.434609610465316,52.43680648809681],[6.435028860654596,52.43655478974094],[6.435205213127981,52.43644891380223],[6.435246457331509,52.436425009075016],[6.435377733651303,52.436348931743055],[6.435673002908067,52.436173037104744],[6.435858623300331,52.43606244926348],[6.43586987647178,52.43605574338917],[6.435890584736034,52.436043408151235],[6.436561092612536,52.43564108604781],[6.436871388005033,52.43545489866943],[6.437086773821693,52.43533032025503],[6.437164516724271,52.4352853557904],[6.437283420496339,52.4352533557757],[6.437384650299518,52.435252458384234],[6.43748169333324,52.43526847769434],[6.437524502099024,52.43528394417334],[6.437565249265089,52.43529867391578],[6.437598996122194,52.43533817402724],[6.437614727287531,52.43535657700375],[6.437675796483481,52.435270252964145],[6.437762177953559,52.435148147451365],[6.43777273485283,52.43513319648259],[6.437772820296771,52.435133078879424],[6.437839143504814,52.43505190327888],[6.437858985301104,52.43502913118983],[6.437978379130175,52.43489210006094],[6.43802694865298,52.434839906696006],[6.438052301734913,52.43481266353261],[6.438093018472321,52.434771010948936],[6.438128035145886,52.434735179286406],[6.438216929901286,52.43464902153535],[6.438508018952815,52.434343925652314],[6.438649667054516,52.43419548811994],[6.438836687445478,52.43397244175581],[6.438954607522628,52.433831809438395],[6.438977216079136,52.4338048420993],[6.43903210005715,52.433739379703105],[6.43916793302022,52.433754136393354],[6.439312995591406,52.43378226615908],[6.439390232433809,52.43379724641297],[6.439390748088154,52.43379728677323],[6.439512445066874,52.433643659472814],[6.439633624373127,52.43347633874995],[6.439775889257234,52.43327991576551],[6.439802869982318,52.433284089181946],[6.439823666300403,52.43328730189121],[6.439982376561058,52.433068271202494],[6.440056441779835,52.43296605619854],[6.440217133137581,52.43272531923233],[6.440332509647771,52.432524469708945],[6.440481526749242,52.43229628467658],[6.440722357728513,52.43188638800656],[6.440781922129132,52.43178301616897],[6.440862188129629,52.43164371440348],[6.440862498730728,52.431643172353446],[6.44086398143671,52.431640597550434],[6.440951290222686,52.4314450842845],[6.44095133218801,52.43144499402998],[6.441036394109732,52.431268780194955],[6.441036260939293,52.43126874542725],[6.440990767701174,52.431255910657605],[6.441032081901818,52.431192051022165],[6.441140875553488,52.43102383211542],[6.441183556841677,52.430982817049646],[6.441189748664913,52.430984101184656],[6.441235988559003,52.43099372047391],[6.441236059712341,52.430993620971435],[6.441734365534244,52.43023498342568],[6.44175379721661,52.43013037742286],[6.441825333759071,52.42999215031819],[6.441941445209325,52.42977523070107],[6.441982940741191,52.429783876282706],[6.44231814790974,52.42919154841975],[6.442318218200845,52.4291914129717],[6.442368574712419,52.42910301557946],[6.442372244351964,52.42909781471663],[6.44237732203037,52.42909061493456],[6.442468066647654,52.42896198636853],[6.442625944075091,52.42871600378773],[6.442798150569472,52.428500003501775],[6.442917681065715,52.42835466075397],[6.443020610647296,52.42823583702594],[6.44302407344051,52.428231833405995],[6.443080748940613,52.42817235707784],[6.443152285734511,52.428097306627166],[6.443463638871826,52.42777704278584],[6.443760299523293,52.42746728144151],[6.443835935020366,52.4273884818928],[6.443835788446302,52.427388501176665],[6.443399869232307,52.42743260206513],[6.443301124041401,52.42744259652082],[6.443245074783959,52.42744815658166],[6.443067143236315,52.4274658226345],[6.441172109031239,52.42766309229486],[6.44103696978812,52.42767856788375],[6.440941589198971,52.42761933083891],[6.440714265114353,52.42747816314352],[6.440414187478737,52.42740609554061],[6.440344935506412,52.42738946309452],[6.440270999424305,52.427371856595535],[6.439964711742192,52.427298890332196],[6.439959536073172,52.427297651032546],[6.439955484252918,52.42729668037566],[6.43994531017469,52.427294236152385],[6.439730784054653,52.42724277118769],[6.439504206358047,52.427188410874145],[6.439504073201094,52.427188376104674],[6.439570232266723,52.427000745393904],[6.439572482682627,52.426994595496694],[6.439575258374188,52.4269870387846],[6.439844864635809,52.4262522274682],[6.440010654985232,52.426278751931974],[6.440014032461143,52.426043062162584],[6.440305862498006,52.42555198988471],[6.44030590467295,52.425551908616534],[6.440335619407689,52.425446869772195],[6.440405163798261,52.425200947322445],[6.438559940332255,52.42533694616764],[6.438487890940569,52.425342268518165],[6.438405743747601,52.42534833658003],[6.43841280946273,52.42526882780282],[6.438570025023102,52.423504653273696],[6.439952509219483,52.42348167701211],[6.439953509180947,52.42348168610006],[6.43996190489162,52.423481719330525],[6.439924985707195,52.423010556939644],[6.43992260250007,52.422956092050875],[6.439918129527704,52.42285393671685],[6.439907810263861,52.422677807064495],[6.439900608223154,52.422554859459886],[6.439869193390664,52.42202700480954],[6.439862356186889,52.42191444423035],[6.439862339137814,52.421914345512405],[6.439860838266697,52.421889560583644],[6.439836570165643,52.421492195031306],[6.439807868794798,52.42101903592511],[6.439807594082509,52.42101428364167],[6.439807398720602,52.42101101369572],[6.439799069238249,52.42086906615352],[6.439786290945086,52.42065006688075],[6.440746258265277,52.42079682819153],[6.441412620785936,52.42089124211525],[6.441743133099217,52.42093806697571],[6.442081095459258,52.42098594807805],[6.442624527294878,52.42106293452288],[6.442949542720258,52.421122037878355],[6.442914334046529,52.42106413553925],[6.442888765062269,52.42102207425113],[6.442887006408616,52.42101922271012],[6.442835623631283,52.4209427062667],[6.442791551144342,52.420860174494216],[6.442776749582213,52.42082452462579],[6.442765644484015,52.420797776023],[6.442750765402291,52.42076195606734],[6.442755308319496,52.42076134932467],[6.442760657275996,52.42076063652821],[6.442760625737076,52.42076054692787],[6.442743524153745,52.42069933730119],[6.442715985564221,52.42058636809642],[6.442698337673445,52.420513955116746],[6.442770291962682,52.42051300822096],[6.442714539909097,52.42032041284531],[6.442698614826238,52.420265376564956],[6.442653744645582,52.420100017115374],[6.442639736437197,52.420048298343666],[6.442596986030534,52.41983000677399],[6.442594877981161,52.41981681298839],[6.442553879383761,52.419560369087854],[6.442514980548392,52.41928530099194],[6.442388835401017,52.418400301708616],[6.442388022249619,52.41839455654015],[6.442376808697993,52.41829722494533],[6.442347442987796,52.41804210637568],[6.442282317662944,52.4176015573253],[6.442281247250705,52.41759426848593],[6.442215462920464,52.417148215502394],[6.442194223245835,52.41700578976573],[6.442148579520897,52.416699781392325],[6.442092112777118,52.41656201070773],[6.44209206633177,52.41656191225182],[6.442090613893839,52.41655832992997],[6.442068315599326,52.41650347613989],[6.442061507867905,52.416483043799154],[6.442037378284773,52.41641055358935],[6.442037346750477,52.41641046398872],[6.443553937428007,52.416617397951846],[6.443553880999494,52.41661749732484],[6.443550293607626,52.41662363227916],[6.44354875426853,52.41662627055019],[6.44354871189353,52.41662634283341],[6.444470527825441,52.416760614791926],[6.444961522992386,52.41683212623459],[6.445121793839457,52.41685662541999],[6.445401335288119,52.416899365244305],[6.446228314043075,52.41691607901295],[6.446689469388652,52.41692540046343],[6.447497875074418,52.41693379570558],[6.448639539273101,52.41694565241369],[6.448882863328619,52.416947291225995],[6.44941757351604,52.41695089127198],[6.449488268551645,52.41694916958238],[6.449942666754046,52.41693414512264],[6.449933880937259,52.416928219875984],[6.449890119377141,52.416898834810155],[6.449789021247796,52.41689305478414],[6.449721661700696,52.41688920103387],[6.449576429770417,52.41671353613069],[6.449512072460834,52.41663568278516],[6.449475071086078,52.41659149634591],[6.4493272171746,52.416414910901324],[6.449279622056957,52.41636049202006],[6.449247655545526,52.4163239542191],[6.449020319728056,52.4160749445272],[6.448977220471239,52.41602775663458],[6.448846354537583,52.41585755267019],[6.448704364615079,52.41569358718686],[6.448587713844301,52.415558893568516],[6.448457686436875,52.41541925937958],[6.448410051422491,52.41529807645873],[6.448388476245499,52.415232602302474],[6.448367028893315,52.41515896574708],[6.448339093604863,52.4150630157934],[6.448326327084266,52.414963954830625],[6.448301171966353,52.414768714709126],[6.448288164394177,52.41466756165573],[6.448425184653482,52.41461211724376],[6.448670476932393,52.41454187842414],[6.448650067516825,52.41449560155691],[6.448641253838653,52.41447560999247],[6.447695783886665,52.41233106536315],[6.447710398297572,52.41232939750452],[6.447806469785502,52.41231845234995],[6.447716920447152,52.411792233326],[6.447593640453691,52.4110677317039],[6.447549971589666,52.41081111511002],[6.447674609511899,52.4107957437233],[6.448139354012297,52.41073850556926],[6.448734848618809,52.41066527203399],[6.449313341919926,52.41059412943108],[6.450043137600945,52.410504188984554],[6.450055466928724,52.410502873904136],[6.450696610864828,52.41043348110393],[6.452248471978409,52.41025465418804],[6.454264304863832,52.40998826135939],[6.454394012613069,52.40997609090264],[6.454382114640137,52.40989283278862],[6.453855554155624,52.4072139765671],[6.45383087240918,52.40711365710688],[6.453708039114515,52.407126556046684],[6.453698682591166,52.40712738634128],[6.453689740386307,52.40709415668306],[6.453666358856673,52.40700753245504],[6.453430124444937,52.40700510293798],[6.453433057205917,52.40690654808197],[6.453349911187328,52.40690137356173],[6.452958867238326,52.406873480255776],[6.452834829071218,52.40686071889309],[6.452602406512328,52.406840762424075],[6.452405019639755,52.40682380695529],[6.452246345858255,52.4068154911254],[6.452090365141554,52.40680732163851],[6.452031268956542,52.40680422188428],[6.451896373830115,52.40679893647391],[6.45177782477415,52.406791957977994],[6.451505327847718,52.40676598704053],[6.451092640772086,52.40673208028271],[6.451074896334066,52.40673062184555],[6.451038833122636,52.40672765619446],[6.450421251425448,52.406682303312735],[6.450158646927144,52.406662460274894],[6.449795630110041,52.40663503298001],[6.449748751455409,52.40663149887138],[6.449067467788735,52.40658818463905],[6.447977837813008,52.40651890948191],[6.447937787633007,52.40651636509887],[6.447934976033922,52.406516174570434],[6.447676584043744,52.40649908362567],[6.44728917306778,52.40647345805105],[6.446367119260839,52.40640545400067],[6.445101506377,52.40631210123861],[6.44335048620767,52.406195121507984],[6.443342802600222,52.40619461480136],[6.443228570610541,52.4061867353812],[6.443099087931809,52.40617779642682],[6.442827443420287,52.40615945589205],[6.442762454188232,52.40615506482305],[6.442740182578244,52.40615355561743],[6.442684172747088,52.406149776545696],[6.442657765481068,52.40614801656921],[6.441769605440754,52.40608018699553],[6.441737008043651,52.40607768199944],[6.441619796834732,52.406067481652535],[6.441616910540372,52.406067237710616],[6.441586499459401,52.40606458736923],[6.441503544804221,52.4060574434244],[6.441449262728478,52.40605276754507],[6.441003278606392,52.406020290639184],[6.440757277128476,52.40600240024047],[6.440761893431535,52.406061159754564],[6.440763068120462,52.40607594382533],[6.440764766052574,52.40609110074322],[6.440764767762747,52.40609117263332],[6.440670177625135,52.40608419455457],[6.440563774526969,52.40608660626924],[6.440481137411958,52.40608848290353],[6.440480849371803,52.406086876583956],[6.440477751939104,52.40607033894616],[6.440477719560619,52.40607021339986],[6.440475463648863,52.40605816235949],[6.440435222477736,52.40584423343278],[6.440435151362593,52.4058443329352],[6.440401101017124,52.405889486770775],[6.440325590245006,52.40590426983487],[6.440085027815462,52.40593585446596],[6.440084506099645,52.40593863644865],[6.440084085266097,52.40594071645729],[6.438194220276424,52.40578744153663],[6.438054419617348,52.4057789751558],[6.437730171304736,52.40576390310641],[6.437639906644067,52.405759553721104],[6.437557175126744,52.4057555688729],[6.437071226373689,52.40576041800248],[6.435239111059141,52.40577872521149],[6.43509069424349,52.40577999387274],[6.434921179743194,52.40578090075918],[6.434495013159734,52.4057831879678],[6.433499152457038,52.405784487158954],[6.433078670769345,52.40578604492213],[6.432348784505285,52.4057867913697],[6.432269175180205,52.40578680196456],[6.431889821252733,52.40578681504427],[6.431537872669079,52.405782953978225],[6.431191459505246,52.40577326367565],[6.431021975992591,52.40576924818594],[6.430849632617472,52.405762363475674],[6.430707488276073,52.405756650475816],[6.430586504859725,52.40575273721752],[6.430572856248824,52.40575229123589],[6.430560149060373,52.40575188189774],[6.430487126493157,52.40574951430917],[6.430196152589459,52.40573689680543],[6.429799669709031,52.40571969795108],[6.429654043236091,52.405713385179325],[6.429193184594681,52.40569339847729],[6.428947424377533,52.40568296859321],[6.428780033658395,52.405676055276274],[6.4282389799249,52.40566987502871],[6.427147406240847,52.405657410499934],[6.426741384004385,52.405652580991635],[6.42659771790016,52.4056508671632],[6.425289208319702,52.40563623601348],[6.425281637759438,52.40563614958865],[6.425241153618393,52.4056356865973],[6.425172745887865,52.40563456058154],[6.425132771587338,52.40563390433261],[6.42116749859985,52.405568685523264],[6.421372528462796,52.405083602391876],[6.421387132712752,52.405048834522255],[6.421395193419498,52.40502963734358],[6.421851830195819,52.403973549452495],[6.422115559891755,52.40336357381161],[6.421979251054528,52.40334873033656],[6.4219767317229,52.403348455745956],[6.422023404747982,52.40326167171788],[6.422080030315255,52.40326751343473],[6.422160932374032,52.40327585734031],[6.422278583078024,52.40299914434504],[6.422416987878167,52.40267364182868],[6.422563598534276,52.40232773615984],[6.422574905677426,52.402300987411806],[6.422668585184302,52.40207965284293],[6.422766059309976,52.40184907213799],[6.423055027261203,52.4011631929742],[6.423337443526071,52.40049285688408],[6.423545728853898,52.39999629878043],[6.423545784885964,52.39999618144387],[6.423682709297231,52.399669117164],[6.423817724351512,52.39934594330574],[6.423818114252044,52.39934502309973],[6.423845386429813,52.39927971902723],[6.424156457266085,52.39853450996469],[6.424422773110058,52.39789649834807],[6.42446069998109,52.39780561931667],[6.424346600830095,52.39780296075689],[6.424131825153283,52.39779795717547],[6.423031869428078,52.39769388601959],[6.423110581837717,52.39754429943664],[6.423205595320099,52.39736357896532],[6.423205652190412,52.39736349757421],[6.423299071515389,52.39718564021411],[6.423489076784575,52.39682343503209],[6.423738740999767,52.396346647370045],[6.423904872773837,52.3960288092922],[6.42405583151658,52.39573952441623],[6.424188015857808,52.39548623060379],[6.425098864184426,52.39373066092396],[6.425164792083057,52.39360289128712],[6.425211479706403,52.39351241146185],[6.425211746588895,52.39351188780781],[6.425304156295774,52.393334891355586],[6.42539419581179,52.39328813623589],[6.42611257401258,52.39291507149732],[6.426453186636242,52.39273818755709],[6.427189844873171,52.39235538324078],[6.427234491897624,52.39233217001766],[6.427674047953375,52.392103513117455],[6.427947834714971,52.391962454756985],[6.428021140409061,52.391924689077065],[6.428040867480727,52.39191452077447],[6.428069289361049,52.3918998628222],[6.428397952576606,52.391730295729644],[6.42847061690932,52.39169277808686],[6.428518299970856,52.39166815348311],[6.428746726041433,52.39136386244441],[6.428841642595891,52.391237417468446],[6.429142103284489,52.39083598563214],[6.429142145658664,52.390835913353676],[6.429159436621503,52.39081276939135],[6.429348025722404,52.39056030304592],[6.429372750546824,52.39052717963936],[6.429422584827439,52.39046042608476],[6.429683766716499,52.390110229658255],[6.43020175355192,52.38941414287908],[6.430381351839876,52.38917278246509],[6.430697880211127,52.38874741300851],[6.431338707523993,52.3878861944674],[6.431338778631067,52.387886094970085],[6.431859289245144,52.387174626210935],[6.431859360561763,52.38717453569964],[6.431868641180152,52.387161924255594],[6.432171455027533,52.38675046842135],[6.432241456938628,52.38665534856121],[6.432258921818128,52.386631618338484],[6.432887441083964,52.38677468728812],[6.432916536051085,52.38677879851501],[6.433062729301548,52.386804893909954],[6.433333364517293,52.38423005382549],[6.433455625076173,52.38306667320475],[6.433459139212395,52.383033224013104],[6.434388669955167,52.383160662628725],[6.437772483513372,52.38362456015701],[6.43777251075477,52.38362447003318],[6.437808070101427,52.38352894235315],[6.437868277723901,52.383367141545996],[6.438002330469619,52.38300669293389],[6.438176356264857,52.38253878572288],[6.438449709876497,52.381803720337125],[6.438606030128073,52.38138361608055],[6.438734305166004,52.381039540335834],[6.439004077290154,52.38031586625198],[6.439239952263463,52.37968359723967],[6.439443686482141,52.37913740590427],[6.439515558897736,52.378915602865995],[6.438699153441689,52.37668514366165],[6.437907893160138,52.37452317902934],[6.437957618618191,52.37437320049787],[6.437957646066668,52.37437311936019],[6.438197202226378,52.373645310021324],[6.438227938480514,52.37355112809341],[6.438237768684372,52.373521011134365],[6.438381284604034,52.37306121117737],[6.438746351889844,52.37225584962952],[6.438746379335594,52.3722557684916],[6.439046923511969,52.37159217520678],[6.439307304893735,52.37103909783616],[6.439348506326708,52.37093374001178],[6.439380557119287,52.37085181495232],[6.441315601420315,52.37087155361376],[6.441289162287889,52.37076812784042],[6.441265946150057,52.370677346759344],[6.44102434897979,52.36973250725264],[6.440775766509917,52.3686471353543],[6.441269250619989,52.367996144850494],[6.441382108671496,52.36784725601886],[6.441382165470909,52.36784717461869],[6.441111229732864,52.36778757813778],[6.441369032440602,52.36775861366252],[6.441185126193704,52.366515443722534],[6.441176791899499,52.36647491807815],[6.441167046830709,52.36642754697178],[6.441117074704194,52.36618455457129],[6.441094417013626,52.366074524593685],[6.44109139625316,52.366059864713115],[6.441091394544465,52.36605979282239],[6.441065348856607,52.36593323667307],[6.441988408199383,52.365859541700566],[6.441841972835553,52.36518165040851],[6.441767979608374,52.36483008759445],[6.441396194651175,52.36401899369801],[6.440941995908587,52.36300577684617],[6.44094196420171,52.363005678257814],[6.440601201917793,52.36226746081389],[6.440601170639142,52.36226738019817],[6.440564389513964,52.36218504274498],[6.440346468032798,52.3616972939238],[6.440328760383832,52.361657660563495],[6.439872219670912,52.361159127369454],[6.439872114149272,52.36115901146104],[6.439573983714342,52.360835704710524],[6.439346470701825,52.36058958952236],[6.43925679034185,52.36049274763247],[6.438827248300607,52.36001053571224],[6.438545163010345,52.35971253849727],[6.43850623774663,52.359671412595894],[6.437679179468347,52.35877928656084],[6.437244390166287,52.35830095351184],[6.436279401554898,52.357239301045354],[6.429291767765148,52.349549921667325],[6.429276912626774,52.34943301645495],[6.429271061993531,52.34938702116047],[6.429257768701486,52.34926849328664],[6.429257766168464,52.349268385449854],[6.429250453853941,52.34920327602079],[6.429246399725876,52.349135657131356],[6.429245813119995,52.34912755489185],[6.429232575455923,52.348942028058936],[6.42922506289655,52.34868405038185],[6.429219256425004,52.34848495771158],[6.429184930744448,52.34848952050201],[6.429131571085147,52.34849668675043],[6.42909579791394,52.34850148697061],[6.429069754607058,52.34850498807138],[6.428823572667165,52.34853811158],[6.428461292476554,52.34858684448937],[6.422608923056858,52.34937951911854],[6.421185937943651,52.349559092821934],[6.421155275838728,52.349477199273316],[6.420747353106053,52.348387766306836],[6.418594258542353,52.342636659728434],[6.418594226482186,52.34263654316073],[6.418591739216095,52.342629922528886],[6.417550777297323,52.33976831672749],[6.417538503120929,52.33973517608359],[6.417509914240829,52.33965982488275],[6.417421825240678,52.33942852434439],[6.417249743743616,52.33897665531502],[6.416979017974218,52.33826574039246],[6.41661377478294,52.33732335486854],[6.416449739217475,52.336900087114124],[6.416449441930083,52.336899289745915],[6.416449082834704,52.33689835809166],[6.416313150945533,52.33653841953874],[6.416104558580312,52.33598602709009],[6.416058489283512,52.335865320007336],[6.416009966632943,52.335738144720494],[6.41600940455472,52.335736684522956],[6.415871862288968,52.33537595947739],[6.415555181514234,52.33454533057915],[6.415555087457845,52.33454507073728],[6.414972035314946,52.33301210296936],[6.414971910678395,52.33301178946315],[6.414933988887698,52.33291191781342],[6.414933769994388,52.33291133547826],[6.414933488262875,52.33291057392383],[6.414824652918967,52.332622331157346],[6.414824543577786,52.33262204448289],[6.414785246805266,52.3325178883376],[6.414766333493452,52.33246777230341],[6.414752469120056,52.33243104086954],[6.414752046011997,52.33242987607096],[6.414751827123491,52.33242929373543],[6.414702341634143,52.33229315594718],[6.414567242731656,52.33192106484909],[6.414477512698724,52.33167393888218],[6.414477465780772,52.331673813453996],[6.416257617779066,52.3314906698744],[6.416903109864018,52.33142425475628],[6.416909271806098,52.33142361686721],[6.417008658653073,52.33141229811171],[6.417334606382469,52.33137516013931],[6.417418097590229,52.33136294584531],[6.417985752898058,52.33133630181347],[6.418623960360841,52.33130259516541],[6.419337119870728,52.33126493225245],[6.419815130161974,52.33124019428943],[6.420293183912724,52.331215454011634],[6.422409301383301,52.33110592529404],[6.422341978279048,52.33081420675591],[6.422300117299009,52.330638528710665],[6.422261557868179,52.33047669965484],[6.422235637724651,52.33039822513306],[6.42222163561345,52.33035582412686],[6.422193637737021,52.33029520052727],[6.422160175784689,52.33025443490948],[6.42215298816168,52.33024568030869],[6.422144196260605,52.33023544769258],[6.422104956398436,52.33018975311634],[6.422052590154053,52.33012032748375],[6.422052499421363,52.3301202114301],[6.422046449475137,52.33010865151233],[6.422005914790835,52.33003132049837],[6.421976899566771,52.32995032032841],[6.421968739407892,52.3299275345318],[6.421927551225874,52.32979320553169],[6.421904672331602,52.32966074767279],[6.421867035996256,52.329442751613605],[6.421819585074355,52.329208383857484],[6.421806520607664,52.329143863420704],[6.421700833827148,52.32863341765714],[6.421621278483256,52.32837294103741],[6.421582386696607,52.328303684950384],[6.421532766231355,52.32821534169283],[6.421896092502589,52.325690005401185],[6.422162226062293,52.324839712291265],[6.423238358046304,52.321401155754465],[6.425515194510568,52.314124232870824],[6.425547344592029,52.3140139425629],[6.425520568341494,52.314014096824785],[6.425475931481531,52.31401435400036],[6.424962400869696,52.31329739772042],[6.424950785239398,52.31323461743717],[6.424932963128054,52.31313844611451],[6.424904870837634,52.31297681315943],[6.424890558558322,52.31291096455631],[6.424879789210276,52.312841714237216],[6.424862800732304,52.31275421829321],[6.424861386659109,52.31274704904135],[6.42485955605281,52.31273774422648],[6.424792955786598,52.31239921762236],[6.42476960776331,52.312280543078955],[6.424731653455535,52.31207775822343],[6.424716554631302,52.31199704982059],[6.424712874649959,52.31197763140075],[6.424709311582657,52.31195882316026],[6.424707739569058,52.31195054074068],[6.424635851173122,52.31157073214207],[6.424518662171977,52.31095162053603],[6.424480977965575,52.31075967310279],[6.424466214820401,52.310684507499545],[6.424461789262816,52.310662039582056],[6.424461757210929,52.31066192301515],[6.424401692057223,52.310356182068645],[6.424384567283567,52.310269046754314],[6.424384535022314,52.310268921200894],[6.424379275736932,52.31024214620088],[6.424366462964133,52.31017701240847],[6.424355180195468,52.31011962210996],[6.424324091545659,52.30995635239578],[6.424324074785703,52.30995626265958],[6.424305286999012,52.309857555975704],[6.424305270029291,52.30985745725308],[6.424299367435276,52.309826364510286],[6.424111566768823,52.308839251800435],[6.424089531843258,52.30872327103161],[6.424086838889711,52.30870904816369],[6.424082772575757,52.30867745393019],[6.424081376216688,52.30866663525165],[6.424081110171173,52.308665289337036],[6.424080174816257,52.308660398906355],[6.424078655415655,52.30865247554594],[6.424077771387064,52.30864789925628],[6.424076318183956,52.308640298894765],[6.424074449154763,52.308630589925066],[6.424068589920908,52.30860196857319],[6.423901375929224,52.30861831968808],[6.423138246730784,52.30869204416487],[6.422886679036162,52.308716350601635],[6.422196902399574,52.30878277498876],[6.421258031636453,52.3088759843974],[6.4197908380318,52.309021637903975],[6.419790835942583,52.309021548039084],[6.419899572462716,52.30465650916705],[6.419906928739611,52.30450053347061],[6.419954899108458,52.30348424513733],[6.419955489491389,52.30346486115309],[6.419955850127877,52.3034532540762],[6.419972637697231,52.30290516117631],[6.41998938366319,52.302333851732094],[6.420006208740172,52.30176028545949],[6.420012256696834,52.30150013739524],[6.420016680365181,52.30131013044239],[6.420027606429166,52.30085619631594],[6.420035955653774,52.30050900309552],[6.420039808479626,52.30042436228864],[6.420045141880064,52.30030691911764],[6.420045170395027,52.300306253732096],[6.420045232439032,52.30030513863714],[6.420045613151378,52.30023890031065],[6.420045796875492,52.3002064418473],[6.420062727359998,52.29965323297296],[6.420069969764973,52.29951953118809],[6.420076542652826,52.29939802342627],[6.420076963475816,52.299391530174105],[6.420077506260034,52.29938334604988],[6.420082975316343,52.299302016782],[6.4200375671988,52.29920791923398],[6.420037520509,52.299207802793624],[6.419981888026981,52.299083809488906],[6.419918572535071,52.29894274253453],[6.419887786793779,52.29887723489145],[6.419874185339648,52.298848384328686],[6.419807700644126,52.29870781239384],[6.419756110099669,52.2985987132878],[6.419702065138891,52.2984849257122],[6.419699705971743,52.29847993083048],[6.419540730750994,52.29814702533751],[6.419540669614799,52.29814691801144],[6.419457705066698,52.297965179428026],[6.419457658797318,52.29796508096045],[6.419398995354804,52.29782659768378],[6.419354109028611,52.297709395292564],[6.419299094410517,52.29769261808389],[6.419189788733086,52.29765928198126],[6.419157630354846,52.29764946885079],[6.419148106989628,52.2976465678689],[6.419146335152349,52.29764602606135],[6.417945542765541,52.297305428277085],[6.417926372763673,52.29729998672697],[6.417916278750022,52.29729712657611],[6.417817796819143,52.297269582186495],[6.417016959861743,52.29704556214218],[6.417000507019486,52.29704095964928],[6.416988289145693,52.29703754267059],[6.415920917571881,52.29674295072544],[6.415341981068656,52.29658360044397],[6.41531642710286,52.29657656914006],[6.415232650912765,52.29654642290623],[6.415566534671977,52.295700215260844],[6.415629923121959,52.29554121741558],[6.415903213777479,52.294855618007],[6.41590342176712,52.294855103861735],[6.41595401244122,52.29472786511116],[6.416043311857841,52.29449904479476],[6.416450076130945,52.29345649665268],[6.416447219916816,52.29345153299861],[6.416439872680701,52.29343874365879],[6.415650074351361,52.29206694271072],[6.415448076391458,52.29169433598834],[6.415448163076962,52.29169428130416],[6.415453550985774,52.29169083683688],[6.415471145017126,52.29167960114411],[6.415612398714747,52.29117308364553],[6.415639313227375,52.291076889931205],[6.415236234375964,52.29101897942363],[6.415232748804295,52.291018479430385],[6.415229292543306,52.29101797918207],[6.415225557000141,52.29101744540956],[6.414796639285223,52.29095583924423],[6.414568249487883,52.29092033443547],[6.414561570649245,52.29091929591534],[6.414561100849594,52.2909192640458],[6.414560381702604,52.29091922535541],[6.414556550860097,52.29091900698211],[6.414054695323701,52.29089036318697],[6.413819458138158,52.29087693785689],[6.413784410694698,52.290602199145766],[6.413760934909484,52.29041782752968],[6.413730031521104,52.29017524002925],[6.413696269529416,52.289910413223765],[6.413676992775584,52.28975930689857],[6.413428640113292,52.28972862027699],[6.41334005942341,52.2897176776068],[6.413144739932924,52.289591783836194],[6.41307529521039,52.28955321547491],[6.413017149990719,52.289520921728794],[6.412683375515733,52.28938168575297],[6.412377126262134,52.28927023572161],[6.411958190958142,52.2891441762675],[6.411847056795301,52.28909140756138],[6.41181980866804,52.28907362218002],[6.411769806969397,52.28904099656243],[6.411523414680206,52.288836301706624],[6.411329879945333,52.28866788364933],[6.411329966630049,52.28866782896812],[6.411535192363248,52.288521212283925],[6.411646442300214,52.28844173484072],[6.411708682428674,52.288391714496534],[6.411749223623941,52.28835733318913],[6.411783223578354,52.28832850045241],[6.411859567727975,52.28825703740766],[6.411859653789664,52.28825695576641],[6.411927373417232,52.28819859155603],[6.412006983797879,52.28812259693229],[6.412040251353621,52.288074094992226],[6.412143247608314,52.28793298367732],[6.412366618684159,52.28764873144175],[6.412429897572354,52.287568213232966],[6.412429954323322,52.287568131845575],[6.41259107589962,52.28737673841478],[6.412687492047557,52.28726503061735],[6.412691870789913,52.28725978837118],[6.412558989831028,52.2872140222056],[6.412362116431876,52.287423046272586],[6.412328087504796,52.28742770079915],[6.4123257061369,52.2874280360477],[6.412187488985611,52.28744832613358],[6.412275221709169,52.2873401005744],[6.412275103647303,52.28734006564507],[6.411909184812207,52.287229824101686],[6.411709178843038,52.28716956554252],[6.411691884063212,52.287168313289506],[6.411669245269431,52.28716667591949],[6.411638009128943,52.28717548561715],[6.411629577670558,52.28717786870833],[6.411627795834915,52.28718005034422],[6.411624944980375,52.287183544556235],[6.411583871540025,52.28717635038121],[6.411612325035854,52.28712948121608],[6.411636823580226,52.28707318160311],[6.411641309015353,52.28705157968975],[6.411646492187415,52.28702654716955],[6.41165721611068,52.28697546334573],[6.41166185236289,52.2869534107066],[6.411644858193725,52.28683547817547],[6.411632535507885,52.286756155016406],[6.411629663883778,52.28673776279601],[6.411608904152268,52.28666884037442],[6.411573525323383,52.28660790946732],[6.411573434293369,52.286607775431236],[6.411535328022692,52.286561411291856],[6.411502507024936,52.28653196233275],[6.4114633129768,52.28651407367864],[6.411441094072197,52.286503929655744],[6.411382761622551,52.28648427435043],[6.41131978997677,52.286473189156],[6.411232814560456,52.28645909409989],[6.411189680659631,52.28645531523881],[6.411164361174765,52.28645308979441],[6.411087843441396,52.286452674160394],[6.411060978748605,52.28645399449977],[6.41103045391353,52.28645549035594],[6.410982766988421,52.28646020889373],[6.410861615825269,52.286520725233686],[6.410789007065167,52.28656276343586],[6.410625974372896,52.28667137036391],[6.41052859486718,52.286745225919276],[6.410444073343079,52.28680780654363],[6.410051542684822,52.28663306466715],[6.409694155378701,52.28647396275661],[6.408803571325797,52.28599906290482],[6.408610213856446,52.28614030518817],[6.408584909832644,52.28615914772682],[6.408491632894829,52.286228579830336],[6.408413654261786,52.286202836964755],[6.408058779236529,52.28608570196261],[6.407993136642384,52.28608652964805],[6.407926248480903,52.28608736805533],[6.407782679749655,52.28604045747041],[6.407780621836554,52.28604019660405],[6.407613629210932,52.286019329574266],[6.407575719308709,52.28602025912233],[6.407570226035192,52.28602038744751],[6.407567493229688,52.28602009645122],[6.407544883389487,52.28602415665184],[6.407521440722922,52.28603216093071],[6.40748602965743,52.28604425935662],[6.40745358894757,52.286055505201006],[6.407400125749008,52.2860825003217],[6.407363569051677,52.28610152063219],[6.40731458373415,52.28613268360031],[6.407287801435098,52.28614972297427],[6.407261596602256,52.28616637984737],[6.407029786917722,52.28639759208898],[6.40702800124199,52.28639642103806],[6.407012540249588,52.28638628078932],[6.406941266420366,52.28633269614795],[6.406917881457803,52.28631511899991],[6.406884705260522,52.28628282253875],[6.406804770158421,52.28620498111981],[6.406579611679073,52.28592686489736],[6.406578311911633,52.28592451217619],[6.406576751284006,52.28592164936997],[6.406543455998754,52.28586113046184],[6.406429978184904,52.285655026908074],[6.406409270399603,52.28562059141454],[6.40639346922936,52.28559431995363],[6.406362034728018,52.2855420632047],[6.406315667854484,52.28546498359434],[6.40624082990733,52.28536004294373],[6.40622187101911,52.28533347510864],[6.406205340954724,52.28532142945814],[6.406175977127334,52.28530002075702],[6.406072579034375,52.28522468216866],[6.4060527696787,52.28521023791865],[6.406014433025935,52.28519188167622],[6.405944842824553,52.285158541639476],[6.405465128409135,52.28496345856311],[6.405308124312722,52.28489151139729],[6.405274812898869,52.284876248553594],[6.40514622497345,52.28491552972827],[6.405110131280255,52.28491700911178],[6.405104127944187,52.28491725856498],[6.404994943421096,52.28493216684914],[6.404519795698423,52.28499714512064],[6.404090479757293,52.28505584873295],[6.403995538867697,52.28507068745376],[6.403833287793864,52.28509604626561],[6.403781363157794,52.28510128372911],[6.403738004733099,52.28511323367749],[6.403346239064684,52.28518681083704],[6.403283400970643,52.285199988736366],[6.403183250887682,52.285220992645236],[6.403177379719598,52.28522766752308],[6.402857407800376,52.28529586199058],[6.402814756236372,52.285304129293635],[6.402487534293171,52.28537386813404],[6.402416999481907,52.285388900371814],[6.40240449973408,52.28539156043908],[6.401244837782421,52.28563861111664],[6.400785902231369,52.28573637740919],[6.400777256818762,52.28572360723471],[6.40034693936019,52.28582954842147],[6.400121730430992,52.28588498647188],[6.399891902427654,52.28594227931372],[6.399778445689893,52.28597056702861],[6.39951626679066,52.28603995597242],[6.399340173655469,52.28608525539817],[6.399013005040907,52.286169410351164],[6.39895510251709,52.28597908388572],[6.398461525186062,52.28602789961216],[6.398339081487006,52.286040020933264],[6.398330155898443,52.28605356181495],[6.398296480584607,52.286061534955934],[6.398268228439674,52.28606823028876],[6.398256944790006,52.28608377775931],[6.398250521026817,52.28609261431229],[6.398249185278484,52.28609445935874],[6.398246613291276,52.286098013775316],[6.398144761861839,52.286111423816074],[6.397884448133893,52.286145675771586],[6.397885102529065,52.28614416013625],[6.39788666241693,52.28614056944177],[6.39789653674823,52.28611782542278],[6.397711017380545,52.28614184676176],[6.397572362861526,52.286159121384685],[6.397325131517783,52.2861899165971],[6.397294143584385,52.28619426216168],[6.397221984239759,52.28620437057317],[6.397120564231452,52.28623808066751],[6.397107879239524,52.28624228774584],[6.397128051386206,52.28631215239061],[6.397128306471645,52.28631305803155],[6.397128561761294,52.28631397265908],[6.396521685969757,52.286260957940215],[6.396397908588963,52.28625893202243],[6.396309542366211,52.286260810144505],[6.396263964926123,52.28626037239016],[6.39596778230449,52.28629260738278],[6.395158470221816,52.286393377940136],[6.395053516644453,52.28640643425574],[6.395048672961973,52.286407419337564],[6.394997564454112,52.286417733355975],[6.394978585739829,52.28642039395392],[6.394972756170231,52.28642120767337],[6.394814131267059,52.286443386190655],[6.394383504291516,52.28650360254932],[6.394303412787932,52.286516221596806],[6.394250427242624,52.28652456486698],[6.394195601394308,52.2865331934441],[6.39415301416335,52.28653989308674],[6.392348598860192,52.28682457099534],[6.39231546322153,52.286833796195694],[6.392302267171765,52.28683746780157],[6.392261242302204,52.28684263444525],[6.392099262073837,52.28686304017208],[6.392010858300502,52.28687822709031],[6.391711136335693,52.28688517036009],[6.391508025496995,52.28688987173733],[6.39143140761276,52.28688893189177],[6.388889038716926,52.28685798964455],[6.388819218301907,52.28685754776623],[6.388523196288522,52.286855678996865],[6.388285883704829,52.28685094825237],[6.387956484651317,52.28682223406368],[6.38791559362934,52.28681644130885],[6.387890215007614,52.28681284516185],[6.387883213846082,52.28678376433284],[6.387151426560805,52.286685927752885],[6.386949103601146,52.286581631344184],[6.386447534195451,52.28634492368934],[6.386150130267821,52.28616990084931],[6.385800713641641,52.285964262168996],[6.385791382469216,52.28596318152474],[6.385791264174993,52.285961178130655],[6.385791231349523,52.28596036945996],[6.385606822578817,52.28587553189977],[6.385140974731784,52.285783884929884],[6.385101020819937,52.28577603395954],[6.384952804858735,52.285746868971124],[6.384688936340412,52.285682493092665],[6.384204646168499,52.285564329797246],[6.38404036033165,52.285540045072324],[6.383937571468936,52.285524849956744],[6.383931910081461,52.28552401685199],[6.383925866491337,52.28552313304059],[6.383411788462625,52.28551372462886],[6.382884954554767,52.28550408888885],[6.381822908300109,52.285445053690644],[6.381544065390992,52.28542382388532],[6.381407409765542,52.2854074464333],[6.381282275601181,52.28539244599017],[6.381009943106956,52.28534641535271],[6.38086882652135,52.285315351947354],[6.380618658566455,52.28526028954923],[6.379606525311741,52.285013489602505],[6.379523248247321,52.28504169312706],[6.379495674170655,52.28506638184462],[6.379313202075898,52.28502032079881],[6.379310756363346,52.2850197481029],[6.379243752011837,52.28500415861345],[6.378331068317864,52.284740666540856],[6.377284554805895,52.284470504919085],[6.377211034446094,52.2844524791162],[6.376839175739063,52.284361351414034],[6.37662753253181,52.284309508371756],[6.376089653543398,52.28416830120257],[6.376007905005868,52.28414468087839],[6.376000411611823,52.28414251447889],[6.37579863461325,52.28408411582943],[6.375307285468802,52.283941895671575],[6.37503595806489,52.28384280296539],[6.374854490139994,52.283767622563126],[6.374720314157226,52.283707488601465],[6.374582763512105,52.28364584568584],[6.373796117118674,52.283293270210315],[6.373787717119943,52.28328524187921],[6.373738874999109,52.28323858688599],[6.373723586232301,52.28321732236028],[6.373723480869803,52.28321719740364],[6.373598115366368,52.28306853474369],[6.373598055359059,52.28306847232651],[6.373543492830561,52.28308960983824],[6.373539424135617,52.283091180797925],[6.373524599458232,52.283092805579564],[6.373477201232042,52.283097991944615],[6.373393487292631,52.283078772521904],[6.371624054688924,52.282124101666135],[6.371622635260033,52.282124859519804],[6.371618103749564,52.28212736905263],[6.371544633644793,52.28209280085908],[6.371483221970703,52.282068028302135],[6.371437839730756,52.28204971961927],[6.371435739972821,52.28204887423114],[6.370726806510709,52.28166923259244],[6.369467465886792,52.281004686014974],[6.369460717451217,52.281009002565526],[6.369199987514424,52.280876084390854],[6.369034241155685,52.280787821334286],[6.369032667985929,52.28078692658702],[6.369008461970512,52.28077315988756],[6.368970290123019,52.280751437721605],[6.368423590495273,52.28046912595978],[6.368422108236509,52.28046836527412],[6.368419988404233,52.2804672683272],[6.367750488015696,52.28012173372841],[6.367748042108797,52.28012046869757],[6.367747938356267,52.280120415628744],[6.367161695365982,52.279819856383696],[6.367065091333675,52.27977456548567],[6.366966310714241,52.2797282499136],[6.366555138170913,52.279544063603275],[6.366347658794985,52.27946143680107],[6.366002172395642,52.27932386588538],[6.365446654881183,52.27910799212344],[6.365236837346699,52.27903746301948],[6.365230638561911,52.27903746039626],[6.364428318898463,52.27877937497633],[6.364427212137722,52.27877902459736],[6.364375277570183,52.27876234036805],[6.363843846593414,52.27858358834989],[6.363744815515299,52.27855027824785],[6.36349787474264,52.27848062812481],[6.362697454313858,52.27821734708016],[6.362301409659417,52.27804930800712],[6.361964001268251,52.27790614889777],[6.36107861017272,52.277490415291155],[6.361046135926745,52.27748297996599],[6.360970185669141,52.277465575372354],[6.360678999146513,52.27733827355727],[6.360476940604518,52.277249938238],[6.360398461001294,52.277223395039044],[6.360343336523888,52.277204757899575],[6.360311995138348,52.27719416714036],[6.360299121950325,52.27718981496113],[6.360160675175345,52.277149653815464],[6.359814780566388,52.27704931582888],[6.359683132951445,52.27701112052847],[6.359663440200364,52.27699980454695],[6.35944415003832,52.276873822493926],[6.359374670282656,52.27683393784247],[6.359373379349849,52.27683320243512],[6.359373201181731,52.27683309604144],[6.359371836012258,52.27683231630341],[6.35933715468872,52.27681236898576],[6.359326142291462,52.27681805030756],[6.359125700890736,52.27670090089249],[6.358871691484282,52.27655240904642],[6.358899001504379,52.2765348010979],[6.358682730510588,52.276405287382595],[6.357647540147528,52.275785377269074],[6.357505655679971,52.27572502659759],[6.357450753810772,52.27570167642615],[6.357085460510455,52.27546091286531],[6.35692671157258,52.27545293092215],[6.356908917228636,52.27544797160776],[6.356870910994687,52.27543738970035],[6.356869613529486,52.275437022839654],[6.356868257266798,52.27543664747319],[6.356740144737861,52.27540097258985],[6.355962975766272,52.27521720868166],[6.355963017954842,52.27521712744109],[6.35596641975877,52.27520983700744],[6.355968715687862,52.27520491956229],[6.355676271927615,52.27514367082233],[6.355241310624226,52.275052606419344],[6.354981597060701,52.27500251193426],[6.354980419955457,52.275002287879836],[6.354680771439844,52.274944484287694],[6.354659093722291,52.27494958737033],[6.354620461284924,52.274958667270084],[6.354250555319618,52.27488142087991],[6.353136266646059,52.27464868750064],[6.353132366204157,52.274647883475716],[6.353062080337839,52.274633195923435],[6.353058370935925,52.27463241729935],[6.352976766273835,52.27461538639325],[6.352973204156917,52.2746146425158],[6.352853977844913,52.27458778922154],[6.352863291080943,52.274572001571435],[6.352863361794041,52.27457188414572],[6.352751149897958,52.274546851974186],[6.352667576375546,52.274528210064155],[6.352642664309671,52.274522697067034],[6.352803287300794,52.27423664439005],[6.352608322676872,52.2741915613349],[6.352536516105661,52.274174953416065],[6.352782749326566,52.27372815571],[6.352801306200072,52.273682595196526],[6.352810278721326,52.27366057245527],[6.352996714992149,52.273520898582476],[6.352946622424067,52.273505560538425],[6.352889212399728,52.27348050301561],[6.352842882750885,52.273453566238],[6.352829398614294,52.27343854015171],[6.35280453265897,52.273410834714916],[6.352758793453849,52.27334091105469],[6.352745320425704,52.27332032111369],[6.352575204959777,52.273030032013686],[6.352464944527209,52.27285308145706],[6.352419926946324,52.27276302697644],[6.352391645491942,52.27268054771885],[6.352384276502917,52.272663044787066],[6.3523547693556,52.27259294342705],[6.352303139941784,52.27238186158065],[6.352303122756602,52.27238174487317],[6.352169079651174,52.271763689918664],[6.352136586641792,52.27161536976118],[6.35214533120086,52.271491026151175],[6.352148537938129,52.271445024822064],[6.352153096536033,52.271379624694525],[6.352159037760895,52.27124965932208],[6.352164530963062,52.271129431931534],[6.352164116910844,52.2710509405095],[6.352159329963058,52.27100522018192],[6.352152618181152,52.27094101765724],[6.352152586543057,52.27094091005604],[6.352144387284036,52.2709047092388],[6.352126744223086,52.27082694276406],[6.352090538420348,52.270731647901684],[6.352011755869199,52.27052426609597],[6.351885666358952,52.27032707674094],[6.351803528114742,52.270198612488564],[6.350945293700878,52.2690977455851],[6.350743685481115,52.26901538533525],[6.350591404896281,52.268953196740966],[6.350355810192045,52.26863486450101],[6.349483581151757,52.26827956375724],[6.349027840978324,52.268098565332245],[6.349026850816336,52.26809816891986],[6.349019861090967,52.26809539450978],[6.348495025833695,52.26788695798466],[6.348304191271184,52.267811166278214],[6.348240353027854,52.26778579928896],[6.34792328843723,52.267655629854175],[6.347052072679954,52.26729795713132],[6.346917618566114,52.26724258494331],[6.346862867358938,52.26722003763024],[6.346800030032972,52.26719413142955],[6.346717710287012,52.26716018610034],[6.34649576670917,52.26706886070174],[6.346270867769755,52.266976318496376],[6.345788982954793,52.2667773635636],[6.345529024382187,52.266671675907446],[6.345267263785476,52.266565247280894],[6.345017525087185,52.266463933825825],[6.344769206062226,52.26636318359161],[6.344705801654128,52.26633736177796],[6.34313098059014,52.265692971592536],[6.342630850555138,52.26548831811797],[6.342123010816294,52.2652798509076],[6.341620577310316,52.26507186816678],[6.341120720580999,52.264864959073506],[6.340794336243119,52.2649199059355],[6.340212930645211,52.26468218323375],[6.340003219815878,52.264596508558114],[6.339831798321523,52.26453522459634],[6.339371536935883,52.264370665289185],[6.33921254690846,52.264313819327704],[6.339054821854194,52.264281150461045],[6.338849539886207,52.26423863581055],[6.33821509855775,52.26412236693493],[6.337726669700325,52.26403285555394],[6.33636692887811,52.26378361313953],[6.336078781732652,52.263730793737935],[6.335924971693543,52.26370633153156],[6.335239031375182,52.2635972285009],[6.334743706796665,52.26352728275111],[6.334490997928397,52.263491594551176],[6.333391904568746,52.26343757459696],[6.333337009919525,52.26343872433236],[6.333249492024489,52.263440566738],[6.333205213218636,52.26344149657355],[6.332640102278035,52.263453381937424],[6.332046555495103,52.263465869538436],[6.330832539388318,52.263587656940075],[6.329924180887138,52.26367885974004],[6.329883498646681,52.2636829235045],[6.329849920932258,52.26368628340886],[6.328057253821727,52.2639188995741],[6.327971056160324,52.26393611548762],[6.327879096177041,52.26395447379183],[6.327441430834878,52.26401026976492],[6.326646655603061,52.26426484897695],[6.326365315488817,52.264354982301974],[6.326308421167822,52.264215010695025],[6.326308297541577,52.26421470607626],[6.326319607629313,52.26430701568281],[6.326326959019736,52.264367250622435],[6.324842274436681,52.264512789339996],[6.324740991251093,52.26452401957275],[6.324557080244616,52.26452804061359],[6.324373169203073,52.264532061368286],[6.324172787302933,52.26451985380801],[6.324168944326047,52.264519623627464],[6.324065137563108,52.26451329222559],[6.323981600541508,52.26450185645103],[6.323924831957714,52.26449409130559],[6.323834611201577,52.26447621888784],[6.323735946497622,52.26445666961605],[6.323502845321887,52.264399554213114],[6.32336340277022,52.26436564995765],[6.323120887915151,52.264306675923656],[6.322667480237445,52.2642015988577],[6.322388988567151,52.264143312680375],[6.322255341606575,52.26411533844873],[6.321997497939025,52.264037832778364],[6.321857189242645,52.264004427964494],[6.321697967421931,52.26395911033092],[6.321528400503273,52.26391085424292],[6.320868489818114,52.263719129504956],[6.32073088708892,52.26367915851188],[6.320261389333628,52.26354740536846],[6.319671884524173,52.26336438479901],[6.319071812513709,52.26317318444265],[6.319033742462419,52.2631614134905],[6.318790490372164,52.26308623058176],[6.317066426388994,52.262621889334206],[6.31688412184365,52.26257276514105],[6.316058224522925,52.262349503696],[6.31602632888994,52.26234502665049],[6.314910587364927,52.262188373826625],[6.313947674534109,52.26205317109167],[6.313757632351669,52.262060567110595],[6.313449913522372,52.262088821538526],[6.312804699876371,52.26216953300187],[6.312745644102058,52.262176916673184],[6.312660611386222,52.26218969005365],[6.312269573901909,52.26224841716435],[6.312191185116037,52.26226018542179],[6.31170194832585,52.26231356749335],[6.311284340834653,52.26235913370977],[6.311046508771823,52.26236913725831],[6.311034960348484,52.26236817594385],[6.310715202349376,52.26234167996849],[6.310594383037424,52.26231004196072],[6.310430949924159,52.26229457419637],[6.310161692887911,52.2622690931995],[6.310029082717973,52.26225654792889],[6.309703186265502,52.26222571090091],[6.309991999040687,52.261742870629604],[6.309992055760259,52.26174278030388],[6.309478045335874,52.26173227835272],[6.308964035140248,52.26172177416491],[6.308023370240907,52.261519234324695],[6.307090660169234,52.261254695956346],[6.306686679976502,52.26116912692275],[6.306542613958348,52.261138609507164],[6.306573352336597,52.2611091584296],[6.305586072689572,52.26090381617948],[6.305340914713441,52.26084457472333],[6.305141040597209,52.260796270144205],[6.30484835004801,52.2607064594218],[6.304688774972479,52.260657499473304],[6.304557724046163,52.2606172611249],[6.304231248277201,52.260517051166424],[6.303379900316053,52.26025572599317],[6.303334630600934,52.260241839680305],[6.303314450156902,52.26023565047338],[6.303474831018657,52.25994345656085],[6.303652432760749,52.25961984965027],[6.303158778159553,52.25947483284641],[6.303111679386814,52.259460996586256],[6.303013296762023,52.259432098099374],[6.302432312876686,52.25928685646337],[6.302308782816164,52.25929149867903],[6.302231158506606,52.2593061216818],[6.302158628974083,52.2593120764409],[6.301603755013572,52.25921831101116],[6.301581457410649,52.25921027732951],[6.301549302176477,52.259198688688755],[6.301549240824584,52.25919855433971],[6.301515186356316,52.25912093465117],[6.301553197435768,52.25903902702666],[6.301489251915193,52.25903572893005],[6.301380466821302,52.259030117294984],[6.301037198406931,52.25903988305879],[6.300181179264234,52.259025370788976],[6.300051947600101,52.25902052715961],[6.299790474939601,52.25898695395694],[6.299671204174235,52.25897713435713],[6.299529895895844,52.25896550742523],[6.299455625867034,52.258986574243444],[6.298399208169249,52.25897880970725],[6.298014763754297,52.258986340625746],[6.297997208439779,52.258986682714585],[6.297553336748208,52.2589833630941],[6.297437949929392,52.258970769892194],[6.297188052095715,52.258907889917054],[6.297192636519852,52.25893436995702],[6.297098948695157,52.258917052218],[6.297004055262739,52.258899509995956],[6.296252780030852,52.25874000886358],[6.295306839791218,52.258647586945436],[6.294859672679154,52.258603898331316],[6.291679832487231,52.258293152972655],[6.291549370299328,52.258280220054566],[6.291543775683919,52.25830978929139],[6.291538512470902,52.258337648222856],[6.291352252852447,52.25908249222108],[6.291221304044226,52.25956679260163],[6.291202122065298,52.25963773983338],[6.290979237290153,52.2601795671014],[6.290979210007653,52.2601796661809],[6.290781681179904,52.260173051893176],[6.290647371517314,52.26016855139636],[6.290218102885474,52.26015418074181],[6.289552272260533,52.26013188152705],[6.288143320591925,52.260085308693604],[6.287864444610547,52.260076092132344],[6.287880492931373,52.26014308499187],[6.287907006876773,52.260253824729276],[6.287917494181998,52.26027694342338],[6.287943803369737,52.260334887767044],[6.28798761974177,52.260393696300795],[6.288013036809816,52.26039745730886],[6.288060054949526,52.260440044584755],[6.288090778661284,52.260467871577646],[6.288154471359388,52.260539633324846],[6.288185745829923,52.26065104675995],[6.28823895458031,52.260695510232594],[6.2882558212253,52.26070958300549],[6.288343754915624,52.26075015030509],[6.288343269420231,52.26075004614973],[6.28805250886938,52.26069016405999],[6.287680509556973,52.2606135532452],[6.28728216155362,52.260523273171664],[6.286880872210244,52.26043233105728],[6.286547640963536,52.26037482704236],[6.286544418084666,52.26037915694703],[6.286538514868511,52.260387120531],[6.28651159338859,52.26038139324614],[6.286226489020458,52.26032064569403],[6.28622052749371,52.26032427737299],[6.285322616591338,52.260134453777376],[6.285317587386715,52.26014218594863],[6.285313352384296,52.26014862676295],[6.284984891209251,52.26007977488574],[6.284986539209606,52.26007578955818],[6.284991327005438,52.26006407744505],[6.284870260836449,52.26003857207199],[6.284585748197727,52.25997861603724],[6.284572442598492,52.259968182896756],[6.284478114897206,52.25989431500472],[6.284275090296729,52.25984894733589],[6.284144668669553,52.25986719511934],[6.283394425163127,52.25971011229553],[6.283282969597138,52.25968677945159],[6.283252342336583,52.25967883247872],[6.283168651088086,52.259657293296925],[6.283099359891974,52.259639455858476],[6.283068672304831,52.25963141941336],[6.283059321781711,52.25962897361931],[6.283054300362153,52.259627654476496],[6.283050044848719,52.25962654524285],[6.282731145065139,52.2595593313746],[6.282602432119983,52.259532200859084],[6.282597680854505,52.25953120322588],[6.282563082940291,52.25952391534927],[6.282520570907795,52.259514952715875],[6.282386827433955,52.259486763529075],[6.282203673165598,52.25944815369243],[6.282119973454868,52.25943051473181],[6.281629997441962,52.25932710389265],[6.28073063261117,52.25913727455937],[6.280669071757358,52.259124275819296],[6.280414120275579,52.2590704318915],[6.28011264215299,52.259006755444716],[6.279869371527672,52.258955374711086],[6.279463191166016,52.25886958576412],[6.279423504329416,52.25886120289368],[6.2779581217177,52.25855188535823],[6.276579852019188,52.258260886025],[6.275190950287456,52.25796685866552],[6.273822733282286,52.25767793589664],[6.273807259593792,52.25767467246339],[6.273756116424464,52.25766385698095],[6.273497105833882,52.25760906692407],[6.2724244745932,52.25738217572444],[6.27162385352537,52.25721312710922],[6.271381691481753,52.257161990331454],[6.271342669722343,52.25715375258156],[6.271320312695797,52.25714903032243],[6.27127977595258,52.257140471326544],[6.271196716736066,52.25712292773057],[6.271035982000542,52.25708898652822],[6.270871055784987,52.257051220513446],[6.270681280717264,52.25700714163456],[6.270468389461048,52.25695769855713],[6.269970781410106,52.25684260298366],[6.269896650880651,52.256825450150444],[6.269681028562657,52.256775576658576],[6.269609768838679,52.256756200082236],[6.269523738912734,52.25673280819371],[6.269083032288256,52.256612987483514],[6.268408192512529,52.256371422758114],[6.26718332380507,52.255893544955754],[6.267116289413892,52.255866998753014],[6.267024248001509,52.255830536011324],[6.266939563360073,52.255797245180986],[6.266934500229747,52.25579525155036],[6.265767891706567,52.25533713978687],[6.265145643405606,52.25509278349594],[6.265080135723291,52.25506703373951],[6.265004207370432,52.25503719983924],[6.26487369455794,52.254985912117924],[6.264716317712591,52.254924055934815],[6.264566559108041,52.25486377881434],[6.264381398847088,52.25478925741337],[6.264145173306528,52.25469417228793],[6.264013929116473,52.25464134307868],[6.263495864869641,52.254432822780224],[6.263319862457108,52.25436650994494],[6.263297847437992,52.254358215313765],[6.263284287360748,52.2543531117065],[6.263169047998798,52.25430969037733],[6.263168944784834,52.254309655189836],[6.262662823779485,52.25411894724228],[6.262338829659103,52.253996870224945],[6.262231855140928,52.253956568585465],[6.262136253499063,52.253918142040604],[6.261836428628536,52.25379760137358],[6.261627497249127,52.25371361632871],[6.261415363054216,52.253628333352836],[6.261285347145829,52.253573586539986],[6.260931201719655,52.25342446752119],[6.260918017755206,52.25343475769456],[6.260903179670147,52.253313094955665],[6.260847097185657,52.25328898990241],[6.260813568823537,52.253274578093624],[6.260790960952986,52.253265127902445],[6.26073679634986,52.25324247369343],[6.26042922008076,52.25311906563573],[6.259938684769465,52.2529458747684],[6.259678938394671,52.252854262238124],[6.25947515939212,52.25278239642706],[6.259467627006221,52.25277991737357],[6.259400234461898,52.2527577826896],[6.259335008809086,52.25273636001382],[6.259008960429812,52.25261683276864],[6.258989016674898,52.25263418343776],[6.258887810593984,52.25259495974458],[6.258683629897673,52.2525181610059],[6.258559594566054,52.25246484115836],[6.258441802924918,52.252408760682336],[6.25831993520404,52.252351676506045],[6.258273437581082,52.25232704114947],[6.258207716482174,52.2522854878837],[6.25816640485712,52.25225569095333],[6.258129638806645,52.252229168158294],[6.258091951116072,52.25220045003215],[6.258067450464951,52.25218178237188],[6.25802935807386,52.25214809672092],[6.257985602534891,52.2521094014263],[6.257899623134574,52.252030192864254],[6.257835813937926,52.2519695522839],[6.257746077243024,52.25187193645506],[6.257745972104646,52.251871802406605],[6.257720529499449,52.25184240068745],[6.257690973072921,52.25182504653998],[6.257682083921304,52.251819826975755],[6.257676470422138,52.25181660562065],[6.257665347157571,52.25181022506266],[6.257603961877129,52.25178436890537],[6.25746984152165,52.251732650240946],[6.257406319968041,52.251709874707075],[6.257308095588238,52.25167466341729],[6.257136401715019,52.25161944611172],[6.256948320525944,52.251561230317016],[6.25679658888034,52.25151426951346],[6.256796896731164,52.25151428522335],[6.256800018640958,52.251514415038216],[6.256800839517947,52.25151445393564],[6.256787106893958,52.251364820188655],[6.255660280913251,52.251327846256515],[6.255595788096758,52.25130025022006],[6.255590193602477,52.25115468210992],[6.255587226597886,52.25107770180035],[6.255537317026681,52.25103792732553],[6.255502134952345,52.25100989104127],[6.255450433910796,52.25094960059393],[6.255442560505945,52.25092886870726],[6.255421642217934,52.25087379882145],[6.255422698958845,52.25082813985722],[6.255423725713526,52.25078394619369],[6.255428305450073,52.250586369306674],[6.255430882345159,52.250577335173524],[6.25543294569851,52.250568250885955],[6.255434495861189,52.250559134417976],[6.255435518015608,52.25054997689018],[6.255436027506109,52.2505408141428],[6.255436024333015,52.25053164617578],[6.255435494029503,52.250522482083724],[6.255434610905672,52.25051474971315],[6.255434436771274,52.25051333085353],[6.255434319892935,52.25051259467818],[6.255432867551908,52.25050421035142],[6.25543078654709,52.250495129564364],[6.255428179290003,52.25048609758685],[6.255425075241326,52.25047712319054],[6.25542169097085,52.25046879800629],[6.255421445467102,52.250468224564536],[6.255417334070473,52.25045941037277],[6.255412726584587,52.25045068970985],[6.255407608542583,52.25044207167022],[6.255402009405062,52.250433565025496],[6.255395944165469,52.25042518764188],[6.255389398181534,52.2504169396269],[6.255382386446669,52.25040883884672],[6.25537490931179,52.25040090327516],[6.255366995711272,52.250393114722954],[6.255358661339891,52.2503855270041],[6.255349875860673,52.25037808641205],[6.255340684428633,52.250370855532374],[6.255331086868485,52.25036382537811],[6.255321097998097,52.25035700482844],[6.255310732635316,52.25035040276257],[6.255298745822841,52.25034250932058],[6.255287193553834,52.25033437000146],[6.25527609082138,52.25032600267159],[6.255265466734943,52.250317398128985],[6.255261369926811,52.25031383294855],[6.255260595369291,52.25031316452429],[6.255255321820439,52.25030858333449],[6.255245670720161,52.25029955818065],[6.255236528427051,52.25029034053387],[6.255227909758685,52.25028093927359],[6.255219800247736,52.25027136349445],[6.255215984814352,52.25026645699888],[6.255214963180419,52.25026513424962],[6.255212229354153,52.250261621968264],[6.255205197253,52.25025172368209],[6.255198733579484,52.25024168639473],[6.255192809399097,52.250231528295274],[6.255187468638762,52.25022124906105],[6.25518440989079,52.25021459328775],[6.25518370688557,52.2502130884321],[6.25518268218862,52.25021085789427],[6.255178479859102,52.25020038154057],[6.255174861649817,52.25018982000011],[6.255171842378092,52.25017918215216],[6.255169393284683,52.25016849517283],[6.255167824132193,52.25015937466648],[6.255167757497914,52.25015896169778],[6.255167543829292,52.25015776783392],[6.255166294011491,52.25014700013543],[6.255165629539099,52.25013621015884],[6.255165565580032,52.250125424757414],[6.255166101958535,52.250114634944204],[6.25516714011901,52.25010479419541],[6.255167239200128,52.250103867679975],[6.255182069338988,52.25002630714849],[6.255190733221186,52.24998097876916],[6.255194229614913,52.249948514564466],[6.255274183568854,52.24975012304251],[6.255346255887959,52.249574880145126],[6.255419297620641,52.2494005648447],[6.255494609535763,52.24922629571855],[6.255514555139658,52.249179032790906],[6.255568681196592,52.24905078629079],[6.255619320957687,52.24892850661452],[6.255641990183609,52.24887374542881],[6.25566757474437,52.24880254130664],[6.255705507363276,52.24869699223509],[6.255749053122916,52.248586431379],[6.255768515936809,52.2485369698343],[6.255629455511078,52.24845736800003],[6.255602995536505,52.24844244435371],[6.255598242539875,52.24843976485576],[6.255567728022696,52.24842343289657],[6.255567639294813,52.24842338860779],[6.255515339136599,52.248393779407365],[6.255477725498772,52.24837310437334],[6.255396103457577,52.248328232950485],[6.255301567020044,52.24827592425935],[6.255079503379109,52.24815785102165],[6.254956191405094,52.24809046452662],[6.254858634638643,52.24803716200524],[6.254638721856977,52.24791737336935],[6.254638603497307,52.24791731132107],[6.254415905645371,52.24779581698907],[6.254239607133921,52.24770098226081],[6.254105837575698,52.24763035500035],[6.254105719217534,52.247630292951506],[6.254074973748061,52.24761332414092],[6.254088581890456,52.247561676763155],[6.25408859513129,52.24756160476013],[6.254118704278964,52.24745872918683],[6.254170631357333,52.24728140572666],[6.254183851259317,52.247239153883996],[6.254226654677263,52.24710239833013],[6.254262013801101,52.24698341321105],[6.25428009815545,52.24692252899271],[6.254299003137473,52.24686994387091],[6.254241517756677,52.24684237655627],[6.254031576186188,52.24674169448388],[6.253798790633793,52.24662740969563],[6.253671999713399,52.24656453252714],[6.253616069707466,52.24653708832291],[6.253568551976717,52.24651376190984],[6.253480921356857,52.246470623040224],[6.253338974449481,52.24640091777116],[6.253105483336131,52.24628555821451],[6.2528770258216,52.2461737116554],[6.25264658220872,52.24606057591868],[6.252599472337707,52.24603783935337],[6.252560743854235,52.246019148978505],[6.25241808381366,52.24594951974299],[6.252185117222955,52.245834532044896],[6.252071503858248,52.24577135891722],[6.252071462031432,52.24577146708228],[6.251977181324521,52.24599479592866],[6.251977153614343,52.24599487702562],[6.251922412866088,52.24612197592502],[6.25189961047789,52.2461738162086],[6.251854457852077,52.24616889766465],[6.251814895889403,52.24616457633919],[6.251787051022485,52.246161139952825],[6.251750754384809,52.24615681267801],[6.251733696043821,52.24615460061048],[6.251713408110126,52.24615197175814],[6.251612040484376,52.24613951901062],[6.251612096779151,52.246139401751584],[6.251654249812075,52.246046451539286],[6.251735360732167,52.24586796277629],[6.251761284120488,52.245810949418775],[6.251837725883727,52.24566274913662],[6.251503739971192,52.24560804666395],[6.251248668192827,52.24556628422387],[6.250990584143728,52.245522449009414],[6.250177975858593,52.24538441618695],[6.249974996509653,52.245350467613825],[6.249697683576274,52.24530409156725],[6.249300936192016,52.24523766217664],[6.248880540923559,52.24516664922769],[6.248507289878916,52.245103596096],[6.248045123682388,52.24502135291891],[6.247407445220334,52.244907750204895],[6.247203860986935,52.24487106887367],[6.246997529384829,52.24483389486573],[6.245624939299891,52.24455706545583],[6.245336661022431,52.24449890344636],[6.244845071034547,52.244399712065224],[6.242599070600235,52.24392871386788],[6.241478278503793,52.24369365024389],[6.241449814150656,52.24368909238442],[6.241007517591887,52.2436145427577],[6.240114790985703,52.24346407715771],[6.24011173410545,52.243465780032416],[6.240108780740105,52.243467536088794],[6.240105916593919,52.243469363406476],[6.240103170602882,52.24347124380011],[6.240101870894602,52.243472187961714],[6.240101293380426,52.243472614578955],[6.24010051348652,52.24347317748115],[6.240097974697559,52.24347517322509],[6.240095539251277,52.24347721316377],[6.240093221960167,52.24347930617841],[6.240091022651996,52.24348144328206],[6.240088941326772,52.24348362447468],[6.24008697815675,52.24348585874329],[6.240085147265467,52.24348811902121],[6.240083448997413,52.243490423282466],[6.240081868540123,52.24349276264576],[6.240080661839542,52.243494739780935],[6.240080420361621,52.24349512801835],[6.240079104634161,52.24349752838732],[6.240077921013285,52.243499945778616],[6.24007686984349,52.24350239816629],[6.240075950780321,52.243504867576334],[6.240075178291812,52.24350734491604],[6.239914695596229,52.244003098621135],[6.239688400752139,52.244084332023355],[6.239656454724522,52.24409141164455],[6.239430238635135,52.244141634619275],[6.238959000987726,52.24402925700933],[6.238849338752788,52.24400834132626],[6.238786953864381,52.24399644137754],[6.238676878987778,52.243979204692224],[6.238394841105226,52.24393504736957],[6.23818743548132,52.243906170880415],[6.238074502092473,52.243887974517754],[6.237614251679197,52.24376559840144],[6.237261783830267,52.24366687471173],[6.236912521403454,52.243579505997545],[6.236764365921534,52.24354244386694],[6.236674212747261,52.24352170041583],[6.236608664484512,52.24350663125873],[6.236525052992964,52.2434910717862],[6.23642623298826,52.24347269146001],[6.236226336792699,52.243431245943015],[6.236058206943119,52.243367137171354],[6.23600726516571,52.243339424128784],[6.235896876439452,52.24327410914382],[6.235896787569959,52.243274055853156],[6.235882283506818,52.243264407869034],[6.235747269001621,52.24317462401921],[6.23569379113537,52.24314135636991],[6.235627851760053,52.2431003494857],[6.235547110830842,52.243050973004046],[6.235422506581088,52.242984150805206],[6.235325460305348,52.24293659904644],[6.23522711545506,52.24288543428168],[6.235178617243661,52.24286065147319],[6.235096791145927,52.24281882359283],[6.235056278403992,52.24279432495285],[6.235026333665737,52.24276886958492],[6.235008935093742,52.24275406506119],[6.234602475835416,52.24275346794359],[6.234523433474993,52.24278321084384],[6.234488906201666,52.24279621284839],[6.234231357725002,52.242958787665756],[6.234214200425252,52.24295741867966],[6.234186029775629,52.2429551489639],[6.234175399943647,52.242955935269876],[6.23412418036238,52.24295970014778],[6.234090224999034,52.24295737302368],[6.234065271651541,52.24295566444126],[6.233727527754946,52.242846632038685],[6.23372343217691,52.24284531316389],[6.233184637561844,52.24273304632882],[6.233029058157277,52.24270103915466],[6.232840340477622,52.24265496882196],[6.232720272267522,52.24262624831113],[6.232564814833411,52.24258906244303],[6.231859383817232,52.24244502252689],[6.23184936694824,52.242442613423535],[6.23183949238591,52.24243998758438],[6.231829775111414,52.242437162878765],[6.23182021478373,52.242434121332685],[6.231813965667236,52.242431963913845],[6.231812698276102,52.24243153255565],[6.231810841194498,52.24243088969777],[6.231801654002679,52.24242745000011],[6.231792653720036,52.24242382920066],[6.231783883925278,52.24242000901141],[6.2317753158503,52.24241601660282],[6.231768722658605,52.24241270216256],[6.231766978433872,52.24241183379152],[6.23175888665706,52.24240747844685],[6.231751055330349,52.242402959451155],[6.231743469813837,52.242398276909206],[6.231736144747443,52.2423934307163],[6.231730059326857,52.2423890969744],[6.231729109752076,52.242388438637114],[6.231722364827711,52.24238330067178],[6.231715895334407,52.24237801692496],[6.231709745362386,52.24237259606959],[6.231703900612772,52.242367056184456],[6.231699734731447,52.24236279859634],[6.231698360914959,52.242361388282596],[6.231693141420397,52.24235561922035],[6.231688271067712,52.242349730814404],[6.231683720918097,52.242343741248135],[6.231679505952417,52.24233766839086],[6.231675897192219,52.242331905786145],[6.231675640639914,52.24233150315103],[6.23167212532154,52.24232526350257],[6.231668959997168,52.24231894944559],[6.231666159477082,52.24231256986237],[6.231663709462325,52.24230614283165],[6.231661827018983,52.24230030496451],[6.231661624422101,52.24229965926174],[6.231659027316516,52.24228779541261],[6.23165761639422,52.24228134297508],[6.231654631796241,52.24226294746431],[6.231652656498642,52.242244499795184],[6.231651720291485,52.242226026719386],[6.231651794064308,52.2422075374333],[6.231652550830147,52.2421949485207],[6.231652709062391,52.24219248461827],[6.231652907777669,52.24218906767558],[6.231655032321125,52.242170626642455],[6.231658197484689,52.24215224108563],[6.231662359859201,52.24213393827998],[6.231667548893627,52.242115727003025],[6.231672736664341,52.24210053577517],[6.231673097176404,52.24209947258779],[6.231673735818717,52.24209763442501],[6.231680921144909,52.24207968750684],[6.231689105041602,52.24206189523521],[6.231698258739707,52.24204428478036],[6.231708397389603,52.242026882998395],[6.231719235869039,52.242010096397635],[6.2317194917107,52.24200969009833],[6.231816153070155,52.24183823169817],[6.231854613425145,52.24168761971792],[6.231565967141503,52.24019124921649],[6.228031096967874,52.240415542135054],[6.227946028212105,52.23996973014949],[6.227946099540245,52.23996963077129],[6.228141702790652,52.23971460854253],[6.228111787193379,52.23966790308794],[6.228087852569524,52.2395735444574],[6.228067923679727,52.23944322240998],[6.2280678921945,52.23944310578735],[6.228073937029055,52.23928182313366],[6.228088655153427,52.23888915796627],[6.228105410296211,52.23885151284806],[6.228105466983456,52.23885141357394],[6.228106410254681,52.238849420460944],[6.228106579976806,52.238849104664766],[6.228107513193748,52.2388473543052],[6.228108748390916,52.238845314172266],[6.228110086568654,52.238843300270645],[6.228111557004459,52.23884131239185],[6.22811313059061,52.238839359731344],[6.2281148073271,52.23883744228916],[6.228116602022465,52.23883556894805],[6.228118485059597,52.238833721942456],[6.228120486225393,52.238831928024915],[6.228122590541492,52.238830169325695],[6.228124798347487,52.238828463818734],[6.228127094834829,52.238826802621276],[6.228129480173312,52.23882519472041],[6.228131954362937,52.23882364011601],[6.2281340249502,52.238822420949774],[6.228134517403702,52.238822138808196],[6.228135604272507,52.2388215468342],[6.228137169295611,52.238820690796835],[6.228139895399915,52.23881929618626],[6.228142710694975,52.23881797284619],[6.228145600202436,52.23881670290688],[6.228147212877168,52.23881604427082],[6.22814854945337,52.23881549545951],[6.228149712402278,52.238815055743316],[6.228151558447776,52.238814350504185],[6.22815464199422,52.23881327692359],[6.22815778528416,52.23881226583497],[6.228160988487407,52.23881132622534],[6.228164193218815,52.238810467498695],[6.228136927240276,52.238698623541985],[6.228098590383603,52.238541692620245],[6.227661036406833,52.23853138821265],[6.226771753734579,52.23851060567041],[6.226653083081758,52.23850782707767],[6.225562646306766,52.238481184763145],[6.224601758038758,52.238455699047115],[6.224086111877779,52.23844377798765],[6.223873320972996,52.23843885927471],[6.222859757120534,52.238419565951446],[6.222558727244831,52.238413840147125],[6.222477202243486,52.23841194507513],[6.22201283644123,52.238401225169106],[6.221816273322271,52.23839738346152],[6.221690450187594,52.238394929072115],[6.221383369132549,52.238388937436355],[6.221118408450325,52.23838916401361],[6.220948663632777,52.23838983230607],[6.220826124020129,52.23839149737805],[6.220679205690589,52.238392264797476],[6.220513276148427,52.238391053963866],[6.220234467307645,52.2383890303576],[6.220043189781107,52.238383629405895],[6.219769076224392,52.238375891038004],[6.219564302829663,52.2383628006734],[6.219332177596218,52.23834796124634],[6.218964924804094,52.23831455983229],[6.218514649258973,52.2382679988052],[6.218374339440873,52.23825258300226],[6.21807856538826,52.23822008685065],[6.217397856949583,52.23813384190132],[6.21732266210257,52.23812670358718],[6.217229662224565,52.23811787476008],[6.217058995372878,52.23811300721247],[6.217027516354927,52.23811211389081],[6.216873751046955,52.238117014330385],[6.216771885197662,52.238120291632534],[6.216599574238511,52.2381356134955],[6.216467973266233,52.23815144917645],[6.216202453647965,52.23819311327674],[6.215931597273119,52.238246975273384],[6.215851998734756,52.23826280482955],[6.215542884980368,52.23830718218442],[6.215466929261304,52.23831344045233],[6.21535903294849,52.23832233151808],[6.215354369749621,52.238322714761594],[6.215348361636819,52.23832320630712],[6.215170884114712,52.238333169389094],[6.215016397544122,52.23834184750888],[6.214828735249976,52.23834264159864],[6.214770324105406,52.23834288917889],[6.214655450973619,52.238337977671975],[6.214582907956943,52.23833487271261],[6.214554112520839,52.23833185668869],[6.214367771700806,52.23831237238698],[6.214158827348922,52.23828350061315],[6.213912014572364,52.238237627249596],[6.213656135651234,52.23817418196832],[6.213083246181378,52.2380057244282],[6.212371839910888,52.23779652688381],[6.212039255238914,52.2377017419371],[6.212026848354082,52.23769506947097],[6.212013702057273,52.237687997699126],[6.211987411991291,52.237674779918336],[6.211960414817112,52.23766211535085],[6.211932754782623,52.23765002166353],[6.211904431887294,52.23763849885602],[6.211875490378791,52.23762756459515],[6.211863981521581,52.237623528372126],[6.21186302369786,52.23762319350949],[6.211845988976529,52.23761722745859],[6.21181591354082,52.23760751450935],[6.211785337262749,52.23759842523584],[6.211754289584609,52.23758996842029],[6.211722785310214,52.23758215294719],[6.211703497167908,52.237577829474894],[6.211690868686564,52.2375749964836],[6.211658583794057,52.23756850770965],[6.211625959741707,52.2375626774336],[6.21159304094272,52.237557532309694],[6.211559856505983,52.23755306314632],[6.211526450511643,52.23754927862366],[6.211492852401415,52.23754618752426],[6.211459091450521,52.23754378964357],[6.211425241015721,52.23754209345766],[6.211391300929007,52.23754108997939],[6.211357359351885,52.23754079656977],[6.211356661688554,52.237516560256644],[6.211355662524502,52.23748078519544],[6.21101201408152,52.23748801878144],[6.210852014619547,52.23749139093384],[6.210503942579402,52.23808973599],[6.210240133933531,52.23854325900491],[6.209963932507129,52.23903709889063],[6.209777556435038,52.239369055132634],[6.209773332878012,52.239376598686334],[6.209726030959598,52.23936644792967],[6.209678023236116,52.23935613129424],[6.2095193117589,52.23922355513123],[6.209189336868768,52.23889298355373],[6.20915876163079,52.23886256459903],[6.209123339033931,52.23882731676022],[6.208729735560349,52.238633609634746],[6.208729617289189,52.23863354754015],[6.207982101699841,52.2382757931957],[6.207604517779406,52.23811506554562],[6.207590341159956,52.23807192181636],[6.207546816627056,52.23793935165756],[6.206922207151996,52.237911978818886],[6.206921208938931,52.23791342385984],[6.206920767393325,52.23791409205152],[6.206919268418395,52.23791616974241],[6.206917651838656,52.237918221285135],[6.206915902850064,52.2379202377941],[6.206914065202638,52.23792220997752],[6.206912095146335,52.23792414712727],[6.206910036431182,52.23792603995141],[6.206907859780134,52.23792788865317],[6.206905594304708,52.237929684042314],[6.206903225697411,52.23793144419452],[6.206900753461693,52.23793314214864],[6.206899957611866,52.23793365101213],[6.206898221347602,52.237934768612774],[6.206895542517092,52.237936378118924],[6.206892789169689,52.23793791623661],[6.206889976109425,52.23793939185138],[6.206887059420745,52.23794080526803],[6.206884083184728,52.237942165168775],[6.206881017793312,52.237943453782755],[6.206877892689061,52.23794467989367],[6.206874693067952,52.237945834616234],[6.206871433734025,52.23794692683579],[6.206868114521783,52.23794794756532],[6.206864750069762,52.23794889670317],[6.20686132573945,52.23794977435101],[6.206857841530863,52.237950580508766],[6.206854326555557,52.23795130598623],[6.206850780979054,52.23795195977039],[6.206847190162846,52.237952541962876],[6.206843568745475,52.237953052462075],[6.206839931034478,52.23795347319229],[6.206836262887855,52.237953831216245],[6.20683404047981,52.237953990453136],[6.206832578447645,52.23795409947124],[6.206831715602068,52.23795415040122],[6.206828878044869,52.23795429593132],[6.206825176152575,52.237954411507864],[6.206821458132256,52.23795444630244],[6.20681775342648,52.23795440909884],[6.206813988511641,52.23795428243115],[6.206577085119863,52.23792049502216],[6.206540323216738,52.237976171324036],[6.206453997929659,52.23796235319182],[6.206389991901049,52.237952110266946],[6.20625417540334,52.237949061618714],[6.205874451179359,52.23793573176611],[6.205719135188449,52.23793196381001],[6.205581097926284,52.237925972665025],[6.205450635754286,52.237920306373525],[6.205169561023556,52.23790709059587],[6.205135785881795,52.23790550893228],[6.205074198706146,52.237901791948154],[6.204686106260136,52.237878386540984],[6.204494966660769,52.23786112202023],[6.204455919425822,52.23785705995683],[6.204303412408828,52.23784119955426],[6.20416635014883,52.23782927679088],[6.204075654863794,52.237821392402374],[6.203961006518494,52.23780864023305],[6.203730336408741,52.23778167998253],[6.203604159144771,52.237766939901626],[6.203344221259555,52.23773586690932],[6.203122125319775,52.23770539474725],[6.202879968347685,52.23766511081201],[6.202603929606402,52.237616584480485],[6.202370868953439,52.23757490644037],[6.202037148863017,52.23751199138443],[6.201814142068237,52.23747003614546],[6.20154649397568,52.23741907658578],[6.201407453388389,52.23739413139278],[6.201296644028362,52.23737424950247],[6.201244625035372,52.23736451437745],[6.201091741084361,52.237335889204665],[6.200992875204241,52.23731823467588],[6.20090545127127,52.23730261344573],[6.200792701084483,52.237281450158676],[6.200729810692657,52.23726964153216],[6.20051682818095,52.237232126864726],[6.200486750748282,52.23722615913311],[6.200235127275477,52.23717629066375],[6.200153120735712,52.23715986758264],[6.200073112448191,52.23714383515794],[6.19994305198444,52.237116705216586],[6.199826821251481,52.23709249100511],[6.199514557957436,52.237029672857744],[6.19933441787439,52.236995507435964],[6.199195762091354,52.23696743810068],[6.199108419035655,52.23694975669366],[6.199003655954265,52.2369289502455],[6.198915084751446,52.23691134904492],[6.198790495606278,52.23688873724267],[6.198732210990864,52.23687815424808],[6.198603130734781,52.23685330808977],[6.198442702936503,52.23682345501536],[6.198358497492017,52.23680760306789],[6.198253196692049,52.236787779363375],[6.198009246592014,52.23674176333034],[6.197819669556329,52.236705377404604],[6.19761926559553,52.23666853517925],[6.197575947374665,52.236660572321284],[6.19735736677869,52.236620025424095],[6.19728463846559,52.23660651179345],[6.197213320361296,52.23659325809038],[6.196875566723283,52.23652991575657],[6.19669158379546,52.23649593445719],[6.196301276532389,52.2364238457083],[6.196042951321124,52.23637364574872],[6.195843495802792,52.23633968822255],[6.195601061003379,52.23629460960644],[6.195394716978633,52.23625695939739],[6.195107363184947,52.2362035405647],[6.195016916358379,52.2361880974626],[6.194934801332317,52.23617516792083],[6.194879612630402,52.2361664763393],[6.193732831560445,52.23599506326948],[6.193611638856185,52.235980242549935],[6.192774115605974,52.23590021191839],[6.192583146773527,52.23588598299524],[6.19192606650121,52.23583701905067],[6.191069919028411,52.23579542890543],[6.190099835636447,52.23574668873518],[6.189644275462239,52.23572618247617],[6.189267907064746,52.235709235191536],[6.189265431488372,52.2357091531368],[6.189177333612374,52.235706093314484],[6.189086632832832,52.23570482177496],[6.188995921817416,52.23570541977756],[6.188949683240701,52.23570667749607],[6.188936689532895,52.23570702637721],[6.188905288381742,52.23570788672597],[6.188814834817459,52.23571221293771],[6.188724678216047,52.235718397618356],[6.18863490639344,52.23572644017246],[6.188545621641772,52.235736330918506],[6.188479958056592,52.235745009693126],[6.18847053783411,52.23574625106855],[6.18845692609169,52.23574805118816],[6.188368922036,52.23576159130042],[6.188281711767869,52.235776941574684],[6.188195382619547,52.235794074455576],[6.188110051523016,52.23581298016383],[6.18802624300782,52.2358335203213],[6.188025791012024,52.23583362225675],[6.187993707874472,52.23584133598302],[6.187909746244426,52.235861508580136],[6.187795250255045,52.23589167627451],[6.18768239069535,52.23592411576187],[6.187571313122952,52.235958781119265],[6.187462134144178,52.235995644596855],[6.187400843445698,52.23601795516878],[6.187390705907662,52.236021646104064],[6.187354955405515,52.236034660570105],[6.187249893354309,52.23607579230267],[6.187147049801313,52.23611900315767],[6.187046555350125,52.23616422933887],[6.186948497176486,52.23621143430907],[6.186852962780391,52.2362605995053],[6.186786894348147,52.23629406947681],[6.18675562021185,52.23631099027068],[6.186746862779955,52.23631572342217],[6.186722591475168,52.23632884871887],[6.186660141181227,52.23636489170432],[6.186599630486956,52.23640215290603],[6.186541102660964,52.23644059608135],[6.186484630087344,52.236480175802306],[6.186430920675201,52.2365203659661],[6.186430270674248,52.23652085572726],[6.186121988270735,52.23671440809528],[6.186050894969953,52.23675754697157],[6.186033197747935,52.23676829072214],[6.185941445176238,52.23682028782264],[6.18584687581036,52.23687033549029],[6.185749561876955,52.2369183793009],[6.185649648634307,52.23696435534825],[6.185561475580051,52.23700211763389],[6.185558090492655,52.237003569640656],[6.185547252227249,52.237008208911554],[6.185442459848059,52.2370499034423],[6.185335431398453,52.23708937493621],[6.185226254073817,52.237126586845264],[6.185115088101394,52.23716149314003],[6.185004511431747,52.23719334835551],[6.185002049956084,52.23719405707542],[6.184930062225797,52.23721189958784],[6.184885738520244,52.23722288595527],[6.184767904333203,52.237249262244134],[6.184648663874546,52.237273149198295],[6.184528163062737,52.23729451886373],[6.184406547978241,52.237313352274164],[6.18433017626134,52.237323494183364],[6.184319192982233,52.237324952504686],[6.184283964702374,52.237329630463854],[6.18416052987953,52.23734332567817],[6.184036418869345,52.23735441875485],[6.183911748800248,52.237362908901574],[6.183786695032901,52.237368776957474],[6.183693773023897,52.23737118342154],[6.183684905207449,52.237371414010894],[6.183661374696462,52.237372022131325],[6.183535948835456,52.23737264333639],[6.183410563534552,52.237370621611035],[6.183285365682327,52.23736598292983],[6.183160501524098,52.23735871731946],[6.183051790338387,52.23735008436808],[6.183048374288752,52.2373498107813],[6.183036117787174,52.23734884176859],[6.182912346238671,52.23733635539084],[6.182789348404085,52.237321284064514],[6.182667256370766,52.23730364487867],[6.182546217024357,52.23728346381138],[6.182426362290089,52.23726074896566],[6.182419688691678,52.23725923895377],[6.182292098170119,52.23723045512025],[6.182290701425256,52.237230122974246],[6.182177445034629,52.237202231200705],[6.182159343360716,52.23719776909572],[6.182132982386696,52.23719072006564],[6.182051928186714,52.237169037930876],[6.182028214986719,52.23716269010877],[6.182012792640983,52.23715823691129],[6.181911531085663,52.237128942885796],[6.181898816336092,52.237125262410636],[6.18187788173509,52.23711874305975],[6.181771265012843,52.23708551218026],[6.181503118370085,52.23697645605105],[6.181440045216988,52.23695080560739],[6.181382009760958,52.23692851877895],[6.181319846949315,52.23690465079569],[6.18131972904154,52.236904606647734],[6.181372395269393,52.236866385273075],[6.181372510932143,52.23686630360163],[6.181260890512638,52.23680037098467],[6.181163592819525,52.23674289870377],[6.181098997914843,52.23671315970359],[6.181086406861576,52.23670737507706],[6.181058036095861,52.23669514415566],[6.180966595391697,52.236655761486105],[6.180921933321276,52.2366371236161],[6.180862034844806,52.2366121256398],[6.180796280410354,52.236577271009104],[6.180745240921136,52.23654497795486],[6.18071760164263,52.23651874744861],[6.180701133920393,52.23649833810778],[6.180694217459137,52.236489764925736],[6.180687806836827,52.23648657226075],[6.180646876128176,52.23646617449595],[6.180432193178637,52.236364091047356],[6.180117243053444,52.23621433315094],[6.180024194159588,52.2362045586144],[6.179984944676403,52.2362004359059],[6.179952727727957,52.236199906181945],[6.179939372403822,52.23619969024493],[6.179926890327103,52.23620000773447],[6.179885537342614,52.236201076302876],[6.179842395573456,52.2362044578369],[6.179813525792944,52.23620691664507],[6.179782813253995,52.23620208042929],[6.17974088446346,52.23619547691113],[6.179687937516931,52.236174386482716],[6.179529875831834,52.23611292543903],[6.179529932464082,52.23611281720093],[6.179561212717311,52.23607306832849],[6.179549852514665,52.23606650229694],[6.179528729499301,52.236054285294124],[6.179482907433463,52.236035385021914],[6.179482803847845,52.23603532279971],[6.179448868890686,52.2360172235972],[6.179381311476389,52.235987063119744],[6.179299502799619,52.23595486800566],[6.1792013001161,52.235916221427416],[6.179078721360185,52.23586351894949],[6.17899656457548,52.23582818908864],[6.178937356199537,52.23580071376735],[6.178894714680485,52.235763887500006],[6.178867365056425,52.235707759955076],[6.178864875640443,52.23570360613228],[6.178848126986738,52.235675567459054],[6.178844062347447,52.23567256569459],[6.17883358912096,52.23566482518555],[6.17877149039226,52.2356312122597],[6.17875540015806,52.23562455202607],[6.178749913806791,52.2356222788428],[6.178647253071787,52.23557160854976],[6.178619889769177,52.23556820566935],[6.178550256476524,52.235559549357525],[6.178387063388318,52.23551392239446],[6.178304816959359,52.2354833653768],[6.178261242845144,52.23547062444879],[6.178211340807377,52.235456029390285],[6.178154994878018,52.23544211563514],[6.178102324876689,52.23542910301403],[6.17793675005309,52.235387796720026],[6.177901479460415,52.235378505442405],[6.177863605706377,52.23536853949557],[6.177824319537605,52.23539856239049],[6.177810063772295,52.235409452637356],[6.177749871915898,52.23538093169326],[6.177701208130296,52.235365977591385],[6.177619748406291,52.23534093357125],[6.177531714413314,52.23531087315624],[6.177397452695359,52.23527194511638],[6.177336070359297,52.23525632995848],[6.177220801565334,52.23522429438977],[6.177182623855487,52.23521368311074],[6.177118922147798,52.235196052030396],[6.177005554047478,52.2351646866389],[6.176807221681572,52.23510789553125],[6.176691721305742,52.23507431503166],[6.176579134660175,52.23504157780585],[6.176407242548493,52.23499389405411],[6.176140479324431,52.234934997551846],[6.175978651941234,52.23489760030757],[6.175703755352775,52.234840635682254],[6.175370992160635,52.23477385511231],[6.175089060904725,52.234714706951],[6.174936995056952,52.234683669694356],[6.174782270167597,52.234652092711706],[6.174554094634132,52.23460529399472],[6.174300820156868,52.234554743304734],[6.174039567320574,52.234500847710244],[6.173829841344864,52.23445833784911],[6.173530489099475,52.23439727969964],[6.173200926343851,52.234328979691256],[6.173085116800901,52.234304979130265],[6.173072995070076,52.23430246222557],[6.172826218143792,52.23425324931999],[6.17263475470029,52.234217671549914],[6.172606064582491,52.234212837999756],[6.172436011173245,52.23417767476343],[6.172159950632526,52.23412060180624],[6.172179437936855,52.234085058865396],[6.172179480422541,52.234084977689434],[6.171834998257277,52.23401546978394],[6.171585907531894,52.233965209069105],[6.17083157628316,52.23381073155488],[6.170068541348923,52.23365965054838],[6.169747025524511,52.23359464017734],[6.169433737620629,52.23353129116717],[6.169145624783392,52.23347350906609],[6.168959685729345,52.23343621697839],[6.16847328092227,52.23333865201389],[6.167673404617902,52.233181049241324],[6.167672123365667,52.23318311600073],[6.167668037080872,52.233189677408475],[6.167613654469538,52.23317884658767],[6.167591226823192,52.23316876628361],[6.167566468097385,52.23315764976576],[6.167207000078342,52.233085045645204],[6.166978677105525,52.233038934404156],[6.166192644293646,52.23288295594758],[6.166192526726007,52.2328829297587],[6.165895547919112,52.23282160298612],[6.165383188358086,52.23275002850185],[6.165207247934559,52.232743395173365],[6.164987245750815,52.23273511039057],[6.164736675211688,52.23269396802302],[6.164512677184399,52.23265718922071],[6.164059897014835,52.23258204395261],[6.163760197686068,52.23253230648583],[6.163675943825424,52.23258214268755],[6.163305051057358,52.23283680700626],[6.16298845946112,52.233123983084546],[6.162531211465576,52.23354381246977],[6.162161829667278,52.23388609774137],[6.161952080985624,52.234161900701345],[6.161705714479262,52.23437192541614],[6.16146237964076,52.23476815539831],[6.161324581755719,52.235065389493506],[6.161170471984472,52.23545008623154],[6.161033431597821,52.23579112324599],[6.160933600076468,52.23621955978094],[6.16088675182485,52.23660355315889],[6.160838721462615,52.236933059046905],[6.160902003030981,52.23748092188599],[6.160981563451216,52.23795199104625],[6.161131566838707,52.23835688607341],[6.161372540826112,52.238848810030326],[6.161593168531875,52.2392094151775],[6.161852569402964,52.23973407796631],[6.162146508572521,52.24019280114264],[6.162422035569605,52.24061876579221],[6.162715810223717,52.24106653205635],[6.163009003227033,52.24148143173736],[6.163373614629791,52.24188490474917],[6.163576804698551,52.24226724623031],[6.163835085465657,52.242726190583284],[6.164020838928336,52.24313084667183],[6.16417165243925,52.243579540565904],[6.16418084175559,52.24410584398122],[6.16418811891374,52.244522621391944],[6.164122463394769,52.24486320071995],[6.164093662884266,52.24525831130173],[6.163904998933492,52.24570923808469],[6.163749728140092,52.24602821472131],[6.163574461837113,52.2462377750917],[6.163453000578006,52.24643603399344],[6.163207691160901,52.2467227409691],[6.162801745706127,52.247021449998506],[6.162288696010419,52.247332104708654],[6.161881785305821,52.24757604310614],[6.161385642540983,52.24782057401948],[6.160960112101546,52.24802082304879],[6.160498851312021,52.24823226101125],[6.160001737387912,52.24842173105378],[6.15952228301379,52.248600423571204],[6.158900354261871,52.24882385329571],[6.158385163284053,52.24901372218712],[6.157870581541858,52.249225488908515],[6.157372073664736,52.24934924461321],[6.157051915356064,52.24943924484018],[6.156446904824997,52.249596542394855],[6.155966257523126,52.24972045442448],[6.155503661688766,52.24984423806977],[6.155201151453514,52.249922883274266],[6.154721049302577,52.250079647250054],[6.154347908539787,52.25020257533142],[6.153832870722317,52.25040337070415],[6.153442980767424,52.25060336094913],[6.153212631190899,52.25071440241617],[6.152947511854959,52.250891668660906],[6.152664729082448,52.25108000529647],[6.152382305957008,52.25129024296615],[6.152100836562012,52.251555256375944],[6.151748308192331,52.25185358066968],[6.15128983643941,52.252218598055315],[6.150724410996751,52.25260621807774],[6.150301055896429,52.25293786529546],[6.149948316851316,52.25322523787068],[6.149771501796815,52.25333619639381],[6.14957776901164,52.253501767790816],[6.149170737089107,52.25374594995773],[6.148711642717894,52.254077812871984],[6.148321697549322,52.25427778618644],[6.147771819444904,52.25453356170658],[6.147327937765578,52.2547119659593],[6.146903227852967,52.254966922807405],[6.146514560773884,52.25524355941775],[6.146141886530944,52.25541055384197],[6.145716401454298,52.25562169427086],[6.145148826639882,52.25588852752392],[6.144563221103371,52.256144508125445],[6.143853185318989,52.25644510893859],[6.143338772531636,52.25668967080913],[6.142717818634429,52.25696806902739],[6.14225584938436,52.25713533450136],[6.14158055815667,52.257380925855585],[6.141154289952273,52.2575482375937],[6.140834410930405,52.25766010453399],[6.14040739064587,52.25778332271229],[6.140015702516671,52.25788441015659],[6.139624202477333,52.25799672123305],[6.139072562000475,52.25815387641065],[6.138735556153178,52.25830938498375],[6.138273342973804,52.25847691489839],[6.137847236824767,52.258655179018916],[6.137437916400525,52.25875636090015],[6.136903742608627,52.25889149092304],[6.136281570747954,52.25911480153571],[6.135747972548168,52.259271539009795],[6.135177911394301,52.25939593208838],[6.134643906962905,52.25954199824028],[6.133949009301987,52.25968880054842],[6.133004319672319,52.25987031520213],[6.132096649642002,52.260117318735695],[6.131491373544065,52.26028572392424],[6.130281929343101,52.260732631025945],[6.129702713561694,52.26088625738772],[6.128747899636951,52.261191396593915],[6.128309902008889,52.261359580008836],[6.126563098852611,52.26210137413753],[6.125662446237294,52.26261089762707],[6.125262455855946,52.26287826712674],[6.124952063810783,52.26316670103668],[6.124327741065853,52.26380566005955],[6.123749798475221,52.26500832823751],[6.123548670197287,52.26617382531573],[6.123518102641798,52.26667762655705],[6.123328250236048,52.26777815869178],[6.123283148407338,52.26823430564058],[6.123042248981784,52.269349481955594],[6.122833820480253,52.2698271474991],[6.12231327104149,52.270713752640155],[6.122092674467005,52.27103757180818],[6.121388698110716,52.27185283360672],[6.120854507688936,52.27234656751002],[6.120277878898952,52.272780171452226],[6.118771717437618,52.27376723690986],[6.116782613321031,52.275003879989654],[6.115900455775262,52.27546209697801],[6.114534976331469,52.27627157034816],[6.11345526435018,52.27715594850808],[6.11305465381763,52.27759433037735],[6.112573504486512,52.27803657578446],[6.112186771062085,52.278611658399875],[6.111807552773322,52.279380493703556],[6.111458254726708,52.28034238708106],[6.111342689397516,52.2810214136259],[6.111359497272909,52.28157547705509],[6.111306690805105,52.282100477283855],[6.11131435995005,52.282556851724266],[6.11155378673515,52.28460325386195],[6.111794356081047,52.28633899456857],[6.111707037003117,52.286882182166735],[6.111454011050927,52.287403915224964],[6.11130084714985,52.287940764878265],[6.111101348584083,52.28841639303731],[6.110729827988703,52.28891975054394],[6.110376621615058,52.289337608514636],[6.110045831523261,52.28965617240528],[6.107513841716736,52.29136953155879],[6.106868884194263,52.291990541916526],[6.106399963140665,52.29247987267476],[6.105988558393025,52.2928300947518],[6.105296460546509,52.29381119092586],[6.105088126275383,52.29427084507033],[6.104982394051802,52.29461668073636],[6.104862888448068,52.29535779364397],[6.104772051928094,52.29635573530994],[6.104578794028014,52.297154593911834],[6.104265425354122,52.297706732070345],[6.104059188824556,52.29801469866944],[6.103632921483401,52.298413033904],[6.102888959071094,52.29898434223184],[6.10255617920173,52.299286331212265],[6.102260001093634,52.29965747615887],[6.101646564361393,52.30055576992385],[6.101326961933296,52.301226390141856],[6.101322139742087,52.30123650380528],[6.101317927400002,52.30124533748889],[6.101317472950374,52.30124534023441],[6.101268478954575,52.30157482151397],[6.101175138061464,52.302309596555126],[6.101102654460847,52.303045081324555],[6.101094725423381,52.3031501808543],[6.101086343344821,52.30331285119976],[6.101082769963999,52.30347550148648],[6.101083546237856,52.30363784687172],[6.101089135500137,52.30380043282473],[6.101099313706741,52.3039630000465],[6.101114061625387,52.30412526103648],[6.101133383639088,52.30428748540646],[6.101157290125165,52.30444940345204],[6.101215346886035,52.30475464440874],[6.101787430105547,52.306322683228906],[6.102554955126195,52.30784599867274],[6.102884647055602,52.30861332066009],[6.102907041713342,52.30868087358329],[6.102929296995346,52.30875433245042],[6.102949279571396,52.30882779608478],[6.102967180328337,52.30890128130778],[6.102983032780549,52.308975048568826],[6.102996837207821,52.30904911584297],[6.103008339706818,52.30912319705284],[6.103030486043509,52.30934636039005],[6.103036574091698,52.30955304711295],[6.102886657044793,52.31061538140122],[6.102834314566667,52.310779728891355],[6.102465779029502,52.31151307732819],[6.102440044661773,52.311551431928976],[6.102352503059018,52.31167835046158],[6.102261497174638,52.311804175368465],[6.102166576622814,52.311929170016626],[6.102068441015512,52.31205306951494],[6.101966620963698,52.31217586770529],[6.101861351057274,52.31229756316005],[6.101752611985014,52.31241786837144],[6.10164064759622,52.31253735708677],[6.101169254424314,52.313003930387374],[6.099100829516597,52.314621035115344],[6.098862042472465,52.314748025654865],[6.097882689603459,52.315280270081566],[6.097780933818308,52.31533677786625],[6.097246591497547,52.31563968291427],[6.096720792925432,52.315948142717794],[6.096203792117904,52.316262452469346],[6.09610986941073,52.316321158804705],[6.095976488892803,52.31640706550499],[6.095845657009771,52.31649463752469],[6.095717379536095,52.31658331758389],[6.095591631735969,52.316673393453875],[6.095468428134454,52.31676485606765],[6.09451361670559,52.31756234848622],[6.093135663763498,52.31911988313349],[6.092809246212525,52.319648471871446],[6.092434142806993,52.32064724924132],[6.092373325976814,52.320988596934896],[6.092386873614945,52.32198561257594],[6.092682757254792,52.32296605980359],[6.093110896305924,52.32368760077653],[6.093642623417016,52.32460906042553],[6.09413920636142,52.3261289833811],[6.094195798471476,52.32722124653933],[6.093830990655108,52.32953135960054],[6.093803813046469,52.329653425412815],[6.093768597007442,52.329830860006695],[6.093738632400133,52.33000827219566],[6.093713737313519,52.330186211334905],[6.093693878177696,52.330364407990224],[6.0936790695793,52.3305428530894],[6.093644247026243,52.33104834494777],[6.093643437542931,52.331573586782035],[6.09371428436285,52.33212198483536],[6.093770270499616,52.332845466647065],[6.094227140324695,52.33444146460816],[6.095129234844795,52.33596457357295],[6.096080647983116,52.33695485415235],[6.097841318402486,52.33829528153455],[6.099955277099483,52.33942824312316],[6.100198278493258,52.339554577819364],[6.100678147718633,52.33981064420687],[6.101150757454171,52.34007209130758],[6.101615673268753,52.340338364580425],[6.102073104937333,52.34060973248534],[6.10220880547035,52.34069317404011],[6.102326724010493,52.34076857989289],[6.102556208973732,52.34092306977612],[6.102667540774108,52.341002164226026],[6.102776602128371,52.34108239579844],[6.102883378359806,52.34116376458852],[6.102987898809858,52.34124627042471],[6.103265686846379,52.34148108830979],[6.104104403319822,52.34238856083129],[6.1046731227825,52.34337153718403],[6.104804822788127,52.34392995786958],[6.10483843001687,52.34517121070785],[6.104519333093032,52.34639718403509],[6.10385769048492,52.34757074717687],[6.103796095289941,52.34763263362796],[6.103507143896824,52.34791610093573],[6.103209881296485,52.348196804596554],[6.102904768005246,52.34847418451084],[6.102591804088764,52.348748249605656],[6.102271223988464,52.34901898042592],[6.101942773808636,52.34928610880667],[6.101606688296415,52.349549633265056],[6.101263436874983,52.34980954191481],[6.10077656048323,52.350179582001715],[6.097250754584927,52.353470992124024],[6.094778516271978,52.356930972577416],[6.094533009268084,52.35738520565191],[6.093977661825154,52.35808789923053],[6.09350662396129,52.35852633719242],[6.092871708801317,52.35905928769348],[6.092246185578559,52.35954865037538],[6.091492633112733,52.36003791799288],[6.090646691817509,52.360415102891515],[6.089894648898642,52.36071167795002],[6.088835952479856,52.361040401179956],[6.087841489997258,52.36128307102901],[6.086226275730172,52.361495975653405],[6.082946308637452,52.36170545605858],[6.081129551819648,52.36197144378141],[6.080487240090315,52.36214625735304],[6.079951481922479,52.36241706318022],[6.07940275742286,52.362651433678344],[6.079070428964205,52.362832011318595],[6.078536729068535,52.36320672529948],[6.078362615595522,52.363413618573006],[6.078098357359868,52.36379686759196],[6.077839957083524,52.36439437941923],[6.077847161112258,52.36448927617289],[6.077715243816068,52.36497482447123],[6.077581669982386,52.365309844532895],[6.077488241041447,52.36592436840224],[6.077485078779714,52.36650213548809],[6.077705983486696,52.36809198511438],[6.077965406171089,52.36872158028202],[6.078051955908386,52.369034814086895],[6.078261641551593,52.369445907548496],[6.078886103547703,52.37022223402387],[6.079710693880093,52.37082409135447],[6.08027660531578,52.37113984699523],[6.080718927033583,52.3714161576061],[6.081152769384932,52.37163353800348],[6.082241558119837,52.372034693268986],[6.082920699265666,52.372237701680774],[6.083969437986359,52.3724674624973],[6.085052679197935,52.37262988030755],[6.085863977901164,52.37271469310868],[6.088100551532374,52.3728980766287],[6.091866452989855,52.37327005409624],[6.094401931243163,52.37371836112758],[6.098089124696811,52.374454619843036],[6.103218946415086,52.37542471679887],[6.107735534385673,52.376234020217005],[6.111302851551324,52.37674085064271],[6.114782786686497,52.3773017507244],[6.115994812786343,52.3775776897337],[6.117030640051899,52.377869308393194],[6.118442376029015,52.378398185728436],[6.11983095035208,52.378967626139],[6.12115679511327,52.37959867376467],[6.122760747824777,52.380655190090444],[6.12353212473705,52.38121101207204],[6.124397989079707,52.38195469825211],[6.125684737779181,52.38366083436618],[6.126102921968346,52.384418822874544],[6.126337696579045,52.38520211472209],[6.126494000708393,52.38590471775673],[6.126331332829953,52.38663739984079],[6.125886012220302,52.38832765106944],[6.125807221373106,52.38887527876741],[6.125285135616201,52.39100331887889],[6.125219280941685,52.391831735627136],[6.125277861730864,52.392343678055056],[6.125655973785727,52.39342098571449],[6.126078221988966,52.39421097155878],[6.126554782902973,52.39493993966042],[6.127921017044145,52.3962500871866],[6.128778695613864,52.39689436829156],[6.129407824127948,52.39774933136369],[6.130662147642971,52.39986399469613],[6.130745734766902,52.40046677877454],[6.130922400133115,52.40132091626312],[6.131020482525988,52.402171340787135],[6.131163854292332,52.40353069549494],[6.131500313044561,52.404710481416835],[6.131618233063329,52.404977406811426],[6.13189220736417,52.405567757581636],[6.132183147816222,52.40615547534719],[6.132490805562435,52.40673970770902],[6.132814946378199,52.40732047399138],[6.133935592799225,52.40927191417805],[6.134101391656361,52.409557921759514],[6.134259197267892,52.40984566025615],[6.13440874497604,52.410135131369096],[6.134549839042529,52.41042606672931],[6.134682920037213,52.410718454596974],[6.134807297107862,52.411012299360046],[6.134923421116911,52.41130732856321],[6.135142600806213,52.412142369414305],[6.135148648574233,52.41322087015069],[6.134848289221369,52.4142836085749],[6.134342465100665,52.415461958519],[6.134032564624245,52.416070033811664],[6.13378314973053,52.4164788624512],[6.133648215972332,52.416704129830734],[6.132762207251102,52.41803232197825],[6.132465748305203,52.41849987349947],[6.132069497782592,52.41915258063216],[6.132030182205337,52.41921854677239],[6.131999131988007,52.41928474852661],[6.131878262472387,52.419540537704684],[6.131146320110032,52.42104947207325],[6.130789481564145,52.42175360668148],[6.130487689624947,52.422371165627105],[6.130437219039915,52.42247090543712],[6.130392748883062,52.42255853695111],[6.129729290666629,52.42356792995538],[6.129471234441867,52.423946747493034],[6.12723443894111,52.426484634388274],[6.124958636860209,52.428214097473585],[6.124756231760716,52.42840634848505],[6.124144160283604,52.428969360281066],[6.123505939940403,52.429494063625555],[6.12303412961146,52.42984414870894],[6.122741310040955,52.430071785444916],[6.119681071295985,52.43279185473744],[6.117761512551908,52.43457879376187],[6.115232222918179,52.437008982395554],[6.11393932719081,52.43817578485069],[6.11183354931771,52.4395932998495],[6.11088478942156,52.440102979807996],[6.109283634550393,52.440798066003424],[6.106560358164749,52.44182126113701],[6.105358305070381,52.442392247313094],[6.104717721732369,52.44281040969748],[6.103823071953742,52.44349271836888],[6.103339317700271,52.44397507644701],[6.103000008352962,52.444423988276455],[6.10239844038248,52.44528342444994],[6.102025131660891,52.44670067902597],[6.102108194151679,52.44805761265353],[6.102217399466068,52.448613626574996],[6.102489007401701,52.44933522056578],[6.103111702014322,52.45085655985979],[6.103337362440769,52.45187586897866],[6.103512150135053,52.45280363952762],[6.103479802007746,52.454085420939045],[6.103531718120599,52.455275143739854],[6.103367809410596,52.45612630941166],[6.103333686255538,52.45648939457998],[6.102628168272781,52.45913154919678],[6.102125776505512,52.461373643218835],[6.102000390456702,52.46229339209747],[6.101971969687621,52.46545583108854],[6.10147856553376,52.46699457786374],[6.101336264427426,52.46720973790572],[6.101203063270957,52.467646722044854],[6.101023102956343,52.46793681420729],[6.100884921785327,52.46832271490852],[6.100402655162791,52.469030027963626],[6.099788208626956,52.469785319004366],[6.098991279046014,52.47060377162177],[6.098358794793448,52.47115553823728],[6.095508928402275,52.47335211486995],[6.093890577521474,52.47444169747663],[6.092337647503093,52.475457564825774],[6.09115753275343,52.47603024501211],[6.089589891492745,52.47672063876144],[6.087561580993004,52.47753057376344],[6.086180498690004,52.47796732911364],[6.084507127624566,52.478526276484644],[6.082734068511397,52.47889029453993],[6.081101279496061,52.4793725602603],[6.08112768236045,52.47935443040191],[6.078746738013467,52.47981267576862],[6.075384071303559,52.48065376986571],[6.071924110671926,52.48196353194476],[6.071988740078766,52.48191822043495],[6.070179781679213,52.48275888912712],[6.070237722453888,52.482713050905645],[6.068803418933242,52.4835088476899],[6.06682267969716,52.48486920879954],[6.065638335426423,52.48577363158713],[6.065184275091162,52.48616522252891],[6.064124048316574,52.48721665830603],[6.063553211183659,52.48788640221647],[6.062709814508477,52.4890258973904],[6.061859626061987,52.49043308484789],[6.0615794658371,52.490932933963855],[6.0611695791727,52.49175313721109],[6.059850564881847,52.493971012639584],[6.058576140720279,52.49589147133096],[6.057509192500217,52.497254356335674],[6.056881675804325,52.49787327369217],[6.056426102388363,52.49828421504816],[6.055358242081939,52.49915304583861],[6.054423458517078,52.49972565100871],[6.054037949627769,52.49993313204079],[6.049933055546886,52.50192723887222],[6.048359771109803,52.50263676471812],[6.04802402247461,52.50283665049858],[6.047541110037339,52.50305924862292],[6.04677371583259,52.503449140296894],[6.045648601174199,52.503941566672395],[6.045308799896158,52.5041338816142],[6.043726026644368,52.504942548575706],[6.043056135077353,52.50522374651595],[6.042636174302302,52.505442893446244],[6.041845702436977,52.50567868956746],[6.041457384631019,52.50581339915402],[6.040833140416836,52.50607074017703],[6.040194150603418,52.50629557914905],[6.039240101014573,52.506552480362],[6.038308903607673,52.50683059383664],[6.036025365707289,52.50742224064753],[6.035253529263452,52.50764694366132],[6.032825584203125,52.50823734919718],[6.03084455733778,52.508750296868676],[6.030050698079314,52.50899951345668],[6.029312780988001,52.50917119179769],[6.028579355144382,52.50938270999555],[6.027828387344849,52.50965471469897],[6.027447172360223,52.50897013367167],[6.02744366756686,52.50897121312337],[6.027397504558815,52.50889810595985],[6.027384373400228,52.50887731674389],[6.027323104556352,52.508780294337825],[6.027242729219832,52.50865466878597],[6.027094742865104,52.50842219553255],[6.027013222025971,52.50829163284883],[6.026976350057565,52.50823039288054],[6.026919939168977,52.50816456679876],[6.026869751688048,52.50810636451426],[6.026839667609599,52.50807238307771],[6.026776243846427,52.50800336822073],[6.026643405412874,52.50786150606039],[6.02644166103527,52.507647251984466],[6.026009347930726,52.507186839471494],[6.025882967572729,52.507051205987764],[6.025837764883357,52.50700242233211],[6.02582060456713,52.5069860765121],[6.02580245384257,52.50696948437148],[6.025642584612977,52.50683107405618],[6.025463102950866,52.506674722079204],[6.02536576431257,52.50659056521532],[6.02534655888549,52.50657333157666],[6.025329232028397,52.50656072540296],[6.025249383272573,52.50650552209607],[6.025216375535503,52.5064831049785],[6.025188741559018,52.506465620070564],[6.025160053853599,52.506445543422416],[6.025145028139296,52.50643826344833],[6.02512434903033,52.506428101916825],[6.025108661351168,52.506420879424326],[6.025085612365003,52.50641082050944],[6.025002749284793,52.50637326682697],[6.024536054795902,52.50616576378538],[6.024289761784813,52.50605583927256],[6.024239101010857,52.506032824677604],[6.02396346665317,52.50591452791623],[6.023537722705687,52.50573118429818],[6.023462384669195,52.50570050957944],[6.023328439337668,52.50561656542369],[6.023170310810126,52.50551632156568],[6.023085656930752,52.50546157397835],[6.023070212998144,52.5054517974455],[6.023064891474793,52.505448419697295],[6.02302264965832,52.50542695023889],[6.022988002616504,52.50540920583191],[6.022925751080055,52.50536670489386],[6.022851473743834,52.50533188084085],[6.022759716216057,52.505317704957875],[6.022739320327952,52.505314866349075],[6.022714925001328,52.50531147396663],[6.022673085385335,52.505305649556774],[6.022661293509875,52.50530400511026],[6.02258313392353,52.50529312655654],[6.022298641818058,52.50525161810541],[6.022196720191215,52.50523732545822],[6.021937341518914,52.50520096634614],[6.021540023452856,52.50514366663196],[6.021201929806515,52.50509455119691],[6.020901616938357,52.5050516769888],[6.020544414378958,52.504999992493424],[6.020521951781054,52.504996805039994],[6.019939459722761,52.50491411030643],[6.019508699699708,52.504852785048506],[6.019337619320298,52.504827489436444],[6.01926426457235,52.50485685630098],[6.019173394209057,52.504890109211495],[6.019140948816156,52.504902568096455],[6.019118133410672,52.50490765080384],[6.018995646395306,52.50494130572612],[6.018912017903856,52.50496191031926],[6.01867141063835,52.505017413677436],[6.018191757882609,52.505129614942305],[6.018034115494765,52.50516658358556],[6.01766537439129,52.505259750202406],[6.017554764252944,52.50527743252267],[6.016862000954558,52.50544469525698],[6.016373929180618,52.505569318667185],[6.016017183676881,52.50565513657023],[6.015900837725401,52.5056807657828],[6.015633306064994,52.50576163371965],[6.015416491772933,52.505825389725686],[6.015317479869286,52.505859231026335],[6.015272670928941,52.505873461961755],[6.015206640572218,52.505905501740266],[6.015197420370089,52.50590964888776],[6.015185799895811,52.50591486927549],[6.015174570294372,52.50591961125236],[6.015163121179983,52.50592445325352],[6.015159475566793,52.505925991453275],[6.015122140452622,52.50594274420525],[6.015117824899277,52.505944816216136],[6.015080448221851,52.505962791480975],[6.015072855878362,52.50596644467232],[6.015052390185132,52.505957646370234],[6.014820657882322,52.505857969857054],[6.014729715353032,52.50581915758334],[6.014674624567058,52.505803262524495],[6.014626397532716,52.50578840963097],[6.014542671719947,52.50577442756861],[6.014450909166989,52.505776359960656],[6.014317730683692,52.50579291833867],[6.014228889292067,52.505807642362],[6.014086751829391,52.50583120420904],[6.013907475589265,52.50585944694408],[6.013780260435423,52.50587901997937],[6.013613650257125,52.505904121604765],[6.013368596824592,52.50591904090215],[6.013054082926265,52.50593819093656],[6.012879441457484,52.50594953803424],[6.012877145834741,52.5059496849592],[6.012820721988563,52.50595089936967],[6.012800620866892,52.5059511671885],[6.012744264035033,52.5059519138568],[6.012694969874231,52.505951113339215],[6.012561764120998,52.50594814894116],[6.012561027477687,52.50594813485067],[6.012539981705497,52.50594722125117],[6.012397318990511,52.50594106203357],[6.01236751894762,52.50593977214111],[6.012365626951009,52.505907049483945],[6.01209087070242,52.50580164470997],[6.01204183936634,52.505788179088704],[6.01166730380546,52.505685330218355],[6.011587407062621,52.50566290458285],[6.011519574776433,52.505662461822084],[6.011381804505084,52.50561264110971],[6.011236395450576,52.505560056321876],[6.011174732480236,52.505537570407704],[6.010957922152194,52.50545392252735],[6.010554014260192,52.50529933057434],[6.010456808517199,52.50526096138741],[6.010421531621287,52.505249355130566],[6.010352166218532,52.505227897899154],[6.010296484595347,52.50521067376179],[6.010109003052486,52.50522522989575],[6.010084547773651,52.5051987192747],[6.009931789601833,52.50514387068411],[6.009723135053439,52.505070090986216],[6.009611113912663,52.50502442909678],[6.009478023274795,52.504977161044586],[6.009146483836488,52.504861100603236],[6.008912415704039,52.50478036159679],[6.008853001914994,52.50475845586609],[6.008849345019589,52.50475710892977],[6.00884639870796,52.5047560189071],[6.008756426892984,52.50472285014766],[6.008658285405845,52.504693139400466],[6.008577263916338,52.50467114005359],[6.008372442328964,52.504593104771565],[6.00815603856514,52.50450728366156],[6.008086532471935,52.50448194322833],[6.008001707017064,52.50444389368022],[6.007856397632129,52.50437687923665],[6.007756253268535,52.50432926605618],[6.007610029811739,52.504260036172134],[6.007396498804564,52.50415097484144],[6.007262614280645,52.50408352244375],[6.007231534526085,52.50406861284218],[6.007198912569166,52.50405295634212],[6.007121484499491,52.50402660522139],[6.007126574631823,52.503912886194236],[6.006969235825024,52.50383855478043],[6.006204959350248,52.50347483940011],[6.00588892365171,52.50332336791237],[6.005598266245309,52.50318345603657],[6.005330881337466,52.50305726295831],[6.005105595689479,52.50294830372652],[6.004939609907369,52.50286704035291],[6.004871788755128,52.502819696746535],[6.004765669596249,52.50274665944754],[6.004606810902238,52.50263993273116],[6.004457758490315,52.50253930223758],[6.00436008115237,52.50247164012213],[6.004210778137264,52.502370911759826],[6.003965271069041,52.50220558684557],[6.003856173520347,52.50213103634254],[6.003760540368557,52.50206830625282],[6.003686555575134,52.50202129959364],[6.003678427547965,52.50201613806192],[6.003629049868881,52.50198475860151],[6.003471328847551,52.50188528638809],[6.0034251048163,52.50185613733919],[6.00338960568531,52.501834607904854],[6.003228038072979,52.501733807225236],[6.002462503036353,52.501256939131636],[6.002198791669946,52.501091651095535],[6.002021486667269,52.50097819504402],[6.001846227402911,52.50086140273218],[6.001812528393329,52.50083894676631],[6.00177480469348,52.50081618809879],[6.001736273132121,52.50079040480332],[6.001569066019077,52.50067854046413],[6.001553592435973,52.500668284956866],[6.001412501713635,52.50057473651555],[6.001310381662555,52.50050147768852],[6.001147895305171,52.500392158745534],[6.000893917909528,52.50021974421537],[6.000825906141283,52.500176093166154],[6.00079884219794,52.500156253902595],[6.000788977682686,52.50014901604833],[6.000788474381065,52.50014882991428],[6.000731938694204,52.50011497876425],[6.000702935898673,52.50009762108576],[6.000702330640635,52.50009751636674],[6.000595211368899,52.500078738330075],[5.998921363791788,52.498935604359154],[5.998757878362234,52.49882454371642],[5.998055689915907,52.49834752720859],[5.997969899926272,52.49829362144413],[5.997529581678759,52.49799405091241],[5.995188881099225,52.496420448045995],[5.994924731698109,52.49623314458791],[5.994807097676,52.49614922854808],[5.99443470202108,52.49588357696228],[5.993407351997858,52.49516285566366],[5.993393531724661,52.49515261760271],[5.993149574231293,52.49497198356958],[5.99296736958959,52.49482417064838],[5.99232454993127,52.494335591451275],[5.991722490124143,52.4938988029273],[5.991555914192864,52.4937905522391],[5.990906701893162,52.49342884824961],[5.990597545637652,52.493256602767296],[5.989518926104235,52.492658573115506],[5.987012185930365,52.49126864804564],[5.986764422217617,52.491134935178195],[5.98675826671932,52.4911316139495],[5.986613318830375,52.49102593423581],[5.985692029326917,52.49047585876644],[5.983369385976624,52.48910141056571],[5.982504081702525,52.48857763200083],[5.982216396221002,52.48838764129796],[5.980707197762056,52.48732757457999],[5.979141925729995,52.48623707615292],[5.978443793992132,52.48575067521125],[5.978414534439757,52.4857160662483],[5.978416774615203,52.48570194460992],[5.978410371975412,52.4856976535251],[5.97779368582963,52.485284091152394],[5.977771388327679,52.485269139086384],[5.977747527362433,52.48525286464593],[5.975485414092687,52.48371047754658],[5.972928941967772,52.48197181175111],[5.970477432543698,52.480396831143175],[5.970477313839856,52.480396759826775],[5.970691342261005,52.48024032050336],[5.970578818587461,52.48015988740378],[5.970578194445621,52.48015944109731],[5.970544389439083,52.48013435240912],[5.970540256790138,52.48013129001229],[5.970342615825673,52.479984614773755],[5.970042974638074,52.47977834993045],[5.96945999228087,52.479367796059144],[5.968950482389161,52.479012763431385],[5.966768683162252,52.47749355205461],[5.966763647306883,52.477490044564085],[5.966500780639021,52.477311964703546],[5.966424015075128,52.477259960318854],[5.966365186403055,52.477220972114964],[5.966324873123787,52.477193100915684],[5.966305771099915,52.47717989264504],[5.96623015036999,52.47712760392703],[5.965487124762638,52.47654834267754],[5.965360823598285,52.47645629699322],[5.965326731168968,52.47644479742059],[5.965302422853457,52.47644424191357],[5.965283619700227,52.47644820726146],[5.965270005267549,52.47645388190155],[5.965257668526071,52.47646271393255],[5.964786147333326,52.47695725256608],[5.964429071425348,52.47732207167034],[5.96421643252256,52.4775393208328],[5.961918680872215,52.479915938036086],[5.96153890122239,52.48030213166123],[5.961290133943249,52.48055973374525],[5.960451853852146,52.48142775531753],[5.959791626567558,52.48210543519528],[5.959771004554482,52.48214420824186],[5.959760758318589,52.48216348210642],[5.959752983703043,52.48217809746761],[5.959670869151894,52.48233251372933],[5.959659651776575,52.482359782207375],[5.959626798277136,52.48243960651609],[5.959581371795035,52.482675030083406],[5.959527364238265,52.482840131516525],[5.959493877882355,52.482907511076036],[5.959460821508617,52.48297399878159],[5.959324240636437,52.48315946903583],[5.959060785819536,52.48344807221298],[5.958697107376592,52.48383821398529],[5.958569640351988,52.48388876324839],[5.958413138680185,52.484019881845526],[5.958405653175189,52.48402275797969],[5.958301047254483,52.484063013899586],[5.958155522698194,52.48407991943954],[5.957191131872703,52.484052636632924],[5.957049540105717,52.48405946483984],[5.956870109311891,52.48408419816225],[5.956588370514988,52.484127739278044],[5.95657345780162,52.4841300398168],[5.956540639900449,52.4841354731275],[5.95642361529031,52.48414551697239],[5.955546994760351,52.4841423263183],[5.954659691530207,52.484141813672096],[5.954644425193838,52.484141805861675],[5.953782181321143,52.48414154416998],[5.953399271258066,52.48436188781879],[5.95329164880995,52.48440496680717],[5.953123195188337,52.48443531316556],[5.952985441524519,52.48444769945414],[5.952881580089596,52.48443847958017],[5.952761215020205,52.48439470036295],[5.95264746045688,52.48433138652433],[5.952626733355312,52.48431535274942],[5.952526831915205,52.48425431846735],[5.952394839092202,52.48420489622812],[5.952259430621272,52.48417845329614],[5.952164828325428,52.48417026716612],[5.95145157629036,52.48413276197275],[5.95125684725681,52.48412065675643],[5.951146947699358,52.48410424710018],[5.951012281447595,52.48407243365321],[5.950717390242853,52.48398896647046],[5.950459197846081,52.48391912905306],[5.950441057348138,52.48391537756553],[5.950240272683775,52.48387389221746],[5.950231859292653,52.48387215264447],[5.950119370989005,52.48384890582655],[5.950013339017834,52.48383555049593],[5.94988974750158,52.48380856343257],[5.949784064215008,52.48373124190486],[5.949707661961921,52.48368512989034],[5.949525443065856,52.483590465824165],[5.949176752602192,52.483431853521296],[5.948855810601091,52.4832671679609],[5.948401086988897,52.48305281168203],[5.948182744519672,52.48295556638029],[5.947937743094575,52.482858320960084],[5.947835911501762,52.4828671520382],[5.9477650448165,52.482855605646115],[5.9474500135642,52.48273605074168],[5.947012901482876,52.48253623763732],[5.946794901619246,52.48243421578443],[5.946320105496247,52.48216075434509],[5.946312510295196,52.482156161584626],[5.946207051922962,52.4820923171284],[5.94620635451325,52.4820918800276],[5.946040295918247,52.48198886587027],[5.945982031594398,52.4819458475404],[5.945936150340567,52.48188558663233],[5.94589384422893,52.481820500520286],[5.945853213739921,52.48173308143782],[5.945782204103353,52.481670449341905],[5.945720153303373,52.481628284566774],[5.945002472831566,52.48114648033535],[5.944979954936562,52.481128179805],[5.94473709319482,52.48093081445363],[5.944547660512646,52.48081333034536],[5.943971911407439,52.48045201353529],[5.943971006275182,52.48045144258388],[5.943139798479668,52.47995795518524],[5.942677397070682,52.47968176971483],[5.942580321457354,52.47962813754105],[5.942451391623794,52.479556904104136],[5.942179450976643,52.479400751793754],[5.942178798596567,52.47940037737129],[5.941979293713388,52.479289730906515],[5.941678139751921,52.479129067611495],[5.941527874564096,52.47904653676462],[5.94124786463064,52.47891077684894],[5.941041053570087,52.47881344655179],[5.940678122955587,52.478651226907665],[5.940673060186106,52.47864894074829],[5.939968896959521,52.47833102074152],[5.939946011181494,52.478320683937],[5.939782862237379,52.47824793548824],[5.939624559758932,52.47817426547384],[5.939434207921932,52.478073062926455],[5.939124787516922,52.477893782514464],[5.938807492755872,52.477690756892706],[5.93866586653203,52.47758960496359],[5.938464373768597,52.477445671971005],[5.938406392974884,52.47740424838441],[5.938260447835991,52.47732606126276],[5.937983898436222,52.47712260133718],[5.93777157379207,52.47695480163606],[5.937767532241241,52.47695175565535],[5.937661812514039,52.47687202382488],[5.937565229765206,52.476809703292275],[5.937546978611953,52.476797924473196],[5.937198983094081,52.47662467802409],[5.936879960830457,52.47649905602437],[5.936765552641079,52.47648149460618],[5.93675506738288,52.47647988052491],[5.936737429868688,52.476477176159605],[5.936622536385815,52.476479766935554],[5.936490462766083,52.476509345935476],[5.93633668043136,52.47655329758983],[5.936333424393826,52.476554229404606],[5.936297739765194,52.47656442482561],[5.936198375270802,52.47668792462011],[5.936119577511508,52.47679640076667],[5.936028550589369,52.476921695256536],[5.935937952876533,52.477035366787256],[5.935828763069281,52.47714656285084],[5.935799210243831,52.4771693572385],[5.935635685649991,52.477295535173646],[5.935582873314647,52.47731809559797],[5.935539255800568,52.47733672185512],[5.935409779657441,52.47739203693535],[5.935242673823486,52.47730674496019],[5.934631328573893,52.477112176583354],[5.934352607826225,52.477021952347314],[5.934351839358818,52.477021704243406],[5.934340578279645,52.477018062344776],[5.933705022572892,52.476812330578646],[5.933316627826497,52.47668944549848],[5.933287532314746,52.47668024149179],[5.933053149156966,52.47659346785991],[5.933050812919547,52.47659260682688],[5.932790923055377,52.476478439263744],[5.932191411242272,52.47627962466391],[5.931795138902111,52.47615218718689],[5.93070757415852,52.4758024407972],[5.930438260645702,52.47572302120292],[5.929966136752668,52.4755882588765],[5.929757367155879,52.47551871640325],[5.929690965005013,52.47549061969947],[5.929687576866836,52.47548918821207],[5.929657645667254,52.47547652693723],[5.929349783592632,52.47533795451074],[5.929015468586623,52.47518811499389],[5.928263172248385,52.47495464887108],[5.927382618538354,52.47466983256103],[5.927304922368765,52.4746447069493],[5.926887532353794,52.474504308417536],[5.926275506926659,52.47429842979471],[5.926053972022713,52.47422390585253],[5.925615825909931,52.474076524021505],[5.925559519113703,52.47405759138362],[5.925420811486658,52.47422043754055],[5.925284396988377,52.474424229355016],[5.925171922208412,52.4746130379568],[5.925137345596715,52.474702252462386],[5.924895974829171,52.475114419948454],[5.924089744416031,52.4764535873213],[5.924025933199382,52.476579225557565],[5.923979701502783,52.476690763583015],[5.923922115013386,52.47690965522796],[5.923885967937203,52.477096552986865],[5.923721972792813,52.47741830330759],[5.923664487854004,52.47751357974148],[5.923620479330759,52.477586515052444],[5.923379615263359,52.4779895185051],[5.923175056963365,52.47835343224286],[5.922936165083335,52.47878258849543],[5.922733564958942,52.479172646256835],[5.922371327102741,52.4798887641576],[5.92193220524457,52.48068615138151],[5.920793842238439,52.482655307562545],[5.920787133656876,52.48266662609196],[5.920767628272039,52.48269953633251],[5.920645907614229,52.48285744672866],[5.919370703507171,52.48491396917569],[5.918878938231178,52.48569081903373],[5.918532379768129,52.48620232458168],[5.918302929862572,52.48652524965373],[5.918106224906948,52.48680209241647],[5.91756982095804,52.48762303130343],[5.91708478824702,52.4883513553197],[5.916574937065633,52.489085090642014],[5.915258601246212,52.490867476855485],[5.914408203840859,52.491958156372284],[5.914359470279408,52.492026282644524],[5.914346696863555,52.49204415267044],[5.913787112932063,52.49272895259723],[5.911781859887094,52.49519353193114],[5.911500251958649,52.49554303398209],[5.911310005356268,52.49577915871022],[5.910220045841458,52.497143069247954],[5.910228829576566,52.497194654642264],[5.91024022978413,52.49724708230476],[5.91021720331254,52.49730468583869],[5.910171089795289,52.49734266366174],[5.910090564352162,52.497385835212185],[5.910003008334763,52.49740236283965],[5.909559928272567,52.497954583665475],[5.909119310250601,52.49843445161805],[5.908685337594441,52.49887179579537],[5.908386127883992,52.49918386265948],[5.907477216529216,52.5001408331546],[5.90684730203172,52.50079752457787],[5.906112149505743,52.50148738751947],[5.905574817538215,52.50201742856829],[5.905361888558383,52.50223333968121],[5.904901230401665,52.50267836246573],[5.904883046998839,52.50269639882821],[5.904715728008883,52.502862453796986],[5.903835586605019,52.50370476916307],[5.903525040601881,52.50399898754545],[5.903101285920118,52.50440508838592],[5.902906672128233,52.50456820370649],[5.902691068269016,52.50474891753838],[5.901258647741566,52.50594948047828],[5.901079828818967,52.50610158648582],[5.90094304290738,52.50622947763751],[5.900846309248478,52.50631856701804],[5.900465226177733,52.506670548461834],[5.900289438221888,52.50683553712871],[5.900078933966139,52.50699051085634],[5.899730451178511,52.50725001165569],[5.899423985580366,52.507482736019135],[5.899117647765896,52.50770008147012],[5.898962746624512,52.50784684124158],[5.898745832244693,52.50794645048007],[5.898553842438218,52.50807686870805],[5.898425346708616,52.5081662637682],[5.897941699075047,52.50849052124903],[5.89744899146095,52.50882420759001],[5.897247506097468,52.50896975445347],[5.896784493174802,52.5093719294826],[5.896464573404898,52.50963614193376],[5.896153962271304,52.50990061911898],[5.895528681173723,52.51042088851127],[5.895280178486237,52.51061128313568],[5.894440469874079,52.51122212393814],[5.894353792946051,52.511300110272174],[5.894328838829565,52.51134109191439],[5.894270469617303,52.51138795042338],[5.894133506998703,52.51149973769383],[5.894008743073578,52.51159120596897],[5.893638148261027,52.5118607050263],[5.893469692777713,52.51197545703763],[5.893024491591126,52.51228327153451],[5.892880799894231,52.51238168573299],[5.892877131241001,52.51238419988658],[5.892807572713999,52.51243185132405],[5.892737639027368,52.512485346160396],[5.892634023168394,52.51256910144637],[5.892619660839864,52.51258071152642],[5.892617881654704,52.51258228292475],[5.892349137614086,52.51282109199685],[5.892214871342538,52.51298910894747],[5.891789134099608,52.51331826186923],[5.891404773840376,52.513605122148036],[5.889907161179706,52.51472276804146],[5.88987706973417,52.51474522938035],[5.889824946408826,52.5147825145024],[5.889775802839937,52.51481627288425],[5.889769458910652,52.51482063171411],[5.887854185991473,52.51633075808749],[5.887602609163845,52.516554708247035],[5.887512549772142,52.51665599912995],[5.887404488198969,52.5167937919463],[5.887276735751928,52.51690619729006],[5.886534798053785,52.517377640547366],[5.886416292432564,52.51743521860709],[5.886316560451277,52.51747236100492],[5.886177130733494,52.51750619219946],[5.885893127880662,52.51757636524005],[5.885760174432233,52.51763580087221],[5.885818520527392,52.51767013924161],[5.885548847891666,52.517819637203814],[5.885430147028773,52.51787318871585],[5.885254819165321,52.51792856868957],[5.885270873823932,52.51795824068578],[5.885295324343566,52.518003416691805],[5.88530146004598,52.5180209973048],[5.884912182681457,52.518370400188985],[5.884798436086915,52.51843365466674],[5.883363581958837,52.51923157519176],[5.883344035760235,52.51923592598567],[5.883318754468679,52.51923075611597],[5.883306627156208,52.51922534248552],[5.882956165036082,52.51909247277005],[5.882730101286167,52.518996784624534],[5.882679124716848,52.518978402599075],[5.882604470928269,52.51896122490467],[5.882543803722634,52.519015366913465],[5.882433190110351,52.51910093078835],[5.882292536633791,52.51919187760009],[5.881890979385502,52.519395150112395],[5.881829911283443,52.51944125865817],[5.881762548358534,52.51952123108459],[5.88197715723721,52.51959783461589],[5.881996046482057,52.519607138691455],[5.882007516795543,52.51962623406086],[5.882005418820889,52.519637540009526],[5.881997505523882,52.519665002650385],[5.881932447853172,52.519737703711066],[5.881899623140289,52.519768038378956],[5.881898359632275,52.51976967037321],[5.881869665807213,52.519803133402476],[5.881860225004313,52.519812627549385],[5.881859598449688,52.519813250294945],[5.881814317533892,52.51985878968859],[5.881783768406166,52.51988184400521],[5.881724525223818,52.51993836130723],[5.881559021077511,52.52000641200526],[5.881470764023089,52.52006263668196],[5.881292698696122,52.520198459603826],[5.881000229668095,52.52045045372531],[5.880948134554651,52.52050601516316],[5.880946969797406,52.52050726027649],[5.880931259798389,52.520524024308806],[5.880610607775413,52.520766077823794],[5.880507176853665,52.52086357222741],[5.880448189078779,52.52089838317987],[5.880346955267733,52.52098422958838],[5.880329105134331,52.52099937571233],[5.88032254609223,52.52100310580033],[5.8803198521781,52.52100463587483],[5.880054427507113,52.521155388663054],[5.879870344515038,52.52124787906766],[5.87978062723091,52.52130173584365],[5.879707441468653,52.52134242024561],[5.879451937361445,52.521430551047715],[5.87926792420501,52.52152952014643],[5.879264438434626,52.52153139500375],[5.879215432454748,52.5215577427079],[5.879138114836436,52.52159529829539],[5.879073803895615,52.521628593781266],[5.879022647582016,52.52166164595095],[5.878986183709617,52.52167114406134],[5.878945618183298,52.521677495592996],[5.878909826746754,52.52167329406159],[5.878717834883924,52.52160112094307],[5.878472863274892,52.521496111225325],[5.878044218117502,52.521299497503556],[5.877860529233552,52.521207875808976],[5.87776275870021,52.52114850487697],[5.877421290688918,52.521341061150196],[5.877198229838648,52.52146801346268],[5.877195228285724,52.52146971549763],[5.876584472768847,52.52181731801262],[5.876476480195765,52.52187649632264],[5.876475557573327,52.52187700342401],[5.876205472580007,52.52202502557984],[5.876065326219734,52.52196156792134],[5.875764508596839,52.521874434084],[5.874253933418752,52.52138336369374],[5.873414635579964,52.52111611507957],[5.873299425916485,52.52107943330753],[5.872210896189275,52.520729623350476],[5.871827355392406,52.520593279135866],[5.870886242279379,52.520293121265055],[5.870883683056585,52.52029217903512],[5.870815132545693,52.52026704214123],[5.870519304165066,52.52017336780001],[5.868152585125585,52.519418123099626],[5.868130940468227,52.51941121865484],[5.867686265655825,52.519266678756146],[5.865795554448772,52.51865618644276],[5.865697529548378,52.51862432610355],[5.865673326453495,52.51861646089173],[5.864310337309485,52.518173461399726],[5.86431041320466,52.51817366780509],[5.864502379874876,52.51865306629361],[5.864191362724374,52.519781402635665],[5.862055319509428,52.52158296279916],[5.86262544217621,52.52334529407612],[5.861836526296914,52.524786438661195],[5.860753415366247,52.527867550731344],[5.860607959399744,52.528281273016034],[5.861139672657857,52.5310733848526],[5.859252275461649,52.53568863545752],[5.859054319005174,52.53634296731847],[5.858952450407636,52.53667984195823],[5.857050361333303,52.543160266045795],[5.856903076189568,52.54373407228713],[5.856844920048645,52.543960945828765],[5.857869637806997,52.54460454177433],[5.857761048815232,52.54502709988221],[5.857725870329375,52.545163451839635],[5.857600702495856,52.545650389032026],[5.857501677666159,52.545695718367384],[5.857304720318382,52.54578103396782],[5.857162262381001,52.5458358100424],[5.857013821712602,52.54587010047837],[5.856358909721234,52.54584404006599],[5.855076208006399,52.55082417116249],[5.84633573436064,52.55668687828585],[5.828334113019699,52.568754617775795],[5.815361182158409,52.577445073186986],[5.814880356772238,52.57775406321848],[5.81437817355529,52.578050483030886],[5.813856500742949,52.57833377741815],[5.813315568899776,52.57860337011352],[5.813240526133577,52.57863902232181],[5.813135660792051,52.57868771416379],[5.813010346546626,52.57874545754059],[5.812861166129616,52.57881283083745],[5.812725968545707,52.57887229895377],[5.812603613900033,52.57892497145648],[5.812497089082331,52.57897001085681],[5.812380449492288,52.57901873521735],[5.812278730550652,52.57906038698243],[5.812143264014692,52.57911507416541],[5.812005930166023,52.57916892307121],[5.811876625132366,52.579218537055425],[5.811760176936247,52.579262766482984],[5.811636604491889,52.57930871087221],[5.811472355599475,52.57936827242036],[5.811307866111552,52.579425875375186],[5.811143589354773,52.579482632537676],[5.811022032358335,52.5795235092545],[5.810902541791161,52.579562976457545],[5.810772013391732,52.579605286948606],[5.810628836371561,52.579650167831176],[5.810464265215407,52.579701029451485],[5.810248657674357,52.579765275012356],[5.80999416805144,52.579838079724745],[5.809802186001194,52.579890718656785],[5.809695954389538,52.579919181964065],[5.809649291512312,52.57993170550782],[5.809516371897744,52.57996643786833],[5.809379542639617,52.580001192970016],[5.809209603760003,52.58004336327136],[5.809003525390819,52.580092402184476],[5.808919793504755,52.580111797587485],[5.808820190119341,52.580134619522525],[5.808675971147781,52.58016658704045],[5.808617080174255,52.58017943219366],[5.808569229739389,52.58018971271076],[5.808470067267262,52.580210852167916],[5.808397595406967,52.5802259922184],[5.808196055154833,52.58026687116389],[5.808014734170396,52.580302339663774],[5.807832718122258,52.58033612074333],[5.807696940615569,52.58036075950172],[5.807669088186838,52.58036563038708],[5.80748544209475,52.58039716989051],[5.807221675837638,52.580440235663076],[5.806951428465723,52.58048135555345],[5.806672406473899,52.58052137343651],[5.806372869215865,52.58056062728472],[5.806176220303266,52.58058407719741],[5.806015951162914,52.5806026172259],[5.805887680219158,52.58061626297059],[5.805596575628513,52.580645662041746],[5.805499154818005,52.5806547050076],[5.805407019762843,52.5806626148533],[5.805325708101879,52.58066992031061],[5.805243715125709,52.58067694950622],[5.805154104216562,52.580683448254675],[5.805057348577151,52.580691086503364],[5.804959218304728,52.58069845989259],[5.804864074793763,52.580704968903305],[5.804757394376452,52.580711527403274],[5.804662029509729,52.58071803703052],[5.804551652738257,52.580723763540966],[5.80446157091822,52.580728852422126],[5.804371011699637,52.580733385702416],[5.804282535295402,52.58073819020124],[5.80418552091109,52.58074190121584],[5.804099807432552,52.5807455724666],[5.803982274001236,52.58074963397448],[5.803887103711413,52.580753338271165],[5.803786390344698,52.580755938535134],[5.803664924611994,52.580759177712295],[5.803544619010433,52.58076184649935],[5.803319199690612,52.580765162250074],[5.803127177686619,52.580766392361056],[5.77793009201736,52.58085199686691],[5.777949129608153,52.5829982048035],[5.777750187274263,52.58299885942733],[5.777751387440571,52.58313422130407],[5.777759729396227,52.58407505003587],[5.777855910089768,52.59491922562434],[5.777967866845364,52.607534364419315],[5.811383595959718,52.607423369337596],[5.837213982523849,52.60733112215078],[5.840524641963876,52.610413218047626],[5.844297684940603,52.6109256337014],[5.845159810746844,52.61104280448731],[5.845218033140209,52.611050722413225],[5.857651079350751,52.61273834428047],[5.867371684362947,52.61405680616484],[5.891547730538156,52.617331883945845],[5.891568744230937,52.61733460773319],[5.905470255922892,52.619215450038446],[5.908193923447528,52.61839019180861],[5.910601853938276,52.617660906812816],[5.910608257778241,52.61765554916469],[5.915663917641797,52.61353413690535],[5.921887195909992,52.614041874828125],[5.922277702997662,52.61407381869932],[5.932222242920917,52.614884645547505],[5.932690361416731,52.6149229395815],[5.940349541055547,52.618113383467815],[5.955620199161807,52.62291716948642],[5.955285322127077,52.62484233169654],[5.956176919063263,52.62496247592934],[5.956497306297633,52.62500559889919],[5.956539145695769,52.62501129405817],[5.9569288884819,52.6250636369581],[5.971495572986905,52.62702289336588],[5.974325519981364,52.62740325947308],[5.98101551844723,52.628302155070315],[5.985628203604994,52.6289218907593],[5.986272331500126,52.629008230080146],[5.988626474219889,52.62932437318242],[5.998387685934935,52.633145554694295],[6.01023680274822,52.637782116517045],[6.010461725429634,52.637869964984134],[6.010491436482757,52.63788160944177],[6.010519914110931,52.63790420685135],[6.01145060793554,52.63863543275706],[6.012047267029224,52.63910412858691],[6.012528542552694,52.639492830804166],[6.017300700660424,52.643234969307976],[6.016211694755433,52.64384457364747],[6.015997770790574,52.643963663364914],[6.015732360521978,52.64411419278123],[6.015339239444247,52.644827953853266],[6.015248592536551,52.64499554188903],[6.015026833513205,52.645406756934904],[6.014913210827569,52.64561489969336],[6.014626126029627,52.645800654189266],[6.014510601628158,52.64587569638754],[6.014424139890694,52.645932035419726],[6.013308454030089,52.646653248972584],[6.013156311705603,52.64675122943523],[6.012459282883499,52.64720426060948],[6.011986418582371,52.647511190146545],[6.011785757704843,52.64763918959815],[6.011655540040912,52.64772075900405],[6.011488760153711,52.647844643522795],[6.010854116592034,52.648319805468894],[6.010740111277344,52.64840493760012],[6.010551651511753,52.64854776276741],[6.009533879204526,52.64931167303568],[6.009343793065795,52.64945393854709],[6.008355431279131,52.65019493776668],[6.008140439431751,52.65035614173018],[6.007913796396714,52.65052640235944],[6.007116881138765,52.65112539930575],[6.006928152500365,52.651266530350746],[6.005794808438099,52.65178555084717],[6.005564264391854,52.6518929075694],[6.004048915989112,52.65258830399333],[6.003468843086272,52.65284913835717],[6.001928325798825,52.653549131445345],[6.001706676098033,52.65365026035354],[6.001086906594412,52.653930943190794],[5.99954057445877,52.65463373892428],[5.999260437849628,52.65468096253936],[5.998565966425845,52.65478985747203],[5.996402635217901,52.65513236746491],[5.995688796018576,52.65524387019168],[5.993535750602415,52.655582060171476],[5.993133213456106,52.65564617838288],[5.992832285664934,52.65569349276927],[5.990660113792973,52.65603791112774],[5.98981079878895,52.656174493326766],[5.988713516177532,52.656348003634236],[5.987735819858722,52.65650320390242],[5.986753746578061,52.65665982018088],[5.986069368637507,52.65676774614744],[5.985236127772127,52.65689944236165],[5.98499743008919,52.65695625576964],[5.98405904128472,52.657184806260226],[5.982685703215358,52.65791796738453],[5.982396570407217,52.658173591378166],[5.98217745799215,52.65836454282597],[5.981866574468031,52.65869419405575],[5.981580319456906,52.658925086789324],[5.981301767249713,52.65914762715787],[5.981208915847301,52.65922180413845],[5.980899393303213,52.659468269414845],[5.9805531280295,52.65974463790883],[5.980400337913185,52.65986905523029],[5.980297715509944,52.65994446654021],[5.979871791773735,52.66025928215575],[5.979546505479949,52.660497500240595],[5.979392177057895,52.66062223844101],[5.97857711570772,52.66096838417601],[5.977724294210899,52.66135765261481],[5.977475882935607,52.66146741556834],[5.975981085458341,52.66213683324383],[5.975287079466896,52.66249346469164],[5.974841949745542,52.66269302433345],[5.974602543797114,52.66282737056004],[5.972912465819518,52.66391825100761],[5.972511301985816,52.66417999214596],[5.971837568932487,52.664631668509045],[5.97111922164168,52.66508090886343],[5.970812713126209,52.66526669590422],[5.970456453607821,52.66538853081114],[5.969531583057877,52.66569148354926],[5.968582032377959,52.6659053789741],[5.968481016498331,52.66592602213608],[5.968449136380259,52.66591079195437],[5.96831642984432,52.665931652811885],[5.967964942057231,52.66597141296354],[5.967583090040793,52.6661935801694],[5.966923248233464,52.666579356307686],[5.966365938403821,52.66695919205974],[5.966072855513748,52.66706914843142],[5.965810311738603,52.667127405053705],[5.965600714830619,52.667139272391424],[5.965173713908626,52.667115690515914],[5.964936388530513,52.666846770538314],[5.96461769607319,52.66636809827154],[5.96458342082658,52.66624587743951],[5.963726292828322,52.666351097529066],[5.963382648179433,52.6663931876757],[5.963154590921746,52.666418602954266],[5.963052353232537,52.66644894456395],[5.962693598164152,52.66665687422175],[5.962128984241152,52.666981831720435],[5.96194040064972,52.66707563484052],[5.961704495306531,52.66712298698163],[5.961460792731751,52.667180046504015],[5.960614334129716,52.66736962693959],[5.958945155961465,52.667705957470396],[5.958201771967462,52.66785332450165],[5.956202638061913,52.668215618634754],[5.955668401363737,52.66825651333105],[5.955569304026528,52.66824578010149],[5.954196661316426,52.66771901783879],[5.954076349614368,52.66771841420537],[5.953177929004219,52.667956027926174],[5.952444043010354,52.66814943576173],[5.951178333873338,52.6684241353023],[5.949742210461827,52.668707590322576],[5.948365383375421,52.668985544512424],[5.947739625339843,52.66915657398263],[5.946627256142049,52.66942227857904],[5.94544350712797,52.66969101299652],[5.944671527175928,52.670052772874136],[5.944462801083867,52.67014764903887],[5.944176809748202,52.67026669375106],[5.94404097778181,52.67030533660849],[5.943635555185853,52.67030608425065],[5.943335982400948,52.67031948366219],[5.943107898408744,52.67033827291489],[5.942734257060701,52.670381989218676],[5.942334679184323,52.67043819175595],[5.942063374766543,52.67048225492113],[5.941638760002478,52.670574304837054],[5.941223296629436,52.6705539443157],[5.941230367300846,52.67049446140473],[5.940862398832437,52.67047239543033],[5.940559018325271,52.67045359564391],[5.940091371418509,52.67042516091241],[5.936054957706709,52.67018238987797],[5.935895431987305,52.67021840068978],[5.935741766571029,52.67028569545312],[5.935080717606044,52.6707571800836],[5.935026553706631,52.670804980610605],[5.934864654296686,52.67099595722838],[5.934766042260717,52.67124489681598],[5.934734424867255,52.67131536677881],[5.934662312327843,52.671335910903764],[5.934624642660245,52.671354930370306],[5.934561343472919,52.67139463038502],[5.934503468058257,52.67145910091537],[5.934474952285102,52.67152462258806],[5.934442933405114,52.67162344873521],[5.934390855467747,52.671838885425025],[5.934312907860823,52.67217689984413],[5.934251355087446,52.67257427966978],[5.934242247959705,52.672687101135736],[5.934227441628513,52.67300953779597],[5.93422212243021,52.673210487637064],[5.934241521305847,52.67335426443797],[5.934262368363958,52.67345878775449],[5.934414827515817,52.673763648772315],[5.934511594703398,52.67399503549427],[5.934680365925006,52.67435450776035],[5.934848843393585,52.6746890058782],[5.934899158400265,52.674802910706],[5.935096251040479,52.675235964323804],[5.935228884727512,52.67551750407583],[5.935262931823365,52.67558354635564],[5.935297161742637,52.67566186420149],[5.935330516777661,52.67573048895645],[5.935392676923477,52.67579220461452],[5.9353999709806,52.67596676394878],[5.935411962385396,52.67598692071933],[5.935557136883162,52.67602073495432],[5.935643422390105,52.67603816748427],[5.935704411542494,52.67606642030986],[5.935888026335005,52.676360422931744],[5.935884687428332,52.676405625620234],[5.935871441842377,52.67644134766269],[5.935826658796054,52.676458198448465],[5.935897867032685,52.676520887637],[5.935749224952017,52.67661923654251],[5.936560171530376,52.677100150682406],[5.936768718012999,52.677223317255134],[5.937356505615449,52.6775687246641],[5.937927655714282,52.67791080908888],[5.938148743135993,52.67803706065563],[5.939309516224704,52.6787224365234],[5.939421838192175,52.678788500593726],[5.939528245415023,52.678849828853544],[5.939841599110279,52.67903503561991],[5.940685098338377,52.67953165060597],[5.940860538139306,52.67963783463052],[5.941897220703765,52.68024886422833],[5.942277584175556,52.68047179449128],[5.942561384177484,52.68063810629566],[5.944268283651431,52.68164665635378],[5.945376035615366,52.68230131467417],[5.945348144334249,52.68232332023376],[5.945642655605606,52.68249861546046],[5.94563838733031,52.68262466190423],[5.94559273804001,52.68272712272689],[5.945445488401655,52.68283956886635],[5.945451600998884,52.68285975220704],[5.945529534667326,52.68286095909641],[5.945634587589145,52.68278756232598],[5.945657692039693,52.6827589197242],[5.945760275822494,52.68267164034498],[5.945797269569693,52.68265839032785],[5.9459818436674,52.68255765833713],[5.946036252003704,52.682528868569946],[5.946062956988688,52.68247524274302],[5.946109028555756,52.68225150751877],[5.94618110848816,52.681920640345055],[5.94624468454376,52.68184307021409],[5.946302617152823,52.68178453434504],[5.946321892651337,52.68176185908095],[5.94632559930234,52.68174519750123],[5.946356887405822,52.681590489840346],[5.94625802885681,52.681508911162396],[5.946155357899291,52.68143449508452],[5.946105898543601,52.6813907355686],[5.946052233493708,52.68132441115262],[5.946026195393609,52.68127697364881],[5.946011852665109,52.681225922282],[5.946011202263115,52.681174797586785],[5.946026120513877,52.68111765924391],[5.946077773578455,52.681025873656026],[5.946155116338549,52.680954170356586],[5.946232640466657,52.680896737707194],[5.946322026326115,52.68084995290371],[5.946407750444502,52.680822202008564],[5.946636101037338,52.68078070391773],[5.946841106321156,52.68074883261807],[5.946964200383025,52.680737549609184],[5.94705027241127,52.68073714443583],[5.947577100230042,52.68078340927683],[5.947610476677125,52.68079394667749],[5.947647907770749,52.680813982327244],[5.947681435726968,52.6808352316488],[5.947703283775932,52.68086128121414],[5.94771352758213,52.6808969028371],[5.947714483271398,52.680971797043],[5.947703319208187,52.68101702794515],[5.947508111436963,52.68135679842176],[5.947459863877835,52.68140814449978],[5.94739975429998,52.681450038057115],[5.947349206389349,52.681475242391215],[5.947008727662896,52.68162189781279],[5.946946392837736,52.68164240326871],[5.946651814846923,52.681706807134766],[5.946458606209168,52.68174337679845],[5.946427605275191,52.681767302511],[5.94640059843928,52.68179714992291],[5.946377676649309,52.68184006337212],[5.946444007253521,52.68198004046089],[5.946479593347987,52.68200960251345],[5.946550689488235,52.68206158218139],[5.946611436605489,52.682069618521616],[5.946693441272492,52.682057342784034],[5.94674409623621,52.68204046030805],[5.946820366659562,52.68203890613904],[5.947408366552593,52.682125307971255],[5.947422923588176,52.682193011294444],[5.947484141146098,52.68223790116621],[5.947574499013304,52.682267195848134],[5.947648954597751,52.6822763623516],[5.947684116417975,52.682271433465644],[5.947755998441318,52.682233052174496],[5.947781735503213,52.68225671078718],[5.948039752133761,52.682698963862876],[5.948038240398214,52.68273344559404],[5.947557299691814,52.68337178519118],[5.947585110668094,52.68340495143041],[5.947450844248074,52.68346145695008],[5.947281202395796,52.68350624794798],[5.947140625197619,52.68352830824147],[5.946945002590235,52.683529229127195],[5.946774647732037,52.68351695454456],[5.946631694777197,52.683506932409394],[5.946398063825335,52.68344144561157],[5.946246380716033,52.68336012430682],[5.946188945282392,52.68330451237281],[5.946168489018301,52.683234464049974],[5.946132252093408,52.683154981517],[5.946082896703049,52.68311954358869],[5.946015214145124,52.68309768142556],[5.945922438998465,52.68311672965228],[5.94586432292015,52.683162180924384],[5.945874807648937,52.68321681829616],[5.945911908726671,52.683279401060055],[5.946053648598267,52.68343474249694],[5.94597593833354,52.6834779132939],[5.946181317746129,52.68359990991003],[5.946545009374402,52.68381726095831],[5.946647711327536,52.68387968771386],[5.946945766679995,52.684059151023654],[5.947018835133,52.684103131566665],[5.946937311642227,52.68415345670538],[5.947285349638751,52.68436030132253],[5.947493992981549,52.68448598299265],[5.948653462433363,52.685186848438825],[5.94885768916999,52.68531001420042],[5.948969461278368,52.6853768896745],[5.949367430108543,52.68561598077012],[5.949509010138764,52.68570068907014],[5.949765060984741,52.68561128759945],[5.949993261813916,52.68553101346948],[5.950097943926948,52.685495692975294],[5.950352613132911,52.68540714155584],[5.951550799878555,52.684937744552286],[5.951767249839246,52.685010339733495],[5.952040280907057,52.685074757146246],[5.953121938387651,52.68509910179849],[5.954497074384469,52.68523165300861],[5.955848498102733,52.68579944915779],[5.957325671449158,52.68655567133381],[5.957589642294794,52.686091910433255],[5.957907408849005,52.68555180575913],[5.958303522678913,52.68486983963675],[5.958672963886462,52.68424268687197],[5.958701853978815,52.68420807342955],[5.958771382879946,52.68422005165697],[5.958731873297339,52.68426024323332],[5.958636295223815,52.684431907263935],[5.957062446700585,52.687129789821554],[5.957556993834045,52.687331390865964],[5.958127446761505,52.6875853798969],[5.958531881542032,52.687977316225776],[5.959060354444853,52.688251319035366],[5.959518981645276,52.68822577347244],[5.959726895126625,52.68863623901377],[5.959980811702686,52.689067251856514],[5.960377846716247,52.689505240522344],[5.960623659899269,52.68950055968354],[5.961425983799152,52.689334911758344],[5.962813172343831,52.68945186019094],[5.963420250694714,52.68958902981156],[5.963588759974854,52.69008055456591],[5.963960326692043,52.690609784090334],[5.964976122425274,52.69127304609256],[5.966078631125327,52.69148572184039],[5.966715322171992,52.69231605052973],[5.966934485178034,52.6927440722697],[5.967128211484185,52.69320573053655],[5.966500322921872,52.69317874626228],[5.966513111457394,52.69330384748163],[5.967243803019881,52.693375580527245],[5.967614805826083,52.69385556980408],[5.967739820363886,52.69506341143164],[5.96792096549588,52.69569194829054],[5.967966629644044,52.69618512648673],[5.967174083139374,52.69692612464624],[5.967488310990589,52.697750893389795],[5.96763620982515,52.69857647287286],[5.967123834499634,52.69904859273017],[5.967028745947805,52.69975122721414],[5.966986891406273,52.700286451052484],[5.967056129849275,52.701331654228476],[5.966476750531471,52.70340319738347],[5.96651135791667,52.70380131864208],[5.965316221992961,52.703784538839194],[5.963272701849905,52.70377542606738],[5.961320993792175,52.70375894207174],[5.961189107580375,52.70390471088799],[5.95901382515242,52.70386324093341],[5.958540234324063,52.70385203568464],[5.958242620298244,52.703844477529756],[5.956465664283796,52.703803438932994],[5.956342225052872,52.70421967301101],[5.955852378842175,52.705690324202756],[5.95561679979588,52.706392918163935],[5.955351187972292,52.70722096168392],[5.955324217799411,52.70725437859144],[5.95460263751699,52.708066290016895],[5.954251449584784,52.7084655073553],[5.952495438342671,52.7104232391061],[5.952454409176338,52.710480987188625],[5.952395123327331,52.71053785138035],[5.952336048212426,52.71102133037558],[5.951898006685362,52.714197315418765],[5.951773508307441,52.71499347609405],[5.951652832290382,52.71596633069557],[5.951554975345775,52.71666329115476],[5.951548950168849,52.717238490771244],[5.951607493529663,52.717791590474135],[5.951724214587096,52.71840429476387],[5.951941037026382,52.71906215104317],[5.952152577569583,52.71956102418564],[5.952355864868423,52.7199542395123],[5.952667720910581,52.72045210495301],[5.953038186602929,52.72093779202466],[5.953288677180267,52.72123145645757],[5.95359860310098,52.72157714204076],[5.954018850577913,52.721974614925166],[5.954442551836806,52.72233640029787],[5.95496879593353,52.72275239006479],[5.955612554377588,52.72317019781926],[5.956177757129494,52.72338942270354],[5.956589047036407,52.72362617818997],[5.956796687941243,52.72378358103602],[5.95769828835425,52.724464523715945],[5.958187919611708,52.72496320265657],[5.958202022544111,52.725210835607044],[5.957989440669907,52.725279824318385],[5.957541072902796,52.7249140627903],[5.957403299262262,52.7249725815087],[5.957153776958837,52.72493950923233],[5.956873210051543,52.72490265771122],[5.956749144489556,52.72498413482805],[5.956665060729509,52.7250463230575],[5.956604792399591,52.72510727390172],[5.956565192919116,52.725174308908485],[5.956550902110785,52.725249077488854],[5.95654474750036,52.72530976939836],[5.956654215046369,52.72627704101471],[5.956651090858588,52.72635793922968],[5.956632804421536,52.72642711002179],[5.956621982733063,52.72646581501299],[5.956591503590373,52.726463516368995],[5.956556360661341,52.72653984058552],[5.956436791469116,52.726758321038396],[5.956320937432592,52.726973440414525],[5.956260728061959,52.727092806441306],[5.956181816863706,52.72719122321503],[5.955878192935557,52.72739909743818],[5.956080819347899,52.727569304944836],[5.956144278981698,52.72763082334379],[5.956331401338686,52.727827858913564],[5.956561020043584,52.728203514720285],[5.956512690606016,52.72827564211867],[5.956391383486678,52.72842787838155],[5.956306448022596,52.72853107814414],[5.956266704390377,52.728614658781574],[5.956266189650465,52.728876219580904],[5.956148544678736,52.729018812952425],[5.955850893194977,52.72932523706112],[5.95531607890196,52.729912738397815],[5.954991483118229,52.73025431127473],[5.954832991143385,52.73041676172628],[5.954660104496869,52.7305217007613],[5.954452473020874,52.73061873479952],[5.954229539479548,52.73069450619324],[5.95385759873318,52.73078502441609],[5.953387874273507,52.73089847422194],[5.953207195354791,52.73096785959953],[5.953100128989305,52.73102509476428],[5.952946062588975,52.73113199082546],[5.952754696259071,52.731323308211934],[5.952283631468192,52.73183668212274],[5.951781818821263,52.73238783753004],[5.951469150551182,52.732754417615816],[5.951247222252741,52.733016650048214],[5.95101850675532,52.73329240369331],[5.950738100654898,52.7336313016932],[5.95044922674027,52.73397866887365],[5.950089681847921,52.73442522661408],[5.949956573610439,52.73459773252075],[5.949819713627644,52.734784859885366],[5.949762278321003,52.73487107409121],[5.949685156570599,52.73500849039731],[5.949623993029624,52.73512729105245],[5.949534737183425,52.735328796987794],[5.949504299475143,52.73540870044343],[5.949463235155149,52.73556167349065],[5.949438815919218,52.735660645875186],[5.949391452816345,52.73564569952853],[5.949203314567759,52.736328485771246],[5.94912114650707,52.73648839297504],[5.949026286683283,52.73659611858553],[5.948286915793333,52.73706637294661],[5.947648692114998,52.73743391032155],[5.947574305674712,52.73747919552932],[5.947476649497995,52.73754930446469],[5.947239078192746,52.73773240915755],[5.946998083255955,52.73790149177417],[5.946782580779291,52.73803786720306],[5.946695374037965,52.73809276529345],[5.946624679727374,52.738137466358204],[5.94634640706639,52.7383224500542],[5.945603448811955,52.738788767899216],[5.945402278032713,52.738907099551604],[5.945182742088807,52.73903563630011],[5.944615815973009,52.739337667131764],[5.944548385232634,52.73937500928131],[5.944341415419901,52.739410290513774],[5.943283843030268,52.739591039273925],[5.943187148242759,52.73961058830675],[5.943055623038672,52.73965670368785],[5.942646787620192,52.739837228520955],[5.942525532641894,52.73989115001422],[5.942660108729271,52.73997589850539],[5.941865723453122,52.74040648462255],[5.940671726368574,52.741036637700546],[5.940461969674816,52.741135912425534],[5.940265075889323,52.74122782059547],[5.939387891531166,52.74158968263267],[5.939143248272551,52.74169416751001],[5.938747623400677,52.741861137019896],[5.93863040272985,52.741923465580626],[5.938493708587341,52.742001054234684],[5.938373788847779,52.742069011900945],[5.937764910445569,52.7424638865539],[5.937156702940001,52.742857631545704],[5.937030291858274,52.742962122922805],[5.936807066922259,52.74320749169072],[5.936616300989227,52.743402149483025],[5.936469222413889,52.7435191017047],[5.935926590201496,52.743941179124995],[5.935524144009603,52.744249714005534],[5.935137589563332,52.74453514971291],[5.934929763868376,52.74467989767459],[5.934768674180916,52.744787916234536],[5.934661719240345,52.74485749998613],[5.934415130416673,52.745012535626884],[5.934081825991369,52.7452263844482],[5.933925290207362,52.745328206869985],[5.933828644686716,52.74538986992218],[5.93361874370414,52.745536314616174],[5.933462192750097,52.74565611042207],[5.93340695095467,52.74571645975701],[5.933377730744606,52.74575556131854],[5.933332451246347,52.74584767877916],[5.933285186941681,52.74595404966929],[5.933241581858776,52.74605816599798],[5.933165714278752,52.74624611691507],[5.93306717735254,52.7464903402642],[5.932997285607397,52.746675450726734],[5.932921195264863,52.74679094955148],[5.932874782728556,52.746854071061385],[5.932827074335851,52.746907088154316],[5.932770090119631,52.746957334815825],[5.932699597337267,52.74700146930259],[5.932614782588606,52.747047916103995],[5.932428277467745,52.747141452990064],[5.932228987319161,52.74721089115076],[5.931973508058271,52.747285079593034],[5.931744994855554,52.74734959099762],[5.931436514482009,52.747440871257446],[5.930956141931547,52.74753630605858],[5.930762866425741,52.74758830652635],[5.930310049740541,52.74772180747922],[5.930216163567633,52.74776435764523],[5.930137085998428,52.7478259464827],[5.929943494327717,52.747982977671676],[5.929619386329257,52.748251816904016],[5.929055707736334,52.74872338626148],[5.928901283603267,52.748848225873765],[5.928683902992296,52.74900929048532],[5.928517005266433,52.74913643305547],[5.928384647143271,52.74923139785168],[5.928086461094195,52.74944562700891],[5.927962460238232,52.749524268987805],[5.927709871970055,52.74968324494618],[5.927685668599461,52.749696224149154],[5.927652540839123,52.749707320651666],[5.927175100260563,52.74994966344754],[5.926426166987575,52.75033837356366],[5.926315344621375,52.75039673345758],[5.926227369839963,52.75045105351981],[5.926153217592954,52.75049969409733],[5.926091774201108,52.75054603036466],[5.925988602076344,52.750643664251356],[5.925898560956409,52.75075528523752],[5.925840828667411,52.75084092249429],[5.925773397780451,52.75096536431768],[5.925672410361884,52.75118431187512],[5.925567916447939,52.7513819401665],[5.925509712740006,52.75150408436855],[5.925436204746846,52.75162349379753],[5.92538344803031,52.75169956417236],[5.925303260832893,52.75178530264244],[5.925212907926873,52.751852546917505],[5.925095558602361,52.751908122215525],[5.924981587791838,52.75193728746635],[5.924906298527915,52.751951512357884],[5.92412971323626,52.75203155898348],[5.923926549584654,52.75207179293693],[5.923754124409364,52.75212818135505],[5.92356330361539,52.75223182488302],[5.923312093266135,52.75241157190237],[5.922914368521484,52.75270431454281],[5.922486012846235,52.753047187908926],[5.921919731887909,52.753486722671234],[5.921795739791984,52.75358613584845],[5.921636947701196,52.753678964898846],[5.921534184707462,52.75373502834663],[5.92130120508468,52.75385515069065],[5.921231315458945,52.753886208518445],[5.921164580582688,52.75390631504804],[5.92108557332681,52.75392576660284],[5.92091722700104,52.75392876810216],[5.920662601994146,52.75390631851395],[5.920408151639174,52.753879940306426],[5.92014856661118,52.75384908208259],[5.920011402601854,52.75385475563117],[5.919879839315804,52.75386545462525],[5.919742992817231,52.75387898103048],[5.9195449439386,52.753902334058424],[5.919428059812559,52.75393992774089],[5.919240755723895,52.75399188259605],[5.919135859642698,52.75404458338718],[5.919007276755639,52.75412885316452],[5.918964487751372,52.754168173416545],[5.918920174974958,52.754217422039176],[5.918890492563138,52.75428832674424],[5.918880283422752,52.75436251458516],[5.918895870350934,52.75448376866015],[5.918909650952761,52.75459042702058],[5.918912209485826,52.75464015830121],[5.918833480029494,52.754874421899984],[5.918802404751143,52.75494533278847],[5.918757333888568,52.75500787640331],[5.9187103108025,52.755054800429946],[5.918652189446668,52.75509653459118],[5.918568068826591,52.755164869262124],[5.918477867638264,52.755226499788016],[5.918390089966586,52.75527912350772],[5.917916297442913,52.755601962113055],[5.917188191761531,52.756082636240706],[5.917091302754769,52.756147656571926],[5.916604112261525,52.75647391955014],[5.916294154951641,52.75668143057994],[5.915831717170808,52.75696938586315],[5.915520394218908,52.75716005039816],[5.915187803544543,52.75735249795449],[5.914569422150626,52.75770404814499],[5.914056401141689,52.757984347868046],[5.913420567033667,52.758329786197244],[5.91303685583128,52.75854604422454],[5.912930177442915,52.758606053671905],[5.912743513779251,52.75869394303366],[5.912566837216853,52.758784591954246],[5.912424760160161,52.758864977703674],[5.912287601730435,52.758950392241516],[5.912188008592794,52.75902329296342],[5.912047108972013,52.75916376862148],[5.911944931043492,52.75930913310385],[5.911913740676035,52.759371621828656],[5.911889706191299,52.75943294665955],[5.91186918502921,52.759498192275906],[5.911853170650417,52.75959094497408],[5.911837481945271,52.759769063008314],[5.911827500301912,52.760114546289515],[5.911807742196491,52.760185405346256],[5.911777948393012,52.76026809945128],[5.911719155044106,52.760364967850414],[5.911679085457403,52.760414707217706],[5.911459073165656,52.76060483279104],[5.911385867590551,52.76065738705646],[5.911171974110045,52.760792008890256],[5.911067072257456,52.76084639196701],[5.910978174792381,52.760883854078486],[5.910905200924841,52.76090506064881],[5.910809619289744,52.76091998587738],[5.910594631498786,52.76094339835018],[5.910282448662183,52.76096948417046],[5.909623396308535,52.76100383170432],[5.90937244182145,52.76102009339639],[5.90927445557301,52.76103344623753],[5.908919494082513,52.76110240388986],[5.908691367547228,52.76116968170678],[5.908591490787005,52.761218423755],[5.907788735622995,52.76160837343473],[5.90714634140523,52.76193638966872],[5.906763822777108,52.762122291050325],[5.906363495438267,52.76232961274787],[5.906201216647208,52.76240615172354],[5.905722080427574,52.76262448216107],[5.905543178387409,52.76270614325621],[5.90542981980698,52.7627504478419],[5.905084707944519,52.76287102584503],[5.904943105900796,52.76291489560512],[5.903995658963684,52.76321164301329],[5.903725777677635,52.763292572795386],[5.903401405370636,52.76338609518862],[5.90313419306536,52.76345859131727],[5.902878694365708,52.76352316358539],[5.9026554703312,52.76357580477747],[5.902315346812428,52.763549758664126],[5.902026422606211,52.76352854087879],[5.901713288234753,52.763494503829854],[5.901496336586302,52.76347072703525],[5.901252743887146,52.76344538430428],[5.901068698860696,52.76342426858764],[5.900902711270464,52.76340420703952],[5.900769394534704,52.76338568491199],[5.900475883065908,52.76334706652928],[5.900379686624809,52.7633368136762],[5.900181293935749,52.76331632459723],[5.900080751905931,52.76330945132642],[5.899819681353311,52.76329316785259],[5.899599913136824,52.76328680737139],[5.899512850692977,52.76329620482643],[5.899174511110761,52.76337176601288],[5.898999318835015,52.763453967442196],[5.898752519609757,52.763629706401936],[5.898531210356247,52.76378849392535],[5.898346753053975,52.763950483948],[5.898272008486542,52.764031686897994],[5.898013295384705,52.76425859291753],[5.897834074259015,52.764413828463184],[5.897749426188989,52.764479346458145],[5.897672139164581,52.76452179940585],[5.897284802969482,52.76469758041801],[5.897099422263652,52.76478094600222],[5.896917074316054,52.76486653605093],[5.896654882263221,52.76499404083388],[5.896519140384289,52.7650653933266],[5.896300248510582,52.76519382648635],[5.896128462387487,52.76529229331585],[5.896045675454308,52.76533982831964],[5.895861397254067,52.765439471497736],[5.895669035703464,52.765539715075455],[5.895499912993968,52.76562918271052],[5.895415298899908,52.76567897179169],[5.895372525233414,52.76564703515697],[5.89516030633281,52.765828900761534],[5.894919007077173,52.7659613631734],[5.894122586016459,52.76637759613025],[5.893938372306863,52.76648228664082],[5.893754832789512,52.76658641680571],[5.893557613029365,52.76668892430322],[5.893389338923099,52.766770521747816],[5.893211360869476,52.76685608745771],[5.893088133260007,52.76690997518293],[5.892897870950222,52.766973691542674],[5.892395723134727,52.76713252731623],[5.892283351099486,52.767165581464035],[5.891771779636637,52.76729131988375],[5.891613684976665,52.76733355400741],[5.891243056281187,52.767434545287465],[5.891158435269712,52.76754499284125],[5.890796985093604,52.76770097959477],[5.890620379995203,52.76778429784471],[5.889850895056469,52.768152640612],[5.889033060322754,52.76860599134546],[5.888383521870701,52.768957534728195],[5.887925852118514,52.769203786400226],[5.887051826300414,52.76964725828005],[5.886904480595605,52.76971977170419],[5.886695039512586,52.76978748578784],[5.886561640335279,52.769823992754624],[5.886345841286737,52.769883878343535],[5.885928447263709,52.7699889761872],[5.885570203134762,52.77008371480273],[5.885420747172885,52.770153422308944],[5.885295001733093,52.77025337016979],[5.885214557343688,52.7703250354733],[5.884487855249452,52.771043652461955],[5.884151838409213,52.77132364829888],[5.883847792323373,52.77158385553359],[5.883568212056314,52.77192033945789],[5.883308739092669,52.77225450119345],[5.883169095757852,52.772435377503015],[5.883048605694103,52.772571248510175],[5.882952472413869,52.77266881480112],[5.882857155816834,52.77275739972492],[5.882780132057838,52.77282567899852],[5.882506661807897,52.77304868456796],[5.881583304680734,52.77380966502929],[5.881280936753599,52.77405861590768],[5.880895893772053,52.77422366582027],[5.88074506842394,52.774277645977556],[5.880002488539145,52.774543029621285],[5.87963250220706,52.774710250831774],[5.8786030594596,52.77524809791755],[5.877601131232363,52.775763921684245],[5.876429736430919,52.776388832638496],[5.876246972135796,52.77648619198449],[5.87560338642295,52.77683033355838],[5.875320953613202,52.77698202128338],[5.875022847388184,52.77714106985221],[5.874596326674408,52.77737085754916],[5.874193523556967,52.77763087736151],[5.873776661475373,52.77791847995655],[5.873524446887173,52.778080707285675],[5.872929780466337,52.77841396699441],[5.872597542252196,52.77858662885202],[5.872333804239935,52.778714085499416],[5.872284917692762,52.77867178577908],[5.871332907107046,52.77912649365954],[5.87051072381237,52.779515710132664],[5.8705489479802,52.77955481857233],[5.870388977309502,52.77962629300258],[5.869929628869405,52.7798241767272],[5.869794505918892,52.77987639866645],[5.869661429014981,52.77992468491015],[5.869521604886501,52.779971308798636],[5.869306995996543,52.780039579009824],[5.869216008145596,52.78006353773526],[5.868960134053957,52.7801274808797],[5.868865908808587,52.78015088625899],[5.868729802956095,52.78017727376698],[5.868631064849311,52.78019059598697],[5.868476042023547,52.78020301322063],[5.868218057329883,52.78020180864789],[5.868091570936004,52.78019726878222],[5.8678808863225,52.780181826058666],[5.867759485832415,52.780176141959835],[5.867648371528146,52.78017996027852],[5.867503196738576,52.78018222631857],[5.86738068708417,52.780182163085996],[5.867272346609448,52.78018484651548],[5.866996125987329,52.7802101071653],[5.866348610534853,52.780271694399744],[5.866187975197495,52.780321201971276],[5.866023577986412,52.78038589424323],[5.865940400687617,52.780424988854584],[5.865803124832662,52.78049237570173],[5.865576003534937,52.78060450030561],[5.865331685870332,52.78073129712323],[5.865122926614817,52.78084896391698],[5.864928080066343,52.78096769789343],[5.86477790834366,52.78106378531951],[5.864607341058987,52.781180174698],[5.864499319476068,52.78125587241856],[5.864386305915635,52.78134001969604],[5.864252395852469,52.78146243565029],[5.864068568671986,52.781636734630496],[5.863868815662529,52.78181727100857],[5.863731294792573,52.781756593917905],[5.863527134618968,52.78193546680443],[5.863127420898307,52.78227687497325],[5.862613735274189,52.78272321768223],[5.862108601871105,52.78314592456345],[5.862032890738694,52.783233290874016],[5.86182562268068,52.783341392802974],[5.861696383867914,52.78340369219667],[5.861595759449232,52.783436670273254],[5.861495542291629,52.78346347268625],[5.860905414298704,52.783588823824736],[5.860508582359196,52.78368588642972],[5.859822655022274,52.78386217273193],[5.858623452839627,52.78416292415346],[5.858356609185004,52.784223517698365],[5.8580088746754,52.78430015734748],[5.857720979903253,52.78436195601866],[5.857115671693118,52.7845002713194],[5.855770371858209,52.78480775307698],[5.854845231171721,52.78503381270547],[5.853668376010273,52.78533049900454],[5.852672291298891,52.78557366976456],[5.849926788500209,52.786246021436],[5.849412328834732,52.78637215374609],[5.849231499743007,52.78637734867765],[5.848998679952838,52.78637206855671],[5.848791049347765,52.78636163978149],[5.848595096129351,52.78633825135169],[5.84827814959353,52.78628443429888],[5.846718455904552,52.78603714070488],[5.84532583998195,52.785818957607596],[5.844219774782109,52.78564908671152],[5.84357674205857,52.785549893180615],[5.843241478730343,52.78551522992193],[5.842911736551034,52.785454141319775],[5.842750312706185,52.785321079815915],[5.842610523548552,52.785285667057664],[5.842512618341154,52.78526975721034],[5.842383401156789,52.78524890735931],[5.842432576650142,52.78512290393998],[5.842470388045864,52.78506153221573],[5.842534589369148,52.78495513448203],[5.842563158302601,52.78485167682066],[5.842572937419845,52.78479146367628],[5.842256845462288,52.78490507881975],[5.841620480686656,52.785135548786066],[5.839615912409656,52.785084764847554],[5.837313373822978,52.78502103612201],[5.83625682839839,52.78563219123297],[5.836065511733721,52.78563066561369],[5.832491501588876,52.7855952185073],[5.82998618033226,52.78556579760941],[5.828140539735807,52.78554343687503],[5.82745065915326,52.78548083426101],[5.824989286406403,52.78525906178581],[5.819412618862673,52.78475032898816],[5.818792302962414,52.78469304061297],[5.818534591185808,52.785757221354196],[5.818241082546875,52.786950725040406],[5.818645084205298,52.78763955676626],[5.818520003595273,52.78773269062704],[5.817950388837326,52.78814870182017],[5.817266086945533,52.788656681841196],[5.817089466850308,52.788785381249916],[5.816858357782229,52.788955283698286],[5.815314416851328,52.78978875112536],[5.81454760191971,52.790202084176585],[5.813287038139733,52.790888472561136],[5.811222177377663,52.79200121534932],[5.810257808206969,52.79252250762311],[5.806931988070501,52.79431702510397],[5.805933439706331,52.79485918864484],[5.804806633103782,52.79577698226465],[5.803923842671228,52.796488348143065],[5.803554429294388,52.796789007127906],[5.803469145909405,52.79685895263226],[5.802780541735704,52.79757974119768],[5.80234920211141,52.7980468675474],[5.801670877560249,52.79875638010286],[5.800995471813396,52.799458572232155],[5.800587431772825,52.799894157281656],[5.799972142745497,52.80053772076047],[5.799603732078825,52.800927673982045],[5.799260158525924,52.80129788606821],[5.799063956487128,52.80154850422334],[5.798625789094298,52.8021100099551],[5.797915136956006,52.8030173113198],[5.797230859904994,52.80389868946688],[5.796602388318427,52.80470572200053],[5.795740561529934,52.80580899964352],[5.795202952539385,52.80650113168035],[5.795405677712318,52.806622324570064],[5.795609863048323,52.806726652975485],[5.795807913355551,52.80681865428175],[5.796202690628277,52.80700994869856],[5.796518552138167,52.80716220490115],[5.796737530045734,52.80726198718456],[5.796844565856098,52.80730879966233],[5.796940026274177,52.807357898534725],[5.797376539108687,52.807575448591],[5.79853266820651,52.80812696078794],[5.799904782177888,52.808799025930384],[5.800716826769921,52.80919949071539],[5.801616840720027,52.809638403868995],[5.80237374908039,52.810012646048236],[5.803203834778433,52.81042932397267],[5.803391481139594,52.810520216658816],[5.803948854054696,52.810793487561234],[5.804561218988927,52.81109689350669],[5.805428568186707,52.811528586030974],[5.806102211517847,52.81186491205968],[5.807587910323463,52.81261175325491],[5.808036636309802,52.81283596119548],[5.808212368966,52.812915097758875],[5.809842012863977,52.81380182892545],[5.809920939685115,52.81383917644105],[5.8100149914025,52.81388377645775],[5.81079516485281,52.81420397113315],[5.81135349141463,52.81442216023911],[5.811958028678076,52.814649725945365],[5.812422408602912,52.81483342126539],[5.81305245676871,52.81508561290044],[5.813653904578124,52.815326103974094],[5.814465466349994,52.815651770034414],[5.815256314965985,52.815967961062185],[5.815452694115581,52.8160458894483],[5.816154165389129,52.81632195536869],[5.817029759330762,52.816673776507535],[5.817113019996331,52.81670268306279],[5.817221735672909,52.816728693853506],[5.817364365751014,52.816761313198896],[5.817967864690065,52.8168995510427],[5.818708411417666,52.81706930942672],[5.818980415957268,52.817130108042086],[5.819276175662542,52.817202053330796],[5.81937445521741,52.81722696766875],[5.819496367363593,52.81725068185018],[5.819655083567475,52.817268636669304],[5.819743539919704,52.81727815612966],[5.819900386013021,52.81702005398431],[5.819913281454805,52.816980106071085],[5.819817167840047,52.816691217007204],[5.819801546519565,52.81661151645396],[5.819818278919122,52.81652158837974],[5.819844050066701,52.81640971783053],[5.819899302491397,52.81630167642558],[5.820005012874183,52.81618727786904],[5.820082780005683,52.81610611480736],[5.820142981412729,52.816053099053924],[5.820306736876957,52.81594971376922],[5.8203979800864,52.81589490454755],[5.820562068189139,52.81582521795477],[5.820739365823228,52.81575492590235],[5.820953699015727,52.81568000542464],[5.821113397360065,52.81563449038957],[5.821398768030567,52.81554807701677],[5.821565781152956,52.81549242464165],[5.821794888025514,52.815411832080514],[5.822009201024343,52.81533522924303],[5.822122917039418,52.81528089386636],[5.822211401561042,52.81522945434527],[5.822295391454556,52.81516905341544],[5.822354127635768,52.815109301817486],[5.822478870237415,52.81497516852588],[5.8225388603449,52.81490136597946],[5.822670559324954,52.814721150025115],[5.822810903997733,52.814502151488234],[5.822957270185268,52.81430558861692],[5.823124103749382,52.81409266671012],[5.823285461228756,52.81391234153149],[5.8234370836717,52.81377923215565],[5.823622371561359,52.813628025811155],[5.823809454172489,52.81349478608013],[5.823998120461457,52.81338063707298],[5.824086587811939,52.81332808182496],[5.824198707411992,52.81327655413548],[5.824351217241199,52.81323275057044],[5.824462273373279,52.8132143696439],[5.824608740759722,52.81319079910627],[5.82478080079621,52.81317837683445],[5.824988311309378,52.81316469175704],[5.82547055163083,52.813184828886456],[5.825834107124919,52.81320202195668],[5.826340277006852,52.813250708245555],[5.826839145162173,52.813310652756485],[5.827246214898745,52.81336868750364],[5.827669488748563,52.813424414285144],[5.82802886287984,52.81346352580864],[5.828183078977023,52.81347306533203],[5.828323995360869,52.81347423330655],[5.828457388319374,52.81346475271813],[5.828593712683043,52.81344739772023],[5.828721198643679,52.813427262460685],[5.828849759832158,52.8133975791553],[5.828960672744166,52.81336515726848],[5.829405649620835,52.81320679604238],[5.829723184387589,52.81307306282467],[5.829941575649549,52.81296665737428],[5.830213196272892,52.81283084671888],[5.830486192320149,52.812693349797],[5.830716417337727,52.81258857940871],[5.83097935424659,52.81248762295354],[5.831443664993915,52.81234042446476],[5.831857629142299,52.8122102531942],[5.832177006036551,52.81212200641245],[5.832427219539848,52.81206995521001],[5.83268175152064,52.81200946675057],[5.832955289694596,52.81192643977331],[5.833209311367443,52.81183786848948],[5.833411760824083,52.811760723217795],[5.833628753917857,52.81165543951366],[5.833777321786978,52.81154367178505],[5.83402275284924,52.8113186491134],[5.834184026452164,52.81113549636526],[5.834334895813698,52.81095463810088],[5.834479976562527,52.810774915718355],[5.834523698864735,52.81069948752522],[5.834582297494855,52.81062849684303],[5.834636250041189,52.810533933340494],[5.834662308876661,52.8104759877443],[5.834685242082676,52.81040681144634],[5.834741342973513,52.81022798897742],[5.834796114180135,52.81007725508321],[5.834836841972509,52.810003527515825],[5.83488047094653,52.80991911276547],[5.834924427296657,52.80986670759823],[5.834993484322005,52.809799047432904],[5.835081712749199,52.809725141268245],[5.835238109159379,52.80963299625094],[5.835624047570648,52.80939396160975],[5.836311678639547,52.809042011705436],[5.836588932463389,52.80889436541493],[5.836808752586694,52.80877333828944],[5.836982384623371,52.80864462168229],[5.837130916440835,52.808531169245555],[5.837249906295137,52.8084077091011],[5.83733790272568,52.80831189236972],[5.837367387031365,52.80825871415271],[5.837386583968144,52.80815556345566],[5.837394852476203,52.8080813914194],[5.837376284312548,52.80801069080611],[5.837288976546811,52.80788071253806],[5.837209335280352,52.807796762416764],[5.836695971283056,52.807335881663164],[5.836589681265503,52.80723013089675],[5.836294321765608,52.80692175820528],[5.836085397881154,52.806658559181685],[5.83597244522163,52.806489925587734],[5.835926777086264,52.80637495013311],[5.835898879526852,52.80625317665419],[5.835904162950578,52.80618126262167],[5.835931513502611,52.80611375887118],[5.836031439850723,52.80600722183348],[5.836102038623766,52.80595472479219],[5.836188836936443,52.80589991098956],[5.83628479845707,52.80585798556056],[5.836364999751895,52.80582508825791],[5.836474129172549,52.80579324112531],[5.83657026902787,52.80576873114913],[5.836671084436083,52.80575908554737],[5.836773119878435,52.80575560916716],[5.836911160247917,52.805750594882284],[5.837329376235696,52.805770359329124],[5.837749732082399,52.80581932121814],[5.838100189644712,52.805874720058604],[5.838445023819885,52.805946998344986],[5.838751309356727,52.80603289289017],[5.838980611094716,52.80611402799089],[5.839159307447804,52.80618581065679],[5.839279890598571,52.806239273843886],[5.839417145789137,52.80631457439374],[5.839591435806722,52.80642331774062],[5.839478133207313,52.806453080659615],[5.839910375415157,52.80682157728084],[5.840324230134964,52.80713510727761],[5.840521678942685,52.807227027827466],[5.840933797301656,52.807373740947206],[5.841435517325748,52.807557181533],[5.841578873306422,52.80759370539318],[5.842043278151874,52.80761946010554],[5.842166825848429,52.80740105934185],[5.842675290212503,52.80647235631936],[5.843096216669955,52.80572933797542],[5.843376792317547,52.80523736168441],[5.843464291707361,52.805051674458944],[5.843593146133375,52.80503208409271],[5.843696577883155,52.80512997623039],[5.843741673247541,52.80518821748884],[5.843803436712204,52.80528908203448],[5.843903490069341,52.805351606007044],[5.843991291704416,52.80539395662295],[5.844165448402109,52.80545226905449],[5.844742934198577,52.80550340747589],[5.845174644936237,52.805528709316846],[5.845670315647949,52.805555453032724],[5.8461806285852,52.80558549934311],[5.846885964525166,52.80567489481668],[5.847368769971848,52.805755601754974],[5.847951164387616,52.80585388626109],[5.848379091806545,52.805937605173355],[5.848786358239872,52.80601803254824],[5.849059774127933,52.8060619069702],[5.849365606757163,52.80610285116563],[5.849687855580465,52.80614091800217],[5.849951998707478,52.806161793266135],[5.850171565987439,52.8061744205376],[5.850533631294736,52.806187059571094],[5.850825819069104,52.80618704642398],[5.850944409389786,52.806182648742904],[5.8513130356239,52.80613572248582],[5.851933295894703,52.80602377417876],[5.852087067292157,52.805993410147096],[5.852811742872098,52.8058080322726],[5.853190568468391,52.80571949648798],[5.853430253763362,52.80566351489444],[5.85387421997753,52.805577525907175],[5.854063696415901,52.8055498233469],[5.854390975753936,52.805515963532415],[5.854533369442605,52.80550641837381],[5.854666840346867,52.80550701817687],[5.854803213043046,52.80551827375027],[5.854991847089319,52.80554224699945],[5.855148011768284,52.80558488719216],[5.855229906519975,52.80561601928079],[5.855329814642986,52.80566336459049],[5.85543866361931,52.80572304049137],[5.855658952745112,52.805933363957635],[5.855747735026276,52.80604534962101],[5.855789849104228,52.80610472142357],[5.855889267545081,52.80625710565344],[5.855946632200785,52.80635573456616],[5.856038793403391,52.80650196430917],[5.856223843786358,52.80675286584661],[5.856298959134507,52.80684300410119],[5.856366569793344,52.806924742258595],[5.856446023726394,52.80700868043342],[5.856583889161688,52.807137879543866],[5.856755155593852,52.80720517178025],[5.856930398757846,52.80723256478118],[5.857026747258309,52.807228248730794],[5.857247111791507,52.80716391506055],[5.857345806675801,52.80709780540479],[5.857478304612277,52.80700741479304],[5.857779531043183,52.8066186707987],[5.857998656723312,52.80631000806292],[5.858157305473061,52.8060234937012],[5.858265116522885,52.80585681211039],[5.858316056138977,52.80576730009592],[5.858456886059362,52.80548310242718],[5.858579261777003,52.8052714290083],[5.858627504483259,52.80521113455431],[5.858715193497897,52.805091712726735],[5.858817874091029,52.80498740118402],[5.859117923954711,52.80477108760307],[5.85930520598366,52.80466981057742],[5.859387912221991,52.80462622946969],[5.859519212609896,52.804575724591444],[5.859640431908008,52.80453648403167],[5.859739566141656,52.80451194344455],[5.859846162901532,52.80449185757933],[5.860288931548182,52.80444685605529],[5.860417885925359,52.804437357208776],[5.860641541609291,52.80442129907608],[5.861040027728515,52.80437478118046],[5.86161351617744,52.80433430540436],[5.861804644173391,52.804331297587666],[5.861999193674243,52.80434569222266],[5.862135787035075,52.80435693852633],[5.862340672831157,52.804383648236666],[5.862474353831856,52.80440389255233],[5.862683717312898,52.804437323903606],[5.863075794876518,52.80448349651365],[5.863265847259926,52.8045096977079],[5.863565982110651,52.80455961504323],[5.864087240142341,52.80463728774228],[5.864636499570857,52.80469068948971],[5.864933357252969,52.804715902853964],[5.865154476471796,52.804722879558895],[5.86540320681097,52.80469042785274],[5.865635628479279,52.804650177670354],[5.865916416816412,52.804561985923684],[5.866159905636849,52.804453165990004],[5.866334901784471,52.80433114080212],[5.866639505660657,52.80411198594169],[5.866921420908376,52.80385248107207],[5.867103482401509,52.803678752230944],[5.867351424006803,52.80344803301646],[5.867596976033076,52.80325382724862],[5.867739587640326,52.803138104422175],[5.867950675821534,52.803054691267114],[5.868143912808934,52.80297021745285],[5.868326898188014,52.802881300306424],[5.868497904298825,52.802798039022775],[5.868679685926141,52.802726533609025],[5.868933754832568,52.80265361233166],[5.869078873920146,52.80261932505063],[5.869330376666606,52.80256663358849],[5.870022808327017,52.802431274550756],[5.870453554242316,52.8023705569793],[5.87126232214559,52.8022807761595],[5.871629487214982,52.802232660468796],[5.871821898105103,52.80220042425333],[5.872060322214307,52.80218035734239],[5.872374189010184,52.802131899041854],[5.872681885586812,52.802069984855734],[5.872942279942862,52.802005458834856],[5.873220163789457,52.80192961841855],[5.87342101161865,52.8018642108699],[5.873556926050127,52.80181478595599],[5.873742814217265,52.801737639254355],[5.87389339923896,52.80167411666528],[5.874190264227109,52.80155607530492],[5.874497328832867,52.80143799148353],[5.874642035751593,52.80138741499669],[5.874899087658515,52.80129368225242],[5.874989094709486,52.80126186000454],[5.875152968836257,52.80120558767098],[5.875427874597812,52.80111347017674],[5.875750023272095,52.80101891164256],[5.876014747684247,52.800948735367164],[5.876147859857174,52.800918424909064],[5.876292418741238,52.80085492398578],[5.876518783828582,52.800814111145954],[5.87670091214811,52.80079538944623],[5.876877374915362,52.80078849042482],[5.877080167551969,52.800753390142525],[5.877435747904398,52.800727780117086],[5.877755836343611,52.80071859924877],[5.87805395479669,52.80073365557401],[5.878266399843842,52.800754123850965],[5.878762583382061,52.80084925216157],[5.879008077003085,52.800923503597076],[5.879227154287532,52.801018083925754],[5.879377647417008,52.80109103734418],[5.879580694872497,52.80120253349473],[5.879655569565802,52.801254671047495],[5.880288445207969,52.80189720732225],[5.880615527306886,52.8022603849872],[5.880853174519831,52.80260426917438],[5.881123071407027,52.80288848163291],[5.881496114358964,52.8033008847158],[5.881596004712024,52.80338528771586],[5.881699409581969,52.803473603277716],[5.881783727313798,52.80353279087662],[5.8818974109795,52.80360814058241],[5.881980202101625,52.80365554369854],[5.882318426421858,52.803813654480535],[5.882398782277172,52.80385151445694],[5.882577976590401,52.80391985114181],[5.882944844430655,52.80405088066483],[5.883109563695475,52.804109732792504],[5.883530489826555,52.80422537479295],[5.884313719708675,52.80441532599086],[5.884643980267205,52.80448471876536],[5.885374022161052,52.80462208759396],[5.885913956760204,52.80472935115076],[5.886508959577835,52.80486952484435],[5.887019223704141,52.80495444971625],[5.887195951887237,52.80499021266871],[5.88756275188463,52.80507180089487],[5.887743068585181,52.805116543755645],[5.888011968671875,52.805187865484534],[5.888570188659636,52.80533155354743],[5.889602978341969,52.80551873923311],[5.889959804522087,52.805558798199456],[5.891978606027105,52.80587209871011],[5.8920731164027,52.80589023808627],[5.892781924541242,52.80605067577708],[5.893428762513452,52.80628270976399],[5.894115569893543,52.806602757693625],[5.894476967782058,52.80679555931551],[5.894815061439069,52.80695812866703],[5.895182423370329,52.80712506569578],[5.895639718226644,52.80727420149164],[5.895922021031387,52.80734039764551],[5.896959687974611,52.80754097910266],[5.897155274139974,52.80758226339785],[5.897260518146002,52.807605969485856],[5.897360911210477,52.80763081061189],[5.897448781863021,52.80765514809204],[5.89788151935167,52.80780326609196],[5.898161288937146,52.80796944595222],[5.898298157011647,52.80806209704842],[5.898636646739363,52.80847347137127],[5.898767146423948,52.80873409453554],[5.898978262534827,52.80925048608032],[5.899068956742186,52.80949555292083],[5.899258492778952,52.81014683849862],[5.899308458775953,52.81031793905309],[5.899410575777429,52.810528689843814],[5.899776771948659,52.811107320674935],[5.900019325565895,52.81135678400712],[5.900271319479886,52.81158261586644],[5.900657228393415,52.811824720524285],[5.901125461388181,52.81207096233932],[5.901722674256296,52.81228800462446],[5.902297153961666,52.812424252077456],[5.902729223570657,52.81247125396996],[5.903307978595906,52.812497956041355],[5.90424808828019,52.81262811672764],[5.904624807647179,52.81267872193405],[5.905037025825372,52.81275107252094],[5.905672967280416,52.81287075259482],[5.906007034644283,52.81293894640743],[5.906173957241686,52.81298427693731],[5.906319278610294,52.81302408458378],[5.907464609389599,52.813337555091415],[5.90756041935271,52.81336578668848],[5.907987038620245,52.81349815889462],[5.908211615868315,52.813576935090666],[5.90858355946447,52.81371235704773],[5.908875770336162,52.81382565990726],[5.909370101151008,52.81405939833573],[5.909660552619044,52.814218764289095],[5.909960142284222,52.81440786269046],[5.910373494254582,52.8147093530627],[5.911016806093281,52.81520809806599],[5.911382844839139,52.81546654842782],[5.911506730356145,52.815592941888674],[5.911693087051959,52.815788141758794],[5.911855518299211,52.81599805917601],[5.911908808481824,52.81605454918193],[5.91216733054637,52.81633369068729],[5.912470396613503,52.816731144075845],[5.912549899112645,52.81684817907405],[5.912883817759796,52.81738198668473],[5.913116534932947,52.817788735408634],[5.91355877708681,52.81832936027439],[5.913859899974207,52.81862234722584],[5.914322820106331,52.81899156278302],[5.914594386688575,52.81919705744134],[5.91499780749146,52.81945588836037],[5.915522581318243,52.81978382761866],[5.916321299826639,52.820280174249596],[5.916800858464779,52.82056731089135],[5.917529573024444,52.821003856853814],[5.91762205868379,52.82106185938504],[5.917803012432671,52.82116946150403],[5.9184610928868,52.82151476786025],[5.918556274152857,52.8215648942195],[5.918959792744383,52.82175237422165],[5.919385376658446,52.82194369055206],[5.919883710281654,52.82215040712959],[5.920010877318601,52.822200389379034],[5.920403778715087,52.82235197383213],[5.92077256197837,52.822503655972255],[5.920993846845226,52.82259140963186],[5.921186881838446,52.82266300539977],[5.92139666102084,52.822739010217276],[5.921631292322568,52.822818839449994],[5.92183858726245,52.82288081728249],[5.923022831247907,52.82314342245956],[5.92345603719298,52.823253242852644],[5.923709595554354,52.82332624276879],[5.923808525027425,52.823360621209275],[5.923948344608522,52.82342065243306],[5.924078760022328,52.82348803210165],[5.924156642263529,52.82355172106663],[5.924247869097987,52.82363049257762],[5.924321088131435,52.82368408333259],[5.924351029078795,52.82389570385171],[5.924340162564803,52.82399179450794],[5.924141164761953,52.8244178824344],[5.923767760784726,52.82502617118366],[5.923652904954618,52.825224954345465],[5.92302872942611,52.82646344287612],[5.922864888967387,52.82688375354139],[5.922839045104864,52.82721581394812],[5.922848576538919,52.82729384816098],[5.922869283146074,52.82737575937191],[5.922904771951463,52.827451987417916],[5.922946241982473,52.82752594187887],[5.922996707145581,52.82759536251024],[5.92306742420712,52.827671989337425],[5.923137027996286,52.82773402661704],[5.923227743778659,52.82779595993727],[5.923453523742455,52.82796456969644],[5.923600193973775,52.828090847885484],[5.92373111270263,52.828236859833545],[5.923732793982915,52.82837390045128],[5.923686626845453,52.8285594602785],[5.923584950651213,52.8288137939408],[5.923482812827271,52.8290293696577],[5.923356320167169,52.82924449763352],[5.92312112328369,52.82950055463691],[5.922948758056676,52.829624340211474],[5.922844841360896,52.82973264833467],[5.922751707669129,52.829851575206476],[5.922707386927723,52.82992423456946],[5.922677957890566,52.83000131141713],[5.922652935440402,52.83007837744949],[5.922638062907225,52.83020762894096],[5.922644064083952,52.830300273463344],[5.92265795070687,52.8303934487304],[5.922720626456204,52.830551001664816],[5.922784606795008,52.830702365809096],[5.92284112439595,52.83079197947436],[5.923047070039849,52.83098763930591],[5.923182178429106,52.831095996384704],[5.92450784771043,52.83205610532815],[5.926086468296761,52.8332554520573],[5.927006110757103,52.833771399999485],[5.92707891094727,52.833826671398214],[5.927164012007626,52.83386504586096],[5.927983769169817,52.834156769755175],[5.928582678414915,52.83436411694969],[5.929336168537893,52.83469544952258],[5.929647309618567,52.83482377601414],[5.930157908786602,52.835012986402276],[5.931327609538095,52.83528680013358],[5.931587114223863,52.83532774536803],[5.931950309066774,52.83537270068857],[5.932497937707534,52.83542411770926],[5.932630880297838,52.835430815809325],[5.934088932172939,52.83547356353867],[5.934781342284004,52.83547655922534],[5.934897556514196,52.835480518777295],[5.935164543795272,52.835489402052275],[5.935262125135057,52.83548670682084],[5.936149814331211,52.83542028166814],[5.936264248833783,52.83541132512614],[5.937153329791061,52.83534488608275],[5.937651000276456,52.835351576108756],[5.938475686344529,52.83541909354253],[5.938920855907032,52.835455227989456],[5.939073612365214,52.83546912446497],[5.93930398201364,52.83549726483444],[5.939629809895926,52.835537885439116],[5.939850300818275,52.835573367777464],[5.940246027327116,52.83564118012437],[5.94043101897814,52.835674022190844],[5.940608109589336,52.83570634346732],[5.940834790347947,52.83575471821695],[5.94111847465757,52.83581743119057],[5.941672747101496,52.83593505261102],[5.941802547307716,52.83596870640171],[5.941975712672011,52.83602014077547],[5.942341922395869,52.83613526401651],[5.942622516507663,52.836228875302204],[5.9429281155071,52.83633753902817],[5.943009468439647,52.83637142630927],[5.943287704338523,52.83649874737446],[5.94349442319932,52.83659888405192],[5.943813259126268,52.836763093815435],[5.944072691086766,52.836906227666105],[5.944368582129128,52.837071100292846],[5.94454359965048,52.837176442842],[5.944773087643966,52.83726130121542],[5.945130715981047,52.83737589886494],[5.945389620013837,52.83742242467236],[5.945560545855235,52.837442967862884],[5.945726978448015,52.83745679178918],[5.945933062737177,52.837451898972425],[5.946117024163279,52.837440360455005],[5.946247372700633,52.83742458866249],[5.946626058725649,52.837335748686016],[5.946810767509517,52.83727366405295],[5.94690236305483,52.83723784423426],[5.947035198047403,52.83718105331817],[5.947200392788222,52.8370982733269],[5.947384660737207,52.83700192334695],[5.947509909273917,52.83693225356361],[5.947580553187049,52.83688979160817],[5.947798472979788,52.8367595824463],[5.947972427997437,52.83665541661483],[5.948163982230945,52.836548921028275],[5.948343471784195,52.83644135856713],[5.948606170022529,52.836314307170234],[5.949339390340642,52.835991822167564],[5.949519581309923,52.835921891167],[5.949696838833114,52.8358581476387],[5.950065786270454,52.835699137966806],[5.950371410060443,52.835574683830096],[5.950505717163219,52.835524622112],[5.951184822780126,52.83525180849759],[5.951360680322206,52.83518806909012],[5.951595717852364,52.835110569124446],[5.951876418540471,52.83501375553898],[5.952115660517845,52.83493792413736],[5.952369824785272,52.83485134523096],[5.952610566094492,52.834766509963124],[5.952790797570387,52.83470050098871],[5.952897155945915,52.8346595559048],[5.95307421443596,52.83458120474336],[5.95322025882566,52.834507493949644],[5.953382172292857,52.83440562395218],[5.953482068597395,52.83433100863473],[5.953602368962542,52.834220915374566],[5.954073303524726,52.833810902271495],[5.954341599539512,52.83356304715837],[5.954432736762347,52.83349296607065],[5.954562217820927,52.83341146897023],[5.954721476465442,52.83333769340545],[5.954853055079567,52.83329325644409],[5.955023166905825,52.83325200585341],[5.955181634992231,52.833224856822405],[5.955288359610908,52.83321254867844],[5.955406946574877,52.83320299676272],[5.955512177889369,52.83320024847773],[5.955705327026925,52.833218990644895],[5.955953852298301,52.833270602572],[5.956114598764767,52.83331139942907],[5.956257466164759,52.833350034718435],[5.956342840242959,52.83340747505276],[5.956398545814109,52.833465623145955],[5.956470747612153,52.83354391268899],[5.956516022345602,52.83360211053316],[5.956581258948543,52.833715257022796],[5.956662112534812,52.83387101605984],[5.956725981273182,52.8340032658942],[5.956761340737715,52.83408397794255],[5.95679032172324,52.834154610332384],[5.956816608374393,52.83423256183462],[5.956808840609753,52.83431291374595],[5.95685268219578,52.83438516462887],[5.956853435792239,52.8344430088896],[5.95684752389883,52.83455874184446],[5.956835378500873,52.83464137034704],[5.956809837474464,52.83474484026686],[5.956781367620014,52.83483764788475],[5.95673843225677,52.83495917442765],[5.956705379602596,52.83503853274249],[5.956667787977989,52.83510779362167],[5.956583721396728,52.83525816638252],[5.956342961075179,52.83569685486996],[5.956038609131856,52.83625661042429],[5.955921409859033,52.83648071540288],[5.955824565837526,52.836682822417174],[5.955793160694917,52.83678182663406],[5.955773417695015,52.83685100206591],[5.955738072474052,52.83698597211901],[5.955719852262084,52.83708210956169],[5.955717997267067,52.837154012536644],[5.955726490425954,52.837236533456675],[5.955742235377337,52.837306105811344],[5.955763760723594,52.83737397007227],[5.95579293567417,52.83744235502691],[5.955824834729142,52.83750566743253],[5.955861356536749,52.837568400600915],[5.955908058778899,52.83762883850615],[5.956084282777545,52.83782458327569],[5.956498891391452,52.83821634139099],[5.956691145975163,52.83837886551975],[5.956929305952879,52.83855746298998],[5.957518325823099,52.83900398509393],[5.957792522818158,52.83919027186684],[5.958097816703188,52.83939494880437],[5.958277386638143,52.83950810390582],[5.958498656298708,52.83963567141294],[5.958732006730048,52.83976541830479],[5.958818637433439,52.83981106016459],[5.958921748207803,52.83985831245082],[5.959000812262046,52.83989275700872],[5.959153027931102,52.8399532447473],[5.959381229983461,52.84004314080569],[5.959594386769377,52.84011738182431],[5.959900003533589,52.84022207487695],[5.960038570169316,52.84026690021422],[5.960209970339879,52.840322243875484],[5.960530157824354,52.840406078912906],[5.960839825280594,52.840483223635275],[5.961012667994815,52.84052507906352],[5.961360685772936,52.84059080441599],[5.961762345138019,52.84066245317012],[5.962104466416718,52.840720898533995],[5.962405020673798,52.840775059059524],[5.963379376524262,52.8409450302883],[5.963925344459581,52.84103899842095],[5.964616114577907,52.841192923558864],[5.965242688484976,52.841331429109125],[5.965665524294328,52.84142542899103],[5.96602416770518,52.84150456936103],[5.966219065318096,52.84154686737507],[5.966571915472033,52.84162660040081],[5.967523186859233,52.841837090456956],[5.969379451908797,52.84224592601587],[5.969976246584808,52.84237500821455],[5.971343655387574,52.84241605477408],[5.972262834195834,52.842443567997364],[5.973128437532529,52.84247020508903],[5.972438297020203,52.8419169811377],[5.972916811343087,52.841076049275706],[5.972998682551641,52.84097342257556],[5.973005416979471,52.840916665003434],[5.972897877394613,52.84077059214061],[5.972870441565606,52.84071343625281],[5.972974877041064,52.84065001583712],[5.973073335859652,52.840452946491105],[5.973106490867046,52.840383136103405],[5.97317181966969,52.840274416635346],[5.973254270649258,52.840111126175856],[5.973351969702279,52.83987417700363],[5.973417078681714,52.83974916544413],[5.973720245154137,52.83911579650943],[5.973839060536908,52.838897839875386],[5.973918727680237,52.83875197894471],[5.973960611914928,52.838675942420636],[5.974232692827694,52.83816348024238],[5.974322352092217,52.837984992739145],[5.974471790238279,52.837733750334884],[5.974766431428777,52.83722791572425],[5.974937383372463,52.83692152261345],[5.975002732564648,52.836815039613995],[5.975037442756184,52.83675757775619],[5.975289666570893,52.8363053143153],[5.975384915698638,52.83611162863317],[5.975493487068923,52.83590889034299],[5.975528184150532,52.83583401200226],[5.975557038067135,52.83577265164685],[5.97582995177746,52.835324769204455],[5.975870608571871,52.835261660972556],[5.97595527761885,52.83514441467782],[5.976119111614727,52.834861645105995],[5.976175319968499,52.83474790926558],[5.976329789803055,52.83452809313361],[5.976452209582998,52.83437246605642],[5.976537359822317,52.834291164081534],[5.976662432905362,52.83421247752437],[5.976753991444424,52.83407272957979],[5.97692253370447,52.83381295966091],[5.977111648442563,52.83353175304618],[5.977196444366375,52.83344089936721],[5.977502629094487,52.83314169627185],[5.977690188841624,52.83296889504886],[5.977848306787994,52.83281365578945],[5.977956935859814,52.832719879582434],[5.978018669028286,52.83267295018199],[5.978210707429386,52.8325057426546],[5.978433429412542,52.83229344867084],[5.978498059642969,52.83223808401942],[5.978610854893597,52.832143163179204],[5.978696156388704,52.83207365849555],[5.978863042941543,52.8319155614563],[5.978990554482888,52.83179528735017],[5.979210416820911,52.83159480570722],[5.979340801558899,52.83146440679526],[5.979382776033496,52.831396240144876],[5.979457484443691,52.831314987847506],[5.979639544914431,52.83118208515946],[5.979782117815541,52.831078594552466],[5.980056450268191,52.83084357385419],[5.980447685455193,52.83047597269733],[5.98064669659639,52.830277272580545],[5.980936968812055,52.83002139293719],[5.98122601838614,52.8297784326846],[5.98127581990417,52.82972426370413],[5.981319521293533,52.82966450835152],[5.981557110205744,52.82947291166151],[5.981645137604505,52.82939945497287],[5.981777094153636,52.82928309180748],[5.98166408685763,52.829156159601254],[5.981711538054052,52.829031788244286],[5.981762465565189,52.828957959287685],[5.981887877552628,52.828803434699836],[5.981947601918724,52.828728429436346],[5.982100855239625,52.828541754702805],[5.982266853425304,52.828303899184846],[5.982368773320827,52.82816128200666],[5.982544078281134,52.827959893001264],[5.982647689351412,52.82783917695704],[5.98272784232852,52.8277326154027],[5.982931890132426,52.827463114962235],[5.983058895529899,52.82730745773648],[5.98325775087056,52.82708291669869],[5.983340713138349,52.82697803017378],[5.983442718461379,52.826842160671006],[5.98361020470843,52.82661215914225],[5.983655455624299,52.82654790170255],[5.983761589234833,52.826391781933744],[5.983833959043769,52.82625886425717],[5.983931692953148,52.826133125841615],[5.984054238506207,52.82599040384991],[5.984099419206344,52.8259210959887],[5.984157611077522,52.82583655320992],[5.984246829603426,52.82574904213174],[5.984384537236477,52.82551189126953],[5.984423724355795,52.82544485101605],[5.98480662411546,52.824795881284366],[5.985029584435919,52.82440215620225],[5.98535490585143,52.823781557033925],[5.985604970488713,52.82330287710195],[5.985645617049803,52.82322459554008],[5.98575970191106,52.82300665846619],[5.985829056329941,52.82287431174058],[5.985950894304399,52.82266475617246],[5.986147914779339,52.822325079937904],[5.986403831224504,52.82183513514601],[5.986474737200513,52.821698286777],[5.986863197968378,52.82174632683055],[5.986893022100881,52.82173592281777],[5.987550840756525,52.821823746851834],[5.987528430163541,52.82186087645944],[5.988005970927814,52.82193322282513],[5.988312817091411,52.821979422803395],[5.988491365114031,52.82200154650209],[5.988764804624002,52.82204566712792],[5.988894137633005,52.822061864642194],[5.989290010676053,52.82195819769975],[5.989447679866414,52.821927070636534],[5.989641492387522,52.82189632686569],[5.989953005580019,52.82182678464786],[5.990099340008416,52.821781676609795],[5.990285521869771,52.8217172607898],[5.990574759241303,52.82159672154487],[5.99076293387427,52.82149298649274],[5.990837309448774,52.82143981224035],[5.990912044531687,52.821380453180545],[5.991057272445267,52.82123817496513],[5.9912370286324,52.82102776318086],[5.991400938181193,52.82086235660436],[5.99145419520033,52.82080760846194],[5.991706061681782,52.82063389204624],[5.991839443019508,52.82055682744598],[5.992050405727133,52.82045914866084],[5.992088162596411,52.82046256976552],[5.992343845547459,52.82030769596528],[5.992797770285398,52.820045329552094],[5.993134424150342,52.8198515250237],[5.993519326488818,52.81961029321309],[5.993696200819753,52.81947796086919],[5.994209686718186,52.81911643965316],[5.994341937325496,52.81899275423322],[5.994560515703763,52.81875967236477],[5.994626479785816,52.81868575197999],[5.99474515676008,52.818552591239964],[5.994899484654268,52.8183664509287],[5.995465240592473,52.81778223327653],[5.995801240760424,52.817460361825155],[5.995971270978945,52.817320197432835],[5.996057558493891,52.81722539482313],[5.996108471503933,52.817153239982346],[5.996335650399383,52.816922348462654],[5.99639746010817,52.816833853636844],[5.996460867848833,52.81676106859886],[5.99648451770532,52.816678385559214],[5.996507927577958,52.81656143689839],[5.996643182233637,52.8166214065811],[5.996749198447202,52.81664501209317],[5.997034387059991,52.8166856835714],[5.997278498402927,52.816656907595295],[5.997403491742721,52.81667873484811],[5.997887077940698,52.81666951792219],[5.998235441076305,52.81670367987457],[5.99854323571396,52.81675377588447],[5.998671246138523,52.816791879487994],[5.999078501664256,52.81690998851683],[5.999354012843581,52.81702203273831],[5.999466123347378,52.81704954077873],[5.999581988684343,52.817098373182134],[5.99994778669588,52.81721837278923],[6.000288208986786,52.81733008113349],[6.000648806159498,52.81744280802915],[6.000849356447695,52.81751367042977],[6.003160870793141,52.818370667395016],[6.003872962226388,52.81863827121804],[6.004604403878371,52.818913076875255],[6.004749328056877,52.81896737052416],[6.005329698657846,52.81917948926145],[6.005650611169348,52.81931936740809],[6.006294536127108,52.81964853785846],[6.00647454285343,52.81970769779872],[6.006816619518241,52.81985195627658],[6.007062887706923,52.819925383470846],[6.007291707100959,52.81999327516901],[6.007483451263393,52.82004619856528],[6.008807540226814,52.820299362055756],[6.010087022610074,52.8205431909743],[6.010462302156186,52.82062491477641],[6.010854745191132,52.82069195296138],[6.011388626587205,52.820777903511235],[6.012831848183482,52.82102646227195],[6.01342016523426,52.82114132526893],[6.01732122814535,52.82183016149826],[6.017648247396805,52.82187505609108],[6.020112350769839,52.822121493130524],[6.020281445881954,52.82214530900222],[6.022093845052073,52.82228507574978],[6.023852236058141,52.82244083044839],[6.024559127124477,52.82254489504082],[6.025110068311109,52.822239764974555],[6.025401419747526,52.822079245949766],[6.025548530681495,52.821994206459166],[6.025987694704614,52.82168630072169],[6.026182668591061,52.821529675247696],[6.026340687764287,52.82138222546977],[6.0266167105767,52.82107800486465],[6.026769286415893,52.82085981218369],[6.026902720319096,52.82064847115195],[6.027342255455104,52.82008161983991],[6.027671439126558,52.81965746902842],[6.028086615706695,52.819138492834554],[6.028234961451151,52.818933243965205],[6.0284406531418,52.81860748708249],[6.028516379392681,52.818508224147884],[6.029590362423417,52.817097119323016],[6.029872349269584,52.816697373000395],[6.030053815198087,52.81642846880838],[6.030963153000952,52.815222689788996],[6.031161336241171,52.81498796041501],[6.031413700433159,52.81509668584683],[6.032024186957132,52.81535007665914],[6.032658595835665,52.815621865741946],[6.033929312950944,52.81619800092524],[6.034454959230422,52.81643273355552],[6.034741558969483,52.81655137627625],[6.035549427799539,52.81682670094227],[6.036305399476541,52.817087699123384],[6.036985189913187,52.81730642021188],[6.037761676760072,52.8175583104722],[6.038158220767747,52.81769656533167],[6.03827168321138,52.817736386541775],[6.039121598389558,52.81803112068349],[6.039895702622939,52.81832345105894],[6.04050333074885,52.81858074150928],[6.040739238850123,52.818686167381685],[6.041094360984443,52.81881283985281],[6.041808714887822,52.81907572109667],[6.04271203560485,52.8193583366514],[6.04298057154175,52.81945964241135],[6.043507779761138,52.81960671363141],[6.043695223926163,52.81963319919394],[6.044016104646022,52.81966962565162],[6.04428809775387,52.819707444119594],[6.044395253449012,52.81972763999466],[6.044716574399237,52.819793269486425],[6.044807469050482,52.8198112989861],[6.045393445980087,52.82001251608476],[6.045551299822292,52.82005882541174],[6.04598330940249,52.82017888469413],[6.046206774064822,52.82024168090514],[6.046957432514875,52.820526797871224],[6.047147062885289,52.82062011029653],[6.047271511390743,52.82069580964355],[6.047733164473728,52.82101284351112],[6.048210056924901,52.82135619451671],[6.048536240839032,52.82154310958028],[6.048778877873755,52.82169285944499],[6.049085937552761,52.821887176489334],[6.04956367622094,52.822178285675804],[6.049738595780436,52.822278973071015],[6.049932588275182,52.82244584134088],[6.050160622125356,52.82261026426567],[6.05045088569562,52.82278108965729],[6.050848906849975,52.822996239830296],[6.051431964104067,52.823290682401684],[6.051994436603057,52.823602653488514],[6.052519702835106,52.82389179624454],[6.052747087047455,52.82402701052204],[6.0529356157991,52.82412313280168],[6.053090438170079,52.82416663622477],[6.053863186060202,52.82434205447301],[6.055165399516541,52.82465379855026],[6.055905147123469,52.82486758272323],[6.056289215724934,52.824986193183896],[6.056272103381727,52.825027494037116],[6.058565459683376,52.82572829243294],[6.059154535204272,52.82586595041495],[6.059866884517541,52.826089974763825],[6.059758262177457,52.826231573684716],[6.059682226649188,52.82632242853851],[6.059616732328943,52.826389642332906],[6.059360592824839,52.82666293967553],[6.059251382879595,52.82676746159063],[6.057986111699432,52.82803948943455],[6.057369803700127,52.82865350527606],[6.056862168283721,52.82914277184621],[6.056447408229755,52.82953715276619],[6.056103510493275,52.829864856506425],[6.055526057005586,52.83049155841053],[6.054982939790893,52.831196133833245],[6.054934379958797,52.831280100405415],[6.054913299092313,52.8313571639274],[6.054909021479893,52.83144143964735],[6.054959828591689,52.83150462923362],[6.054762236303506,52.831971928846265],[6.054633926406903,52.83228494036933],[6.054532318544601,52.832523660735326],[6.054238572136105,52.83323975921936],[6.053820821378596,52.83417111119835],[6.053069275816685,52.835764859086055],[6.052986967872505,52.83600908683136],[6.052906879735908,52.83624711915905],[6.05264400379405,52.8370281950048],[6.052558899491491,52.837256710991824],[6.053203664346274,52.83740251734915],[6.053642183949596,52.837465787782676],[6.054409076326371,52.83756091115738],[6.054889159174253,52.837657645070415],[6.055436780454413,52.83771242543246],[6.05595841948676,52.837842056619735],[6.057646129695178,52.83825495994021],[6.061490249974432,52.839301035984015],[6.061790993139024,52.83929933484761],[6.068000333668985,52.83944658339067],[6.069392248185994,52.83928922143995],[6.074360762763025,52.838772596943095],[6.075562005509989,52.83865782569718],[6.080990663881222,52.83872577380489],[6.082913852625241,52.83930208365331],[6.083743219385842,52.83987689393238],[6.083614162310945,52.840349457778764],[6.084722083480568,52.84124560359165],[6.087084414917808,52.842863998617915],[6.087216923557579,52.842956459393974],[6.087359504781599,52.84305503484764],[6.087546978713584,52.84317637977483],[6.087734675290925,52.84323930855574],[6.088612655056163,52.84342456075545],[6.089050651148987,52.84344725459503],[6.089325777360018,52.843552919975],[6.090340997781707,52.84376262234845],[6.091095725098106,52.84394015337751],[6.091974504686337,52.84415851072271],[6.092552279077058,52.8443786424901],[6.093459810987941,52.844696231438846],[6.099318832115879,52.846789024421405],[6.099882596377181,52.84698393345097],[6.100102638462674,52.847065746598176],[6.102606095589006,52.84796966009906],[6.110227568669097,52.85072984080459],[6.111025069951568,52.85099853598972],[6.116804494852009,52.85314038437781],[6.117588666100549,52.853425410579604],[6.120148100446364,52.85434546497419],[6.120650548835408,52.854497965504954],[6.120872115460266,52.85458197783623],[6.121295158854554,52.85477090253276],[6.121895436408022,52.855042428651686],[6.12262473369182,52.85537101363356],[6.123177332343547,52.85562091736712],[6.123784154398426,52.855893516992005],[6.124390727540973,52.85616499172458],[6.124989178348448,52.85643595644494],[6.125535116892273,52.856688137212785],[6.126486306076608,52.857129341066425],[6.127161898583146,52.85744755491324],[6.127899015809574,52.85776762959912],[6.128736672162107,52.85814605543561],[6.129202140695983,52.85835659838124],[6.129834569443871,52.85864361168711],[6.130571689405659,52.85897546066071],[6.131411784571386,52.8593583460174],[6.131910567825422,52.85958889098503],[6.132724189387601,52.85995563926446],[6.133429099783785,52.86027251115634],[6.134180078458693,52.86061099136134],[6.134733390187348,52.86086702027387],[6.135879284180637,52.861368156557575],[6.136537538907831,52.86166845264978],[6.1370389002564,52.861897270541995],[6.137831131852565,52.86225682128027],[6.139474316269186,52.86300079875591],[6.140913374777082,52.86365000121085],[6.142158959361624,52.86421952939926],[6.143299841462496,52.864729047115404],[6.143956036084484,52.86502538825651],[6.144241594403637,52.86515444282345],[6.144839205720042,52.86543036432542],[6.145695940276845,52.8658214645184],[6.146598270761005,52.86623248873807],[6.147447325969277,52.86662082139949],[6.148108293191617,52.86692103663915],[6.149088812832674,52.86736861408909],[6.150013464093603,52.867791260777295],[6.151831630391636,52.868605853519675],[6.15269424167581,52.86899461930129],[6.153283292012711,52.869264936848154],[6.153827564680012,52.869508578721515],[6.154605361018052,52.869862485560205],[6.154626314051837,52.86985304039871],[6.15494460065677,52.869993424990575],[6.155028783264382,52.870029953938364],[6.155021039274359,52.87004480511766],[6.155958245024119,52.87048229722303],[6.156432118720668,52.8706938035837],[6.157052469929572,52.87097288762029],[6.157659998287971,52.87124868119251],[6.158344089454498,52.871562728093764],[6.159008245697608,52.87186342877834],[6.159545632499145,52.87210876977432],[6.160200874528385,52.872403338610525],[6.160729849068187,52.87264424436745],[6.161374349630804,52.8729343830114],[6.161966922064838,52.873201264959526],[6.162692957343043,52.873533554505975],[6.163472833284565,52.87389188370803],[6.164178383962726,52.87420689002327],[6.164804538801332,52.87449431681846],[6.165336796476387,52.87473405749153],[6.165907637788845,52.87498982813667],[6.166342088815358,52.87515829894137],[6.167174672021108,52.87548874212239],[6.168019111547765,52.875806187832495],[6.168890048449093,52.87613861479939],[6.169686052311046,52.87644568973116],[6.170261608725105,52.8766643379894],[6.171099906156542,52.876986286751205],[6.171795547959204,52.87724739227856],[6.172566658037864,52.87754899501077],[6.173069311628191,52.87773890240735],[6.173535060454284,52.877915004487576],[6.174057846344063,52.878113761900444],[6.174600533643505,52.878321938713476],[6.175124264963577,52.87852068523802],[6.175665555994349,52.87872830028093],[6.176157759011106,52.87891545091019],[6.17662032621262,52.87909494109982],[6.177106967542181,52.87928212463085],[6.177287926826774,52.879355067949675],[6.177468203472029,52.87942801551684],[6.179038181292004,52.88002983550725],[6.180997123947911,52.880778454170134],[6.182734761668824,52.88144258433243],[6.184483089263495,52.88211728527739],[6.185801754216266,52.882623520951825],[6.187138984777206,52.883153774305505],[6.187307046521696,52.88321667877171],[6.187895151739113,52.88343909449775],[6.188748770145904,52.88375913654872],[6.189793998939096,52.88414753192878],[6.190520331176915,52.884425163764554],[6.19201509905647,52.8849941857024],[6.192281466257185,52.8850884312644],[6.193419888816734,52.88551660705004],[6.19450318404519,52.88592549077296],[6.195409614969607,52.88627208865105],[6.196529383801495,52.886692497778256],[6.197397515564692,52.887024736762996],[6.197966847218357,52.887242728165006],[6.198158285064612,52.88733860208769],[6.199234855354704,52.88776770020042],[6.200533249023664,52.88827672476158],[6.20168084132826,52.88872722677121],[6.20184899342214,52.888793480315314],[6.202095955642445,52.88889009225333],[6.202578133556352,52.88907552238921],[6.203314753126172,52.889359746606],[6.204049329705028,52.88964623598276],[6.204845815587309,52.889952508114725],[6.20559135908462,52.890241159620665],[6.206390300272422,52.89055358761155],[6.206914169138192,52.890756687818865],[6.207156294061959,52.8909774488718],[6.207665059182277,52.89143902135694],[6.208140687428397,52.89186599560018],[6.208686234607595,52.89235595175976],[6.209186545356972,52.8927984788934],[6.209722423003805,52.89327951904755],[6.210206377473804,52.893714848319995],[6.210705708653262,52.894165239309004],[6.211192699150272,52.89460055260771],[6.212656541787635,52.895945202949086],[6.214137683178318,52.89727960522657],[6.215349233031047,52.89835130554395],[6.216371664726051,52.89923278011952],[6.217907051606925,52.900622369158334],[6.218714641506758,52.901337372783274],[6.219657572711333,52.90219522535037],[6.219993959569405,52.90248101452685],[6.220222933838699,52.90268723714737],[6.222700463683219,52.904886863471404],[6.224922289276791,52.90685625617255],[6.225972603440924,52.907777327199554],[6.226136249926053,52.9079289531791],[6.227313889739698,52.90898280542786],[6.229332826586932,52.91079178078059],[6.231143378358801,52.912411225412285],[6.232295683325733,52.91343936141415],[6.232744630069958,52.91366366574971],[6.23625647237982,52.91537319638193],[6.239329802481533,52.91688355164212],[6.242091606893416,52.918228679902846],[6.242407151999863,52.91837413629382],[6.243405563146529,52.91886687193027],[6.244821679842071,52.91958239321114],[6.24511683226983,52.92087549668219],[6.245775319115983,52.9216335186891],[6.246816394538502,52.92283587677283],[6.247552456369181,52.923695555237444],[6.248299535027884,52.924018188200805],[6.251266530592604,52.9253161341321],[6.252289474634027,52.92576705434675],[6.254171798648523,52.92658580503807],[6.254915585698639,52.926912914152304],[6.25575348538215,52.92727415801227],[6.256595031331137,52.92764379011471],[6.259249161814913,52.927482894507584],[6.262093447916052,52.92731605332791],[6.263146128155745,52.92726115517655],[6.267513948707899,52.92702290411109],[6.270868807854287,52.92683916540173],[6.274036659637612,52.926659534197015],[6.276478945782609,52.92651949133191],[6.280738548663504,52.92627930598613],[6.281948810558819,52.92620677839641],[6.283306791478358,52.92614267406292],[6.285199687870571,52.926045882635485],[6.286438936256888,52.92598207830986],[6.288234749119908,52.925876982937616],[6.290647621417674,52.925734625060585],[6.292884928311894,52.925608710920635],[6.295381786868479,52.92546111775915],[6.297496862479155,52.92533604666462],[6.300407408761547,52.92517284584077],[6.303058068856362,52.92502728561416],[6.303446068044193,52.92479346349955],[6.304855828239855,52.92393562564811],[6.307617251301894,52.922249553689525],[6.308822097106042,52.921499399935755],[6.31108011613921,52.92011538643147],[6.313254176471905,52.918777471766646],[6.316334499052445,52.91688988317547],[6.317905734982062,52.91591492344532],[6.321519702710432,52.91370231111723],[6.323771889550388,52.912321465867066],[6.326458216787859,52.910668111339604],[6.328117999370837,52.90964119865639],[6.330003004790239,52.90847487568772],[6.331578965308625,52.90750025920173],[6.333391764894438,52.906396794636095],[6.333917440144042,52.90646452221936],[6.334391756343406,52.906563552145066],[6.334745256738554,52.9067241921512],[6.337023442790492,52.90779013658304],[6.33844377589223,52.908452847562465],[6.340216558689951,52.90927730642394],[6.343019829178424,52.91052766994819],[6.344490072218731,52.911128124656],[6.345932119388307,52.911764169421865],[6.346741633534191,52.91212332628977],[6.347970044275693,52.91265490979323],[6.349625192647297,52.91336390353299],[6.351059980647233,52.91399095838767],[6.353009405018594,52.914830086746264],[6.355018363108177,52.915720942014055],[6.355342107703184,52.915863788798184],[6.359787647273002,52.91784916202433],[6.363445979340426,52.91948020008681],[6.367392029260324,52.92125818218671],[6.371138858824977,52.922914097238184],[6.374260357157934,52.92429816079714],[6.377500139793313,52.925755304746644],[6.378884459404998,52.9263650385802],[6.382411737207444,52.92794323281425],[6.386093365275377,52.92957339712735],[6.3888550605823,52.93080113019059],[6.392456827175532,52.93241379579772],[6.39344344074807,52.93284135355057],[6.39518718051956,52.934844217376934],[6.397864421349156,52.937887261358846],[6.400377641313537,52.940757514562044],[6.4028554721441,52.943551060360974],[6.404363508633901,52.945310512997786],[6.404455657025984,52.945279091824304],[6.40466850172781,52.94520469154502],[6.405273321101996,52.94500770305225],[6.405494730697606,52.94492939984517],[6.405903262192982,52.944784569908684],[6.406133146058215,52.94470483619909],[6.40621835163363,52.94467819100973],[6.406261022323941,52.9446674560488],[6.406295110371751,52.94465679429907],[6.406363150311546,52.94463028647239],[6.40643965174913,52.94459852993101],[6.406536155237177,52.94455052502412],[6.406566921163241,52.944535227328664],[6.406788219913378,52.94445556560438],[6.407052066739007,52.94435998380272],[6.407537208615894,52.944184747292724],[6.407775532553452,52.944099752811994],[6.407818202291263,52.9440890172955],[6.407929153129936,52.944062150878345],[6.408226945761495,52.943950719961386],[6.408252329046565,52.94393495557943],[6.408354332147594,52.943892599877984],[6.408524508981813,52.94382892831361],[6.408788333316695,52.943733342806425],[6.409332915222938,52.94353166317098],[6.40980099559224,52.94336174878171],[6.410532888941957,52.94309624320139],[6.41130744098705,52.94281999637811],[6.411945794627488,52.94259157325636],[6.413018219338179,52.94220906782816],[6.413528922297914,52.94202839259604],[6.413645244106496,52.94198675402941],[6.414107666927809,52.941821211803536],[6.414371481901668,52.94172562283071],[6.414661261409681,52.94162461545494],[6.414737531420537,52.941598031977556],[6.415078062717145,52.941481039522465],[6.415375834452434,52.94136959965124],[6.415877813494301,52.9411838038421],[6.416567105957185,52.940934183995616],[6.416805409312352,52.94084917138376],[6.416856518136448,52.94083317437452],[6.417035497362942,52.940779785543],[6.417171567029952,52.94072676647911],[6.417367204083289,52.9406524916006],[6.417528390748581,52.9405733281149],[6.417783486290063,52.9404726212255],[6.418189807238204,52.94031263362352],[6.418187717141248,52.94031043188698],[6.418520415065426,52.940180052587074],[6.419173394993768,52.93992731594698],[6.41970251921979,52.93972139906988],[6.420299189146585,52.93948973206953],[6.420546966358146,52.93939836600462],[6.420749754893388,52.93932567721309],[6.421121567912158,52.93919434092888],[6.421331910037739,52.93912159472981],[6.4215460588426,52.939048815187256],[6.42168122599341,52.93899959120906],[6.421823908801645,52.9389480192803],[6.422004473796466,52.93888054455201],[6.422026624266683,52.93887305521651],[6.423010878698043,52.93853734361184],[6.424291820234475,52.93809838480153],[6.425561646074792,52.93767094910126],[6.42668483429364,52.93728823708772],[6.42685098185965,52.937230568356995],[6.42702286765869,52.93717089925773],[6.427725360986549,52.93693369876614],[6.428352665983509,52.93672003042364],[6.428983771970378,52.93650632557967],[6.42948700310584,52.936330337394196],[6.42983631369305,52.936210601377276],[6.430256968970121,52.936065077684155],[6.430305303038582,52.936028042565674],[6.430372857241185,52.93600228896282],[6.430534556624127,52.935940645685605],[6.430538542409514,52.93594434945076],[6.430567128735756,52.935970341707126],[6.43058402533318,52.935986460532256],[6.430596193498332,52.93599767782433],[6.430615496690943,52.93599004998166],[6.430739616233783,52.93610462799908],[6.431540821802164,52.93683967981761],[6.432354204107995,52.93758513448436],[6.433232425596506,52.93839067788333],[6.43399462979061,52.93909010693673],[6.43481923621711,52.93984721942623],[6.43563275034023,52.940593459492675],[6.436509244560455,52.941408699954856],[6.436536805291977,52.94143443018703],[6.437262421414935,52.94211187217319],[6.43789324745914,52.94270036374928],[6.437913145110876,52.94269263965337],[6.437940841349742,52.942718368370244],[6.437981876371392,52.94272348942837],[6.437975590395371,52.94274044024401],[6.438028130246628,52.942747616947315],[6.438108621497784,52.942821950020964],[6.438085653002595,52.94281954588442],[6.438069342452187,52.94286498374771],[6.438093382518754,52.94288714980645],[6.438465592506452,52.94321663513982],[6.438605609079386,52.943346486734185],[6.438616398359552,52.94335649312024],[6.439296025641559,52.94398675953616],[6.439656573798615,52.944321106985726],[6.439857720509409,52.94451219492706],[6.440041747078165,52.94468428219471],[6.440268717347617,52.94489414927201],[6.440431892832976,52.945045480119234],[6.440620834510615,52.94521883525498],[6.440794647675529,52.94537991252714],[6.440941053954772,52.945517478760145],[6.441123040851571,52.94568607743981],[6.441285010202039,52.945834658765925],[6.441338970762606,52.94588563298638],[6.441405218653227,52.94594820876411],[6.441574944550908,52.94610552847388],[6.442344738484726,52.94681167646264],[6.442521040368034,52.94697177662585],[6.442971799750199,52.94738525616254],[6.443284228466154,52.947671137852694],[6.4433204408098,52.94765692383267],[6.44333270651668,52.94766821086378],[6.443296538140848,52.947682397537804],[6.443542049635457,52.94790702183927],[6.443683910402292,52.94803681523836],[6.443786230867373,52.94813067782438],[6.443933097543465,52.94826375182838],[6.444092636186596,52.94841008614435],[6.444290225019394,52.94858969479595],[6.444365655271548,52.94865936826489],[6.444437102856793,52.94872555404373],[6.445344610967101,52.94955866292656],[6.445602316458736,52.94979804842056],[6.446176514983239,52.95032661463809],[6.446187075201541,52.95033623593304],[6.446344491324485,52.95047971023633],[6.446693395880874,52.95079581530846],[6.446982321639017,52.95106100110624],[6.447280044112842,52.95133716211291],[6.447607816893302,52.95164221833702],[6.447815145861253,52.951836868762975],[6.447849624602924,52.951823486605136],[6.447915464948323,52.95188506484625],[6.447924783716766,52.951893780340804],[6.447893756167963,52.95190590066213],[6.44807637166479,52.9520809897564],[6.44828374179402,52.95227532446154],[6.448602258009351,52.952574870290576],[6.44880047191063,52.952762095881276],[6.449032127749229,52.95298062206537],[6.449527402019054,52.95343443713302],[6.449533194418206,52.95343642566431],[6.449611267783744,52.953506395855776],[6.450475376367994,52.95430359840785],[6.451224979610321,52.954998563426614],[6.452148241279965,52.95585662596628],[6.452879386400908,52.956531551467165],[6.453454346552098,52.95706814628996],[6.454752974284681,52.958280662817714],[6.455438212025636,52.95892151791654],[6.455566017901153,52.95904390082774],[6.455773117874586,52.95923783853972],[6.45605790638971,52.959504531283514],[6.456061204333872,52.95950428609202],[6.456123464773721,52.95955912466895],[6.456132942684053,52.959569338922556],[6.456151903677721,52.95958330575982],[6.456165536290886,52.959597257359704],[6.457309538163245,52.96063738472018],[6.457334482401673,52.96062769803748],[6.457347512637338,52.96063951600291],[6.457349019730112,52.96064088649498],[6.457367910477194,52.96065801717766],[6.457349752459404,52.960665261540356],[6.457342748108019,52.960667912520954],[6.465389203862437,52.96813840287482],[6.466590803527001,52.969253717804776],[6.466598215977368,52.96925308467007],[6.466608702136545,52.96925033879836],[6.466641077949445,52.96923767131424],[6.466669829694303,52.96926377029154],[6.466690951960385,52.96928294634303],[6.466658035488518,52.969296023136955],[6.466650522827204,52.96929982058507],[6.466644808787009,52.96930411404075],[6.466805306382547,52.969455280371186],[6.46718209046826,52.969804712026644],[6.46767915529521,52.970266658929724],[6.468067476012042,52.970628700011034],[6.468329627312752,52.97087094411297],[6.468331114567631,52.970875684749885],[6.468630935269776,52.971150425666124],[6.468743639499578,52.97125400467972],[6.469316801137134,52.97178150776912],[6.469809553743123,52.972237634385465],[6.470245152163289,52.972641182140094],[6.470716697162406,52.973078849330136],[6.471141467987031,52.973473765681305],[6.472085475948856,52.97434645863258],[6.472778252741827,52.97498972535887],[6.473825867770399,52.97596056235636],[6.474003302426618,52.97612440737423],[6.474037698361947,52.97615616894694],[6.474043567531585,52.9761580837097],[6.474984666718072,52.9770383832272],[6.47603380392492,52.97801968380968],[6.476029159198406,52.97802149655255],[6.476048534798031,52.97803955451473],[6.476414853962151,52.978368813911004],[6.477178225161591,52.97907250496913],[6.477829018706337,52.97967368909115],[6.478359565692311,52.980164394822964],[6.479043929262854,52.98079842763156],[6.479497839186634,52.981216926437945],[6.479791590638794,52.98148800127983],[6.480656998481804,52.982286591953255],[6.48069433334893,52.98232114662399],[6.481670333313271,52.983224350477],[6.481707669791779,52.98325890481745],[6.482487042267572,52.98398329217394],[6.482684625283597,52.984159341663556],[6.482809793459724,52.98427621069568],[6.482904813984235,52.98436493931119],[6.4830152520087,52.98446804937488],[6.483116037614168,52.984562153070996],[6.483213636299092,52.984653275285616],[6.483357219532914,52.98478636703535],[6.483589792917204,52.98500097157414],[6.483735799295986,52.985136170544564],[6.483893215664923,52.98528209389155],[6.483901399352741,52.985278873378604],[6.484339546375756,52.985688026267056],[6.484327041141538,52.98569290412332],[6.484388579831032,52.985743367005085],[6.484484739491876,52.98583272198323],[6.484597429470028,52.985937436549115],[6.484626204240236,52.98596416908033],[6.484738238841442,52.98606826044645],[6.484823954194598,52.9861479063208],[6.484912582208363,52.98623024842271],[6.484985689271621,52.98630830245706],[6.484988099885124,52.98631058995653],[6.484999439908348,52.986306154106934],[6.485024036701057,52.98632899762939],[6.485029981419942,52.98633029106735],[6.485082835277077,52.986321528647906],[6.485095730879165,52.986316772945386],[6.48512452766731,52.98634376577584],[6.485111553607048,52.98634895357447],[6.485065270493738,52.98638324142708],[6.485064331631163,52.986387348088016],[6.485066745560863,52.986390947646335],[6.485074408359671,52.98639245896142],[6.48516460103802,52.98646653650896],[6.485302535618962,52.98660133141046],[6.485384359601707,52.9866765820806],[6.485312018531034,52.986705097181854],[6.481136809024957,52.988350781962396],[6.476969227997966,52.989984691382475],[6.475233729977119,52.99066755363105],[6.475207389321449,52.99067791263398],[6.474374868751464,52.99100547477707],[6.474330962304821,52.99102275148837],[6.46832251803059,52.993387476498064],[6.468386451980976,52.99344653522532],[6.474578264503181,52.99914641860656],[6.474704272505023,52.999262056907455],[6.474709883129226,52.99926720927201],[6.475027002788764,52.999564198269425],[6.47507871225103,52.99961261635465],[6.475114644490175,52.999632357077346],[6.475128862364109,52.99965883783604],[6.476816053951564,53.0012222240863],[6.476839471344487,53.001248369163804],[6.476855845074527,53.001276402769136],[6.47686474055712,53.001305627889835],[6.476865961277939,53.00133533635544],[6.476859474101524,53.00136480053139],[6.476774711380564,53.00160281750669],[6.476575883595201,53.00216109644523],[6.476550480659868,53.00223237810749],[6.47652518371072,53.002300756037364],[6.476014014522915,53.00371715044186],[6.47592393319572,53.00395314804512],[6.475910435689654,53.003990656311935],[6.475842934717653,53.00417826963214],[6.475760490244437,53.00442363374007],[6.475663490942443,53.00467025362813],[6.475551317860605,53.004988088629766],[6.475462063186334,53.00524482890183],[6.475321837196384,53.005626554902676],[6.475235902119833,53.00590473433711],[6.475112653779779,53.00623868413478],[6.475054032391197,53.00640035186989],[6.474974187142377,53.00661057991944],[6.474874707223692,53.00688289696426],[6.474808262810047,53.00707677269646],[6.474778498340703,53.00715737693624],[6.474731123170056,53.00728566383466],[6.474648214305266,53.00750935480313],[6.47457584315977,53.00770939531978],[6.474468389339196,53.00800743289866],[6.474422765498655,53.00814684740265],[6.47437024321665,53.008292831085186],[6.474322120491584,53.00843243900574],[6.474266918684475,53.00859941331129],[6.47418334979841,53.008805828126405],[6.474148542342915,53.00890413715717],[6.474104383387816,53.00903010283367],[6.474079599962814,53.00910443367179],[6.474066007180922,53.00914719982565],[6.474058085857552,53.009171266714446],[6.474055728081552,53.00918364506309],[6.474052625742621,53.00920081118303],[6.474050258887513,53.00921521165499],[6.474050528912112,53.00922959714591],[6.474052312240779,53.0092508797684],[6.474057753316598,53.00933387778186],[6.47405828149318,53.0093937793141],[6.474063238664141,53.00946695011031],[6.474068130933379,53.00955958700788],[6.474094514821187,53.0097580104468],[6.474115198820419,53.0097634931334],[6.474109149192576,53.009780775910826],[6.474104420667099,53.009794281190125],[6.474099469733231,53.00980842655694],[6.474099038471808,53.009809652688304],[6.474078497492116,53.00986833478942],[6.474062031117063,53.0099153688432],[6.473808735250153,53.010639045016354],[6.473670866918657,53.01103290604146],[6.473274244832655,53.01215345668966],[6.473013094649383,53.012891239306036],[6.47296319788331,53.01300969853517],[6.472735932471631,53.013624870781285],[6.472477856569167,53.01434921552863],[6.472474339259337,53.01436113703043],[6.472436802650186,53.01448835379686],[6.472425068943004,53.01452811917478],[6.472370490056512,53.01467765209905],[6.472242102163944,53.015049955268765],[6.472115331626354,53.0153963794756],[6.471941973194713,53.015892677060485],[6.471703437581727,53.0165656263085],[6.471505330961103,53.01712046296342],[6.471306721895239,53.01768164841788],[6.471102432457466,53.01826506437415],[6.470985413253059,53.018592679007156],[6.470968702313312,53.01864212315457],[6.470954768460781,53.01866546238163],[6.470945000479651,53.018686130717256],[6.470930674403311,53.018702104303316],[6.470921210357348,53.01871463681078],[6.470914179586473,53.01872434337986],[6.470910649839604,53.01873041450838],[6.470854093697063,53.018862017726384],[6.470888975831985,53.01886955612403],[6.471401806154847,53.0189640685388],[6.472214764972805,53.019111439668926],[6.472960451160887,53.01924845215755],[6.473468262765667,53.01934035919763],[6.473973528401505,53.019432278242114],[6.474341881985334,53.01950043848239],[6.474865068207192,53.019594266830495],[6.475090540955851,53.01963480455901],[6.475420194959843,53.019694066083815],[6.475557118750975,53.01971934918995],[6.475581768876171,53.019724112546044],[6.475632348122864,53.01973293561733],[6.475720956693571,53.0197475505363],[6.475854590290974,53.019771766858085],[6.475973909300915,53.0197927073456],[6.476108239722024,53.019818552643514],[6.476257148618417,53.01984391454984],[6.476462630663018,53.01988116283158],[6.476642260348998,53.01991324518668],[6.476805824186176,53.01994293936434],[6.476988573770588,53.0199769878519],[6.477177032572114,53.020011667026786],[6.477306252063856,53.02003392689022],[6.477454567636944,53.020061126033845],[6.477618011738659,53.02009194355135],[6.477788539974754,53.02012176161631],[6.47792339130202,53.020146899164075],[6.478103705622646,53.020178856263115],[6.478272900645467,53.020211345902595],[6.478405544152945,53.02023637723625],[6.478563639220683,53.02026244330946],[6.478781494262129,53.02030262125133],[6.478852291750322,53.02031471835509],[6.47896155429185,53.02033448951664],[6.479198465748556,53.02037680235246],[6.479303335307947,53.02039670318321],[6.479414399159901,53.020415190341694],[6.479501454189472,53.02043192856628],[6.479564202367011,53.020445141239655],[6.479627681600755,53.0204571968888],[6.479693668169234,53.02046820510181],[6.479771061543556,53.020481211988475],[6.479843310782979,53.02049293577296],[6.479892080724894,53.020502636317794],[6.479967954172056,53.02051564797785],[6.480029256612598,53.02052884665821],[6.480085058621082,53.02053607439771],[6.48019875164067,53.02054825501359],[6.480246153317427,53.02055035607718],[6.480306016531323,53.020550761541756],[6.480345693106707,53.02055088417712],[6.480383890917887,53.02054850400465],[6.480429203153377,53.02054811676996],[6.480471868771454,53.02054619899092],[6.480515084329198,53.02054362911763],[6.480556081763961,53.020539974127395],[6.480595052290946,53.020535133419145],[6.480642975780078,53.02052894369984],[6.480683734312137,53.020524086615],[6.480765751529583,53.02050937115388],[6.480815371502231,53.020500712448566],[6.480853864624607,53.02049229926354],[6.480909378410798,53.02048036035057],[6.480950609892841,53.02046883062259],[6.480988297112475,53.02045622791546],[6.481040344094151,53.02043800290734],[6.481118813972516,53.02041084592867],[6.481250619941168,53.02036754593539],[6.481330024139869,53.02033843911367],[6.481533285217709,53.020269986967364],[6.48157631407589,53.02031034850108],[6.482090023812175,53.02013509451205],[6.482058184834058,53.020099375765156],[6.482364914751408,53.01999645402396],[6.482457868617054,53.0201331821745],[6.48274228956044,53.02005460239867],[6.482845669756809,53.02024604542761],[6.482861974370707,53.02027621762293],[6.482822479059536,53.02038798020959],[6.482778764468179,53.02057599873883],[6.4826420133575,53.0214659858773],[6.482572309205086,53.02162934879428],[6.482310639173858,53.02195719403905],[6.48214178869172,53.022122857427725],[6.482099459378014,53.02219915666507],[6.482194449513457,53.02221831864317],[6.482196067589699,53.02221806118445],[6.4822040408329,53.022217448974644],[6.482221805796165,53.02221859839929],[6.48225611644907,53.02222278665101],[6.482369989712481,53.02223955584684],[6.482650617886895,53.02227313978409],[6.482905048378125,53.02230686422431],[6.483317018846827,53.022358978304524],[6.483601557087013,53.022395660586085],[6.483826680484555,53.02242557171933],[6.484342810105361,53.02249562647357],[6.48460120477664,53.022525096132895],[6.484888818239385,53.02256070467524],[6.485180735035248,53.022599085899145],[6.485476426894965,53.022641745424835],[6.485696594350159,53.02266770841155],[6.485996374772504,53.0227087474227],[6.486289774581887,53.02274557557836],[6.486586452682277,53.02278117763408],[6.486815864602576,53.02281548323699],[6.48727488143118,53.0228722377247],[6.487545945534634,53.02291098473759],[6.487818793667836,53.022938346380506],[6.488039989085635,53.02296594020062],[6.488355187078079,53.023005878810075],[6.488619146026857,53.02304001566565],[6.488891991372175,53.02307838376378],[6.489099232127362,53.02310576267566],[6.489533232314457,53.02316024067282],[6.489739814790572,53.023187489744146],[6.490003817380101,53.02322325875779],[6.490434853099518,53.02327652963514],[6.490821638931597,53.02332572286266],[6.491123592481455,53.02336333200094],[6.491576265357189,53.02342218658755],[6.492385964223997,53.023524364556415],[6.493291223592274,53.023643042871576],[6.494075919646001,53.02374401176777],[6.49497606634442,53.023864647883784],[6.49916453257594,53.02451875542755],[6.498954924679564,53.02489947238992],[6.498265572741822,53.02612076385314],[6.49791563073873,53.02675310152512],[6.498016021488953,53.02677002605733],[6.504779966070301,53.027942401846346],[6.50485149186556,53.027954800384144],[6.505160016128378,53.027293774719446]]],[[[6.516121754876863,52.62172824973954],[6.516209812392328,52.6217274040486],[6.516229454052236,52.62172796339938],[6.516301916345523,52.62173000711997],[6.516312128791689,52.621730296548385],[6.516380116385394,52.62173407245758],[6.517014382815108,52.621769333085105],[6.51701985183595,52.62173212536159],[6.51708502446589,52.62130530235195],[6.517189702279471,52.62061972113439],[6.51726701937057,52.62011328493467],[6.517269699008814,52.62009571518209],[6.51727060283408,52.620090080196995],[6.51731240324604,52.61983099456045],[6.517381097837659,52.61940524316215],[6.517535186581171,52.61840832865451],[6.517586357530586,52.618077232905115],[6.517637350581565,52.6177472892395],[6.517637439616927,52.61774673114587],[6.517472982418237,52.61778370792051],[6.517480092204786,52.617732796035284],[6.517482575309884,52.61771505736711],[6.517492728223603,52.6176423389771],[6.517492827408765,52.61764160103006],[6.517466251306958,52.61764753417996],[6.517502139637282,52.617422874074386],[6.517511324912752,52.61736538130835],[6.517536435718265,52.61719947840309],[6.517544527999448,52.61714600460965],[6.517558402908573,52.61705434934698],[6.517619455944654,52.61665099600577],[6.517649528242953,52.616452348039395],[6.517676962313017,52.61627115259868],[6.517706792844719,52.616074034831435],[6.517740135824034,52.615865352209134],[6.517795563309552,52.61551847790658],[6.517799556929704,52.615493444686166],[6.517856600990765,52.61513653347861],[6.517920094334459,52.61473641014178],[6.517958486210676,52.61449442426523],[6.517960328980915,52.61448281239411],[6.518005705873502,52.614189142751925],[6.518029950613971,52.61403219974011],[6.518024931884305,52.61403169026457],[6.517352971092735,52.613985334782974],[6.516723361601882,52.61394190734901],[6.51632288763222,52.613915083645914],[6.515265594389221,52.61384426407611],[6.513321264462096,52.61371056407132],[6.513029718105972,52.613690516140814],[6.513023981586517,52.61369080418754],[6.513003911148918,52.613691812279015],[6.51288409260473,52.61369781009323],[6.51286905078589,52.613698563793065],[6.512749415311609,52.61369324403522],[6.512657846826568,52.613686660616985],[6.512323052556824,52.61366258964722],[6.512134253783872,52.613654356098316],[6.512026919941852,52.613649674107705],[6.511999126322036,52.61368474719326],[6.511998194466476,52.61368468411325],[6.511919074867479,52.613679303474164],[6.511635019430055,52.613659981126474],[6.511521184426588,52.6136522414289],[6.511135851498755,52.61362541876608],[6.51009778268437,52.613554524222494],[6.510057648347873,52.61355448113507],[6.51001302493802,52.61355442653437],[6.510004957870968,52.61355596779671],[6.50996932418816,52.61356275784433],[6.509930149084195,52.61357021948662],[6.509884825785289,52.613580354680344],[6.509875752265684,52.613582381800725],[6.509818462254483,52.613587632813015],[6.509817383469727,52.61358759806788],[6.509781990244186,52.613586449519794],[6.509760591696607,52.61358575293454],[6.509701276440834,52.61358164870503],[6.509168474165028,52.614195284574386],[6.50911343298808,52.614258674330834],[6.509067302537624,52.61432117999669],[6.508892342856551,52.61455825956778],[6.508891172618627,52.614558693045275],[6.50888434127127,52.61456122021283],[6.508207164941826,52.61481207217123],[6.50704281522074,52.61523999889852],[6.506879941025784,52.61537922770185],[6.506696897424407,52.615532487597335],[6.506313519194543,52.61568934216209],[6.505924526353195,52.615848495294614],[6.505044854722766,52.61599781252737],[6.502843936724733,52.616371380861196],[6.502726289579694,52.616393472146065],[6.502603766835292,52.61641896154809],[6.502589162850775,52.61642188488283],[6.50251720038172,52.61643627589431],[6.501095553272776,52.61665564134634],[6.495995436519501,52.61744244436103],[6.495985745259013,52.61744286735518],[6.495822158083034,52.61744996637958],[6.495586784818953,52.61746571608996],[6.495504523539552,52.61747122007447],[6.495316120630881,52.617483906631385],[6.495116151844774,52.61749235962864],[6.495115163591986,52.61749240479561],[6.495111241465093,52.61749263910228],[6.49490598114866,52.617505005850845],[6.494670954472115,52.617519294485234],[6.494647422359206,52.617520727192655],[6.494573704275712,52.61752537794505],[6.494349512478101,52.617539511026344],[6.494347994543422,52.61753963302544],[6.494226629942771,52.617549248430954],[6.494101326719135,52.617554334597],[6.494053397615791,52.617556282093524],[6.493397072193429,52.61759780679004],[6.493169947096837,52.61761218065942],[6.493115083512729,52.61761437208484],[6.493071564322733,52.61761610736685],[6.492906028248739,52.61762678867131],[6.492853690155513,52.617630169826825],[6.492803725608201,52.617633394054394],[6.492683254899331,52.617639817875194],[6.492555824926041,52.61764843643225],[6.492482041155232,52.61765342803201],[6.492372549055103,52.61765953369454],[6.492246847221167,52.61766405537713],[6.492139767545047,52.61766684884727],[6.492031118095004,52.617671229685676],[6.491905140398496,52.61767476491235],[6.491849342032737,52.61767560728462],[6.491813412792342,52.61767615704687],[6.491779420532799,52.617677983034824],[6.491732553834957,52.617680494936195],[6.491678278140711,52.61768140396246],[6.49163685930545,52.61768210356996],[6.491604800617449,52.61768389355788],[6.491595436764491,52.61768442100353],[6.491535286284956,52.6176877843195],[6.491499561949919,52.61769296979289],[6.491441296829247,52.61770143858965],[6.491398441081838,52.61770843394901],[6.491372424758363,52.61771268430375],[6.491308119581982,52.61772644007524],[6.491285191208199,52.6177313447875],[6.491282102114327,52.617731822884885],[6.49118242453581,52.61774713862636],[6.491111254262354,52.61776155127697],[6.491063841610492,52.61777115038126],[6.491012505971268,52.617781540889816],[6.490954748764824,52.6177967276098],[6.490908595894723,52.617808867486154],[6.490778092986212,52.61784160899691],[6.490666197956932,52.617867931011226],[6.490601599309488,52.617881779000726],[6.490365956184034,52.61793228569372],[6.490335331275402,52.617938852526926],[6.490203138100108,52.617954855817686],[6.490111329411354,52.617959518949235],[6.490053420332325,52.617960416020594],[6.490010257734165,52.61796107731888],[6.489926253725625,52.617957794541894],[6.489880084446256,52.61795691982063],[6.48982691198614,52.61795590335625],[6.489701966795055,52.61795117584987],[6.489471816841827,52.6179439460325],[6.489164854930508,52.6179375720374],[6.489045607695418,52.617933932444025],[6.488948276892079,52.6179309613135],[6.488575998784909,52.617920994169104],[6.488411829398445,52.61791555936579],[6.488296712747495,52.61791174591907],[6.488175022747307,52.61790667206725],[6.488127059724488,52.61790551669],[6.488125331021445,52.617905478781964],[6.488123843733066,52.617926308323426],[6.488111376585481,52.61810090413011],[6.488089398811866,52.618408904172455],[6.488065725939983,52.61874065668464],[6.488063484658023,52.61877208084093],[6.488063204141956,52.61877208344011],[6.487928834692717,52.61877323851208],[6.487791970118363,52.618774416545484],[6.487756068635337,52.61876371208667],[6.4877256125871,52.61875462890854],[6.487711661347809,52.61875537829449],[6.487673229055425,52.61875744195925],[6.487670839983615,52.61875757194143],[6.487670677804297,52.618757582431364],[6.487717388945115,52.6188403318918],[6.487755787335304,52.618908364410196],[6.487755926278807,52.618908605793855],[6.487762199569245,52.61891971053606],[6.487827917175658,52.61903613196007],[6.487859794879247,52.61909260361914],[6.487871619550138,52.61912137188854],[6.48804271326615,52.6195374679454],[6.488101895328291,52.61969127611039],[6.488119490748321,52.619737013780025],[6.48822811028429,52.62001927582817],[6.488269097714226,52.620125787924806],[6.48834806713865,52.62032550202784],[6.488430351690935,52.62053727394001],[6.488468503549806,52.620635480550895],[6.488586026904548,52.620936390289245],[6.48861715156084,52.621016965008685],[6.488692399223282,52.62121182399858],[6.488819602597297,52.62153942738791],[6.488962624422806,52.62190240372969],[6.489009872788252,52.62202230323681],[6.489022417097801,52.62205556759551],[6.48910809252388,52.62228276656229],[6.489174971479927,52.62247411669521],[6.489201156718857,52.622549029805],[6.489209680532365,52.62257506928976],[6.489262519049414,52.622736494391155],[6.48936952406828,52.623063376702646],[6.489442054076827,52.62325323619793],[6.489469128470616,52.62332410547171],[6.489681081741208,52.623878968962764],[6.4897193664239,52.6239616160243],[6.489725096594494,52.623973983988336],[6.489726743226361,52.62397839969263],[6.48972921238679,52.6239849917991],[6.489738014044337,52.62400853904344],[6.489749034404105,52.62403929188716],[6.489846375580629,52.62431089856544],[6.489868119768717,52.62436704126743],[6.489913787423391,52.62448495076882],[6.48997223603383,52.6246307655766],[6.489993977999567,52.6246850388127],[6.490239878261963,52.62529854607273],[6.490277269786489,52.6253937841433],[6.490350286411819,52.62557976477312],[6.490381320728502,52.62565882987329],[6.490496873982896,52.625935470809836],[6.490497769967668,52.62593762854849],[6.490498005762469,52.625938785784335],[6.490501025895573,52.62595379431882],[6.490503042358688,52.625953514949664],[6.490687391661705,52.62592787759183],[6.490705834008348,52.625925315568914],[6.490892937180353,52.62589818730534],[6.490918852649563,52.62589443236118],[6.491350197810491,52.625831743655496],[6.492088798601112,52.62572439451466],[6.492137641263087,52.625717298359135],[6.492158729412922,52.62571423515314],[6.492656187462953,52.62564065381993],[6.493118239518314,52.62557230726578],[6.493150437437351,52.62556760356801],[6.493356353790776,52.62553751906958],[6.493530131094917,52.62551213747421],[6.493610213558414,52.6255004356989],[6.494773303746058,52.62533051599829],[6.494796258685398,52.62532711136009],[6.49486719827372,52.6253165904682],[6.495171070800332,52.625271505739704],[6.495226515529732,52.625263277197696],[6.495831006929745,52.6251736028334],[6.496042856050579,52.625142892068084],[6.49629502582017,52.62510632201673],[6.496330373257274,52.62510120157919],[6.496374886664571,52.62509467436305],[6.496902115945264,52.625017372891115],[6.496982901967169,52.62500552744223],[6.496986992653697,52.62500492300424],[6.497008138502878,52.62500183143043],[6.497100640226223,52.62499129654829],[6.497362519617997,52.62496147324135],[6.497713660167117,52.62492148581373],[6.498842009081891,52.62479296996471],[6.49888103810257,52.62479036685835],[6.49892468228578,52.624787459912454],[6.498954186097559,52.624785485169774],[6.49901244201054,52.624781596622945],[6.499293941533546,52.62476789832469],[6.499415374386323,52.624761989209105],[6.499484006154635,52.62475840775995],[6.499604705426893,52.62475210985401],[6.499650150061262,52.6247497340416],[6.499756468139222,52.6247401013279],[6.4998242229623,52.62473396636775],[6.499881697929299,52.6247266513639],[6.499979967979242,52.62471415479996],[6.500115234337715,52.624696943569305],[6.500133594734049,52.624694102221106],[6.500320655375734,52.624665134907154],[6.500802113210624,52.62459059064087],[6.501087393667285,52.62454778607071],[6.501102842802638,52.62454546619274],[6.501136963423637,52.62454034683128],[6.501624457829284,52.624468079451546],[6.501710020423582,52.624455395045814],[6.502066601914017,52.62440253603319],[6.502253880861724,52.62437412085363],[6.502567336114781,52.62432656338785],[6.503086444493277,52.62424779162225],[6.503160840482616,52.62423684681623],[6.503759567138863,52.624148731946654],[6.503985343399927,52.624115503288884],[6.504102155261843,52.62409811940875],[6.505391846089041,52.62390615224379],[6.50550471014065,52.62388921756823],[6.506726494601167,52.623705928012406],[6.506869396529372,52.623684871212646],[6.507570426226989,52.62358157220519],[6.507662840008641,52.62356779427534],[6.508303173471593,52.623472352387914],[6.508508834023671,52.62344169564242],[6.509388333924048,52.62331442965411],[6.509484788628166,52.62330046832931],[6.510052956730589,52.6232150009568],[6.510221988525803,52.623189576745254],[6.510532271922068,52.62314165063409],[6.511069970551698,52.62305860553072],[6.511147690988334,52.62304208774896],[6.511208945035776,52.62302907814608],[6.511242553915721,52.62302193844567],[6.51129257073175,52.62301131801254],[6.511957160212021,52.62284505441406],[6.513000459004846,52.6225840448245],[6.513010613980941,52.622581503915825],[6.514084660359724,52.6222742295935],[6.514882667763697,52.62204591727945],[6.515362791972157,52.62190929224411],[6.515813927398525,52.62178091281718],[6.515917514209353,52.62175387308506],[6.51591780835479,52.62175382535161],[6.51595158340547,52.62174804887807],[6.515989725640266,52.62174152985419],[6.516025691393378,52.62173652347664],[6.516045822909508,52.62173372574108],[6.516061109659619,52.62173262779361],[6.516083825692542,52.621730982902854],[6.516121754876863,52.62172824973954]]],[[[6.470760636748888,53.01833926545909],[6.470791300693555,53.01826605058703],[6.470838334859782,53.01827146584143],[6.47099933969635,53.01781857182803],[6.471171830596647,53.01733576411072],[6.471251525229776,53.01711439721643],[6.471454287836897,53.01654654181057],[6.471572860501639,53.01620448851766],[6.471729244076986,53.01576826966912],[6.47191081069049,53.01525027562003],[6.472060061241174,53.01483124977373],[6.472172917021012,53.014501730224836],[6.472300932160674,53.01413065265391],[6.472497907576547,53.013581584863715],[6.47270175829245,53.01300667996771],[6.472824285175825,53.01266382517308],[6.473013667851394,53.01212211346899],[6.473107740674327,53.011865646515915],[6.473265378399394,53.01142896416637],[6.473367900931035,53.01115177741283],[6.473477379616589,53.01084471798654],[6.473554590997026,53.01062389277517],[6.473647054086989,53.01036229040485],[6.473720221110603,53.01016215356304],[6.473755344022876,53.01007341283114],[6.473773687562904,53.01001024835063],[6.473787405619647,53.00996173851111],[6.473795663167505,53.0099242781907],[6.473796363214137,53.00988012843742],[6.473795703369767,53.00985848511925],[6.473795552878143,53.00984530278228],[6.473830605982634,53.00968817274301],[6.473809292443288,53.00955369851742],[6.473800880494756,53.00947820455587],[6.473792424577539,53.0093866335203],[6.473790298190178,53.00931820900657],[6.473787282619815,53.00923327474389],[6.473785728049026,53.00919609230395],[6.473787385549593,53.00918371133793],[6.473789291065706,53.009165154152925],[6.473794508983874,53.00914976618508],[6.473799805248674,53.0091309535155],[6.47381542398283,53.009081599595866],[6.473846945250386,53.00900081793293],[6.473881033611574,53.00889993630697],[6.473925755428321,53.00877143130415],[6.47397132184208,53.00864573148573],[6.474016048209107,53.0085114658233],[6.474068957073424,53.00837314458534],[6.47412529614471,53.00820992551591],[6.474175594285431,53.00807209526226],[6.47424437350522,53.00786296602464],[6.474311565927029,53.00767621943566],[6.47436134293143,53.00754321975302],[6.474430800082715,53.00736545730938],[6.474488682219496,53.00719374038077],[6.4745453219815,53.00703611711319],[6.474601208957198,53.00688892540788],[6.474660434117977,53.00672926549769],[6.474728561858933,53.00651093925333],[6.474760173501601,53.00642437789401],[6.474843210870792,53.00619699199143],[6.475118311350431,53.00544555129992],[6.475180130326347,53.005248571964934],[6.475259007071829,53.00503668991486],[6.47533855814761,53.00481129440324],[6.475390647467092,53.00466497253685],[6.47550377719682,53.00435499245592],[6.475540751457759,53.004241726963215],[6.475602708035321,53.00407480712658],[6.475632413720764,53.003993187604166],[6.475655288069502,53.003930304968186],[6.475746234480695,53.003687146153325],[6.476253030536953,53.002228428662086],[6.474644605546605,53.001800968859726],[6.474455705692722,53.00175076072802],[6.473333023581985,53.00145236503401],[6.472189886998224,53.00114852770757],[6.4721856129699,53.0011473892151],[6.471582610913407,53.00098710620525],[6.471051069844513,53.00084580866213],[6.469885006019317,53.0005358395321],[6.468715974647521,53.000225068148836],[6.467590926610972,52.99992596629901],[6.465990918442466,52.9995005795189],[6.465436179983181,53.00095910093031],[6.464997493407678,53.00211244859986],[6.464789931709917,53.002652083964065],[6.464234389750507,53.0040964059496],[6.463985796384415,53.004742651604076],[6.463909494525079,53.004996354447414],[6.463868348728877,53.0051054478409],[6.46381428691847,53.005265756724654],[6.463728285690592,53.00547676935399],[6.463667559876372,53.00563513408149],[6.463610108136212,53.00578674713304],[6.463544048704771,53.00595659105973],[6.463454910693813,53.00619026952758],[6.463458811496635,53.00619136675744],[6.463373127965867,53.006407534638825],[6.463308667373176,53.00658005106761],[6.463248575906121,53.006739488223],[6.463199468111738,53.0068731690648],[6.46257140869109,53.008564570409156],[6.462344037940624,53.00918471156838],[6.460796365033291,53.01340533282984],[6.459601330472464,53.01661718616412],[6.459588109186418,53.01665272174452],[6.459528354596205,53.01680577272334],[6.459637297020293,53.016825375593406],[6.460463622949862,53.0169772356589],[6.461014552880189,53.01708060799999],[6.461557936238604,53.017178806303015],[6.461627274013368,53.017191340057636],[6.462034447700957,53.01726406007313],[6.462249996314486,53.01730019969795],[6.462389455866514,53.01732620293543],[6.462511445790443,53.01734963110414],[6.462643503914249,53.01737341794827],[6.462792555435812,53.017400997018896],[6.462953688590244,53.01743140591341],[6.463164724991429,53.017467009331256],[6.463297037992874,53.01749203334451],[6.463427681103724,53.017514609853436],[6.463547014260451,53.017536020874225],[6.463648415042826,53.017552425773886],[6.463719328656538,53.017564153297855],[6.463759308976772,53.01757365192948],[6.464167347309338,53.01765090426497],[6.464345924342122,53.0176833559699],[6.464522457959355,53.01771452272981],[6.464760808626203,53.01776014920978],[6.464972315826876,53.01779838733552],[6.465177403603612,53.01783194690279],[6.465316671458328,53.017860896148086],[6.465474842559856,53.01788950404391],[6.465650436419476,53.01791936554581],[6.465917896103902,53.017968663450695],[6.466122895397419,53.01800700318853],[6.466359609041823,53.01804898363447],[6.466565890226123,53.01808730206263],[6.466796853009563,53.01813111294177],[6.466996080557877,53.01816861360025],[6.467136844005606,53.018195282556334],[6.467406374633309,53.018240819933524],[6.467573520474646,53.01827004497487],[6.467728501513688,53.018297896871616],[6.46808576488978,53.01836255479241],[6.468220829707568,53.0183865419925],[6.468447222034507,53.01842861162563],[6.468598889341442,53.018456204782424],[6.469004016890079,53.01852898260366],[6.469738030244226,53.01865648679842],[6.470196070107629,53.0187431425649],[6.470576748543356,53.0188087942597],[6.470632446050892,53.018679185041535],[6.470760636748888,53.01833926545909]]],[[[6.474806621178659,52.99971960031528],[6.474754729498686,52.99966984472823],[6.4747382813466,52.999676303139026],[6.474587995430097,52.99953581231763],[6.472971609275364,52.998024675462986],[6.47186059759078,52.99699081803081],[6.471877789329387,52.996989116306025],[6.471011746367784,52.996186480264036],[6.469632200793993,52.9948981913799],[6.468461115609366,52.99378817927117],[6.468186552396088,52.99353037530918],[6.468119299930822,52.993467230491774],[6.46709073508324,52.99386973856788],[6.458357504336397,52.99730108606401],[6.458344374221904,52.99730624533744],[6.458373098387716,52.99731554100114],[6.458439180419222,52.997336921752954],[6.458461562245957,52.99734453077615],[6.458527325951368,52.99736689389987],[6.459561285574778,52.997647665656274],[6.460573071090729,52.99791544389798],[6.461806310120751,52.99824526363951],[6.462464863152346,52.998421389168485],[6.463263859799752,52.99862513983182],[6.463879835318389,52.998790982426314],[6.46547821918185,52.99921163987203],[6.46723165258739,52.999676942170446],[6.471705691118152,53.00086704859926],[6.471815019264468,53.00089573146041],[6.471839633131871,53.000915620771394],[6.471885749125118,53.0009273795943],[6.474640884608699,53.00165209027234],[6.476287657385841,53.00208521301099],[6.476532361219888,53.00138430829759],[6.476533265280303,53.001335330588184],[6.476503228895837,53.00128995094224],[6.474854160578573,52.999757928222465],[6.474831450730246,52.999736170902686],[6.474806621178659,52.99971960031528]]]]}},{"type":"Feature","properties":{"id":19,"statcode":"WS07","geometry_g":"polygon","gag_id":"1","hierarchie":"2","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.07.07_Waterschap Rijn en IJssel_p","sde_id":null,"land_code":"NL","inspire__1":"NL.07.07_Waterschap Rijn en IJssel_v","inspire__2":"NL.07.07_Waterschap Rijn en IJssel_l","wbh_code_o":"07","einde_leve":null,"laatste_wi":null,"admin_code":"07","waterschap":"Waterschap Rijn en IJssel","publiceren":"07","Aangemeld":1,"Actief":1,"KVK":9212548,"tnostatus":2,"CPT":344,"GMW":624,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[6.218503305445719,52.10031309887222],[6.218505198501092,52.10032208251192],[6.218549457524686,52.10050687553318],[6.218528615022064,52.10137243886602],[6.218442954129505,52.10168370541418],[6.218302048937076,52.102580732231495],[6.218283454223467,52.10286849272047],[6.218159118254495,52.10312385413121],[6.217973237671362,52.103798172403216],[6.217566140829696,52.10480493530365],[6.217349590956573,52.10521655738706],[6.217237876045937,52.10548896291781],[6.216522897794484,52.10680630480463],[6.216119598884123,52.10745546510773],[6.215844850553236,52.10796496151647],[6.215720868194181,52.10831469578616],[6.215449686327537,52.10875871925475],[6.215263644679271,52.10912012462977],[6.214377255048309,52.11014232007905],[6.213993928724015,52.110468873379446],[6.213237986393565,52.11103594946298],[6.212774120870447,52.11131306519219],[6.21169480233533,52.11184925132443],[6.211088522843583,52.11212342412181],[6.210549884934278,52.11234262906099],[6.208440431160142,52.11308203664304],[6.206639533224031,52.113521801555756],[6.206014390266468,52.113653388402874],[6.204854546478205,52.11378587392123],[6.203774800020355,52.11393268006625],[6.202599977780003,52.1140576631573],[6.200790454034355,52.11420443274757],[6.199788449280565,52.11421190740942],[6.195636708215355,52.114166024726494],[6.195036001162304,52.11417519976031],[6.193873407175732,52.1141326033973],[6.192849672270834,52.11418735678288],[6.192271630669698,52.11423905756372],[6.191336059211251,52.114363417172335],[6.190097993776912,52.114678305404176],[6.188911280640936,52.11527512222672],[6.187782815389714,52.116017873109854],[6.187457015014827,52.11627091736869],[6.187143484906731,52.1165469101072],[6.186917606839942,52.116774837458344],[6.186511003678747,52.11726830425682],[6.18605379961107,52.118019966226385],[6.185867858427608,52.118402389126295],[6.18548922847462,52.119632708183985],[6.185388965573171,52.120035335435915],[6.185341007475367,52.12046682056044],[6.185294395804123,52.12138226341305],[6.185372573710136,52.122233099984086],[6.185455389484108,52.122704989626854],[6.185574284858713,52.12314011961914],[6.185858517539436,52.123889283510145],[6.18610870218168,52.12440554201324],[6.186140514736286,52.12453846638591],[6.186311435678722,52.124934761536885],[6.186552831267443,52.12534181397946],[6.186891353639939,52.12578247513303],[6.187730998832674,52.12682279540723],[6.188239325248234,52.127403865948615],[6.188906904961062,52.12817344936207],[6.189477543000543,52.1289186899576],[6.189964157063016,52.129723766937474],[6.190347543970105,52.13056156620515],[6.190626436545179,52.13117171616018],[6.190907268065215,52.13188915060946],[6.19101163924362,52.132489253830606],[6.191172112028518,52.13331508740344],[6.19124334432575,52.13373480674503],[6.191266281398361,52.13415934959352],[6.191261597331815,52.13468491877704],[6.191227697210445,52.1352356859969],[6.191164467479762,52.13561531289547],[6.191133135474709,52.136296112542276],[6.191174455310557,52.13728510998526],[6.191145179450269,52.1376872569182],[6.191108908094185,52.1381192253848],[6.19108706980004,52.13833874591648],[6.191031623139868,52.13854248510176],[6.190973839330534,52.138819270424534],[6.190835100504168,52.13931569823374],[6.190619013457056,52.139851976886945],[6.190487977575721,52.14016802321763],[6.19030601552029,52.14054621106941],[6.190177004385481,52.140784718830915],[6.187400099881044,52.14515619555503],[6.187150805294486,52.14551208323171],[6.186920057651,52.14585857534525],[6.186715059299636,52.14620264530039],[6.186378313419937,52.14663468222688],[6.185972576346428,52.147153698080736],[6.185486444453387,52.14773505143034],[6.184336316753515,52.148860473037864],[6.183374539387203,52.14989950331186],[6.183015371349319,52.1503578037519],[6.1822229557344,52.15144904910028],[6.181942779442229,52.1517930551852],[6.181736172657166,52.15214021640454],[6.181627522356608,52.15247520109885],[6.181594902508309,52.15263075003224],[6.181562110030068,52.153058758167866],[6.181603235384316,52.153675865426464],[6.181695869295282,52.1540440427932],[6.181859975183041,52.154502183302576],[6.182295416159177,52.15545144682535],[6.182611497214842,52.156006028439734],[6.182718174618355,52.15614940262849],[6.183017893272974,52.156771786660265],[6.183320655824931,52.157295558920445],[6.183651401013555,52.15796660573906],[6.184030636652182,52.1588845022517],[6.184457272104486,52.15978325781731],[6.18466190842472,52.16037257409809],[6.184870131933311,52.16143038073476],[6.184973430276711,52.1619327458005],[6.185236350012517,52.162728116622674],[6.185390526725937,52.16304868578139],[6.185741822770822,52.16358785266252],[6.186117124924587,52.16402601845973],[6.18686797460718,52.164685502225616],[6.187646822576224,52.165262211292074],[6.18876244843575,52.16598521482249],[6.189761006356938,52.166571933003794],[6.190542697593039,52.16711236969483],[6.191143615802689,52.167683526319614],[6.191718585752747,52.16827142905005],[6.192105359168594,52.16870696971501],[6.19247445299883,52.16920021106122],[6.192896152056545,52.16988662111106],[6.193230566166342,52.17050733744551],[6.19355888219946,52.171421899235256],[6.193948883687231,52.17239951797367],[6.194172780589389,52.17372741052837],[6.194195746570663,52.17410026732631],[6.19417752082176,52.174734066171894],[6.193950298794584,52.17543221237439],[6.193533261286878,52.176194854435415],[6.19340872882345,52.1764709717014],[6.192767311787871,52.177257333813586],[6.192130774831252,52.17783440056618],[6.191766990877356,52.17813293350922],[6.191344290314617,52.178407710902285],[6.190557268582409,52.17887624991417],[6.190052218979361,52.17914596562986],[6.188836795551427,52.17967695485633],[6.188153660068859,52.17987765137244],[6.187379070191538,52.18003655081633],[6.185970208698785,52.180217436847975],[6.184509293015259,52.18037534447928],[6.183848170445986,52.18049272566868],[6.182916606557812,52.18069029390116],[6.182217258798735,52.180919434369336],[6.180976078085376,52.18148731106211],[6.180512551707266,52.181668789601424],[6.18013146757136,52.18188706970355],[6.179521651652029,52.182180757117486],[6.179144120695954,52.182419514573205],[6.178708118844767,52.1826595057198],[6.177175364224544,52.18384920629445],[6.175459881505848,52.18508561029109],[6.17502419529643,52.18542361350322],[6.174057255383938,52.186123284708536],[6.173466420278259,52.186591803521495],[6.172837044037363,52.18701338761981],[6.172246256655369,52.18751195426327],[6.171843110099108,52.18778006997026],[6.171418163931024,52.188108157149074],[6.170596695339562,52.18856246439253],[6.170217295496736,52.18879165495337],[6.169205714485413,52.18923457407662],[6.168502780039116,52.18949230575709],[6.168078831207947,52.18957965778335],[6.166915250727722,52.18973509663811],[6.166596597331827,52.189793940115734],[6.165653571188631,52.18983471385846],[6.164108732959779,52.1896965896761],[6.163266889345847,52.18959033842362],[6.161394340146974,52.18939675286038],[6.160690904744968,52.18941765736233],[6.159771288704365,52.18968827316803],[6.159310760429302,52.189894365377825],[6.158584330916351,52.19027718392635],[6.157737896533418,52.191028737143036],[6.157212987086746,52.191729032006585],[6.156845687074847,52.19236004216825],[6.156630658502091,52.192678279324255],[6.156503459207284,52.193067287499915],[6.156224603547102,52.194123535772576],[6.156109091127523,52.19541550227863],[6.156206884391882,52.195851355332366],[6.156719611748994,52.19759172686751],[6.156884871955244,52.197963379142315],[6.157035998863826,52.19837669386087],[6.157261592003958,52.19872126823434],[6.157767774367542,52.1993123097739],[6.158103098671244,52.19959156321251],[6.15849130597074,52.19987552596409],[6.158905147725871,52.20008207737208],[6.159329618310547,52.200321420951944],[6.159763549455647,52.20049974976669],[6.160889255425714,52.200909765357856],[6.161385039275086,52.201069144549095],[6.161993801816195,52.20120587123401],[6.162757131488841,52.20130618805096],[6.163411769661136,52.201346825303666],[6.164314874023781,52.20136194815232],[6.164993344909118,52.20132742427835],[6.16875698121126,52.201017464829356],[6.169970342696009,52.20098610997627],[6.171408461826474,52.20110211680254],[6.172414575027815,52.201268731180065],[6.174156386864719,52.20169024942716],[6.1745517921445,52.20183142375033],[6.177226282023247,52.2029266863528],[6.177594611115476,52.20305913878041],[6.178049839759686,52.203222837918126],[6.178657272364807,52.20338705981294],[6.178804110466931,52.20342675744284],[6.179598191189211,52.203580969649],[6.181094312314244,52.20370040183529],[6.181822329562322,52.2037895979641],[6.182757077765344,52.203947897695386],[6.183123065597228,52.20402632416051],[6.183640693329556,52.204199226232674],[6.184422410810019,52.204491121805795],[6.184939510153661,52.20472328792719],[6.185270760890369,52.20483986165391],[6.18563309708433,52.20501998442431],[6.186148027613913,52.205334458441904],[6.186716841422231,52.20578507397262],[6.187526800781222,52.2063357311907],[6.188158970089357,52.206735913171094],[6.189586986408232,52.20778822928653],[6.18997701250408,52.2081833063198],[6.190273736987495,52.20855092870904],[6.190538729157754,52.20902213095667],[6.190751731940085,52.209500427716364],[6.190897343605823,52.20995586974816],[6.190966450110732,52.2104789633879],[6.191043532210484,52.21078516168435],[6.191071327597567,52.21169194049382],[6.191008732616161,52.21318946771102],[6.190824677327201,52.21411397976382],[6.190586660022349,52.21498801900035],[6.190119193619639,52.21607147098705],[6.189659094844999,52.21675292899323],[6.189353013214234,52.21709993202211],[6.188998377954745,52.217442769901076],[6.188104136025645,52.218193457534234],[6.187652044386009,52.21850914509015],[6.186153406730632,52.219374300621524],[6.185371850004444,52.21977001272177],[6.184564488089518,52.22030886248451],[6.184112450243839,52.220579033004256],[6.183639592664467,52.22091282139659],[6.183294823274593,52.221223273650494],[6.182226074888161,52.222058794687584],[6.181579498260223,52.2226676035065],[6.180902914141218,52.223146281531456],[6.180481980716198,52.22340667869974],[6.179624841547932,52.2238539801001],[6.179178751001239,52.22405078138025],[6.178587337038064,52.22421597298195],[6.178140436717057,52.224393394927795],[6.177188445394729,52.224730084924964],[6.176670166680959,52.22489365390834],[6.175971004060793,52.22516123162891],[6.174803825933123,52.22555214525994],[6.174095902092985,52.22584280241835],[6.173839165260463,52.22597708903767],[6.173018139451615,52.22661116768194],[6.171930001469943,52.227753163058715],[6.171217208340078,52.22835476978242],[6.16952630403164,52.229482486011456],[6.169128042382297,52.22971263738846],[6.168004982192537,52.230307952302304],[6.166032985187513,52.231196480605156],[6.16490329760838,52.231731139083976],[6.164286824549644,52.232081242345444],[6.164135991497887,52.23216706074961],[6.164049535122418,52.23221959243937],[6.163642409083455,52.23251275636152],[6.164512677184399,52.23265718922071],[6.164987245750815,52.23273511039057],[6.165383188358086,52.23275002850185],[6.165895547919112,52.23282160298612],[6.166192526726007,52.2328829297587],[6.166978677105525,52.233038934404156],[6.167566468097385,52.23315764976576],[6.167613654469538,52.23317884658767],[6.167668037080872,52.233189677408475],[6.167673404617902,52.233181049241324],[6.168473266285148,52.23333865211073],[6.169145639420553,52.23347350896917],[6.169433737620629,52.23353129116717],[6.170068541348923,52.23365965054838],[6.17083157628316,52.23381073155488],[6.171585907531894,52.233965209069105],[6.172179477287961,52.23408498173694],[6.172159944682535,52.234120598115716],[6.172606011603041,52.23421281722999],[6.17263475470029,52.234217671549914],[6.172826262214637,52.234253258014995],[6.173072996163875,52.23430246282052],[6.173200925182172,52.23432897773959],[6.173530489099475,52.23439727969964],[6.173829841344864,52.23445833784911],[6.174039567320574,52.234500847710244],[6.174300820156868,52.234554743304734],[6.174554094634132,52.23460529399472],[6.174782270167597,52.234652092711706],[6.175089060904725,52.234714706951],[6.175370992160635,52.23477385511231],[6.175703755352775,52.234840635682254],[6.175978651941234,52.23489760030757],[6.176140479324431,52.234934997551846],[6.176407242548493,52.23499389405411],[6.176579134660175,52.23504157780585],[6.176807221681572,52.23510789553125],[6.177005554047478,52.2351646866389],[6.177182623855487,52.23521368311074],[6.177336070359297,52.23525632995848],[6.177397452695359,52.23527194511638],[6.177531714413314,52.23531087315624],[6.177619748406291,52.23534093357125],[6.177749871915898,52.23538093169326],[6.177810056519715,52.23540945477118],[6.177863605706377,52.23536853949557],[6.17793675005309,52.235387796720026],[6.178102324876689,52.23542910301403],[6.178211340807377,52.235456029390285],[6.178304816959359,52.2354833653768],[6.178387063388318,52.23551392239446],[6.178550256476524,52.235559549357525],[6.178647289002536,52.23557161213786],[6.178749913806791,52.2356222788428],[6.17877149039226,52.2356312122597],[6.17883358912096,52.23566482518555],[6.178848126986738,52.235675567459054],[6.178867380173826,52.235707786818246],[6.178894714680485,52.235763887500006],[6.178937356199537,52.23580071376735],[6.17899656457548,52.23582818908864],[6.1792013001161,52.235916221427416],[6.179381311476389,52.235987063119744],[6.179448868890686,52.2360172235972],[6.179482907433463,52.236035385021914],[6.179528729499301,52.236054285294124],[6.179561242313258,52.236073086106195],[6.179529875831834,52.23611292543903],[6.17968793735692,52.23617437749563],[6.17974088446346,52.23619547691113],[6.179813525792944,52.23620691664507],[6.179842395573456,52.2362044578369],[6.179885537342614,52.236201076302876],[6.179939372403822,52.23619969024493],[6.179984944676403,52.2362004359059],[6.180117243053444,52.23621433315094],[6.180646876128176,52.23646617449595],[6.180694217459137,52.236489764925736],[6.18071760164263,52.23651874744861],[6.180745240921136,52.23654497795486],[6.180796280410354,52.236577271009104],[6.180862034844806,52.2366121256398],[6.180966595391697,52.236655761486105],[6.18108642133947,52.23670736599156],[6.181163592819525,52.23674289870377],[6.181372510932143,52.23686630360163],[6.181319733796409,52.23690460647195],[6.181440045216988,52.23695080560739],[6.181771265012843,52.23708551218026],[6.181898811749927,52.23712526301675],[6.182028208099823,52.23716269304932],[6.182159342071707,52.23719776987739],[6.182292100128481,52.23723046312452],[6.182426367378111,52.23726074449125],[6.182546212556077,52.23728345954514],[6.182667251473084,52.23730364853391],[6.182789342879849,52.23732128788576],[6.182912344349962,52.23733635702144],[6.183036112353496,52.237348838371716],[6.183160502505836,52.23735871736679],[6.183285369656256,52.237365982471616],[6.183410568123089,52.23737062522931],[6.183535951839249,52.237372640206225],[6.183661374485239,52.237372025053894],[6.183786689752614,52.237368780498485],[6.183911751416822,52.23736291031307],[6.184036413557706,52.237354421361296],[6.184160530734173,52.23734332353322],[6.184283958116863,52.23732962978926],[6.184406551721371,52.237313356095825],[6.184528168482031,52.23729452145166],[6.184648666529213,52.237273147832106],[6.184767905262134,52.23724926016161],[6.184885745568701,52.237222886321135],[6.185002049956084,52.23719405707542],[6.185115091434053,52.237161496928515],[6.185226259701638,52.237126590447424],[6.185335425601146,52.23708937821113],[6.185442462278178,52.23704990343486],[6.185547245401905,52.23700821200471],[6.185649653206635,52.236964352342234],[6.185749566740872,52.23691837541206],[6.185846869909825,52.236870334640365],[6.185941449678927,52.23682028583278],[6.18603319614673,52.236768287155655],[6.186122002747602,52.236714399009166],[6.186430270800041,52.23652085294904],[6.186484634251894,52.23648017455175],[6.186541107875899,52.2364405946259],[6.18659963282721,52.23640215441819],[6.186660148102927,52.2363648939854],[6.186722590629437,52.236328852167084],[6.186786895363445,52.236294066503845],[6.186852995277484,52.2362605732465],[6.18694850286218,52.23621143705692],[6.187046556739604,52.236164229266556],[6.18714705366033,52.23611899957221],[6.187249887806606,52.23607579560296],[6.187354950893498,52.23603466284773],[6.187462132285321,52.23599564461847],[6.187571319126344,52.235958781995386],[6.187682396428102,52.23592411379952],[6.187795247244003,52.235891676537584],[6.187909752756139,52.23586150434752],[6.188025792377837,52.23583362900662],[6.188110050697071,52.23581297900991],[6.188195389955706,52.23579407617652],[6.188281714055583,52.23577694179282],[6.188368925809421,52.23576159516673],[6.188456927056586,52.2357480535545],[6.188545618693261,52.23573633221482],[6.188634900876055,52.23572644433548],[6.188724673095424,52.23571840105062],[6.188814834277781,52.23571221142238],[6.188905282931149,52.23570788240372],[6.188995917204621,52.235705418892074],[6.189086635062347,52.23570482363836],[6.189177334387371,52.23570609732693],[6.189267913068274,52.235709238512335],[6.190099834167284,52.23574669169329],[6.191069920988972,52.23579542722026],[6.191926070394031,52.235837021406006],[6.192774111193625,52.23590021402474],[6.193611644816879,52.235980241062116],[6.193732837367268,52.23599506136925],[6.194879612630402,52.2361664763393],[6.19501691691218,52.23618809732401],[6.195107363184947,52.2362035405647],[6.195394702177449,52.236256950510516],[6.195601061166602,52.2362946185935],[6.195843495802792,52.23633968822255],[6.196042951321124,52.23637364574872],[6.196301276532389,52.2364238457083],[6.196875566723283,52.23652991575657],[6.197213320361296,52.23659325809038],[6.19735736677869,52.236620025424095],[6.197575947374665,52.236660572321284],[6.197819669556329,52.236705377404604],[6.198009246592014,52.23674176333034],[6.198253196692049,52.236787779363375],[6.198442702936503,52.23682345501536],[6.198603130734781,52.23685330808977],[6.198732210990864,52.23687815424808],[6.198915084751446,52.23691134904492],[6.199108419035655,52.23694975669366],[6.19933441787439,52.236995507435964],[6.199514557957436,52.237029672857744],[6.199826791810873,52.23709248221952],[6.199943066786818,52.237116714102875],[6.200073112448191,52.23714383515794],[6.200235127275477,52.23717629066375],[6.200516857457568,52.23723212666306],[6.200729810692657,52.23726964153216],[6.20090545127127,52.23730261344573],[6.201091741084361,52.237335889204665],[6.201296644028362,52.23737424950247],[6.20154649397568,52.23741907658578],[6.201814142068237,52.23747003614546],[6.202037148863017,52.23751199138443],[6.202370868953439,52.23757490644037],[6.202603973686331,52.2376165931643],[6.202879968347685,52.23766511081201],[6.203122125319775,52.23770539474725],[6.203344221259555,52.23773586690932],[6.203604158964692,52.2377669364694],[6.203961003905924,52.2378086366828],[6.204075654863794,52.237821392402374],[6.204303412408828,52.23784119955426],[6.204494966660769,52.23786112202023],[6.204686106260136,52.237878386540984],[6.205135771078122,52.23790550004662],[6.205450635754286,52.237920306373525],[6.205719135188449,52.23793196381001],[6.205874451179359,52.23793573176611],[6.20625417540334,52.237949061618714],[6.206389991901049,52.237952110266946],[6.206540325392095,52.237976172585284],[6.206577099262033,52.2379204679594],[6.206814047143083,52.237954290994445],[6.206817752966819,52.23795440957841],[6.206821463232782,52.2379544497904],[6.206825173562714,52.237954411588724],[6.206828879535922,52.23795429501316],[6.206832576792257,52.23795410021077],[6.206836260943784,52.23795382740978],[6.206839927618859,52.23795347692815],[6.206843572476942,52.23795304918244],[6.20684719119394,52.23795254468811],[6.206850779476376,52.23795196403221],[6.206854333105946,52.237951307909164],[6.206857847836391,52.237950577085435],[6.206861319526078,52.237949772443706],[6.206864744049173,52.23794889492936],[6.206868117354686,52.237947945577226],[6.206871435437207,52.23794692551169],[6.206874694380804,52.23794583594636],[6.206877890314954,52.23794467817543],[6.206881019458296,52.23794345356444],[6.206884078104313,52.237942163568164],[6.206887062635648,52.23794080971285],[6.206889969494983,52.237939393605075],[6.206892795243278,52.23793791691351],[6.206895536560245,52.23793638139599],[6.206898190170685,52.23793478887289],[6.206900752932131,52.23793314121753],[6.206903221821053,52.237931440401425],[6.206905593902243,52.23792968842239],[6.20690786637407,52.23792788737605],[6.206910036537696,52.23792603937542],[6.206912101827531,52.237924146613466],[6.206914059796245,52.237922211345314],[6.206915908114119,52.23792023585207],[6.206917644613612,52.23791822247676],[6.206919267215851,52.237916173606756],[6.206920774003645,52.237914091664095],[6.206922163192543,52.23791197912402],[6.207546807419905,52.237939360485],[6.20760451949207,52.238115072679385],[6.207982101699841,52.2382757931957],[6.208729617289189,52.23863354754015],[6.209123339033931,52.23882731676022],[6.209189336868768,52.23889298355373],[6.209519281982883,52.239223528374005],[6.209678023236116,52.23935613129424],[6.209773315396847,52.239376618492265],[6.209963932507129,52.23903709889063],[6.210240133933531,52.23854325900491],[6.210503942706993,52.23808973576438],[6.210851970704457,52.237491391240184],[6.211355668189718,52.23748078595586],[6.211357331420341,52.23754079351997],[6.211391301946571,52.237541093540614],[6.211425236891693,52.23754209370216],[6.211459098010709,52.23754379287847],[6.211492847088033,52.237546189161264],[6.211526446083381,52.237549279832045],[6.211559857089002,52.23755306142549],[6.211593042416339,52.23755752966587],[6.211625964655409,52.23756267951155],[6.211658586645514,52.23756850515509],[6.211690871636415,52.23757500003131],[6.211722783171075,52.23758215680908],[6.21175428529122,52.23758996742563],[6.21178534244903,52.237598423060405],[6.211815919610428,52.23760751417934],[6.211845982313617,52.23761723053417],[6.211875496625166,52.237627561162974],[6.211904429286894,52.23763849441604],[6.211932747628024,52.237650017956476],[6.211960419741515,52.23766211879488],[6.211987414396056,52.237674783281086],[6.21201370116831,52.23768799713011],[6.212039250384689,52.237701745440454],[6.212371839910888,52.23779652688381],[6.213656135651234,52.23817418196832],[6.213911999933766,52.23823762735207],[6.214158827348922,52.23828350061315],[6.214367771700806,52.23831237238698],[6.214582907956943,52.23833487271261],[6.214770324105406,52.23834288917889],[6.215016397544122,52.23834184750888],[6.215348361636819,52.23832320630712],[6.21535903294849,52.23832233151808],[6.215542884980368,52.23830718218442],[6.215851998734756,52.23826280482955],[6.216202453647965,52.23819311327674],[6.216468031653037,52.23815143977822],[6.216599574238511,52.2381356134955],[6.216771885197662,52.238120291632534],[6.216873751046955,52.238117014330385],[6.217027516354927,52.23811211389081],[6.217229662224565,52.23811787476008],[6.217397856949583,52.23813384190132],[6.21807856538826,52.23822008685065],[6.218514649258973,52.2382679988052],[6.218964924804094,52.23831455983229],[6.219332177596218,52.23834796124634],[6.219769076224392,52.238375891038004],[6.220234467307645,52.2383890303576],[6.220679205690589,52.238392264797476],[6.220826124020129,52.23839149737805],[6.220948619548543,52.23838982362907],[6.221118408450325,52.23838916401361],[6.221383369132549,52.238388937436355],[6.221690450187594,52.238394929072115],[6.22201283644123,52.238401225169106],[6.222558727076154,52.2384138311601],[6.223873320972996,52.23843885927471],[6.224601758038758,52.238455699047115],[6.225562646306766,52.238481184763145],[6.226653083081758,52.23850782707767],[6.227661036406833,52.23853138821265],[6.228098589155788,52.238541693500856],[6.22816423837209,52.23881045439587],[6.228160988771996,52.23881132656489],[6.228157790829251,52.23881226796165],[6.228154648475244,52.23881327744369],[6.228151565551672,52.23881435377024],[6.228148545810868,52.23881549562029],[6.228145592974704,52.238816701610126],[6.228142710631429,52.23881797025803],[6.228139902309225,52.23881930000199],[6.228137171462216,52.23882068923545],[6.228134521410581,52.23882213623599],[6.228131955400795,52.238823639254775],[6.228129476589464,52.238825196435705],[6.228127087986128,52.238826805887875],[6.228124792525439,52.23882846563086],[6.228122593009453,52.23883017364043],[6.228120492121924,52.23883192783013],[6.228118492457592,52.23883372605132],[6.228116596434342,52.23883556609362],[6.228114806396528,52.2388374457293],[6.228113124510969,52.23883936263292],[6.22811155284202,52.23884131447978],[6.228110093335565,52.23884329887423],[6.228108747746676,52.238845313394876],[6.228107517726767,52.23884735555822],[6.228106404795675,52.23884942289068],[6.228105410296211,52.23885151284806],[6.228088655153427,52.23888915796627],[6.2280678921945,52.23944310578735],[6.228087852569524,52.2395735444574],[6.228111787193379,52.23966790308794],[6.2281417280055,52.23971462807413],[6.227946035390971,52.23996973194996],[6.228031058276771,52.24041554631143],[6.231565963397158,52.24019125096004],[6.231854613425145,52.24168761971792],[6.23181614876363,52.241838230057105],[6.231719491186333,52.24200969332889],[6.231708398100338,52.24202687878679],[6.231698264519069,52.24204428610526],[6.231689102169641,52.242061895120926],[6.231680921676126,52.24207968540878],[6.231673732531461,52.24209763634505],[6.231667543068514,52.24211572712558],[6.231662360460063,52.242133936765654],[6.231658190719827,52.242152244154035],[6.231655038673672,52.24217062808009],[6.23165290800338,52.24218906722454],[6.231651801159624,52.24220754020486],[6.231651719421228,52.24222602561108],[6.231652662895145,52.242244502005505],[6.231654630488201,52.24226294797702],[6.23165761992155,52.24228134213192],[6.231661627731696,52.242299663147946],[6.231663709387592,52.242306142751275],[6.231666154495586,52.242312574320195],[6.231668960128614,52.242318950199675],[6.231672122950195,52.242325262764496],[6.231675639157074,52.242331504482884],[6.231679504566717,52.242337667897395],[6.231683714573723,52.242343745643794],[6.231688264135538,52.242349730468476],[6.231693147831006,52.24235561522868],[6.231698359816444,52.24236139289244],[6.231703893870258,52.242367056574224],[6.231709743392075,52.242372599490224],[6.231715901404113,52.24237801502997],[6.231722360536208,52.24238329673865],[6.231729113069197,52.242388438289844],[6.231736150965592,52.242393433557076],[6.23174346581015,52.242398276569276],[6.231751048869283,52.24240296155563],[6.231758891075581,52.242407482900354],[6.231766983087888,52.242411835223315],[6.231775315231562,52.24241601331757],[6.231783877558051,52.24242001220283],[6.231792659829744,52.24242382709866],[6.231801651578875,52.24242745344193],[6.23181084206411,52.242430886914214],[6.231820220313955,52.242434123414355],[6.231829775112294,52.242437159067755],[6.231839495072268,52.24243999026166],[6.231849368577026,52.24244261360961],[6.231859383838811,52.24244502597822],[6.232564815223434,52.24258906601756],[6.232840347088255,52.24265497150702],[6.233029063989094,52.242701036299586],[6.233184631613898,52.24273304615572],[6.233723453330994,52.24284531374029],[6.233727529600261,52.24284662975145],[6.23406526846643,52.242955667879656],[6.23412418698322,52.24295969566911],[6.234186026585496,52.24295515136864],[6.234231335667655,52.24295879887049],[6.234488904098675,52.24279621005917],[6.234602477871326,52.24275346720994],[6.235008932954744,52.24275407268058],[6.235056276312094,52.24279432735876],[6.235096791050552,52.24281882166107],[6.235227109971208,52.2428854377186],[6.235325454426348,52.24293659481025],[6.235422502316734,52.24298415369409],[6.235547117612597,52.24305097697306],[6.235627849042848,52.24310035288481],[6.235747275613882,52.24317462140107],[6.235896870766386,52.243274111872054],[6.236007271571786,52.24333941991225],[6.236058206066281,52.243367138795556],[6.236226344535129,52.2434312480715],[6.236426234011939,52.243472690625715],[6.23660866929625,52.24350662789846],[6.236764358903637,52.2435424398098],[6.237261781545127,52.24366687542927],[6.237614238561664,52.24376560080589],[6.238074505363119,52.24388797479976],[6.238187433764712,52.24390616840305],[6.238394842695271,52.2439350447605],[6.238786954981975,52.243996443922136],[6.238959008052268,52.24402925966387],[6.239430245865918,52.24414163830621],[6.239688403631923,52.244084321072926],[6.239914692396524,52.24400309898581],[6.240075179481803,52.24350734817912],[6.24007595466791,52.243504863377694],[6.240076866950234,52.24350239618281],[6.240077915241239,52.24349994944257],[6.24007909835022,52.24349752596993],[6.240080414910798,52.243495128579056],[6.240081863394336,52.24349276002243],[6.240083442125626,52.24349042304452],[6.240085149311483,52.24348812034573],[6.240086982938253,52.24348585458315],[6.240088940918053,52.243483628360536],[6.240091020986968,52.24348144426479],[6.240093220733142,52.2434793048031],[6.240095537627243,52.2434772124654],[6.240097968977011,52.24347516964416],[6.240100512002001,52.24347317871427],[6.240103163729892,52.2434712419712],[6.240105921143416,52.24346936165686],[6.240108781018617,52.24346753992472],[6.240111740072293,52.24346577889277],[6.240114794887761,52.24346408059001],[6.241449819692016,52.24368908967486],[6.241478281739868,52.243693651775466],[6.24484506888931,52.24439971395933],[6.245624941362541,52.24455706307694],[6.246997535068469,52.24483389346716],[6.247407442112023,52.24490775226788],[6.248045120779253,52.24502135120533],[6.248507283333022,52.24510359379781],[6.249300943223996,52.24523766008496],[6.249697688968796,52.24530409177056],[6.250177979221807,52.24538441217164],[6.251248661201948,52.24556628315148],[6.251837726533583,52.24566273209016],[6.251761277268286,52.24581094794994],[6.251654251791964,52.24604644717449],[6.251612044027296,52.24613951746567],[6.251713413307286,52.24615196943708],[6.251750754391811,52.24615680851638],[6.251787042598274,52.24616112992972],[6.251814891271992,52.246164574584355],[6.251899602917403,52.2461738317956],[6.251922416233416,52.246121990964575],[6.251977186510041,52.245994799791596],[6.252071509254662,52.245771363084195],[6.252185117031966,52.24583452899927],[6.252418098729859,52.24594953303516],[6.25256073701687,52.24601914902861],[6.252646584735648,52.246060571828515],[6.252877023582251,52.24617370945168],[6.253105481006072,52.24628555511269],[6.253338970028901,52.246400917857514],[6.253480925211274,52.24647062471072],[6.253568550286622,52.24651376084364],[6.253671995431865,52.24656453674706],[6.253798788809108,52.24662740623055],[6.254031583266371,52.24674169336235],[6.254299002765101,52.24686994129398],[6.254280101424322,52.24692252916645],[6.25422665875941,52.24710239815636],[6.254170625059317,52.24728140265399],[6.254118708122393,52.24745872953612],[6.254088573770508,52.24756168089444],[6.254074957977856,52.247613315924546],[6.254105833875977,52.247630353760165],[6.25423960713683,52.24770098165862],[6.254415907959798,52.247795817026],[6.254638613912856,52.24791730701107],[6.254858638463202,52.24803716138393],[6.255079505771775,52.24815784906261],[6.255301563829627,52.248275925109716],[6.255396105381353,52.248328233978974],[6.255515339330897,52.24839378185972],[6.255567637002249,52.248423383690124],[6.255598237625026,52.24843976138649],[6.255629448582769,52.24845736716112],[6.255768529415307,52.24853698064686],[6.255705507205827,52.24869699467205],[6.255641995053237,52.24887374357739],[6.2555686792534,52.249050783518726],[6.255494607752402,52.249226292882355],[6.255419300779983,52.24940054213519],[6.255346257181643,52.249574884153375],[6.255274183173598,52.249750125301475],[6.25519422243738,52.24994851147136],[6.255190733221186,52.24998097876916],[6.255167241210884,52.25010386340479],[6.255166108377337,52.250114633674634],[6.255165572088717,52.25012542133902],[6.255165632937606,52.250136213962854],[6.255166290871974,52.250146999097865],[6.255167545122133,52.250157764292034],[6.255169394245725,52.250168497143164],[6.255171836097894,52.250179185272266],[6.255174867890038,52.25018981633199],[6.255178486117998,52.25020037807905],[6.255182686590461,52.250210858329325],[6.255187464473406,52.250221244984026],[6.255192814261702,52.25023152607541],[6.25519872977858,52.25024168973929],[6.255205204205782,52.250251724260195],[6.255212230068402,52.25026161804412],[6.255219799280382,52.25027135969951],[6.255227903084898,52.250280937983355],[6.255236532157715,52.25029034184571],[6.255245676534168,52.250299560438904],[6.255255325682711,52.25030858313531],[6.255265468446355,52.25031739952755],[6.255276093159969,52.25032599943663],[6.255287187534029,52.25033437295789],[6.255298738800338,52.25034251042382],[6.25531073362504,52.250350402449705],[6.255321103379857,52.25035700594836],[6.255331092188079,52.25036382706475],[6.255340687953171,52.25037085753782],[6.255349878997756,52.25037808882479],[6.255358654211289,52.250385512162985],[6.255367002917735,52.250393118543926],[6.255374915022527,52.250400898739066],[6.255382380895949,52.25040884332772],[6.255389391504216,52.25041694266003],[6.255395938337322,52.25042518691171],[6.255402013452962,52.25043356608332],[6.255407609491361,52.25044207000939],[6.255412719646499,52.25045068838567],[6.255417337738987,52.2504594107503],[6.255421458143734,52.250468226529634],[6.255425075892086,52.25047712501938],[6.255428186570216,52.250486095430105],[6.255430786406975,52.2504951268869],[6.255432872259426,52.25050420843829],[6.255434441598037,52.250513329047344],[6.255435492508253,52.25052247767268],[6.255436023733367,52.250531643214096],[6.255436034602033,52.25054081454902],[6.255435525131089,52.25054998055004],[6.25543449590879,52.250559130103255],[6.255432948197301,52.250568252107946],[6.255430883874821,52.25057733551282],[6.255428305449548,52.25058636927973],[6.255423725185254,52.25078394688967],[6.255421642217934,52.25087379882145],[6.255450433910796,52.25094960059393],[6.255502134952345,52.25100989104127],[6.255587226597886,52.25107770180035],[6.25559579109957,52.25130024875089],[6.255660280913251,52.251327846256515],[6.256787106191346,52.25136478424091],[6.256800883446447,52.25151445361222],[6.25679658888034,52.25151426951346],[6.257136401715019,52.25161944611172],[6.257308095588238,52.25167466341729],[6.25746984152165,52.251732650240946],[6.25760393241547,52.25178436013425],[6.257665347157571,52.25181022506266],[6.257682083921304,52.251819826975755],[6.257720529499449,52.25184240068745],[6.257746077243024,52.25187193645506],[6.257835813937926,52.2519695522839],[6.25789959332093,52.25203016611937],[6.257985602534891,52.2521094014263],[6.258067450464951,52.25218178237188],[6.258129638806645,52.252229168158294],[6.258207716482174,52.2522854878837],[6.258273437581082,52.25232704114947],[6.25831993520404,52.252351676506045],[6.258441788105801,52.25240875180342],[6.258559594566054,52.25246484115836],[6.258683629897673,52.2525181610059],[6.258887810593984,52.25259495974458],[6.258989016674898,52.25263418343776],[6.259008960429812,52.25261683276864],[6.259335008809086,52.25273636001382],[6.259467627006221,52.25277991737357],[6.25947515939212,52.25278239642706],[6.259938684769465,52.2529458747684],[6.26042922008076,52.25311906563573],[6.26073679634986,52.25324247369343],[6.260813568823537,52.253274578093624],[6.260903179670147,52.253313094955665],[6.260918017755206,52.25343475769456],[6.260931201719655,52.25342446752119],[6.261415363054216,52.253628333352836],[6.261836428628536,52.25379760137358],[6.262231855140928,52.253956568585465],[6.262662823779485,52.25411894724228],[6.263169047998798,52.25430969037733],[6.263284287360748,52.2543531117065],[6.263319862457108,52.25436650994494],[6.263495864869641,52.254432822780224],[6.264013929116473,52.25464134307868],[6.264381398847088,52.25478925741337],[6.264716317712591,52.254924055934815],[6.265004207370432,52.25503719983924],[6.265145643405606,52.25509278349594],[6.266934500229747,52.25579525155036],[6.266939563360073,52.255797245180986],[6.267024248001509,52.255830536011324],[6.26718332380507,52.255893544955754],[6.268408236801767,52.256371440404195],[6.269083047110892,52.25661299636108],[6.269523738912734,52.25673280819371],[6.269681028562657,52.256775576658576],[6.269970781410106,52.25684260298366],[6.270468389461048,52.25695769855713],[6.270871055784987,52.257051220513446],[6.271035982000542,52.25708898652822],[6.271196716736066,52.25712292773057],[6.271320312695797,52.25714903032243],[6.271381691481753,52.257161990331454],[6.2724244745932,52.25738217572444],[6.273756116424464,52.25766385698095],[6.273807259593792,52.25767467246339],[6.273822733282286,52.25767793589664],[6.275190979756659,52.257966867432245],[6.276579881488857,52.25826089479135],[6.277958107072619,52.2585518854687],[6.279423504329416,52.25886120289368],[6.279463191166016,52.25886958576412],[6.28011264215299,52.259006755444716],[6.280669071757358,52.259124275819296],[6.28073063261117,52.25913727455937],[6.282119973454868,52.25943051473181],[6.282386827433955,52.259486763529075],[6.282520570907795,52.259514952715875],[6.282597680854505,52.25953120322588],[6.282602432119983,52.259532200859084],[6.282731145065139,52.2595593313746],[6.283050044848719,52.25962654524285],[6.283059321781711,52.25962897361931],[6.283099359891974,52.259639455858476],[6.283252342336583,52.25967883247872],[6.283282969597138,52.25968677945159],[6.284144668669553,52.25986719511934],[6.284275104942219,52.25984894722468],[6.284478159015005,52.25989432365786],[6.284585763024569,52.25997862491284],[6.284870260836449,52.26003857207199],[6.284991327005438,52.26006407744505],[6.284984905673422,52.26007976578757],[6.285313381856923,52.2601486355271],[6.285322616591338,52.260134453777376],[6.286220556966634,52.260324286136914],[6.286226489020458,52.26032064569403],[6.28651159338859,52.26038139324614],[6.286538514868511,52.260387120531],[6.286547640963536,52.26037482704236],[6.286880872210244,52.26043233105728],[6.287680509556973,52.2606135532452],[6.288343754915624,52.26075015030509],[6.288255776923907,52.2607095653669],[6.288185745829923,52.26065104675995],[6.288154486369163,52.26053965118689],[6.288090778661284,52.260467871577646],[6.288013036809816,52.26039745730886],[6.28798761974177,52.260393696300795],[6.287943803369737,52.260334887767044],[6.287907006876773,52.260253824729276],[6.287864444610547,52.260076092132344],[6.289552272260533,52.26013188152705],[6.290647371517314,52.26016855139636],[6.290979210007653,52.2601796661809],[6.291202122613239,52.25963776679394],[6.291221318689599,52.25956679248954],[6.291352252852447,52.25908249222108],[6.291538512470902,52.258337648222856],[6.291549355654379,52.25828022016668],[6.291679832487231,52.258293152972655],[6.294859672679154,52.258603898331316],[6.295306839791218,52.258647586945436],[6.29625275055702,52.258740000102115],[6.297004055262739,52.258899509995956],[6.29719269528429,52.25893437849256],[6.297188052095715,52.258907889917054],[6.297437905993921,52.25897077023075],[6.297553292812726,52.25898336343269],[6.297997179149458,52.25898668294042],[6.298399237643658,52.25897881846814],[6.299455625867034,52.258986574243444],[6.299529895895844,52.25896550742523],[6.299790474939601,52.25898695395694],[6.300051889019445,52.25902052761231],[6.300181179264234,52.259025370788976],[6.301037183577133,52.25903987418526],[6.301380466821302,52.259030117294984],[6.301553197435768,52.25903902702666],[6.301515186356316,52.25912093465117],[6.301549302176477,52.259198688688755],[6.301603755013572,52.25921831101116],[6.302158628974083,52.2593120764409],[6.302231158506606,52.2593061216818],[6.302308782816164,52.25929149867903],[6.302432312876686,52.25928685646337],[6.303013296762023,52.259432098099374],[6.303158778159553,52.25947483284641],[6.303652432760749,52.25961984965027],[6.303314450156902,52.26023565047338],[6.303379900316053,52.26025572599317],[6.304557724046163,52.2606172611249],[6.304688774972479,52.260657499473304],[6.305141040597209,52.260796270144205],[6.305586072689572,52.26090381617948],[6.306573352336597,52.2611091584296],[6.306542613958348,52.261138609507164],[6.307090660169234,52.261254695956346],[6.308023370240907,52.261519234324695],[6.308964035140248,52.26172177416491],[6.309992055760259,52.26174278030388],[6.309703186265502,52.26222571090091],[6.310029082717973,52.26225654792889],[6.310430949924159,52.26229457419637],[6.310594383037424,52.26231004196072],[6.310715202349376,52.26234167996849],[6.311034960348484,52.26236817594385],[6.311046508771823,52.26236913725831],[6.311284340834653,52.26235913370977],[6.31170194832585,52.26231356749335],[6.312191185116037,52.26226018542179],[6.312269573901909,52.26224841716435],[6.312660611386222,52.26218969005365],[6.312745644102058,52.262176916673184],[6.312804699876371,52.26216953300187],[6.313449913522372,52.262088821538526],[6.313757632351669,52.262060567110595],[6.313947674534109,52.26205317109167],[6.314910587364927,52.262188373826625],[6.31602632888994,52.26234502665049],[6.316058224522925,52.262349503696],[6.31688412184365,52.26257276514105],[6.317066426388994,52.262621889334206],[6.318790490372164,52.26308623058176],[6.319071812325414,52.263173175455854],[6.319671884524173,52.26336438479901],[6.320261389333628,52.26354740536846],[6.320730872253658,52.26367914964083],[6.321528400503273,52.26391085424292],[6.321857189242645,52.264004427964494],[6.321997497939025,52.264037832778364],[6.322255341606575,52.26411533844873],[6.322667480237445,52.2642015988577],[6.323120887915151,52.264306675923656],[6.323502845321887,52.264399554213114],[6.323735946497622,52.26445666961605],[6.323924831957714,52.26449409130559],[6.324065137563108,52.26451329222559],[6.324172758009146,52.26451985404035],[6.324373169203073,52.264532061368286],[6.324740991251093,52.26452401957275],[6.324842274436681,52.264512789339996],[6.32632698831341,52.26436725038954],[6.326308297541577,52.26421470607626],[6.326365257091264,52.264354991754516],[6.327441430834878,52.26401026976492],[6.327879140117126,52.26395447344194],[6.327971056160324,52.26393611548762],[6.328057253821727,52.2639188995741],[6.329849920932258,52.26368628340886],[6.329924180887138,52.26367885974004],[6.330832539388318,52.263587656940075],[6.332046555495103,52.263465869538436],[6.333205213218636,52.26344149657355],[6.333249492024489,52.263440566738],[6.333336995464196,52.263438733436416],[6.333391904568746,52.26343757459696],[6.334490997928397,52.263491594551176],[6.335239031375182,52.2635972285009],[6.336078781732652,52.263730793737935],[6.337726669700325,52.26403285555394],[6.338849539886207,52.26423863581055],[6.33921254690846,52.264313819327704],[6.339371536935883,52.264370665289185],[6.339831798321523,52.26453522459634],[6.340003219815878,52.264596508558114],[6.340212930645211,52.26468218323375],[6.340794336243119,52.2649199059355],[6.341120720580999,52.264864959073506],[6.342123010816294,52.2652798509076],[6.342630850555138,52.26548831811797],[6.344705801654128,52.26633736177796],[6.344769206062226,52.26636318359161],[6.345267263785476,52.266565247280894],[6.345788982954793,52.2667773635636],[6.346270867769755,52.266976318496376],[6.346717710287012,52.26716018610034],[6.346862867358938,52.26722003763024],[6.347052072679954,52.26729795713132],[6.348240353027854,52.26778579928896],[6.348304191271184,52.267811166278214],[6.349019861090967,52.26809539450978],[6.349027840978324,52.268098565332245],[6.349483581151757,52.26827956375724],[6.350355810192045,52.26863486450101],[6.350591404896281,52.268953196740966],[6.350945278468265,52.26909771874444],[6.351803528114742,52.270198612488564],[6.352011755869199,52.27052426609597],[6.352126744223086,52.27082694276406],[6.352152618181152,52.27094101765724],[6.352164102261896,52.27105094062914],[6.352164530963062,52.271129431931534],[6.352153096536033,52.271379624694525],[6.35214533120086,52.271491026151175],[6.352136586641792,52.27161536976118],[6.352169079651174,52.271763689918664],[6.352303139941784,52.27238186158065],[6.3523547693556,52.27259294342705],[6.352391645491942,52.27268054771885],[6.352419926946324,52.27276302697644],[6.352464944527209,52.27285308145706],[6.352575189919942,52.27303001415999],[6.352745320425704,52.27332032111369],[6.35280453265897,52.273410834714916],[6.352842882750885,52.273453566238],[6.352889212399728,52.27348050301561],[6.352946622424067,52.273505560538425],[6.352996743706042,52.27352087138291],[6.352810278721326,52.27366057245527],[6.352782749326566,52.27372815571],[6.352536516105661,52.274174953416065],[6.352803301950792,52.27423664427034],[6.352642664504812,52.274522706053716],[6.352667576375546,52.274528210064155],[6.352863361794041,52.27457188414572],[6.352853948349506,52.27458778047432],[6.352973218807036,52.274614642396045],[6.352976766273835,52.27461538639325],[6.353058370935925,52.27463241729935],[6.353062080337839,52.274633195923435],[6.353132380659047,52.274647874369236],[6.353136281296188,52.27464868738084],[6.354250540473947,52.274881412013066],[6.354620461284924,52.274958667270084],[6.354680771635401,52.2749444932744],[6.354980419955457,52.275002287879836],[6.354981597060701,52.27500251193426],[6.355241310624226,52.275052606419344],[6.355968729750712,52.27520489248214],[6.355962975766272,52.27521720868166],[6.356740144737861,52.27540097258985],[6.356868257266798,52.27543664747319],[6.356870910994687,52.27543738970035],[6.356908917228636,52.27544797160776],[6.35692671157258,52.27545293092215],[6.357085460510455,52.27546091286531],[6.357450768461232,52.275701676305836],[6.357647540147528,52.275785377269074],[6.358899001504379,52.2765348010979],[6.358871691484282,52.27655240904642],[6.359326113186323,52.27681805953531],[6.359337139841393,52.27681236011964],[6.359373379349849,52.27683320243512],[6.359374670282656,52.27683393784247],[6.359444150234851,52.27687383148058],[6.359663440200364,52.27699980454695],[6.359683132951445,52.27701112052847],[6.359814780566388,52.27704931582888],[6.360299121950325,52.27718981496113],[6.360343336523888,52.277204757899575],[6.360476940604518,52.277249938238],[6.360970185669141,52.277465575372354],[6.36107861017272,52.277490415291155],[6.361964001268251,52.27790614889777],[6.362697454313858,52.27821734708016],[6.36349787474264,52.27848062812481],[6.363744815515299,52.27855027824785],[6.364375277570183,52.27876234036805],[6.364427212137722,52.27877902459736],[6.364428318898463,52.27877937497633],[6.365230638759624,52.279037469382956],[6.365236837346699,52.27903746301948],[6.365446654881183,52.27910799212344],[6.366002172395642,52.27932386588538],[6.366555138170913,52.279544063603275],[6.366966310714241,52.2797282499136],[6.367161695365982,52.279819856383696],[6.367747938356267,52.280120415628744],[6.367750488015696,52.28012173372841],[6.368419988404233,52.2804672683272],[6.368423590495273,52.28046912595978],[6.368970290123019,52.280751437721605],[6.369032667985929,52.28078692658702],[6.36903421145451,52.28078780360444],[6.369200017017198,52.280876093133955],[6.369460688345458,52.281009011795796],[6.369467465886792,52.281004686014974],[6.370726806510709,52.28166923259244],[6.371435739972821,52.28204887423114],[6.371437839730756,52.28204971961927],[6.371544633644793,52.28209280085908],[6.371618103749564,52.28212736905263],[6.371624024985823,52.28212408393698],[6.373393487292631,52.283078772521904],[6.373477201232042,52.283097991944615],[6.373539424135617,52.283091180797925],[6.373598055359059,52.28306847232651],[6.373723586232301,52.28321732236028],[6.373738874999109,52.28323858688599],[6.373796102266303,52.28329326134604],[6.374582763512105,52.28364584568584],[6.374854490139994,52.283767622563126],[6.37503595806489,52.28384280296539],[6.375307285468802,52.283941895671575],[6.376000411611823,52.28414251447889],[6.376089653543398,52.28416830120257],[6.37662753253181,52.284309508371756],[6.376839175739063,52.284361351414034],[6.377284584112457,52.28447050467354],[6.378331068317864,52.284740666540856],[6.379243752011837,52.28500415861345],[6.379313246236854,52.28502032941638],[6.379495674170655,52.28506638184462],[6.379523248247321,52.28504169312706],[6.379606525311741,52.285013489602505],[6.380618658566455,52.28526028954923],[6.381009943106956,52.28534641535271],[6.381282275601181,52.28539244599017],[6.381544065390992,52.28542382388532],[6.381822908300109,52.285445053690644],[6.382884954554767,52.28550408888885],[6.383411788462625,52.28551372462886],[6.383925866491337,52.28552313304059],[6.383937571468936,52.285524849956744],[6.384204646168499,52.285564329797246],[6.384952804858735,52.285746868971124],[6.385101050127302,52.285776033712125],[6.385606822578817,52.28587553189977],[6.385791216897688,52.2859603785704],[6.385791382469216,52.28596318152474],[6.385800713641641,52.285964262168996],[6.386447534195451,52.28634492368934],[6.386949103601146,52.286581631344184],[6.387151456273131,52.28668594547811],[6.387883213846082,52.28678376433284],[6.387890215007614,52.28681284516185],[6.387956484651317,52.28682223406368],[6.388285883704829,52.28685094825237],[6.388523196288522,52.286855678996865],[6.388889038716926,52.28685798964455],[6.391431422266787,52.28688893176724],[6.391508025496995,52.28688987173733],[6.392010858300502,52.28687822709031],[6.392099203660965,52.28686304965711],[6.392261242302204,52.28684263444525],[6.392302267171765,52.28683746780157],[6.392348598860192,52.28682457099534],[6.39415301416335,52.28653989308674],[6.394250427242624,52.28652456486698],[6.394383504291516,52.28650360254932],[6.394972756170231,52.28642120767337],[6.394997564454112,52.286417733355975],[6.395053516848237,52.28640644324232],[6.39596778230449,52.28629260738278],[6.396263964926123,52.28626037239016],[6.396309542366211,52.286260810144505],[6.396397908588963,52.28625893202243],[6.396521685969757,52.286260957940215],[6.397128576415111,52.286313972533826],[6.397128051386206,52.28631215239061],[6.397107850340334,52.286242305969466],[6.397221984239759,52.28620437057317],[6.397325131517783,52.2861899165971],[6.397711017380545,52.28614184676176],[6.397896536543877,52.286117816436246],[6.39788666241693,52.28614056944177],[6.397884448133893,52.286145675771586],[6.398246598841961,52.28609802288728],[6.398250521026817,52.28609261431229],[6.398268228439674,52.28606823028876],[6.398330155898443,52.28605356181495],[6.398339081487006,52.286040020933264],[6.398461525390533,52.28602790859874],[6.39895510251709,52.28597908388572],[6.399013005040907,52.286169410351164],[6.39951626679066,52.28603995597242],[6.399778445689893,52.28597056702861],[6.400121730430992,52.28588498647188],[6.400777271472368,52.28572360710904],[6.400785858475469,52.285736386772825],[6.401244837782421,52.28563861111664],[6.40240449973408,52.28539156043908],[6.402487534293171,52.28537386813404],[6.402814756236372,52.285304129293635],[6.402857407800376,52.28529586199058],[6.403177379719598,52.28522766752308],[6.403183250887682,52.285220992645236],[6.403346239064684,52.28518681083704],[6.403738004733099,52.28511323367749],[6.403781363157794,52.28510128372911],[6.403833287793864,52.28509604626561],[6.404090479757293,52.28505584873295],[6.404994943421096,52.28493216684914],[6.405104113290863,52.2849172586912],[6.40514622497345,52.28491552972827],[6.405274812898869,52.284876248553594],[6.405465128409135,52.28496345856311],[6.405944842824553,52.285158541639476],[6.4060527696787,52.28521023791865],[6.406175977127334,52.28530002075702],[6.406205340954724,52.28532142945814],[6.406221900944131,52.28533350181563],[6.406315667854484,52.28546498359434],[6.40639346922936,52.28559431995363],[6.406429978184904,52.285655026908074],[6.406543455998754,52.28586113046184],[6.406576736630352,52.28592164949633],[6.406579611679073,52.28592686489736],[6.406804770158421,52.28620498111981],[6.406917881457803,52.28631511899991],[6.407012540249588,52.28638628078932],[6.407029786917722,52.28639759208898],[6.407261596602256,52.28616637984737],[6.40731458373415,52.28613268360031],[6.407363569051677,52.28610152063219],[6.407400169091283,52.28608247298251],[6.40745358894757,52.286055505201006],[6.40748602965743,52.28604425935662],[6.407544883389487,52.28602415665184],[6.407567493229688,52.28602009645122],[6.407570255548866,52.28602039618102],[6.407613629210932,52.286019329574266],[6.407782650235927,52.286040448736976],[6.407926248480903,52.28608736805533],[6.408058779236529,52.28608570196261],[6.408413654261786,52.286202836964755],[6.408491632894829,52.286228579830336],[6.408610213856446,52.28614030518817],[6.408803556672128,52.2859990630315],[6.409694155378701,52.28647396275661],[6.410444073343079,52.28680780654363],[6.41052859486718,52.286745225919276],[6.410625974372896,52.28667137036391],[6.410788963724518,52.28656279077629],[6.410861615825269,52.286520725233686],[6.410982810535855,52.286460190539806],[6.41103045391353,52.28645549035594],[6.411087843441396,52.286452674160394],[6.411164361174765,52.28645308979441],[6.411232814560456,52.28645909409989],[6.41131978997677,52.286473189156],[6.411382761622551,52.28648427435043],[6.411441094072197,52.286503929655744],[6.411502507024936,52.28653196233275],[6.411535328022692,52.286561411291856],[6.411573434293369,52.286607775431236],[6.411608904152268,52.28666884037442],[6.41162967853768,52.286737762668956],[6.411644858193725,52.28683547817547],[6.41166185236289,52.2869534107066],[6.411646492187415,52.28702654716955],[6.411636823580226,52.28707318160311],[6.411612296142062,52.287129499443246],[6.411583871747156,52.28717635936776],[6.411624944980375,52.287183544556235],[6.411629592117467,52.28717785959474],[6.411669245269431,52.28716667591949],[6.411709178843038,52.28716956554252],[6.412275221709169,52.2873401005744],[6.412187489192863,52.28744833512014],[6.412325662174521,52.28742803642903],[6.412362116431876,52.287423046272586],[6.412558989831028,52.2872140222056],[6.412691885651338,52.287259797230554],[6.412687492047557,52.28726503061735],[6.41259107589962,52.28737673841478],[6.41242988291818,52.287568213360096],[6.412143247608314,52.28793298367732],[6.412040251353621,52.288074094992226],[6.412006983797879,52.28812259693229],[6.411927373624435,52.28819860054258],[6.411859639135261,52.28825695589346],[6.411783223578354,52.28832850045241],[6.411708682428674,52.288391714496534],[6.411646442300214,52.28844173484072],[6.411329879945333,52.28866788364933],[6.411523384956763,52.28883628398759],[6.411769806969397,52.28904099656243],[6.411847056795301,52.28909140756138],[6.411958190958142,52.2891441762675],[6.412377126262134,52.28927023572161],[6.412683375515733,52.28938168575297],[6.413017149990719,52.289520921728794],[6.413144739932924,52.289591783836194],[6.41334005942341,52.2897176776068],[6.413677007430477,52.28975930677129],[6.413730031521104,52.29017524002925],[6.413784410694698,52.290602199145766],[6.413819458138158,52.29087693785689],[6.414556550860097,52.29091900698211],[6.414560381702604,52.29091922535541],[6.414561570649245,52.29091929591534],[6.414568249487883,52.29092033443547],[6.414796639077421,52.29095583025772],[6.415225557000141,52.29101744540956],[6.415229292543306,52.29101797918207],[6.415236234375964,52.29101897942363],[6.415639313227375,52.291076889931205],[6.415612398714747,52.29117308364553],[6.415471145017126,52.29167960114411],[6.415448076391458,52.29169433598834],[6.415650074351361,52.29206694271072],[6.416439872680701,52.29343874365879],[6.416450076130945,52.29345649665268],[6.416043297201395,52.29449904492232],[6.415954026473564,52.294727838024016],[6.41590342176712,52.294855103861735],[6.415903213777479,52.294855618007],[6.415566534671977,52.295700215260844],[6.415232650912765,52.29654642290623],[6.41531642710286,52.29657656914006],[6.415341981068656,52.29658360044397],[6.415920917571881,52.29674295072544],[6.416988289145693,52.29703754267059],[6.417016959861743,52.29704556214218],[6.417916278750022,52.29729712657611],[6.417945542765541,52.297305428277085],[6.419146335152349,52.29764602606135],[6.419148106989628,52.2976465678689],[6.419189788733086,52.29765928198126],[6.419354109028611,52.297709395292564],[6.419398995354804,52.29782659768378],[6.419457658797318,52.29796508096045],[6.419540669614799,52.29814691801144],[6.419699705971743,52.29847993083048],[6.419794566418882,52.29850477285351],[6.419901768785105,52.298522567980086],[6.419944936963852,52.2985178224907],[6.419976759791297,52.29850622813443],[6.42000655506042,52.29848246330685],[6.420030595505364,52.298442596723085],[6.420216209342397,52.29772164736546],[6.4202434648199,52.297598134157774],[6.42040151229827,52.297579567049226],[6.421476242656334,52.297451890254536],[6.421488470152199,52.2974097268353],[6.421584152901513,52.297114152993196],[6.421677642878786,52.29683338405556],[6.421773115178307,52.29655469195348],[6.422025553486093,52.29577002923296],[6.422107052640088,52.295466876004085],[6.422232959435353,52.29505819720123],[6.42238166307789,52.29457920050251],[6.422423751342866,52.294443332612694],[6.422611119393059,52.2938384027614],[6.422705467527885,52.293554766943615],[6.422734557633106,52.29336947801747],[6.422759980595379,52.29318787047475],[6.422760246482273,52.29318544129202],[6.42278540917684,52.2929360638931],[6.422812993888813,52.29261261925977],[6.422861557029377,52.29206095641476],[6.422891771090717,52.29173150242293],[6.422891877024848,52.291731016123826],[6.422889250894952,52.29160198444131],[6.422890584460113,52.29159253499007],[6.422834115649998,52.29095958496267],[6.42277032715952,52.290235125671245],[6.422441965219023,52.28973643449498],[6.421685320348278,52.28864927655532],[6.421700863726715,52.28860484590358],[6.421729198637844,52.28848466629921],[6.421760895027774,52.28833322273547],[6.421780691145152,52.288200740897665],[6.421789119287732,52.28816234078255],[6.421780369710051,52.28810633904823],[6.42179330509259,52.28802922259443],[6.421803109766385,52.287676586601194],[6.421806612318202,52.28736930705695],[6.421808927190699,52.287231378480705],[6.421806579640071,52.287102200433154],[6.421802131484542,52.28704145113588],[6.421792217515319,52.286975087024764],[6.421772857702428,52.28677242530213],[6.421760717345813,52.28665511670501],[6.4217497677001,52.28654236376513],[6.421740892031527,52.286476520868185],[6.421698199237269,52.28627008153196],[6.421627681146663,52.285987754364676],[6.421602453998368,52.28588433943735],[6.421591330909322,52.285844088067314],[6.421566861884616,52.285647915648156],[6.421545036737506,52.28549039697528],[6.421542457518717,52.28546269945863],[6.42153722521091,52.285406648921324],[6.421530613656837,52.28533037766419],[6.421530425094458,52.28530086155118],[6.42151921871564,52.285250723707726],[6.421505320231417,52.28517811156756],[6.421476498710554,52.28511985860147],[6.421474934047219,52.28511560282582],[6.421415836769433,52.28495107581748],[6.421415333137414,52.28495021734268],[6.421395748251497,52.284916026248744],[6.421321532402298,52.28475742898811],[6.421313202847037,52.284736433167794],[6.421311848776483,52.284733038429366],[6.421292562175408,52.28463165673539],[6.421276527147772,52.28456104968624],[6.421276745517637,52.28455972648686],[6.421285960963983,52.28450541009731],[6.42129437420362,52.284385746375634],[6.421311541716181,52.28421525777388],[6.421398333689382,52.28423222329207],[6.421422391134234,52.284236929383965],[6.421416300950774,52.284284459191774],[6.421651466806051,52.28428235593803],[6.421889118907094,52.284331652848685],[6.421943158857557,52.284342487039766],[6.422098179292368,52.284369694576064],[6.422150763871193,52.28438033468572],[6.422269729620358,52.28440120636684],[6.422287403742097,52.28440430534731],[6.422380924529207,52.284420680897114],[6.422644908969481,52.284465934564466],[6.422665097827275,52.28446939795411],[6.422679753878682,52.28447191211251],[6.422784580886995,52.28448980618056],[6.423136939806598,52.284549402703405],[6.423403862906854,52.284595536747574],[6.423410455383054,52.28459667439401],[6.423666181465636,52.28464091061255],[6.42372445881911,52.2846894938965],[6.424237017730558,52.2847756806656],[6.424245183809029,52.28477704714247],[6.424699398800007,52.284853209538134],[6.42472725169405,52.2848578636628],[6.424721959399868,52.28484147940188],[6.424975069970091,52.284884054942225],[6.425014644806214,52.28489108684892],[6.425074493384443,52.284900178792675],[6.425198723482867,52.28492167543359],[6.425694377825069,52.28500548765159],[6.425700543375062,52.28500653903899],[6.426129744475433,52.28507954514122],[6.426134011787733,52.285080271636424],[6.426231010748616,52.28509672143736],[6.426246463222799,52.285063067969226],[6.426248192417797,52.28505929562974],[6.426320124970058,52.28490254426888],[6.426327404824734,52.284886687702404],[6.426484879261121,52.28491459598962],[6.427309981022448,52.28506421075463],[6.427363412851177,52.285074014169936],[6.427705105094496,52.28513452693704],[6.427754010965023,52.28514319255055],[6.428330890743227,52.285245450710434],[6.428922143006852,52.28534986242185],[6.429179980981087,52.285395605158904],[6.432109648148108,52.28591529560871],[6.432388584606439,52.285964817689404],[6.432449102144565,52.285975428021615],[6.434092969646711,52.286262086331995],[6.434114542693975,52.286183615501564],[6.434183490918029,52.286195570426415],[6.434515593218114,52.28625325430732],[6.434544167759765,52.28624802151364],[6.434570369333001,52.28624160530206],[6.434595751900161,52.286233398669054],[6.434616496786765,52.286223687134616],[6.434649825544989,52.2862006511562],[6.434678698562553,52.28617014937157],[6.434788228191023,52.286016564931586],[6.43486533949742,52.28579532467263],[6.434929656641314,52.28557602241991],[6.434992149181205,52.285363279832644],[6.434997956830622,52.28534416399996],[6.435064542882342,52.28512479658823],[6.435133379385565,52.284897094923544],[6.435239308592653,52.284669954102235],[6.435400836993168,52.284451299409504],[6.435630353001589,52.28412514256025],[6.435700678073332,52.283996766827286],[6.435800203223487,52.283780423364405],[6.43585230988298,52.28369987454927],[6.435857618197151,52.28366210322447],[6.435944248654971,52.28366892063382],[6.43595455654753,52.283669745969156],[6.436041518643894,52.28364838180055],[6.436116939301383,52.28359628088669],[6.436236083439532,52.28351397734302],[6.436094394654919,52.283435256459],[6.43505759428042,52.28285559892154],[6.434389278161689,52.282483328191596],[6.434119613070282,52.28232882543198],[6.434093364116638,52.282312600259395],[6.433990539982868,52.282232247230006],[6.433767822260516,52.2820075510204],[6.43366885421183,52.281893600961546],[6.433501868644012,52.28170418444264],[6.433295821872511,52.28150327579282],[6.432911749469519,52.28105141384844],[6.432818223898837,52.28092006735131],[6.432794817323818,52.28086949012687],[6.432746538429766,52.28076520270008],[6.432688440929581,52.28057803939002],[6.432680739183166,52.280520375175314],[6.43277908373493,52.28045727848907],[6.433183501350332,52.28016471399776],[6.433267183615167,52.28010198037599],[6.434843354538232,52.27894727419399],[6.435698707028579,52.27785167040434],[6.436273825905112,52.27759127757096],[6.437307054046482,52.27712345819574],[6.437479447470731,52.27704436517428],[6.437603711833975,52.27698735278832],[6.437789410411274,52.276879764676785],[6.437957703181971,52.27676054726916],[6.438119307854463,52.27666032763981],[6.438220501800025,52.27661988763837],[6.438386708240588,52.27657365592857],[6.438543123186037,52.276518019361326],[6.438681907749789,52.27646168557745],[6.438734387925342,52.27642972322521],[6.438839432611514,52.27637556808183],[6.438904615261112,52.276342288152684],[6.438950467322318,52.276320667418965],[6.438952684592679,52.27631962300594],[6.438876762841351,52.27628483955813],[6.439088844453989,52.276177176319116],[6.439613713466121,52.27586389506325],[6.439669299100228,52.27582575656165],[6.439839124637916,52.27570914735392],[6.439845690033706,52.27570484634174],[6.440194122111538,52.27547994405901],[6.440202190615079,52.27547476674499],[6.44042621132391,52.27533015120627],[6.440594074321911,52.27521003492047],[6.440748377810676,52.27509962092411],[6.440793544261238,52.27506338144644],[6.44084900661439,52.27501888867356],[6.441246009773583,52.27470033137142],[6.4416132028195,52.27441634743121],[6.44214543486609,52.273980863470435],[6.444033388561524,52.27243598991795],[6.444122026088216,52.27236414369637],[6.444221573945277,52.27240178645533],[6.444429408325991,52.27248038215997],[6.444330587826451,52.27256085870774],[6.445061289233149,52.27286241437287],[6.445190409090134,52.27291675267741],[6.446225214810062,52.27342236505701],[6.446285984530751,52.27345151805597],[6.446498105686878,52.27355654259619],[6.447291262116176,52.273973160534574],[6.447645919031411,52.27415943567994],[6.448177208754426,52.27442880363116],[6.448891271173856,52.274790833448314],[6.449010939896593,52.27470116835166],[6.449073472660209,52.274732820843575],[6.44954465030734,52.27497126349334],[6.449753813869513,52.27509782709696],[6.451579807401213,52.2752423118831],[6.451583638571408,52.27524259196569],[6.452244968668208,52.275291138467274],[6.452634651010202,52.275319740916764],[6.453506988530065,52.275385370033355],[6.453774290197656,52.27537614426678],[6.453848228491021,52.27537363420009],[6.454094221833111,52.27536552587093],[6.455267859125244,52.27532675309641],[6.455635594101803,52.27531452990817],[6.455890413782072,52.275306050394256],[6.456198117567694,52.2752970020036],[6.456341703957778,52.27529213445649],[6.456829285460616,52.27527560521122],[6.457217672459053,52.27526243511147],[6.458276473662451,52.27522875304871],[6.458538852385375,52.275219012824365],[6.458556069007283,52.275218371344536],[6.458589434753854,52.27521717895262],[6.458759891297179,52.27521825783819],[6.460227133415101,52.27517190098992],[6.460229109851112,52.27517182911064],[6.460306002787514,52.27516912637515],[6.462630884255169,52.27508746983492],[6.462695112795899,52.27508521338153],[6.462897592831794,52.27507809397984],[6.463579828051596,52.27568160189148],[6.465143904661251,52.275427109638834],[6.465226771070539,52.275573458245255],[6.465198387112103,52.27565199742641],[6.465240538361167,52.275646300697495],[6.465441539342791,52.27596358281782],[6.465516062213328,52.276081217422615],[6.465517037314402,52.276082754533455],[6.465532602272194,52.276081066477374],[6.465937393306071,52.27603717536413],[6.466598181556286,52.27595900867557],[6.466789796110207,52.27595023812941],[6.466991566822167,52.275956609849366],[6.466995159030366,52.276067709968046],[6.467002396326142,52.27629208491528],[6.467368539739934,52.276275048960265],[6.468189871678867,52.276231799798076],[6.46826920597636,52.2762275954525],[6.46838442086621,52.27622074372825],[6.468330727145722,52.27605549734072],[6.46817880108869,52.27558785299517],[6.46824412295897,52.27558172748908],[6.468523173945168,52.27555557944963],[6.468434914412668,52.27527528288055],[6.46851283595487,52.27527511810547],[6.469158084627216,52.27525028173966],[6.469276767360729,52.27524694780369],[6.469964804111758,52.2752275936062],[6.469967762075682,52.27522751256955],[6.47008476079062,52.275223024756706],[6.470031396840992,52.275117252532425],[6.470252916443219,52.27510376199141],[6.470201696170911,52.275078785214845],[6.47016248558602,52.27503912808889],[6.469980623614964,52.2746930681765],[6.469756022345144,52.27426637780578],[6.469679179266483,52.274157297065564],[6.469688609167378,52.27407217107593],[6.469708350448974,52.27403682744906],[6.469595070371744,52.27393271850774],[6.469980774714658,52.273782924664],[6.470140552504595,52.27372898583844],[6.47041304696918,52.273666391291876],[6.470611638026357,52.273617839596646],[6.471338908109832,52.27350733423333],[6.471366514017951,52.27350374621745],[6.471848478531048,52.27344114960859],[6.472050491128047,52.273410424098834],[6.472123618556154,52.27340007209393],[6.472376237803322,52.27335662109507],[6.472620238389511,52.273320870926796],[6.472788640267919,52.27330948143911],[6.472897413169162,52.273301974359605],[6.473221805870505,52.27328459363403],[6.473531986523571,52.27328165228691],[6.473751769990396,52.273277276372326],[6.473997489706663,52.27327415356722],[6.474186626536739,52.27327064298091],[6.47433344875661,52.27326960675532],[6.474563453494851,52.273264982480164],[6.474821336052162,52.27325652374014],[6.474898002623346,52.27325251922965],[6.475507962597712,52.27322997724967],[6.476111754646062,52.273206293498],[6.476553650051468,52.27319215307287],[6.476557325236763,52.27319204728075],[6.476554026807202,52.27328109028071],[6.476545319320838,52.273526132695416],[6.476618326816733,52.273756103096986],[6.476766205324128,52.27376761097896],[6.476874260595561,52.27362557678135],[6.476903100249098,52.27358804470538],[6.476928590352119,52.273547766084434],[6.476992383178315,52.27338258126837],[6.477195295667699,52.272856763916884],[6.477493628795331,52.271879025223384],[6.477493745765006,52.27187901515555],[6.477568914833938,52.2717453373488],[6.477584677615486,52.27105870790407],[6.477578244437418,52.2710514956172],[6.475697606186746,52.26971647935953],[6.475659240683214,52.269682622770794],[6.475322872165133,52.26935139572133],[6.475118734904092,52.26892254902975],[6.4765381355601,52.26847411446001],[6.478121418755184,52.26797183664369],[6.480319990961136,52.267280553249805],[6.481419897103765,52.266946552802075],[6.4819125278024,52.26679695120824],[6.483476876629621,52.26630697349464],[6.483833262696376,52.2661972334508],[6.48589499894502,52.26553771181905],[6.485943226584965,52.265522288497614],[6.487039037725386,52.265186070986694],[6.488127827559821,52.264832596811225],[6.488048543660915,52.26478231704284],[6.488234989104363,52.26472365551243],[6.488174076802657,52.26472607482139],[6.488092642509403,52.26471379143465],[6.487985513635142,52.26465419837421],[6.486591433610636,52.2637534475379],[6.48811351447194,52.26336668260337],[6.487146303202914,52.262087562371335],[6.485764636009554,52.260260225832184],[6.485130250419675,52.25942116162339],[6.485739978506148,52.259261852850074],[6.486414626977983,52.259085568779696],[6.4866357145276,52.25902778267596],[6.486652844025472,52.259023290797266],[6.486855010450443,52.25897042630286],[6.486872169192826,52.25896593411979],[6.487148323019498,52.258893594396056],[6.488107873419179,52.25864094174233],[6.488127460422629,52.258636327870846],[6.488325323604073,52.2585896490645],[6.488702932300248,52.25849226177005],[6.489244790839143,52.258352011946315],[6.489758754488533,52.2582211163309],[6.490137245135205,52.25811996797246],[6.490538226311207,52.25801442867132],[6.490989448247735,52.25789479198995],[6.49108953163724,52.25786811370272],[6.491245287619116,52.25782658734685],[6.491251616973931,52.257824883295726],[6.491329946963356,52.25780522139536],[6.491444930217856,52.25777633617838],[6.492062669654059,52.257615840920565],[6.492282173180068,52.25755678258904],[6.492755972087905,52.257435966104794],[6.492886793375257,52.25740202351841],[6.491084178603248,52.25285603482151],[6.491389676764362,52.25271090032873],[6.491446164157776,52.25269491202667],[6.491513550187126,52.252686093498134],[6.491598710780403,52.25267115834924],[6.492379679941431,52.25259796783364],[6.493111910476852,52.25252556106312],[6.493534660542379,52.252490268161665],[6.493160926647784,52.252274457703905],[6.492803966267856,52.25206633603504],[6.493293577954139,52.2509910682978],[6.493288262076952,52.25089918364388],[6.493378809456561,52.25071878125824],[6.493450834635693,52.250394844031995],[6.493460548384154,52.25031313740825],[6.493505665765881,52.250056776062344],[6.493524922319258,52.249954234566246],[6.493569172948159,52.24983855144292],[6.493738233712429,52.24946818715717],[6.493766011501576,52.249418004732085],[6.493836731955565,52.24929028056565],[6.49413256850593,52.248851134134384],[6.494149783987837,52.248825562267385],[6.494281335211093,52.24849947548189],[6.49439767054085,52.24801749059663],[6.4945454685422,52.24767123371507],[6.494653013707,52.247464658042254],[6.494781367593101,52.24725634109155],[6.494801818788301,52.24722548947919],[6.494932601973573,52.24702834026384],[6.495013451698056,52.246920726465596],[6.49535951473021,52.246507891233044],[6.495959587502245,52.24578859796359],[6.496133853176245,52.245565035293104],[6.496221526534046,52.24542884495022],[6.496343003395174,52.24519130612188],[6.496421131823378,52.244936017484406],[6.496433511382084,52.24486047854385],[6.496445671368502,52.24478611915911],[6.496483990422961,52.24457867272942],[6.496512032769013,52.244306147043346],[6.496538903858911,52.24389736635295],[6.496566960598648,52.24355026271272],[6.496595819603659,52.243130218631244],[6.496598961599536,52.243065948142615],[6.496596418572767,52.24300387931512],[6.496584848588945,52.24296736875962],[6.496569435892825,52.24290945667276],[6.496535385671485,52.24286632600599],[6.498041760259482,52.243139951935525],[6.498210292571156,52.24279020503583],[6.498395272872006,52.242406146693575],[6.498520739049561,52.242145620118954],[6.498520905964297,52.242145267995674],[6.498590117041017,52.24200149235499],[6.500018864517652,52.242253199394476],[6.500237964186713,52.241926172303984],[6.500338153588015,52.241776593651714],[6.500534809207166,52.24181155686697],[6.502141509294399,52.24209713710676],[6.50211957353908,52.24194511442418],[6.502101867672553,52.2418374371733],[6.50216407391964,52.241831834282436],[6.502130480970706,52.24166628604953],[6.502125440409209,52.241653866542805],[6.502399471002736,52.24162240794117],[6.502385092818921,52.24156632943245],[6.502355195986031,52.24148461835142],[6.502219792520354,52.24125112538429],[6.502173920849715,52.24116587079978],[6.502148799302222,52.241112266665965],[6.502349173529407,52.240991833927964],[6.50256906174003,52.24085961233729],[6.502630899074826,52.240875567180204],[6.502823316194139,52.240923186513136],[6.502935886058713,52.24095424803601],[6.503153805590945,52.2410121964034],[6.503271740597238,52.241044069808545],[6.50338809786548,52.24107082555568],[6.503482108150351,52.24108927129556],[6.50350962241895,52.24109635484575],[6.50352751349969,52.24110096762476],[6.503868962378353,52.24116506357105],[6.50427408140597,52.24123988183786],[6.504410706459034,52.241264386489796],[6.504580910022674,52.241301885297915],[6.504645848651718,52.241321755716974],[6.504729140538437,52.2413506387083],[6.505000860840728,52.24144944879433],[6.505294534831291,52.241553659256816],[6.505436247178447,52.24159992075633],[6.505462566535574,52.24157457553933],[6.505725643750197,52.241660863887475],[6.505880797065809,52.241710566001046],[6.50595376638416,52.24173415279708],[6.506012674151497,52.24175637168091],[6.506090562348276,52.24178981716067],[6.506141959987068,52.24181033639352],[6.506420834158568,52.24191099001966],[6.506725446680534,52.24202137627762],[6.506871040726971,52.24207572491191],[6.50689496392428,52.24208668882142],[6.506856846814214,52.242127885143674],[6.507080879531999,52.24219674337104],[6.507298505278763,52.24227513586505],[6.507301268762208,52.242276143336134],[6.507392941893304,52.24230918756337],[6.50739896206749,52.24231101805206],[6.507785649692828,52.24242834420353],[6.507968010426173,52.24248431111225],[6.508145028822581,52.242490352172645],[6.508248452986825,52.242494017518304],[6.50833099921135,52.24249370130706],[6.508463414900147,52.24248572073039],[6.508572436404448,52.24247327012764],[6.508688894348278,52.242452029920564],[6.508784911427631,52.242427307418744],[6.508879756239074,52.24241417321225],[6.50896333462445,52.24240717725754],[6.509050976306193,52.24241092889296],[6.509125999814112,52.24242469672183],[6.509214714924935,52.24245243744205],[6.509269760874332,52.242481091247214],[6.509266169493705,52.242517519971514],[6.509448960152823,52.2423279944784],[6.509560843941662,52.24222469553541],[6.509783262693624,52.24202331450289],[6.509928455056474,52.241890953207886],[6.509974089506553,52.24184778781965],[6.510003132705807,52.241832419927206],[6.510141641128647,52.24191975695407],[6.51001944971594,52.242034021617776],[6.509674585643141,52.242339629602924],[6.509653093159645,52.24235888959059],[6.509635026642782,52.24237407216865],[6.509605618593906,52.24241505178774],[6.509612810880197,52.24247612348826],[6.509666362330953,52.2425087912153],[6.51017693567078,52.24272543290906],[6.510211315746805,52.242734112502795],[6.510330007488331,52.242771796292885],[6.510498593895376,52.24279932473233],[6.51246309250665,52.24298899509074],[6.513706919037656,52.24311599202555],[6.514570985547913,52.24320046354307],[6.514626554156645,52.24320622504752],[6.51462897667697,52.24320648056563],[6.515548512041241,52.24330186681131],[6.516582008675559,52.24341195802064],[6.517356247332574,52.24349101220165],[6.51859901054673,52.24361248495282],[6.520057906968715,52.24375857659936],[6.52121751383241,52.24387431182647],[6.521378613488109,52.243890894702595],[6.523164033118053,52.242275730707526],[6.523742750092026,52.242696741681826],[6.52379183765063,52.24266887212823],[6.525169686283077,52.24182363989085],[6.525264183968281,52.241765669863916],[6.524587625889227,52.241282778571794],[6.524576844799287,52.24127343542654],[6.527085536732027,52.24091453990066],[6.527053733085282,52.24083331158488],[6.527422149899572,52.2407800032544],[6.527076544590488,52.239833427779025],[6.529003613079053,52.23954334707677],[6.529169120592871,52.2398897033002],[6.529327796353291,52.24021793249247],[6.529403429194979,52.24020398778115],[6.52978247946468,52.24014371089772],[6.533843029925193,52.23949304035871],[6.533837549252338,52.23948376343046],[6.533774034338704,52.23937578012357],[6.533934949760628,52.23933905431065],[6.53480592607828,52.23914026011316],[6.535672531674608,52.23893125495617],[6.536818118416792,52.2386598795208],[6.536675254437041,52.238280262129884],[6.536118278975902,52.23683744161628],[6.536093746255246,52.23676503455193],[6.536509504371951,52.23675626974313],[6.53696185932324,52.23674789319436],[6.536760724125942,52.23623422108646],[6.538085053183411,52.236228988436395],[6.538344935916031,52.236231246167],[6.539113093212878,52.23622903156866],[6.539832195891721,52.23597883712357],[6.540082747061443,52.23594023007674],[6.540075210811321,52.23533102980861],[6.5400701795114,52.23445507743866],[6.540068626735748,52.23418371790285],[6.539993561997591,52.23418629343142],[6.539029258377252,52.23425777903637],[6.536758936172597,52.234434875655886],[6.53660588522202,52.234445426064326],[6.535617821354219,52.234525276655184],[6.535614037758581,52.234525592099466],[6.533701140515726,52.23467945902308],[6.533534197355106,52.23391641175524],[6.533522115171888,52.23386109643096],[6.533443152366375,52.233491694958296],[6.533433128114332,52.23344693022454],[6.533420290439627,52.233405473635095],[6.533406043777989,52.23333488072969],[6.533375455014397,52.23319247482701],[6.533241983924628,52.232571409446045],[6.53311640946418,52.2325822549681],[6.533120647685593,52.232601880869744],[6.531581954160612,52.23272298579536],[6.530180451033686,52.232833772095596],[6.530154523520505,52.232708857026374],[6.530106709890147,52.23247786377622],[6.530082670576974,52.23234493955712],[6.529973610918783,52.23235414775839],[6.527075365565783,52.232598948650846],[6.52699415059575,52.23218514333197],[6.526955927887144,52.23199874754474],[6.524036909233295,52.232210551534905],[6.524008700392139,52.23209822321685],[6.523933005654138,52.231754977074104],[6.523892287450838,52.231556901265485],[6.523867218973928,52.23143222832155],[6.523824697735738,52.23121453878365],[6.523797946612263,52.23108185521681],[6.523763756783273,52.23091238108341],[6.519512766547146,52.230870160540555],[6.518908326247506,52.230818518508805],[6.518479149636986,52.230801202520226],[6.517607360437114,52.23078160654268],[6.517159861879351,52.23078062262241],[6.517141902437546,52.230656132009315],[6.517115011345613,52.23046984055488],[6.516571100989145,52.23049575397527],[6.516437908334056,52.23050165700078],[6.515900233273665,52.23052757061212],[6.515758301920599,52.23053638780461],[6.508862059643679,52.22958244809623],[6.508821527014162,52.22957724225782],[6.507907611137034,52.22943793281197],[6.507967315690868,52.22926563965102],[6.507866132233744,52.22924393092342],[6.507568097051933,52.229195515555034],[6.5075351742629,52.229192538139856],[6.507520358468563,52.22902958129918],[6.50749787256613,52.228840450633435],[6.507444799919493,52.228689964356825],[6.50736499844723,52.2285644771503],[6.50730261511351,52.22849129986656],[6.507204336610724,52.22841798666274],[6.50702077147155,52.22832285809731],[6.506908168299665,52.22827883940149],[6.506883198254777,52.2282661146977],[6.50691099244532,52.228250282927426],[6.506910929502234,52.228246616191626],[6.507455461188401,52.22823989583961],[6.507461530830867,52.22813440242422],[6.507490302193348,52.22763561479727],[6.507530542210104,52.22704349789998],[6.507577037938161,52.226285284792525],[6.508903721948379,52.226324363099636],[6.508989870492282,52.22632878493234],[6.509205800791555,52.22633355541394],[6.509224102726595,52.2262373566251],[6.509252305151172,52.2260891188111],[6.509252854689507,52.22606329842341],[6.509309876815754,52.225793081486145],[6.509409586548502,52.2254900459844],[6.50943115323198,52.22543688034376],[6.509432059178271,52.225422301262924],[6.509473242394961,52.225310613339964],[6.509435511753134,52.22531015402885],[6.509060250512859,52.225246728619595],[6.508869631258988,52.2251907792242],[6.508651835236911,52.22507393844366],[6.508323760841215,52.224903934466504],[6.507653440216645,52.224548939538074],[6.507597660316828,52.22451694825914],[6.50758901011421,52.22451462141224],[6.507483792312019,52.22445894694594],[6.507061592486158,52.22419437403406],[6.50715266711455,52.22412946657615],[6.507687262811153,52.223775853359264],[6.507944459659513,52.22362962194156],[6.508204557552407,52.223510903381005],[6.50829272466318,52.22348177915492],[6.508611106146534,52.223393444871405],[6.508842866302396,52.22334681272932],[6.509555853329219,52.2232370996311],[6.510331010384326,52.22317087973137],[6.510326241965179,52.22309382111199],[6.510303868746959,52.222731938248124],[6.510311169311814,52.22254497836321],[6.5103228315699,52.22234990523716],[6.510390541690586,52.22196133214952],[6.51039074497877,52.221960107769206],[6.510422889349536,52.221731671897274],[6.510500023071851,52.221183551683744],[6.510530767297745,52.22096521424937],[6.510540043858342,52.22093553558399],[6.510470013964945,52.22029036363331],[6.510452774386996,52.220162161778994],[6.510443619822637,52.220102097315674],[6.510425468973403,52.219983018543196],[6.510364919996496,52.219715950703964],[6.510345241922379,52.2196291464537],[6.510465003635978,52.21963336418462],[6.510683404788567,52.219641056499285],[6.511263109765482,52.21965438721098],[6.512045901098135,52.21967453506267],[6.512072971351242,52.21967667707715],[6.512230774725644,52.21967877775815],[6.512236794208982,52.2193296398325],[6.51227113049006,52.21595366757454],[6.512246807321056,52.21595243425091],[6.512258126962262,52.21527206104148],[6.512259757891683,52.215174420436725],[6.512202533983183,52.21516950973895],[6.512110063640726,52.215163083251475],[6.512000765991592,52.21515380585656],[6.511911390637146,52.21514361047018],[6.511692602268647,52.215119717830675],[6.511356661859948,52.21508203742432],[6.511377437596729,52.21498158985307],[6.511582757839864,52.21406568361763],[6.511590839320616,52.21402758490553],[6.511991259261842,52.214040893369656],[6.512020381191011,52.21358322245532],[6.512106837024111,52.212727053190356],[6.512108523757141,52.21271040822012],[6.511359260844058,52.21271923608739],[6.51155849957821,52.21120976268435],[6.510978151551582,52.21119733012602],[6.510977070136328,52.21048168655838],[6.51096381347716,52.20911463841178],[6.510958805463712,52.20893931857057],[6.510946798554362,52.20801442530172],[6.510954725066541,52.20801022406847],[6.512530658040592,52.2077953028937],[6.512739422222245,52.20776377576546],[6.512299258376482,52.20700011210312],[6.512081033717304,52.20662149785165],[6.513155364576381,52.204016531205475],[6.513495268219176,52.2037252121069],[6.513626906410501,52.203612371222576],[6.513719552475876,52.203532953483766],[6.513767548837646,52.20347264020406],[6.513820261926126,52.203407940380174],[6.51361961559962,52.20332399634356],[6.51303773152945,52.20308058199095],[6.511762084586133,52.20254745887738],[6.511958410430225,52.202243220225746],[6.512105750838832,52.202028039861254],[6.51238892724299,52.20159876796928],[6.512175288993053,52.20132603176429],[6.512241733757157,52.201207845332995],[6.512312811755182,52.20108139909877],[6.512355371133892,52.20100566879542],[6.512872367559676,52.20090081235115],[6.512837176625812,52.200818821304175],[6.512845956361149,52.20076506656068],[6.512926676151847,52.20064108972207],[6.513204302713938,52.200189675709844],[6.513220198511638,52.20010147158617],[6.513381879549102,52.19990956797245],[6.513322521757661,52.19987733493243],[6.513379969824583,52.19976628970555],[6.513516913759416,52.19955071222178],[6.513523948594474,52.19953966099489],[6.51363766235304,52.19936065766126],[6.513734356496309,52.19920844465543],[6.513938233603613,52.198887501322226],[6.513939894965111,52.19888841128793],[6.514040099066672,52.198946887281274],[6.514122437635422,52.198765133231824],[6.514232206407231,52.198528565239044],[6.514247362804624,52.198495090699915],[6.51436865046177,52.198302789360014],[6.514453746029612,52.19824631005029],[6.514545941136296,52.1981518758301],[6.514574658071795,52.19810571460285],[6.515106805034822,52.197250944538524],[6.515291755592282,52.19697644395932],[6.515387200835275,52.1968320281917],[6.515462446646505,52.19674718429961],[6.515470414005955,52.196746424990394],[6.515495761984859,52.19673597156636],[6.515620066404188,52.19671172720983],[6.515755365883494,52.19671791192448],[6.515910829039948,52.19675613683084],[6.516537940341082,52.19700849714644],[6.517361865078573,52.19738395631244],[6.517992249087839,52.1976677647954],[6.518120538603394,52.19772498847607],[6.518102841004625,52.19778155269963],[6.519968336856949,52.19862854660155],[6.520092118638535,52.19868431932124],[6.520997055629791,52.19908213039593],[6.522020110559397,52.19955201122838],[6.522396217911106,52.19972760028621],[6.52241090594588,52.19973453304998],[6.522396447419119,52.19962406707494],[6.522389581351402,52.19952452115576],[6.522368597198787,52.19931408351119],[6.522402185909124,52.199329670292066],[6.522559232964866,52.199402486491806],[6.521892952213586,52.194656147291205],[6.520917100059644,52.18770246911903],[6.52083093003751,52.18758966260596],[6.521037299848815,52.187256942546675],[6.521068295412801,52.18722730575833],[6.520587048514942,52.18630804056638],[6.520582266397424,52.186290208086675],[6.520577726439134,52.18627327214521],[6.520567467512457,52.186235016139186],[6.521187782261458,52.1860761052218],[6.521534793086674,52.18596802493634],[6.521922631935848,52.18580018994641],[6.522627676189424,52.18540454939001],[6.522841525474064,52.18527564346362],[6.523478134538417,52.18482511547577],[6.524103636293187,52.18439025031901],[6.524610580234349,52.18403410578659],[6.524926851744647,52.183880505469766],[6.525743162009548,52.18358665696209],[6.526495055109869,52.18331715482368],[6.527276956883647,52.183037802907656],[6.528027910854449,52.182768317903644],[6.528724681337037,52.18252350483519],[6.529428298181777,52.18226939894033],[6.529771620157727,52.18214767595976],[6.529950828609814,52.1820886375948],[6.530138015740585,52.182038537292776],[6.530579115985208,52.181965868625575],[6.531007808890021,52.18193229344178],[6.531374510718851,52.18191674691639],[6.531515459892508,52.18191396870934],[6.531960299359291,52.18187145152121],[6.532164465740739,52.181840356061876],[6.5323085549323,52.181813528711885],[6.532554704150834,52.18175632648692],[6.532804927920929,52.18167504847907],[6.53305414097003,52.18157780688388],[6.533409281939751,52.18142270033374],[6.533897235060602,52.18119479704574],[6.534686129501502,52.18082106318998],[6.535437179427021,52.18046591231705],[6.535590667548117,52.180396634798534],[6.53570207256499,52.180352323813],[6.535795301492,52.18032898947052],[6.535944616685679,52.1803117426073],[6.53607537587886,52.18030355706426],[6.536076864874226,52.18030346166644],[6.536107163662251,52.18030069472886],[6.536195025393013,52.18029265712897],[6.536222084958593,52.18026519386118],[6.536236372094447,52.18026354461777],[6.536246970729942,52.18026231780948],[6.536519789188263,52.18020104524981],[6.537556005566643,52.180025725285546],[6.538548303735257,52.17986057748232],[6.540026049483407,52.179619946781706],[6.541304904714122,52.17940571943675],[6.541819474367808,52.17932098191968],[6.542046038744287,52.17929218482532],[6.542538696696491,52.179242777433394],[6.544054632297026,52.1791079053464],[6.545485573276939,52.17897960996732],[6.546673812649613,52.17887478814484],[6.546866546292033,52.17885420631073],[6.547414688783656,52.178830848601656],[6.54848315014728,52.17891560739196],[6.548489723189705,52.17891591122768],[6.548524302210798,52.17891754836109],[6.548555909114993,52.17891903496784],[6.549072941797395,52.17891943628946],[6.550456495039105,52.1790037613223],[6.552558535817391,52.17912554122309],[6.555246261813779,52.1792818188839],[6.556768026351036,52.179369897079546],[6.557294600170813,52.17940045077595],[6.558808837206248,52.17948830770075],[6.559207889231838,52.17951079790533],[6.559543422021848,52.17952430903939],[6.559868672174424,52.179534901221395],[6.560343342672841,52.179539341661794],[6.560916453227689,52.179537317778035],[6.561189744643304,52.17953707048486],[6.561202172841991,52.17953705467654],[6.561808049042312,52.1795221881171],[6.562018352758805,52.17952873226101],[6.562441560465705,52.179551150773314],[6.562654018421256,52.17957228797442],[6.563098858281608,52.179630398516366],[6.563479762495878,52.17970199872684],[6.563815743445188,52.17978556928313],[6.564238685738428,52.179914113780335],[6.564937960490862,52.1801279790024],[6.565681254602376,52.18035345429208],[6.566527327553333,52.180612324396456],[6.566617250288322,52.18063980287452],[6.56729288409552,52.18084629513581],[6.567855586334783,52.181020421782236],[6.567933824133572,52.1810461195798],[6.568031423963787,52.1810845852715],[6.568260062450369,52.18118347370004],[6.568304186521279,52.181202546491846],[6.569612416386732,52.181586348517264],[6.569774280383416,52.181643925916376],[6.569885331371463,52.1816959990178],[6.569981893138389,52.181761358782374],[6.570324816472819,52.18200959563114],[6.570500518613599,52.182129522863754],[6.570544112870703,52.18215555741161],[6.570609519665913,52.182188024811204],[6.570742219102238,52.182221533994884],[6.571938537815595,52.18233865906285],[6.572727771351599,52.18241049718198],[6.573650664296873,52.18250059942001],[6.575357385892275,52.182630992050576],[6.57551667604355,52.18264095629696],[6.576115520400112,52.182549584302116],[6.577999075852655,52.18227881436746],[6.578164096284834,52.182281067789866],[6.578429387812442,52.18229763441105],[6.578701286719514,52.18228785065761],[6.580670738725611,52.182315836822156],[6.583391644141606,52.18236109954711],[6.583707959025793,52.182377721264835],[6.584064056522865,52.18241425312421],[6.584127287143567,52.18241484312949],[6.58413485187792,52.182415018070415],[6.584419819314575,52.1824159739196],[6.584654729941873,52.18241628657814],[6.585051697367718,52.18242661195572],[6.585252438297013,52.18242924785905],[6.585572002969385,52.18243289678904],[6.585903498163476,52.182443003400024],[6.586248363107786,52.18246251026209],[6.58727791933111,52.18252988503297],[6.587592535071236,52.182546837233346],[6.587898223811856,52.18255537609308],[6.588024573271428,52.182558899164206],[6.588547552426638,52.18256609648645],[6.589040190225747,52.182558688238814],[6.589441469684658,52.182535777474655],[6.589999075913233,52.182503945917695],[6.59041516278608,52.1824635236042],[6.590840965943276,52.18237083898315],[6.591016399231176,52.18233356153003],[6.591548511278893,52.18217170878702],[6.591898610730272,52.182029914477084],[6.592102269380584,52.18193549332914],[6.593414862327085,52.18112518305365],[6.594044288020704,52.18071790163784],[6.594141189249434,52.180655202558036],[6.594409518687535,52.18052054721208],[6.595181670899144,52.18018297202658],[6.595577382781808,52.179925319805704],[6.595645386240283,52.17991708170004],[6.595687376614274,52.17991044934301],[6.595760309950554,52.179904992131824],[6.595834104777056,52.17989301818752],[6.595931411210486,52.179876165113406],[6.595960023813551,52.17987120679633],[6.595982866445978,52.179898280611255],[6.596115271302165,52.17983525205512],[6.596220470675267,52.17976491563355],[6.596307264834169,52.17970983290768],[6.59635057570955,52.179682350830475],[6.596481024805484,52.17960386325044],[6.596518497921271,52.179566553309186],[6.596553493270016,52.17953169571988],[6.596789070517732,52.17937387394082],[6.597072846719196,52.17918020459199],[6.597411330954241,52.17893250818297],[6.597458419239254,52.178939198171975],[6.597796967844796,52.17870047973374],[6.597836529813413,52.17864916140194],[6.598301101401252,52.178901489849814],[6.598613998893599,52.17905885265526],[6.598829271517436,52.179165756612285],[6.598882422804594,52.17912489611916],[6.599012707530032,52.17918691077798],[6.599067894860567,52.17918007873242],[6.599140309924814,52.17916906069735],[6.599198457578462,52.179149029637465],[6.599266285210608,52.17909458897791],[6.599321776479929,52.17905268851179],[6.599350983866628,52.17902231201118],[6.600743406281105,52.17929686040298],[6.601025412329397,52.179352467171896],[6.601053942728908,52.17942722984618],[6.601162995259291,52.179303788603676],[6.601186580767018,52.17925063801721],[6.601197090484951,52.17920486692522],[6.601203870914103,52.179138127453555],[6.60119216935869,52.179104683800375],[6.60121957511483,52.17905597928956],[6.601302258266925,52.17895007667439],[6.601394528212962,52.178845612410676],[6.601454985267502,52.178732720442625],[6.601473346397841,52.17866278759363],[6.601522162661427,52.17841777260503],[6.601534680114015,52.17834319876286],[6.601480703861802,52.178180769942],[6.601745458417665,52.17813200411986],[6.601813175965419,52.17811341030768],[6.601880091742927,52.17807129210697],[6.601947553306982,52.17802881768527],[6.601907980302268,52.178008694794194],[6.60204287023718,52.177870487742794],[6.602079106513628,52.17782288758388],[6.602115131207133,52.177769671608964],[6.602159566007547,52.17774017128047],[6.602209964435479,52.177718115140976],[6.602315215555495,52.17767596141427],[6.602468313189527,52.17762167426587],[6.602672654513869,52.177562957840436],[6.602884982093028,52.177502226174454],[6.603017771828401,52.17746732961197],[6.603084747905544,52.177448410113655],[6.603143962694667,52.17741296830546],[6.603177555734932,52.17739181304665],[6.603213489032443,52.17736961792423],[6.603306947032453,52.17734437588638],[6.603399015775726,52.17731162449093],[6.603449821106802,52.17728630069211],[6.603555808444302,52.17721547304494],[6.603635313803805,52.177155803768656],[6.603743942230338,52.17706336666283],[6.603915268403039,52.176873509666834],[6.603933970666115,52.17688857972123],[6.60402818728147,52.17686439894011],[6.604189763651848,52.176773806278426],[6.604300640584409,52.17670650503143],[6.604464871950376,52.17659912950957],[6.604560440088393,52.176552723080206],[6.604692979455224,52.17644455066035],[6.605058614412921,52.1761718323957],[6.605257327996062,52.17593743885991],[6.605389681879236,52.17579691691565],[6.605540150122629,52.17558951098514],[6.605525450775769,52.17557057961048],[6.605590406616143,52.17520069457865],[6.605399336941971,52.17492318860307],[6.60531476022461,52.17488047534788],[6.605210887009382,52.17481590279831],[6.6053545342485,52.17465699903554],[6.605367775617592,52.174642911713285],[6.606243823681233,52.173714273630814],[6.605921579345233,52.173380901309805],[6.605936232596809,52.173370349900324],[6.605958980210476,52.17290010928661],[6.60626355911501,52.1728371507477],[6.606265231099706,52.17284964585946],[6.60784136672629,52.1725917736511],[6.608122332039013,52.17253796250616],[6.608052190097879,52.17242541172688],[6.607935406642753,52.1721695409259],[6.607811565479882,52.17189131600644],[6.607343082643803,52.17083277981595],[6.607320326583636,52.170784907185244],[6.60715268576145,52.170397875840806],[6.606928423578128,52.16989091701706],[6.608607840804735,52.169587884603494],[6.608288126158724,52.168864324779584],[6.608225212548346,52.16878653082536],[6.608059677405986,52.16856134007718],[6.608046983890104,52.16854407813613],[6.608041563412893,52.168536709492756],[6.607885216051925,52.168324007723896],[6.607857864033411,52.16823370169613],[6.607909753188762,52.16811438677084],[6.608799399028916,52.16811892947013],[6.610556343416524,52.168133457998636],[6.611141844327096,52.168135941490405],[6.611190923866455,52.1680290947089],[6.611213108986265,52.16798575421105],[6.611092639382834,52.167984127830806],[6.610960314250836,52.16797716812431],[6.610887709105117,52.16797197077485],[6.610815806777832,52.16796415034933],[6.610759035204556,52.167956361694245],[6.610633204828849,52.167934098235406],[6.610420070857161,52.16789037589407],[6.610204697275785,52.16784226289093],[6.609998534627152,52.16778778881873],[6.609862136619694,52.167746344130215],[6.60957990689301,52.16766537677352],[6.60968182350369,52.16759014499045],[6.609837698277277,52.16743237598527],[6.609993474171945,52.1672219873515],[6.610106863243731,52.167022500917206],[6.610191260320639,52.16674451014524],[6.61018102973443,52.16637407086115],[6.609706380913763,52.16606857198725],[6.609272932472864,52.165819687306104],[6.611832468370937,52.164195668099595],[6.612699165843389,52.1634555434433],[6.612945586787215,52.16358469585255],[6.613051307711943,52.16364152101528],[6.613160766037723,52.163694981378086],[6.613261599069241,52.16374678747128],[6.613735886409248,52.16342358949777],[6.613775163305184,52.16313129636049],[6.613774244287958,52.163075017977874],[6.613767119996738,52.16300622877772],[6.613746349353445,52.16292009824863],[6.613719561680868,52.162853814661894],[6.613665558311698,52.16276733756073],[6.613584967002986,52.16269465606918],[6.614448604088566,52.162121121491914],[6.614748769020231,52.16101862971035],[6.614864744203699,52.16100260901455],[6.614971691214826,52.160986754097216],[6.615115751913249,52.16096573064274],[6.615253459248032,52.160939568639186],[6.61542407938559,52.16090696032579],[6.615583338850926,52.160871557709655],[6.615704677543701,52.16084492744863],[6.61584339962168,52.16081424179413],[6.615932228414143,52.16079224661311],[6.616092380804175,52.1607394136697],[6.616214658778543,52.16070180673268],[6.616321436298511,52.16066658144274],[6.616510357623574,52.16059221651606],[6.616647578536764,52.1605346869575],[6.616741918357786,52.16049472798101],[6.616882303310857,52.160416266151344],[6.616984486966503,52.16036130375282],[6.617102869641029,52.16028743963707],[6.617210671899394,52.16022742066126],[6.617359302464098,52.16013214405744],[6.617386422056631,52.160158387202046],[6.6177604133979,52.16055755345209],[6.617762491398807,52.16056453406301],[6.618142940339515,52.16091621571273],[6.618357867081657,52.16114021202486],[6.618569110576972,52.16138107348082],[6.618922910384934,52.16177447834037],[6.619248951515708,52.16213211796522],[6.619272395915083,52.162167037332566],[6.61929310153987,52.1621954054883],[6.619627402185498,52.162563978099186],[6.619930165781525,52.16290081627224],[6.620186286322413,52.16317769146387],[6.620322286179897,52.1633481718945],[6.620398642703313,52.16343694717481],[6.620630830189793,52.163680111882755],[6.620810907096266,52.163620295649984],[6.622022666338597,52.16321778837667],[6.622066590806214,52.16320252391681],[6.623065204977745,52.1628554599615],[6.623051710260248,52.16283950237406],[6.625911013926322,52.161835558832976],[6.624932941736977,52.16073314454412],[6.624844350499843,52.16060971373473],[6.624996155555804,52.160537198759634],[6.628408940185924,52.15890680224696],[6.629413773547133,52.15871058537042],[6.630541035324303,52.158490453315956],[6.631799612067445,52.15832251619787],[6.633145382921006,52.158135046522574],[6.633149649813365,52.15814653413689],[6.633277207812657,52.158487616638716],[6.633303602906163,52.15856872278329],[6.633679955036117,52.15964142986593],[6.633724549572872,52.1597780384563],[6.634209685511401,52.161196042070955],[6.634209893926955,52.161201406207724],[6.634398694503894,52.16110695959833],[6.635067404148389,52.16086911571008],[6.635323086896787,52.16078208585567],[6.635405302211738,52.16075077055829],[6.635772332630105,52.16061588216231],[6.636043416093763,52.160522530322396],[6.636222317829085,52.16045950269832],[6.636937228646499,52.160196286601916],[6.637007788799836,52.16017108024348],[6.637120103446105,52.160127525551424],[6.637225060802747,52.160083779063136],[6.637285931824382,52.160054450467456],[6.637382588909769,52.16000450860537],[6.637804815194779,52.15977385471549],[6.637863462983447,52.1597387605678],[6.637883713395853,52.15972600637717],[6.638764933768376,52.1592155656168],[6.639461895659765,52.158819723016464],[6.639532902511804,52.15878504510616],[6.640397955477768,52.1582804983536],[6.640403207122305,52.15827754813736],[6.64045864659635,52.15824648679433],[6.640612488054512,52.15815815435871],[6.64084508501417,52.15802389647063],[6.641317435581304,52.157763680793906],[6.641404507751489,52.15770792280028],[6.641734074934815,52.15751667617104],[6.641783430161638,52.15748708117044],[6.641818829519977,52.15746585043346],[6.642242106471764,52.157231079103596],[6.642541606549285,52.15706433015694],[6.64272760116532,52.15695969739713],[6.643592454848532,52.15646460291708],[6.643705426836455,52.1564003154709],[6.643828510200505,52.156330266176354],[6.644142228099319,52.1561534917776],[6.644313977942631,52.156057574655975],[6.644317170867401,52.156072345285914],[6.644654821098375,52.15587837934897],[6.644958029459008,52.155704357503744],[6.645030278120752,52.15566895283264],[6.645560195776216,52.155367008571346],[6.646938202102586,52.15457893019869],[6.647235231159369,52.15440664925655],[6.64757392215295,52.154209544460606],[6.648261606617042,52.153816677894724],[6.648953554620439,52.15342462451857],[6.649399617435702,52.15316370399781],[6.64949400961653,52.15310908398746],[6.649439256055451,52.15307199765901],[6.64889650547717,52.15269963459658],[6.648827542520478,52.15265250662447],[6.651236033100996,52.151599654179634],[6.651920267577843,52.1513005296668],[6.652592408429885,52.151012749004906],[6.652355031055068,52.15080117167532],[6.651143405948011,52.14974674320496],[6.651159670678227,52.149737499082704],[6.651328340139774,52.149665254128585],[6.65140683063646,52.149630452658315],[6.652310324612754,52.14924182741808],[6.652390334240282,52.14921066745979],[6.652422690208482,52.14919743023395],[6.652703610326004,52.14907483656721],[6.653560896583556,52.14870588871607],[6.653542362466854,52.14867477944313],[6.653743767577678,52.1485844443224],[6.653791807964252,52.14856629211392],[6.653819493329942,52.148556358643816],[6.653838341607742,52.148550654982564],[6.653862356240194,52.14854936330255],[6.653889278239287,52.14855217527764],[6.653941584882802,52.14858291271473],[6.653997036057675,52.14862147264046],[6.654204794943435,52.14878532831025],[6.654269973022249,52.14883554107018],[6.654488130594946,52.149010979064506],[6.654551854279997,52.14906912651723],[6.654593783191423,52.14912749919694],[6.654631971639696,52.14917250063615],[6.654656676960918,52.14921557954053],[6.654681748655135,52.149271041196926],[6.654712563425528,52.149352239240685],[6.654727746366635,52.14941400052686],[6.654822871624744,52.14979772059533],[6.654874650303302,52.150020690775136],[6.654901322621169,52.1501463564044],[6.654937282996762,52.15025330617821],[6.655149388707024,52.15021233752917],[6.655417946519784,52.150166896159924],[6.656003852218249,52.15006678536842],[6.656421552021417,52.14999494551176],[6.656678201286029,52.149952182271775],[6.657217966702505,52.14986478701282],[6.65772509064543,52.14977601509241],[6.658368589904439,52.149666220101196],[6.658386522803792,52.14966326719488],[6.658945928934402,52.149571040938305],[6.659446833880431,52.14948321853021],[6.659641931830437,52.149449724220055],[6.660617505565225,52.149282273851895],[6.661760917388185,52.14908600768704],[6.661882551837731,52.14906513306085],[6.662121585568473,52.14902552363383],[6.66279401954355,52.14891451955596],[6.662866600110566,52.14890335220909],[6.662997297906032,52.14888213567599],[6.663394461079248,52.148817468520456],[6.663410545119201,52.14881528992232],[6.664247869901331,52.148673144031505],[6.664256453390839,52.14878365060693],[6.664285177680179,52.1491537185065],[6.664355640783256,52.149721054342024],[6.664363665736283,52.14971961909081],[6.664637795992673,52.149666096148174],[6.664808232175858,52.14963896389561],[6.665245402698912,52.149628698415576],[6.665514687789743,52.1496223727639],[6.66566928105422,52.14959209409663],[6.666747956716164,52.149310547324134],[6.667455095733207,52.14912596129176],[6.671470946333143,52.14849472323607],[6.672014035869539,52.14841117880558],[6.673572582975363,52.14817667299096],[6.67357096497469,52.14818694700381],[6.673570315434903,52.14827897370185],[6.673586721820275,52.14837467957213],[6.67360958841351,52.14842735689792],[6.673612979085389,52.148447149473306],[6.673631623029203,52.148483611898264],[6.673726768051781,52.148615609947285],[6.674048993118547,52.14906153114349],[6.674149154492873,52.149198660723606],[6.674240721037438,52.14932401865005],[6.674325726203565,52.149443263746385],[6.674436423306906,52.14954589545648],[6.674530008706952,52.14960948621189],[6.674583517429614,52.14963829583031],[6.674155365798347,52.14973779346809],[6.673287207305964,52.149933785184615],[6.672874068047357,52.15002757721765],[6.673012013070178,52.15043996797112],[6.67336827452416,52.15141253114319],[6.673476426389489,52.151574797020714],[6.673819473883089,52.152103630151174],[6.675166710484349,52.15197871037545],[6.675449743051312,52.15192777076351],[6.675570883408449,52.15189630747685],[6.675787138581648,52.151780279707395],[6.675796556247925,52.151656543166325],[6.675806570132562,52.15150386476573],[6.675817265825259,52.15136518365065],[6.675826101869957,52.15127090116372],[6.675859159974347,52.151299870768455],[6.675973821311834,52.151384147309685],[6.676098747249702,52.15148481521342],[6.676130166555616,52.151505604758015],[6.676303714269595,52.151418232062404],[6.676622015187084,52.15125797627118],[6.678356685256698,52.1503777579314],[6.678581436830092,52.15032557011548],[6.67881339007753,52.15023646635635],[6.679056377649177,52.15015704817197],[6.679217976868093,52.150108058866465],[6.679315014538642,52.15007864454354],[6.679566500686499,52.15003238222317],[6.679778788719664,52.149982351201636],[6.679965100420251,52.149905260245035],[6.680576710312662,52.14961553709366],[6.680585630290758,52.149624329311706],[6.68062705694175,52.14968081082528],[6.680846445274137,52.149619742467486],[6.68096720649855,52.14958612935312],[6.681162490709001,52.14952379673631],[6.681279707612839,52.14948639290418],[6.681465045779427,52.14942224529581],[6.68160782137662,52.149372830045266],[6.681799212203828,52.14930580192676],[6.681911173716983,52.14926659444428],[6.682066661818071,52.149223250405456],[6.682517539781051,52.15001114059424],[6.68303598904553,52.1509228282544],[6.683355018025365,52.15081725272384],[6.683391283124729,52.15088201489907],[6.683709595444254,52.15080713450312],[6.683725066908936,52.150803494671536],[6.684595007294365,52.15059886683054],[6.685708496731047,52.15025491003652],[6.686820245651366,52.14998924645239],[6.686828385793668,52.1499993142431],[6.686848582055678,52.150030481039764],[6.687093077935892,52.14997376258663],[6.687617232232059,52.14986757698397],[6.687738951510904,52.1498429173029],[6.687747856318027,52.1498411111934],[6.687872443106198,52.149797524988614],[6.687888137729844,52.149792039410144],[6.687934142141112,52.149738551132494],[6.687761045459983,52.14951100858342],[6.690033777996032,52.14880674252297],[6.691354556160092,52.146398321617184],[6.691329756982444,52.146390694606396],[6.69033807799526,52.14608573260457],[6.689968623618178,52.145968302418574],[6.689962591588267,52.14596638250458],[6.689960924790387,52.14596584360496],[6.69009073294234,52.1458988529308],[6.690593110679202,52.145836859196905],[6.690678065410646,52.14581403199353],[6.690689387745274,52.14581098542029],[6.690767759961549,52.14578040153948],[6.690856586389918,52.145731562314644],[6.691246115845067,52.14545442226222],[6.691494857986516,52.145288566465545],[6.69115510320598,52.14508485010038],[6.691977510723217,52.14474359255343],[6.69320255403045,52.14421032452501],[6.693656572497788,52.1440328865853],[6.69367003867822,52.14404370391069],[6.69377893481694,52.1439919163861],[6.693847842256907,52.14396310723488],[6.694090879639028,52.14386149917858],[6.694081549209558,52.14385271251137],[6.694031491173448,52.1438152080649],[6.694016246374576,52.14380202841806],[6.693670847490377,52.143515314808774],[6.693662031682173,52.14350813143111],[6.694286273853641,52.14322418219234],[6.694789080920606,52.14299702925758],[6.694954298835293,52.143130840371725],[6.695060790288424,52.143200042793254],[6.695122507799843,52.143222100278635],[6.695187151351999,52.14322434955088],[6.695295327115796,52.14321241666211],[6.69537131859397,52.14328181335046],[6.695609389550232,52.14344861376319],[6.695686769974464,52.143471665714266],[6.695764534140991,52.14347790399153],[6.695741141879596,52.14345245515759],[6.69608506873803,52.14330292666962],[6.696190472013828,52.14326022753851],[6.696250092446511,52.14324563273753],[6.696437913949479,52.143223412069034],[6.696921682750371,52.14316437526557],[6.697101573375058,52.143145747327175],[6.6976109407479,52.143137570523734],[6.697744742523199,52.1431266449882],[6.697931330983668,52.143102278283486],[6.698094793355845,52.14304167318171],[6.698139822564726,52.14289842770642],[6.698180017547175,52.142834338893586],[6.69827400252354,52.14272632512609],[6.6984609348465,52.142544646757734],[6.698549509617826,52.14248127821881],[6.698861590797914,52.14228274620284],[6.698991287337491,52.14218691911245],[6.69903575163462,52.14214885050629],[6.699074250146666,52.14208675781442],[6.699117989568705,52.14192959335426],[6.699137248647954,52.14186906305447],[6.699180568328414,52.141811950501875],[6.699499970441176,52.14156452512611],[6.69950746474327,52.14147158561377],[6.69948485441149,52.141413139268224],[6.699453801249025,52.14118678295819],[6.699445565821222,52.14114022183956],[6.699405444224074,52.1405507219642],[6.699671390189911,52.140547582052754],[6.699663867189463,52.14033148093073],[6.699864721601973,52.14032070538537],[6.699845641323271,52.140218353593035],[6.699846308437895,52.140101938921525],[6.700203028434651,52.1400956297887],[6.700138123489532,52.1397813788109],[6.699971046646738,52.139703686778226],[6.699809191340477,52.139584946645],[6.699783464473059,52.13952482713373],[6.699669198941823,52.139479356496786],[6.699574829554789,52.139186377522975],[6.69953875316522,52.139141924091064],[6.699437387683091,52.13904821861819],[6.699332175150022,52.138907615434285],[6.699468669746352,52.13888139458044],[6.699866051556715,52.13880505012449],[6.699893086755155,52.1388023670413],[6.699916627813558,52.13879810483992],[6.700038066998133,52.13877609598913],[6.70006579286529,52.138771068040924],[6.700195315367781,52.138745247578655],[6.70030236944844,52.13872390203448],[6.701320834205858,52.13853459975081],[6.701816631142988,52.13844244571108],[6.701853762284402,52.13843535286925],[6.701970330753599,52.13841122098947],[6.702062092179457,52.13839696588654],[6.702150042042322,52.13838424539368],[6.702251599481106,52.13837820468387],[6.70235328411706,52.138380944703925],[6.702464278303975,52.13838777863659],[6.702554372587606,52.138402225592706],[6.702668922075596,52.13842807631325],[6.702680716819747,52.138430740286594],[6.702719747287775,52.13843852971345],[6.702724027499714,52.13843951568814],[6.704016765269177,52.13873687621154],[6.70440210064448,52.138826380868984],[6.705582872634332,52.13910063303931],[6.705884184417962,52.13917435290992],[6.705968768900118,52.13919852206281],[6.706017919703664,52.13921257039875],[6.706181663441111,52.13926714458207],[6.706259914538833,52.13929549234812],[6.706334185314946,52.13920200290966],[6.706652590205493,52.13880121660478],[6.706761874520257,52.138663666515484],[6.707003477727876,52.13834750712776],[6.707235278784721,52.13804974954714],[6.707286271283651,52.13800161785586],[6.707325375581951,52.13798274358716],[6.707384320704876,52.13794863552168],[6.706845029796533,52.13759238974604],[6.707795981125146,52.13704263596649],[6.708727811665513,52.136735503848506],[6.708571604678458,52.136493149543526],[6.708552189719631,52.13646302029446],[6.708774116007654,52.13646842512736],[6.708698008712981,52.13642750637495],[6.708620476421035,52.13638927327779],[6.70854456126014,52.136351381566016],[6.708443238244437,52.13629408865076],[6.708331282656744,52.136257589487926],[6.708245316566262,52.13624039501529],[6.70814879899303,52.13622206024434],[6.708095854515784,52.13619523700724],[6.708080113902782,52.136177696053515],[6.708065037645599,52.13616088475211],[6.708053242603118,52.13613746573198],[6.708054075725519,52.13612958203819],[6.708056988338319,52.13610212398193],[6.708687908719687,52.13622844141354],[6.708979901337617,52.13627849084771],[6.709253532282682,52.1363102910573],[6.709614322863894,52.13632852841918],[6.710030478232965,52.13631619214018],[6.710541046057992,52.13627627713388],[6.711129203423583,52.13624398323548],[6.711475148200986,52.13623006616111],[6.71179362203563,52.13623804829784],[6.712251483117138,52.13625822522084],[6.712771927373067,52.136292231943045],[6.713325382638714,52.13633937553362],[6.713739399982931,52.136365720900415],[6.714174193439268,52.136426070092206],[6.714808934518547,52.13653912506064],[6.715734838534305,52.13671069539906],[6.716408304264844,52.13682782690568],[6.716454077898246,52.13683538295799],[6.717228531335316,52.13696318271392],[6.717944170551873,52.137061887663734],[6.718242899771551,52.137093824261726],[6.71843044297604,52.13711687600537],[6.718598420638198,52.13713632807531],[6.719397915668549,52.13721683631974],[6.720111157356153,52.13728777922521],[6.720576465422111,52.13733619108573],[6.721293876590363,52.13741111577743],[6.721646020496821,52.13744406636521],[6.72188283416645,52.13746247394297],[6.721987965872549,52.13746912215633],[6.722698593546326,52.13753932398874],[6.723317430689924,52.13757511814078],[6.723866102838178,52.137602580713214],[6.724307037935324,52.13761688921371],[6.724714569069107,52.13763235707344],[6.725238023738408,52.137643577535826],[6.725698522000338,52.13764526295356],[6.726023519413534,52.137635046779074],[6.726355965043266,52.137624763084666],[6.726626685744121,52.13759391169035],[6.726800721005152,52.137569686535635],[6.727115070789237,52.13750456651581],[6.727320692708781,52.13744250636001],[6.727479713307258,52.13740575836056],[6.727674191217376,52.1373768858982],[6.72811551020581,52.13733980350524],[6.728102417609801,52.13743549676219],[6.728100429352422,52.13745003665096],[6.728079510909904,52.137562898056615],[6.728050761502743,52.13769130065039],[6.72804617934852,52.13774496330542],[6.728044134096455,52.13788357035535],[6.728055097288673,52.13801170106991],[6.728094504801088,52.137993481583564],[6.728117186284955,52.137983075010396],[6.728116248631832,52.13800778751346],[6.728113549844212,52.13809058914262],[6.728115207588775,52.138240120680976],[6.728106532483693,52.13834865394034],[6.728115071705935,52.13844860465433],[6.728101711304373,52.138559222715934],[6.728098671183981,52.13858446251347],[6.728082566750103,52.1387574146975],[6.728079448199049,52.13888655051299],[6.728088447369736,52.13895074664581],[6.728093775018247,52.138986093814935],[6.728135847321053,52.13898603779976],[6.728291792790542,52.1389824392886],[6.72836345440274,52.13897285983534],[6.72840657360814,52.13893422890449],[6.7285757789374,52.13877976021362],[6.728832969767303,52.138563955743216],[6.72884829139299,52.138550729327136],[6.729044323941936,52.13838147332516],[6.729188364161314,52.138423655377544],[6.729303351855784,52.1383221547982],[6.729657078215295,52.13801186251549],[6.729801467931196,52.1378854865918],[6.730076924692287,52.13801063184378],[6.730327426620866,52.13812542673497],[6.730537486333901,52.138223018465744],[6.730679692310789,52.138087731243964],[6.730885963065122,52.13811281508624],[6.731144817626327,52.138146369102316],[6.731307781863382,52.138125625391304],[6.731570100135355,52.138497306271006],[6.731953811314221,52.138411777358044],[6.732390954103534,52.13831780811369],[6.732692307876976,52.13825393612925],[6.732729323761649,52.138246088750094],[6.732821473058643,52.13822418250378],[6.732951278654004,52.13820840835854],[6.733053821717585,52.13819400598858],[6.733376126717931,52.138150612794156],[6.733910228341412,52.138080088786715],[6.734495624084807,52.13800100291634],[6.734916444524902,52.13794299610128],[6.735062542306975,52.13792303325834],[6.735609009526578,52.13813775305366],[6.736097810082479,52.13848844209978],[6.736840864775572,52.13927853344773],[6.737455459077102,52.13996101849169],[6.737484677374661,52.13995858942527],[6.737569159322803,52.13994783279891],[6.737756825329777,52.13993508518234],[6.737673650282487,52.14001607629575],[6.737603410280017,52.140127688666865],[6.737546208505942,52.14021538465335],[6.73749873861379,52.14028818218969],[6.73770548684381,52.14034402719621],[6.737993751387573,52.14041852506583],[6.738228716743041,52.140480805637985],[6.738357775625168,52.140515013186096],[6.738384440609854,52.14047841886319],[6.738492538968742,52.14032310789461],[6.738601456265296,52.14018714981785],[6.738642446760656,52.14013443568906],[6.738716648314017,52.140051937707284],[6.738806221746396,52.13994590094557],[6.738877034397955,52.1398672980026],[6.738969126992412,52.13976053108216],[6.739084954064757,52.1396241696959],[6.7391436107186,52.139549903844895],[6.739193153259051,52.1394877698108],[6.739261777327593,52.13942136287665],[6.739305976793454,52.13937962327325],[6.739336338764231,52.13935033935395],[6.739401568721004,52.13927366082915],[6.739492543222163,52.139166717523125],[6.739536504422949,52.1391137532485],[6.739491249192817,52.13909073002502],[6.739503794461986,52.13908047346225],[6.739591571497535,52.13912212862843],[6.739655591640462,52.1391516423853],[6.739718220920095,52.13917960797032],[6.739787515057496,52.13921635126751],[6.740026444601261,52.13931748733232],[6.740101542360711,52.139346145630554],[6.740180697626411,52.13937178194682],[6.740254397457891,52.13939335484798],[6.740330152788021,52.13941381643906],[6.740418103622805,52.13943127949271],[6.74051993459552,52.13945071356318],[6.740665461274002,52.13948072943255],[6.740866683662966,52.13952151277044],[6.741167530872907,52.13958072986545],[6.74127627669263,52.139606555989126],[6.741387628724194,52.13963256781621],[6.74149385814193,52.1396645262041],[6.741587741453666,52.13969210483406],[6.741678239824481,52.139720306564804],[6.741766259925216,52.13974964235196],[6.741864148065249,52.13978449183458],[6.741961031444647,52.13981751901736],[6.742056449139351,52.139853754074764],[6.742156302690007,52.139897506853345],[6.742251395979662,52.13993507586185],[6.742345855010145,52.13998110178631],[6.742422882040759,52.14001788052325],[6.74249290467026,52.140058290399246],[6.742561696284256,52.14009953238874],[6.742637598252404,52.140143991575925],[6.742701508831469,52.14018854363293],[6.742753473208347,52.140228423865814],[6.74281431634166,52.140283087848815],[6.742861399898939,52.14032628717657],[6.742902755899499,52.14036753879815],[6.742936606323606,52.14039592349728],[6.742992020001407,52.140466137946134],[6.743089798062541,52.140580963222654],[6.743149414078026,52.140654356339226],[6.743199491625667,52.14073260534326],[6.743282206510199,52.14083727529102],[6.743357977110897,52.14094610608309],[6.743427815575701,52.1410284604157],[6.743495788069014,52.14111430594395],[6.743608049454005,52.141240263421686],[6.743561519473998,52.14125956783082],[6.743581038691862,52.14128458451876],[6.74363165727876,52.141273862547486],[6.743697695653253,52.141351325456554],[6.743775084041594,52.14143689170526],[6.743830513134842,52.14150464259344],[6.743950137129592,52.14163723884291],[6.743996747635749,52.141685459058095],[6.744047891815204,52.14173671032447],[6.744095288169214,52.141783860750905],[6.744143900905605,52.141830170167644],[6.744202126146187,52.14187884990918],[6.744249824019641,52.14191332225211],[6.744311313014906,52.141959780038526],[6.744373277958576,52.14200122541733],[6.74444191552903,52.142045892933744],[6.744587314272974,52.142129462239836],[6.744668019370222,52.14216929841865],[6.74474295158496,52.14220666610008],[6.74482533413411,52.142240639980066],[6.744912931114343,52.14227552457529],[6.744961882986799,52.14229307380212],[6.745076146997696,52.14232902651244],[6.745157705104116,52.142352213814846],[6.745247666693288,52.14237884595436],[6.745351517517184,52.14240770912486],[6.745452662471246,52.14242926831447],[6.745775042486922,52.14250050481496],[6.745843603021207,52.1425152119264],[6.745937237918101,52.142535302137055],[6.746062443805472,52.14256301070015],[6.746191912031515,52.14259586567288],[6.746284338779885,52.142626648522736],[6.746373222356051,52.14266149923785],[6.74645754244366,52.142703854415544],[6.746539844960647,52.142747599129365],[6.746611515683931,52.14278716960176],[6.746675131664716,52.14283330501672],[6.746737864073763,52.14287920788182],[6.746801897224202,52.142930875672604],[6.746865334072277,52.142991260692206],[6.746945972867576,52.1430743603833],[6.747178181134908,52.143325775666426],[6.74724334329541,52.14339192054457],[6.747315125270987,52.143460496970135],[6.747385426203052,52.143526492603606],[6.747431896973452,52.14356706342452],[6.747482147274055,52.1436122739178],[6.747520653851954,52.14364991626503],[6.747521878614369,52.143650792050565],[6.74758236734985,52.14369396072431],[6.747628876223494,52.14372714203294],[6.747699798278362,52.14378760205269],[6.747791534926717,52.14385458161046],[6.74792027696157,52.14393102200036],[6.748166651548797,52.14408128893762],[6.7484055786522,52.14420863837393],[6.748758553290733,52.14437219072311],[6.74922767452998,52.14457698156243],[6.74958283338049,52.14472812833128],[6.749960352251633,52.14486931643811],[6.75049406533761,52.14506789043112],[6.751142365026965,52.14529423417725],[6.751720930865928,52.145475141727346],[6.752330888204812,52.14566279338151],[6.752996986471941,52.14585900542383],[6.75353470841515,52.146006326733506],[6.753918675086312,52.146128271938196],[6.753988435030492,52.14615372036717],[6.754305387756852,52.146231037384126],[6.75504037309561,52.14645412559263],[6.756130924953008,52.146777723461305],[6.757241545981774,52.14712007205552],[6.757516044756438,52.147210080930684],[6.757840080783173,52.14731633189752],[6.758124056215001,52.147429358066404],[6.758451156139502,52.14756579296994],[6.758744722436806,52.14770789360813],[6.758956214781623,52.14781433590411],[6.759115836056981,52.14792507584123],[6.759247395408537,52.148022262981854],[6.75939051380746,52.14815129854267],[6.759516729154814,52.14830987094253],[6.759598855254908,52.148463050543484],[6.759656742769915,52.14858685729747],[6.759714733933069,52.1487905126312],[6.759776241658525,52.14903009222662],[6.759853665251224,52.1492778193739],[6.759771295540702,52.14929447307523],[6.759779897759986,52.14932187946538],[6.759564064705376,52.149357300501606],[6.759527984639798,52.149464150848786],[6.759514199057865,52.14961790731398],[6.759553307659321,52.14982809276303],[6.759620567825957,52.149956788357365],[6.759704930365754,52.15002958865723],[6.759736754234485,52.150057057359334],[6.759880210432064,52.150096107948514],[6.760022489157961,52.15014674997947],[6.75983901165976,52.1501638616298],[6.759773096333027,52.15030552337067],[6.759149667291556,52.15036579572516],[6.758426770380709,52.15043568914314],[6.758806751884896,52.152391575908766],[6.75882175167304,52.152463565555884],[6.758838620325117,52.15254453150454],[6.75885754645363,52.152635379454075],[6.758868516765183,52.15268799961002],[6.759116280611194,52.15387684097514],[6.759117681946323,52.15387678871646],[6.759123651504983,52.153904108906936],[6.759102502973589,52.15400955379726],[6.759297383459697,52.15452809412553],[6.759308149188175,52.15453886359532],[6.759349474666014,52.15457344006094],[6.759439281134272,52.15464858628556],[6.759595226461631,52.15477723866169],[6.759688015709226,52.15484337891708],[6.75977822465663,52.15490639397624],[6.759959603031919,52.155001867918095],[6.760064397167226,52.15506343653834],[6.760106530497464,52.1550919357308],[6.760120530342807,52.15509903590101],[6.760274798598332,52.155122741776644],[6.760647780901861,52.155343772006425],[6.7605046116862,52.155446134647526],[6.76102935463557,52.155821383349725],[6.76109956012967,52.155871587332285],[6.761389542042806,52.15607793225366],[6.761823574637407,52.15582622333977],[6.762291143588384,52.15614355128436],[6.762515123514683,52.1562955601588],[6.762503958233995,52.15638375611501],[6.762376612832334,52.15741290545132],[6.762332595593525,52.15773829197984],[6.762292876076214,52.15781905429042],[6.762425528183602,52.15785426375507],[6.762328854613959,52.15793792846781],[6.762087890983258,52.15814940965162],[6.762728867420558,52.158298380882314],[6.762668198214112,52.15840454800489],[6.76253518260165,52.15863731559273],[6.763133773344574,52.15876703900377],[6.76321034460335,52.15878362934894],[6.763041436318225,52.1589411015071],[6.762995334159425,52.15898408561137],[6.76289242202508,52.15908208915549],[6.76245110430769,52.15950225147508],[6.761911455498239,52.16001296329804],[6.762012005574856,52.160033571693894],[6.762531830662875,52.1601414111955],[6.76299412678929,52.160237316882224],[6.763000687831642,52.16023868758265],[6.763986989304467,52.16044402979153],[6.764063219854465,52.16045989546867],[6.764675342728478,52.16058812289462],[6.764774810360802,52.16060909216953],[6.76504977759575,52.16066705963713],[6.765119546195691,52.16068048319507],[6.766154331154167,52.1608956233304],[6.766152683830262,52.160898599988776],[6.766207774318209,52.160910001193464],[6.767439318442987,52.16116473636627],[6.767491937957613,52.16117561756095],[6.767516051978125,52.16118024337063],[6.767658726219716,52.161210116100456],[6.767674275255607,52.1612142758171],[6.767746866846061,52.16122676588545],[6.768097882188529,52.16130285694962],[6.768327366313101,52.16134884558606],[6.768627752579698,52.16141031847417],[6.768689864356875,52.161425627430326],[6.768773401316377,52.161443211305745],[6.768848949358969,52.161459108877175],[6.768934456727226,52.16147659764431],[6.769077636183451,52.16150808977216],[6.769177313288818,52.16152813602686],[6.769261088997612,52.16154539315616],[6.769267252578318,52.16154666029969],[6.769753000193787,52.161649366254075],[6.769768022157738,52.161652543079555],[6.769817575493514,52.16166066359151],[6.769836993953184,52.16166515520542],[6.769967446666212,52.16169533024078],[6.770320109351348,52.161766793036044],[6.770333351940773,52.16176773440352],[6.770344664808426,52.16176300832663],[6.770518982260271,52.16162160656634],[6.77065872336149,52.16150306478899],[6.770992395609998,52.161221514267865],[6.771179390170881,52.16106155315029],[6.771417196311729,52.16086176712039],[6.771579587901481,52.16071967668915],[6.771727089191899,52.16059563107794],[6.771808073053089,52.160526732046534],[6.772117011410159,52.16026389612954],[6.772249502780094,52.16015409396917],[6.772326197260067,52.160092085614124],[6.7723549558786,52.16006883473605],[6.772495389055992,52.16011267896522],[6.772527626139169,52.160115311646024],[6.773081388774949,52.16024199676161],[6.773151245999506,52.16025633142721],[6.773248802142139,52.16027635421633],[6.773424762154931,52.16031246272858],[6.773611878247249,52.16035198153001],[6.773618087012953,52.16035329286027],[6.773823123430501,52.16039659181403],[6.773950995342321,52.160424176966295],[6.774009550187727,52.16043742150889],[6.774252837529312,52.16049245911115],[6.774276124276537,52.160497731494985],[6.774277301805714,52.16049799630729],[6.774315367099335,52.16050660959879],[6.774393323168169,52.16052425513849],[6.775633121362671,52.1608048762836],[6.776676450514571,52.16104102018234],[6.777055245424096,52.161123957673],[6.777398809414344,52.16119917412856],[6.778225350733216,52.161383754359726],[6.778513460483357,52.161448088642906],[6.778514915393723,52.16144834115205],[6.778710112914578,52.16148235416863],[6.779179701727657,52.161582713158516],[6.779350657148455,52.16161924951063],[6.779556483867583,52.16166548665891],[6.779970802848676,52.16175855764536],[6.780207965985561,52.161819678071346],[6.780216320716277,52.161821826662475],[6.780996775759357,52.162005188077984],[6.781659957109495,52.16215970970823],[6.782459234939669,52.16233789499667],[6.782670068943259,52.16238652154227],[6.782720058146547,52.16239678888025],[6.783201896587363,52.16250496935712],[6.783939180193292,52.16267049372682],[6.783946820121345,52.16267221005632],[6.784056485661718,52.16269584700027],[6.785434259073274,52.16300206764855],[6.785459870870125,52.16300775074535],[6.785874489747354,52.16309979084607],[6.786282177496108,52.16319029368575],[6.786620772995403,52.163265461549194],[6.787722397462145,52.16351001274612],[6.787831585913462,52.163539737485266],[6.787897319265562,52.163567191579986],[6.788000827613338,52.16364317852171],[6.788228451218815,52.163831771593316],[6.788340393580592,52.16378067825789],[6.788389851220638,52.16376555536598],[6.788762949275013,52.163477795423994],[6.791245071540586,52.16156003442006],[6.791203332669385,52.16151936125249],[6.79149021868866,52.16148939197215],[6.795034010567819,52.16165815413403],[6.795057871763044,52.16166115032945],[6.796639224628771,52.16171325025401],[6.796733573767455,52.161716446476376],[6.796764857511785,52.16171750186514],[6.796720516884207,52.16163397469954],[6.79670722473256,52.161610204564944],[6.800868215767893,52.156690462272955],[6.80106436925064,52.15664728223582],[6.804773329597847,52.1569060420667],[6.805255895579381,52.156189812152995],[6.80558176826016,52.15575371413693],[6.805673421250732,52.15562973042434],[6.805842294440461,52.15540131694141],[6.805870570536339,52.155363069645],[6.80591397939643,52.155304351834644],[6.805782772364925,52.15529570057491],[6.806263967238685,52.15463895462707],[6.806908502532333,52.15377224072693],[6.806908699045271,52.15377198666548],[6.807820353950069,52.15254601867146],[6.807822302077143,52.152543406332136],[6.807920768665692,52.152553492452746],[6.808979127470486,52.152670198461195],[6.809238893195054,52.15269884286943],[6.810171274736389,52.15280182970518],[6.810565526145298,52.15284538833989],[6.811149456390278,52.15290743833182],[6.811281491465365,52.15292298622258],[6.811319396162462,52.152927454523194],[6.811385465305862,52.15293524125275],[6.811386973580327,52.15293304766563],[6.811442209467349,52.15291414160464],[6.811451244349341,52.15291104809139],[6.812167939913593,52.15281374806353],[6.812773318738378,52.152727857230644],[6.812793802258192,52.15272495781066],[6.814774608002707,52.15245409038361],[6.816582072757475,52.152186396368315],[6.817357374370892,52.1520803898198],[6.817677075203417,52.15204301853756],[6.817851921440152,52.152023728150894],[6.819164417155232,52.15198216055735],[6.81992797756871,52.151959069719155],[6.819938295197114,52.15195862974281],[6.820625408088282,52.15192951455627],[6.821219236154587,52.15190930541633],[6.821587168402798,52.15189546386289],[6.822190896066218,52.151872747279086],[6.824497447498427,52.15178476184478],[6.825227140821204,52.15175661098157],[6.825965132363042,52.15173068254417],[6.826038014769831,52.151728121306796],[6.827497340070453,52.15167683963348],[6.827710916992628,52.15166783054613],[6.827725408496001,52.151667222041155],[6.827800973825538,52.15166719784075],[6.827910310342579,52.151649960243255],[6.828045088880519,52.15163272630279],[6.828046622604398,52.15163044229214],[6.828079945991841,52.1515808104303],[6.828118400010971,52.15152352900659],[6.828118617618058,52.15151578667232],[6.828132924976981,52.15151400278566],[6.828217982096692,52.15148300251133],[6.828244199988219,52.15143372710373],[6.828155030079428,52.1512984510389],[6.828125726472291,52.15127479903819],[6.828126339321923,52.15125395465286],[6.828246831992127,52.151261830991444],[6.8283514941847,52.15126866915963],[6.828447460219597,52.15129627962388],[6.828591269041604,52.151340132954935],[6.828754681904788,52.151383305993114],[6.828921436655961,52.151412306971835],[6.829046745429757,52.151424492353335],[6.829160281673648,52.15142962123116],[6.829388396477655,52.1514345982572],[6.830847565708019,52.15144708208128],[6.831342241082895,52.15144611292627],[6.831498583483826,52.151456306587626],[6.831564381835066,52.15146019302925],[6.831719451194204,52.15148251940085],[6.832115842127489,52.15154668194742],[6.832947436170421,52.15166629314825],[6.833226223258423,52.15170661619751],[6.83328281230973,52.15171310461554],[6.833297303172387,52.151715183197645],[6.833414923372159,52.15173535972799],[6.833806384451514,52.15179335657763],[6.836330854254202,52.15216732361999],[6.836338592837551,52.15216846902973],[6.836571258235712,52.152195067178944],[6.83686706918362,52.15224189634659],[6.837229642188857,52.1522979088307],[6.83727571726559,52.15230324816206],[6.837274484604249,52.152306688199026],[6.837291553537631,52.15230894134283],[6.837501005416603,52.1523366321456],[6.837526832326608,52.152342615926216],[6.837661023101411,52.152364885681706],[6.837903633852075,52.152400213236845],[6.837941976290539,52.15240683400869],[6.837963136668034,52.152410870515354],[6.837984296757159,52.152414898032575],[6.838167463829585,52.15244092442002],[6.838423888647088,52.15247994628917],[6.83864400298924,52.1525159536923],[6.839348193981749,52.15261872317395],[6.840052134517285,52.152726264821816],[6.840248122619441,52.15275370314782],[6.840305021830419,52.152758422512555],[6.8403479997023,52.15276421231787],[6.841021977683452,52.15286295744441],[6.841220632203059,52.152864553325465],[6.841231138280053,52.15286047752977],[6.841484458905512,52.15270366557679],[6.84178599404468,52.152519227847876],[6.842212465301784,52.152256102598656],[6.842249614566781,52.15223015087135],[6.842476583023674,52.15209136158687],[6.842676455787207,52.15196464617205],[6.84287205250418,52.15183948438636],[6.843004500990819,52.15175501389909],[6.843108937690547,52.15169078219275],[6.843135512623154,52.151674444330254],[6.843135742240069,52.15167431564655],[6.843191400207052,52.151641923557165],[6.84369754815058,52.1513284043287],[6.843724434043954,52.151311756855286],[6.844275657809574,52.15097276922484],[6.844339635489421,52.1509334150149],[6.844791733621994,52.15065853816334],[6.844862973613825,52.15061472514022],[6.845023752680659,52.15054824006411],[6.845358226198528,52.15033563600413],[6.845645234827928,52.150158837715956],[6.845920475498101,52.14997884029698],[6.846214646272671,52.14979508422225],[6.846553574556463,52.14958633183272],[6.846903330204533,52.14936067953539],[6.847215702121336,52.1491662590931],[6.848682353514294,52.14830131587619],[6.848844530910258,52.14820567408151],[6.848896181334032,52.14817520762905],[6.85017040246299,52.14737496166904],[6.850335394764174,52.14727133636223],[6.85038333207499,52.14686430315562],[6.850428849313701,52.14682912984627],[6.850476509004212,52.14682676753573],[6.850475729057766,52.14684041385464],[6.850866316926258,52.146863918102085],[6.850948100788249,52.146868844758764],[6.851645635199008,52.14707469337844],[6.851648647357813,52.14705204808719],[6.85245036858174,52.14730006984775],[6.852608717970793,52.147300906665045],[6.853271052803337,52.14730441339914],[6.853636778635512,52.14729996451272],[6.853722833915114,52.14730010780289],[6.853842754550369,52.14729875110429],[6.854084642566242,52.147300515478776],[6.85434020861557,52.14730364632697],[6.854659635408228,52.147305622314384],[6.854987335019461,52.14730722478104],[6.854998553695125,52.147307121088254],[6.855075163139059,52.14730795628346],[6.855292307189339,52.14730821038519],[6.855596332687488,52.147310177825894],[6.855795361323751,52.14731053973285],[6.856019465869728,52.147310948513194],[6.856141133693174,52.147311176783944],[6.856177812175546,52.14731124122369],[6.856197111870298,52.14731115360307],[6.856227036527931,52.14731068191108],[6.856322506285884,52.147309177846125],[6.856326405820075,52.1473091202716],[6.856641490429067,52.14730657846549],[6.857064694500633,52.14730861199967],[6.857366014151294,52.147311381681874],[6.857438716697899,52.1473120483121],[6.85791351329368,52.147310001612276],[6.85794828076335,52.14731282206213],[6.85801785491487,52.14732053895377],[6.858051642874927,52.14732068381213],[6.85812546733762,52.14732036518785],[6.858380251915805,52.14732016202853],[6.858601769576469,52.147322764582],[6.858612209203272,52.14732340738359],[6.858718626758606,52.147329980919444],[6.858817133431515,52.147335493480114],[6.858867850406806,52.14734031696351],[6.859018978080922,52.1473485705195],[6.859140715962071,52.14736022013327],[6.859252791346446,52.14737130706823],[6.859422388272946,52.147390170547425],[6.859590539018374,52.14741081373143],[6.859796399419901,52.14743575003143],[6.859959711200273,52.14745763970261],[6.859972304352262,52.14745933419428],[6.860237600642607,52.14749203116163],[6.860507226287026,52.14752351383055],[6.860805889038506,52.14756258847733],[6.860829071060323,52.14756457304],[6.860946967706759,52.147578012714554],[6.861166821249621,52.14760406619151],[6.861337394116103,52.14762411029906],[6.86157419692553,52.14765454462266],[6.861925975284635,52.14769754579196],[6.8621999824387,52.14773198120599],[6.862264711627328,52.147737634749795],[6.862299464701302,52.147738674233494],[6.862321012935821,52.14773675963619],[6.86239699857944,52.14774389035063],[6.862539017558666,52.14775722441524],[6.862901505454266,52.14780322593532],[6.863081715480808,52.147826104382354],[6.863678001315793,52.1478968368515],[6.863961668804515,52.147933888948515],[6.863955253623074,52.14792725433113],[6.864899317711309,52.14801965744744],[6.865286086309277,52.14807815705745],[6.865465910377728,52.14812283562514],[6.868884967713826,52.14914841119378],[6.870554887130569,52.14981805993177],[6.871952569729755,52.150371322770944],[6.872042325781285,52.15042144929186],[6.872168879603324,52.15040180525181],[6.872151484553416,52.15038012649823],[6.870871086840669,52.1482179869465],[6.871011635336965,52.14819531841031],[6.871081005446436,52.148075499706486],[6.871581053563407,52.14800162471332],[6.8717376643556,52.14797293705439],[6.871981713972611,52.147935866899324],[6.872397405716364,52.14788712381626],[6.873259047587782,52.14777863558295],[6.874345089415359,52.14764657287172],[6.875832249842956,52.14747479217743],[6.876752264886348,52.147375456464346],[6.876702652179092,52.147275511336254],[6.876632562816641,52.14697576883356],[6.876998297900256,52.14691654767334],[6.876801610032386,52.14640144886881],[6.878234835794087,52.146158934988456],[6.877846594000234,52.145091352513454],[6.877777104687619,52.144900256224176],[6.877509017550888,52.14416304630028],[6.87719080689845,52.14329063013463],[6.87693688045232,52.14259396353932],[6.876903049987874,52.14250095652855],[6.876818386630367,52.14226821532839],[6.875819074261091,52.13952076240718],[6.875804002774906,52.139479314398635],[6.874818516202584,52.136799250635846],[6.874642051938608,52.13632383214103],[6.874592767912043,52.13620078850308],[6.874278779726308,52.13541691157742],[6.873809517371369,52.13424430007627],[6.873560285641046,52.13362151045497],[6.873301133699758,52.13297388214107],[6.8730449921417,52.13197932811061],[6.87303414063963,52.13193680177509],[6.873086877960543,52.131784236251605],[6.87309175418605,52.13177011555909],[6.873071545860878,52.13166238208458],[6.873183668910837,52.13148989383714],[6.873294788482268,52.131248227644306],[6.873311146816669,52.131131457447005],[6.873342565107021,52.13104453955702],[6.873394408483555,52.13090116317926],[6.873476213216617,52.13079518197491],[6.873523910221315,52.13067733342471],[6.873532493526765,52.1306561093838],[6.87352946453632,52.13063444745342],[6.87351010837889,52.130495726225945],[6.873466882416283,52.130381055625286],[6.873458601961588,52.13028368926042],[6.873424429224817,52.13024922371907],[6.872692452194772,52.13010263882115],[6.871978562779614,52.13002413112001],[6.871895481118694,52.13000041208362],[6.871521981398473,52.12975180679035],[6.871147587534078,52.12957109861795],[6.871043023492454,52.129520636642226],[6.870994062087807,52.12946258891876],[6.870871693861598,52.12916906510249],[6.870769281357903,52.12913935902064],[6.868595970972875,52.128509026689144],[6.868279629579794,52.128417283965156],[6.868231774363449,52.128403448454584],[6.868082073368502,52.12836014911565],[6.867088382237537,52.128071317009216],[6.866721065321224,52.12780831725055],[6.866089225573313,52.12735115906116],[6.865537710236372,52.126952112643785],[6.865084789423398,52.126625836268744],[6.8629059812363,52.12505616283514],[6.862758933328085,52.12496536030019],[6.86213398229373,52.124579434007394],[6.859517917106785,52.1229638412284],[6.859189606848793,52.122761080754934],[6.857987974937669,52.122017620884414],[6.856943541546681,52.12137138809399],[6.855474030397728,52.12046209855333],[6.855270075672453,52.12044106925983],[6.855162581518928,52.12042998495371],[6.853642576730686,52.12027324720091],[6.851644311374978,52.12006743696804],[6.847900252068689,52.11968172982363],[6.847727719852414,52.119663947744776],[6.844421735994511,52.11932317592091],[6.84319864782054,52.119197079509235],[6.841102748241115,52.11909315671328],[6.840043342317593,52.11904061693187],[6.838838362548159,52.11898084448683],[6.836548640344216,52.11886722730683],[6.835404223373524,52.1188289234205],[6.834341043453764,52.11879332356534],[6.832735678273085,52.11873955485371],[6.830647292498543,52.118669576347465],[6.828076160993879,52.11858360175955],[6.827836317539659,52.11857559376794],[6.827363209022166,52.11855979258485],[6.824332245447324,52.11845849033552],[6.822710406463021,52.118404264782846],[6.820137183815326,52.118425905335364],[6.817972632123924,52.11844406650383],[6.817173503265246,52.118450762402674],[6.813875639651545,52.11847097893601],[6.812580675970048,52.118478889291374],[6.812399785581785,52.11847998909584],[6.807977310212385,52.1185067574597],[6.807904189583603,52.11850703660439],[6.805406115686187,52.11852163358926],[6.803965725007883,52.118530021497605],[6.803523850402653,52.118533183849756],[6.801588547834829,52.11854702150137],[6.796295205318565,52.11858581638803],[6.793504950073491,52.11859504743254],[6.789911667642426,52.11861144786997],[6.78860222473909,52.11861964458947],[6.787047285436048,52.11863105542709],[6.783864457596311,52.11864920254417],[6.780763032119175,52.11866746172073],[6.778019456278253,52.118684971069115],[6.777668915992003,52.118687093491396],[6.774950938727668,52.118700807381074],[6.773396911065903,52.118719175685094],[6.772875821511637,52.11872533011253],[6.772714814781595,52.11872723190384],[6.772375849732732,52.11872497762029],[6.771482911307114,52.1187190183866],[6.765789787964868,52.11875110199936],[6.763374129801931,52.11876450915892],[6.763210025700536,52.11876541835864],[6.760572413342027,52.11877991187959],[6.760366621688713,52.117346039359155],[6.760303328490017,52.11690498913024],[6.760161115303437,52.11580794321034],[6.760096056642105,52.11530598518099],[6.760043994707609,52.114904275060134],[6.759953774736104,52.11432751496648],[6.759896884281686,52.11399096011896],[6.759854785203125,52.1137746151301],[6.759764978872457,52.11323729422935],[6.759718331527629,52.11295413214539],[6.759675354477098,52.11197635653366],[6.759660788068991,52.111704677406756],[6.759668481820633,52.11140098947768],[6.759666839161516,52.11122871425797],[6.759659976489301,52.11051014142475],[6.759658714274875,52.10997908816217],[6.759619134636029,52.10962027211036],[6.759574274831857,52.10930293937117],[6.759493907239102,52.10901687973522],[6.759377854534095,52.108625110043064],[6.75938743773018,52.108455140088665],[6.75939437913374,52.10812500581586],[6.759234155819813,52.10753602562714],[6.759119411676213,52.10733262537013],[6.758944245463524,52.10699516349743],[6.758865451860642,52.10680955645851],[6.758764723658542,52.1065723194728],[6.758743204672639,52.106404419465015],[6.758565150845755,52.10529679381663],[6.758389537268906,52.10531301327625],[6.758311559377809,52.10496495396464],[6.758195271099069,52.10464664486491],[6.758126022160091,52.104436457882166],[6.758027134800426,52.10396390857171],[6.758002334979376,52.103687502907924],[6.758011099641954,52.103253271267654],[6.757929898324834,52.1022598120764],[6.757859589347949,52.10139957967322],[6.757847045158796,52.10132468437379],[6.75785154984822,52.10122884385196],[6.757851014801393,52.10094394872318],[6.75784424215972,52.10088732409872],[6.757813380079758,52.100752963063094],[6.757821528160245,52.100572699223385],[6.75779581330448,52.1003310739795],[6.757713898263193,52.09994985406703],[6.757685503841663,52.099592740671966],[6.757611297124972,52.099377613011725],[6.757626667365346,52.09928862165963],[6.757340214339388,52.09887525300568],[6.756993854905406,52.09845964069358],[6.756757860806651,52.09819931721736],[6.756554874456191,52.09798581157919],[6.756193183716513,52.09766673860359],[6.75617628092275,52.09765621995574],[6.756097356525176,52.09761027661856],[6.756052486603485,52.097585394643104],[6.755841582232788,52.097420539063805],[6.75546746345324,52.09712808125614],[6.756304890835171,52.0969294377368],[6.755647506435264,52.09621934678982],[6.755507472993287,52.09601409733033],[6.755458792336331,52.095856094433685],[6.755410726940521,52.09558563934939],[6.755357306407626,52.095422477754475],[6.755264996869516,52.09524138493284],[6.755002582261763,52.09486271728458],[6.754636337995879,52.09508435271177],[6.753814180866223,52.09557339904438],[6.753297401105351,52.09588078854988],[6.753264719375475,52.095880673080316],[6.752557296839843,52.0958781850858],[6.751494370596377,52.09587094664577],[6.751427358877877,52.095785157333395],[6.751333479320143,52.09579791219967],[6.751160139171063,52.09582339861032],[6.751156395016587,52.095824098160854],[6.751074499664436,52.095826870993704],[6.750970792531024,52.09582750513691],[6.750850458518721,52.09583042609486],[6.750731223071553,52.09582725756987],[6.750648026724217,52.095821352681895],[6.750558828509465,52.09581103161468],[6.750423801933364,52.09580022497015],[6.75034421415928,52.095787257612145],[6.750284287152439,52.095778161782135],[6.750182284974348,52.095748554082796],[6.750108329341733,52.09572930992948],[6.750040226671776,52.09570864067112],[6.749986156351629,52.095688186609905],[6.749912732924525,52.09565623455189],[6.74984506440394,52.095625384476236],[6.749803058910608,52.09560284015672],[6.749753681507006,52.09556923456748],[6.749525878623438,52.095388526731355],[6.749448771229282,52.09531708283535],[6.749345365441718,52.09523274690885],[6.749252827966439,52.095154946188366],[6.749189305569553,52.09509440169345],[6.749137768976111,52.095053126125094],[6.749070232026139,52.09500930279194],[6.749001629236252,52.09496114999527],[6.748962135094211,52.094938126898676],[6.748868875932254,52.09489695589962],[6.748782062396001,52.094859440823164],[6.748721159677452,52.09483455261275],[6.748646028784393,52.09481402670435],[6.748529664935552,52.09478189580463],[6.748402223438698,52.09474831069134],[6.748306642347234,52.0947228790602],[6.748219348717267,52.094706475572956],[6.748119439887149,52.09468605577849],[6.748016174573476,52.09466660054719],[6.747813706097065,52.094629278923236],[6.747705962457056,52.09460796944649],[6.747592466032707,52.09458657348203],[6.747477884310632,52.09457075420364],[6.747265750805256,52.09453760631418],[6.747150519698497,52.09451770416707],[6.746954718154575,52.09448887973996],[6.746858385539769,52.0944713210953],[6.746781881797172,52.094454072901556],[6.746709000391083,52.09442924099089],[6.746637128963232,52.0944097818632],[6.74658150952504,52.09438675526945],[6.746534846459889,52.09436693330982],[6.746484388337682,52.094339415486786],[6.746434374182041,52.094311137434744],[6.746370669233524,52.09426458062444],[6.746309806553745,52.094219339360336],[6.746265191421117,52.09418046371113],[6.746221908632022,52.094139325397634],[6.746192517873953,52.09410196406112],[6.746156905738027,52.09405534377478],[6.746114455971807,52.09398495421733],[6.746044547167792,52.09384135936152],[6.745973386189357,52.09370792761897],[6.745893522001197,52.09356519358624],[6.745820188746618,52.09342460449939],[6.745810538973921,52.093411061308686],[6.7457835398478,52.09337313294598],[6.745755482230491,52.09333350885061],[6.745723502381501,52.093307926031244],[6.745681095091077,52.093276341849474],[6.745623209555776,52.09323775381495],[6.745569193430372,52.09320739112736],[6.745505247428033,52.09317635185617],[6.745433383174196,52.09314695895389],[6.745383501061553,52.09313496722403],[6.74533600251252,52.093125051449604],[6.745306859578878,52.0931207759795],[6.745259454614401,52.093118742551006],[6.745183415285934,52.09311956509937],[6.74511113456803,52.09311968807238],[6.744982155722552,52.093122208330755],[6.744776403919702,52.09312350067987],[6.744619170018571,52.09312022453051],[6.744528823178701,52.093117507985234],[6.744501481398117,52.0930903612343],[6.744495852148833,52.09303810943423],[6.744513340223572,52.093005574111686],[6.745189404771872,52.09208314971981],[6.744577281132971,52.09180140148966],[6.745064167074286,52.09117057066731],[6.745339366445608,52.09034911886797],[6.74537023131204,52.09027372186668],[6.74539782669672,52.09022520406397],[6.745449179282542,52.09013489160475],[6.745496191810373,52.090067443549444],[6.745818881163892,52.08987370157986],[6.74600165378889,52.08976552199101],[6.746664816242203,52.08937201310226],[6.747288355512652,52.08905213829181],[6.748951817203935,52.08818808758957],[6.750264938669266,52.087507633842804],[6.750470708116612,52.08708045332545],[6.750754834935107,52.08646676677262],[6.750804361005941,52.0863170637515],[6.750870012191665,52.086118614731014],[6.751086981028624,52.085476840477796],[6.750923546044627,52.08503644908309],[6.7502832595564,52.08439995882888],[6.750253736749498,52.08437060932177],[6.749716043991076,52.08383608823817],[6.748941412574213,52.083053552060235],[6.748836679830063,52.082954857471485],[6.748721811046599,52.082858212611896],[6.747612152665984,52.081924908640644],[6.747142499788496,52.08173969015526],[6.745778859035928,52.081211133549445],[6.745368755410155,52.08105253923675],[6.745034446644431,52.080919291129625],[6.744028361043812,52.08033714314247],[6.743952375997533,52.08028662751102],[6.742003375145663,52.07899093036298],[6.740832474883385,52.07820794627335],[6.739783247905068,52.077512393190716],[6.737538266451174,52.07601557336334],[6.736824906446154,52.07553610738387],[6.736432428655451,52.07527230549258],[6.736288068720891,52.07517527645263],[6.735470681950277,52.07463396216283],[6.730915470594737,52.07425759729053],[6.72950007204715,52.07414598322403],[6.728222865129633,52.074044383808335],[6.72686600271375,52.073934579658896],[6.723768777296611,52.073691653700855],[6.720146061093781,52.07340489413577],[6.71800374496203,52.07323528800768],[6.71643764258667,52.07310762854444],[6.715410652583412,52.0730289370834],[6.714945691821443,52.07299599394214],[6.71455525002743,52.07296176870324],[6.713867488601683,52.07290148826462],[6.712059674022511,52.07261936387015],[6.710662668532657,52.07239969091851],[6.70788991157068,52.07197425104577],[6.705336350384868,52.0715874902372],[6.702281832489266,52.07111925487333],[6.701529796006706,52.07100160490053],[6.699778385945645,52.07072941459773],[6.696446909319055,52.07021455837721],[6.695973111660909,52.070142284750496],[6.695511667717017,52.07002404571588],[6.694662883098846,52.06980044796301],[6.695389115011706,52.068676578995714],[6.695460797202436,52.06860050824283],[6.69548972931099,52.06857585342665],[6.695535154182965,52.06855256150294],[6.695620298008017,52.06851885042247],[6.69646557833139,52.068294006249864],[6.696867774797173,52.06734372175463],[6.69675448627854,52.06699936955748],[6.696564898559539,52.066423138394775],[6.696150620826639,52.0651137743983],[6.696097992994591,52.064969518334145],[6.695887548155697,52.06430191914213],[6.695873896778617,52.064265017866234],[6.69585932134884,52.06423990255055],[6.69584017169865,52.0642219484257],[6.695807120648123,52.06420092169568],[6.695763734359813,52.064184558275116],[6.695731191252331,52.064176407229525],[6.695687291896824,52.06417241845425],[6.695646868622451,52.0641715911521],[6.695609616310602,52.064174962460704],[6.695316218211353,52.06421879862458],[6.695248507210064,52.06419851630446],[6.694526612098811,52.063194695055785],[6.694043343595389,52.06251696111262],[6.693656915386415,52.06198519422627],[6.692670297370161,52.060604923435896],[6.69241137762396,52.06023225686955],[6.691790756274679,52.059373908515944],[6.69172892277652,52.0592593086153],[6.69170355729404,52.05914957228461],[6.691499732801733,52.059145573740594],[6.690736484827384,52.05807706193306],[6.690553720510934,52.05782118836535],[6.690122978472428,52.05722403764602],[6.689942452310034,52.05697167109272],[6.689570706276883,52.05645302350055],[6.687385853983071,52.05639458650033],[6.687082836602368,52.05611634925732],[6.686954654257403,52.05581487734474],[6.686806856547914,52.05551876354725],[6.686794594241049,52.055266755286645],[6.686791095601897,52.055117170714766],[6.68682707130644,52.05468299671162],[6.686853119361194,52.0544231315933],[6.686842689794762,52.05439638734812],[6.686795267968609,52.05427476717882],[6.6867919014843,52.054273824526724],[6.686799774277047,52.054227596691874],[6.686983614941489,52.05314830714089],[6.68674482207545,52.05254573519611],[6.686742572519941,52.05254006993717],[6.68819947844675,52.05234959236963],[6.688136762352426,52.0499379026837],[6.688115421799806,52.049116967429356],[6.688088196087539,52.048069949613],[6.688071317497226,52.04748522507326],[6.688055037558811,52.04692158227387],[6.687981737414869,52.04438184110486],[6.68798096913668,52.044355403680434],[6.687966171682815,52.04393649562476],[6.687939691603745,52.04306687755639],[6.687936769619661,52.0429713377801],[6.687907013116655,52.041993931575576],[6.687905828144372,52.041955156716114],[6.68790374837993,52.041872542928814],[6.687872798671739,52.04013055499979],[6.68786789676639,52.03985447301958],[6.687918254214055,52.03985531890471],[6.688075515281557,52.03985864200506],[6.688118452462268,52.039858958545814],[6.688154260335767,52.039859228013434],[6.688547066557176,52.03986213146904],[6.689253307839339,52.03986837192299],[6.689933467651507,52.03987095955165],[6.690891253869469,52.03988058167352],[6.691712042304984,52.03988694104447],[6.692626006840642,52.03989337610452],[6.69353423332941,52.039898474435894],[6.694476708392031,52.03990683500781],[6.695374723775624,52.03991314719031],[6.695957200940996,52.03991650685556],[6.696703540791347,52.03992309280394],[6.697860163228428,52.03993297214152],[6.698951221125197,52.03994385839072],[6.700030783415335,52.03995092550295],[6.700950835310227,52.03995554710001],[6.701714563822526,52.039964999486855],[6.702336370815368,52.039969857025824],[6.703090782867463,52.039975745999016],[6.704040402275904,52.03998647611689],[6.704254033408911,52.03998633342772],[6.704727874747459,52.039989741468496],[6.704865919990055,52.039998309110004],[6.705469103050934,52.04000082364038],[6.705870118437002,52.040006166252596],[6.706388302478404,52.04000710225846],[6.707008363841611,52.040010543398864],[6.707712853815816,52.04001894007179],[6.708350043438374,52.04002387196432],[6.709012539990849,52.04002935223743],[6.709822570472045,52.04003345889937],[6.710661925333877,52.04004284851655],[6.711480913293408,52.04004964767513],[6.711995077772406,52.0400531301737],[6.712255225838127,52.04005502933797],[6.712258608365588,52.04005505418733],[6.712570529496331,52.04005733170967],[6.713449657774455,52.04006399737307],[6.713579715043833,52.04006413209216],[6.714134317273384,52.04006471355439],[6.714293342034732,52.040020222469835],[6.714810846762809,52.03986746868133],[6.714942523309184,52.039828346024514],[6.715401460209121,52.03969198118065],[6.715962574021364,52.03952019459569],[6.71651258844648,52.03935863443773],[6.717032365024624,52.039204352896],[6.717238653607248,52.039143125390595],[6.718057320902721,52.038893970254165],[6.718064243984244,52.038891986284014],[6.718214266437149,52.038848939982174],[6.718561089398492,52.038755126425485],[6.719445621882018,52.03849257780078],[6.720330121080338,52.038229744151394],[6.721217848963946,52.03796799081873],[6.721911118652516,52.037761813369244],[6.722423081744763,52.037608243511194],[6.722906663373675,52.03746595123207],[6.723240883056769,52.03736272023256],[6.723316651133413,52.037337418714536],[6.723469403133183,52.0372914221552],[6.723494943711651,52.03728373413784],[6.723535652540898,52.037271478218464],[6.723622053894672,52.03724546250088],[6.724205522756789,52.037069732668826],[6.724854442519857,52.036873866526854],[6.725476330426533,52.03668813823414],[6.726243386397014,52.036452717214864],[6.7268613847819,52.036266468419754],[6.727392946816642,52.03610703535738],[6.72792763969252,52.03594617087939],[6.728201266558012,52.03586013782897],[6.728241928041995,52.035847359426725],[6.72829573923569,52.03583126700538],[6.72886017025009,52.035662499522275],[6.729496645011904,52.03547096519724],[6.730189267850013,52.03526080843191],[6.730445285726229,52.03518324103603],[6.730827064632448,52.03506756176355],[6.731334806869433,52.03491231980624],[6.731825088319223,52.03476738791357],[6.732419624515277,52.03458277985291],[6.732579395723887,52.03453429097524],[6.732599486188696,52.03452819140881],[6.732712308458499,52.03449319237281],[6.73291548599569,52.034434129977114],[6.733300100264715,52.0343196147035],[6.73402684387359,52.03410145795781],[6.735032641721763,52.03379610666446],[6.736151375886751,52.03345968023005],[6.737145668573336,52.033158946059565],[6.737854654607307,52.032945202912444],[6.738120132599649,52.03286516385337],[6.739095402918842,52.03257629926987],[6.739344595863536,52.032502494178004],[6.740458391582302,52.032171143876695],[6.741371766185301,52.03189966471591],[6.742460186711308,52.031573081745094],[6.742475988043362,52.03156836924606],[6.743059640068775,52.03139435834579],[6.743498087488662,52.031263637824594],[6.744585942616924,52.03093479413404],[6.744975472617718,52.03081708220869],[6.745185104057446,52.03075372593116],[6.745846184898677,52.030553943508146],[6.746079276594311,52.030483833587176],[6.746577532926163,52.03033396505568],[6.746980667678746,52.03020964400888],[6.747827649914882,52.029950962551254],[6.748436149301675,52.02976583233893],[6.749979217056959,52.02930525718863],[6.75072601033582,52.02907933863695],[6.750915797535892,52.029021919042115],[6.752977324157368,52.02840557129192],[6.754340680784616,52.02765544006923],[6.754440767119968,52.02760009039121],[6.755675893163231,52.02691712606185],[6.755845716958294,52.02682638271229],[6.756397349582143,52.026525317638026],[6.756493066973429,52.02647308231792],[6.757849438654178,52.02573278881485],[6.759162116698448,52.02502082825769],[6.760530303088398,52.024271402987516],[6.761855609991157,52.02354353300375],[6.762992357573124,52.02291925980123],[6.764088356207449,52.02231090458017],[6.764743238175795,52.02127763069788],[6.76475149265598,52.021264607537255],[6.765406562079724,52.02021615350995],[6.766056996815779,52.019180945952336],[6.766307214419894,52.01878220808355],[6.766728639412097,52.018724177956365],[6.767507750769297,52.018601273863304],[6.768287506484367,52.01848002901451],[6.768310475044106,52.01847646038997],[6.768320219196499,52.01847494370367],[6.768328556959943,52.018473650275695],[6.768410251731042,52.01846095145776],[6.768412337351113,52.01846149330128],[6.768765257321991,52.01841552341798],[6.768796732750747,52.01841142333965],[6.76887579232953,52.01839926752288],[6.768887697688892,52.018397437757606],[6.769182850527257,52.018352036995445],[6.769962119135857,52.0182327553426],[6.770124735584477,52.018207858860656],[6.770802076517589,52.01810389153717],[6.771068090643138,52.01806335021302],[6.77107039638825,52.018062999484044],[6.771187945092222,52.01804509478966],[6.77120602831538,52.0180423381504],[6.771450434918939,52.01800509744311],[6.772149617519489,52.01789431220643],[6.772155935097222,52.01789083092265],[6.772539012437112,52.017679703531826],[6.773300812967167,52.017259276063776],[6.773916670497257,52.01691877009118],[6.774217666155399,52.01675245397788],[6.77477586195041,52.016444004556924],[6.775414716450022,52.01609221647367],[6.775782864718174,52.01589254486369],[6.775928805278723,52.01581227434934],[6.776101102462862,52.01571749849826],[6.776247688672666,52.01563130501483],[6.776545446701072,52.01548563339707],[6.776884297952709,52.01531589684],[6.777124242156461,52.01519367631437],[6.777323731031687,52.01509644697452],[6.777503635863551,52.015005228784254],[6.77770818663177,52.01491014134129],[6.777861134772206,52.01483618592033],[6.77821013874773,52.014661552153115],[6.778667312439616,52.014429724930395],[6.779145006971983,52.01419175617113],[6.779438025244815,52.014046996086954],[6.77964320705787,52.013943420839475],[6.779723544151718,52.01390287235086],[6.779967734130539,52.013783687943025],[6.780279973115058,52.0136280189364],[6.780591466632773,52.013472807371706],[6.780597606748543,52.01346975021977],[6.780979635199063,52.01327420340754],[6.781293902839856,52.01311794128625],[6.781649867107404,52.0129412459355],[6.782010610652108,52.01276607494134],[6.782060222319862,52.012741988841555],[6.782528694818364,52.01250888862488],[6.782896217406156,52.01232334172378],[6.783198849425994,52.012173711655784],[6.783368327648432,52.01208991626066],[6.783411082029007,52.01206834704012],[6.783785141405082,52.011879627409115],[6.78382324498078,52.01186028864448],[6.783997584878793,52.01177176917198],[6.784104666519806,52.01171739821104],[6.784532702925143,52.011501903446494],[6.784651256171772,52.01144219094182],[6.784678979673393,52.011428224919584],[6.784774341509672,52.01138020412849],[6.784781268797037,52.01137671490607],[6.784791925061499,52.011371347575306],[6.784901126351401,52.01131633942171],[6.785353985363687,52.01108707177588],[6.785526627847666,52.01099990056368],[6.785536552207183,52.010994892444266],[6.785701535394944,52.01091157850789],[6.786140227745331,52.010695402742435],[6.786615329349318,52.01045715503344],[6.786805391734888,52.010360731477945],[6.78703097342255,52.01024629298011],[6.787414691582278,52.01005576559857],[6.787851051552479,52.009838199726836],[6.788180402119461,52.00967247121932],[6.78825932263002,52.00963276063397],[6.788634087313428,52.00944738777474],[6.788646417122658,52.00944106526502],[6.78886236056867,52.00933034267476],[6.788860947631584,52.00932891335292],[6.788963318589654,52.009278494205255],[6.790059125229019,52.00873874163616],[6.791536791392675,52.00799943434338],[6.793183289246719,52.007175604672014],[6.79370864445824,52.00691606060776],[6.794325763256498,52.00661117129343],[6.795413445664574,52.0060691275166],[6.796461406405528,52.00554686727068],[6.796917488321022,52.00531956491566],[6.79740904422795,52.005074576052564],[6.798602368416637,52.004479816807],[6.799310921590904,52.004126906429505],[6.799897430332562,52.00383476879331],[6.801856930482575,52.00285869586301],[6.802024198771167,52.002775375909955],[6.802669376538607,52.00245398638794],[6.802884921271399,52.00234661317953],[6.807142049972943,52.00022811921564],[6.807330010028736,52.00013426695134],[6.808612302780385,51.999493940121695],[6.810071196031902,51.99876539004065],[6.810559470910554,51.99852153512313],[6.811410595959849,51.998096474189516],[6.809602635057256,51.99652013175624],[6.807798755844116,51.99496744485091],[6.809431625789172,51.99484172959103],[6.81083387562236,51.99473375914001],[6.8116214678986,51.99467311125442],[6.813216805507622,51.99454419301464],[6.81336999857534,51.99453180925946],[6.814012255644818,51.99447990098779],[6.814034943156885,51.99447806164896],[6.817832651965927,51.99417020090075],[6.821460099548164,51.99387699519222],[6.821509728536582,51.99387295611805],[6.822527519930389,51.99379010966328],[6.822643020211287,51.99378267738805],[6.822730066807803,51.9937770754911],[6.825808041001992,51.99357887709424],[6.826429669008251,51.993538839276916],[6.826545662001265,51.99353137016218],[6.826607494812688,51.99352738635663],[6.826864568490078,51.99296510048537],[6.827001612574774,51.99266533503273],[6.827034464035922,51.99259347627522],[6.827242710958722,51.992137969732966],[6.827398015478081,51.99179824708534],[6.827529754071053,51.99151007925391],[6.827548678759325,51.991468685103364],[6.827642484081267,51.99126345926778],[6.827741826526727,51.99104614671622],[6.828085735664909,51.99029382821689],[6.828251965478695,51.98993018447469],[6.828321876424494,51.98977723639898],[6.828488223759174,51.98948349235301],[6.828562034163777,51.98935314960384],[6.828567573180114,51.98934337318173],[6.828581681650677,51.989318443500196],[6.829354949537569,51.98795289659884],[6.830351844616896,51.98619227583619],[6.830275344241066,51.98552080721582],[6.830272474853831,51.98548729397249],[6.830203981032541,51.984686333554336],[6.830191114391647,51.98453579305903],[6.83007201634833,51.98314299764556],[6.829973263091947,51.98212664440048],[6.829968841989698,51.9820810863904],[6.829881719364384,51.981079027263114],[6.829763969997559,51.980219915653365],[6.829599537349218,51.97942996562532],[6.829629008181781,51.97938854054556],[6.829659287109288,51.97934599085936],[6.829806142166468,51.97872967348943],[6.829811837245058,51.978688593940504],[6.829887769157025,51.97814021636038],[6.829894858238476,51.978089078529685],[6.829900328720942,51.978049619820666],[6.830036995063042,51.97706389022137],[6.830152695735149,51.97667812827642],[6.830233926306994,51.97640731429423],[6.830256790551759,51.97638457817252],[6.830289726116741,51.9763518390921],[6.83032562327819,51.97631614209867],[6.830928931132353,51.97571632550033],[6.830985265363351,51.97566032200097],[6.831111219441111,51.97553509016808],[6.831247003324573,51.975400073862836],[6.832307847310975,51.974345294431444],[6.832377087034331,51.97412705238668],[6.832401440451577,51.974050316051766],[6.832673201431727,51.97319378988728],[6.832689704909495,51.97314178098326],[6.832724772964499,51.97303126544579],[6.832745200189064,51.972966874810936],[6.832754330048013,51.97293808632127],[6.832779989021017,51.9723251687045],[6.832781732927637,51.97228353522653],[6.832784823838059,51.97220963113852],[6.832800478512567,51.971835937131885],[6.832800828429494,51.97182737489877],[6.832801702827627,51.97180663453807],[6.832776382086572,51.971674450700725],[6.832639894212776,51.970961918777085],[6.832562062501598,51.97055557364609],[6.832552700433236,51.97050667837757],[6.832457112323243,51.97015493744467],[6.832427043776802,51.97004427862137],[6.831454798615928,51.96856812386282],[6.831398137424463,51.96848212578585],[6.830676051429226,51.9673861381769],[6.830130272076975,51.96655771050282],[6.830126783889882,51.9665524225799],[6.830085320991805,51.966489493021925],[6.829641939892096,51.965810343449576],[6.829371166620144,51.96539557575254],[6.828965471914192,51.96477411404952],[6.828528969465186,51.964105438635684],[6.828499649426091,51.964105528375576],[6.827926897060648,51.96410727125841],[6.827750933160253,51.96410780922204],[6.825838318921154,51.96411359895582],[6.822022793821548,51.96412506555079],[6.821768327345549,51.964125824387956],[6.821735621676042,51.96412379629028],[6.815767896549452,51.96375306319466],[6.813837374190497,51.96363306875149],[6.812469932547783,51.961844878155716],[6.812461051247717,51.96183327262918],[6.805696308467502,51.960295015270916],[6.801700468083289,51.959390732570924],[6.80166526340266,51.95938267913552],[6.801631817753924,51.959375036017676],[6.798872854473928,51.95874404266266],[6.798731281648572,51.957949462982285],[6.798392954234868,51.95605044506174],[6.798209173132299,51.955018826743455],[6.798191964115039,51.9549221996276],[6.797757833618535,51.95248517281305],[6.797560372262842,51.951375123146086],[6.797534681524128,51.95123071119264],[6.797211225273088,51.94941231619466],[6.79720581961976,51.94938194295723],[6.797134194648425,51.94897924133516],[6.796867744473103,51.94748117254434],[6.796382147007626,51.94475065057697],[6.796244315950513,51.94397553824692],[6.796944651345313,51.9430047716552],[6.79700485282719,51.9429213381263],[6.797270910630204,51.94255252074704],[6.796605802469912,51.94109823743245],[6.796521409755313,51.94091369918596],[6.796515459605314,51.94090068196598],[6.796104578222048,51.94000219128337],[6.796048860531014,51.93988035162872],[6.795925838655927,51.93961131717677],[6.795130657099778,51.9378371776253],[6.795074611025916,51.93771211425653],[6.794797436923185,51.93709367326531],[6.794719970673196,51.93692083589968],[6.794695170175349,51.93686549750342],[6.794629134931028,51.93671815196616],[6.794522817625186,51.93648086436359],[6.794253300230996,51.935879329387035],[6.794228437675837,51.935823829827896],[6.794165156722006,51.93568259981127],[6.793990841424434,51.9352935126812],[6.793837957533904,51.93521522909264],[6.792291795320822,51.9344234473663],[6.791259834029552,51.93389496071172],[6.790042320931484,51.93327142394695],[6.787760243410626,51.9321025950509],[6.787633050174302,51.932037445493556],[6.78597726677686,51.93118932039427],[6.786087363524987,51.93113245541625],[6.78894476035835,51.929656596809004],[6.787801394457934,51.9288423779812],[6.787211454261956,51.92842224961152],[6.784641560390398,51.92659196191977],[6.784615166698589,51.92657315535114],[6.783257800411984,51.92560635297494],[6.782682810327019,51.925196785081084],[6.782154045283026,51.92482071751691],[6.781704266253437,51.924500828886096],[6.778712948531278,51.92237316468457],[6.778515837723186,51.922232954038606],[6.77754393407069,51.92154159580296],[6.777329660619126,51.921389162955236],[6.777107450909569,51.921231097363204],[6.776236197223945,51.92061129804102],[6.775783232017432,51.92028905173153],[6.775181404370959,51.91986089640634],[6.775174700552276,51.91985613031762],[6.775062636544806,51.91977639674956],[6.77331284604848,51.91853138253348],[6.771843587247634,51.917485909580435],[6.771839039158468,51.91748267306425],[6.770035830918379,51.91619888513824],[6.769600349211988,51.91618446700442],[6.768065710449045,51.916133655239],[6.767615634825333,51.91611874505879],[6.766478747652439,51.91608107353041],[6.765993298764994,51.91606499027946],[6.763568756623082,51.91540921024089],[6.763493371345145,51.915388815504684],[6.763459262940729,51.91536678656571],[6.762447592904384,51.91471337433635],[6.761650157682048,51.914424079094054],[6.761223424311099,51.914313368394744],[6.760481788876288,51.914120956404574],[6.759494109318744,51.913984172606725],[6.757873269856534,51.91386743525374],[6.756918508026275,51.913798663934706],[6.755935158978112,51.913598245053485],[6.75570847548615,51.91351144159556],[6.755151704943998,51.91329822572028],[6.754625324512692,51.91309139555041],[6.75458366279263,51.91305882656415],[6.754026463141573,51.91262327648801],[6.754176302298626,51.9123502340962],[6.754035837080864,51.91203786990852],[6.754083984805288,51.91193393202729],[6.754134206657469,51.910469519340054],[6.754399125176172,51.91006658948553],[6.753737938103344,51.90962184765064],[6.753443452346607,51.90937937771815],[6.753131230186976,51.90912230780679],[6.75276567347179,51.90882131476195],[6.752654913076338,51.90873011062761],[6.752487172129233,51.90867981402189],[6.75205690865935,51.90855080026009],[6.751949329705298,51.90834987926089],[6.75175195623676,51.90798127982585],[6.751701168121763,51.907924580530725],[6.751400093208078,51.90767976399789],[6.751392226468087,51.90765138603194],[6.751264366390742,51.907239872346835],[6.751187592681637,51.90722336937775],[6.750796911512525,51.90713328291609],[6.750438723988437,51.907050692773346],[6.750111946469171,51.90697534213556],[6.749482134172088,51.90683011601563],[6.748509220238169,51.90660576539102],[6.748367157184138,51.90656887419794],[6.748192325278811,51.906523472012076],[6.748060868339312,51.90648933416781],[6.747578138455027,51.90636396841463],[6.747418432119377,51.90616761137527],[6.746883582029728,51.90605107157078],[6.745541805755124,51.90572203244599],[6.744479231410486,51.90559515928686],[6.743745804781399,51.905534592976],[6.742383546843531,51.905392553362994],[6.741377322926295,51.90536514355979],[6.740504775926738,51.905269214533945],[6.739893866515038,51.90517943563978],[6.739311933454439,51.905062441907376],[6.738653823910123,51.90487205173997],[6.738472767960021,51.90481967714761],[6.738019341531479,51.90472681839113],[6.737785346906569,51.90467889894407],[6.73713914109048,51.9046812029723],[6.737132544381344,51.90468124473864],[6.736471420046836,51.903815793297596],[6.735302816446699,51.90228625240523],[6.735190446870547,51.902139172835376],[6.732557897876392,51.89878607964681],[6.732497876093571,51.89872265510864],[6.732451587034663,51.89870004669634],[6.732410124024552,51.898687693773965],[6.731507985546926,51.89847719006645],[6.730416300109854,51.89819124228233],[6.730398601534366,51.89818686011499],[6.728050310210485,51.89760576900661],[6.72742092684834,51.89745001150358],[6.726700131169642,51.89727162427089],[6.725312454933659,51.89692819186513],[6.724076843912973,51.89662237677876],[6.723960922934323,51.896591622209705],[6.722880457145505,51.89630499194641],[6.721969583570823,51.896063339984764],[6.721550415597313,51.89628341526712],[6.721395626880913,51.89636469329912],[6.720609773086747,51.89678670414772],[6.719833669863491,51.89720334920345],[6.718967687142174,51.897692293480524],[6.717750238117128,51.89838762572697],[6.717411491854079,51.898573055852495],[6.717130305089356,51.89872527394034],[6.716856959446688,51.89888031511348],[6.716113342629037,51.89929031958399],[6.71572316132164,51.899500957363124],[6.715474565248996,51.899640685156584],[6.715242448615287,51.89976771295769],[6.714977644148841,51.899916189747316],[6.714719100051752,51.90006020838332],[6.714441074638565,51.90021676192761],[6.714106846547939,51.900423750513276],[6.714026328786174,51.90048531096926],[6.713929096220435,51.900538385475905],[6.712679284345695,51.90122066212179],[6.711497301141753,51.90184580644553],[6.710595776124328,51.902355224047945],[6.709662163536247,51.902875189667675],[6.709531340845201,51.9029427248415],[6.709325078565996,51.90304920566795],[6.708457971153329,51.90349666027505],[6.7076895682852,51.903912534049546],[6.707535826980487,51.90399656824505],[6.705524408789183,51.90509599626007],[6.705241580233932,51.905257408592206],[6.704345884338775,51.90577257253568],[6.70407633236262,51.90592759454816],[6.703221081258662,51.90639547104837],[6.703416970460262,51.90738479509925],[6.703540017781656,51.90794171418471],[6.703597898690943,51.90822924423382],[6.703602456368618,51.908251864148745],[6.703612015831022,51.90829936430223],[6.703639162696302,51.90843423203463],[6.703697069777878,51.908760316792566],[6.703707494793758,51.90881899890129],[6.703709723897597,51.908831585892614],[6.7037211978056,51.90889183836011],[6.703802636292195,51.909407899652365],[6.703515946080596,51.90955967828572],[6.7033927181143,51.90966269185329],[6.703327188745128,51.90970557677867],[6.70328876729559,51.90972419254368],[6.70324575830561,51.90974150230558],[6.703194610812398,51.90975685366244],[6.703134981272061,51.909768938016065],[6.70308097078281,51.909773381431116],[6.703016750904009,51.90978307205515],[6.702951811326821,51.90979101779363],[6.702876974650685,51.909797006801824],[6.702813097856056,51.9098045180643],[6.702743548732766,51.90980941400484],[6.702722445646405,51.90980944356651],[6.702297605189944,51.9097990172788],[6.702058098432041,51.90981460679001],[6.701806649462482,51.90977870398731],[6.701440097585699,51.90973117976643],[6.701237212402132,51.909572127608854],[6.700952394381662,51.9094656168523],[6.700361535506226,51.90923992191618],[6.699824162056812,51.9090587975841],[6.699358773737955,51.90919950111041],[6.698759125856099,51.90938688189363],[6.697667291941172,51.90987012263027],[6.697181411368873,51.91136903798778],[6.696276614910462,51.91346254933535],[6.695994965105228,51.914191831599695],[6.695809667026467,51.91467161244337],[6.69566399611282,51.915048761603956],[6.695846149405875,51.91516011446416],[6.695659990005474,51.91566092147069],[6.695346227965868,51.91586823804244],[6.694941366642063,51.91569710386541],[6.694449238362878,51.91547869393917],[6.693794072538241,51.915188131572236],[6.692815935685309,51.914757875281516],[6.692737206265509,51.9147187659141],[6.692650170970177,51.9147169733303],[6.692038438677526,51.9147750077719],[6.691421877987507,51.91481898846305],[6.690809914077694,51.91486963887228],[6.690354031836574,51.91490458563844],[6.690218610463445,51.91491748601913],[6.690215166533709,51.91491752421473],[6.690179307014491,51.914928079780346],[6.690152257201045,51.914947688701425],[6.690125237771818,51.91496132841022],[6.690114881020849,51.9149696055137],[6.690086534707323,51.91497608649848],[6.69005684058944,51.91497819566361],[6.690043025565327,51.91497749488234],[6.690025222874367,51.91497813277254],[6.690010398694112,51.91498173105522],[6.689990524088009,51.91499413188925],[6.689971683939753,51.915018647761066],[6.689951007756313,51.915053036217365],[6.689935000373386,51.915086015522526],[6.689928059248875,51.91510330692024],[6.689864359074021,51.91510470539691],[6.689833431999294,51.91509988846676],[6.689813241955475,51.91508035392719],[6.689793096014836,51.915049303653426],[6.689763071753181,51.91500141814114],[6.689719214483038,51.914969758777765],[6.689684698878681,51.914951965145164],[6.689635237638175,51.91495614513108],[6.689599776473104,51.914977941666216],[6.689584585161647,51.915017518981465],[6.689579865977577,51.915051793405866],[6.689567662889709,51.91510770703437],[6.689408801034443,51.91517501761046],[6.689250089993046,51.91515675754157],[6.689199752523534,51.9151693340312],[6.689118223625723,51.915198571649185],[6.689070512519399,51.91520998633259],[6.689030594516298,51.91521192985904],[6.688970097581892,51.91522154449489],[6.68889397903587,51.91524487000113],[6.688845462912038,51.9152676379551],[6.688792377007062,51.9152977468033],[6.688723883794801,51.91533692567404],[6.688580400597149,51.91532649644419],[6.688578643328113,51.915326551865924],[6.688526437800247,51.91532282426408],[6.68838785485551,51.91536113421195],[6.688183351397501,51.915411536391694],[6.688180449697703,51.915410723532894],[6.688059336543766,51.915449963296545],[6.68796582800499,51.915465624128906],[6.687903996012659,51.91547282589287],[6.687904060716157,51.91547405670469],[6.687843932454974,51.91548387342717],[6.687784903563301,51.91548898555699],[6.687553477342281,51.91553234043689],[6.68715361485367,51.91560869742257],[6.686460121674056,51.915735431202286],[6.686162242696981,51.91580727698917],[6.685745429695872,51.915918461126395],[6.685625051582441,51.915947541361504],[6.685533840155238,51.91597032131202],[6.685455494749325,51.91598409561983],[6.685366784718086,51.915992833555215],[6.685271214892412,51.91600111684754],[6.685158841102697,51.916004371938214],[6.685038155960666,51.916011269486596],[6.684905097030571,51.916021072272905],[6.684766513644544,51.91603035161958],[6.68462442467916,51.91604609682842],[6.684388804049559,51.91607376954619],[6.68426936124152,51.916090981234504],[6.684248674201728,51.9160969627349],[6.684245295894953,51.91627954472891],[6.684493357818362,51.91681058761396],[6.684498613451964,51.916925645912436],[6.684498850356406,51.916933850481385],[6.684506542389022,51.916970675406404],[6.684521808427363,51.91704023644947],[6.684605041852005,51.9171664613123],[6.684701425251058,51.91728844180111],[6.684742161540397,51.9173208026896],[6.684736363816786,51.917349578380055],[6.684683899119033,51.9173706712357],[6.684585151208316,51.91739636525963],[6.684454202607679,51.91745523448599],[6.684273218280794,51.917539798879105],[6.684255932833155,51.91755889409247],[6.684224580838396,51.917590756503174],[6.684092764663331,51.91758485837337],[6.683993991228215,51.917576455958],[6.680871849530889,51.917007444447016],[6.679403653182184,51.916739837880826],[6.67478943407471,51.9159377771323],[6.672992693008958,51.915324360502225],[6.671457613201286,51.91480025034577],[6.670510072539187,51.91447296861116],[6.669507787495947,51.91412676123076],[6.669302989105213,51.914057316217075],[6.668733473314511,51.91386339366514],[6.668456676081969,51.913716750975134],[6.668094765725239,51.91352949640582],[6.667739380549535,51.913368103541224],[6.666840375196638,51.913012307060335],[6.665722065792961,51.912565708272666],[6.6644851854025,51.912106257101236],[6.663422803313095,51.91170499954625],[6.663318154872437,51.91166620618207],[6.662054422211305,51.91119298025105],[6.661942648412291,51.91116064534591],[6.661389446912017,51.91099064667765],[6.660686471871439,51.91077659484611],[6.659933229956544,51.91055078618487],[6.657607015227437,51.909843649025085],[6.657493918219019,51.90981002979328],[6.656748507363321,51.90958604893227],[6.654632075125149,51.90894021191981],[6.65351227842264,51.90860201419562],[6.652719177120828,51.90836248534368],[6.651790990945729,51.908078452582124],[6.651545249112242,51.90800540852594],[6.651253062412883,51.90791855290412],[6.650876131047434,51.907806881075295],[6.648940934997682,51.90723123020256],[6.648784076462664,51.90718777106008],[6.648623636468729,51.9071477031418],[6.648479242257459,51.90711646092412],[6.647189300580249,51.90679399045904],[6.64475896466354,51.90619593028487],[6.644650396002167,51.90616920797932],[6.643070115570653,51.90578029568269],[6.642186719199112,51.90556287624122],[6.637717137745231,51.904454675141004],[6.637680823467908,51.904426035614335],[6.637190129586056,51.903949338506706],[6.63594825935489,51.90273134212749],[6.635396742092061,51.90219755568907],[6.635311573123496,51.9021149330981],[6.634181677532422,51.901013055589274],[6.634173806597779,51.90100538147388],[6.632804884924171,51.90097051926982],[6.631588855372203,51.90094372083339],[6.62769553144207,51.900857525205346],[6.62599503583634,51.901633259371735],[6.625310003041747,51.90194188002867],[6.624826242844075,51.90182679271307],[6.623980177367718,51.9016370162249],[6.623452170481468,51.90151857775246],[6.622935966468327,51.901402799401936],[6.622292509920189,51.90125834204209],[6.621981990510929,51.90118862355601],[6.621009483515598,51.900970274923615],[6.620218543501195,51.90079602807784],[6.619302371707432,51.9005880947756],[6.618206634654026,51.90034680782623],[6.616691633416446,51.90002221967782],[6.614198639895692,51.89946299451138],[6.612317892185764,51.89903675451557],[6.609991492652733,51.898522123070336],[6.609855181744375,51.89849113612816],[6.609261354197648,51.898356114242745],[6.608374922775667,51.89816141451285],[6.607294235118498,51.89792038247134],[6.607161642894822,51.897890288671874],[6.604422796500935,51.897282882874585],[6.604321400373154,51.897258548254136],[6.603990208241364,51.897202444565714],[6.603945453788508,51.89719486290211],[6.603534909686092,51.89712463996094],[6.602441363694783,51.896944607251946],[6.601694765531457,51.89682240032362],[6.598758807589291,51.89631376842628],[6.598090441480509,51.8961947049251],[6.597204543164596,51.896022307965474],[6.59676941775643,51.89592492483336],[6.596298560124195,51.89582570560506],[6.595749306932914,51.89571798742805],[6.593519165438955,51.8953380383293],[6.593068741699354,51.895258561248056],[6.592831793179181,51.895216749189565],[6.591458536125531,51.89497937534357],[6.59001776200561,51.894734946343476],[6.589405966907934,51.894628558299246],[6.589246340767133,51.89461684322659],[6.587903065025582,51.89441151804974],[6.586834498969546,51.894243607391964],[6.585780027388938,51.89408197945044],[6.585623732930511,51.89403271383435],[6.585329123168091,51.89393985050076],[6.58322139564942,51.893275453517724],[6.582468772495979,51.892932107907995],[6.582136305927063,51.89278041053607],[6.576680317899265,51.890842258891155],[6.57662175376113,51.89082461308948],[6.576603330809976,51.89081906460793],[6.576454616029983,51.89079849332467],[6.575998182898495,51.890636078499675],[6.571296547541859,51.888945161634915],[6.570221341128411,51.88855831005317],[6.569517477505024,51.88830505552195],[6.56939165574474,51.88824087241896],[6.568383150900888,51.887733597754384],[6.56680003096016,51.886949901471525],[6.566666570029026,51.88688383259694],[6.563913721548152,51.88551144850273],[6.563870080327655,51.885489071426804],[6.563854084323947,51.885414577148005],[6.563771308979256,51.885343313842334],[6.56375004312692,51.88532722964692],[6.563680199704376,51.885274417204656],[6.563619816874685,51.88523452617903],[6.563516614810223,51.88518422317777],[6.563367078368604,51.884964660788945],[6.563299405940222,51.884870404565085],[6.56319279082767,51.884756195932304],[6.563093360901237,51.88465787991588],[6.563068069886822,51.884638384086664],[6.563040733250909,51.88461731766229],[6.562925664429114,51.88452863261708],[6.562778516225501,51.88441135063718],[6.562569020294065,51.8843100459233],[6.562208523129794,51.88425241075174],[6.562056370255439,51.884224799369335],[6.561958536468932,51.884174099727346],[6.561823148213706,51.8840575618812],[6.561253633740819,51.884029601897026],[6.560998216526867,51.88412378118188],[6.560864851381044,51.88401564481973],[6.560980374403477,51.883786903958544],[6.560973727270063,51.8837203341461],[6.560698759994137,51.883412607456854],[6.560697182690499,51.883341582302634],[6.560674074309865,51.883009306132166],[6.560669473273517,51.8829376280182],[6.560709185292957,51.88281959970394],[6.560980058300086,51.88259603906943],[6.560991290649919,51.88257004715028],[6.561000946108406,51.88253428185269],[6.560976956402699,51.8824827533691],[6.560815638350745,51.88236304872114],[6.560611118919732,51.88221923528868],[6.560337178907464,51.88219545445803],[6.559993897579587,51.882249150502155],[6.55990539760329,51.882274286955806],[6.559814213831239,51.88231682608639],[6.559781159710956,51.88232649583434],[6.559274675313546,51.88244052716219],[6.559077918711284,51.88248241147163],[6.558812545677796,51.882526571139095],[6.558777594141008,51.88252698277547],[6.558755251290311,51.88252184817834],[6.558539972361317,51.882499527408],[6.557878217882452,51.882430914616165],[6.557782188817381,51.88239620314689],[6.557644178141151,51.882296037891685],[6.557699384341904,51.88219096231535],[6.55778006670001,51.88201387272987],[6.557705242366392,51.8818925465449],[6.557541030575919,51.88183872049181],[6.557279751879633,51.88177776226667],[6.557149102341203,51.88175274392025],[6.556806909130498,51.881739936395334],[6.556781610700343,51.881721661827456],[6.556531056607613,51.88171781976348],[6.556332374005245,51.88172358246486],[6.556272943665229,51.881719338011706],[6.556231474950543,51.88171095951065],[6.556202384943469,51.881701594810814],[6.556137248389462,51.88169910603545],[6.555993896055848,51.881761497047975],[6.555925414857599,51.881786808782955],[6.555862957191855,51.88180468946627],[6.555840619933225,51.881838872597775],[6.555836735658001,51.88189397849557],[6.555749681123125,51.8819792794621],[6.555583696597077,51.88232511480541],[6.555514515892742,51.88238057370858],[6.555452375203762,51.88244033123468],[6.555378238276809,51.88251805143045],[6.555267019029969,51.882606432960166],[6.555235369868919,51.88264787290531],[6.555231426758569,51.88267669522667],[6.555236424192918,51.88274439637056],[6.555231904382181,51.88278401134851],[6.555241339082781,51.88283911957105],[6.555294629412411,51.88290275369485],[6.555316507643128,51.88295208398865],[6.555340307781393,51.883018923906036],[6.555357255654041,51.88311218802517],[6.555358410610272,51.88318629166841],[6.555368573223297,51.883231387769975],[6.555384527304756,51.883363557605975],[6.55535739809784,51.88340622906539],[6.555328960302577,51.88343766817092],[6.55520802365406,51.88352055506013],[6.555100423967171,51.88356048511022],[6.555053236916167,51.88356632987668],[6.554987614461663,51.883569283683435],[6.554864177969708,51.88355704545553],[6.554842220936393,51.8835600593908],[6.554690450553742,51.883568732689284],[6.554549296394339,51.88356949772116],[6.554458364607784,51.883580064893785],[6.554310844126794,51.883606979283],[6.554266111644268,51.88362681334119],[6.554138247481845,51.88372383589557],[6.554032989200668,51.88377848381015],[6.553931642017634,51.88384056271006],[6.553766027044179,51.88390129338286],[6.553707869781535,51.88391095009035],[6.553526898341002,51.883929026884324],[6.553403719609122,51.88396652123017],[6.553379498334758,51.88397073494735],[6.553193234996545,51.88398472879216],[6.553111880025328,51.88399999101251],[6.5529680166913,51.88400836782919],[6.552895894449009,51.88400772642395],[6.552820606267887,51.884021121410704],[6.552788295701117,51.884025397320556],[6.552749413600241,51.88402720352125],[6.552717311384253,51.884051289310435],[6.552694908189163,51.88420244756432],[6.552693019542266,51.884290433596504],[6.552647046529855,51.884459192689704],[6.552643747795806,51.88455779085476],[6.552616097528451,51.88465615426546],[6.552592255942782,51.884798355641955],[6.552585688809949,51.88494740606619],[6.552568212182,51.885024130626945],[6.552541345070755,51.88526652748368],[6.552533011678213,51.88531715585412],[6.552531228986265,51.88544736259118],[6.552498515662927,51.88556450947053],[6.552500952418797,51.88565406160844],[6.552482508114003,51.8857624103904],[6.552480481238152,51.88586301845702],[6.552466952584857,51.885922822298376],[6.552464407836207,51.88599223435892],[6.552452658013809,51.88601753838574],[6.552441105427716,51.886061106291116],[6.552425626872774,51.88619142193937],[6.552356471719378,51.886183208890024],[6.55200768741707,51.88612860833549],[6.551730235526232,51.88608942584838],[6.551489501625127,51.8860494831625],[6.551411331872893,51.88602634714908],[6.551377712213149,51.886012100129925],[6.551288745926419,51.88598265285341],[6.551220671176931,51.885949375831345],[6.551151615626475,51.88592085473176],[6.550948019793958,51.88585874430196],[6.550849597313913,51.88583939526224],[6.550697881702055,51.88582468217246],[6.550492468372431,51.88578267958405],[6.550356563784926,51.885738999398114],[6.550280764672709,51.88570413536283],[6.5502296205824,51.88566380444683],[6.550202034809345,51.88563177085129],[6.550166686869332,51.88560178272982],[6.550146355897746,51.885590208358856],[6.550077672776061,51.885563121201315],[6.549793423094753,51.885493411612174],[6.549592146425914,51.8854584948591],[6.549274783765211,51.885443513747255],[6.549167471493007,51.88543535280193],[6.549011174499803,51.88540347776019],[6.548881423043838,51.88538364598463],[6.548706786291287,51.885362702908864],[6.548665856411982,51.885354451233816],[6.54863587039118,51.88535485567082],[6.548456639228939,51.88534724353615],[6.548363090363861,51.88534665839502],[6.548375712326276,51.88525941134793],[6.548434541799804,51.88515247972891],[6.548418073185602,51.88508118831107],[6.548439026612749,51.885042076340525],[6.548618116274822,51.88482602338037],[6.548640803359706,51.88478711895184],[6.548691011560633,51.88471369388974],[6.54871534463714,51.884658098404564],[6.548820889976664,51.884480958154924],[6.548839809801954,51.88441319102473],[6.548864323385353,51.88432523299444],[6.548882376204556,51.884241339014864],[6.548917783207285,51.88418484289331],[6.548956463861503,51.88406445587531],[6.548982948095282,51.884040426708225],[6.549077360745258,51.883941862109076],[6.549298427431429,51.88373276375315],[6.549722452205263,51.883513907332556],[6.549897738675502,51.88339000117713],[6.549586326999036,51.88314948867993],[6.549384903304509,51.88313601207464],[6.54925059149885,51.88314294145909],[6.549104849819673,51.8831420643923],[6.548770467788829,51.88315135916503],[6.548634006690644,51.88316393627426],[6.548403659855056,51.88319252533931],[6.548084861095767,51.883226500917566],[6.5477342028073,51.88323608847165],[6.54753167976149,51.883268383008335],[6.547505327847022,51.88332063628147],[6.547474761408141,51.88335197762253],[6.547352483812304,51.8834577557953],[6.547283517070644,51.8834988790387],[6.547113403437989,51.88357640038233],[6.546860199023604,51.88366898075931],[6.546781887860429,51.88368742661979],[6.546684048123886,51.88373380557351],[6.546541868703018,51.88384019287806],[6.546465043425087,51.88391460789009],[6.54633466850269,51.88400337664943],[6.546052756760991,51.884256028609705],[6.545944160542503,51.88436533779954],[6.545904204525675,51.88440046587914],[6.545851551697721,51.88443554842582],[6.54574202442996,51.88448901741754],[6.545590495049194,51.88454895927619],[6.545444415490587,51.88459153420667],[6.545291930436841,51.884631879906095],[6.545113348476744,51.884639753471895],[6.544718878114894,51.884634473496774],[6.544150716688415,51.88460979716192],[6.543955177654841,51.88450790852896],[6.543838934480162,51.88444436806593],[6.543674037970899,51.884389603559995],[6.543497656491766,51.88429038403981],[6.543409929672748,51.88419581071709],[6.543289855254283,51.884121610431976],[6.542722570885862,51.88374805232534],[6.542581714083391,51.883697652165075],[6.542546675616989,51.88367323197422],[6.542501268954022,51.88364157868584],[6.542343896202884,51.88345485050639],[6.54227064297516,51.883361491326994],[6.542222303539416,51.88326426445885],[6.542197767510773,51.883152178216065],[6.542129881780086,51.883047772510416],[6.542353375991944,51.88297791340079],[6.542281618465993,51.88274142432786],[6.542191111359763,51.882666761313374],[6.54209715008958,51.88266969000747],[6.541898069676074,51.8824910211322],[6.541887820697963,51.88248332695649],[6.541729435926269,51.88236442298181],[6.541670747093451,51.88235904920683],[6.541635499314873,51.88224549506635],[6.541569351102344,51.882121529695986],[6.541599131010255,51.882118836858865],[6.541463732473907,51.88200694135316],[6.541433539196925,51.881985035100655],[6.541018178638044,51.881825264064965],[6.541002540556598,51.88182433902994],[6.540915260195285,51.88179943387155],[6.540873549183043,51.88178319588972],[6.540867651800179,51.88178166868481],[6.540861844077648,51.88178001510224],[6.540856133097052,51.88177823714876],[6.540850525798919,51.881776336994655],[6.540845029025591,51.88177431694576],[6.54083964944906,51.88177217946242],[6.540834393614317,51.8817699271502],[6.540829267939113,51.881767562750674],[6.540824278641351,51.88176508914207],[6.540819431811471,51.88176250933001],[6.540814733340059,51.88175982645663],[6.540810188946445,51.881757043782805],[6.540805804150112,51.88175416470616],[6.540801584313336,51.881751192724636],[6.54079753454001,51.881748131455666],[6.540793659791563,51.881744984626025],[6.540789964770352,51.88174175605479],[6.540786453964364,51.88173844969801],[6.540783131659198,51.8817350695497],[6.540780001882771,51.88173161975025],[6.540777068475125,51.881728104477844],[6.540774334974125,51.88172452802149],[6.540555410526498,51.88153800662542],[6.540115671031519,51.881083063693396],[6.539958620734413,51.88095011089609],[6.539898693977202,51.88091619008877],[6.539812559989123,51.88089908438289],[6.539552840123535,51.880877947178526],[6.539226940041603,51.880875284037636],[6.539099107497877,51.880860501566985],[6.539046878018312,51.88084693700295],[6.538956209791551,51.880835385455036],[6.538923347948674,51.880827168144144],[6.538893964763778,51.88081186027794],[6.538828988388534,51.880784901059336],[6.538778313186763,51.88075772065511],[6.538724536767949,51.880720601751065],[6.538713161404062,51.8806830580443],[6.538687836978706,51.880559634612595],[6.538652886654137,51.88043805843539],[6.538634613260222,51.88039204273467],[6.53859106599591,51.88033235975507],[6.538521875243323,51.88027406980309],[6.538461869554041,51.88024493123793],[6.53834373236599,51.8801980158196],[6.538229310136376,51.88016061027218],[6.538102760259497,51.8801192334488],[6.537875802642992,51.880022757584605],[6.537703030304296,51.879923772805384],[6.53765687733347,51.879892754225885],[6.537524773478147,51.87980396886079],[6.537421480052732,51.87972402505822],[6.537313581957529,51.87964916015172],[6.537229605245892,51.87959984154862],[6.537175149536332,51.87956786136505],[6.537132918645042,51.8795499012615],[6.537036105308742,51.87952169773089],[6.536723681494227,51.87945717673161],[6.536498665722241,51.87941484741975],[6.536312015197142,51.87939380592106],[6.536078866868008,51.87936399627891],[6.535370059396103,51.87920700433752],[6.535126091058546,51.87913788150858],[6.534693043314878,51.87898769082638],[6.534534714744419,51.87893523158361],[6.534447179294785,51.87890622514516],[6.534347490841177,51.87885799287763],[6.534042222702064,51.87877016711723],[6.533894138769534,51.87871272589362],[6.533624729132216,51.87863333120212],[6.533462939192712,51.87859483739038],[6.533343238909826,51.87852723940389],[6.532962993123822,51.878302762652865],[6.532900385299005,51.878261879972456],[6.532746930237992,51.878182178842394],[6.532180236105638,51.87792065863987],[6.532122726235838,51.87788486759132],[6.532096359008684,51.87785835522043],[6.531898811067732,51.877729499176645],[6.531785812037706,51.87767050875479],[6.531671352153793,51.877623730638206],[6.531550243237956,51.87758732767946],[6.531397846127633,51.87753532781602],[6.530773816321178,51.87733727413225],[6.530630501151498,51.8772945334682],[6.530490010938192,51.87726692969126],[6.530424182038782,51.87727402478852],[6.530225238943033,51.877272294031215],[6.530135717313493,51.8772626212652],[6.530055139161752,51.87724368354101],[6.529843117383987,51.87717132644479],[6.529348003444528,51.87697647823319],[6.529306685891125,51.87695594457746],[6.529261331245587,51.87692169689391],[6.529217860187516,51.87685924114431],[6.52920556389005,51.87681596149885],[6.529201818676516,51.876779421391035],[6.529230789914154,51.87665346340141],[6.529291103325343,51.87656358831491],[6.52932981793109,51.876525664389206],[6.529695587108785,51.876218086541726],[6.529830560567663,51.87611670678422],[6.529908935871028,51.87604786980725],[6.529916468600728,51.87601395263602],[6.529909728406079,51.87600417519622],[6.529886021153086,51.87598794691959],[6.528968347050198,51.875625562354834],[6.528850649767437,51.87559224268725],[6.528691667174061,51.87553730104637],[6.527700567918487,51.87516107616299],[6.527467543726996,51.875046256719344],[6.526731021354729,51.87479512408461],[6.526078479110694,51.874589394131625],[6.525961060785384,51.874557147578855],[6.525848604065304,51.874535019431875],[6.525683626654576,51.87448793440928],[6.525259726973448,51.8743513020294],[6.524995502649573,51.87427717702422],[6.524597827838684,51.8741488906837],[6.524493013714308,51.87411190918546],[6.524476369775542,51.87409233040598],[6.524470050335437,51.87407788325953],[6.5244768055909,51.87405097646925],[6.524610104986783,51.87378324025746],[6.524620931205545,51.87372148834498],[6.524597263072446,51.87370381139779],[6.524572573217313,51.873692247921255],[6.524540744939372,51.87368726167316],[6.523933426291009,51.87363858832878],[6.521241036602386,51.87339490688675],[6.518410627732805,51.873130928972124],[6.518288687697464,51.87311715493342],[6.518116067133473,51.87310864212658],[6.518064762655901,51.873116237639024],[6.517852429103962,51.87318592523559],[6.517669951775323,51.8732116651193],[6.517570761772183,51.873228854341285],[6.51745413749635,51.87326943903999],[6.51734881242077,51.87330024263348],[6.517151889395321,51.873380513551474],[6.516995934744684,51.87341459965808],[6.516760118141434,51.873447368426405],[6.516167855187042,51.87349410878651],[6.515721877903939,51.873532914153294],[6.515609172033812,51.87352138573084],[6.515489350233422,51.87349306211065],[6.51543036830671,51.87347019441567],[6.515331185252072,51.87344080936478],[6.515179475086783,51.87338592352666],[6.514983820109449,51.87328870765237],[6.514685360042507,51.873155416836475],[6.514577763552596,51.87312577935297],[6.514346279897648,51.87305386006685],[6.514320247599662,51.87303844204695],[6.514282331570049,51.873022257170845],[6.514158643886458,51.872960682841146],[6.51413129129173,51.87294125035555],[6.513968057793038,51.872844198041804],[6.513895752103394,51.872804746793975],[6.513682592982073,51.87264447672186],[6.513626914256743,51.87259685653694],[6.513541402566578,51.87253279388895],[6.513499359859394,51.872504881677614],[6.513253928653177,51.8723669436015],[6.51315860195506,51.87232089898843],[6.51311867395487,51.872299132855055],[6.513017240362911,51.87223303817442],[6.512929728378213,51.872169641480696],[6.512853947387576,51.872129926283606],[6.512768345909847,51.872101083061054],[6.512669081935896,51.87207233478687],[6.512608185348615,51.872059291104726],[6.512502313826109,51.872000339877935],[6.512410949839937,51.871888555683995],[6.512269359252713,51.87169387025023],[6.512212324682205,51.871606440885714],[6.512179000631694,51.87153339152405],[6.51217868146385,51.871468943057735],[6.512127966510766,51.87137405510765],[6.511924195275567,51.871172297355],[6.511902182723142,51.87115320872244],[6.511693530595658,51.870972217105034],[6.511614905571017,51.87088249528235],[6.51136552489632,51.87079744679456],[6.510886755328844,51.87062474784376],[6.509987759351859,51.87030541886789],[6.509447676911626,51.870093685685156],[6.509322372877289,51.87005346179784],[6.50914191877823,51.869987067320665],[6.508779667099056,51.869870803266785],[6.508262266477763,51.86970933052615],[6.507642730156785,51.869528649866915],[6.505749776841436,51.8689642542702],[6.505262185508511,51.86880710479738],[6.505234764655399,51.868798691495485],[6.504775707255704,51.86865779915213],[6.504508725925028,51.868570485731944],[6.504470733175741,51.86855559288009],[6.504388861763712,51.86851799773203],[6.503964861492625,51.86822671447461],[6.503829182894315,51.8681208555504],[6.503617669675754,51.86798535262649],[6.503553688241284,51.8679377707427],[6.503459524657859,51.867862322101935],[6.50342880260815,51.86783435263638],[6.503405259220096,51.86781421628478],[6.50326063300504,51.86769759200402],[6.503193196338088,51.867633610794854],[6.503155018214876,51.867616463034885],[6.503098831705225,51.867606210239714],[6.503052020697028,51.867621532038605],[6.503032528498081,51.867644126995756],[6.502958836598571,51.867861310585596],[6.502927255347426,51.86790173782489],[6.502882878140499,51.86793734268043],[6.50275444086344,51.86798285218595],[6.502647289625435,51.86800783507829],[6.502529470690894,51.86801544450993],[6.502460610098777,51.868004125256704],[6.502388141465221,51.86798666476088],[6.502243168506553,51.867943851592685],[6.50217630318971,51.867906984333445],[6.502053883893611,51.86787191204476],[6.501872766204492,51.86784065098722],[6.501852685018211,51.86783774042447],[6.501814949806642,51.86784431910618],[6.501751158895009,51.86787585602144],[6.501711714275251,51.86790370100063],[6.501394486751221,51.86815464786178],[6.50136252569762,51.868158106332686],[6.501329323932215,51.86815719890438],[6.501311143144352,51.868153047704006],[6.501295809958346,51.86814368280005],[6.501286735798065,51.86814490152838],[6.501254420697267,51.868144030610196],[6.501250497529707,51.868143924012884],[6.501203632796968,51.86813307846793],[6.501150255141104,51.86811429445143],[6.501116706145393,51.86809173565031],[6.501094474017896,51.86806177036448],[6.501083460580857,51.868035096494296],[6.501082811366306,51.86801356490386],[6.501060770022232,51.86800010168692],[6.501025098500089,51.86711636756977],[6.501051932876234,51.86687475711231],[6.501118360533486,51.866761494113035],[6.501193063607935,51.86663412963696],[6.501633091312942,51.86615632058807],[6.502093505953999,51.865681282580404],[6.502176479177609,51.86548471310958],[6.502246830744896,51.865235857296895],[6.502207982734274,51.86470524313658],[6.502052013287019,51.8643289146454],[6.50084277710789,51.86265979931473],[6.500294479091639,51.86227478479159],[6.500291066067565,51.86227239010984],[6.499480249761541,51.8619629416604],[6.498836754494486,51.86167347706293],[6.497501076241742,51.86130327415003],[6.496953758104108,51.861138071113906],[6.496370551834082,51.86096213014228],[6.496289803366952,51.860949229723595],[6.49622879944782,51.86093632249796],[6.496196936675091,51.860928847988895],[6.496161043480161,51.860920422750816],[6.494283378378514,51.86045867009006],[6.494080097132331,51.86041024839105],[6.493856693378307,51.86035824064623],[6.493673483601858,51.86031717982402],[6.493494688173875,51.86027850415789],[6.492223836686817,51.86000667200296],[6.491864477258421,51.859929800087386],[6.491728698808322,51.85989871718386],[6.491630614890074,51.85987557637125],[6.491542957004412,51.859854890281156],[6.491504572354302,51.85984662190397],[6.491448684410003,51.85983501244006],[6.491407128671628,51.85982767276512],[6.491364141349244,51.859821155554826],[6.491321037558067,51.8598158079996],[6.491307041982236,51.85981342270612],[6.491293750080734,51.85981013188847],[6.491281445528196,51.8598056632077],[6.491269992000154,51.85980037750784],[6.491259541255222,51.859794543033054],[6.491250372558039,51.85978770770506],[6.491242932364278,51.85978031677718],[6.491223032947923,51.85975623352158],[6.491202119750173,51.85973224968744],[6.491187197512433,51.8597157603012],[6.491169858545392,51.859701361120536],[6.491135464318666,51.85967229041231],[6.491115952638717,51.85965809143717],[6.491095163335455,51.85964507304867],[6.491052599620367,51.85962030398991],[6.491012892868067,51.85959955311975],[6.490941500152823,51.85956543682772],[6.490877213271418,51.85953691677946],[6.490788170281887,51.859499370725715],[6.490705335832532,51.85946635065224],[6.490632967507183,51.85943979413989],[6.490552869236993,51.85941178210256],[6.49048336411298,51.85938949534812],[6.490472243370006,51.859385932339364],[6.490387126982121,51.85936048428427],[6.490300167891087,51.85933685129209],[6.490197927069176,51.859311653910275],[6.490083639532253,51.85928656962288],[6.490011270063849,51.859271788383545],[6.489938078233266,51.859258992413835],[6.489888080788272,51.8592507427128],[6.489769622048953,51.859233158206884],[6.489726668551998,51.85922798843995],[6.489657224310332,51.859220011178884],[6.489593920096691,51.859213774023154],[6.489530059544789,51.859208530851994],[6.489499078202077,51.85920612506864],[6.488404228044022,51.859125701549594],[6.488377479026026,51.85912360633999],[6.488348955319451,51.85912136596917],[6.488267031464543,51.859113594843315],[6.488177487701552,51.85910292874597],[6.488092562143238,51.85909114058509],[6.488008606460513,51.859077455570166],[6.48793117122304,51.85906325990189],[6.487922692321293,51.859061451710154],[6.487840398453345,51.85904388570707],[6.487769054978344,51.859023520269666],[6.487705014700165,51.859010906783666],[6.48765773700364,51.85899808218668],[6.487639688069638,51.85899318157097],[6.487543461525736,51.85896389842182],[6.487499830091441,51.85894938560006],[6.487408494586822,51.85891885196508],[6.487348136114258,51.85889649561862],[6.487279534727933,51.85886772640545],[6.487260276022666,51.85885965495038],[6.487184229616417,51.858825040665415],[6.486820616067529,51.858642823801254],[6.486593871438179,51.858536539856075],[6.486461184919763,51.8584831291396],[6.486335975191617,51.85843863730205],[6.486281388082846,51.858420720891104],[6.486176378855086,51.858388983957134],[6.486101061340499,51.858366317572276],[6.486007900502581,51.858344177728085],[6.485856086508798,51.85831000213416],[6.485847925787373,51.85830873015806],[6.485744447128143,51.858286147331626],[6.48565330103377,51.85826326923033],[6.485596875849214,51.85824734729168],[6.485469325264202,51.85820800019203],[6.485401719981039,51.8581842634226],[6.48537605144115,51.85817525384634],[6.485298375602632,51.85814514811501],[6.485258646058299,51.858129249612574],[6.484891301030617,51.85797561991202],[6.484783629771412,51.85792631509698],[6.48453478575786,51.85781235946104],[6.484315904004445,51.85771260460325],[6.484135439728377,51.857633281978416],[6.483962073852281,51.85755272418232],[6.483864201344813,51.857494985157686],[6.483803539976433,51.85746004519174],[6.483689939785014,51.857397284257296],[6.48357268457973,51.85733941143067],[6.483450444030547,51.857285450331275],[6.483405430794866,51.85726712856958],[6.483273804192173,51.85719135765682],[6.483155413823688,51.85712974659181],[6.482928760855387,51.8570235716554],[6.482808540390902,51.856975002436926],[6.482677416200247,51.85693112825217],[6.482535906178826,51.85689831745594],[6.482409627033169,51.85688112215706],[6.482174784158191,51.85687258015973],[6.481752724174301,51.85688218855929],[6.48144229499822,51.8569000225616],[6.480880057667115,51.856934611576364],[6.48087125603463,51.8569350261768],[6.479678258334096,51.856922224614436],[6.478947447785355,51.856914821307484],[6.478371419225485,51.856908761324675],[6.478372102302433,51.85688304635753],[6.478233101135185,51.85687993378585],[6.478096220379439,51.85687446419675],[6.477959317085917,51.856862073107244],[6.477819116363528,51.85684539776282],[6.477691760910115,51.85682563654028],[6.477563313420703,51.85680273916504],[6.47744692895476,51.85677442608417],[6.477325971446466,51.85674309908968],[6.477199812508597,51.85670678641711],[6.477053647799905,51.85665960285685],[6.475889708203204,51.85624595111458],[6.475651461308156,51.85616128164316],[6.475612817067232,51.856127616519],[6.475579904474213,51.85610405583519],[6.475523477135676,51.856077575996714],[6.475461227607983,51.85605044896623],[6.475412271398761,51.856028565112275],[6.475352880252764,51.85600738023771],[6.475292475015527,51.855989881244575],[6.475215199403825,51.855969886832725],[6.47492540735924,51.855903240242554],[6.474454324600345,51.85573581542242],[6.474341069824483,51.85569263841162],[6.474225391151242,51.85564525889885],[6.474114556033827,51.85559405903363],[6.474006097255987,51.855539061673355],[6.473895229612198,51.85547446826081],[6.47380088788742,51.85541493539707],[6.473703875270513,51.855346977499956],[6.47361769369201,51.85528269466653],[6.473543850583293,51.85521838746981],[6.473464212962718,51.855142538012416],[6.473393983007851,51.85506552276399],[6.473328642149636,51.8549865745401],[6.4733062033399,51.854904892170964],[6.473310069457006,51.854812449243404],[6.473357931167388,51.854720498114375],[6.47289801021986,51.85459800784804],[6.472777334397414,51.85435829907922],[6.472730497200542,51.85426524641026],[6.472589667061556,51.85398547099536],[6.47250788714662,51.853823022487546],[6.472292932825431,51.853843311479174],[6.471551933757196,51.85391094306624],[6.470747014880549,51.853974773399806],[6.470263932144221,51.85401054963495],[6.469795009752479,51.854045456174894],[6.469448509059604,51.85407232857852],[6.469139095003201,51.85411123599136],[6.468930854236271,51.854141605525875],[6.468595434907657,51.8541917267465],[6.468213496598547,51.85424992509133],[6.467890517855582,51.8543019432522],[6.467523717492891,51.85437524533652],[6.46730323606187,51.85442370265915],[6.466995498467412,51.85449817647745],[6.466756769680377,51.85456420335886],[6.466329550021769,51.8546774831737],[6.46607092653197,51.85474811414285],[6.465571621925934,51.85489737154142],[6.465114184637625,51.85503899718186],[6.464682469488483,51.855179503983265],[6.464383808536609,51.85528729073342],[6.464128656606301,51.85538133784686],[6.463546954987619,51.85560329050784],[6.463054385072748,51.85581822991388],[6.462809101276989,51.85592939762037],[6.462268182198174,51.85618982960958],[6.461900217818425,51.85637528943562],[6.461580844426709,51.856548869333565],[6.461027209469884,51.85687747662322],[6.459907329015544,51.8575645250496],[6.45911845900491,51.85809773185059],[6.458314951863675,51.85868463220598],[6.457516914068872,51.85931864228971],[6.457357746549865,51.859450020413945],[6.456639482747719,51.86009671759687],[6.456389570600868,51.86033429902281],[6.456187899296394,51.86053766895277],[6.455754042250811,51.86099121251912],[6.455147852756898,51.861666534629],[6.454584717976813,51.86234231592788],[6.454498899725132,51.862439673906685],[6.454250719546378,51.862702332070626],[6.45409488112502,51.86286724919633],[6.453676664615526,51.8632443619798],[6.453475769285236,51.86340923811073],[6.453360098751302,51.86350059204168],[6.452943908529061,51.863808055014346],[6.452641145922294,51.86401477226794],[6.452104396880391,51.864359794578],[6.452044114799619,51.864396054620194],[6.45187950923355,51.86451502460231],[6.451765421973553,51.86460359394527],[6.451607237171323,51.86474056417846],[6.451524707858947,51.864820289634245],[6.451348118619213,51.86500239824348],[6.451172642507529,51.86523778317814],[6.450763579756243,51.86527803898424],[6.450731435340765,51.86528117969839],[6.45072784272352,51.86528152685892],[6.449891109695035,51.86536327973397],[6.448574011752089,51.86549195390673],[6.448470285786267,51.86550555709658],[6.447065451831916,51.86511480493329],[6.446672700115729,51.86500555633955],[6.446515826703661,51.86481224373918],[6.446373578953834,51.864636965703035],[6.445954822933603,51.86415781920826],[6.4457154993571,51.863944637393004],[6.445488986276403,51.8637426747167],[6.44492475706274,51.86347299367943],[6.44454329709259,51.86323792547999],[6.444208364547445,51.86292459259773],[6.444012681506748,51.86280155140089],[6.443996414105466,51.86279509094583],[6.443674057974434,51.8626671218964],[6.443194827223344,51.86251425248847],[6.442483988793678,51.86238749090238],[6.442467370359453,51.86238399975486],[6.442450987712429,51.862369512968556],[6.442290008618841,51.862227172259615],[6.4417719020417,51.86194584347016],[6.441377380524342,51.86185846344739],[6.44030956195927,51.86190082138207],[6.439617884806359,51.862018379688884],[6.439060533507577,51.86212000645021],[6.438733104458166,51.86209969434825],[6.435575675555691,51.86078794887029],[6.434393813731099,51.86029141215482],[6.434266755638183,51.860240319632936],[6.434224773749419,51.860223624039214],[6.434203607638041,51.8602149227349],[6.434250102503075,51.860127324035325],[6.43392142101351,51.86003121481065],[6.433763483162837,51.85998503539998],[6.433930959097485,51.8597422153532],[6.43292945460021,51.85958075547946],[6.432362841661036,51.859382929714016],[6.432302728728095,51.85947687825237],[6.432280283873646,51.85950622929389],[6.43227686212823,51.859517046516224],[6.432259479093255,51.859525561010756],[6.432168920541683,51.85960254867103],[6.432029357472778,51.85966984187723],[6.431908015646399,51.85973847391096],[6.431675981094767,51.85985109397939],[6.431381895717192,51.859966171205706],[6.431222427902137,51.86004791496324],[6.431101957733544,51.86011416530805],[6.431076764905497,51.860134623495085],[6.431023062511171,51.86015647678596],[6.430947457410321,51.860191675652764],[6.430738595682926,51.86023510648889],[6.43057187683861,51.860289101953725],[6.43040294419755,51.86036911293267],[6.430345865090453,51.860385611528585],[6.430270977157328,51.860411077522734],[6.430087599322792,51.86044164226664],[6.429988555273461,51.86046280123167],[6.429840262831367,51.86051074418926],[6.429770946777797,51.86054174251738],[6.429549983804478,51.86063070890516],[6.429436217454257,51.86071453432692],[6.429366383401256,51.861010315842904],[6.429260968596969,51.86120219514491],[6.429209959372843,51.861402526455336],[6.429195131101952,51.86149697923384],[6.429197414203571,51.861630067487],[6.429210008940071,51.86171189904987],[6.429207667060912,51.861745565513544],[6.429225242022242,51.86179167568677],[6.429285191955411,51.86185705058012],[6.429431351572348,51.86192680177198],[6.429514083862375,51.86194778455501],[6.429598824594804,51.86198777907416],[6.429587765091194,51.86211140356441],[6.429412685981899,51.862372100763835],[6.429247389788636,51.86251991738738],[6.429190598488487,51.86260792001025],[6.429173289808809,51.86263978668834],[6.429141942765265,51.86272186444124],[6.429103090243761,51.862874832800955],[6.429106851770256,51.86292818483974],[6.429107929006224,51.862943357629455],[6.42923476510413,51.86307382121163],[6.429263304782192,51.863127564551554],[6.429282972995933,51.863212003026604],[6.429277174172255,51.86325438350526],[6.429245926995496,51.86331319696837],[6.42912354669787,51.863378967746904],[6.429070108649554,51.86339551427474],[6.428924293126745,51.86345369939936],[6.428891826460022,51.86346863949438],[6.428818728405532,51.86353091639152],[6.428803517128811,51.863591951541814],[6.428796236348809,51.863688251916166],[6.428754191152874,51.86379118895598],[6.428732181860962,51.86386652291454],[6.428707112904597,51.86393261639819],[6.428689257442977,51.86405067396096],[6.428648217456841,51.86413621739517],[6.428633470946252,51.864239936946404],[6.428648062599805,51.864306433645055],[6.428667554160662,51.86435880117854],[6.428741162117773,51.864442060057996],[6.42878348082625,51.864518387362196],[6.428769054997861,51.86466919722181],[6.428686807269602,51.86482178632904],[6.428629249179623,51.86498912296489],[6.428605708330603,51.865083634922634],[6.42859689738559,51.86509377172289],[6.428583723738184,51.86509921903164],[6.42855462609434,51.865129922731434],[6.428373657953613,51.86525860468903],[6.42825349967397,51.865335977516075],[6.428048823448064,51.86550248796591],[6.427870289290531,51.865623533900184],[6.427360731215164,51.86586176250165],[6.427110976635808,51.86591691101109],[6.426898372919208,51.86594674069302],[6.426690282709243,51.86598214811918],[6.426544353499995,51.866013903687524],[6.426415273810887,51.86608682314417],[6.426238306397057,51.86619866597013],[6.426125531842518,51.86625022686776],[6.425870144289907,51.866243290934904],[6.425765085265944,51.86615546347739],[6.425759485055927,51.86614244308482],[6.425685560525211,51.86603213741855],[6.425654552352573,51.86599212322809],[6.42561081377236,51.86595854086451],[6.425588349652585,51.865950262979645],[6.425559386425992,51.86593279294311],[6.425532730335699,51.86592217904132],[6.425442719518012,51.865905024169265],[6.425325972459957,51.865886991022265],[6.425273291220435,51.86588303429117],[6.425097177855054,51.86589791302129],[6.424759684571547,51.8659130313108],[6.424652453292022,51.86592356117809],[6.424325166239673,51.86597329435629],[6.424295774783135,51.86597313152089],[6.424235694718186,51.865987082748106],[6.424165626190507,51.86601242127944],[6.42414626834542,51.866035594981554],[6.424082103159705,51.86608902571806],[6.42405217491083,51.86614748449548],[6.424020067506709,51.866253783714825],[6.424004299117668,51.86628781130774],[6.423986745745632,51.8663162096023],[6.423958208666821,51.86635313652486],[6.423916330067521,51.86639961066119],[6.423870928027948,51.86644377876812],[6.423834116641736,51.866485210273794],[6.423781720822857,51.86650816325963],[6.423736550516664,51.86652269270601],[6.423637573199533,51.86652476207211],[6.423529687615482,51.86649119690293],[6.423441803386033,51.86645921692746],[6.423385503661705,51.86642362322386],[6.423332362709939,51.86636567307023],[6.423268333030794,51.86632541934662],[6.423218542439558,51.86631585404524],[6.423048787072043,51.86634653008264],[6.423011436689015,51.86635700814913],[6.422971038556118,51.866394039474955],[6.422911284864281,51.86644239682661],[6.422872515258942,51.866466919114316],[6.422785341112236,51.86653642658197],[6.422718736391039,51.866603828919544],[6.42263582042231,51.86671832434425],[6.422551120160529,51.86676854650058],[6.42245098283763,51.86681236076807],[6.422335223389026,51.86683604261916],[6.422309431203847,51.86684403647738],[6.422036152219825,51.86694504536455],[6.421968146906826,51.86696803624174],[6.421870642145205,51.86698367342848],[6.421794145533737,51.8669884824916],[6.421679232837271,51.86695619105921],[6.421531209328808,51.8668491245577],[6.421443186168298,51.866797170881426],[6.421364939600025,51.86677826426947],[6.421300381081079,51.86675727744839],[6.421207639860707,51.86673251176758],[6.421029067200861,51.866728394409115],[6.420865996329286,51.866770810890166],[6.420604689996063,51.86679137682681],[6.420413607374826,51.86679575533191],[6.42021815526306,51.866781205303404],[6.419967737231681,51.86683271283226],[6.419938370283414,51.8668361712311],[6.419602381911928,51.86692357744331],[6.419338040477721,51.867013813562764],[6.419185723705274,51.86707510880268],[6.419093400589393,51.86711793461992],[6.418828604519234,51.86720363415796],[6.41868467033395,51.867243650167744],[6.418574479770205,51.86724753066066],[6.418467506055,51.86727076294849],[6.418334729948958,51.86731109400295],[6.418104407115799,51.86744011243336],[6.418080270530563,51.86745133582473],[6.417691585318531,51.867632144848905],[6.417206837911079,51.86779738158153],[6.416954199368162,51.86794068814692],[6.416813954715632,51.868027259137435],[6.416621379023492,51.86810751116075],[6.416297316895374,51.86821614296764],[6.416202190487247,51.86827438909491],[6.416004954017356,51.86836046082765],[6.415766848006967,51.86848618092387],[6.415573336185633,51.86860251199951],[6.415182654523652,51.868730493099704],[6.415097413852262,51.86880970383864],[6.415017546881471,51.868906773426495],[6.414918350459796,51.86897513970458],[6.414877588503028,51.86902079175131],[6.414835962437883,51.86906739518465],[6.414516814880765,51.86930907811608],[6.414422212000112,51.8693542033309],[6.414232313887772,51.86940587908449],[6.414159251432899,51.86944175480827],[6.414014488687462,51.86957575154949],[6.413881089142682,51.86967958974872],[6.413736036171729,51.86977993411027],[6.413625154725827,51.86987602441836],[6.413463247311069,51.87012939053418],[6.413329679600034,51.870258452491896],[6.412878225573499,51.87061337006921],[6.41277241475689,51.870687455286216],[6.412621751476572,51.87085663051738],[6.412549693139473,51.87091569686732],[6.412328960999521,51.871077762120436],[6.412291373685638,51.87108704327286],[6.412253439963264,51.871096417326804],[6.412181528964797,51.871085503349576],[6.412112710409112,51.871052890026874],[6.41183146000104,51.870851269213404],[6.411669363151284,51.87075064142073],[6.411650715783373,51.87073906459055],[6.411420315535016,51.87063091542157],[6.410907237796752,51.87033526787358],[6.410946611662653,51.8702979441062],[6.410992791376946,51.87025914971645],[6.411045454915375,51.87023089671228],[6.411121838594942,51.87019021187779],[6.411197739142923,51.870121926207375],[6.411221718317393,51.87010492574558],[6.411215959038252,51.87006625167414],[6.411189844399849,51.870043018338365],[6.411144478364176,51.8700314137802],[6.411093176969837,51.8700257127588],[6.411049708374313,51.87002219064121],[6.41096508303214,51.870010811513524],[6.410892602745287,51.8699830834374],[6.41081591335393,51.86995160767565],[6.41075654117823,51.86991155826765],[6.410684149594122,51.86986154573841],[6.410639042061218,51.86981979885745],[6.410585487465087,51.869770565901106],[6.41051330316616,51.86970155785645],[6.410463764809621,51.86964949428325],[6.410393151908037,51.86957869266256],[6.410359790666022,51.86955858752346],[6.410330727886512,51.86954551920257],[6.41030067945886,51.86953955172787],[6.410259900951183,51.86953042375467],[6.410238737955342,51.86953397901237],[6.410205858986577,51.86954146563612],[6.410170290641246,51.86955456679652],[6.410128682595127,51.86957026443508],[6.410098597782358,51.86960101699523],[6.410081724976408,51.86962274641327],[6.410083378139629,51.869660970908186],[6.410083082377577,51.86970225064012],[6.410078355143396,51.86973319575791],[6.410074954303663,51.869766915887006],[6.410045402560283,51.86978854901516],[6.410010626922938,51.86981353557006],[6.409978214905421,51.869823049557944],[6.409933123793293,51.86983245825145],[6.409903297560069,51.869833077622474],[6.409860777931232,51.869833600806224],[6.409789039286013,51.869803321727794],[6.409751610132783,51.86977162017631],[6.409687118889429,51.869712648182386],[6.409634513922339,51.86966745154556],[6.409572245958939,51.869626428993094],[6.409494920719525,51.869575209241],[6.409416387590565,51.86952450333533],[6.409350948676093,51.86948705890175],[6.409266154524473,51.869432389355865],[6.409202745784492,51.86943188963405],[6.4091463396958,51.86943283007516],[6.40905077867717,51.86943729336395],[6.408979744821731,51.869441192549836],[6.408854565027235,51.86945284390877],[6.408751845729966,51.86946372441511],[6.408692000189035,51.86950952233863],[6.408718009323341,51.86955504068734],[6.408759935121963,51.869611512873824],[6.408811108967268,51.86967621933051],[6.408829767146567,51.86972157689579],[6.408852789812888,51.86978839798992],[6.408857820605645,51.86982961338239],[6.408823888941404,51.869855347307144],[6.408791543050524,51.86987929660506],[6.408722716608407,51.86990114528585],[6.408626598187931,51.86992587411077],[6.408565085705423,51.869933456565036],[6.408500794214892,51.86994335533706],[6.408375480547468,51.86992614390117],[6.408220614523922,51.869904982519515],[6.408085778934022,51.86988408722275],[6.408042220979977,51.86990284831563],[6.408005471679642,51.86996761843285],[6.407974035465301,51.87003232436588],[6.40794406705105,51.870066365295756],[6.407915188510354,51.87009660341637],[6.40786017306635,51.870140318424134],[6.407808299999177,51.87018045546391],[6.407751283884148,51.87021279884372],[6.407688576910217,51.8702464860647],[6.407603653942375,51.870276384242715],[6.407461285344429,51.87032546954335],[6.407339117473903,51.8703669722763],[6.407220262071306,51.87039703016986],[6.407110603349959,51.87042090457269],[6.407053586427653,51.87045324761494],[6.407023070014166,51.870470843333344],[6.406931392175629,51.87055704338257],[6.406885534129795,51.870605712182865],[6.406855862195754,51.87062405559166],[6.406813458610904,51.87065344008952],[6.406784320319208,51.87066265508912],[6.406717907750596,51.87068346586895],[6.406622461705707,51.87069120712158],[6.406534524738534,51.87066569600257],[6.406405105750041,51.87062244123744],[6.406303162202907,51.87061963170719],[6.406218395422225,51.87061610670523],[6.406155673653521,51.87062421075287],[6.406102007169054,51.87063398003338],[6.406022085104689,51.870653945842236],[6.405930417494904,51.870677851780506],[6.40587043671806,51.870694785979154],[6.405812197935575,51.87070207789898],[6.405761413964363,51.87071281978477],[6.405686688773085,51.87070385887507],[6.405535729636886,51.87064750438484],[6.405456691897767,51.870610957780556],[6.405367916972683,51.87057019886137],[6.405314513041549,51.870560774158704],[6.40525778353626,51.8705539041551],[6.405169798099423,51.87054802424287],[6.405090359921697,51.87054446121578],[6.405014525492645,51.87053651625647],[6.404925738547146,51.87052601381607],[6.404816535801829,51.87050334647445],[6.404740442099774,51.87048714276841],[6.404676499214783,51.870468865139195],[6.404614413435642,51.87044794661772],[6.404576241146658,51.87042562532124],[6.404532847137386,51.870398423330535],[6.404469584380938,51.870345352576095],[6.404416999834653,51.87030021637812],[6.404366128962858,51.87026343399488],[6.404314476647225,51.870242182224466],[6.404265746988958,51.87022110286966],[6.404182176525111,51.87019530048544],[6.404105281884724,51.87017446502681],[6.40404334034675,51.87014255150854],[6.404001430009935,51.87011543535233],[6.403959250368229,51.87006997512848],[6.403905466371708,51.87001284888446],[6.403855138472641,51.8699724300575],[6.403786406154117,51.86991629613665],[6.403692023051987,51.86984313452378],[6.403529585512634,51.86971937906224],[6.403430270276266,51.869649612804224],[6.403273684901599,51.869576602723384],[6.403246191695788,51.86956221568442],[6.40322857480117,51.86955114098164],[6.403109373461871,51.86946558222747],[6.403008326813506,51.86939753849419],[6.402928511127013,51.86934628207801],[6.402849357957152,51.86930056604026],[6.402766327355197,51.86925096432124],[6.402727753893522,51.8692313695448],[6.40258838478143,51.86917216943524],[6.402536859249444,51.86915000791524],[6.402475049965655,51.869137355690356],[6.402362094421553,51.869150233760934],[6.402236460251912,51.869168812444634],[6.402052342047132,51.869202422636576],[6.401857944485754,51.86923545619629],[6.401728441973905,51.869260234162745],[6.401663676022967,51.86928775156776],[6.401554582316179,51.869334762364666],[6.401448564676578,51.86938103636049],[6.401367779388478,51.86941680897953],[6.401312500244827,51.869450356702544],[6.401244124527333,51.86949233226418],[6.401219548800325,51.86951845058322],[6.401187889502446,51.8695524144771],[6.401164249086621,51.86959233168239],[6.401151560195983,51.86961820350366],[6.401142325814955,51.8696607648748],[6.401129083557773,51.86974069182835],[6.401118524464002,51.86980243799611],[6.401106766426329,51.869821937619626],[6.401055055058071,51.86992169372973],[6.40095887395015,51.87010235651116],[6.400910780563766,51.870197730675365],[6.400871778175223,51.87023128146541],[6.400832108723,51.8702693863925],[6.400774413020995,51.870339467688346],[6.400747033563544,51.870374590032334],[6.400721113239563,51.87039971308855],[6.400604553860294,51.870437133326426],[6.400519103113964,51.870434149453565],[6.400468647644214,51.87040471474805],[6.40042205521048,51.87037916585034],[6.400400978974701,51.8703614777724],[6.400374278197179,51.87034163594402],[6.400327291921397,51.87032889961189],[6.40027709003323,51.870317809012505],[6.400069744670845,51.87032811046055],[6.399966806232708,51.87033330415246],[6.399814870521813,51.8703293112063],[6.399476692397867,51.87030288762246],[6.399376835568801,51.870297249553154],[6.399276705658484,51.870283343952316],[6.399189667440268,51.87027109623963],[6.399127571338849,51.87030059373928],[6.399075484900659,51.87034257143882],[6.398969698564114,51.87043744422212],[6.398768827358301,51.87061495326836],[6.398593876122206,51.870767330400575],[6.398372022352346,51.870976651472944],[6.398311404660504,51.870986063556444],[6.398223570136467,51.870959107131206],[6.398147738995484,51.87092091002436],[6.398026271103388,51.87086087620869],[6.397915480776655,51.87080878643781],[6.397844592404303,51.8707772792821],[6.397761573283149,51.870737759510035],[6.39766519849701,51.87069839957003],[6.397574279789659,51.870662093773106],[6.397516881145748,51.8706396030667],[6.397442005986349,51.87060512768115],[6.397275272420811,51.87053062390924],[6.397187973380634,51.87048993604275],[6.397109360836435,51.87045066555265],[6.397081062140968,51.87044173128913],[6.397008038978287,51.870414691507214],[6.396926469112308,51.87038533413361],[6.396867477778382,51.870363665812455],[6.39679618135413,51.87034497073768],[6.396745995027813,51.870333887488826],[6.396699792404222,51.870356028935475],[6.396661599735945,51.87037403850712],[6.396618055470892,51.8703981705805],[6.396565847816808,51.870430970516196],[6.396518559348326,51.87046038426479],[6.396486115728329,51.8704796387582],[6.396432967844174,51.87050872530721],[6.396354445981509,51.870549212135366],[6.39632439630079,51.870572266293266],[6.396262813767082,51.870618288454345],[6.396199916607909,51.87066332411093],[6.396164648100114,51.870701668267756],[6.396125656246255,51.870735217364995],[6.396102399720032,51.87077240657623],[6.39606766156572,51.870827285738336],[6.396049744288824,51.87087852366869],[6.396036914704773,51.87092546612556],[6.396032894173841,51.87095274605596],[6.396027789842609,51.871007460460476],[6.396028301604844,51.87105424333515],[6.396017614417394,51.87108664130302],[6.396009042593584,51.871124657139845],[6.395981798285079,51.87115886930313],[6.395947997785509,51.87119729965389],[6.39590725826061,51.87123258955899],[6.395833002722375,51.871294397017564],[6.395764739512356,51.87136570816221],[6.395708112253709,51.871418438121324],[6.395677518755726,51.871445128295846],[6.395620215096033,51.87149230887552],[6.395571743258889,51.871529903309735],[6.39552191327381,51.87156651161844],[6.39549079746093,51.87158675219239],[6.395452332749957,51.87161666500899],[6.395415727513266,51.87166410819281],[6.395396095533265,51.87168682994325],[6.395383647769285,51.871741130955165],[6.395373198653378,51.871812044282116],[6.395346458182989,51.871903124780225],[6.395310103930769,51.871968912131905],[6.39527068751276,51.87203543588619],[6.395228484453406,51.87206055367846],[6.395151824622674,51.87210848447815],[6.394988155832517,51.872214951775845],[6.394933995446855,51.87225018573587],[6.394819655291061,51.87233265149377],[6.394749808565474,51.872384622495055],[6.394650292698778,51.87246701480235],[6.394621584424418,51.87249105476466],[6.394578309076811,51.872523444553416],[6.394512204805113,51.87254996267377],[6.394472665844697,51.87256698529402],[6.394430878553829,51.87256920448321],[6.394377064314999,51.87257258751832],[6.39430174487316,51.87260133291632],[6.394255532142493,51.872633559012144],[6.394160831871709,51.872723550158554],[6.394083613290288,51.87279527866649],[6.394002817253349,51.872851217325966],[6.393950450936342,51.872884925300305],[6.393868053407065,51.87293161003604],[6.393788320657077,51.87297019084227],[6.393707119135129,51.873008685306374],[6.393645161770059,51.873027185233816],[6.393566367862092,51.873049326122775],[6.393472776729635,51.87305136874416],[6.393319900053158,51.87305373056365],[6.393295046692469,51.87309175086076],[6.393267109805207,51.873140593246994],[6.39326643499377,51.87315522397509],[6.393268029246514,51.873174563423575],[6.393292048818588,51.87320250186222],[6.393334888875976,51.87324342978632],[6.393406146690393,51.87330246051535],[6.393480502459053,51.87335065998902],[6.393426381941279,51.873416356285205],[6.393364801271819,51.87349263350133],[6.393312983842679,51.873512628400576],[6.393237787039766,51.87354046416921],[6.393093720193775,51.87354332548783],[6.393046427014434,51.87359290893169],[6.393095532140166,51.873671770373456],[6.393155424721269,51.87375765858347],[6.393083562904044,51.873833349560016],[6.393000765258751,51.873852513074844],[6.392891268515558,51.87387199511021],[6.392748807974932,51.87385386214321],[6.39258212671258,51.87393978518451],[6.392468210197269,51.873999350224395],[6.392381138420418,51.87402743092703],[6.392284329197163,51.87403112712967],[6.392251741289012,51.87403111843827],[6.392124913556905,51.87400745755647],[6.391962164046856,51.87397625663148],[6.391790882074631,51.87394273743838],[6.391736265504229,51.873941487843766],[6.391660559933816,51.873942710808876],[6.39156682022143,51.87395574659578],[6.391480019738197,51.8739719319917],[6.391397367613594,51.87398009071147],[6.391308576823776,51.873989740094075],[6.391232195661467,51.873985422408715],[6.391118982308445,51.8739698598786],[6.391066920801509,51.87396141498398],[6.390980002594772,51.8739482522578],[6.390904296989101,51.87394947473553],[6.390769429578693,51.87395010620581],[6.390566171928687,51.87396806829244],[6.390705172130648,51.87373996459637],[6.390836797574885,51.87351203162661],[6.391001512218032,51.87321749549975],[6.391111592260409,51.87302571097997],[6.391146523512806,51.87296547430911],[6.391154479019861,51.87294974761852],[6.391159339875245,51.87293135071854],[6.391167936252078,51.87287536624726],[6.391175910221456,51.87280841164846],[6.39117322029248,51.87278743657615],[6.391157125104137,51.87273840491239],[6.391116509519893,51.87259661968917],[6.391067834847498,51.87244312789537],[6.391047732329667,51.87237589199708],[6.391026998301071,51.872323304415325],[6.390945481895299,51.87231779898459],[6.39087247929774,51.87230662063287],[6.390785909067604,51.872264645375736],[6.390763331674564,51.87225113927115],[6.390703356028041,51.87221526482168],[6.390603988910772,51.87215619404832],[6.390545495818803,51.8721145090078],[6.390514793441506,51.87209415083474],[6.390497569465752,51.87207715618355],[6.390466620134167,51.87205223374643],[6.390444297904336,51.87202346224652],[6.390423816687,51.87200105713169],[6.39040585731892,51.871971268555335],[6.390394343229837,51.87195049470726],[6.390354012317246,51.87189101816301],[6.3902631151832,51.87172200339556],[6.390219947013494,51.87163881135634],[6.390102884809942,51.87142556088151],[6.38989698201481,51.87105330030247],[6.389788031069502,51.8708526725732],[6.389691393740835,51.87068652889882],[6.389675029296817,51.87065854235168],[6.389662341805156,51.87061766128862],[6.389593780806814,51.87045179916329],[6.389499426352782,51.87022249779193],[6.389372078732155,51.869907022711274],[6.389285997081596,51.86969308449562],[6.389152498648627,51.8693731762097],[6.38907902355755,51.86919643420067],[6.389039470923599,51.86910129158974],[6.38891496670846,51.868809540425715],[6.388800362774634,51.868535862252216],[6.388783624947378,51.86850147866744],[6.388776623137682,51.868482427991694],[6.388772794006401,51.86846696378863],[6.388764894833873,51.868432387942484],[6.388742710188527,51.86835422092488],[6.388715883137972,51.86824687956849],[6.388669132838168,51.868049441584624],[6.388627173247913,51.867883909280266],[6.388602823309212,51.86779389535026],[6.388596511805494,51.86777518934242],[6.388529900854603,51.86757783081043],[6.388459095422473,51.86737269665406],[6.388419429017398,51.86727296147003],[6.388401582689442,51.867219395972526],[6.388386587293258,51.86718954585629],[6.388366805439902,51.86715339937821],[6.388330063648169,51.867104822045135],[6.388274684336869,51.867040196628615],[6.388217627525512,51.86697195397218],[6.388185835270637,51.866932422174855],[6.388158681210054,51.86689643739685],[6.388132731568454,51.86685584901392],[6.388072888451534,51.86676480721518],[6.387985058289445,51.86662315373319],[6.387864850680911,51.86643192369604],[6.38775769974539,51.86626235338771],[6.387602022300247,51.86601885826179],[6.387554926038519,51.86594398648777],[6.387518981310733,51.86588350080283],[6.387502161684564,51.86584665477269],[6.387475727308282,51.86579139149484],[6.387466044614321,51.86577187818134],[6.387455874748022,51.86574873750027],[6.387455322829737,51.86573631953608],[6.387374603706315,51.865679900734115],[6.387336756776515,51.86564943616429],[6.387305760695752,51.8656240908303],[6.387284641521804,51.86559629726823],[6.387255759624127,51.86556742823824],[6.387231439332057,51.86553605738447],[6.387134652975769,51.86542629129992],[6.387094882808585,51.865380480996045],[6.387074771915655,51.865352966454154],[6.387060575812359,51.86532700155879],[6.387040573590722,51.86525536854018],[6.386989135792162,51.86505298095509],[6.386854603272828,51.86445118677994],[6.38685105581735,51.86442548175029],[6.386849489004701,51.86440266327153],[6.386854754688598,51.86438088325927],[6.386870188689255,51.86434756479456],[6.386902683287679,51.864294676021665],[6.386963523970808,51.86418647081566],[6.387014443972529,51.86412905648582],[6.387042449004595,51.86410217485685],[6.387068888193433,51.86408323477265],[6.387140120677874,51.864044802741034],[6.38721749168462,51.863997095757256],[6.387356073682817,51.86391082619462],[6.387434812806312,51.86386198379506],[6.387457430484911,51.8638383480159],[6.387459454746697,51.86383601163037],[6.387519211440961,51.86375946529698],[6.387577803527789,51.86368540080496],[6.387590153539524,51.86366294914055],[6.387604362620282,51.86361636439357],[6.387655834254821,51.86342775196479],[6.387684273201899,51.863288514118345],[6.387702813386932,51.86319773892824],[6.387757680903835,51.862964045089264],[6.387784069946409,51.862842991262696],[6.387844925002451,51.86255867473204],[6.387883944218433,51.86235599279809],[6.387922960406065,51.8621753876314],[6.38796945071418,51.861967904811415],[6.387983981745084,51.861910377755365],[6.388008494969315,51.86189761126683],[6.388058720503629,51.861900535928704],[6.388101487614565,51.8618944992954],[6.388155570528983,51.86189265387161],[6.388198222084836,51.86188990812934],[6.388253326179309,51.86189415742285],[6.388305590489535,51.86189736122765],[6.388360359106525,51.86189958183823],[6.388393051323675,51.86190075922626],[6.388434349621641,51.861901791293036],[6.388474962402765,51.86189876620483],[6.388519317006457,51.8618942619713],[6.388555051209276,51.861889912153686],[6.388618508665574,51.861876786368505],[6.388716808807111,51.861849915886665],[6.388802861729963,51.861821370012976],[6.388845159371861,51.861804685253816],[6.388901378089688,51.861787917647376],[6.388914017283851,51.861785032223196],[6.388933950962728,51.86178047553704],[6.388957481486933,51.86177444992821],[6.388999681680123,51.8617729572041],[6.389116501435524,51.86182867126842],[6.38915499661204,51.861852477939955],[6.389180353163009,51.86186521453687],[6.389205024144292,51.86187389399217],[6.389231632961285,51.86188614347704],[6.389262304818163,51.86189895154188],[6.389298508151681,51.861905240364095],[6.389319332339354,51.861906770492894],[6.389340492269167,51.861910338234765],[6.389377045880567,51.86191866452559],[6.389425127895612,51.861912689902596],[6.389466076163926,51.861911693101014],[6.3895143927852,51.861911037874066],[6.389541084156593,51.8619080863349],[6.389572304054699,51.86190443094259],[6.389603188395289,51.861898746913226],[6.389636212214081,51.86189004230971],[6.38967511789224,51.861876864923815],[6.389708708085625,51.86186360707367],[6.389758340730376,51.861835353536456],[6.389814305938443,51.86180135591173],[6.389865876520145,51.861776681341446],[6.38989991755679,51.86176216113718],[6.389919236424729,51.86174695767342],[6.389944552111362,51.86172397251786],[6.389982021941524,51.8616431117939],[6.39003111674159,51.86153275800472],[6.390048511907207,51.86151397538679],[6.39008345482003,51.86149693951614],[6.39034231956233,51.861403463291296],[6.390378518468206,51.86139784150727],[6.390420368157177,51.861394319770994],[6.390457036714183,51.86139934581127],[6.390482158638407,51.86140676269693],[6.390514198098271,51.86141579239273],[6.39054238008603,51.861429574229305],[6.390647259534687,51.86152467038378],[6.390720196140171,51.861595526746875],[6.390879465538499,51.861568429864775],[6.390976746430748,51.861547373030504],[6.391039751749524,51.86153550824309],[6.391090524447379,51.86152196822661],[6.391130681186744,51.861508285264456],[6.391165388865053,51.86148592964395],[6.391201233201105,51.861466368832666],[6.391237394409065,51.8614369354723],[6.391273353983352,51.861414083710244],[6.391310891058071,51.861404674848444],[6.391340086215105,51.861400739667474],[6.391388052311727,51.86139806415855],[6.391439078572237,51.86140175356961],[6.391463899832337,51.86114717292325],[6.391478851114244,51.8609798781653],[6.391489157227521,51.86089133008255],[6.391492391195065,51.86085539169954],[6.391499482088728,51.86081468316108],[6.391508832243009,51.860779582354134],[6.39151602856219,51.86074750227084],[6.391546399457646,51.8606954393128],[6.391585827026065,51.8606419684981],[6.391613947699251,51.86060812732792],[6.391637103367128,51.860576243272554],[6.391665924260559,51.86054645908768],[6.391715199543333,51.86050426595213],[6.391803239464484,51.86042835622466],[6.391883517333085,51.86038909774974],[6.391966519586814,51.86035417552458],[6.392000659807851,51.86033637289484],[6.39207597705072,51.8603109817002],[6.392327946934063,51.86022778942731],[6.392621759662605,51.860129172809884],[6.392801001431507,51.86006709712675],[6.393321311535349,51.85988775936877],[6.393394137516717,51.85986334149583],[6.393445924475238,51.85984398490738],[6.393577104530698,51.85979980344398],[6.393741770935971,51.85974564465414],[6.393886184890433,51.85969732233095],[6.393962737405665,51.85967143391618],[6.394050836032084,51.85964316323337],[6.394116092243846,51.859624994210556],[6.39423595999636,51.859588513661244],[6.394315016364192,51.859561650708734],[6.39438252648409,51.85953716995508],[6.394479666691775,51.859507499998735],[6.394575569170883,51.859478316995656],[6.39467982717504,51.85944365986103],[6.394740218878392,51.85942416592132],[6.39479733404132,51.85940487086401],[6.394851945339176,51.85938656807518],[6.394896963189327,51.859374217380136],[6.394942081536107,51.859358575859844],[6.394967413016491,51.85934749078696],[6.395028921421928,51.8593188813331],[6.395145256315566,51.85926538718145],[6.395232997642773,51.859223176851835],[6.395304228343893,51.859185315063044],[6.395374657824532,51.85914668706413],[6.395448027450928,51.85910581350522],[6.395465103457107,51.85909690263755],[6.395483296717934,51.85907889437084],[6.395556976534503,51.859016237919874],[6.395619245066174,51.8589645740247],[6.395668514910472,51.858922379236056],[6.395688631712919,51.858907940991],[6.395720489559962,51.858872619481836],[6.395798005094275,51.858793291423865],[6.395868387634968,51.85871893255628],[6.395967236427635,51.85861275992318],[6.396094335676684,51.8584813551955],[6.396216805490097,51.85835393625467],[6.396312161316657,51.85825456200095],[6.396393051150201,51.85817172581038],[6.396462644953173,51.85809659131373],[6.396509538586137,51.85805208845618],[6.396556532527605,51.85800429477032],[6.396588624495275,51.857974292443856],[6.396708743469793,51.857868394687976],[6.396762989846053,51.857824232992726],[6.396805160004558,51.85779892603511],[6.396899643885158,51.857737797669394],[6.396983633271285,51.85768514617088],[6.397043880354552,51.85764512156061],[6.397111144663644,51.857603409550755],[6.397192980062326,51.85755376974264],[6.397222372903,51.85754325148464],[6.397282189167573,51.85751639024319],[6.397339852085745,51.857492549802515],[6.39741707928222,51.857458814944714],[6.397469763380134,51.85743694091751],[6.397500858622249,51.8574246640853],[6.397621283311998,51.85738362682816],[6.397766250842721,51.857330737497165],[6.39791686865365,51.85727994768733],[6.398065097100223,51.857226850126246],[6.398217867627487,51.85717304807422],[6.398359879270115,51.857122403724624],[6.398447634221273,51.857092101150144],[6.39852949437915,51.85706628083813],[6.398607191695071,51.85704320200405],[6.398677971790818,51.85701851078261],[6.39872851571002,51.8569996389484],[6.398763687718526,51.856987928904445],[6.398803036952408,51.85697347718331],[6.398829253179521,51.856959875724506],[6.398869503718312,51.85694289931321],[6.398896070353729,51.85693132631703],[6.398931457027957,51.85691302548747],[6.39897272376835,51.85689024242262],[6.399017481298939,51.85686066058985],[6.399085979880413,51.856818451385166],[6.399134013340825,51.85678866148841],[6.399182511714044,51.856757600124446],[6.399206117216629,51.85673636251987],[6.399246010640486,51.856705456215884],[6.399284201160831,51.85667629045495],[6.399337421210267,51.85662604189508],[6.399429282113667,51.85654536516691],[6.399523846803651,51.856457123334195],[6.399631622961154,51.85635283009992],[6.399719520304026,51.85626830410377],[6.399785500483274,51.85620326634142],[6.399826394276426,51.85616653536548],[6.399865836131352,51.85613689118899],[6.399892280683074,51.85611669863076],[6.399925506583987,51.856089508105114],[6.399951049808509,51.85607184021015],[6.399985298078184,51.85605073534111],[6.400036841974239,51.8560260564433],[6.400102298362239,51.85598938309242],[6.400153505939988,51.85596266655726],[6.400220435638862,51.85593083444776],[6.40030273649679,51.85589184028938],[6.400364236785791,51.855863228049635],[6.40043273961689,51.855832937323704],[6.400712679619228,51.85571917464741],[6.400847109342846,51.85566285776229],[6.401036593294757,51.855586963739036],[6.401169770283518,51.85553113371225],[6.401320256797393,51.85547172920223],[6.401390360660069,51.85544297017273],[6.401473117500702,51.855414632114986],[6.401562440268894,51.85538585972246],[6.401646799376479,51.85535906277996],[6.401732281057882,51.85533506062084],[6.401863010748093,51.855304033438806],[6.402024618260342,51.8552673098393],[6.402234048249925,51.85521929587311],[6.402694427769173,51.8551176940352],[6.403071563271011,51.85503379095028],[6.403254190076647,51.854992011726516],[6.403461929555301,51.854945745050664],[6.403607713350572,51.854917435064664],[6.403833082962575,51.85486961278929],[6.404053152360876,51.854821728126666],[6.404293004757498,51.85476926705047],[6.404508095104842,51.85472334830475],[6.404699323942686,51.85468142035107],[6.404862164238295,51.854644205715125],[6.404951605815003,51.85462405906951],[6.405010520649363,51.85461162889166],[6.405093547174616,51.85460051771229],[6.405225181432044,51.85457887235312],[6.405376048808245,51.85455721282536],[6.405478858591683,51.85454153417367],[6.405565596700862,51.85452895222994],[6.405599199418876,51.854527599996125],[6.405691274406216,51.854526989866834],[6.405925885744681,51.854522104419864],[6.406105171917833,51.85451955947802],[6.406356076767863,51.854516895824915],[6.406552221318364,51.854512028499904],[6.406738523895697,51.85450779465921],[6.406815893110671,51.85450649338603],[6.406911358054888,51.854502383121236],[6.406972784215649,51.85450087866711],[6.407009197599334,51.85450057129437],[6.407065186825013,51.85449038576748],[6.407134629891906,51.8544813777177],[6.407200782753131,51.854472586985835],[6.407285946624366,51.854458462360284],[6.407336507205881,51.85445149697741],[6.407392481782466,51.85444131142083],[6.407505109278525,51.85441308698483],[6.40759625123349,51.85439117967869],[6.407665556896866,51.854373561101504],[6.407710452101503,51.85436449645316],[6.407734540504499,51.85435390479336],[6.407779962572763,51.85432838577383],[6.407855252029345,51.8542910742172],[6.407923174128252,51.854253422175994],[6.407974825466594,51.85422543987283],[6.408011671557301,51.85420005826472],[6.408102383249433,51.85412849039586],[6.408108038263603,51.854123739993916],[6.40818022830777,51.85406308393083],[6.408297256019445,51.85396270216203],[6.408405479890837,51.853869057674444],[6.408511565069676,51.853778416021534],[6.408618436740671,51.8536885494632],[6.408699319247526,51.853617614975704],[6.408789118711915,51.85353665206085],[6.408814633450838,51.85350707209918],[6.4088552950744,51.85346501847268],[6.408904973274465,51.85340964563201],[6.408929464282943,51.853373980050876],[6.408953291409723,51.85334615860277],[6.408958200049561,51.85323371811209],[6.408956421455881,51.85303834090587],[6.408956466385618,51.852924576429714],[6.408959767210174,51.85286152620337],[6.408963404379796,51.85280050455009],[6.408972569230082,51.85273297172534],[6.408983796120379,51.85267762793602],[6.408998502895171,51.85260357482313],[6.409009762209166,51.85257204246391],[6.409033442170096,51.85252369152391],[6.409055543063507,51.85248570959091],[6.409086712971323,51.85244631833323],[6.409120129349788,51.85241253458782],[6.409169469915525,51.85235514204591],[6.409108822050941,51.852317242342906],[6.409105729363179,51.8523153096789],[6.409072332767924,51.852298170871705],[6.409061230700101,51.85228739090252],[6.409041875340859,51.85227878619764],[6.409020030986338,51.85227115598622],[6.408985406293422,51.85226641461298],[6.408927700235098,51.85225453917244],[6.408889463519936,51.85224797749036],[6.408841821250199,51.852240787536765],[6.408773071188577,51.8521791105126],[6.408721410067537,51.85213234120649],[6.408692081640039,51.85210384980428],[6.408650171541212,51.85207164758604],[6.408578368624792,51.85201549825178],[6.408501351492895,51.85195599642334],[6.408407483002191,51.85188691512252],[6.408349271458483,51.8518405711937],[6.408300336943501,51.851798146611266],[6.408164536109119,51.85168494361539],[6.407946260261959,51.851491647128675],[6.407796175073033,51.85135267977604],[6.407545735594619,51.851129836906466],[6.407434057217605,51.851029861847664],[6.407269820401083,51.85088564145358],[6.407062668189651,51.85070313228843],[6.406845875672771,51.85051466594205],[6.406670091215029,51.850360926869605],[6.406497834594196,51.85021229857754],[6.406308676574947,51.85004217141118],[6.406182963517812,51.84993365169921],[6.406049662578189,51.84981947176515],[6.405987593198813,51.84976597800601],[6.405881594474964,51.84968001090386],[6.405790659378909,51.84960868181501],[6.405709015097613,51.84954126312476],[6.405671873214683,51.849513683744824],[6.405612293628804,51.84945921535712],[6.405539689413067,51.849390387746254],[6.40546108476955,51.84931743229021],[6.405400719116903,51.84926219756738],[6.405344438108202,51.84921942201379],[6.405281019139182,51.84916971495118],[6.405206400401551,51.849112527317246],[6.405194162601811,51.84909894329967],[6.405184413516914,51.84908437587819],[6.405159601800202,51.84905517925107],[6.405150066558977,51.849034021075745],[6.405139508359399,51.84900677726738],[6.405134736922324,51.84899025202527],[6.405033490505468,51.848908899226394],[6.404936557573493,51.848833432652455],[6.404861883563036,51.848796227705975],[6.40503569170609,51.84866794945329],[6.405091260106577,51.84862468915179],[6.405141179877972,51.84858003059421],[6.405170209338891,51.848549288313514],[6.405190828847445,51.84852981919527],[6.405212741058738,51.84849755658063],[6.405239746024545,51.84845559566015],[6.405265296581493,51.84841350352565],[6.405292893066608,51.84836882279943],[6.405307973396561,51.84834060153073],[6.405321350199411,51.84829288902562],[6.405329758194855,51.848247520791915],[6.405334257274551,51.84820643823761],[6.405340516876759,51.84815720541474],[6.405340550895563,51.848109294038764],[6.405341052972277,51.84806603487609],[6.405335314978895,51.84802409728627],[6.405327355061443,51.84797183269395],[6.405308739060515,51.84786616732127],[6.405281411866703,51.84773212749504],[6.405265273767951,51.847642324087204],[6.405254873788042,51.84759446725997],[6.405242698591818,51.84755475183752],[6.405228192468222,51.847512081290986],[6.405214475323198,51.847465790342696],[6.405200831563959,51.84742595281964],[6.405185536367449,51.84738689367939],[6.405161976894762,51.847337937475544],[6.405150840078342,51.84731397066002],[6.405122385548405,51.84727382112755],[6.405096079165153,51.84723752719353],[6.405069846365582,51.84720769566806],[6.405013851799032,51.847150499208304],[6.40496495265159,51.847108630268735],[6.40488609500682,51.847040314927256],[6.40477542993562,51.84694721413225],[6.404650867646516,51.84684282673959],[6.404538661677291,51.84674315018562],[6.404436262477495,51.84665996414476],[6.40438211085357,51.84661489548175],[6.404297014861084,51.84654789227039],[6.404164351591454,51.846446504970544],[6.40402236548069,51.846333287941704],[6.403937073196969,51.84626718506881],[6.403901087519349,51.84624115021167],[6.40385897130326,51.84620906495513],[6.403803746732346,51.84616206371162],[6.403739074741393,51.84611058687591],[6.403703286464359,51.846083642365734],[6.403651255365503,51.84604243822934],[6.403604083254633,51.84600624377747],[6.403575484992098,51.845987273078386],[6.403544161262898,51.84596714842269],[6.403513107837274,51.8459525675977],[6.403486248703186,51.84593927181986],[6.403442839708744,51.84591997090306],[6.403393585656167,51.84590019023261],[6.403360004416832,51.84588356379723],[6.403326817740008,51.845865127158106],[6.403295976336025,51.845849645546075],[6.403254613690807,51.84582776499413],[6.403230874519114,51.84581380393261],[6.403198082488821,51.84579355706295],[6.403173678374082,51.84577585335598],[6.403152774121196,51.84575567435419],[6.403133338663475,51.84573562645743],[6.403117417574617,51.845713103143034],[6.403101891047037,51.8456887696331],[6.403088695248653,51.8456673912874],[6.403074622812742,51.84564318002145],[6.403042729797713,51.84557786374222],[6.403015315612909,51.84551936725402],[6.402988244945277,51.84547287701795],[6.402953210296881,51.84542204213081],[6.402872641660217,51.84530013019405],[6.402792569580228,51.845180910589576],[6.402719871668342,51.84507268352681],[6.402599126918881,51.84488937396999],[6.402482072608432,51.84471650448715],[6.402410434810228,51.844608241097774],[6.402392578438731,51.844580952308135],[6.40238056699889,51.84455414330446],[6.402377484042432,51.84454099217731],[6.40237660787299,51.84450406417654],[6.402379136274812,51.84447202367928],[6.402377865541989,51.84443690586939],[6.402379517973702,51.844367946357686],[6.40238205515318,51.84425390861471],[6.402386543469346,51.844110550026365],[6.402393099971706,51.84395078669481],[6.402396119720403,51.84380730596985],[6.402402480175448,51.84354616698083],[6.402405609197345,51.84342941843249],[6.402406275075186,51.84336497989724],[6.402408124010613,51.84332919688104],[6.402409666049074,51.84330168635114],[6.40241956644432,51.84327671930024],[6.402425879478994,51.84324776522189],[6.402437248343378,51.843222920300114],[6.402456719519182,51.84319505690983],[6.402469754217567,51.84316943351295],[6.402489926979904,51.843131496425706],[6.402533640552215,51.843074344045995],[6.402579721275625,51.843006330497026],[6.402670289642472,51.84287754423967],[6.402765964481239,51.842739050598134],[6.402850971800291,51.842615328147495],[6.402923477795726,51.84250806472879],[6.402994932505186,51.842410824050795],[6.403010223105608,51.842390017116614],[6.403074699080521,51.842292216555144],[6.403135733544451,51.84220333581932],[6.403194809924238,51.84212351488468],[6.403227102450355,51.84207093760144],[6.403284118182746,51.841993705298684],[6.403322072450857,51.84194251719886],[6.403346510717157,51.84191230947113],[6.403375449549555,51.8418751143094],[6.403404278576859,51.84184527305223],[6.403461725063589,51.84178650922072],[6.403542045750224,51.84170476926151],[6.403593734751825,51.84165196995384],[6.40365840609451,51.841587354563714],[6.403692414734184,51.84155426830308],[6.403712622707311,51.841536609756275],[6.403805581902388,51.84146514237348],[6.403879304753396,51.84140681262357],[6.403983003051255,51.84132703615745],[6.404004679240233,51.84130949967185],[6.404022446780376,51.84129623983403],[6.404088745842158,51.84121057594655],[6.404151713133608,51.84112646901311],[6.404224557386131,51.84103121104716],[6.404292433301677,51.84093829726502],[6.404332431234387,51.84088452026703],[6.404353872707226,51.84084761455559],[6.404383313873522,51.840801246045864],[6.404404879163691,51.840756977298774],[6.404422003216788,51.84072616755058],[6.404443652625366,51.840672136063645],[6.404444861365859,51.84066911428681],[6.404463489712394,51.840624601317],[6.404483301361537,51.840574657747624],[6.404515948616646,51.840500000140416],[6.404544687053641,51.84042961020582],[6.40456126974882,51.840387694781604],[6.40458348517249,51.84034716875463],[6.404607183668263,51.84030677368853],[6.40462920169069,51.840267148258775],[6.404662652954678,51.84022295618722],[6.404683969993622,51.8401934134409],[6.404695410117334,51.84017502172999],[6.404718283285134,51.840152054387744],[6.404741807146517,51.84013283878145],[6.404760362869749,51.84011595843235],[6.404812100379694,51.84008342822889],[6.404897903200368,51.84002426495123],[6.405004877231454,51.839956738042616],[6.405134782775395,51.839872706159944],[6.405195592893984,51.83983263625263],[6.405243530831424,51.83979702863596],[6.405327396395942,51.83973309971754],[6.40539614661636,51.83967711328808],[6.405435390840315,51.83964722608469],[6.405529080133682,51.83955186729137],[6.405587594920067,51.83949503471285],[6.405641842433691,51.83943046369128],[6.405741534744491,51.839314413979864],[6.405824125461574,51.839215366917884],[6.405937316199467,51.83907833649407],[6.406040162137904,51.83894781388428],[6.406105002305262,51.8388826472883],[6.406104935980096,51.838870737496464],[6.406109398110646,51.83885951649114],[6.406116450737994,51.83884542349382],[6.406126661010189,51.83883300199167],[6.406140939959315,51.838817623749556],[6.406159395572208,51.838800213690924],[6.40645407605034,51.83865445150332],[6.40659042591958,51.8385880792197],[6.406665421067879,51.838550420189115],[6.406724770705727,51.8385062272313],[6.406778357433902,51.838463225910964],[6.406791279977211,51.83844883916846],[6.406841342401631,51.83840143688283],[6.406884638107013,51.838358956399865],[6.406911839118193,51.83832919130999],[6.406942390120862,51.83829101040447],[6.407018868157698,51.83819648309283],[6.407169232684175,51.83801029134731],[6.407234021452223,51.83792825227268],[6.40730857889853,51.83777333564816],[6.40735617667813,51.837672919695116],[6.407393508952593,51.837595919317145],[6.407412060179329,51.83755651223725],[6.407426964690587,51.83751177943885],[6.407468162080544,51.83741901475045],[6.407481547225359,51.8373853605636],[6.407506891096747,51.837330028892865],[6.407524804506283,51.837297063433795],[6.407553049734646,51.837252592155686],[6.407641134489741,51.837110744475574],[6.407715874927361,51.83699155708823],[6.407726980667998,51.836974507325515],[6.407736133891726,51.836953896935846],[6.407760665472571,51.83689219909512],[6.407774402307204,51.83686127445592],[6.407799163523405,51.836801390378824],[6.407838354527965,51.83669314602512],[6.40787302833584,51.83660711671413],[6.407890982223434,51.83656315734105],[6.407904122351019,51.83652768047109],[6.407909684279567,51.83649075038277],[6.407939373427927,51.83634357654415],[6.407953424970604,51.836269574037786],[6.407963248224057,51.836185711462925],[6.407967000881671,51.83614706223863],[6.407970833286345,51.83610745050137],[6.407976083848693,51.83605678798183],[6.408041395079429,51.83599030376518],[6.408141267298491,51.83589367546683],[6.408089288903628,51.835880698176965],[6.407975205134699,51.83584517747783],[6.407884710989561,51.83582038206193],[6.407804329659429,51.83580516175514],[6.407721888112522,51.83578546482989],[6.407676146348749,51.83577492306186],[6.407632113025786,51.83576613724491],[6.40753779514115,51.8357461119977],[6.407417542442762,51.83572006483275],[6.40738263198825,51.83572455720325],[6.407339125041799,51.83573131760441],[6.407298452343082,51.835737010631085],[6.407251135762498,51.835748541300106],[6.407202814995959,51.835763784130755],[6.407152556292861,51.83577546617916],[6.407105483845218,51.835788810437116],[6.407060987127377,51.83579928278915],[6.407027010700125,51.835811065971924],[6.406956604128499,51.835838411016866],[6.406902872913356,51.835857583972036],[6.406840275381313,51.83587928793097],[6.406834934173487,51.835881141123295],[6.406739892635198,51.83591246646774],[6.406640674780269,51.83594583255464],[6.406531410718867,51.83598153306498],[6.406478575791235,51.83599608670107],[6.406455527063988,51.836000907230066],[6.406422080287604,51.836005332665515],[6.406270761857746,51.83602481356398],[6.406129855650161,51.83604468027029],[6.406062961960533,51.836053530946366],[6.405944630363916,51.83606494056591],[6.405791603366351,51.83608267384108],[6.405654399001337,51.836096862774404],[6.405505425955861,51.83611164806737],[6.405218192359648,51.83617094152495],[6.405148145839979,51.83618540117263],[6.405013597400496,51.836208627183815],[6.404873164199989,51.83623213778841],[6.404760293764747,51.83625152598651],[6.404628672528986,51.83627460032513],[6.404530512850773,51.836293249502866],[6.404386254865083,51.836321538850164],[6.40428526040939,51.83634124612423],[6.404178747772649,51.83636397647937],[6.404112327101754,51.836376462466255],[6.403983891577846,51.836401207382806],[6.403924697010313,51.83641241714012],[6.403842166676622,51.83643760911365],[6.403735597237097,51.836471342038536],[6.403642668757012,51.83649614753173],[6.403540317297422,51.83651683672159],[6.403436394404033,51.8365366944687],[6.403339575436417,51.836554360225314],[6.403216779391498,51.83657699699082],[6.403140067505031,51.83658999400878],[6.403080276241752,51.83659664211374],[6.403052820683109,51.83660167989971],[6.403014492962921,51.83660267687602],[6.402991852054187,51.83659923233991],[6.402974743655451,51.83659275557556],[6.402957799520217,51.8365761917788],[6.402954562154932,51.83656261052313],[6.402953656603334,51.83654433482615],[6.402997884274211,51.83646332104777],[6.403035396246484,51.83639914776807],[6.403078103110923,51.83632920353738],[6.403152273035638,51.83620547563725],[6.403162647749634,51.83618875624555],[6.403224447865853,51.83608916287138],[6.403289748150739,51.83597686472521],[6.403330544252881,51.83589236584094],[6.403385094236024,51.83577694267976],[6.403439385168956,51.835659696975135],[6.403486651896058,51.835556543839445],[6.403540482779706,51.83543565254942],[6.403589156431575,51.83534342674253],[6.403627009357435,51.83525907908011],[6.403669094553777,51.83516167873142],[6.403720062637521,51.835052848360995],[6.403753631120245,51.83496962543106],[6.403790141503467,51.834886251157634],[6.403812561016704,51.83483107146726],[6.403840676960731,51.83476278146224],[6.403864184591775,51.83468189290046],[6.403891432500227,51.83461822173755],[6.403899507657566,51.834566510203395],[6.403906888397953,51.83453224326514],[6.403919491504951,51.83448122060213],[6.403940202639466,51.83442429384898],[6.403958051779372,51.83437941911774],[6.403981648515522,51.83433334399296],[6.403996850918436,51.83430234417527],[6.404030156073913,51.8342512050299],[6.40407354870672,51.83418672873107],[6.404123641917306,51.83410542993595],[6.404204261304421,51.833963038258084],[6.404248591959745,51.833882939935826],[6.404276134456262,51.83383300124892],[6.40431170464535,51.83376525775263],[6.404383863152639,51.833626040468594],[6.404450963272128,51.83349350084074],[6.404501748989681,51.83339474829232],[6.404553876347258,51.83329502226841],[6.404634812740928,51.833189266521245],[6.40472572852657,51.833069275552084],[6.404773661387835,51.83300548770697],[6.404825403948673,51.83293693860752],[6.404883709621981,51.832850642285045],[6.404929296109058,51.832791548982335],[6.404951615396659,51.832758365905164],[6.404984781573873,51.8327063107973],[6.405018966455034,51.83265054339041],[6.405043509248177,51.83261174987275],[6.405084135278731,51.83253733739769],[6.405136978604697,51.83244307016914],[6.405150349534226,51.83240941635298],[6.40517276616788,51.83235423639392],[6.405192321262315,51.83231110848805],[6.405214493681626,51.83225411486802],[6.405234048693267,51.83221098695491],[6.405242131785361,51.832182179110404],[6.405265232137255,51.8320866507325],[6.405270453738682,51.832069894945384],[6.40532463773499,51.83197464518112],[6.405370428121568,51.831894470803576],[6.405395974429959,51.83185196504356],[6.405440489098484,51.83178468289095],[6.405503024081541,51.831685351489455],[6.405597733706446,51.83153767681268],[6.40563673036876,51.83147341781884],[6.405680281891324,51.83139886286642],[6.405712634688372,51.83134043242869],[6.405747333158882,51.83127730735777],[6.405770818899499,51.831230324913406],[6.405830451751615,51.83112013287829],[6.405871319489961,51.83104754276307],[6.405923654187032,51.83098353641532],[6.406035059712032,51.830850602125004],[6.4060498000685,51.83081596549391],[6.406082789702457,51.83075109331555],[6.406127277428316,51.8306609072303],[6.406193852416654,51.830535715046665],[6.406243815504308,51.83045349951904],[6.406288965232907,51.830379775402115],[6.406340161936903,51.83029567042149],[6.406356717405799,51.830263687704345],[6.406374548011155,51.83021881271978],[6.406402953461227,51.83016425464863],[6.406423781583341,51.83010823426635],[6.406443620262372,51.83005593491791],[6.406475472099093,51.82997096418143],[6.406512911139954,51.82987196705346],[6.406552966624588,51.82975909518226],[6.406566472295,51.82972634789785],[6.406606441091689,51.82965837664984],[6.40668188001368,51.829521754079856],[6.406723734301746,51.82944544262135],[6.406738647712351,51.82942362265621],[6.406758726034681,51.829396040825344],[6.406796496365447,51.829356592627086],[6.406846304380031,51.82930736767698],[6.406895596977887,51.82926550015993],[6.40694207012849,51.82922469984579],[6.407002518683531,51.829177692513554],[6.407060621806608,51.82913538878836],[6.407134586220642,51.829078546829315],[6.407162837388742,51.82905697042404],[6.407175879219446,51.82904349045481],[6.407182211364884,51.82902392934681],[6.407186794559901,51.82901362410219],[6.407195461314773,51.82896646454203],[6.407198948528759,51.82892505800339],[6.407203032077849,51.82888820368748],[6.407209883070755,51.828838381197585],[6.407208083171521,51.82880182073018],[6.407201800452307,51.82873066473571],[6.407199418731014,51.82868955191842],[6.4072082077034,51.82864330816744],[6.407220913050625,51.828593192078564],[6.407233754962072,51.82854398268653],[6.407242421580827,51.82849682312058],[6.407259368908983,51.828456575991815],[6.407274581603247,51.82842557561272],[6.407322669421193,51.82835170865745],[6.407360315891358,51.82831133547758],[6.407385436173779,51.82827709381012],[6.40740828115423,51.8282365526753],[6.407430704168898,51.828204285056984],[6.407451081562304,51.82816753174793],[6.407491225386058,51.8280894730232],[6.407304615479719,51.82804199786023],[6.40720555688474,51.82801946976459],[6.40702889502157,51.82799165644917],[6.406484353610661,51.82790986050239],[6.406141435871965,51.827858430917175],[6.405792008013259,51.82780602382148],[6.405746766810123,51.827799238467065],[6.405139321200572,51.82771142041743],[6.405062141309709,51.827697878438904],[6.404591085069065,51.82763530183866],[6.404212570521324,51.82757910342309],[6.404068077199203,51.82755975309289],[6.403875679153414,51.82754737964213],[6.403637671188998,51.82752538730138],[6.403422219531776,51.82749492027726],[6.403150175165628,51.82747279027452],[6.402841790794249,51.8274442324961],[6.402694708618903,51.82742776138149],[6.402538234683739,51.82740717351104],[6.402203030805715,51.82735429728351],[6.401934028891781,51.82731002529771],[6.401818442812536,51.827262655286034],[6.401707045309304,51.8273387752875],[6.401623735886353,51.82740341613026],[6.40149248644589,51.827508930680445],[6.401342676009478,51.827630947448256],[6.401235273332363,51.82771511353644],[6.401064016372018,51.82784278057834],[6.400925173321828,51.827946840955406],[6.400821363651011,51.8280244136667],[6.400577726641137,51.82823267105429],[6.40035906256557,51.8284167656849],[6.400289374082992,51.82847247874839],[6.400214411916906,51.82853302841737],[6.400133444151404,51.8285929647009],[6.400093666869903,51.82861694007333],[6.400039547027489,51.82864438313553],[6.399958679278197,51.828682331434635],[6.399918363506261,51.828690751504084],[6.39943139604192,51.82885893922968],[6.399303868705128,51.82890195486813],[6.39912603043305,51.82896765195642],[6.399007205946505,51.829009324767306],[6.398908226825371,51.82904449811229],[6.398783934218161,51.82910110355898],[6.39851501408974,51.82921715904438],[6.398093829652271,51.82940220371567],[6.397925867323602,51.82947565224178],[6.397791297710318,51.829532767628095],[6.397470761597444,51.829661472244084],[6.397348704441495,51.82971246576689],[6.397222104895251,51.82976276116801],[6.39709686149073,51.829812082939945],[6.396982911654916,51.82985717246374],[6.396895223144514,51.829888120987626],[6.396123652826378,51.830142889171775],[6.396098137192891,51.83015148627638],[6.396064693717849,51.830155908754584],[6.395987044137565,51.830161619180714],[6.39590622316835,51.830165648918204],[6.395748386694472,51.830146043471984],[6.395535504102119,51.830112699342436],[6.395329876076881,51.83007807000002],[6.395249040690417,51.8300820994093],[6.395142352968644,51.830092004898425],[6.395039636078423,51.83014386358227],[6.394726400278005,51.83032901145778],[6.394186100289803,51.83065650583323],[6.39408918715433,51.830696160796606],[6.394011662385631,51.830725680568705],[6.393947963942056,51.83075909971953],[6.393879845263454,51.830792736537624],[6.393770295352957,51.83083760537436],[6.393591435953659,51.830906997184776],[6.393512735227016,51.830927420902036],[6.393205323288226,51.8309977347827],[6.392829498558521,51.83108796044672],[6.392797639520493,51.831093213369115],[6.392682965413748,51.83113283959193],[6.392581171350668,51.83116907437422],[6.392470569150707,51.83122864793013],[6.392408029598271,51.83127117109714],[6.392401402114814,51.83129990262009],[6.392399834317766,51.83132196594199],[6.392392386207367,51.831367235170646],[6.392394344168737,51.83141661266913],[6.392393604089208,51.83146796388261],[6.392388443789059,51.83151953274157],[6.39238101348969,51.83158770565576],[6.392369983563232,51.83163955850842],[6.392343910884685,51.83171233165838],[6.392315838707042,51.83176962498297],[6.392280418649202,51.83182727787564],[6.392261505412988,51.83186395298627],[6.392206166777455,51.831962002008225],[6.392171553030773,51.83200313526223],[6.392134011446752,51.8320444014482],[6.392106164868602,51.83208061370377],[6.39208107554128,51.83210384926607],[6.392039113708891,51.83214534204307],[6.391986052619655,51.83218097916701],[6.391880784336458,51.83224761672199],[6.391819018701091,51.83228459574048],[6.391784644881458,51.83230463875188],[6.391693122540789,51.83234035332793],[6.391656797384417,51.83235682641626],[6.391638291001205,51.8323623332594],[6.39159637037841,51.83236991921411],[6.391540119879874,51.83238097169741],[6.391426018813648,51.832402245315684],[6.391287068471454,51.832425664088724],[6.391254081324687,51.83243373078913],[6.391213350121139,51.83245042121963],[6.391122376670495,51.8325016815251],[6.391029820399758,51.83257502316103],[6.390934488647514,51.832638419723],[6.390851380426163,51.83268196293997],[6.39073105752431,51.8327007901666],[6.390612487212322,51.832710370635674],[6.390442708908378,51.832701431138226],[6.390322536049159,51.832687267235016],[6.390262929625651,51.83268382165671],[6.390109143802338,51.83268416537945],[6.390087329502699,51.83268708446623],[6.390061947730578,51.83269659596858],[6.390001873094781,51.83273533038566],[6.38993269753942,51.83278367082525],[6.389846190016505,51.832846631523324],[6.389748347800299,51.83292575224263],[6.38971792392576,51.83294927556722],[6.38968632720145,51.832976817972714],[6.389663760531687,51.83299417965083],[6.389653528404445,51.83300837071885],[6.389645170223524,51.83302983580969],[6.389641457212031,51.83305140503889],[6.389637457656439,51.833092042264774],[6.38963962675079,51.83314582256002],[6.389625452878699,51.833177827429395],[6.389608096277172,51.833216115790755],[6.389597255906809,51.8332323165835],[6.389567335754351,51.83327001112664],[6.389543824721273,51.8332951472939],[6.38935080154121,51.83333839681169],[6.389229718805551,51.83336491451878],[6.389199413372745,51.83337226558523],[6.389182236139153,51.83337820114438],[6.389057787762413,51.833413880177815],[6.389032127682508,51.83342134435022],[6.388997573518792,51.83342945974342],[6.38884901722026,51.83346281848107],[6.388755238847307,51.83348537220257],[6.38870410095358,51.83349741340226],[6.388678258308322,51.83350776450514],[6.388615439947733,51.833527608879166],[6.388506357722429,51.83356337191653],[6.388325562588036,51.83361963025242],[6.388287770209492,51.83363090121411],[6.388124954246309,51.833679455136576],[6.388068562272458,51.83369339259624],[6.388007707324652,51.833704329831775],[6.387972284236608,51.833704047671965],[6.387880999609765,51.833702399169646],[6.38777267415583,51.83369716549593],[6.387686217511616,51.83369274303563],[6.387639707561843,51.83369825429364],[6.387594828038075,51.83370727529744],[6.387489947314815,51.83373563063078],[6.387377999566025,51.83376525062499],[6.387247029831387,51.83379354945453],[6.386984878084917,51.8338530249413],[6.386851471869415,51.83388270141566],[6.386701313635266,51.83391919921261],[6.386582069737861,51.83394633671928],[6.386529879879035,51.83395286671545],[6.386481953265126,51.833958632278346],[6.386429763177855,51.83396515324281],[6.386378592818616,51.83397055087247],[6.386318696328815,51.833973712622864],[6.386207583662315,51.83397562946217],[6.386111044734664,51.83397587603508],[6.386018740062195,51.8339753583823],[6.38593433907805,51.83397532171107],[6.385860066137226,51.833977275226935],[6.385820622437951,51.83398151211487],[6.385779762475072,51.833986003743355],[6.385740547314183,51.83399400502429],[6.38570640311511,51.834002987880076],[6.385650009980773,51.83401692418015],[6.385461123066818,51.834075584044264],[6.385310003627278,51.83411985466876],[6.38528635265626,51.834125053691636],[6.385261879290677,51.83412849787301],[6.385202804895506,51.83413341389137],[6.385151816881707,51.83413592398438],[6.385010168621584,51.8341414252858],[6.384860022727117,51.83414845487273],[6.38478533806517,51.8341495213023],[6.384726674773165,51.83415531450126],[6.384638481368902,51.8341635609792],[6.38461176949805,51.834165513911266],[6.384591331110814,51.834164438175414],[6.384527962059671,51.834163466648526],[6.384505513497608,51.83416465521701],[6.384485471786365,51.834164457007084],[6.384434103523451,51.834172731927566],[6.384310532276865,51.8341873463461],[6.384227806564913,51.83419746069598],[6.38416064530471,51.83420477303512],[6.384100382830836,51.834213707656716],[6.383904852489469,51.834245041141266],[6.383811039272466,51.834260957347304],[6.383714302221819,51.83426408008695],[6.383603417088473,51.834269758887196],[6.383564566868061,51.83427198544194],[6.383542514881094,51.834274051374],[6.383376300294815,51.834299166398736],[6.38333644511474,51.834302534015194],[6.383317819626102,51.83430208088168],[6.383288655173905,51.8342987688382],[6.383240896072068,51.83430164620276],[6.383198405438249,51.8343026271085],[6.383116273431164,51.83431074008916],[6.383017160114465,51.83432189156176],[6.382964983800064,51.83432841985179],[6.382858910721661,51.834360790201515],[6.382778102331775,51.83438481111534],[6.382707193556482,51.834407058067285],[6.382649016796146,51.83442701265581],[6.382614094998046,51.83444090017134],[6.382585037217133,51.834457515513776],[6.382521514126588,51.834495547190485],[6.382506847675397,51.83451338878165],[6.382488571567093,51.834536627381034],[6.382409481249905,51.834643017038005],[6.382379782418337,51.834684474187185],[6.382358673578752,51.83470822219185],[6.382335737274497,51.834731347476314],[6.382315267804717,51.834759737328845],[6.382224316032886,51.8347817764196],[6.382137263999722,51.83477936843265],[6.382073086555712,51.83477664958791],[6.38200648745288,51.83477530856734],[6.381934451382301,51.834778750766745],[6.381886295053427,51.83478075002832],[6.381823564548289,51.8347844189017],[6.3817495181042,51.834790125260916],[6.381687426726701,51.83479842693331],[6.381620675477379,51.834806624240116],[6.381566076713455,51.834814529761076],[6.381516138177184,51.83482255756842],[6.381468423678006,51.8348320856391],[6.381393827920846,51.83484643479103],[6.381299998045282,51.834862349117266],[6.381263796875273,51.834866952509124],[6.381228372901525,51.83486666831614],[6.381142370772717,51.83486976091161],[6.381035915695662,51.83487178619994],[6.380894036630672,51.834873527097855],[6.38075986366906,51.83487862735829],[6.380695320012591,51.83488167276532],[6.380675277994707,51.83488147390554],[6.380508786485616,51.8348961780075],[6.38032648747718,51.83490992799939],[6.380141781328885,51.83492506439381],[6.37960903050087,51.834957113346135],[6.379332839411923,51.834973480584566],[6.379048972125861,51.83499312110327],[6.37894557709818,51.834998390597924],[6.378868880363294,51.83500171749074],[6.37880127575977,51.83500150676354],[6.378733854456073,51.83499841799139],[6.378692948179829,51.83499626471555],[6.378499245821903,51.83496264667476],[6.378405447902748,51.83494908371374],[6.378348520889918,51.83494221162466],[6.378272799169712,51.83493775446995],[6.378223592634837,51.83493424189484],[6.378177843250714,51.83493486197659],[6.378120960676148,51.83493462323092],[6.378070565744303,51.834935129689114],[6.377869837765356,51.83494553478408],[6.377628203304487,51.83495377690157],[6.377271035713808,51.8349675867217],[6.376971527800616,51.834976729264994],[6.376800924513931,51.83498266262094],[6.376314694231924,51.834943624341804],[6.376218342499893,51.83494389714232],[6.375970048294593,51.834921755474085],[6.375675067069599,51.83489716607461],[6.375463954255738,51.834879995610514],[6.375238315549156,51.834862731343975],[6.375122301090103,51.834852966377184],[6.375018916502402,51.83485673117346],[6.374827408694572,51.83485620381338],[6.374675014453881,51.83485416944528],[6.37461518641416,51.834851275088745],[6.374551650773448,51.834845382631244],[6.374461976673638,51.834836527979405],[6.374354667962495,51.83482543055966],[6.374229724471802,51.834812081336324],[6.374082710501713,51.834794683818394],[6.373976173665273,51.83478238403521],[6.373909926285013,51.83477721517132],[6.373833819360054,51.834771697702806],[6.373704822795498,51.83475943370512],[6.373624438821387,51.83475008682172],[6.373537650129647,51.83473847457729],[6.373494648901715,51.834732067363475],[6.37343806630485,51.83472232253712],[6.373383229268423,51.83470814046341],[6.373289653672203,51.834691380489446],[6.373182698749528,51.83466924063186],[6.373101709266445,51.83465210508414],[6.372949402155379,51.83462020654831],[6.372844387780753,51.834598544473046],[6.372722698217159,51.83457139529056],[6.37259443096335,51.83454401357434],[6.372468089564143,51.83451710993891],[6.372312516396868,51.83448510317109],[6.372113704422312,51.8344417645462],[6.371952498675026,51.83440628092385],[6.371802508405103,51.83437077488534],[6.371706200858514,51.83434778927911],[6.371625775050457,51.834324526534374],[6.371506777413572,51.834289694954535],[6.371432554360502,51.834270739673705],[6.371371104953498,51.83424937604759],[6.371134387874767,51.834158478696445],[6.370872666687373,51.834059349888726],[6.370775524257375,51.834016684787954],[6.370694848130417,51.83397460070985],[6.370632209738821,51.833944599324745],[6.370581990579446,51.83392320409074],[6.37049357547999,51.833886164594254],[6.370408269073876,51.833851283291445],[6.370364851213075,51.833835035561286],[6.370262307382303,51.83380078398136],[6.370161703660515,51.83376700146195],[6.370087273200309,51.83374313013576],[6.370016326508075,51.83371733292148],[6.369969988378765,51.83369690269162],[6.369866818351987,51.83364788721879],[6.369757634044153,51.83359253089569],[6.3696222771092,51.833527263091334],[6.369540420076934,51.833483498198774],[6.369427940485764,51.83342802533697],[6.369376345575255,51.83340004324174],[6.369333888114332,51.83338056007314],[6.369295505171495,51.833366948506914],[6.369233098405564,51.83334881880686],[6.369145290611344,51.83331956661532],[6.369080583108764,51.83330504266694],[6.36903658866756,51.83329491173985],[6.368995905018946,51.83328490590623],[6.368931203981194,51.83327733025626],[6.368822162344953,51.83326370742882],[6.368723001001176,51.83325739074531],[6.368630848960637,51.83326112788587],[6.368547423304852,51.83327049094719],[6.368484510326662,51.83327239239525],[6.368423919247787,51.833277645237644],[6.368384654467689,51.8332881400396],[6.368313814333082,51.83329712802703],[6.368275515445104,51.833311336128155],[6.368179748265125,51.833332955130906],[6.368128863860889,51.833347547056455],[6.368062321014907,51.83336732162399],[6.36801145103991,51.83338191337755],[6.367959621338582,51.833399740151876],[6.367900052259128,51.83342262043653],[6.367811488249695,51.833459226381244],[6.367754818642208,51.83347934074038],[6.367703197491088,51.833502091583966],[6.367649823865915,51.83352232217283],[6.367553311112249,51.833559048269834],[6.367340400114942,51.83364081927454],[6.367082408801705,51.83373860706571],[6.366469353173525,51.833970065835096],[6.366107320095657,51.83410758775804],[6.365778146745115,51.83423234891552],[6.36540392,51.83437313442668],[6.365083650802819,51.83449452045008],[6.364569393645485,51.83468563949656],[6.364341569991375,51.83477138544054],[6.364173887766802,51.83483508380315],[6.364021295087896,51.83489276857363],[6.363844718229572,51.83495983943334],[6.363756523636842,51.83499235823434],[6.363696366221191,51.83501439629504],[6.363599861540979,51.8350511190299],[6.363527924714655,51.83507929556599],[6.363330644269015,51.83515587737819],[6.363289268630181,51.835174882536386],[6.36321309552605,51.83521314371679],[6.363158214054411,51.835249681671144],[6.36311030090183,51.83528237731472],[6.363058527561731,51.835321073676845],[6.36301101608207,51.83536360879465],[6.362968943091893,51.83540468741011],[6.362948503443957,51.83543301962812],[6.362927916149162,51.835477308384604],[6.36289960286642,51.83552664123386],[6.36288229156588,51.83556408914844],[6.362863268272433,51.83561293125393],[6.362851401343016,51.83565588904151],[6.362843023972227,51.83570386958108],[6.36284491694911,51.83575508163601],[6.362849200835605,51.83582355948395],[6.362865076378124,51.835887940887986],[6.362892901344512,51.835994875306945],[6.36293670970753,51.83613632905979],[6.362959782072749,51.836208731636425],[6.362979706035753,51.83626507024197],[6.362993145166483,51.836291322958154],[6.363027051956014,51.836360830886704],[6.363086608424055,51.836460283285255],[6.363131602440172,51.836528512442044],[6.363145164884292,51.83654906514723],[6.363210166463629,51.836654027343094],[6.363233896256197,51.83669045078493],[6.363248691572463,51.836716332635554],[6.363270704028,51.83675720188625],[6.363305444222402,51.836846379523706],[6.363381086754694,51.83701512829614],[6.363481891457331,51.83724081017301],[6.363554797289651,51.8373963768951],[6.363648762308213,51.837602996127885],[6.363795628221255,51.837629396880246],[6.363766421071735,51.837638197386354],[6.363763373411798,51.83765691068917],[6.363761112263049,51.83767442192173],[6.36383755040297,51.83784893465903],[6.363943052249689,51.83808827614456],[6.364002922815307,51.83822742947413],[6.364021264335697,51.838272257294086],[6.364035155701607,51.83831528841807],[6.364047072175033,51.838350893164204],[6.364057250763327,51.838383977503966],[6.364061969940313,51.83841155214431],[6.364061293738221,51.83844058295637],[6.364051373134696,51.838490967466456],[6.364046440401684,51.83852311690603],[6.364042071478789,51.83854914919481],[6.364028397352288,51.83857567243094],[6.364011106153897,51.83862007774396],[6.363977671428364,51.838703602319605],[6.36396019205822,51.83875004068316],[6.363929261281627,51.83882792633401],[6.363895242111199,51.83891061078953],[6.363863183421082,51.83900073072103],[6.363833969935,51.83907417950793],[6.363818994443142,51.83911497894179],[6.363802891211444,51.83916801267153],[6.363685986599211,51.839563256913635],[6.363616772086433,51.83979159372825],[6.363550263540573,51.840012249431076],[6.3635378177241,51.840061324534226],[6.363524177600168,51.84009480483225],[6.36349807132444,51.84017040298275],[6.363428505389749,51.8403451327535],[6.363359126832107,51.84051782043627],[6.363298394291423,51.84066831446361],[6.36327107859027,51.84072831787594],[6.363224248898951,51.84086415217515],[6.363132246088824,51.84111052114342],[6.363046216541397,51.841349316644504],[6.363001117847035,51.84148071390258],[6.362939294944851,51.84165734751935],[6.362914147027741,51.84172971053047],[6.362866375147499,51.84187573691838],[6.362827397846686,51.841983622167945],[6.362789234147458,51.842089550046694],[6.362764755212645,51.84216401086107],[6.362725792987694,51.842275293749886],[6.362690346110063,51.842367320141825],[6.362656281086998,51.84245749231049],[6.362617757187876,51.84254682960441],[6.362575072606705,51.84264172963855],[6.362516390178473,51.842772556413955],[6.362485576519976,51.84283800000356],[6.362466516731166,51.842871246541556],[6.36243916974634,51.8429165171814],[6.362387977011855,51.842987811076654],[6.362324712171539,51.84308399664395],[6.362272234773704,51.84315897761972],[6.362155129268969,51.84333290596884],[6.362102817169548,51.84341152599455],[6.361986594061229,51.843572646639316],[6.361961712352073,51.84360782012555],[6.361933885915939,51.843643054019516],[6.361890417314314,51.84369045395576],[6.361834348689267,51.84375178344298],[6.361758545477107,51.84383266583713],[6.361708185557806,51.84389023543998],[6.361643614172483,51.84395903329916],[6.361586231290851,51.84402404104511],[6.361537648634111,51.844087977933114],[6.361472471084743,51.84417506414537],[6.361328318700911,51.84436958498702],[6.361206186167463,51.84453081678239],[6.361137109945977,51.84462893756309],[6.361105384831355,51.84467520601333],[6.361060307061229,51.84475095198358],[6.361011414881737,51.84483956573065],[6.360959660725586,51.84493006390327],[6.360914763135873,51.84500946679848],[6.36088616298519,51.84505933178282],[6.360871032725167,51.84508245090805],[6.360843170196232,51.84511676795891],[6.360823795935255,51.84514362571172],[6.360780358863097,51.84519193283016],[6.360720374805831,51.84526429664453],[6.360649352833764,51.84535240164875],[6.360554516853274,51.8454674460799],[6.360492518960701,51.845539332083874],[6.360466439683848,51.845569562281625],[6.360395451061994,51.8456585837141],[6.360353360903515,51.84570411990611],[6.360257581245722,51.84579907273874],[6.360205273721912,51.845846626199936],[6.360131764874987,51.84591376242131],[6.360049801533676,51.8459892744155],[6.360004516819816,51.84602938968693],[6.359964595000623,51.84605844010508],[6.359899061509557,51.84610715474818],[6.359828067207953,51.84616510125951],[6.359727084840436,51.8462437010153],[6.359664329616242,51.84628869806577],[6.35959038985841,51.846346704789944],[6.359544865037932,51.84638111391966],[6.35949499899584,51.846418803986616],[6.359433625743129,51.846461955726824],[6.359344862595444,51.84651839517485],[6.359273437610571,51.84656721219171],[6.359117493168767,51.84666873885443],[6.358916032613698,51.84680582468969],[6.358745922158481,51.84691948628174],[6.358582771366509,51.847024802260094],[6.358471303865649,51.847099928083395],[6.358338238543708,51.84718642368156],[6.358286914863051,51.84722390954853],[6.358252466318952,51.84724371844539],[6.358184888746996,51.84728059266848],[6.358114365742398,51.84731750919607],[6.358033707961315,51.8473582668712],[6.357979009822198,51.8473866837556],[6.357928438880123,51.84740862144328],[6.357838799385416,51.847446801546674],[6.35771293365793,51.84749843189297],[6.357611645062484,51.84753956661502],[6.357513252648154,51.84757973347091],[6.357432296520232,51.84761410209138],[6.357327965091653,51.84765347293018],[6.357160672276377,51.84771232159927],[6.356736066369241,51.84786616013051],[6.356449015530077,51.84797065380538],[6.356191511932402,51.84806699260625],[6.356029848736446,51.848125901031246],[6.355978347708872,51.84814516685564],[6.355901166635812,51.848171611001376],[6.355780566292749,51.84821249901206],[6.355615126408542,51.84826051652805],[6.35534273740207,51.84834108391279],[6.355037161987496,51.84843280986796],[6.354918635636978,51.8484682955378],[6.354537606911163,51.848583941476505],[6.354282812486569,51.848662159084576],[6.354102906977634,51.848717304970876],[6.354015644898555,51.848742105046355],[6.353888036205101,51.848779174612886],[6.353838609134964,51.84879303806358],[6.353738818797017,51.84882448502099],[6.353665504032046,51.848849952007974],[6.353589677855823,51.84887675200428],[6.35353123227268,51.8488991660987],[6.35342779060096,51.84893362716081],[6.353293891763541,51.84897995247486],[6.353159401296026,51.84902712745865],[6.353012193325695,51.849078901379805],[6.352852238933166,51.84913528341672],[6.352656023639428,51.8492049973953],[6.352455938879091,51.8492756866975],[6.352344989984946,51.849314127687045],[6.352269957167037,51.849342124806746],[6.352201852558255,51.849366972739155],[6.352167870789058,51.84937693315672],[6.352136400597184,51.849385569527854],[6.35208968707472,51.84940013802451],[6.352039837742206,51.84940993221763],[6.351888122321641,51.84943774145167],[6.351728839323687,51.84946258342532],[6.351418979616835,51.849513543528936],[6.351090177628627,51.849566510083946],[6.350949258429647,51.84959019342641],[6.350861495642246,51.84960396589019],[6.350789397279546,51.849615874832025],[6.350731246802198,51.84962845125916],[6.350550632576611,51.849670527634515],[6.350287121715933,51.84972862799272],[6.349689621082327,51.84986607932546],[6.349379175437223,51.84993671547296],[6.34903181319407,51.85001455678376],[6.348920377252985,51.850041969144286],[6.348820301446528,51.850064416353],[6.34878224637507,51.85007332150092],[6.348728947292074,51.85008815833529],[6.348665068021063,51.85010914930792],[6.348598473752226,51.85012942539644],[6.34848680077336,51.8501736305059],[6.348377047480878,51.8502173433764],[6.348178961826264,51.85029448992482],[6.347986305185846,51.850373056879896],[6.347749849745671,51.85046893498664],[6.347546611197108,51.85055365530142],[6.347435716441312,51.85059905753865],[6.347368605027098,51.85062713050673],[6.347331764622415,51.85064130171255],[6.34730414718867,51.85064896142787],[6.347256868319334,51.850664377561586],[6.347207077607619,51.85068111760791],[6.347107297782078,51.85069372709147],[6.346948352686601,51.85071568333098],[6.346832907678618,51.85073015552667],[6.346709207350146,51.850750241231225],[6.346555055676614,51.85077034199701],[6.346042721516049,51.85083852930547],[6.345826908401699,51.85086667448997],[6.345653708230361,51.850890651036806],[6.345528939776166,51.850907652041776],[6.345363110855315,51.85093154100563],[6.345179660885194,51.85095747020915],[6.345037028825412,51.85096921417678],[6.344869331578936,51.85098035348861],[6.344789908640443,51.85098586447504],[6.344713383118227,51.850990434905746],[6.344639798363196,51.85099405544395],[6.344471979791754,51.85100154569486],[6.34423648699001,51.85101348870266],[6.344064276456729,51.85102194902397],[6.34388464079152,51.851028662850744],[6.343753631215735,51.8510347913551],[6.343657965523906,51.85103958899394],[6.343593183928633,51.851042193306895],[6.343479776166519,51.85104538253863],[6.343444432235794,51.8510467132044],[6.343419352402417,51.85104609954308],[6.343389880734009,51.85104645649783],[6.343355929790062,51.85104503418325],[6.343311695656269,51.85104465743529],[6.343282204517878,51.85104409765683],[6.343254145124505,51.85104260934391],[6.343223139960219,51.85104115400724],[6.343196526828081,51.85103873703566],[6.343165521859084,51.85103729067108],[6.343107777602525,51.8510288529993],[6.342947711687437,51.85100158089132],[6.342787699015083,51.850976123884315],[6.3425965558999,51.85094466381024],[6.342469169146373,51.85092520603627],[6.342374374037348,51.8509108312747],[6.342361023938271,51.85090825224549],[6.342247214861786,51.850898670370675],[6.342046156617807,51.85088009922087],[6.341821416642953,51.85085906862489],[6.341743072351291,51.85085179559371],[6.34166319958224,51.850843627064165],[6.341530270344781,51.85083518875468],[6.341333710893984,51.85081929444689],[6.341151981619018,51.850805957960304],[6.340983554179355,51.850794292896225],[6.340849178721587,51.850786773444845],[6.340592230382537,51.85077251912026],[6.340282143446839,51.850756160882796],[6.340107945674703,51.85074820887868],[6.340039972091152,51.85074263031152],[6.33996912548733,51.85073983460912],[6.339885035040301,51.85073809918286],[6.339777359724607,51.850735737124864],[6.339700674750991,51.8507348313619],[6.339649069393094,51.8507345400215],[6.339560654699995,51.85073559903543],[6.339495839385746,51.85073728449777],[6.339457530613307,51.85073773913254],[6.339422220700543,51.85073998517639],[6.33939133658006,51.85074217732711],[6.339341404458581,51.850748254372064],[6.339216494071308,51.85076069245322],[6.339198892195343,51.850763639749395],[6.339097841897401,51.85078491798262],[6.33901146703135,51.85080419844739],[6.338869442047606,51.850835094253334],[6.338712741307127,51.850867987533995],[6.338457954374481,51.850923033143474],[6.338308643792885,51.850956746894724],[6.338239836400425,51.850972163040424],[6.338137319640486,51.85099346131238],[6.338097757301148,51.8510012336052],[6.338065532671492,51.85100800260899],[6.338034735222491,51.85101293530282],[6.337993639752187,51.851018904229704],[6.337954004958837,51.85102393545707],[6.337899699354051,51.851031881040676],[6.337713245788608,51.851056007127504],[6.337471006030937,51.851088090289295],[6.337197881622973,51.851122373513746],[6.336917346677928,51.85115491829034],[6.336585383571546,51.851193550363135],[6.336235745330376,51.85123238733284],[6.335966939011099,51.851262965312166],[6.33577445690425,51.851283505538596],[6.335539480465566,51.85131185854313],[6.335187067896816,51.85135619799956],[6.334819945095775,51.85140162595629],[6.33448951149353,51.85144206447079],[6.334145934093031,51.85148629352701],[6.333905063926372,51.851514708774914],[6.333821371600559,51.851525747944805],[6.333697990437263,51.85153998354831],[6.333576041344934,51.85155329960018],[6.333490863848305,51.851563433644834],[6.333411491491003,51.85157077023832],[6.33333063884854,51.85157811871037],[6.333267388771357,51.85158252072123],[6.333183556677985,51.85158899422129],[6.333140874066889,51.85159132475768],[6.33302593101153,51.851592691513254],[6.332832802294126,51.8515922521164],[6.332638260850514,51.851593657508275],[6.332275723482428,51.8515970625829],[6.331855721653331,51.85160114477689],[6.331585978412922,51.85160252442904],[6.331135024230489,51.8516069789273],[6.330628206195814,51.85161299535026],[6.330184540936119,51.85161826851632],[6.330004708993034,51.85161858056819],[6.329783607258875,51.85161938557527],[6.329453539926487,51.85162421107576],[6.329257518129792,51.85162563173665],[6.329085163236277,51.85162950487522],[6.328996693615996,51.851628722636],[6.328903850967752,51.85162982711958],[6.328787389422553,51.85162938615848],[6.328608936810358,51.85162694340639],[6.328272700032856,51.85162271834961],[6.328032290109236,51.85161918942804],[6.327887802809233,51.85161816322206],[6.327784556489401,51.85161665354466],[6.327604657373652,51.85161513772119],[6.327541320378831,51.851616795739965],[6.327354169290444,51.85161901407245],[6.327262787732002,51.85161918869187],[6.327219598213855,51.85162089191374],[6.327061630734843,51.85162075468072],[6.326856251340629,51.85161682598469],[6.326705472298302,51.85161199247641],[6.326545827913867,51.85160731062477],[6.326434993518394,51.851604557105226],[6.326343245193989,51.851599673221],[6.326235241233749,51.85159413728856],[6.326147932799343,51.8515891727865],[6.326051643792904,51.85158161935475],[6.325943524696497,51.851573342476016],[6.325833762406303,51.85156143815429],[6.325583322011139,51.851539044927115],[6.325531254394223,51.85152984312141],[6.325469019194787,51.85152447092245],[6.325409662405217,51.851517223979236],[6.325353250891942,51.851509917509276],[6.32530421054456,51.85150249816528],[6.325247717698105,51.85149337654727],[6.325157022371715,51.85147840682198],[6.325067807363252,51.85146342519845],[6.324905829419571,51.85143866069973],[6.324841917663523,51.85142874421704],[6.324791445536286,51.85142226194906],[6.324746960536795,51.85141751162784],[6.324692144460291,51.851412924707496],[6.324631538137867,51.85141117953935],[6.32458122911711,51.8514083453512],[6.324513366983682,51.85140946259037],[6.324421864009216,51.851410058446106],[6.324314172474622,51.85141182618916],[6.324210858520995,51.851412615057136],[6.324104647040468,51.851414361803435],[6.323995557103326,51.85141798313043],[6.323918959007598,51.851421983259996],[6.323843922466873,51.8514277866255],[6.323752764495588,51.85143659501333],[6.323633832879428,51.851451350815964],[6.323505954155357,51.85146442504561],[6.323442747544935,51.851470951768704],[6.323317780577969,51.851483058737564],[6.323194375088358,51.851496968868126],[6.323107608982413,51.85150479790127],[6.322998715238963,51.851512983070066],[6.32286925556309,51.85152333659934],[6.322717735521449,51.851535888309854],[6.322597112064895,51.85154609020936],[6.32248818475334,51.8515533672975],[6.32242489642563,51.85155806938638],[6.322239566975929,51.851573910118546],[6.322055669407753,51.851588813301575],[6.321870339697971,51.85160465345143],[6.321573122242085,51.85162782008171],[6.321364232667632,51.85164496159853],[6.321248000794546,51.85165418332719],[6.321175794048104,51.8516571938994],[6.321053541754177,51.8516637756769],[6.320959322374309,51.85166989161598],[6.32087096055093,51.85167499907774],[6.32081346241181,51.85167685870571],[6.320695568505856,51.851681535762395],[6.320602618349716,51.85168306599854],[6.320503743556925,51.85168377135364],[6.320426881410818,51.85168137124303],[6.320361801493673,51.85167878752083],[6.320227130111419,51.85167094120112],[6.320105768724011,51.85166378894424],[6.319996333281821,51.85165918450388],[6.319781710821768,51.85164625613613],[6.31960418317275,51.851637284426154],[6.319451843381387,51.85163063825742],[6.319321664637606,51.85162454399674],[6.319229850023301,51.85161782135955],[6.319181006663589,51.85161496423046],[6.319112603565763,51.85160329151739],[6.319073928584084,51.851596614250404],[6.319039612171911,51.8515880326883],[6.319006809339015,51.85158034697316],[6.318951471967853,51.851563878263136],[6.318861866479759,51.85153975338087],[6.318734788762034,51.85150253246188],[6.318536004094796,51.851445457763774],[6.318382029534983,51.8514004408271],[6.318240081243166,51.85136071261018],[6.318059162392607,51.85130700103933],[6.317926180416078,51.85126987102094],[6.317812576710248,51.85123700073067],[6.317740870263097,51.85121714660183],[6.31766019835616,51.85119470280587],[6.317606389985635,51.85117912921825],[6.317558635189036,51.85116711214758],[6.317502029425334,51.85115523712229],[6.317439518317457,51.851143462806185],[6.317371116381812,51.85113178907491],[6.317316024228698,51.85112080983804],[6.317222420275344,51.85110680087828],[6.317127303052875,51.851091904949634],[6.317047008948287,51.851078590403965],[6.317005403805388,51.85107196263914],[6.316838958379066,51.85104635051397],[6.316690392007185,51.851024102215185],[6.316577444044421,51.851006749271654],[6.316467537486797,51.85099117889714],[6.316330849237598,51.85097057094808],[6.316238644582212,51.8509547074178],[6.316152378956891,51.850939668727875],[6.316088355010643,51.850926997796215],[6.315953017883439,51.8509036191423],[6.315664412995085,51.85085166383888],[6.315307312219607,51.85078620890934],[6.314997784752079,51.850728197140214],[6.314712127480645,51.850676189239785],[6.314555901238839,51.85064767063967],[6.314413032471185,51.85062075419078],[6.314344665311612,51.85060998630188],[6.314246523384819,51.85059330518552],[6.314111073714212,51.85056718371104],[6.314035173667563,51.850552888585305],[6.313997980193224,51.850546179977684],[6.31392658675408,51.850533637975175],[6.31385379440074,51.85052294069699],[6.313515961510022,51.8504589911558],[6.313315091420533,51.85042205013719],[6.313112708434384,51.850384221827674],[6.312923764169774,51.85034982877986],[6.312664974037129,51.85030469620473],[6.312568232389268,51.85028616892773],[6.312508798047543,51.850277082369416],[6.31246721296136,51.850271360717684],[6.312428668996056,51.850267421834346],[6.312401954420893,51.850264198686155],[6.312339884555873,51.85026246770852],[6.312280793610064,51.85026161210285],[6.312208426227792,51.85026095997836],[6.31215520720983,51.85025908723768],[6.312094993845862,51.85026647415805],[6.3120391725361,51.85027287362297],[6.311993715064769,51.85028000938626],[6.311914515475925,51.850292273937704],[6.31179852830948,51.850306967582334],[6.311681046698713,51.85032169086075],[6.311607685743972,51.8503320305488],[6.311563627185659,51.8503373214045],[6.311529722636217,51.850338783933516],[6.311469361398193,51.85034251324019],[6.311425107493255,51.850343239253576],[6.311338146013584,51.850346485810846],[6.311267225401152,51.850344904852854],[6.311181500812652,51.8503426493775],[6.311128233898981,51.850339859686784],[6.311057117836669,51.850333704823385],[6.311003589199659,51.85032452607453],[6.310607988629545,51.85025602506709],[6.310295820360203,51.85020535661481],[6.309961183204729,51.850146827970036],[6.309651976294493,51.85009610756434],[6.309369422176125,51.85004770280345],[6.309210370095991,51.850021958891894],[6.309144850764492,51.85000839705353],[6.309025774612268,51.849985655753464],[6.308926008689329,51.849965342483266],[6.308687495894221,51.849910729496905],[6.308571299223677,51.84988611343135],[6.308493612868727,51.84986452982776],[6.308402617165693,51.849842241640424],[6.308335456576037,51.849825051757236],[6.308242833974091,51.84979914472651],[6.308133780314114,51.84976892606651],[6.308008162976456,51.84973074730616],[6.307897515690468,51.849697817314535],[6.307749334442553,51.849649954529276],[6.307672981370592,51.8496246834967],[6.307568158948807,51.84958982884912],[6.307446658949972,51.84954427332969],[6.307298088705968,51.849487271387],[6.307181047848347,51.849442561543654],[6.307047624053482,51.849394456360756],[6.306908052585627,51.84934096095787],[6.306756538368889,51.84928400837139],[6.306625994530158,51.849234028450134],[6.306540435735812,51.84920068491978],[6.30642780718067,51.849155903815216],[6.306310881873189,51.849113924811604],[6.306254271685837,51.849095158979765],[6.306203083154045,51.84907820236815],[6.306163802846037,51.84916111728895],[6.306033824978027,51.84943748077847],[6.305952678313425,51.84961249932828],[6.305866889780254,51.84981683975621],[6.305714890472126,51.85016578023487],[6.305648694559859,51.850310380199176],[6.305554589243536,51.850527657449916],[6.305423947890284,51.85085796732754],[6.305293271608856,51.851187369437575],[6.305191936008944,51.85144315711503],[6.305246978098196,51.85145323454734],[6.305221671580473,51.851517639679024],[6.305169641301481,51.851509345433584],[6.305127786382081,51.85160143971215],[6.304922398548416,51.852049062394954],[6.304830386618129,51.85224619662999],[6.304730367598233,51.8524635643021],[6.304667044519573,51.85260628948109],[6.304644098148927,51.852656950086015],[6.304621963490904,51.852726786495225],[6.304593155364453,51.85281317854234],[6.304572306042867,51.85287842958179],[6.304561501152731,51.85290237037191],[6.304554600074551,51.85291345359666],[6.304539027910582,51.852929251812384],[6.30448936541974,51.85297667845841],[6.304421118808318,51.85303812905415],[6.30438562911243,51.85307161109974],[6.304361319319229,51.85309029106964],[6.304266826752793,51.85315947928845],[6.30423440431321,51.853183463100635],[6.303921857645981,51.85341466114091],[6.303787789095513,51.85352562349464],[6.303776689717147,51.853542258593386],[6.303767022788825,51.8535579566565],[6.303758821492339,51.85357363428521],[6.303738444256345,51.85361509704827],[6.303725082430541,51.853648226321816],[6.303700768185271,51.85370164798816],[6.303672431720562,51.85376426965408],[6.303635926784214,51.853843476546245],[6.303502970381724,51.85415462893866],[6.303353737129195,51.854499867973686],[6.303212703504687,51.85482943820848],[6.303143081947739,51.854989748822874],[6.302990774430812,51.85534040461276],[6.302806472680218,51.85576392143784],[6.302614401716974,51.856213152613265],[6.302478826765,51.85653256684672],[6.302423299504473,51.856685225452935],[6.302415486052356,51.856710032592005],[6.302414831400413,51.85672923781316],[6.302421145246286,51.85673919313998],[6.302433655021448,51.856755446262675],[6.302441529775086,51.85676720515932],[6.302455310684047,51.856778864071046],[6.302478138199559,51.85679494685072],[6.302493252426862,51.85680292792357],[6.302545662916275,51.85682036204412],[6.302691063289414,51.856871929569174],[6.30284827669892,51.85692331487973],[6.302813281029254,51.8570034085722],[6.302663497267485,51.857335859734015],[6.302466133469289,51.85776506877253],[6.302213696091618,51.85832315693978],[6.302053532459241,51.85868959394598],[6.301833521381223,51.85921150016227],[6.301757025355611,51.85940842986727],[6.301756280448817,51.85941035028841],[6.301709406474798,51.859524055439515],[6.301627873586967,51.85972678611666],[6.301444798545103,51.860176457288816],[6.301396097173233,51.86029461700151],[6.30133251983766,51.8604444612471],[6.301254604213354,51.86063174764072],[6.301198142659047,51.860771019483664],[6.30113125475899,51.860932341127636],[6.301043370801713,51.86115715236016],[6.300683543793674,51.86203744970492],[6.300659757509293,51.86212443075331],[6.300654026897896,51.862158246306954],[6.300644287662146,51.862261360827176],[6.300636123150366,51.862312597655],[6.300635979979798,51.86233916070432],[6.300634775662585,51.86237209608822],[6.300627687886593,51.862467082065734],[6.300614680228412,51.86265522918886],[6.300604604569281,51.86281187467978],[6.300591879686644,51.86297390709848],[6.300581554089125,51.863126114053166],[6.300570453150937,51.86335314089683],[6.300531235365258,51.863998914413564],[6.300513898814979,51.86428427317012],[6.300504182884947,51.86450946446828],[6.300454230494825,51.864537718375196],[6.300433718670586,51.86454647124009],[6.300398747730542,51.86455888715538],[6.300328463543694,51.86457114627486],[6.300169693291879,51.86459519470186],[6.300054768064267,51.86462629977867],[6.29995206423496,51.86465508948651],[6.299802318660197,51.864706779739244],[6.299646679027706,51.86476138303893],[6.299463274085592,51.864839393011636],[6.299436864365869,51.86485087019558],[6.299143824046981,51.86498111155306],[6.299061066151488,51.8650169725306],[6.29894918309423,51.86506861028279],[6.298852709194166,51.86511474397293],[6.298783500523431,51.86514862087374],[6.298762476692438,51.86515936394448],[6.29872883184864,51.86518281630131],[6.298696771279111,51.8652113709779],[6.298672343626088,51.865239722563],[6.29864487650155,51.86526854718072],[6.298626562987299,51.86529769623469],[6.298528002448665,51.86544945532052],[6.298504600022901,51.86548399219657],[6.298380414326892,51.86569035030736],[6.29830852566303,51.86580274694697],[6.298222484963859,51.86594334337288],[6.298216663370374,51.86598138422274],[6.298219404998315,51.866037911512734],[6.298229498578104,51.86607030973406],[6.298236273994534,51.866094437038136],[6.298259987018188,51.86613903523937],[6.298288811016258,51.86619582753358],[6.298367062763041,51.866327355642355],[6.298531566284663,51.86652652909817],[6.298710104238842,51.86673321586764],[6.298834998948887,51.86686778827396],[6.298923941815402,51.866957129441154],[6.299066820896951,51.86710569233701],[6.299083908765748,51.86713569008183],[6.299095774297256,51.86716735536153],[6.299097167175519,51.86720240986491],[6.299085120039638,51.86725348793165],[6.299071611154416,51.867292622241884],[6.299029429147557,51.867517499159014],[6.299004696071797,51.86782387684261],[6.299006398807819,51.86782621868459],[6.298932378873506,51.86777118880476],[6.298307077515505,51.86780421406291],[6.296338982149713,51.86811390819824],[6.295716546987784,51.86824389555553],[6.295010386614849,51.86852076576843],[6.294590594380133,51.868738978095436],[6.294114439961738,51.86906212803171],[6.293241375539536,51.86937082952759],[6.292504882761086,51.86962628250787],[6.292137330773055,51.86974212320349],[6.292037110294295,51.869794859849684],[6.291616468358725,51.87003711293606],[6.291132625515747,51.870217109329914],[6.29065103695151,51.870392412187414],[6.289900767628026,51.87066697492259],[6.289758539165003,51.870720715716296],[6.289650049523805,51.87076250259326],[6.288851796070254,51.87113804785889],[6.288198352431531,51.87140211209965],[6.287545665285875,51.87159116442226],[6.287262628617525,51.871648282980004],[6.286695197770788,51.871743391312904],[6.285044896309911,51.871970000960985],[6.284546312716731,51.87197025306415],[6.284242299663355,51.871970490801054],[6.28350860032366,51.87210696183464],[6.283324799489143,51.87220005938182],[6.282203814624123,51.872995990977],[6.281929876300243,51.87313094196518],[6.281114105990892,51.87353281466788],[6.280953583065181,51.87360814915532],[6.280249232518118,51.873908852815035],[6.279584807488658,51.874098983448064],[6.279020133293066,51.8741728738898],[6.278235603795192,51.87432131123191],[6.277995951585909,51.874321565621244],[6.27690632550612,51.874467993740524],[6.276577222307506,51.874508941020345],[6.275414605131113,51.874596842900765],[6.27500611196587,51.87462626045497],[6.274510122412295,51.874654207495595],[6.274387053776805,51.874657483537526],[6.273994367605366,51.8746585803606],[6.273657372984318,51.874661107109624],[6.273204530078327,51.87466558578553],[6.273022851951735,51.87466527567878],[6.272984003908707,51.87466520920678],[6.272763090171707,51.874662111540616],[6.27268684343586,51.87466183265013],[6.27253903337241,51.874652789965715],[6.272287555260326,51.874613022978615],[6.271938812370269,51.87456090075897],[6.271083465025801,51.87442441247868],[6.270143591852096,51.874145946897364],[6.269820997420616,51.874050295933884],[6.269447920352989,51.87389807061807],[6.269248609074936,51.87378039504518],[6.269074695780668,51.87362929691717],[6.268786915904911,51.873365426583426],[6.268616002523613,51.873231644586156],[6.268521041189774,51.87315731023291],[6.26754323291725,51.872195198650566],[6.266901805197941,51.87155551195109],[6.266112166059014,51.87077607745404],[6.265429168721117,51.87008015466387],[6.265330315377459,51.86999253451569],[6.265251267424415,51.86994503583247],[6.264328985104775,51.86943453649082],[6.264015389059324,51.86929530590574],[6.263724747339936,51.8691342401984],[6.263312281819252,51.86889111664671],[6.26297123400782,51.86866903197628],[6.26262312990854,51.868457246132806],[6.262223147569735,51.86824314930849],[6.261841551811409,51.86813812763031],[6.261662560271524,51.868125258723396],[6.260959365041321,51.868170584182785],[6.26057594150551,51.86820310006749],[6.260044998036894,51.86822835199671],[6.259543665176833,51.86820816804278],[6.259283760279434,51.86819337984601],[6.259011147512162,51.86820466295858],[6.258493026782808,51.86827727329586],[6.258163678551319,51.86829805412649],[6.257539088015153,51.86833882085476],[6.257321164949341,51.868362548519116],[6.25665611545418,51.86843614969433],[6.256413630584611,51.86846625980728],[6.256098628655206,51.8685082319708],[6.255668626127407,51.86858026749521],[6.255369867473368,51.868620562483166],[6.25506742167705,51.86866018284121],[6.254983304936356,51.868672157415],[6.254629556424016,51.86871241650581],[6.253564872922476,51.86881697005531],[6.252652542204046,51.86892436397155],[6.252288995993969,51.86897105224985],[6.251245303736753,51.869127340067905],[6.250422896386323,51.86924738508204],[6.250047642794336,51.86930320414348],[6.249096568507477,51.869394693295],[6.249081138476719,51.86939647847677],[6.248832570139645,51.869421835523646],[6.248429628577883,51.869474167207365],[6.247735258932956,51.86960839107726],[6.247715624365383,51.86961127655737],[6.24757301342146,51.86963301382614],[6.247535372541188,51.86963888965056],[6.247346245364892,51.8696929224944],[6.246619439303358,51.86990591203247],[6.246295359165509,51.869950243341286],[6.246003377505032,51.86993036606495],[6.245873281309521,51.869914814289736],[6.245148563008772,51.8697870520671],[6.244715313034205,51.86971309385105],[6.244178488369465,51.86960627221396],[6.243880768126647,51.86952734855419],[6.242822848275967,51.8692469021212],[6.242341426837758,51.86910560101541],[6.242124925232756,51.86901369484138],[6.242002999375191,51.86897781867653],[6.241826662545902,51.86896696762867],[6.241810863265881,51.86896843094769],[6.241378227300743,51.8690102309973],[6.240939686602061,51.869085240839986],[6.240616899423452,51.869169385177905],[6.240401330028924,51.86916474973299],[6.239819191876888,51.869102462137356],[6.239373526626324,51.86910048435904],[6.238687800261658,51.86921143690073],[6.238503853193312,51.869251152764456],[6.237442668956962,51.86948733634709],[6.23729450801707,51.86951528555359],[6.237107636926656,51.86956176194039],[6.236840397226609,51.86965834760413],[6.236547488178397,51.869764376753444],[6.236143872119116,51.86985187994372],[6.235829675105487,51.86989181423979],[6.235578814114889,51.869886975579625],[6.235348080280827,51.86988684490157],[6.235189292743988,51.86991351989415],[6.234702820116647,51.870027324308076],[6.233855315201229,51.87019262948113],[6.233737265170637,51.8702004919321],[6.233553758912485,51.870186893635406],[6.232721238827475,51.870068218431314],[6.230411122308091,51.86970218226293],[6.228371348278237,51.86934045630747],[6.227194421666302,51.86911211970966],[6.227185883382064,51.86911054485019],[6.227156879488041,51.86917550714766],[6.227057385655321,51.869159131355445],[6.227079168894229,51.86909083198811],[6.226606180800519,51.86900963076098],[6.225579830825779,51.868780471036864],[6.22528683642701,51.868703731828106],[6.224978344966489,51.868621259807796],[6.224632915295511,51.86854345494246],[6.224362904684858,51.86851562793369],[6.223933739465032,51.86851041776472],[6.223552664670044,51.86851457127364],[6.223327222641188,51.86850970517641],[6.222467065456511,51.86844778331577],[6.221423900393143,51.86832792002312],[6.220748796507019,51.8682615244765],[6.220194537696799,51.868204964275805],[6.219798471133922,51.8681599537923],[6.219411254152503,51.86809878943671],[6.218962925282018,51.86802277596312],[6.218052549073519,51.86791389695258],[6.217584697976509,51.867857701687086],[6.217273427362062,51.867835992908866],[6.216539395398752,51.86780945032445],[6.216152644970756,51.8678047211073],[6.215825881399008,51.867793185252374],[6.215675570108809,51.8677757293044],[6.215481405660473,51.86774231298471],[6.215114966827924,51.86764197688027],[6.215057033109348,51.867626205725664],[6.214989446695376,51.867646106909945],[6.2149285034062,51.8676640556104],[6.214806260692265,51.86769638690579],[6.214334916547607,51.86782104731833],[6.214171891826805,51.86786708541713],[6.211388546985315,51.86865308973672],[6.210395046082276,51.86895509652914],[6.210177191115524,51.86902131560316],[6.209981942431268,51.86908509271111],[6.208143817770862,51.86968548008445],[6.20795215745424,51.869748078138166],[6.206697666644814,51.87018272619009],[6.206550915226765,51.870236595029844],[6.206008116239015,51.870435823265304],[6.20570927259244,51.870545510844565],[6.205473188259067,51.87063216266441],[6.204232970682183,51.87109580801861],[6.203017171770181,51.87157014677935],[6.202508886313598,51.87177815247294],[6.201819494052004,51.872060257068235],[6.200631471661094,51.872563771138495],[6.19945770635249,51.87307823049445],[6.198301339303654,51.87360873741547],[6.198024053144183,51.87374035947298],[6.197163560189539,51.87414881234459],[6.197068856040823,51.874195200079804],[6.197042484712918,51.874208127940996],[6.196038297933382,51.874700025719875],[6.195324746379532,51.8750671832338],[6.194925252112164,51.87526993046228],[6.193834839735965,51.87584829813158],[6.193413338622368,51.87607986522265],[6.193036319847954,51.876287341435535],[6.192889002946003,51.87636840561809],[6.192760165122141,51.87643931146224],[6.19170135390986,51.877041891379506],[6.191452268086124,51.877186967247155],[6.191309829804474,51.87726991957396],[6.191216378805028,51.8773245545286],[6.191181481916779,51.877344955092774],[6.190662889837199,51.877655018873426],[6.189639850163511,51.87827953710489],[6.188634427413427,51.878916240490284],[6.187649230653151,51.87956484203318],[6.187296267185384,51.87980506099961],[6.187208961895013,51.87986446875429],[6.186681036375243,51.88022374622607],[6.185997687133835,51.880705974071695],[6.185732749118068,51.88089293373558],[6.184798556943803,51.88157226474595],[6.184203206379759,51.88202537206714],[6.183894412551626,51.88226037294618],[6.183549459337536,51.88253120435758],[6.18348473008187,51.882828539049875],[6.183460537986341,51.882939623268605],[6.183464315636156,51.882947076225484],[6.18361843020297,51.88325180763395],[6.183276888743126,51.883592816524555],[6.182617526646403,51.88453282503567],[6.182297791136405,51.88498837860973],[6.182287972586682,51.88500237751895],[6.182010151268162,51.885777642913176],[6.183337448015142,51.886135749151435],[6.184664178492713,51.88649348477277],[6.185990203799241,51.88685121028773],[6.186107053818076,51.88686284675027],[6.188211383168904,51.88707239307824],[6.190507553578269,51.88727809982928],[6.191427630425229,51.88735090288905],[6.191418560788349,51.88739608812871],[6.191400169144954,51.88740899596535],[6.190620485619005,51.8879565112009],[6.190075735471151,51.88838692882035],[6.189843152295438,51.888597684971494],[6.189604402575228,51.88878861782309],[6.189516345582367,51.888941847016646],[6.189848684082893,51.889631047327],[6.189862999905798,51.88966072893901],[6.190580023290309,51.89048880597909],[6.191216557459094,51.89111106792454],[6.191314868595569,51.89120718481146],[6.19108362450186,51.891659082065736],[6.190324361591089,51.89177063048791],[6.189773715754915,51.89185152641287],[6.188637556819891,51.89202011014913],[6.187702371071783,51.89216046406917],[6.187467685757488,51.892194431608],[6.187250838760632,51.89222505922039],[6.187125289996269,51.89227238578302],[6.187036857235422,51.89230571578298],[6.186831236044986,51.89238190159765],[6.186208943385328,51.89259703776862],[6.186190735777447,51.89260333684644],[6.18535900720539,51.8928907057429],[6.185188721108438,51.89294773637304],[6.18516921940108,51.89298181903939],[6.185157819938929,51.893001743448686],[6.184382099177045,51.89336130821878],[6.184242718138353,51.893415449066495],[6.183821911860167,51.893527713986515],[6.183678181588539,51.89356849954749],[6.18322213660068,51.89370837172815],[6.182558180393607,51.893906809133846],[6.182706527252204,51.8941604800103],[6.180715711264813,51.895262419228594],[6.17943958297202,51.89596623418572],[6.178601944479017,51.89642067548561],[6.178587651776602,51.89642832225406],[6.178538109514829,51.896454830998735],[6.178071419825476,51.896706564427255],[6.177366176767695,51.897094236390984],[6.176874897849578,51.89736542003668],[6.176834718032134,51.897387397747174],[6.176245672241632,51.897709527420396],[6.174625238796303,51.898595680118575],[6.174488552165907,51.89867251444953],[6.173400852125143,51.89927792214608],[6.173392534973857,51.89928256202278],[6.172238184889375,51.89992623803957],[6.170483782750781,51.900893271709215],[6.16976933253739,51.90128706192654],[6.169060704587235,51.900902752804654],[6.168923492632568,51.90082834129596],[6.168908266433179,51.90082008319789],[6.168885275464526,51.900828218108764],[6.168838369288443,51.90084481765811],[6.168657536425776,51.90088233494266],[6.168479441870692,51.900901856465886],[6.168425216111127,51.9009069811055],[6.168183796786447,51.90092979969302],[6.168066062047392,51.90093597561602],[6.167911852217085,51.900941944428176],[6.167884091898939,51.900910578831954],[6.167574076900262,51.90056028445317],[6.166952212057734,51.900084780827164],[6.166679823471418,51.89987832211795],[6.1660299368586,51.89908426266105],[6.165853566631499,51.89886745762011],[6.165642613132364,51.8986084551681],[6.165632961354023,51.89859647436495],[6.163228138540909,51.90094143147491],[6.163024034918032,51.901140439690494],[6.163004179486986,51.90113499788254],[6.162794394806779,51.90107813695765],[6.162672649712522,51.901044792974226],[6.162317139117843,51.90094744661928],[6.162290860188443,51.90094024935373],[6.162283098131136,51.90094767124805],[6.161812546550341,51.901397240429155],[6.161457731398344,51.901744383469946],[6.161067330257946,51.90211800663712],[6.16067383436459,51.902489491567316],[6.160272691653725,51.90285608171492],[6.159988216399302,51.90310959910235],[6.159866236065566,51.903218300967154],[6.159558092151469,51.90347985598759],[6.159491722255122,51.90353619260655],[6.159447881370878,51.90357340609613],[6.159020799340698,51.903919937955614],[6.158576050901304,51.904262000032105],[6.158531287925975,51.904294679971045],[6.158119950355857,51.904594966488624],[6.157650659657139,51.90492181549407],[6.157385608792748,51.905100359742434],[6.157367646532145,51.905103695436445],[6.156758378019754,51.905216918129874],[6.156447793118035,51.90522308717642],[6.156225392676731,51.90524485763562],[6.156136356304398,51.905230429498374],[6.156080735610472,51.90519007513365],[6.156066980390684,51.905133536875674],[6.156046341526487,51.90499740451762],[6.155969300345644,51.9049875718263],[6.155816867733007,51.90499638941561],[6.155638443707275,51.90501490477097],[6.155088836381732,51.90511602531762],[6.154740922176256,51.90518274748456],[6.154746876999411,51.90519106798875],[6.154314570084245,51.90519873677057],[6.154272250917272,51.905195183972204],[6.154292554328372,51.90498077177153],[6.154299897273217,51.90485331917384],[6.154277423744354,51.90481201043156],[6.154239936980557,51.9047697300736],[6.154052355970631,51.90455389767861],[6.153914094611267,51.90452363666213],[6.153463925907801,51.90442510157609],[6.152917927596588,51.90430291123266],[6.15277978873791,51.904272072817356],[6.152160572891765,51.9041338260711],[6.151906393623491,51.904081180823496],[6.151488275017399,51.90399457317036],[6.151294599181985,51.90395519562236],[6.151286273020967,51.90395350599073],[6.15074140696704,51.903840817155235],[6.150560451572385,51.9038033961329],[6.150555974145322,51.90380243648203],[6.149831165846606,51.90364751563424],[6.149638377366515,51.90360630491795],[6.149096874854062,51.90350123596634],[6.148613587942291,51.903407373510525],[6.148171785410085,51.90332699291228],[6.147784496376682,51.903252945225375],[6.147700968170935,51.90323816944377],[6.147353111648681,51.90317661987779],[6.147254630040978,51.90315919902059],[6.146135335490667,51.90293694782987],[6.146060017416623,51.902922108851755],[6.14540729231146,51.90279352612647],[6.1447566120084,51.9026653400781],[6.144567706902051,51.902628122928235],[6.143974342826625,51.90251382791958],[6.143524747150536,51.90242264884756],[6.143111777944134,51.902342243411866],[6.142644344821255,51.902251238692536],[6.142313286806615,51.90218194388391],[6.141984215141714,51.90211319267633],[6.141289525969792,51.90197198512091],[6.140776857662821,51.901870063589165],[6.140773373138837,51.90186936685535],[6.139313054248484,51.90158999434512],[6.139154162232989,51.901558751519886],[6.138298610265978,51.90138114545373],[6.138234263682612,51.901367786350896],[6.138070401022434,51.901333769402434],[6.137238047135089,51.90116392631123],[6.136983055426072,51.9011118922895],[6.136615170907366,51.90103682115804],[6.135334204110747,51.90078764317115],[6.134396857311259,51.90060537928023],[6.134303875490857,51.90058775082815],[6.133932342405519,51.90051730568961],[6.133828525388636,51.90049641996212],[6.133747961949472,51.900480213230935],[6.133631782209334,51.90045684415246],[6.133583738090108,51.90044766647666],[6.133531441368877,51.900480780212995],[6.133390428571325,51.900450350833225],[6.132983854905492,51.90036261550597],[6.132466712429784,51.9002655041534],[6.13226612541513,51.900217429259165],[6.131456633858678,51.90004888346806],[6.13053564210199,51.89986084940523],[6.130576702430922,51.89974301864603],[6.129740186410646,51.899565724411026],[6.128816325056324,51.89936035606443],[6.128798887128734,51.899355828046914],[6.128547795057992,51.89929057388411],[6.128206237508372,51.899167823589714],[6.128189720945155,51.89916188744804],[6.1279003779732,51.89905279311939],[6.127705525620165,51.898978229852645],[6.12739279667998,51.898846468650774],[6.127101425691373,51.89871896750749],[6.126880144345586,51.8986371987125],[6.126715685039511,51.89859050481759],[6.126477823677464,51.89854300532238],[6.126180124188608,51.89849074035869],[6.125672688935259,51.898201334958166],[6.125140722602113,51.89842454846011],[6.124931641695371,51.89849979308431],[6.124755761281768,51.89856004261483],[6.124525177275763,51.898635412544905],[6.124204392678321,51.89874980125228],[6.123821353825429,51.89897369208415],[6.123716172326943,51.899030413547976],[6.123236652505865,51.89928903708473],[6.121849587282218,51.90005711316179],[6.120880664606475,51.90055671493361],[6.120797853021303,51.900591218030016],[6.120574413982166,51.90068430593251],[6.119867567566235,51.900987093345435],[6.119245641137301,51.90122377548055],[6.11863992559261,51.90145428604509],[6.118388640696693,51.90158152898944],[6.118215600635381,51.901680105238675],[6.118201230566005,51.901684617054414],[6.118180803676106,51.90168570595458],[6.118165425071983,51.90168359945276],[6.118148513339478,51.901678356483565],[6.118146180905764,51.901671638545544],[6.117985984651676,51.90166383548606],[6.117889497651124,51.901659141460826],[6.117752753985143,51.90147522260665],[6.117559868791766,51.901234269543416],[6.117390404445821,51.901022572243775],[6.117011632276479,51.90054688618145],[6.116894476487039,51.90039572488092],[6.116856141933254,51.90034625612696],[6.116012166766009,51.89925722511507],[6.115295720150339,51.89833270674214],[6.114821300642095,51.897720467604856],[6.11376974168891,51.89823390666352],[6.112514094848819,51.89884132288999],[6.112306849012263,51.89894437126167],[6.112151613161681,51.89890742462555],[6.111987943418074,51.8988682467277],[6.111855097924418,51.898836680527054],[6.111746545590081,51.898779832237146],[6.111634075917145,51.89870077923572],[6.111538441220587,51.89861508760718],[6.11148584435676,51.89855469405683],[6.111242018501852,51.898279285978354],[6.110859187200868,51.8978131062465],[6.110366939703385,51.897223808190944],[6.110023809237031,51.89680485901658],[6.10969425135374,51.8964064631504],[6.109448797950917,51.896119672841614],[6.109355336296297,51.89601399344492],[6.109222840990602,51.89588508473693],[6.10923974635869,51.8958756596459],[6.109306139241882,51.895830218648484],[6.109439996963265,51.89572198197285],[6.109569960423823,51.895611036561164],[6.109666493697194,51.895497429284326],[6.109799851904226,51.89528049626025],[6.10993050344546,51.895057045024714],[6.110176058122434,51.89494286177142],[6.109424737227708,51.89466540435109],[6.108658278975721,51.894381095951424],[6.106338110073284,51.893525131242306],[6.105131063127936,51.89308270008289],[6.104328906985246,51.89278839775165],[6.103622630042176,51.892535167240695],[6.103549625859518,51.8925096817372],[6.103681489725564,51.8924600141489],[6.103748881041192,51.89242158128105],[6.103823072047641,51.8923631522212],[6.103839725296174,51.892341567882724],[6.103931158632688,51.892438868668734],[6.104066312569141,51.89243452924594],[6.104441203704026,51.89232652558374],[6.104485758386899,51.89231368743122],[6.104970243018487,51.892051874107416],[6.105120928778121,51.89189761675119],[6.105305861411409,51.891806546312424],[6.10573754993448,51.89170421352268],[6.105937340370714,51.89168664974448],[6.106058979344062,51.8916858153799],[6.106810374008917,51.89166551967604],[6.106857452146708,51.891654310067196],[6.10689222811576,51.89165051950593],[6.106977417262043,51.89168050471012],[6.106999470276622,51.89168325488846],[6.107037924421288,51.891671468861276],[6.107092292506172,51.89167369736135],[6.107156599005614,51.89166877291392],[6.107383243986599,51.89166625972869],[6.1075573298724,51.89169282299968],[6.10769397241882,51.89172351677632],[6.107832862513244,51.891776596172],[6.107951005423666,51.8917923742397],[6.108148923825934,51.89180123565595],[6.108305163221596,51.89178745871494],[6.108431673839103,51.891798690626125],[6.108525912670851,51.89181767103269],[6.108614191921309,51.89182738477964],[6.1087076571375,51.89184341254639],[6.108778929149142,51.89184796333712],[6.108838352699559,51.891855598067025],[6.108907267088353,51.89188070219836],[6.1089445532602,51.891901155812796],[6.109057828212233,51.891927668098525],[6.109106283698853,51.89193439933938],[6.109337515800062,51.89195600653896],[6.109379696356521,51.89195736511809],[6.109497473709411,51.891987399789144],[6.10957653803405,51.89199860766264],[6.109632551601544,51.89201279767264],[6.109689498621631,51.892033543585896],[6.109725522765797,51.892051371060354],[6.10976662668854,51.89206618305835],[6.109829082470437,51.89207173125691],[6.109876819637937,51.89207171616805],[6.109922457733751,51.89206402873063],[6.109974149474362,51.89206059157867],[6.110049634303424,51.89206419883729],[6.110106190715292,51.89207238090149],[6.110151360643279,51.892085271144744],[6.110189286580908,51.89208222424787],[6.110289980047296,51.89206706977765],[6.110347912712191,51.89206958942747],[6.110409156550156,51.89207655598945],[6.110490535412581,51.89207990195509],[6.110522037281522,51.8920811910611],[6.110643786673175,51.89209347461863],[6.11066665403968,51.89209985947395],[6.110673136710677,51.892106390201214],[6.110680699128513,51.892124950002454],[6.110695525143869,51.8921398875972],[6.110746159122961,51.892163701046755],[6.110792853843177,51.89217653670749],[6.110866371281228,51.892192380050076],[6.110923235427033,51.89219529251047],[6.111001432693366,51.8922085451813],[6.111040918677812,51.89220945236475],[6.111068621655743,51.89220577606908],[6.111263068399647,51.89225239674872],[6.111370238959706,51.89228400502538],[6.111408964582382,51.8922954244394],[6.11146140059266,51.892306615474155],[6.111546828173091,51.8923168659476],[6.11159546635421,51.892328574718654],[6.111657962276079,51.89233026559307],[6.11174537588937,51.89234204970968],[6.111772367497263,51.89235192344719],[6.111833451297019,51.892355231898726],[6.111906960353124,51.89236510621807],[6.111951891021021,51.892363103148725],[6.111987333911694,51.89237183706395],[6.112171211535459,51.892393560146516],[6.112204445618394,51.89239504484737],[6.112289052095461,51.89240480547853],[6.112316064220783,51.89239702536665],[6.112346851613694,51.89238282205975],[6.112377510594655,51.89237687106686],[6.112424593387658,51.89237679606436],[6.112490577631607,51.89239569609044],[6.112533392091197,51.89242460865395],[6.112571738971956,51.89243683899878],[6.112609709722189,51.89244106281701],[6.112686916805103,51.89244241059813],[6.112754744627927,51.89244950605266],[6.112789573993783,51.89245891766152],[6.112853921136523,51.89248348142449],[6.112904089458528,51.89249455099984],[6.1129636153468,51.89249582808037],[6.113004008184904,51.89250519625705],[6.113046499246515,51.89252034909562],[6.113175153250909,51.892539958011476],[6.113382620585453,51.89254341237587],[6.113524309395778,51.89251466257037],[6.113669596540811,51.892500029395116],[6.113701655749623,51.89249442893878],[6.113794492913765,51.8924561115098],[6.113905388989988,51.892398994976304],[6.113947891952677,51.89238071883035],[6.113973381728361,51.892374943224524],[6.114041641779217,51.89237641738965],[6.114186980558484,51.892356030550836],[6.114229580412866,51.89233926378646],[6.114273803733692,51.89232856324667],[6.114380752141788,51.89232204053853],[6.114483627013532,51.89233042807335],[6.114660605056127,51.89232251863444],[6.114752805458196,51.89233918762857],[6.1148434442036,51.89236169083639],[6.114877179920295,51.89237531526678],[6.114924287937257,51.892385773740784],[6.114942132707562,51.8923959461215],[6.114989354655491,51.89241254307476],[6.115054706332058,51.892418322234754],[6.115131592934146,51.892412434575405],[6.115164441630768,51.89239997951506],[6.115217093665514,51.89238676349956],[6.115286616448985,51.89237649899563],[6.115392231891392,51.89237827111612],[6.115428945261916,51.89237660530081],[6.115598364190534,51.89236122685328],[6.115837285390197,51.89232537241121],[6.116076832604119,51.892284246278294],[6.116213011393095,51.89227152711714],[6.11630543956618,51.89225831538298],[6.116375964956349,51.89226152690429],[6.11643629944037,51.89225265806585],[6.116560490162816,51.892234404051756],[6.116645259093038,51.89222548223326],[6.11685128052462,51.89218645933283],[6.117056135946998,51.89217496640333],[6.11719731708788,51.89215095229736],[6.117272063483997,51.89212513982509],[6.1173430409011,51.892118622291676],[6.11741653337391,51.89210148253145],[6.117465109350812,51.89209496937536],[6.117529138858249,51.89209895765985],[6.118008367928017,51.89202624303164],[6.118189028524716,51.89200636849355],[6.118192277680337,51.89200606063504],[6.118318991420725,51.891944715682406],[6.118415219505842,51.89188027956254],[6.118580579748674,51.89179597051995],[6.118674354153156,51.89176827688397],[6.118806809571542,51.89173757372908],[6.118949105913011,51.89171259776763],[6.119137782252688,51.891702433439],[6.119268907536616,51.89167483012896],[6.119326959361142,51.89165522366136],[6.119455311320377,51.891622370110376],[6.119519302777348,51.891614240911274],[6.119578680177071,51.891600216962544],[6.119639109654607,51.89157943598282],[6.119647315265658,51.89157661631878],[6.119764619627408,51.89154337290787],[6.119861532318197,51.89152380241527],[6.119983754849409,51.891520478122594],[6.120060798837634,51.8915110087814],[6.120130254832029,51.89149055773007],[6.12017380500841,51.89146989079982],[6.120203839923326,51.89144358246825],[6.120268756525705,51.891414701391675],[6.120337749096177,51.89139257224047],[6.120396350553382,51.89136752370474],[6.120519874749037,51.89129083474318],[6.120604689925047,51.89126263820304],[6.12080833630455,51.891213861532975],[6.120926414102151,51.89116491802087],[6.121095260262911,51.89112017841632],[6.121227872909647,51.891071737017],[6.121243315214485,51.89106283166875],[6.121249423034837,51.89103652879472],[6.121245004414,51.89101769832285],[6.121250197705756,51.8910021155797],[6.121270039919412,51.8909726347798],[6.121333651552862,51.89085412691045],[6.121361874916058,51.890816584856935],[6.121395822519245,51.89078263840682],[6.12156281604805,51.890594343720316],[6.121566515248216,51.89056022681416],[6.121601147329954,51.890534410708646],[6.121630446861791,51.89052186815427],[6.121655143409811,51.89049611416486],[6.12169023817187,51.890471949042066],[6.121722677561807,51.89046486987585],[6.121723956860484,51.89045425532161],[6.121738826801542,51.890446791662576],[6.12179092168894,51.89039439483713],[6.121836624105487,51.89029217818579],[6.121867604793262,51.89023584156149],[6.121939020794335,51.89016748587788],[6.122027693136689,51.89011148937242],[6.12215783413815,51.890057830996554],[6.122343714372422,51.890007724630806],[6.12238051838515,51.8899992966342],[6.122423518764391,51.88999313091745],[6.122541799891049,51.889987123048044],[6.122604694653171,51.889988499976795],[6.122667443603086,51.8899951720738],[6.122851036688143,51.890026408129735],[6.123137338772836,51.890053431845246],[6.123415530864157,51.89007397997667],[6.12372072190791,51.890098546821946],[6.123862944978956,51.890095290789915],[6.123946719297402,51.89008539914548],[6.124026841204142,51.89007247423027],[6.124424014652498,51.88997818103153],[6.124776296540555,51.88987845167436],[6.125050144509808,51.88979806317289],[6.125309914408698,51.88973179372687],[6.125485792902998,51.88969303491844],[6.125742203960739,51.88964079886642],[6.125857047703362,51.88961663430195],[6.125964133920736,51.889590693736636],[6.126203152175647,51.88952942466677],[6.126307454369806,51.88950558666253],[6.126584384461124,51.889445084931516],[6.12688777630229,51.88936926108191],[6.126994415804125,51.88933919661289],[6.127126363042553,51.88929074369577],[6.127310131476283,51.88920817587208],[6.127400128145042,51.889161667882156],[6.12757084603283,51.88906470124744],[6.12788657884382,51.88886879903131],[6.12795136711862,51.88882559561276],[6.127995101182582,51.888791774249974],[6.128034658238321,51.888756594974126],[6.128172985910227,51.88863358502218],[6.128255800461823,51.88857537356349],[6.128382477670073,51.88850264726188],[6.128499354552027,51.88844875090694],[6.128575729569626,51.88842996796646],[6.128933451716548,51.88836191249959],[6.129008471484912,51.88834905234326],[6.129141501345562,51.888328661734676],[6.12932960769475,51.8883087139375],[6.129571491011161,51.88828528887753],[6.129657134234697,51.88827537233511],[6.129829325015034,51.88823993809866],[6.129924385225164,51.888209162157985],[6.129972866802452,51.88819113897101],[6.130317828109066,51.88798403420192],[6.130553153759717,51.88784437188201],[6.130640855918742,51.88775521593049],[6.130685016345636,51.88767883874414],[6.130707102399166,51.88760981915633],[6.130704549744165,51.88758897274115],[6.130694350849955,51.88756603544437],[6.130669241682546,51.88752425352945],[6.13072040095776,51.887466177781846],[6.130799093546827,51.88737600011112],[6.130826426987552,51.887343225324],[6.130921594165425,51.8873340025851],[6.13107188867303,51.887287091877994],[6.131218787174159,51.887228094826334],[6.131411810942387,51.88712994750326],[6.131524024595544,51.887070315945984],[6.131631105910527,51.887007786525075],[6.131729576242935,51.88694369364693],[6.131788655805173,51.88692719349266],[6.131852448332103,51.88691284765767],[6.131916848772537,51.886902758537346],[6.132080149409479,51.88689140391539],[6.132158683831515,51.886888352984236],[6.132179422320482,51.88688370015132],[6.132239547390144,51.88686719313657],[6.13237184692205,51.886835513769356],[6.132637081916447,51.88675446993649],[6.132906634073156,51.886666656622026],[6.13293253308606,51.886658743971864],[6.132962013670033,51.88664782435004],[6.132995563642042,51.88663002954984],[6.133039453824042,51.88659371543443],[6.133050382431667,51.88657826649853],[6.133057580093398,51.8865568188833],[6.133049732591401,51.88652332319959],[6.133046437837963,51.88650508824055],[6.133207210712118,51.88646404970074],[6.133320819845165,51.886424856647565],[6.133390095368476,51.88640749091319],[6.133443948632195,51.886398249977674],[6.133504112752936,51.88639291491532],[6.133531994501684,51.886426588861184],[6.133551812578969,51.88642338880137],[6.13355941668946,51.88643257178525],[6.133591627442106,51.88642775590176],[6.133691319405249,51.88644712191204],[6.133963364411251,51.8864807894776],[6.134152300012141,51.886490365240334],[6.134529725475324,51.886481806775926],[6.13481798461539,51.886460583539844],[6.13487344896399,51.88645040586344],[6.135308369636119,51.88634771851892],[6.13607457241687,51.886033779172394],[6.136206586413778,51.885978286420546],[6.136706714520433,51.8858796722485],[6.136742605937592,51.885885699250686],[6.136765061006998,51.88589171313076],[6.136803033324832,51.88593456220841],[6.136882021369707,51.885904817993236],[6.136983053800788,51.88585646135795],[6.137252974460919,51.885692286277866],[6.137519823678028,51.88545818970743],[6.137614185031406,51.88535224907374],[6.137699055685875,51.88522858951663],[6.137773145832503,51.885067372416465],[6.137814921717704,51.88489165642903],[6.137945841793726,51.88426893249042],[6.137967640630827,51.884162592512396],[6.137948913057705,51.88385516640416],[6.137941944802329,51.88370747389242],[6.137998849788294,51.88358633889186],[6.138131883473602,51.88342025032159],[6.138261199067298,51.883291631994],[6.138323631639134,51.88323977277401],[6.138495342476694,51.883124995139106],[6.138673013434998,51.88300622411007],[6.138855596454994,51.882844222017596],[6.138979831042038,51.88270642205211],[6.139012749506397,51.88264161002797],[6.139081647515147,51.88242491147959],[6.139235021608085,51.88212848207795],[6.139364757855565,51.88191252626414],[6.139467631343339,51.88169880078676],[6.1394911377721,51.88161321326552],[6.139501469959393,51.88155276145404],[6.139514006062741,51.88148948207987],[6.139542682818541,51.881442961962144],[6.139699950717098,51.88126331419675],[6.139765956848829,51.88114492439627],[6.139884709060558,51.880959428914835],[6.140013676896088,51.88082290079677],[6.140094167703427,51.88075778344149],[6.140193055322732,51.88070799951725],[6.14035658494153,51.880630250754805],[6.140383408934426,51.8806076071222],[6.140414608296851,51.88057651306919],[6.140547874504249,51.88045397904025],[6.140648800206696,51.88039154363216],[6.140682443796718,51.88037025839758],[6.140711447943959,51.88034339401816],[6.140733575926399,51.88031094687349],[6.14097249162742,51.87999982694611],[6.141200206257253,51.87970169509826],[6.141414070616402,51.8794161729148],[6.141423772955239,51.87940322089325],[6.141556799830136,51.87922955086808],[6.141703526579537,51.87908217429787],[6.141770230973286,51.879005908546404],[6.142039281277087,51.87857526853769],[6.142120750356072,51.87835685125468],[6.142175061832799,51.87816446883231],[6.142277048048369,51.8779658023656],[6.142345977502394,51.87786392231796],[6.142415393705491,51.877784996075675],[6.142562010361195,51.87760556559925],[6.142602755754093,51.87754814472723],[6.142721599374825,51.87733994929892],[6.142782401301696,51.87718748827604],[6.142829554693144,51.87703262519905],[6.142891212216198,51.8767954227079],[6.142916076998499,51.87665810503704],[6.14291978747014,51.87660926385785],[6.142935219777021,51.87658388847807],[6.143011239078984,51.876523013487585],[6.143067484243848,51.8764987775968],[6.143193731249664,51.87646005073202],[6.143368623350477,51.87641151845876],[6.143427251456769,51.87639428717502],[6.143467686690193,51.87637296635881],[6.143501075384022,51.87633764167307],[6.143518267656684,51.87628136092262],[6.143508129284752,51.876219072032534],[6.143491446209963,51.876170029608936],[6.143478892325191,51.87609708675876],[6.143480165990292,51.87603809509913],[6.143528599340519,51.87595352361368],[6.143548204428527,51.875918970833915],[6.143554528038136,51.87589084958696],[6.143547212761359,51.8758599937643],[6.143528193820624,51.87580675970721],[6.143497754167973,51.8757479723222],[6.143333607452851,51.87541269256868],[6.143235236700971,51.87520633560622],[6.143231024858108,51.875198533620356],[6.143179569918737,51.87510329770002],[6.143168061640258,51.87509770895295],[6.143208395410508,51.87501597621526],[6.143245351131225,51.87491730364838],[6.143337890179008,51.87477590067011],[6.14349682953361,51.87449237297602],[6.143532764611235,51.87441252010937],[6.143554746061119,51.87435178607394],[6.143579107398021,51.87426072700086],[6.143611171009542,51.87410351582473],[6.143656099899061,51.87388322035191],[6.143669470510715,51.87382254176661],[6.143664872861416,51.87372098174759],[6.143656145863944,51.87354397968501],[6.143660906758822,51.87348512733087],[6.14366757860888,51.8734319704523],[6.143676595366891,51.87337059183337],[6.143677494360272,51.87333683368554],[6.143673156570093,51.87330944627178],[6.143668921588485,51.8732976714689],[6.143656753950885,51.873281345589646],[6.144503214594801,51.871849570739776],[6.144452051252562,51.87149639527617],[6.144472361412574,51.869804448088416],[6.144539177146442,51.8697445122475],[6.144623288864343,51.86969507138959],[6.144891572302109,51.86954538711171],[6.145250704821835,51.8694102165802],[6.145441234424414,51.86932548165851],[6.145693267675103,51.86923711317527],[6.145825460386971,51.869214776183384],[6.146130750208767,51.86921064581069],[6.146317050360322,51.8691938011059],[6.146443226308931,51.86916772708697],[6.147208581308605,51.868866688869325],[6.147518668310662,51.86875133419792],[6.147680620589691,51.86867720750961],[6.14842535216648,51.86823094833288],[6.148611271656563,51.86809751959462],[6.148779540225426,51.867967890406014],[6.148907892901967,51.86774476829116],[6.14904653204628,51.86754611829952],[6.14909762270244,51.867467855107165],[6.149119992474417,51.867382677254824],[6.149116330686704,51.86720930986351],[6.149131680633017,51.8671554580839],[6.149191223628303,51.867070488382524],[6.149329591532755,51.86695031074952],[6.149439503160141,51.866864564489994],[6.149597903773091,51.86667567301622],[6.149708422345982,51.86659154051325],[6.149876767179006,51.86650118962241],[6.150301020359299,51.86636414215567],[6.150590607126556,51.866257164062645],[6.150782509914067,51.86618627191644],[6.150885140796756,51.86616798656497],[6.151024978909594,51.86616905432177],[6.151159684684361,51.86620134595446],[6.151266156064597,51.86623822563906],[6.151366227979426,51.866257349339996],[6.151469937021982,51.86627689871094],[6.151649187114634,51.86627321481426],[6.152055823187172,51.86624476879786],[6.152256183250312,51.866218834337076],[6.152465765521916,51.86618025529484],[6.152679883219141,51.86616079214881],[6.15282932403457,51.86613743587505],[6.153212375797396,51.866054218937855],[6.15340015478822,51.866039870093225],[6.153583779439206,51.86605440166809],[6.15386446454863,51.86603908599446],[6.153978080233323,51.86599241191335],[6.154009775286091,51.86597791292229],[6.15410774544366,51.86593331841123],[6.154177719964475,51.86589879424904],[6.154255710027069,51.86587455463284],[6.154602099534411,51.86582132514824],[6.155113865161996,51.8657683612979],[6.155191486465251,51.86574807848001],[6.15528924533564,51.86569970911827],[6.15549268318315,51.86560768230587],[6.155592392248413,51.86557152450662],[6.155868277241541,51.86550491017671],[6.156107539136963,51.86547026505167],[6.156194121877183,51.865430687130896],[6.156453154519346,51.86521919465681],[6.156639497150898,51.86509563775059],[6.156682447454629,51.865077163179144],[6.156793570482852,51.86502937011044],[6.156794365855706,51.86502918512302],[6.156850838848927,51.865016140879554],[6.156917788243185,51.8649917022018],[6.15699243142032,51.864950224459015],[6.157335325770672,51.864701865852744],[6.15798888675791,51.86448571367314],[6.158243893977023,51.864421388063576],[6.158334448625992,51.86440200695421],[6.158545741424399,51.864345428418964],[6.158809926053723,51.864299917471776],[6.158895252559963,51.86428048040419],[6.159095296642411,51.8642199299164],[6.159342794784443,51.86410738213129],[6.159551507997969,51.86401908874012],[6.160080038447068,51.86381102816244],[6.160364108015944,51.86366408047303],[6.160580997345424,51.86353645089278],[6.160731193897701,51.863448001547305],[6.160889982328004,51.863344214641145],[6.161094721290523,51.86323625947279],[6.161161217574052,51.86319420354015],[6.161326747710265,51.86306888865995],[6.161513929261297,51.862986935898434],[6.161762583351179,51.86291698161497],[6.162097556016046,51.86285176036305],[6.16222908192451,51.862817544118485],[6.162337490816226,51.86278141297518],[6.162488852018193,51.86272720049716],[6.162596653908968,51.86269799439886],[6.162785103135014,51.86265612069646],[6.162915285698257,51.862645103328575],[6.163044112627386,51.86263966775276],[6.163232815424867,51.862637791248126],[6.163351517441828,51.862626130195295],[6.163520063249044,51.862591937387194],[6.163619295756119,51.86255415788825],[6.163766758483193,51.86250131783611],[6.163948290896089,51.86244573534178],[6.164118003940748,51.86240353402598],[6.16441000800111,51.862330590587206],[6.164528607987274,51.86229627755413],[6.164702298271823,51.86224065592599],[6.164753101325418,51.86221488148532],[6.164805546151203,51.862191702862845],[6.164841290158113,51.862159825949156],[6.164901345904243,51.86209821522183],[6.165031093715154,51.861994974567466],[6.16524765005083,51.861840911742064],[6.165292524661678,51.86180816518895],[6.165357560184636,51.86176593675336],[6.165449529094452,51.86173647341937],[6.165677421835415,51.86168399655843],[6.165838374008507,51.86166432252098],[6.166085624819926,51.861648300375656],[6.166202907799878,51.861663881529964],[6.166372570696275,51.86167776660604],[6.166520693067912,51.86167174969144],[6.166800973441347,51.861651641627425],[6.166918546444411,51.86164205184458],[6.167000363390397,51.86162164339775],[6.167099555515517,51.86148967783046],[6.167126801397139,51.86145343423737],[6.167126765570639,51.86145136707944],[6.167247967704537,51.86118215982218],[6.167235054150223,51.86096480949746],[6.167152591185803,51.860838976605706],[6.166953493687005,51.86066780654239],[6.166693643387764,51.86054279195514],[6.165886070336288,51.86024253668958],[6.165600122916504,51.8601158141795],[6.165358679728531,51.86000882274146],[6.164968282677942,51.85974678337223],[6.164760890276527,51.859556878250714],[6.164687630998574,51.85946913962208],[6.164550986223079,51.85930550684129],[6.164545431268928,51.85929487406638],[6.164439740935848,51.85909276237505],[6.164368746577756,51.858873818791785],[6.1643391917389,51.85865028625445],[6.16434677650556,51.858400170995935],[6.164368797300468,51.85790160294117],[6.1643536543691,51.85758790839219],[6.164333265322659,51.85744116835124],[6.164125010047898,51.85637639955462],[6.164052571423096,51.855992702765306],[6.164017327918216,51.8558060613265],[6.164016455642944,51.85580177949817],[6.163953049011574,51.85548965365945],[6.163713865663769,51.854312172791424],[6.163697081699742,51.85423031602681],[6.163668269310697,51.85408983374165],[6.163610852204163,51.85380993742481],[6.163597431933461,51.85367987006038],[6.163602203702494,51.85355931822733],[6.163606730373467,51.85344475447688],[6.163818190870376,51.85289648397021],[6.163820871355224,51.85289031797412],[6.163899731288753,51.85270779326897],[6.163910463680503,51.852683740437165],[6.164012743621448,51.8524487105619],[6.164045970803319,51.85237233850621],[6.164063059184183,51.852333070689596],[6.164220380136511,51.852020849998894],[6.164251255124892,51.85195960343106],[6.164342020924646,51.85184475628649],[6.164499903076187,51.85168292118559],[6.164615710984688,51.85156420463481],[6.165005744395962,51.8512130392768],[6.165233497074463,51.850962363326225],[6.165359361619649,51.850787507911335],[6.165485213935923,51.85055323720228],[6.165639791656542,51.85020920370908],[6.165667584916324,51.850079042921216],[6.165682863214417,51.849946987622545],[6.165707746508614,51.84967375516815],[6.165727957791454,51.84945181618877],[6.165733190285175,51.84939434374993],[6.165741851575219,51.84929931179517],[6.165750633080734,51.84920284085056],[6.165758439644476,51.84911713583394],[6.165768234699609,51.84900962004997],[6.165776955970673,51.848913868594295],[6.165785690318704,51.848818036151684],[6.165794387157129,51.848722554514914],[6.165803121277654,51.84862671308125],[6.16581182944725,51.84853105159162],[6.165820501662318,51.848435830784474],[6.165843627084142,51.84818189064844],[6.165880568582697,51.84771648075075],[6.165890379285146,51.84758724815083],[6.165925730294204,51.84713901715662],[6.165937314796421,51.84699152572605],[6.16598836865624,51.846341987561125],[6.166010530968354,51.84606017077948],[6.166019226204942,51.84594955213859],[6.166055524149151,51.84548909009448],[6.166080393587527,51.84525558751409],[6.166180756091983,51.8443065960207],[6.16620115940071,51.8441136350746],[6.1663969716407,51.84226212857966],[6.166559886041112,51.840721642057574],[6.166538820602916,51.840705557352244],[6.165534543502655,51.840963906122035],[6.161194480178952,51.84222378158231],[6.160404748726478,51.84240932316497],[6.157769278888828,51.843109517292675],[6.156120851068937,51.84352229237563],[6.1527601266817,51.844290886410555],[6.147597288883123,51.84535674524473],[6.143645287256733,51.84608143491572],[6.141089052308498,51.84647681191093],[6.137458150659575,51.846982096728006],[6.134715463486032,51.84727150490291],[6.132453962193663,51.84743869451649],[6.130166223764628,51.84756977104439],[6.126392829288131,51.847723652472816],[6.123827044135433,51.84777180667938],[6.121274720789446,51.847755776434134],[6.117762234961139,51.84765438048314],[6.115313810219812,51.847640101931844],[6.113097963313503,51.84767658053852],[6.110942097130267,51.847762646763925],[6.107308065245382,51.848141737141084],[6.104881683037966,51.84837345050784],[6.103814555778602,51.84850553116873],[6.101954033352047,51.848843276399485],[6.101027692911138,51.84904554054222],[6.09888978832965,51.84957031425632],[6.096599929147732,51.850198212999295],[6.09575128320006,51.85041232498458],[6.094612774308367,51.85078351294816],[6.093463702889941,51.85113312445632],[6.091501677380533,51.8518367575762],[6.090453193536209,51.85224079102815],[6.088449533274046,51.85310220381977],[6.086030193228627,51.85429273764528],[6.083349451118059,51.85574768844248],[6.082127889570838,51.85644002765712],[6.079649601906966,51.85790521042829],[6.077509998284346,51.85908717397773],[6.075248604236459,51.860262789494406],[6.073227559321724,51.861261116984274],[6.070125061855532,51.86267721472469],[6.064566765651542,51.864940555050474],[6.063526320293248,51.86534205161758],[6.063342522445131,51.86550518577658],[6.060074399595349,51.866823936868784],[6.057343108658735,51.86794599757956],[6.055904540607379,51.868542109519],[6.054439549828084,51.86908779309104],[6.053818903894549,51.86930788728212],[6.046394679624748,51.87087702189952],[6.046184708547114,51.87090095295849],[6.043711452332714,51.871974336035706],[6.042137662567403,51.872701087081815],[6.040640676290939,51.873579633032726],[6.039473039482567,51.87409454096823],[6.038428373434771,51.87464190044361],[6.036431889015853,51.87576051536587],[6.035538343205644,51.87631291174961],[6.034504428581224,51.87696775810781],[6.03358499080043,51.87763235804865],[6.031919342262045,51.878957214120504],[6.031380582001448,51.879413811685716],[6.030508757028662,51.88030424375541],[6.029864263063601,51.881034159429205],[6.029160988513659,51.88189247947249],[6.02880317186573,51.88235846843343],[6.028135786091384,51.88341292928111],[6.027532231822874,51.88450552018324],[6.026881202609087,51.88585257328309],[6.026362587730245,51.88706519736764],[6.025781091819607,51.88863067967707],[6.025268382391177,51.89026376065452],[6.024938109055612,51.89125485421971],[6.024602146917508,51.892069858666645],[6.024045920326945,51.89326469812452],[6.023749077132949,51.893798596397204],[6.023069796520251,51.8948348323508],[6.02229422004162,51.89587018041659],[6.021648432947081,51.89656578647058],[6.020682666750543,51.89741591985951],[6.019804499214509,51.89812119531265],[6.019141510743361,51.898631772597824],[6.0175063591839,51.89967508026073],[6.016606862029023,51.90017708071812],[6.015651285795658,51.90064791447081],[6.014606188698412,51.901098994425276],[6.013414555569367,51.901577250039836],[6.012178658613598,51.90205797609782],[6.01084642528085,51.90253554897984],[6.009434635571066,51.90294302454528],[6.007053832177049,51.90363396311772],[6.005813013907616,51.903964090294544],[6.00439788612094,51.9043830390171],[6.003301466090928,51.904732043008494],[6.002103652789179,51.90513943092358],[6.001035050712577,51.905549502065135],[5.999865462673064,51.90603171717116],[5.998956433607452,51.90647436276207],[5.996953177996497,51.907336718376826],[5.994868807557182,51.90831855649082],[5.993862394208275,51.90883778711684],[5.992573144505478,51.90951801241172],[5.991035060343913,51.91039050782657],[5.989295931917907,51.91156709351764],[5.988134559246996,51.91244688828472],[5.987171391428915,51.913292233354944],[5.985980237998125,51.91429546897002],[5.985507582178437,51.91473466046462],[5.98531286564332,51.91491570220299],[5.984375689740878,51.91577662119161],[5.98361346526296,51.91656024251679],[5.98288151946211,51.91736842348001],[5.982052943817056,51.918273714954495],[5.981239688181812,51.919206450059335],[5.980409974878912,51.92008224186514],[5.979162817562428,51.92130759155327],[5.978165934305691,51.92203449516917],[5.976721551948034,51.923090872112795],[5.9754451995399,51.92397420481555],[5.974623637750771,51.924515936653506],[5.974559649366498,51.92459069213069],[5.968871105749301,51.927999206856455],[5.968112479828394,51.928500694599556],[5.967384546587124,51.929040507565645],[5.96655077355008,51.929759763869356],[5.966124865025997,51.930134040400006],[5.965287017368594,51.93098111187199],[5.964559394071486,51.931815838344534],[5.964152050547001,51.93232933698273],[5.963605838964203,51.933034238643174],[5.963421318196216,51.933314627585226],[5.963024128017754,51.934072726143775],[5.962721113265832,51.93475199420769],[5.96247485756017,51.93535767170418],[5.962171363649443,51.936160531378555],[5.962064485818564,51.93657957780771],[5.961907323255182,51.93733059907053],[5.961833606400916,51.937891050710846],[5.961731957539432,51.93864826055731],[5.961658153004894,51.939060122548746],[5.961534324454514,51.93968261417654],[5.961391422196303,51.94041305984122],[5.961249433073744,51.94117973534818],[5.961030479816315,51.94197010009161],[5.960877748853005,51.94234161792025],[5.960634027088725,51.942901774477015],[5.96024139960188,51.943689333166525],[5.959783935033721,51.94454377673386],[5.95931315037129,51.94517469642942],[5.958801907770152,51.94582406861201],[5.958328453055801,51.9463544393001],[5.957585383430324,51.94704060497248],[5.956862608809863,51.94764436733599],[5.956041771730657,51.94818736623188],[5.955087476856733,51.94876414889196],[5.954754769151243,51.94898175846082],[5.953603960696061,51.94962183464676],[5.952612919727031,51.950155236386514],[5.952508492135163,51.95021285001131],[5.951684320848996,51.95066754413138],[5.950158024892791,51.95136837508721],[5.948919416038798,51.95190433512454],[5.947713046505688,51.952403332005446],[5.946649113849029,51.95284349489804],[5.945016077877662,51.953563866674074],[5.943844448765819,51.95412192580595],[5.942273359944759,51.95495123081752],[5.941325960944923,51.95546803866097],[5.939997892270067,51.95626976363765],[5.939143820813703,51.95681982117027],[5.937785229686239,51.95786378861446],[5.93712170439033,51.95849664288218],[5.936514069243227,51.95914692802318],[5.935906952031147,51.95995253791574],[5.935664911845644,51.960311517182824],[5.935394976631867,51.96073214020797],[5.935216371556236,51.96111104652219],[5.934810981965581,51.96200138032832],[5.93447449653068,51.96283858514622],[5.934090310973239,51.963699043462725],[5.933621741071178,51.96457646489883],[5.933208518106482,51.965314026653395],[5.932930441317607,51.965705188274704],[5.932503255411893,51.966193665828875],[5.93187095431498,51.966755279986906],[5.931223016191481,51.96728494194781],[5.930616897274886,51.96772059091014],[5.930020450285622,51.96809214993267],[5.929102553269843,51.968619956238804],[5.928342904951706,51.96897933791727],[5.927665754809505,51.969241991444605],[5.92652255205991,51.96964413308316],[5.925487207725184,51.969921898959875],[5.92497684701781,51.97006411565541],[5.924027976319912,51.97025411746721],[5.923091529366558,51.970361755322834],[5.9224315926166,51.970432454803664],[5.921135824377898,51.97065097685866],[5.920436406625129,51.97076762883034],[5.91964664395825,51.97097428843598],[5.918592918440662,51.97126134581302],[5.917409446116951,51.97167284956045],[5.916779305811134,51.97190067901505],[5.916059451665351,51.97223452173177],[5.915144501345078,51.97274394716924],[5.914460148376151,51.973159639255876],[5.913870877143077,51.97354007161345],[5.913016601487027,51.97410847537452],[5.912161082837956,51.974630813098145],[5.911758726852189,51.9747994548491],[5.91088293767807,51.975107276858544],[5.910090296598289,51.97535039975667],[5.908121095116451,51.97599141349384],[5.907021368037251,51.976367891807605],[5.905464613697312,51.976949736079746],[5.903956412478848,51.977544828725975],[5.902213365319876,51.97836844784374],[5.901118762397418,51.978943434054685],[5.900542774957956,51.979268968044074],[5.897496776525212,51.98106472339815],[5.896655580169281,51.98143380228042],[5.895935616661292,51.98174448834745],[5.894263530744363,51.98235392765231],[5.893020711162192,51.98265111942504],[5.892227133547738,51.982791040197505],[5.891588634533849,51.982887315160546],[5.889279858756889,51.9830946569265],[5.887723415583951,51.98309370769563],[5.886339593849526,51.98298948232668],[5.884932217231344,51.98272973013458],[5.883609767854494,51.982476624805564],[5.882230779006829,51.98212768001683],[5.881051423845419,51.981750635087224],[5.879503795273149,51.98116024371095],[5.877618358906713,51.980310580115976],[5.876459546909347,51.97970307800483],[5.875297964204134,51.978921708251576],[5.874347929769792,51.97820349262944],[5.873686272564771,51.97771384053444],[5.872870589926932,51.97707005337571],[5.872838221247914,51.97704209856571],[5.872481503665648,51.97673656069682],[5.871552314448294,51.97734595372728],[5.87128005764393,51.97752450421683],[5.870698761340253,51.977903605115245],[5.869972177411419,51.97837978023628],[5.869153214057348,51.97891727920391],[5.86898142051939,51.97903003149426],[5.86879118013007,51.97891876244243],[5.868726878229316,51.97888114901397],[5.868668483894538,51.9789192648712],[5.868534653458563,51.97900661289175],[5.868384084778891,51.97892042896484],[5.868356214723211,51.97890447190003],[5.868548895658862,51.97877810761358],[5.867635330375712,51.97824813553887],[5.867518322304991,51.978324295136105],[5.867443997720143,51.97837266820364],[5.867438799768896,51.97836978620659],[5.867069064675464,51.97860874887084],[5.866885371117542,51.97872790139164],[5.866802717349232,51.97878151225679],[5.86657876129645,51.978927802422184],[5.866442311271782,51.979016929427004],[5.866281504809802,51.97912196594436],[5.866260950850475,51.979140880194706],[5.866243730945301,51.979165326647795],[5.866220159542642,51.979198814248406],[5.866273551052311,51.97927803544449],[5.866721435741681,51.979533778980105],[5.867077298276941,51.97973722486834],[5.867501737714801,51.97998161000571],[5.867403431104441,51.98003757722951],[5.867238849228167,51.98013271634586],[5.867283886153031,51.98013557053911],[5.867302489725011,51.98015064888098],[5.867313488752615,51.98016784355606],[5.867324449066815,51.980211329198674],[5.867328503510401,51.98022702421302],[5.867336463520806,51.9802390720031],[5.86735799374281,51.9802691848197],[5.867369817201493,51.98028996245925],[5.867367130109443,51.98031224646645],[5.867318891825388,51.980376107631955],[5.867277428132219,51.98046094680264],[5.867229070029704,51.98055987181877],[5.867227354644299,51.980564157256936],[5.867141258186223,51.98054798815786],[5.867057782661835,51.980529174725966],[5.866996529427897,51.98067725540321],[5.866983503540911,51.980849950046384],[5.866789493749004,51.98083543737855],[5.866788900059784,51.980837501053],[5.866776517850767,51.98088831752607],[5.866760314022144,51.98097105808267],[5.866748592277204,51.98104280563196],[5.86673788639599,51.98112379800751],[5.866737227268741,51.98113294180637],[5.866723501203842,51.981243221419646],[5.866694693950277,51.98124179289401],[5.866645654908411,51.98148415587032],[5.866638281201035,51.98155008821596],[5.866637976114025,51.981567841370385],[5.86664449093189,51.98162169972277],[5.866636793026187,51.98166684342997],[5.866616037335483,51.981739140121825],[5.866590842108316,51.98181417836464],[5.866552270804431,51.98189478095851],[5.866391669274336,51.98215205169774],[5.86627135122052,51.98231602125739],[5.866221217080702,51.98240033806749],[5.866161322882456,51.98252079164979],[5.866130629257857,51.98259767680252],[5.866088450218033,51.98273723924331],[5.866024116241806,51.98294500526554],[5.865934663571606,51.98323657261363],[5.865874399567133,51.98342482633028],[5.865860960299137,51.983466784515734],[5.865789289606421,51.98368974351553],[5.865748883394225,51.98382375280744],[5.865726489616347,51.98386418344696],[5.865696663721434,51.983903862339325],[5.86566085197309,51.98392144535735],[5.865606109280269,51.983945208436836],[5.865571982545417,51.98395563887001],[5.865528307130657,51.98396750131884],[5.865467637728213,51.983988358251764],[5.865400340347914,51.984019713480116],[5.86534863630806,51.984051337838075],[5.865293696121105,51.98411121658375],[5.865261524148506,51.98414662646726],[5.865235220588585,51.98418495166324],[5.865217994950558,51.98422547804219],[5.865209958542459,51.984269086009576],[5.865210667125234,51.984315067296855],[5.865216375426738,51.98433845862849],[5.865452325631928,51.984478462912634],[5.865374812668152,51.984511585419604],[5.865083062141551,51.984636261635465],[5.86507268647867,51.98464069907768],[5.865054905738605,51.98464829453805],[5.864981436321568,51.984601925767215],[5.864964435584767,51.98459119089266],[5.864531956931839,51.984632297849096],[5.864412099213026,51.98464383089793],[5.864381660879188,51.98464800813258],[5.864255605858265,51.98468182120767],[5.864167726220739,51.98473129873792],[5.864132145638808,51.98475978315964],[5.863973176889132,51.98488538313501],[5.863950664097677,51.984897024371314],[5.863511842167622,51.98513204894953],[5.863113919376241,51.9851611101976],[5.863153870540928,51.98529055085086],[5.863192221170841,51.98544472478617],[5.863194867328679,51.985455383190725],[5.863239355041689,51.98561168946077],[5.863276396554405,51.985733007430596],[5.863401689237118,51.986189007017096],[5.863433147549593,51.98630541295972],[5.863493171977948,51.98653589058181],[5.863550636068679,51.986761003533864],[5.863609834185908,51.98699032494077],[5.863690622857154,51.987295015618514],[5.863700858203747,51.98732935439696],[5.863702850575391,51.98733600665492],[5.863712179916361,51.98736728409272],[5.863715214109952,51.987377446554554],[5.863739156074566,51.98745767798214],[5.863788912854948,51.98762447897076],[5.863810681205038,51.98769742069058],[5.863813685372836,51.987707493388214],[5.863821746643311,51.98773450651269],[5.863832713350217,51.98777188934765],[5.863871225220278,51.98792711399646],[5.863955200780181,51.98826556957202],[5.864052035669747,51.98865357036821],[5.864118549194276,51.98890907168772],[5.864165553311129,51.989094642230626],[5.864226067092617,51.98932798468934],[5.864278013437348,51.98953463066725],[5.864355079704279,51.98982932293865],[5.864375042437591,51.98990204715434],[5.864426387807633,51.99008903808648],[5.864700201253756,51.99105289226218],[5.864702471129415,51.99108146582714],[5.864588242412708,51.99109136723791],[5.864553477719906,51.99109437560606],[5.862889451067134,51.991201345964186],[5.862560108615207,51.99122096869793],[5.862591597713538,51.99135799380688],[5.862630443428307,51.99152696052984],[5.862709940971045,51.9918429192359],[5.86278924398653,51.9921541598096],[5.862834186821929,51.99232678699574],[5.862859168971048,51.9924253594472],[5.862891202928348,51.99255182100955],[5.862949461318675,51.99277998687917],[5.863012515160338,51.99301819121359],[5.86305419583097,51.993179614107135],[5.863150617379331,51.99355309196959],[5.863182103669331,51.99368129938124],[5.86322876311931,51.99387132077192],[5.863328562137672,51.994260918771964],[5.863382124547817,51.99446465524215],[5.863453976025119,51.994746560698],[5.863533254114931,51.99506544081498],[5.863611898718299,51.99537804061839],[5.863667099745889,51.995593221376595],[5.863672734977999,51.995615156939785],[5.863672371070002,51.995615167402185],[5.863729863575747,51.99584312917786],[5.86373407449771,51.99585983033536],[5.863739622894824,51.99589002648397],[5.863385110004531,51.99589690912595],[5.863358838426446,51.99589792329766],[5.860919504715861,51.99599192117379],[5.860493441306478,51.99600183365808],[5.85921540989233,51.996031543236924],[5.859179351355006,51.99603238003012],[5.856579261785141,51.9960927863299],[5.856550525570586,51.99609345827276],[5.856436468506065,51.99609610647913],[5.856428185383222,51.996096301311944],[5.856341583500522,51.99609830958889],[5.856212969014059,51.99610129427687],[5.856194962003936,51.99610593212538],[5.856186786272304,51.99610804101757],[5.855924290712933,51.996175708507394],[5.855814433268319,51.99620402789045],[5.85467922658481,51.99649664654379],[5.854481102650479,51.9965477142463],[5.853436209433711,51.99681449822336],[5.853376953843345,51.99682929410068],[5.853329055499088,51.99684124958577],[5.852774635894825,51.99697968074767],[5.852464995212824,51.99706135105679],[5.852456630868979,51.997063559305666],[5.852416745421931,51.997074565918204],[5.852346541921408,51.99709805129989],[5.852271477223994,51.997123164762215],[5.852139575060511,51.997168870297465],[5.852061849702306,51.99719580078639],[5.85205247678673,51.997199046644596],[5.851840950558082,51.997275410924225],[5.8512660418499,51.99747514403794],[5.850697263449816,51.99767254916739],[5.849672927839222,51.998039671538436],[5.849044986276167,51.998114161818535],[5.848125938566151,51.99822230940353],[5.847397374825501,51.998318433410894],[5.847307366881743,51.998330955645955],[5.847122145177845,51.99835672134965],[5.84676735554491,51.998368552424274],[5.846669228987103,51.99837182100029],[5.846263003572634,51.998404605387826],[5.846262508772208,51.99840463428371],[5.845052742361164,51.998466083419444],[5.844189478140692,51.9985099326171],[5.844140052238042,51.99851244360516],[5.844079011415092,51.99851547606561],[5.844024359982744,51.99851819605542],[5.842640212962213,51.998586993741824],[5.840755889226628,51.9986839685565],[5.840537809558556,51.99869519070012],[5.840290409046575,51.99869266546899],[5.840012018010746,51.99868982758486],[5.839162344767534,51.998659964621794],[5.83861256107965,51.99864063877016],[5.836294755139068,51.99855915184984],[5.834202838311192,51.9986922458507],[5.833807519220987,51.99871739561197],[5.833525915491728,51.99874723592578],[5.831774950240728,51.99894235080052],[5.831403504457514,51.998981729540134],[5.830307920704189,51.99910593604172],[5.8293958678602,51.99920933576707],[5.827625259003792,51.99940960391692],[5.82692528055463,51.999485378213954],[5.826275936476731,51.99955567424508],[5.825180977351199,51.99976452699707],[5.825054473629041,51.99979254698604],[5.82406420495224,52.00001184839809],[5.823889835284607,52.00005046228795],[5.822190339064647,52.00041318882226],[5.820373700566836,52.00079809172475],[5.820027543421928,52.00087108327198],[5.818826717218057,52.001124290684565],[5.817247736244324,52.0014312075385],[5.81658905950896,52.0015517913721],[5.816366946140162,52.00159245587846],[5.815381219543532,52.00177291002268],[5.815167155403119,52.00181186215388],[5.814047590247142,52.00201557718011],[5.81278547812794,52.002225900364984],[5.809911767826337,52.00266694335242],[5.809527620693621,52.00272523677536],[5.807004347226894,52.003108117196646],[5.806321722299248,52.00326781875607],[5.805815621185846,52.0033862254458],[5.802960636168883,52.00405409268732],[5.802983369406451,52.00409486391492],[5.80298935252296,52.00410558372087],[5.803008101970892,52.00413921438093],[5.803054027455286,52.004221546155605],[5.804118805647477,52.00613062851341],[5.805446347195407,52.00851055981899],[5.8054477394936,52.00851304461187],[5.806620820682374,52.01061585551936],[5.807225965551839,52.01170050942357],[5.807385057493558,52.012742810545745],[5.807391699702351,52.01278628988797],[5.808160802786178,52.01782416883023],[5.808174091270371,52.017911235212345],[5.808301823601245,52.0185713590816],[5.808338312728249,52.01875993635376],[5.80913009769827,52.01959511720623],[5.809261000289526,52.01973318328736],[5.809692281350427,52.02018807567291],[5.810014824530108,52.02052827199383],[5.810746410500053,52.02129987775292],[5.811566452352245,52.022164727390546],[5.812756323046129,52.02341956370928],[5.812928721537156,52.023601365112405],[5.813386186242708,52.02408376996649],[5.814104509626818,52.02484124631674],[5.814381483972758,52.025130857391765],[5.817654143719752,52.02855246844651],[5.818462119647791,52.029397117381635],[5.818572121941647,52.02951211396311],[5.818677458677237,52.02962224694422],[5.818848374294173,52.02980093514275],[5.820384997519031,52.031407308036286],[5.821026117857091,52.03207748981237],[5.821458145549232,52.03245100172168],[5.821509939712994,52.0324963538899],[5.821943580110697,52.03287603296846],[5.822804616692682,52.03360694375613],[5.823432111232516,52.034169978339605],[5.823801990697338,52.03449975061161],[5.824105507604689,52.03476079252957],[5.824277372748403,52.03490860375743],[5.824302372263255,52.034930109594576],[5.824442493123641,52.035050615428474],[5.824767295642377,52.03533706713513],[5.824814807230672,52.03537896431782],[5.824787149276438,52.035404602672806],[5.825910869060634,52.03635809559206],[5.825937797901851,52.03641420750218],[5.825977357442224,52.036490621634826],[5.826035713315052,52.03659335506774],[5.826091088967346,52.03666411951945],[5.826153562804555,52.03673195427889],[5.826203618087668,52.03677436272896],[5.826264724328308,52.03680674402719],[5.826328098066121,52.03684295480091],[5.826403261357761,52.03686717621042],[5.826477711769718,52.03689151707954],[5.82652685299357,52.03690904942844],[5.826585121938487,52.03694186359761],[5.827238510970179,52.037505239580426],[5.827666709390993,52.03787444661993],[5.829302320855245,52.03927985913744],[5.830871599771026,52.04062636551503],[5.832114414405943,52.04167936199431],[5.833001476716656,52.04243728007553],[5.83345897339172,52.04282477189487],[5.837709611269551,52.04645383799555],[5.837918124360606,52.04663184219606],[5.844156716066764,52.049191729067466],[5.849986976771166,52.05157784693372],[5.850045320890213,52.05160172393277],[5.853325570230841,52.051742740722574],[5.857061181642799,52.05189279730872],[5.859658369809114,52.052017091294374],[5.860707999054384,52.051895065780904],[5.861683200841279,52.05178168093811],[5.868298348186479,52.05101252369571],[5.882063239321633,52.049410786861394],[5.884232770899546,52.049479601933285],[5.89938885889523,52.04995918958823],[5.898770451584977,52.05519255365589],[5.898689715884,52.055875722195495],[5.89807736974269,52.06088013900005],[5.898056931146195,52.0610108624793],[5.897988850745274,52.06145303672679],[5.898120519618136,52.06157358173638],[5.898122155311174,52.06157507567163],[5.898149552402504,52.061596519528266],[5.898441342507098,52.061824830095084],[5.898119816494202,52.06336080220432],[5.899847750550019,52.063168530192996],[5.899848726311525,52.06316841808619],[5.902737116068463,52.062845129645616],[5.904414126253674,52.06265739071993],[5.909441105033546,52.06209399443019],[5.90950228546069,52.06208835709508],[5.90955544070057,52.06208230591824],[5.909620296842558,52.06207800044944],[5.909668427299862,52.062078721673096],[5.909740175875568,52.062090213822025],[5.909775674674398,52.062106882241714],[5.910006643712163,52.06220650712288],[5.910995104418277,52.06264382262981],[5.912255484916009,52.06320826955927],[5.913684830124986,52.06384610956656],[5.914440887221002,52.06419136205329],[5.915253152728985,52.06455701260236],[5.916194991295653,52.06497578020674],[5.91706562890263,52.065369307185875],[5.918232923195619,52.06589020172826],[5.91920114521313,52.06632029538027],[5.919841619571899,52.066604124546885],[5.923573871394892,52.06828549134112],[5.923986532765303,52.06847089872102],[5.926839623366347,52.06975269410746],[5.928904331366199,52.070680201458885],[5.928909024189105,52.070682310082205],[5.929335936063419,52.070870122981326],[5.92986367896815,52.071102303031076],[5.933375707026348,52.07266169472963],[5.934155470105206,52.073009964956114],[5.936864715962393,52.07421992110133],[5.939564274771444,52.0754296538904],[5.942188028855994,52.07659036389527],[5.94505912078654,52.07783174517994],[5.945539951129208,52.07781487887651],[5.94580137867383,52.07778360062425],[5.945884797045625,52.077773614523046],[5.946067790729037,52.07773098705119],[5.946068683488539,52.077734721917764],[5.946102840372955,52.077890532551216],[5.946380941939633,52.0777729588079],[5.947230981930306,52.07741357939445],[5.947650625010302,52.07723592631265],[5.95030690935464,52.076048845060846],[5.950522023890938,52.0759527028908],[5.951913530460239,52.07532156357281],[5.953588800425656,52.07452388446452],[5.955931012527627,52.073338553365595],[5.95612466375842,52.07325184326836],[5.956205429133518,52.073294416876315],[5.956282514446524,52.073330905195974],[5.956319431870027,52.07334694158935],[5.95632081363599,52.073347779806724],[5.956352707983185,52.07335994855484],[5.956433513230441,52.07339416275041],[5.956518817156338,52.07342655749587],[5.956616399174908,52.073460960112655],[5.956858272861405,52.07354383048551],[5.956994422492335,52.07358976690125],[5.957345417845855,52.07369440811309],[5.957613307091504,52.073774283747106],[5.957679171155676,52.07381256023488],[5.957738694503677,52.073854597523],[5.958737567006882,52.074198210512705],[5.959738933129196,52.074537147035045],[5.960577711421108,52.07482104076622],[5.962800734623191,52.075571573257875],[5.962836556520185,52.07558376600397],[5.962946175957104,52.07562107068451],[5.964693211740078,52.07621564650053],[5.966997439410782,52.07658842939954],[5.967932097868374,52.07673642699246],[5.968045526391021,52.07675535416994],[5.968358239425758,52.07680516140206],[5.971047241876658,52.07726948874761],[5.971156558722173,52.07728836141333],[5.971284385161788,52.077310431886204],[5.974740898244296,52.07786537788114],[5.975266361750653,52.07794648101218],[5.975348233502339,52.07795911415708],[5.975312552634628,52.07772957069652],[5.97529606279322,52.07753724161338],[5.97527704255846,52.07730556561797],[5.975251360649994,52.07702321117382],[5.9752339697446,52.07676342975304],[5.975220661810985,52.076561206660244],[5.975202308776173,52.07633139684477],[5.97518149164353,52.07611607939071],[5.975159810766545,52.07588386832803],[5.975146363771001,52.07567102178302],[5.97512329946484,52.07543784687369],[5.975100669132992,52.075233225459556],[5.97508536511843,52.074929013593376],[5.975073166228302,52.07465793488503],[5.975076638712824,52.07401110494051],[5.975079291998394,52.07380793920446],[5.979280419226671,52.07269860484272],[5.979806509194615,52.07278910415085],[5.982172580574961,52.07319608159943],[5.98440501202149,52.07356808688731],[5.984857870229761,52.07276357840678],[5.98521142285384,52.07213546362888],[5.985635957943982,52.071381223237324],[5.985840233590027,52.07102527444974],[5.986254476227633,52.07078692948966],[5.987186483836182,52.07040664396821],[5.987528120980293,52.07023862001975],[5.988143241292431,52.069902074255694],[5.988437208651277,52.069714629034664],[5.989702538997097,52.06880708828268],[5.990061217335573,52.068569310582035],[5.990149078517791,52.06851099877553],[5.991135869871823,52.067856539649405],[5.991489416921698,52.06766175900739],[5.991527356825544,52.067619431785296],[5.991523612882667,52.06756158898769],[5.991549696181742,52.06714771365468],[5.991576332908728,52.06679169746516],[5.991599713132369,52.06659945309766],[5.991689388989086,52.06633861371419],[5.99179988194002,52.06615125887929],[5.991919769073994,52.06603520013207],[5.992082374739963,52.06592706746501],[5.992249977325366,52.06583463837863],[5.992304163980872,52.06581438508382],[5.992191922784794,52.06571007600539],[5.992309172601629,52.065667794935585],[5.994030885082923,52.065046815576984],[5.995063004498125,52.06467454583408],[5.995541504993166,52.06449907741986],[5.996745524840599,52.06405754874908],[5.997201001486322,52.0638928797737],[5.997496166235013,52.06378616051872],[5.997582418181802,52.063754976902054],[5.997805160825269,52.06390107380218],[5.998702176020528,52.064489412088456],[5.999922154169997,52.0652897689932],[6.0001266861904,52.06542474225979],[6.000314309896694,52.06554855886534],[6.000867662391636,52.065911382807705],[6.001271464726567,52.066172131178696],[6.001758283642594,52.065996603131644],[6.002114143991246,52.06586828930289],[6.003514871248567,52.06537184225147],[6.004360244475926,52.06508892175458],[6.004358622624003,52.06492485807452],[6.004509655812369,52.06494754383654],[6.004698801880394,52.0649759528378],[6.004759840266111,52.064847549664194],[6.005034847945491,52.064931522816195],[6.005133102978335,52.06496153149185],[6.005278098351758,52.065003159309306],[6.005593522394972,52.065093714168135],[6.005942023329537,52.06519376579173],[6.006075825333714,52.06523217879946],[6.006080501704804,52.06505833063946],[6.006095683914879,52.06469684078219],[6.006106486845217,52.064439525585975],[6.006270823417612,52.06434779478048],[6.007794356387565,52.06349628059418],[6.00782315604325,52.06348629786841],[6.00883360271836,52.063658767714145],[6.010361377661567,52.06390208403164],[6.011102064403407,52.06402624521847],[6.011873647794141,52.06415978792713],[6.012444986171313,52.06428006389034],[6.012693723707442,52.06433885214839],[6.013639083116042,52.06451443543347],[6.013724290621027,52.06452971163876],[6.015018202680485,52.06476381902647],[6.015100103777436,52.06478697662495],[6.017051130785492,52.06459538708268],[6.019045011892945,52.06440606318427],[6.019952412905686,52.064328722771464],[6.020127660065758,52.0643140176494],[6.020403272096017,52.064290626985844],[6.022337569830743,52.064095388156545],[6.022395362782376,52.06408945874276],[6.02250150279045,52.06408635820757],[6.022590330533082,52.064083631874745],[6.022927641287587,52.06408883346265],[6.023225278626573,52.064124303006494],[6.024341003304257,52.06427584773236],[6.02439721500865,52.06428028718435],[6.024915997007759,52.06439442116623],[6.024902773975085,52.064257189350165],[6.025087281148641,52.06425043563252],[6.025441548501346,52.06422050850853],[6.026028189750864,52.06414802767024],[6.026417236179302,52.06414561986843],[6.026499661763127,52.064146718403556],[6.027062053479263,52.064179599121715],[6.027385634006031,52.06420253131282],[6.027686118321251,52.064257272013286],[6.028001810145427,52.06434942840486],[6.028105292326918,52.06437786151686],[6.028239460360881,52.06443292163605],[6.028381821173672,52.06448977959736],[6.02844116613544,52.06452270419728],[6.028500209415139,52.0645640794171],[6.028686711270923,52.064695937718945],[6.02888081794161,52.06484649490383],[6.029254719125643,52.065124586408835],[6.029507848293781,52.06531749970745],[6.029649028590189,52.0647475448991],[6.031913653878007,52.06500678362523],[6.032021759581172,52.065020532839604],[6.032426758105224,52.06333266897771],[6.032683147928166,52.06326866731645],[6.034476755780934,52.062710815863255],[6.035180063140865,52.06234320204805],[6.03545944628691,52.062204030781245],[6.035542703409769,52.06214739544661],[6.035572260776884,52.062127289882326],[6.037278269783972,52.061458085476296],[6.037668528200189,52.06129807303231],[6.03798899760965,52.061650498178366],[6.038189033553556,52.06188421223897],[6.038313548791819,52.062063851901755],[6.038485175201595,52.06242749135158],[6.038637230098853,52.06273000591594],[6.03870819183478,52.062971455186165],[6.038714553318696,52.06300147466862],[6.038808567492102,52.06302651499732],[6.039510079542219,52.063225429942214],[6.039712108936679,52.063266724248074],[6.040785441787897,52.06339952896201],[6.041076191671084,52.06343077839197],[6.041623414796132,52.063408638357394],[6.041786052263197,52.063404925555865],[6.041835805210568,52.06361278469127],[6.04189952928122,52.06384107072311],[6.04203769307546,52.0639554652972],[6.042177173758947,52.06400412532211],[6.042309236220066,52.06404411902011],[6.042469770283179,52.06405221415057],[6.04323168722348,52.064032804197176],[6.043338599728902,52.064035860043745],[6.043435979870183,52.064041496879206],[6.043597030445261,52.064069249540054],[6.04430062707058,52.0641903193218],[6.044752129376204,52.06425942470858],[6.044877522031122,52.06427950994972],[6.044912497281179,52.06430262805977],[6.044943660419222,52.06434542939796],[6.044892580016938,52.06420330603119],[6.04499143047007,52.06404545832976],[6.045202111561668,52.06374485791751],[6.045318246389716,52.06360039581924],[6.045376824707858,52.06353967815371],[6.045497601000346,52.06343198586149],[6.045894792152224,52.06318651836317],[6.046431620028999,52.06318604226261],[6.046639317929375,52.063286840603354],[6.046886499495774,52.06339191155633],[6.047218157706029,52.06353920306647],[6.047491444535548,52.06365283387292],[6.047951838865663,52.06384574744047],[6.048768040114545,52.064184687250936],[6.049153042865976,52.064332797181784],[6.049240167156473,52.0643382059889],[6.049318534359521,52.064344383781695],[6.049446771609285,52.06382919959615],[6.050267969429179,52.06409034398565],[6.050547351583176,52.06371852027085],[6.05064872183627,52.063578349295334],[6.050774808171437,52.06341472548705],[6.050853377672858,52.063289007947354],[6.052624288895291,52.06391634261501],[6.054604687181341,52.06462195421004],[6.055285505554932,52.064863025577196],[6.055376384058751,52.064896606611335],[6.055693622306952,52.06460435347158],[6.05671795780618,52.06350202105237],[6.057424003492863,52.06379251626651],[6.058357407937846,52.06417697052046],[6.05843519164578,52.06409543169228],[6.059456380080285,52.06325509611015],[6.059496821409316,52.06321694570913],[6.060423825629635,52.06358522717534],[6.061537018013318,52.06402967881651],[6.062320598056072,52.06434399400933],[6.062371206159693,52.06430016662764],[6.062786407031545,52.06392505043881],[6.064332144622516,52.06455181606829],[6.064405282471473,52.06458145023494],[6.064904869780404,52.06478390343247],[6.064961893858142,52.06474256597757],[6.065477018618944,52.06429244010045],[6.066790465695219,52.06481959192762],[6.067748666044563,52.06519667376371],[6.068268345647258,52.064706663355416],[6.068443663463146,52.06454735303032],[6.068661352811572,52.064542770461806],[6.071441749331428,52.0644842049528],[6.072608869777189,52.06445918031267],[6.075288691779448,52.064401684546255],[6.078604523967957,52.06433045418539],[6.085133685783421,52.06418258628136],[6.085408803065514,52.06417342317171],[6.087155593140817,52.065063470479075],[6.087202123795059,52.06508827139922],[6.08797866777125,52.065502222439925],[6.088167838823257,52.06560306042995],[6.088259070357034,52.065644636764304],[6.088377182452141,52.06569380992794],[6.088469186458966,52.06572695941598],[6.08854353260834,52.06575286152476],[6.088624298031696,52.06577983990791],[6.088766439355094,52.06582213728206],[6.088826902062326,52.06583688648259],[6.088867144135312,52.065842794747944],[6.088975970558968,52.06585776803333],[6.08900797050524,52.06586260182301],[6.089065465725104,52.065863886058814],[6.089102725498126,52.06585632050248],[6.089135211192448,52.06584749805631],[6.089260414070583,52.0658670130996],[6.089212065186799,52.065984840356904],[6.089198260858613,52.06601871884818],[6.089123620287192,52.06630497535514],[6.089107760907185,52.06639192431785],[6.08910593726205,52.06647646163835],[6.08912279302417,52.066615653642906],[6.089197397392224,52.06691623779257],[6.089208122897136,52.066961232457],[6.089246851156624,52.06706111383208],[6.089317177606463,52.067234933731676],[6.089360531640382,52.067356314585986],[6.089396952775562,52.067461548743935],[6.089464548312677,52.06764063402913],[6.089483935299423,52.067691994696276],[6.08956557704832,52.06790827084079],[6.089584628204528,52.06800603135085],[6.08958541622468,52.06805157061523],[6.089560501074422,52.068149728167],[6.089540862101757,52.068243027502476],[6.089487614810149,52.06842610513522],[6.089402762927528,52.068677997222636],[6.089286592971622,52.06901329905249],[6.089191400391867,52.06929786232366],[6.089123851899799,52.069497338843945],[6.089020282698352,52.069823558925606],[6.088900607944927,52.07016732123247],[6.088810748275095,52.07042507767023],[6.088870290716326,52.0704270672963],[6.089180990717692,52.070437448909075],[6.089782845954129,52.07045351751141],[6.090145317006648,52.070463193441185],[6.090583306114669,52.070146533351],[6.091060607198312,52.0698053243718],[6.091584713269759,52.06942948000916],[6.092124183111209,52.06904623376653],[6.092456451085392,52.068807221668315],[6.092891392080988,52.06849609108414],[6.093279149368009,52.06821752791407],[6.09370335068145,52.06791046745045],[6.094035962786893,52.067664761384684],[6.094255390723491,52.06750266050562],[6.09521187448,52.066795534695466],[6.095352437991944,52.06668966059885],[6.095419610642216,52.06663979373042],[6.095811878539784,52.066351523411086],[6.09636796629324,52.06594571331797],[6.096936704408392,52.06552070605182],[6.097402612694662,52.065167989339464],[6.09769273604281,52.06492440747489],[6.098035748824285,52.064637577220395],[6.098428024687766,52.064307933466075],[6.098753604672524,52.06403508437172],[6.099179681445522,52.063675680056214],[6.09954980951105,52.06336381949763],[6.099823560453595,52.063135701360615],[6.099943848350478,52.06303547217225],[6.100132809731027,52.062873202882585],[6.10032255752927,52.062651488456474],[6.100488110854696,52.06245722692006],[6.100540106103701,52.06239642924389],[6.100577330694168,52.06235586395448],[6.101263976543104,52.06178590248619],[6.101726873318876,52.06140165522163],[6.101733723744616,52.06139596895837],[6.102319328518027,52.06091720798143],[6.102347900894102,52.0608938444649],[6.102524387295935,52.06074956079377],[6.102572693724323,52.06070915223949],[6.102584925013518,52.06069892107367],[6.103021879251177,52.060333333220754],[6.103298875409751,52.060101591669465],[6.103955972065319,52.0595555589705],[6.104239680219289,52.05932105080432],[6.104371345257484,52.059209548155025],[6.104527070507727,52.0590799220359],[6.104585100266482,52.05903320647643],[6.104809890471603,52.05885223105217],[6.105098313172095,52.05861220911318],[6.105101651919282,52.058609456291435],[6.105154626325242,52.05856581832359],[6.105218638147869,52.058534858543844],[6.105328210584241,52.05855436924304],[6.105357078655435,52.058561428822735],[6.105745408182826,52.05826871724041],[6.105914171639231,52.05814150844205],[6.106119050073067,52.05799692907717],[6.106395190164956,52.05775101058585],[6.10656479693008,52.057580354847715],[6.106616922371281,52.05752126138031],[6.106706386285314,52.057381233087476],[6.106774524736267,52.057287894847185],[6.106815655835206,52.057231547010986],[6.106835810050487,52.0572018251058],[6.106906627174087,52.05709737875345],[6.106986172958723,52.056981742395905],[6.107068851052034,52.05686053201248],[6.107218614811662,52.05664141440414],[6.107288320330163,52.05653505108977],[6.10734706028812,52.05643500172213],[6.107838216996078,52.05559945691908],[6.107862245912882,52.05555872730751],[6.108401856520648,52.05464408222219],[6.10846006157963,52.05454552759709],[6.108504704664895,52.05447126174153],[6.108515523040674,52.054450450276384],[6.108526252017297,52.054424093524894],[6.108546156926722,52.05438086328998],[6.108407044217702,52.054367990215916],[6.108508847065908,52.05419458289088],[6.108509741183162,52.05419306736481],[6.10856643686918,52.05409409048104],[6.108585836384571,52.05406022024113],[6.109016793541672,52.05332987037546],[6.109237045500992,52.05297712792338],[6.109250049772114,52.05295629398957],[6.109253154071276,52.052956221021816],[6.109412093049972,52.05275059860992],[6.10953887094391,52.052587607462975],[6.109663958249834,52.0524274219338],[6.109692168843067,52.052393056998824],[6.109743098854896,52.052339110750644],[6.10981139134531,52.05225888373386],[6.109721676811252,52.05223045575277],[6.109942643586694,52.05193528710574],[6.110016315256354,52.05186952521152],[6.110170024901413,52.05173232646781],[6.110170484713878,52.05173191017842],[6.110240180157045,52.05167365089516],[6.110303991800958,52.05162029941289],[6.110529460539419,52.05143180313456],[6.11053021015745,52.051431277202596],[6.110828626827426,52.051225389034684],[6.110902242732485,52.05117346004423],[6.110989307231763,52.051112037486654],[6.111000782504779,52.051104920043166],[6.111290968548781,52.050924931886605],[6.111498802629974,52.050798526101964],[6.111532211057746,52.05077199357319],[6.111546701159299,52.05075839487396],[6.111549556297385,52.05075464712572],[6.111572696675751,52.05072424084143],[6.111578683178398,52.05069958480423],[6.111579659706901,52.050717582544706],[6.111581338155573,52.05074832150587],[6.111661406549241,52.05069792529873],[6.111675997325493,52.05068874825249],[6.111752054775265,52.05071299829305],[6.111794978181369,52.050726684116555],[6.111783464091915,52.05075300108271],[6.111794127220172,52.05075966776349],[6.111807735185622,52.050765426468466],[6.111824334024404,52.05077131956678],[6.111846370826572,52.05077361080147],[6.111866108793865,52.05077438815483],[6.111880318865147,52.05077321309536],[6.111895645463017,52.05077076379836],[6.111914955750623,52.05076493730797],[6.11194394265641,52.05077417871226],[6.112107600576152,52.05068831176299],[6.112117329571018,52.05068320937242],[6.112319741558832,52.05039603315887],[6.11241368058098,52.05031011875734],[6.112573094234414,52.0502198010675],[6.112652894085533,52.0501853422493],[6.112674338911259,52.05017541276078],[6.112743072911297,52.05014632521931],[6.112857833675473,52.05009396164921],[6.112890930825102,52.05007528650107],[6.112934905707005,52.05004774465433],[6.113041066149307,52.04996761483689],[6.113076562694365,52.04994138358039],[6.113101142871314,52.04991444661733],[6.113142035787867,52.04985150942014],[6.11326068192331,52.04987606214867],[6.113415705308763,52.049883743872925],[6.113466868383941,52.049849101595925],[6.113534856868804,52.049888222123556],[6.113658536197293,52.049806096098145],[6.113617557427385,52.04971998844645],[6.113632449407189,52.049713245149896],[6.113634282477148,52.04970043436532],[6.113600161085072,52.04966405313841],[6.11347421622121,52.04956972392569],[6.11344121744596,52.04954501165281],[6.113505688278345,52.04956952977701],[6.113580750403231,52.04959808122974],[6.113619171353453,52.04956882963891],[6.113740337860927,52.04947656213659],[6.11369813655936,52.049372611100274],[6.115240554594981,52.048402113627084],[6.116663500581846,52.04937501384039],[6.11760119788012,52.04995428879167],[6.119260649147714,52.05092793097052],[6.120651448758673,52.05161475240476],[6.121485145283922,52.05195841813599],[6.122538319564828,52.052418399308046],[6.123884762948778,52.05286810991561],[6.125818537207754,52.05340119733406],[6.126870170878611,52.05370806597011],[6.127743431613315,52.05398683497705],[6.129937604734662,52.054788992635935],[6.13146641882371,52.055442233539395],[6.134076609202538,52.05663239882492],[6.135209025044356,52.057293442049044],[6.135715397992473,52.057669141558755],[6.136273880014445,52.05805405760158],[6.137396966007514,52.059119336543674],[6.137735956081625,52.059456769442626],[6.138100971394175,52.059864819081696],[6.138557409623006,52.06028941842481],[6.139149113141108,52.06091230160122],[6.139517791102607,52.06123858520201],[6.140223528744612,52.06181214087068],[6.140572459219634,52.06203377641622],[6.140938867290183,52.06221063794724],[6.141721522125049,52.0625331406583],[6.142332612272001,52.06274775411778],[6.142831775732752,52.06287825463918],[6.143012272394579,52.062947599077404],[6.144255859339562,52.06330701178957],[6.145215733761457,52.063610094285636],[6.145750553278917,52.06374597073226],[6.146097397307173,52.06385552931326],[6.147346334366061,52.06429886049519],[6.148128739171523,52.0647491263886],[6.148423467914151,52.064982324571886],[6.148939857833239,52.065452842931926],[6.149705858269503,52.066315547572614],[6.150027399093783,52.0666232842695],[6.150555290203216,52.0672181542981],[6.15066334739114,52.06736744781083],[6.151156825110839,52.06777434355596],[6.151604585289816,52.06809249263073],[6.152288189072379,52.06850236277755],[6.15289135648425,52.06883213723774],[6.153354107989908,52.06902631081498],[6.154144614886677,52.06940907133043],[6.154395010015313,52.069511930644154],[6.155057507492359,52.06967193235452],[6.155618554159709,52.0698957920449],[6.156504554447645,52.070356281385955],[6.157092469068473,52.07073669389869],[6.157711601100424,52.07116914437133],[6.158171838235151,52.071532129072956],[6.158490620660957,52.07175362840712],[6.15887154863246,52.072076401043574],[6.159287168637344,52.072533771095515],[6.159802493683471,52.07291773579062],[6.160159413613523,52.073116228565105],[6.16088690035359,52.07345834816373],[6.161898175077006,52.07390701964742],[6.162560515958152,52.074118382938956],[6.164180013703144,52.0745467379028],[6.165146162307016,52.0747563630658],[6.165657417481441,52.074902136483146],[6.166199864626455,52.075085059461394],[6.166644877130439,52.0752613217073],[6.167170567808189,52.07554153828019],[6.167776125675578,52.07589200695926],[6.168290441934878,52.076250942513646],[6.169201940178896,52.07707295135141],[6.169879493576603,52.077784152872404],[6.170002871841353,52.0778920365122],[6.170491798856229,52.07859493778324],[6.171226615021345,52.08002145250499],[6.171392780203217,52.08043690273056],[6.171558381147228,52.080975947010245],[6.171703671206823,52.08135754836797],[6.172084938012572,52.082936124604984],[6.17231971267134,52.08423282210061],[6.172530832820898,52.08503868538603],[6.172581353881235,52.08515042266124],[6.17276551471715,52.08590056858901],[6.172905358640557,52.08630804624762],[6.172938917601041,52.08651820707591],[6.173093142643133,52.0869783953937],[6.173161805086368,52.087084393629254],[6.173435025628612,52.08768619740496],[6.174383111487568,52.08897475675372],[6.175265751563564,52.08984578596239],[6.175696930302777,52.09020973971472],[6.176259543154877,52.09057927207883],[6.177038449358165,52.09091785872419],[6.177620945366355,52.091134167748336],[6.178084741397758,52.09127795922236],[6.178658236197174,52.0913974174455],[6.179396690115434,52.091497225220536],[6.180541195095826,52.091518174287685],[6.180865816780899,52.09151486431513],[6.181409527719034,52.09148451595292],[6.182962192505638,52.09130213562599],[6.186475979844926,52.0910983004532],[6.188468591843037,52.091141223478154],[6.189450669553664,52.091233693387466],[6.190056889331758,52.09130736962406],[6.190817418526151,52.091428864744174],[6.192315183781722,52.091707110460824],[6.193290613822351,52.09194818350617],[6.195139667685284,52.09256105474149],[6.196358387789429,52.092989190466746],[6.197663042166099,52.09336419653538],[6.198474520980366,52.093551019720984],[6.199013102820281,52.093651800149196],[6.199758799661011,52.093693848757155],[6.201623232184917,52.09374024276883],[6.202314249373007,52.09367198334028],[6.203443972005134,52.093429058723686],[6.20396110349616,52.093253852281904],[6.204496407068324,52.09305014779488],[6.205883968110945,52.09260710370193],[6.207303177112169,52.09229977267929],[6.208831886102619,52.09228181837854],[6.209529095473951,52.09235363650413],[6.21011704587258,52.092447842115156],[6.210752236786788,52.09258131983511],[6.211368073212824,52.09275313034491],[6.21195676361389,52.092973440473244],[6.212810299488874,52.09333570684745],[6.213324417192553,52.093579284695636],[6.213829510340452,52.09385241690741],[6.214364051313326,52.0942132582671],[6.215125664740985,52.09469468818825],[6.215976092952319,52.095390368060215],[6.216293437818705,52.09574317815133],[6.216711412903794,52.09613628864748],[6.217203572916458,52.09669263295912],[6.217622713372307,52.09727027562088],[6.217915658883713,52.09786706432155],[6.218259183519447,52.098816572018],[6.218466428022021,52.100138093414124],[6.218503305445719,52.10031309887222]]]]}},{"type":"Feature","properties":{"id":20,"statcode":"WS44","geometry_g":"polygon","gag_id":"1","hierarchie":"2","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.44.44_Vechtstromen_p","sde_id":null,"land_code":"NL","inspire__1":"NL.44.44_Vechtstromen_v","inspire__2":"NL.44.44_Vechtstromen_l","wbh_code_o":"44","einde_leve":null,"laatste_wi":"2013/12/31","admin_code":"44","waterschap":"Vechtstromen","publiceren":"44","Aangemeld":1,"Actief":1,"KVK":58972676,"tnostatus":null,"CPT":32,"GMW":429,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[6.833777504680276,52.8705263601863],[6.833936787656563,52.87024998736173],[6.837482276557003,52.87107010433514],[6.841301839376037,52.87281976715254],[6.847655893218914,52.86913342384522],[6.847753235262943,52.869172398526956],[6.853295968728521,52.87139237675],[6.856403022451019,52.872659827443464],[6.856411035052291,52.872644997770976],[6.856575625892069,52.8724694792913],[6.856663426660906,52.87237583249989],[6.856818091487542,52.87221086175326],[6.856891515860287,52.8721323206439],[6.8572763112528,52.871720674999736],[6.857579256609787,52.871395097374936],[6.857806666886963,52.87115069318505],[6.858515587880849,52.8709289590751],[6.861184539697534,52.87008580625304],[6.861222902757346,52.87007207523811],[6.861393880739728,52.87001888473347],[6.861343119391898,52.86995659734208],[6.861367281665784,52.869960442169145],[6.861376577513858,52.869964335850575],[6.861610995745206,52.86989538739266],[6.861789907719992,52.86985637988834],[6.861937792014321,52.86983939834591],[6.862136609442969,52.86984182073143],[6.86239532129604,52.869880495996696],[6.862593394932675,52.86990398528293],[6.862791157320931,52.86991254032934],[6.862992326658123,52.86991422218125],[6.863220017842728,52.86990561702854],[6.863539027712082,52.86985002554968],[6.863727720929424,52.86980647205894],[6.863995735694346,52.86975255310814],[6.864128325824406,52.86971114052743],[6.864219420893404,52.869682608831084],[6.864471073043029,52.869613522196246],[6.864678223599468,52.869540015948736],[6.864911809669524,52.8694545875898],[6.865112378571918,52.86937009806933],[6.86537719119117,52.869258549759664],[6.865723849140974,52.86839551245806],[6.866000903886475,52.867699890049295],[6.866198461002359,52.86720387441718],[6.866588348439567,52.866242528215786],[6.866915375174686,52.865440595381884],[6.867107827080809,52.86497334822489],[6.867448092327636,52.864147161832165],[6.867690878966823,52.863569933810695],[6.867898409594155,52.86306431750167],[6.868162353293979,52.86241017730172],[6.868750386462526,52.861005867420644],[6.868846935986293,52.860784528814534],[6.868927034206507,52.86058956708838],[6.869114107107017,52.86013835393892],[6.869323000080515,52.85963882923051],[6.869261551684191,52.85962437635575],[6.869312800672619,52.85950187326742],[6.869616101496305,52.85877430337117],[6.869739633246212,52.858476672126855],[6.86985253591561,52.85820412313778],[6.86993248875948,52.85801083406707],[6.870011446941186,52.85781975931697],[6.87007769565346,52.85765937428867],[6.87022201069262,52.85730970493774],[6.8703053046141,52.85710776366606],[6.870436770627617,52.85679174252744],[6.870650866943873,52.856271001585505],[6.870787677354971,52.85593978690864],[6.87096424875406,52.855512338663736],[6.871014275202599,52.855391278903035],[6.871038355347044,52.85533300758708],[6.871087696660129,52.85521364606454],[6.871173919475496,52.855005052465046],[6.87126121340699,52.85479391987477],[6.871475286102887,52.85427785997121],[6.871585117136165,52.85401080268674],[6.871799253424287,52.853493339134836],[6.872223517664775,52.85246411383701],[6.872716453659722,52.851274855915065],[6.872943937888864,52.85070752945254],[6.873195540115179,52.85009386596505],[6.873596725349344,52.849106472830805],[6.873828464892763,52.848536152035024],[6.873880090501426,52.84841324627252],[6.873961585929372,52.84821920642488],[6.874049438841105,52.84801001456208],[6.874108349734136,52.847869572331014],[6.874123995931058,52.84783113377346],[6.874221066262836,52.84759269706377],[6.874317230954021,52.84735647360394],[6.874500747938391,52.846905662250215],[6.874513174400654,52.846875146153394],[6.874818328781831,52.84612551555554],[6.874986698296707,52.845711913304804],[6.87507416978808,52.84549703588874],[6.875124419052532,52.84537358931207],[6.875321646577547,52.84488907139629],[6.875381168428566,52.844742832515216],[6.875446484688451,52.844582365321195],[6.875528293620982,52.844381372529476],[6.875804662850833,52.843702437183],[6.875998034270579,52.84365170405877],[6.876018882088676,52.84364491853766],[6.876390190935646,52.843524005444436],[6.876405841445869,52.8435189115994],[6.876563244426086,52.84344031484358],[6.87661001213698,52.84340831798531],[6.876962816344252,52.84326503862343],[6.877851366133521,52.842914766508564],[6.877927577373508,52.84288303916626],[6.878128006319461,52.84279959716982],[6.878161792564016,52.842784398591526],[6.878687492315219,52.84253547424126],[6.878778010837758,52.84248892610532],[6.878934757990474,52.842411349955746],[6.879213129424996,52.84227357877015],[6.879365916056022,52.84219743575765],[6.879374410745149,52.842193203968066],[6.879471316744347,52.84212335059445],[6.879612411534051,52.842002162332626],[6.879674898573986,52.84194548441923],[6.879740708249357,52.841884828139484],[6.879961333849856,52.841681474083195],[6.880154866787986,52.84150025453922],[6.880272203917662,52.841388944029305],[6.880357120085502,52.84130712428166],[6.880380908886529,52.84129392875408],[6.880406554231908,52.8412842421597],[6.880430832777737,52.84127799711658],[6.880132662567927,52.841290799588975],[6.880282105033298,52.84117382013904],[6.880311976564266,52.84116618387017],[6.880343403509994,52.841144983320085],[6.88035569925391,52.84113340570763],[6.880379505592787,52.841111599501126],[6.880390148671152,52.84110074362906],[6.880420897930179,52.84107100403699],[6.880598404710323,52.84090005084665],[6.880685920680794,52.840817038828646],[6.88070307546014,52.84080388136764],[6.880795822288212,52.840714539184226],[6.880753614882013,52.840722132372676],[6.880611827257538,52.84068117079844],[6.879834504689952,52.84045663401487],[6.879694471187814,52.840420916303785],[6.879549492764185,52.84039382580311],[6.879403557863313,52.840365668520896],[6.879372012733409,52.84035730907449],[6.879263746729916,52.84032861732357],[6.878450780299969,52.84007959417533],[6.876988900108984,52.839645866514765],[6.87697443028179,52.83964157135519],[6.875649504143789,52.83924924021843],[6.875470140479952,52.839201191790174],[6.873003162802259,52.83857667758635],[6.872976264409372,52.8384900907478],[6.872802506731284,52.8379752084571],[6.872789954785268,52.83793908966141],[6.872778291588045,52.837905539302575],[6.872776659787245,52.83790512821457],[6.872723748244084,52.837731745612665],[6.872671271973848,52.83755980456838],[6.87255929111326,52.83719292906623],[6.872544108665005,52.83713179371505],[6.872531624423464,52.83708149108634],[6.872532883104419,52.83693154808215],[6.872555106102225,52.83675561151153],[6.87255859292666,52.836728056067976],[6.872607468401863,52.836478185399436],[6.87265646587394,52.836336770361356],[6.872723211811342,52.836249466037],[6.873063690636108,52.83587059812869],[6.873278389093859,52.83563169289861],[6.873393166650033,52.835503973033575],[6.873697024599848,52.835165834472186],[6.873755599126972,52.8351006518307],[6.874127262760794,52.83468704891577],[6.874431038271313,52.83434899924431],[6.87453478370518,52.83423354049007],[6.874535827502533,52.834232376996745],[6.876691331949752,52.831092129843874],[6.877542306009682,52.82985239473554],[6.878208236179903,52.828883526890166],[6.878456484083315,52.82852234221774],[6.878818789326843,52.827995196604604],[6.879188578471013,52.82745714358516],[6.879700022177561,52.82671294785353],[6.88010486225533,52.826123868568864],[6.880177606985252,52.82601800524798],[6.880289551065658,52.825855107661944],[6.880592738677053,52.82541391114775],[6.880877360275109,52.82499972147426],[6.881310848947304,52.82436889801307],[6.88160097014977,52.8239467010859],[6.88167882488107,52.82383340253584],[6.881975299624932,52.82340194821119],[6.882631648918278,52.82361022695067],[6.883485038447337,52.82387851323398],[6.883668230495042,52.82347840640172],[6.883781989848024,52.82322992606466],[6.883814543852917,52.82315882700055],[6.883883103166187,52.82300909854828],[6.884036274956242,52.82267453965214],[6.884214321529479,52.822285650416234],[6.88425417682219,52.822198595780115],[6.884297354765011,52.82210545044942],[6.884378210068204,52.82193099410407],[6.884553030559903,52.82155379316927],[6.88473133034731,52.8211690971925],[6.884978402190189,52.82063599016182],[6.885081896795874,52.820412695697776],[6.885154624559502,52.820253233907096],[6.885358661573973,52.81980591766495],[6.885381914297709,52.81975492420792],[6.885506293246994,52.819482220552224],[6.885506790179837,52.81948113576656],[6.885583600417135,52.819312742208815],[6.885660547931606,52.81914404124482],[6.885804436133113,52.81882856083579],[6.885894463109475,52.81863115841378],[6.885955814490091,52.81849662788609],[6.886013813061455,52.81836947367943],[6.886123626202453,52.81812868891926],[6.88620165920862,52.81795758309828],[6.886321723042908,52.817694325071365],[6.886405273071031,52.81750546132639],[6.886457148920162,52.81739712380371],[6.890286910031508,52.81796415301287],[6.894146346457532,52.81851582768749],[6.897605955977988,52.81900499939147],[6.897849497490331,52.819038314417824],[6.897932851226294,52.81905177361291],[6.898033647040061,52.819073244673945],[6.898106668080784,52.81909251509894],[6.898284536435046,52.81913500257127],[6.899828027274055,52.81950370670639],[6.900305847875004,52.81961711056518],[6.903412744274914,52.820354436537755],[6.904290540277072,52.81981693870734],[6.904655610387222,52.81956181375092],[6.904939850235834,52.819363172899855],[6.905153623872425,52.819219060252486],[6.90531026026026,52.81907103710164],[6.905656970878409,52.818743384802346],[6.905898829362801,52.8185148210569],[6.906242004348206,52.81818258312225],[6.906554760667858,52.817906295826326],[6.906677358339159,52.81779553753644],[6.906765168325428,52.81770492437046],[6.906822625586248,52.81764723477618],[6.906872090808449,52.817586258539336],[6.907246361689376,52.81722457174905],[6.907270564752833,52.817199563991316],[6.907565257361837,52.81692041233337],[6.907681868565893,52.81681256952915],[6.907785485005119,52.816713305176854],[6.907917406144291,52.81657817690107],[6.908295004540753,52.816219670784896],[6.908388388965617,52.816164128402065],[6.908577012514889,52.8159404446199],[6.908704419884489,52.81577718658299],[6.909014220506608,52.81538017591998],[6.908970487313625,52.81535415670079],[6.908908536526606,52.815308928979874],[6.908854302785627,52.81526378241976],[6.908844341833634,52.815255056382384],[6.908800749000027,52.81521685653102],[6.908757524612519,52.81516408239259],[6.908707664626303,52.81509368651255],[6.908676485528332,52.815031932305075],[6.908656575295377,52.81494954154072],[6.90864963920468,52.81488701947946],[6.908631130798766,52.814817634477606],[6.908810555061843,52.81434115345499],[6.908858735662982,52.81421441826051],[6.908871286293653,52.81421443779241],[6.908879456221049,52.81419342732269],[6.908881594546593,52.81418794425975],[6.908930649771757,52.814048407927515],[6.908949760711856,52.8139623731361],[6.908937607599952,52.81389018363622],[6.908906801223105,52.81380159547451],[6.908858168267973,52.8136525566593],[6.908512279289703,52.81292218258993],[6.908459562172013,52.81281176338493],[6.908426194037331,52.812695947071525],[6.908402644303886,52.81261421384127],[6.908354509119804,52.812523779456555],[6.908247996876321,52.81230814072953],[6.908137078970222,52.81209759144553],[6.908132663166995,52.8120891900753],[6.908016567710572,52.81186877493592],[6.907948198430122,52.811738997280735],[6.907858197743543,52.811568114674635],[6.907722889235795,52.8113112283075],[6.907682174314694,52.811231484591666],[6.907625391245499,52.81112559293005],[6.907577010841376,52.81113345449264],[6.907536826204365,52.81105658012505],[6.907467610783169,52.8109241435287],[6.907354842839529,52.81070837707914],[6.907267102284274,52.81054051213568],[6.907093496904421,52.81020833533214],[6.906997257714703,52.81002420237532],[6.907258505292704,52.810029570940515],[6.907274333814632,52.8100599373789],[6.90740929488952,52.810049982845825],[6.908154481078661,52.80999506735686],[6.908184507643729,52.81005024823808],[6.908451774553213,52.81005424308197],[6.908740515594203,52.81005854740658],[6.909029271570562,52.81006285084146],[6.90928543747938,52.810066671017026],[6.909606620551472,52.81007145769589],[6.909916970076062,52.810076085343084],[6.910310858115457,52.81008195449188],[6.910544807415455,52.810085435693544],[6.910690053704402,52.81008759670247],[6.911041601395914,52.81009283623286],[6.911614202222714,52.81010136824855],[6.911953656192129,52.810106463169255],[6.91219238299787,52.81010996991377],[6.912211601690984,52.810110254300945],[6.912474834598589,52.81011764429173],[6.912676591295933,52.81012267483244],[6.912816677853097,52.81012616660287],[6.912772859338037,52.81006868271336],[6.912535395720811,52.809757158514735],[6.911872546281487,52.80888757107153],[6.914714511943738,52.80618803438294],[6.914967171773363,52.80594802300225],[6.916136174921158,52.80483747502465],[6.918183077149086,52.80565465353026],[6.918219222177384,52.80566908236201],[6.918794483537363,52.80589889442001],[6.919004018419432,52.80598260351911],[6.919492013680468,52.806177554687444],[6.919993641501711,52.806377946094095],[6.920323068529306,52.806509545142696],[6.920923633304421,52.80674591537345],[6.921465520092617,52.806959183720586],[6.921940243805028,52.8071464043669],[6.922751257362906,52.8074662506838],[6.923045851329963,52.807581959797766],[6.923836590663315,52.80789251478956],[6.92446146658911,52.808140058701454],[6.9251496162037,52.80841266850856],[6.925198066067794,52.80832297141467],[6.925225139022073,52.808272855015616],[6.925002416619744,52.80818596532951],[6.925408614544343,52.80744361983355],[6.925906126823673,52.8065285381538],[6.926300517006789,52.80580218747701],[6.926315644316127,52.80577432678777],[6.926614618136854,52.80522190418023],[6.926799252552545,52.80488076691827],[6.926839937464558,52.804897282683704],[6.927316627051852,52.80401462237676],[6.928029123171238,52.802704007805666],[6.928727956122954,52.801412565705135],[6.928802599050734,52.80127579888771],[6.929246711888826,52.80046198619396],[6.929338545156574,52.80029297186578],[6.929524410056704,52.799950896826985],[6.929595191607619,52.799973610337105],[6.929657541325061,52.799858465604615],[6.931083135164496,52.797225361817475],[6.931087698753911,52.79722736096314],[6.931202806186992,52.7972721132559],[6.931188759208137,52.79729764175954],[6.931314723661854,52.79734665741515],[6.931578246379082,52.797449220912426],[6.931714616303796,52.79750228976856],[6.932074427520151,52.79764232477092],[6.932261768956388,52.797715234001664],[6.932542090345583,52.79782431865188],[6.932542676671576,52.7978245447475],[6.932903845798258,52.797964667536945],[6.933052662395174,52.79802240901586],[6.933231714706619,52.79809187397028],[6.933310588891662,52.79812247972007],[6.933502376760672,52.79819688428537],[6.933693895000397,52.7982711931498],[6.933789894666102,52.79830843425411],[6.933886270463828,52.7983458231798],[6.934455859722503,52.79856739144032],[6.934651117152447,52.798643348978814],[6.934754038756011,52.79868338459859],[6.934842931681896,52.79871795781651],[6.935030807762352,52.79879104456369],[6.935223315597499,52.79886593135767],[6.935471457715161,52.79896244842941],[6.935721420561187,52.79905967836454],[6.935971465302611,52.799157095469006],[6.936220939294228,52.799254276788126],[6.936470610264293,52.7993515449037],[6.936492630561035,52.79933097240805],[6.936991462391353,52.79952399467907],[6.936969341337168,52.79954464946164],[6.937218035305846,52.799641452389],[6.937467812536342,52.799738663125915],[6.937717936875738,52.79983601266707],[6.937739777648497,52.79981540631505],[6.937907956539022,52.79988017024715],[6.937902259989149,52.799885556352095],[6.937940183252277,52.79991663808382],[6.937960973994383,52.79993085634348],[6.937993214511042,52.79995138806853],[6.938023551645879,52.79996884363847],[6.938059370128555,52.79998613796016],[6.938062816769865,52.79998756716147],[6.93810398250887,52.80000468404285],[6.93813526349128,52.80001570977361],[6.938180532271937,52.800030598089776],[6.938209924716634,52.80003854747276],[6.938205016384299,52.80004315936001],[6.938238398703524,52.800051128733536],[6.9384131027687,52.80009283336506],[6.938494061258112,52.800124298414865],[6.938679646873203,52.80019642963475],[6.938717945780978,52.80021130961325],[6.938782649860061,52.800236460757276],[6.938806008922128,52.800259948142674],[6.938862372116113,52.80009080377731],[6.939062130761266,52.800169913349194],[6.939338852955384,52.800276098977626],[6.939805505325106,52.80045260413944],[6.940147796599301,52.80043387945764],[6.940717571864958,52.80043922448098],[6.940725315520531,52.80043929430566],[6.941025575901679,52.800442219189144],[6.941104572231705,52.800442986664116],[6.941158961835336,52.80044280768458],[6.941475291140421,52.800441782815234],[6.942017513212356,52.80044003885574],[6.942007053307258,52.80045701908898],[6.944193631019667,52.80046161593868],[6.944772672447971,52.80046393528502],[6.945391923667583,52.800462670071994],[6.945741925422384,52.80046312598422],[6.946184364978291,52.80046075367133],[6.946662682459762,52.800458089905376],[6.946908446533119,52.80045900779284],[6.947084214092108,52.800459942687],[6.9472299368293,52.80045839443989],[6.947331300392963,52.800456348289316],[6.947426084221742,52.80045277030645],[6.947500941123476,52.80044765558255],[6.947563250704554,52.80044000867867],[6.947698691400888,52.80042043850053],[6.947834011118499,52.80039331967171],[6.94796065590944,52.80036247643454],[6.948026345227382,52.80034523060026],[6.948116857663012,52.800317529979154],[6.948165827501548,52.80030094349538],[6.948263552562714,52.80026258717609],[6.948371654447156,52.800216221219195],[6.948570542866928,52.800108705677744],[6.949501207512965,52.80014209219083],[6.949535148290536,52.79990684368285],[6.949514330765589,52.799906523398754],[6.94955532585031,52.79950035106568],[6.949592352242795,52.799079400216556],[6.949634796048129,52.7986315936396],[6.949661850291465,52.79833013602171],[6.949774180464189,52.796998686829824],[6.949778579332065,52.79692251750639],[6.949797388176757,52.796834618382206],[6.949828904691513,52.79673299850959],[6.949861840417539,52.7966212932567],[6.949890464449862,52.79655081028474],[6.949900721844988,52.79652245296337],[6.94994533034092,52.796122973758756],[6.9499575749894,52.79583626190115],[6.949990120754889,52.79557118787014],[6.950027594036606,52.79473305435777],[6.950040434265738,52.794610916682345],[6.950099131330682,52.79404004601735],[6.950184972981755,52.79320244603133],[6.950193677634497,52.79309116629303],[6.950254623541556,52.792312612315264],[6.950250203287043,52.792117366558585],[6.950247983938392,52.79200827041858],[6.950244320595448,52.79182841141065],[6.950243263188684,52.79179463879191],[6.950215700227018,52.79144245772046],[6.950213301108722,52.79141180358977],[6.950204811849633,52.79130856909304],[6.950199728893809,52.791262957923884],[6.950194502246288,52.79121581165432],[6.95006743451223,52.790120850676956],[6.94992104389342,52.788752650815496],[6.949897439230459,52.78854655613125],[6.949873165695851,52.78835203797172],[6.949833345801015,52.78803304883304],[6.949797252712391,52.787757819120344],[6.949768481461114,52.787551486573264],[6.949739959859085,52.78737291516139],[6.94970457276319,52.78717020169064],[6.949602164247109,52.7867507006064],[6.949538591495284,52.786522524701255],[6.949500320391927,52.78639724612184],[6.949474604672557,52.78630765668135],[6.949416410332148,52.786121744479125],[6.94935319990898,52.78592029452391],[6.94933114797353,52.785861081989914],[6.949248435728076,52.78565234662082],[6.949246012983072,52.785652585107655],[6.949188172302772,52.78553762978927],[6.949105018839096,52.78534890778624],[6.94904622502478,52.785217597364245],[6.949002622309877,52.78511650379923],[6.948954926472575,52.78502118030401],[6.94873889022179,52.78459889864313],[6.948492836164897,52.78417779192653],[6.948451116079456,52.784109893770676],[6.9484121035364,52.784046418242575],[6.948280264819752,52.7838383259929],[6.948111773942135,52.78358051490541],[6.9479094337373,52.78330584483349],[6.947767787698986,52.78312524952927],[6.947711207144859,52.783053357311694],[6.947580610046895,52.7828874205658],[6.94735458408732,52.782617634792906],[6.947092068073646,52.78232172144073],[6.946894235864788,52.782105854214386],[6.94659847643411,52.781806600030826],[6.946278879761947,52.781498039740335],[6.946070575043963,52.7813029900553],[6.945960529745206,52.78120271987719],[6.945765876180626,52.7809838161898],[6.945699920093456,52.78092029680611],[6.94549630909472,52.780747861891896],[6.94527930967514,52.78057529615231],[6.945039743752456,52.78038001541772],[6.944911622445231,52.78028609265065],[6.944878293648777,52.78030299484136],[6.944578447102957,52.78006022596195],[6.943415915903303,52.779128002757666],[6.943316925969399,52.779048618124534],[6.943100623851506,52.77887516754283],[6.942903297726781,52.77871427687744],[6.942840776962004,52.778663797881684],[6.942790791674577,52.778623626373836],[6.941459865765481,52.77755389823849],[6.940294318410737,52.77662771562949],[6.939863446903848,52.77628229073535],[6.939539270725941,52.77601598992644],[6.938975543871959,52.775556130080595],[6.938957714900099,52.77554235878616],[6.9388103254591,52.7754229654452],[6.938697663971803,52.77533706791615],[6.93836164209071,52.7750706845933],[6.937991286549513,52.77478093763677],[6.937745720985903,52.774542874007935],[6.93731662820048,52.77420090435399],[6.936512968889788,52.77356041014108],[6.939282247659891,52.77325476361399],[6.941123689860809,52.77304890394278],[6.943191748855303,52.7728179443589],[6.945093936394825,52.772605467913316],[6.945089414475304,52.77263709361744],[6.945285505217647,52.77261545558593],[6.945472812037068,52.772594786032656],[6.945671104891324,52.772564238220674],[6.945794615155461,52.772542066011475],[6.945974217880308,52.77250982081968],[6.946201720379666,52.772475087809944],[6.946209820866931,52.77241827524577],[6.946230362573083,52.77227420414479],[6.946715874097064,52.77205097155594],[6.946616342790925,52.77198440488701],[6.947277373675038,52.771643651962975],[6.947417984517331,52.7715711717379],[6.947732865393043,52.77140885396934],[6.948092580867312,52.77122342334211],[6.948174224921337,52.771265865214254],[6.948397620282499,52.77115104293163],[6.948399686947919,52.771149982188355],[6.948621168925455,52.77103556202212],[6.948622711233564,52.77103475984608],[6.94890506470005,52.77088811832476],[6.948916486950325,52.77088218912175],[6.949073957955094,52.77080056952887],[6.9492929344548,52.77068705278395],[6.950084175410256,52.77027691263217],[6.950092820040846,52.7702724758435],[6.950313496880645,52.77015941123813],[6.950321223025058,52.77015539998081],[6.950508787662939,52.77005800460343],[6.950572080518004,52.77002514878391],[6.950832641201744,52.7698898530854],[6.950833296256286,52.769889520918454],[6.951145106417026,52.76972738696342],[6.951468757997568,52.769559110473274],[6.951471420860162,52.76955773623586],[6.95154311733414,52.76952079674076],[6.951877937207963,52.76934830075083],[6.95213600783255,52.76921529085987],[6.952374121358247,52.769091575831375],[6.952309681451537,52.76904703219648],[6.952589948655747,52.76890242240122],[6.952653451009876,52.768946438944276],[6.95265963450616,52.76894322976456],[6.952935488251517,52.76880081634508],[6.952872032863941,52.76875687126535],[6.953156239866562,52.768610230880306],[6.953221531256793,52.76865537407583],[6.953382273599515,52.7685732651529],[6.953503561484678,52.76851007378089],[6.953707977367266,52.76840358917176],[6.953721405448167,52.76839659948081],[6.954296551985963,52.76809550437569],[6.954621085305745,52.767925616533624],[6.954762578179809,52.767852360734985],[6.954772006242878,52.767847481875336],[6.955406224611956,52.7675191603404],[6.955351596104172,52.76750034824428],[6.955827400924532,52.76725086962058],[6.955795533039592,52.767239892317235],[6.956820733460418,52.76670752100548],[6.95731791838267,52.7664493324503],[6.957542999754043,52.7663324478229],[6.95777384416938,52.76616677951993],[6.957808891772073,52.76614162660046],[6.95787334499819,52.766163768481604],[6.957939685089436,52.76611370987752],[6.957940075009866,52.76611342608135],[6.95830649796403,52.76583725566162],[6.958678572639561,52.76555353124897],[6.958614205602955,52.76553129883895],[6.958745117561009,52.76543197703053],[6.95902635688608,52.76521861462855],[6.959415999115082,52.76492300716648],[6.959570896756241,52.76480549012952],[6.959611907192834,52.764774370630555],[6.959714382841967,52.764696617447576],[6.960103712898979,52.764401236419914],[6.960241571456945,52.764296652900526],[6.960304139566051,52.76431833295368],[6.960379175966627,52.76426755584402],[6.960440329001053,52.76421969450662],[6.960479977967591,52.76418865559721],[6.960484676561906,52.76418498024795],[6.960743567188736,52.76398764724383],[6.960868167785703,52.76389562393226],[6.960920479232453,52.76385699329041],[6.960951672612388,52.76383395761879],[6.961204556327561,52.76364070274572],[6.961226736829963,52.763623754340045],[6.961505275290738,52.76341381901325],[6.961960576023262,52.76306848359059],[6.962300589822717,52.762802230920606],[6.962375609711792,52.76274288688337],[6.962464740575309,52.76265977992773],[6.962555994716779,52.76257103617737],[6.962636109287891,52.76248197230977],[6.962658122295625,52.76245751167565],[6.96268018488581,52.76242825064452],[6.962769357559002,52.762303482349026],[6.96294265165466,52.762031775410364],[6.96317608636596,52.76166451809494],[6.963340539981878,52.7614062750743],[6.963410112497739,52.76129774677672],[6.963488357016157,52.76119140464269],[6.963575090566344,52.76108752069773],[6.963745067558174,52.7608935598309],[6.963934013268084,52.76069932960203],[6.964212914017891,52.76041263193885],[6.964261736007812,52.76035751648285],[6.964303549174055,52.760300327678536],[6.964378453226167,52.76017167529328],[6.9644411747035,52.76006392919013],[6.964461145569245,52.76002478144072],[6.964474441550816,52.75998459855931],[6.964478789753228,52.759962564670055],[6.964505031373879,52.75971110293904],[6.964546257324707,52.7593404201692],[6.964557138355755,52.75924261851936],[6.964559403885022,52.75921459004578],[6.96456009147037,52.758730670729555],[6.964561720249305,52.75812594552574],[6.964561808463645,52.7581074015705],[6.964564442044669,52.75721198233405],[6.964564083064838,52.75698959931907],[6.964563614888732,52.75669955402792],[6.964563257951288,52.75631298221248],[6.964563154701183,52.75619320587149],[6.964566066491484,52.756159263545484],[6.964565517645434,52.756151010567336],[6.964565092669164,52.75614455364759],[6.964565874093661,52.75582542366602],[6.96456708145909,52.75576758612183],[6.964567916628521,52.75571340272825],[6.964562622940361,52.75529750455909],[6.964563802689697,52.75507876827602],[6.96456692401537,52.754932505657166],[6.964567094294869,52.754924476889975],[6.964569658033385,52.754804710089466],[6.96457004480325,52.754327652265275],[6.96456984495598,52.754097339318065],[6.96457000937184,52.7539372469318],[6.96457065083037,52.75357882188205],[6.964570572886143,52.75356430683686],[6.964570160601628,52.75332726446552],[6.964472723431623,52.75329500201064],[6.964471792552624,52.75303365318517],[6.964584026803869,52.75307081593166],[6.964589332387629,52.75304329542904],[6.964600788696498,52.75300474573319],[6.964611681470075,52.75297235145775],[6.964635879253738,52.752918613555444],[6.964660100151415,52.7528791037604],[6.964677483368479,52.75285586433656],[6.964700263553858,52.75282608906071],[6.964725524069959,52.752794888605585],[6.964761730776713,52.752754186347474],[6.964755611037182,52.752752083280036],[6.964842993603188,52.75265195548484],[6.964984451430815,52.752491069364474],[6.965020136934208,52.752503395779996],[6.965072608266426,52.75244375528128],[6.965043478266176,52.752433292455336],[6.965126486379666,52.75233842664489],[6.965314173577442,52.7521248222994],[6.965843566181682,52.75152179118411],[6.965991212689404,52.751353613073384],[6.965992521784211,52.751352121617494],[6.966127161147021,52.75119874875648],[6.966273651656715,52.75106392313893],[6.96636063516456,52.75096729586843],[6.966712976288908,52.75056589697486],[6.966687794359741,52.7505576831876],[6.966826323997925,52.75039894576137],[6.966964852577261,52.75024020814526],[6.9671031812952,52.75008170670881],[6.967173426816059,52.75000122816653],[6.967242689972236,52.74992185917844],[6.967311810680161,52.74984265383487],[6.967380948210809,52.74976351110602],[6.967450834262331,52.74968336072454],[6.9675175360094,52.74960692879477],[6.96769248974983,52.74940644150048],[6.967831169454549,52.74924754797946],[6.967847067757147,52.749229594024825],[6.967944547846632,52.74911945155492],[6.968077816719077,52.74896665169876],[6.968178993128036,52.748868675039986],[6.968208047888908,52.74884054235981],[6.968220484691994,52.74883052602336],[6.968223709861453,52.74883123821111],[6.968275770687706,52.74879002761233],[6.968279342316468,52.7487872027793],[6.968284591584962,52.74878900264278],[6.968408819367109,52.74869196003215],[6.968416973366522,52.7486855868671],[6.968552740397751,52.748579537368705],[6.968698489989693,52.7484656790864],[6.968832656420686,52.748360872929595],[6.968969890362186,52.74825366189933],[6.96909181015139,52.748158419875566],[6.969137146442424,52.74812300582423],[6.969294360557533,52.74800019489006],[6.969366304224971,52.7479439877151],[6.969411726634148,52.74790850949054],[6.969522509196199,52.74782198086143],[6.969548886037776,52.747801361662816],[6.969662750071508,52.747712401051736],[6.969777161360714,52.747623019624825],[6.970004786726654,52.74744518907381],[6.970015768259989,52.747449042869306],[6.970170010272455,52.74732814877268],[6.970277899024682,52.74724359938667],[6.970539941354359,52.74703823735508],[6.970681188796324,52.7469275463076],[6.970850393147364,52.7467949292875],[6.970862190112421,52.746785685166984],[6.970889759442941,52.746764079072356],[6.971165192057327,52.746548227845715],[6.971319601518444,52.746427222121106],[6.971355798109966,52.74639884975069],[6.971610859186807,52.74619895312786],[6.971794739373824,52.74605576683565],[6.972047233814329,52.74585627190643],[6.972301093687063,52.745655688585046],[6.97248454053743,52.7455121114582],[6.972663536474275,52.74537204484712],[6.972745133166564,52.74530818375585],[6.972892891011527,52.74519270235321],[6.973177270775074,52.74497046221688],[6.973417630090363,52.74478263988768],[6.973418450500543,52.74478198177076],[6.973438557504529,52.74476624499664],[6.97362025730033,52.74462411841124],[6.973623325388484,52.744621722614426],[6.973711320981808,52.744552220771716],[6.973895376207744,52.744406880523755],[6.973994228677716,52.74432882068232],[6.974193000975337,52.74417152707082],[6.974201870708059,52.74416451476293],[6.974272076206161,52.74410318634912],[6.974322025642271,52.74406041914616],[6.974424558364872,52.74397850782923],[6.974480165285345,52.74393533255766],[6.974640202187573,52.74381112825877],[6.974748013319913,52.743730224850474],[6.974749922836309,52.74372896801311],[6.974842777714988,52.74366819106941],[6.974885227424827,52.7436314379494],[6.974912330638607,52.74360156781238],[6.974939781949614,52.74357640292397],[6.975679458467186,52.74299667571741],[6.976013819187291,52.742734626313364],[6.976016685299079,52.742732385894456],[6.976166854954525,52.742614863640945],[6.976353820405903,52.74246853671281],[6.976737022742251,52.74216863945235],[6.976738117503037,52.742167788893],[6.976980058720981,52.741977457076246],[6.976997324181577,52.74196388781164],[6.977029064250704,52.74194106500899],[6.977012581399158,52.74193537084534],[6.977030761507149,52.74192129499332],[6.978203850835869,52.74100834423274],[6.978212852499635,52.74100132985407],[6.978260842476139,52.740963944166694],[6.978735036860847,52.740594602396534],[6.978755358451437,52.74060161126922],[6.979027022363475,52.74039012357282],[6.979078856768325,52.740352200713225],[6.979095238865462,52.74033921821109],[6.979116772647386,52.74032046819899],[6.979151465368068,52.740282765588276],[6.979177909745906,52.740256912007865],[6.979219656770959,52.74022261146131],[6.979327392721067,52.740138477889545],[6.979330243707217,52.7401362375975],[6.979925095221642,52.73967169042026],[6.979949426034069,52.73965249835749],[6.980125497832681,52.73951436450585],[6.980242356742829,52.73942299816401],[6.980551890424326,52.739180996924965],[6.980636016566874,52.739115235655525],[6.981060325469731,52.738782199642934],[6.981476697119374,52.738456683683765],[6.981433111732972,52.73843787955746],[6.982006303394438,52.73798286048762],[6.982012037687643,52.737971548226675],[6.982418236378563,52.73765215131382],[6.982473952604073,52.73760834144944],[6.982481001062501,52.737602629269],[6.982551356207837,52.737545608020035],[6.982800690324351,52.73735349274751],[6.983437346727672,52.7368629115861],[6.983505483980154,52.73688659899677],[6.983580439838489,52.736827888524346],[6.983693318723848,52.73673944823872],[6.983694398088012,52.73673858887477],[6.983624589820511,52.73671455549718],[6.984199632265391,52.736258727402294],[6.984202286332764,52.73625678624436],[6.984255650269313,52.736217609103846],[6.984277904984683,52.736201284261185],[6.984283269931783,52.73619733829677],[6.985039657767087,52.735596517257136],[6.985192509877654,52.73547509092401],[6.985241593800962,52.735498125242636],[6.985303140139043,52.73543159405535],[6.985419634053826,52.735326331210956],[6.985514725908209,52.73524736799909],[6.985528578330007,52.73524349676176],[6.985616027259541,52.73517545895073],[6.985727552004871,52.735088687755315],[6.985815363361702,52.7350167970316],[6.985929189325906,52.73492533967529],[6.986008814455625,52.73484662869849],[6.986019583222348,52.734834538526435],[6.986181070906492,52.73467271797467],[6.986214901390038,52.734627492478104],[6.986255976771003,52.73457587778704],[6.986257697619667,52.734573526655716],[6.986295347678433,52.7345221916636],[6.986316927382218,52.73448658645837],[6.986268318043292,52.734489549514734],[6.986413754371857,52.73423236199893],[6.986416893857323,52.73419704049764],[6.986452138959844,52.7342093034616],[6.986658709037869,52.734281275063694],[6.986738124648413,52.73430894365578],[6.986761446883698,52.7343170703147],[6.986785968976402,52.73432561227699],[6.986842857278083,52.73434543111804],[6.986978561663067,52.73439271072097],[6.987027980923736,52.73440992434553],[6.987109331789748,52.73443826780158],[6.987181277203367,52.73443569180105],[6.987188656735857,52.73443543080503],[6.987293796638661,52.734432327640434],[6.987383478879752,52.73442967488813],[6.987477317720684,52.734426903256974],[6.987683115159196,52.73442081952299],[6.987870275118789,52.73441529163713],[6.987891993558008,52.73441517035624],[6.988069442272391,52.7344141771074],[6.988248815714345,52.73441317562713],[6.988456466076123,52.73441201821231],[6.988635839480618,52.73441101618515],[6.98867681886516,52.73441078840108],[6.988812564036929,52.734405195811114],[6.989036326763301,52.73439597371455],[6.989178961595243,52.73439009024268],[6.989348358239132,52.73438310932524],[6.98948710441514,52.73437738565926],[6.989642668788857,52.73437076127601],[6.989862664655107,52.73436139059987],[6.990070965791542,52.73435251857857],[6.99027701946489,52.734343739379675],[6.990398283166641,52.73433857367637],[6.990525209459101,52.73433316980944],[6.99086444315175,52.73431872156656],[6.991014448079317,52.734312332097794],[6.991134159203646,52.73430723151396],[6.991265491215408,52.73430164165004],[6.991559779329677,52.73428910942114],[6.991620484848212,52.73428652042491],[6.991695713834665,52.734283043561625],[6.991869848675583,52.73427567156832],[6.992149916215716,52.73426381497239],[6.99217533102579,52.73426273522384],[6.992449558834227,52.73425113643215],[6.992618799744282,52.73424397314715],[6.993840253614537,52.73419224872459],[6.994578745506201,52.73416088584642],[6.994771388298485,52.734153897862534],[6.996056798835721,52.73410721014256],[6.996777264536385,52.734080616392774],[6.996774410413989,52.734055703223866],[6.996781352031659,52.73405561833309],[6.996695935328421,52.73356156731288],[6.996686587682107,52.73350698139232],[6.996680708219372,52.73348274732987],[6.996670837937612,52.733449830484275],[6.996665729520479,52.733422799586194],[6.996633704266631,52.733000814445596],[6.996631753928572,52.73296663101772],[6.996628500223458,52.73290984142562],[6.99662491522806,52.73288558531192],[6.996624315465105,52.73286480329167],[6.996623976644464,52.732852745466694],[6.996623610496015,52.73284034643453],[6.996610635870966,52.732699826649046],[6.996606674878317,52.73268186746206],[6.996586676127976,52.73250770025772],[6.996562043784173,52.732381980153406],[6.996494402358224,52.731892398392176],[6.996490698299489,52.73185117380103],[6.996521077023151,52.731849828257545],[6.996656310974378,52.731843855989204],[6.996453752705908,52.730050822218345],[6.996499326301356,52.73004880383908],[6.99649800707517,52.73003100666359],[6.996503966696499,52.730030404763525],[6.996500820059723,52.73000194509751],[6.996493848781574,52.73000201241139],[6.996493120383791,52.72999426524993],[6.996496121246739,52.729994134808344],[6.996486516817566,52.72986916422253],[6.99648581854584,52.7298598167374],[6.996465151410582,52.729725495004686],[6.99646177039701,52.72972575642323],[6.996459675474326,52.72970457213946],[6.996467770365623,52.729704462687394],[6.996464563097764,52.72967394553209],[6.996455929511061,52.72967430491844],[6.996455655148593,52.72966561686016],[6.996505904750748,52.729663130753956],[6.996545570312209,52.72950655588497],[6.99652149716389,52.729414184083595],[6.996520186889156,52.72940914133455],[6.996494545154286,52.729410818360186],[6.996474643888084,52.72924934126251],[6.9963799215143,52.72847584029093],[6.996333121289144,52.72809364824485],[6.996248379404577,52.72739754594068],[6.996315200789228,52.727394449339045],[6.996289783682349,52.727185075660664],[6.996298951940683,52.72714441403168],[6.996237243677392,52.72662212346268],[6.996226656714574,52.72653248147377],[6.996178643463885,52.726126000957414],[6.996109872573317,52.72556808578863],[6.996064075800816,52.725196549087244],[6.996043573973632,52.7251279930434],[6.996015786152528,52.724977830938094],[6.995989160007995,52.72483390900283],[6.995988791911838,52.724831945500426],[6.995958785347204,52.72466971496663],[6.995986735976534,52.72466850122329],[6.996364735355592,52.72465351245627],[6.996362684644325,52.72463473645028],[6.996473461481707,52.72462896007822],[6.996475687874987,52.724648084236954],[6.996542678671816,52.72464528180097],[6.996839452045482,52.72463288201811],[6.99713476231095,52.72462055518988],[6.997515422238398,52.72460466391761],[6.99772536755417,52.72459589957315],[6.997902556447469,52.72458850402295],[6.998079744933167,52.72458109921652],[6.998227414325311,52.72457492967379],[6.998551695671258,52.72456138020996],[6.998625530303569,52.72455829517794],[6.998994289687655,52.72454289285633],[6.999141944072492,52.72453672237966],[6.999363432892686,52.72452746622232],[7.000484292562506,52.72448048505578],[7.000693821267208,52.724471694127786],[7.00102590418417,52.72445777151583],[7.001037995561888,52.72445726597077],[7.001879627689193,52.724421967604755],[7.002433328826573,52.72439873308658],[7.002435694024874,52.724398638066035],[7.002823812126636,52.72438234989269],[7.00352517944074,52.72435291687245],[7.004204388284469,52.724324409985826],[7.00530494146834,52.72427821651096],[7.005600245082321,52.72426582379734],[7.006049851481319,52.72424694511428],[7.006167156926842,52.72424202365336],[7.006682672798433,52.72421635852977],[7.007214472304364,52.724189876276846],[7.008375819933907,52.724132040623054],[7.009793863054306,52.724073192730785],[7.01118186636476,52.72401558281106],[7.012569865460022,52.72395794770127],[7.013957861124053,52.72390030540351],[7.014831385461747,52.72386402088538],[7.015375386103296,52.723841415947625],[7.015474672791754,52.72383728909555],[7.016773011395252,52.72378333939026],[7.018151816417372,52.72372603457665],[7.019542531089655,52.72366820884407],[7.019615122023264,52.72366519074859],[7.02031809033604,52.72363596016568],[7.020818022254546,52.72361516646766],[7.02106903753648,52.7236047274531],[7.021322935072133,52.723594167407455],[7.022409488066923,52.72354896041496],[7.022695622652315,52.723537055682655],[7.023159826170844,52.72351774081787],[7.023528409657412,52.72350239958017],[7.023714667007598,52.72349464307718],[7.023907324874887,52.72348662746504],[7.025222329547474,52.72343188870408],[7.025373083390905,52.72342564297619],[7.030255907627161,52.72322324939287],[7.030327980149966,52.72322025885352],[7.031288347106795,52.72317913967954],[7.033934741608843,52.72306579692339],[7.033953689953569,52.723064986416745],[7.034239864998439,52.72305272969469],[7.035024872013978,52.72301909467172],[7.035201894611905,52.72301151094056],[7.035423390573325,52.723002016634275],[7.035715358517389,52.72298950533363],[7.036089282917366,52.722973889319974],[7.037933581675897,52.72289686189917],[7.03831801375174,52.72288080547195],[7.038336918171672,52.72288001287023],[7.038621284258402,52.722868130199736],[7.039567086346559,52.722828611360534],[7.039815298463245,52.72281824354796],[7.040402253558096,52.72279371396533],[7.040945575418996,52.72277100135068],[7.041251918875084,52.72275819577787],[7.041286460644024,52.72275673590815],[7.041463661909033,52.722749230234264],[7.042098815750546,52.72272231445233],[7.043280454354178,52.72267223245247],[7.04349816734288,52.72266300045848],[7.043501980673809,52.72266283951335],[7.045036345670624,52.72259779008144],[7.046064840131443,52.72255418213435],[7.046360783241547,52.72254162521693],[7.046483015262355,52.722536442445744],[7.046655603091932,52.72252911918835],[7.04754366793132,52.722491447481644],[7.048958743749446,52.7224305913278],[7.049254057899407,52.72241788318604],[7.049549357487147,52.72240518346573],[7.049844671618818,52.72239248283476],[7.050134502061261,52.72238001089356],[7.050435934594473,52.72236704352371],[7.050657423346132,52.72235751192043],[7.051878536519706,52.72230496786458],[7.052144806901615,52.72229350374846],[7.052294495295034,52.72228705894146],[7.052597877508028,52.72227400486275],[7.05422866150725,52.72220379298297],[7.055433050017612,52.722151932042685],[7.055802539097274,52.72213601949507],[7.057653556771012,52.72205628151113],[7.058247573990361,52.72203068371348],[7.059684521704903,52.72196875445416],[7.059816058749069,52.72196308557222],[7.061531756125421,52.72188912601162],[7.0639823339779,52.721783432367],[7.063978047550054,52.72174758350472],[7.063964090657214,52.721631072895086],[7.063940521652197,52.7214342591769],[7.063939453686405,52.72142529465746],[7.063765601502191,52.71997377457812],[7.063013786521772,52.71369519830515],[7.062905926806708,52.71279426561784],[7.062801136463345,52.7119189428255],[7.06269133346655,52.71100175873047],[7.062583056026609,52.71009727169656],[7.062521865739305,52.70958606350231],[7.062475778434539,52.709201021862015],[7.062261222216289,52.70740852140486],[7.062153958382364,52.70651227061904],[7.0620463984867,52.70561356984],[7.061939143819249,52.70471731837502],[7.061865003188166,52.70409780842793],[7.06172445633684,52.70292482626581],[7.061617368176671,52.702031025620904],[7.061509998756436,52.70113477477265],[7.061402619107993,52.70023852384348],[7.061301689250668,52.69939605049175],[7.061295244091983,52.69934227257037],[7.061187873621751,52.698446021017666],[7.061078530879712,52.69753323096005],[7.060971235294441,52.69663753510302],[7.060863807955605,52.69574059146959],[7.060756257498827,52.694842624598444],[7.060650969425611,52.69396352867493],[7.060372602112374,52.69163913571188],[7.06022029217253,52.690367206031354],[7.060112967634228,52.689470951282466],[7.060005647726554,52.68857469624495],[7.059898332417566,52.68767844086545],[7.05979103640458,52.686782185000304],[7.059610782314814,52.68527656475421],[7.059581030838712,52.68501963895669],[7.059504694323623,52.68438024628056],[7.058587421928115,52.676695577525145],[7.058229403471741,52.67369202215999],[7.05786031893005,52.670595182502794],[7.05760627352908,52.66846331845329],[7.057593461677698,52.668355769452766],[7.056660044143666,52.66050973611603],[7.056424597153763,52.65853742285776],[7.056254599934917,52.65713982414965],[7.056089499585919,52.655744762812894],[7.056048059129409,52.65539451654675],[7.055126930966171,52.647631245261884],[7.055063404310082,52.647083637757774],[7.055027146024384,52.646770989480885],[7.054772745408073,52.644577722038356],[7.054755326586211,52.644422731634705],[7.054962159512335,52.6444221036471],[7.055210744327963,52.644409923090805],[7.055446292578776,52.644387156592],[7.055534354748499,52.644381381189746],[7.055602988287876,52.644376876201065],[7.055640636688053,52.644359610752],[7.055728664289414,52.64341977490924],[7.049768618392823,52.63882486233069],[7.048532959893925,52.637873250761366],[7.044001149538288,52.63438274738315],[7.041922270737818,52.63280777077192],[7.04190660325966,52.632799719323515],[7.04176212247808,52.632725237331265],[7.041732892084526,52.63271009388957],[7.041710038707724,52.63271131093862],[7.041419419846884,52.63275787349575],[7.041277344372984,52.6327709073119],[7.040986470426935,52.63277927040055],[7.040837729425055,52.63277612694507],[7.04058961204001,52.63276645599751],[7.040188270854356,52.63274048920589],[7.039687174219256,52.63270575113076],[7.039570469684732,52.63270593581173],[7.039263953840476,52.632730512051324],[7.039115348635693,52.632750645264125],[7.038962482186563,52.63277533183117],[7.038786093576458,52.632814906834376],[7.038605888650364,52.632870894023355],[7.038452015338928,52.632935683463316],[7.038306161965257,52.63301734992246],[7.038185555259545,52.633102530567804],[7.038086898259061,52.63318210281938],[7.037361960424375,52.633840076417684],[7.036880561686525,52.634271745352216],[7.036795674576459,52.63434042875201],[7.036705953578008,52.63440234779626],[7.036607704796414,52.63446537389028],[7.03651398568668,52.634523123586824],[7.036412154219423,52.63457730046899],[7.036307029608249,52.63462639937685],[7.036244949763036,52.63465323814804],[7.036087068683233,52.63470990036458],[7.035968051103419,52.63474705699969],[7.03584773418364,52.63478108554667],[7.035726315558588,52.63480937647122],[7.035598989665573,52.63483379421133],[7.035467092242493,52.6348544999499],[7.03533920815761,52.634871913990615],[7.035210527570274,52.634879900790274],[7.035067716975796,52.63487945427769],[7.034927611936873,52.63488418352115],[7.034792315711774,52.63488516057807],[7.033578339996876,52.63483466047957],[7.033495619586629,52.634831132381684],[7.031100089261598,52.63472766739976],[7.030762688363658,52.63471300875607],[7.029863998645928,52.63467419947314],[7.029641724300407,52.63466837301209],[7.028762366806022,52.63464079373807],[7.02840547631372,52.63468185768969],[7.027487806136013,52.63481542552329],[7.026925542296079,52.6348959034398],[7.025680036393898,52.63507748547325],[7.02130186361098,52.63571538107843],[7.021159307703162,52.635735767981764],[7.020113719504894,52.63585935190539],[7.018365979267239,52.63606510482499],[7.018143230738595,52.63609045391271],[7.017500802787478,52.63616551529364],[7.015257512360913,52.63641568190724],[7.015188342184042,52.63642301142953],[7.014621628728867,52.63649216598335],[7.014318653088759,52.636525617650754],[7.013359033496039,52.63663762774678],[7.013082411517527,52.636672603189005],[7.012804013869242,52.636715512312065],[7.012657155018368,52.6367435881298],[7.01249171390618,52.63677659202873],[7.012325220710297,52.63681311564738],[7.012253607071737,52.636834319362244],[7.008193577116944,52.6380240425737],[7.008151531140316,52.63803619339675],[7.006893158763789,52.638399969506935],[7.006831553610197,52.638424269392196],[7.006801292664236,52.63843708609621],[7.006769799382623,52.63844973981419],[7.006691509839587,52.6384811882041],[7.006597560539499,52.638521928483925],[7.006490190009096,52.63857939058267],[7.006335600317446,52.63867066388157],[7.006256754556935,52.63871632158154],[7.006178679064081,52.63877086747863],[7.006145017837087,52.638795685205004],[7.005956376344855,52.63894135353347],[7.005856438787994,52.63904024115975],[7.005777708723794,52.63914126683304],[7.005694201675111,52.639249009058894],[7.005656184210212,52.63929599790167],[7.00554864688146,52.639453414709514],[7.005326343386525,52.6397686161482],[7.005223453841789,52.639911857233464],[7.00517032584043,52.63998592757395],[7.004989070500812,52.64023621098584],[7.004688266986321,52.640667084342084],[7.004490743987297,52.6408769597963],[7.004436302016209,52.640915362915116],[7.004329511239908,52.64097677003414],[7.004132552541383,52.64107347064725],[7.003218370765565,52.64144419039206],[7.002775117033308,52.641618213626735],[7.002501899496863,52.641726824266726],[7.002267502350112,52.64181018811681],[7.001877405036726,52.641918947372226],[7.001708685286656,52.6419599803518],[7.001421426983394,52.64202033065481],[7.001005631071146,52.642093301889894],[7.00084710984698,52.64211028548475],[7.000658794081866,52.642128751965814],[7.00035456673896,52.642157600309176],[7.000052070004509,52.64217321114287],[6.999663422975221,52.64217264210611],[6.999232841732406,52.64215277578216],[6.998822469468188,52.64211178032408],[6.998249446900854,52.64202346125647],[6.997664683619209,52.641933240108074],[6.997663048789203,52.641932983632586],[6.997354514631451,52.641880535931186],[6.997076111290797,52.64183981387535],[6.996946077977197,52.64181559817324],[6.996796172116501,52.641793449152594],[6.996614718999633,52.64176525539688],[6.995983297866056,52.641671783819525],[6.995967291265181,52.64167047241324],[6.995729088892596,52.64162992214985],[6.995352446699794,52.6415655373801],[6.995060016388863,52.6415209555725],[6.995008304529929,52.641513026123164],[6.994963107507838,52.6415054579399],[6.994676306524239,52.64145315875394],[6.994648261511645,52.6414499426215],[6.994583936999147,52.64144056563246],[6.994440738783602,52.641419940933396],[6.994231821397562,52.64138815997297],[6.994031027330504,52.64135626886516],[6.993859745388809,52.641331349089654],[6.993724585471094,52.641316367514875],[6.99356972705281,52.64130416886826],[6.993415774457333,52.64129654197359],[6.993252953933578,52.641288854945934],[6.993097773829355,52.64129212036771],[6.992972752073009,52.64129578712353],[6.99285468816795,52.64129980917497],[6.992724447885088,52.64130624273782],[6.992590446265045,52.64131892907751],[6.992459132513139,52.64133238793302],[6.992342098456143,52.64135248513185],[6.992245944630517,52.64136978339795],[6.992162846503355,52.6413885232218],[6.992083420968372,52.64140667409654],[6.991891456787966,52.64145474839443],[6.991676107204937,52.64151392434705],[6.991565327418141,52.64154346420415],[6.99129685946295,52.641620974147436],[6.990910756527973,52.641734587004194],[6.990432161786575,52.641868771725996],[6.989887635093683,52.64202658468791],[6.989711107345763,52.642080739248286],[6.989523653137317,52.642135130729216],[6.989048584570558,52.64226899259773],[6.988681506760981,52.64237784735304],[6.988287048001772,52.642485541772245],[6.98799758817855,52.642571236876385],[6.987851515466334,52.64261374268326],[6.987533908924319,52.642705658261455],[6.986780559601945,52.642920199814036],[6.986381088518756,52.64303253942241],[6.986081003470192,52.64311882217216],[6.985961733592295,52.64315485284393],[6.985841935465005,52.64318855344565],[6.985541398672447,52.64327466106986],[6.985339823751051,52.643331123362465],[6.985153488907254,52.64338000974988],[6.985068459792076,52.64340272545149],[6.985020543644622,52.6434179310976],[6.984964700708871,52.64343459158892],[6.984895117681858,52.643455391743835],[6.984766926879209,52.64349810272189],[6.984627922019005,52.64353601524196],[6.984481197424413,52.6435729526991],[6.984388450507317,52.643598827746864],[6.984270874398062,52.64363681142299],[6.984155759161003,52.64367745843805],[6.984082536551102,52.643707924734436],[6.984030026257135,52.64373092186086],[6.983942339303628,52.64377407652595],[6.983853527490617,52.643826953860994],[6.983759860037267,52.64388448050911],[6.983635879788741,52.643961829558855],[6.983069690469034,52.64433032379591],[6.982776158229588,52.64452023798073],[6.982637240471795,52.64460956145345],[6.982514747492386,52.6446954284177],[6.982380502940318,52.64478325069101],[6.982271912441361,52.64484502125037],[6.982162669990855,52.644901047826494],[6.982042791545321,52.64496126179427],[6.981924664510142,52.64501273330487],[6.98149762578985,52.645139987510255],[6.981308007818106,52.64518423771914],[6.980326090530819,52.64538562350463],[6.979580823991099,52.64553583193162],[6.978680199934144,52.64572173313805],[6.977839406795029,52.645895051785196],[6.977351213749581,52.64599497512249],[6.977184433575395,52.64602938526579],[6.976933456905168,52.64608119065647],[6.976383154258541,52.646196412239945],[6.976255529778975,52.64621843265511],[6.976172529193046,52.64623212626847],[6.976085745024791,52.6462433535756],[6.975984777517887,52.64625468055197],[6.975904836484692,52.646258984990716],[6.975792151363782,52.64626094055694],[6.975688572141785,52.64626133615347],[6.975614998833796,52.64625782514302],[6.975500999074674,52.64624793314165],[6.975343545761526,52.64622558826689],[6.975178340529548,52.646193189724855],[6.975050916408171,52.64615938736049],[6.974929651149085,52.64610788507561],[6.974809451088962,52.646053132549795],[6.974715603398178,52.64599560102681],[6.974542250775015,52.64588484051937],[6.974309035002917,52.64570818418391],[6.973593768245711,52.645150466623114],[6.973310432789962,52.64493196154597],[6.972670023320036,52.644449642109706],[6.972109318901169,52.64402998518481],[6.971603419526957,52.64364644810229],[6.971055943347377,52.64323245253081],[6.97085183303328,52.64307949092887],[6.97038803956363,52.64273206094068],[6.970334942036971,52.64269375802396],[6.97024735263739,52.64263730816864],[6.970196401791807,52.64260526854591],[6.970128153276521,52.642568875140775],[6.970057317544365,52.64253449361362],[6.969248834124706,52.642200368261065],[6.968494901640214,52.64189948835392],[6.968432485381161,52.64187317340942],[6.968319236293288,52.641830366612815],[6.96822522901802,52.641800786541076],[6.968146882383789,52.64177935741246],[6.968105664554993,52.64176725880711],[6.968063998457095,52.64175502235172],[6.968000631244855,52.64173923643412],[6.96793808972008,52.64172586637809],[6.967826005506002,52.641707222804136],[6.96771133479923,52.64169472567879],[6.967466401058327,52.64167991574567],[6.966368342414165,52.641695679420465],[6.964764772817992,52.64171940244556],[6.963282611541548,52.64173753890983],[6.962788928303055,52.641737433206885],[6.961866634212139,52.64174291514226],[6.960949345546501,52.64175200893206],[6.959947633123214,52.64175969608467],[6.959705260674431,52.64175858869804],[6.959532217711066,52.64175827144222],[6.959467617610549,52.64175750812805],[6.959380404179757,52.64175245978413],[6.959311280056872,52.64174501484337],[6.959232896124133,52.641730681310186],[6.959122905644237,52.64170436160381],[6.959042823305754,52.6416797135987],[6.958966767353873,52.641651956196476],[6.958887073690122,52.641617505474606],[6.958853245426893,52.64160123421106],[6.958769089065165,52.64155767413103],[6.958220607826146,52.64128097838682],[6.957789322372289,52.64105019081488],[6.957433959708387,52.64085992558064],[6.957010705410637,52.64064278158079],[6.956492057157303,52.640369189469254],[6.955949875481507,52.640090153137],[6.955227912683419,52.63970427606831],[6.955003782159039,52.63958453982581],[6.954309842859734,52.63921752301233],[6.954244646493341,52.63918332751024],[6.954181704658374,52.63915476499128],[6.954131858772199,52.639132141961475],[6.95401400112862,52.63908794430241],[6.953933643826321,52.63906365608478],[6.953893654504564,52.63905267793947],[6.953851639213972,52.63904289504848],[6.953811543863487,52.639033086789155],[6.953781021990505,52.63902656797317],[6.95355824993108,52.63899040429236],[6.953228022732715,52.638969768163655],[6.953115492536604,52.63897556542642],[6.952049517631965,52.639048211252565],[6.951807969106962,52.63906359791171],[6.951366370208598,52.639091720334534],[6.94978931183822,52.63920612649077],[6.949672057339594,52.639214139848846],[6.948916424591273,52.63926577854137],[6.948281317277433,52.63929335807281],[6.947748414509931,52.63930727795581],[6.947342064047956,52.63931495003712],[6.946741020955767,52.63932400727464],[6.946503085857976,52.639335129095436],[6.945977861723962,52.63934894028199],[6.945563691871532,52.639348619217465],[6.945427238208811,52.639342318737306],[6.945047937969094,52.639312775488925],[6.944935906280046,52.63929932307652],[6.944827103233908,52.639277738625516],[6.944560631356309,52.63922487295274],[6.944286368206595,52.639169771787046],[6.943478573423128,52.638947910261464],[6.943248936347805,52.638884492221344],[6.942273397734178,52.638615112400515],[6.941625929626374,52.638434914423385],[6.9409537623637,52.638253867358564],[6.939976142518148,52.63799168693535],[6.93973998159809,52.63794407724081],[6.939496739739842,52.637909323285896],[6.939280377185723,52.637886801649366],[6.939058502499456,52.63787136260957],[6.938854323285871,52.6378716916142],[6.938603184842568,52.637885307098664],[6.938416638601917,52.63790383158412],[6.936667935804676,52.63808196503114],[6.935256323444196,52.63822467191021],[6.935088677796564,52.638242944906516],[6.934857519817519,52.638282808222066],[6.934645155225191,52.63832350497748],[6.934461577784234,52.63837191617343],[6.934134364401947,52.63847855456276],[6.93205629635694,52.63919131619845],[6.931718171761239,52.63930734775391],[6.931287118811018,52.63945442747957],[6.930929446022907,52.63957646333324],[6.93057209965849,52.63968806727369],[6.930345993459362,52.63976695589877],[6.930135057398778,52.63984447861895],[6.92996881528729,52.639902994447866],[6.929815313741527,52.63994983940706],[6.929648667469678,52.63999685479117],[6.929507934378067,52.64002861278033],[6.929353949898948,52.64006171109693],[6.92917736538533,52.64009501249994],[6.929086288853012,52.64011021615967],[6.928989351812541,52.64012684401957],[6.928825545953807,52.64014955253701],[6.928659989355634,52.64016868813166],[6.928521959424475,52.64018485987756],[6.928413058520386,52.64019319328657],[6.928290349950418,52.64019963825872],[6.928154710412454,52.640203913820216],[6.92803123785925,52.640205424776575],[6.927921003981329,52.64020523596881],[6.927790052226261,52.64019992255576],[6.927611248581002,52.640191004646965],[6.927409436717352,52.64018328348697],[6.925687186404377,52.64009494284197],[6.923713281920708,52.64000569638725],[6.923065784737641,52.63997532558068],[6.921323373616415,52.639888800284574],[6.920296846662431,52.639844610570464],[6.919992509908099,52.63983307597395],[6.919720095763339,52.63982598268707],[6.919606856310072,52.63982007233771],[6.919521667424754,52.639821979695675],[6.919457777216761,52.63982451122189],[6.919391903807854,52.639829495170765],[6.919320358113149,52.63983706899975],[6.919257406620572,52.63984534092125],[6.919194102733933,52.63985622404569],[6.919123702871616,52.63987124337634],[6.919054540838265,52.63988786463004],[6.918972182944093,52.63991166688949],[6.918865812158487,52.639950249979194],[6.918749214213779,52.64000064972625],[6.918731364289769,52.64000995809914],[6.917682573762275,52.64058704411327],[6.916364040328632,52.64131985559685],[6.916339825104919,52.64133311048845],[6.916071330799064,52.641485772754685],[6.915952320367396,52.641556244918604],[6.915867485451988,52.641619446199144],[6.915793887674377,52.641682862426826],[6.915736434545666,52.64175164379928],[6.915692089670837,52.64181495338476],[6.915653421832681,52.64188430206934],[6.915623327768881,52.64196225927897],[6.915602594513381,52.64202895043338],[6.915594332748303,52.64207184160436],[6.915405131788921,52.643290409401644],[6.915295031174363,52.64402995484753],[6.915238987209229,52.64440306596822],[6.915119637864568,52.64521256998623],[6.915017861027382,52.64574536388762],[6.914997070150544,52.645831740223755],[6.914963294283996,52.64592718201726],[6.914924544902448,52.646015586887124],[6.914879152491941,52.64609994243087],[6.914814760308487,52.64619038459591],[6.91475603695721,52.64625684470664],[6.914688639054202,52.64632458472411],[6.914620521014774,52.646380109736064],[6.914552970796539,52.64642645921943],[6.914463855438282,52.646481624727826],[6.914342983689711,52.64654151266585],[6.914339790160208,52.64654317161321],[6.914215724592298,52.6466047183329],[6.914083717525685,52.64666313113222],[6.914017095490573,52.64668942416123],[6.913979318149722,52.64670119889158],[6.913941972537197,52.64671348937455],[6.913915926032251,52.64672092479815],[6.913821725068058,52.64674883036112],[6.913761871712004,52.64676577824384],[6.91371583464334,52.646779376631734],[6.913668001397958,52.64679044360511],[6.913616636211041,52.646804108592086],[6.913563800361905,52.64681551119042],[6.913213704491185,52.6468834647621],[6.912056488510789,52.64711493715828],[6.910823457525653,52.647355189984],[6.910499710795816,52.64741953488676],[6.909204860739009,52.64767686795998],[6.909202512508199,52.64767733845182],[6.908264768173154,52.64785913343711],[6.908035083598516,52.647900992288314],[6.907757464855087,52.6479456210953],[6.907430904288661,52.64798952694789],[6.90489832174281,52.64830574505285],[6.903463593697746,52.648488902907275],[6.903220900783712,52.648526603860546],[6.902938141665834,52.64859384778971],[6.90267825729453,52.64867733800472],[6.902359567116503,52.6488084068186],[6.902347435038747,52.64881530276184],[6.902227663991849,52.64888334351333],[6.902170373686102,52.6489191284619],[6.902104851109565,52.64895618677422],[6.901333468427463,52.649408603863755],[6.900824446275359,52.64970792856741],[6.900525569953172,52.64988260335442],[6.900409786584407,52.649953737391016],[6.90013794806887,52.65011539329718],[6.899786377043408,52.65033082504278],[6.89947398365721,52.65052094932685],[6.899261765938956,52.65064589110943],[6.899148157282677,52.650706461808504],[6.899106930954938,52.65073075144591],[6.899017060537271,52.65078410803928],[6.8989345619458,52.65083308334086],[6.898845016949852,52.65088345147215],[6.898693147746424,52.65095488988541],[6.898537343744628,52.65101850426824],[6.898515891169465,52.65102687556492],[6.898390091886685,52.65107596057206],[6.898261966450835,52.651119726916804],[6.898137897421866,52.65115681712226],[6.897948186101572,52.65120790048815],[6.897764311358418,52.65125465784538],[6.897574480360328,52.65129970192619],[6.897516024221534,52.65131207565177],[6.897348358447873,52.65134411019268],[6.897179818226768,52.65137134681951],[6.897023439557738,52.65139423116187],[6.896849985306402,52.65141308961825],[6.896812791154577,52.65141713039603],[6.896634068491359,52.65142632102931],[6.896375808371185,52.65143610782585],[6.896164095879469,52.65144222912577],[6.895953151258075,52.65144833131349],[6.89586937284721,52.651449808094355],[6.895297282070645,52.65145992592604],[6.895087476802347,52.65146348636922],[6.894634014581998,52.65147214106152],[6.894555870525949,52.651473716252035],[6.894222108199446,52.65147938629748],[6.894015959349201,52.651485280437846],[6.893916516793495,52.651487251028236],[6.893682716714543,52.65149188615895],[6.893128153591102,52.65150286795977],[6.892134562360979,52.651522372451545],[6.891741538116381,52.65152643984587],[6.891624174785694,52.65152601971636],[6.891497927998338,52.65152297945482],[6.891491501393268,52.65152262035365],[6.891358780481836,52.65151610248939],[6.891224189736736,52.651506336342734],[6.890963753864042,52.65148538963469],[6.890124459313614,52.65140716322146],[6.889465807965303,52.65134685393997],[6.888624596624571,52.65127162531653],[6.888574046726684,52.65126716737782],[6.888143763771327,52.65122917853524],[6.8876156887592,52.651182589271606],[6.887472722599582,52.65116856524664],[6.886792489196175,52.65110184423197],[6.886261353799184,52.65105599764795],[6.886199069358939,52.651050230591835],[6.886126139937754,52.65104348317084],[6.885513002612668,52.65098829471068],[6.884976454344955,52.65093748617127],[6.884921979735001,52.65093233010468],[6.884408265699261,52.65088496143434],[6.883854651601813,52.650833329162104],[6.883711573460934,52.650819850342046],[6.883349733715359,52.65078726535425],[6.882942355544101,52.65075151314294],[6.882820779841706,52.6507414568881],[6.88230609432262,52.650698846269805],[6.881636207944449,52.65063518353565],[6.881262983620157,52.650598888327345],[6.880926678507977,52.65056608291284],[6.880612666160908,52.65054126573958],[6.880427883560847,52.65053127311117],[6.880265358361503,52.650532595574354],[6.88012936489272,52.65053619125677],[6.879950358627246,52.650548326545824],[6.879746650045882,52.65056854667011],[6.879729563905129,52.650570244295615],[6.879535188221528,52.650599829577914],[6.879429563181075,52.650618592998384],[6.879249313041018,52.650659415692566],[6.879089552782706,52.6507030369855],[6.878928858712853,52.65074963591611],[6.878810029275542,52.65078869839502],[6.878660134165416,52.65084171395061],[6.878497795980616,52.650899127931055],[6.878303075827534,52.6509665564272],[6.877519129658308,52.65124397080591],[6.877202747341477,52.651354269149614],[6.877091598224713,52.65139763787585],[6.87701311887627,52.6514325075529],[6.87690969403948,52.651477037698655],[6.876603019459231,52.65163404196756],[6.876323461851716,52.65178009950463],[6.876172368002125,52.6518703476169],[6.87588587012617,52.65201667076429],[6.875426748298439,52.65225917257245],[6.875220876993663,52.65236862121086],[6.874955904229317,52.65250918969743],[6.874554685315277,52.65272040299893],[6.874114203852835,52.65295511613327],[6.874003139160271,52.65301430032293],[6.873895994378826,52.653066595249435],[6.873758374173053,52.6531285381797],[6.873659372720919,52.65316160388604],[6.873614887385069,52.65317697291436],[6.873374044388408,52.653235460229425],[6.873276822612177,52.65325035590983],[6.87321969085541,52.653256705797844],[6.87307801398688,52.653267761759004],[6.872932510027909,52.65327359819419],[6.87281078282082,52.653270562454004],[6.872673620585173,52.653256888550025],[6.8725513921879,52.653239890941364],[6.872299624895283,52.653187677442105],[6.872257800213657,52.65317900490481],[6.872215443389736,52.65317032998538],[6.871973790275669,52.653120856736926],[6.871935233601221,52.65311135228611],[6.871825461037098,52.65308153383069],[6.871730008478102,52.65305559912189],[6.871681301443853,52.65304312938351],[6.871537568222294,52.652995021013545],[6.871478095794248,52.65297362539039],[6.871418912422551,52.652951596909716],[6.871331111120335,52.65291850153384],[6.871285056427771,52.65289878088264],[6.871222730017395,52.652872081669884],[6.871110846076556,52.65281820914181],[6.871022041884495,52.652769396483954],[6.87088823449575,52.652689084128895],[6.870796946785721,52.652631044333525],[6.870747064122357,52.65259816737922],[6.87014884761723,52.652208033042704],[6.870007837074604,52.652120448125686],[6.869934518971893,52.652077167068484],[6.869824466761707,52.65201527089919],[6.869744961769611,52.65197258823457],[6.869588998536448,52.6518907800492],[6.869521187338354,52.6518560678327],[6.869250669165212,52.65173699290089],[6.86877598881598,52.65153851562652],[6.86863581316499,52.6514795105758],[6.868182381266348,52.65128863989073],[6.868151033088873,52.65127544009102],[6.867791606196743,52.65112552505108],[6.867491930615089,52.65100052652616],[6.867232425650359,52.65089130494048],[6.867177136889981,52.650868039429255],[6.866876286724193,52.65074448315236],[6.866324842416384,52.650514566787336],[6.866183618890085,52.65045364842543],[6.865776562213715,52.65028363783194],[6.865581635395963,52.650201679983766],[6.865130416735943,52.650014302724195],[6.865024022017471,52.64996940755197],[6.864882935686686,52.64991026565952],[6.86474474312026,52.64985894340038],[6.864605290014071,52.649819357434026],[6.864596695533511,52.649816920550826],[6.864492694624562,52.64979793546947],[6.864380761386414,52.64979050002666],[6.864159137158055,52.64977682335016],[6.863867285497234,52.64976494448256],[6.863728944145898,52.64975931058457],[6.863439262490007,52.64974823062047],[6.863268435897871,52.649740788482504],[6.862897004229348,52.649724601331485],[6.862490127898317,52.64970781028921],[6.861895596883724,52.64969118893504],[6.861875294779112,52.64969086552877],[6.861688121876965,52.64968822593761],[6.861281094440522,52.64967880305971],[6.860726202712274,52.649662672962855],[6.860061897700072,52.64964501984504],[6.859500961994817,52.64962931847741],[6.859002026170127,52.64961590281726],[6.858398525062298,52.6496000941098],[6.858030525744808,52.64959098600827],[6.857442597126638,52.64957237314172],[6.856471122439451,52.64954816235994],[6.855492573193221,52.6495598943704],[6.855003062165411,52.649571962227256],[6.85435102498411,52.64958522523468],[6.853954635220253,52.649580050271794],[6.853792768868132,52.6495700031896],[6.85363445283309,52.64955119342277],[6.853493316866795,52.649524621370354],[6.853353999732013,52.64949497065766],[6.853120397471875,52.649432596724104],[6.853093049967761,52.64942529390866],[6.853045534004648,52.64940970093345],[6.852998732741233,52.6493933800527],[6.852968668514973,52.649382605307544],[6.852941272289773,52.64937206729579],[6.852870937772442,52.64934138560793],[6.85280521971271,52.64930732129488],[6.852802057599224,52.64930556264955],[6.85268576968179,52.64924407828185],[6.852570872488084,52.64917997004027],[6.852303809877218,52.64901545043108],[6.852127334269531,52.64891282187403],[6.852016327496941,52.64885010332358],[6.851904158031624,52.648796836672766],[6.85189680287589,52.64879342187653],[6.851778263632917,52.64873969432816],[6.851643615767571,52.648690389602976],[6.851640179229787,52.64868926348055],[6.851492285258152,52.6486504583477],[6.851338365495743,52.64862152450758],[6.85116476545048,52.64860514681607],[6.850989009028861,52.64860389578495],[6.850838645468484,52.64861518512965],[6.850692083171663,52.64863856164411],[6.850633910729235,52.64864907511456],[6.850484292676022,52.64867833139754],[6.850337967959404,52.648713299500486],[6.850128684350122,52.64877039846331],[6.850080940098084,52.64878342590195],[6.849476093170697,52.648945754638284],[6.848957678836139,52.649084888198885],[6.848496197674593,52.649208740533986],[6.847422589142745,52.64950272864014],[6.84739647629344,52.64950988050888],[6.846780297388857,52.6496773500283],[6.846464877508251,52.649763357724225],[6.846252888264367,52.64982116608836],[6.846172561173058,52.649842852095894],[6.8455347162993,52.65001504815293],[6.845216624547215,52.65010263125376],[6.844551013565851,52.650281840827404],[6.844175417047701,52.650386934208974],[6.843925406902212,52.650455343186294],[6.84309936527094,52.65067713753104],[6.842751946757311,52.65077199411679],[6.842171318777455,52.650929566340835],[6.841848058665943,52.65101678109714],[6.841823712814998,52.65102334388337],[6.841695428516621,52.651058152298],[6.84162851763838,52.65107630042165],[6.840806889143315,52.65130352543341],[6.840085984224079,52.651498432171294],[6.839421845041792,52.65168049783753],[6.839361213075622,52.65169863088443],[6.839217841407969,52.65173541855241],[6.83896731446426,52.6518016121633],[6.838804317868181,52.65183803678894],[6.838541547969293,52.65188932364673],[6.838369485938731,52.651922910199005],[6.838087015825042,52.651944244922625],[6.837842633957325,52.65195219797664],[6.837790481670372,52.65195233107151],[6.837662369846033,52.651952671936236],[6.837563168704883,52.65194814785533],[6.837460219201967,52.65194334582717],[6.837165787577177,52.65192376582273],[6.836797672910301,52.65189946602493],[6.836633885481556,52.65188865496881],[6.836626997799338,52.65188819066798],[6.836576887216958,52.651884801889906],[6.835860016989598,52.65183653683687],[6.835834065783589,52.65183478579543],[6.835452519966671,52.65180650191455],[6.835026711494445,52.65177555611021],[6.834994335626895,52.65177348767144],[6.83449675942777,52.65174165236179],[6.834341959294475,52.651731744407414],[6.834275646112014,52.6517268621279],[6.834264801222609,52.65172605936831],[6.834163181226534,52.65171851483592],[6.833634620910789,52.651679251275404],[6.833119390968063,52.65164713067518],[6.832966856830284,52.65163779555907],[6.832499628152378,52.651605582817055],[6.832470673206203,52.65160326536921],[6.832234558614449,52.65158437530919],[6.832144988431873,52.651577851066506],[6.832095440028121,52.651572206505705],[6.832031338472949,52.65156354798981],[6.831993955438514,52.6515570634329],[6.831936406476255,52.65154766906214],[6.831907582825819,52.6515425994466],[6.831859880673455,52.65153331906786],[6.831813419489278,52.65152357417571],[6.831784203565467,52.65151735881806],[6.831745693112274,52.65150849697992],[6.831704852742227,52.651497991652576],[6.831675774545507,52.6514901207366],[6.831614943095852,52.651471229579734],[6.831554703639372,52.651450111089204],[6.831488178345106,52.65142345126958],[6.831394416123421,52.65138062883936],[6.831380881660259,52.651374429583974],[6.831275630383046,52.651317931730254],[6.831250222640334,52.65130346367834],[6.831224959431936,52.65128889502132],[6.831189208571036,52.651268647297606],[6.830647875655049,52.65093596905552],[6.830555203107124,52.65087901222772],[6.830365712302111,52.650759441091395],[6.830324125656026,52.65073067121184],[6.830232390137049,52.650662161823746],[6.830194725161726,52.650631744372106],[6.830158644409354,52.65060276379411],[6.830113083103255,52.650562303421005],[6.830018115486655,52.65046598745121],[6.830011366813666,52.65045849227041],[6.829968420551506,52.650410791506694],[6.82990598941194,52.650337674745565],[6.829826074251187,52.65022219271332],[6.829727967746846,52.65009232547484],[6.829700030286808,52.65005566884926],[6.829675319419761,52.65002816800032],[6.829610580757969,52.649968022176836],[6.829593850392673,52.64995087784643],[6.829540220034294,52.6499009246865],[6.829467833620719,52.649847756575525],[6.829397048040672,52.649796079062604],[6.829312989697727,52.649746153440866],[6.829271602603207,52.649724319708525],[6.829263646949441,52.64972011982659],[6.829223225100647,52.64969977540733],[6.829114071896984,52.64965161914967],[6.829044187824207,52.64962290449227],[6.828970349033357,52.649592565891815],[6.828800827271185,52.64952372258166],[6.828679818260358,52.64947408284116],[6.828544323742388,52.64941849762182],[6.828317934491716,52.64933023640404],[6.82816904209987,52.64926940226303],[6.82806722989039,52.64922872419941],[6.827944211326964,52.64918175061967],[6.827834832708333,52.64914332127976],[6.827797080752731,52.649130907605254],[6.827728075445718,52.64910821263071],[6.827618216322175,52.64907404933472],[6.827501626200636,52.649038772041926],[6.827409049260275,52.649013360421975],[6.827319896173824,52.64899186207451],[6.827209663366038,52.64896386885209],[6.826906915253319,52.64888676764374],[6.826717037625916,52.64884012624294],[6.826617030648535,52.64881524441844],[6.82621003798299,52.64871149522852],[6.82567054088701,52.648579156698624],[6.825528320219229,52.64854408880964],[6.82493158097508,52.648397878637205],[6.824077201160313,52.64818648747785],[6.823694148335901,52.64809230045116],[6.823510011859445,52.64804702270573],[6.823276609237302,52.64798963952069],[6.822438404920201,52.64778480041686],[6.822405049174686,52.64777614302159],[6.822371340544751,52.64776799321106],[6.822321517312679,52.647757377423225],[6.822297997588289,52.64775305939652],[6.822274325653616,52.6477490578277],[6.822161148522561,52.647731629723786],[6.822044296090803,52.647714785228075],[6.821961293205702,52.64770588209579],[6.821864025702139,52.64769867011191],[6.821842476750867,52.647698588631805],[6.821664536041991,52.64769363549796],[6.821387012142281,52.64769111506212],[6.821075407088191,52.647688951183696],[6.820536708615784,52.647689947610196],[6.820522034876149,52.64768997173756],[6.820476614804752,52.64768883862836],[6.820373721629875,52.64768901867845],[6.820280682687705,52.64768820797133],[6.820161013266467,52.64768692729168],[6.820064631091729,52.64768601288106],[6.819975576234048,52.64768592692452],[6.819887644645689,52.64768584532072],[6.819778269140882,52.64768436824725],[6.819690561488933,52.647683447873526],[6.819599437327085,52.64768244276246],[6.819499529935361,52.64768173221804],[6.819357971426697,52.64768081334451],[6.819266243957471,52.64767988715328],[6.819175873843172,52.64767979844053],[6.819120462701833,52.647679989621594],[6.819014114330558,52.647679347247184],[6.818936948416712,52.64767994416383],[6.818860934217942,52.64767960140473],[6.818787445432003,52.6476810258307],[6.81871792924399,52.647682366405604],[6.818660007943865,52.64768534698602],[6.818599205257639,52.647688335263325],[6.81850300706822,52.647693978819014],[6.818454010475235,52.64770055498871],[6.818395292330836,52.64770629540258],[6.818333709935057,52.647716204903205],[6.818269991215567,52.647727677091545],[6.818219493031002,52.64773806424692],[6.818159324368501,52.64775191144692],[6.818116422217808,52.64776502945682],[6.818072352268914,52.64777859293582],[6.818032972607612,52.64779005960625],[6.818005664488485,52.64780055404436],[6.817962940710025,52.64781597982117],[6.817913528327108,52.64783612401692],[6.817867089089088,52.64785726607256],[6.817836962937836,52.647872899713356],[6.817791524924397,52.647895746424965],[6.817748363680603,52.64791907804732],[6.817701614912023,52.647942974155995],[6.817634779714421,52.64797858997128],[6.817578436384272,52.64801055608134],[6.817522364596832,52.648041332447825],[6.817470954700799,52.64807095615223],[6.817398120073722,52.648112504355936],[6.817329804886904,52.648150339912604],[6.817274636650633,52.64818164459066],[6.817217316754639,52.64821404472931],[6.817155378765254,52.64824940358071],[6.817093880892402,52.64828557507047],[6.817030619089779,52.64832112954446],[6.81696829578833,52.64835419196649],[6.816914643433748,52.64838168519894],[6.816870840425167,52.648403487230546],[6.816832374457816,52.64842399366556],[6.816779709307267,52.64844685499572],[6.816735925071613,52.648464692926204],[6.816678881669286,52.648485620500246],[6.816614865272943,52.64850753067102],[6.816550030777205,52.6485270058873],[6.816483035028631,52.648547280026406],[6.81641982417596,52.64856533346334],[6.816382472916089,52.648575588738],[6.816367097575309,52.64857858692367],[6.816316985383013,52.648588618092184],[6.816267835078398,52.64859732540063],[6.816211419066324,52.648606191935166],[6.816152187137097,52.648615721507575],[6.81609109637385,52.64862626207514],[6.816051487578565,52.648630261583826],[6.815980860019256,52.64863701585506],[6.815949781408107,52.64864020273274],[6.815881378731706,52.64864493481205],[6.815804224220638,52.64864820804808],[6.815722713495186,52.64865249534687],[6.815601531343109,52.64865840082564],[6.815491455698825,52.648664100854496],[6.815308850732207,52.64867306303674],[6.815211005305126,52.64867766309278],[6.815108773215709,52.648683250532436],[6.815006983720816,52.64868881457308],[6.814914513646046,52.648693295877194],[6.814808931061337,52.648699013175275],[6.814715630403828,52.648704313241424],[6.814622791343822,52.6487078999435],[6.814506203038599,52.648714656966675],[6.814400440219599,52.648719378361754],[6.814305472318074,52.64872385325616],[6.814214363529276,52.64872838956757],[6.814087805103567,52.64873531078767],[6.813991828779915,52.6487396806802],[6.813878687435466,52.64874473286897],[6.8137793188457,52.64875022188464],[6.813615367116926,52.64875884073217],[6.81349625742327,52.648764872007746],[6.813403633604687,52.64876963264097],[6.813279320542439,52.64877607664536],[6.813180589147739,52.64878071260241],[6.813074176518375,52.6487863664167],[6.812962417721407,52.64879122140905],[6.812821060110391,52.64879933445082],[6.812738485293838,52.64880272466683],[6.812646723762361,52.64880810349913],[6.812583570187556,52.64881111690122],[6.812471649834285,52.64881691710618],[6.812369622119601,52.648822445804385],[6.812267153664812,52.64882714380193],[6.812198607562755,52.648830662046],[6.812076403679916,52.64883698963949],[6.81198349336199,52.648841581767535],[6.811850606004261,52.64884840571221],[6.811754175085881,52.64885335448051],[6.811644345203176,52.64885891314261],[6.811544386206326,52.64886352651378],[6.811443866243764,52.648869072283276],[6.81134569814997,52.64887377189623],[6.811257417470042,52.64887803835797],[6.811163205365581,52.64888168370742],[6.811089962769721,52.64888666873432],[6.811028847196262,52.648888731107384],[6.810900014784051,52.64889573908174],[6.81080407361623,52.64889938688823],[6.810702444638687,52.648904918364735],[6.810563495525237,52.64891030343812],[6.81049387317759,52.64891436390812],[6.810409835763935,52.64891777895955],[6.810325812427041,52.64892300046234],[6.81026992467516,52.64892586269719],[6.810194839715003,52.64892917944057],[6.810086932975415,52.64893389567263],[6.809998525044231,52.648939259293755],[6.809881592418846,52.64894591703864],[6.809762845783898,52.64895177842209],[6.809659841772401,52.64895729846954],[6.809595411932044,52.64896061315891],[6.80948804794149,52.64896612234873],[6.809402503394176,52.64897137936668],[6.809311995467072,52.64897578787583],[6.809153547166627,52.64898646495776],[6.809081680217976,52.648990587375856],[6.809021111073054,52.64899355895056],[6.808938761318034,52.648997986445956],[6.808866545336153,52.64900182530305],[6.808814839781747,52.649001949351586],[6.808743755779873,52.649003320782406],[6.80869937402232,52.649003707743304],[6.808670228664051,52.64900683362955],[6.808625752189353,52.64901023275196],[6.808552351790983,52.64901537989512],[6.808525780345032,52.64901858283556],[6.80847296190163,52.64902222544227],[6.808386387947981,52.64903038822679],[6.808325635098485,52.649037280518826],[6.808258169923966,52.6490481988494],[6.808205309432665,52.64905877176244],[6.808160838173642,52.6490678242516],[6.808092418426833,52.64908167508122],[6.808027431183216,52.64909656341998],[6.807915963406683,52.64912281111805],[6.807854292289548,52.649140167431966],[6.807802876464615,52.64915658322132],[6.807722876909511,52.64918619375674],[6.807671405100594,52.64920728407962],[6.807615793826821,52.64922924172874],[6.807565822989663,52.64925059264972],[6.807507293418423,52.64928057565981],[6.807463136583327,52.64930623435883],[6.807421315826446,52.649332386437365],[6.807365898410638,52.64936538818782],[6.807323231805425,52.649397842102715],[6.807290459175771,52.649419994104804],[6.807253211836721,52.64944819474589],[6.807207493686021,52.64949004181444],[6.807174536961161,52.649516564268254],[6.807130757346468,52.64955208740266],[6.807110033083476,52.64957436510103],[6.807057843110686,52.64962357887529],[6.807029294597797,52.64965664599581],[6.807002877885142,52.649692114466056],[6.806984034151477,52.64972274669416],[6.806958095527659,52.649757921846636],[6.806928179383173,52.64980310343306],[6.80689883198711,52.64984667829641],[6.80686772143908,52.64989148763748],[6.806828998765568,52.64994450424602],[6.806805221388102,52.64997979734304],[6.806793826644558,52.64999488984741],[6.806781155927871,52.65001166038316],[6.806751887447445,52.65004395407093],[6.806717032096415,52.650089509161724],[6.806681935170571,52.65013719733463],[6.806647603874221,52.65018113727993],[6.806621760292679,52.650216068497755],[6.806593645860461,52.65025481989086],[6.806570369670753,52.65028550497224],[6.806535641084698,52.65033087872587],[6.80650173600494,52.65037704259629],[6.806467602169924,52.65041978470185],[6.806439077951862,52.650460041943994],[6.806412182874228,52.650495372177005],[6.806384194240457,52.6505320816779],[6.806355867031327,52.65057020634631],[6.806324373767427,52.65061143381557],[6.806297521973499,52.6506476533279],[6.80627017482139,52.6506845528726],[6.806233458323176,52.6507333747811],[6.806205527489679,52.65077279796972],[6.80617010146696,52.650818108024794],[6.806139856305009,52.650857720628814],[6.806102698870305,52.65090525343431],[6.806062572871874,52.65095468226703],[6.806031532615473,52.65099347738791],[6.806017110596172,52.651012785465205],[6.805997259619172,52.651033308804365],[6.805966117565232,52.651062083275406],[6.805947706644994,52.651079605338175],[6.805915153485095,52.65110541253936],[6.805888398830736,52.65112680024745],[6.805857098763598,52.651152053174364],[6.805835381329524,52.651167412566814],[6.805818884322095,52.65117783804819],[6.805787718961015,52.65119581789758],[6.805724709094338,52.65123134524388],[6.805670751650315,52.651261155921866],[6.80562301596075,52.65128546341384],[6.805570903489061,52.65130878948328],[6.805523587652202,52.65133008087159],[6.805468434886884,52.651351250018706],[6.805408872355604,52.65137316387114],[6.805379022800275,52.65138429688441],[6.805283924499393,52.65141013104239],[6.805203696812439,52.65143009816472],[6.805200309938405,52.651430938517926],[6.805121374086265,52.65145063850366],[6.805034592898103,52.65147133085184],[6.804908696030012,52.65149905105262],[6.804798556812183,52.65152366205773],[6.804670624934769,52.65155153210716],[6.80453299183001,52.65158151307223],[6.804380602927926,52.65161772784392],[6.804229457375691,52.65165125809645],[6.804066727316067,52.65168670591952],[6.803908913187816,52.65172198706166],[6.803802034584066,52.65174645938439],[6.803637886751786,52.65178333463209],[6.803477022380686,52.65181937959439],[6.803385250803463,52.65184027398379],[6.803327119635936,52.65185207595182],[6.803210576101431,52.65187016440702],[6.803093379878034,52.65188588759734],[6.802988015718312,52.65189774864741],[6.802911390239877,52.651903883410995],[6.802834345197009,52.65190662556853],[6.802760214933941,52.65190763418497],[6.802643392345474,52.651906508607794],[6.802540237434606,52.65190528305538],[6.802472481792272,52.6519027641378],[6.802421291483198,52.65189925699312],[6.802284506102371,52.65188539872221],[6.802122642281371,52.65186287755019],[6.801961427046343,52.651838460960526],[6.801655227990201,52.65179110569129],[6.801497614666211,52.65176562093438],[6.801417376930559,52.65175226633344],[6.801343483933111,52.65174134390955],[6.801295652778712,52.651733365124095],[6.801238962281509,52.65172380193235],[6.801194881670981,52.651715715583244],[6.801149029272853,52.651709061459805],[6.801115591056916,52.65170239442787],[6.801077330838861,52.65169606343798],[6.801018666290873,52.651686694370625],[6.800985984941978,52.65168104301928],[6.800909235072868,52.651666756735246],[6.800794460380726,52.65164840154204],[6.80055429521202,52.65160924641797],[6.800352035692868,52.65157780150171],[6.800137803514495,52.65154354139878],[6.799979939315805,52.651518012683894],[6.799791048482634,52.65148817858161],[6.799631771989488,52.651464221150135],[6.799446504642329,52.6514344513257],[6.799219441777107,52.651397771395054],[6.79904380832805,52.65137068185051],[6.79881172054827,52.6513339799159],[6.798591681320016,52.651299678173054],[6.798408165711655,52.651270569045494],[6.798235493667562,52.65124408127456],[6.797993975178583,52.651204982026194],[6.797796780696112,52.6511742097093],[6.797651658034762,52.65115142090588],[6.79742959438555,52.651116610733425],[6.797229189879941,52.65108479695201],[6.797042610944653,52.65105596474846],[6.796862422650949,52.651027775515594],[6.796658529196572,52.6509945191267],[6.796530875517614,52.65097354415773],[6.796406368836306,52.65095345757466],[6.796290726333933,52.650934649924],[6.796153216718615,52.65091325215554],[6.796019741999437,52.65089093450772],[6.795874311468873,52.65086678099062],[6.795702480541402,52.650840153788295],[6.795501513170364,52.65080775956758],[6.795311974126251,52.65077871701754],[6.795156732890072,52.65075461595383],[6.795154430321077,52.65075424776386],[6.79501736974328,52.65073252874832],[6.794885834609268,52.65071259568433],[6.794764847543785,52.65069345441485],[6.794660105578277,52.65067856081061],[6.794588570190377,52.65066869388941],[6.794505524419782,52.65065797445173],[6.794497612078299,52.65065779848953],[6.794396319290291,52.65065554616047],[6.794290030875368,52.650656975160516],[6.794211446498499,52.65066282191553],[6.794119280126268,52.65067143592465],[6.794028267042822,52.65068191478234],[6.793977862426436,52.65068903675655],[6.793961811378803,52.650691311967485],[6.793892006267158,52.65070318455441],[6.793824929039047,52.65072133453561],[6.793748566118507,52.65074165264238],[6.793621000294346,52.65077925862162],[6.793484299560965,52.65083576689082],[6.793406358176833,52.65087836723245],[6.793277445233346,52.650958440020204],[6.793190160966566,52.65101391395135],[6.793003034022636,52.65113285684846],[6.792820871721587,52.651255956206285],[6.792626785824369,52.65138658453578],[6.792433895292287,52.651516731035535],[6.792288506364466,52.65161457839529],[6.792148536766176,52.65170998864395],[6.79197384504408,52.651826517864166],[6.791854355367954,52.651907960746016],[6.7916867478706,52.65202376762587],[6.791535677087469,52.65212706511083],[6.791386130394772,52.65222581429851],[6.791245129793624,52.65232284451102],[6.791174407419047,52.65237320476725],[6.79114911542144,52.65238926875082],[6.791131234060494,52.652399969156555],[6.791100663022855,52.65241826166673],[6.791077934097054,52.65243174271822],[6.791057365232441,52.65244529717044],[6.791027233780095,52.65246486074772],[6.790979728944506,52.652493446923856],[6.790963745086779,52.652501554273265],[6.790931657559228,52.65252049382876],[6.790873186376555,52.65255232832448],[6.790821462844337,52.65257747686852],[6.790780069483393,52.65259519597432],[6.79074492458783,52.65261003698313],[6.790737095185473,52.65261293374051],[6.79067625716359,52.65263544839171],[6.790601946481851,52.65266464751195],[6.79055018489223,52.65268027783799],[6.790490393339136,52.652697153440776],[6.790421848190893,52.6527171434052],[6.790372730933899,52.65272857190951],[6.790317712619415,52.65274126551147],[6.790300396268374,52.65274513709327],[6.7901587742407,52.65276446142218],[6.79008042735915,52.652774643881585],[6.790012925823206,52.65278103115087],[6.789970821346122,52.652784817700095],[6.789897539563655,52.65279162362587],[6.789813528701883,52.65279475409826],[6.789763298792031,52.652796793850776],[6.789745729320393,52.65279690230509],[6.789725883222006,52.65279606683039],[6.789692036535957,52.652794632592936],[6.7896243722275,52.65279128734547],[6.789574753880369,52.65279072220824],[6.789507034795429,52.652784267627524],[6.789455879494999,52.65277999948013],[6.789424224335818,52.65277684051161],[6.789358453813893,52.65276845738379],[6.789296627820889,52.65276048604721],[6.78928089668503,52.652758918896595],[6.789233369611937,52.65274931381779],[6.789197389006761,52.65274167577677],[6.789167906448548,52.652735273372684],[6.789127214548066,52.65272727740898],[6.789091270742243,52.652716618889414],[6.789085220318824,52.65271505436598],[6.789042881495449,52.65270407578663],[6.789024708297829,52.65269869043919],[6.788960981189431,52.65268022518818],[6.788916068852929,52.65266779381546],[6.788885988242482,52.652658854719434],[6.788823709990284,52.6526413250862],[6.788745926610865,52.65262004136088],[6.788654417145008,52.65259563874884],[6.78857760535596,52.652575619809305],[6.788501253721404,52.65255612568122],[6.788448655363496,52.65254227473178],[6.788400134281364,52.652529292493945],[6.788264026795056,52.65249580689932],[6.788206956014545,52.652483060174674],[6.788128481378469,52.65246418406887],[6.788076943436199,52.65245345731816],[6.787954638059372,52.65243010019054],[6.787926868453789,52.65242688606075],[6.78786306910308,52.65241864963305],[6.787802101693529,52.652409768598716],[6.787743442407336,52.65240189399859],[6.787687976539289,52.65239637259491],[6.78763728009881,52.652390714092306],[6.787598443515226,52.652388978502294],[6.787540552564301,52.65238480685331],[6.78749952950804,52.65238217120507],[6.787445800891986,52.65237968520701],[6.78739210204097,52.65237813360535],[6.787335196411582,52.65237659280375],[6.787253007772788,52.652375196928794],[6.787138621159274,52.652375860989885],[6.787088262047766,52.65237522265807],[6.787040754409908,52.65237641128919],[6.786976225158496,52.65237773741303],[6.786911991084667,52.65237997683886],[6.786865356713151,52.652382134838135],[6.786833086587569,52.65238424949073],[6.786761490860584,52.65238830125281],[6.786662099670367,52.652395286760054],[6.786583572316752,52.652400264890275],[6.786506687458067,52.65240437872673],[6.7864406901562,52.65240833741968],[6.786359241788828,52.652413484598036],[6.78630079761064,52.65241747115726],[6.786227089721003,52.652421565423566],[6.786148145981289,52.652426467281195],[6.786079773724788,52.652430570569116],[6.786003735061361,52.652435734726964],[6.785953800051498,52.65243960298199],[6.785872478860334,52.652444568601744],[6.785777180236017,52.65244966261794],[6.785663854572318,52.65245766510815],[6.78555147170974,52.65246371496129],[6.785465324427432,52.65246889884225],[6.785387344848875,52.65247391465067],[6.785327523978184,52.652477836037974],[6.785246724346954,52.65248201310442],[6.785171496690206,52.652487122249326],[6.785102583657795,52.65249188747949],[6.785018089453715,52.652495146083666],[6.784926178544668,52.65250220397109],[6.784851328323946,52.65250710175563],[6.784765178699478,52.65251128745846],[6.784682278541142,52.65251726847735],[6.784573457880029,52.65252333844305],[6.784493277662174,52.65252840652369],[6.784417870370679,52.65253251964091],[6.784343225607943,52.65253830451042],[6.784281660330501,52.652540358354834],[6.784209519802157,52.652542626286255],[6.784159261920571,52.65254378316757],[6.784089826220661,52.65254326889323],[6.78403318484661,52.65254446479945],[6.783993311425987,52.65254219193646],[6.783921218735316,52.65253992012766],[6.783845850008584,52.65253408249716],[6.783817172009769,52.652532504942386],[6.783732267719929,52.65252425360232],[6.783648360614385,52.65251714998046],[6.783570910873175,52.6525058178637],[6.783510724611832,52.652496844574436],[6.783426355415568,52.65248635766352],[6.783385946060025,52.65248023499117],[6.783322588318081,52.65247145163787],[6.783172560379724,52.65245139030502],[6.783102053656992,52.65244087518529],[6.783038221008404,52.65243202536161],[6.782976503429955,52.652424157345024],[6.782899626753978,52.65241271022452],[6.782850879854087,52.65240652345803],[6.782780000975922,52.65239778321556],[6.782701474990072,52.65238745190622],[6.782617426573922,52.652375882041376],[6.782530742371732,52.65236368698245],[6.782457264567383,52.65235501298054],[6.782380640756932,52.6523436075172],[6.782300318564094,52.652333953144854],[6.782217769676445,52.65232259012274],[6.782143995823202,52.65231296666483],[6.782069413029615,52.65230253473861],[6.781994072652052,52.652292911602665],[6.781906943598238,52.6522806583579],[6.781778030830894,52.65226320574573],[6.781710315445445,52.6522544726965],[6.781648056753926,52.65224583736772],[6.781572665614216,52.65223507304541],[6.781501371880719,52.65222628297284],[6.781438986032282,52.65221782879017],[6.781388215942952,52.65220981358389],[6.781241781234383,52.65218975259867],[6.781163606206998,52.652178346534576],[6.780989815402999,52.652155496149156],[6.78091991058055,52.65214575463854],[6.780780567633731,52.652127470501654],[6.780719906001679,52.65211885192835],[6.780648865905449,52.652108260739155],[6.780561262287084,52.65209593118314],[6.780500504395075,52.65208707095516],[6.780411556472084,52.65207569178909],[6.780332267288598,52.65206455893262],[6.7802459931463,52.65205220459445],[6.780148017876233,52.65203904354184],[6.780068025274514,52.652026696352316],[6.780009509097386,52.652019076922194],[6.779940815536873,52.652008367945555],[6.779867771126184,52.65199841093527],[6.779795445363811,52.651989676885925],[6.779727819117059,52.651980465287195],[6.779657306274058,52.65197064028827],[6.779585397035063,52.65196105633549],[6.779508915307441,52.651950357415274],[6.779450911573266,52.651942578928654],[6.779297740262665,52.651920679963816],[6.779102414788217,52.65189445675399],[6.779034782809505,52.65188458867585],[6.778982874297323,52.65187840142449],[6.778918975632815,52.651869747905124],[6.778847199439764,52.651861087732215],[6.778787719099644,52.65185240940819],[6.778715275851934,52.65184275025391],[6.778583144344419,52.65182437913799],[6.778521704009063,52.65181634380697],[6.778455384601044,52.65180778129029],[6.778412890273207,52.65180158245175],[6.778353209483547,52.65179357135514],[6.778303862684253,52.65178659878687],[6.778242413931645,52.65177876115052],[6.778196059184137,52.651771996205134],[6.778131486358249,52.651762109822116],[6.778065702663465,52.65175412507883],[6.778013273639016,52.651747359202616],[6.777979027171108,52.65174212431257],[6.777945204342916,52.651737666409076],[6.777920475042968,52.65173427956714],[6.777902530864022,52.651731406567926],[6.777874792288697,52.65172819871536],[6.777860441276109,52.65172538257027],[6.77782671362462,52.6517197280932],[6.777723208989195,52.65171019805109],[6.777701505240502,52.65170667688396],[6.777660578007141,52.65169955162381],[6.777626807188319,52.65169440093279],[6.777589905522106,52.65168745328398],[6.777513454858507,52.65167490118795],[6.777464256073605,52.65166652436962],[6.777450390097036,52.65166408897588],[6.777430985606531,52.65166083748743],[6.777298349854567,52.651618067960996],[6.777262612329609,52.65160119263832],[6.777219347627501,52.65158276948645],[6.77717451616512,52.651562935484584],[6.777132849105301,52.6515436217679],[6.777091538613437,52.65152389941803],[6.777039947184976,52.651498733546646],[6.77697801971465,52.651469185433676],[6.776913858094825,52.651440957677615],[6.776866989269553,52.6514193138386],[6.77682957948163,52.651402359058444],[6.776784547511285,52.65138178126457],[6.776752032983427,52.6513668005794],[6.77672100178792,52.65135199128886],[6.776684169172348,52.65133552406614],[6.776625751392058,52.65130852335794],[6.776590511576948,52.65129101284682],[6.776551218747635,52.65127245313129],[6.776513172875085,52.65125500235009],[6.776475404859009,52.65123699107898],[6.776443256792164,52.65122237450664],[6.776429652720534,52.651216062033676],[6.776398404695715,52.65120186636276],[6.776365072781217,52.65118533118448],[6.776332587792888,52.65117080845564],[6.776240504265465,52.65112697961105],[6.776188881677177,52.65110360239429],[6.77612252643883,52.65107233492904],[6.776066356076814,52.651045343624936],[6.776009113814666,52.651018571528034],[6.775954145950814,52.65099127848308],[6.77592250339388,52.650975343629476],[6.775873697953781,52.650953650133054],[6.775803923978021,52.650922215676246],[6.775656425200074,52.65085466680311],[6.775582764222503,52.65082181255796],[6.774616085252105,52.650374819654665],[6.774434929841134,52.65029105199287],[6.774272636068247,52.65022894113644],[6.774175402527598,52.65019928226851],[6.774023309124081,52.650164421050924],[6.773807494553476,52.65013672051943],[6.77359945279876,52.650126330040216],[6.773390055959393,52.650128736153825],[6.773181244151794,52.65013845146164],[6.772773747239752,52.650169717184596],[6.772594924444043,52.650138734005886],[6.772089306750442,52.650051139931286],[6.772032279989317,52.65000058973983],[6.771984780144738,52.64994705235916],[6.771967741388585,52.649927845409714],[6.771801604030784,52.649802184767914],[6.771547631089263,52.64961009069726],[6.770393512634249,52.64873369800366],[6.770025344200641,52.64845411747429],[6.769876218773446,52.64834086667097],[6.76986009518097,52.6483286235942],[6.76983799251914,52.64833349163134],[6.768213032664584,52.64710367462147],[6.767972650775929,52.64692173353704],[6.767879299196591,52.646851083401124],[6.766310457227773,52.64719412850584],[6.761923977146392,52.64815314962194],[6.761632111680804,52.64821695215066],[6.761442916056147,52.6482583100031],[6.759309311115444,52.64872470765502],[6.758848434786922,52.648825453912345],[6.758798862680995,52.64880014908678],[6.758464384122352,52.64862942247347],[6.757940519723922,52.64836079604867],[6.757595790132887,52.64818526874444],[6.75735781223954,52.64806454199562],[6.757321475447869,52.648046112708755],[6.756937314887834,52.64784801040372],[6.756453077044873,52.6476089143291],[6.756448047086142,52.64760636570116],[6.756446996226139,52.64760583850895],[6.756384691598573,52.647583007282726],[6.755617966843674,52.64730203200253],[6.755577606960111,52.64728724377205],[6.755504639943188,52.64725986100334],[6.755548123420424,52.64705685755461],[6.755465451388861,52.647023888013884],[6.755229690509394,52.64692985333191],[6.755182137517889,52.646910887359915],[6.754880315404501,52.64679049505434],[6.754542188031276,52.64634318047907],[6.753851270029691,52.64595079471347],[6.753451637488189,52.64580627571465],[6.753365541555031,52.64585703264362],[6.753298964534197,52.64590441036249],[6.753161379129451,52.645974975565665],[6.753053549355664,52.64602681795092],[6.753012701410052,52.64604430190405],[6.752762082673658,52.64619144110221],[6.752746039441319,52.64620016415917],[6.752610828668491,52.646274449478476],[6.752521065226924,52.64632851063553],[6.752476633567195,52.64636575550539],[6.752443210875922,52.64640061788638],[6.752404511719781,52.646446874922106],[6.752371298338192,52.64648848500525],[6.752349108790135,52.64652771241833],[6.752332419920756,52.646585616937784],[6.752307163949689,52.64665316525729],[6.752283158836069,52.64671340977929],[6.752251031553049,52.64675050429315],[6.752206205538597,52.646794584584384],[6.752069781347939,52.64690508740743],[6.751954921717251,52.64699098462619],[6.751921125868943,52.64701385197887],[6.751908091373401,52.64703049486443],[6.751908509932308,52.64704398127901],[6.75191626807405,52.64705588237001],[6.751935213362454,52.6470706570614],[6.75204299763944,52.647128633295495],[6.752174074444322,52.64719526720976],[6.752309068182607,52.64725667883006],[6.752458904192061,52.64731254488958],[6.752573168616792,52.64734121685116],[6.752811731602101,52.6473828417065],[6.752920969240882,52.647408569014864],[6.753003044681614,52.647432361299956],[6.753085375961784,52.64746819469366],[6.753329816059902,52.64757956187682],[6.753568907700055,52.64769425269537],[6.753630618760192,52.6477370189388],[6.753657859177557,52.64778092740825],[6.753663448909107,52.64784952353444],[6.75363151641918,52.64793234780113],[6.75361307073036,52.647952225890904],[6.753592166149925,52.64797477477392],[6.753535343325185,52.64800990643644],[6.753376139900128,52.64806361588111],[6.7531713649197,52.64811602422499],[6.753028275845723,52.64814474975325],[6.752938525988988,52.648151776076006],[6.75285838839662,52.64815044978266],[6.752775561529928,52.64814723087004],[6.752598320964867,52.64811077978153],[6.752391952515641,52.64804907371832],[6.752173352214307,52.64799033905432],[6.751964009959847,52.64792086470416],[6.751814269758137,52.64786289369397],[6.751716964891394,52.64782502923369],[6.751635493575467,52.64778308207505],[6.751388069710727,52.64766308111256],[6.751295490880488,52.647618429959024],[6.751166520764301,52.64755491677401],[6.751014437797099,52.647469935309196],[6.750854343271697,52.647373432922734],[6.750711998287547,52.64727886589168],[6.75063416562202,52.64722409519034],[6.750567013099506,52.64716489661217],[6.750530403471039,52.64712229931098],[6.750488760720498,52.64705081793322],[6.750477839031394,52.64701646472379],[6.750475506481413,52.64698126695978],[6.750476634275139,52.64696044650234],[6.750477852158276,52.646937764467694],[6.750490247821773,52.64688667755858],[6.747553540891892,52.64644520217141],[6.746078617592897,52.64622344746181],[6.742075330866858,52.645352736405584],[6.74198412203911,52.645332896634],[6.74127782429446,52.644746839075644],[6.741009098538743,52.64452330959213],[6.740434622195593,52.64404925656457],[6.739547528211584,52.643345786030984],[6.738522152052232,52.64252667612086],[6.738507308610943,52.64251101677829],[6.738283669174293,52.642275194166025],[6.738073958649689,52.642054052219194],[6.737755735683322,52.64181121432258],[6.736958710168475,52.641202964086176],[6.736852994409597,52.64114577773191],[6.736771123126842,52.64110147919955],[6.736590148131434,52.64100357709976],[6.736506008711139,52.64095805478068],[6.736238710445472,52.64084693990149],[6.736006657118966,52.640633346338525],[6.735726316958133,52.64037530566223],[6.734472669589202,52.639667417657606],[6.732964465510709,52.638818589394205],[6.730986723057764,52.63769247471064],[6.730692485859656,52.63752492808827],[6.729610044633672,52.63643809218407],[6.728233924506378,52.63510783690103],[6.72739146268689,52.63434400242373],[6.727313644251034,52.63430155723077],[6.727168734206214,52.6341129126559],[6.726790327511697,52.633620764722366],[6.726398176659003,52.63322035945537],[6.72631940400277,52.63318529463902],[6.726182317981396,52.63313695523494],[6.725247430546203,52.63290660365374],[6.724784981330026,52.63279280699012],[6.723730315326243,52.632426722852436],[6.723311596263515,52.63229328400178],[6.722832751106301,52.632130499164965],[6.722538020425045,52.63206658027126],[6.721918540822962,52.63187436298578],[6.721166775141318,52.63162886292483],[6.721123745732059,52.63161481214552],[6.721062661570939,52.63158165754716],[6.720810591216551,52.63144485624375],[6.720786423783663,52.631432184578216],[6.720262411297642,52.63140157229998],[6.719819893911077,52.63139862605628],[6.71922966864155,52.63134736003787],[6.718899444087683,52.63130126697516],[6.718713488871764,52.63129238525911],[6.718279181058589,52.631341022965856],[6.718200919053185,52.631306881874515],[6.717988917658749,52.63121439565027],[6.717664163725337,52.63103161854591],[6.716980804002959,52.63083604633767],[6.716632661080685,52.630710063433455],[6.716485617939899,52.630634680250495],[6.715647842980969,52.63037350666344],[6.715483142685197,52.630354135824916],[6.715340447309979,52.63035905640348],[6.715015745526173,52.63026552354812],[6.714892989347702,52.63013818538627],[6.714826153907301,52.63007233020218],[6.714100463673721,52.62978490657368],[6.713808904760446,52.62945290529308],[6.713377940955524,52.62925431479516],[6.713260431071923,52.629129253351934],[6.713119595199847,52.6290673328631],[6.712899330453531,52.62897048980078],[6.712000631726168,52.62857534655025],[6.711358895505711,52.62829317220086],[6.711096290684782,52.62817770685949],[6.711035515974098,52.6281509881958],[6.710923029541531,52.62810812771836],[6.710835885709526,52.62807492564757],[6.710299329461848,52.62793062905053],[6.710041874410357,52.62786149169337],[6.7100531909515,52.62782029004782],[6.710079692112862,52.62770736498878],[6.710080335904376,52.627704212000886],[6.710033242891602,52.62749334489322],[6.710145395510211,52.62731493164576],[6.710382058052814,52.62728216836111],[6.710540042950529,52.627238335658326],[6.710803720595389,52.627145670521855],[6.710912538114552,52.6271137998535],[6.712004751762773,52.62683187626575],[6.712337658080354,52.626810951887094],[6.712756553990471,52.626806045890916],[6.712951521156749,52.62679556574437],[6.713012464035407,52.62678867499437],[6.713088895894932,52.62678062266194],[6.713509355898502,52.62684721501857],[6.713587986240078,52.62685819265374],[6.713836856177781,52.62687529609594],[6.713941552717043,52.62685184560108],[6.714038596784971,52.626835706911066],[6.714169150061733,52.62681399878155],[6.714207699957806,52.62680758218263],[6.714230140268641,52.626781257065176],[6.714242067016013,52.62676728215426],[6.714377284760587,52.626614250215404],[6.714412092609863,52.626574861971534],[6.714462382630347,52.62651793574296],[6.714519873303099,52.62646076729745],[6.714558707023149,52.62642215195509],[6.714578986712763,52.626382485531074],[6.714619893993079,52.62630244772877],[6.714637132802856,52.626268720476965],[6.714677321678019,52.626195719405274],[6.714748288921141,52.626066809848936],[6.714844343927638,52.62587599737742],[6.715013637161515,52.62572264685406],[6.715035869954359,52.62570710062951],[6.715059896496541,52.62569030296439],[6.715073662962047,52.625681511516845],[6.715109890192835,52.625658366719314],[6.715311921574386,52.625541528118276],[6.71536544520279,52.62551057697054],[6.715427818701622,52.62547237231605],[6.71545936077697,52.62545305477412],[6.715522879979584,52.62541415415416],[6.715544027595886,52.62540034569088],[6.715779398582741,52.62522792850603],[6.71594133850644,52.625096850475565],[6.716042146757612,52.62501525244341],[6.716120016217829,52.62495221967118],[6.716265294627875,52.62483291319738],[6.716375339177385,52.624753476553956],[6.716464520230798,52.62469822656844],[6.716479845373875,52.62468873445238],[6.71650785462923,52.62467424682402],[6.71660152378702,52.62462578647697],[6.716678886055289,52.624581211639686],[6.716767005767652,52.624517254801475],[6.716784537094279,52.624504529169315],[6.716811766693358,52.62448477417811],[6.716867497058285,52.62444432414676],[6.716889330956278,52.62442637317903],[6.717023448513849,52.624319090923656],[6.717340799353998,52.6240652193312],[6.717444313325135,52.62398241230685],[6.717465455576286,52.62396846869793],[6.717510304814138,52.623938943895965],[6.717536704903705,52.6239166903026],[6.717564948909756,52.6238928970724],[6.717582203486789,52.62387835882219],[6.717679090647562,52.623784992831375],[6.71778900106112,52.623687616028256],[6.717825491515257,52.623650320092146],[6.718250680958718,52.62338182789532],[6.718450750829311,52.62297619904828],[6.718485913053809,52.62271001693324],[6.718488688653755,52.62268898956052],[6.718491476494574,52.622667881139215],[6.718506316005166,52.6225554800284],[6.718506917199386,52.62255094329917],[6.718508288014897,52.622540600545534],[6.718535052387859,52.62233809460335],[6.718520807447996,52.62230855740936],[6.718516047765221,52.62229866085729],[6.718524776386895,52.6222439871038],[6.718545961198575,52.62211139943667],[6.718553186777282,52.62206611710986],[6.718557446240785,52.62203946450774],[6.718595212227652,52.62199948452664],[6.718657102596724,52.62194654296317],[6.719114410102884,52.62183231944472],[6.719147455455448,52.621823769760134],[6.719181576300833,52.62181220601635],[6.719395457526733,52.62174525529216],[6.71943371793398,52.62174066476918],[6.719498652560991,52.621729294719934],[6.719555818794785,52.62172036661325],[6.719575200713505,52.621722971534105],[6.71964259949215,52.621732012790744],[6.719691103687373,52.621739423352054],[6.719720198384526,52.62173454006851],[6.719808970396739,52.62172513153852],[6.720063182549673,52.62167372612489],[6.720177498425389,52.621640221190724],[6.720433261481805,52.62154351534567],[6.720503448395713,52.62150127440665],[6.72065460443869,52.62141049661898],[6.720709208898885,52.62127221244848],[6.720843629282961,52.62119016093689],[6.721215450745139,52.62097197010731],[6.721377749549077,52.62091271350402],[6.72154663080372,52.6208460214512],[6.721614981906062,52.62080126581926],[6.721617588276737,52.6207464628168],[6.721635358293568,52.620674978275495],[6.721705046241762,52.620582273799464],[6.721813205544644,52.620496857961776],[6.721940170287612,52.62042623195657],[6.722065180407139,52.620355448044826],[6.722112170201538,52.620336341593884],[6.722286122840588,52.62031035271607],[6.722421248262553,52.62029359034934],[6.722584121534704,52.6202723814209],[6.722753475348955,52.620250110679635],[6.722801687350577,52.620318975190095],[6.722909680216674,52.62037219337383],[6.72296971897959,52.620316394093926],[6.72386176039299,52.61952703527369],[6.724483413800352,52.618976831898316],[6.724879413629831,52.61862633007431],[6.725024394526303,52.618357318012],[6.725062008760204,52.61828738005925],[6.725303769440017,52.617843806366196],[6.725447909534584,52.61764347270963],[6.725452429456734,52.61763719299527],[6.725489723346087,52.61758541456996],[6.727097900735044,52.61524399240947],[6.727144097331048,52.615170945912894],[6.727266432594257,52.614965534699095],[6.727288854184815,52.61492789101654],[6.727076127815632,52.61447104007793],[6.726885145117406,52.614081723309376],[6.726041964038996,52.61236308291163],[6.725499218679974,52.61125635526695],[6.725443714132354,52.61114315434602],[6.725257022421028,52.610762406200074],[6.725102279926213,52.610446561048846],[6.725082303765889,52.61040579097064],[6.7247947259647,52.60921005224335],[6.724764607147072,52.609079865100014],[6.724722920191067,52.60897275505184],[6.724721318057405,52.60896862053695],[6.72468720127234,52.60890850528358],[6.724537157320926,52.6086628939617],[6.724396160121766,52.608443345177676],[6.724353536659735,52.60832965719705],[6.72432199068396,52.60811985079294],[6.724455462382916,52.607711606415776],[6.724383997801782,52.60755636718679],[6.724344398396871,52.60749020154919],[6.724319794842227,52.607162841488986],[6.724319140711716,52.607153941595875],[6.724295749502464,52.60710225320721],[6.724295459285248,52.60708978092028],[6.724290928641643,52.606983384919076],[6.724249521781146,52.606751218992315],[6.724267395234935,52.60669610003263],[6.724242312252712,52.606476882091336],[6.724217164118302,52.60637558973488],[6.724158745886249,52.6061573761465],[6.724138877096406,52.60601260247318],[6.724132580821055,52.60596667183835],[6.72410401271687,52.60583441772993],[6.723983200423041,52.60530924083864],[6.723933696507103,52.605133638608024],[6.723912952842614,52.60503635026101],[6.723831787368633,52.60495331401892],[6.723742793821714,52.60451124304377],[6.723930971296449,52.60416569604252],[6.723929554396125,52.604157442842045],[6.7237547420482,52.60312877998916],[6.723493674085594,52.60287572486064],[6.722876236814028,52.60185023283662],[6.722794517307964,52.60171460324338],[6.722388930758467,52.600952453003586],[6.72223956691576,52.60067194782841],[6.722001197919487,52.60027917361535],[6.721664919106944,52.599776800510355],[6.721455655884083,52.59938502844552],[6.721398723137042,52.599079143789176],[6.721096720157772,52.59864495490091],[6.720973480064744,52.59835161622209],[6.720949497547336,52.59826452032513],[6.720949275330338,52.598262545409746],[6.720812604292743,52.59726535728607],[6.720787754437196,52.59708183676545],[6.720784869528194,52.59706212210915],[6.720756181196881,52.5968663847898],[6.720736382950418,52.596707336302394],[6.720733928109551,52.59669451074974],[6.720723904382996,52.59664231201371],[6.720706002361683,52.59645277224734],[6.720717462076913,52.59628185891566],[6.720761839316088,52.59609151197627],[6.720762241150838,52.59609015926205],[6.720798107078935,52.59600723591925],[6.7208458301053,52.595906922064344],[6.721335315689896,52.59521273988911],[6.721573944800793,52.594874259912984],[6.719949172407942,52.593261955242525],[6.719919068243603,52.593137743617206],[6.719484362180543,52.59143399117311],[6.718771639999038,52.588636029319154],[6.719826175403559,52.588084682733644],[6.725560935079511,52.58508594688159],[6.726118160994348,52.58479407319516],[6.726399921720059,52.58464643703265],[6.727152638079962,52.58425196388491],[6.727570092898416,52.58403307179679],[6.728304086034003,52.58364808734031],[6.7297315507261,52.582900619706145],[6.729889179682758,52.5828180061549],[6.732360256781551,52.58152277658727],[6.732869114758674,52.58125654035163],[6.737370223899386,52.5788982567467],[6.73792433174605,52.578607907419006],[6.738131070550097,52.57849955677542],[6.741333983555226,52.57682104917439],[6.745833296865253,52.574462797126714],[6.751296436218811,52.57159680343367],[6.752884101233794,52.57076693378125],[6.754860944953308,52.569733576205856],[6.754907350740444,52.56970924055079],[6.755442399338667,52.56942862610129],[6.756981898443929,52.56862119556269],[6.758112971241309,52.56802659519813],[6.758911815600907,52.56760662810568],[6.758927330660305,52.567598476216624],[6.765187545307435,52.564306990995206],[6.766659984125028,52.563532738360095],[6.766693989378339,52.56171413703417],[6.766692103581271,52.56163690415187],[6.765583926531956,52.56168836494522],[6.765445108116558,52.56169116335026],[6.765356337251335,52.561691268290836],[6.765229592826651,52.56169247910786],[6.765056498118509,52.561688682056435],[6.764964369491554,52.56168470004273],[6.764903134997074,52.56168338839742],[6.764837279719964,52.56168052145579],[6.764767739653396,52.56167301432707],[6.764678258672475,52.561669270960394],[6.764634540768782,52.561666848094006],[6.764530514941853,52.56165500415732],[6.764488751378229,52.56164904412911],[6.764445946893795,52.56164328491009],[6.764322973157928,52.56162969217772],[6.764272758365776,52.56162231106767],[6.764152128350034,52.561603477751255],[6.764045646667423,52.561584300424045],[6.763940176506887,52.56156492251462],[6.763724158709727,52.56151847736262],[6.760078299466202,52.56066123051768],[6.758701397815853,52.56033744318357],[6.754352704563725,52.559314684231865],[6.754058693577652,52.55924692780514],[6.753906407635929,52.55921135285619],[6.753778609643783,52.55918595823855],[6.753671174606589,52.559165182715404],[6.753541510683645,52.559140959813625],[6.753457943709948,52.559128924655965],[6.753341559910883,52.55911157755937],[6.753165369970722,52.55908985816131],[6.752861376527819,52.55906014438008],[6.752533593108309,52.559040851307614],[6.75227246147514,52.55903886629089],[6.751626828565747,52.559074378336696],[6.751126001838138,52.559149317555224],[6.751030475341397,52.559163043840385],[6.750901744280476,52.559187047624874],[6.750780333590263,52.559210751514065],[6.750716019457871,52.559225610991156],[6.750533138096859,52.55926981303303],[6.750332327386203,52.55932609422297],[6.750094844922056,52.559388818344594],[6.744930891602121,52.56077371303404],[6.744689702724093,52.56083822134891],[6.742552864666872,52.56140969524877],[6.741174973471409,52.56177763614653],[6.740403668331012,52.5619849113324],[6.740209655724336,52.56203235205682],[6.74010331470993,52.56205348221344],[6.739877121213325,52.562084651845836],[6.739747894216427,52.5621006495239],[6.739620545238149,52.56211921426513],[6.739481058828305,52.56213204778786],[6.739343860592331,52.56214158335938],[6.739138106358848,52.562156816220295],[6.738918250945191,52.56216095594204],[6.738806031886433,52.56216598191601],[6.73857762292061,52.562163899632786],[6.738456152277567,52.56215965583101],[6.738353447105663,52.5621521961744],[6.738236746558054,52.562146226055106],[6.738184570445568,52.56214016855553],[6.738059103715378,52.562126325373654],[6.737766419532459,52.56209683064402],[6.737422885326326,52.562051581932344],[6.736231935405889,52.561896053412724],[6.735582747876514,52.5618021317],[6.735303289131108,52.561775258096624],[6.734982526961679,52.56175588164442],[6.7347786210002,52.561753882373864],[6.73451648222159,52.56175754122928],[6.734371399887908,52.56176245964381],[6.734201177673406,52.56177581556612],[6.734004391700308,52.56179445216859],[6.733820107877974,52.56181583184053],[6.733647476345398,52.56184351465335],[6.733143876734355,52.561932987931925],[6.732297449515689,52.562079510151726],[6.729730766090618,52.56252313427321],[6.729273400713124,52.562602306769385],[6.727547272525818,52.56290108513954],[6.72721512037985,52.56296033783706],[6.726960762067688,52.5630023439436],[6.726758938531994,52.56303943326666],[6.72664618657059,52.563057612578746],[6.726503478914634,52.56308891109775],[6.726404964464637,52.56311403926006],[6.72632925962112,52.56313746287759],[6.726244862107149,52.56316071490291],[6.726136932611798,52.56319637540698],[6.725973478130933,52.56325507883404],[6.725917612288071,52.56316101746609],[6.725863406436766,52.56308227135057],[6.725778990602628,52.562967948746994],[6.72574493444436,52.562917432217546],[6.72564529707582,52.56271175357096],[6.72561729597702,52.562651281648314],[6.725603007097843,52.5626062047914],[6.725588333731855,52.56255332145064],[6.725587043308097,52.56253462240982],[6.725584801127715,52.562483117946776],[6.725577401422655,52.562436624128516],[6.72556373703016,52.56238345079744],[6.725550163944986,52.56232793945722],[6.725544313118607,52.56215902591532],[6.72557598506642,52.56196197843752],[6.725547950457048,52.56182119660566],[6.725499436066441,52.561716086476466],[6.725441681658711,52.561603440451044],[6.72541875890093,52.5615309477824],[6.725402939016113,52.561499550321926],[6.725351662671902,52.56144141702171],[6.725328739291992,52.561404365114015],[6.725220589852283,52.561223221167566],[6.725180147528858,52.561107036205684],[6.725155742044097,52.56106001503424],[6.72505759626794,52.560928040901615],[6.725051287740762,52.5609048413548],[6.725038552019051,52.560857931283856],[6.725024240655463,52.56080332703969],[6.724931567300382,52.560671830402],[6.724931514589009,52.56061516890416],[6.724915514559278,52.56055302454696],[6.724860771914573,52.56045788041449],[6.724768823727708,52.56030649343035],[6.724678455366787,52.56015320103535],[6.724563999097112,52.55993947316401],[6.724482638724475,52.559816657246174],[6.724476996309411,52.55972642458137],[6.7244045328592,52.55961051921783],[6.72431685904353,52.5594740132435],[6.724187200150044,52.55918535921482],[6.724141818083876,52.55909774034554],[6.723997915899451,52.55887040277118],[6.7239807397451,52.558749461238484],[6.723893062961931,52.55861761990647],[6.723796029268533,52.55846413222926],[6.723756007122826,52.558353326032424],[6.723706352908658,52.55825558934988],[6.723667843151723,52.55817130845723],[6.723564643649938,52.55795446873661],[6.723516517033599,52.55787839452674],[6.723516013766679,52.55780680854941],[6.723501137511728,52.557777746137695],[6.723460265037461,52.55769771628459],[6.723407806368593,52.55764461988116],[6.723369036899452,52.55752642902006],[6.723330552248147,52.55748235231023],[6.72333632501357,52.5574480150189],[6.723304103960603,52.55739163473318],[6.7231985692572,52.557215385074265],[6.72319034706392,52.55713676726623],[6.723105068340363,52.55705176325084],[6.723023593138511,52.55693603935322],[6.723009536697341,52.556825470933674],[6.722899878392154,52.55668875294571],[6.722905618742343,52.55665917985081],[6.722827927432637,52.55648674212317],[6.722743779994929,52.55638497992843],[6.722731629019432,52.55634410314465],[6.722716552641091,52.55627870329612],[6.722687790303229,52.55621912003914],[6.722627281660736,52.55609442334147],[6.722563612006722,52.556006551225984],[6.722533326899507,52.555970201791574],[6.722520909153831,52.55595459405115],[6.722464648158299,52.55580456543869],[6.722439384866539,52.55576797975407],[6.72239870199584,52.555724277990016],[6.72235782816099,52.55560024114387],[6.722297730759111,52.55556845152519],[6.722283412542417,52.55550906522801],[6.722299187332029,52.55547434578993],[6.722267355874666,52.55542099889383],[6.722241309122051,52.55536875536999],[6.722217991922459,52.55532386053445],[6.72220136340096,52.555309926958245],[6.722112823417,52.555136505254325],[6.722112418845405,52.55508855733278],[6.722030958003608,52.554963358932206],[6.722009639753749,52.554936256338394],[6.721994050307015,52.55488892859676],[6.721905912641996,52.55478720173388],[6.721882669985676,52.55472574956044],[6.721717762857344,52.554542661027675],[6.721728583540575,52.55451526891038],[6.721445802529962,52.55398982938424],[6.721303208758505,52.553698953607615],[6.72123876248689,52.55356717278767],[6.721183567758614,52.553487725545445],[6.721188528766408,52.553442602532385],[6.721183919059128,52.55342232283918],[6.72112175173285,52.55334196521863],[6.721119751002267,52.553314825122165],[6.721118595493125,52.5532961245302],[6.721125697250144,52.553282283630956],[6.721126669323787,52.553280295274085],[6.721151787771714,52.553267330486875],[6.721123853721368,52.553211593515414],[6.721080019313844,52.553166929060744],[6.721004647227714,52.55306486927803],[6.720981714411202,52.553013588167424],[6.720959621737792,52.5529471793351],[6.720909957021095,52.55288963721974],[6.720712101604406,52.552670389180186],[6.720644889388995,52.552620630176136],[6.720585182475196,52.55257768084486],[6.720503021210774,52.55256215535424],[6.720395031601893,52.55256049224895],[6.720347334408093,52.55256311330354],[6.720294215546683,52.55257711151405],[6.720235717823429,52.552588293874315],[6.720175273405919,52.55257459149175],[6.720178813531493,52.552564385982166],[6.720131411417093,52.55248505749159],[6.720139066686474,52.552407079039085],[6.720199941094819,52.55219306738685],[6.720115190890318,52.552128449738625],[6.719926824127766,52.55198482012762],[6.719899961416905,52.55192542157849],[6.719896153661011,52.5519170153587],[6.719968232288353,52.551756574029454],[6.719996176124361,52.55166976594484],[6.719185133034814,52.551357962623975],[6.719163512788628,52.551350034924155],[6.719047949387033,52.551307927418534],[6.719043468867892,52.55130653058617],[6.718920242046376,52.55127089964588],[6.718185467224332,52.55097246219685],[6.71817842441764,52.5508905680541],[6.717937272816942,52.5508375359693],[6.717612888325189,52.55074306572308],[6.71727943177194,52.550646467171234],[6.716673157251657,52.5504645964115],[6.716235867185666,52.5503272906961],[6.716245920540167,52.550307628571275],[6.716214195237752,52.5502730913433],[6.716241064269818,52.55020226841358],[6.716254170538233,52.55012000468498],[6.716253077377132,52.549983925354766],[6.716241376189136,52.54974831171003],[6.716126896106152,52.549490416574336],[6.715991124754106,52.5492691802275],[6.715947260754764,52.549177226872104],[6.716197155127484,52.54863076328172],[6.716264264136152,52.54852482183532],[6.716029561075332,52.54855659911915],[6.713036483660145,52.54896179505426],[6.710994969116202,52.549244427380984],[6.706281809165295,52.54987649831609],[6.706222817425006,52.54988397610222],[6.701177259161549,52.55056651871468],[6.699423917294999,52.55080426104226],[6.693956669460621,52.551545409769275],[6.692557495189802,52.55173526026174],[6.689534950803603,52.5521444713932],[6.689362866359683,52.55217032226205],[6.687571595110255,52.55241064154253],[6.686917667594188,52.55249664944253],[6.686236151783448,52.55258628132566],[6.685334315726909,52.55271343634126],[6.685335926384472,52.55271655564253],[6.685350768150886,52.55273985255159],[6.685070666471459,52.552812305103366],[6.685033684640742,52.55275320746246],[6.685029512862731,52.55275675848193],[6.684766479136499,52.55279289099461],[6.684789697222244,52.55286031848569],[6.684546776001108,52.552893444239245],[6.684522507904271,52.552825399014715],[6.683975738576041,52.55289928054866],[6.683393482317737,52.55297795133591],[6.683266304873545,52.552995698802306],[6.683038325294556,52.55302551242314],[6.680879985273958,52.55331744684273],[6.681456876989957,52.55255632635711],[6.68312386997214,52.55035681881891],[6.683792464630953,52.549476129657066],[6.686795489953008,52.54550600131847],[6.686802316874435,52.54549701918481],[6.687011745373481,52.545220835620995],[6.688319294659226,52.543493049404866],[6.688449696549696,52.54332073486934],[6.6886077246331,52.54311243385385],[6.689025640599545,52.54260022014893],[6.690751632861527,52.540300878822705],[6.691465421980654,52.53935353690688],[6.693360604677967,52.53684159101317],[6.694300550794943,52.53559595435983],[6.69518113116907,52.534429341833025],[6.695945245587069,52.533416969458514],[6.696540503156194,52.532628546844066],[6.697522564513283,52.53132808311985],[6.698794644627807,52.529645278227676],[6.70089703839861,52.526863749560036],[6.701069187328485,52.52664411042464],[6.701595293462186,52.52594518522927],[6.702034682144927,52.52536528908157],[6.702902875521837,52.5242193878463],[6.70413667779791,52.5225898945477],[6.705258962749132,52.52110499907199],[6.705319829731886,52.521024425530825],[6.705332558452712,52.5210075657985],[6.704630774874422,52.51827051631822],[6.704137111383061,52.516353646410394],[6.703949794203036,52.51562629598092],[6.703942522817459,52.515593928816216],[6.703647617252731,52.514291044741796],[6.703052528890063,52.51164581951566],[6.702768595862727,52.510357857273746],[6.702396515404842,52.50869015243128],[6.702106316514549,52.50738784027033],[6.702098325051521,52.50735197549289],[6.701260081242348,52.50358575583366],[6.700342318776517,52.49945197608409],[6.700337318758576,52.499429443709566],[6.700115274309384,52.4984215479555],[6.699813634556645,52.49705223885139],[6.699780236531781,52.49689327185351],[6.698715668108465,52.49189122429722],[6.698194533846422,52.489454433575865],[6.697538081578933,52.48638447494388],[6.697524163997589,52.48632328307895],[6.697584701216357,52.48629824645658],[6.705235195581976,52.483218443049815],[6.707058789327965,52.48248419655678],[6.709098576677674,52.481662840053765],[6.710392264265701,52.48113221183713],[6.71176634326025,52.480568582330974],[6.712401401132125,52.480308083390234],[6.714943447804226,52.47926526841208],[6.716830483479923,52.4784910851384],[6.717045989483681,52.47840267539728],[6.717086138508409,52.47838619860473],[6.717321303248863,52.478289711944385],[6.717706766454953,52.47813155815436],[6.720459375637387,52.47717936998499],[6.721458097243089,52.477130569948166],[6.722060694997164,52.47710111671343],[6.723771485796251,52.47701749079783],[6.726634802931428,52.47573557013589],[6.726932961756696,52.47560207486842],[6.729911053865973,52.47426863831736],[6.731342976795437,52.473627450620405],[6.731709680712307,52.47346331502819],[6.733418741516665,52.472698305615395],[6.734942153732662,52.47201635916756],[6.735091833394899,52.47194934691646],[6.735113280522483,52.471939746014826],[6.735903080655429,52.47158602689924],[6.737120630282108,52.47104070491816],[6.738179667318517,52.470566361290544],[6.738180509405082,52.47056598315576],[6.738797898970953,52.470289442868356],[6.740550522609768,52.46950438031297],[6.742946546727928,52.46843171711248],[6.744837321364271,52.467585181866674],[6.744968941562715,52.46752724433983],[6.747196347095596,52.466547451186585],[6.747684922120667,52.46633252857306],[6.748103954061563,52.466148190358595],[6.74898395627268,52.46576105943217],[6.749061711749659,52.46572685460827],[6.749386990762117,52.46558374963592],[6.75095399721652,52.46489429601835],[6.752734516054536,52.46411084924469],[6.752776689617162,52.464102156772],[6.75287840893913,52.46408118296985],[6.755696413784499,52.463500008074284],[6.756960112270065,52.4632393661369],[6.764223717680104,52.4617403946919],[6.769490111241661,52.460653239080116],[6.769636744206313,52.460622963030474],[6.774586673511302,52.45960069769491],[6.777802663039403,52.45958783802395],[6.782139345534584,52.45957036932643],[6.785004685036869,52.45957170622378],[6.790534500103434,52.45957407918749],[6.793127138859846,52.45957008940761],[6.79561540834387,52.45956620473818],[6.797616591036336,52.45956304145272],[6.798626812587334,52.459561431334414],[6.802013237241909,52.45955596974472],[6.804336439744375,52.45955219170968],[6.804336498611292,52.45955219100575],[6.804478020028216,52.45955195465919],[6.804487692394535,52.45955209963925],[6.810273626346729,52.45963996082242],[6.810396645491867,52.45964182719861],[6.814438939413064,52.45970312398954],[6.815898875753652,52.45972522543255],[6.816039841633556,52.459727355014564],[6.81605144281066,52.45972752973572],[6.818301347482554,52.459761907268785],[6.821107589535375,52.45980347105085],[6.821629992399154,52.45981119796474],[6.822445426754904,52.45982326592468],[6.822445500316469,52.45982326503379],[6.827446652216987,52.45989731002092],[6.831788105349456,52.45996122856261],[6.834272790958003,52.45981343173528],[6.834732735040341,52.459786205610335],[6.836270256922568,52.459694804111344],[6.83630424176982,52.45969278857947],[6.836415131695912,52.45968594942312],[6.836496914990263,52.45968090432856],[6.836539299649126,52.459678363522386],[6.839331659733795,52.45951119147999],[6.841620804552122,52.45937444505772],[6.843853980598309,52.459240993957415],[6.84473194426038,52.459188518040555],[6.844733530482577,52.45918842663011],[6.84873707906771,52.459404525386894],[6.849908004658609,52.459467740291295],[6.85012797637145,52.45947961355206],[6.854297669418119,52.45970626462973],[6.854010053325212,52.45811577016717],[6.853669630050513,52.45623539547347],[6.853650626403296,52.4561304449117],[6.853412166876375,52.454813171611335],[6.852857951662522,52.45168863391469],[6.852812157393888,52.45143041553603],[6.852764470780664,52.45116302509962],[6.852742352962911,52.45103899387687],[6.852645432703475,52.45049563881036],[6.852541663147923,52.44991377083779],[6.853669296432616,52.45008924757108],[6.854320042504412,52.450190512271966],[6.857130067066815,52.45062771746878],[6.861816122386832,52.45135798008504],[6.864090314266233,52.45095527449418],[6.865251428462212,52.45074888645829],[6.866429659927196,52.450539945204376],[6.866955516845556,52.45044669160289],[6.867070399172045,52.45042631749352],[6.867871257367044,52.450284429394635],[6.869257836296686,52.4500387526215],[6.869794653030263,52.449943632347214],[6.870445797172851,52.449828858315435],[6.87295300821353,52.44938686612198],[6.874317094588392,52.44914637342873],[6.879685080646601,52.44819994612983],[6.88180068118199,52.44782654458887],[6.881985793129463,52.447793872202816],[6.88199098457729,52.44779295275456],[6.88495468434629,52.44727029244414],[6.88547258617161,52.44717895312828],[6.886409301812614,52.447013557483814],[6.88867808279023,52.446612934010886],[6.889062206883267,52.446545098909475],[6.891512313185263,52.44592567206893],[6.892078439740339,52.445782509112725],[6.892979990269163,52.44555451423739],[6.896691393302929,52.44461654048923],[6.897710209975707,52.44435878115379],[6.900416311818909,52.4436739616365],[6.902165938584027,52.443232066306145],[6.904572073805781,52.44262430780474],[6.906079668518556,52.44224300896999],[6.906222809015479,52.442215645436896],[6.907276488465436,52.44201417402218],[6.908588653125646,52.44176326121614],[6.911899136437635,52.4411303144486],[6.913380266191638,52.44084724048583],[6.913416154415399,52.44084036009893],[6.916588252400991,52.44023247066678],[6.917361857850369,52.44008418746798],[6.9199394862581,52.43959005165164],[6.922258186560748,52.43914547140062],[6.923308592065545,52.43894404222391],[6.923336105076415,52.43893876854252],[6.923521623600655,52.43890319380275],[6.923547047327542,52.438898324735604],[6.927098518451735,52.4382180025936],[6.927106087014319,52.43821655585978],[6.928209247364563,52.438005282251524],[6.928350648585086,52.43797815704534],[6.928378978334614,52.43797271875336],[6.930112151689489,52.437640454686395],[6.931382081578745,52.43739697410189],[6.935349236199389,52.43663626715365],[6.941657573406901,52.4354257449713],[6.942156085837297,52.435549361278255],[6.942089945362222,52.43558825251187],[6.942176387605254,52.435641590539404],[6.942306415935407,52.43556248914963],[6.94313180465334,52.43573752279782],[6.946841850960356,52.43652418832979],[6.946982671464149,52.43655404700985],[6.947300455477041,52.436621422853335],[6.947452839842166,52.43670141259913],[6.947601608044907,52.4367843622017],[6.948269881613595,52.437144327232616],[6.948640134043199,52.43734044830279],[6.948717802171403,52.43738072853956],[6.950215312689719,52.43817829537317],[6.951483486114038,52.43885823209729],[6.951939180775681,52.439101772851636],[6.953506368360183,52.439931772305975],[6.955791734381155,52.44114968902285],[6.956209216859162,52.44137620022263],[6.956461019358063,52.44151282235811],[6.956733451675191,52.44165747639778],[6.957150208203696,52.44188481195598],[6.957738717997337,52.44219912919459],[6.958242911379368,52.442472619425025],[6.959000729761215,52.442878754103646],[6.960947545139936,52.4439232728176],[6.961032062520422,52.443971427294954],[6.961061686581993,52.443988310455836],[6.961234302630295,52.443887175034014],[6.961347008424391,52.44382711473507],[6.961564444729964,52.44376688507879],[6.961591329318522,52.44374357907568],[6.961598696537918,52.443719121209014],[6.961624152345739,52.443695348819816],[6.961727924567922,52.4436517217497],[6.961785469340136,52.44362440368567],[6.962188252078752,52.44398312780478],[6.962023843080095,52.44414161272296],[6.962212236945208,52.44425064278433],[6.961953286901197,52.44462411389636],[6.962036870321772,52.444705467189394],[6.962275868618002,52.44496770575417],[6.963068211030531,52.445805920674836],[6.963302280124132,52.44606035747414],[6.964440732104393,52.44728025726708],[6.964842029422663,52.447700548518974],[6.965710356383461,52.44862416280627],[6.966372989203515,52.4493241447707],[6.966877654106924,52.44985748042699],[6.966936729015369,52.449920235441546],[6.967101313103174,52.45017305647488],[6.967132751204228,52.45021994593884],[6.967802504722997,52.45121872460535],[6.968766700532,52.452653298470864],[6.96900196069903,52.453002847072135],[6.969935378774699,52.454395853226],[6.97012530177907,52.45465557673588],[6.970594973025429,52.45527170288195],[6.970761850740546,52.455463741207474],[6.970860664097978,52.455579006822695],[6.971403172992311,52.45620816105848],[6.971853680606712,52.45673366061444],[6.972408629826642,52.45736835193519],[6.972495440001873,52.45746666191357],[6.972703955513697,52.45770446038584],[6.973443983848552,52.45857124513935],[6.973653382107315,52.45880833801041],[6.973764240922512,52.45893653685499],[6.973921192701039,52.45911815075404],[6.974106011995153,52.45933202102439],[6.974429200444346,52.45970364483488],[6.975037951660277,52.46087144605146],[6.975169186262184,52.461130339000626],[6.97522823547237,52.461235464066824],[6.975351635293254,52.46148020540129],[6.97565364105227,52.46207457643427],[6.975882152264788,52.462525372286166],[6.976041262473623,52.4628295093342],[6.976066468841198,52.46288552286984],[6.976064222244089,52.46292006138953],[6.97600902347738,52.46295742227771],[6.975999009126204,52.46296869378044],[6.97599646900838,52.46304338971931],[6.976070381848304,52.4631512454756],[6.976186772092356,52.463120417034304],[6.976707715564881,52.464109824556566],[6.976715613547277,52.46412482897973],[6.976770291769497,52.464224007318414],[6.976985871234587,52.46463869527589],[6.97713615092318,52.4649174387803],[6.977491223159822,52.46559543611788],[6.977536203913373,52.46559841009365],[6.977533838675552,52.465680762258316],[6.979241810016456,52.46637626891007],[6.97975725960597,52.466583477298585],[6.980820184969891,52.467017484166206],[6.98176021747718,52.4673951117398],[6.982009256378374,52.46749487259315],[6.982222016255923,52.46758566484919],[6.983005136618018,52.4679026877552],[6.983135543938104,52.4679553596316],[6.983202753758448,52.46798242806403],[6.984614239056081,52.468550891365375],[6.984813604540643,52.46863404821322],[6.984972259272544,52.46869521836209],[6.985563459119564,52.46893858583986],[6.98625890302293,52.469219771608564],[6.986853595175508,52.46945959789373],[6.987163980496134,52.4695818373157],[6.98762329812998,52.46976680315275],[6.989389782502141,52.468753309696105],[6.989413246152484,52.46873996756364],[6.989515435231625,52.468681838960165],[6.989525139942644,52.46867629641312],[6.990435518542801,52.46815613735062],[6.990926596372891,52.46787816244358],[6.991013965833416,52.46782870956846],[6.991188211634356,52.46772596309267],[6.991311630552558,52.46765514983929],[6.991607892106215,52.467485167919314],[6.991799013694041,52.46737625033252],[6.991850630791967,52.467338148527126],[6.992219031116512,52.467005063868605],[6.992271118867857,52.466961705958404],[6.992516912971134,52.46673724906866],[6.993007237174091,52.466302364472114],[6.993482333374864,52.46587354494611],[6.993907167055174,52.46548541455741],[6.99397010744843,52.46516006949882],[6.993987285439524,52.465056481753116],[6.994138222471994,52.46429433934089],[6.994185701125857,52.46408383069809],[6.994212579766224,52.46394226790413],[6.99425414160122,52.46374957462201],[6.994278349696557,52.463612695315724],[6.99432017805808,52.46341803876912],[6.994435470652052,52.46279624700799],[6.994498153472499,52.46249438398641],[6.994524582448761,52.462375722009995],[6.994573965572868,52.46212702918688],[6.994646618944016,52.4620415745778],[6.995042621540885,52.46149401591873],[6.995870069179374,52.460385720691356],[6.99619478800721,52.459943280377885],[6.996518014622077,52.459489937800655],[6.996674906525015,52.45927673730182],[6.996850799307127,52.45902607317584],[6.997013275579164,52.45880669280878],[6.997378238664819,52.45831391233037],[6.9976560944447,52.45792938199483],[6.997905225451978,52.45759504028377],[6.998574725284595,52.456685666181485],[6.998630173138428,52.45660620476453],[6.99869885669851,52.456521700275815],[6.998944391572619,52.45618238018703],[6.99963947873389,52.45524226861675],[7.000025607461613,52.454710924975416],[7.000063566409783,52.454645885479614],[7.000247913556241,52.454299260173656],[7.000491414891711,52.45385887415285],[7.00113866879153,52.45265616174091],[7.001252480770305,52.452451892000745],[7.001339256439783,52.45228209463054],[7.001453602143282,52.45208000167815],[7.001556066260165,52.451889001110814],[7.002481721378373,52.45015431195002],[7.002568249287513,52.44999892623133],[7.002706380613164,52.44974023653187],[7.002803901982414,52.44955759889155],[7.002893541106218,52.449400049068174],[7.003318123583548,52.44860892633561],[7.003640089529698,52.44801097306926],[7.004499068636676,52.44641855382046],[7.005063319028589,52.44535833706016],[7.005120217364943,52.4452359748267],[7.005217010767824,52.44496077609325],[7.005293642630142,52.4447545645097],[7.005737374892406,52.443495714820294],[7.005895284317076,52.4430380754628],[7.005970054229519,52.44282135365933],[7.006337638619574,52.441781884333686],[7.006451745290358,52.44145163262931],[7.006573398900896,52.441135920699864],[7.006677617866344,52.44084787241532],[7.006719069646175,52.440744624254855],[7.006736728400835,52.440696210756954],[7.007198934047051,52.43942867847084],[7.007916271506711,52.43749004798727],[7.007958930376527,52.437352058182874],[7.008734585883242,52.43512833640688],[7.008817503788856,52.43488225033932],[7.009026651935958,52.43429062361264],[7.009227069981429,52.43370291829807],[7.009323046121265,52.43343125891658],[7.009352707701455,52.433332503751394],[7.009431985622993,52.433114881262604],[7.009595045032192,52.43261961757435],[7.009921874222115,52.4316635974171],[7.010768177924613,52.42918790685512],[7.010782500798999,52.42913658984671],[7.010808620403924,52.42913144964726],[7.010932897403232,52.42905812128201],[7.012248832003219,52.4283364201902],[7.012826727355828,52.42801516760085],[7.014161067561259,52.42728099371671],[7.015109647571204,52.42676235218137],[7.015489930837671,52.426550223508094],[7.016455756215102,52.42601795798162],[7.017143830096493,52.42563920199429],[7.017506986388671,52.425443257908164],[7.017749659330955,52.4253069599407],[7.017961151212339,52.42519323087482],[7.019156740114627,52.42453887127321],[7.019748165262993,52.42421516796669],[7.019879028324691,52.42414297058895],[7.020806907474592,52.42363514729287],[7.021989819219525,52.422984160033046],[7.022231180465853,52.422610073683664],[7.022300025668029,52.4225043015876],[7.022653011617396,52.42196196163915],[7.02308561469822,52.421296529938644],[7.023314938651005,52.420943740660114],[7.023699370215061,52.42035225988607],[7.023747545706084,52.42027815332297],[7.024235897266025,52.419518100418635],[7.02450337387849,52.41910220810567],[7.024927856165503,52.418443290227025],[7.025779576846335,52.417109967919494],[7.026687507774667,52.415702797004236],[7.027328881249571,52.41470973486661],[7.028002410026152,52.413725517943206],[7.028083225333801,52.4136340755719],[7.028093709618524,52.41362859975684],[7.028125761611955,52.41359184859405],[7.028238979025944,52.413433060190386],[7.028589958545574,52.41294078826858],[7.02883308287538,52.41259103163432],[7.029354918667393,52.411850572172604],[7.029634312844331,52.41143748580686],[7.029925796936948,52.41102591189432],[7.029960044529333,52.41096562321294],[7.030068495881914,52.41080670118255],[7.030543695422368,52.410134804652635],[7.03092642151516,52.409585605728736],[7.031410022971149,52.40890078812104],[7.03175178566612,52.40840682686006],[7.03240459754424,52.407480606636646],[7.03250752394855,52.40733405598318],[7.032577884362333,52.40723395518916],[7.032689124431045,52.40717668565363],[7.0328072285141,52.40710043448568],[7.032990860370729,52.40696336880587],[7.033096195138706,52.40687260657636],[7.033149517744547,52.40682666799683],[7.033241015058725,52.40673812056555],[7.033291882266163,52.4066767457502],[7.033348253909183,52.406616759634666],[7.033456988758227,52.40645776727304],[7.033549312529894,52.40628948353271],[7.03364716829801,52.406111090903735],[7.033884686669747,52.405589699282224],[7.033958220463927,52.40542449907271],[7.034070371146755,52.405193473603674],[7.034463700894309,52.40435750487316],[7.034652032107952,52.40395724109288],[7.034673894785,52.4039183375024],[7.034721463629334,52.40384073757922],[7.034803349873918,52.40370939941573],[7.03485353789651,52.403643745498485],[7.034943839565556,52.40355058380519],[7.03498104968467,52.40351337229928],[7.035088392786877,52.403417267592275],[7.035207683072951,52.40332469103086],[7.035366800937354,52.4032028665742],[7.035379629511477,52.403192548219025],[7.035652999452461,52.402973560238785],[7.035868524098611,52.402803639821585],[7.035978868006196,52.40272467972045],[7.036040593283908,52.40268437573238],[7.036074070794275,52.40266261422157],[7.036195460949511,52.40261075510591],[7.036258561549345,52.402591214742685],[7.036322726064827,52.40258011832356],[7.036448808003411,52.40257257297957],[7.036612984594449,52.402576883825745],[7.036690304192147,52.40258200908304],[7.037246262744872,52.40263944206388],[7.037489717386445,52.402664742057624],[7.037569277839868,52.40267162435529],[7.037660050281086,52.40267609403056],[7.037739675007655,52.402684305702195],[7.037828279692175,52.402690549355164],[7.038048252692503,52.402693855539944],[7.038172154715178,52.40269564252098],[7.038312130605656,52.402695731000904],[7.038489750101866,52.402699896689874],[7.038581995746882,52.40270051574551],[7.038695061711454,52.402700997094655],[7.038885389147615,52.40269557332191],[7.038993583159868,52.40269034231722],[7.039228045273535,52.40268058967056],[7.039641026253648,52.402662870645216],[7.04005951964109,52.402644398995065],[7.040228296581184,52.40263491418061],[7.040300113396248,52.40263316530728],[7.040438347429153,52.40262754051724],[7.04097234698972,52.40260486374927],[7.041077403822506,52.402596708266174],[7.04136479282809,52.402568188740375],[7.041534514566745,52.40253955097536],[7.041711754039358,52.40249971524771],[7.041787033116125,52.402477349935076],[7.041929069336608,52.40242599636634],[7.042123984455308,52.402349875461404],[7.042314839996484,52.402265424121005],[7.04250727349666,52.4021622619537],[7.042616325230881,52.40210727864646],[7.042783358701641,52.40204728652106],[7.043051639318938,52.40196338722242],[7.043318000100617,52.401882804200305],[7.043982032848621,52.40167647100391],[7.044088229290017,52.40164424189871],[7.044131489285368,52.40163110555873],[7.044346530923765,52.40156164782458],[7.044541086607204,52.40150362309976],[7.044924064648578,52.4013839459344],[7.045490107444348,52.4012083707676],[7.045897730519379,52.401081747164554],[7.045984606069412,52.401053643349144],[7.046135960746367,52.401004527198985],[7.046499200204795,52.40089327465793],[7.046704122418475,52.400837905600554],[7.046898901434417,52.40080404560778],[7.047046941481613,52.4007912370375],[7.047544876038072,52.400787239089716],[7.047673909551474,52.40078764966255],[7.047891439779977,52.40078834689168],[7.047984371157382,52.400787753414946],[7.048168980954104,52.40078646690844],[7.048753158058539,52.400789658714416],[7.048832729451173,52.40078981838629],[7.04932194577096,52.400788865761484],[7.049626915005541,52.400789464782235],[7.049758705630458,52.4007897175346],[7.049861000214909,52.40078995291563],[7.049917512873882,52.40079010308316],[7.049990104488063,52.40079028805732],[7.050202748433191,52.40079000696223],[7.050244610247904,52.40078940993309],[7.050347727316228,52.400782585785045],[7.050421795595032,52.40077474041643],[7.050592516964707,52.400753482546506],[7.050655782514888,52.400741698758935],[7.050726851381941,52.400722470106196],[7.050781480799986,52.40071356723291],[7.050892170277097,52.40067398757233],[7.050960787199757,52.40063565530481],[7.051120543921621,52.400495066676854],[7.051184482745594,52.40044292970376],[7.051228066061259,52.400402495061726],[7.051387638728606,52.40023123754988],[7.051582810736022,52.40001244797563],[7.051655922547147,52.39992482736066],[7.052026154444452,52.400039303347434],[7.052888915596039,52.400297714632686],[7.053051100726007,52.40034810013445],[7.053278521572119,52.400437928777436],[7.053414174163865,52.40049672355556],[7.053761675295436,52.400687616454846],[7.053800624041704,52.400685764724486],[7.053849279365215,52.400676288373994],[7.053930670862644,52.40070529217968],[7.054077191137501,52.40074978423288],[7.054214777089668,52.40079507611006],[7.054400436075864,52.40084586637286],[7.054887758271652,52.4009475828919],[7.055280685774862,52.40102933209472],[7.055319732998861,52.401033600102124],[7.055346952607253,52.401016874234735],[7.055969938422864,52.400578276619804],[7.05610735919828,52.400518125495196],[7.057636455578005,52.39987449905987],[7.058108171782537,52.39967440375441],[7.058252944585057,52.39961490139508],[7.058728289537211,52.39941024874762],[7.05873598183377,52.39938861106186],[7.058777898759748,52.39920998828386],[7.05879077926764,52.39914202790582],[7.058808716013232,52.39907448155475],[7.059004583894723,52.398198119071125],[7.05899807670744,52.398167045408876],[7.058943710171175,52.398039887975756],[7.058922570423572,52.3979750418049],[7.058924622323909,52.39792194064326],[7.058924825293913,52.39771043106161],[7.058917776032636,52.39755829859982],[7.058934172114276,52.397493560615615],[7.059083612049842,52.39718298598739],[7.059094106556382,52.39711335129777],[7.059077464446308,52.39698973321005],[7.059000591361499,52.396511101468896],[7.058983967260231,52.396459980958156],[7.058937034293244,52.39638761551973],[7.058915395422837,52.39634690341095],[7.058843907235244,52.39629399575576],[7.058824686097218,52.39628463973387],[7.058770211395633,52.39625812675411],[7.058694099578309,52.39622559987204],[7.058517752336154,52.396191440812274],[7.058811041725882,52.39595031747565],[7.058838469084141,52.39592480534809],[7.058936225926653,52.395833901447446],[7.058992624027137,52.395775888762124],[7.059444598787747,52.39528302740307],[7.059455870738972,52.39527333061998],[7.059697095914515,52.395014539516126],[7.059853895748562,52.39484632044226],[7.06042307281068,52.39422756813731],[7.060735058608553,52.393904742252005],[7.061229093193557,52.39337105215662],[7.062715333544729,52.39174641216913],[7.063980394075358,52.39039573044806],[7.064021509339009,52.39032830417798],[7.064173527866975,52.390021425070344],[7.064306190753773,52.38974318090764],[7.064804429197682,52.38872293637569],[7.065081597193244,52.38814479412109],[7.06557380270714,52.38714269053758],[7.06615989046914,52.38593383089339],[7.066592888101106,52.385040684499685],[7.066639537818991,52.38495128984092],[7.06667374102214,52.38486762715833],[7.06685681377159,52.38449188613905],[7.067416503980802,52.383358498671335],[7.068028116846528,52.38210676435439],[7.068271519433913,52.381592152103515],[7.068836401176058,52.380441072844164],[7.069009190517617,52.38008135794433],[7.069068047331725,52.379966681739276],[7.069227350780036,52.37962522647049],[7.069323299871572,52.37943438739257],[7.069949453390905,52.378131258612676],[7.070190052179655,52.3776453032354],[7.070556995732378,52.37689093781291],[7.070561417832577,52.37688206545005],[7.070892393840206,52.376218219804535],[7.071156105955922,52.375666931873134],[7.071578814744716,52.37479812690463],[7.071635841157941,52.374673901639866],[7.072153551417609,52.37361132672716],[7.072183272967345,52.37319310953715],[7.072204791931271,52.37280253420208],[7.072229272363686,52.37255208629928],[7.072265331356587,52.3719756844743],[7.072281647729282,52.371688595639924],[7.072225794719526,52.37041237563468],[7.072198032490422,52.36985505868344],[7.072246607351109,52.36830586610648],[7.072258601590269,52.36800824924262],[7.072318099482454,52.367867798507305],[7.072452996851796,52.36754938291401],[7.072716860494697,52.36693283451434],[7.072763362189296,52.36680482100389],[7.072740114585693,52.36644014260544],[7.072670665384369,52.365461929895496],[7.072633546573607,52.364913087861396],[7.072583434614637,52.364198551637216],[7.072523649936763,52.36333378938829],[7.072461271337735,52.36242118700964],[7.072396013696261,52.3615277996136],[7.072315503129968,52.360287813614256],[7.072253456633395,52.3594250515234],[7.072215948581702,52.35887997187795],[7.072168023220119,52.35818357097216],[7.072136509865966,52.357735930621395],[7.072112617545792,52.35741776233873],[7.072085937637794,52.356986791141374],[7.072050130319508,52.35652037026777],[7.072062878025395,52.35616763763471],[7.072086061805479,52.35568383622795],[7.072090840583962,52.355521331609935],[7.072112180040882,52.355029187364146],[7.07214057066642,52.35430916287285],[7.072188067341492,52.35325776323747],[7.072209846656753,52.35289317964284],[7.072236520023083,52.352229263455946],[7.072255519199092,52.351879237112875],[7.072114031230499,52.351890799125506],[7.07144176460716,52.35130375272882],[7.071101348678725,52.35100976773689],[7.070659109818975,52.35061768342834],[7.070468374400489,52.35044702106428],[7.070015419287621,52.350049989967374],[7.06987172979103,52.349924044382064],[7.06978949202173,52.349851969338204],[7.069002898018852,52.3491601383506],[7.068799250741021,52.3489815486293],[7.068602665647435,52.348809150656194],[7.068033606789078,52.34830912705104],[7.067477425041195,52.34782010051837],[7.066801968779017,52.347228102760326],[7.066379115361101,52.346857526696496],[7.065945597736377,52.34647453345128],[7.065174573141892,52.345798799288936],[7.064476524192632,52.34518720685797],[7.064217002681118,52.34496348443198],[7.063729221118461,52.34453520047459],[7.063633364042081,52.34445175412553],[7.063266938076251,52.34413279302662],[7.062807355955038,52.343726282398706],[7.062244213777791,52.34323408546556],[7.061486414298757,52.34256547590813],[7.061269374145489,52.34236989362619],[7.061231678810562,52.342335917240604],[7.060852801958073,52.34200889093409],[7.060325858648759,52.34154994564194],[7.059789034026831,52.34107775280158],[7.059408342139394,52.34074288199894],[7.058558151717843,52.3399974434933],[7.058064049886519,52.33956363483665],[7.057560313366023,52.339121573255404],[7.057281689478963,52.33887583035514],[7.057226772027772,52.33883837438121],[7.056569852606965,52.338251946100186],[7.056230834553205,52.33795389059391],[7.056292081507705,52.33741407312511],[7.056282382128986,52.33686045144278],[7.056257694125291,52.33545023536572],[7.05614767731084,52.334955812452414],[7.056111885898757,52.334891414800225],[7.055886801510288,52.33448649480598],[7.054918068674744,52.3331772947151],[7.05496371590102,52.33273400885958],[7.054964833650606,52.33272314300203],[7.055492805130397,52.332168741927326],[7.055468295426814,52.332149482024164],[7.054934268915463,52.33172973492296],[7.054801945934293,52.33160480687487],[7.054586226004258,52.331401121700374],[7.054273661656892,52.33100670908593],[7.053382140846194,52.330113691602264],[7.053302258020682,52.33002290153344],[7.053292785591998,52.330012121972175],[7.053287237336739,52.330005817747704],[7.052363103385638,52.328955382190294],[7.052236204550616,52.32881113787197],[7.05213453239419,52.32869555571315],[7.052109733461363,52.328672406821234],[7.050734144054421,52.3273883719439],[7.050534138890839,52.32720167303946],[7.050353215733633,52.32703278292066],[7.050337321601202,52.327019738245404],[7.050002152938244,52.32672034387643],[7.049527490415948,52.32629634034269],[7.048026471348138,52.32493245124881],[7.047584958221935,52.324354257476976],[7.04717983153544,52.32374444834298],[7.047077844051697,52.32345732354413],[7.047014538998624,52.32327914536715],[7.046984059388715,52.323193365833085],[7.046955622218918,52.32282906907866],[7.047236453646647,52.32129218077539],[7.047260454325689,52.32126316794128],[7.047471862589226,52.321008588877376],[7.047636088899687,52.320826137034295],[7.047788221862678,52.32043413421287],[7.048110103111559,52.31994868503476],[7.047668544753583,52.319517017891805],[7.04755009697825,52.318679709152],[7.047479295164777,52.31844958824139],[7.046658920821702,52.31747785504899],[7.04609787738555,52.316811260590804],[7.045786806890852,52.31644337762082],[7.045810576013902,52.31645140422469],[7.04613472840983,52.31655185139719],[7.046360105674684,52.31662168194933],[7.046426694909327,52.31653283199427],[7.046492110165891,52.31644554464461],[7.046650451007027,52.31623429378409],[7.046982523967699,52.315791232490696],[7.047071786123158,52.31567212943802],[7.047326297842583,52.315332544264],[7.047420811402223,52.31520643637181],[7.047109673847788,52.31497016127709],[7.046238938055466,52.31468996110805],[7.045480526084766,52.3144636431957],[7.044958696164192,52.3143186826304],[7.044792668092502,52.314272558221184],[7.04446198251157,52.31418674379789],[7.044434389520823,52.31417957957414],[7.043719318174237,52.31399401177867],[7.043417133013767,52.31391559784246],[7.043287731575855,52.31388202867398],[7.043439386916246,52.313661643729155],[7.043529670273925,52.31353045634093],[7.043570310504779,52.31347139350853],[7.043291151214466,52.31340108864179],[7.043200743646353,52.31337831766213],[7.042831921340634,52.31328549994428],[7.042508096582477,52.31321542324644],[7.040798687886321,52.31281514024975],[7.039205288174449,52.31249663251982],[7.038683358707033,52.31238014210103],[7.038820442425388,52.3123156435105],[7.039373559125043,52.312055405200226],[7.040318348187334,52.31161086360498],[7.040371853823357,52.31158569145335],[7.041087368983105,52.31124901200203],[7.041312961405043,52.31114285619763],[7.041237586410456,52.31105257944152],[7.040920592256858,52.31067703611446],[7.040538244485368,52.31022410912989],[7.040127615063873,52.30920417112893],[7.040108995839365,52.309157057803155],[7.040029321145417,52.308958968689005],[7.039493002188973,52.30762678908743],[7.039003969036509,52.3071827196722],[7.038649424158367,52.3068609118911],[7.038509945080227,52.30673431325719],[7.038257346956543,52.30650570163676],[7.038174807472742,52.30643100264978],[7.037079449462794,52.30543960113475],[7.033836942653961,52.30250451717046],[7.033627184338942,52.30220279138884],[7.033242749939236,52.301673308647445],[7.032580726468493,52.30073066608152],[7.031654076857097,52.299411139496605],[7.03152302065726,52.29922451089288],[7.030280140123052,52.29745453167641],[7.029720712625973,52.29665779103526],[7.02964825091541,52.296553784904084],[7.026755802870518,52.29240165459122],[7.026453583310072,52.29196777077396],[7.02645218165542,52.291937325434624],[7.026349259688105,52.28970758714236],[7.026346726258993,52.28965281441952],[7.026265593917665,52.28789471225277],[7.026252528728389,52.2876116130422],[7.026239267373018,52.28732438145054],[7.027001834815732,52.286015672192256],[7.027582682627127,52.28498476914626],[7.028622751740861,52.28315409539515],[7.028633183648899,52.28313572910148],[7.028640216105551,52.28312334299682],[7.028777854983753,52.28288106521836],[7.0289538895956,52.282571211321994],[7.029227811101503,52.2820890467373],[7.02954704350179,52.28152710057696],[7.02954759362993,52.28152612206437],[7.029614423042619,52.28017972308964],[7.028808845431542,52.2793873249804],[7.028807184940558,52.27938641315894],[7.027991081702694,52.27893938244648],[7.027984170867244,52.27893559501983],[7.027820306783882,52.27860052753169],[7.027519866065601,52.27798616044144],[7.027537625011321,52.27791258789298],[7.027787211436279,52.27687819818921],[7.027805741998679,52.27679934708232],[7.027826729757842,52.27671004324103],[7.028335138104181,52.27454589967766],[7.028359167603669,52.27445727255396],[7.028392834067886,52.27433316543151],[7.028560318420585,52.27371553600989],[7.028578066645649,52.273650098713496],[7.028584297107085,52.273627143229156],[7.028639334979307,52.273583004981134],[7.028719720478072,52.27351852223181],[7.028762643725621,52.27349276467827],[7.028977647475123,52.27336377348099],[7.029336629631689,52.2731976054533],[7.03175100041334,52.271839450512196],[7.032062771593678,52.27166405180493],[7.03222796741436,52.27141552420644],[7.032231020933808,52.271410924084485],[7.032296316416589,52.271312705074656],[7.032687192689771,52.2707246702218],[7.032706042312626,52.27069631593049],[7.033479643378399,52.26953245496198],[7.033528555261565,52.26945886961238],[7.035228615956659,52.266883722500836],[7.036233226606517,52.26542860780896],[7.036242145684487,52.265420213060956],[7.038344046669169,52.26225562618552],[7.038885677195367,52.261439189084896],[7.039243746498528,52.26089940307687],[7.039536129469917,52.260458519047745],[7.039536184656211,52.26045842836388],[7.039808338074734,52.26004731177017],[7.040311907158972,52.2592882127481],[7.041597442107171,52.25734783167385],[7.041997315318228,52.25674434514064],[7.042159858323018,52.256498724689955],[7.042278303283956,52.25631991088213],[7.042323101482959,52.256252285129655],[7.042394805871379,52.25614403674455],[7.042560346054628,52.25603850945938],[7.042662397309779,52.25597346116163],[7.044221216774282,52.25497980280931],[7.046043983479343,52.2538177930685],[7.048499370201613,52.25225129575827],[7.048602718694587,52.252185360917856],[7.049954445489296,52.2513229056394],[7.050056101590449,52.251258045027335],[7.051158203196947,52.25055595521255],[7.053285713736998,52.24920053231973],[7.054505796065175,52.24842317594569],[7.056550264312227,52.24712146135722],[7.056568993572153,52.247109690137044],[7.057117632920747,52.24676019968685],[7.06177184726245,52.243795914408324],[7.063702422702157,52.242565426041445],[7.064386542155189,52.24212937703937],[7.064852529050597,52.24183235289338],[7.065789588756568,52.24123503528455],[7.065438535783923,52.240727454193845],[7.065378721027074,52.24064095356799],[7.06522728151481,52.24042198261438],[7.064277231167786,52.23904817000255],[7.063957957217207,52.23858680665943],[7.063868867358885,52.238458056936466],[7.063800495618732,52.23835880411336],[7.063434166788195,52.23782696480565],[7.063422766308366,52.23781040622196],[7.063006023066645,52.23720713178462],[7.06268530445251,52.23674285505515],[7.061537314255774,52.235079527879805],[7.061520744308114,52.23505550926132],[7.061477562459742,52.23499273676772],[7.061340768391193,52.23479386056111],[7.061283627598972,52.23471106858948],[7.060890959741279,52.234588805004734],[7.057020061722638,52.233383198286035],[7.056917356064965,52.23335120991425],[7.056593858621187,52.23325033780071],[7.05575477515988,52.232988694030254],[7.055555794110393,52.232926646834215],[7.055166033987221,52.23280220183807],[7.054380534216904,52.232551405848646],[7.054303673839246,52.23252686213467],[7.054237970399122,52.232505855542726],[7.053331602193699,52.23221929109194],[7.051579381982662,52.231657550112544],[7.049248400923445,52.230914092920095],[7.047776621883172,52.23043153663286],[7.046810950000297,52.23011722439865],[7.0466954628703,52.2300738105337],[7.046199054235553,52.229910751420675],[7.044828047899959,52.229458062129495],[7.042747664354021,52.22877255551407],[7.041235639375479,52.2282769990686],[7.040310808131389,52.22797387440917],[7.039225638159974,52.22761602924312],[7.039094283660936,52.22757424145196],[7.039024872336977,52.22756416459511],[7.038549089942867,52.22749507544703],[7.038480647154413,52.227485056640816],[7.037987111043674,52.22741245593699],[7.037945764378396,52.22740636389745],[7.037442406636172,52.22733216332579],[7.035767097315473,52.227086937534544],[7.035471900604778,52.22704370287446],[7.034686540810818,52.22692850720797],[7.034464068350822,52.226895869563684],[7.033651189907416,52.22677662820851],[7.032366749871013,52.22658895469171],[7.031615858951266,52.22647911952059],[7.030497781372268,52.22631702064943],[7.029762483265087,52.22620660613536],[7.026397855639742,52.225714454982686],[7.024901612636525,52.225770944419885],[7.023767309446006,52.22581375919163],[7.022356926252578,52.22586697643658],[7.020449902773584,52.2259389235439],[7.020207032065411,52.225730852364094],[7.020080779242515,52.22559721815913],[7.019702810031218,52.225313525787755],[7.019412065665509,52.225148994485],[7.019383063503617,52.22513730469401],[7.019337034369959,52.22511874868202],[7.019297319822754,52.22510273925156],[7.01917116329137,52.22505187724278],[7.019003007653469,52.225156303313796],[7.018968958943503,52.22517745858901],[7.018713577073514,52.22531793280032],[7.018545530346096,52.22540980747972],[7.018405233564554,52.22548280729489],[7.018266580520782,52.22555074119025],[7.018122507411241,52.22562097914861],[7.01801785966643,52.22566217592781],[7.01797977828518,52.225677165928396],[7.017854002298792,52.225720227556366],[7.017695128570893,52.22577327489659],[7.01755254075738,52.22581655939474],[7.017361933507938,52.22587408974726],[7.01724059161041,52.22590675168808],[7.017171541958012,52.22592393091489],[7.017107237583517,52.22593957929717],[7.016995331142857,52.22596767894111],[7.016856961976737,52.22599467843248],[7.016794948648545,52.22600733755816],[7.016752291589849,52.22601451557233],[7.016575247138833,52.226044304932564],[7.016302402691578,52.22608673365689],[7.015991863434896,52.22613675649154],[7.015726796087193,52.22618172847697],[7.015438459081477,52.226247678430795],[7.015209383734961,52.226314590361675],[7.01493413836167,52.22639953291839],[7.014727671131771,52.22647025831155],[7.014402987715255,52.22659480523693],[7.014142630572617,52.22671470720343],[7.013788576131435,52.22688926957828],[7.013656779332886,52.22696487029711],[7.013338867630904,52.227162773231065],[7.013082024999086,52.22734741093484],[7.013008369536943,52.227303109739616],[7.012959290904301,52.22727359021349],[7.012939008848995,52.22726136527192],[7.012785210015567,52.22716865394928],[7.012560202019444,52.227132288472326],[7.012416097100737,52.22704644594661],[7.012652668425864,52.22680613882423],[7.012219660092494,52.22687439619593],[7.011906564483576,52.22688712840047],[7.0118118462858,52.226890975816886],[7.011787259941521,52.22688313379979],[7.011724988888522,52.226969839339766],[7.011220964468899,52.22759146809116],[7.01019949316192,52.227728849156314],[7.009613213538433,52.22780866056848],[7.009392178129306,52.227838746929514],[7.009378106811351,52.22784066620605],[7.009305681351981,52.227850533836744],[7.00827847375564,52.227977836962225],[7.008249268929488,52.227981456142764],[7.008208866325756,52.22798671231145],[7.007379247486153,52.22809461918022],[7.007172098260162,52.228121391434016],[7.007049522245895,52.22813659328336],[7.006718630457732,52.22817911289774],[7.006473096882008,52.2282111208987],[7.006452999172627,52.22821398547647],[7.006416603915573,52.2282191501354],[7.006369111178885,52.22822589625493],[7.006315162713765,52.22823345009369],[7.006175821016473,52.22825298910814],[7.005851204416023,52.2282946111348],[7.005529880307683,52.228335809622635],[7.003476181074829,52.22858968363701],[7.002240742078029,52.22830378331239],[6.997064830781681,52.22707489085943],[6.996999183430063,52.22705929952377],[6.996849897825927,52.22704269107646],[6.995453007360648,52.226999467843015],[6.995445679947712,52.226999244050916],[6.995354468325817,52.22699645929657],[6.995058778578174,52.22698744308932],[6.994574344801317,52.22696847382103],[6.994539584753888,52.22697230909674],[6.993717152819309,52.2271097317868],[6.993465030535973,52.22714624310662],[6.993376381547836,52.22715809255562],[6.9933089121329,52.227166624416725],[6.993147874193319,52.22718698256263],[6.993008826548924,52.22720174668574],[6.992866034553315,52.22721375685455],[6.992762501184889,52.22721961461595],[6.992576492928795,52.22722992886448],[6.992202667905236,52.22725115638461],[6.992157750384815,52.22725343001865],[6.992080603391971,52.227252186459445],[6.991964794730431,52.227248079395046],[6.991900352706692,52.22724273471261],[6.991819127710419,52.227230291753095],[6.99104730491986,52.22712068169259],[6.990683546591535,52.22706901682157],[6.990493328303917,52.22706363564005],[6.989957932512446,52.22700423124719],[6.989673424111891,52.22695280880692],[6.98957292458947,52.22693313780406],[6.989385075748119,52.22689635883565],[6.989114291005229,52.226843067808964],[6.989073138943128,52.22674005093819],[6.989011145653111,52.226591165527964],[6.988858944595513,52.22630051037146],[6.988796697620135,52.226278818540315],[6.988602440120207,52.22626278281246],[6.988421463936482,52.22620493697302],[6.987996298594056,52.22603941069484],[6.987975520292145,52.22602742195785],[6.987861104962136,52.22596140038439],[6.987789352695788,52.225919997410074],[6.98764160469686,52.22584088957122],[6.987514103400229,52.225762639724856],[6.987390595033365,52.225694466668465],[6.987253287777783,52.225624790480396],[6.987151860932782,52.225558016854755],[6.98712137659159,52.225525214354064],[6.98711843610827,52.22551996845987],[6.987095963579401,52.22547996481068],[6.987120354593802,52.225441375605925],[6.987087473633706,52.225437605183885],[6.986873373985851,52.22541308892026],[6.986342903025871,52.22530914931627],[6.986218367938546,52.22526406459081],[6.986020964515871,52.225237720530316],[6.985730544724627,52.22519896285688],[6.985605577637108,52.22524334527642],[6.985373840237326,52.22532565171582],[6.985314521996772,52.225346725680204],[6.985293106319483,52.225312056027725],[6.985253601138858,52.22524811023912],[6.985250648373023,52.22524333193035],[6.985004612602298,52.225021047545255],[6.984969155467502,52.22498381714513],[6.984962518849492,52.22496448998681],[6.984962208331904,52.224952574313605],[6.984961758487151,52.22493595911843],[6.984972778529448,52.2249008144951],[6.985017851926953,52.22485318119307],[6.985072551061123,52.22479763284745],[6.985089677439725,52.224767044045386],[6.985097720281908,52.22472603368854],[6.985082111365354,52.22467858344525],[6.985065146334123,52.224620265470165],[6.985049841350265,52.22458209714411],[6.985067908236198,52.224532033679026],[6.985085649410196,52.22448594789017],[6.985154669297141,52.22444931699907],[6.985198512641042,52.22442534228389],[6.985221140694163,52.22440979007325],[6.985243790219366,52.224395244373845],[6.985282089939158,52.224355073902046],[6.985318758170983,52.224315941334055],[6.985352375215927,52.224283969645434],[6.985395634534736,52.22424373200353],[6.985461288727536,52.22417248359843],[6.985473617598347,52.22414690381228],[6.98547744626043,52.22411532635016],[6.985473422041054,52.224049300183516],[6.985473542997158,52.22400659018233],[6.985473968780672,52.22391691568507],[6.98548422810475,52.2238801721988],[6.985503633744587,52.22382093935842],[6.985506878881387,52.22377310808737],[6.985479486746158,52.22373870815443],[6.985429492459042,52.22368346227963],[6.985405274710903,52.22365430509835],[6.985397189165766,52.22360439782028],[6.985390770429559,52.2235638169397],[6.985382684595686,52.22351390067469],[6.985352908103281,52.2234779059206],[6.985325602623419,52.223454885317],[6.985258393964383,52.223427334852865],[6.98513381039554,52.223415797899456],[6.985090674100024,52.22340397646409],[6.985062248475976,52.223396234841665],[6.984988229671389,52.22336367947005],[6.984962578025625,52.22334064534518],[6.984930116420319,52.22331261542984],[6.98487238971183,52.2232727289103],[6.984807126237984,52.22325327822642],[6.984729074474374,52.22324619908302],[6.984692623277779,52.223245676556296],[6.984629962094335,52.2232432703321],[6.984568333382927,52.22323292149466],[6.984516675054087,52.22322345351795],[6.984442401982212,52.223183790661494],[6.984433516089377,52.2231666243786],[6.984393202431365,52.22310412754105],[6.984411938673565,52.22302661062535],[6.984460389705409,52.222937293206535],[6.984459441776551,52.22291086835436],[6.984460147367118,52.2228844301552],[6.984441181625749,52.22286332807996],[6.984409012382865,52.2228434294168],[6.984324102114194,52.22282099913093],[6.984185128642535,52.22277712344743],[6.984086262400918,52.222743887853404],[6.983874640466558,52.2226737657833],[6.983801954035343,52.22265054952383],[6.983459132698694,52.22255899056006],[6.983312026149962,52.222519295997635],[6.983056705341924,52.22245340396324],[6.982934681717682,52.22242048945161],[6.982874756305735,52.22240575688859],[6.982814332821247,52.222388558940715],[6.982763746561791,52.22236281401763],[6.982701245401544,52.22232806994991],[6.982647354258191,52.222293011695136],[6.982566477986567,52.22223196139621],[6.982459078952866,52.222136166050454],[6.982414852364649,52.222096716189846],[6.982203329332906,52.22193357712365],[6.982071610298523,52.221844869997916],[6.981944517048642,52.22176515254139],[6.981904089134752,52.2217397913933],[6.981822844326413,52.22169005412211],[6.981766629896864,52.22164607352872],[6.981700205753464,52.22159410441163],[6.981667747418083,52.22156607357786],[6.981618087901568,52.22151997273574],[6.981533715722674,52.22144419047952],[6.981527938650974,52.22143900076631],[6.981481499199498,52.22139452840609],[6.981404632723648,52.221328461036414],[6.981357397758177,52.2212760708095],[6.981328182795558,52.22124377108728],[6.981280554889003,52.22118162369519],[6.981230912758811,52.22108896669334],[6.981126975798972,52.22080922850951],[6.981100137295221,52.22073699297091],[6.981112782859126,52.22072880371978],[6.981073696990123,52.22068528370399],[6.98105380362041,52.22065945624254],[6.980895310616749,52.22041956704417],[6.980838607704691,52.220280889875745],[6.980820858187786,52.22020003664624],[6.980822435855753,52.22019913440169],[6.980793172525392,52.22007711259988],[6.980746328136354,52.21988179529997],[6.980737428071174,52.219836770979896],[6.980711751514764,52.219747071337075],[6.980665539570091,52.21956695544731],[6.980643984501088,52.219492625891434],[6.980605295574788,52.21938284890031],[6.980596865764755,52.21936732121364],[6.98059318103012,52.21935146883141],[6.980454649246971,52.21912481159697],[6.980409530962557,52.21906725949323],[6.980184407583894,52.218774116844074],[6.979997618306795,52.21853089569944],[6.979710318300492,52.2182211158345],[6.979706631211103,52.218214189837745],[6.979699226940459,52.218136468974386],[6.979699012720784,52.21813416160343],[6.979789972890047,52.21808012206598],[6.979937696274481,52.218009072844666],[6.979989515044696,52.21796020873842],[6.979996693265101,52.21795344181556],[6.9799979571683,52.21789671098721],[6.979977302505023,52.217854047583806],[6.979815106821041,52.21756051358897],[6.979768784705207,52.21746390983026],[6.979658784708885,52.21721302699452],[6.979611573167559,52.217047325073004],[6.979572914257967,52.216852301397026],[6.979564374246943,52.2166728095159],[6.979568910758672,52.21661467716418],[6.979575735206901,52.21643634435456],[6.979567472815895,52.21638986405005],[6.979553436258263,52.2163357937265],[6.979486244466802,52.21607704287328],[6.979477048601981,52.21597947969773],[6.979491186408961,52.2159041740288],[6.979552112366285,52.21572736774996],[6.979640000661282,52.21542465247299],[6.979645160661647,52.215406882819615],[6.979662934365582,52.21527529071511],[6.979676006116382,52.215135806475736],[6.979683232233138,52.21504894381093],[6.97969330465937,52.21491930736934],[6.979693213202038,52.214863952230104],[6.979691602110002,52.21485573073445],[6.979695639693055,52.21484627338676],[6.979692545106158,52.21465536341887],[6.979663074621538,52.2145469989052],[6.979607381114687,52.214406761314805],[6.979557630863802,52.21429725901531],[6.979522285635893,52.214215717054365],[6.979427288936408,52.21406576171843],[6.979350556993745,52.2139620798189],[6.979131805241325,52.21365957224857],[6.979047500364386,52.21351511774484],[6.978993593035193,52.21341207171891],[6.978949064353514,52.21327580037827],[6.978855055873256,52.21300228167132],[6.978839095547795,52.212974584971235],[6.978722183758688,52.2126395642329],[6.978709640884498,52.21260716497116],[6.978674741843684,52.212512636078635],[6.978654340742543,52.21247040950735],[6.978633342964192,52.212426635811134],[6.978599651219044,52.21236670861981],[6.978597072838156,52.21236212285766],[6.978545491372013,52.21227495640964],[6.978511926553878,52.21222103236784],[6.978493545364257,52.2121915074465],[6.978460234405,52.21214878067903],[6.978385669714571,52.21206136666917],[6.978290989219047,52.211956074246196],[6.97819946986283,52.21185937795801],[6.978155565986546,52.21181300037783],[6.978014704928148,52.211667608481946],[6.97784338095476,52.211496899422066],[6.977838130881848,52.211491666449064],[6.977698756516164,52.21136326199134],[6.977676574002963,52.211342822483964],[6.977620784598779,52.21129632621594],[6.977566258254897,52.21125364238426],[6.977506112935539,52.2112101442635],[6.977436011547914,52.21116034387775],[6.977376781454574,52.21111952117718],[6.97731926419062,52.211077075295194],[6.977217920689782,52.21100676847936],[6.97712436468702,52.21094062660968],[6.977015158156481,52.210858685462],[6.976917627907777,52.21078818321157],[6.976830164090739,52.21072419741734],[6.976814198314671,52.210710640743294],[6.976770540814905,52.210673554366814],[6.976704369729078,52.21061820814351],[6.976668471858931,52.21058491859089],[6.976644166891406,52.21056238598194],[6.976573751685366,52.21049307344832],[6.97651316947571,52.21042743099093],[6.976446745361327,52.21036005128824],[6.976394493209786,52.210298197968],[6.976366929258536,52.210261829612264],[6.976350973988683,52.21024076664819],[6.976303984923172,52.210174257877135],[6.976292445144039,52.21015514007246],[6.976234420677141,52.21005903407846],[6.97619533541034,52.209991340107024],[6.976125209841614,52.209851340169344],[6.976123290830775,52.20984635894538],[6.976080535673107,52.20973566437904],[6.976025241492333,52.209595464723954],[6.975976569397663,52.209485838562266],[6.976080523168484,52.20940631278183],[6.976011523869851,52.20928472576911],[6.97597152866679,52.20920871985381],[6.975387789147899,52.20816765400694],[6.975325956813784,52.20805736866622],[6.975276255119166,52.2079692496076],[6.975179758415171,52.20779818617961],[6.975115360310204,52.20768403390183],[6.974959840001262,52.2074083283089],[6.97486190859471,52.20723471298301],[6.974846371845954,52.207238068237345],[6.974787073924569,52.20712533039338],[6.974633385775642,52.206833176201975],[6.974822292366943,52.20678002517002],[6.974641691562042,52.206495514377146],[6.974574797852602,52.206372415014606],[6.974355720365769,52.20596925842174],[6.974271526552473,52.20581433549824],[6.974196688487439,52.20561110380755],[6.974084945174666,52.205402794880534],[6.973886665107513,52.205225493945655],[6.973763658182234,52.20509113871869],[6.97347992050528,52.20483908880138],[6.97327170141021,52.204654126710615],[6.973128923498515,52.204564354044365],[6.973044818102813,52.20451981829562],[6.972584862148697,52.204233394585856],[6.972496685268934,52.2041566414171],[6.972492066083897,52.20412551041023],[6.972512839179998,52.204096645237215],[6.972497353516426,52.20408085221716],[6.972459132735989,52.2040757922296],[6.972380636784738,52.204094285909235],[6.972360983391472,52.20407896234335],[6.971973425413378,52.20377676740241],[6.97166493768577,52.20352927958928],[6.971624303923046,52.203496672398515],[6.971623806956203,52.20349627456772],[6.971473578164197,52.20337574853897],[6.971443894129108,52.20335193869045],[6.971356995852231,52.20329169891624],[6.971229476214409,52.20320329231969],[6.971145983360909,52.2031454068602],[6.97106169796131,52.20308785558727],[6.970903219949049,52.20297966508532],[6.970853948834114,52.20288925515844],[6.970355899715897,52.20197543709859],[6.969392664851316,52.20093390433858],[6.968760649056789,52.19995300832312],[6.96762527375248,52.19851742802777],[6.967247229913999,52.19803940273284],[6.967396690573901,52.1978936617497],[6.966478512114011,52.19733387106712],[6.965533936512602,52.1967579400429],[6.964760022124532,52.19628601927301],[6.964685340791824,52.19624047977292],[6.964148236517477,52.19537389403651],[6.962391709224798,52.19429858702397],[6.962356817493567,52.19401580747654],[6.962303352320389,52.19358868219469],[6.962261210144167,52.19324682246491],[6.962244183062517,52.193108568848324],[6.962176563709277,52.19259874161054],[6.962150820255371,52.19240463660822],[6.962130820718784,52.19225385550809],[6.962478808215733,52.19137885239673],[6.962021285246932,52.19089054535352],[6.960754509339029,52.18984154264564],[6.960491111642605,52.189623413666524],[6.960365259925837,52.18951919713117],[6.960131728764527,52.189305514437876],[6.959457960297979,52.18868898861499],[6.958883955317377,52.188229576461104],[6.95865083766462,52.1880429882443],[6.957383271998183,52.187028417015966],[6.956450253783973,52.18556432972821],[6.95446051783799,52.18407894933211],[6.95472530567478,52.1839524573142],[6.952898532457781,52.18244403072026],[6.951757035344365,52.18148691345939],[6.951616611522024,52.18136916338495],[6.951519264551185,52.181287536491375],[6.951245366213532,52.181057867451784],[6.950369728860832,52.181129162133715],[6.949879788806212,52.18077509021171],[6.949505531102822,52.1805046135111],[6.947370858687073,52.18031531207781],[6.946739444837258,52.180259305957094],[6.943982496668546,52.18005282694642],[6.941047221321606,52.17981411363792],[6.940911426242346,52.17979967640143],[6.94084628833114,52.179792758499865],[6.940593727964875,52.17975437379715],[6.940481972762639,52.17977013830279],[6.940424714765546,52.179759385839176],[6.940315759952534,52.17975479744575],[6.940044350508303,52.17964123927299],[6.939776754358234,52.17961195023285],[6.939662733510195,52.17957524610393],[6.939266078146305,52.17961489431511],[6.939154116941215,52.17961214224366],[6.938072581528215,52.1794887025596],[6.938047667481627,52.179485856837125],[6.937883605501336,52.17946713126921],[6.937652155049179,52.17940491081946],[6.93752244131011,52.17934998278095],[6.937416434498278,52.17927874209807],[6.937297716722234,52.179178363128166],[6.937213200107771,52.17912671526947],[6.937208822630812,52.17912404002108],[6.937133823399208,52.17907821799146],[6.936656554525476,52.17890200421527],[6.936279937471674,52.178748108822134],[6.936008100047331,52.178710147351985],[6.935509355528064,52.17867741083014],[6.935279628103905,52.17868986442963],[6.934937355983809,52.178657409287766],[6.934245916804437,52.17857074245887],[6.93374157663489,52.178448268570875],[6.933675183750109,52.17844807819093],[6.933578811496725,52.17844779531882],[6.93319460705565,52.1784120193891],[6.932414771283775,52.17839886426334],[6.932082960181767,52.17841076097225],[6.93178566661097,52.17840179906419],[6.931568319540075,52.17841704984578],[6.931388460042122,52.17841275215582],[6.930917055562765,52.17835899892872],[6.930911785488471,52.17835840267246],[6.930563604552139,52.178339676011106],[6.930531082040215,52.17833792606278],[6.930109125628271,52.17831523701565],[6.928876655811949,52.178270402185504],[6.927670211412986,52.17826773411954],[6.927641213051437,52.17826640481937],[6.926061461377942,52.17819096264895],[6.926050447332735,52.17819044110309],[6.926042611423802,52.17819006691106],[6.924365451984201,52.17810955318545],[6.924347290233653,52.178108684140206],[6.923997675005809,52.17809188949581],[6.923978897871428,52.178090983482015],[6.922390401588844,52.17801470723288],[6.920924135739507,52.1779442817656],[6.920393446435391,52.17791872867113],[6.920358119032597,52.17791703034799],[6.920313285881166,52.177914871299045],[6.920285970014242,52.17791355426891],[6.920220119030792,52.17791038279779],[6.920191968482154,52.17790903167309],[6.918660072868669,52.17783525987752],[6.918537274959841,52.177826318489714],[6.918503207608516,52.17782383921129],[6.917096674154675,52.1777214969344],[6.917055409344997,52.17771849028273],[6.915831354982608,52.1776294167771],[6.915817559364744,52.177628363987345],[6.915787945062202,52.177626104885],[6.915629039052571,52.17761396972273],[6.915515768025243,52.17760010149058],[6.915492890472499,52.17759729655817],[6.915048630025908,52.17754284088782],[6.915041420455014,52.177541963399534],[6.914207702248356,52.17743975378719],[6.91419326795728,52.177437980970396],[6.913531016040093,52.177356802281246],[6.912164324374175,52.177184299910124],[6.912128535927938,52.177179782501526],[6.911852023985119,52.177144882372026],[6.911833927029087,52.17714075649449],[6.911808166742784,52.17713487780841],[6.911392084536183,52.177039988029456],[6.910500475794417,52.17674586908796],[6.910240665507526,52.176669857335916],[6.910229647638767,52.17666663762023],[6.909545189801746,52.176466408750834],[6.909551929926218,52.17644969159201],[6.90934547999401,52.17636003574751],[6.909125375313927,52.17629140183311],[6.909122730023432,52.17629058200644],[6.908060894015016,52.175959501585886],[6.90810406873496,52.17546345610903],[6.907162755646352,52.17526236292224],[6.906912247587117,52.17516670839782],[6.906772604437786,52.17508363955021],[6.906765948398634,52.17507968010809],[6.906746293575091,52.175067986563526],[6.906678390017881,52.175010430955716],[6.906203420255525,52.17432167717606],[6.906187327621483,52.17429779314502],[6.906183523722343,52.174292142936444],[6.90601554466683,52.174042821906355],[6.905880853249425,52.173870164149896],[6.905839203734162,52.17379348248871],[6.905812707885459,52.17366374878389],[6.905923559878182,52.173179417837964],[6.905967825186954,52.17317408361943],[6.905980771929823,52.17297039975442],[6.905959689993286,52.17266908101389],[6.90592065522602,52.17258328651427],[6.905819113972801,52.17245658654129],[6.905719867693241,52.17236248797383],[6.905655793648987,52.172301736237664],[6.905597370329748,52.17220082858751],[6.905595708684359,52.1721979734083],[6.905587599549118,52.1721839556472],[6.905642755218858,52.17198323428105],[6.905834298871039,52.17164888435725],[6.905877729964059,52.17154611713595],[6.905876589286769,52.17151691667151],[6.905832769417209,52.17151811006985],[6.905828296151035,52.17145973735959],[6.905739822052186,52.17104692016083],[6.905715329768569,52.17099400095193],[6.905613252849059,52.170773297791385],[6.905588856466419,52.17065791984715],[6.90559163617897,52.170584981013135],[6.90565259009934,52.17038715141235],[6.905753907448871,52.170211185418175],[6.905874193823784,52.17008783208075],[6.905877287621748,52.17008466398811],[6.905894183164283,52.170067348839346],[6.905720146317013,52.16991524351502],[6.905169698238571,52.169644110338965],[6.904798871812355,52.16942453656322],[6.904786667261853,52.16941731336134],[6.904088740648248,52.16900404637331],[6.903806516932813,52.16884162550832],[6.903804235326127,52.16884030647979],[6.903476421125272,52.16864577699931],[6.903323995491956,52.16855659404777],[6.902939500490884,52.16832831777912],[6.902936516547553,52.16832654927937],[6.901660573519035,52.167568818369794],[6.901650085538483,52.167562606585626],[6.901501075058651,52.16747433033305],[6.900835087125615,52.16705786577865],[6.899966544908488,52.1665910487388],[6.899896804075549,52.16664246292726],[6.899517376452178,52.16644750589645],[6.899496860069367,52.166436963853634],[6.898839955261018,52.16609942346101],[6.89881696948841,52.16608760949663],[6.898792287794003,52.16607492729733],[6.898731537059022,52.166043533247816],[6.898708579045012,52.16603167395163],[6.898587345739493,52.16596902612943],[6.898564343067601,52.165957140419124],[6.898506360064085,52.16592717603311],[6.898483431741621,52.16591532529378],[6.898256053913437,52.16579782718649],[6.898102832545139,52.165718643917714],[6.898080633435049,52.16570717029012],[6.896661525691416,52.16497379225847],[6.895700402040432,52.16444417955901],[6.895657711361484,52.16442064330437],[6.894029021254902,52.16352314556774],[6.893619848273881,52.16329766282672],[6.893582328472744,52.163276981303206],[6.892894410269827,52.162897869601515],[6.892718289075593,52.16280310572708],[6.892703818503486,52.162795325968744],[6.892630601008776,52.16275592571827],[6.891229878002274,52.16200220284647],[6.891221704926948,52.16199780345068],[6.890733559760926,52.1617351405668],[6.890718241036826,52.16172689494208],[6.88980259704238,52.161235363125336],[6.889790852037348,52.161229058452044],[6.889750344454747,52.16120592376411],[6.889716230075445,52.1611864291882],[6.889492109831151,52.161042282772875],[6.888972513122064,52.16077128478136],[6.888755548148138,52.16065285408418],[6.888343319424085,52.16042488430266],[6.88782787999817,52.16013452850667],[6.887466060647046,52.159929672915446],[6.887005206809435,52.15967183452829],[6.886410965555504,52.159340755577325],[6.885982924079458,52.15910341416769],[6.885693714969817,52.158940635117496],[6.885210012793562,52.158669883906455],[6.884567583952965,52.158313204268424],[6.884381162157945,52.1582091921656],[6.883968969556003,52.15797920234685],[6.883476504540634,52.15770714406043],[6.883104051293128,52.15749691787375],[6.882359948641179,52.157080074468155],[6.882268183841475,52.157025711221614],[6.882235036865477,52.1570017435723],[6.882208015915346,52.15698220189959],[6.881981162046259,52.156860225703184],[6.881881361975303,52.15680679999134],[6.881605022866644,52.15664686838087],[6.881417478990452,52.156538173487895],[6.881359155075871,52.15650603876332],[6.881196854289172,52.156416593327],[6.881193221114587,52.15641458980329],[6.880485597620931,52.15602460900653],[6.880458260304222,52.15600954760556],[6.881236506559013,52.15599242735438],[6.881673816163969,52.155982805233954],[6.881960409666196,52.155976494207685],[6.88193876467844,52.1559193451791],[6.881932768432802,52.155903519174736],[6.881474549072117,52.154693618929976],[6.881016868325408,52.153485085379614],[6.881004523928443,52.15345248488086],[6.880888601072696,52.1531463767594],[6.880816123953356,52.1529549875586],[6.880736176437091,52.15274385357649],[6.880492752145336,52.15210634372696],[6.880411542374197,52.15189364341447],[6.880397142237462,52.15185591805408],[6.880085874375337,52.15103966993045],[6.880076903681721,52.15101614173314],[6.879962963368538,52.15071692933184],[6.879818681182144,52.15033801554463],[6.879760959021488,52.15018641414917],[6.879697839314653,52.15002066002006],[6.879605867167112,52.149779113992466],[6.878889301001487,52.14789710966898],[6.878856558696114,52.1478111100869],[6.878757691496783,52.14755142038673],[6.878614151219097,52.147174410445956],[6.878427845931379,52.14668507195132],[6.878390636451362,52.14658733480948],[6.878234835823898,52.146158935006056],[6.87680161001748,52.14640144885997],[6.876998297900858,52.146916547691305],[6.876632562860458,52.146975768833],[6.876702652208604,52.14727551134488],[6.87675226491556,52.14737545646399],[6.875832249886774,52.1474747921769],[6.874345089401651,52.14764657289882],[6.873259047573773,52.14777863560109],[6.872397405746176,52.147887123833826],[6.871981713973209,52.1479358669173],[6.871737664370207,52.14797293705421],[6.871581053563407,52.14800162471332],[6.871081005447033,52.14807549972442],[6.871011635336965,52.14819531841031],[6.870871086870181,52.14821798695512],[6.872151484583227,52.15038012651585],[6.872168879618829,52.1504018052786],[6.872042325767277,52.15042144931004],[6.871952569715747,52.15037132278911],[6.870554887160083,52.149818059940394],[6.868884967729328,52.14914841122054],[6.865465910392333,52.14812283562496],[6.865286086294375,52.148078157048616],[6.864899317726509,52.14801965746522],[6.863955253652583,52.14792725433973],[6.863961668834619,52.147933888975125],[6.863678001301186,52.14789683685168],[6.863081715480511,52.14782610437336],[6.862901505484073,52.147803225952934],[6.862539017602484,52.147757224414704],[6.86239699857944,52.14774389035063],[6.862321012965628,52.147736759653796],[6.862299464730811,52.1477386742421],[6.862264711657431,52.14773763477636],[6.862199982468209,52.14773198121464],[6.861925975328155,52.147697545782414],[6.861574196940137,52.1476545446225],[6.861337394116103,52.14762411029906],[6.861166821279129,52.147604066200124],[6.860946967736862,52.14757801274111],[6.860829071060916,52.14756457305799],[6.860805889038506,52.14756258847733],[6.86050722631594,52.147523513821184],[6.860237600657213,52.14749203116145],[6.859972304366869,52.147459334194096],[6.859959711244684,52.14745763972001],[6.859796399419901,52.14743575003143],[6.85959053904818,52.147410813749055],[6.859422388272649,52.147390170538436],[6.859252791361051,52.14737130706805],[6.859140715962071,52.14736022013327],[6.859018978080922,52.1473485705195],[6.858867850436318,52.147340316972155],[6.858817133431218,52.14733549347116],[6.858718626743704,52.14732998091064],[6.858612209232781,52.14732340739222],[6.858601769577358,52.147322764608965],[6.8583802519313,52.147320162055294],[6.858125467352521,52.147320365196656],[6.858051642860321,52.14732068381229],[6.858017854900265,52.14732053895395],[6.857948280763943,52.14731282208011],[6.857913513323782,52.147310001638886],[6.85743871671221,52.14731204830295],[6.857366014180506,52.14731138168152],[6.85706469451583,52.14730861201748],[6.856641490429658,52.14730657848348],[6.85632640581978,52.14730912026259],[6.856322506315687,52.14730917786373],[6.856227036513915,52.14731068192924],[6.856197111870298,52.14731115360307],[6.856177812176139,52.14731124124164],[6.85614113372209,52.147311176774636],[6.856019465898646,52.14731094850382],[6.855795361323751,52.14731053973285],[6.855596332702683,52.1473101778437],[6.855292307219436,52.14730821041177],[6.85507516316827,52.1473079562831],[6.854998553710618,52.14730712111505],[6.85498733500515,52.1473072247902],[6.854659635452341,52.147305622322826],[6.85434020861616,52.14730364634498],[6.854084642596341,52.147300515505364],[6.853842754594481,52.14729875111271],[6.853722833915409,52.14730010781187],[6.853636778635216,52.147299964503745],[6.853271052832844,52.14730441340776],[6.852608718015202,52.147300906682474],[6.852450368582034,52.147300069856755],[6.851648647387026,52.147052048086806],[6.851645635227926,52.147074693369106],[6.850948100803149,52.14686884476759],[6.850866316955764,52.14686391811071],[6.850475729072962,52.14684041387242],[6.850476509004212,52.14682676753573],[6.850428849343502,52.14682912986388],[6.850383332104496,52.146864303164236],[6.850335394779072,52.14727133637102],[6.850170402448679,52.147374961678175],[6.848896181363245,52.1481752076287],[6.848844530925159,52.14820567409032],[6.848682353529195,52.14830131588499],[6.847215702151136,52.14916625911069],[6.84690333023404,52.14936067954404],[6.846553574542738,52.14958633185989],[6.846214646272376,52.14979508421328],[6.845920475498687,52.149978840314944],[6.845645234843123,52.15015883773374],[6.845358226228035,52.15033563601275],[6.845023752680365,52.15054824005511],[6.844862973658236,52.150614725157666],[6.844791733607388,52.15065853816352],[6.844339635504027,52.15093341501472],[6.844275657824475,52.15097276923365],[6.843724434058563,52.151311756855115],[6.843697548180676,52.15132840435532],[6.843191400193032,52.15164192357531],[6.84313574228448,52.15167431566399],[6.843135512623742,52.15167444434821],[6.84310893770545,52.15169078220156],[6.843004500990525,52.15175501389011],[6.842872052518789,52.15183948438618],[6.842676455773187,52.151964646190216],[6.842476583023968,52.15209136159586],[6.842249614581095,52.15223015086216],[6.842212465331293,52.15225610260731],[6.841785994074482,52.152519227865476],[6.841484458906097,52.152703665594714],[6.841231138310149,52.152860477556374],[6.841220632218252,52.15286455334323],[6.841021977698353,52.1528629574532],[6.840347999746417,52.15276421232631],[6.840305021845318,52.15275842252139],[6.840248122648948,52.15275370315644],[6.840052134503265,52.152726264839984],[6.839348193967143,52.15261872317413],[6.838644003033358,52.15251595370075],[6.838423888662279,52.15247994630696],[6.838167463844194,52.152440924419864],[6.837984296757159,52.152414898032575],[6.83796313668235,52.1524108705062],[6.83794197630573,52.152406834026465],[6.837903633852368,52.152400213245855],[6.83766102311602,52.15236488568155],[6.837526832356118,52.15234261593484],[6.837501005416603,52.1523366321456],[6.837291553537631,52.15230894134283],[6.837274484634049,52.152306688216655],[6.83727571728049,52.15230324817087],[6.837229642218073,52.15229790883034],[6.836867069213419,52.152241896364195],[6.836571258250321,52.152195067178795],[6.836338592866475,52.15216846902039],[6.836330854269686,52.15216732364678],[6.833806384480728,52.15179335657725],[6.833414923401374,52.15173535972764],[6.833297303172678,52.15171518320665],[6.83328281231002,52.15171310462454],[6.83322622328822,52.151706616215115],[6.832947436170711,52.15166629315725],[6.832115842142679,52.15154668196522],[6.831719451179888,52.15148251940998],[6.831564381879181,52.15146019303771],[6.831498583469508,52.15145630659679],[6.831342241097794,52.15144611293508],[6.830847565707728,52.1514470820723],[6.829388396521187,52.151434598247675],[6.829160281673937,52.15142962124017],[6.829046745430628,52.15142449238027],[6.828921436656541,52.15141230698983],[6.828754681905369,52.15138330601109],[6.828591269071111,52.15134013296356],[6.828447460248812,52.151296279623516],[6.828351494213916,52.15126866915928],[6.82824683203595,52.15126183099088],[6.828126339350847,52.15125395464351],[6.828125726486898,52.151274799038035],[6.828155030079718,52.15129845104788],[6.828244200002827,52.15143372710352],[6.82821798211217,52.151483002538086],[6.82813292499246,52.151514002812426],[6.828118617618058,52.15151578667232],[6.828118400040187,52.151523529006255],[6.828079946035664,52.15158081042979],[6.828046622590081,52.1516304423013],[6.828045088924342,52.151632726302225],[6.827910310357478,52.15164996025206],[6.827800973826117,52.15166719785871],[6.827725408539822,52.15166722204067],[6.827710917036452,52.1516678305456],[6.827497340085642,52.1516768396513],[6.826038014799626,52.151728121324396],[6.825965132393127,52.15173068257076],[6.825227140821785,52.15175661099954],[6.824497447513034,52.151784761844596],[6.822190896110619,52.151872747296494],[6.821587168403088,52.15189546387187],[6.821219236154874,52.15190930542529],[6.820625408073964,52.15192951456546],[6.819938295183083,52.151958629760955],[6.819927977598502,52.15195906973674],[6.819164417155521,52.15198216056633],[6.817851921455337,52.15202372816868],[6.817677075218598,52.152043018555325],[6.817357374385498,52.15208038981964],[6.816582072786981,52.152186396376905],[6.814774608031635,52.152454090374235],[6.812793802273375,52.15272495782847],[6.812773318738378,52.152727857230644],[6.812167939928776,52.15281374808132],[6.811451244349914,52.152911048109374],[6.81144220946792,52.15291414162259],[6.8113869735809,52.15293304768359],[6.81138546533565,52.15293524127036],[6.811319396177072,52.15292745452302],[6.811281491479973,52.15292298622239],[6.811149456420068,52.15290743834942],[6.810565526131263,52.15284538835803],[6.810171274736962,52.15280182972318],[6.809238893195626,52.15269884288742],[6.808979127514883,52.15267019847865],[6.807920768666265,52.152553492470744],[6.807822302077143,52.152543406332136],[6.807820353950641,52.15254601868945],[6.806908699089382,52.15377198667394],[6.806908502576443,52.15377224073541],[6.806263967253579,52.1546389546359],[6.805782772379819,52.155295700583714],[6.805913979411609,52.15530435185242],[6.805870570565841,52.155363069653646],[6.805842294440461,52.15540131694141],[6.805673421280522,52.15562973044197],[6.805581768274769,52.15575371413677],[6.805255895564486,52.15618981214423],[6.804773329583522,52.15690604207585],[6.801064369295036,52.15664728225324],[6.800868215768462,52.156690462290925],[6.79670722473256,52.161610204564944],[6.796720516913144,52.16163397469023],[6.796764857555904,52.16171750187362],[6.79673357379696,52.16171644648502],[6.796639224629337,52.161713250271994],[6.795057871763611,52.161661150347435],[6.79503401058243,52.16165815413385],[6.791490218718166,52.16148939198082],[6.791203332683996,52.16151936125232],[6.791245071570374,52.16156003443768],[6.788762949318849,52.16347779542346],[6.788389851235531,52.163765555374795],[6.788340393595768,52.16378067827568],[6.788228451204485,52.16383177160245],[6.788000827599574,52.16364317854889],[6.787897319266125,52.163567191598],[6.787831585913462,52.163539737485266],[6.787722397491368,52.16351001274577],[6.786620773024627,52.163265461548846],[6.786282177496674,52.16319029370372],[6.78587448976281,52.16309979087286],[6.785459870899348,52.16300775074499],[6.785434259072993,52.16300206763958],[6.784056485646825,52.16269584699147],[6.783946820121629,52.1626722100653],[6.783939180222796,52.16267049373545],[6.783201896587925,52.16250496937511],[6.78272005817577,52.162396788879896],[6.782670068928647,52.16238652154247],[6.782459234939388,52.16233789498766],[6.781659957124949,52.16215970973502],[6.780996775774531,52.1620051880958],[6.780216320746341,52.16182182668911],[6.780207966001015,52.16181967809814],[6.779970802849517,52.161758557672336],[6.779556483867583,52.16166548665891],[6.779350657192849,52.161619249528115],[6.779179701771771,52.161582713166986],[6.778710112930031,52.16148235419541],[6.778514915438116,52.161448341169496],[6.778513460483078,52.16144808863391],[6.778225350762158,52.161383754350396],[6.777398809414064,52.16119917411958],[6.777055245453878,52.161123957690634],[6.776676450515411,52.161041020209304],[6.775633121392453,52.160804876301206],[6.774393323168729,52.16052425515645],[6.774315367143167,52.160506609598265],[6.774277301805714,52.16049799630729],[6.774276124306318,52.16049773151265],[6.774252837544202,52.160492459119965],[6.774009550216672,52.16043742149959],[6.773950995356933,52.160424176966124],[6.773823123459723,52.16039659181371],[6.773618087027842,52.160353292869104],[6.773611878262418,52.16035198154779],[6.773424762183874,52.16031246271925],[6.773248802142418,52.160276354225346],[6.773151246000064,52.16025633144517],[6.773081388775228,52.16024199677059],[6.772527626139169,52.160115311646024],[6.772495389099825,52.16011267896471],[6.7723549558786,52.16006883473605],[6.772326197274399,52.16009208560494],[6.772249502780094,52.16015409396917],[6.772117011395547,52.1602638961297],[6.771808073053647,52.16052673206452],[6.771727089177287,52.16059563107813],[6.771579587902038,52.1607196767071],[6.77141719632634,52.16086176712021],[6.771179390185772,52.161061553159094],[6.770992395624329,52.161221514258685],[6.770658723405601,52.161503064797486],[6.770518982290051,52.16162160658395],[6.770344664823038,52.16176300832643],[6.770333351941331,52.16176773442151],[6.770320109365961,52.161766793035866],[6.7699674466516,52.16169533024095],[6.769836993938575,52.161665155205604],[6.769817575537905,52.16166066360898],[6.769768022186962,52.16165254307919],[6.769753000223846,52.16164936628071],[6.769267252607817,52.16154666030832],[6.769261088998167,52.16154539317415],[6.769177313288539,52.16152813601786],[6.769077636184285,52.161508089799106],[6.768934456727226,52.16147659764431],[6.768848949359247,52.16145910888614],[6.7687734013456,52.1614432113054],[6.768689864357432,52.16142562744833],[6.768627752594586,52.161410318482936],[6.768327366313658,52.16134884560405],[6.768097882232643,52.16130285695811],[6.767746866889895,52.16122676588494],[6.767674275256441,52.16121427584408],[6.767658726219993,52.16121011610943],[6.767516052007903,52.16118024338826],[6.767491938001724,52.161175617569405],[6.767439318428653,52.16116473637542],[6.766207774332543,52.160910001184305],[6.766152683859206,52.160898599979426],[6.766154331183667,52.16089562333904],[6.765119546239801,52.16068048320357],[6.765049777596304,52.16066705965509],[6.764774810375968,52.16060909218732],[6.764675342728478,52.16058812289462],[6.764063219884518,52.16045989549527],[6.763986989289857,52.160444029791705],[6.763000687860864,52.16023868758232],[6.76299412677468,52.1602373168824],[6.762531830677209,52.16014141118634],[6.762012005575408,52.1600335717119],[6.761911455513404,52.16001296331584],[6.762451104336909,52.15950225147475],[6.762892422010745,52.15908208916465],[6.762995334159425,52.15898408561137],[6.763041436303614,52.158941101507295],[6.763210344588741,52.158783629349095],[6.76313377335946,52.1587670390126],[6.76253518263087,52.15863731559242],[6.762668198228723,52.15840454800474],[6.762728867435721,52.15829838090007],[6.762087890998421,52.1581494096694],[6.762328854599901,52.157937928485964],[6.762425528184433,52.15785426378206],[6.762292876091377,52.1578190543082],[6.762332595607857,52.1577382919707],[6.762376612818002,52.157412905460475],[6.762503958262935,52.15638375610566],[6.762515123500626,52.156295560176915],[6.762291143618157,52.15614355130193],[6.761823574652292,52.155826223348576],[6.761389542042806,52.15607793225366],[6.761099560174328,52.155871587358746],[6.761029354650179,52.15582138334955],[6.760504611671865,52.15544613465668],[6.760647780902137,52.155343772015414],[6.760274798613771,52.15512274180343],[6.760120530343086,52.15509903590999],[6.760106530483408,52.155091935748935],[6.760064397181836,52.15506343653816],[6.759959603046251,52.15500186790896],[6.759778224685848,52.154906393975914],[6.759688015724111,52.15484337892585],[6.759595226491126,52.15477723867032],[6.759439281134547,52.15464858629454],[6.759349474680346,52.15457344005181],[6.759308149188452,52.1545388636043],[6.759297383503524,52.15452809412503],[6.75910250295898,52.15400955379743],[6.759123651534478,52.15390410891559],[6.759117681946323,52.15387678871646],[6.75911628061147,52.15387684098411],[6.75886851676546,52.152687999619],[6.758857546468516,52.15263537946291],[6.758838620339725,52.15254453150438],[6.758821751673317,52.15246356556491],[6.758806751885172,52.15239157591774],[6.758426770380985,52.15043568915215],[6.759149667291833,52.150365795734174],[6.759773096348187,52.150305523388475],[6.759839011645981,52.15016386165695],[6.760022489187729,52.15014674999713],[6.759880210446948,52.15009610795732],[6.75973675424992,52.150057057386114],[6.759704930395522,52.15002958867486],[6.759620567870332,52.14995678837484],[6.75955330768826,52.149828092753744],[6.759514199072748,52.149617907322806],[6.759527984626018,52.1494641508759],[6.759564064691322,52.149357300519746],[6.759779897774319,52.149321879456224],[6.759771295570469,52.14929447309284],[6.759853665236341,52.149277819365096],[6.759776241702069,52.149030092217096],[6.759714733947953,52.14879051264005],[6.759656742770467,52.148586857315465],[6.759598855255461,52.148463050561446],[6.759516729155643,52.14830987096948],[6.759390513851836,52.14815129856012],[6.759247395408812,52.148022262990835],[6.75911583605781,52.14792507586821],[6.758956214811389,52.14781433592174],[6.758744722466021,52.14770789360777],[6.758451156168718,52.14756579296959],[6.758124056200947,52.147429358084544],[6.757840080797782,52.147316331897365],[6.757516044786203,52.14721008094831],[6.757241546011537,52.14712007207316],[6.75613092496789,52.14677772347011],[6.75504037309561,52.14645412559263],[6.754305387757127,52.146231037393115],[6.753988435045926,52.14615372039397],[6.753918675101193,52.14612827194702],[6.753534708444637,52.14600632674216],[6.752996986501153,52.145859005423475],[6.752330888205638,52.14566279340846],[6.75172093085132,52.1454751417275],[6.751142365041845,52.14529423418603],[6.750494065367096,52.14506789043977],[6.749960352237026,52.14486931643828],[6.749582833381311,52.144728128358246],[6.749227674515099,52.14457698155363],[6.748758553276402,52.1443721907323],[6.748405578681959,52.14420863839157],[6.748166651548522,52.14408128892864],[6.747920276962118,52.143931022018315],[6.747791534926444,52.1438545816015],[6.747699798278088,52.1437876020437],[6.747628876267859,52.14372714205044],[6.747582367365005,52.14369396074212],[6.747521878629249,52.14365079205939],[6.747520653867108,52.14364991628285],[6.747482147289483,52.14361227394458],[6.747431896973726,52.14356706343351],[6.747385426203874,52.143526492630535],[6.747315125270987,52.143460496970135],[6.747243343280529,52.14339192053574],[6.747178181150061,52.14332577568421],[6.746945972881909,52.14307436037414],[6.746865334086882,52.142991260692035],[6.746801897238807,52.14293087567242],[6.746737864059705,52.14287920789998],[6.746675131679869,52.14283330503452],[6.746611515713414,52.142787169610415],[6.746539844961196,52.1427475991473],[6.746457542444208,52.142703854433506],[6.746373222385808,52.1426614992555],[6.746284338780159,52.14262664853174],[6.746191912075605,52.14259586568138],[6.746062443806019,52.14256301071814],[6.745937237947858,52.14253530215473],[6.745843603051236,52.14251521195296],[6.745775042472318,52.14250050481514],[6.745452662471794,52.142429268332435],[6.745351517532611,52.14240770915163],[6.745247666708168,52.1423788459632],[6.745157705104663,52.142352213832794],[6.74507614698309,52.14232902651259],[6.744961883001404,52.14229307380195],[6.744912931143554,52.14227552457497],[6.744825334148716,52.14224063997991],[6.744742951600111,52.142206666117865],[6.744668019399431,52.14216929841832],[6.744587314272974,52.142129462239836],[6.744441915529576,52.142045892951764],[6.744373277972907,52.1420012254082],[6.74431131304439,52.14195978004717],[6.74424982404967,52.14191332227872],[6.744202126161613,52.14187884993598],[6.744143900949693,52.14183017017612],[6.744095288169214,52.141783860750905],[6.744047891815478,52.14173671033343],[6.743996747680108,52.141685459075575],[6.743950137174226,52.141637238869365],[6.743830513134569,52.14150464258449],[6.743775084042142,52.141436891723224],[6.743697695668405,52.14135132547437],[6.7436316572647,52.14127386256562],[6.743581038691862,52.14128458451876],[6.743561519474543,52.14125956784882],[6.743608049483215,52.14124026342133],[6.743495788084165,52.14111430596174],[6.743427815605182,52.141028460424344],[6.743357977126051,52.14094610610088],[6.743282206539135,52.14083727528173],[6.743199491639998,52.140732605334094],[6.743149414107782,52.14065435635688],[6.743089798077419,52.14058096323149],[6.742992020031435,52.140466137972744],[6.742936606368239,52.14039592352372],[6.742902755885441,52.14036753881629],[6.742861399913545,52.14032628717642],[6.742814316355991,52.14028308783969],[6.742753473238373,52.140228423892424],[6.742701508831469,52.14018854363293],[6.74263759828216,52.140143991593604],[6.742561696298588,52.14009953237961],[6.742492904670532,52.14005829040825],[6.742422882055635,52.14001788053209],[6.74234585502557,52.1399811018131],[6.742251396009418,52.13993507587951],[6.742156302733548,52.139897506843866],[6.742056449124748,52.139853754074934],[6.741961031473857,52.139817519017015],[6.741864148094457,52.13978449183425],[6.741766259925488,52.139749642360904],[6.741678239810422,52.139720306582944],[6.741587741482601,52.13969210482476],[6.741493858171138,52.13966452620374],[6.741387628724739,52.1396325678342],[6.741276276678571,52.139606556007266],[6.74116753087318,52.13958072987447],[6.74086668370705,52.13952151277895],[6.740665461274818,52.139480729459514],[6.740519934610396,52.139450713572],[6.740418103637682,52.13943127950154],[6.740330152788293,52.139413816448034],[6.740254397487099,52.139393354847684],[6.74018069765562,52.13937178194649],[6.740101542375589,52.139346145639365],[6.74002644458693,52.139317487341465],[6.73978751510158,52.139216351276],[6.739718220964451,52.1391796079878],[6.739655591684274,52.13915164238481],[6.739591571498352,52.13912212865537],[6.739503794505798,52.13908047346175],[6.739491249222024,52.139090730024684],[6.739536504437553,52.139113753248346],[6.739492543237313,52.139166717540924],[6.739401568721004,52.13927366082915],[6.739336338765046,52.13935033938092],[6.739305976793728,52.13937962328222],[6.73926177732841,52.13942136290362],[6.739193153274201,52.13948776982862],[6.739143610733477,52.1395499038537],[6.739084954094239,52.13962416970452],[6.73896912697808,52.13976053109131],[6.738877034427981,52.13986729802922],[6.738806221746938,52.13994590096355],[6.738716648343497,52.14005193771591],[6.738642446790135,52.14013443569771],[6.738601456280445,52.140187149835626],[6.738492538983893,52.140323107912415],[6.73838444062473,52.14047841887199],[6.738357775625168,52.140515013186096],[6.738228716728979,52.14048080565614],[6.737993751402721,52.140418525083646],[6.737705486858141,52.14034402718701],[6.737498738643271,52.14028818219831],[6.737546208491066,52.14021538464451],[6.737603410265685,52.14012768867605],[6.737673650297363,52.140016076304555],[6.737756825344925,52.13993508520012],[6.737569159308744,52.13994783281705],[6.7374846774182,52.139958589415784],[6.737455459106584,52.13996101850034],[6.736840864775572,52.13927853344773],[6.736097810068148,52.138488442108944],[6.735609009556328,52.13813775307129],[6.735062542307519,52.13792303327632],[6.734916444540048,52.137942996119094],[6.734495624114286,52.13800100292502],[6.733910228356559,52.13808008880453],[6.733376126718202,52.13815061280314],[6.733053821717855,52.13819400599759],[6.732951278654274,52.13820840836754],[6.73282147307352,52.13822418251257],[6.73272932376192,52.138246088759075],[6.732692307891853,52.13825393613811],[6.732390954132741,52.13831780811339],[6.731953811344241,52.13841177738466],[6.731570100135897,52.13849730628896],[6.731307781893402,52.13812562541792],[6.731144817626597,52.1381463691113],[6.730885963094329,52.13811281508591],[6.730679692325935,52.138087731261805],[6.730537486348776,52.13822301847458],[6.730327426620597,52.13812542672597],[6.730076924692828,52.13801063186176],[6.72980146794634,52.13788548660958],[6.729657078215836,52.13801186253346],[6.729303351885261,52.13832215480683],[6.729188364176188,52.138423655386354],[6.729044323971416,52.13838147333384],[6.728848291393529,52.13855072934512],[6.728832969753237,52.13856395576133],[6.72857577893767,52.138779760222626],[6.728406573637886,52.13893422892216],[6.72836345440328,52.13897285985332],[6.728291792805416,52.1389824392974],[6.728135847335657,52.138986037799576],[6.728093775019056,52.13898609384185],[6.728088447384341,52.13895074664566],[6.728079448184444,52.1388865505132],[6.728082566735499,52.13875741469766],[6.728098671184792,52.138584462540436],[6.72810171133412,52.13855922273359],[6.728115071705935,52.13844860465433],[6.72810653251263,52.138348653931025],[6.728115207588775,52.138240120680976],[6.728113549844752,52.13809058916064],[6.728116248632372,52.13800778753142],[6.728117186299828,52.13798307501922],[6.728094504801898,52.137993481610536],[6.72805509727407,52.13801170107006],[6.728044134096993,52.13788357037333],[6.728046179393139,52.13774496333186],[6.728050761547094,52.137691300667846],[6.728079510924778,52.13756289806541],[6.728100429396501,52.13745003665948],[6.728102417595196,52.1374354967624],[6.728115510220953,52.137339803523055],[6.727674191246312,52.137376885888926],[6.727479713306987,52.13740575835158],[6.727320692737988,52.13744250635969],[6.727115070833317,52.13750456652428],[6.72680072103463,52.13756968654429],[6.726626685758726,52.13759391169019],[6.726355965043266,52.137624763084666],[6.726023519414341,52.137635046806054],[6.725698522029814,52.137645262962245],[6.72523802375301,52.13764357753565],[6.724714569054234,52.13763235706463],[6.72430703796507,52.137616889231346],[6.723866102867386,52.13760258071291],[6.723317430675858,52.137575118158914],[6.7226985935612,52.13753932399757],[6.721987965901489,52.137469122146996],[6.721882834152115,52.137462473952084],[6.7216460205409,52.137444066373696],[6.721293876604697,52.13741111576827],[6.720576465422379,52.13733619109475],[6.720111157370754,52.13728777922504],[6.719397915669084,52.13721683633769],[6.718598420652803,52.13713632807516],[6.718430443005248,52.13711687600506],[6.718242899786421,52.137093824270565],[6.717944170580813,52.137061887654454],[6.717228531335585,52.13696318272292],[6.716454077927986,52.136835382975626],[6.71640830429405,52.13682782690532],[6.715734838519701,52.13671069539921],[6.714808934548287,52.13653912507826],[6.714174193453871,52.13642607009206],[6.713739400012402,52.13636572090908],[6.713325382638448,52.13633937552464],[6.7127719273728,52.13629223193409],[6.71225148313201,52.13625822522965],[6.711793622021028,52.136238048298],[6.711475148200986,52.13623006616111],[6.711129203438452,52.13624398324429],[6.71054104607233,52.13627627712472],[6.710030478233232,52.13631619214919],[6.709614322849557,52.13632852842831],[6.70925353228295,52.13631029106628],[6.708979901337617,52.13627849084771],[6.708687908705349,52.136228441422695],[6.708056988352923,52.13610212398175],[6.708054075726051,52.13612958205617],[6.708053242632857,52.136137465749634],[6.708065037645864,52.13616088476107],[6.70808011391765,52.136177696062326],[6.708095854530653,52.13619523701605],[6.7081487990079,52.136222060253175],[6.708245316580864,52.1362403950151],[6.708331282642407,52.13625758949708],[6.708443238230366,52.13629408866889],[6.70854456130448,52.13635138158347],[6.708620476449976,52.136389273268506],[6.708698008727852,52.13642750638376],[6.708774116007922,52.13646842513637],[6.708552189720163,52.136463020312384],[6.708571604708196,52.136493149561154],[6.708727811694719,52.13673550384817],[6.707795981154619,52.13704263597516],[6.70684502982574,52.137592389745706],[6.707384320734348,52.13794863553035],[6.707325375611689,52.13798274360478],[6.707286271312858,52.13800161785553],[6.707235278784987,52.138049749556124],[6.707003477713007,52.138347507118915],[6.706761874549999,52.138663666533084],[6.706652590249838,52.13880121662221],[6.70633418531521,52.139202002918665],[6.706259914553172,52.13929549233896],[6.706181663455714,52.13926714458188],[6.706017919733402,52.13921257041637],[6.705968768885778,52.139198522071965],[6.705884184447966,52.13917435293653],[6.705582872635127,52.139100633066256],[6.704402100645011,52.13882638088695],[6.704016765284047,52.13873687622037],[6.702724027528923,52.13843951568781],[6.702719747317512,52.13843852973109],[6.702680716805409,52.13843074029573],[6.702668922090464,52.13842807632208],[6.702554372587342,52.13840222558371],[6.702464278289634,52.13838777864572],[6.702353284117589,52.13838094472189],[6.702251599511109,52.138378204710534],[6.702150042056926,52.13838424539347],[6.702062092179457,52.13839696588654],[6.701970330782806,52.13841122098918],[6.701853762313875,52.138435352877856],[6.70181663117246,52.13844244571978],[6.701320834235597,52.13853459976846],[6.700302369477384,52.13872390202516],[6.700195315367781,52.138745247578655],[6.700065792865818,52.13877106805891],[6.700038066983265,52.1387760959803],[6.699916627828162,52.13879810483974],[6.6998930867841,52.13880236703203],[6.69986605154264,52.13880505014263],[6.699468669746879,52.13888139459842],[6.699332175149758,52.1389076154253],[6.699437387712829,52.13904821863585],[6.699538753194957,52.13914192410869],[6.699574829539921,52.139186377514136],[6.69966919897156,52.13947935651447],[6.699783464502003,52.13952482712445],[6.699809191355346,52.139584946653855],[6.699971046661342,52.13970368677805],[6.700138123490325,52.139781378837846],[6.700203028449256,52.140095629788554],[6.699846308453027,52.14010193893933],[6.699845641353273,52.14021835361965],[6.699864721617369,52.14032070541215],[6.6996638671892,52.14033148092175],[6.699671390219914,52.14054758207938],[6.699405444209205,52.14055072195535],[6.699445565835825,52.141140221839414],[6.699453801279027,52.14118678298482],[6.69948485441149,52.141413139268224],[6.699507464744064,52.141471585640744],[6.699499970441441,52.14156452513506],[6.699180568372758,52.14181195051935],[6.699137248662824,52.141869063063275],[6.699117989597915,52.14192959335393],[6.699074250161272,52.14208675781426],[6.699035751678699,52.142148850514815],[6.698991287337754,52.14218691912139],[6.698861590798177,52.14228274621182],[6.698549509647565,52.142481278236474],[6.698460934832159,52.1425446467669],[6.69827400252354,52.14272632512609],[6.698180017576913,52.14283433891122],[6.69813982257933,52.142898427706264],[6.698094793385323,52.143041673190396],[6.6979313309988,52.14310227830129],[6.697744742538066,52.14312664499699],[6.69761094076277,52.143137570532595],[6.697101573360189,52.14314574731832],[6.696921682765502,52.143164375283376],[6.696437913964873,52.143223412095814],[6.696250092446774,52.14324563274653],[6.696190471999222,52.14326022753867],[6.696085068738819,52.14330292669658],[6.695741141880123,52.14345245517553],[6.695764534126912,52.14347790400967],[6.695686770003938,52.14347166572291],[6.69560938957997,52.14344861378085],[6.695371318637523,52.14328181334101],[6.695295327145007,52.143212416661804],[6.695187151366604,52.1432243495507],[6.695122507844186,52.143222100296114],[6.695060790317633,52.14320004279295],[6.694954298850425,52.14313084038953],[6.694789080921134,52.14299702927555],[6.694286273867984,52.14322418218321],[6.693662031725989,52.14350813143059],[6.693670847490641,52.14351531481778],[6.694016246403788,52.14380202841775],[6.694031491173448,52.1438152080649],[6.694081549239034,52.14385271252002],[6.694090879639028,52.14386149917858],[6.693847842300988,52.14396310724341],[6.693778934831546,52.143991916385936],[6.693670038692563,52.14404370390155],[6.693656572498314,52.14403288660326],[6.693202554016369,52.14421032454311],[6.691977510737823,52.144743592553255],[6.69115510320598,52.14508485010038],[6.691494858001383,52.14528856647441],[6.691246115874807,52.14545442227989],[6.690856586405312,52.14573156234146],[6.690767759946944,52.14578040153964],[6.690689387745274,52.14581098542029],[6.690678065440122,52.145814032002185],[6.690593110694332,52.14583685921468],[6.690090732957207,52.145898852939595],[6.689960924776042,52.14596584361412],[6.689962591617743,52.14596638251323],[6.689968623662522,52.14596830243605],[6.690338078009604,52.146085732595445],[6.691329756967575,52.14639069459755],[6.691354556189566,52.14639832162586],[6.690033778010638,52.14880674252281],[6.687761045445112,52.14951100857461],[6.687934142170327,52.149738551132174],[6.687888137744715,52.14979203941895],[6.687872443121067,52.14979752499742],[6.687747856347243,52.14984111119304],[6.687738951511688,52.149842917329856],[6.687617232261274,52.149867576983645],[6.687093077951023,52.14997376260443],[6.686848582055938,52.15003048104875],[6.686828385793668,52.1499993142431],[6.686820245680319,52.149989246443056],[6.685708496745655,52.15025491003634],[6.684595007280018,52.15059886683967],[6.683725066924066,52.15080349468934],[6.683709595488079,52.150807134502635],[6.683391283125252,52.15088201491702],[6.683355018069451,52.150817252732296],[6.683035989031183,52.150922828263546],[6.682517539781573,52.15001114061221],[6.682066661803985,52.1492232504236],[6.681911173746721,52.149266594461935],[6.681799212203828,52.14930580192676],[6.681607821391227,52.14937283004511],[6.681465045809162,52.14942224531346],[6.681279707627966,52.149486392921986],[6.681162490708742,52.14952379672732],[6.680967206528285,52.149586129370775],[6.680846445274398,52.149619742476446],[6.680627056971487,52.14968081084294],[6.680585630320755,52.14962432933835],[6.680576710312921,52.14961553710264],[6.67996510042051,52.149905260254016],[6.679778788719664,52.149982351201636],[6.679566500700847,52.150032382214036],[6.679315014582463,52.15007864454306],[6.679217976883483,52.15010805889325],[6.679056377634829,52.15015704818111],[6.678813390078313,52.150236466383284],[6.6785814368447,52.150325570115356],[6.678356685256958,52.15037775794041],[6.676622015187605,52.15125797628917],[6.676303714284204,52.151418232062255],[6.676130166569966,52.1515056047489],[6.676098747249962,52.15148481522243],[6.675973821326182,52.151384147300526],[6.675859159988955,52.151299870768334],[6.675826101913781,52.15127090116323],[6.675817265854475,52.15136518365035],[6.675806570162037,52.15150386477437],[6.675796556277402,52.151656543175],[6.675787138611385,52.15178027972506],[6.675570883453053,52.151896307503314],[6.67544974306592,52.151927770763365],[6.675166710484608,52.151978710384434],[6.673819473897437,52.152103630142065],[6.673476426419223,52.15157479703839],[6.673368274523901,52.151412531134184],[6.673012013099654,52.150439967979764],[6.672874068047099,52.15002757720869],[6.673287207305964,52.149933785184615],[6.674155365798347,52.14973779346809],[6.674583517444479,52.14963829583911],[6.674530008736167,52.14960948621155],[6.674436423350731,52.149545895456036],[6.674325726218693,52.14944326376421],[6.674240721052824,52.149324018676836],[6.674149154492873,52.149198660723606],[6.674048993118806,52.1490615311525],[6.673726768037172,52.14861560994741],[6.673631623029462,52.148483611907245],[6.673612979100774,52.1484471495001],[6.673609588413767,52.1484273569069],[6.673586721849749,52.1483746795808],[6.67357031543516,52.14827897371082],[6.673570965004164,52.14818694701246],[6.673572583005354,52.148176673017595],[6.672014035899014,52.148411178814236],[6.671470946348271,52.14849472325385],[6.667455095777029,52.14912596129126],[6.666747956745121,52.14931054731481],[6.665669281068826,52.149592094096484],[6.665514687805123,52.14962237279067],[6.665245402742992,52.14962869842411],[6.664808232161765,52.14963896391375],[6.664637795993187,52.14966609616615],[6.664363665766269,52.14971961911743],[6.664355640783256,52.149721054342024],[6.664285177709394,52.149153718506206],[6.664256453405703,52.148783650615755],[6.664247869930544,52.148673144031164],[6.663410545133809,52.14881528992217],[6.663394461108464,52.14881746852012],[6.662997297949854,52.14888213567551],[6.662866600155159,52.14890335223557],[6.662794019543807,52.14891451956497],[6.662121585568987,52.14902552365178],[6.661882551838245,52.14906513307881],[6.661760917417401,52.149086007686705],[6.660617505608792,52.14928227384244],[6.659641931815829,52.14944972422023],[6.659446833880688,52.14948321853919],[6.658945928919538,52.1495710409295],[6.658386522833007,52.14966326719452],[6.658368589904184,52.149666220092186],[6.657725090660039,52.14977601509225],[6.657217966688408,52.14986478703094],[6.656678201315757,52.149952182289425],[6.656421552051399,52.14999494553839],[6.656003852217995,52.15006678535944],[6.655417946519784,52.150166896159924],[6.655149388721887,52.150212337538],[6.654937282982664,52.150253306196355],[6.654901322635778,52.15014635640426],[6.654874650303046,52.15002069076613],[6.654822871610903,52.14979772062243],[6.654727746352282,52.14941400053601],[6.65471256344039,52.14935223924951],[6.654681748655392,52.149271041205914],[6.654656676990133,52.1492155795402],[6.654631971640207,52.14917250065411],[6.654593783176813,52.14912749919712],[6.654551854324075,52.149069126525724],[6.654488130610319,52.149010979091294],[6.654269973036603,52.14883554106104],[6.654204794973159,52.14878532832789],[6.653997036057675,52.14862147264046],[6.653941584926879,52.14858291272324],[6.653889278268247,52.14855217526835],[6.653862356255313,52.14854936332039],[6.653838341622349,52.148550654982415],[6.653819493359922,52.148556358670476],[6.653791807979115,52.14856629212272],[6.653743767606638,52.148584444313116],[6.653542362510932,52.148674779451625],[6.653560896568694,52.14870588870725],[6.652703610340356,52.14907483655805],[6.652422690208736,52.149197430242936],[6.652390334270008,52.149210667477426],[6.6523103245984,52.149241827427225],[6.651406830636206,52.149630452649326],[6.651328340155146,52.14966525415538],[6.651159670707696,52.14973749909138],[6.651143405977226,52.14974674320463],[6.652355031055325,52.150801171684314],[6.652592408415276,52.151012749005055],[6.651920267621922,52.15130052967533],[6.651236033100996,52.151599654179634],[6.648827542535596,52.152652506642305],[6.648896505520742,52.15269963458709],[6.649439256070567,52.15307199767681],[6.64949400961653,52.15310908398746],[6.649399617465175,52.15316370400646],[6.648953554649402,52.15342462450924],[6.648261606631396,52.153816677885615],[6.647573922138341,52.15420954446076],[6.647235231159623,52.15440664926552],[6.646938202146667,52.154578930207215],[6.645560195776216,52.155367008571346],[6.645030278150478,52.15566895285032],[6.644958029474377,52.15570435753057],[6.644654821113744,52.15587837937579],[6.644317170867401,52.156072345285914],[6.644313977957495,52.15605757466483],[6.644142228113931,52.15615349177746],[6.643828510230485,52.156330266203],[6.643705426880792,52.1564003154884],[6.643592454892362,52.1564646029166],[6.642727601194792,52.15695969740577],[6.642541606564403,52.15706433017477],[6.642242106501491,52.15723107912126],[6.641818829520481,52.157465850451416],[6.641783430205974,52.15748708118795],[6.641734074949173,52.15751667616194],[6.641404507766353,52.157707922809074],[6.641317435624885,52.15776368078446],[6.640845085000318,52.15802389649772],[6.640612488098849,52.158158154376245],[6.640458646596855,52.1582464868123],[6.640403207108199,52.15827754815547],[6.64039795549238,52.15828049835345],[6.639532902512308,52.158785045124134],[6.639461895674377,52.15881972301632],[6.63876493381246,52.15921556562533],[6.637883713395603,52.15972600636816],[6.637863462983447,52.1597387605678],[6.637804815224758,52.15977385474215],[6.637382588924631,52.16000450861423],[6.637285931839749,52.16005445049425],[6.637225060802999,52.160083779072146],[6.637120103460969,52.160127525560256],[6.637007788800339,52.16017108026145],[6.636937228647255,52.16019628662889],[6.636222317843948,52.160459502707155],[6.636043416108373,52.16052253032224],[6.635772332674443,52.16061588217985],[6.635405302211487,52.1607507705493],[6.635323086940873,52.16078208586419],[6.635067404192475,52.160869115718604],[6.634398694533368,52.16110695960705],[6.634209893956431,52.161201406216435],[6.634209685526264,52.1611960420798],[6.633724549602849,52.15977803848294],[6.63367995505148,52.159641429892744],[6.633303602906163,52.15856872278329],[6.633277207797795,52.15848761662989],[6.6331496498577,52.158146534154405],[6.633145382950479,52.15813504653124],[6.631799612053336,52.15832251621598],[6.630541035353525,52.15849045331565],[6.629413773577107,52.15871058539708],[6.628408940214898,52.15890680223767],[6.624996155585775,52.1605371987863],[6.624844350500341,52.160609713752734],[6.624932941722616,52.16073314455325],[6.625911013941184,52.16183555884178],[6.623051710275607,52.162839502400864],[6.62306520500672,52.16285545995221],[6.622066590835938,52.163202523934466],[6.622022666353461,52.163217788385545],[6.620810907096516,52.16362029565899],[6.620630830204653,52.16368011189158],[6.620398642733035,52.16343694719248],[6.620322286209619,52.16334817191219],[6.620186286322661,52.16317769147286],[6.619930165766664,52.16290081626339],[6.619627402185994,52.16256397811712],[6.619293101554484,52.16219540548811],[6.619272395944307,52.16216703733223],[6.619248951515954,52.16213211797419],[6.618922910429019,52.16177447834893],[6.61856911060694,52.16138107350745],[6.618357867096763,52.16114021204267],[6.618142940383349,52.16091621571229],[6.617762491428525,52.1605645340807],[6.617760413398398,52.16055755347005],[6.617386422071987,52.16015838722889],[6.617359302479204,52.16013214407525],[6.617210671928866,52.16022742066996],[6.617102869641525,52.16028743965506],[6.616984486995974,52.16036130376147],[6.6168823033116,52.16041626617832],[6.616741918387254,52.16049472798968],[6.616647578521905,52.16053468694865],[6.616510357652797,52.16059221651575],[6.616321436298759,52.1606665814517],[6.61621465880752,52.16070180672337],[6.616092380833152,52.160739413660416],[6.615932228443615,52.160792246621824],[6.615843399607562,52.16081424181228],[6.615704677529338,52.160844927457795],[6.615583338879901,52.16087155770034],[6.615424079400448,52.16090696033464],[6.615253459248279,52.160939568648196],[6.615115751898884,52.16096573065184],[6.614971691200708,52.160986754115356],[6.614864744189333,52.16100260902372],[6.61474876900562,52.1610186297105],[6.614448604088813,52.162121121500924],[6.613584966988375,52.162694656069334],[6.613665558341171,52.162767337569434],[6.613719561680868,52.162853814661894],[6.613746349354187,52.16292009827562],[6.613767120041071,52.163006228795254],[6.613774244288204,52.163075017986884],[6.613775163320292,52.1631312963783],[6.613735886438969,52.16342358951542],[6.613261599098467,52.16374678747098],[6.613160766023604,52.16369498139622],[6.613051307756029,52.16364152102378],[6.612945586772851,52.1635846958617],[6.61269916587286,52.16345554345201],[6.611832468386289,52.164195668126396],[6.609272932473108,52.165819687315114],[6.609706380928623,52.16606857199608],[6.610181029720063,52.16637407087031],[6.6101912603355,52.16674451015405],[6.610106863272961,52.1670225009169],[6.609993474201175,52.167221987351205],[6.609837698263155,52.167432376003404],[6.609681823503443,52.1675901449815],[6.609579906908117,52.16766537679133],[6.609862136620187,52.1677463441482],[6.609998534656381,52.16778778881842],[6.6102046972904,52.16784226289077],[6.610420070901497,52.1678903759116],[6.610633204829589,52.167934098262364],[6.610759035234032,52.16795636170293],[6.610815806792446,52.16796415034917],[6.61088770912047,52.167971970801666],[6.610960314265698,52.16797716813312],[6.611092639368221,52.16798412783096],[6.611213109015245,52.167985754201744],[6.611190923910542,52.16802909471743],[6.611141844327837,52.16813594151738],[6.610556343417263,52.168133458025615],[6.608799399043778,52.168118929478936],[6.607909753218482,52.168114386788524],[6.607857864034148,52.16823370172308],[6.607885216037801,52.16832400774201],[6.608041563412893,52.168536709492756],[6.608046983919578,52.16854407814483],[6.608059677421092,52.16856134009502],[6.608225212563452,52.1687865308432],[6.608288126187706,52.16886432477029],[6.608607840834456,52.169587884621166],[6.606928423578375,52.16989091702606],[6.60715268579117,52.17039787585846],[6.607320326613355,52.1707849072029],[6.607343082658418,52.170832779815804],[6.607811565480375,52.1718913160244],[6.607935406657369,52.17216954092574],[6.608052190098371,52.17242541174486],[6.608122332067999,52.172537962496904],[6.607841366741151,52.172591773659924],[6.606265231114567,52.172849645868276],[6.606263559129379,52.172837150738545],[6.605958980225584,52.17290010930442],[6.605936232597056,52.173370349909305],[6.605921579360341,52.17338090132765],[6.606243823681722,52.17371427364877],[6.605367775646577,52.174642911704],[6.605354534277978,52.17465699904423],[6.605210887024488,52.17481590281609],[6.605314760253598,52.17488047533859],[6.605399336942462,52.17492318862108],[6.605590406601771,52.17520069458781],[6.605525450776261,52.17557057962846],[6.605540150136998,52.175589510976],[6.605389681893854,52.175796916915495],[6.605257328025049,52.1759374388506],[6.605058614457509,52.17617183242219],[6.604692979470086,52.17644455066918],[6.604560440117874,52.17655272308889],[6.604464871965485,52.17659912952741],[6.604300640614134,52.17670650504908],[6.604189763696435,52.176773806304936],[6.604028187310703,52.176864398939806],[6.603933970651743,52.176888579730374],[6.603915268402795,52.17687350965785],[6.603743942245447,52.177063366680656],[6.60363531380454,52.1771558037956],[6.603555808444302,52.17721547304494],[6.603449821106557,52.17728630068312],[6.603399015790835,52.17731162450875],[6.603306947076304,52.17734437588595],[6.603213489032443,52.17736961792423],[6.603177555720806,52.17739181306476],[6.603143962709284,52.177412968305305],[6.603084747905544,52.177448410113655],[6.603017771872252,52.17746732961151],[6.60288498207841,52.177502226174596],[6.602672654528487,52.17756295784029],[6.602468313219008,52.17762167427457],[6.602315215556229,52.177675961441224],[6.602209964420616,52.17771811513215],[6.602159566007303,52.17774017127147],[6.602115131236857,52.177769671626635],[6.602079106557481,52.17782288758341],[6.602042870252044,52.17787048775163],[6.601907980302756,52.17800869481216],[6.601947553336705,52.17802881770291],[6.601880091757788,52.17807129211583],[6.601813175995144,52.17811341032536],[6.601745458446898,52.17813200411955],[6.601480703862046,52.17818076995095],[6.60153468011426,52.17834319877184],[6.601522162675798,52.1784177725959],[6.601473346383958,52.1786627876207],[6.601454985296981,52.17873272045129],[6.601394528212718,52.17884561240167],[6.601302258252795,52.17895007669251],[6.601219575144555,52.17905597930723],[6.601192169387681,52.1791046837911],[6.601203870928965,52.17913812746238],[6.601197090470333,52.17920486692537],[6.601186580796743,52.17925063803487],[6.60116299527391,52.17930378860353],[6.601053942744015,52.17942722986402],[6.601025412343771,52.179352467162744],[6.600743406310585,52.17929686041167],[6.599350983867359,52.17902231203814],[6.599321776523784,52.17905268851133],[6.599266285224981,52.17909458896879],[6.599198457578217,52.179149029628455],[6.599140309925304,52.179169060715274],[6.599067894860567,52.17918007873242],[6.599012707559755,52.179186910795636],[6.598882422805082,52.179124896137154],[6.598829271532542,52.17916575663013],[6.598613998937941,52.17905885267277],[6.598301101401252,52.178901489849814],[6.597836529814145,52.17864916142891],[6.597796967859414,52.178700479733585],[6.597458419254359,52.17893919818984],[6.597411330969347,52.17893250820074],[6.597072846704576,52.179180204592136],[6.596789070532352,52.17937387394067],[6.596553493299496,52.179531695728585],[6.596518497951238,52.179566553335846],[6.596481024834719,52.17960386325013],[6.596350575709794,52.179682350839464],[6.596307264834169,52.17970983290768],[6.596220470704261,52.1797649156243],[6.596115271317027,52.17983525206394],[6.595982866446221,52.17989828062024],[6.595960023857161,52.1798712067869],[6.595931411195867,52.179876165113555],[6.595834104806292,52.179893018187194],[6.595760309980034,52.17990499214053],[6.595687376628892,52.17991044934287],[6.595645386270007,52.179917081717726],[6.595577382811776,52.1799253198324],[6.595181670913764,52.18018297202644],[6.594409518717502,52.18052054723874],[6.594141189235301,52.180655202576176],[6.594044288006086,52.180717901638],[6.593414862327326,52.18112518306266],[6.592102269365965,52.18193549332929],[6.591898610759266,52.18202991446781],[6.591548511264759,52.18217170880513],[6.591016399231662,52.18233356154801],[6.590840965972513,52.18237083898284],[6.590415162800456,52.18246352359505],[6.589999075928094,52.18250394592656],[6.589441469670281,52.18253577748376],[6.589040190254744,52.18255868822953],[6.588547552412504,52.182566096504566],[6.588024573271428,52.182558899164206],[6.587898223826717,52.18255537610191],[6.587592535085613,52.18254683722419],[6.587277919331593,52.18252988505096],[6.586248363152126,52.18246251027959],[6.585903498192955,52.182443003408714],[6.585572002984247,52.18243289679786],[6.585252438312115,52.18242924787688],[6.58505169739744,52.18242661197339],[6.584654729927736,52.182416286596265],[6.584419819315058,52.18241597393755],[6.584134851878161,52.182415018079396],[6.584127287173047,52.182414843138176],[6.584064056522865,52.18241425312421],[6.583707959026035,52.18237772127384],[6.583391644170603,52.18236109953784],[6.580670738725852,52.182315836831116],[6.578701286719994,52.1822878506756],[6.578429387826821,52.18229763440191],[6.578164096299451,52.1822810677897],[6.577999075896511,52.18227881436703],[6.57611552041521,52.18254958431994],[6.575516676073027,52.182640956305654],[6.575357385922231,52.182630992077236],[6.573650664312209,52.18250059944685],[6.57272777135136,52.18241049717301],[6.571938537830691,52.18233865908068],[6.570742219131714,52.18222153400356],[6.570609519695629,52.1821880248289],[6.570544112870703,52.18215555741161],[6.570500518643074,52.18212952287242],[6.570324816502773,52.18200959565778],[6.569981893182722,52.1817613587999],[6.569885331400701,52.18169599901755],[6.569774280412891,52.18164392592508],[6.569612416416446,52.181586348534914],[6.568304186550516,52.18120254649153],[6.568260062450846,52.18118347371801],[6.568031423949644,52.181084585289604],[6.56793382413381,52.18104611958877],[6.567855586379112,52.181020421799765],[6.567292884081141,52.18084629514491],[6.566617250318034,52.18063980289223],[6.566527327553571,52.18061232440543],[6.565681254646945,52.180353454318585],[6.564937960490627,52.18012797899339],[6.564238685739141,52.1799141138073],[6.563815743431044,52.17978556930124],[6.563479762495878,52.17970199872684],[6.563098858310844,52.17963039851609],[6.562654018435873,52.179572287974274],[6.562441560480796,52.17955115079115],[6.562018352773423,52.17952873226086],[6.561808049072019,52.17952218813479],[6.561202172856611,52.17953705467638],[6.561189744687632,52.17953707050239],[6.560916453242544,52.17953731778686],[6.560343342658459,52.17953934167091],[6.559868672188807,52.17953490121223],[6.559543422007468,52.179524309048524],[6.559207889275929,52.17951079791388],[6.55880883719163,52.17948830770088],[6.557294600214902,52.1794004507845],[6.556768026395127,52.179369897088094],[6.555246261857633,52.1792818188835],[6.552558535817625,52.1791255412321],[6.550456495054191,52.179003761340134],[6.549072941826395,52.17891943628016],[6.548555909129375,52.1789190349587],[6.548524302225884,52.17891754837892],[6.548489723204558,52.17891591123653],[6.548483150147515,52.17891560740093],[6.547414688784122,52.17883084861964],[6.546866546307117,52.17885420632857],[6.546673812679082,52.178874788153564],[6.545485573320795,52.17897960996689],[6.544054632297494,52.179107905364326],[6.542538696681872,52.179242777433515],[6.54204603875937,52.179292184843185],[6.541819474367574,52.1793209819107],[6.54130490472874,52.17940571943663],[6.540026049498257,52.17961994679054],[6.538548303779574,52.179860577499824],[6.537556005566643,52.180025725285546],[6.536519789202882,52.180201045249675],[6.536246970773796,52.18026231780907],[6.536236372109064,52.18026354461762],[6.536222084987829,52.180265193860905],[6.536195025393245,52.18029265713795],[6.53610716367687,52.1803006947287],[6.536076864889308,52.180303461684275],[6.536075375879091,52.180303557073266],[6.535944616671523,52.180311742625385],[6.535795301536319,52.18032898948807],[6.535702072609078,52.180352323821566],[6.535590667548813,52.180396634825534],[6.535437179441407,52.180465912307916],[6.53468612954559,52.180821063198536],[6.533897235074991,52.181194797036625],[6.533409281954139,52.18142270032464],[6.533054140970263,52.18157780689286],[6.532804927906543,52.1816750484882],[6.532554704180073,52.18175632648663],[6.532308554932069,52.181813528702875],[6.532164465726582,52.18184035608],[6.531960299373909,52.181871451521076],[6.531515459936363,52.1819139687089],[6.53137451074855,52.1819167469341],[6.531007808919489,52.18193229345051],[6.530579116029065,52.18196586862516],[6.530138015726196,52.18203853730192],[6.529950828609586,52.18208863758583],[6.529771620186735,52.182147675950475],[6.529428298196398,52.18226939894017],[6.528724681351886,52.18252350484404],[6.528027910883918,52.18276831791237],[6.527276956913344,52.18303780292534],[6.526495055139105,52.18331715482339],[6.525743162038788,52.18358665696181],[6.524926851745106,52.18388050548775],[6.524610580235038,52.184034105813524],[6.524103636322885,52.18439025033668],[6.523478134538646,52.18482511548473],[6.522841525459444,52.18527564346375],[6.522627676189424,52.18540454939001],[6.521922631979939,52.18580018995497],[6.521534793072282,52.18596802494546],[6.521187782247066,52.18607610523092],[6.520567467497836,52.18623501613931],[6.520577726454211,52.18627327216303],[6.520582266397882,52.18629020810464],[6.520587048529563,52.186308040566225],[6.521068295398408,52.18722730576749],[6.521037299863663,52.1872569425555],[6.520830930082059,52.18758966263251],[6.520917100089111,52.18770246912774],[6.521892952199422,52.19465614730933],[6.52255923295047,52.199402486500915],[6.522402185938375,52.19932967029178],[6.52236859721341,52.19931408351107],[6.522389581381108,52.19952452117346],[6.522396447405181,52.19962406710204],[6.522410905961191,52.19973453307682],[6.522396217911106,52.19972760028621],[6.522020110574021,52.19955201122823],[6.520997055659269,52.199082130404626],[6.520092118638991,52.1986843193392],[6.519968336886198,52.19862854660125],[6.518102841019703,52.19778155271745],[6.518120538588771,52.197724988476196],[6.517992249117542,52.1976677648131],[6.517361865093196,52.197383956312294],[6.516537940370561,52.19700849715514],[6.515910829054801,52.19675613683971],[6.515755365898572,52.196717911942315],[6.515620066433663,52.19671172721855],[6.515495761999256,52.19673597155721],[6.51547041403543,52.1967464249991],[6.515462446646732,52.196747184308585],[6.515387200835729,52.19683202820966],[6.515291755622214,52.19697644398596],[6.515106805079148,52.19725094455607],[6.514574658086646,52.198105714611714],[6.514545941165771,52.198151875838796],[6.514453746059089,52.198246310058984],[6.514368650476849,52.198302789377856],[6.514247362819704,52.19849509071778],[6.514232206451558,52.19852856525664],[6.514122437650273,52.19876513324066],[6.514040099066899,52.19894688729026],[6.513939894950714,52.19888841129704],[6.513938233603841,52.19888750133126],[6.513734356481458,52.1992084446466],[6.513523948623495,52.19953966098562],[6.513516913788438,52.199550712212506],[6.513379969839434,52.199766289714404],[6.513322521772286,52.1998773349323],[6.513381879549557,52.19990956799044],[6.513220198526034,52.20010147157707],[6.51320430269954,52.200189675718974],[6.512926676151847,52.20064108972207],[6.512845956375775,52.20076506656052],[6.512837176626038,52.20081882131314],[6.512872367559902,52.20090081236013],[6.512355371148972,52.20100566881325],[6.512312811754954,52.20108139908978],[6.512241733757157,52.201207845332995],[6.512175289022982,52.201326031790984],[6.512388927257389,52.20159876796018],[6.512105750868083,52.20202803986095],[6.511958410445078,52.202243220234585],[6.511762084600984,52.20254745888624],[6.513037731559156,52.20308058200864],[6.513619615628872,52.203323996343286],[6.513820261955833,52.20340794039789],[6.513767548852498,52.20347264021289],[6.513719552461477,52.203532953492875],[6.513626906439754,52.20361237122227],[6.513495268234256,52.20372521212471],[6.513155364606086,52.204016531223154],[6.512081033732158,52.20662149786051],[6.51229925840619,52.207000112120824],[6.512739422236872,52.20776377576531],[6.512530658025963,52.20779530289382],[6.510954725096022,52.20801022407717],[6.510946798598471,52.20801442531028],[6.510958805478568,52.208939318579425],[6.510963813491787,52.209114638411656],[6.510977070151183,52.21048168656721],[6.510978151566437,52.211197330134866],[6.511558499578662,52.21120976270228],[6.511359260887718,52.212719236077945],[6.512108523757141,52.21271040822012],[6.512106837009937,52.212727053208475],[6.512020381206096,52.21358322247315],[6.511991259305731,52.21404089336923],[6.511590839306215,52.214027584914724],[6.511582757825461,52.214065683626764],[6.511377437582552,52.21498158987116],[6.511356661875032,52.21508203744213],[6.511692602312992,52.21511971784823],[6.51191139068126,52.21514361047876],[6.512000766035708,52.21515380586516],[6.512110063669984,52.21516308325119],[6.512202533997813,52.21516950973879],[6.512259757906767,52.21517442045454],[6.512258126991975,52.21527206105917],[6.512246807321511,52.2159524342689],[6.51227113049006,52.21595366757454],[6.512236794209208,52.21932963984148],[6.512230774725417,52.21967877774916],[6.512072971366329,52.21967667709497],[6.512045901098135,52.21967453506267],[6.511263109780339,52.21965438721982],[6.510683404788793,52.219641056508266],[6.510465003636655,52.21963336421161],[6.510345241952097,52.21962914647142],[6.5103649200109,52.219715950694855],[6.510425468958773,52.21998301854336],[6.510443619808686,52.22010209734277],[6.510452774416258,52.22016216177874],[6.510470013950767,52.220290363651394],[6.510540043858342,52.22093553558399],[6.510530767327009,52.220965214249084],[6.510500023086256,52.221183551674606],[6.510422889364621,52.2217316719151],[6.510390744993176,52.22196010776009],[6.510390541720077,52.22196133215822],[6.510322831570354,52.22234990525512],[6.510311169326447,52.222544978363054],[6.510303868776226,52.22273193824783],[6.510326241980039,52.223093821120834],[6.510331010398959,52.22317087973125],[6.509555853344078,52.22323709963995],[6.508842866317028,52.223346812729176],[6.508611106146759,52.223393444880365],[6.508292724692898,52.22348177917263],[6.508204557552631,52.22351090339001],[6.50794445968878,52.22362962194128],[6.507687262811604,52.22377585337725],[6.50715266712986,52.224129466602946],[6.507061592501469,52.224194374060836],[6.507483792312019,52.22445894694594],[6.507589010158111,52.224514621411814],[6.507597660331914,52.22451694827697],[6.507653440231728,52.22454893955589],[6.508323760856301,52.224903934484345],[6.508651835222278,52.225073938443785],[6.508869631258988,52.2251907792242],[6.509060250542578,52.22524672863725],[6.50943551176822,52.225310154046696],[6.509473242409821,52.22531061334877],[6.509432059178496,52.225422301271955],[6.509431153261246,52.2254368803435],[6.509409586548954,52.22549004600239],[6.509309876815754,52.225793081486145],[6.509252854689961,52.22606329844138],[6.509252305151172,52.2260891188111],[6.509224102727049,52.22623735664308],[6.509205800791781,52.22633355542292],[6.508989870507367,52.226328784950184],[6.508903721978099,52.22632436311737],[6.507577037923754,52.226285284801634],[6.507530542210556,52.22704349791794],[6.507490302208661,52.22763561482414],[6.507461530831091,52.22813440243323],[6.507455461232529,52.22823989584819],[6.506910929517094,52.2282466162005],[6.506910992475041,52.22825028294511],[6.506883198240143,52.228266114697824],[6.506908168314752,52.228278839419325],[6.507020771501047,52.228322858106004],[6.507204336625584,52.22841798667161],[6.507302615142553,52.22849129985733],[6.50736499844723,52.2285644771503],[6.507444799919945,52.22868996437481],[6.507497872581215,52.228840450651276],[6.507520358454156,52.22902958130829],[6.507535174277762,52.229192538148695],[6.507568097067246,52.22919551558184],[6.507866132249055,52.229243930950254],[6.507967315705955,52.22926563966889],[6.50790761115212,52.229437932829825],[6.508821527029252,52.22957724227567],[6.508862059643679,52.22958244809623],[6.515758301964276,52.23053638779518],[6.515900233288526,52.23052757062095],[6.516437908378188,52.2305016570094],[6.516571100989373,52.23049575398426],[6.517115011345613,52.23046984055488],[6.517141902438003,52.23065613202729],[6.51715986190885,52.23078062263113],[6.517607360481021,52.230781606542266],[6.518479149622579,52.23080120252935],[6.518908326262141,52.23081851850865],[6.519512766576187,52.23087016053131],[6.523763756797907,52.230912381083314],[6.523797946641305,52.23108185520755],[6.523824697765007,52.23121453878339],[6.523867218973928,52.23143222832155],[6.523892287494744,52.231556901265066],[6.523933005654367,52.231754977083085],[6.524008700421181,52.23209822320759],[6.52403690924793,52.23221055153476],[6.526955927916645,52.23199874755347],[6.526994150625252,52.232185143340686],[6.527075365551378,52.232598948659984],[6.529973610933648,52.23235414776724],[6.530082670591611,52.232344939556995],[6.530106709905474,52.232477863803034],[6.530154523535832,52.23270885705319],[6.530180451019513,52.23283377211371],[6.531581954145976,52.23272298579551],[6.533120647670958,52.2326018808699],[6.53311640949345,52.23258225496782],[6.533241983954132,52.23257140945475],[6.533375455014165,52.23319247481804],[6.533406043778682,52.23333488075662],[6.533420290425456,52.23340547365321],[6.533433128114793,52.23344693024252],[6.533443152352434,52.23349169498542],[6.533522115216257,52.23386109644846],[6.533534197340932,52.23391641177333],[6.533701140515959,52.23467945903206],[6.535614037788315,52.234525592117166],[6.535617821368855,52.234525276655035],[6.536605885236655,52.2344454260642],[6.536758936187467,52.23443487566474],[6.539029258362616,52.2342577790365],[6.539993562027329,52.2341862934491],[6.540068626765022,52.234183717902575],[6.540070179541137,52.234455077456346],[6.540075210811788,52.235331029826604],[6.540082747076078,52.23594023007657],[6.539832195906824,52.23597883714144],[6.539113093212643,52.23622903155968],[6.538344935916264,52.23623124617601],[6.538085053212686,52.236228988436146],[6.536760724155215,52.236234221086185],[6.536961859308835,52.23674789320351],[6.536509504387285,52.236756269769955],[6.536093746284521,52.23676503455165],[6.536118279020044,52.236837441624836],[6.536675254437041,52.238280262129884],[6.536818118431662,52.23865987952966],[6.535672531689478,52.238931254964996],[6.534805926107325,52.23914026010387],[6.533934949761091,52.23933905432864],[6.533774034338935,52.23937578013254],[6.533837549282078,52.239483763448135],[6.533843029925193,52.23949304035871],[6.529782479465144,52.240143710915675],[6.529403429210308,52.24020398780795],[6.529327796382568,52.24021793249219],[6.529169120607509,52.239889703300044],[6.529003613123196,52.23954334708533],[6.527076544619994,52.23983342778772],[6.527422149900033,52.240780003272384],[6.527053733129657,52.24083331160245],[6.527085536761534,52.24091453990936],[6.524576844799287,52.24127343542654],[6.524587625904554,52.24128277859863],[6.525264183968511,52.2417656698729],[6.525169686283077,52.24182363989085],[6.523791837695235,52.24266887215476],[6.523742750121074,52.24269674167256],[6.523164033117823,52.2422757306985],[6.521378613517616,52.243890894711306],[6.521217513862146,52.24387431184417],[6.520057906983354,52.24375857659921],[6.518599010591107,52.2436124849704],[6.517356247332803,52.243491012210605],[6.516582008690428,52.24341195802948],[6.515548512056107,52.24330186682013],[6.514628976706247,52.24320648056534],[6.514626554171739,52.24320622506533],[6.51457098556278,52.24320046355189],[6.513706919082257,52.24311599205211],[6.512463092521516,52.242988995099594],[6.510498593925107,52.24279932475003],[6.510330007532474,52.24277179630147],[6.510211315776082,52.24273411250251],[6.510176935700285,52.242725432917766],[6.509666362331632,52.24250879124227],[6.509612810909702,52.242476123496964],[6.509605618609226,52.24241505181458],[6.50963502662882,52.24237407219575],[6.509653093174509,52.24235888959944],[6.509674585658235,52.242339629620744],[6.510019449701303,52.24203402161786],[6.510141641113782,52.24191975694522],[6.510003132720672,52.241832419936074],[6.509974089550696,52.24184778782825],[6.509928455070886,52.241890953198755],[6.509783262694076,52.242023314520885],[6.509560843956302,52.24222469553524],[6.509448960167688,52.242327994487255],[6.509266169478839,52.24251751996261],[6.509269760903384,52.24248109123799],[6.509214714969079,52.24245243745065],[6.509125999828976,52.242424696730644],[6.509050976350336,52.24241092890151],[6.50896333466882,52.24240717727509],[6.50887975625394,52.242414173221135],[6.508784911442494,52.24242730742759],[6.508688894333415,52.24245202991177],[6.508572436419311,52.24247327013649],[6.508463414929651,52.2424857207391],[6.508330999197163,52.24249370132518],[6.508248453030968,52.242494017526866],[6.508145028823032,52.2424903521906],[6.50796801044104,52.242484311121075],[6.507785649678641,52.242428344221636],[6.507398962096768,52.24231101805177],[6.507392941908168,52.242309187572204],[6.507301268806577,52.24227614335367],[6.507298505322679,52.24227513586461],[6.507080879561278,52.24219674337076],[6.506856846858358,52.24212788515224],[6.50689496395401,52.24208668883914],[6.506871040742285,52.242075724938736],[6.506725446710263,52.242021376295334],[6.506420834158794,52.24191099002863],[6.506141960030984,52.241810336393094],[6.506090562363366,52.241789817178514],[6.506012674137084,52.24175637169001],[6.505953766428076,52.24173415279666],[6.505880797095087,52.24171056600078],[6.505725643749972,52.241660863878465],[6.505462566535574,52.24157457553933],[6.505436247178447,52.24159992075633],[6.505294534846608,52.241553659283625],[6.505000860826769,52.24144944882144],[6.504729140582354,52.24135063870787],[6.504645848695858,52.241321755725544],[6.504580910052402,52.24130188531559],[6.504410706459034,52.241264386489796],[6.504274081450111,52.24123988184646],[6.503868962407853,52.24116506357977],[6.503527513543379,52.241100967615345],[6.503509622448678,52.24109635486345],[6.50348210816499,52.241089271295436],[6.503388097879895,52.24107082554656],[6.503271740597238,52.241044069808545],[6.503153805591396,52.241012196421394],[6.502935886058713,52.24095424803601],[6.502823316223868,52.24092318653084],[6.502630899075276,52.24087556719819],[6.502569061755119,52.24085961235516],[6.502349173559135,52.24099183394568],[6.502148799288033,52.24111226668408],[6.502173920849715,52.24116587079978],[6.50221979250594,52.2412511253934],[6.502355196029947,52.24148461835102],[6.502385092804734,52.24156632945054],[6.502399471017148,52.241622407932006],[6.502125440409435,52.2416538665518],[6.502130481000434,52.241666286067215],[6.502164073905226,52.241831834291574],[6.502101867672553,52.2418374371733],[6.502119573553947,52.241945114433015],[6.502141509294849,52.24209713712472],[6.500534809207617,52.241811556884926],[6.500338153602879,52.241776593660546],[6.50023796421599,52.2419261723037],[6.50001886456157,52.24225319939404],[6.498590117026378,52.242001492355115],[6.498520905949882,52.24214526800479],[6.498520739079289,52.24214562013667],[6.498395272901956,52.24240614672023],[6.498210292570933,52.2427902050268],[6.498041760274346,52.243139951944364],[6.496535385686572,52.242866326023844],[6.496569435893273,52.24290945669076],[6.496584848618446,52.24296736876837],[6.496596418617357,52.24300387934167],[6.496598961599536,52.243065948142615],[6.496595819632711,52.24313021862196],[6.496566960613063,52.24355026270362],[6.496538903873776,52.243897366361814],[6.496512032754823,52.24430614706145],[6.496483990437376,52.24457867272031],[6.496445671368726,52.24478611916809],[6.496433511368117,52.24486047857094],[6.496421131823827,52.24493601750237],[6.496343003395398,52.245191306130884],[6.49622152651963,52.24542884495935],[6.496133853191334,52.245565035310975],[6.495959587487831,52.245788597972684],[6.49535951473021,52.246507891233044],[6.495013451698281,52.246920726474535],[6.494932601988437,52.2470283402727],[6.494801818832671,52.24722548949675],[6.494781367607963,52.24725634110039],[6.494653013736505,52.24746465805098],[6.494545468571483,52.24767123371481],[6.494397670570132,52.24801749059636],[6.494281335240374,52.248499475481644],[6.494149783973644,52.248825562285475],[6.494132568521019,52.24885113415221],[6.493836731999936,52.24929028058321],[6.493766011516218,52.249418004731965],[6.493738233756575,52.249468187165746],[6.493569172977664,52.249838551451624],[6.493524922319705,52.24995423458421],[6.493505665795834,52.25005677608904],[6.49346054836996,52.250313137426375],[6.493450834650335,52.250394844031824],[6.493378809485845,52.25071878125796],[6.493288262077398,52.25089918366187],[6.493293577969452,52.250991068324616],[6.492803966267632,52.252066336026054],[6.493160926662426,52.252274457703756],[6.493534660557469,52.25249026817953],[6.493111910506807,52.252525561089826],[6.492379679985804,52.252597967851194],[6.491598710795046,52.25267115834908],[6.491513550202216,52.25268609351597],[6.491446164143358,52.25269491203581],[6.491389676779452,52.252710900346585],[6.491084178618115,52.25285603483033],[6.492886793404768,52.2574020235271],[6.492755972087905,52.257435966104794],[6.492282173209802,52.25755678260672],[6.492062669639638,52.2576158409297],[6.491444930218302,52.257776336196336],[6.491329946992645,52.25780522139507],[6.491251617002996,52.257824883286496],[6.491245287619561,52.25782658736482],[6.491089531666973,52.25786811372041],[6.490989448233091,52.25789479199011],[6.490538226311207,52.25801442867132],[6.490137245120786,52.258119967981585],[6.489758754503399,52.25822111633977],[6.489244790839364,52.258352011955324],[6.488702932300471,52.25849226177904],[6.488325323604519,52.25858964908245],[6.488127460452139,52.2586363278796],[6.488107873434045,52.25864094175116],[6.487148323019276,52.25889359438706],[6.486872169207469,52.25896593411969],[6.486855010450886,52.25897042632085],[6.486652844040117,52.25902329079717],[6.486635714528044,52.259027782693934],[6.486414626993295,52.259085568806476],[6.485739978535439,52.259261852849825],[6.485130250434988,52.2594211616502],[6.485764636038845,52.26026022583194],[6.487146303217558,52.26208756237122],[6.488113514516323,52.263366682620955],[6.486591433640372,52.26375344755559],[6.487985513649788,52.26465419837406],[6.488092642538917,52.26471379144338],[6.488174076817748,52.26472607483925],[6.488234989089717,52.26472365551255],[6.488048543646492,52.26478231705195],[6.488127827603537,52.26483259680183],[6.487039037711184,52.2651860710048],[6.485943226629351,52.2655222885152],[6.485894998974756,52.26553771183673],[6.48383326269682,52.26619723346876],[6.483476876659358,52.26630697351237],[6.481912527817047,52.26679695120811],[6.481419897133502,52.266946552819775],[6.480319990975562,52.26728055324064],[6.47812141879957,52.267971836661246],[6.476538135589175,52.268474114450754],[6.475118734918959,52.2689225490386],[6.475322872165792,52.2693513957483],[6.475659240713171,52.269682622797504],[6.475697606231131,52.26971647937708],[6.477578244481364,52.27105149561679],[6.477584677630576,52.2710587079219],[6.477568914863896,52.271745337375485],[6.477493745794525,52.271879015164295],[6.477493628839276,52.27187902522299],[6.47719529568257,52.27285676392577],[6.476992383193186,52.273382581277204],[6.476928590337908,52.27354776610254],[6.476903100249098,52.27358804470538],[6.476874260624859,52.273625576781065],[6.476766205368518,52.27376761099654],[6.476618326831822,52.27375610311485],[6.476545319335926,52.27352613271325],[6.476554026851149,52.2732810902803],[6.476557325222115,52.27319204728087],[6.476553650051468,52.27319215307287],[6.476111754661371,52.273206293524844],[6.475507962583284,52.27322997725881],[6.474898002667514,52.27325251923825],[6.474821336052383,52.27325652374912],[6.474563453524151,52.27326498247988],[6.47433344875727,52.27326960678229],[6.474186626551168,52.27327064297178],[6.473997489692233,52.2732741535763],[6.473751770020135,52.27327727638999],[6.473531986552651,52.273281652277696],[6.473221805900241,52.273284593651745],[6.472897413213768,52.2733019743862],[6.472788640297654,52.27330948145684],[6.472620238403942,52.273320870917686],[6.47237623784727,52.273356621094656],[6.472123618541504,52.273400072094084],[6.472050491128047,52.273410424098834],[6.471848478560566,52.273441149617334],[6.471366514033039,52.273503746235306],[6.471338908124482,52.27350733423321],[6.470611638026795,52.273617839614616],[6.47041304699826,52.273666391282624],[6.470140552519244,52.273728985838304],[6.469980774744175,52.273782924672716],[6.469595070357314,52.27393271851687],[6.469708350478929,52.274036827475776],[6.469688609167596,52.27407217108491],[6.469679179266483,52.274157297065564],[6.469756022345361,52.274266377814754],[6.469980623600535,52.27469306818559],[6.470162485615758,52.27503912810659],[6.470201696200649,52.27507878523258],[6.47025291645765,52.27510376198227],[6.470031396855862,52.27511725254127],[6.470084760805269,52.27522302475656],[6.469967762075901,52.27522751257853],[6.469964804126626,52.275227593615085],[6.4692767673756,52.27524694781253],[6.469158084656733,52.27525028174836],[6.46851283598417,52.27527511810521],[6.468434914427974,52.275275282907394],[6.468523173930737,52.27555557945873],[6.468244122973838,52.27558172749791],[6.468178801074695,52.27558785302227],[6.468330727175459,52.2760554973584],[6.468384420881079,52.27622074373708],[6.468269205991446,52.27622759547036],[6.468189871664875,52.276231799825176],[6.467368539769454,52.27627504896902],[6.467002396355221,52.27629208490602],[6.466995159030802,52.27606770998605],[6.466991566822167,52.275956609849366],[6.466789796125294,52.275950238147246],[6.466598181570937,52.27595900867545],[6.465937393335809,52.27603717538183],[6.46553260227263,52.276081066495344],[6.465517037329707,52.2760827545603],[6.465516062243063,52.27608121744035],[6.465441539328141,52.27596358281793],[6.465240538390902,52.27564630071518],[6.46519838711232,52.275651997435425],[6.465226771100275,52.27557345826296],[6.465143904646601,52.27542710963894],[6.463579828052032,52.27568160190944],[6.462897592817578,52.27507809399791],[6.462695112810549,52.27508521338142],[6.462630884255386,52.2750874698439],[6.460306002831897,52.27516912639273],[6.460229109851546,52.27517182912864],[6.460227133445051,52.275171901016606],[6.458759891312045,52.27521825784705],[6.45858943476872,52.275217178961455],[6.458556069036582,52.27521837134428],[6.458538852370942,52.27521901283351],[6.458276473692184,52.27522875306641],[6.457217672488786,52.27526243512915],[6.456829285489701,52.275275605201934],[6.456341703958428,52.27529213448346],[6.456198117582776,52.275297002021404],[6.455890413796937,52.27530605040313],[6.455635594116668,52.27531452991705],[6.455267859125892,52.27532675312337],[6.454094221818893,52.27536552588899],[6.453848228505671,52.275373634199994],[6.453774290212737,52.27537614428463],[6.453506988559795,52.27538537005108],[6.452634651039504,52.275319740916515],[6.452244968683288,52.27529113848513],[6.451583638571839,52.275242591983684],[6.451579807431157,52.275242311909814],[6.449753813884807,52.275097827123744],[6.449544650307769,52.27497126351133],[6.449073472689724,52.27473282085233],[6.449010939926321,52.274701168369376],[6.44889127120337,52.27479083345702],[6.448177208754212,52.2744288036222],[6.447645919032054,52.27415943570691],[6.447291262101526,52.27397316053468],[6.446498105687092,52.27355654260517],[6.446285984545829,52.273451518073784],[6.446225214839576,52.27342236506572],[6.445190409090134,52.27291675267741],[6.445061289247799,52.27286241437276],[6.444330587826451,52.27256085870774],[6.444429408325991,52.27248038215997],[6.444221573959926,52.27240178645523],[6.444122026073781,52.27236414370551],[6.44403338860547,52.27243598991758],[6.442145434895602,52.27398086347912],[6.441613202848587,52.27441634742197],[6.441246009788659,52.27470033138928],[6.440849006614176,52.275018888664576],[6.440793544275889,52.27506338144634],[6.440748377854414,52.275099620914716],[6.440594074307262,52.27521003492058],[6.440426211338987,52.2753301512241],[6.440202190644167,52.275474766735755],[6.440194122111538,52.27547994405901],[6.439845690063432,52.275704846359474],[6.439839124638554,52.275709147380894],[6.439669299100014,52.2758257565527],[6.43961371348141,52.27586389509009],[6.439088844454415,52.276177176337065],[6.438876762841351,52.27628483955813],[6.438952684592679,52.27631962300594],[6.438950467337395,52.2763206674368],[6.438904615247101,52.276342288179805],[6.438839432611301,52.27637556807285],[6.438734387925556,52.2764297232342],[6.438681907750214,52.276461685595415],[6.438543123185824,52.276518019352345],[6.438386708240376,52.27657365591961],[6.438220501799813,52.27661988762936],[6.438119307854888,52.27666032765779],[6.437957703196409,52.27676054726006],[6.437789410455014,52.276879764667406],[6.437603711863916,52.27698735281508],[6.437479447470731,52.27704436517428],[6.437307054061558,52.27712345821357],[6.4362738259204,52.27759127759776],[6.435698707043017,52.27785167039524],[6.434843354552883,52.27894727419386],[6.433267183630242,52.28010198039382],[6.433183501365195,52.2801647140066],[6.432779083764657,52.28045727850677],[6.432680739213103,52.280520375202],[6.432688440944023,52.28057803938091],[6.43274653845907,52.280765202699826],[6.432794817338893,52.28086949014469],[6.432818223898837,52.28092006735131],[6.432911749484381,52.28105141385728],[6.433295821872298,52.28150327578384],[6.43350186862915,52.28170418443376],[6.433668854212254,52.28189360097951],[6.433767822245865,52.28200755102053],[6.433990540012596,52.28223224724775],[6.43409336416123,52.28231260028596],[6.434119613099586,52.28232882543177],[6.43438927819142,52.28248332820932],[6.435057594295497,52.28285559893941],[6.43609439468486,52.28343525648571],[6.43623608346905,52.28351397735174],[6.436116939315823,52.28359628087758],[6.436041518658334,52.283648381791416],[6.435954556532876,52.28366974596933],[6.435944248640742,52.283668920651934],[6.435857618226454,52.2836621032242],[6.43585230989827,52.283699874576115],[6.435800203224125,52.28378042339133],[6.435700678073332,52.283996766827286],[6.435630353045759,52.284125142568854],[6.435400837008245,52.28445129942736],[6.435239308593077,52.28466995412024],[6.435133379415294,52.28489709494124],[6.435064542912072,52.285124796605956],[6.434997956860352,52.28534416401766],[6.434992149181205,52.285363279832644],[6.434929656656602,52.28557602244673],[6.434865339497843,52.28579532469059],[6.434788228191023,52.286016564931586],[6.434678698591862,52.28617014937132],[6.434649825560066,52.28620065117404],[6.434616496786765,52.286223687134616],[6.434595751915237,52.286233398686896],[6.434570369362731,52.286241605319766],[6.434544167774841,52.286248021531506],[6.434515593233403,52.286253254334156],[6.434183490903377,52.286195570426514],[6.434114542723493,52.28618361551027],[6.43409296967623,52.28626208634072],[6.432449102144354,52.285975428012634],[6.432388584621306,52.285964817698265],[6.432109648162973,52.28591529561756],[6.429179980996162,52.28539560517677],[6.428922143007485,52.28534986244884],[6.42833089075788,52.28524545071031],[6.427754010994749,52.28514319256828],[6.427705105094706,52.28513452694605],[6.42736341286583,52.28507401416978],[6.427309981022872,52.285064210772596],[6.426484879275564,52.28491459598051],[6.426327404839387,52.2848866877023],[6.426320124984714,52.28490254426875],[6.426248192417797,52.28505929562974],[6.426246463222589,52.2850630679602],[6.426231010777712,52.285096721428125],[6.426134011831692,52.28508027163601],[6.426129744504951,52.28507954514992],[6.425700543419232,52.28500653904758],[6.425694377825069,52.28500548765159],[6.425198723512594,52.2849216754513],[6.425074493399307,52.28490017880154],[6.425014644821286,52.28489108686675],[6.424975070000026,52.284884054968934],[6.424721959429385,52.28484147941059],[6.424727251708912,52.284857863671654],[6.424699398800426,52.2848532095561],[6.424245183824311,52.28477704716931],[6.424237017731187,52.28477568069258],[6.423724458834183,52.284689493914335],[6.423666181450982,52.28464091061268],[6.423410455398334,52.284596674420825],[6.423403862950602,52.28459553673822],[6.423136939850978,52.28454940272097],[6.422784580887622,52.2844898062075],[6.422679753878682,52.28447191211251],[6.422665097842346,52.28446939797196],[6.42264490897011,52.28446593459143],[6.422380924543648,52.284420680888026],[6.422287403771612,52.284404305356055],[6.422269729635222,52.28440120637573],[6.422150763900916,52.28438033470345],[6.422098179336535,52.28436969458467],[6.421943158886862,52.28434248703952],[6.421889118907094,52.284331652848685],[6.421651466791609,52.284282355947134],[6.421416300936541,52.284284459209886],[6.421422391148886,52.28423692938383],[6.42139833371848,52.28423222328284],[6.421311541730624,52.2842152577648],[6.42129437420341,52.28438574636666],[6.421285960963983,52.28450541009731],[6.421276745517637,52.28455972648686],[6.42127652717687,52.28456104967699],[6.421292562175825,52.284631656753376],[6.421311848820861,52.284733038446944],[6.421313202861691,52.284736433167694],[6.421321532402716,52.28475742900609],[6.421395748266358,52.28491602625758],[6.42141533316735,52.284950217369435],[6.421415836754571,52.28495107580859],[6.421474934033195,52.28511560285293],[6.421476498725418,52.28511985861034],[6.421505320260723,52.28517811156731],[6.421519218744739,52.28525072369848],[6.421530425094458,52.28530086155118],[6.421530613642183,52.285330377664344],[6.421537225225775,52.2854066489302],[6.421542457563095,52.28546269947621],[6.421545036781885,52.28549039699284],[6.42156686189906,52.28564791563899],[6.4215913309537,52.2858440880849],[6.421602454042329,52.28588433943696],[6.421627681175759,52.28598775435544],[6.421698199251714,52.286270081522844],[6.421740892031946,52.28647652088617],[6.421749767685864,52.28654236378325],[6.42176071734623,52.286655116723],[6.421772857732154,52.28677242531984],[6.421792217559281,52.28697508702441],[6.421802131514059,52.2870414511446],[6.421806579684452,52.287102200450704],[6.421808927205772,52.28723137849853],[6.42180661234772,52.2873693070657],[6.42180310978083,52.287676586592085],[6.421793305093217,52.288029222621354],[6.421780369695397,52.28810633904836],[6.421789119332324,52.28816234080914],[6.421780691160434,52.28820074092454],[6.421760895027774,52.28833322273547],[6.421729198638055,52.28848466630817],[6.421700863726502,52.28860484589459],[6.421685320333832,52.28864927656441],[6.422441965219023,52.28973643449498],[6.422770327174593,52.29023512568913],[6.422834115679517,52.2909595849714],[6.422890584504079,52.29159253498967],[6.42288925089558,52.29160198446827],[6.422891877069024,52.291731016132445],[6.422891771090926,52.29173150243189],[6.422861557044451,52.292060956432586],[6.422812993918334,52.29261261926849],[6.422785409206363,52.29293606390187],[6.422760246468035,52.29318544131013],[6.422759980595169,52.29318787046579],[6.422734557647552,52.293369478008344],[6.422705467557616,52.29355476696135],[6.422611119408134,52.29383840277923],[6.42242375135794,52.29444333263055],[6.422381663122486,52.29457920052907],[6.422232959435982,52.2950581972282],[6.422107052654744,52.29546687600397],[6.422025553501378,52.295770029259785],[6.421773115193175,52.29655469196234],[6.421677642864756,52.2968333840826],[6.421584152916797,52.29711415302003],[6.421488470137332,52.297409726826444],[6.42147624268565,52.29745189025431],[6.42040151229827,52.297579567049226],[6.420243464863662,52.297598134148416],[6.420216209371501,52.29772164735623],[6.420030595535306,52.298442596749815],[6.420006555089944,52.2984824633156],[6.419976759835062,52.29850622812509],[6.419944936964271,52.298517822508714],[6.419901768785525,52.29852256799808],[6.419794566419299,52.298504772871475],[6.419699705971533,52.298479930821486],[6.419756110099669,52.2985987132878],[6.419874185354725,52.29884838434652],[6.419887786808854,52.29887723490931],[6.419918572535489,52.29894274255249],[6.420037581886517,52.29920791912364],[6.420082975330792,52.2993020167729],[6.420077506289767,52.29938334606762],[6.420076542667902,52.299398023444105],[6.420062727374447,52.29965323296385],[6.420045796861042,52.3002064418564],[6.420045232439239,52.300305138646124],[6.420045141895348,52.300306919144475],[6.420035955683509,52.30050900311322],[6.420016680350941,52.301310130460514],[6.420006208769697,52.30176028546821],[6.419972637726551,52.30290516117606],[6.419955850157613,52.30345325409393],[6.419954899108667,52.3034842451463],[6.419899558235431,52.30465652726795],[6.419790838061751,52.30902163793066],[6.422196902429106,52.30878277499749],[6.422886679035951,52.308716350592675],[6.423901375943675,52.308618319678956],[6.42406858995044,52.30860196858192],[6.424074449184086,52.30863058992484],[6.424077771372612,52.30864789926538],[6.424080174816676,52.3086603989243],[6.424081376261091,52.308666635269226],[6.42408683887526,52.30870904817285],[6.424089531872579,52.30872327103136],[6.424111566753952,52.30883925179159],[6.424299367435276,52.309826364510286],[6.424305284690772,52.30985745712445],[6.424324091545659,52.30995635239578],[6.424355180195468,52.31011962210996],[6.424379275766888,52.3102421462276],[6.424384552621949,52.310269046882944],[6.424401692086967,52.310356182086345],[6.424461771858012,52.31066192288664],[6.424466215674573,52.31068454344532],[6.42448097799511,52.31075967311151],[6.42451866220193,52.31095162056275],[6.424707754021083,52.31195053161655],[6.42470931161261,52.311958823186956],[6.424716554646173,52.311997049829415],[6.424769607777972,52.31228054307883],[6.42479295580168,52.312399217640206],[6.424859556053439,52.31273774425342],[6.424862800732514,52.3127542183022],[6.424879789644677,52.31284173220102],[6.424890558363217,52.3129109555787],[6.424904870837844,52.312976813168426],[6.424932963142507,52.31313844610538],[6.424962415561632,52.31329739759143],[6.425475931482159,52.31401435402729],[6.425547344621565,52.314013942571606],[6.425515208782555,52.314124214768846],[6.423238358046722,52.32140115577243],[6.421896092531713,52.325690005391955],[6.421532750964962,52.328215314861474],[6.421621278527678,52.328372941055],[6.421700833856693,52.32863341766589],[6.421806520593414,52.329143863438794],[6.421867036011553,52.329442751640435],[6.42192755125563,52.329793205549436],[6.421968739407681,52.32992753452283],[6.422005914775958,52.330031320489546],[6.422052499421572,52.33012021143908],[6.422104956399065,52.33018975314331],[6.422152988176347,52.33024568030857],[6.422193637766359,52.33029520052704],[6.422221635657245,52.330355824117504],[6.42223563772507,52.33039822515108],[6.422261557897937,52.330476699672545],[6.422341978308594,52.33081420676461],[6.422409301412848,52.331105925302765],[6.420293139936418,52.331215454395775],[6.419815130147724,52.33124019430754],[6.419337119870728,52.33126493225245],[6.417985752898266,52.3313363018225],[6.417418097619357,52.331362945836084],[6.417334606427101,52.331375160165905],[6.416909271821393,52.33142361689407],[6.416903109864227,52.33142425476526],[6.41447746578098,52.331673813462984],[6.414702341678566,52.3322931559648],[6.414751827123909,52.332429293753385],[6.414752469120471,52.3324310408875],[6.414785246805681,52.33251788835557],[6.414824543577994,52.33262204449189],[6.414824652918759,52.33262233114836],[6.414933488278169,52.33291057395068],[6.414933769980134,52.33291133549638],[6.414933988931705,52.33291191781304],[6.414971910692856,52.33301178945406],[6.414972035314739,52.33301210296035],[6.415555087472512,52.33454507073717],[6.415555181543573,52.33454533057891],[6.41600940458406,52.33573668452272],[6.416009966662701,52.33573814473822],[6.416104558609654,52.33598602708984],[6.416449082835329,52.33689835811862],[6.416449739217475,52.336900087114124],[6.416979017959545,52.338265740392565],[6.417421825255766,52.339428524362226],[6.41750991427059,52.33965982490045],[6.417538503135809,52.33973517609244],[6.417550777312622,52.33976831675435],[6.418591739215886,52.3426299225199],[6.418594226900166,52.34263656114258],[6.420747353121148,52.34838776632467],[6.421185937943862,52.34955909283094],[6.422608923071532,52.34937951911839],[6.428461292520788,52.348586844497966],[6.429069754621731,52.348504988071234],[6.429131571070683,52.34849668675951],[6.42918493077422,52.34848952051972],[6.429219256410961,52.34848495773864],[6.429232575485484,52.3489420280677],[6.429246400599976,52.34913569309466],[6.429250453868827,52.349203276029634],[6.429257768731047,52.34926849329536],[6.429271062023301,52.34938702117821],[6.429291767750261,52.349549921658465],[6.436279401569998,52.35723930106316],[6.437679179483451,52.35877928657868],[6.43850623776152,52.359671412604726],[6.438827248330391,52.36001053572995],[6.439256820139629,52.36049276536202],[6.439346470731609,52.36058958954009],[6.43957398372902,52.3608357047104],[6.43987211416395,52.36115901146092],[6.440328760413187,52.3616576605632],[6.440346468033228,52.36169729394178],[6.440601170682964,52.36226738018879],[6.440941995909013,52.36300577686416],[6.441396194680533,52.36401899369775],[6.441767979623481,52.36483008761229],[6.441841972880018,52.36518165042608],[6.441988408243424,52.3658595417002],[6.441065348886181,52.3659332366818],[6.441091396282307,52.36605986470385],[6.441094417028733,52.36607452461154],[6.441117060024589,52.366184554719986],[6.441167046845816,52.36642754698964],[6.44118512622349,52.36651544374021],[6.441369061617199,52.36775860440539],[6.441111126741066,52.36778757008477],[6.441382165514953,52.36784717461831],[6.44077576651013,52.368647135363254],[6.441024348994683,52.369732507261496],[6.441265946165169,52.370677346777214],[6.441315601663339,52.37087156259982],[6.439380557134183,52.37085181496117],[6.439348506584018,52.370933748997736],[6.439307304908628,52.37103909784501],[6.439046923527077,52.371592175224585],[6.438746379379428,52.37225576848224],[6.438381284603821,52.3730612111684],[6.438237768698841,52.373521011125284],[6.438197202211909,52.37364531003046],[6.437957633301586,52.37437320039448],[6.437907893204187,52.374523179028934],[6.439515558927316,52.37891560287475],[6.439443686526194,52.37913740590386],[6.439239937608749,52.379683597387945],[6.439004077290578,52.380315866269946],[6.438606030171914,52.38138361607119],[6.438449709876926,52.38180372035508],[6.438176356308912,52.38253878572252],[6.437868277753912,52.38336714157271],[6.437808070116112,52.38352894235306],[6.437772483542958,52.383624560165714],[6.433459138832585,52.383033206058],[6.433455625062127,52.38306667323185],[6.43333336454709,52.38423005384317],[6.433062729331133,52.38680489391868],[6.432916491778585,52.38677878992694],[6.432887441128024,52.38677468728774],[6.432258921803441,52.38663161833861],[6.432171455071806,52.38675046842991],[6.431859360562187,52.387174535717634],[6.431338778645966,52.38788609497894],[6.430697880240926,52.388747413026216],[6.430201753581085,52.3894141428698],[6.429683766731189,52.39011022965813],[6.429422584842337,52.39046042609363],[6.429372750546611,52.390527179630396],[6.429348025722826,52.390560303063914],[6.42914214568804,52.39083591335342],[6.428841642625269,52.39123741746819],[6.428518299971487,52.39166815351009],[6.428397952576606,52.391730295729644],[6.428069289376369,52.391899862849],[6.428021140408851,52.39192468906806],[6.427674047968697,52.392103513144306],[6.427234462956706,52.39233218824827],[6.427189844873805,52.39235538326775],[6.426453186651143,52.392738187565946],[6.425394195826901,52.39328813625372],[6.425304156310462,52.39333489135544],[6.425211760675591,52.39351186071078],[6.425211465046635,52.393512411590386],[6.425098864199327,52.39373066093282],[6.424188015872498,52.39548623060366],[6.423904872759148,52.39602880929235],[6.423738740999978,52.39634664737906],[6.423489076785206,52.39682343505901],[6.423299071530501,52.39718564023197],[6.423205595320731,52.39736357899232],[6.423110581867729,52.39754429946334],[6.423031869442978,52.397693886028435],[6.424131825183084,52.3977979571932],[6.424460699981722,52.39780561934363],[6.424422773154131,52.397896498347684],[6.423845386444714,52.399279719036095],[6.423817724801479,52.399345961278144],[6.423682709297649,52.39966911718196],[6.423545784930038,52.399996181443505],[6.423337443540553,52.40049285687494],[6.422766059324667,52.40184907213787],[6.422668585199413,52.40207965286077],[6.422574920355223,52.402300987301466],[6.422563612430202,52.40232770008572],[6.422416987863685,52.40267364183778],[6.422160932359338,52.40327585734045],[6.422023404763094,52.403261671735685],[6.421976746430642,52.40334845564437],[6.421979251039835,52.40334873033669],[6.422115559921139,52.40336357381139],[6.421395193449515,52.40502963737027],[6.421372528463006,52.40508360240083],[6.421167498809853,52.40556869451858],[6.425132771602664,52.40563390435942],[6.425241153662475,52.40563568659692],[6.425289208320121,52.405636236031434],[6.42659771790016,52.4056508671632],[6.42714740625554,52.40565741049984],[6.428780033687994,52.40567605528498],[6.428947424362841,52.40568296859334],[6.429193184609588,52.40569339848613],[6.429799669738629,52.40571969795981],[6.430487126522967,52.40574951432693],[6.430560149089971,52.40575188190649],[6.430586504889111,52.40575273721727],[6.430707488276285,52.405756650484804],[6.43084961774255,52.405762354645574],[6.431021976007285,52.40576924818582],[6.431191459535268,52.40577326370237],[6.431537872698889,52.40578295399591],[6.431889821252521,52.405786815035285],[6.432348784702866,52.40578680036507],[6.433078670769345,52.40578604492213],[6.43349912284411,52.40578447845042],[6.434495013174639,52.40578318797665],[6.435090694228797,52.405779993872855],[6.435239111074046,52.40577872522038],[6.437557160264761,52.405755560025554],[6.437730171334121,52.40576390310617],[6.438054419389861,52.405778966187604],[6.438194220276424,52.40578744153663],[6.440084114696811,52.405940716204555],[6.440085027844849,52.405935854465646],[6.440325590259484,52.40590426982574],[6.440401101002431,52.40588948677093],[6.440435222477736,52.40584423343278],[6.44047546367825,52.40605816235924],[6.440477734254295,52.40607021328712],[6.440480849401403,52.40608687659268],[6.440481137412389,52.40608848292151],[6.440670177669427,52.40608419456314],[6.440764767792134,52.40609117263308],[6.44076305347129,52.40607594395566],[6.440757276716055,52.40600238228578],[6.44144926275829,52.40605276756278],[6.441586499503909,52.406064587386794],[6.441619752784811,52.406067482062824],[6.44173703768841,52.40607769073256],[6.441769561177062,52.40608017842855],[6.442657765510453,52.40614801656894],[6.442684172761782,52.406149776545575],[6.44274016791479,52.4061535557661],[6.442762454203137,52.40615506483193],[6.443099087946504,52.40617779642667],[6.443342802615559,52.40619461482817],[6.443350486208097,52.40619512152594],[6.445101506391693,52.406312101238484],[6.447289173053301,52.40647345806019],[6.44793497603414,52.40651617457945],[6.44793778766218,52.40651636508963],[6.44797783779853,52.406518909491034],[6.449748751484796,52.406631498871114],[6.449795630109826,52.406635032971],[6.450421251425879,52.4066823033307],[6.451038833152023,52.40672765619418],[6.451092640786995,52.40673208029159],[6.451505327833671,52.40676598706757],[6.451777824774583,52.40679195799593],[6.451896373830547,52.40679893649189],[6.45203126898636,52.40680422190197],[6.452090365156464,52.406807321647356],[6.452405019639539,52.406823806946285],[6.452834829101039,52.40686071891077],[6.452958822971274,52.40687347167508],[6.453349911201805,52.40690137355262],[6.453433057249998,52.40690654808156],[6.453430124489451,52.40700510295556],[6.453666358453921,52.407007514509274],[6.453698697285148,52.407127386226925],[6.453707995078379,52.40712655646131],[6.453830872453693,52.40711365712447],[6.453855539289478,52.407213967703825],[6.454382114625876,52.40989283280674],[6.454393998352349,52.40997610903448],[6.454264304893872,52.40998826138607],[6.452248501152115,52.41025464496444],[6.450696610908913,52.41043348110354],[6.450055466958545,52.41050287392188],[6.45004313763055,52.410504188993286],[6.449313341905447,52.410594129440206],[6.448139354042332,52.41073850559597],[6.447549971159527,52.41081109714653],[6.447593640483511,52.41106773172166],[6.447806469770806,52.412318452350064],[6.447695783886665,52.41233106536315],[6.448641253838868,52.414475610001446],[6.448670477162733,52.41454188741921],[6.448425184639,52.41461211725291],[6.448288149928585,52.41466757079152],[6.448301171780821,52.41476870574061],[6.448326327070215,52.414963954857726],[6.448339093604649,52.415063015784426],[6.448388476246146,52.415232602329425],[6.448410051423139,52.415298076485676],[6.44845768643709,52.41541925938862],[6.448587713844731,52.4155588935865],[6.448846354552709,52.415857552687996],[6.448977235182455,52.416027756502686],[6.449247655590263,52.41632395424566],[6.44932721721869,52.41641491090091],[6.449512072446569,52.416635682803246],[6.44972166171604,52.41688920106069],[6.449890119392053,52.41689883481901],[6.449942696177076,52.41693414485858],[6.44948826858147,52.41694916960009],[6.449417573545436,52.41695089127173],[6.448639539272884,52.416945652404706],[6.446689469388652,52.41692540046343],[6.445401335303246,52.41689936526214],[6.444961522992171,52.41683212622561],[6.443548711938264,52.41662634285993],[6.443553937442916,52.4166173979607],[6.442037346780086,52.416410463997444],[6.442061507225818,52.4164830168494],[6.442068315599754,52.41650347615788],[6.44209206633177,52.41656191225182],[6.442148579550502,52.41669978140104],[6.442215462920677,52.41714821551138],[6.442281247295224,52.417594268503514],[6.442282317663371,52.41760155734331],[6.442347442973314,52.41804210638479],[6.44237680874187,52.418297224935934],[6.442388022278799,52.41839455653086],[6.442388835401445,52.41840030172658],[6.442514980548392,52.41928530099194],[6.442553879398886,52.41956036910567],[6.442596985173615,52.419829970829056],[6.442639736437197,52.420048298343666],[6.442653759329211,52.42010001700251],[6.442698614826025,52.420265376555975],[6.442770292376522,52.42051302619356],[6.44269833765896,52.42051395512587],[6.442743524183139,52.4206993373009],[6.44276065727621,52.42076063653721],[6.442750765417418,52.4207619560852],[6.44277674959734,52.42082452464363],[6.442791551188652,52.42086017450282],[6.442835623646626,52.420942706293545],[6.442887020937047,52.42101921361045],[6.442888765077396,52.42102207426899],[6.442949558290215,52.42112207368313],[6.442624527295522,52.42106293454985],[6.441743133113915,52.42093806697557],[6.44074625830937,52.42079682819115],[6.439786231939058,52.42065005841704],[6.43980739870612,52.421011013704856],[6.439807868795227,52.42101903594311],[6.439836570165643,52.421492195031306],[6.439862356187104,52.421914444239356],[6.439869193405363,52.422027004809415],[6.43990060823764,52.42255485945078],[6.439918129557745,52.422853936743586],[6.439924985692921,52.423010556957756],[6.439961904892262,52.42348171935747],[6.439952509220125,52.423481677039085],[6.438569966256542,52.42350465380436],[6.43841282373553,52.4252688096999],[6.438405743747387,52.42534833657105],[6.438559940332468,52.425336946176614],[6.440405163798689,52.425200947340386],[6.44030590467295,52.425551908616534],[6.440014018203664,52.42604308027457],[6.44001065584064,52.42627878789485],[6.439844864665852,52.426252227494885],[6.439575258389315,52.42698703880245],[6.439570232296764,52.427000745420614],[6.439504073215795,52.427188376104496],[6.439945310204305,52.42729423616111],[6.439955484282747,52.42729668039336],[6.439964711771593,52.42729889033194],[6.440344935507054,52.427389463121465],[6.440714265143751,52.427478163143256],[6.441036969773634,52.427678567892855],[6.441172109075341,52.42766309229448],[6.443067143265717,52.42746582263421],[6.443301124071444,52.42744259654748],[6.44383593503528,52.42738848190166],[6.443760299538421,52.427467281459364],[6.443463638872042,52.427777042794844],[6.443152285748996,52.42809730661806],[6.443024058984329,52.42823184254999],[6.443020610647511,52.428235837034904],[6.442917680637446,52.42835464279949],[6.442798150599517,52.42850000352844],[6.442625944090436,52.42871600381455],[6.44246806621956,52.42896196841403],[6.442377322074901,52.42909061495214],[6.44236857472712,52.429103015579294],[6.442318147895038,52.42919154841987],[6.441982940726491,52.42978387628282],[6.44194144520954,52.42977523071005],[6.441825333744797,52.4299921503363],[6.441753782928924,52.4301303955263],[6.44173436554916,52.43023498343453],[6.441235988559217,52.43099372048289],[6.441183556827404,52.4309828170677],[6.441140875568618,52.431023832133256],[6.44099076773122,52.43125591068432],[6.441036394139135,52.431268780194706],[6.440951290237814,52.43144508430231],[6.440863981481455,52.431640597576965],[6.440862188129629,52.43164371440348],[6.440722357728513,52.43188638800656],[6.440481540853454,52.43229625757784],[6.44033250966226,52.432524469699835],[6.440217118863138,52.43272533733548],[6.440056441809454,52.432966056207256],[6.439823666285487,52.433287301882366],[6.439775889257234,52.43327991576551],[6.439512445081363,52.43364365946372],[6.439390748073238,52.433797286764374],[6.439390232419536,52.43379724643108],[6.43916793304941,52.43375413638414],[6.439032100072279,52.43373937972094],[6.438954607551818,52.43383180942914],[6.438649667069646,52.43419548813781],[6.438508018938538,52.43434392567038],[6.43821692991599,52.43464902153523],[6.43812803519021,52.434735179295025],[6.438052301750257,52.434812663559434],[6.437978379160008,52.43489210007866],[6.437839143504814,52.43505190327888],[6.437772749570442,52.43513319635208],[6.437762177968262,52.43514814745123],[6.437614727317578,52.435356577030454],[6.437565249294921,52.435298673933524],[6.437481693362646,52.435268477694116],[6.437384650299946,52.435252458402196],[6.43728342052617,52.435253355793435],[6.437164516525536,52.43528534679509],[6.436871388005033,52.43545489866943],[6.435890584751164,52.4360434081691],[6.435858623285626,52.43606244926363],[6.435673002908706,52.43617303713171],[6.435377733651728,52.436348931761046],[6.435205213142684,52.43644891380207],[6.434609610480658,52.43680648812364],[6.434417037630348,52.436921224962404],[6.433751806248962,52.43731758278666],[6.433660906760472,52.43736620248093],[6.433430047830123,52.43751517002587],[6.433361959614425,52.437555157184846],[6.43331181468742,52.43757528396925],[6.433243578594348,52.4376096458146],[6.433111323900495,52.43766144351203],[6.432878165691163,52.43772819812603],[6.432804676755715,52.43773447332503],[6.432286072068961,52.43779811935536],[6.432153033493567,52.437816172564354],[6.431790293057449,52.43785313095784],[6.43169818062963,52.437851129879235],[6.431542129958276,52.43786937631472],[6.431431829041588,52.437862555983315],[6.431343545432025,52.43786014333403],[6.430731770335583,52.43784340524964],[6.430593098283406,52.43783775979744],[6.430561315610007,52.437836466806395],[6.430100812971835,52.43782645533629],[6.429506035518195,52.43781202399967],[6.427608271412368,52.43774994353793],[6.427577313877718,52.437749334583614],[6.427266767926882,52.43774324413846],[6.42706577947845,52.43773428575662],[6.426641532001637,52.437723681985375],[6.426458398991538,52.437727293048766],[6.426409930724454,52.437725021820235],[6.426332865130131,52.43771430092406],[6.426302116277133,52.437712557316],[6.426264812745338,52.43771288451504],[6.426205680338783,52.43771742980301],[6.42614219853428,52.43772401758587],[6.42600891526847,52.43774865431544],[6.42578798191733,52.437814766406916],[6.425689299084339,52.43784172394631],[6.425593690863338,52.43781545396488],[6.42551030950629,52.43779254612661],[6.425479520801218,52.437784088534144],[6.425352665161011,52.437749229967096],[6.424356374887348,52.43747548802322],[6.424238062753073,52.43744301623538],[6.424214972067466,52.43743669300017],[6.423362025091255,52.43720306004068],[6.423335397097137,52.437195769933176],[6.422583672936746,52.43698990901859],[6.422569404526691,52.43698600708072],[6.422472248068522,52.436959406573756],[6.421752459439933,52.43676233033381],[6.421710779102049,52.436750919925565],[6.421705495089276,52.436749474038436],[6.421691522750158,52.436745650293915],[6.421658811784437,52.436736687211024],[6.421560857010116,52.43670985922494],[6.421555513817539,52.43670839588969],[6.421538447829895,52.436703718306966],[6.4214807526089,52.436687917671634],[6.420158789447825,52.43632579950486],[6.420150323275783,52.43632348251495],[6.420165228428691,52.43582234766993],[6.42021959678129,52.433996743566894],[6.420101961552681,52.43399652002224],[6.420013738634117,52.4339963454728],[6.419898897290158,52.43399611536117],[6.419896103196467,52.433996112737475],[6.419869499516515,52.433996057060895],[6.419810674446496,52.433995940695844],[6.419398943246899,52.43399513390671],[6.419121612642866,52.433994593085686],[6.417150212847776,52.43399023269987],[6.41705969531591,52.4339900309883],[6.416406340803274,52.43399570939826],[6.416402756158411,52.433982581978356],[6.416260575652955,52.43398544405389],[6.416179430391842,52.43396078458441],[6.416016442766904,52.433962433962364],[6.415645723403239,52.43396531155809],[6.41563034409223,52.43396542712189],[6.415078300937983,52.43397192631304],[6.415058426337906,52.43397224260347],[6.414541024139524,52.43398041610055],[6.414223794072554,52.43398542290359],[6.414173519484359,52.43398621830489],[6.414003306009088,52.433988907230905],[6.413804383150954,52.43399205147668],[6.413605208730512,52.43400400588735],[6.413480575885594,52.43401148523056],[6.413199990591609,52.434049418732684],[6.412388580741947,52.43419099539685],[6.412382112192777,52.4341948892703],[6.412325490013075,52.43422893180503],[6.412020405703986,52.43427588281524],[6.41163297247726,52.434349664559264],[6.411329358998167,52.434407494636304],[6.411315698672264,52.43441009341811],[6.411185143273495,52.43443495957616],[6.411171483004265,52.434437558349686],[6.411027267082465,52.43446502309768],[6.410558410666537,52.43455431739634],[6.41049704907142,52.434566001692225],[6.410450356847226,52.434574844825406],[6.409198345696928,52.43481205372989],[6.408892795921544,52.434868456123304],[6.408443476731496,52.43495208173727],[6.404892076709327,52.43560734299353],[6.404678458924392,52.43561898395921],[6.402996763223232,52.435919659295436],[6.402691889847414,52.43597416125764],[6.402131073925581,52.43607442066565],[6.402141928331425,52.4361052466326],[6.402038645084334,52.436124431174036],[6.401890639440846,52.436151926177295],[6.400802711431614,52.43635405178926],[6.400637363049998,52.436390430000614],[6.40059586486146,52.43639955737361],[6.400512810309356,52.436417839519514],[6.400352933951152,52.43645301105457],[6.397147231915641,52.43704539173807],[6.396920090902452,52.43708736080357],[6.396799417496436,52.43710965501897],[6.396284679717469,52.43717381130032],[6.394633876175214,52.43748437731961],[6.394599653454495,52.437490825182174],[6.394461773722421,52.43753327073017],[6.394721368782426,52.43774025111337],[6.394985292750286,52.437924103768594],[6.39532860223756,52.43816326690974],[6.395593869550785,52.43835937548961],[6.395616682039913,52.43837624061628],[6.395768136515343,52.4384847133878],[6.395905582355691,52.438583148741685],[6.395889914379013,52.43859131743931],[6.396040976582628,52.43869542501292],[6.396228316657344,52.43883412399975],[6.396250146216052,52.438849783963896],[6.396513224218955,52.43903852998197],[6.396567619468157,52.439077560037276],[6.396589673729037,52.43909338884292],[6.396761890923424,52.43921694513989],[6.396800033440462,52.439244303266534],[6.396912772456972,52.439325196635195],[6.397273821534787,52.43958543272935],[6.397314584524146,52.43961480864596],[6.398126190697646,52.44019958710872],[6.398364603033302,52.440372145311166],[6.398976285417844,52.440814860381764],[6.399049809777491,52.44086759449107],[6.399526729609242,52.44120972189589],[6.399698439685695,52.44133289182384],[6.400351303557071,52.441800711055095],[6.400596422454692,52.44197634427932],[6.400990246779072,52.44226443043383],[6.401011488868563,52.44227997774799],[6.401325499128423,52.44250082304624],[6.401769887334971,52.44281911402796],[6.401990536757624,52.44297846091614],[6.402048163406097,52.44302007629788],[6.402270773815841,52.44318082595664],[6.402329313301024,52.44322309854263],[6.403213228522304,52.443853969737006],[6.403615745488987,52.44414248501806],[6.403696847715443,52.444200615978225],[6.403806589333408,52.44427926359137],[6.40387505474728,52.44432833504243],[6.404287528612151,52.4446240968616],[6.404470152583638,52.44475504878997],[6.404620470869313,52.444878089690484],[6.40453616284014,52.444891738498896],[6.404437939624408,52.44491177133798],[6.404427676585709,52.444913863789544],[6.404217112237649,52.444957268168814],[6.403956202933636,52.4450117730088],[6.403831373315113,52.44504154305064],[6.403446815539679,52.44511902953836],[6.403342675643691,52.44514087389684],[6.403245635711208,52.44516123716421],[6.403230616309461,52.44516438593201],[6.402549312791635,52.445303465400734],[6.402102673598137,52.44539618395872],[6.401904321180956,52.4454373583727],[6.401646145374126,52.44549072019426],[6.401155011385137,52.44559199523911],[6.400723214004277,52.44568111218139],[6.400523096915093,52.44572241621474],[6.400185222622574,52.445789938504184],[6.399966308606023,52.44583586035041],[6.399959925108226,52.445837164254165],[6.399417443906144,52.44594793091714],[6.398894097138548,52.44605098171134],[6.398761381327215,52.44607965423176],[6.398620889068376,52.446106622352225],[6.398581229521803,52.44611423224544],[6.39803434360391,52.44621921484977],[6.39849006910425,52.446220170414556],[6.398559336868134,52.4462259696834],[6.397521009607975,52.45867653960816],[6.397757023206712,52.458798444998195],[6.398064748024843,52.45896066962767],[6.398437584707568,52.459204632100274],[6.398941655817803,52.45956867650161],[6.399227939488277,52.45978242972769],[6.399244480365374,52.45979409871168],[6.399248772599169,52.45979712695982],[6.406941209286909,52.47236485856127],[6.406385833754514,52.47385750833608],[6.406607126727335,52.47397410314088],[6.408011199310701,52.474262641103934],[6.408565123144223,52.47432720285997],[6.409304404277641,52.47441337085692],[6.409494547681994,52.47455478410797],[6.410541751472883,52.4753336179439],[6.410781270531312,52.47553854348209],[6.410939749713504,52.47570865691437],[6.411052940612248,52.475858542833116],[6.411101482551717,52.47595181443373],[6.411180757319252,52.47618414347048],[6.411243679062507,52.47634467381275],[6.411305354983035,52.47653717617111],[6.411352428214943,52.47674805030835],[6.411402666748187,52.47702625310307],[6.411443774506768,52.47760593822749],[6.411451767100873,52.47821439230343],[6.411447508494159,52.47828406808184],[6.411436628411884,52.478398318600895],[6.411287732893028,52.47942617748846],[6.410877893932963,52.47935307673792],[6.410947943008702,52.479380118871774],[6.411144761272708,52.47947808681892],[6.411254706033235,52.479540799003345],[6.409996233033584,52.483735507881555],[6.408013098216783,52.485508051321524],[6.404840012732742,52.488346029965065],[6.404853884602311,52.48844712435993],[6.404478675094261,52.4884673225939],[6.404480657865328,52.48848053586563],[6.404537341503906,52.48893377092177],[6.404962175035282,52.48890785267066],[6.405002310768761,52.48931682902051],[6.405019359342524,52.48981397767579],[6.405194412696577,52.489824761342156],[6.40545306608186,52.48984496520842],[6.40545561804743,52.489845167999604],[6.405598926935629,52.48985469572353],[6.405596221099517,52.48985484479666],[6.40548201615047,52.4905030488795],[6.405379414368852,52.491208262637656],[6.405542347060576,52.49122636721108],[6.405804519603788,52.491249398310146],[6.40575602455097,52.491350003748515],[6.405742728129396,52.49138384977946],[6.405714456445001,52.49143556670248],[6.405699111032442,52.49146484647793],[6.405673019151761,52.491588762889975],[6.405731284839381,52.49160791905165],[6.405768347877319,52.491620732098966],[6.405765808050308,52.49162169764454],[6.405657880001809,52.491669146437104],[6.40552725446056,52.49173164719581],[6.405412355649501,52.49179163990523],[6.405336640412183,52.49183123492263],[6.405272382088736,52.491888770351196],[6.405251240674322,52.49192789671424],[6.405220961802908,52.49198392695943],[6.405156216663161,52.49208872517838],[6.405104648284083,52.492176836468154],[6.405057408142143,52.4922304057961],[6.405118818252187,52.49224477162115],[6.405215386036331,52.492257622248225],[6.405372852302348,52.49227924336826],[6.405465503736893,52.49229530013645],[6.405397841760425,52.492330403946504],[6.404906492723009,52.49258516166723],[6.404896888726864,52.49259013354007],[6.404595054960629,52.49274615724496],[6.404717977853466,52.492815100654845],[6.404863791122748,52.49289521719662],[6.404888125845901,52.49290965871149],[6.404899069597938,52.49292257038059],[6.404915112846443,52.49295229964021],[6.404914919943789,52.49295479095989],[6.404915699159466,52.49296688207028],[6.404927568730092,52.49315164448691],[6.405009265264771,52.49329547852636],[6.405059422469553,52.49338379505273],[6.405048897160514,52.49338521561447],[6.404686802297255,52.4934293624268],[6.404483836388708,52.49345017637275],[6.404288493679382,52.493476560062824],[6.404112403951229,52.493507730654464],[6.404069848313967,52.493517353241835],[6.403822344485899,52.493617812778126],[6.403680069420449,52.4936735624773],[6.403672962226352,52.49367634677326],[6.403479049531595,52.49376494940462],[6.403394787907881,52.49380004152624],[6.403358251040674,52.49381527465549],[6.40324034794247,52.49386216852737],[6.403231283735659,52.49386566162941],[6.403216220897923,52.49387148006607],[6.403152319922428,52.49389614230799],[6.4030313709725,52.49393931408114],[6.402976970315163,52.49395512253982],[6.402968076651459,52.4939577064042],[6.402965824055397,52.49395836383711],[6.402899141024143,52.49397347757754],[6.402781604857873,52.49400306603559],[6.402632204079199,52.49403400580963],[6.402526553576393,52.49405152925231],[6.402379262790834,52.494073696381896],[6.402102994569243,52.49411269628899],[6.401464587288404,52.494202681618496],[6.401379875211977,52.49421376932074],[6.401325965134723,52.49422083656827],[6.401323029450331,52.494221248149444],[6.400654282719971,52.49509805989325],[6.400698293673891,52.49511068926365],[6.400904291216092,52.495169596985676],[6.401563684311125,52.49535155434545],[6.401087551231663,52.49598613102162],[6.401085908161148,52.49598832914167],[6.400924868748167,52.49616697525006],[6.400803618759353,52.49630648906327],[6.400790139435942,52.49632553288861],[6.400729914609916,52.49645157331204],[6.400715283040425,52.49650062874439],[6.400242404920877,52.497151055575685],[6.399988350403072,52.49749822793314],[6.399962732911702,52.49753321208964],[6.39996213326172,52.49753403510489],[6.399961533611921,52.49753485812909],[6.399958535171065,52.49753896425478],[6.399934460592499,52.49757187697924],[6.399892369222147,52.49753836992202],[6.399835891494022,52.49750493173492],[6.399782573074545,52.497545059833755],[6.399737775091971,52.497597123032605],[6.399647294541635,52.49768965349713],[6.399613877140178,52.49771524883964],[6.399538934701152,52.49777123641432],[6.399424729025164,52.49788049806782],[6.399307033482082,52.49799173078736],[6.399172786434054,52.49805998948286],[6.398985713752087,52.4981970430608],[6.398976313858573,52.49820393615011],[6.398971499269342,52.49820784205305],[6.398968369835984,52.4982120211645],[6.398942278294149,52.49824693722902],[6.398920561119822,52.4982883052662],[6.398856056047405,52.49833905323271],[6.398846305730754,52.498346722218606],[6.398836873784072,52.498354145840175],[6.398828454246686,52.49836076089738],[6.398724619133495,52.498452281058725],[6.398708454365292,52.49846859722767],[6.398627910592952,52.49858620836354],[6.398616525243422,52.498604155518414],[6.398572448919323,52.49868912590461],[6.398560724121917,52.49871797833475],[6.398556081462212,52.498729396651214],[6.398555231743411,52.49873795142687],[6.398544324663395,52.49884946790107],[6.398543035877253,52.49886264622078],[6.398542237657921,52.49887087700008],[6.398541737554027,52.498876049302226],[6.398540006942506,52.49890466370499],[6.398701547037599,52.499041547308465],[6.398709902076998,52.49907261924125],[6.398716353891959,52.49936076237886],[6.398523254293567,52.50002600664603],[6.398354972360304,52.50039822995907],[6.398299781766392,52.50047516090443],[6.398161698069845,52.50066766431441],[6.398071207442154,52.500819370083136],[6.397908652962673,52.501126174578204],[6.397839142084387,52.501285350078504],[6.39779630583797,52.501335229645605],[6.397783713052962,52.50138348532771],[6.397625808354249,52.50198832547308],[6.397624160407249,52.50199419063883],[6.39757033997929,52.50208351287553],[6.397529237831785,52.502152584761554],[6.397513706226876,52.50217862928582],[6.39757901619276,52.50237068417869],[6.397576985418341,52.5026083063768],[6.397576838054916,52.50262504315536],[6.397554761134014,52.5026154254197],[6.397321539688329,52.50262519576004],[6.397208559526415,52.50264585957982],[6.397104805721805,52.502663586576304],[6.39687752274671,52.50274178448884],[6.396711856600157,52.50285901331554],[6.396601039083198,52.502977554656745],[6.396537854487423,52.50306586853416],[6.396476079986462,52.503160470910046],[6.396310938424647,52.50343483959444],[6.396209930682749,52.50361346222691],[6.396151721835354,52.50372365508881],[6.396098876032716,52.503839743328086],[6.395862260257365,52.50444792860419],[6.395731049935186,52.50476116808318],[6.395654236771609,52.504857228092064],[6.395563780782955,52.50496733532786],[6.395561645630509,52.50496994199494],[6.39545327006426,52.50509645164811],[6.395349302108881,52.50524379370522],[6.395140333307833,52.50556623195237],[6.394925915156973,52.50588689155625],[6.394751069848081,52.50602862461195],[6.39448085488987,52.506095048805804],[6.39425530916552,52.506107012748366],[6.394158462704782,52.50612123608069],[6.394010344187727,52.50614586219165],[6.393905555390307,52.506176753425336],[6.393784429897241,52.50621145925649],[6.393675584680689,52.5062530983284],[6.39346206951493,52.50633411164818],[6.393265779412554,52.50641736930402],[6.393052736559386,52.50652112630888],[6.392667986938595,52.506708263646125],[6.392501261825479,52.50676652560727],[6.39228132017548,52.50679837344178],[6.391889756313526,52.506822219633435],[6.391770884982082,52.506819541550236],[6.391611034701739,52.50678186095977],[6.390956781617773,52.50683947609327],[6.391232802793049,52.50689064465913],[6.391903569035564,52.50702856397091],[6.391961894631072,52.50698499078667],[6.392005419303409,52.507003676399904],[6.391965552999271,52.5070512546301],[6.391922650945383,52.507102013312526],[6.391777894478609,52.50728303378503],[6.391739579357069,52.507311409583636],[6.39165976672767,52.50736489854676],[6.39163331231195,52.50737981786265],[6.39155160477897,52.50783246695289],[6.391541737946085,52.50797698623611],[6.391571097595923,52.508111142807394],[6.391685174444218,52.50821048174622],[6.391998990336402,52.50841645083096],[6.39236597871288,52.50864604703794],[6.392410711318401,52.50869506548078],[6.392401696218728,52.508770119026906],[6.392279212894548,52.508879488374795],[6.391936328223557,52.50913114301594],[6.391425141479111,52.509502583594895],[6.391101709157611,52.50974204519452],[6.391011080925596,52.50982218449076],[6.390961428046126,52.50985413430255],[6.390852639553761,52.50991433020901],[6.390851563150383,52.509914932501715],[6.39077948578537,52.51005364161241],[6.390765715590009,52.510062206744365],[6.390420812494645,52.51043391640035],[6.390184566266785,52.51068851951553],[6.390367337804848,52.51079434324377],[6.390382788942548,52.51080074676974],[6.390508657919056,52.510852890440944],[6.390725345486088,52.510923868239324],[6.390921787845145,52.51098813221621],[6.39094756728171,52.510996551405135],[6.39109215221074,52.51104378151137],[6.391022816548953,52.511107454433294],[6.390941216558374,52.51118050667574],[6.39087679511013,52.51123615668792],[6.390818980605046,52.511286304069245],[6.390816462593654,52.51128829374508],[6.390789215712507,52.51131058958537],[6.390596363563709,52.51149250962918],[6.390401715465333,52.51168298300424],[6.390230183701498,52.51185095260893],[6.390121595747934,52.5119617389641],[6.390021357592139,52.5120445292269],[6.389939389572908,52.512119686989344],[6.389831872740252,52.512208290868244],[6.389665495285931,52.512327708345936],[6.389540823885436,52.51241669962222],[6.389409987737824,52.5125021656432],[6.389288979924379,52.51257607095828],[6.389150327537652,52.51265796263185],[6.389108693811843,52.51268254573161],[6.388979292478976,52.512754706032524],[6.388863377549511,52.51281354909941],[6.388655129562084,52.512914875528075],[6.388351486586712,52.51304649614278],[6.388169366477569,52.51312099699227],[6.387966109165853,52.513199558676824],[6.3877498953078,52.51327588347443],[6.387556216605837,52.51332927841817],[6.387243397620988,52.51341833497623],[6.386891825425841,52.51350383453061],[6.386624566406186,52.513560841053256],[6.386494106019103,52.513586504198635],[6.386247798255586,52.51362868310863],[6.386037253702788,52.51366149152801],[6.385736449342845,52.513700982497554],[6.385534910480762,52.51372359384669],[6.385242911293245,52.51374728064451],[6.384937852282993,52.513766097271365],[6.384687046464122,52.51377752724476],[6.384508921078072,52.51378079571443],[6.384264287510439,52.513783733238334],[6.384027821020111,52.51378039100537],[6.384006511731792,52.51378009371667],[6.383723573378496,52.51377057128459],[6.383539206071098,52.51375249955476],[6.383338088818117,52.51373182694417],[6.383029981857244,52.51368934889851],[6.382585508676335,52.51363283400439],[6.382148284557092,52.51357631054296],[6.381871613782279,52.51354149311171],[6.381676415259339,52.513514045108735],[6.381458409075079,52.513483857916704],[6.381211283639331,52.51345064280152],[6.38117297429488,52.51344513072022],[6.380982742755044,52.51341774779227],[6.380893538734926,52.51340849165993],[6.380887281747413,52.513406710560325],[6.380602263299796,52.51333341105943],[6.380439399658488,52.513289440115386],[6.379979332822169,52.513175271925306],[6.379455147123638,52.51304631403242],[6.378803974543438,52.512891685635175],[6.378797655717214,52.51289042173749],[6.378714336263386,52.51307949087746],[6.378715387865321,52.51307974272618],[6.378592322764033,52.513352205561176],[6.378554360857364,52.51343628095346],[6.378931447363366,52.51351924149787],[6.379234770769128,52.51360738368396],[6.379504670065427,52.51367403878458],[6.37977946773518,52.51375133345864],[6.380046726522861,52.51382594754895],[6.380332519499502,52.513903322395564],[6.380628713119413,52.51399268735855],[6.380974442171317,52.5141026763245],[6.381279308676379,52.5141968312435],[6.381629670147527,52.51430336948516],[6.381945525286176,52.51439477646132],[6.382065180368799,52.51442940088645],[6.38226560635662,52.51448530501156],[6.382698921703049,52.51460720280857],[6.383236752024207,52.51475133823498],[6.383394181289437,52.514791764865706],[6.383565438877307,52.51483258741995],[6.383807270026076,52.51488667613818],[6.384167086827094,52.51496588247985],[6.384361134167585,52.51500136229341],[6.384741897847648,52.51507579798043],[6.38497487334028,52.515119272173365],[6.385323723129448,52.51518109486144],[6.385368731814779,52.51518829288505],[6.385635235381904,52.51523091739338],[6.385908420223572,52.51526537798279],[6.38658285928133,52.51529970242691],[6.386728791712363,52.51530712811289],[6.387136958666042,52.515365030210745],[6.387289523065089,52.515386851809374],[6.387481864799696,52.515403430372146],[6.38815675985205,52.515494096121735],[6.388593112735344,52.515555835861946],[6.388970875481658,52.51561824860223],[6.389213113654852,52.515661869980995],[6.389274327875144,52.51567289329693],[6.389638582992989,52.51574829768658],[6.389846139852578,52.51579638125971],[6.389849869618984,52.515956055608164],[6.389852909955631,52.51626115983866],[6.389852938940258,52.51657184405652],[6.389849557860162,52.51686017722087],[6.389856089488873,52.5169343350234],[6.389866065354256,52.51708488772505],[6.389883220738919,52.517378979304006],[6.389893957736925,52.517598705332055],[6.38991319113491,52.517705354841176],[6.38994883488362,52.517943547161636],[6.390045369253324,52.518201033978805],[6.390075076346357,52.51828357925544],[6.390114330913217,52.51847895861092],[6.390137929299656,52.518565636009285],[6.390188305609461,52.51876672750619],[6.390245221993798,52.51894697465385],[6.39030226207341,52.519097632636],[6.39037236741078,52.51928182171927],[6.390442820098937,52.51942162567218],[6.390548809156948,52.51963197148645],[6.390691845870395,52.51991771778407],[6.390692397429643,52.51991864785818],[6.390817845848901,52.52012609648552],[6.390819820745623,52.520129360363754],[6.390903652174503,52.520254139901496],[6.391124574152067,52.52055781357953],[6.391208604946522,52.520568858525465],[6.391413292265804,52.5205953028978],[6.391395895153321,52.52067320437743],[6.391358881086723,52.52083894873979],[6.391455542914738,52.520951153068445],[6.39156721466932,52.52107867147201],[6.391689706864469,52.52123682767664],[6.391785930471776,52.52136400929806],[6.391864960341348,52.52144787103633],[6.392043318496327,52.521623700263575],[6.392050631011162,52.52163035228786],[6.392173588159571,52.521742126609595],[6.392324672585378,52.52188033846724],[6.392465703786977,52.52199568932409],[6.392644107942254,52.522135170280876],[6.392646297919192,52.52213686838688],[6.392699587668176,52.52217863277288],[6.392741655703984,52.52221161228254],[6.392911675324265,52.52233742140263],[6.393184451188359,52.522526298743834],[6.393431262328588,52.522695613412886],[6.393640820474699,52.522836302607416],[6.393870181124598,52.522973632730114],[6.394103176313547,52.523118427422766],[6.394283319888206,52.523226514454365],[6.394311287137493,52.52324329110566],[6.394538303474867,52.52333324672403],[6.394854794086636,52.52345549038619],[6.395044885035066,52.52353379579994],[6.395229475964621,52.52360739306615],[6.395333041756003,52.523661177301705],[6.395442278929056,52.523738740134974],[6.395555272103967,52.52382395553797],[6.395665048642139,52.523976679245635],[6.395688242493273,52.524008928332194],[6.39412240464955,52.52435005346244],[6.394113424635964,52.52434139346367],[6.39387050963162,52.52439638467591],[6.394015045000729,52.52460796415285],[6.394807791766384,52.52443733943689],[6.395136469228694,52.52463342214202],[6.395651082229788,52.52429924726459],[6.395687653805467,52.524332038769685],[6.396300700387378,52.524882429531644],[6.397900499717283,52.5263555321739],[6.397895110742548,52.52635701614629],[6.397828408136486,52.52638892513222],[6.398223009973298,52.52674946423665],[6.398474559194787,52.526973176706306],[6.398880987240255,52.52732715055993],[6.399299276917809,52.52768784363213],[6.399660728035683,52.52797636229774],[6.40003475169103,52.528281454034456],[6.400093827935153,52.52832749791237],[6.400189788045185,52.5284023025981],[6.400589496360879,52.528742279966885],[6.40131541042665,52.529345428420235],[6.401921505199541,52.52984887016279],[6.402205720151844,52.53008476155517],[6.402361408711976,52.53021356499621],[6.402870027449884,52.53061478093492],[6.403340953131363,52.53099859346186],[6.403509475649129,52.53113275010176],[6.403787250687648,52.531353862921655],[6.40408032986786,52.53140372369577],[6.404517819157774,52.53147814978969],[6.404345383427774,52.53172337051618],[6.404322977923586,52.531752881031565],[6.40461695718562,52.53198864705618],[6.404971116214523,52.5322780930306],[6.405479421740741,52.53267005205328],[6.405602446782292,52.532774280136344],[6.405782896582071,52.53292716081049],[6.405936711401574,52.53305690144784],[6.406187695105886,52.5332605146395],[6.406344091813382,52.53337878200479],[6.40689237588045,52.53375018686083],[6.40764212526164,52.5342549714386],[6.407872100508894,52.53433156529552],[6.408568271451383,52.53452402683597],[6.40899155770342,52.534633288041285],[6.40991790982141,52.534863467644584],[6.409919697011072,52.5348725299795],[6.409919297033661,52.53490232823719],[6.409919203398402,52.53490909693514],[6.409916147980129,52.534916538280825],[6.409910288882386,52.53493083456297],[6.409908949859086,52.53493410869581],[6.40989966060781,52.53495939077702],[6.409874733992403,52.5350158697407],[6.409835077905464,52.53511410753111],[6.409473488166745,52.53582946781376],[6.409737835450262,52.536009841580196],[6.40984581845535,52.53609191398717],[6.409873165788298,52.5360749788246],[6.409948051499262,52.535901136967695],[6.409999759390868,52.535781044617345],[6.410151769020309,52.53548041984209],[6.410258098316388,52.5352687283365],[6.410272889468077,52.535239183481586],[6.410545987064928,52.535404739916665],[6.410585118524815,52.53541992448273],[6.410718956745812,52.535523694525686],[6.410853473233372,52.53563507130066],[6.4110074513552,52.53578730968127],[6.4111544762339,52.53598094307707],[6.411162481376419,52.536001968552576],[6.411292368692035,52.53634242288724],[6.411470790039214,52.5367549902493],[6.411549204167018,52.53700186643976],[6.411581052838375,52.53713753311747],[6.411621075484275,52.53721640671615],[6.411808383440145,52.53758545839256],[6.412322084023336,52.53855383307558],[6.412770114014174,52.539398830325204],[6.413132598769401,52.54010286266714],[6.413639631811489,52.541059011646645],[6.41426363396228,52.54224570952929],[6.41450922155953,52.542701093168276],[6.415077480299209,52.54381794812947],[6.41531627446736,52.54419997598844],[6.415409322714031,52.54436860904323],[6.415710371442284,52.54502970020185],[6.41587877408422,52.54544239236988],[6.416247170779295,52.54616424945004],[6.416949995382271,52.54754136708793],[6.417832935814679,52.54922592795662],[6.418552071348175,52.550588873060704],[6.418970462368324,52.551437231366364],[6.419371726636584,52.552224089400035],[6.419842406798296,52.553063019897905],[6.420030551377437,52.55344430125561],[6.420180003101538,52.553758069802036],[6.420342270144554,52.55405481146672],[6.42083687490846,52.555034557997445],[6.42087628965835,52.555111878785965],[6.421302382056747,52.555947830148014],[6.421898434900251,52.557079975953606],[6.422035661611915,52.557285203511505],[6.422089900903972,52.557390167047345],[6.422386496451668,52.557641801933876],[6.422412043796176,52.55769732174398],[6.422475679941226,52.55779796091701],[6.422510389968113,52.55783484086213],[6.422583264265129,52.557887386287],[6.422994831263761,52.55818412436687],[6.42289999659883,52.558140318258616],[6.422792647727439,52.558145730868986],[6.422572021859454,52.55817603021113],[6.42241220680316,52.55820672457003],[6.422418162834821,52.55822360571803],[6.42269799993219,52.559015924032146],[6.42288977201006,52.55955575058032],[6.422979797213657,52.55992827515264],[6.423067711885156,52.56030506031469],[6.423126912448739,52.560651025007786],[6.423168376055274,52.5609525917459],[6.423189595230577,52.561111239669],[6.423333612810224,52.56112519905149],[6.423268596876308,52.56158489246604],[6.423253000828198,52.56168812812553],[6.423233674712315,52.56179706766382],[6.423249713280818,52.56195238134691],[6.423262672482776,52.56226093764146],[6.423260152424337,52.56276744231983],[6.423240252445592,52.56333707645262],[6.423195987258987,52.56389794428682],[6.42316997978389,52.564079725558365],[6.423168650454068,52.56408905753639],[6.423095907923692,52.56448443809465],[6.423030917658832,52.56480367784688],[6.422910361327713,52.56531795302542],[6.422871813062235,52.565475801132614],[6.422956403523378,52.56548720563669],[6.422915597054651,52.565667587947935],[6.422910847183944,52.56569016187589],[6.422907309559077,52.5657109726177],[6.423103010368323,52.56575383566355],[6.423209420775843,52.56577548447877],[6.423287243150853,52.565791963054814],[6.423517785824904,52.56583932980784],[6.424097687403084,52.56597824202117],[6.424431907188893,52.56609519293655],[6.424520982947883,52.56612664499569],[6.424888922900393,52.566257383917055],[6.425414898837174,52.566435300928156],[6.425478924121003,52.566591075346366],[6.425540537186098,52.56661312287825],[6.426087793998208,52.5668062559507],[6.426587616164785,52.56699610784942],[6.426594745195493,52.56699881367423],[6.427121641638881,52.567192569670645],[6.427243040327776,52.567237209277685],[6.428095506914315,52.56755090002137],[6.428144802651509,52.56756904563914],[6.428976536311474,52.56786184440496],[6.428930036749442,52.567942064405536],[6.428925113700242,52.567950951653714],[6.428671303123328,52.568410290874255],[6.428669266754357,52.56841400272985],[6.428203613780981,52.56922228225255],[6.428198167159046,52.56923274687388],[6.428027892257528,52.569524753540854],[6.427840489461046,52.56986924618444],[6.427537044464131,52.57040151351286],[6.427473668754516,52.57051191809728],[6.427426477607367,52.57061869355571],[6.427397676418391,52.57069902745493],[6.427379868302078,52.57077013340378],[6.427290679318879,52.57117942052945],[6.427463683343903,52.57118817783267],[6.427465652226736,52.57128346749104],[6.42746912088481,52.571435421236465],[6.427474875696519,52.571539863264526],[6.427471662589419,52.5717030923284],[6.42746451676657,52.57186720075501],[6.427440368593167,52.57201407568055],[6.427241463031506,52.573031954676274],[6.427221456231404,52.573134339435065],[6.427218390921094,52.57314947480727],[6.426995925634513,52.57425467838398],[6.426990827798467,52.574279960854696],[6.426986773577315,52.57430008414663],[6.426747997660645,52.57548606842832],[6.426569441614263,52.57640602463144],[6.426505142034698,52.57662284330498],[6.426264568438368,52.5778093628397],[6.426260576591146,52.5778290271352],[6.426231876099526,52.5779739820725],[6.426228963299091,52.57798872959652],[6.426228567411932,52.577990710361306],[6.426212638683566,52.57806914258923],[6.426034777281222,52.57887677955279],[6.425481210031904,52.58160853062966],[6.425455106437155,52.58161031377172],[6.42539676246561,52.58192387805964],[6.42537261233154,52.58203612215653],[6.425295282339331,52.58239560923629],[6.425241088911304,52.58268753038464],[6.425085557445372,52.583463701115406],[6.424942152479653,52.584172959176456],[6.424790016839024,52.58495466294643],[6.424646409578428,52.5856281597214],[6.42457601678271,52.58596379463753],[6.424265207613945,52.587451984429535],[6.424056413078712,52.588338457626634],[6.424039220994059,52.58844315366377],[6.423969689324183,52.58878377762546],[6.423923648321312,52.588780081172565],[6.423904609441408,52.58888094650908],[6.423806354784141,52.589370047653695],[6.423697807722967,52.58993422353352],[6.423606778020777,52.59037745953447],[6.423602197432063,52.59040293494972],[6.423585727476894,52.59040166758447],[6.423505041796091,52.590508094981026],[6.423427460417297,52.59056331879736],[6.423366057278062,52.590598628278414],[6.423273832705974,52.590638035449025],[6.42309183254561,52.59069173430003],[6.422990994728462,52.590706284258786],[6.422901632220664,52.59071241134243],[6.422800490872549,52.5907134281805],[6.422476211389824,52.5906799539517],[6.420980159524081,52.59038242284634],[6.420993806467669,52.590353956604226],[6.419860379728637,52.590131052434934],[6.419784233453569,52.59011608479048],[6.418291961978404,52.589822711406605],[6.417607390172087,52.589697908053125],[6.417598943943181,52.58971977668529],[6.417539287177809,52.58970939214849],[6.417431839000511,52.589712607216704],[6.417357136635296,52.58971829739875],[6.417229750271922,52.58972590052341],[6.41711132456703,52.58974372578045],[6.416995863602019,52.58976716955919],[6.416874782363776,52.589800188969875],[6.416732488058331,52.58984177778175],[6.416696448354791,52.58985117683938],[6.416660579084045,52.589864079667365],[6.416543530627481,52.58989918489173],[6.416405394255491,52.58992990698183],[6.416267118593098,52.589953412952894],[6.416161445600618,52.58996694743283],[6.416098435129226,52.58997156483428],[6.416023280026852,52.58997495722595],[6.415893732756786,52.5899791712841],[6.415794988623364,52.58997597309865],[6.415559367498899,52.58995064590191],[6.415306390526502,52.5899221071053],[6.414716397610306,52.58985636281145],[6.414198958303107,52.58979710649565],[6.413470053196733,52.5897141323111],[6.412127488560268,52.58956767714487],[6.411438508874599,52.58949035879022],[6.41140967000541,52.589488333629916],[6.411377180264165,52.589490501258744],[6.411339734927176,52.58950168141745],[6.411298483764176,52.58951800843344],[6.411259792818585,52.58954353477129],[6.41121882513677,52.58966854837211],[6.41103548801758,52.590266431525045],[6.410953973331401,52.590521982352996],[6.410937755699845,52.59057283114857],[6.410900771317589,52.59069088069349],[6.410756707749284,52.59115078606828],[6.410702796102884,52.591322872034624],[6.41049841527963,52.591957623455905],[6.410300311638605,52.592611895634086],[6.410290045463703,52.5926458140046],[6.410100858153386,52.592622385785276],[6.410088860274251,52.59265927601682],[6.410110231444454,52.59266312745751],[6.410091124860338,52.59273835780461],[6.409992931270656,52.59302667696641],[6.409918639320125,52.593244811550605],[6.409445762731133,52.59459825963744],[6.409427313369608,52.59465801620365],[6.409252060957749,52.59457652262428],[6.409086810900425,52.59455651777079],[6.409076657153319,52.59459025528114],[6.408929400378407,52.59515817315054],[6.408833938942723,52.59543884602955],[6.408811397055855,52.59551883319188],[6.408730089205105,52.59575181203676],[6.408677233485632,52.59590127456976],[6.408675026238288,52.595907926541116],[6.408628505368359,52.596048625411925],[6.408558817334224,52.59628885615412],[6.408493268983255,52.59650205199434],[6.40780645650872,52.59643093095082],[6.407131042822519,52.596357982421814],[6.407084269279409,52.59641343404482],[6.406722869153049,52.59682689048315],[6.406299548011785,52.597327905427925],[6.405981751270578,52.59738414491139],[6.405605060682022,52.59745058626789],[6.405265986765376,52.59751039462707],[6.404583586673311,52.59763326244137],[6.40457209090639,52.59763528429938],[6.402259089647766,52.598041466568006],[6.402093818566915,52.5980209668209],[6.401404363162341,52.59794395330915],[6.39994984628338,52.597781715091315],[6.399948403716718,52.59778252730058],[6.399932397588539,52.59796069285877],[6.399915790443451,52.598144822418135],[6.399913879642936,52.5981669934798],[6.399898995656911,52.59833876815548],[6.399894773271718,52.59838750868668],[6.399873692469051,52.59863129200043],[6.399852287054628,52.598887283423885],[6.399831409705949,52.59913158624357],[6.39980975724792,52.59937685735789],[6.399806294305784,52.59941562398426],[6.399806736919396,52.599490074600084],[6.399750985680187,52.60022703162634],[6.399750529707826,52.60023287755683],[6.399649571380983,52.60153259096305],[6.401106058578965,52.601693648217285],[6.401074013500153,52.602113657704805],[6.401414181591425,52.6021546946128],[6.404098589740999,52.60246204213905],[6.404100306913291,52.60246225214919],[6.405155746738782,52.60258557392982],[6.405725366108006,52.60265215229227],[6.407268925351527,52.60283253818318],[6.407280007489276,52.602831723973864],[6.40731789596004,52.60282894494015],[6.407323573591935,52.602829336577884],[6.407392341050773,52.60283407566902],[6.407548695348675,52.60284983631294],[6.407554643466431,52.60285043236103],[6.407628137741634,52.602857845025255],[6.407674465900167,52.60286571571453],[6.407680527122296,52.60286673318121],[6.407704312024902,52.60287834772491],[6.408165191978841,52.60293236704986],[6.409166853165634,52.603048934324576],[6.409920255722933,52.60313578746731],[6.410489593410555,52.60320041316118],[6.410862936551154,52.60324280001441],[6.411324847060599,52.6032938233271],[6.411323039968399,52.60330498367721],[6.411539723055538,52.60332297814585],[6.411564206753837,52.603325867789785],[6.412880703601555,52.60348109484248],[6.41288594368443,52.60346523117965],[6.413533188340654,52.60353801349634],[6.414031877535977,52.60359598856926],[6.414144808846407,52.60360867362547],[6.414532416742154,52.60365727101106],[6.414646365503093,52.60366293637122],[6.414759581319776,52.6036624962889],[6.414967529815946,52.60364766494553],[6.41521715734345,52.603603352264955],[6.415559364511761,52.603616837630625],[6.415561913571158,52.60365645151118],[6.415736738447115,52.60367713755868],[6.415874140917661,52.60371360634261],[6.415875579218395,52.603714510645474],[6.41593612878082,52.603673855981555],[6.415941834644732,52.60356361679504],[6.416610812730901,52.603576272891814],[6.418256568936702,52.60361071228363],[6.418252992212201,52.60367230937887],[6.41844288081171,52.603676817575014],[6.418479895253182,52.60369155068364],[6.420264481461341,52.60440171405434],[6.422131382279061,52.60514447827212],[6.423977932240218,52.605879212173384],[6.424006038597243,52.60589039927168],[6.424586705760088,52.60612139282538],[6.424596601293796,52.606125332935],[6.425092358166795,52.60632255259651],[6.426435245206877,52.60685622427418],[6.426438538827539,52.606857534652114],[6.427967423986399,52.60746508584399],[6.427967707211478,52.60746520021228],[6.429378327480141,52.608025730021815],[6.429395243574483,52.60803245723204],[6.429380395382703,52.60804759706343],[6.429402210141251,52.60807104343372],[6.429546846585608,52.608125138968056],[6.430545141386424,52.608522621437004],[6.430704787749241,52.608574516521436],[6.430860496277642,52.60860352723057],[6.430987889459534,52.608615170518256],[6.431100203858167,52.608619756021184],[6.431513058458303,52.608628341596784],[6.431686472298308,52.60863194899547],[6.432069018667103,52.60863874093879],[6.43255384463128,52.608681391584525],[6.432739410455384,52.60874285251167],[6.432985915928136,52.60884008722847],[6.433161156866857,52.6089311182228],[6.43332958209336,52.609018613872536],[6.433746419592576,52.609231816835326],[6.433772981476614,52.60921261865448],[6.434097644378707,52.60938025561524],[6.435075716759707,52.60989283193494],[6.435100237621198,52.60986852848773],[6.435424887937607,52.610035218226734],[6.436143999860704,52.6104044240373],[6.436159537602475,52.610393501533714],[6.437693969627307,52.61118982926271],[6.437661465289938,52.61121366459818],[6.437939388936054,52.611353716596916],[6.438183778773995,52.61147688001196],[6.438495868712628,52.61162978649765],[6.4386993724372,52.61147087944297],[6.438884454125893,52.6113319980551],[6.438846161873568,52.61131130569338],[6.439749411974934,52.610648008768685],[6.43985547661898,52.61058855863604],[6.440201570303059,52.610335991149086],[6.440212404884214,52.610326008555916],[6.440453972520352,52.61020036622485],[6.440747532063127,52.61005530706751],[6.440878205409756,52.610001992130066],[6.441001044833945,52.60994647261822],[6.441173191604638,52.60987223440843],[6.441348182910924,52.609811991585744],[6.441580486128863,52.6097405444448],[6.441793446011853,52.60967520045487],[6.441823011338076,52.609676735536276],[6.441861702167583,52.60966476189211],[6.441840501683646,52.60964015284338],[6.441882469766893,52.6096275478986],[6.441895336955143,52.60965436101778],[6.441939084162825,52.60964083247508],[6.441927897336553,52.609613905593584],[6.442358132363324,52.60948474153224],[6.443283197008515,52.609180634932606],[6.443301989479417,52.609198389460786],[6.443375820993283,52.609168073430695],[6.443859546138398,52.609010350478854],[6.443881950742524,52.60897806486466],[6.444225040189762,52.60886626051948],[6.444344222377986,52.60883212497126],[6.444518449626254,52.608782220163356],[6.444807956454665,52.60871953281775],[6.444878148164854,52.608704329695165],[6.44524308290589,52.60864778240264],[6.445912433029032,52.60855988629395],[6.446658148897825,52.60846195801051],[6.446768838060214,52.60844741719672],[6.447334126655185,52.608366876426196],[6.448105323408146,52.60825995752657],[6.448407328211524,52.608214478133895],[6.44904633618088,52.60811658927949],[6.449535100023415,52.608041719154876],[6.450076765541486,52.60797377962729],[6.450139410808568,52.60796961498259],[6.45059281546912,52.60793950146584],[6.450898243221614,52.60794422676023],[6.451324746745273,52.60797393134498],[6.451498951877504,52.60799807569594],[6.451722878881649,52.608039210591436],[6.451882714912526,52.60807354948897],[6.452095233574173,52.60812702724745],[6.45210240817309,52.60812883238883],[6.452087220944223,52.60816015614078],[6.452747978069608,52.60832805467583],[6.45326451302386,52.608460034499636],[6.453496465276852,52.60850927292373],[6.45374811338203,52.608536583578065],[6.453839600579667,52.6085528389415],[6.453875542375644,52.60856010996904],[6.454415813701663,52.60857065171668],[6.455605556204266,52.60844271148969],[6.456213299813738,52.60834055779069],[6.456891225066845,52.60826836885128],[6.457225490224745,52.60824838760748],[6.457520628371702,52.60824056883692],[6.457848162282843,52.608468154012634],[6.457868697894506,52.60851607157023],[6.457942386981022,52.6086879548962],[6.457942754037774,52.608710331194075],[6.45794529410724,52.60886211200125],[6.458280285244284,52.608904390493365],[6.458317659804325,52.608874933063966],[6.45851274523515,52.60872541465303],[6.458768776398355,52.608708185649384],[6.459369853002367,52.608964216816766],[6.459959742331754,52.609118334586356],[6.463595391460528,52.60977697674498],[6.463679042269775,52.60978767816629],[6.463721921103811,52.60979323953651],[6.463828209577557,52.60980530856009],[6.463953137622383,52.609818862347666],[6.464023993657899,52.60982738763013],[6.464071538590058,52.60983296946543],[6.464105311457962,52.609838073967154],[6.46412278716784,52.609840270317015],[6.464918526469939,52.61005369520699],[6.464954453882537,52.6100653769802],[6.464954796234758,52.61006549071552],[6.465061104683285,52.61009702601974],[6.465227013355113,52.61014045054093],[6.465319223944014,52.61016362012126],[6.46542178898902,52.610189383009036],[6.465573733847661,52.61022990487635],[6.465689257505235,52.610260888631544],[6.466098472398333,52.61037540722672],[6.466124647934707,52.61041929956255],[6.466142948310015,52.6103286262706],[6.466617256564382,52.61049409691849],[6.466901245234435,52.61059307821009],[6.467568767981649,52.610840285425084],[6.467745631193408,52.61089368213003],[6.467814557899544,52.61050172655605],[6.467841119409427,52.61035075960276],[6.468005232075815,52.61036598390239],[6.467937396029189,52.610700048306505],[6.467911523365067,52.61089109455909],[6.467934229957713,52.61097402509114],[6.468292958722127,52.61132047613912],[6.468402904042486,52.611426520175186],[6.468567415361208,52.61158401686859],[6.468741213943408,52.611686783004686],[6.469130784930051,52.61184582487428],[6.469379826054997,52.611934063597666],[6.46951906748453,52.61197036408577],[6.469606126211896,52.61199213025143],[6.469697773619407,52.61200235016401],[6.469869155118242,52.61201867412328],[6.470428432980761,52.61205366135932],[6.470534062359601,52.612062045473536],[6.470646216312588,52.61207756021727],[6.470736815855738,52.61209318159198],[6.470746869366655,52.612095516564004],[6.470844478439407,52.61211817429127],[6.470951059780532,52.61214722127468],[6.47106846890077,52.612184258373716],[6.471411738305792,52.61230929201376],[6.471637541677528,52.61239495189193],[6.471867438713264,52.61249090994365],[6.472970471036093,52.61298442008068],[6.473110815191055,52.613089103456595],[6.473594359395595,52.61326156241137],[6.473934685302028,52.61345213676324],[6.474220665689012,52.613612379312706],[6.474288422331208,52.61364753074828],[6.474370026440878,52.61374115587271],[6.474444694598414,52.61388274935821],[6.474471503980177,52.6140236124214],[6.474468818543789,52.61417193564195],[6.474431634127581,52.61431644020627],[6.474314392096432,52.61473490630558],[6.474275893203754,52.61479035377781],[6.474233071089097,52.61494578505974],[6.474217004579841,52.61501271138592],[6.474204181419331,52.615079428268444],[6.474195956810441,52.61515895561926],[6.474198209471845,52.61522625356672],[6.474216506127569,52.61527354172892],[6.47425639194594,52.615345977900496],[6.474309835412534,52.615417301361454],[6.47444066695402,52.615566245198366],[6.474476660413037,52.615607214727234],[6.47478138002837,52.61595746610885],[6.474716512355289,52.61597963063134],[6.475036656823815,52.61633243649822],[6.475117682115922,52.61638445293937],[6.475182744087935,52.61641792085057],[6.475267164903125,52.61644599856759],[6.475342675487541,52.616466068766655],[6.47588120822959,52.61647776258745],[6.476425141854294,52.616498841583535],[6.476845657545765,52.61655097948067],[6.476919281752616,52.61656639236697],[6.478194244466944,52.616709730765834],[6.478253254557441,52.616695527406605],[6.478336561565981,52.616702401986856],[6.478301001129934,52.61673328705278],[6.479183454380387,52.61704253860079],[6.479309914977141,52.61709242689241],[6.479424375899767,52.61715860339184],[6.479945768287552,52.61749777196905],[6.480279008649935,52.61771454800336],[6.480444500829217,52.617789960853614],[6.480481643373444,52.61815569201304],[6.480523523256544,52.61815034534691],[6.480547929292741,52.61814780190978],[6.480564706206924,52.618146667830835],[6.480581744092198,52.61814652903811],[6.480597923842758,52.618148105776626],[6.48078004326308,52.618183585168524],[6.480987559550478,52.618228447391616],[6.481025034808517,52.618230663902324],[6.481072229619678,52.61823655678308],[6.48112567389629,52.6182407833245],[6.481156753831347,52.61824651899734],[6.481189097137736,52.61825436411316],[6.481234965098379,52.61827222293453],[6.481316319080971,52.6183055375336],[6.481364730127301,52.61832292347827],[6.481401898887562,52.618328845683536],[6.481430401891812,52.61832893368237],[6.481507618910683,52.61831642151667],[6.481576865856428,52.61830289520895],[6.48164978994647,52.61828818453152],[6.481708355826535,52.61827508008944],[6.481716597073873,52.61828533740301],[6.481767606558114,52.61827526222506],[6.481805627920721,52.61831665127623],[6.481884981519447,52.618387076548835],[6.481975695329552,52.61844815763525],[6.482070878130717,52.61850960190309],[6.48215679081917,52.61855338068383],[6.482255106156613,52.61859351283234],[6.482433943470711,52.6186660945939],[6.482828340444668,52.61881398354918],[6.483082051553975,52.618905584102976],[6.483158656695021,52.61893371035602],[6.483352673462043,52.61900492840313],[6.483479517113181,52.61905554577538],[6.483561202472588,52.619080694864515],[6.483616291550927,52.619098135117966],[6.483636430856618,52.61910451034994],[6.48372476285367,52.61912377390553],[6.483805392342839,52.61913794948356],[6.483902091147947,52.61914272824329],[6.483968822934063,52.61914558151241],[6.48408474037019,52.61913993662138],[6.487404628716031,52.618929511446645],[6.487528308348934,52.61892427662471],[6.487583433935471,52.61901635845426],[6.48765420230029,52.61913457567302],[6.487700562793879,52.619222774991485],[6.487752906033654,52.61935060901102],[6.487917761858437,52.619768839177944],[6.487927853585083,52.619794441820055],[6.488149557197994,52.620356821621044],[6.488233570393507,52.62056511734982],[6.48832586610173,52.620802798265665],[6.488372535556893,52.620917975811665],[6.488495940711046,52.621237336978254],[6.488583014884181,52.62145568835899],[6.488632596921457,52.62159159164182],[6.488741478890354,52.62185805914309],[6.488822019593181,52.622057794258005],[6.488880308873516,52.62221108897701],[6.488926110021318,52.62234278494025],[6.48899933084874,52.622553283275],[6.489167117997967,52.623062836340296],[6.489245111217255,52.62330752476785],[6.489316599744803,52.623503568621295],[6.489360204416736,52.62362529932612],[6.489454914162138,52.62387925171833],[6.489465179319358,52.62392526389135],[6.489466265576244,52.62392735696754],[6.489522323333659,52.62401968083003],[6.489549640456324,52.624097854919995],[6.489659642343035,52.624371411465404],[6.489863106046012,52.62487540150618],[6.489914137810595,52.62500636542114],[6.490003338062435,52.62523530152493],[6.490101189530394,52.62547700980934],[6.490225447472397,52.62578340970066],[6.490312634932499,52.625996734473574],[6.490357989242336,52.62609967302485],[6.49047329700928,52.62638827899129],[6.49061613771803,52.62674579021083],[6.490736541971171,52.62705195564609],[6.490879787921144,52.627402488258696],[6.490936986738234,52.627518214019354],[6.491042109744623,52.62766549114801],[6.491072500436228,52.62769995559916],[6.491373794732079,52.6280416043432],[6.491429119389411,52.62810434629547],[6.491441099601218,52.62811793237582],[6.491830668074074,52.62856601988208],[6.492239227004829,52.629045350853104],[6.492431821481955,52.62926043500507],[6.492476865034634,52.62932068362007],[6.492499556688537,52.629346689934245],[6.492612639222817,52.62946116707491],[6.492869735505497,52.62975824826949],[6.492879958596168,52.629770061975705],[6.493131307516455,52.63004814199173],[6.493425114631296,52.63033453538685],[6.493889935137585,52.630748975408835],[6.494148587675103,52.63097517065277],[6.494357429901338,52.63115780728023],[6.494600599816651,52.63138490978557],[6.494647265473454,52.63144014521984],[6.494689470802176,52.63150890391926],[6.494786764572043,52.63170340061054],[6.494941647316147,52.6320237376712],[6.495041152655022,52.632225601480044],[6.49514652779541,52.63243937319076],[6.49515295684277,52.63245592271305],[6.495150311057055,52.63246876394337],[6.495176494213281,52.63246552689542],[6.495220733521554,52.6325598367024],[6.495200640042339,52.632562630479924],[6.495106887590412,52.63257459549616],[6.495050123664383,52.632581838579476],[6.495002518597313,52.63258791768688],[6.493278654219119,52.63280794379375],[6.493212385690843,52.63281673046111],[6.491908244734917,52.63298040378069],[6.491615878569537,52.63301709502704],[6.49122711372162,52.633069304283175],[6.491031401095198,52.63309480511122],[6.490476256934198,52.633167116951356],[6.489960449439367,52.6332317630937],[6.489706337296889,52.63326361874112],[6.488738580524014,52.63338537161237],[6.488703194120294,52.633389824989415],[6.488612691261605,52.63340132328829],[6.487523706686039,52.63353962173659],[6.487506138994181,52.63354185158102],[6.486869072859987,52.63362134020359],[6.487017864512716,52.63362150016146],[6.487138708394881,52.63363353983659],[6.487264860862251,52.63366705596199],[6.487386891875075,52.63372123703681],[6.487487009972993,52.633788778970015],[6.487543249300886,52.633856718115915],[6.487564021529034,52.633888693008124],[6.487566602980408,52.633892677678894],[6.488035128971766,52.634657790643644],[6.488062427888176,52.63465420328786],[6.488324734656642,52.6350833209563],[6.488299523794129,52.63508652950425],[6.488555887546696,52.63539078072388],[6.488558681837168,52.63539381965758],[6.488664121647757,52.635508470098735],[6.488675413676874,52.63551989675814],[6.488760777754941,52.635606241960765],[6.489077737138251,52.63595372779818],[6.489092752157168,52.635968687999245],[6.489529795175851,52.63640404709051],[6.489665432799959,52.636539169323704],[6.489957050412574,52.63684405217758],[6.490065766987075,52.63695770929477],[6.490166413032552,52.63705114684174],[6.490235463459434,52.63711590099894],[6.490288795798818,52.63715830460599],[6.490359154506881,52.63720334535246],[6.490462897314893,52.6372529205701],[6.490507043348894,52.637272454588846],[6.490597800419594,52.63731260522339],[6.491330780995057,52.63759865525568],[6.491412105255094,52.63764905808353],[6.491526905076298,52.6377199744479],[6.491788974336561,52.63788457668433],[6.491800457590465,52.63789179501469],[6.491883261608217,52.63793930765755],[6.491935345130258,52.637980706524104],[6.491975260521656,52.63801879418546],[6.491993468587661,52.63805435128841],[6.492011071383054,52.63808874563211],[6.492223845623656,52.63852745571855],[6.49222621403095,52.63853234102782],[6.492420705814932,52.638938271608446],[6.492451702556694,52.63900296490186],[6.492702075548028,52.63951706436121],[6.492766865596926,52.639647134796036],[6.492970292424527,52.64005546194175],[6.493090981866841,52.64029210134453],[6.493132569133177,52.640373637873026],[6.493260876132875,52.64062523375674],[6.493304860156976,52.640719213920164],[6.493320752994755,52.64075133208638],[6.493352086430302,52.64081461993602],[6.493594024965719,52.641309759834186],[6.494062190703858,52.64227100117065],[6.494107831547171,52.64236433644897],[6.494169626085657,52.64249070408757],[6.494259834441715,52.64267519153195],[6.494352671437869,52.64286487631707],[6.494373916960774,52.6428618742318],[6.494462036581883,52.643037869573085],[6.494439142005668,52.643041102732795],[6.494633080176526,52.64343633924816],[6.49466665955145,52.64350651736076],[6.494847019086632,52.64388341916028],[6.494897718876387,52.643989748215475],[6.494922757005458,52.644042264031995],[6.494949230071646,52.644097777351],[6.494969236116698,52.6441376403605],[6.494988169418096,52.64417539226242],[6.495022209641716,52.64421924081911],[6.495046399435218,52.64425156005109],[6.495066732736543,52.64427684183946],[6.495107085571232,52.644313189686734],[6.495118000115442,52.64432061970143],[6.495223447929336,52.644392410638105],[6.495349584065338,52.64446953605772],[6.495623408531181,52.64463697732437],[6.495749128436389,52.64468874276832],[6.495809740906885,52.644709873912056],[6.496128587165305,52.644824980805204],[6.496515642634312,52.64497056587852],[6.496561649065248,52.644987869346885],[6.49658766579379,52.64499765687181],[6.497702232514025,52.64538946911577],[6.497750033979098,52.64540701599381],[6.498148808925063,52.64555342106345],[6.498841782631759,52.64580430667465],[6.498861034750259,52.64581008552451],[6.498968210259571,52.64584228390817],[6.499865381230006,52.64617394089908],[6.499951954733011,52.64620477637185],[6.500446391194763,52.64639134327691],[6.500594701115534,52.64644837460538],[6.500722866801305,52.64649766725835],[6.501823207485044,52.646901231611665],[6.501972211747572,52.646949374826335],[6.502548823643793,52.647166170148914],[6.502666417663495,52.6472103919501],[6.502764454727148,52.647257241889136],[6.502894355227316,52.64733802700226],[6.502942507414594,52.64739835028892],[6.50294847452442,52.64740580807468],[6.502965832653782,52.647430073860455],[6.502981229603935,52.6474661500067],[6.502996277516126,52.64751467749649],[6.503017246005294,52.64760376507836],[6.503025357482705,52.64766370024175],[6.503026789421414,52.64767529000092],[6.50303447796777,52.64773777265168],[6.503043080143541,52.647811220773036],[6.503045924859062,52.64793322091202],[6.503044339572313,52.6479982802161],[6.503078413775357,52.64813620111403],[6.503123500050395,52.64842212793169],[6.503129906526173,52.648504539462394],[6.50318456383896,52.649207138824856],[6.503185598273921,52.64922052983519],[6.503277550188781,52.650101599287915],[6.503347119595067,52.650703341511694],[6.503419968627523,52.651437100899294],[6.503523581405782,52.652421994628604],[6.503532818172992,52.65258438850479],[6.503538246618039,52.65263812020996],[6.503594842635477,52.653197750346145],[6.503598001643909,52.653229034012845],[6.503620793673845,52.65345437656828],[6.503743816881546,52.65467070166884],[6.503746344045546,52.65469571779009],[6.503828868977625,52.65545725643701],[6.503829468574859,52.65546282319889],[6.503836978275642,52.655532129057605],[6.503907329764156,52.65617039809619],[6.503947961576745,52.656587622993094],[6.503950840189665,52.656617156651706],[6.504023467597416,52.65730647244159],[6.504082696602087,52.65786859361519],[6.504101610037397,52.65804579799295],[6.504180456000284,52.65878420000004],[6.504208736299847,52.659049036674645],[6.504266639586001,52.659591370027066],[6.504326949638014,52.660213222127034],[6.504394474122497,52.6609094876662],[6.504434179046346,52.661318955290916],[6.504456809591794,52.6615236450033],[6.50452411045213,52.662132443778326],[6.504532461289657,52.6622079970794],[6.504570893562864,52.66255567683392],[6.504588266078341,52.662745370410896],[6.504614045284818,52.66302674970314],[6.504672437261448,52.66366405111928],[6.504675180463471,52.66369403537487],[6.50477772930257,52.66456151079557],[6.504909389380535,52.66579457567404],[6.504919460496668,52.66588888807584],[6.50499510433911,52.66659732640695],[6.505106854168166,52.66770276331074],[6.50511234469693,52.667752386789815],[6.505125923690436,52.66787530105164],[6.505155424511129,52.667873244099866],[6.505305800197383,52.66785264138654],[6.505651314565647,52.66784097040155],[6.505741058812035,52.66783770850527],[6.506235685734092,52.66781972574688],[6.507909935028117,52.66776280251632],[6.509073655520321,52.66772472148788],[6.510141608444173,52.66768449566731],[6.510417860507427,52.66767408506444],[6.511716070914543,52.66762695119195],[6.513947733468687,52.66754928298365],[6.513990100956728,52.66754800968889],[6.515312561584222,52.66750823727341],[6.515406271730299,52.66750517311575],[6.515543060583346,52.66938432479005],[6.515547856264334,52.66945017730467],[6.515643812060837,52.67076820716373],[6.514236535546809,52.67081892463143],[6.513005138316417,52.67086329575676],[6.512761854182415,52.67087206101438],[6.512399231011069,52.67088565798911],[6.5118467878041,52.670906370098365],[6.511845428847891,52.670906418875134],[6.511803485106798,52.67090762447016],[6.511398617674699,52.67091937100423],[6.511231700936205,52.670925379883094],[6.511190902437858,52.67092685302861],[6.510536662271277,52.670950408634624],[6.509540270755483,52.67098627707246],[6.508253101469026,52.671032608265115],[6.506996535847938,52.671073181825285],[6.506393079191106,52.67109619137175],[6.505837562272302,52.671114837248595],[6.505707448168003,52.67111926085444],[6.505096356444152,52.671142083981906],[6.504441946463627,52.671165005417215],[6.503649750033659,52.671192434572575],[6.503220861766042,52.67120803677714],[6.502865564473337,52.6712209606742],[6.502175558650264,52.67124714256893],[6.502145024569416,52.67124819281391],[6.501930266378799,52.67125558092929],[6.501782617780719,52.67126064089581],[6.50178891973643,52.671324897889164],[6.501402926363995,52.67134011840717],[6.501411051800726,52.671398174750564],[6.501717923087165,52.67138791107987],[6.501839043512192,52.67138385478785],[6.501948336576171,52.67138041256094],[6.501976330663272,52.67160967824859],[6.501970408660483,52.67160994945281],[6.501945362632219,52.67161111897114],[6.501965819645701,52.67183876561581],[6.502113613729039,52.67348377500739],[6.502162588108558,52.67380148057925],[6.502214423941597,52.674403215586864],[6.502250199404787,52.674879533933826],[6.502241656746176,52.67503291725757],[6.502199145709838,52.67518381492534],[6.502139944166291,52.67531038654044],[6.502135653864425,52.675316124957526],[6.501921039522808,52.675603298639324],[6.501919369510278,52.67560333225992],[6.501730861714689,52.67585596375848],[6.501538392962695,52.676127407398916],[6.501498153764939,52.67619544382886],[6.501463589854589,52.67625812433486],[6.50145284614399,52.676277611445634],[6.501413463913702,52.67637303432324],[6.501412697760902,52.676374892976185],[6.501395476528821,52.67643924444928],[6.501376704652101,52.67656548176908],[6.501367781450076,52.67665559514466],[6.501378583817101,52.6768337468831],[6.501393273683432,52.67704390338934],[6.50138926897101,52.677249246818384],[6.501411731944711,52.677954219883155],[6.501414248202044,52.67803302736872],[6.501460972338005,52.67859374516835],[6.50150800797881,52.679195264114774],[6.501511962244603,52.67924796683533],[6.501519926708788,52.679353830113385],[6.501540662405869,52.67965360896977],[6.501566116419843,52.67990094538857],[6.501568530518957,52.67992440759212],[6.501587602756404,52.680211053026774],[6.501605984560646,52.68048737803745],[6.501611300597935,52.68055644352918],[6.501636508649385,52.680883817537456],[6.501652576850559,52.681110309469915],[6.501678860488153,52.68148063450806],[6.501690781670251,52.6816485745327],[6.501709947378562,52.68187821903279],[6.501735143008632,52.682179978138116],[6.501739589524095,52.68226371965649],[6.501748905822744,52.682361031906225],[6.501787609903218,52.68276559129422],[6.501836363403721,52.6834373501898],[6.501851006345936,52.68370608841126],[6.50185061746518,52.68377527026671],[6.501800780820637,52.683815615659555],[6.502194712437714,52.683825072257335],[6.502311260652475,52.683822487672096],[6.502312461428847,52.68395659057358],[6.50231261920341,52.68397445663227],[6.502754925374722,52.68395642289026],[6.503934365304944,52.683917555672764],[6.503971292920921,52.683916337135365],[6.50579667502627,52.683856168347326],[6.509053383466907,52.683749305672485],[6.509790008208329,52.6837295837189],[6.51066742400866,52.68370051035728],[6.510954841039295,52.683691332935744],[6.511083302358244,52.68369023595953],[6.511172905713818,52.68369813423675],[6.511313745136583,52.68372879935973],[6.511362568215765,52.683746852561214],[6.511405488506924,52.683765410922014],[6.511446784686463,52.68378407447841],[6.511478022046683,52.68380265334219],[6.511506948851264,52.68382341110422],[6.5115347152231,52.683850830741],[6.511559092341067,52.68387873178722],[6.511584702362391,52.68391435056312],[6.511605825417914,52.68395378660217],[6.511623021362325,52.68399002418539],[6.511638338237654,52.68403373933497],[6.511657896544774,52.684121813581626],[6.511660078983781,52.684149295300415],[6.511661367254338,52.684159178553614],[6.511680304610423,52.68430387218285],[6.511705074133197,52.68452617326627],[6.51172936906591,52.68474552188823],[6.511734314486699,52.68479022485147],[6.511773518439724,52.685108377972334],[6.51179420150143,52.68531775741272],[6.511794660498687,52.6853223997272],[6.511795896128457,52.685334844966306],[6.51184755067879,52.68576723072604],[6.511887120822621,52.68612560920753],[6.511909062678874,52.68635118145581],[6.511909505547275,52.686355769986186],[6.511918280670408,52.68644604921673],[6.511975473820053,52.686936362021235],[6.511983340698404,52.68700502545646],[6.512008421055082,52.68722374631834],[6.512067288746792,52.68777242716365],[6.512070839385843,52.6878030685759],[6.51213397388238,52.68834907554049],[6.512134178905798,52.6883507273535],[6.512138095870928,52.688383540288235],[6.512195117451832,52.68885944714989],[6.512200224272791,52.68890348342126],[6.512222077175465,52.68909197314447],[6.512222794615051,52.68909861726256],[6.512296370828204,52.689786467732645],[6.512302399320476,52.68983991437281],[6.512347073288947,52.69023555194151],[6.512348453259401,52.690247267812104],[6.51239110163591,52.69060884325089],[6.51239338355832,52.69064363994796],[6.512395947075341,52.69068249640347],[6.512437746294225,52.691070359754185],[6.512491230707719,52.691566701691755],[6.512495477264246,52.69160196513739],[6.512561143656182,52.6921476329112],[6.512562375468517,52.6921587570165],[6.512617481701817,52.69265651244246],[6.512825190904827,52.69264999036914],[6.512923406729538,52.69264690388421],[6.513805279810938,52.69261921343867],[6.516426815622959,52.69252308368219],[6.517072843193817,52.692505426921194],[6.517760629182979,52.69248031444961],[6.51851350670238,52.69245257473592],[6.518578026260684,52.69245068482854],[6.519387648279417,52.69242188753106],[6.519499421793117,52.692416851046474],[6.519698407326715,52.69241226943653],[6.519931731571831,52.69240447546805],[6.520357910480596,52.69238955029136],[6.520681164076634,52.69237459776936],[6.521108653479287,52.69236117631331],[6.521689302104498,52.69233919244027],[6.522276550669538,52.692315614825695],[6.522825169830333,52.692294650027556],[6.523524046712502,52.692269640974125],[6.524407311455601,52.69223792194583],[6.525700090161063,52.692188256745965],[6.526136561487435,52.692171648471124],[6.526137418566558,52.69217161331073],[6.527045728567321,52.69213726210991],[6.528268037143115,52.692092917828454],[6.529624795766387,52.69204313544334],[6.530448741771,52.69201221080886],[6.53138291520318,52.69197437825683],[6.532291661575344,52.69194343400965],[6.532528886237943,52.691935056485754],[6.532797989644042,52.69192725942436],[6.532858737786995,52.6919254987824],[6.534856551703412,52.69185268266631],[6.538500409157267,52.69171448928971],[6.538454658428176,52.6912315368885],[6.538449932224933,52.691181592960106],[6.538442404607287,52.69110208858588],[6.538367727703761,52.69097652490878],[6.538365392328839,52.69095289184309],[6.538362701328062,52.69092584690494],[6.538403302419439,52.690789766428075],[6.538403996822841,52.69075193042045],[6.538370282350475,52.69042166153264],[6.538346767276441,52.690189871169366],[6.538311408169952,52.68983012047815],[6.538274983712955,52.68945001385159],[6.538238016469646,52.689064411995474],[6.538217455771367,52.688849912311966],[6.538212221055837,52.68879521876512],[6.538203874963412,52.688708154567294],[6.538168170561228,52.688335698403336],[6.538159456566857,52.688244746115394],[6.538145958108958,52.68810385940246],[6.538076541594744,52.68799875457777],[6.538072891565514,52.68795654759394],[6.538070258824332,52.68792606873124],[6.538108792823765,52.68783421886431],[6.538114341962174,52.687791985790625],[6.538090335359709,52.6875390698825],[6.538068176943527,52.68728668434193],[6.538063706718106,52.687225026857],[6.538066958071789,52.687180901644744],[6.538022802043205,52.68680302660208],[6.537987740342231,52.68646118517151],[6.53822657397703,52.68646231643914],[6.539673117400016,52.686407972112214],[6.540741054343383,52.68636480537817],[6.540777044052811,52.68636330591717],[6.540861891612837,52.68635976869558],[6.541066911427562,52.68635121885854],[6.541820078435604,52.68631981376271],[6.541994028123806,52.686312561609235],[6.542339225032418,52.686298217608986],[6.542585179353334,52.686288377851994],[6.542988099808258,52.68627225785672],[6.543208020958128,52.686263460683065],[6.543521480463409,52.68625092264709],[6.543773048602346,52.68624085508657],[6.543782282793212,52.68624048669156],[6.544024217624489,52.686230799853796],[6.54421825331525,52.68622304350016],[6.544475775318654,52.68621273676993],[6.5448084262293,52.686199424421346],[6.544897472957183,52.68619586140504],[6.544901093578304,52.68623166026381],[6.546192058361043,52.68618681275953],[6.54713482462073,52.686144565509224],[6.547147632574266,52.686143991224334],[6.547323615286575,52.68615272757173],[6.547337859655797,52.68615222012752],[6.548288773951734,52.686118377684096],[6.549100734781676,52.686085157099576],[6.549808997359999,52.686060197731564],[6.549800994841125,52.685994225008024],[6.551208823445092,52.68593219142947],[6.555550752081658,52.6857403871289],[6.557890789357837,52.68563694633986],[6.557888715670948,52.68561962939882],[6.558269973302264,52.685610186926716],[6.558505538714161,52.68559759430545],[6.558518706167917,52.685728640933135],[6.558762069255525,52.685723358942404],[6.560693143446342,52.685638891182776],[6.561079066964662,52.68562529523286],[6.563302161237641,52.6855325009085],[6.564320506867811,52.68549635339046],[6.566178716622088,52.68541116036629],[6.567333883199718,52.685377342602706],[6.570328000294184,52.68526317454645],[6.570365616853146,52.68526173979661],[6.571288297151386,52.68521926692622],[6.571999995632908,52.68519701711382],[6.572568226874226,52.685171869851494],[6.573151855015359,52.685150053603834],[6.574307462037823,52.68511487840475],[6.575324422241451,52.685067505509814],[6.57658078982077,52.685000671231315],[6.577536776281371,52.68496129502434],[6.579495636394177,52.684877933131126],[6.579739906557312,52.6848703431787],[6.579789439511883,52.68550717948372],[6.579796321609067,52.685595595241274],[6.579850466249988,52.686291632636056],[6.579868667759726,52.68652564481133],[6.579897638605901,52.686899695516246],[6.579911747456734,52.687087551497534],[6.579914132320322,52.68711927244104],[6.579964538085725,52.68779077444532],[6.580013135642816,52.68843811736839],[6.580023429034129,52.6885753114419],[6.580077679702169,52.689286950026975],[6.580132609174833,52.69000063984028],[6.580137364522926,52.69012996221425],[6.580154761019573,52.690602670569604],[6.580131810213399,52.69065680045125],[6.580080432540101,52.690707233816376],[6.580003979430709,52.690742846096825],[6.579919553154131,52.69076483193681],[6.57627785892504,52.690925269250336],[6.576289815007535,52.691012834405775],[6.576332819702531,52.69136207362788],[6.576352083713146,52.69145620770005],[6.576404307056435,52.69182355490728],[6.576417463005099,52.691916078291506],[6.576477226659915,52.69253995978576],[6.576550867697651,52.693215184338015],[6.576553520089384,52.69322791147394],[6.576568352646896,52.69329874852435],[6.576573026118994,52.693338580506165],[6.576657684869363,52.694059460396154],[6.576754352799568,52.694882788374315],[6.576769907010148,52.695015175360865],[6.576816441991213,52.69541142973608],[6.57685019062643,52.69569881739299],[6.576877555977435,52.69593186593868],[6.576878727166844,52.69594178569043],[6.576880611574111,52.695957827960925],[6.576947381004687,52.69652640887155],[6.576978746676506,52.696810413878794],[6.576978253398459,52.69695053794161],[6.576964896968885,52.69699812686998],[6.576924152320224,52.69704500108087],[6.576892870707012,52.69706985049707],[6.576823434018468,52.697100653855536],[6.576748063005414,52.697119922343376],[6.576547801923264,52.6971435851569],[6.574826732463657,52.69721203669727],[6.574636547454073,52.69721939079917],[6.574642660063025,52.697282945089256],[6.57439023285662,52.69730275691443],[6.57433615413124,52.69733425040408],[6.574337840738142,52.69736708379774],[6.574341363937004,52.697435562280845],[6.574346221513714,52.697465299206684],[6.574638805182196,52.69745166568661],[6.574639044108915,52.697437525585435],[6.574644871549495,52.697479593012304],[6.574742477200137,52.69818334829708],[6.574853862214276,52.69897579175489],[6.574869992228015,52.699067818066055],[6.574898892730813,52.69933221874623],[6.574897658904894,52.69948349484841],[6.574875392028065,52.69970715255682],[6.574859001041506,52.69981003716509],[6.574647167467647,52.70124811482988],[6.574604659387354,52.70171797790245],[6.574614630796965,52.701965751317424],[6.574616890395514,52.70200771950463],[6.574721682378226,52.70268248879329],[6.574847443584577,52.70339663058858],[6.574970290331341,52.7040942278329],[6.575086691081719,52.70475523723451],[6.575453292653716,52.70474604001268],[6.575464664949839,52.70485130763066],[6.575469184905517,52.70489310940831],[6.575204949436758,52.70490356747018],[6.574766374666214,52.704920924221774],[6.573209501284645,52.704980952263185],[6.573152869566599,52.704991717837814],[6.573092642651554,52.70502604914123],[6.573083187442922,52.70503371104721],[6.57308094545044,52.70508874729801],[6.573049173041934,52.705089693112],[6.573100621243468,52.70562755447264],[6.573173278709104,52.7063873630454],[6.573182329457696,52.7064819226303],[6.57324112861321,52.707096753283906],[6.57324724324668,52.70715656856916],[6.573304444835416,52.70782939486144],[6.573407541593635,52.70889885016718],[6.573431129006127,52.7091435844298],[6.573439462222508,52.70922797698762],[6.573472063251816,52.70953243465229],[6.573487015641755,52.709675567879685],[6.573511592833412,52.70991582530955],[6.573581647361805,52.71059357401071],[6.573892885695337,52.710581940992085],[6.57392626774076,52.71087462576893],[6.573815908572008,52.71123730236856],[6.573761813098366,52.71123433662189],[6.573603338655372,52.71182632007927],[6.573623355612392,52.712134309358156],[6.573644770194854,52.71264124573714],[6.573658766121476,52.71269200364216],[6.573676074884296,52.712704908165705],[6.57369528169141,52.71270974080283],[6.573708934330028,52.713017119387345],[6.573703007817698,52.71319367924238],[6.573682850561118,52.713366093836115],[6.57368093334606,52.71337510066773],[6.573671546113654,52.71341927900056],[6.57365489013784,52.71346337703414],[6.573650567411518,52.71347482555407],[6.573633076310172,52.713548249799565],[6.573624005974639,52.71357459336793],[6.573485278449435,52.71419392672798],[6.57348302229757,52.71423529268115],[6.573478135843491,52.714308564290555],[6.573451968202225,52.71437529827895],[6.573398091243019,52.714447359576944],[6.573352963793877,52.714498724817965],[6.573289330787149,52.71455864204749],[6.57323060970949,52.7146294573163],[6.573170961498448,52.71476838166366],[6.573117004074641,52.71490102979929],[6.573025640776312,52.71506741302203],[6.572942480587915,52.715244922115076],[6.57284393609716,52.71541014540582],[6.572799988029201,52.715473452333235],[6.572710467519499,52.71560240106443],[6.572521974004506,52.71580958502555],[6.57241143514951,52.71603386879037],[6.572320987962428,52.716217372824936],[6.572179483102664,52.716223464601576],[6.572163724930896,52.716254314545736],[6.572043225815949,52.71649023732733],[6.572001247642094,52.71661890984256],[6.571984141889866,52.716701272725246],[6.571980624618381,52.71690319853038],[6.572001514301183,52.71703498398438],[6.571978551824554,52.71703638101437],[6.571982491196063,52.717124726876456],[6.571830630718379,52.71713001354162],[6.571876486438322,52.717556652713064],[6.571880670121161,52.71760087549158],[6.571889392004288,52.7177671420792],[6.572042555851234,52.717764547667784],[6.572041580627666,52.7177509050482],[6.572220614232279,52.71774275007739],[6.572546455012487,52.717727910748266],[6.572698545904042,52.71771792928072],[6.572705236631315,52.717737680531826],[6.572932892384643,52.71772354861161],[6.575546333000722,52.717634466663085],[6.576188112386363,52.71761638109224],[6.577376817802419,52.71757227737265],[6.577792835981072,52.717556836293234],[6.578593331570738,52.71753742832822],[6.5785945244123,52.717524123558874],[6.580840846648539,52.717428785501454],[6.581805367484963,52.71738458510612],[6.582241560676035,52.717367137355154],[6.582242615192182,52.71735422940752],[6.582435006415052,52.71734700342956],[6.582441431809047,52.717363916693564],[6.58306003589759,52.71734072402416],[6.584110777375264,52.7173044823248],[6.585975455581417,52.717234069263384],[6.585990640267386,52.717233493864136],[6.586043202758521,52.717231508343644],[6.588302927220938,52.71714938477683],[6.588317613498091,52.7171316835199],[6.588617509120223,52.71711611828854],[6.588638140357999,52.71713392141115],[6.589050989263296,52.71711435653691],[6.590062129261991,52.71705326959017],[6.591198272194673,52.716988365824065],[6.592112040791877,52.71694804652599],[6.592194099883407,52.71694442046329],[6.592192658265222,52.7169301894762],[6.592561006689891,52.71691632084719],[6.592562394232929,52.71693127137924],[6.592577999368221,52.71693092456942],[6.592975405419439,52.71691558290096],[6.594322572515437,52.71686695369194],[6.596144138361944,52.71680636335459],[6.596264989658548,52.71808873736516],[6.59627048927636,52.718147056831725],[6.596332571982495,52.71880583828831],[6.596389946542889,52.71941455188522],[6.596450355173935,52.72005541955117],[6.596509137188278,52.72067909214562],[6.596567312713348,52.72129627266792],[6.596623899672997,52.72189657227259],[6.596683003617634,52.722523683554535],[6.596755537416365,52.72329314963919],[6.596766775237065,52.72341243736364],[6.596772571865851,52.723473962355555],[6.59677288624725,52.72347731159104],[6.59677941909391,52.72354674725841],[6.596783642853988,52.72359149018403],[6.596787807624906,52.72363570340584],[6.596792199570608,52.72368225111777],[6.596803781612866,52.723804887760274],[6.596804764481611,52.723815303531644],[6.597144819323915,52.72385824151578],[6.597416240599195,52.7238971578612],[6.597770304137032,52.72395793604515],[6.598393740959633,52.72407556967469],[6.599043615949403,52.724196822562355],[6.59962479394292,52.72430525421664],[6.599780661308226,52.72433434136082],[6.600542233927562,52.724475910721374],[6.600750848076996,52.724514686876674],[6.601571846045293,52.72466475730014],[6.60209539512378,52.72476045415275],[6.602606257409992,52.72485445375022],[6.60370609037184,52.72505681940906],[6.603718291538739,52.725059067447425],[6.604195418708341,52.725148614615854],[6.60518168834853,52.72533372103865],[6.605213295794133,52.72533965302452],[6.60559920426596,52.72541035510624],[6.605889172063943,52.72546347874209],[6.606078541379562,52.72549817351267],[6.606315595161564,52.72554198743695],[6.606526832579489,52.725581032243845],[6.606795879666755,52.72563076391648],[6.607012718971799,52.72567106267153],[6.607734472948591,52.72580519305323],[6.608278728260695,52.72590772386865],[6.608323027009956,52.72591591555325],[6.608395494164966,52.725929309740984],[6.608420046675581,52.725933848285756],[6.608430418506367,52.7259357730717],[6.608486978680277,52.725946229645864],[6.608667447837195,52.72597960055865],[6.608755870099298,52.725996587654905],[6.609059848598083,52.72605497039419],[6.609383781172311,52.72611486414124],[6.609921905120855,52.726214367667986],[6.609975385746548,52.72622425298944],[6.610460798444476,52.72631217118348],[6.610725824105627,52.726360173772576],[6.611309715421317,52.726467181652616],[6.611818582966604,52.72655986825626],[6.611828671581009,52.72656171478136],[6.612011051969005,52.72659919538753],[6.612454742163017,52.7266802817326],[6.612653806033792,52.72672459105001],[6.613495846427313,52.72687875806363],[6.615785684516041,52.72729742090739],[6.61579775272505,52.72729963317269],[6.615874511700274,52.72731386827431],[6.61651193478126,52.72743209010692],[6.617227489336813,52.727565292593184],[6.618141555976349,52.72773422233924],[6.618499740550918,52.72780040609324],[6.619267604309477,52.72794231259053],[6.619318671923702,52.727952047978846],[6.619145336725714,52.72848431708922],[6.618924144471841,52.72916355440853],[6.618773369992865,52.729613818785225],[6.61872474295873,52.729742226507476],[6.618661804033342,52.72986606373215],[6.618605403376077,52.729959652423304],[6.617762774498329,52.73118474092308],[6.617035221540878,52.73223262700827],[6.616618772280898,52.73284154299939],[6.616590961943472,52.73288152905751],[6.616504770344202,52.7330054882856],[6.616272821570967,52.73333905451496],[6.616052171265991,52.733655876276686],[6.615983806262328,52.733754036020166],[6.615971527191183,52.733769729518315],[6.61571036382664,52.734103533191785],[6.615285932413109,52.7346385933211],[6.615132987732586,52.73482558795389],[6.615047166729288,52.73494138132007],[6.614999826234267,52.735005269061304],[6.614928801828885,52.73512125126087],[6.614827633917464,52.73532940779559],[6.614630186220209,52.73573160438862],[6.614457782112225,52.73608488287835],[6.614231149549449,52.73654554810539],[6.613947268489439,52.73712856842914],[6.613871818317723,52.7372940638891],[6.613734395363055,52.73765061166324],[6.613807875627293,52.73766400120851],[6.614100450452667,52.73771812101103],[6.614103922562077,52.73772896039172],[6.614162025147419,52.73782941045398],[6.614224745280474,52.73790488993013],[6.614824137332921,52.73851220279836],[6.615815045180288,52.73951272067819],[6.61622795049565,52.739928679164635],[6.616476907385556,52.740179472393656],[6.617305439554192,52.74102011832565],[6.617156598436932,52.741076184689454],[6.617114644584134,52.74109201411344],[6.616269493143379,52.74141085475911],[6.615164655224866,52.74182764700274],[6.614675740909264,52.74201208377813],[6.613276297203726,52.74253998155973],[6.61327431864192,52.74254072093526],[6.612679820976915,52.74276415585273],[6.611732320047919,52.743120255654105],[6.610263546510248,52.74367223442034],[6.610284675290019,52.74369276993361],[6.61067843501494,52.744068463284194],[6.612271572816205,52.745588428598644],[6.613164755052114,52.746441055837],[6.613561979981494,52.74682024517914],[6.615150977656374,52.74833697043115],[6.61518832294572,52.748372607942805],[6.615466787564803,52.74863839576011],[6.616518129887185,52.750279402641056],[6.616964557676557,52.750976165154576],[6.617072712821209,52.751144978310634],[6.61825176505677,52.7529881947501],[6.622870751634921,52.751826576194446],[6.623045351622483,52.75275460437612],[6.623264308516708,52.753919500813836],[6.623326808179831,52.753903833547746],[6.623359641707361,52.754673081971475],[6.624398282124296,52.75630077817305],[6.624414308574265,52.756325885044824],[6.624443711588494,52.75637196500509],[6.624462296088398,52.756401098748874],[6.62463426157138,52.75645632072011],[6.62712470515554,52.757253309388126],[6.631266329127445,52.75858299149094],[6.630069953745908,52.75982778697806],[6.629890789437711,52.76001419204512],[6.628747656679524,52.7612034938404],[6.627216642810942,52.76279621790589],[6.627148508120588,52.762867094163674],[6.625855972372715,52.762873094243645],[6.625585492105149,52.762874343382734],[6.625677034333155,52.76295323793312],[6.627011676401036,52.76410338985183],[6.630366048009403,52.76699373114921],[6.630621907506625,52.767214170199686],[6.632451671983778,52.76879058986452],[6.632699623448651,52.76900420464276],[6.632855325423528,52.769138344076865],[6.633391113880977,52.76959990048287],[6.635294276109659,52.77124048985578],[6.638573972549252,52.7740638518077],[6.642759913508828,52.777670045366065],[6.646273205351805,52.78069618451722],[6.646445603118882,52.780611082473044],[6.647006008531134,52.780334457519594],[6.647617908461119,52.78003240710845],[6.648196055324534,52.779747005472366],[6.64871924245428,52.77949017056752],[6.649859528632674,52.778930380177385],[6.650456515150735,52.77863728981255],[6.650519185943875,52.778610731669474],[6.650582370201549,52.778585021876346],[6.650711818675656,52.778538647556694],[6.65075082322245,52.77852405124668],[6.650776029662265,52.7785146254395],[6.650841795095404,52.778493112317044],[6.650909599489381,52.77847497489667],[6.650976391706021,52.778455149504246],[6.651043697512715,52.778436172427305],[6.65118036217389,52.77840157578537],[6.651319080026709,52.77837033654568],[6.651459866302202,52.778342472559906],[6.651531278652298,52.77833021933418],[6.651603219197092,52.77831880535462],[6.651676699904273,52.77830991845992],[6.651749153936177,52.77829935274358],[6.651822634580654,52.778290465767995],[6.651897156736337,52.77828325736416],[6.652077787689689,52.778268909475464],[6.65219732998221,52.77826246312947],[6.652274638600848,52.778256797777615],[6.652244772895592,52.77838918893829],[6.652293505420825,52.778388132116156],[6.653296037966602,52.77843428269188],[6.65338354027665,52.778441306726464],[6.654803637584472,52.77855531126515],[6.656259715222402,52.778667792174865],[6.656925724746009,52.778721361731556],[6.657148076532701,52.77873759592498],[6.657243468034364,52.77874522504098],[6.657262082879712,52.77874671625419],[6.657247688051405,52.77878188576848],[6.657688212974406,52.77882253099071],[6.658454184778962,52.77888580207352],[6.659748366829774,52.77898694492981],[6.659754991858526,52.778949692098976],[6.659799087275633,52.7789532834557],[6.659976910027558,52.778967759131845],[6.659978440391734,52.77896788657421],[6.660612729186947,52.77901952758754],[6.661996143280845,52.77912457253855],[6.661976802339606,52.779171479575396],[6.662639498873378,52.77919728076563],[6.662793121142217,52.77920367081316],[6.663427150881059,52.779229900422045],[6.663625638842477,52.779235763759914],[6.663641126134539,52.77923621796552],[6.664194848376684,52.77925978980288],[6.664352668456626,52.77926576433645],[6.665376578910782,52.7793093553575],[6.665386960373511,52.779276043397886],[6.666116613115325,52.77930291332533],[6.666163812505136,52.77930465349145],[6.667425848920877,52.77935461269212],[6.668423726345709,52.77939275012531],[6.668558925378053,52.77939504375856],[6.668692304462806,52.77939491217069],[6.668756430343367,52.77939410543971],[6.668817114509257,52.77939268860689],[6.66887308921242,52.77939089998354],[6.668882445971589,52.779434093103774],[6.668986558503988,52.77991483964417],[6.669001304568712,52.77994617390427],[6.66901361209805,52.77997065877277],[6.66902583104503,52.77999161245237],[6.669043932220815,52.78001603497404],[6.669070382647811,52.78004870825409],[6.672609860049953,52.78338486654103],[6.674530133176939,52.78519469236049],[6.675406844984464,52.784843233352234],[6.6764101393036,52.78444651998413],[6.676774534062139,52.784545134691506],[6.677043146680147,52.78461783125152],[6.677737271298602,52.78480250693969],[6.67839132048687,52.78498022509431],[6.679659582483324,52.78531889844033],[6.681071773512937,52.78569809372245],[6.682061722952621,52.78597010032602],[6.681356036164557,52.78624468538559],[6.680758706832181,52.786477105717175],[6.679916593304339,52.786805570621105],[6.679925872148987,52.786815068815095],[6.680026255766965,52.78691773356378],[6.680321341742451,52.78721955572392],[6.68033644440096,52.787234994450955],[6.680447959048809,52.78734906028288],[6.680555911859317,52.78745946176298],[6.681968096056797,52.78890373479096],[6.68205135230284,52.78898888722393],[6.682066456184866,52.7890043257206],[6.682089158386414,52.789027545871875],[6.682182932683327,52.78912344104107],[6.682252614274007,52.78919471107013],[6.682293401876114,52.789236420008706],[6.68229641344825,52.78923949702591],[6.682360072246096,52.78930461296346],[6.6824038716863,52.78934939891317],[6.684987075987894,52.79199094169889],[6.684989384624075,52.79199329831965],[6.68500068389891,52.79200485925232],[6.685084471631925,52.792090534054104],[6.685161917625334,52.79206880294826],[6.68698272955866,52.79171947289782],[6.687007408001691,52.791714736762486],[6.687281878344846,52.7916620760302],[6.6873406404371,52.79165079338661],[6.687466258762726,52.7916267016083],[6.687568517137244,52.79160481497887],[6.687954572727221,52.791529867592786],[6.687970143950003,52.79152700125341],[6.68814647151265,52.791494580765765],[6.688429867647022,52.79144102897525],[6.688704687323105,52.79138726463782],[6.688875714408165,52.79135313036631],[6.688892709105023,52.79135027533453],[6.688898240295259,52.79135180574615],[6.68891234955368,52.791349638357055],[6.689074784216463,52.79131922870867],[6.68940937949292,52.791256441956584],[6.689485399896926,52.79124173403009],[6.689577753396369,52.79131906140943],[6.689738039831872,52.791448700500574],[6.689936519624519,52.791610735918795],[6.690140517308826,52.791774301501704],[6.690359026590325,52.791950155951085],[6.69053143401491,52.79209086012664],[6.690760124663408,52.79227692039271],[6.690972839931412,52.79245022172701],[6.691222853635311,52.79265515564403],[6.691324475790348,52.79274230267491],[6.69143348577268,52.792830573120554],[6.692131024458567,52.79339542559591],[6.692502850148678,52.793697285324946],[6.692648152840987,52.793812623472554],[6.692851720390906,52.79396008318836],[6.693260410677563,52.79424138616768],[6.693622680181275,52.794488827751486],[6.693977657089976,52.79473322952338],[6.694296565096941,52.794949391054914],[6.69432109417657,52.79496643228249],[6.694515600014064,52.794886033354345],[6.694700083525806,52.79481065138106],[6.69493434090899,52.794715399244716],[6.695156883725884,52.79462604803173],[6.695813015755504,52.795074481911165],[6.69733910659014,52.796117443419604],[6.697661245178874,52.79633759605251],[6.697589651736104,52.7963661644397],[6.697587688354989,52.79636694997846],[6.697502321022902,52.79640100849897],[6.696670827866753,52.796732826086235],[6.695979704248627,52.797020674030186],[6.695484350792017,52.79725009650618],[6.695086812954668,52.797447237971014],[6.694283604807714,52.79787989361852],[6.69420544797271,52.797923703152556],[6.693490911017489,52.79829770655342],[6.692953638606284,52.79859469790629],[6.692379413143787,52.79890585166805],[6.692322116433775,52.7989287687319],[6.692127355116843,52.79902122810065],[6.691283881310463,52.79947355550635],[6.691230585777935,52.79949642824259],[6.691204281978727,52.79949950225597],[6.691225765705276,52.79951382723896],[6.69102321719072,52.799603395035135],[6.69067890902721,52.79978377904308],[6.690326080768711,52.79998141270238],[6.689799009500226,52.80030866520223],[6.689692761423376,52.80038100907555],[6.689340104090419,52.80061660182757],[6.689017180265719,52.80084586490716],[6.688929241052128,52.80091063814535],[6.688748964972798,52.80104342311547],[6.688165348122095,52.801473250955205],[6.68806844458837,52.80156580347795],[6.687861891276597,52.80172624141941],[6.687784926616671,52.80178017167071],[6.68757971812064,52.80193702631111],[6.687532646271317,52.8019798719448],[6.687313897935332,52.80213927355407],[6.686839349812386,52.80248998137833],[6.686536453944896,52.80271140638623],[6.68601888314178,52.803090989959756],[6.685971872092704,52.8031209819032],[6.685662313300754,52.803324061483536],[6.685614519703134,52.80334868718646],[6.685242491320001,52.8035747177045],[6.685272667831012,52.803527113843174],[6.685273925308156,52.803499507995156],[6.685250122343306,52.803456985920256],[6.685186273264073,52.803419304059865],[6.684443158902333,52.80298281158171],[6.684427568027515,52.80297365211553],[6.683411220890497,52.80237664159083],[6.683250101654239,52.80228095151691],[6.679691844261771,52.80422215068845],[6.679696708583662,52.804238069017536],[6.680014313032593,52.80527722869285],[6.68002134004908,52.805299729475365],[6.680026007899463,52.805314661267964],[6.680260274506975,52.8060640902145],[6.680261817830923,52.80607165009334],[6.680265812415559,52.80607784415066],[6.680274208420167,52.806078903488775],[6.680288169472818,52.80607505808448],[6.680306852499064,52.80607241072644],[6.68009798356985,52.80618826293639],[6.680177323575117,52.80633764888295],[6.680336679729558,52.80625568696642],[6.680326168639706,52.80629849240523],[6.680335313868582,52.80632490677609],[6.680364998763181,52.80644714040639],[6.680398560079779,52.806532913939954],[6.680441516492146,52.80659281789118],[6.680510090720446,52.80667996403702],[6.680594830090039,52.80678864887859],[6.680839148010204,52.80709779691692],[6.680862719706815,52.807123039012325],[6.680912743215855,52.80717662867046],[6.681157678162823,52.8074879353583],[6.681262470664014,52.807621118063636],[6.681294113034578,52.807652941280836],[6.681343676518186,52.80767388360219],[6.681813446321991,52.80780103477019],[6.681828367611714,52.807805069905406],[6.682302670230785,52.80793343716329],[6.682408700346627,52.80796746257481],[6.68331019571254,52.80821671296997],[6.687296841669006,52.80929201977184],[6.687364700097376,52.809310238091236],[6.687311699860368,52.80938275893113],[6.687299371183002,52.80939962845244],[6.686761642924257,52.81038895008675],[6.686353931287536,52.81116298136351],[6.686140484388972,52.81153913149669],[6.685961815732637,52.811871249143245],[6.686747216090811,52.81314905501215],[6.686965367442937,52.813503953377456],[6.686967518184149,52.81350744408628],[6.687025330240259,52.813601507550935],[6.689099779732019,52.81312338051074],[6.690715882113452,52.81275086558044],[6.690887874227918,52.81310383522348],[6.691338186652962,52.8140279810632],[6.691569171137457,52.81448105581784],[6.691933313007076,52.81521276386828],[6.692332759082527,52.816032522714885],[6.692439379638729,52.816246025347844],[6.692591769855104,52.81655114106677],[6.692693826071226,52.81676372277478],[6.692695392603203,52.81676700408596],[6.692816580265002,52.81701565928115],[6.692754932555799,52.817158024898205],[6.69253106831734,52.81758092811431],[6.692435831586127,52.81776752110782],[6.692422252122105,52.81779419237633],[6.69202195709256,52.8185800511732],[6.692009220251138,52.81860862753909],[6.691651867893222,52.819410686844535],[6.691614963934431,52.81949351641991],[6.691629499675168,52.81952425686848],[6.691592834567781,52.81960415381116],[6.691440809496927,52.81993543022433],[6.691409019776112,52.820004713305124],[6.691216647969455,52.820423907521565],[6.690798416879044,52.82138207987168],[6.690727594337613,52.82152018549811],[6.690609839804312,52.82178661747197],[6.690599707042061,52.82180953891259],[6.690594536409468,52.82182123442403],[6.690557550471179,52.82190792018991],[6.690556967967006,52.821909283701395],[6.690547093739314,52.82193241795889],[6.690477324454423,52.822095973901426],[6.690440434976056,52.822182424833976],[6.690361359661787,52.82233692402169],[6.690210674534638,52.822671967634605],[6.689382337483661,52.82286618245372],[6.689304704477386,52.822884385606436],[6.689026725932028,52.8229492926022],[6.688964915268185,52.822966720555016],[6.688978510770783,52.82299730078656],[6.689546744486575,52.823929151297804],[6.689609233406125,52.82392300408511],[6.68963875266174,52.82392477570125],[6.689653631082483,52.82392566470249],[6.689688431530445,52.82393488325888],[6.689704493337667,52.823939138664514],[6.689820844843699,52.823981448321916],[6.689834576148983,52.82400609514231],[6.689910575396347,52.82429416308989],[6.689992577761262,52.82457153298257],[6.690008067482763,52.824646239662364],[6.690022278447194,52.82467851174269],[6.690012774571585,52.82476741337559],[6.689982515095407,52.82487730331691],[6.689926089158448,52.82504023653293],[6.689939985760655,52.82513767237172],[6.689940340383421,52.82514011312263],[6.689950435286674,52.82530718168232],[6.689981287431417,52.825777104239535],[6.689990975790554,52.825948446353706],[6.689993430916355,52.82595614889188],[6.690002531384917,52.825962790158066],[6.690010853937713,52.82596323843488],[6.69014103600953,52.82591525977379],[6.690169495,52.82590928650642],[6.6901915426044,52.82590724798996],[6.690972032828161,52.825903028612935],[6.690984280491579,52.8259107138829],[6.691032226572116,52.82599351380919],[6.691058883887417,52.826019187511235],[6.691096989710833,52.82604564375579],[6.691508461106102,52.82627762499579],[6.691957404894891,52.82653106160432],[6.692090171185217,52.82659856152555],[6.692172997674381,52.826633893021864],[6.692261930854341,52.82666850148522],[6.692555504757156,52.82685056722857],[6.693189400186412,52.827273332098606],[6.69330158009297,52.82735043928911],[6.693302337639405,52.82735096126856],[6.693488501541103,52.82747923313013],[6.693704342591062,52.827624867176446],[6.694034952912715,52.827834313205656],[6.694451460763893,52.828098171227175],[6.694522171049813,52.82814598297687],[6.694853638475815,52.828351076325106],[6.695001717393423,52.828449969614866],[6.695068035257976,52.8285012085792],[6.69510734910033,52.82853714123513],[6.695247882164205,52.82873297670143],[6.695253457786172,52.82874574986905],[6.695315396157933,52.82888768596116],[6.695439336796729,52.82890081400278],[6.695588830684603,52.828919916846765],[6.695790563781178,52.82895064234794],[6.695514625832795,52.82897015419751],[6.695346663882846,52.828979047243834],[6.695393799962795,52.82908993706202],[6.695258437227922,52.82909332771127],[6.694964768738246,52.82910400925793],[6.69467755689103,52.82911723463252],[6.69440351424369,52.82913219336544],[6.694139106471586,52.82914780080375],[6.693907764620932,52.829165067429365],[6.693712794611925,52.82918388531282],[6.693547324654834,52.82921365011785],[6.693412542569072,52.82924593650789],[6.693296350300519,52.82928159617524],[6.693171414630671,52.82932758841253],[6.693068751541141,52.82937455888665],[6.692971985142601,52.82942868171989],[6.692816591003481,52.82952858239709],[6.692611061081224,52.82967840089102],[6.692538566031338,52.829730397152424],[6.692514972812,52.829718495213555],[6.692061419679781,52.83005282966032],[6.691699299665204,52.830321999243786],[6.691686407004187,52.830331541383316],[6.691608019078272,52.830389524373416],[6.691533793483706,52.830449250316406],[6.69135069958201,52.83058339832339],[6.690851304851801,52.830948113194566],[6.689874909554199,52.83166047593948],[6.689530444972643,52.831908477600855],[6.689151911953112,52.832170700182],[6.688351715205425,52.832753771111506],[6.688286239688739,52.83280112238909],[6.688189136442351,52.83287180901604],[6.688089010230219,52.83294764252042],[6.687903188158884,52.83309205160703],[6.688042155028797,52.833067212582606],[6.688124661075776,52.83307351144382],[6.688181296364437,52.833077171535564],[6.688313957709264,52.83309977468037],[6.688512558792844,52.83314247330621],[6.689230533394094,52.8332871453659],[6.689428723036419,52.833327429285504],[6.68968761600742,52.83337638787831],[6.690469018421453,52.83354071649389],[6.691311467888256,52.83371258701259],[6.691711329340767,52.833803148737275],[6.691826853408368,52.83384562739072],[6.691944906094718,52.833906691587785],[6.692009877986478,52.83394698204838],[6.692093651540016,52.8340130857977],[6.692124143465689,52.83405020343906],[6.69203378156045,52.8340691766547],[6.692193040905852,52.83441944233939],[6.692721905948163,52.835612015561345],[6.692951637162052,52.83613852848117],[6.692963059653638,52.83616469213165],[6.692584089844022,52.837905687560635],[6.6925499986012,52.83806230126831],[6.692125318730411,52.84005318236699],[6.691867239402581,52.841262941632515],[6.69196420344916,52.84149552216773],[6.692457321204283,52.841423464349646],[6.693119466527059,52.841334400321266],[6.693401146992131,52.84131964015818],[6.69336464925662,52.84122777330731],[6.69347299739775,52.84121168496521],[6.693508369610748,52.84130661091051],[6.69402039817622,52.841257078027446],[6.69490907163107,52.84117496714765],[6.694895319513562,52.84110623699916],[6.695006683415488,52.84109572244474],[6.695451751496095,52.841053631529064],[6.695689429712799,52.84103026221442],[6.696137277987008,52.84098687996537],[6.696233015392695,52.84097747949514],[6.696248728645914,52.84097630936814],[6.696277392962722,52.84097689345829],[6.696295268570786,52.84097903396789],[6.696314587218382,52.84098475369055],[6.696328758248426,52.84099205783583],[6.696340622528952,52.84100163416979],[6.696350314827921,52.84101303191427],[6.696359305222813,52.841030728649436],[6.696373215229443,52.841064009787644],[6.696384203307289,52.84109885094233],[6.696390851105353,52.841127538250795],[6.696398739801529,52.8411580094906],[6.696403436753769,52.841190942398846],[6.696403314759051,52.84123147784645],[6.696398932736896,52.84127349803771],[6.696373585080658,52.84142333000663],[6.696369990195288,52.841446036231176],[6.696343636771541,52.84161284782562],[6.696292463260136,52.841876746307285],[6.696247187090407,52.842104629616564],[6.696209126064757,52.84231571673501],[6.696164028810242,52.84255456289269],[6.696097318145274,52.84291434968245],[6.69605029244655,52.84316319314812],[6.696020345970751,52.843325091858084],[6.695934018092758,52.843336599770886],[6.695925916302968,52.84340462590304],[6.69592585583786,52.84345516382229],[6.695963412345593,52.84359306172621],[6.69599050392662,52.84365261278375],[6.696034475419071,52.84372860558522],[6.696105033848844,52.843833399427886],[6.696554613880633,52.84444853581166],[6.697166495935596,52.84529686833824],[6.697605346302944,52.84589029677856],[6.697694796763189,52.84587880730952],[6.698067750235817,52.846434644095524],[6.698189030120767,52.84661539137509],[6.69802690333927,52.84662938683742],[6.6977943981121,52.84665297330682],[6.697517550486476,52.846682978367284],[6.697006240156736,52.84673569046162],[6.696578764310241,52.84678217717753],[6.696310330765757,52.84681064902108],[6.695734896835848,52.84687358641359],[6.695494660923861,52.84690183686595],[6.694718921490615,52.84698808749804],[6.693781344452865,52.84708841932669],[6.69336263501657,52.847133405342085],[6.692060739485439,52.84727499385408],[6.691536152935028,52.84733494582299],[6.69152703954027,52.84733598918803],[6.691121787470598,52.84738287826155],[6.689618615956873,52.84754168579239],[6.688753743735661,52.84763657320153],[6.688181767232445,52.84769617371856],[6.687772046943764,52.84773780645383],[6.687355818946622,52.84777528451306],[6.686676941008572,52.84782448521647],[6.685835859088775,52.84786457354825],[6.684772594472496,52.84789991054565],[6.681543070546158,52.84802463946331],[6.678650346618464,52.84813953140933],[6.678231413575778,52.848156164711654],[6.677785472624696,52.84817618053592],[6.677467792039167,52.848186547497185],[6.67695951742694,52.8481940678534],[6.67576905686204,52.848188530471354],[6.67565930840598,52.84818862880089],[6.674358830873344,52.84818665662017],[6.674038019169886,52.848185993558225],[6.673509924751308,52.84818490531573],[6.67308026082582,52.84818402064074],[6.671880886420799,52.84818476894747],[6.671414860103125,52.84818821553542],[6.670665231141049,52.84819375121155],[6.670291606611042,52.84819583940547],[6.669965300959525,52.84819766011429],[6.669634646475167,52.84819950873042],[6.669334879777314,52.84820117713046],[6.66805079045871,52.84821381637463],[6.667253854205122,52.84822053975125],[6.666875867386774,52.848223724595144],[6.666726130798993,52.848224504424216],[6.66644098101221,52.84822598172782],[6.666269288822859,52.84823591214387],[6.66597713411469,52.84825623847717],[6.665841228907885,52.84827209372835],[6.665671779208967,52.84829475253294],[6.665501421323225,52.8483188498573],[6.665497933112839,52.84831937258354],[6.665371009831064,52.848338303626655],[6.665315522575187,52.8483465826588],[6.665138634553241,52.84834943103422],[6.665019009676558,52.84835954760709],[6.664919165954561,52.84840292172642],[6.664415992359421,52.8486521974665],[6.664186020137887,52.84879086627148],[6.663902843051379,52.84897588671923],[6.663784983550323,52.84906938744266],[6.663632004596352,52.84923679991345],[6.663554539804236,52.84932880750369],[6.663536606387754,52.84935016506865],[6.66347254858998,52.849426471680516],[6.663415269947416,52.84951633082071],[6.663296189348328,52.84970233476154],[6.663215801647128,52.84987073141375],[6.663148204198629,52.8500160280509],[6.663104923469143,52.85017859912499],[6.663047809753005,52.850393176189634],[6.663010433032077,52.850509326404094],[6.662978130990275,52.85061267798589],[6.662876308774803,52.85098881661139],[6.662839012173754,52.851087907576854],[6.66281230971751,52.85117662141441],[6.662785898343805,52.85124529897491],[6.662724048427331,52.85137908369331],[6.662651711067191,52.85150199777846],[6.662565617092218,52.851630217781015],[6.662495898146595,52.85171518538141],[6.662434385892348,52.85178936106445],[6.662369368693276,52.85187673192913],[6.662145205370428,52.85216646855945],[6.66202012329553,52.85232326276537],[6.661890476515127,52.85245745710143],[6.661850728570327,52.85250316106479],[6.661704961817973,52.852648716912135],[6.661471433011803,52.85287467791954],[6.660999964975136,52.853266707880806],[6.660719777375096,52.853506853665564],[6.660600634840328,52.85360486742905],[6.66056337681331,52.85358680486517],[6.660133683716147,52.85392261765382],[6.660143241221323,52.85392706332707],[6.660239868922684,52.853971985111116],[6.660311925155847,52.85400775019615],[6.660388029313681,52.85404128808709],[6.660430443122175,52.854059978680255],[6.66085566373805,52.853727645830254],[6.660806763835843,52.853703928721444],[6.660919330210798,52.8536156375854],[6.661064425673572,52.853521219918484],[6.661156277333728,52.85344915654665],[6.661854695061299,52.85282089036327],[6.662104580169213,52.852572446689244],[6.662336696956951,52.852325226013754],[6.662677378824353,52.85193944257171],[6.662906949931937,52.851590482213304],[6.663051372061918,52.85137928532088],[6.663149044957478,52.851057844096054],[6.663222178423564,52.85077869999162],[6.663394293660469,52.85015140733926],[6.663465706745845,52.849959873835445],[6.663526236764583,52.849812046288825],[6.663584408833601,52.849698378574146],[6.663656052282021,52.84957375463888],[6.663746534112388,52.84944199959308],[6.663832477271127,52.849346998165345],[6.66389877491425,52.84927370514159],[6.664024927972211,52.84916527708666],[6.664176748919815,52.84904009993614],[6.664376254180705,52.84891700031413],[6.664501208886171,52.848831143259595],[6.664685671772811,52.84873438490387],[6.664877302786898,52.848657384916024],[6.665089072193261,52.848594899397824],[6.665454075277212,52.84849536025156],[6.665509805632993,52.848480158139836],[6.665559331258169,52.84847005555133],[6.665566691099942,52.84846942840836],[6.66573946019922,52.84845466116942],[6.665919295634435,52.848440402100024],[6.666143602808459,52.84842394922143],[6.66655421536281,52.8484073668167],[6.667002399318004,52.84839832476341],[6.667170128981276,52.84839957141225],[6.668934217702374,52.84838132530106],[6.669064425633077,52.84838433866449],[6.669811776200065,52.84837491002542],[6.67032012966691,52.84837908510201],[6.670566472000513,52.848375490647754],[6.671248949008037,52.84837064271078],[6.672171266403738,52.84836726920499],[6.673136272802757,52.84836670871698],[6.67381007576542,52.84836978580172],[6.674069111984046,52.84836724249334],[6.675008608179259,52.84836697806414],[6.676042075838434,52.84836268883481],[6.677480155292611,52.84835341148414],[6.678655525263794,52.84831480456168],[6.679425578187828,52.8482895033337],[6.681295000915344,52.84822051930915],[6.684795046373792,52.84809363590426],[6.685836947575501,52.84804911238911],[6.686636177803221,52.84800681082838],[6.688414956387437,52.847856286623305],[6.689764364777076,52.847708548028734],[6.691582149568283,52.84751574913993],[6.691773677791814,52.84749573280095],[6.691785250661734,52.84749452769779],[6.693222550678453,52.84734433226916],[6.694999469047613,52.8471481088441],[6.696686836347474,52.84695961880693],[6.697609037890779,52.846864663803075],[6.698311642832776,52.84679812541284],[6.698427376560697,52.846968507793086],[6.69853177846069,52.84696149090387],[6.698911176270196,52.84693841740079],[6.699364181607594,52.84691358913043],[6.699434390116386,52.84691084828193],[6.6998690884948,52.84688692052329],[6.700221245570575,52.846887106003166],[6.700367891181076,52.846885374420964],[6.700432225124237,52.846885735524964],[6.700654159789968,52.846883363210466],[6.701351054006925,52.84688134763356],[6.701895462566423,52.846878888132345],[6.701899365985764,52.846878863065],[6.702054387821691,52.846877747110625],[6.702170879522871,52.84687737039364],[6.702209254967565,52.84687692024559],[6.702210753823596,52.846876903717416],[6.702758967155726,52.846870156162616],[6.70332703841851,52.84686621573634],[6.703811141880623,52.84685472441153],[6.704121468900657,52.8468490958121],[6.704145141571391,52.84684794462343],[6.704195540457829,52.84684549167034],[6.704196368519106,52.84684538364374],[6.704485027494115,52.84680743134516],[6.704529334772531,52.84679101588662],[6.706887165897969,52.845917208503955],[6.707948944664419,52.845524235076276],[6.707962139650305,52.8455192625694],[6.708258457440655,52.845407499827715],[6.71042474972487,52.84459038748009],[6.710928522005434,52.844400361424356],[6.711697857773482,52.84411015575351],[6.712714063364498,52.843726794632865],[6.712890894617585,52.8436600910398],[6.714332894092551,52.84311609105174],[6.714412758877091,52.84308596539281],[6.715450827709427,52.842694338145684],[6.716271495468838,52.84238471048421],[6.71652719421316,52.84228823605529],[6.717292566793928,52.841999466750366],[6.717300564515113,52.84199644757055],[6.717806903648339,52.84180540152914],[6.719271731180736,52.84125268243237],[6.71991361250494,52.841027487855854],[6.719954639444189,52.84105721879062],[6.719970761058926,52.841055339941946],[6.720054274540823,52.84104290229434],[6.720129603883563,52.84102930676612],[6.720191204865677,52.841017707136245],[6.720259789009588,52.84099075943179],[6.720337055367098,52.840946745943825],[6.720400929634633,52.840898235520754],[6.720444320246687,52.84086383098616],[6.72045742550079,52.84084335443644],[6.720469552959931,52.84082439870593],[6.720473860381259,52.840817681704216],[6.720513258606351,52.84077404656502],[6.720369056495068,52.84061477115231],[6.720329949604145,52.84057158237644],[6.720367622953034,52.84055948622433],[6.720426021644998,52.84054073216555],[6.720434855595482,52.84053789216099],[6.720473056686846,52.84058009340345],[6.720651651418442,52.840777370302035],[6.720734497110818,52.84075036167608],[6.720980996480761,52.84101903142046],[6.721027026546703,52.841069206828635],[6.721093507649297,52.84114166748353],[6.721703733253086,52.841806827528686],[6.722977736615318,52.843195416419576],[6.726364161761516,52.846885901985075],[6.727062817086848,52.847647377843536],[6.727348720735367,52.84760085381706],[6.729900084407075,52.847185703983314],[6.731377883284683,52.84694520949587],[6.732463644188159,52.84676850113896],[6.733240522249591,52.84664205939088],[6.734708269492998,52.846403155679205],[6.735878136633728,52.846212721084896],[6.737733806929987,52.84591084633742],[6.737961846038895,52.84587368798901],[6.740578973649074,52.84544722716269],[6.741039562176373,52.84600630728403],[6.741144233760382,52.84613335487519],[6.743071421604452,52.84847241816628],[6.745833506722738,52.851824314879174],[6.745774784154089,52.85195601489249],[6.745587510589618,52.852376011102415],[6.745480458161032,52.85261610421729],[6.74537854010841,52.85284467950149],[6.745332626940931,52.852940516407614],[6.745144662931581,52.853332828644014],[6.745032988901919,52.85358632053812],[6.74491121591867,52.853863663683974],[6.74483586980127,52.854061674434575],[6.744699312996953,52.85436791908618],[6.744697175485235,52.85437271587438],[6.744502205920655,52.854809945935884],[6.744307663892044,52.855246245030216],[6.744076191824726,52.85576529966915],[6.743860456206662,52.85624905105976],[6.743546125322665,52.85695390468179],[6.743530993963899,52.856987843314684],[6.743473646022734,52.8571164344652],[6.74334803763516,52.85739808830509],[6.743321660385049,52.8574572213121],[6.743213972874899,52.85769869419059],[6.743093608539477,52.85796856819399],[6.743016336237927,52.85814183843973],[6.742982378141085,52.85821797224657],[6.742846128211537,52.85852344675781],[6.742825511489478,52.85856967081481],[6.74274158621123,52.85875782805413],[6.742658257318262,52.8589446483258],[6.742580703712918,52.85911853254442],[6.742561516725076,52.85916155866624],[6.742513673308028,52.85926882146757],[6.742434118953665,52.85944717719599],[6.742352843071044,52.859629417106795],[6.742325478130276,52.859690780975335],[6.742229525146809,52.85990590253103],[6.742161422687251,52.86005856710311],[6.742059275786742,52.86028757282477],[6.741982869551924,52.86045886407974],[6.741948130363566,52.8605367410082],[6.741866100673951,52.86072066076105],[6.741841219348162,52.86077644193789],[6.741683113108223,52.86113089391516],[6.741638569842701,52.861230739957634],[6.741577628533258,52.86136736079669],[6.741599318450584,52.86140166292567],[6.741651910231902,52.861484794466215],[6.741660349271386,52.86149019906476],[6.742979943554547,52.861835017965305],[6.745474565766076,52.86248684790101],[6.7456998539988,52.86251243155442],[6.745713360125083,52.86249355650059],[6.746088354216797,52.86258977573837],[6.746110420715841,52.8625558386952],[6.74642439273579,52.86263763487636],[6.746424611097397,52.86263510688206],[6.746614704251209,52.86268452059655],[6.746919096052806,52.86276429460137],[6.746918444181389,52.86276529965919],[6.747110335253965,52.862814710098576],[6.747303589139463,52.862864473158666],[6.747511559425899,52.8629180226573],[6.74770244877842,52.86296717396573],[6.747896287683222,52.86301708220064],[6.748089288755618,52.86306677499141],[6.748120023563042,52.86307469297463],[6.748340331889263,52.86313142568844],[6.748573305779498,52.86319141079081],[6.748777805892956,52.86324406299338],[6.748995819413103,52.86329858277272],[6.749121804525506,52.863332636575564],[6.749371428104202,52.863396905847694],[6.749643883038223,52.863467052407145],[6.749923120710953,52.86353894534324],[6.750164767284697,52.863601165062626],[6.750405411516073,52.86366312613204],[6.750544537355098,52.86369894260014],[6.750685175744456,52.86373515506724],[6.750910520839676,52.863793173667815],[6.751238134471293,52.863877515585706],[6.7517927863832,52.864024042424035],[6.751915453892772,52.86405634269951],[6.752632729504738,52.86424519723726],[6.75269799094893,52.86414324039885],[6.75272280729066,52.864104291509456],[6.752876827214881,52.86386250439783],[6.752855873822142,52.86385683940332],[6.753355916050737,52.863059904640025],[6.75358503096511,52.86268716029493],[6.753751103538245,52.86243220172579],[6.753946724618177,52.86211879923282],[6.754076452158254,52.861906480554936],[6.754184511268703,52.86173305690759],[6.754475033940798,52.861282079393575],[6.754510946687758,52.861184502267605],[6.754528160965834,52.861138575779435],[6.754532706556549,52.86111110236945],[6.754528538263763,52.86109179076896],[6.754527896564789,52.861033324482875],[6.754454803810853,52.86042489866955],[6.754397047662265,52.85986851518851],[6.754361275290625,52.8595813923056],[6.754349586470607,52.85946409365798],[6.754336707519492,52.85929641486895],[6.754315418333383,52.859150861203275],[6.754303135322928,52.8590079185913],[6.754294600841029,52.85893542314647],[6.754293977657887,52.858903640936674],[6.754296817329803,52.858866732051986],[6.754305790540433,52.85883696994992],[6.754324878330485,52.858795416962025],[6.754357554352105,52.858742042245225],[6.754327504460647,52.858718937888334],[6.754460881254199,52.858654468522836],[6.754491483207056,52.85863969250316],[6.754494510821812,52.858638219771656],[6.754975109893561,52.85840558244887],[6.755025184034003,52.858379600119164],[6.755566356319963,52.85814064839577],[6.755585905104182,52.8581314095091],[6.755731333989625,52.85805503555147],[6.756260003928198,52.857803075094914],[6.757304590535335,52.85729741506887],[6.757783448782548,52.85706560398057],[6.761664446712675,52.85521230879936],[6.764866119439953,52.85366695742913],[6.766881810849507,52.852693172466374],[6.767851900931948,52.85222449053672],[6.768767878027749,52.85178193449989],[6.768792342923465,52.85177011087634],[6.770827089707549,52.85083297597199],[6.770908317934684,52.85079556147239],[6.772898447420221,52.84987890554458],[6.776240222960638,52.848308235104795],[6.778432346884356,52.84724726922029],[6.782350328334452,52.845387826100456],[6.784240514208614,52.84449142355555],[6.784337276425637,52.84444518943408],[6.786014261721369,52.84363781841807],[6.786158276982914,52.84374760212786],[6.787019733213468,52.84440427521551],[6.78694534034698,52.844439724333],[6.787627822924325,52.8449683962738],[6.788569077259918,52.84569747911448],[6.7916084938084,52.84805878038443],[6.791834877332308,52.84848943111063],[6.792423098380674,52.84894854261435],[6.793278224279188,52.84961594119581],[6.794143959979405,52.849902326108065],[6.795384663639935,52.85085495208182],[6.795476772628548,52.85092686285014],[6.797003920632772,52.852118947141044],[6.797492000614286,52.85250084468321],[6.797585477450111,52.85257397798186],[6.797599765860547,52.852567247955434],[6.797671222941268,52.85253359764586],[6.797701247944508,52.85251946432834],[6.799016786296805,52.852682925048455],[6.802632910094438,52.85365951587111],[6.802727318225505,52.85368404642464],[6.805579963537259,52.85446235053709],[6.807641274582007,52.855827917818594],[6.811763669637722,52.85644358337045],[6.811862668481031,52.8564537254622],[6.813146389785655,52.856642865000275],[6.817096737667777,52.85722480365736],[6.817183367004649,52.85724164172959],[6.822297636219679,52.85800507643866],[6.822380883141019,52.85801240644835],[6.822409185904582,52.85883251440048],[6.824000619938463,52.860129972471505],[6.823981501856339,52.86014693802708],[6.82395801256182,52.86019715700301],[6.824064639904606,52.86022036421552],[6.825050136272001,52.860434827274155],[6.827528120689895,52.86096816670676],[6.82778213673869,52.86102283652604],[6.82787169468975,52.86104211218096],[6.832994211758829,52.86214441674915],[6.833072691132909,52.86216130617522],[6.832397446836493,52.86319457226826],[6.831484369456575,52.86460686105216],[6.830947339796737,52.865416491157816],[6.830718598994763,52.86576133380615],[6.830691936846744,52.865812023897526],[6.828571086341246,52.86902655304519],[6.828532226629275,52.86907142206148],[6.827830272977162,52.870131728780926],[6.826228619093606,52.87255082355178],[6.827922782685347,52.872936442328694],[6.831256644347679,52.87369519942692],[6.831612143180842,52.873776100645344],[6.831977827283712,52.87321116877135],[6.83229300425095,52.872759060421735],[6.832505610826938,52.87246458967481],[6.832883809252115,52.87187448203314],[6.83305576900536,52.87163299121874],[6.833241316974993,52.871331800545356],[6.833396261416621,52.87113191301863],[6.833777504680276,52.8705263601863]],[[6.487859794879473,52.61909260362812],[6.487755926279259,52.61890860581182],[6.487717384560198,52.618840331932404],[6.487670673374873,52.61875758246343],[6.487670845912358,52.618757572812264],[6.4877256125871,52.61875462890854],[6.487791970162655,52.61877441654507],[6.488063484687777,52.61877208084965],[6.488123843777357,52.61792630832304],[6.488125331021894,52.617905478799905],[6.488175022732543,52.61790667206738],[6.488296712777473,52.61791174593675],[6.488575998799675,52.61792099416898],[6.488948276921605,52.61793096131319],[6.489164854945272,52.61793757203727],[6.489471816871581,52.61794394604117],[6.489701966795055,52.61795117584987],[6.489826912030204,52.617955903346854],[6.489926253755828,52.617957794568554],[6.490010257734617,52.617961077336865],[6.490111329411804,52.617959518967226],[6.490203138144849,52.617954855835265],[6.490335331319919,52.617938852535524],[6.490666197957381,52.61786793102924],[6.49077809301619,52.6178416090146],[6.49090859588041,52.61780886750427],[6.491012505956503,52.61778154088994],[6.491182424565112,52.6177471386171],[6.491285191238176,52.617731344805215],[6.491372424773578,52.61771268432162],[6.491441296829698,52.61770143860763],[6.491535286285181,52.61768778432851],[6.491636859320438,52.617682103578815],[6.491732553865162,52.61768049496292],[6.491813412792568,52.61767615705588],[6.491905140413031,52.61767476490324],[6.492031118095681,52.61767122971267],[6.49213976757525,52.61766684887396],[6.492246847251145,52.61766405539485],[6.492372549084856,52.61765953370322],[6.492482041185437,52.6176534280587],[6.492683254900006,52.617639817902145],[6.492803725653167,52.61763339408092],[6.493071564352937,52.61761610739353],[6.493169947111603,52.61761218065927],[6.493397072193654,52.61759780679903],[6.494053397645997,52.61755628212021],[6.494101326704145,52.61755433458815],[6.494226629987515,52.6175492484485],[6.494349512478328,52.61753951103535],[6.494647422374649,52.61752072721945],[6.494670954501869,52.61751929449397],[6.494905981163424,52.6175050058507],[6.495115163607203,52.617492404813454],[6.495316120661087,52.617483906658045],[6.49550452355409,52.61747122006533],[6.495822158112561,52.61744996637927],[6.495995436519953,52.61744244437902],[6.502517200411247,52.61643627589404],[6.502603766835519,52.61641896155708],[6.502726289579922,52.61639347215502],[6.502843936739951,52.61637138087902],[6.505924526397486,52.61584849529421],[6.5066968974394,52.61553248760619],[6.506879941040776,52.615379227710704],[6.507042815235733,52.61523999890734],[6.508207164971581,52.614812072179916],[6.508892342886305,52.614558259576484],[6.509113432988767,52.614258674357785],[6.509701276425842,52.613581648696155],[6.509760591711369,52.613585752934384],[6.509818456433584,52.61358763558237],[6.50987575829244,52.61358238536585],[6.509930149084424,52.61357021949558],[6.510013024982992,52.613554426560945],[6.51009778269936,52.61355452423134],[6.511135851513747,52.61362541877496],[6.511521184426588,52.6136522414289],[6.511919074897004,52.61367930347386],[6.511999126337487,52.61368474722009],[6.512026919957074,52.61364967412554],[6.512323052586808,52.61366258966487],[6.512749415326143,52.613693244026116],[6.512869050771359,52.6136985638022],[6.513029718105972,52.613690516140814],[6.515265594418514,52.61384426406688],[6.516723361631865,52.613941907366694],[6.518027403587036,52.61403185728888],[6.518029976012978,52.61403203772595],[6.518005705917787,52.6141891427515],[6.517960328965922,52.6144828123853],[6.517958486240201,52.61449442426496],[6.517920094378518,52.614736410132366],[6.517856600990765,52.61513653347861],[6.517795563309322,52.6155184778976],[6.517740135853329,52.615865352199876],[6.517706792830417,52.61607403484959],[6.517676962312786,52.616271152589704],[6.517619455944654,52.61665099600577],[6.517558402937869,52.61705434933772],[6.517544528044199,52.61714600462721],[6.517511324927284,52.61736538129922],[6.517502139652045,52.617422874074286],[6.517466251336486,52.61764753417969],[6.517492827408765,52.61764160103006],[6.517480092204786,52.617732796035284],[6.517472982418468,52.61778370792949],[6.517637439617619,52.617746731172815],[6.517586357530816,52.618077232914075],[6.517381097838351,52.61940524318911],[6.517312403275566,52.61983099456017],[6.517269699023808,52.62009571519091],[6.517189702309,52.62061972113408],[6.517085024451817,52.62130530237904],[6.51701985183618,52.62173212537056],[6.517014382859402,52.62176933308469],[6.516312128806685,52.62173029655721],[6.516209812407324,52.621727404057445],[6.516121754877092,52.62172824974851],[6.516045822894742,52.62173372574122],[6.516025691437902,52.62173652348523],[6.515989725685023,52.621741529871734],[6.515917514195281,52.621753873112155],[6.515813927428285,52.62178091282588],[6.514882667763697,52.62204591727945],[6.514084660360185,52.622274229611484],[6.513010613981401,52.622581503933816],[6.513000459049373,52.622584044833054],[6.511957160226557,52.62284505440493],[6.511292570761051,52.62301131800328],[6.511208945050543,52.62302907814595],[6.511069970595995,52.623058605530346],[6.510221988540569,52.62318957674509],[6.510052956775113,52.623215000965374],[6.509484788672463,52.6233004683289],[6.509388333953349,52.62331442964485],[6.508508834052973,52.623441695633154],[6.507662840023863,52.62356779429317],[6.507570426212681,52.62358157222328],[6.50686939655936,52.62368487123033],[6.506726494601854,52.62370592803935],[6.505504710141106,52.62388921758618],[6.50539184611857,52.62390615224352],[6.504102155305913,52.624098119399335],[6.503985343399927,52.624115503288884],[6.503160840467623,52.62423684680738],[6.503086444479197,52.62424779164935],[6.502253880891256,52.624374120853346],[6.502066601943319,52.62440253602393],[6.501624457859045,52.62446807946022],[6.501136963453623,52.62454034684899],[6.501087393696593,52.62454778606141],[6.500802113239929,52.62459059063161],[6.50011523432295,52.62469694356943],[6.499824222977522,52.6247339663856],[6.499756468154215,52.62474010133676],[6.499650150076028,52.62474973404147],[6.499415374400861,52.624761989199946],[6.499012442054837,52.62478159662254],[6.498924682271243,52.624787459921556],[6.498842009097112,52.62479296998257],[6.497362519647758,52.624961473250046],[6.497008138532186,52.6250018314212],[6.496982901996928,52.625005527450895],[6.496374886694102,52.62509467436275],[6.496330373257274,52.62510120157919],[6.495831006959051,52.625173602824134],[6.495226515544723,52.625263277206564],[6.494867198303027,52.625316590458944],[6.494796258729699,52.62532711135965],[6.494773303760597,52.62533051598916],[6.493610213543648,52.62550043569906],[6.493356353791452,52.62553751909658],[6.493150437437802,52.62556760358597],[6.493118239518087,52.6255723072568],[6.492656187493163,52.625640653846624],[6.492158729457222,52.62571423515274],[6.492137641263087,52.625717298359135],[6.492088798601564,52.62572439453262],[6.491350197825932,52.62583174368232],[6.490918852664781,52.62589443237903],[6.490705834038105,52.62592531557762],[6.490501025910789,52.625953794336645],[6.490497769967668,52.62593762854849],[6.490381320743493,52.625658829882134],[6.490239878277179,52.62529854609054],[6.489913787467914,52.624484950777386],[6.489868119783708,52.624367041276265],[6.48984637561016,52.62431089856519],[6.489738014059552,52.62400853906126],[6.489725096624027,52.62397398398806],[6.489681081770514,52.62387896895353],[6.489469128500371,52.6233241054804],[6.489369524068507,52.62306337671166],[6.489201156733621,52.622549029804844],[6.489108092553186,52.62228276655303],[6.489009872818232,52.622022303254454],[6.488819602597522,52.62153942739691],[6.488692399238047,52.62121182399843],[6.488586026919987,52.62093639031608],[6.488468503535266,52.62063548056002],[6.488348067168628,52.620325502045546],[6.488269097699462,52.62012578792496],[6.488101895343504,52.619691276128236],[6.488042713251836,52.619537467963504],[6.487859794879473,52.61909260362812]]]]}},{"type":"Feature","properties":{"id":21,"statcode":"WS02","geometry_g":"polygon","gag_id":"1","hierarchie":"2","hierarch_1":"regionaal overheidsorgaan","inspire_id":"NL.02.02_Wetterskip Fryslân_p","sde_id":null,"land_code":"NL","inspire__1":"NL.02.02_Wetterskip Fryslân_v","inspire__2":"NL.02.02_Wetterskip Fryslân_l","wbh_code_o":"02","einde_leve":null,"laatste_wi":null,"admin_code":"02","waterschap":"Wetterskip Fryslân","publiceren":"02","Aangemeld":1,"Actief":1,"KVK":1174741,"tnostatus":2,"CPT":1402,"GMW":1170,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.368680849505485,53.07552952483546],[5.368953930704699,53.075370066022046],[5.369126997753062,53.075200482321],[5.369292824599931,53.07503539017242],[5.36938984445621,53.074956220371504],[5.369519503103114,53.07489501781418],[5.369783686768256,53.07480519709741],[5.369959767580201,53.0746603236986],[5.370095752853373,53.07448062393637],[5.370270446475308,53.07429026349205],[5.370406188169571,53.074154927043594],[5.370606297663893,53.07394098117276],[5.370715231633381,53.073788791783464],[5.370692919945231,53.07360570026938],[5.370765941039926,53.073487212245176],[5.370825665354728,53.07337377277423],[5.37087793961048,53.07323449757614],[5.371022746046087,53.07314633762302],[5.371361496600806,53.073114374730665],[5.371477881693784,53.072973984088534],[5.371686797518875,53.072890324978154],[5.371885201758697,53.072867328305044],[5.371965892377889,53.07277803595876],[5.371973399184073,53.07264324795811],[5.372092802502023,53.072524198865814],[5.372163011170164,53.07241188310371],[5.372364454493839,53.07235125282795],[5.372582216678414,53.07230129957159],[5.372753819895205,53.07223841835366],[5.372931509204837,53.07208398883431],[5.373123837293581,53.07210535268626],[5.373404523408065,53.07207730408555],[5.373638573823897,53.07213124610042],[5.373852116163985,53.07211274074482],[5.373947497759978,53.07202344910043],[5.374029583728093,53.07193809132434],[5.374272744880198,53.07190666682412],[5.374516131265791,53.07187019144886],[5.374751848301972,53.07178315997534],[5.374921835753994,53.07166074343318],[5.375109997356844,53.071531589348496],[5.375417278344786,53.07145580512687],[5.375735018901402,53.071490089962914],[5.375917080569671,53.07151144837084],[5.376088661957038,53.07150360151211],[5.37633041604906,53.071475542470345],[5.376555629345571,53.07142445909013],[5.376791547085498,53.07140594144155],[5.377136107644915,53.07140147755295],[5.377291359825273,53.07142002836417],[5.377485320979766,53.07140768844366],[5.377670190216397,53.0714211817236],[5.377858294754351,53.071518352550434],[5.378120771633496,53.07163575587205],[5.378102785822639,53.071813784608416],[5.378211641942023,53.0718890500766],[5.37819832394532,53.07201035939485],[5.378254944302269,53.07216256793711],[5.378359370420051,53.0722378329287],[5.378632348095323,53.07232265262589],[5.378777138190555,53.07222157064821],[5.379078545089885,53.072359193203994],[5.379309806751854,53.07236762809295],[5.379529176743742,53.072375504723325],[5.379809627917617,53.07240247978519],[5.380146738519715,53.07238284749378],[5.380377997843395,53.07240869526291],[5.380557026176362,53.07250136841737],[5.380813687617393,53.07258506813464],[5.381076198681384,53.07255868077287],[5.381217957852246,53.072436819964125],[5.38135388383941,53.07230091398053],[5.38145088412909,53.07215545418806],[5.381394255849654,53.071972362522466],[5.381155541253802,53.071925174555176],[5.381265837379767,53.071758939808475],[5.381312237407831,53.071655046684185],[5.381450962054987,53.07155002533044],[5.381591100049323,53.071345600953606],[5.3817493997719,53.07122374067129],[5.381973202371175,53.071178820531635],[5.382100027272746,53.07111872772923],[5.382185129498388,53.07099292752879],[5.382516174053631,53.07094071450438],[5.382816195568485,53.07092724634748],[5.382999673518767,53.07081829790008],[5.383168233396251,53.0706846371067],[5.383457769164373,53.07061556221955],[5.383675510842195,53.07055323319854],[5.383782985714659,53.07043472909456],[5.383862021920111,53.070332515991595],[5.384012854482565,53.070164033032235],[5.384172316241279,53.07012921647361],[5.384451349085248,53.070217958936425],[5.384697517608524,53.07026289384225],[5.384801960471,53.07014158547498],[5.38488705311335,53.0699972546843],[5.385043711071273,53.069901781280024],[5.385221346326951,53.06978440057071],[5.385371947542755,53.06963670061597],[5.385449577388045,53.069504715878075],[5.385610663830828,53.06938958958107],[5.385850775671186,53.069314891817484],[5.386031433906455,53.06920930843242],[5.386125383144465,53.06905879428897],[5.386183658644526,53.06896388507521],[5.386307443516382,53.06885493105968],[5.386017925089044,53.06887851696974],[5.385952418922789,53.068749900348706],[5.385806036669964,53.068669025011744],[5.385621176370459,53.06864038497667],[5.385706269804463,53.06831070866552],[5.385743570278909,53.06819613820213],[5.385820971884949,53.0680793214667],[5.385846382305864,53.06792487993099],[5.385931466819867,53.067822664993855],[5.386047789528852,53.067729994010726],[5.38612238629737,53.067557580760926],[5.386113527215239,53.06741829818836],[5.386188122114475,53.067299791551925],[5.386289526243099,53.06712007318268],[5.386450600958952,53.067054368436594],[5.386486496682291,53.06690441066817],[5.386640111569904,53.06680725490018],[5.386646169541433,53.066683131699705],[5.386581844507902,53.06647028102858],[5.386747571346927,53.06635346394703],[5.38693545068814,53.066225971228],[5.386914699860405,53.06608893487041],[5.386837081685517,53.065983349614584],[5.386866918510214,53.06582609503463],[5.386841513433231,53.06571152404321],[5.386995123312161,53.06561043193624],[5.387157818095769,53.065467222455986],[5.387203973247919,53.06537230364802],[5.387272727767408,53.06513642155592],[5.387396499860959,53.065041511492396],[5.387472488441471,53.06483932666984],[5.387523296518803,53.06472755876348],[5.387494862986774,53.06462871326329],[5.387420274340139,53.06452986789961],[5.387585991401321,53.06440350627282],[5.387687382414756,53.06423557610008],[5.38775450833345,53.06407551727409],[5.387936541999386,53.063923311747835],[5.388023013483064,53.06375089703162],[5.388176612048705,53.063587458421885],[5.388213901845584,53.06346896017618],[5.388337666309789,53.06334652471806],[5.388354204833063,53.063199936214815],[5.388428786411725,53.06308256058596],[5.388485420780598,53.06292810889194],[5.388460013710553,53.062808487723615],[5.388755325372201,53.06285621752914],[5.388826874951798,53.06268548255163],[5.388961121722452,53.062560242977355],[5.38903569921064,53.06241309634029],[5.389149194008646,53.06226313624129],[5.389287866150805,53.06210363269433],[5.389329577060869,53.06189639718755],[5.389554937551909,53.06163916857713],[5.389620430487132,53.06154593749474],[5.389648853724616,53.06141395075599],[5.389626468411813,53.06124041394854],[5.389745792913864,53.06113594911887],[5.389803826384666,53.06103822517748],[5.389818729237751,53.060832104616324],[5.390039651594221,53.060578244902764],[5.390097683387456,53.060487260392435],[5.390123078933686,53.06038953710593],[5.390158958206897,53.06026373208897],[5.390255905172046,53.06016937667315],[5.390390143252222,53.06008569557492],[5.390509464913756,53.06000818784468],[5.390619701974726,53.05992674486022],[5.390704759273872,53.05982958569816],[5.390724090688304,53.05965491516011],[5.390870209589879,53.059522367315616],[5.391070158026406,53.05938532458149],[5.391298317275788,53.05931455191842],[5.39141320176801,53.059201099710315],[5.391453508958369,53.05910337555728],[5.391618972781564,53.059007892894684],[5.391766721780604,53.05895846425574],[5.391927759278203,53.05890454198521],[5.392057559792413,53.058821416225214],[5.392234897180982,53.05862428267331],[5.392449759431302,53.05853834047584],[5.392685370663573,53.05847599356797],[5.392868768940424,53.05834961456245],[5.393131407585797,53.05830074463447],[5.393319262572137,53.05837542656767],[5.393549038989683,53.058310832042494],[5.393599598791256,53.05818782884389],[5.39348933395017,53.05801485443004],[5.393526596424874,53.057842438515515],[5.393522141883619,53.05767563140726],[5.393656368385422,53.05761272197257],[5.393991938401003,53.057482406291705],[5.39430210078252,53.05732232911001],[5.394392959921102,53.0571246318792],[5.394591260026551,53.056985893634874],[5.394709143805246,53.05679493357534],[5.394771775683396,53.05648660194519],[5.39489850052997,53.0562040918815],[5.394999833343635,53.055977188814424],[5.394998410964602,53.05586486384159],[5.394959477850732,53.05575029466337],[5.394840145792541,53.05566044243723],[5.394662787986836,53.055604857828904],[5.394421120886345,53.05555544957713],[5.393951313689409,53.05553862908622],[5.392055559274294,53.05557017437407],[5.390092905895792,53.055540469845354],[5.386519497249982,53.05562587478241],[5.386471724693489,53.0557528019464],[5.386431409312818,53.05585614054796],[5.386395523211308,53.05596004567006],[5.386409034154724,53.05606506515128],[5.386276202290108,53.05621108696472],[5.386039194118959,53.056163351448006],[5.38604059909454,53.056058323049754],[5.386095829732094,53.05596116679494],[5.385983972781541,53.05586231997379],[5.385979546672538,53.05572471710669],[5.385858607201445,53.055642161557905],[5.381563226028214,53.05576391048011],[5.381327609992972,53.05584758598883],[5.381121829669365,53.05588295413729],[5.380974090626097,53.05584924921792],[5.38075503117888,53.05581329371165],[5.380592371441653,53.055826764249865],[5.380428307820133,53.05585315616156],[5.380180804811302,53.05592221745277],[5.379940533847511,53.055997461190294],[5.379624283408624,53.05609460771952],[5.379452749939725,53.056184457026845],[5.379318502334501,53.056270938693274],[5.37916933662935,53.056374824811904],[5.379008286877119,53.05646018125367],[5.378866583889117,53.05652756668375],[5.378678720650198,53.05666627962587],[5.378537020546876,53.05671287983069],[5.378269966468207,53.05666175746249],[5.378049271831784,53.056661741087524],[5.377715086665008,53.05667799798576],[5.377497434472895,53.05661058580108],[5.377315439749557,53.056565641138015],[5.377139515425304,53.056453301658415],[5.37695915169023,53.05638758119744],[5.376760629116747,53.056293211348255],[5.376477272047059,53.05620388368962],[5.376525072936402,53.0560825769998],[5.376452150867062,53.055979231328195],[5.376129872375477,53.05593708509653],[5.375818275205074,53.05600108153495],[5.37552136200847,53.056090913380956],[5.375454205307558,53.05624366907724],[5.375378183056814,53.056418888424375],[5.375221554006532,53.056508733110896],[5.37527208677265,53.05666655021856],[5.375148307726492,53.056779986139915],[5.375067655377197,53.056861975427054],[5.37498116240462,53.05697598095668],[5.374834998391888,53.05712703865008],[5.374742451855072,53.057227564653914],[5.374527770973938,53.05736513616614],[5.374381395073283,53.0574645326711],[5.374093525648959,53.05764365585643],[5.373914517781892,53.057729003459514],[5.373744563744536,53.05790870426062],[5.373768286633653,53.0580794410765],[5.373593676833148,53.05825914158619],[5.37337898740722,53.05839615349419],[5.373198335847447,53.05852306001492],[5.373011869373455,53.058594926203384],[5.373043290256557,53.05870725486539],[5.373193821634469,53.05878814608045],[5.373377196139942,53.058921834006696],[5.373626311515808,53.05898476380978],[5.373664967882789,53.05909709310569],[5.373302513715626,53.05925206077093],[5.373171276779088,53.05932449957258],[5.373068239866885,53.05941547066539],[5.372983362185066,53.059528342742574],[5.37278473419387,53.05973780979335],[5.372599919742777,53.05971363303635],[5.372510452432458,53.05963106789357],[5.372398620907485,53.05952040993741],[5.372173288780044,53.05943221137188],[5.371963017970657,53.059569778749506],[5.372203032263625,53.059688316215116],[5.37239854008127,53.05976022817061],[5.372513399592362,53.05987256710005],[5.372504272186641,53.060002862561205],[5.372398410041984,53.060146059332276],[5.371546287726019,53.06094177834179],[5.371150892632961,53.06125286642397],[5.370900265361189,53.06145838703162],[5.370736155842162,53.06153474597662],[5.370449679853498,53.0616262466879],[5.370242410181675,53.06179190135971],[5.370266130752498,53.06193848407108],[5.370361641570033,53.06205531518858],[5.370134796928276,53.06222601688468],[5.369918487986693,53.06226698923827],[5.369691732756726,53.06220854793706],[5.36944867960343,53.06209731071391],[5.369411342287932,53.0622096300849],[5.36951270039402,53.062286583196325],[5.36976928621261,53.062355138518214],[5.369893022695336,53.06242536349906],[5.369799022872855,53.06259776411726],[5.368555969884062,53.06382978144463],[5.368387420093748,53.06389715018094],[5.368402257850087,53.064083611745836],[5.36830524255214,53.06420435013724],[5.367839511451492,53.06480015428359],[5.366890103873161,53.06590751991049],[5.366990028506306,53.06605974090225],[5.366891565742125,53.066260219258105],[5.366836275135065,53.06636579508226],[5.366731794331914,53.06648034879343],[5.366585578387843,53.066612866879005],[5.366442172982474,53.06673190655862],[5.366288499232912,53.06685824947287],[5.366161643575231,53.066962689427754],[5.365972035401647,53.06716933355082],[5.365874997154427,53.06730915601114],[5.365754143266813,53.06752142836785],[5.365660132847397,53.0676595710079],[5.3655586495173,53.06782579316372],[5.365489791297642,53.06802291477974],[5.365365921828219,53.06820148875968],[5.365122678157928,53.06842328103651],[5.364956869276811,53.068571518826886],[5.36500150303763,53.068813590846126],[5.365116274082735,53.06911070589833],[5.365175896481962,53.06921854853298],[5.365283314982519,53.069306747624836],[5.365525006231954,53.06939496137995],[5.365648757844298,53.069461255212154],[5.365772493883148,53.06956012273436],[5.365899265051738,53.06964832425112],[5.365975399371277,53.06982918014543],[5.365942462796598,53.06997295009145],[5.365818608089961,53.07011221059975],[5.365791476234979,53.07031270042576],[5.365900441522608,53.07057106623786],[5.365906228507166,53.07066766602355],[5.365816625384096,53.07084287658931],[5.365691338167182,53.07103774189258],[5.365622444075745,53.07130000288863],[5.365644727669724,53.07149432793218],[5.365652094258622,53.07168360078968],[5.365616373377213,53.07177962708141],[5.365492291594276,53.07191383718857],[5.365429759171954,53.07200873548841],[5.365386338925149,53.07213397377386],[5.365374345330233,53.072339525507786],[5.36545025879392,53.07252038154582],[5.365490513320852,53.072671460589376],[5.365441248692512,53.07281747356018],[5.365476853969116,53.07295676225539],[5.3655455469718,53.07310785538261],[5.365482751358253,53.07327970059099],[5.365457202670082,53.073558817553824],[5.365478103729699,53.07371551852031],[5.365504850128756,53.073847499958],[5.365341999694834,53.07409795413337],[5.365183870140805,53.07421474270713],[5.364992882837519,53.07430400973564],[5.364794433284803,53.07439551319254],[5.36463908194951,53.07455892049036],[5.364374844866221,53.0747335309063],[5.364174952510667,53.07489411641718],[5.364134572395504,53.07498733801708],[5.364365741618639,53.07519405885188],[5.364431195028763,53.07531987474405],[5.364577548261763,53.07542324047368],[5.364631072394135,53.07562318775767],[5.36467135614949,53.07571754768737],[5.364878611325582,53.07575072649009],[5.365011528939327,53.07569683549165],[5.365074288153441,53.07560754456526],[5.365236877273252,53.07544695034271],[5.365398172329829,53.0755132511391],[5.365482988627595,53.07562671395038],[5.36568600295474,53.07572840833783],[5.36589790449049,53.07578236147029],[5.366042488190587,53.07573127511069],[5.366057483088881,53.075578516472525],[5.366032347281967,53.07547237016434],[5.366181578182328,53.07543476310796],[5.366366439655224,53.075493204035425],[5.36653499069847,53.07552356056562],[5.36673644077855,53.07549776023598],[5.366845593413382,53.07539331695908],[5.367052842728397,53.075441094219045],[5.367234918717265,53.07545965352651],[5.367397656398366,53.075445644177975],[5.367570626842218,53.07550408084514],[5.36785108282958,53.07554905588536],[5.367872008359767,53.075670369853164],[5.367722766124615,53.07573492777586],[5.367455552079542,53.075805648774136],[5.367194362151509,53.07595050391406],[5.367151177774029,53.076051031636254],[5.367145055054126,53.076191992921665],[5.367279312321672,53.07627288888689],[5.367534405887101,53.076218457692775],[5.367791137626285,53.07613481324164],[5.36807775860184,53.075945031091],[5.368189704046934,53.07586361797199],[5.368297225593696,53.075765346625],[5.368543488055524,53.07562610276745],[5.368680849505485,53.07552952483546]]],[[[5.067092904618629,53.30719203535171],[5.069389626750682,53.30705862948628],[5.071091107475155,53.3071014456827],[5.072349878231374,53.30718598418874],[5.073881648860886,53.30701062913485],[5.077343245313833,53.30682031231654],[5.079575802014211,53.30634776398508],[5.084063373682,53.305972764042046],[5.085535674604134,53.30572515562057],[5.0873667682001,53.305550369858054],[5.088597751871394,53.30555343276274],[5.093426487399176,53.30488776027281],[5.094957956172061,53.30473206490541],[5.097023994386044,53.30423885856621],[5.098191336849676,53.30380323961831],[5.098530955557641,53.302767777077506],[5.098410563780659,53.30087427774245],[5.097585851931234,53.2998360149365],[5.096592596845611,53.29913612202835],[5.094580860300185,53.29656046291471],[5.093653429346975,53.295980273481796],[5.092797077334156,53.29556104326297],[5.091540591275528,53.29622233760828],[5.089985640519925,53.29726661864858],[5.088361487444127,53.29784503228001],[5.087360320321042,53.296531154565656],[5.084834000391534,53.296655915418114],[5.084764817560981,53.29703438424425],[5.082037374876548,53.297007563562815],[5.078679785638173,53.2967199905211],[5.077050768891317,53.296596231304875],[5.07552168373637,53.296452779686156],[5.074025134768496,53.29640903171799],[5.073430318091797,53.29586941082687],[5.060142023920367,53.29364185467673],[5.058788645822813,53.29228301725204],[5.057231540828085,53.29148161551339],[5.056702912349948,53.29102180124469],[5.05544444751057,53.29032083513961],[5.053363222124316,53.28850157054883],[5.049185226677847,53.28691553693429],[5.045209899837009,53.284971208843906],[5.040599935735539,53.283423494189776],[5.038874648141972,53.282940222181374],[5.03327005942012,53.28109041068051],[5.031543634100058,53.28076645790703],[5.030315025576523,53.2805635280527],[5.028225720626574,53.27989965401092],[5.020130100601502,53.27815669258293],[5.019925966859318,53.27837993208018],[5.016211016935406,53.277332222365175],[5.011597190592713,53.2764410291483],[5.008797771385379,53.27577367687107],[5.008079282882372,53.27571254881169],[5.006388810929046,53.27512926852549],[5.003369082859509,53.274481946353745],[5.001743955811639,53.27403830849496],[4.991459664664278,53.27163335645528],[4.990128640262518,53.27176846517918],[4.989367352301832,53.27140722914715],[4.987542480018472,53.271022526041676],[4.987278184278144,53.27084228761896],[4.981670834166462,53.269687550688595],[4.980837586942879,53.2694714384235],[4.979813612386378,53.269222910326086],[4.978820509030196,53.26878110158723],[4.977437292473147,53.26844295883331],[4.976708905277282,53.26848821283664],[4.976031854635215,53.26839294299981],[4.975371041065623,53.26797217216117],[4.97328069501759,53.26756642001104],[4.971121440158388,53.26741945389669],[4.970523004118998,53.26728485278844],[4.969896563155337,53.26689705733699],[4.969069997920759,53.266435824819624],[4.967844012756709,53.26603297325642],[4.972248935400285,53.25982261109194],[4.949402876938,53.25648820346853],[4.950973033257638,53.254673201682955],[4.945564242750979,53.25389614599718],[4.947113320499431,53.251889004221695],[4.941636797235947,53.25103742709297],[4.943175667258931,53.248596814187586],[4.934352752277433,53.25066206035043],[4.933892960645267,53.25142133152416],[4.933909272315204,53.25182441361782],[4.935006636989931,53.252960056574615],[4.935992684114328,53.25400007756365],[4.937840694477768,53.25524259869793],[4.940752450845109,53.257411504284946],[4.94394561337835,53.25943043673854],[4.947822296522506,53.26209366487416],[4.953040341323236,53.26602598773697],[4.954077684789281,53.26652221821109],[4.957347947910804,53.26858663722605],[4.959662393655375,53.269850410617],[4.970845910713656,53.27531031539012],[4.984520650574096,53.281355478661695],[4.994887797956297,53.28583386239826],[4.997968954357975,53.287119315396644],[5.010665620416129,53.29176327941135],[5.011760733541387,53.29204571042433],[5.016901888081073,53.29369580376633],[5.022171754166849,53.295710872537086],[5.028370252617901,53.29851344562581],[5.032782291156327,53.30000124716023],[5.037163792137586,53.30118987183532],[5.039978414291951,53.301867208148025],[5.045533330172555,53.302927794573215],[5.053069985086862,53.30490196561096],[5.057984102442878,53.30619095301915],[5.063546583354174,53.307201654854346],[5.065461133085572,53.30738696619549],[5.066792429603256,53.30733073227051],[5.067092904618629,53.30719203535171]]],[[[6.183477096327526,53.41429349503261],[6.18411702427865,53.41412161216556],[6.184854908473741,53.4138927660175],[6.186002803206862,53.41352828439773],[6.188116451005987,53.41285451969039],[6.189413126012115,53.412439047912216],[6.189502676252745,53.41240251002328],[6.189562153176607,53.412366172076446],[6.189621461478167,53.41232085006895],[6.189766125379489,53.41201438441711],[6.189971772539593,53.41175243859067],[6.19004578098829,53.41168904754517],[6.190254279705035,53.41157983262726],[6.190343491629157,53.41152532558239],[6.190328119541713,53.41150745735911],[6.190880272061357,53.41127913871395],[6.190925717477604,53.41129680607289],[6.190985359697839,53.41126945190936],[6.191179153243418,53.411178304318526],[6.191163780919189,53.41116043620922],[6.191429777692991,53.41105189566855],[6.191178962329085,53.41083529907061],[6.189724057759111,53.411436727817716],[6.189685243433654,53.41144399517398],[6.189683584936859,53.41144373672393],[6.189328377373341,53.411612961777],[6.189285322848827,53.411594469360566],[6.189045825622394,53.41171889434194],[6.186248809890002,53.41285922183201],[6.185562797383832,53.41313782596259],[6.185277920656101,53.41324915604356],[6.184937434033809,53.41337864519694],[6.184704669843453,53.41346186411046],[6.184469128699736,53.413541416921426],[6.184261450229165,53.41360691112263],[6.184229602963425,53.4136169521068],[6.183986684496366,53.41368801669334],[6.183757942751066,53.41375400937052],[6.183493800917229,53.41382336235206],[6.183244204452068,53.4138831479465],[6.182990172779386,53.41393900923647],[6.182737844806217,53.41398946718399],[6.18247630250697,53.414037738961156],[6.182217198000328,53.414079614929655],[6.18195472453186,53.414118277567134],[6.181689760070799,53.41415237396044],[6.18142364452256,53.41418117580811],[6.181155980085488,53.41420756125359],[6.180888233985584,53.41422954360066],[6.180619057427089,53.4142474017027],[6.180350735395188,53.41426264801806],[6.180082315359055,53.41427259282648],[6.179810332280629,53.41427689945726],[6.179539329859574,53.414277335898454],[6.179270816677715,53.41427407085912],[6.179001788857346,53.41426739451801],[6.178731338466332,53.4142569529079],[6.178506996318665,53.414243063037596],[6.178284403151154,53.41422619576068],[6.178059042720769,53.414206022152726],[6.177794911937874,53.41417936321173],[6.177529479823965,53.41414732160336],[6.177345983709652,53.414121929313474],[6.176874531786759,53.41404181914419],[6.176658427200035,53.41400145450466],[6.176444694923762,53.41395918735957],[6.176190592833968,53.41390523377812],[6.175980398890795,53.413859079052436],[6.175770438998932,53.41380923838571],[6.175520384520201,53.413746271745076],[6.175315141711162,53.413691187833734],[6.174866887138291,53.41356338536325],[6.174503291690473,53.41345946742725],[6.173372866594177,53.41312595212557],[6.169191017929836,53.41188864216685],[6.165449149791539,53.41078132612495],[6.161263447954662,53.4095424633416],[6.161063405927984,53.40948175073797],[6.160823536295926,53.409405569546706],[6.160112862368534,53.40917175464879],[6.159876559586968,53.40909303266105],[6.159562898929096,53.40898551467677],[6.159174727675763,53.408848642822186],[6.158950834249203,53.40876570636507],[6.158900381675767,53.40874464455854],[6.158710762390759,53.40866939502589],[6.158454249250853,53.40856186737125],[6.158272113742312,53.408484592195975],[6.157876014486098,53.40830760242952],[6.157767753439017,53.40825770831941],[6.157664559665756,53.408205265672464],[6.157597743641813,53.408168853342275],[6.157365173493851,53.408037718329716],[6.157299536195833,53.40799995075539],[6.157239617501475,53.40796241606767],[6.15698063935826,53.40779236320161],[6.156888309326917,53.40784264231304],[6.156859721264063,53.407824854379705],[6.156797162927242,53.407791882920684],[6.156696073267092,53.4078492624759],[6.15664717736069,53.407857114103386],[6.156591294499444,53.407851792269746],[6.154067288521988,53.40711457035366],[6.153765293366248,53.40702635326685],[6.151950575991409,53.406491490309925],[6.151950623117749,53.40649075347516],[6.151574499077833,53.406377573511904],[6.150583644399868,53.40607941214515],[6.148126827397963,53.405352898196874],[6.145707648772844,53.40463291719173],[6.142653480569398,53.40372857888503],[6.140832824612299,53.403189794652164],[6.140543476109234,53.40310193281207],[6.1404162891519,53.403059760765814],[6.140292482983536,53.40301144880895],[6.140164445999027,53.40296447474371],[6.139952254619737,53.403041081030594],[6.139831958742755,53.4030300356563],[6.139756409555665,53.40302082192051],[6.139725317962782,53.403017440261415],[6.139676506047764,53.4029388993613],[6.139624256360856,53.4028511788324],[6.139459742889761,53.40289176068626],[6.139323384412258,53.40293026091505],[6.139145020318618,53.402888165259824],[6.139003334773778,53.40285162637109],[6.138955613896856,53.402836245217905],[6.138839457954945,53.40279879213655],[6.138492060401544,53.40269263416139],[6.137782729536297,53.40246553515649],[6.137038489749337,53.40225277419549],[6.136606613905044,53.40212734231489],[6.136225168959075,53.402041651591645],[6.135992635168749,53.4019828611672],[6.135791633801141,53.4019320417833],[6.135275346728405,53.401815414725206],[6.135288073388615,53.40178731026988],[6.13524622709554,53.40176031797878],[6.134896431311082,53.40171490492756],[6.134669484380973,53.401681487604606],[6.134669227813187,53.4016814532028],[6.134426318058266,53.40164568152155],[6.133954489875841,53.4015667537991],[6.133218161408503,53.40144228188801],[6.132719069024946,53.401376663979256],[6.132045118158189,53.4012985401384],[6.131541759911262,53.40123292532261],[6.131085850031869,53.40120188755925],[6.131030073640521,53.401197676721154],[6.130195406257005,53.40113687992983],[6.132623676906755,53.400088463833754],[6.135233293513393,53.39895031110356],[6.137359657639824,53.39803385315678],[6.13852710962728,53.3975253684649],[6.13864582772745,53.397473662469785],[6.138860210576394,53.39738028723875],[6.140003607011243,53.396882253359415],[6.140818576735633,53.396533292814524],[6.141207159861421,53.396367415720405],[6.14153861971307,53.39620520197553],[6.144762352794167,53.39461610193972],[6.145338813371866,53.39433278447034],[6.145989155150206,53.39401313819245],[6.146491487680668,53.39376624205099],[6.147451417984976,53.39344352893984],[6.14797599549615,53.39326444216312],[6.148468465792519,53.393095871362924],[6.148707400139799,53.39301279965005],[6.148985834569371,53.39291598165171],[6.149084856007773,53.392881551681846],[6.149142509043628,53.39286150879855],[6.149501601109224,53.39273664740295],[6.149711728389613,53.39266358585876],[6.151277595590365,53.3921191058649],[6.15126297371676,53.39216752163769],[6.152748584472977,53.391652805875715],[6.152902112008324,53.39159264291434],[6.153082843489424,53.39151042675893],[6.153289186721876,53.391404559344394],[6.153511200143996,53.391178511475346],[6.153578220592062,53.39109310148576],[6.153776823250853,53.390828025931334],[6.15383519784713,53.39075011008006],[6.155273886315744,53.38887001973356],[6.155647777549453,53.38838093973972],[6.156348846204988,53.387463833294284],[6.15691501616567,53.38669404739212],[6.157149546974661,53.386581946036415],[6.157757565026884,53.38580309089696],[6.157496222989499,53.385478567707075],[6.157575066175634,53.385450837338986],[6.157425188541711,53.38529110233525],[6.157382782408068,53.38528223559431],[6.15733796754769,53.38529746480207],[6.157330494419209,53.38528968644972],[6.157312567498228,53.38526889223333],[6.157278026761213,53.38522922740886],[6.157233441366706,53.38517417157403],[6.157179748672633,53.38519555010877],[6.156182061574295,53.3841269630575],[6.155956054529448,53.3838862779465],[6.155673273476378,53.383585114712695],[6.155078630515654,53.38295182003753],[6.154795681579426,53.38265320780114],[6.15460554835118,53.38250525384386],[6.154600769453928,53.38246984602325],[6.154603008635344,53.38243363844239],[6.154615307441586,53.38239691767174],[6.154630953006124,53.3823624490734],[6.154653849381416,53.38232921879328],[6.154681518320043,53.382300675182556],[6.154726602295407,53.38225350202066],[6.154788631871899,53.38221689501712],[6.154921298989699,53.382155370205155],[6.155064401371592,53.38209922377044],[6.155222922717733,53.382044775783406],[6.155579549122375,53.381948574203264],[6.155924374675033,53.38185730851268],[6.156436153232949,53.381720272043324],[6.156733122589029,53.38164139480017],[6.15696721433121,53.381576783902496],[6.157085255283181,53.381536331217],[6.157092389388802,53.38154446225464],[6.157193168360473,53.381668795214686],[6.157508527563474,53.38155790958208],[6.157756255998732,53.38146522919295],[6.158148145264382,53.38131802688052],[6.158161207341307,53.381334153036995],[6.158748456148452,53.38117524654358],[6.158882371433824,53.3811368918193],[6.158929664254467,53.38119554139357],[6.159090629167065,53.38113451340917],[6.159262635677414,53.38106743875348],[6.159379999579486,53.3810128992843],[6.159397109384599,53.381004945286634],[6.159705996173078,53.38086140612449],[6.159950554839583,53.38073916179349],[6.160360480977374,53.3805202491843],[6.160842663949371,53.38025001375658],[6.16112910192268,53.38009625496529],[6.161038146807009,53.3800347690076],[6.161116455087422,53.37999889850099],[6.161345530973893,53.37988774009576],[6.161545022219348,53.37979444561883],[6.161774018049764,53.37969233512329],[6.161898233119201,53.379646401318176],[6.162024374449285,53.379588154595965],[6.162152220797121,53.37953192687554],[6.162354405455279,53.37944568534425],[6.162434213702427,53.3794097417512],[6.162511731638978,53.379362670636894],[6.162529185239284,53.37935139837775],[6.162590058264279,53.37931209014576],[6.16272511293658,53.379202379497436],[6.162772238337598,53.37915820912783],[6.162776623448332,53.37915389476349],[6.162856634368842,53.37907511604413],[6.1629191138078,53.379002416458576],[6.16296531384904,53.378944468159894],[6.163043052227681,53.37885721275251],[6.163087515615314,53.378799617101166],[6.163137035658099,53.378647507012126],[6.163148729887771,53.378591039201105],[6.163152906608174,53.37851435739982],[6.163149152606831,53.378435391130985],[6.16315016143264,53.37840217432734],[6.163130101873548,53.37826310175043],[6.16312975637204,53.37825562782422],[6.163120790302179,53.378202573289684],[6.163091838738893,53.378054545347574],[6.163073015284696,53.37795069664274],[6.163100234287615,53.37794769055436],[6.163096184374173,53.37791726492967],[6.163081426130933,53.377765506798866],[6.163065926384659,53.37765598454106],[6.163038148617247,53.377532165063585],[6.163009997590393,53.37738768101369],[6.162955912166589,53.3771382350246],[6.162928249921894,53.37702499951996],[6.162918665912522,53.37698096072711],[6.162911702622152,53.37695728448213],[6.162891536066459,53.37687474845608],[6.162847212006909,53.376693259147174],[6.162750748540974,53.37634344964841],[6.162677279774185,53.376102215127766],[6.162554970058328,53.37573550004695],[6.162423968741367,53.37530324667484],[6.162291920779736,53.374896150014614],[6.162281703377734,53.374860282932154],[6.162189261735317,53.37453560604764],[6.162097107767898,53.37425765142898],[6.162007975828691,53.373980575779406],[6.161926105644793,53.37380717199823],[6.161915155670423,53.37379735873919],[6.161867431959886,53.37375458093349],[6.161833518148736,53.37372112193095],[6.161784376997373,53.37366304183918],[6.161753226681656,53.373632000080704],[6.161721509892716,53.37360116893149],[6.161714416137341,53.37359437645629],[6.161643108515209,53.37363039993932],[6.161552165863924,53.373541337527584],[6.161474596006024,53.37347228994238],[6.161394397915704,53.37340748188791],[6.161336396933449,53.37336553354631],[6.161115139958925,53.37322696443547],[6.160948708619212,53.37312928493472],[6.160775268027147,53.37303443584104],[6.160536887030049,53.37291268870998],[6.159996625889995,53.37264695695244],[6.159452119885436,53.372387090672305],[6.159274307741128,53.37229945569306],[6.159097936603747,53.37220839706454],[6.158926357772987,53.37211640891843],[6.158762712569483,53.37202275212191],[6.158630736344342,53.37194398742427],[6.158502599420727,53.37186142434445],[6.15838344589484,53.37177709601889],[6.158271906224195,53.37169002365447],[6.158192399406555,53.37162143494278],[6.158122774452762,53.37155089626856],[6.158014427754208,53.3714323538958],[6.1578612682162,53.371252817877455],[6.157630338493043,53.37096721242605],[6.157459226580007,53.370745568232984],[6.157265300527034,53.37047472199981],[6.157431574645427,53.37043879402968],[6.157403591305753,53.37039889812799],[6.157317638850579,53.370276347646154],[6.157163219113903,53.370042726766215],[6.156976616840961,53.36975692579192],[6.156909683615648,53.369643418978995],[6.156830393918165,53.36949422875996],[6.156753176844112,53.369334871911335],[6.156692491564552,53.369201026492455],[6.15664983470791,53.3690923868781],[6.156614086370564,53.36898362207115],[6.156546710687642,53.368651951389815],[6.156531517627467,53.368457603265774],[6.156528751076547,53.368319694641315],[6.156540453546659,53.3679322571236],[6.15655348036749,53.36769459871738],[6.156603544930586,53.36733539999588],[6.15663182403953,53.367169347953464],[6.156662115113604,53.36703185637458],[6.156853745716591,53.36634809568362],[6.15694715091964,53.36590936756283],[6.156947176185995,53.36590909789154],[6.156951112812336,53.36585372214617],[6.15694875645084,53.36581438108746],[6.156926614440042,53.36574389725623],[6.156877030538809,53.36566774836727],[6.156843279337435,53.36563687446341],[6.156675766103008,53.36549328055088],[6.156422849267963,53.36526127655286],[6.156139149357353,53.36494572441145],[6.155708246662093,53.36445400862107],[6.155338505432028,53.364038726382226],[6.154797355750513,53.363428744257995],[6.154687695062105,53.36330220985337],[6.154690710186236,53.3633028196321],[6.154603029372224,53.3632042696785],[6.154369830380037,53.3629646772946],[6.154087454759737,53.36267957262324],[6.15365108728007,53.36225797068596],[6.153338795105231,53.36196254158181],[6.153261352359361,53.361890261707046],[6.153104327825536,53.36174372037662],[6.15293846259851,53.36158985838407],[6.153075890690701,53.36147091438365],[6.153046928518112,53.36144126692894],[6.153037947304961,53.36143206931608],[6.152433441593844,53.361141193697215],[6.152396068555371,53.361123379465475],[6.152219224180898,53.36103859483209],[6.151428662241279,53.360462260975574],[6.150748409870065,53.35996429444042],[6.150020030465268,53.35943652745344],[6.14997900172611,53.359352980165696],[6.149922968354525,53.35937117157209],[6.149245350790895,53.35888433063942],[6.149449535879234,53.35886924383353],[6.149479063519444,53.358853044698314],[6.149478419579931,53.35882598447699],[6.149467996123306,53.358818386271324],[6.149451227778036,53.35880615520661],[6.149378019261873,53.35873398095088],[6.149269711988474,53.35862721003069],[6.149154471256397,53.35865812211528],[6.149145994888859,53.35865191310806],[6.149088717147195,53.35860992721456],[6.149064064082235,53.35859184329375],[6.148313292016473,53.358060793170644],[6.14811299254414,53.357915687620135],[6.147927452292615,53.35778127928802],[6.147796535961985,53.357682359749845],[6.147637742155508,53.3575017673973],[6.14722448114393,53.35698546889356],[6.147169161648251,53.356916360840664],[6.146941265731714,53.35663852363803],[6.146902846773848,53.35659169140037],[6.146670709932425,53.35632269477389],[6.146237583822761,53.355847132468185],[6.145786926050351,53.35537329669971],[6.145485316836229,53.35508155367406],[6.145251099850928,53.3548299093948],[6.145232533348831,53.354799026466594],[6.145193326917882,53.354696210357325],[6.145160286443725,53.354534140589045],[6.144984022602038,53.354451866272505],[6.144959845383458,53.35443494654417],[6.14462643940712,53.3539912769801],[6.144160459493702,53.35336136404395],[6.144053655808091,53.35319334293879],[6.143948551256928,53.35302798864118],[6.143637018275036,53.35255443708082],[6.143625924255843,53.35252988658598],[6.143647083004184,53.35252040868537],[6.143658856033126,53.35251521296016],[6.144602901118083,53.35209854433189],[6.145013186029659,53.35192811068735],[6.145215065095909,53.35182817768609],[6.14535397449175,53.351742748772764],[6.145395913762912,53.35171094534655],[6.145406435785705,53.351702971753376],[6.14546104841074,53.351657430453216],[6.145497799163482,53.35160391497699],[6.145517971037308,53.35157338080797],[6.145543290816928,53.3515350688999],[6.145584771069322,53.35141754654785],[6.145579723266983,53.35128441357091],[6.14551986408213,53.35106445792181],[6.145517567284478,53.35105599012437],[6.145510036863942,53.35102831723296],[6.145431275692276,53.350674695853506],[6.145360019353457,53.35032075755836],[6.145306610421365,53.34996553862674],[6.145255722510391,53.34960841668722],[6.145192379020658,53.349072561796284],[6.145142026256589,53.3485324912924],[6.145113223228552,53.34834640362832],[6.145062833763003,53.34816242902963],[6.145015861678178,53.34801392511122],[6.14500717975208,53.34798648438953],[6.144958174797064,53.34777700870163],[6.144939178692832,53.34756109015767],[6.144963948617643,53.34730475745944],[6.145029819503935,53.34708015427016],[6.145138366664425,53.34683263829735],[6.1442914794775,53.3471769873564],[6.144364543141305,53.346459484584194],[6.144433000156904,53.34578240047181],[6.144509639079931,53.3450661057675],[6.144562473556423,53.3446142779626],[6.144599367748759,53.3442652644598],[6.144685413998499,53.34352325611235],[6.144714042719255,53.343276342616456],[6.14475874320475,53.34294361528866],[6.144771370789885,53.34287107666675],[6.144774322692514,53.34283574484764],[6.144825184829502,53.342536682860235],[6.144869844029741,53.34245685309649],[6.145150890127218,53.34233109040383],[6.145276742411949,53.34228521686592],[6.146234164886979,53.34199287096168],[6.147041174433599,53.34175213776034],[6.147418997511342,53.34163959602187],[6.14764703126948,53.341547849291295],[6.148033321199029,53.341399750274164],[6.148107698701517,53.34137415617816],[6.148348606344738,53.34129230993896],[6.148670301339831,53.34120783056317],[6.148736611831945,53.34135186181109],[6.149039382584953,53.341267879257195],[6.149588296413391,53.341133471719445],[6.150145338824715,53.34099786045828],[6.150701456832414,53.340872980451195],[6.15093703734439,53.34082726662004],[6.151107179829775,53.34081158420922],[6.151388204225373,53.340796248381324],[6.151675743195837,53.34079859864399],[6.151988532000139,53.340806700311354],[6.152136328784497,53.340800862935076],[6.152231233519201,53.34078922472118],[6.152491417581425,53.34072147148448],[6.152649313723215,53.34065963460361],[6.152785142737929,53.34058113492243],[6.152880899464835,53.340503411316995],[6.152886227137132,53.340499082244314],[6.152940684929546,53.34045452632302],[6.153009290289761,53.34037816203088],[6.153084765848129,53.34027443747343],[6.15319490074944,53.340093576173835],[6.153280792645877,53.339908735616405],[6.153338915658275,53.3397242519053],[6.153386876576023,53.33954243852641],[6.153425526478628,53.3393605044828],[6.153455979394598,53.33919039405093],[6.153501594076794,53.3389746302682],[6.153554851223842,53.33872268733386],[6.155207227164395,53.33625011514427],[6.157007849527433,53.33617163899309],[6.158710088944328,53.336120714346166],[6.159153448025637,53.33609766007273],[6.159986754136808,53.33603748592334],[6.160581853153166,53.33599853438501],[6.160771209254055,53.335986515701876],[6.16114098192625,53.33596792575049],[6.161272665477637,53.33596448134271],[6.161437935730808,53.33607069536815],[6.162041861300015,53.3360117234115],[6.162221069413749,53.33600140293809],[6.162481058051728,53.33597528616412],[6.16259612227754,53.33596259315189],[6.16271519800914,53.335947628034965],[6.162835602425712,53.33593139617867],[6.162974954615245,53.33590866219739],[6.163220207457393,53.33586457771548],[6.163444600307074,53.3358208969305],[6.163678029125207,53.335770508101874],[6.164176005970299,53.335655690393125],[6.164431066395117,53.335597882001544],[6.164527113388758,53.33557129252361],[6.164630932156338,53.33553449927995],[6.164715395161523,53.33548992427038],[6.164893060282704,53.33536935689625],[6.165229370934098,53.33514748412723],[6.165797270193262,53.33477405220657],[6.166060579881095,53.33459173687476],[6.16633684041137,53.33439936309746],[6.166341658909583,53.33439600723088],[6.166472819263251,53.3343025158915],[6.166599121147686,53.33421763722661],[6.166628249146146,53.334198084595165],[6.166847549062539,53.33405612841535],[6.167066325951277,53.33391857791464],[6.167385383591365,53.33371505155337],[6.167537926147645,53.33361719751617],[6.167766838930628,53.33345933557081],[6.167773510856936,53.33345473656174],[6.167940860877887,53.333337466595275],[6.168097209782609,53.33322610812125],[6.168218383238609,53.33313690330511],[6.168352090966269,53.333035306434276],[6.168540461593533,53.33288537117839],[6.168806122288323,53.33266843990095],[6.168958317443896,53.332543539186815],[6.169375537032813,53.33219182588512],[6.169580122015168,53.33201761239905],[6.169902010415808,53.331748286440806],[6.170125059043219,53.33155786714612],[6.170317679480473,53.33139469271946],[6.170487638022992,53.331248288838026],[6.170631756245929,53.33112550512631],[6.170729001006649,53.33104175484861],[6.170811773110606,53.330971037891565],[6.170959311794526,53.33083834753766],[6.171361655978112,53.3304628224373],[6.171701298473109,53.33013110545676],[6.171930621944337,53.32989876934958],[6.171956455804176,53.32987002649869],[6.172073031100019,53.32974032243236],[6.172167340077252,53.32962756638644],[6.172268976919693,53.32949688158709],[6.172334637365997,53.32941001155061],[6.172512044853411,53.329162557700535],[6.172268229511464,53.32916756487766],[6.172440348859756,53.32895449805968],[6.172711862017955,53.32838012654723],[6.172864375752102,53.327972083206326],[6.173041227071846,53.327514396394214],[6.173216020081558,53.32706421697657],[6.173380958535689,53.32663844328874],[6.173561284634618,53.32615959022253],[6.173752267886412,53.32571061544781],[6.173850999550521,53.32536485058927],[6.173897846736312,53.32520077271268],[6.173926946354807,53.32464342146986],[6.173865820175523,53.3243623654852],[6.173681391971156,53.32393017041954],[6.173492387567787,53.32365572860144],[6.173191859349377,53.323261743851866],[6.172862472253864,53.322877372881095],[6.17268573767393,53.32267533632471],[6.17259634032572,53.32257497641646],[6.172474272126688,53.322450703336486],[6.171904706689054,53.32215447455557],[6.171515717128684,53.32195236666223],[6.170935075112153,53.32170152010909],[6.170509642175896,53.321557199211156],[6.169995564413506,53.32142846888059],[6.169591938958042,53.321331095899005],[6.169569017718947,53.32132500029517],[6.16947220652969,53.321299257721755],[6.169276835700264,53.32124660665887],[6.169092642827017,53.321194592122104],[6.168945774569591,53.321145192160316],[6.168598528386805,53.320953918375125],[6.168514117354868,53.32090686100925],[6.168155659853958,53.32070701490949],[6.167797907228384,53.32050279553295],[6.16752963237263,53.320364362192585],[6.16747617505797,53.32033678198073],[6.166796409466044,53.32004828068587],[6.166586488790467,53.319977235844114],[6.166121402686746,53.31983493569782],[6.165694456634227,53.31970542481943],[6.165171083993163,53.31954691080669],[6.164685637544106,53.31941926657998],[6.164027140132568,53.31928898330116],[6.163332663860885,53.31917466203613],[6.163291816415296,53.319167934986304],[6.163225923648702,53.319157092451434],[6.161671775813288,53.318898034298776],[6.161228943345909,53.318740808709926],[6.161754443674996,53.317935368339576],[6.161950873813823,53.31763429757886],[6.161068442295785,53.317392240370744],[6.160017664664276,53.317098612902875],[6.160124171854835,53.316907765771425],[6.160206603044506,53.316760060381974],[6.160075756709533,53.316733306666],[6.159798375056904,53.31668428574553],[6.159800875161116,53.31668061251399],[6.159944906258083,53.31646945937257],[6.159982642911262,53.316414125731605],[6.160079885515898,53.31627153688853],[6.160425654129552,53.31587286756887],[6.160680728697727,53.31558964419825],[6.16069240187231,53.31557290079874],[6.160708373793764,53.315554036128454],[6.16081512032348,53.31542956330696],[6.160945525455255,53.31528147650111],[6.161036949140725,53.315167804095076],[6.161135515548672,53.31504497420463],[6.16116209932492,53.315002103053885],[6.161174475299606,53.31497937078406],[6.161189280463931,53.31494986556147],[6.161202078500522,53.31489465655447],[6.161208589317742,53.31486367672443],[6.161215473308151,53.314830089309346],[6.161221496846085,53.31479703746051],[6.161224857452306,53.314761926716294],[6.161224795868764,53.314712560293856],[6.161223941182961,53.31466580461798],[6.161222115477664,53.31461593751945],[6.161206818085512,53.314376533360466],[6.161198636514112,53.314206695087634],[6.161187430366192,53.31405222353612],[6.161169383924638,53.3137767328332],[6.16115875862705,53.31357773390828],[6.161149552624417,53.31340513456029],[6.161127813385873,53.31309019372343],[6.161110058324976,53.31266790309133],[6.161095770987639,53.31235600530876],[6.161088015571574,53.31226333283156],[6.161085956291869,53.31222048457021],[6.161083051455276,53.31218155089407],[6.161082520406364,53.31217452748577],[6.161078554690779,53.312047253493525],[6.16107640661747,53.31196937111118],[6.161073984017708,53.31188205554598],[6.161071279602085,53.31184675029883],[6.161062403381997,53.31180864562512],[6.161051916746838,53.311774451017826],[6.161044719467633,53.31173373843404],[6.16103073413684,53.31169854182151],[6.161021404155981,53.311675248282164],[6.161013436967172,53.31165350053354],[6.161008623615563,53.3116210754826],[6.160999144245819,53.311450724357755],[6.160978185198457,53.31116410111051],[6.160950730392824,53.310722005206394],[6.160914710350547,53.310173853255485],[6.160877987015356,53.3094902746379],[6.16083521591822,53.30883582975271],[6.160774452022771,53.308024692368605],[6.1607508521619,53.30779719360792],[6.160751251663613,53.307771815324756],[6.160765985125642,53.30775852981082],[6.160794374544273,53.307750448661906],[6.160864828343221,53.30775231321647],[6.161599142539461,53.30779916981965],[6.162451306601778,53.30785299854957],[6.16254754771786,53.30786475074106],[6.1626538258967,53.307874910509696],[6.16269646962548,53.30788032310858],[6.162718660545439,53.307899642849684],[6.162731674259646,53.30795005832799],[6.162741777320717,53.307970426156245],[6.162768799666431,53.30798395492269],[6.162882289596583,53.30799714108677],[6.162947688179966,53.30800652239438],[6.163004384192803,53.3080133357483],[6.163786079958228,53.308111648621214],[6.164292437301988,53.30816814765862],[6.164455589739225,53.30818658244313],[6.164644380958404,53.308196637778124],[6.164900660645242,53.30819966117438],[6.165508287956329,53.30819057846228],[6.165757647786181,53.3081767785459],[6.165849998430895,53.30817156146261],[6.166431382058954,53.30813240761444],[6.166753091546994,53.30811246666065],[6.167125629348799,53.30808922936173],[6.16730720449485,53.30807690868044],[6.167403641403737,53.308070361270694],[6.167690306277035,53.30804305200502],[6.167992462845174,53.308012146656715],[6.168242054522308,53.3079863619946],[6.168795056560141,53.30792941877518],[6.168975390274303,53.30791403048969],[6.169097116400697,53.307912276978215],[6.169204679747882,53.30791955643117],[6.169288916900043,53.307929449715424],[6.169379041480146,53.307938019124286],[6.169483021028388,53.30794622019301],[6.169574985392748,53.30794953017745],[6.169591591216517,53.307876719421486],[6.169904717036188,53.30788160815294],[6.170118621840027,53.30788422239323],[6.17026743805064,53.30789460132911],[6.170392932249486,53.30791277940645],[6.170610729984313,53.30794717649798],[6.17105856811675,53.30801508064653],[6.171481511499519,53.308078500337906],[6.171610907641598,53.308096705675766],[6.17191984839585,53.30812208553961],[6.171981203763997,53.30812845118743],[6.172410481330739,53.308172956317044],[6.172483023911147,53.308179059622546],[6.172612611302776,53.308192877442465],[6.172740636716552,53.30820742388871],[6.172937336510091,53.30821997606411],[6.173216240359776,53.308228719127655],[6.173950787641905,53.30825093209657],[6.174001701791647,53.30825810164523],[6.173999609162834,53.30823881434939],[6.17405104185395,53.308242332300665],[6.174840014673127,53.30841952726816],[6.174933821388449,53.308433298580226],[6.175456637693314,53.3084535564564],[6.176555063774094,53.308530847019824],[6.177245683498313,53.30857642158215],[6.177394943845369,53.308593627101835],[6.177546245555088,53.30859940741678],[6.178097559614781,53.30862727480007],[6.178626085818503,53.30866415866467],[6.179063645758343,53.30868597786317],[6.179361411272124,53.30868161622666],[6.179460249698432,53.30867434184665],[6.179604169889589,53.308663751410506],[6.179915820280224,53.30862882631066],[6.180184519695831,53.30859884756036],[6.180423095513207,53.30856327126338],[6.180904388533501,53.308463731412864],[6.181123949227515,53.30842868380651],[6.181470162594241,53.30836766549808],[6.181500381343919,53.3083613644564],[6.181650279746632,53.308330100995384],[6.181888957738453,53.30826928031507],[6.182032909848933,53.30822312144052],[6.182046213644824,53.30821885522293],[6.182155208029986,53.30818563308139],[6.182310909346904,53.30815098772857],[6.182415033165089,53.308127825584236],[6.182825308241719,53.30804113907109],[6.183063504541963,53.307986914571835],[6.183164884233504,53.30796384194903],[6.183665299925436,53.30784764846045],[6.184334442756363,53.30768516290353],[6.184968262312637,53.30753795889782],[6.185468033999912,53.307419884032065],[6.185737502949594,53.307358366047055],[6.18585243552584,53.307333349975686],[6.185942041452174,53.30731384843858],[6.186037983031166,53.307292966122546],[6.186125915783171,53.30727382607381],[6.186245886217351,53.30731182841431],[6.186268356362033,53.3073189483793],[6.186320761311091,53.30732474620169],[6.186387956689544,53.30732319425252],[6.186431006910028,53.30732851475146],[6.186475266125258,53.30734892343682],[6.186533738500638,53.30738096368873],[6.18660469465951,53.30743252785607],[6.18668614324941,53.30749575684557],[6.186757847245618,53.307536667893764],[6.186807758500589,53.30755927600077],[6.18684636252033,53.30757804206814],[6.186884123608786,53.30760073099548],[6.186921131023413,53.30763292290488],[6.186976924238818,53.3076717111121],[6.187039277570399,53.307711570156584],[6.187108209036941,53.30775419756016],[6.187171253921934,53.30778119283266],[6.187215348488587,53.307792643854384],[6.187273556477505,53.307809607263344],[6.187309359966817,53.307827825794476],[6.189888057837599,53.30907599815402],[6.194152701226396,53.311089319755425],[6.194521754838648,53.31135206170047],[6.194698261119423,53.31151569979501],[6.195015671251807,53.311802832938525],[6.195414347126483,53.31215644267259],[6.195537536178575,53.31230725591632],[6.195678312761441,53.3125149916387],[6.195810055956397,53.31263464793179],[6.196177975355526,53.31286445119546],[6.196795525744966,53.31328937549208],[6.19733227083786,53.31367736196731],[6.197695316426303,53.313905620860936],[6.198056471109986,53.31407385835768],[6.200011159305514,53.31496479030625],[6.201817516256746,53.315776517459874],[6.202438885545863,53.316048325188994],[6.203179525173477,53.316329680976224],[6.203983686710816,53.31660518180759],[6.204477272515963,53.31678243802258],[6.204982255889999,53.316961447318306],[6.205360001861296,53.31709969957229],[6.206140214246496,53.31702623883309],[6.208202816157655,53.31667438702825],[6.209047617459603,53.31648857642098],[6.210886591992219,53.315909001390786],[6.211111600644906,53.31583872754504],[6.211254260449749,53.31579510374467],[6.212092920277557,53.31553930648795],[6.212454787702509,53.31541582097269],[6.212796258543304,53.31529929525145],[6.213227239644675,53.31513850963128],[6.21355034423483,53.31500495410013],[6.21380428899694,53.31488931431348],[6.213923497631495,53.31483279195609],[6.213930040124025,53.314829683252064],[6.213936597609595,53.31482657398627],[6.214689073991823,53.31433903550095],[6.215366690777212,53.313811644833564],[6.21549369720932,53.31371533253014],[6.215567346960315,53.31366266314105],[6.215612721355003,53.31363385686179],[6.215669065132347,53.31360900065355],[6.216332402009652,53.31333340016135],[6.217357831357253,53.312889095926444],[6.217513398598842,53.312830144603716],[6.217592993014684,53.31280199068154],[6.217715775755628,53.312773439256794],[6.21784233048034,53.3127467491837],[6.217955186845204,53.312733298950256],[6.218061873623612,53.31272438447104],[6.218154956963525,53.312721153227216],[6.218258465309733,53.31272173110251],[6.218517222033294,53.31273870392529],[6.219081911152113,53.31278674226501],[6.219640662272382,53.31282251835157],[6.219861385679867,53.31282709058195],[6.220119786203206,53.312819342181065],[6.220380601337079,53.3127999313144],[6.220866885434778,53.31274266306341],[6.221842788576849,53.312617646931635],[6.222292905607603,53.31255788296535],[6.222445120868,53.31254006675979],[6.222941249213733,53.312504853363656],[6.223667348756428,53.312456778380735],[6.224576829508137,53.312402029604044],[6.225575836054253,53.31233800543497],[6.226761247954711,53.312268582606116],[6.227693078060789,53.31227931266304],[6.228063386905617,53.312267655731574],[6.228254410595619,53.3122519957379],[6.228905518013351,53.31218507678592],[6.229124625803658,53.312167736110986],[6.229894910209795,53.31211489266634],[6.230689580960538,53.31206850494297],[6.230803619121216,53.31206589837989],[6.230906696551149,53.31206517476531],[6.232332468531671,53.31220773358973],[6.233168707173851,53.31228252342283],[6.233646379917333,53.31230742003761],[6.234378178105621,53.31233018208612],[6.235256737653875,53.31231975332267],[6.237665640717446,53.31230273027429],[6.238285592398205,53.31228169099902],[6.239585063834383,53.31227248123972],[6.240102134344549,53.312270519804166],[6.242401903221706,53.312248551456875],[6.243701204320348,53.31223612624019],[6.24521755694865,53.31215161796856],[6.246005875967184,53.31210794145659],[6.247174632570367,53.31203279283243],[6.247441666462645,53.31203257123407],[6.247490708364561,53.31203380176004],[6.247996020623044,53.312076504577945],[6.248229830522296,53.31212257984843],[6.248256994219772,53.312126653025295],[6.248496759788797,53.312198195563305],[6.251137685469273,53.31216821374496],[6.252782541332716,53.312149243419164],[6.254103094961718,53.312132868908904],[6.254132536433511,53.31213458816968],[6.254177867285786,53.31213851139811],[6.254227006324165,53.31214601035333],[6.25426173527081,53.31214726938551],[6.254311527926977,53.31214849170456],[6.254386954456422,53.312147848471945],[6.254433671290948,53.31214459117226],[6.25445054843893,53.31214375935653],[6.254500746624665,53.31214127647482],[6.254661972213323,53.31212830563225],[6.254865374230014,53.312111624395214],[6.254997465102125,53.31210774145198],[6.255695987693835,53.31207952107983],[6.256358872976667,53.312056416111595],[6.256431827905961,53.312055232427504],[6.25648259461851,53.3120556917947],[6.25654300698998,53.31205974756577],[6.256607933359739,53.31207036650066],[6.25686454956295,53.31213681024324],[6.257119576229963,53.312202518934264],[6.257323429076709,53.31225874050295],[6.257406509936045,53.31228272387891],[6.257487598743634,53.31230612858397],[6.25768066210034,53.31235925552676],[6.258126911318628,53.31248333229768],[6.258614911506604,53.31261885789396],[6.259441370363398,53.31285639313794],[6.260089658282105,53.313010679495584],[6.26031939353966,53.313055430864715],[6.260579932781282,53.31310904248328],[6.260849332061399,53.31315115043581],[6.261111534394515,53.31319641929698],[6.261425971087266,53.31324265523643],[6.261630721087682,53.3132789863703],[6.2619549374582,53.31333976962128],[6.262162083068823,53.31352878584701],[6.262317741099211,53.313650837692116],[6.262550115312624,53.3138171066815],[6.262860756190607,53.314032935951644],[6.26314349777655,53.31422393377758],[6.26336191878916,53.31438183794268],[6.263682117163518,53.31460459576426],[6.263767065510648,53.31457392796901],[6.264295424053803,53.31494459752558],[6.264180887831931,53.31499824242806],[6.264236959849086,53.31503577995982],[6.264937420595595,53.31552362298296],[6.265257511732051,53.31574619740616],[6.265675158063365,53.31603660994584],[6.266419735879467,53.31655527517415],[6.267106789580097,53.31703148598476],[6.267917244518767,53.31759994355946],[6.268501441909257,53.31800749453904],[6.269330843911441,53.31858336059145],[6.269922425167097,53.31899332160708],[6.270197720047713,53.31918980286055],[6.270580599071039,53.31945660542839],[6.271643102526127,53.32019223334281],[6.271748187639755,53.32026499022907],[6.272586417703466,53.320848487770185],[6.272937379124273,53.32109279313861],[6.27553597762506,53.32290520882456],[6.276036580148645,53.32325983995809],[6.276434103897975,53.323533138427855],[6.277053339846448,53.32396021080102],[6.277600927438523,53.3243395309729],[6.278028901613186,53.32463792907053],[6.278113552694259,53.32469694903618],[6.278727731311194,53.32512242414796],[6.279291425719176,53.32551278585025],[6.279896681301739,53.325936012068745],[6.280392725551387,53.32628309298582],[6.281033154419347,53.32672951347415],[6.281771745926874,53.327239753675066],[6.281840685944992,53.3272875928133],[6.282195346876967,53.3275336677286],[6.282795440929064,53.327951373496056],[6.283666066197477,53.32855884081692],[6.284182164008879,53.32889437144508],[6.284454842340228,53.32908298612592],[6.285968451788785,53.330129942675114],[6.286005659091646,53.3301556869479],[6.286279616835066,53.33034515948549],[6.28643668566043,53.33045378978541],[6.286441285158386,53.33045697207874],[6.287814044110762,53.33140641293712],[6.290881419617325,53.33352769517193],[6.291603533946893,53.33402704482268],[6.291562922880294,53.33405969006983],[6.291545561859189,53.33408722671092],[6.291522362627783,53.334126947379424],[6.291526957746268,53.334154912336636],[6.291558660830083,53.33418418296648],[6.291616366082477,53.33422280953304],[6.291673681143096,53.334256416205385],[6.291731912851061,53.33426794677983],[6.291796156745999,53.33426978199837],[6.291879978175855,53.33425105380282],[6.291932849270943,53.33422459749915],[6.292931967622514,53.33492012364235],[6.292996715975179,53.33496520232302],[6.29277912085653,53.335029579943104],[6.292604236851248,53.335169788742945],[6.29317878260339,53.33554914901755],[6.293346795377695,53.33542911927878],[6.29346027878811,53.335286766151825],[6.293448949685515,53.3352662924155],[6.293446710064762,53.33524477061449],[6.293453696304136,53.33522361032133],[6.293521631960749,53.33517754116188],[6.293522473768566,53.33517474917183],[6.293539118509186,53.33515961738779],[6.293565370438237,53.335130889920215],[6.293588766903222,53.33510128541441],[6.293602240149923,53.33508093920777],[6.293607548302806,53.33505927052035],[6.293601727774719,53.335044479077084],[6.293588365646579,53.33503155960006],[6.293583309596218,53.33503384387079],[6.293538569762896,53.33500224637667],[6.293720765926731,53.33491005422802],[6.293754557726347,53.3348929600185],[6.293749637939199,53.334889573892475],[6.293790154358474,53.33486815174154],[6.293811534031387,53.33485684839014],[6.293825014490753,53.334849710857405],[6.293939825251964,53.3349288628618],[6.294271871060832,53.3348254125596],[6.294930922145062,53.33452551001048],[6.295380649101233,53.33431284595323],[6.295482003016063,53.334264914178185],[6.296540217973814,53.33379974074774],[6.296568785989985,53.333786998474615],[6.297154303446961,53.33352587379692],[6.297221464153197,53.33358060051542],[6.297427260933342,53.33348845751092],[6.297450429962165,53.33347813749773],[6.297961720203048,53.333250323634026],[6.298364375730296,53.33307604993877],[6.298549863878907,53.3330289428664],[6.298721082604658,53.333038175894764],[6.298880843951925,53.33306852223955],[6.299203276181279,53.33313261589153],[6.299603596746499,53.33299367823239],[6.300244178099222,53.33277234060768],[6.300891268150797,53.33254961054254],[6.301544681015602,53.33232024291457],[6.302193588770647,53.33208406760345],[6.302826399153393,53.33184440813166],[6.302833963299106,53.33184151986893],[6.30354228424298,53.33157076614745],[6.304176228909208,53.33132375838018],[6.304799637914769,53.331070106252106],[6.306032625492192,53.33056712107372],[6.306295447822292,53.33045760674442],[6.306645564652901,53.33030710579898],[6.307243812118653,53.33003632668079],[6.308432097316625,53.32949237809574],[6.309036646303968,53.32921484763442],[6.309611658849708,53.3289489879462],[6.309732686485196,53.32889165587034],[6.310197995977544,53.32867122273074],[6.310739748473581,53.32837529508928],[6.311091696159058,53.328162576193215],[6.31163353506024,53.327811112373425],[6.31229560766769,53.32733116771394],[6.312639882779289,53.326981416930145],[6.31276963123589,53.32683092246036],[6.312914941407157,53.32666706273601],[6.312910759607706,53.32661773645454],[6.312250191985348,53.32637632482405],[6.312385205948136,53.326215285618616],[6.312518171115745,53.32602314461671],[6.312561156784849,53.32593162622574],[6.312589276123801,53.325825773825535],[6.312610870575515,53.32576272528646],[6.312642334823386,53.325765798762724],[6.312718854082142,53.32550539590564],[6.312747370600734,53.32535935597498],[6.31278240403718,53.32514155006238],[6.312762271723146,53.32513636773122],[6.312806744786927,53.32471032589887],[6.312870590041305,53.324456723828796],[6.312887164668349,53.324374538205426],[6.312920217630793,53.3242105906354],[6.312992564815874,53.323911967239304],[6.312998197929147,53.32386263685563],[6.313000821895766,53.32384782622687],[6.313075442830026,53.323425325632066],[6.31314876703848,53.323021408989746],[6.313228440772453,53.32260927487175],[6.31329761056193,53.32221540868706],[6.313405615287273,53.32171111382324],[6.313404347474996,53.32149780186646],[6.313381342687571,53.32116411340511],[6.313384654437211,53.320948843007166],[6.313415371105433,53.32072807806167],[6.313434315044606,53.320722010242505],[6.313090181754412,53.3203368009373],[6.31307580195834,53.32034782039721],[6.313060532302817,53.32034536787896],[6.313030800492259,53.320338210456356],[6.312958933347534,53.3203228774924],[6.312910048121949,53.32031132977307],[6.312839101524772,53.32029483911186],[6.312775966473887,53.32028570169198],[6.312715645880254,53.32027482600053],[6.312663894459098,53.320263300701036],[6.312611046283227,53.32024608651327],[6.312554435656377,53.320231183435155],[6.312456942011297,53.32018182935716],[6.3123883213587,53.320143629146294],[6.312300545400758,53.320101604591315],[6.31224458076138,53.320074143125105],[6.312191707537099,53.32005577886001],[6.312153195291319,53.32004014371798],[6.312100120686138,53.32001379248217],[6.312029708224273,53.31998017063745],[6.311957527596916,53.31995228577881],[6.3117794614813,53.31989018921642],[6.311722928056225,53.319870478288145],[6.311550933561536,53.3198143730691],[6.311456872867723,53.31978781570082],[6.311453970717498,53.31978613089483],[6.311365751225705,53.3197646593686],[6.31131338004321,53.319750783647],[6.311305055472847,53.319738375377305],[6.311274978605743,53.31967871639762],[6.311231956727386,53.31959690851364],[6.311156119526399,53.31946003642947],[6.31103036265945,53.31923171329873],[6.310834512989469,53.3188676061036],[6.31067806477617,53.318592756946124],[6.310541917374171,53.31833028643327],[6.310322259672269,53.31792757879513],[6.310109252695551,53.317524819194425],[6.310062201341427,53.317433346178525],[6.309986332810119,53.317295323457635],[6.309874666171718,53.317096561710756],[6.30977079573166,53.31690514490526],[6.309713753230383,53.31679549828702],[6.309518053561336,53.316435951957764],[6.309279366494178,53.31599574689389],[6.309190350015467,53.315826455034774],[6.309142491732421,53.31574126873172],[6.308985700531204,53.31545215041413],[6.308966983111185,53.31541891184994],[6.308916916983727,53.31533004916148],[6.308813042042408,53.31513805599986],[6.308659109134542,53.31484834926138],[6.308610248243702,53.31475686205726],[6.308482219293169,53.314517168707106],[6.308394269554127,53.3143518667679],[6.308387634721551,53.31433068426103],[6.308369743753267,53.31432411797316],[6.308309930156795,53.314294402456206],[6.308022512985962,53.314155986502925],[6.307760190834006,53.31403046996637],[6.307774198941555,53.31401893292166],[6.307663239663163,53.31396341518189],[6.307572566463381,53.313919135744655],[6.307426909193635,53.31384851756307],[6.307174105113794,53.31372234329272],[6.307075687342118,53.313672991927994],[6.307042762364957,53.313656593366716],[6.307041913297367,53.313656168359664],[6.307024353369443,53.31363977772232],[6.306932505560973,53.313548134222515],[6.306773296509154,53.31339144544003],[6.306555520657493,53.313178207834085],[6.305995115535811,53.31263584447331],[6.30578580889718,53.31243104125858],[6.305781242430749,53.312426565367886],[6.305711260041644,53.31240948812628],[6.305504274391248,53.312362816317204],[6.304807581260517,53.31220519890952],[6.303588622334319,53.31192836614766],[6.303516909391804,53.31191872283463],[6.302763402438889,53.31181297056831],[6.302407446281497,53.31176397758518],[6.301766109356103,53.31167569551572],[6.30060904827492,53.3115137119616],[6.300485939520951,53.31158225642605],[6.300421220849164,53.311616615420675],[6.300349098775836,53.31165491284474],[6.300307050698598,53.31162196719262],[6.300254016164803,53.311585321781926],[6.300321702197743,53.31154938528092],[6.300385084891314,53.31151572852063],[6.300534159257707,53.31143271697312],[6.300658298268802,53.31134839461514],[6.300736763395682,53.311295096791824],[6.296379267991249,53.30880069664028],[6.295959845704211,53.3086489006659],[6.295890192598639,53.308607868209755],[6.295829081266428,53.30856562103898],[6.295792875991084,53.308534129776774],[6.295574992559651,53.308434489449375],[6.295153348452509,53.30814486561002],[6.294976688619856,53.30802351737649],[6.294586313180539,53.30775150145175],[6.294192198324993,53.30747761591972],[6.293799958582727,53.30720563806728],[6.293410729723124,53.3069353523514],[6.293017813224814,53.306667124273346],[6.292855714069818,53.306555637304555],[6.292615101961424,53.306390162186126],[6.29222895948516,53.306128242402906],[6.292133484983673,53.30606310468182],[6.292107839135099,53.306044149077664],[6.292083988321901,53.30602635703357],[6.292059001803339,53.306007387899534],[6.292034996592159,53.305988680450234],[6.292011251638797,53.30596952198125],[6.291988056647098,53.305950116391266],[6.291965519436072,53.30593062530458],[6.291943351375261,53.305910825908846],[6.291921784207146,53.30589105753268],[6.291900237297685,53.30587082239566],[6.291879706857242,53.30585112720433],[6.291858326859899,53.305830288315796],[6.291838196958204,53.30581038356375],[6.291817800953374,53.3057899687661],[6.291798212055655,53.30577010493534],[6.291778156873976,53.305749463037564],[6.291757526872249,53.30572788146269],[6.291738499426683,53.305707635885206],[6.291718528159908,53.30568597779118],[6.29170035982482,53.30566589672212],[6.291682136061124,53.305645321571156],[6.291663857822495,53.30562429776326],[6.29164534128659,53.30560261971251],[6.291609634155816,53.30556026872791],[6.291532827227009,53.30546811375648],[6.291526388368276,53.3054622223547],[6.291492876063884,53.30543152754806],[6.291457471985065,53.30538502295143],[6.291440495099543,53.3053623897307],[6.291422877461604,53.305338503706714],[6.291406621823917,53.305315909596224],[6.291390105895817,53.30529232978829],[6.291373960595086,53.30526854876528],[6.291358154992635,53.30524452310714],[6.291342938637587,53.30522069053851],[6.291328154702698,53.30519673773743],[6.291313974863042,53.305172969360086],[6.291300338251841,53.305149349427346],[6.291286558312729,53.30512462549136],[6.291273788453149,53.305100855046035],[6.291260765041595,53.30507570335296],[6.291249051803518,53.305052239475316],[6.291236830521067,53.30502672223258],[6.291225890696803,53.30500292002399],[6.291215101243041,53.30497844309113],[6.291204572761105,53.304953515147496],[6.291194143938568,53.30492764244315],[6.291184960337367,53.30490387246815],[6.291176147585683,53.30487994671061],[6.291166913530949,53.304853804490634],[6.291158453918929,53.30482880698287],[6.291150323450135,53.30480377954678],[6.291142828282582,53.30477970933924],[6.291134939408554,53.304753341472875],[6.291128095820956,53.30472957142977],[6.291120841064807,53.304703387771866],[6.291114518351674,53.30467945227204],[6.29110781054298,53.30465284198728],[6.291102105018372,53.30462900039077],[6.291096105876908,53.30460258275783],[6.291090932846498,53.30457837809211],[6.291085653978612,53.30455199057896],[6.291081121031603,53.304527538122166],[6.291076749463436,53.30450146730731],[6.291073110657091,53.30447673904487],[6.291069950978068,53.30445125215688],[6.291067364515131,53.304425194906635],[6.291065595453595,53.3044002186073],[6.291064565965369,53.304374724689914],[6.291064272900438,53.30434927923741],[6.291064869536386,53.30427325526545],[6.291064533659376,53.30424795366399],[6.291063429076798,53.30422246031015],[6.29106122644831,53.30419679568876],[6.29105815390762,53.30417116415458],[6.291056248310007,53.30414540730578],[6.291072226062616,53.30393652949299],[6.2909133145213,53.30388048550095],[6.290934814155273,53.30384338292389],[6.290904766168245,53.30385123790341],[6.290840972166778,53.30387583571999],[6.290748373682567,53.30385164142551],[6.290613013903944,53.30381774040381],[6.290504836241472,53.303795325187366],[6.290421754768308,53.3037814287705],[6.29033174165963,53.30377323672074],[6.290269837115695,53.30377060179674],[6.290258863430249,53.303771645819594],[6.290250542859665,53.30377333449067],[6.290156252875136,53.30377150037864],[6.284757434480405,53.30393983415061],[6.284721334083601,53.3039387471831],[6.284716316988527,53.30394202838696],[6.284691010695031,53.30395861645978],[6.284682600191966,53.30396390010266],[6.284650808647931,53.30398389732029],[6.284154589903781,53.30391407169747],[6.283176349579793,53.30378030230884],[6.282384690933012,53.303669315681844],[6.282025879236066,53.30365035938063],[6.281799079870356,53.30363592759537],[6.281250253846015,53.303481827182715],[6.280789999135945,53.30335027519794],[6.280689157174375,53.30331884701848],[6.280661992400369,53.303316056809315],[6.280616140227623,53.30331267797171],[6.280601916139815,53.30322784081683],[6.280181376549232,53.30307616036781],[6.279794927364803,53.30293490894434],[6.279648073769554,53.30288216581033],[6.279638340926349,53.30287867085441],[6.279431258340727,53.3028026522621],[6.279323548233665,53.302763977476985],[6.279096567941907,53.30254908755645],[6.278812139778483,53.30228275766497],[6.278691966479196,53.30216866697938],[6.278663078838687,53.30214125047417],[6.278628148690673,53.30210887304991],[6.278564939892261,53.302050260654674],[6.278400643658234,53.30189293415419],[6.278308306441744,53.30181188468178],[6.278239314533161,53.30176808747092],[6.278204925900248,53.30177206225781],[6.278097091924939,53.30178454356751],[6.277859461739465,53.301819660377674],[6.277745060313654,53.301835190796],[6.277739155794452,53.30183617811743],[6.277682803587263,53.30171581798104],[6.277635183389692,53.30161949313889],[6.277618989797908,53.30158206171171],[6.277616012816091,53.301575173371226],[6.277541740124329,53.301469538892746],[6.277456313900112,53.30134965504625],[6.277368329729313,53.301224272300445],[6.277303782972271,53.30113195447202],[6.27729563720236,53.301119551518696],[6.277284285539536,53.30110226599954],[6.277222167120634,53.30100621891284],[6.277194302322359,53.300964300079634],[6.277192738795733,53.30096194850073],[6.277166217094778,53.30092265240064],[6.277161458435717,53.30089701501779],[6.277155385099775,53.30087966384621],[6.277143848296154,53.30086286473642],[6.277113011446959,53.3008317510692],[6.277047439815672,53.300755120721895],[6.277003287589531,53.300706798566125],[6.276992245793106,53.30069581864807],[6.276931745045326,53.30063082341369],[6.27695311778783,53.30061906441317],[6.277107441346498,53.30053136189455],[6.277336557927742,53.30042929329308],[6.277470566311575,53.3003711602019],[6.277602270944856,53.30031187550173],[6.277867399518179,53.30020474066997],[6.278122267948945,53.30009766377129],[6.278344602646658,53.30000442301455],[6.278676969816855,53.29987257106742],[6.278954671078449,53.299766536039506],[6.27914135758176,53.29969191606751],[6.279322933364705,53.299620397952566],[6.279555869841521,53.29952657314386],[6.279737459250947,53.29945505428105],[6.2798505680019,53.29940858404427],[6.279959819946825,53.299364883487215],[6.280072245775475,53.29931947865024],[6.280228303124746,53.29925730536639],[6.280401009002389,53.299183550887896],[6.280405394790821,53.29918167617136],[6.280676002657374,53.29907398268968],[6.280848046385687,53.29900451876248],[6.280973963397007,53.298949398075635],[6.281157146334905,53.29886599490636],[6.281271739576172,53.29874510132513],[6.28138451952586,53.29862071641276],[6.281450253218955,53.29860299254998],[6.281524481006561,53.29857749543236],[6.281591724559065,53.29862750420091],[6.281615332826381,53.298647734841],[6.281629182135951,53.298651585499336],[6.281647238071268,53.298652134121774],[6.281769370370727,53.29862002629497],[6.28186799961302,53.298587940362474],[6.281955897889888,53.29856130808615],[6.282244812050045,53.29846157028196],[6.282367442747279,53.29841303204293],[6.282428778595039,53.298397353051506],[6.282439295805201,53.298393878428314],[6.282487428377757,53.29837797426843],[6.282487845180072,53.29837782717437],[6.282654509143724,53.29831034225173],[6.282660354291969,53.29830797107276],[6.282735151861758,53.29828179536803],[6.282933962156613,53.29821521109152],[6.283092978543883,53.29815005574399],[6.283046012063578,53.29810290681955],[6.283020107297868,53.298080464939524],[6.283230916765369,53.298016846339806],[6.283334563607733,53.2979896010937],[6.283421221399069,53.29796330004728],[6.283505334620109,53.29793436767759],[6.283508193758631,53.29793338479696],[6.2836390839199,53.29789412875369],[6.283844534688279,53.29783616494067],[6.283909958573378,53.29780794635337],[6.284059337659805,53.29774973560681],[6.284230687568188,53.29768133291629],[6.284355070555169,53.297633624104485],[6.284435155741266,53.297602905580995],[6.284590693482413,53.2975430665725],[6.284740336346429,53.29747816754557],[6.284869245415673,53.29742312834725],[6.284961753346226,53.29738470564713],[6.285047019468453,53.29734642698433],[6.285241458809689,53.2972582970008],[6.285503922447088,53.297139501617515],[6.285721553349876,53.297040863300445],[6.285943531983301,53.29693711565784],[6.286118806167993,53.296857987220896],[6.286370009888445,53.29674391094611],[6.286551286516052,53.29666497091491],[6.286911282754171,53.29651259908246],[6.28708367598455,53.29643788504487],[6.287231825940902,53.296373677070044],[6.287416498568049,53.29629736096133],[6.287693605220428,53.29617647387578],[6.287937519118286,53.29607355516318],[6.288123585360911,53.29599511585292],[6.288342054337321,53.29590770811113],[6.288349698417194,53.29590458657308],[6.288442317686195,53.2958667983507],[6.288600477382005,53.295804508218914],[6.288653942210625,53.29578277509745],[6.288674168186026,53.29577455382661],[6.288839150627918,53.295706497291754],[6.288927795099106,53.29567085060367],[6.288934876656442,53.2956673737366],[6.288987891646044,53.29564138410147],[6.289115011823857,53.29558593117075],[6.289302138800143,53.29550896464101],[6.289504042676971,53.29542502185311],[6.289679530328462,53.29535023579403],[6.289805617071885,53.29529637102324],[6.289905057278847,53.295261406072605],[6.290040630298076,53.29521650939745],[6.290174090400748,53.295171718898565],[6.29034111744226,53.29512559737623],[6.290553644630844,53.29506927585752],[6.290672076481886,53.29503813023246],[6.290714402965399,53.295029643418495],[6.290767577059362,53.295024921688466],[6.290782422381595,53.29502410000784],[6.290815199916299,53.29502870582383],[6.290940811371365,53.29504459164067],[6.29115465379624,53.29507253693091],[6.291335753255483,53.29509894958384],[6.291601484873787,53.295140269999926],[6.291663462494821,53.29514984062037],[6.291999037984522,53.2952074649774],[6.292237539692429,53.295254038920206],[6.292456381812396,53.29529785831426],[6.292559556205371,53.29529011688925],[6.292733261358443,53.295279256111144],[6.292969458113735,53.29526033049346],[6.293210102146964,53.29524244041819],[6.293403731532795,53.295227654170205],[6.293642055170785,53.295208612646185],[6.293988490173479,53.29518053266817],[6.294326986241466,53.29515365271205],[6.294617785598922,53.29513094228865],[6.29482838671159,53.29511521653437],[6.2949905108707,53.29509858108076],[6.295159978102523,53.29507958028151],[6.295215474609028,53.295073356424574],[6.295482857393401,53.29504477300181],[6.295518576979118,53.29504662360834],[6.295576592569803,53.295048934665026],[6.295641477192307,53.29505475201135],[6.295667472890918,53.29505425892387],[6.295732928443913,53.29505159831746],[6.295761380213619,53.29504733984879],[6.295791162337689,53.295042882331856],[6.295920354396513,53.29502790527768],[6.296027973115545,53.29500834693931],[6.296128525932857,53.29499868116645],[6.29614103879533,53.29499748140779],[6.296259269606137,53.29498047526586],[6.296352914117742,53.29496184893853],[6.296405502960125,53.29494931113823],[6.296462366912992,53.29493041500929],[6.296514788163845,53.29491352914183],[6.296592332372458,53.29489594104407],[6.296817512886172,53.29485121239902],[6.297208720926943,53.29477948115356],[6.297635489440189,53.294702168753105],[6.298006515812436,53.294632951447014],[6.298312020442838,53.294581761128505],[6.298604219514893,53.29453966604865],[6.298906686362298,53.29449450867705],[6.299293061310324,53.29443145185121],[6.299732366343149,53.294361468278225],[6.300300140556415,53.29427449369333],[6.300816609141314,53.29419051272452],[6.301022489598442,53.29416039893616],[6.301018073453831,53.29414943377193],[6.301227790758845,53.29411497715198],[6.301280221022551,53.294106410186515],[6.301346215631026,53.294007558179196],[6.301366367911709,53.29397620615176],[6.301368473510055,53.29397293738782],[6.301488436076838,53.29379450958888],[6.301640614005529,53.29356662101916],[6.301593428764327,53.29355585585926],[6.301681031379832,53.29341945806533],[6.301818458163402,53.29320894322906],[6.301903862884496,53.293084944818965],[6.301955126973305,53.29300800412387],[6.302007742334115,53.292929031456225],[6.302017596762373,53.292914237408866],[6.302060264701842,53.29292346464939],[6.302156518078632,53.29276869632239],[6.302307308959909,53.29253370981495],[6.302349062873756,53.29247159638861],[6.302384550315082,53.29241881285542],[6.302568363010103,53.29214995807965],[6.302758442114511,53.29186414403023],[6.302863984366017,53.291705620450124],[6.302956541136203,53.291564888547676],[6.30304785969024,53.291424471979965],[6.303107146239828,53.29132862623201],[6.303190671804022,53.29119064113156],[6.303242102348524,53.291112592999056],[6.303290315474031,53.29104546061154],[6.303338032245072,53.29096836675978],[6.303344465563108,53.29095563878584],[6.303378517030763,53.290888290836],[6.303391586017686,53.29086462146652],[6.303126095748885,53.29060093449214],[6.30288113587226,53.29034982380151],[6.302674902029326,53.29014191763824],[6.302616646203319,53.290074321167616],[6.302590805917466,53.29004667961391],[6.302553213561055,53.290098437195404],[6.301997491927162,53.28990029127355],[6.301943088636818,53.28988062211063],[6.301543087166132,53.28973600271254],[6.301653410711486,53.28958588130616],[6.301522822718012,53.28956174197358],[6.301456602763826,53.289548443941804],[6.301434768611811,53.28955834135491],[6.301403051966457,53.28957038152105],[6.301332609247313,53.28958353348468],[6.301300214755175,53.289590483461545],[6.301254625750924,53.289581943226814],[6.300633593911708,53.289486483741626],[6.30022954642773,53.28942377906874],[6.299977873290681,53.28938580370489],[6.29970672844753,53.28934249388623],[6.29961109030437,53.289327216648296],[6.300651061900387,53.287818705384275],[6.301919777927116,53.28606168192921],[6.303383605261286,53.2838910731734],[6.304577790890815,53.282143356704765],[6.304621558700395,53.28202778738513],[6.304697602687086,53.28183586179157],[6.304695071122399,53.281673111022144],[6.304618517408432,53.281471558673445],[6.30447029353355,53.28121980178368],[6.304139444886718,53.28076015785476],[6.304024155919034,53.280521321967484],[6.303986831225144,53.28040596770533],[6.303969637058215,53.280166185003324],[6.304039851558041,53.27974300784179],[6.304083357579866,53.27932168760466],[6.304097578571852,53.278995382981314],[6.304013547968272,53.2783082455313],[6.303861649127664,53.277436112767305],[6.303671695239114,53.27642713652796],[6.303657941740485,53.27616709116515],[6.303734702259499,53.27577626662288],[6.303825819599242,53.27552783033638],[6.303957004340374,53.27525949910547],[6.304166747796714,53.27492028052423],[6.304320310587428,53.27473239016975],[6.305199880321622,53.27381296502429],[6.305406689644274,53.27359660301662],[6.305569344034116,53.27336656963985],[6.305615317408244,53.273212182131225],[6.305667417876045,53.27279281622304],[6.305734735013099,53.27257427692923],[6.305793656420362,53.2724542959702],[6.305849821445002,53.27236401637797],[6.305909161196738,53.272284836854176],[6.306066078133403,53.272123633434674],[6.306221812500398,53.27200409757313],[6.306711643452551,53.27165168648295],[6.306915157295284,53.27145664396348],[6.30704447687429,53.27127251172141],[6.307528933390786,53.27050076633562],[6.307716134059036,53.27022021160767],[6.307813686961174,53.269990493803704],[6.307851785703956,53.26974296371565],[6.307802016454311,53.26945250773796],[6.307319616737965,53.26866554373008],[6.307178700565356,53.26834460431162],[6.307102312085261,53.267979355416294],[6.307036477694217,53.26763521383885],[6.306885691479635,53.26697601212323],[6.306834868470231,53.2667538205595],[6.30692217095306,53.26675080629939],[6.307574546901802,53.2667282856664],[6.307695337664177,53.26672411606034],[6.30819552999345,53.26670684683333],[6.308496765828018,53.26669643997581],[6.308462280730208,53.266372852106784],[6.308455475042647,53.26635382728313],[6.308439287225344,53.26633695010921],[6.308415266883062,53.26632386229984],[6.308385703465962,53.26631581294241],[6.308353461382068,53.2663135620778],[6.308563167917026,53.2663062563018],[6.308553504491448,53.266224270884905],[6.308552035971193,53.266213768792575],[6.308543159787649,53.26615041430156],[6.308528838465509,53.266041902463805],[6.308523211624386,53.26600018781251],[6.308515535534267,53.26594319512265],[6.308505844622641,53.265879604344605],[6.308495775714715,53.26579126946538],[6.308489932173222,53.2657400672178],[6.308469336046947,53.26546817682432],[6.308449351264423,53.265256532090675],[6.308436223361737,53.265117512623654],[6.310240876373583,53.26491034924269],[6.310137970551503,53.263635902824255],[6.306478173104438,53.26379912474787],[6.306216233802439,53.26378606051042],[6.305796556281996,53.26378928071933],[6.305550684692603,53.26384037731104],[6.305265720912797,53.26396595077702],[6.305153393572438,53.26401396779308],[6.305055048908701,53.264026023489244],[6.30482635317968,53.26400674461656],[6.304552271535902,53.26393997927326],[6.304336307701654,53.263966205404735],[6.304070997476173,53.26405835120946],[6.303263114015499,53.264451244054534],[6.302038023372166,53.265026642330454],[6.300963868649201,53.26552041949632],[6.300767749090488,53.265630676865364],[6.300783033356508,53.265882597564655],[6.300617352234516,53.265893014646124],[6.299926590077012,53.26599721074809],[6.299268816098735,53.26610011874952],[6.297918584569794,53.26638373550527],[6.296205708755926,53.26681100863855],[6.295118268858141,53.26704966072987],[6.294507565506917,53.267124285401195],[6.29184912455851,53.26738843459109],[6.289784669723593,53.267581323172166],[6.286730432930744,53.26784489112451],[6.285212872597072,53.268035077143],[6.28515905085102,53.26787596235073],[6.285019882568135,53.26746454172388],[6.285049387136987,53.267462757516945],[6.28483491970877,53.26683798161652],[6.284752420651007,53.266836342615406],[6.284708598260523,53.266811968211925],[6.284689049207469,53.26680239156954],[6.28439629830683,53.26657661608546],[6.284134659903182,53.26630511200122],[6.284013294797428,53.26618573317459],[6.28389803493183,53.2660723475476],[6.283730401214877,53.26591243724901],[6.283563685960837,53.2657404249147],[6.283489878665159,53.26566427238227],[6.283234919219276,53.26539560070907],[6.28316309282388,53.26532674776049],[6.283125768984004,53.26529545879442],[6.283050233270943,53.265244290349166],[6.282762580256835,53.265056681253625],[6.282319929973487,53.26476797608378],[6.282137368055201,53.26465088464975],[6.282013919258632,53.26454906012931],[6.281940183463131,53.264481918829546],[6.28188949403911,53.26444496011558],[6.281550408054469,53.26426207119366],[6.281548367399717,53.2642612328134],[6.28203202594551,53.263310687015625],[6.282156588029638,53.26306588168508],[6.282394812917537,53.26255820891458],[6.282717407567741,53.26187073634267],[6.282796644873967,53.26170186663477],[6.283028740213024,53.26120720456218],[6.28304744600252,53.26115751661358],[6.283041569458027,53.26113071981798],[6.283012912390091,53.26111538789727],[6.282957562530755,53.26109269801096],[6.28290321749351,53.261077998209664],[6.282867726642984,53.26106774061133],[6.283496796664816,53.26044380971215],[6.284368498911347,53.25965770034526],[6.284384312028974,53.259643438549624],[6.284403102758244,53.25960801934908],[6.284429582127064,53.25958639881963],[6.284457064106184,53.25956395365828],[6.285114267103199,53.25894460188707],[6.285260123324773,53.2588071411437],[6.285767173962455,53.25833861396972],[6.286035062619576,53.25810527534252],[6.286071799419603,53.25807328026091],[6.285610216592167,53.25778471054067],[6.285252616205188,53.25756369932242],[6.284486309103567,53.25706229934313],[6.284097920322713,53.25683952010536],[6.283498618868814,53.25656799322699],[6.282261023125802,53.25597380317079],[6.281905783638821,53.25581305978337],[6.281327683173751,53.25556251685006],[6.281061393038509,53.255460963831226],[6.280843588143133,53.255343953129284],[6.280743457094462,53.25527122047395],[6.280339423943372,53.254921340837214],[6.280426873214354,53.25489973508451],[6.281003477776574,53.25475729475483],[6.281311665560992,53.25468116261103],[6.281391904091227,53.2547752046852],[6.28230994195004,53.25460958253238],[6.282478644207682,53.254579147317735],[6.282741627286893,53.254539400424036],[6.283733591804745,53.25422974672487],[6.283966905506849,53.254156907510016],[6.284017009953331,53.254136647620264],[6.284064858100973,53.254093588762146],[6.284103188740206,53.254051149493876],[6.284121749230863,53.25402136641506],[6.284688892578265,53.25230962229699],[6.286966612371588,53.252684773287],[6.288155080464142,53.25288049729504],[6.288081134660901,53.25267641538698],[6.287998669442855,53.25244884538312],[6.287957174061693,53.252334316741305],[6.287893381134896,53.2521549775684],[6.287885928042763,53.25210652747868],[6.287888589936882,53.25203519513741],[6.287917934257529,53.25196656487293],[6.287945576980896,53.25191049187567],[6.287956799313301,53.251899013717754],[6.2881589630897,53.25180770034179],[6.288375019770455,53.251751102721926],[6.288585520521183,53.2517053743338],[6.288829361767535,53.25166059074909],[6.288994569739497,53.251637945612444],[6.289633820682317,53.25015544008806],[6.28964772159935,53.25013310425521],[6.289668361434768,53.25011415953131],[6.289692924750128,53.25010374901147],[6.289741345476294,53.25009718451063],[6.289815656976424,53.25009282497532],[6.289718581968042,53.249925589328505],[6.289704993489039,53.249909130585934],[6.289681928197767,53.249894432233916],[6.28963582713776,53.2498678835783],[6.289604516755429,53.24985583538418],[6.290183059875959,53.24853674229078],[6.290257792954383,53.24836636387789],[6.290345479999873,53.24816643153337],[6.290651849940672,53.24746784115828],[6.292193759545732,53.24755722019755],[6.292622887337529,53.24758209228772],[6.292704875970122,53.2475868477999],[6.292824857791319,53.247309399869806],[6.292872152757274,53.247200025357806],[6.292952408995887,53.24720863061763],[6.294074028737595,53.247332417979344],[6.295155490776105,53.24744838443135],[6.29623044060502,53.247562898839405],[6.296417299923923,53.247582591565596],[6.297173720070456,53.247662316939085],[6.298291813025502,53.2477803857484],[6.299009191741137,53.24785700765658],[6.299529600270657,53.24791262189597],[6.300050108119795,53.247967226568385],[6.300788076429741,53.24804516439072],[6.301057461515676,53.24807343261627],[6.301163512914571,53.24808455831606],[6.301352432141054,53.24810438068599],[6.302025810155516,53.24817626116705],[6.302566038564953,53.24823357095161],[6.303394348592957,53.248323177487094],[6.304083815025185,53.248395309736864],[6.304719784494295,53.2484632730455],[6.304718387900699,53.248465934453165],[6.308195614963589,53.24884448556808],[6.30821305275163,53.24878682382212],[6.308497775690482,53.247831245462116],[6.308013007519222,53.247776798755126],[6.307726231064788,53.24775227379177],[6.307151268172825,53.247710870766035],[6.306943922996449,53.24770171255566],[6.30674103056997,53.2476927439727],[6.306610046308394,53.247686387587024],[6.306220074987114,53.24768494372201],[6.305674901054598,53.247685952784444],[6.305058312995645,53.247703986256596],[6.30422062139398,53.247721836123795],[6.303848635213277,53.24772849592646],[6.303319206286529,53.24773444245436],[6.303007523898137,53.24773490643909],[6.30248090743713,53.247723655834],[6.302210365264794,53.24771426077713],[6.301863206684661,53.24769209619503],[6.300892778581218,53.24760022713382],[6.300406699443537,53.247550486183954],[6.299855175383971,53.24748978382846],[6.299359515909661,53.24743819777994],[6.298500367945519,53.24734355869733],[6.298245400238235,53.2473187786551],[6.297913993852507,53.24728884499579],[6.297574688652314,53.24726087501583],[6.297281515500534,53.2472344689701],[6.296677326846357,53.247164608011346],[6.296368101108699,53.24713068319953],[6.295658666282084,53.24704634688129],[6.294219361151485,53.24688927399727],[6.293643861521401,53.24682108620088],[6.293379277868445,53.246792540172926],[6.293025380143197,53.24675131483886],[6.292574159242495,53.24669554623683],[6.292373337079166,53.246674155233066],[6.291683080936459,53.246593470171625],[6.291408998642352,53.24656690598282],[6.290699703066242,53.246488263839865],[6.289735491691161,53.24638672376136],[6.288305716069358,53.24622759438689],[6.286828073946167,53.24605925447829],[6.28653802579272,53.246028979549415],[6.286439411594749,53.24602780415556],[6.286032222792336,53.24598144900213],[6.2854083617463,53.24591042969252],[6.282998752781569,53.24564095681654],[6.281555041993432,53.24548070071137],[6.281378910133573,53.24546248664495],[6.279594490056358,53.245260884223],[6.279418441189428,53.24524656605082],[6.279212536019606,53.24521852376891],[6.278819153852771,53.24516603866444],[6.278661357915577,53.24514767543554],[6.278566793010143,53.24513860984454],[6.278459075538908,53.24512378286938],[6.278318880147071,53.245111147027494],[6.277741649483856,53.24505390398486],[6.277607820174695,53.24503537012049],[6.277392537200287,53.2450115726423],[6.277206658444488,53.2449934157471],[6.276811882461705,53.244946532869356],[6.276668423266834,53.24493391929251],[6.276456432792555,53.24491204544228],[6.275862698879975,53.24484319769355],[6.275569146039538,53.24481216768803],[6.27489065774494,53.244736124686426],[6.274763506315185,53.2447253379335],[6.273918701417287,53.244632943031455],[6.273018506038819,53.24453704121773],[6.27164531269427,53.244387962825265],[6.271002675028827,53.24431357489797],[6.270138035389222,53.24420566327142],[6.26963894233144,53.24414877718443],[6.269430089360196,53.244121008920914],[6.268934149148656,53.24405921734928],[6.268604464696223,53.244010849850746],[6.268141497276488,53.24397028919749],[6.267958836836086,53.243950144266826],[6.2677146018862,53.24394216821713],[6.267606970540331,53.24393123117723],[6.267150256254917,53.2438769622145],[6.266188008870309,53.24376974669824],[6.266002140251694,53.24375158143103],[6.265799910955285,53.243729617344336],[6.264970677479067,53.24363194128999],[6.264762507179038,53.24360729618295],[6.264312484160582,53.24356273533007],[6.262433583544254,53.24334791025728],[6.259556807970235,53.243031878509356],[6.259341506137935,53.243006098752836],[6.258630433699806,53.24292629201401],[6.257713971885943,53.24282843561108],[6.255903718268877,53.24262569882039],[6.255763341802541,53.242603270231655],[6.255642422041902,53.242577771465115],[6.25546274877922,53.24254390935264],[6.255319107554862,53.24252151285623],[6.254964011956663,53.2424714676454],[6.254638611183518,53.24243882868417],[6.254612142661446,53.242415710538694],[6.254458942021095,53.24239912407546],[6.254453612007166,53.242444038252614],[6.253272154374452,53.24231348402823],[6.253286368052364,53.24227305268974],[6.253009389498194,53.24224589144621],[6.25300126776935,53.24226592566974],[6.252444159526811,53.24220527138143],[6.252282406071828,53.24218638059802],[6.252301581932012,53.242119180442046],[6.252331353808756,53.24201484589886],[6.252475490262388,53.242034456660186],[6.252484851142905,53.24200744902376],[6.252541453306391,53.241859132911934],[6.252573241922819,53.24175830606994],[6.252758119675144,53.241478777863094],[6.25331574625627,53.24082764264461],[6.253846116997643,53.24016262971798],[6.254137450845582,53.23973618298822],[6.254440232947945,53.23897823380237],[6.254819328781737,53.23797391214656],[6.254959643333411,53.23758315086787],[6.254999372525824,53.237357576886374],[6.254937601665224,53.237148714021615],[6.254731339627278,53.23675030322374],[6.254646573390341,53.23650749600589],[6.254582510449088,53.23614177240935],[6.254583144489795,53.235974880862024],[6.254643379302689,53.23570761670699],[6.254695383773842,53.23555635815033],[6.254853438421239,53.23516403933589],[6.255055506147187,53.234844709193986],[6.255473608361642,53.23484412944747],[6.256041721639547,53.23487262842194],[6.256980711261026,53.23491743326218],[6.256995018718998,53.234839520482055],[6.257033321209449,53.23484207362631],[6.257121114357917,53.23454366069821],[6.257131923154643,53.23447946745638],[6.257173784337329,53.23417231159255],[6.257212133052918,53.23357324538928],[6.257240385255212,53.23321581278235],[6.257275071158212,53.23266471344834],[6.257325465620093,53.23185927750628],[6.257358362416473,53.231383807376574],[6.257399856690647,53.23090099618925],[6.257469842725581,53.230233505452695],[6.257528374389369,53.22966879841325],[6.257545362973858,53.22934199907556],[6.257599951510784,53.228811367906744],[6.257767685363111,53.22725333126932],[6.257834804484023,53.226745864686855],[6.258090713896672,53.226333429484896],[6.258761383583994,53.22519419711868],[6.258966056678654,53.224967674191305],[6.259109112155304,53.22485546055968],[6.259297812228122,53.22469459684936],[6.259374255681453,53.22459162824363],[6.259991151692931,53.22162740029884],[6.260221262877979,53.22047690229351],[6.260386720279725,53.220104154554626],[6.260440937086027,53.21995390911064],[6.260591010304763,53.21977063497704],[6.260808653289446,53.219609764340355],[6.261101688686709,53.21944723056495],[6.261531463029027,53.21923607396594],[6.261789769167928,53.219075507235885],[6.261987413460258,53.21892554604929],[6.262241344523737,53.21862668916186],[6.26250271959753,53.21770045461755],[6.262569700740253,53.21770715509616],[6.26327994321466,53.21776981558614],[6.263286596337587,53.217746466383005],[6.263427478859147,53.217757002688415],[6.263627182931791,53.21777051454799],[6.263756627558957,53.217784728345684],[6.263890642701361,53.21780506416177],[6.264031670779239,53.21775338855117],[6.264154180685334,53.217737207856516],[6.264354212881222,53.21771080090199],[6.264378849296408,53.2177075565228],[6.264409861684212,53.21770346593158],[6.265420849156237,53.21757021206928],[6.265473197460299,53.21756331428818],[6.266024748797944,53.217483137360915],[6.267109617531546,53.217309160851855],[6.266959832184829,53.21767473196158],[6.267858285952151,53.21778385364033],[6.26890222536088,53.21791451811772],[6.270522077943205,53.218326905437436],[6.270976724916012,53.218468106802014],[6.271062645179268,53.218454147700044],[6.271423126301977,53.218386819371084],[6.271590017600341,53.21834318449747],[6.271861418070681,53.21837241016931],[6.272084115921508,53.21839943319442],[6.272624029424429,53.218487898710485],[6.272745571614858,53.2185231885666],[6.272868496095225,53.21856892757984],[6.273168352248982,53.21868838455642],[6.276361875660741,53.218943939644745],[6.276579885441216,53.21831349103571],[6.276542063336119,53.21830670823491],[6.276659806246499,53.21805029091743],[6.276905182082182,53.217951198214124],[6.276963043421993,53.217871081283434],[6.276985568290793,53.217837297180104],[6.277017212709396,53.217792689880596],[6.27702973320328,53.217763823408426],[6.27703686591528,53.21773430573977],[6.277038542315407,53.217704486562845],[6.277039726416051,53.21766236893411],[6.277043700729975,53.21762851630288],[6.277058145952207,53.217595700139775],[6.277068881986766,53.21757541968056],[6.278138193370951,53.21771271692465],[6.27817633749741,53.21761019971708],[6.278353343272664,53.21761321615537],[6.278621021782914,53.21758321865787],[6.279031260858094,53.21753244525584],[6.279242479296679,53.217506639885805],[6.279463360032548,53.2174731420846],[6.279639519629137,53.21744608708175],[6.279757793509716,53.21741865338469],[6.279886780994156,53.21738876763176],[6.280247658593853,53.21731634170845],[6.280555788270886,53.21729731589503],[6.280737003930952,53.21730196954297],[6.280837511263618,53.217293609821866],[6.281163405203879,53.2173409198109],[6.281416462655184,53.217386633078526],[6.281621263697915,53.21743134842791],[6.28181613185168,53.21746992884212],[6.282232931367252,53.217556213329146],[6.28280969247434,53.21764936322721],[6.282876441196612,53.21765912695031],[6.2829840010831,53.21769414232599],[6.283219382255183,53.21788578232492],[6.28331384919528,53.21795938227067],[6.283503058542124,53.21810680442413],[6.283579382112793,53.21821583696217],[6.283618677135518,53.21834554447901],[6.283630015971378,53.218367448341915],[6.283912692055978,53.21880634363746],[6.283975651358347,53.21882743961749],[6.284003325146132,53.218830647585875],[6.284136823019787,53.21884706485386],[6.284207511645728,53.21885612433283],[6.284591450672655,53.218939465514595],[6.284743226028852,53.218960768397906],[6.284780545025285,53.218962690934596],[6.284875402240945,53.21896975406683],[6.284942481435427,53.218970797845],[6.285010511858247,53.218975806338584],[6.285154238762088,53.21898876713025],[6.2854721132575,53.21904770857301],[6.285570977551346,53.219066045693346],[6.286812478681747,53.219264267444444],[6.287224143677459,53.21833538498948],[6.287626878097822,53.217384714159884],[6.287660048053531,53.2173283744581],[6.287739365716896,53.217237173153165],[6.287726397120261,53.217213987336955],[6.287804329698394,53.217179165683525],[6.287862448839493,53.21715054028418],[6.287923654876239,53.21707459823152],[6.287942319984576,53.21705143593471],[6.28803415215735,53.21682943821894],[6.288077373453781,53.216732495638],[6.288128204619288,53.216618521302905],[6.288145248595151,53.216594454565765],[6.288304729996738,53.2166266580872],[6.288708368458328,53.216707582913266],[6.289215250527955,53.216833127121234],[6.289999843848991,53.21704675540289],[6.29030492914196,53.21716680451341],[6.290440199565055,53.217228787251535],[6.290811704706401,53.217456509236726],[6.291139064047713,53.217645607562574],[6.292185176684022,53.21803909278599],[6.292802787402343,53.21824630595678],[6.293369859092448,53.21841135765362],[6.294152746490131,53.218586978755155],[6.295021615036001,53.21875873600786],[6.295604132027611,53.218867201013055],[6.296079983652551,53.21893034586112],[6.296753036113181,53.2189952649748],[6.297317681090454,53.21903318199642],[6.297434520549868,53.219053152651725],[6.297699577690259,53.218482351854654],[6.297916831046413,53.21803193103813],[6.29844155369521,53.21687683420716],[6.298927750261236,53.21583558411015],[6.299600894267382,53.21439890716953],[6.2998686239696,53.21393895926583],[6.300515006503254,53.21257550014523],[6.301774239991822,53.212761202199346],[6.302345618807998,53.21283161808453],[6.304058956503458,53.21304068177767],[6.305959382054254,53.213260096229384],[6.307892970535834,53.21350765842993],[6.30813195454375,53.21355011660649],[6.3090504973665,53.21385893194934],[6.30933302623098,53.213919429936425],[6.310643065773244,53.21410906926996],[6.311483375162745,53.21430795784542],[6.313034894379268,53.21468379853907],[6.313626649678867,53.214749421173096],[6.31418827282828,53.21470831225092],[6.314806983940842,53.21447290280413],[6.315340454893789,53.21427818248116],[6.31579426899336,53.21413730055056],[6.316403315828993,53.21396912864588],[6.316662279582749,53.21393075618934],[6.316985001476415,53.2139134107228],[6.317137804919738,53.21391505679526],[6.317205185320161,53.21391578363678],[6.317215953046321,53.213866564323816],[6.31741613606371,53.21386059148975],[6.317418495817355,53.21382833102505],[6.317465856004318,53.213399570484874],[6.317461118442969,53.21338043983047],[6.317459169568513,53.21337751663568],[6.317366621623534,53.213238823904554],[6.317396739213305,53.21264806994018],[6.317417232484295,53.21229600668429],[6.317444844902125,53.21201536375591],[6.317521339384547,53.21123766282737],[6.317605932478116,53.21000450135018],[6.317599155506961,53.20986765972222],[6.317663552607757,53.20915478790789],[6.317768491170195,53.207967377748986],[6.31781866122722,53.20751941797706],[6.317877769801441,53.20699162774786],[6.317995609111894,53.20548136263151],[6.318071345092391,53.20453241703196],[6.318159658010602,53.20343229002207],[6.318192028856394,53.20302346702503],[6.318243110652946,53.20237843353253],[6.318265590245611,53.20204480232737],[6.318288409579686,53.201704725288025],[6.318310017538335,53.20138274648626],[6.318313322222649,53.201331886581414],[6.318316763897548,53.201281124154065],[6.318360526729696,53.2006299734083],[6.318390512355729,53.200172392377745],[6.31842970211965,53.199589741966136],[6.318450568719294,53.19920356299861],[6.318463399595061,53.1990558125514],[6.318467124876303,53.19894803996279],[6.318474760292393,53.19875148981395],[6.318494356307339,53.19852805948345],[6.31871318091897,53.196033409817865],[6.318732853731436,53.19578651568647],[6.318742539056406,53.1956456367114],[6.318853459279473,53.1940322032502],[6.318903362286174,53.19330624756808],[6.318909823300882,53.19318244929823],[6.317175747485681,53.19313446900446],[6.316367126058397,53.19310840421775],[6.316230146024669,53.193093919205765],[6.316090350360349,53.19305563379956],[6.314913822563409,53.192482258133936],[6.31400871996929,53.19203846617841],[6.309628595018215,53.18989500867357],[6.309497406542305,53.18983581027878],[6.309760242115529,53.189182167833266],[6.308521304339634,53.189240953645886],[6.308313330336551,53.18921162988098],[6.308059147478385,53.189102441114215],[6.306408813810557,53.18818503581851],[6.303462516248351,53.186649114956666],[6.301333538997773,53.18512945904442],[6.301046062043579,53.184891828088304],[6.299853792842035,53.18357891935824],[6.298094704303509,53.18164737613605],[6.297966542613312,53.18151610947548],[6.297815124314556,53.18142337236416],[6.297551153626107,53.1813325492577],[6.297156604235597,53.181215821585624],[6.296685830723828,53.181084268156816],[6.296123087955031,53.18095018417497],[6.295270200804117,53.18081474569769],[6.294640745028311,53.18069959944964],[6.294537062713711,53.18068150401128],[6.29437427190885,53.180603064659024],[6.293723824312568,53.180458849323884],[6.292009538783657,53.18007795188332],[6.29053484834199,53.17972273177641],[6.288583116130589,53.17924185981194],[6.288573062408019,53.17927336875228],[6.288450849404414,53.17924356361544],[6.287761474110816,53.18116007848895],[6.287006592821609,53.183245641603506],[6.286410862434931,53.182981047000524],[6.284673102982259,53.182108292740146],[6.284448507629394,53.182012204189576],[6.284224641319989,53.181951200914156],[6.280006844983221,53.18116876766099],[6.277583229199882,53.18075977580714],[6.275411579685111,53.18042408293275],[6.275113727107495,53.180350239343575],[6.274875167664006,53.180250057926166],[6.273832746906497,53.179687869215584],[6.273601593281289,53.17960935924893],[6.273280877440314,53.17950476746628],[6.272819483894335,53.179392857005546],[6.272521845059199,53.17932819838506],[6.27213572399276,53.17929094338849],[6.271719106312334,53.17925891716499],[6.271252028340065,53.179208885548896],[6.270706239748853,53.17912131219332],[6.267855100695384,53.178663801445836],[6.265793703241118,53.17828300373648],[6.265108251224235,53.17809666438398],[6.263641767490082,53.17774221437617],[6.262032063412987,53.17732195217327],[6.261727602964674,53.177262330691654],[6.25870667856542,53.17667013296694],[6.257181013862227,53.17634277676782],[6.254147033792061,53.17563600407949],[6.254201349452319,53.175588622973734],[6.25418145150034,53.17558311475041],[6.254157778989955,53.17557656422447],[6.253925808362581,53.17550289249244],[6.253846636024124,53.17562200998949],[6.253721595979125,53.17559721308396],[6.253741838764354,53.1755721392214],[6.252974702308383,53.175383670823244],[6.252542311170383,53.17529239294761],[6.252083105204132,53.175188420638],[6.251858308784325,53.17511646381127],[6.25164598630411,53.17501824849608],[6.251573347678674,53.17499078074065],[6.251498138365252,53.1749768279454],[6.251379554770359,53.17498907733945],[6.251274244308355,53.17497694099824],[6.2509229757843,53.174895784262766],[6.250445798389915,53.174762434081195],[6.250289253422959,53.174716788228096],[6.24981093943824,53.174572768129416],[6.248722585900733,53.17432969182989],[6.248239527382551,53.17422486067094],[6.247542183295267,53.17407721925318],[6.247518862296589,53.174104839397486],[6.247283856670236,53.174383207917835],[6.246751038087559,53.17501097995928],[6.246651468627395,53.17511840413364],[6.24635422181111,53.17546933022782],[6.2458359930138,53.17606939696912],[6.245287389238698,53.17593624127026],[6.24507570133616,53.1761902118233],[6.244408935142244,53.17601222982796],[6.24435607838855,53.17599788867024],[6.243755501352557,53.17583350229608],[6.243729210430144,53.17582683343529],[6.243087266450556,53.17566389835587],[6.242290291603569,53.175441301380914],[6.242167045553102,53.17559476478236],[6.24149763627133,53.17540981230682],[6.241737510108349,53.17507812382967],[6.241788536121966,53.175011981923184],[6.241122627067127,53.1748265529133],[6.239479818506556,53.17553678611992],[6.238266343056091,53.175241126613095],[6.235873494073958,53.17693569379506],[6.234861700368788,53.17760699563483],[6.233902475036635,53.17639794465826],[6.230805739316418,53.1757981682369],[6.230963865895235,53.175506139349814],[6.231171424972569,53.17513684148867],[6.231431177696297,53.17466097798732],[6.231536596826913,53.174462029148586],[6.231589420967744,53.174362343075956],[6.231749549417667,53.174067666073235],[6.231781347189727,53.17400870866833],[6.232022063288083,53.173558911860866],[6.232159714888551,53.17330679835133],[6.232252863035984,53.17313616960916],[6.232496899690673,53.17269760745134],[6.232642072080065,53.17243644488329],[6.232764891180107,53.1722077990311],[6.23276655210445,53.17220480400045],[6.232846547772594,53.17206086620796],[6.232698076781698,53.1720258881159],[6.232339194540024,53.17194083950144],[6.232234006160161,53.17191591678968],[6.231600006915415,53.17176014326709],[6.231665275551657,53.17163770612407],[6.231805403382217,53.171369355273406],[6.231058870938027,53.17122860557561],[6.230449641628901,53.17110846132043],[6.230454163610402,53.171099524126234],[6.230219636495419,53.17106477969316],[6.229571153986573,53.170966069606585],[6.229605019621825,53.17089958592203],[6.229849473087185,53.170404916741816],[6.230023876514315,53.170033984030255],[6.230203464486832,53.169678336103196],[6.230602889859925,53.16887046073771],[6.230765591524866,53.16852587570102],[6.23078852709645,53.16847731486185],[6.229792063631106,53.16856717430198],[6.227590535781331,53.16916470234434],[6.226569184678373,53.169445187814375],[6.225550412871547,53.169722924115895],[6.224896892749667,53.169899360192574],[6.222652833876489,53.170503033882035],[6.222855366051882,53.16937357833213],[6.222888601419919,53.169238366422604],[6.22301827687484,53.16888706679227],[6.223688403526371,53.16699015999455],[6.224210499543608,53.165493975850296],[6.224554745223851,53.16447718205396],[6.224482398957782,53.164472268795116],[6.22369487266272,53.16441882645983],[6.22304015948937,53.164375614136574],[6.223120213199405,53.16412915953497],[6.223183341285049,53.16393782706864],[6.22332201813143,53.163503063492186],[6.223128451371483,53.16347084142004],[6.222597554123706,53.1633824432487],[6.222044981790487,53.16329422113755],[6.22204228287027,53.163293844408784],[6.221909552875321,53.16327528667105],[6.22125271314774,53.163183491449296],[6.220498554338539,53.16306851072957],[6.220747172640691,53.162097349765176],[6.22075802710194,53.16205615399208],[6.220852496435443,53.16169753439252],[6.220938311495294,53.16137180170728],[6.221172414118745,53.16049798833423],[6.221263025504706,53.160151337764034],[6.221328709679148,53.1599000685133],[6.221515808543161,53.159209503195186],[6.221620347969339,53.15880618732279],[6.221621002482214,53.15880371151577],[6.221700431167525,53.158504028144016],[6.221743327142801,53.15832804152607],[6.221803595015841,53.15808070991304],[6.22191582363023,53.157657013428754],[6.221928603739896,53.15760879484387],[6.221848321856356,53.15758403073991],[6.217234214759455,53.156163173924],[6.213620860216481,53.15504928265373],[6.211787624031578,53.154485807336066],[6.211598161443822,53.15444906312041],[6.211350350438994,53.15442556115942],[6.211104612485634,53.154416736965224],[6.209915832335922,53.15443439164761],[6.20665128835064,53.15449401180287],[6.206741818894307,53.15731582857772],[6.206800621290617,53.1594472230374],[6.206714164360333,53.15944823621718],[6.205471812208502,53.15946280698968],[6.203892276967208,53.159480013159396],[6.202860437508291,53.15948932150327],[6.200717243663856,53.159502106609004],[6.200023747173218,53.159393028525265],[6.199437056206436,53.15930189661316],[6.199358683531891,53.15929150052632],[6.199166580498586,53.15926600521125],[6.198535337493404,53.159177156401],[6.198121325960186,53.15912154842763],[6.198109305735502,53.15896507327422],[6.198104027512354,53.15889637442777],[6.197533025010644,53.1589167970713],[6.197071597202092,53.15893174122853],[6.197043121386295,53.1586282390504],[6.197012103107533,53.15831265876694],[6.196980963217917,53.15800256038456],[6.19695096255169,53.157703758911936],[6.196306074920131,53.157739358389506],[6.195358050347073,53.157802762157885],[6.194830265297429,53.157839100755176],[6.194769376338795,53.157843293905266],[6.194815581572749,53.15816042605667],[6.19498616831538,53.15936119619242],[6.195167441646722,53.16062693477231],[6.194937755803259,53.16068601154372],[6.194008411668873,53.16005037457819],[6.192411517429114,53.1590034832218],[6.190824942761289,53.157905882769434],[6.189530189319087,53.157002349314524],[6.187999016202535,53.15594601833486],[6.186280797292625,53.15476483055455],[6.18589889587765,53.15445634820401],[6.185593397362578,53.154281312379275],[6.185234398370075,53.154203546966365],[6.184468065160156,53.154061418278076],[6.181334785359999,53.15346853937343],[6.17780643167618,53.152810412586334],[6.177262001436594,53.152797881431084],[6.176553205197366,53.15280460926169],[6.176305732370211,53.15281202590317],[6.176304478308982,53.1527932352437],[6.17630392429102,53.15278497156184],[6.176281624267728,53.15255215361044],[6.176234363290408,53.152058498331904],[6.176181890137533,53.1512638510112],[6.176130720469881,53.15048489397357],[6.176108918018265,53.15012578159358],[6.176096600951832,53.14992305484384],[6.176084432310073,53.14972271780634],[6.176057631477812,53.14928115428752],[6.176049669410938,53.149150099189065],[6.175998698486718,53.14846057003351],[6.175947177812832,53.147634006128115],[6.175897022954087,53.146769916093675],[6.175872518679743,53.146420615600775],[6.17586858090736,53.14636444218755],[6.175865354423832,53.14631856215967],[6.175804091466606,53.145634725619736],[6.175749566493211,53.14502619341718],[6.175703312034654,53.14450984885667],[6.175627034380247,53.143658519111696],[6.175605240563747,53.1434152100026],[6.175592599659114,53.143274102878046],[6.175586670763239,53.14320783340307],[6.175560204806165,53.142788264979664],[6.175546880870566,53.1424830935551],[6.175531061559492,53.14228721001235],[6.175517354005129,53.14210056806384],[6.175500827671807,53.14170976163117],[6.175491253861785,53.141483364756624],[6.175477487089959,53.141157914471734],[6.175476841342568,53.141143810259614],[6.175465027082804,53.14088790892342],[6.175438392689149,53.14031105666277],[6.175394779571755,53.13936597392089],[6.175374532018021,53.13892736752238],[6.175363181979858,53.13868128453168],[6.175347199863191,53.13833500978293],[6.175324097320591,53.137834659967666],[6.17529474412653,53.13719848965835],[6.175269535018757,53.13665209956559],[6.17526583912959,53.13657210185207],[6.175260261508456,53.13626540520795],[6.175234941013272,53.135902638868615],[6.175282478610733,53.13590207467872],[6.175317289515795,53.13548195822868],[6.175419181193357,53.13532082226441],[6.175665775034815,53.135089100143006],[6.175677719940596,53.13507627917413],[6.175701951104132,53.135060394019334],[6.175209070144994,53.134931090742406],[6.175164950065322,53.134919025048895],[6.1754448857514,53.134738583634494],[6.176327106041562,53.13417057555672],[6.178466307369088,53.13279730958116],[6.178481877705934,53.132793279824575],[6.178611678739297,53.132704241445516],[6.179513972550405,53.13211417673847],[6.179528264005778,53.13210397309237],[6.180157862464037,53.13168082733474],[6.180182304333384,53.13166438277505],[6.180593547116593,53.131390951747136],[6.180902161389393,53.1311856045315],[6.181377354805102,53.13088590275082],[6.182283871284927,53.130289049229354],[6.182396460160062,53.13022932556641],[6.182594767211039,53.130094906089866],[6.182894805634737,53.12989465158087],[6.183204520320592,53.1296999575916],[6.183803666487846,53.12931293927207],[6.183951349397727,53.12921928255364],[6.184637366789975,53.12878394790912],[6.184877571189554,53.12863183025342],[6.185439921838509,53.128263578010575],[6.186115512530312,53.12782099784225],[6.18614222818427,53.12780172406891],[6.186428987705141,53.12759200586312],[6.186440737773315,53.12758350753245],[6.18659605516677,53.12748642665085],[6.186921528225023,53.12727476870235],[6.18783810810129,53.12667443472375],[6.189193546667144,53.12578641063971],[6.189567759075467,53.12554422512343],[6.189607454344945,53.125518518956426],[6.189658280466602,53.125485603840886],[6.190555380011499,53.12490461804688],[6.190827378916939,53.12472846166813],[6.191109783180694,53.124545566623134],[6.191298006494574,53.12442366382142],[6.1913628831132,53.12438164917635],[6.193410073453012,53.12305212868541],[6.193763796188854,53.12282239689371],[6.193846746990237,53.12276856786336],[6.194469759581805,53.12236424228985],[6.195552365942947,53.12166162444511],[6.19565041866933,53.121600763925656],[6.195858315480018,53.12146420784247],[6.196657276651568,53.12093940856161],[6.199577534786921,53.11904238183574],[6.199988508749198,53.11877538961037],[6.20015257748905,53.118668805078606],[6.200394223069265,53.11851181096959],[6.200989675546505,53.1181249535008],[6.204184150463577,53.11604938610747],[6.204785924148998,53.115658359534336],[6.205048345942544,53.1154841669384],[6.206041503150986,53.11545286691835],[6.206177038322128,53.115448579419244],[6.206180650725499,53.11544846517245],[6.206205460984396,53.11544777401011],[6.206320044182936,53.11544207538031],[6.206351211515347,53.11544110718073],[6.20777800599168,53.11539695978881],[6.208644784073514,53.1153701347494],[6.211779119024051,53.11527306961123],[6.211837657768981,53.11527023133258],[6.212785439615955,53.11523543175954],[6.213171020505793,53.11522065112803],[6.214856671990801,53.11516508194182],[6.215477587538372,53.11514302436522],[6.217082567565305,53.115102368367246],[6.218681831300472,53.11504721780468],[6.220521099174194,53.11498553282365],[6.221480793050285,53.11495182166022],[6.222146842416647,53.11492842651244],[6.222561994747744,53.1149154492481],[6.222606836231451,53.11491415736019],[6.222637294592328,53.11491128465083],[6.222679501755525,53.11490505052968],[6.223030701853806,53.11484026248207],[6.223568264838289,53.11473669077133],[6.224939511013654,53.11447249133274],[6.225219905119795,53.114425931109544],[6.225961881746692,53.11430015081982],[6.226423823317891,53.11421558044003],[6.226929588587457,53.114124338792266],[6.227022483887658,53.11411576200786],[6.227245770446057,53.114095136010484],[6.227480540952985,53.114080639203465],[6.227509888433802,53.11407679388102],[6.227643772933988,53.11406930329197],[6.227910858740809,53.11405075946671],[6.228417998969268,53.11401372532052],[6.228718481160502,53.11399060462823],[6.228901045286775,53.11397655234358],[6.229570718783057,53.113924612483316],[6.230696022990466,53.11383375927783],[6.230993281332507,53.113807043131075],[6.23122815897936,53.113785932955494],[6.231721345740943,53.113738989962805],[6.23218292723248,53.11369967276111],[6.233336536973869,53.113599590456694],[6.234031532203108,53.11353862260644],[6.234372792189061,53.113501567241556],[6.234541156251944,53.11348328426537],[6.235855009268019,53.113419112415926],[6.236262252423357,53.113394416678275],[6.236348674433625,53.113390218589615],[6.236592815550612,53.113393160141584],[6.236896999792625,53.11339554972363],[6.237456515221488,53.11339647685464],[6.237913084511846,53.11339369352661],[6.238415873866775,53.11339674427709],[6.238477472531696,53.11339707011463],[6.239465021738651,53.11340231390193],[6.239915002921911,53.113404727499486],[6.240585351327061,53.11340335924853],[6.241289364054347,53.11340507211366],[6.241676415819005,53.11341616829108],[6.242419877109941,53.113436275835056],[6.242961356570379,53.113447280753185],[6.243522166312311,53.11345851311801],[6.243594688280143,53.113459854837544],[6.24359743730747,53.11345992518021],[6.243615264272282,53.11350575335365],[6.243669931142132,53.11350902891647],[6.243737692644513,53.113512848886934],[6.244116567641587,53.11353481544105],[6.244211319815361,53.11354031126571],[6.24471676356607,53.11355663422855],[6.244805805241223,53.11356561191872],[6.244941725679162,53.11358126320311],[6.245014447614186,53.113588201298384],[6.245061867446354,53.1135874841528],[6.245081934079315,53.11358717888646],[6.245604908293447,53.11362067115049],[6.245707912106053,53.113627265807715],[6.246509731924193,53.113670042068826],[6.246893278925738,53.113693979104646],[6.247201938028719,53.11371324050327],[6.248014334009141,53.11375746745557],[6.248518082123081,53.11377620387159],[6.248639544865402,53.11378046197413],[6.249011721020604,53.11379351068171],[6.249181036140257,53.11380077537634],[6.24985578301147,53.113854238862075],[6.250700372805586,53.11390386796949],[6.251559482509998,53.11395425841955],[6.252697144521642,53.114025976213995],[6.252880766106519,53.11403752683589],[6.253426023964596,53.114071920117375],[6.253680050265915,53.114087938931135],[6.254304733207888,53.11412743329347],[6.254842463415629,53.11414599614609],[6.257378441997435,53.11430014540421],[6.257626651356689,53.11431415790729],[6.258024186515756,53.11434909160636],[6.258371447536191,53.1143712879852],[6.258372433281278,53.11437128981112],[6.25863909819099,53.11437239641737],[6.259540472338814,53.11436529618562],[6.259824281369044,53.114361853781524],[6.260412040677791,53.114354721564],[6.260449138799078,53.114353885035115],[6.261057839951162,53.114340217143834],[6.261678576319265,53.11428122974449],[6.262659197209761,53.114126214727015],[6.262662539951227,53.114082453878936],[6.26360903070392,53.11378949830252],[6.263618410316781,53.11374368047524],[6.263624958774137,53.11374179933513],[6.264230194171038,53.113568291803965],[6.264502688431642,53.11349017330626],[6.264498520207469,53.11348346400291],[6.26521417644051,53.11334154718604],[6.265208763697924,53.11333313980047],[6.265221520923491,53.11333030545146],[6.265899818972095,53.11317952865967],[6.265906524786488,53.11317804132253],[6.266673821207327,53.112997356560875],[6.267642923396715,53.112782653049905],[6.268331980622055,53.11262636414902],[6.268481089694797,53.112592539045906],[6.269318009878498,53.112400271552474],[6.270135954158614,53.11221746617045],[6.270171679079198,53.112209483369675],[6.270165508816796,53.11219983263254],[6.270471073958999,53.11212730685068],[6.270850316280451,53.11204257229672],[6.271082904405754,53.111988870142135],[6.271820233849096,53.11181055702386],[6.271822987138763,53.111813771613086],[6.272029031497977,53.111762123859826],[6.272655659299102,53.11160505835273],[6.273236027027218,53.11146607007239],[6.273246832356464,53.11146280920428],[6.273479452911076,53.11139272904448],[6.273877426404382,53.111267129094415],[6.274017138653504,53.111220444450694],[6.274137478296347,53.111167073264156],[6.274369634458345,53.11105400434512],[6.274650258742429,53.110921569481214],[6.27472211537177,53.110887661833914],[6.27506701297053,53.11071580323943],[6.275759528609034,53.11037404859162],[6.2764433800904,53.110026144858956],[6.276721955269534,53.10988911916929],[6.276790083679817,53.109855606471406],[6.277588426531294,53.109468941303135],[6.278325983058168,53.10911171270017],[6.278574691283993,53.10899125135487],[6.278618241637512,53.10896891045314],[6.27985753065972,53.10833306279892],[6.280267308294899,53.10810848561835],[6.280424338805752,53.108023983974284],[6.280880835287367,53.107778343019966],[6.281149758746805,53.107602620828395],[6.281221592892588,53.107567406195265],[6.282280255207709,53.10716400969687],[6.28283904258526,53.10696851314995],[6.283050376762835,53.106863149202944],[6.283146072159046,53.106780998905904],[6.283506900185198,53.10647125351769],[6.283578028757405,53.10641076398395],[6.285073840820528,53.10512674079467],[6.285139810550615,53.105071142044004],[6.285569002865243,53.10470174735897],[6.28582947320062,53.1044808853391],[6.28589825560945,53.1044213285689],[6.285919378476531,53.10440303569987],[6.286086471090698,53.10425834153979],[6.286346803441216,53.10403756936141],[6.286771829422792,53.1036885821147],[6.286865426713327,53.1036095898395],[6.287169121809633,53.10335328143864],[6.287398589329988,53.103159608271774],[6.287653320485717,53.10293581981901],[6.28791587099648,53.10271619554154],[6.288355006588201,53.10235401207706],[6.288446773897308,53.10227635342216],[6.288687596230495,53.10207998589919],[6.288750762668496,53.10207313005399],[6.290510770174479,53.09989344126027],[6.29053909490219,53.09985836050387],[6.290568980759081,53.09983089700362],[6.291916560737382,53.09954233495464],[6.293228263643541,53.09919532937761],[6.294460804303393,53.09890703324358],[6.294542919256517,53.09888697396851],[6.294636990940942,53.09886399271831],[6.295103409068695,53.09875482239593],[6.295797269893477,53.098593646053835],[6.295871709738818,53.098576456051376],[6.296306815404403,53.09847169761949],[6.296427005597026,53.09844334947968],[6.297896623210484,53.09809751994075],[6.297950967824613,53.09808473247103],[6.299382823539658,53.09775116835117],[6.300299672443231,53.09753606489023],[6.3008074313435,53.097416932170646],[6.300890584537907,53.097397561206485],[6.301481972769094,53.09725983302276],[6.30166826109069,53.09721645293392],[6.302661506973467,53.09698483313482],[6.303759161917463,53.09672790818851],[6.303853368747594,53.09670469450403],[6.304209012665531,53.09661970097142],[6.304306249895293,53.09659578919217],[6.305146191681383,53.09639604679505],[6.306449642550472,53.09609099689869],[6.306453407032736,53.096087562052645],[6.306535497947981,53.096066910124584],[6.307773480852589,53.09577809287987],[6.309120075774759,53.09546489089064],[6.309205183885345,53.095445094517956],[6.310039564642071,53.095251336127184],[6.310520602116092,53.095139629223766],[6.312450005342282,53.09469119536418],[6.312744730234321,53.09462269664726],[6.312752365320394,53.094620894383276],[6.313618997124513,53.09441620404191],[6.314350184614411,53.09424349596911],[6.314566973314462,53.094192292928504],[6.315157520825006,53.09405279586625],[6.314949992995045,53.0937795184023],[6.314687861018668,53.09344346191585],[6.314398154769311,53.093059576809516],[6.314365492716058,53.09301629928745],[6.314343215969497,53.09298677171031],[6.314303947493347,53.09293474807376],[6.314217146625354,53.09281972879122],[6.314101873333978,53.09266816633682],[6.314016855462063,53.092552756023686],[6.313858165726324,53.09234212023216],[6.313807493029792,53.092278861197215],[6.313684447249305,53.0921252741415],[6.31345557847428,53.09183323357827],[6.313321925336024,53.09166024508617],[6.313192740062336,53.09149302717455],[6.312933697762135,53.091157724937055],[6.312768172160022,53.090936851103216],[6.312687252102575,53.09082564027687],[6.312594768412477,53.09069855905871],[6.312400505396361,53.09043260654017],[6.31236011574728,53.09037465063255],[6.311994903677164,53.08985066915269],[6.311773626279992,53.08953967752555],[6.311530800044983,53.089200787004536],[6.311381229446857,53.08901909446294],[6.311288110655594,53.0889059820246],[6.310600422542429,53.08807062488083],[6.310436058746009,53.08787095570766],[6.309803469434021,53.0870912267178],[6.309684551078071,53.08693596748858],[6.309175666892861,53.08627156601028],[6.308510876699088,53.085403588305425],[6.307792550655923,53.08447316727611],[6.30717455853654,53.083672678541944],[6.30597608032145,53.08210866159908],[6.305364806703341,53.08130862427662],[6.305273833369804,53.08118955931532],[6.305547887936961,53.08113257717093],[6.30743643939524,53.08071227377562],[6.307663070215045,53.08066212166451],[6.309961331975034,53.080153498771054],[6.31067672194372,53.079996605121124],[6.312559913456229,53.07958356759234],[6.315499439952065,53.078930516748876],[6.317679194981637,53.078451177395586],[6.31841490408096,53.07828889439399],[6.318417280388495,53.07828837236989],[6.318855853571503,53.0781916266442],[6.31921338799851,53.07811199113101],[6.319457169118024,53.07805769292258],[6.31993832756664,53.07795051061983],[6.32137242571681,53.07763483006385],[6.322996907422027,53.07727501242938],[6.323454729748555,53.07717428870754],[6.324267145674261,53.07699554422159],[6.325351003826517,53.07675907671529],[6.326605560661466,53.07648174618861],[6.327703520530195,53.076238856125414],[6.328953055731024,53.0759639130444],[6.329701416324816,53.07579711095864],[6.330373198459611,53.075648566091864],[6.331129747696613,53.07548276910236],[6.332055420832927,53.075279389756254],[6.332321780603722,53.07522043829501],[6.332381613649779,53.07520719602159],[6.332722640754712,53.07513172123128],[6.332872600933361,53.07509853595945],[6.333361001578377,53.074990441957915],[6.335078938285252,53.07461020143137],[6.336270981150087,53.0743463481587],[6.337238895216871,53.07413209742464],[6.337568100095533,53.07405921888894],[6.337963696144621,53.07397163110657],[6.338034855759064,53.073955878666155],[6.338492625913998,53.073854522278815],[6.339188979946444,53.07370033143665],[6.339990833956525,53.073522767511335],[6.341695882727495,53.07314519370474],[6.342571857030647,53.07295119596619],[6.343368135478598,53.07277510090379],[6.345020781070702,53.07240959816738],[6.347620368649845,53.07183460528516],[6.34815706676934,53.07172094103735],[6.348176917727216,53.07171651304143],[6.348710256553557,53.07159750801194],[6.34944973508293,53.07143183893125],[6.350790386965989,53.07113403319547],[6.351170603058617,53.0710516384674],[6.351385069188447,53.071007126209814],[6.351765589360383,53.07092240876397],[6.35190525749494,53.0708913132037],[6.351930379004883,53.07088571891034],[6.352051427782786,53.070858771884154],[6.352145485038323,53.0708378301281],[6.352186848796878,53.07082861785864],[6.352944211027308,53.070661174547325],[6.353172922510189,53.07061060376389],[6.353710360804993,53.070489952454345],[6.354275736499249,53.07036302553063],[6.354926231298992,53.07021202432206],[6.355338291448395,53.07012450604884],[6.355634965231523,53.07006149197935],[6.356092344242082,53.069959630333734],[6.356392585573774,53.06989276639358],[6.356903459674713,53.06977730298506],[6.356970404147726,53.06976246343003],[6.356983053668976,53.06975965557925],[6.357619874143491,53.06961850130043],[6.357727939854635,53.069594421643814],[6.35822212649434,53.06948431859027],[6.35856237646555,53.0694100605893],[6.359047685574196,53.069304132776956],[6.359688975336151,53.06916327219886],[6.359931353107531,53.069110034437585],[6.360626509161062,53.06895569154365],[6.360666876046352,53.06894672742182],[6.360768778300674,53.068924734944055],[6.361344498167384,53.06880046666445],[6.362226098332978,53.068609558512954],[6.363061742128069,53.06842416735009],[6.363861229841662,53.06824544580851],[6.364757854077848,53.06804426824746],[6.36558791858465,53.06785783567742],[6.365620412990077,53.06785053348825],[6.366419248786672,53.067670991392376],[6.36707831769081,53.06752736650442],[6.367436730401356,53.06744545770716],[6.367810592802216,53.067360006697086],[6.367796780094279,53.06719694164282],[6.367759176749015,53.0670618581902],[6.367717862565385,53.066811355061574],[6.367691498498604,53.06664145523496],[6.367660143175997,53.06643947885721],[6.367581361252606,53.06600557915926],[6.367577404413924,53.06598163542613],[6.367565225468504,53.06590805402147],[6.367562097179089,53.0658891092397],[6.367531833190339,53.06572748203091],[6.367504827784717,53.065583316246034],[6.367431165712508,53.065230675809254],[6.367348794791873,53.064786964742474],[6.367256057732135,53.06430886618032],[6.36717899029126,53.06387851950038],[6.367102379470145,53.063467049852676],[6.367062686757472,53.06326358622727],[6.366978040311555,53.06279270913947],[6.366876750282367,53.06226575708314],[6.366689185506632,53.06128990406005],[6.366693725455744,53.061273600936055],[6.366709828909656,53.06121571274479],[6.366699488359568,53.061216929570136],[6.366686745199448,53.06121213612218],[6.366678200661848,53.06120631067414],[6.3666671218551,53.061145014389744],[6.366656451810242,53.06108594314056],[6.36662048347354,53.06091319196808],[6.366568902586119,53.060661908979064],[6.366509847084671,53.06036889967856],[6.366476883275733,53.06018577126536],[6.366472697106464,53.06016684407928],[6.366414866233709,53.05990493598619],[6.366374175979113,53.0596747904544],[6.366345440925743,53.059534268906425],[6.366318120558167,53.05938571954717],[6.366291388907529,53.05922818796571],[6.366272905013832,53.059110282521274],[6.36626774745864,53.0590773796689],[6.366214677116091,53.05885910764761],[6.366180284108372,53.05871767966897],[6.366081816365153,53.05821977479819],[6.366052037308696,53.05805733429411],[6.365985999986632,53.057697099258455],[6.365895609599786,53.057212563107065],[6.365856287044875,53.05700449452994],[6.365810478232818,53.0567620876203],[6.365711125507498,53.05619406754014],[6.365665450995271,53.055942295017445],[6.365611022040806,53.05564223797053],[6.36551617419776,53.055124945636955],[6.365473192658346,53.05490327411836],[6.365469614411019,53.054884800002704],[6.365424944824945,53.05465434484073],[6.365324210026945,53.05412184999795],[6.365268937756029,53.0538278470407],[6.365259161914273,53.05377584982602],[6.365202703836958,53.05347551201538],[6.365085893014463,53.05286730138881],[6.365069619707418,53.05278044431774],[6.364995668117612,53.05238589008068],[6.364910507611045,53.051900815244345],[6.364898271848632,53.05182100671988],[6.364883342437459,53.05172357900879],[6.364818244408975,53.05124049738272],[6.364738522858991,53.05067945898704],[6.364632206527043,53.0498854536742],[6.364413849320051,53.04825461424153],[6.364412971801807,53.04824806991227],[6.364403218713848,53.0481751335843],[6.364402484572975,53.04816968471933],[6.36436109560632,53.04787169438351],[6.364282385127803,53.04729406679366],[6.364234408995358,53.04693847206306],[6.364214565164091,53.046791442441055],[6.364178829042866,53.04654710972788],[6.36416784003441,53.04645367574326],[6.364134441987245,53.046160733702024],[6.364100872789326,53.04588805728701],[6.364065274406355,53.04562125681645],[6.364039907431637,53.04541090769966],[6.364008334673999,53.045173244912384],[6.363966016273495,53.04488540741715],[6.363931704324141,53.04461274637915],[6.363912846023056,53.044480931510165],[6.363873502519496,53.04421327181712],[6.363831347240697,53.04388815691321],[6.363788279094267,53.04357877547745],[6.363749622103069,53.043309762325954],[6.363729575757527,53.04314426669564],[6.363681337055906,53.04279451446337],[6.363637513960933,53.04242226002081],[6.363588364098173,53.04204647241223],[6.363563297900411,53.04184465743359],[6.363539530696839,53.041691378004394],[6.363534246743308,53.04165728072213],[6.363505750938715,53.041422261391176],[6.363477486719548,53.0411935491091],[6.363456616372691,53.04102581322741],[6.363440310483313,53.04090857210266],[6.363416532222586,53.04073750790108],[6.363394608504669,53.04058192151443],[6.363378340302951,53.040460393376655],[6.363365640352521,53.04037227544218],[6.363342486966516,53.040207065518025],[6.363326195825598,53.040063960621715],[6.36332454141686,53.04004937079821],[6.363306518581601,53.03992273463549],[6.363296941236291,53.03985545803492],[6.363272704026093,53.039681791559346],[6.363262882206285,53.03960296011607],[6.363253313671096,53.03952613044216],[6.363219004340635,53.039263128883356],[6.363163101089929,53.03878881263342],[6.363140619815522,53.03860166062691],[6.363112759180595,53.038383467994535],[6.363072917848607,53.03812833869942],[6.363059763451911,53.038027867901214],[6.363033204877663,53.03782510356728],[6.363005304646983,53.03757321084681],[6.362977363010879,53.03735996155811],[6.362946555499711,53.037138593367374],[6.362920246937194,53.03691771855554],[6.362885038310917,53.03665497604714],[6.36283838799099,53.03628967238202],[6.36280732564497,53.03605887915291],[6.362798596246642,53.03599408492542],[6.362765077999855,53.03576012166459],[6.362726981486663,53.035492855359266],[6.362685322806087,53.035182436686306],[6.362649315039896,53.034917885212074],[6.36257906043798,53.03438475969441],[6.362521445082239,53.03396903997469],[6.362624536505846,53.03386816924772],[6.362946876393166,53.03355273297763],[6.363245409204993,53.03326137685646],[6.363412451548124,53.03310210927884],[6.363441948215208,53.03307398304647],[6.363587923109723,53.03293322007922],[6.36361341909006,53.032908847045626],[6.364535102766419,53.032027844781204],[6.364657018350234,53.03191199903138],[6.366128616795264,53.03051366566008],[6.366929334802717,53.02975029866297],[6.367749327300645,53.02897101393092],[6.368619523769089,53.02814282881272],[6.369442922778414,53.02735467884954],[6.369759520164782,53.02705391904623],[6.370526934011189,53.026324886159784],[6.371334603669289,53.0255507544187],[6.372533449695142,53.02440228959301],[6.372970099070048,53.02399994355355],[6.373491149444798,53.023507185950955],[6.373975427762829,53.02304824942981],[6.374050130433464,53.022977446931165],[6.374185304293905,53.022847085044155],[6.374714525669795,53.022336657983956],[6.375340112862682,53.021738764822494],[6.375422184481049,53.02166054077071],[6.375928738913113,53.02117766883007],[6.376211926354059,53.020907820237944],[6.376496786307018,53.020636357780866],[6.376962415269894,53.020195706710844],[6.377545025169431,53.01964250637246],[6.377995363832506,53.0192145592318],[6.378638799830103,53.01859293689401],[6.379503102411642,53.0177642394683],[6.380358168576891,53.01695015301576],[6.380943445443003,53.016390271805584],[6.382102382047917,53.015290358732024],[6.383184014518615,53.014256248731535],[6.383937832636822,53.01354522916365],[6.384141429952723,53.01334777416182],[6.38472486225682,53.01269283596301],[6.389380997290176,53.00824251216431],[6.391258520425458,53.00644972126562],[6.392464186092196,53.00536759716973],[6.393173130963996,53.00471541467554],[6.393833901311831,53.00410752448942],[6.393852559812912,53.00408974478187],[6.394096756142599,53.00385701633414],[6.394940942981806,53.003053289991705],[6.3958972689274,53.002147186983606],[6.396421904185316,53.00165211808719],[6.39724784293493,53.000863653587245],[6.39857256397564,52.99959343403155],[6.399566923373484,52.998642727252964],[6.400701301684796,52.997558296311404],[6.401904228941662,52.996413105877025],[6.402758370417698,52.99558358827129],[6.403241991523013,52.99511969648954],[6.403995316201558,52.99439707066631],[6.405012965943983,52.993424423264706],[6.405592145302371,52.99287340774111],[6.406525174169946,52.99196950668585],[6.407858111834524,52.990694703841726],[6.40790485700935,52.990650044716034],[6.408789001752948,52.98980515431946],[6.410166633324216,52.9884764619025],[6.411531038214044,52.98718541322878],[6.412165061219918,52.98658050267566],[6.412630077014778,52.98613681567225],[6.413279911303307,52.98552293808044],[6.414217889351686,52.98462819585407],[6.414641081862144,52.98422752065086],[6.414896589346088,52.98398559967191],[6.415637431156491,52.9832771216967],[6.416433255673165,52.98251578977692],[6.416859034081127,52.98210845128641],[6.420713815487241,52.97842017122105],[6.421516188088158,52.97765235699112],[6.421663047608152,52.97751182549226],[6.422983067465688,52.97624858463806],[6.423049156305122,52.97618533715504],[6.424417756886181,52.97487551074331],[6.42443008593231,52.97486371157658],[6.427488919570367,52.9719358974439],[6.427561777363001,52.97186615367787],[6.427614782917707,52.971815410715266],[6.427550600877498,52.971742304107735],[6.42720513367292,52.97134879156208],[6.427147196567081,52.97128279275596],[6.426757098681573,52.970838433592945],[6.426180596670751,52.970181724716035],[6.424703139833351,52.968498591706386],[6.424449849369459,52.9682100287299],[6.423188848741319,52.96677333262345],[6.42098047338838,52.96425701294118],[6.416876071232552,52.95957940032031],[6.41398197213326,52.95628041957787],[6.411802935345751,52.95379615612303],[6.411739617215588,52.95372395923549],[6.411711956116726,52.95369241840611],[6.411282342969716,52.953202594543335],[6.411198583998774,52.95310708961291],[6.41117832435199,52.953083987295756],[6.410891300597267,52.9527567170904],[6.410616421029635,52.95244329927391],[6.410454416481001,52.9521979062709],[6.409093557744296,52.95065931204943],[6.404812334995508,52.94581811806387],[6.404430394035978,52.945386152468004],[6.40441628938278,52.94537020398652],[6.404363508274179,52.94531051288403],[6.40429666331884,52.94533474465397],[6.404175561798925,52.945202266038926],[6.404141716159615,52.94515832965585],[6.404061846429336,52.94505284715138],[6.40242050938113,52.94312058152896],[6.398331332184321,52.93843656339307],[6.39344338041597,52.93292897668895],[6.393320464918192,52.93281935622401],[6.393205114935879,52.93271529752268],[6.383744485301457,52.928506725364855],[6.37866664079517,52.926258446941965],[6.373227416409224,52.9238500503587],[6.369791935309127,52.922348658833116],[6.369421343920455,52.92217743306493],[6.369553409606724,52.92209193216631],[6.369450397911111,52.92200571417445],[6.364512998499251,52.919851169115006],[6.360864402337535,52.91822319353555],[6.344780605487879,52.910787094802075],[6.334305002834398,52.9062154303669],[6.334062805461084,52.90636072918679],[6.333980871669155,52.9063483120315],[6.333730361932398,52.90630985778855],[6.333393512007023,52.90627377633469],[6.331272392399592,52.90757570299028],[6.326943154154133,52.91023404598758],[6.325243971655063,52.91127753583062],[6.324467925508035,52.91175375490684],[6.319669639067605,52.91469859529973],[6.318936871531611,52.915128947601964],[6.315959291114836,52.91695402141448],[6.31492162460697,52.917590614375904],[6.312875540256393,52.918844996652396],[6.312595285681949,52.9190167965992],[6.309803047605973,52.92085263262589],[6.309600542992024,52.92097776686369],[6.309151512174506,52.921255900879245],[6.308675974156746,52.92158168812277],[6.303639721871282,52.92459931691935],[6.262579483671723,52.9274240174548],[6.262535850305047,52.927315057682534],[6.261699662666945,52.9273661184771],[6.25862952532039,52.92755706577304],[6.257627017171876,52.92762279205334],[6.256878438709998,52.92767073595503],[6.247155129276248,52.9233344158683],[6.246879676007405,52.922957866588426],[6.246118494666478,52.92205961320874],[6.245976157987109,52.92190680094971],[6.245545266060743,52.92133007083057],[6.245520494147903,52.92129385237771],[6.245492060130459,52.921258864009445],[6.245181532517461,52.920843227329186],[6.245170093308822,52.920795355921655],[6.244826829283616,52.91951383184207],[6.242337102988784,52.91834430746357],[6.242154193970063,52.91826922963783],[6.241986264298355,52.91811709896635],[6.24183357623127,52.917983946899774],[6.241621334171293,52.91792929838724],[6.241471794020145,52.91788543483464],[6.240341883780406,52.91735430527498],[6.240281510881236,52.917236784926466],[6.236774056198088,52.915553177578985],[6.236498035162583,52.91541978208993],[6.233904386564368,52.91416207758632],[6.23359976715424,52.91401426563583],[6.232913567780511,52.91366639656383],[6.2327454033666,52.91365523054281],[6.232531125037043,52.91355443307691],[6.22005496643093,52.9013336444964],[6.207094852050345,52.89025274032485],[6.186371516734652,52.88237706154098],[6.160028715777848,52.87211687511509],[6.148922364976261,52.867271459826114],[6.147901544653335,52.866814513081934],[6.144601851354484,52.86528358846867],[6.144325452995846,52.86518705402082],[6.144003771447268,52.86504810985481],[6.142651668386224,52.86450792552759],[6.139157754626145,52.86286069475101],[6.137261527077841,52.86199921973659],[6.136951367846359,52.86183940637747],[6.134769597923706,52.8608544363572],[6.132676463722544,52.85991886684235],[6.127354331537001,52.85752274914624],[6.12653591201925,52.857154870852376],[6.122449926874387,52.85521200878225],[6.120161096124892,52.854180251456675],[6.120037731184198,52.8541001280885],[6.11772605224854,52.85327628596604],[6.117557931879732,52.85343233877605],[6.114083558337524,52.85215216091787],[6.110356025075572,52.85082510424107],[6.110186162045501,52.85077895340451],[6.110068791997229,52.85069428964188],[6.106102482477026,52.849261837963674],[6.101821229464461,52.84771542781953],[6.099154485322974,52.84675181138552],[6.092487789396338,52.84433464673598],[6.091783364785815,52.8440989787886],[6.091109353043993,52.84390805292246],[6.08763806884086,52.843187644630646],[6.087421164975505,52.84308219938405],[6.086420256672366,52.84240225920276],[6.085011994805644,52.84136600252548],[6.083955432687007,52.84047552685539],[6.083737988680841,52.84017458737913],[6.083797991957549,52.839821529592214],[6.083674989121501,52.839728452270904],[6.083434688451477,52.83955011841296],[6.082998729769679,52.8393021543989],[6.082365569123247,52.83904859891083],[6.081674299065448,52.83888573229612],[6.080689066255113,52.838526447607606],[6.078912457905813,52.83869744330818],[6.07553851929075,52.8386686285113],[6.074308585127834,52.83878693512128],[6.06979912610992,52.839248959332544],[6.064603311018976,52.83863689469883],[6.060487077620219,52.83829174888065],[6.055034696403067,52.836938439780106],[6.054413740725855,52.83417396830394],[6.056821862925408,52.83250688701805],[6.060710564008954,52.8267873105107],[6.059568878743018,52.82650899726989],[6.059906963247719,52.82614816343702],[6.054757410151826,52.82460834554207],[6.054370137068884,52.82450772198535],[6.05406928222102,52.82443414039706],[6.053738511351439,52.82434444128462],[6.05373384746531,52.82434312813942],[6.051477628899972,52.82258832874302],[6.047874203118779,52.821074979068996],[6.047351800764501,52.820716708928764],[6.047223093064596,52.82063597347734],[6.047078307827805,52.82058004999269],[6.046648980977029,52.820438636102594],[6.046303184545,52.82033326316749],[6.04590379397702,52.820215217932635],[6.041650465052185,52.81821216079068],[6.033485506660502,52.81596625511953],[6.033214905089523,52.815830600480744],[6.032894935244118,52.815664396462914],[6.032433774006986,52.815464122992516],[6.032008419643905,52.81528668780562],[6.031475607517462,52.81506714407672],[6.031181520093692,52.81494235983137],[6.02827578586649,52.81879260487592],[6.026238443228376,52.8214917391666],[6.026158390681134,52.82159720672817],[6.026021194358548,52.821742289225526],[6.025873009267134,52.82186440572644],[6.025706708515702,52.82195291835459],[6.025395134738347,52.82204502164095],[6.024631998129875,52.82242374014832],[6.024444849562302,52.82240227365524],[6.023963300535542,52.82234755598006],[6.01926240288764,52.82196479690079],[6.017707565342717,52.821841598744086],[6.014816724354417,52.821367071923376],[6.014336066150688,52.82126007914525],[6.013427441146176,52.82111488369609],[6.011584576012369,52.820767324213975],[6.010648986825726,52.82059922464927],[6.009582546445449,52.820405963832336],[6.009246352036259,52.820334143763375],[6.008898504959941,52.82028990064689],[6.008729560599972,52.82029246249067],[6.007509942706775,52.82006797045965],[6.007176121428758,52.81996635875574],[6.006906572256934,52.8198863125422],[6.005391321719495,52.819210057297134],[6.004722759587517,52.81892426327624],[6.004536276788396,52.81884939833691],[6.004372131594271,52.818780600566114],[6.004200538904681,52.818709594231194],[6.004020927855483,52.818595941339574],[6.003812032587046,52.81850940057449],[6.003507730776279,52.81839583479515],[6.00315475633562,52.81829880423434],[6.002774599241691,52.81816427611118],[6.002304989817109,52.81799763997454],[6.000747796433813,52.81749397300138],[5.999803009045212,52.81717474916575],[5.999499229826231,52.817097108628545],[5.999159952001416,52.81691743373766],[5.998934965220646,52.81683938763863],[5.998674457473544,52.81677332304078],[5.998299737438013,52.816710656510466],[5.998020660147307,52.816692423949306],[5.997719515427426,52.81668722666133],[5.997428661913142,52.816688159044],[5.997186979036443,52.81669220019438],[5.996939094958641,52.816683358239416],[5.996696661750511,52.816633489862085],[5.996429648103499,52.81659946499092],[5.996370334116403,52.81673401379546],[5.99629231659567,52.8168899926015],[5.995331925363426,52.81791209918359],[5.994757508213764,52.81852444462403],[5.994544303897971,52.8187608782925],[5.994340655678439,52.818950639335505],[5.994172171421832,52.81910258406754],[5.993797635143813,52.81937184957073],[5.993596134857906,52.81949981359946],[5.993335705372887,52.81965728474014],[5.993065014754434,52.81981087978739],[5.992749208041652,52.82003715561233],[5.991655262567102,52.82063134599067],[5.991499033031392,52.82071469974192],[5.991368411320222,52.82080692003431],[5.991222013227737,52.82094808107724],[5.991084387061361,52.82108638494522],[5.990952681113329,52.82121736088588],[5.990826834997423,52.821336516790595],[5.990661126381057,52.82148900844678],[5.990512623770941,52.82157906240974],[5.990359625381777,52.821678691688945],[5.990188630987906,52.821751451410776],[5.989971292601203,52.82180816126247],[5.989719903720216,52.82186672317757],[5.989441709466488,52.82191474400444],[5.989212368980711,52.82195858978569],[5.989003885243024,52.82200232983314],[5.988760697956575,52.82211813966482],[5.988428962481726,52.822064768905605],[5.986832069931074,52.82179254099839],[5.986429018125277,52.821727723790325],[5.985643999998703,52.823224603658474],[5.984489041168378,52.825338928847856],[5.984337326448258,52.825534594613764],[5.984057487407727,52.826007804081044],[5.982462533164549,52.82796422746321],[5.982170341416169,52.828298764372825],[5.981957808221281,52.828593019037996],[5.981796511471611,52.82885275155394],[5.981675134257403,52.829082520434],[5.981611970470214,52.829245163974385],[5.9815290215656,52.82936802294018],[5.98134844511628,52.829506529173464],[5.981165328733374,52.82967988006776],[5.980992358790824,52.82983239433963],[5.978983108992527,52.83169029559192],[5.978377703623386,52.832235876872495],[5.976713155653892,52.83412235895206],[5.976474260405545,52.83446054425094],[5.975211798291464,52.83658428843985],[5.974013432969575,52.83874140257828],[5.973946999990441,52.83887147181644],[5.972559571207374,52.84155242182714],[5.972254420180377,52.84214423323048],[5.972454234359487,52.84220388624694],[5.972226474721636,52.842584694794894],[5.972199330586491,52.84258485496834],[5.971455460035247,52.84255704870192],[5.970703899400581,52.84250905493559],[5.9700989536247,52.84244685990565],[5.969140520175171,52.84225776865102],[5.962342161347639,52.840950604293546],[5.961871817751258,52.840857944635815],[5.961336046007494,52.84074538761004],[5.960816543253365,52.84061813692125],[5.960172563635848,52.840405551191296],[5.959699953177296,52.84024550259271],[5.959212218768323,52.840063614869834],[5.958886343859246,52.83988150629517],[5.958334534591312,52.83956905689115],[5.958035040676688,52.83936435270336],[5.957646106960472,52.83912918830922],[5.957304965859664,52.83891345752741],[5.956934371942205,52.83860798938055],[5.956620959945633,52.83834887059329],[5.956326896970778,52.83811437197558],[5.956045442094925,52.8377958042794],[5.957046457040059,52.83592827405643],[5.956395760147672,52.83557711479986],[5.956623286828096,52.8351091294405],[5.956723141115503,52.83480029835116],[5.956783380498787,52.83442256626425],[5.956721525638179,52.83410663520127],[5.956647608533423,52.83378964702304],[5.956500825676287,52.833574665596046],[5.956137078409199,52.83334667311619],[5.955890232020158,52.833281573227055],[5.955530378420241,52.83322712187049],[5.955101734648555,52.83324938503178],[5.954798715261004,52.833340138332005],[5.954530025259623,52.83344981581809],[5.954353498226394,52.83356860743138],[5.954144191325715,52.83378809836195],[5.953846383645014,52.83404900727093],[5.953581644090321,52.83423168112376],[5.953337308219041,52.834378876763395],[5.952623501248284,52.834727131705485],[5.952178555610227,52.8348533753455],[5.951363721657291,52.83519030133645],[5.950855550928405,52.835376376577116],[5.950505334096439,52.835494859751144],[5.950084576350056,52.83566365920931],[5.949759943954811,52.83580673316974],[5.949366206195037,52.83598607890957],[5.948932681634169,52.83620829822053],[5.948402554149456,52.83641973677699],[5.948138646605462,52.836543989681246],[5.947776012248245,52.83674396134831],[5.947140618037467,52.83706597727393],[5.946869376886778,52.83721497509388],[5.946534196526279,52.83733337586792],[5.946133014369827,52.83742118874795],[5.945758109565651,52.83746113937208],[5.945268849629222,52.83738873250063],[5.944881592386466,52.83727821000449],[5.944259212293387,52.83698623725691],[5.943855476829293,52.836746603922265],[5.943495510811855,52.836574731384594],[5.942923961311043,52.836321274257955],[5.942385529551713,52.83610079444518],[5.941919281068344,52.8359760266271],[5.94166034123659,52.83590815009104],[5.941374549941697,52.835843201336665],[5.940965292285818,52.835751299131665],[5.940620090499759,52.835682131219585],[5.940010483962975,52.835588918165946],[5.939586903941099,52.83553751817479],[5.938974905902065,52.83549317147654],[5.938639079070843,52.835450357541234],[5.937978662390568,52.835446104096235],[5.937784525846238,52.83545992402743],[5.937569533881836,52.83547439656886],[5.937305380834737,52.83548797281701],[5.937103740503451,52.83549507664975],[5.936850192256842,52.83550467578815],[5.93641986700163,52.83550665895094],[5.936248021370838,52.83550408039241],[5.935866040221446,52.83549628577094],[5.935462448435525,52.835485785782474],[5.935051313939447,52.835483182465296],[5.934400006289601,52.835502466447],[5.933989299332041,52.835534114963494],[5.933514177391324,52.83551382617841],[5.933095564411387,52.83548878349107],[5.932586030739043,52.835460228099585],[5.932280153992506,52.83543859396432],[5.931841215421367,52.835381628770776],[5.93167817648405,52.83536046367846],[5.931064011682323,52.83525317935587],[5.930624978774349,52.83515127632736],[5.930182662856231,52.83502747729184],[5.929821795053646,52.83488982563093],[5.929356648580287,52.83471950389801],[5.928829942904063,52.83448374866066],[5.928371931825933,52.834289809567515],[5.928222674061745,52.83423902004769],[5.930946737666667,52.83382145000157],[5.930639362975605,52.832969109482256],[5.929490365355297,52.83265909519023],[5.929706381167129,52.83263355159062],[5.930017187405427,52.832568663281364],[5.930329903777798,52.83243300362334],[5.930527756790818,52.83223439312845],[5.930611055011067,52.831997545195875],[5.93062973992114,52.83184019160871],[5.930556498419042,52.83167427044047],[5.930261783406886,52.8314846445359],[5.929900051932387,52.83138743709785],[5.92959670851387,52.831342760596044],[5.9291783193828,52.83133230678052],[5.92856343420142,52.831292413690825],[5.928164163770702,52.83128973241921],[5.927702131318594,52.831349685192976],[5.927386478697773,52.83139660685019],[5.92700028223777,52.831476990386655],[5.926513170398782,52.8315707520157],[5.925343166601016,52.831619849899326],[5.924885919504643,52.83159775641248],[5.92447875180124,52.831556348110404],[5.924145386593454,52.831483143091695],[5.923943134481902,52.831439120060246],[5.923551163744794,52.831294849312556],[5.923227995555032,52.831088484163324],[5.923137630098412,52.83100122468634],[5.924809033894151,52.82945476049741],[5.926417596860099,52.828746527770406],[5.926051712661938,52.828689085376],[5.926205247520056,52.82861549951803],[5.926381158720803,52.828442265828414],[5.926444727684821,52.828295943227026],[5.926351091614357,52.82816605891252],[5.926113582560379,52.82804356476172],[5.925856246940434,52.82798687976093],[5.92552406902149,52.82799006107558],[5.92524513517463,52.82800480027903],[5.924850848606908,52.82802848908499],[5.924101872423699,52.828052642418385],[5.923742589647138,52.82803797575844],[5.923424104745625,52.827947851793546],[5.923181372864212,52.82775797452928],[5.922936704446349,52.827523738159165],[5.9228655335205,52.82741003357394],[5.92283106871268,52.8272647199428],[5.922818058876576,52.82705414652196],[5.922822973641567,52.826849675157796],[5.922911466410857,52.82667460186634],[5.923000772084626,52.82647030873806],[5.923096468419812,52.82627778636592],[5.92324330095272,52.82603897642435],[5.92329868753361,52.82582978515188],[5.923364191206221,52.82561325060763],[5.923543185956045,52.825332166109746],[5.923664778069155,52.82507774236331],[5.923845399796476,52.82479778225248],[5.924007078741929,52.824560585175],[5.924148541690844,52.824357745457526],[5.924255573579843,52.8241443937752],[5.924299033286341,52.823927391810145],[5.924247676035306,52.82361476659507],[5.924037395008138,52.82351798261629],[5.923859656530619,52.82342779193829],[5.923570533874632,52.823327991991775],[5.92323736561687,52.823247486298044],[5.922821040030179,52.82317128957921],[5.922615919618861,52.82312479723917],[5.922623108244851,52.82300311055403],[5.919939897109278,52.82223499125996],[5.919853939536326,52.82219941010349],[5.9194737441468,52.822043273687036],[5.918821099565306,52.821803543561145],[5.91858358480555,52.82167598399375],[5.918355037105508,52.821542758027675],[5.918183094801579,52.82143231253137],[5.917939470654431,52.82127894184235],[5.917711090458845,52.821159194252694],[5.917413803882957,52.82099538494623],[5.917173556736158,52.82087176191946],[5.916935820577361,52.82072510318082],[5.916731077598555,52.820604125436105],[5.916471370676447,52.820462056228756],[5.916227840711199,52.82033395257291],[5.916024541284034,52.82019836363386],[5.91579898642856,52.82006231550129],[5.915466706555383,52.81982114581386],[5.915176549049214,52.819632028380084],[5.914830126216425,52.819447644083716],[5.91461474261059,52.81928964826909],[5.914415642482629,52.81913606389285],[5.91421642248889,52.81899091010513],[5.914009584142922,52.818810407990824],[5.913814771915447,52.81864669427578],[5.91359935536517,52.81848532622391],[5.913393321472619,52.81825538367437],[5.913314889050937,52.81815125845444],[5.913174805802594,52.81797046063301],[5.913031523515239,52.81777394095818],[5.912925514256603,52.817592992048155],[5.912816480471085,52.81741092460746],[5.912653430532203,52.81717012379152],[5.912571532894995,52.817027819561766],[5.91247771197384,52.81687714732857],[5.91235979756137,52.81668894406092],[5.912193897561994,52.816461069400496],[5.912073223915443,52.81629366465487],[5.911999183468116,52.81616929908149],[5.911887449331093,52.81601252215624],[5.911789173976216,52.81585736665503],[5.911721992234475,52.815704886760884],[5.911667486796692,52.81560514841087],[5.911578434497451,52.81548421872045],[5.911357396799435,52.8153543253379],[5.911151865375317,52.815280521834374],[5.91095344719992,52.81518141619694],[5.910751724051105,52.81505761088688],[5.910510788287401,52.81489073276209],[5.910303950999925,52.81470741158952],[5.910104886157473,52.81455382022192],[5.910067449049373,52.81452398663749],[5.908740348600385,52.8133140055478],[5.90752104219109,52.81333101783178],[5.907479673444967,52.81331839217055],[5.907217876795336,52.813247640505345],[5.906796312118837,52.81310962685976],[5.906561402984575,52.81305841053279],[5.906319178926323,52.81301565556876],[5.905923718385692,52.81292975595675],[5.905617290253856,52.812865935231585],[5.905272444368379,52.812806774031195],[5.90487102690022,52.81272595669924],[5.904489300835611,52.81266470656276],[5.904212864113569,52.81262826944576],[5.903575802480804,52.812551273810584],[5.903174854125868,52.81250976575151],[5.902861414720045,52.81247966879752],[5.90246959156108,52.81244597373594],[5.902139697090335,52.81239629157824],[5.901882616467087,52.812350778817795],[5.901598279986152,52.81227281487897],[5.901284029273601,52.81215452964589],[5.901016983147822,52.812029308885144],[5.900754683753891,52.81191416835087],[5.900509187212192,52.811729316462376],[5.900298232634728,52.81156564967928],[5.900076721508146,52.81139080345832],[5.899891796801325,52.81119276678366],[5.899731989894311,52.81096372438104],[5.899505079801961,52.81058445091547],[5.898472617388412,52.80827758910182],[5.898320211514949,52.80806480630067],[5.898098693190732,52.80788714381266],[5.897915220425888,52.807792445253895],[5.897665023182746,52.80769859882169],[5.897497003419256,52.807657188411504],[5.897294581060064,52.807605823753526],[5.896979557895263,52.80755605470681],[5.896617017269704,52.8074857107426],[5.896272095179359,52.80741529041255],[5.895921402379205,52.807347140601784],[5.895473654263086,52.80724120949924],[5.895181967741102,52.80714584504629],[5.893536831566255,52.80633055487911],[5.893171677007179,52.80617258994926],[5.892857614835733,52.80608405501497],[5.892497550523146,52.805985046947406],[5.892171836411332,52.80589150020293],[5.891887746953792,52.8058297964776],[5.891532720678901,52.805766144999296],[5.891195597483883,52.80572713064368],[5.890724821041682,52.805671830141144],[5.890426477374827,52.80564051359487],[5.890074397861104,52.80559032572489],[5.88968969650703,52.805544210585346],[5.88928849667978,52.80547400739552],[5.888877044219389,52.80539935271304],[5.888448462366443,52.80528432795425],[5.888008389534925,52.80517833658186],[5.887648516976591,52.80509447378668],[5.887217326345248,52.8049946162797],[5.886764197497548,52.80492125240952],[5.886436012361872,52.804873200514386],[5.88589050774164,52.804765396586234],[5.883706713805519,52.80429821549279],[5.883302288381731,52.804187564920234],[5.882979222863622,52.80407882137839],[5.88267558858752,52.80398741230385],[5.88247454358955,52.80391186045705],[5.882170511661341,52.80376539888716],[5.881941818618841,52.803620879189936],[5.881716156755487,52.80345836421868],[5.881407097239244,52.803132751573585],[5.88111266050889,52.80280820071478],[5.88102257780218,52.80270971939888],[5.880751959947866,52.80238114170563],[5.880538621564654,52.802138815214654],[5.880090649439504,52.80159416383582],[5.87997507427471,52.80147387725299],[5.87976420808356,52.801306812589424],[5.879518929098398,52.80112809058317],[5.879310078684805,52.80101605212515],[5.879116283560415,52.80092418029001],[5.878930173961063,52.8008564242178],[5.878683375129076,52.80079004142389],[5.87837435998164,52.80073290124538],[5.877978123273987,52.80070700755245],[5.877537864503275,52.800722300556714],[5.877296485375503,52.80074632678366],[5.877029917832913,52.80077606360577],[5.876741215758916,52.80081544397124],[5.876507318122546,52.800845611944474],[5.876252981422623,52.80091237688454],[5.875972086289667,52.800987104181075],[5.875706030522124,52.801062902632836],[5.875451829089802,52.80114201301963],[5.875207955534311,52.801212659585836],[5.87422616019118,52.801595811925],[5.874043221047497,52.801667330669176],[5.873777538630031,52.80177738088065],[5.873564801933139,52.80185631787021],[5.873284058427383,52.80194565076089],[5.872980892029043,52.80201878148314],[5.872751519793184,52.80206071421641],[5.872414242893512,52.80212948917821],[5.872181803564527,52.80216638289112],[5.871793872909561,52.802221881869386],[5.870874501134997,52.80234638193675],[5.870598876953718,52.80237501787099],[5.870332270187737,52.802402502393875],[5.869982772195744,52.802435373072996],[5.869657225638018,52.802496786375784],[5.869303496655682,52.802565619117864],[5.868985701289608,52.802657895735074],[5.868716971864302,52.802746046015],[5.868343397405699,52.80290650439392],[5.868047809613309,52.802995885266114],[5.86785018651572,52.803082056831904],[5.867648584241397,52.80322721602585],[5.867550424911633,52.803339946742845],[5.867350819037179,52.8035199296241],[5.867180386378681,52.803676195890255],[5.866973418135633,52.80386125862621],[5.866788469234858,52.804026011818735],[5.866606207915974,52.80418176773069],[5.866371874129325,52.80432200551911],[5.866181976186769,52.80443735036672],[5.865920986736676,52.804577137288895],[5.865720262978988,52.80465601186688],[5.865476219058388,52.80471428234074],[5.865167829378215,52.80473573986724],[5.864798506700033,52.804716443530126],[5.862925894813654,52.804484095067814],[5.862596418420963,52.804442722949005],[5.862197000168674,52.80440331808055],[5.861864469497291,52.80437824002033],[5.861510052388385,52.804365613865734],[5.861072767838088,52.804381391177515],[5.860754346272405,52.804418603976764],[5.860006289813031,52.80449346881761],[5.859825659960465,52.804523958674665],[5.859488198204524,52.80457921772119],[5.859163389500205,52.80471193642487],[5.859014457641692,52.80480239412133],[5.858854612372567,52.80495635907526],[5.858730500289182,52.80513602892361],[5.857939227745451,52.80642931768356],[5.857873704946091,52.806541911310084],[5.857786228432477,52.806681551851696],[5.857691330160606,52.8068206645182],[5.857569216770853,52.80692786442018],[5.857447494552484,52.80705078988611],[5.857398609860624,52.80708896996956],[5.85652900347421,52.807112995816155],[5.856366096954835,52.8070106757244],[5.856246144458065,52.80688814580884],[5.856176701387054,52.80678619462741],[5.856075760295499,52.80664280352036],[5.855989877416825,52.80649991020152],[5.855911061910135,52.806345197978544],[5.855829284041599,52.80619499109765],[5.855772856245885,52.80605367153094],[5.855672146992813,52.80591084526384],[5.855553767483904,52.805804592326886],[5.855443067994371,52.80572302339075],[5.855271688843088,52.805644496250764],[5.855036885840881,52.80559374426605],[5.854735425705061,52.80554999355301],[5.854481864465326,52.805543690890815],[5.854226867263282,52.805554234307614],[5.853958278774709,52.805550236303034],[5.853419125891916,52.80566992122581],[5.853364708543268,52.80564410807652],[5.849389032054812,52.806096712135],[5.84912019905203,52.80603471247608],[5.84879207103139,52.805988803247466],[5.847204122605331,52.80574331431441],[5.846973992045542,52.80571724225316],[5.846709705529419,52.80568231487498],[5.846433278239264,52.8056378895508],[5.846131949979757,52.80560590717001],[5.845780038883949,52.80556682143924],[5.845483309740245,52.80555335948053],[5.845196906131867,52.80553031339414],[5.844940112715112,52.80550265012544],[5.844649528099282,52.80550096206839],[5.84436133856333,52.8054616279556],[5.844189132044912,52.8054353278273],[5.843912075693456,52.80533022941344],[5.843765515333131,52.80520778942251],[5.843529849240873,52.80493908881448],[5.842958331902992,52.806016876057285],[5.842211148103789,52.80736213028484],[5.842033955055205,52.80768127952678],[5.840748571801852,52.80729805846997],[5.839610765134088,52.80653008809931],[5.838973127206415,52.80610731636055],[5.83870118116413,52.80604825258043],[5.838412946249793,52.80600441051549],[5.837986078144139,52.805886385227936],[5.837249659266419,52.80579256101038],[5.836961635297325,52.805768935162085],[5.83667248397864,52.80577114943554],[5.836447190200038,52.80578660260893],[5.836237627700285,52.80586827366088],[5.836054835099142,52.80598354344249],[5.835877192443532,52.80614991047652],[5.835858122471849,52.80632353465526],[5.835929896957423,52.806521539552804],[5.836011125143191,52.80664648205149],[5.836170528426321,52.806848649997335],[5.836293665610603,52.80699365488374],[5.836447741034644,52.80712731809177],[5.836600567766682,52.807275023700804],[5.836754564248547,52.807400814875386],[5.836948709262977,52.80753263693783],[5.836981870912746,52.80755871687932],[5.83722622484175,52.80813257911285],[5.83724643499886,52.80840470279397],[5.837211538842719,52.80843930761589],[5.837038000459167,52.80857701122808],[5.836728910951497,52.808805659323745],[5.835208328159601,52.80962131742111],[5.835029881350001,52.80973263339507],[5.834883073067483,52.8098792199117],[5.834784150977768,52.810063262487134],[5.834631263921159,52.81034073674787],[5.834512228253487,52.81059730613774],[5.83442198501226,52.81076895958629],[5.834256711045801,52.81099143574464],[5.834086783446559,52.81118978145667],[5.833879624059886,52.81139500707936],[5.833718090451256,52.81155288071576],[5.833535518251244,52.811670958531614],[5.833334904507277,52.81179134147789],[5.831651992977811,52.81227055740725],[5.831407861846078,52.81232875854991],[5.831048541189255,52.812431764482106],[5.8308092401095,52.812532066738534],[5.830559750907693,52.812634096182826],[5.830320703634187,52.81275967636997],[5.830100822519778,52.8128784446798],[5.829883757771307,52.812978105752826],[5.829600560405181,52.813116205113595],[5.829312449138457,52.813226238654366],[5.829114572177745,52.81332133338932],[5.828721152973,52.81342276937377],[5.828481218061997,52.813461294567944],[5.828158258770022,52.813494500578344],[5.826004752891109,52.81320982310158],[5.825576968289066,52.81316534055814],[5.82515129956767,52.813148365955996],[5.824850257227165,52.813170815571794],[5.824508043843776,52.81320240208875],[5.82424177957027,52.81327359247021],[5.823992071166636,52.81337785531859],[5.823872714112126,52.813447374100654],[5.823713632070826,52.813553551117415],[5.823333771984958,52.813830726918006],[5.823248421322529,52.81391641343002],[5.823086912742756,52.814081569140775],[5.822958350968137,52.814274130856795],[5.822814732791607,52.81444428104808],[5.822727201364719,52.81459120168095],[5.822602796244661,52.81475903406624],[5.822515100619379,52.81488966231332],[5.822408396775677,52.815043383410604],[5.822286609062343,52.815171889557064],[5.822183789419921,52.81527336530059],[5.821996180583904,52.815354930778895],[5.821753759321698,52.815447928827936],[5.821412300810943,52.81555758051321],[5.821247947534813,52.81560029996666],[5.821003861902472,52.8156663428421],[5.820786734185293,52.81574071615759],[5.820566312181319,52.81580891845795],[5.820390463506215,52.81588482168462],[5.82021502605371,52.815979819939976],[5.820070881076211,52.81609829477831],[5.819966637220213,52.816219994169835],[5.819905280108567,52.816319628010795],[5.819854504721464,52.81643495955908],[5.819786141821793,52.81655371599629],[5.819715877772552,52.81666630479238],[5.819564434380627,52.81679716210629],[5.819471788382366,52.8168738852768],[5.819342547809011,52.81700016847781],[5.819272232938254,52.81708523995783],[5.81918584543526,52.81720855464536],[5.819040165300002,52.81717981307406],[5.812358935606237,52.81455056569098],[5.795935149265151,52.80615150908725],[5.793008503562847,52.80536120684942],[5.78976471985895,52.803739920457105],[5.7886888568497,52.805599314013364],[5.788672543264685,52.80576562365712],[5.788587470544453,52.80586307500792],[5.78849252470712,52.80602066290327],[5.788351578362059,52.80634185626865],[5.788026210543412,52.80724779941492],[5.787929221505522,52.80751155392722],[5.787830337642227,52.807873036495465],[5.787734755264424,52.80813846637403],[5.787110085134041,52.81019852671645],[5.787056128106101,52.810303744759125],[5.787008258712532,52.81041623958398],[5.786939798478913,52.81055744434586],[5.784722446105329,52.81643600520296],[5.784477229121516,52.817200693661704],[5.784344128855659,52.81739827863526],[5.78416596800414,52.81753423909074],[5.783965181223848,52.81765341573586],[5.780015849448461,52.82006145651852],[5.773577996689045,52.82410067876828],[5.75817168524064,52.83377547798757],[5.749043639027147,52.839429179391374],[5.74889437516833,52.83952118858475],[5.748735946557667,52.83957109563025],[5.744505162841663,52.84033928624965],[5.738267661197538,52.84145812345744],[5.73484260107801,52.842079251672324],[5.730260221167097,52.84290637303821],[5.7257910007875,52.843727371061554],[5.725064109663163,52.84386088068051],[5.724737639621908,52.84389943243104],[5.72415445787593,52.84396904794442],[5.723475899451651,52.84406195332827],[5.720958737743917,52.84445825558542],[5.720754446884584,52.84433975447305],[5.719732294559695,52.84402021481716],[5.719330535867873,52.84388653539168],[5.718403459753202,52.84337969022231],[5.718100174404331,52.8431109336363],[5.717928308436066,52.84295470213914],[5.717197847885637,52.84234563580319],[5.716962749191175,52.84226035619997],[5.716527101344437,52.84245757662883],[5.713877972258348,52.840273252760355],[5.713683615854533,52.84025969399296],[5.713002591311882,52.84021218482278],[5.712511218877491,52.83837351462693],[5.712627165557561,52.83821985914516],[5.713061931659786,52.8380310754535],[5.712983752933826,52.83793355951534],[5.712262380456594,52.838027084489056],[5.711998384817295,52.83801095437712],[5.711841897528006,52.83792151429623],[5.711759966271988,52.837817824804574],[5.711799787877001,52.83771661670772],[5.708762879775869,52.83642403305994],[5.708488432454649,52.8364360064033],[5.70554922341504,52.83732627156235],[5.705363795639737,52.83733631064437],[5.703255681503159,52.837831690015896],[5.703089835695255,52.8378882960838],[5.702149928206109,52.83864622608239],[5.699869615811531,52.840595019943684],[5.699840669110595,52.84069788513625],[5.699862084377658,52.84080566811627],[5.699916356533584,52.840904935990544],[5.700680965464578,52.84197907530077],[5.700652209048088,52.8421083333805],[5.700643903699798,52.84221057790742],[5.700600217238834,52.842327518757905],[5.700499265178483,52.842512009760526],[5.700317221184966,52.84280287292848],[5.700258591257069,52.842905806675894],[5.700127762013892,52.84309486900293],[5.70003087238453,52.843231611870124],[5.699836009202434,52.84338489567016],[5.699702303124731,52.84356216567477],[5.699552948588686,52.84365804013988],[5.699239367795077,52.84378355052886],[5.699089972145653,52.84387380764639],[5.698930467696379,52.843978693856435],[5.698770859103829,52.84406897728132],[5.69850852997146,52.84412864187871],[5.698293635988915,52.84417356983831],[5.698079596496321,52.84414267476494],[5.697886589473518,52.844134757585266],[5.697714403018485,52.844120036811226],[5.697483122449788,52.84414422872965],[5.697257621426004,52.84416503559265],[5.69694007074491,52.84418832761044],[5.696653488008739,52.84416435849612],[5.696431909539464,52.84431377888868],[5.696298953433233,52.84440230010494],[5.69607334730182,52.84440850170158],[5.695879662464217,52.84450223909126],[5.69571970867612,52.8445447827357],[5.695500305602522,52.84460769018564],[5.694834626067369,52.84449707717022],[5.694599096178456,52.843719219632646],[5.69437216150367,52.84373440787556],[5.694184413028602,52.843847224193134],[5.6941152577971,52.843939515236585],[5.694031609651261,52.84404981641865],[5.693950751072699,52.844160110351034],[5.693872630892373,52.84426310003532],[5.693766485457034,52.84434031663586],[5.693678018887308,52.84442423628432],[5.693518372432192,52.84454259612971],[5.693395698132154,52.84461031042753],[5.693299951614513,52.84471445963635],[5.693207303474954,52.8448309662669],[5.693174289374151,52.8448664490824],[5.688483128590168,52.84529400985969],[5.684440400584872,52.84521212640101],[5.684387058681879,52.84516668825035],[5.683949172399013,52.84492457488528],[5.683761780700891,52.84488909458843],[5.683665130001988,52.84506906716232],[5.68342318168192,52.845060682176],[5.683325229667348,52.8448430003687],[5.683124785199391,52.84483283093762],[5.682880027408805,52.84485421504446],[5.682611512872081,52.8448941973788],[5.682402624834748,52.8449390903169],[5.682095892540371,52.845021286230434],[5.681420755736981,52.845150869930784],[5.679798940595724,52.84511793535774],[5.6785187472813,52.84510059042042],[5.67838308140642,52.84424689805908],[5.678431009560069,52.84409568927799],[5.678576862797089,52.84391953680198],[5.6788474978632,52.84377958263675],[5.679017761095623,52.843716259599674],[5.679102918093045,52.8435840558826],[5.678991093596845,52.843507943646465],[5.678771789707993,52.84355510258288],[5.678643069472156,52.843622816927265],[5.678479210713261,52.84374284718894],[5.6783597064706,52.8438706411253],[5.67826281429531,52.844017467240306],[5.678159559048797,52.84411376788769],[5.678107323623252,52.844280147450824],[5.678170401523762,52.84483716327684],[5.678056672654068,52.844927863976245],[5.677948920783316,52.845011252848096],[5.677820135966714,52.84506997954523],[5.677769361857929,52.845090421993596],[5.676429348507411,52.84507223878747],[5.676424992474276,52.84512727444895],[5.673902937521031,52.845050258682],[5.673741096781542,52.84502144125215],[5.673631232656432,52.845100904166806],[5.673078214595054,52.84506766022749],[5.672969297881813,52.84481098521448],[5.67002934948319,52.844638264985186],[5.66955797031447,52.8412413675934],[5.67037287999089,52.8403182619922],[5.671085008878311,52.83985151082223],[5.67084547825318,52.83967571918621],[5.670160553551526,52.840222726540716],[5.669687107213351,52.840736643262204],[5.669511925946586,52.84090958296467],[5.669422237134763,52.840263227012656],[5.667150959814169,52.840169730361715],[5.665252679064349,52.84271738299602],[5.659218168213435,52.8437018590805],[5.659211715281402,52.843821557476595],[5.657689259499486,52.84367557452608],[5.657481704868644,52.84371367219158],[5.657397752195046,52.84382563795431],[5.657486491826954,52.84448763209875],[5.657405380467315,52.84457206514078],[5.657355417313884,52.844667661241026],[5.657331703656945,52.84488451629693],[5.657063779894415,52.84573772636992],[5.656892072268169,52.84579934049972],[5.656709747648642,52.845867709423004],[5.65657242707982,52.84597698224397],[5.656431797861841,52.8460385254732],[5.656436956942156,52.846160390239746],[5.656344197810492,52.84627517852957],[5.656110149733392,52.84634479593362],[5.655862957938703,52.846463859222325],[5.655649843276443,52.84654409523336],[5.655445301336279,52.846620942003625],[5.655224812002164,52.84670905706497],[5.655008383860873,52.846776942935676],[5.654799609016935,52.846846500512704],[5.654614648162721,52.846941274709444],[5.654450501448447,52.84702701554605],[5.654156176646479,52.847214704013915],[5.65402753169431,52.84730261112926],[5.653968906045588,52.847425184794055],[5.654119248393675,52.84747259369769],[5.654321494428173,52.84754852699418],[5.654455634090657,52.847638092264255],[5.654608833215637,52.847696161287466],[5.6548315832474,52.84771194495938],[5.655042279083842,52.847691252104994],[5.655291396221284,52.84765699240918],[5.655530297075336,52.84762219809171],[5.655734831101162,52.84757960849951],[5.656003277873129,52.84755822629538],[5.656230034860513,52.84750884570046],[5.656355608194401,52.847411956726006],[5.6565678057008,52.847372726959215],[5.656733847725163,52.84736841553926],[5.656777973303397,52.848732030535466],[5.656772926724875,52.84960543000691],[5.656737405870871,52.849824558174724],[5.656680698979777,52.85003362461045],[5.656590490754984,52.85041182185154],[5.656455363660387,52.85102883120696],[5.656270916222096,52.85177570006753],[5.656078174894826,52.85241810913616],[5.65602256428884,52.852804099864066],[5.655932017259405,52.85312894431311],[5.655879040273383,52.85330373554726],[5.655649776636483,52.85366765121759],[5.655202636294788,52.85436118032691],[5.654896704178872,52.85482074887727],[5.654835541807179,52.854915766221346],[5.651471601368008,52.856147726068336],[5.643904508989792,52.85945333919904],[5.635357782879505,52.85779993530974],[5.624242689772134,52.85330231373101],[5.621332750430769,52.85226156085375],[5.619789174913995,52.851626105062635],[5.61921991297012,52.85139581008392],[5.619026858835854,52.8512507199765],[5.61880976015613,52.85112027094341],[5.618622908031141,52.851007744587086],[5.618279720431934,52.850851702405656],[5.617834414543944,52.85072562940787],[5.617569261155425,52.850675035775474],[5.617310735145015,52.85064800893291],[5.617009426906301,52.850646343817345],[5.616879178560796,52.85066847718461],[5.616746500930611,52.85062101396135],[5.615349533806017,52.85031815262852],[5.61218650016321,52.85009051383541],[5.608079791036396,52.85111367626494],[5.601456652978542,52.850622517253775],[5.594472583190074,52.849116136953825],[5.586612127603484,52.84736818009956],[5.584088949423468,52.84411923585581],[5.581594589359945,52.84059160426364],[5.579633240166285,52.839524979536144],[5.579505637785207,52.839416627691826],[5.579020591765897,52.83911411243587],[5.578255606290343,52.83863624813871],[5.577637549915909,52.8383816318249],[5.576297659048422,52.83747279518083],[5.573724787042444,52.83617379429308],[5.572360799671491,52.83575928526763],[5.572262515992474,52.83570989475285],[5.572038169840432,52.8356248706465],[5.571819684100777,52.83555331666808],[5.571573075662987,52.83546720253736],[5.571254986481859,52.83536322504309],[5.570990562022024,52.83528500044987],[5.570570072692983,52.83514635609165],[5.570157038355533,52.83501556202774],[5.569853869725776,52.8349295311695],[5.569570195205197,52.8348490865605],[5.56928334190123,52.834782125757705],[5.568987842249733,52.83470169737416],[5.568428030090814,52.834564004028984],[5.567840912289594,52.83438554110557],[5.567536523246951,52.83435037916179],[5.567294464322324,52.834284145403686],[5.567013705946762,52.83423233930142],[5.566756883627622,52.83419509072912],[5.564089145023298,52.83391375708619],[5.563749271821666,52.833864834515985],[5.563382533810111,52.83382156800215],[5.560610365828334,52.83338810425456],[5.560458791926593,52.833343949301415],[5.56025367702091,52.83324651814588],[5.560076821115907,52.83319903796142],[5.559846775542606,52.83318701508773],[5.559587072850997,52.83318008499048],[5.559404200954495,52.833078126978194],[5.559264565420465,52.83300531235168],[5.559049437288696,52.83301292898219],[5.55877949413513,52.83305431493181],[5.558524366670678,52.83309007111321],[5.557724179473786,52.833013143852],[5.556999785144933,52.83293105248088],[5.555864206284965,52.8328186522272],[5.555644577783544,52.83280211329267],[5.552920914722953,52.83258913117293],[5.552615339174681,52.83259067903549],[5.55223096777945,52.832599075319024],[5.550414942625581,52.83267459343371],[5.549895678887476,52.83269608045458],[5.549695440143348,52.83271769704889],[5.548735953453522,52.83282066724317],[5.544617054453735,52.833315950234066],[5.544362008790203,52.83337807006061],[5.543265033518728,52.83368168620592],[5.542228727360201,52.83396667435255],[5.536253287551254,52.83531891873158],[5.528383819260509,52.83704213910951],[5.527919520015073,52.8371561439874],[5.527378283285644,52.8372870876934],[5.526408919355891,52.83761229841662],[5.524516220054709,52.838382847544985],[5.524329559668649,52.838458891244755],[5.522638175882345,52.83911515689221],[5.522348917305508,52.83915817194308],[5.521312041228858,52.8392716755846],[5.521018274497743,52.8393551321762],[5.520653601756649,52.83945945276275],[5.520183505564517,52.83959028397562],[5.512082970933951,52.84184906434702],[5.507933099782067,52.8430058701276],[5.507722434504631,52.84305438586278],[5.507474797846758,52.84315179896762],[5.506106402445659,52.84369236688369],[5.505714901445932,52.843847218066834],[5.504914349235587,52.84419062450551],[5.504619389134268,52.8442903247622],[5.504587165210743,52.844301014638035],[5.492668840678191,52.847587215895324],[5.488516640420148,52.848790623799076],[5.486946963863264,52.84902549997387],[5.48674825347839,52.849053748979266],[5.486461691283915,52.849099487463825],[5.486175424578795,52.849177791501674],[5.485700670880235,52.849290516989974],[5.485279541516507,52.84942061253769],[5.483754215372134,52.84979929370053],[5.483525888942133,52.8498629416306],[5.483307888752901,52.84997826207],[5.483205634782362,52.85009685031375],[5.483041145165223,52.85018460146882],[5.482541204620405,52.850348450261095],[5.481995327571338,52.850510643801954],[5.480952473555104,52.8508203816811],[5.480519221843574,52.850939227255765],[5.478640946415765,52.85139731769073],[5.478462794276906,52.85139014826498],[5.47824457271554,52.85140941167797],[5.478007119697858,52.85143992252388],[5.477822984420518,52.85145354279563],[5.477667135689849,52.851463770850025],[5.477483132254425,52.85143414704438],[5.477242677404385,52.85147027546467],[5.476993465925484,52.851536173007744],[5.476677302678803,52.851638075705274],[5.476523138363111,52.85168143488823],[5.476322832179249,52.85172988769231],[5.476109038512266,52.8517598199611],[5.47583305643033,52.85178136842825],[5.475648909928228,52.851790492170764],[5.475421649954828,52.85170247560819],[5.475120377404628,52.85171899133819],[5.474976463190054,52.85178143686036],[5.474829495588606,52.851824231461855],[5.474604138875777,52.85187775907771],[5.474400807183963,52.851921717242654],[5.474126300163908,52.85198425774985],[5.473918558684863,52.852028218759514],[5.473663249999112,52.85206322714085],[5.473127541766091,52.852116976919355],[5.47283365404788,52.852229520420714],[5.472657155134123,52.85224143749124],[5.472370677577985,52.852234902762845],[5.472170286619278,52.85224347564933],[5.471895677005851,52.85225546157637],[5.471673027816308,52.85226909928977],[5.471506767036604,52.85229393029434],[5.471325721231553,52.85235022423058],[5.471112048564087,52.8524464228772],[5.470867179751402,52.852485911537464],[5.470598649072704,52.85252597291485],[5.470365579236434,52.85254860229941],[5.470034609597094,52.85256568301037],[5.469753944748263,52.85256419722044],[5.46946446994381,52.85256720148957],[5.469234388579747,52.85257691314422],[5.468962781218368,52.85258439706158],[5.468732681814591,52.852584554857735],[5.467922365606332,52.85265981170135],[5.467723432419405,52.852703755937135],[5.467515689632094,52.8527527560548],[5.467270765066457,52.85276415419981],[5.467036303410025,52.85279071409723],[5.46681509210265,52.852829612028586],[5.466539144649519,52.852876418665694],[5.466347635332396,52.8529220359221],[5.466129676176876,52.85297104941797],[5.465884754076955,52.85298469107825],[5.465650025694437,52.852987649893265],[5.465483997903042,52.853021458705925],[5.464022190896183,52.85327965079412],[5.463818833150493,52.85331854064374],[5.463639165554747,52.85337313228485],[5.463502955399041,52.85348105820966],[5.46342905700708,52.85366926556699],[5.463074180477673,52.853681282548074],[5.462878081841295,52.85362748833063],[5.462701467404689,52.85357705097957],[5.462466727885594,52.85357551935502],[5.46225895865163,52.85361496641445],[5.462006692918245,52.85367746496449],[5.461770923865005,52.85376018117791],[5.46158693752681,52.853869815103856],[5.461434206877755,52.8539491087242],[5.46131253831202,52.85401377065793],[5.461121211929391,52.85403355250429],[5.46086142418788,52.854048873807336],[5.460675837716987,52.85403944461194],[5.460379008794309,52.85408905332118],[5.460206760174429,52.85414588202926],[5.460003331252523,52.8541465727119],[5.459910314545958,52.85416797272123],[5.451190691597784,52.853916298156854],[5.44858391753966,52.85347933528276],[5.448560991047803,52.853464986945035],[5.44857706071879,52.853343660133824],[5.448447750288191,52.85326453748186],[5.448309621754031,52.85318541021295],[5.448202499635836,52.85304898684665],[5.448064347878922,52.85295188614546],[5.447908372672345,52.85288007361235],[5.447728683092852,52.85277120343651],[5.447651305672634,52.85267183349003],[5.447667350309028,52.85253084480916],[5.447814321121577,52.85246955388884],[5.44802788560559,52.85241832929121],[5.448241663998814,52.85236149684568],[5.448531140494954,52.85235965871081],[5.448744909219378,52.85229664246056],[5.448789302134913,52.85219552091891],[5.4486629766202,52.85209448767756],[5.448546805967334,52.85195076316461],[5.448433791455761,52.851750313947754],[5.448276357784883,52.851630757013034],[5.447897675225957,52.85153041831284],[5.447682420269084,52.8515260347553],[5.44743748811068,52.85153120928889],[5.447248911765121,52.851529058243486],[5.446908776433569,52.851455090380725],[5.446715756463118,52.85142767047364],[5.446559853888133,52.85140359228262],[5.446352020395537,52.85139807943905],[5.446102626188819,52.851363380016316],[5.445856184632193,52.85128262317154],[5.445698676124974,52.85126697436846],[5.445490898217992,52.851303022254555],[5.445253374275651,52.85129639840957],[5.444695258289379,52.85126296993184],[5.444524508617619,52.85123553570374],[5.444361149673827,52.85118449915036],[5.44401364584489,52.85114591537264],[5.443724187391391,52.85115559717778],[5.443560868899351,52.85113433149301],[5.443413992160722,52.85109677437196],[5.443277310926883,52.851045723722656],[5.44309913217084,52.85101210805578],[5.44289571970124,52.85101444983899],[5.4426433891379,52.851035910901395],[5.442426682126549,52.85098490509799],[5.442215829131607,52.850973203541734],[5.442071724760413,52.85091935103556],[5.441900996358418,52.85090707331191],[5.441714068595057,52.85092682157851],[5.441406689082704,52.85088483326543],[5.441241827633065,52.85092254390739],[5.44113060450741,52.85101245936231],[5.440888616693245,52.85095920686535],[5.440737189785779,52.850985677571884],[5.440554748224957,52.851069442515374],[5.440413833853238,52.85115937062289],[5.440161540075489,52.85121340275731],[5.439950696168239,52.851209003284126],[5.439738434660221,52.85118663088311],[5.439575062658291,52.8511193038809],[5.439393883068655,52.851094113275565],[5.439293092107899,52.8511840228821],[5.438828656042826,52.85131733381712],[5.438530300450022,52.851261297091895],[5.438349145347233,52.8512563248761],[5.438081780430958,52.85111882854108],[5.437900590589625,52.85108408321721],[5.437729856943444,52.85106618271641],[5.437569615436312,52.85109770386707],[5.437271138169374,52.85112647873449],[5.437094598647724,52.85110745658702],[5.436922169447709,52.85102159048971],[5.436864289891538,52.85091714652533],[5.436700886301862,52.85081723925445],[5.436599864939901,52.85070888556915],[5.436627791244629,52.85058137291802],[5.436445167679602,52.8505095564422],[5.436154222532398,52.85043553751017],[5.435962709064303,52.850496841825844],[5.435798051707214,52.850520498778565],[5.435656947554135,52.850446974396554],[5.435511213620722,52.850374018265995],[5.435380489362459,52.85024938315053],[5.435087882626865,52.850132676396775],[5.434850311967931,52.850076048860466],[5.434667705053592,52.85001489628412],[5.434477674855951,52.84995206655273],[5.434333533558141,52.849852148344425],[5.434087122722604,52.849772490341],[5.433845177411698,52.84974450233911],[5.433641807930568,52.849782775134834],[5.433396863759172,52.8497682673939],[5.43323799965089,52.849780685391615],[5.433006599996844,52.84985716022882],[5.432864018126368,52.84991113462977],[5.432614705166145,52.84993594286513],[5.432412942740022,52.849964669046685],[5.432133758257025,52.850028237897575],[5.43184433853213,52.85007103286244],[5.431801532127347,52.85017664072975],[5.431629273385702,52.85024410432005],[5.431198734849,52.8501925917614],[5.430961224757981,52.85019155626506],[5.430631813040921,52.8501456211941],[5.430419261175245,52.85004460006077],[5.430218812672481,52.849993000068785],[5.42995761147935,52.849961084520025],[5.429731931589137,52.84995835258947],[5.429616124391718,52.84988987171578],[5.429406783444328,52.849759641273174],[5.429189825035932,52.84965581559633],[5.429011637426263,52.8495957764274],[5.428840880266692,52.849544164113176],[5.428655282603629,52.849494803097656],[5.428454817200036,52.84942129986962],[5.42821286262541,52.8493775740896],[5.428007987356883,52.849301259166886],[5.427752566002883,52.84923675143181],[5.427555089807952,52.84913347321116],[5.427402140266693,52.849024563239176],[5.427125832385019,52.84894040776453],[5.426869024911769,52.84888208105098],[5.426747205571427,52.848821462569134],[5.426658049312032,52.84871927037872],[5.4265496191899,52.848592371314886],[5.426482658562732,52.848410416164654],[5.426427595162806,52.848303161787975],[5.426323574630614,52.84817569540843],[5.426074227980862,52.84815500016906],[5.423752950524798,52.848579228204315],[5.42327662633573,52.848666426416656],[5.420744718724783,52.84912885236657],[5.415410379799347,52.85016313490636],[5.415058571217636,52.850235110308546],[5.414835934599014,52.85028009511014],[5.41458362737376,52.850354849789916],[5.414217003557303,52.85047794174813],[5.412091965736468,52.851359644512826],[5.411440273651785,52.851503564042886],[5.410974125302663,52.85162497702853],[5.41097419141769,52.85174573802653],[5.410724902435775,52.85185699587931],[5.410549828391399,52.85195251271002],[5.410334644545392,52.8520783661849],[5.409772056604812,52.85231998769056],[5.40946500799853,52.85244753777763],[5.409245645142997,52.852542162360116],[5.403402890881059,52.85433681786184],[5.396143907715325,52.85712341518449],[5.379900173290824,52.86611005839559],[5.369354001816266,52.87318132821405],[5.369326012920316,52.87320015975288],[5.368914373839767,52.873407047548454],[5.368239812937124,52.873829308035276],[5.367783666065558,52.87413534155229],[5.367342406099202,52.8743503787577],[5.366981429325121,52.87457947383955],[5.366734866690076,52.87479061427696],[5.366633863495759,52.8748961881117],[5.36615563694105,52.87473884195479],[5.366026322081041,52.8748461000371],[5.366007002867535,52.87496179761636],[5.36596680305138,52.875071308655066],[5.365754380396353,52.87521954760782],[5.365565621165181,52.87538970000291],[5.365464628927342,52.8754660666904],[5.365336717859181,52.875551415142574],[5.365206017168998,52.87562945645624],[5.365023315231047,52.87573838390093],[5.364893997369943,52.87584170466889],[5.364688989701086,52.875997806198754],[5.364498845765158,52.87613144442624],[5.364345858731674,52.87621678706193],[5.364195678015816,52.876275170249336],[5.363925247810339,52.87638407916826],[5.363655059383415,52.87645423800174],[5.363470789446882,52.87645475883104],[5.363194636685992,52.876403031636436],[5.362888544308895,52.876370393965495],[5.362642089925245,52.87633552136798],[5.362404454839936,52.876305709322644],[5.362181661034772,52.87629948070704],[5.361256370343114,52.87626670826099],[5.36080472808249,52.876294692347706],[5.360581930755255,52.87629351998532],[5.360422938618681,52.87632381394917],[5.358512978730327,52.8762110416884],[5.358337790039808,52.876159893876874],[5.358199324602767,52.87639069586067],[5.358148869706877,52.87652380055611],[5.358098169814907,52.87668947182677],[5.358059541305683,52.87683773905171],[5.358040132617704,52.87705509920958],[5.358020529716651,52.87722864110156],[5.358023422605988,52.8774128644525],[5.358045596657284,52.877572379507825],[5.358085650733026,52.87771617309078],[5.358147996358376,52.87784424537254],[5.358260664029207,52.878043664361996],[5.358395840284089,52.87823690579545],[5.358515976900553,52.87837622480799],[5.358627312165611,52.878482399416455],[5.358765323236299,52.878614425392925],[5.358879691386057,52.87869533085524],[5.359074105785559,52.87882623759329],[5.35921075934301,52.87890265436073],[5.359363661541826,52.87898188762905],[5.359481054947345,52.87905043650237],[5.359507635758371,52.879228482789486],[5.359461555863549,52.8794194341922],[5.359418328263431,52.87951602883964],[5.359373704697055,52.87961206605628],[5.359259201419349,52.8797384068447],[5.359186444994196,52.87990126986639],[5.359150643756804,52.87999730858983],[5.359059999535926,52.88018712665968],[5.358966402547649,52.880276968907864],[5.358768577983613,52.88040160976132],[5.358781951461191,52.8805335970612],[5.358850111755162,52.88066054661982],[5.35867912430537,52.88090426396962],[5.357727455412634,52.882340744281734],[5.357464380672261,52.88280629479848],[5.356818691070772,52.884071534014545],[5.356695360624435,52.88417484672279],[5.356476912458828,52.884206243409174],[5.356270283994519,52.88426684927354],[5.355702760595921,52.88455426789137],[5.355288022187617,52.88478331284657],[5.355143798345393,52.88488606128378],[5.355066422989501,52.88499387814381],[5.354499779282412,52.88595133927746],[5.354370413005307,52.88604566161615],[5.354143187310576,52.88600010984558],[5.35393227284516,52.88587873413182],[5.353733297594676,52.88592079861106],[5.352274157303406,52.88616021252287],[5.35211648660095,52.88623205803643],[5.352080886007877,52.88633033277731],[5.352147649821141,52.886444372231665],[5.35456838659166,52.887649796152225],[5.354792592878924,52.88771220508763],[5.355905325200859,52.88792536215518],[5.35607178038708,52.887910245354185],[5.356315357811265,52.887833923661745],[5.356677929127286,52.88787894868896],[5.356815867558723,52.888151380574335],[5.356900426489279,52.88840021897961],[5.356912187225304,52.88851760276382],[5.35706367543211,52.88866535992663],[5.357417043537165,52.88895020164484],[5.357737712683193,52.889194604183864],[5.358040747057622,52.88941877277865],[5.358251657824772,52.88959013255397],[5.358455147390582,52.88975137127868],[5.358573935858917,52.88986429630229],[5.358786244078479,52.89004070565189],[5.359075629626687,52.89057546677443],[5.359365135157569,52.890933302205646],[5.359451176863643,52.89107710499382],[5.359770240427007,52.891699489189726],[5.359902443735868,52.891901713735955],[5.360040503215352,52.89203149140648],[5.360185991961633,52.89216238475798],[5.360944838678709,52.89272814097734],[5.361120282092213,52.89284331352518],[5.361311763412837,52.8929511918287],[5.361604457126928,52.893072571706384],[5.363217709829857,52.89368567128652],[5.364126936049815,52.894059343072904],[5.364428450189807,52.894221156272216],[5.364652894429601,52.89434813197479],[5.364851803186676,52.89449027114678],[5.365052328288492,52.89464195451148],[5.365296031643223,52.89480487798914],[5.365492148261332,52.89495318984343],[5.365710534589888,52.89514362417882],[5.365908030334957,52.895335744107484],[5.366209898570395,52.895628305204355],[5.368600837999886,52.89819050251892],[5.369683662739135,52.89859147734453],[5.370160947987105,52.8988568513826],[5.370511509451856,52.899032135729506],[5.371048032641987,52.899276531481604],[5.371477329446409,52.899425420957115],[5.371808875541035,52.899522067807034],[5.372327356285709,52.899634463070285],[5.372629378086329,52.89968219087114],[5.374039234092458,52.900204175510254],[5.374113527457992,52.90024911566692],[5.377642186866351,52.90102363390215],[5.377659186211914,52.90103407763669],[5.377839125110906,52.90112900598832],[5.378210649118886,52.90121440507353],[5.379093267119959,52.901386332307574],[5.379879510318727,52.901581278938195],[5.380210865437556,52.901699802332274],[5.380537808131802,52.901816086794014],[5.38097320123326,52.90192899695571],[5.381432509852898,52.90203685645222],[5.381762481286872,52.902103712054284],[5.382082005221264,52.90218291394796],[5.382441700837477,52.90226998904481],[5.382756586651232,52.90237671417122],[5.383068680320405,52.90249073536016],[5.383373344503219,52.90259802504271],[5.383712369616971,52.90272552515464],[5.383932278863937,52.90281876469276],[5.384138722641013,52.902932223628135],[5.384337957341139,52.90307264074319],[5.384532556671462,52.903202948014105],[5.384755483008319,52.90337538325113],[5.385003723841906,52.90349670453307],[5.385240121634283,52.90360173246111],[5.385714096771576,52.9037533840749],[5.386053138795367,52.903865160378196],[5.386388940717021,52.90402410506508],[5.386598413429516,52.90416451841099],[5.386821352867101,52.904331333907514],[5.387726593464481,52.905004746037456],[5.387959989601615,52.90514909284984],[5.388169470832882,52.905243448213795],[5.388443043130317,52.90533948316221],[5.388746119638888,52.90543327928824],[5.389073111426161,52.90549898249404],[5.390728965721326,52.90564609504664],[5.390986052529535,52.90562643368153],[5.391316052279112,52.90554834837091],[5.391510662195664,52.905470833830826],[5.391833186374459,52.90528763329175],[5.397789141753098,52.90631515481655],[5.403661160330521,52.90886661780479],[5.405772774718033,52.91093317461804],[5.406710241045538,52.9130897554776],[5.407099116634657,52.91823888258384],[5.407024779236744,52.918238895046926],[5.406492471177529,52.92479003814783],[5.406434116299972,52.92494398390641],[5.406340818377698,52.9249321640064],[5.40609246492203,52.924968149027976],[5.406065818520482,52.92513945125234],[5.406224988946355,52.92518211079566],[5.406104725019212,52.92539330962191],[5.405970937162467,52.92548937675798],[5.405755311430961,52.925461328609025],[5.405651260037104,52.925551207952694],[5.405883175784959,52.92562923609171],[5.406023134219924,52.925838146704585],[5.406030637814286,52.92599597275033],[5.405980042984026,52.92611729634639],[5.405887849496199,52.92622514722981],[5.405807734106424,52.92634029263188],[5.405737837251107,52.92642904393844],[5.405806076234079,52.92660078922935],[5.40426433661926,52.93066744820995],[5.403697972617016,52.93166827336561],[5.403454192814422,52.93163696311021],[5.403271727052121,52.93211382940499],[5.402922801204476,52.93302879282855],[5.402827561818086,52.933163042921876],[5.402758686483645,52.93349040625046],[5.401752897445117,52.93623930675814],[5.400637971068714,52.93814453842794],[5.399225328423078,52.93961844631735],[5.396340090244347,52.94180237845562],[5.39656315654213,52.94224862100598],[5.396008578790226,52.94261847710002],[5.395901468417399,52.942812247973016],[5.395894069704432,52.94300826670163],[5.396093530395476,52.94317280902246],[5.396697467002185,52.943449656381105],[5.397245212477642,52.943613035950236],[5.397813493993742,52.944749761838246],[5.401845220986823,52.94492221794832],[5.402180811048457,52.945106493543705],[5.402139713908176,52.945255338981106],[5.402505906438181,52.945515894614715],[5.402403302620907,52.94589838269691],[5.402348403871276,52.94644206030167],[5.402552364315374,52.946720609065395],[5.403970294885975,52.9471832105971],[5.406570779009737,52.94711485950728],[5.406780004167866,52.94919570857949],[5.406841576590945,52.950161724144955],[5.406806125447371,52.95092556403641],[5.406825677257229,52.95148495649257],[5.406753123572261,52.95196798129459],[5.406573176169251,52.952464502745315],[5.406326563649428,52.953125034361484],[5.406056008045309,52.95379792469756],[5.405714123272835,52.95460562007011],[5.405446516790004,52.95515326720763],[5.405101522855794,52.95579864162637],[5.404642134537615,52.956489529709856],[5.404221267179226,52.95701360700512],[5.403705086647932,52.9575994678943],[5.402949597828702,52.95873970294129],[5.40272048856038,52.9591620878053],[5.402659643119322,52.95938338250686],[5.402772702860652,52.959520974013465],[5.403064336168907,52.95964056043288],[5.406539362469776,52.960028699495666],[5.408579906863535,52.96028277721625],[5.409362650411924,52.96037866945552],[5.410600931265153,52.96050199285371],[5.411334583656054,52.96053666804041],[5.411608765822198,52.96058660241022],[5.411547250643157,52.960783189284626],[5.411441994785806,52.96092474453272],[5.411544848807766,52.96106401043812],[5.411562585429373,52.96116453615096],[5.411543345867532,52.96127631082856],[5.411550847469162,52.961384144496336],[5.411599978770463,52.96149814288179],[5.41166259280549,52.961612147910714],[5.411723812513596,52.96173344959812],[5.411787818754296,52.961833408176226],[5.411881603973241,52.961957506845955],[5.411967943727771,52.962074310126354],[5.412073812315792,52.962194479150114],[5.412163168404949,52.9623011724389],[5.412216710194021,52.96239551677831],[5.412219790761581,52.96249830073925],[5.412223893742244,52.962515894947416],[5.411918086288416,52.965538869859905],[5.411895525979676,52.965570542239945],[5.411743696979765,52.96562112159319],[5.411592179512171,52.96582839351306],[5.411531107222843,52.965978925599124],[5.411590753566822,52.96617717652091],[5.411631061612598,52.96631364261073],[5.411574623869992,52.966448447910714],[5.411570290349094,52.966604027438805],[5.411549484778097,52.96681913527015],[5.411436506702168,52.96691071005213],[5.41139029923816,52.96703091045848],[5.41133688558963,52.967174701519994],[5.411292289167717,52.96727523929995],[5.411229814858558,52.967425771461436],[5.411109411644214,52.96755329258256],[5.411043883821198,52.96764766122255],[5.411006735084716,52.96776055378708],[5.41088033761176,52.96798018503814],[5.410782278312812,52.968141956823615],[5.410780715404648,52.96825147234345],[5.410852171506145,52.96835199627274],[5.410984768470742,52.96841599670945],[5.411208067689375,52.96847042610685],[5.411438793909029,52.968496780792584],[5.411617209922696,52.96851273960428],[5.411605708671208,52.96862644511194],[5.411309311170154,52.96860070617979],[5.411190560510606,52.96876080180184],[5.410885177274526,52.968744571215275],[5.410635185398786,52.968794045061166],[5.410404472235611,52.968794090383874],[5.410423833203646,52.96889687146412],[5.410336202039929,52.96900023006516],[5.410185749628532,52.96903451476886],[5.410260252722654,52.96918277345202],[5.410267776454924,52.96933553768652],[5.410259015359721,52.969486058798495],[5.4100892231677,52.96945857596691],[5.409922553737933,52.969623163999955],[5.409872139014497,52.96973887105241],[5.410046344574005,52.969750636967376],[5.41004639766554,52.96985116561235],[5.410029953658666,52.96997135965578],[5.410030035765656,52.97012693856675],[5.409976596535135,52.97023646397895],[5.409969211274948,52.97034654661653],[5.409869493218336,52.970456089837846],[5.409759335437663,52.97061505016871],[5.409567463205836,52.97064316869894],[5.409396284431013,52.97064938307795],[5.409244427282571,52.97068366729133],[5.409187965186678,52.97079769492373],[5.408972166401488,52.970876921339965],[5.408900815065664,52.97098476932271],[5.409009483685415,52.9710824746549],[5.409080952280023,52.97120658828352],[5.40922842704243,52.971242505663206],[5.409194071557716,52.9713610136526],[5.409223902411315,52.971477829065144],[5.409155570795867,52.971582306730994],[5.409237485401307,52.97166766039923],[5.409173577751218,52.97177719634129],[5.409127355192847,52.97189008987294],[5.408972662965927,52.971863159747436],[5.408761273471132,52.97192891487215],[5.408619889938216,52.97199296734097],[5.40848457787148,52.97211430564062],[5.408512804531455,52.97227155961927],[5.408426583979439,52.9724198476203],[5.408463854141786,52.97253216882292],[5.408523476853627,52.972691097365924],[5.408572645287054,52.97287193626151],[5.408470108698271,52.97296069383709],[5.408327276496235,52.97290062847517],[5.408068229258341,52.97305624367585],[5.407969899422081,52.97316746564628],[5.407882245452082,52.973251726631446],[5.407809273329412,52.9733775467151],[5.407858397967659,52.97347133639534],[5.407983579825308,52.973570162855445],[5.407964342547948,52.97371562634693],[5.407839245599829,52.97379540081408],[5.40781254353839,52.97389818972319],[5.408011924887175,52.97397509517451],[5.408007567825877,52.974108208670124],[5.407742627609452,52.97409870273911],[5.40769664380323,52.97425653571765],[5.407652048740407,52.97439301701837],[5.407443687018222,52.974503133842525],[5.407597019011487,52.97459633970649],[5.407518218639078,52.97471205091444],[5.407263542239877,52.97475646787635],[5.407320129607968,52.97489125165533],[5.407433445866415,52.9749816516885],[5.40755840160278,52.97506644244756],[5.407448415843509,52.97515969339558],[5.407269797050059,52.975210271040076],[5.407257986739924,52.9753287745074],[5.407204317548226,52.97545346728626],[5.406992892776612,52.975486077956674],[5.406868009553881,52.975560800778595],[5.406848807777376,52.97579444555938],[5.406775814395981,52.97588937038853],[5.406545045299598,52.97584841310888],[5.406345501792343,52.97592370505871],[5.406192289806322,52.976107947150545],[5.406071847121446,52.97623377321386],[5.40601071645783,52.97632757208259],[5.405994482988426,52.976450578109684],[5.406198526253634,52.97654490080505],[5.406252098402865,52.976697658030204],[5.406058600470882,52.976785861502435],[5.40586507552647,52.976813416766205],[5.405766945802334,52.97690272829788],[5.405970965304598,52.97693864121618],[5.405936598660123,52.97706220716591],[5.406158522583446,52.97708463742184],[5.406363939528113,52.977115498904595],[5.406301433081175,52.977263781324126],[5.406139313355844,52.977313231445436],[5.406252898535164,52.977465412954885],[5.406161763479257,52.97758281437111],[5.406051539576797,52.977662584495086],[5.406137911349837,52.97781701671536],[5.406094926045688,52.97794283077887],[5.406016106101434,52.97803664142553],[5.405807662530598,52.97800690296976],[5.405588786266128,52.97805299135628],[5.405466715666397,52.97818218685473],[5.405307370209794,52.97818221131062],[5.405247742554702,52.97800137294826],[5.405112394022125,52.9781024884151],[5.405051274467585,52.97823448706683],[5.404868230616533,52.97831594769749],[5.404875718617154,52.97842378124664],[5.404792475407236,52.978522084747716],[5.404750875927461,52.97862598918662],[5.404636236527208,52.97873384077228],[5.404469449636488,52.978745097976656],[5.404363868548717,52.97883385231812],[5.40422828418975,52.97891587068592],[5.4041704229002,52.97908886350519],[5.404173264883778,52.9791989444711],[5.404112363174945,52.97932925290992],[5.404107996095165,52.97946853973122],[5.404085721262074,52.97961681558683],[5.404008302281285,52.97973364726133],[5.403826641402323,52.97979208300782],[5.403750844427438,52.97990891428165],[5.403513848337352,52.98006564878658],[5.403785128245532,52.98012963780154],[5.403807499413646,52.980230163462416],[5.40357976000956,52.9802616467355],[5.403383215467218,52.980341992764],[5.40332975034971,52.980460500910226],[5.403430986827761,52.98056270506806],[5.403480132514712,52.98071378329852],[5.403475758062016,52.98084127120931],[5.403395320320072,52.98097607536477],[5.403346281660497,52.981110875182],[5.403344928527158,52.981234435717354],[5.403322639064819,52.98135294856833],[5.403204964803833,52.98145630610493],[5.403075421404682,52.98155348242862],[5.402904276492138,52.98177086360165],[5.402806154145655,52.98192813473052],[5.402945998667906,52.981982590779324],[5.402865765068081,52.9820780796367],[5.402755531995784,52.982178631912035],[5.402682757603502,52.98231511473051],[5.402611141659308,52.982404429057155],[5.402508571058061,52.9824948614836],[5.402371567175664,52.982560028931864],[5.402516073510951,52.982657735226155],[5.402590552532127,52.98274646446241],[5.402769236818097,52.982774522741515],[5.402915161116518,52.98291660231531],[5.403028959779197,52.982991280481976],[5.402760281002578,52.98308454800534],[5.402578811364031,52.98309805076542],[5.402373169718627,52.98313683511043],[5.402139601352431,52.98319583195161],[5.401998208323366,52.98336490707995],[5.401978710708428,52.9834744242351],[5.401937111146738,52.98361371590225],[5.401937156492087,52.98374626218106],[5.401984907876651,52.98391924048839],[5.401803197703494,52.983891747037845],[5.401757188117619,52.98406978749913],[5.401734886046326,52.98416583446014],[5.401605341450543,52.98429333749185],[5.401551862907374,52.98440286768649],[5.401460937394142,52.98451688682864],[5.401353735501214,52.98467415773186],[5.401273541560772,52.984914548008156],[5.401599458713621,52.984779716245136],[5.401653165815675,52.98468592077526],[5.401721531255335,52.98456740225396],[5.401989544028168,52.98454041053197],[5.402138459556317,52.98458195294659],[5.402446753157615,52.984648186964],[5.402652216659057,52.984716679936234],[5.40290095029236,52.984781239881954],[5.40291024311853,52.98478396144733],[5.402779366129224,52.98497104450671],[5.402726770296521,52.9850019818584],[5.402715267145499,52.98506268510666],[5.40266884789837,52.98512903607112],[5.402484102429007,52.98499751999639],[5.402396202481767,52.985118288177304],[5.402366456261628,52.98521432718728],[5.402293656536439,52.98529858231639],[5.402323479812718,52.98541933490609],[5.402146206099881,52.98545136601654],[5.402001688648099,52.98534804320216],[5.40188112175024,52.985217758285955],[5.401784288566478,52.98508297731234],[5.401538580973375,52.98502853328766],[5.401371797623424,52.98512627824817],[5.40123482805618,52.98532960715525],[5.401132270260359,52.98548968107],[5.400961077192643,52.98563516974],[5.400809189331939,52.985760993792404],[5.400778053943273,52.98590477676138],[5.400763197958909,52.98601598231744],[5.400702059750055,52.98616594191144],[5.400663481309036,52.98631871170197],[5.40064419793932,52.98641531512334],[5.400563738108909,52.98654282034983],[5.400544476936229,52.98670962443193],[5.400502869745796,52.986846668291285],[5.400346562758148,52.98700394415107],[5.400297292448528,52.987163454264675],[5.400150036590981,52.987266254810926],[5.400114255194795,52.98741902361833],[5.400151587283513,52.98776554475067],[5.400154668240682,52.98795819059659],[5.40019193579808,52.98808848589123],[5.400236637890626,52.98818171271703],[5.400300652651042,52.98827100145266],[5.400482399799576,52.988359719452305],[5.400482727268462,52.98836007895271],[5.400417989213809,52.98858549596942],[5.40020397063306,52.98864001174018],[5.400034364406549,52.98871753629978],[5.399946443072349,52.98881190069481],[5.399885519741453,52.98895736627321],[5.399949542163073,52.98906856357659],[5.399942135098643,52.98919886416192],[5.399820008748304,52.98930166108461],[5.399694850791962,52.98937693365404],[5.39947894682076,52.989470745097414],[5.399365879179557,52.98954321227305],[5.399163492782103,52.98973474646546],[5.399057687234005,52.98995379515981],[5.398972819149448,52.99017508839196],[5.39893421683514,52.99027562973997],[5.398897026270482,52.990421092837416],[5.39878675670879,52.99050142202806],[5.398770496335123,52.9906199241081],[5.398767508321077,52.990750224135944],[5.398694694908184,52.990841216209205],[5.398611195214203,52.99095804459136],[5.39856074640567,52.991149005811494],[5.398495199449663,52.99141185780687],[5.398480333712346,52.99151239668607],[5.398487818352659,52.99165897845705],[5.398471581657888,52.99187240131497],[5.398410432760726,52.99204314473113],[5.398484920963925,52.99213749240357],[5.398636895075803,52.99222678246937],[5.398844029811786,52.99236155487007],[5.39896460079099,52.992467687472505],[5.399092615508709,52.99255978269082],[5.399178787020934,52.99261780677405],[5.398093900717651,52.994551439258075],[5.398702510578422,52.997613200875115],[5.398572718940043,52.99766846938992],[5.398589274480485,52.99780999950342],[5.398745763250517,52.99783074249314],[5.398931546953292,52.99876522174001],[5.398814390434171,52.99890236199732],[5.398929147714668,52.998981536618125],[5.398990299133922,52.99906081547834],[5.399033494934445,52.999278069374625],[5.398191117740295,53.00120678582921],[5.39808955713303,53.0012612960629],[5.398080754884204,53.001443823740985],[5.398082530818616,53.00145539734121],[5.397897019078302,53.00188012686245],[5.397692150648439,53.00180667450636],[5.397476166696078,53.00184208081925],[5.397349524787919,53.00173256867883],[5.397216842430877,53.00165170494413],[5.397060421491052,53.001593307973366],[5.396914501579555,53.00166240591499],[5.396771388996441,53.00176575813243],[5.396773045353617,53.001911216904944],[5.396996495179334,53.00195051269905],[5.397133598104888,53.0020145274967],[5.396915998494396,53.002089247567966],[5.396719332963436,53.0021240848496],[5.396522897606391,53.00219317737604],[5.396448441609702,53.00230775641884],[5.396449863803933,53.00240660423966],[5.396439417717578,53.00252960711295],[5.396595852430159,53.00263573896079],[5.396579578606925,53.00274077036348],[5.396804454156674,53.00287610153188],[5.396949017989284,53.00298167680645],[5.397026567378344,53.00317037975623],[5.397160653597663,53.00324899728951],[5.39728567854822,53.00336805275223],[5.39733343284901,53.003540474842374],[5.397346952847698,53.00364100177653],[5.397439384783524,53.00375950280029],[5.39770149606835,53.00383754243961],[5.397805819907849,53.004026241997146],[5.397908720809496,53.004120030073096],[5.398075401803436,53.0041834749855],[5.398296070281059,53.00424635753558],[5.398343602411493,53.00440585686739],[5.398513522942773,53.00442830605676],[5.398580594660842,53.00456478098087],[5.398710448988539,53.0046109572313],[5.404716012104552,53.01160945513306],[5.404691203613461,53.01160747262123],[5.404594410864809,53.01174003249904],[5.404557231061009,53.011910774069975],[5.404725573814033,53.01196747864142],[5.404926722969193,53.01198260829776],[5.405089244082283,53.01204829962564],[5.405091657911745,53.01204712213351],[5.405602995151082,53.01264287723189],[5.405109097833694,53.013321512573725],[5.404946643379926,53.01342937055972],[5.404837957606288,53.01352598766951],[5.404976517391262,53.013608531436184],[5.405173257248279,53.013643322855785],[5.405332749576761,53.013683736209806],[5.405538361188026,53.01376738317426],[5.405749989266987,53.01377072009679],[5.405930159053244,53.013696556196386],[5.40594705526169,53.01369615800294],[5.406907702703212,53.02024165348347],[5.406684670966793,53.0213559666498],[5.405576630822526,53.021125775889324],[5.405490921683366,53.02104445598349],[5.405329757595078,53.02095629990832],[5.405207681061351,53.020827143532834],[5.405022813367228,53.02085749950632],[5.404891753669858,53.020950749986916],[5.404811703594375,53.02096685601359],[5.403659181322416,53.02072739816296],[5.399009663091758,53.02094362034452],[5.397609232921901,53.02263313785706],[5.397665583383961,53.023434386738025],[5.397610830892583,53.02344469862424],[5.397505127321653,53.02353344528147],[5.397438086311443,53.02363679138679],[5.397274187135308,53.02380248200407],[5.3972041243147,53.02392548969973],[5.397163884467076,53.02411700464696],[5.396946410533519,53.024249010471074],[5.396849634169605,53.02468035029906],[5.396952576267078,53.024752787964196],[5.396914143905344,53.02483726005369],[5.396715549536687,53.02490669412428],[5.396773042782463,53.02507873701606],[5.396723058877909,53.02516167332756],[5.396837901604552,53.025326226255046],[5.396860662841174,53.025340871832384],[5.397595520041087,53.02753954172003],[5.397101202531143,53.02857322580261],[5.397032398596581,53.028565125804874],[5.396814628990783,53.028478652813966],[5.396526996229682,53.02843936209085],[5.39626917926609,53.0284264694713],[5.396061930904332,53.02853712164783],[5.396249890057195,53.028629780887364],[5.396492814805355,53.028695467909586],[5.396618122374734,53.02876060684593],[5.396811916376734,53.02887572993443],[5.396720902957099,53.02906837170724],[5.39667620857479,53.02916891163955],[5.39669276256833,53.02927393057842],[5.396618265746218,53.02941154005028],[5.396681458402747,53.02945094828802],[5.396254679838358,53.03034330756846],[5.400756596151345,53.03151106534211],[5.401994316234788,53.03298463190663],[5.401541137423384,53.035306874451905],[5.401351059207744,53.03528233847704],[5.40107387036321,53.03528629818814],[5.401041073871448,53.03542558590134],[5.401026272859501,53.03575582529783],[5.401007013126791,53.035991711192814],[5.400975634707627,53.03618379174896],[5.400947498171539,53.03635284969989],[5.400938505979662,53.0366241127024],[5.400966330329446,53.03696894940312],[5.400237919125058,53.036907819101366],[5.400167999123992,53.03680673363958],[5.400079918186194,53.036692171294376],[5.400032120265188,53.03653210771723],[5.400212611093639,53.03643493069343],[5.400240743734414,53.03624340777388],[5.400194590301599,53.036150182436494],[5.399991661033645,53.03598452870548],[5.400048396753533,53.03567562693697],[5.400097444731695,53.03533302821864],[5.400183827909412,53.03521620003959],[5.400249461209183,53.03505387771017],[5.400296950111467,53.034937619794626],[5.400389371765585,53.03477978734338],[5.400437070311943,53.03461690983426],[5.400299848871632,53.034519767772174],[5.400332640888535,53.03436026131101],[5.400194004586847,53.03421425353018],[5.400047894341361,53.033996357503156],[5.400053694498033,53.03389975657104],[5.400028261920791,53.03374699611795],[5.399895706069852,53.03368635457896],[5.39973171083732,53.03362065722176],[5.399616836047406,53.033458920230366],[5.399625648248711,53.03331064901765],[5.399496112484226,53.033222491528974],[5.399282736225466,53.03311355751622],[5.399345355282189,53.03299504266148],[5.399183000573382,53.03297259407972],[5.399023452184585,53.03296474739518],[5.398919142772435,53.03310236158671],[5.398585118782777,53.03301421422902],[5.398610477263627,53.03290919162459],[5.398893686476009,53.032846261337845],[5.398811666583824,53.032722710978966],[5.398747585967537,53.03262330462197],[5.398537232249138,53.03248291745814],[5.398413594517564,53.032641308614664],[5.398103577051208,53.032619439019335],[5.397787503198963,53.032581834187845],[5.397568318725775,53.03252456716929],[5.397517735723925,53.03238079466504],[5.397353742350083,53.03228702132938],[5.397116621060909,53.03220392047026],[5.396928893057586,53.032219095607665],[5.396721580165027,53.03211015649382],[5.396384778602458,53.032079855334345],[5.396213340960072,53.03201416269961],[5.396073118448715,53.03194845802109],[5.395886783320322,53.03191983318723],[5.395606589304981,53.03192322339571],[5.395315929176236,53.03199063938729],[5.395104209577661,53.03196762260021],[5.394920903738257,53.03195415597472],[5.39477185569997,53.03203672925462],[5.394627228191355,53.032089532092115],[5.394355897840931,53.032152451119295],[5.394092242252428,53.03220638364103],[5.393995369981842,53.03233050484117],[5.393947648237654,53.032478777494255],[5.393850779186194,53.03262986568421],[5.393950725421809,53.0328005954477],[5.394035532260115,53.032910103619585],[5.393770286523499,53.03322632040774],[5.393521312030413,53.033313948131294],[5.393321697793779,53.033330807878265],[5.39322784117001,53.03341449086719],[5.39312234249873,53.03349761729978],[5.392880346594484,53.033517847834176],[5.392935566511057,53.033659941824595],[5.393253089542203,53.0340137518908],[5.393411259376181,53.03415639731461],[5.393506547164023,53.034266471325985],[5.39375858983212,53.03441528474592],[5.393974760643776,53.03451805482031],[5.393862967377055,53.034587703423334],[5.393798924748149,53.03467756770416],[5.393854149699237,53.034828081040885],[5.393863025191165,53.03495613185127],[5.393606584972422,53.03503252754988],[5.393520183146234,53.03514036510884],[5.393350149584062,53.03514317795385],[5.393172887290493,53.03515778910964],[5.393137042577902,53.03532010648596],[5.393172932049364,53.03547511403901],[5.393052062199119,53.035587445945445],[5.392886688273383,53.03567057511757],[5.392792827844278,53.03576436715409],[5.39265866911382,53.035845247808176],[5.392488644211502,53.035939609211574],[5.392306727473311,53.035958155625],[5.392320247581679,53.03606598784769],[5.392339594121972,53.03616146364925],[5.392239688201911,53.03633332646552],[5.392150254660828,53.036452395692145],[5.391583843528333,53.03729935395615],[5.391434780362692,53.0374762678965],[5.391293170005932,53.03766105313073],[5.39109658594612,53.03794973693881],[5.391041394745212,53.038105305123494],[5.390832699202637,53.03836198034109],[5.390685021595971,53.03844061289441],[5.390561335310631,53.03856192858742],[5.390552494441951,53.03875119284307],[5.390497300991759,53.03891575606018],[5.390366157248911,53.03902920855343],[5.39033857020671,53.03914715102329],[5.388785540186486,53.04075848963505],[5.38864706203803,53.0407584915742],[5.388314629133058,53.040800055994815],[5.388268502880083,53.04090845519481],[5.388398261721403,53.0409876387593],[5.388220751836797,53.041071327541],[5.38821190199585,53.04129653584181],[5.388092629862261,53.041466714483356],[5.388085175637933,53.04148510880296],[5.387857540131002,53.04172127277767],[5.38772572432462,53.04175932066846],[5.387570797411314,53.04178403280395],[5.387400737951608,53.04184413208776],[5.387238133082041,53.0419744301996],[5.387251641872245,53.042112024585926],[5.387169638360019,53.04224906159423],[5.386990719482554,53.04242822544524],[5.386740275890768,53.04271184220855],[5.386527104761559,53.0428983019301],[5.386297395724054,53.04313362679294],[5.386103558775289,53.04335378351472],[5.385912747897518,53.043526196989106],[5.385608480503417,53.043753657023615],[5.385244177257157,53.04443230442934],[5.384647822692264,53.04505090113657],[5.378366497157216,53.04357531106381],[5.375994494655052,53.04853652627602],[5.372929946799336,53.05393230564857],[5.372700127856485,53.054100766043234],[5.37250035217903,53.05429057109958],[5.372497264092646,53.05447141403804],[5.372568770419599,53.05458094408925],[5.372705981898226,53.054710134714576],[5.379749895852207,53.05466302826714],[5.380640320426741,53.05461927225959],[5.381029483824901,53.05466254231063],[5.381235239535433,53.05476869504313],[5.381390427444855,53.054837787156934],[5.381599211329494,53.05495292522489],[5.385068173248012,53.05491596533333],[5.385227801094819,53.05489069954716],[5.389907833419416,53.05486540116981],[5.392082496788436,53.05481871865637],[5.393782889578724,53.05479966571143],[5.393948169184125,53.05480345716012],[5.39395201586862,53.0547977689142],[5.395153186715876,53.054784286327795],[5.397069657449441,53.054783584027156],[5.398228525705413,53.05475483420196],[5.399217276013632,53.05470531428544],[5.399500618669114,53.05461542548277],[5.399855466590624,53.054401970280374],[5.400332686205112,53.05415726517269],[5.400972581946671,53.05429064345444],[5.401819939593915,53.05294180529453],[5.402738938213673,53.051651350606825],[5.404254033968978,53.05168989028378],[5.403821886316847,53.0525503623612],[5.403109468921997,53.05362878087331],[5.402914273326579,53.05386188599213],[5.402574402241547,53.05419778288777],[5.402428168553301,53.05448535373824],[5.402270220382206,53.05463364283258],[5.401864534021765,53.054698276548855],[5.40161847269123,53.05476514433066],[5.401388979437019,53.05491793430295],[5.401181674829727,53.055201575020426],[5.400777721882866,53.055630704089886],[5.400343730958206,53.05613396881407],[5.399732409950193,53.05674677258147],[5.399160016897146,53.057473008320805],[5.39873345479594,53.05800771788855],[5.398232539903436,53.05858511569185],[5.397586889466615,53.059182185836896],[5.397005278034251,53.05961805630188],[5.396307122090077,53.06001180628126],[5.395701686426876,53.06032805103654],[5.395166203975929,53.06083186106708],[5.394456389598263,53.06147440480704],[5.393863549960769,53.062142341749954],[5.389922006495282,53.06483198713767],[5.39011216032807,53.07515375299799],[5.390056984390133,53.075195610910136],[5.389770475310112,53.07554662669935],[5.38976517649313,53.07576289188383],[5.379057935621637,53.08682935192016],[5.374699735350569,53.08699971431363],[5.351099000067991,53.0737227318441],[5.343207516121188,53.07218350427719],[5.342718828832681,53.068579953543285],[5.340645341293785,53.06835451863276],[5.339374460098038,53.070888061477284],[5.329245853284204,53.06948178999145],[5.33024826044235,53.06732563745677],[5.328323170534328,53.06777400706647],[5.327365390734668,53.06994813795156],[5.296164197087584,53.065094065536705],[5.248892642296695,53.04078659032344],[5.204574514213316,53.017686873945664],[5.169034605826976,52.99981681544833],[5.166582545929431,53.00163651457519],[5.20698443348495,53.022282432414585],[5.252083195229219,53.04560675249044],[5.292952260110652,53.06723024712083],[5.326390887671756,53.07334434098204],[5.329615114114337,53.07229457375679],[5.337655557879875,53.07364605390074],[5.338608735316843,53.075209998463286],[5.344814513984283,53.07668604324368],[5.35188572943909,53.078746108751105],[5.3713553743588,53.090063518668046],[5.378243730381382,53.094451489765795],[5.378155473659252,53.09461108167872],[5.378504124999333,53.09485990838217],[5.378860950543614,53.095081210964956],[5.379392226988902,53.095486168475034],[5.379831139208365,53.09587708197546],[5.380165330604925,53.09630617781068],[5.380622193196333,53.09686220506331],[5.380877457108418,53.09718478482085],[5.381705748006679,53.09888406398399],[5.381751846072181,53.09903965688239],[5.381844411275385,53.09938617440027],[5.38201763680157,53.10017076558952],[5.382018995609922,53.100561085303355],[5.381987669215261,53.1011036061525],[5.381866547656842,53.10155121436113],[5.381842702882187,53.101933670214116],[5.381953003917761,53.102353764630855],[5.382738294814905,53.10425599620884],[5.382860721429748,53.104813681210416],[5.38272911876303,53.10509055817614],[5.382526112320357,53.10536461915318],[5.382114055079507,53.10568023138516],[5.379640968245345,53.10725768000354],[5.379505119526173,53.10757442292494],[5.37964086823288,53.107844007232195],[5.385680404623129,53.110076340713036],[5.38880507723401,53.11140598964176],[5.39921378021333,53.11552043206603],[5.399216006220477,53.115521752910325],[5.402860313074247,53.11856460309396],[5.404998567748872,53.1211318211508],[5.405279730013896,53.12153052436942],[5.406841262921342,53.126418000358676],[5.407899322934362,53.128228451149425],[5.409140943659688,53.1333652979767],[5.411348149119442,53.1437332987111],[5.411419754104779,53.14464480788375],[5.411846625144804,53.14873379237501],[5.413069284500066,53.156256835210556],[5.415819083139572,53.16168357667432],[5.415950904061519,53.16212833712879],[5.416717305123984,53.165760060877],[5.416777347520374,53.166099812797874],[5.416803130357986,53.16656313544918],[5.41664655645432,53.16719048317455],[5.416546806505798,53.16789420377841],[5.416337619509506,53.168810201945625],[5.414871519769124,53.16924413719544],[5.410191958844751,53.17094342541542],[5.407605412914192,53.17204913489646],[5.411100843552497,53.174577689756305],[5.411007960583677,53.17528895958647],[5.411248673667252,53.17531923782007],[5.411495446121994,53.17532649313626],[5.411473099560696,53.175479811181575],[5.411259308640173,53.1755360149667],[5.411112809878592,53.175577046095334],[5.411014008829597,53.17565175476982],[5.411040947737637,53.17576575933521],[5.411200596777774,53.17583816956538],[5.411171451804875,53.17638237418601],[5.411549818065697,53.176423290081544],[5.411531933853242,53.17621774658882],[5.412454725756602,53.1765354225549],[5.412363656551983,53.17666124086204],[5.412553679570645,53.176720730658495],[5.412810990068694,53.17675324881556],[5.412943930891175,53.17669650273729],[5.414562601829984,53.177279086839235],[5.414469900063689,53.177393108966854],[5.414921728386126,53.17754857377082],[5.415409157755259,53.177455233173205],[5.41666298184567,53.17788961095589],[5.416874710826955,53.17787326762407],[5.417208030868373,53.17797820863647],[5.418136720590511,53.17827617826843],[5.419465145744818,53.17869759509855],[5.41940051013674,53.178827338658515],[5.419550337176308,53.178872792470486],[5.420311373054556,53.179006802618],[5.421053659717373,53.17906837058198],[5.422006348843547,53.179204004569534],[5.422524082889126,53.17930887687259],[5.422893606098821,53.17935649889427],[5.423110715874826,53.179420061059176],[5.417660427937778,53.17990944357577],[5.418006643340775,53.18298244559352],[5.421194425122757,53.18508421967539],[5.424455963733958,53.185622384607335],[5.427257156372836,53.18972791034293],[5.427831849747268,53.1908337387116],[5.426150093003659,53.1910474823569],[5.426289191422363,53.191317005615396],[5.426332982382297,53.191398418650394],[5.428612322364806,53.1956298736384],[5.430035912304047,53.19777693076033],[5.430564957428788,53.19865283578687],[5.431857830909771,53.200146214748294],[5.432873771802602,53.2014756984575],[5.433390664272659,53.20204496130825],[5.43399193152559,53.203002815654465],[5.436782170998367,53.20760848894509],[5.436900282530014,53.20781018386547],[5.437063017255689,53.208405275402946],[5.437878178046862,53.20903468641736],[5.438153633077929,53.20929719927241],[5.438531233595476,53.209613212883],[5.43891643708122,53.210024702864295],[5.439557784080518,53.21066295602124],[5.440437462327893,53.2114869928759],[5.441222574351016,53.21221616046753],[5.441973518190846,53.21291724930492],[5.442809674814647,53.21365312206508],[5.443424086200784,53.214178489870086],[5.443866389655451,53.214722464282985],[5.444322331198356,53.215314736410875],[5.44488179683359,53.21617314518979],[5.44581716797034,53.21719536249921],[5.446818517863568,53.2180366959458],[5.447555778113008,53.21867542296964],[5.448464108142921,53.219359551644956],[5.449117473556723,53.21986352908419],[5.450133223585897,53.22038134755099],[5.45138175394155,53.22121746265053],[5.452032123599332,53.221709070116155],[5.452820529846452,53.22220733719864],[5.453514182270305,53.22253155753774],[5.453643446852633,53.22257794109025],[5.46081675377611,53.226489905942444],[5.47081447174594,53.2318926214654],[5.47267724057062,53.234838550161726],[5.481716839230943,53.23890218715613],[5.481887733091868,53.238990361580285],[5.482056189235375,53.239331541754304],[5.482299785754709,53.23974468081774],[5.482772274150626,53.24005261474118],[5.483502446524704,53.240363718623804],[5.484416881905698,53.240703305600654],[5.485091310847655,53.24088189986203],[5.48570329359652,53.24095884442486],[5.485855563675861,53.24103739614896],[5.492546013641407,53.24279970319332],[5.492735387874707,53.24288307423579],[5.494371976172364,53.24452543298278],[5.498268394001964,53.245608912410454],[5.500132057262553,53.24638126012759],[5.500653697386692,53.24652228886244],[5.501238236092896,53.24663798829103],[5.501947287948074,53.24683554919336],[5.502932612458235,53.24723220849392],[5.503173076660913,53.24734222790124],[5.506250003508622,53.24965391084492],[5.514993727740405,53.25287967366436],[5.516479391555589,53.25367778606795],[5.523752830756755,53.255817246082835],[5.530208338749037,53.259610561493346],[5.53619921249349,53.26282305263743],[5.538536271056419,53.26457209503424],[5.539355034221381,53.26513714069347],[5.539933499121668,53.265553103790715],[5.542054173524556,53.26679879132306],[5.546992104400602,53.26991194141052],[5.548851522808769,53.270950067942806],[5.549991384581939,53.27151180361246],[5.551012287587437,53.271946205573784],[5.552872252781254,53.27271190363087],[5.553777776651392,53.27309533256316],[5.554522653990244,53.27347786466243],[5.555230640483326,53.27400701341282],[5.555925297757575,53.27531621565981],[5.557428341142193,53.278230415133585],[5.561785272976799,53.28461218614791],[5.564345642849097,53.28631789850563],[5.566294049061808,53.28752803002405],[5.568387024409246,53.28893390873967],[5.579046481576921,53.295846722831044],[5.579885276307584,53.296289596645416],[5.581173258201026,53.296876061399374],[5.582387810198717,53.29748789850531],[5.583876734901539,53.298390183178725],[5.58483273083065,53.2988676387033],[5.586439600401425,53.29961076499436],[5.58726695468829,53.300132226961985],[5.588395390094085,53.300582410681166],[5.589579110479534,53.30097297183435],[5.594876730370544,53.30249423369943],[5.595762225032504,53.30289029921534],[5.59644647285872,53.303250767542124],[5.597460883830483,53.30364154620672],[5.598320367063531,53.303932617568115],[5.59923357002496,53.30418259738157],[5.600349183245163,53.30441087095621],[5.601494775769623,53.30463234205689],[5.602944093061433,53.30498466667741],[5.612401027436023,53.3079352691718],[5.61688026673574,53.309308833659166],[5.617891042708191,53.30952815960383],[5.618994102526308,53.30960128789644],[5.620378848731431,53.30957446446138],[5.622698044194692,53.30953482511599],[5.623481678537328,53.3102035441656],[5.628463258253348,53.31033740706149],[5.630932948332678,53.31197672981399],[5.634128163422358,53.31189832209882],[5.642598163996765,53.31231389295596],[5.644972259348375,53.31262693765787],[5.646531120224146,53.31288584503369],[5.647645360126741,53.313041234278124],[5.64899746549712,53.313335933550015],[5.657339368651517,53.315232042073944],[5.658730933481447,53.316292951990164],[5.674697405881048,53.318771686956026],[5.675606383991981,53.32006338906202],[5.677173933058844,53.32109292342674],[5.683409791615077,53.32229072501347],[5.686091480773734,53.32380259590074],[5.68964599615347,53.32348820285759],[5.69463854303476,53.32491317702322],[5.701562788378042,53.3277525786286],[5.705579318792022,53.32899994176678],[5.707585885100587,53.32837462632846],[5.720272842613289,53.3328327662806],[5.738620804775374,53.33898933181123],[5.766759151954701,53.34804177026667],[5.767743410311294,53.3489731225029],[5.772275181934094,53.35030647776375],[5.773472663345377,53.35155158263888],[5.778091313436415,53.352480104317294],[5.780264328043487,53.35363211358346],[5.790457112749183,53.35638377970939],[5.792095478847935,53.35812140527783],[5.798723159747831,53.35855715255464],[5.799771355141195,53.35979352012486],[5.819357122402464,53.36426226252044],[5.827802297811692,53.368966821561344],[5.834352046506308,53.37038028110526],[5.838136532161791,53.370240359807106],[5.85044683590205,53.374982687018345],[5.853195463939944,53.37489120395669],[5.868617528375943,53.380814608015925],[5.887196928405631,53.38647137148569],[5.888749628995677,53.38558436130173],[5.891594604573088,53.385967816201294],[5.893226460398573,53.38543083833853],[5.89814475460703,53.38701839929625],[5.901571412242694,53.387012784266226],[5.904693709882447,53.38669389907828],[5.911782358288687,53.388729794434695],[5.922175574041667,53.3857009490642],[5.948057466625422,53.39160317342004],[5.962678255152382,53.394634032794414],[5.962752810139243,53.39458875021686],[5.969983025796361,53.39567710239206],[5.971935666280712,53.39777016645802],[5.974751728054188,53.39592347017133],[5.987564500099068,53.397351775331366],[6.004649448746257,53.40099419432649],[6.014423573206385,53.402341608063765],[6.015398267407411,53.40257556701685],[6.017227604172048,53.40275132473194],[6.017336200636323,53.4027429571828],[6.019789842440766,53.40308100359058],[6.019939750453055,53.403082461620286],[6.027684871331831,53.4031830121161],[6.039921876449163,53.40504909415135],[6.042000889819991,53.404327968734364],[6.053315417916964,53.4051038716992],[6.063816005612289,53.40641206351864],[6.068347392237326,53.40694583698579],[6.069158456450431,53.406977185631135],[6.069595796253422,53.406929717781395],[6.069874244234372,53.40698548264635],[6.076271564782006,53.40552935975613],[6.081635624896248,53.407151818198976],[6.08519814064193,53.405226337483896],[6.087896714028862,53.40381794206313],[6.091806286556848,53.407506032647106],[6.110764912347328,53.40465304973122],[6.129928238526599,53.40247868824506],[6.132772211841239,53.40200048156948],[6.13375665378086,53.40215848695621],[6.134419688049182,53.40224422564215],[6.136198962948306,53.4026448282347],[6.137258525698597,53.40294539294278],[6.137380049855235,53.40301651803252],[6.137622001468876,53.403095877791316],[6.137953686588238,53.40314772107072],[6.138966607872102,53.40346486995603],[6.139178026104391,53.40351746100375],[6.143394933188287,53.40476695633983],[6.14620639407348,53.40560286517449],[6.151345639965313,53.407115822484315],[6.155321399038848,53.408294549372876],[6.157891458503548,53.409059844090265],[6.158617208614276,53.40927982821538],[6.159327608357739,53.40948193527172],[6.160960387932295,53.40996564339229],[6.163077122396207,53.410598961164524],[6.164513536854333,53.41102997460892],[6.166191706742834,53.411522304081394],[6.167189669362469,53.41182134247225],[6.168565528458631,53.41222574424499],[6.16994141262921,53.412630130193534],[6.171393001095086,53.41306096321588],[6.172799341762421,53.413483088954294],[6.17338908442998,53.41365894483914],[6.175263769239979,53.41419479139856],[6.175597058773103,53.414285077317516],[6.176170147154631,53.41441348755043],[6.176532370378267,53.41448299552928],[6.177150731100168,53.41457777781146],[6.177543737104378,53.41462076288972],[6.177966867145214,53.41465799576598],[6.178765518297363,53.41471304780125],[6.179394492952949,53.414733754794824],[6.17984562528351,53.414730785254896],[6.180927678162311,53.41468771437554],[6.181302957133962,53.4146492984497],[6.182263374427538,53.414535135334376],[6.182804021191632,53.41444043422409],[6.183477096327526,53.41429349503261]]],[[[5.42560581143794,53.42802695790469],[5.42612954271192,53.42207960525014],[5.426987450212477,53.42175705309134],[5.428041976148664,53.421289897072676],[5.430120041230089,53.42052680184462],[5.428867414820789,53.41831500490021],[5.429093281591621,53.41755511652431],[5.428623238460464,53.41629491990639],[5.427801544087305,53.414964811559905],[5.426987353446496,53.41354639055099],[5.427470225294061,53.413323124833],[5.427358239625009,53.41276816292448],[5.427175334815007,53.412499601267996],[5.425976190987969,53.41208146749119],[5.425095231453719,53.41168600741767],[5.424490794249123,53.41133362792343],[5.424181606946441,53.41121620997628],[5.423759879208527,53.41093931564131],[5.423492605669282,53.41053645771464],[5.42353936485007,53.410368173739364],[5.423812065491049,53.40950450277749],[5.423967834374761,53.408944288543864],[5.424123745970674,53.40857079933633],[5.424201594388083,53.408244019734724],[5.424279345676178,53.40782386813378],[5.422912125763632,53.40768424398865],[5.421662300689662,53.40780130623046],[5.421193457038816,53.40766140089786],[5.420607579915435,53.407684908530044],[5.419943645044177,53.4078017881639],[5.418693739729766,53.40782546612206],[5.417795387573547,53.40787237568394],[5.417131441428534,53.40798924925535],[5.416233052447355,53.40798947042697],[5.414826910048124,53.40803647988203],[5.413811309930618,53.408013376103824],[5.412639399887358,53.40782690555204],[5.411272321023088,53.40789720806067],[5.411271610638901,53.40663683508247],[5.408888877980762,53.40638055488429],[5.408927703779582,53.405913743676535],[5.407873121085786,53.40591393076732],[5.405568770491861,53.406147709288014],[5.400686267209051,53.40568155745711],[5.399358181223812,53.40528491561864],[5.396624095847913,53.40516845881752],[5.39724877506701,53.40414144419632],[5.394933996687627,53.40371473368425],[5.388735841603709,53.403037235765574],[5.386498634694812,53.402722664488245],[5.384670106490276,53.40229215470864],[5.383395705542718,53.40189475381612],[5.382768662133218,53.40161974806781],[5.381892173655783,53.4010085469374],[5.38061389978583,53.400899345163246],[5.380029608027831,53.400484593228654],[5.378860921310912,53.40037538769732],[5.378020944831563,53.400244362862956],[5.377181014250885,53.399938708949264],[5.375464750741915,53.39897816082443],[5.374839541458082,53.398234663802754],[5.374150318190803,53.39793031565247],[5.373712230586531,53.39742823176781],[5.369184486922281,53.39579059860632],[5.368600346732187,53.395441272974544],[5.367906555839024,53.39533202414678],[5.364584668208321,53.3929959266662],[5.364037067335889,53.39273389247055],[5.357001982341679,53.38788075243641],[5.356597269421818,53.38768702406306],[5.344577497821557,53.38315733920282],[5.343646782571624,53.38279394927328],[5.343080155480126,53.382696929887544],[5.342472554375765,53.38305976435683],[5.33891153258391,53.38187242268201],[5.337009293805668,53.38158120553707],[5.334783171034018,53.381362426295794],[5.332758937503,53.38155515788351],[5.327539949397203,53.379447953827736],[5.326789483191804,53.37887444247788],[5.326323381677561,53.37873479603774],[5.322204995233406,53.37834539201535],[5.316451548531681,53.379860196479854],[5.313548747448976,53.380632969191005],[5.313082456877127,53.380617193293766],[5.312512889309398,53.38039997908885],[5.311892110158214,53.37984194544627],[5.309694608552793,53.37764840803492],[5.309026789733958,53.37724500635611],[5.305736209919864,53.37594178332641],[5.30191460502257,53.3756578273574],[5.300649857414247,53.375903071304776],[5.298856569287497,53.37581386081874],[5.294503951328049,53.37639079353621],[5.29557347000951,53.37118739892074],[5.295309637140255,53.37083556730293],[5.294751528888285,53.370624152858014],[5.293958059175417,53.370500472807734],[5.293083097999072,53.370463735726055],[5.289017787947913,53.37114707837794],[5.284871543123574,53.37161833733765],[5.284152655648724,53.37177373265462],[5.277960046937313,53.37349022189947],[5.275811076685583,53.373565355542155],[5.275144983960466,53.37355188962941],[5.268274457560723,53.371527796031],[5.267716118651628,53.371411596667386],[5.267116081012673,53.371439366225644],[5.260950440105266,53.37276068894131],[5.259580309310622,53.3730322117161],[5.258419339708263,53.37273319334188],[5.256925565824529,53.37271917855183],[5.254770673199819,53.37179866229125],[5.254275277956556,53.370979207805384],[5.253964540229841,53.37082997292435],[5.253156590105154,53.37045684239528],[5.253034476254911,53.37014434035533],[5.252992249576718,53.369935533916525],[5.252722901494791,53.36982356692596],[5.252437400353362,53.36965054551955],[5.250102169003967,53.36877184657722],[5.243737697971875,53.366263613766435],[5.243359648897991,53.36611221352103],[5.243251887407092,53.36599347256232],[5.242106678797622,53.366060061730984],[5.235269668977984,53.36825140703622],[5.234738079901034,53.36849226353193],[5.234070561027161,53.36802217057853],[5.233967093583386,53.367918521672976],[5.233955948426144,53.367808098733654],[5.234304343646595,53.36716678119412],[5.234293100615195,53.36708396032828],[5.233579697167494,53.36655170083576],[5.233614455674766,53.36651034163897],[5.2330013344186,53.36605538859452],[5.231230766919773,53.3660617521326],[5.230250729945493,53.36593568525736],[5.22954864693012,53.365879536866295],[5.227893366176213,53.365844626040634],[5.226224342187768,53.36582603591163],[5.224665030788957,53.36574211395002],[5.223871785289453,53.365675575436875],[5.222039694781335,53.36537029691604],[5.221902502431368,53.365421188694164],[5.221807272626791,53.36532905984356],[5.221094361889383,53.36516841327236],[5.221485632953373,53.3644139698501],[5.22112755490928,53.364207043619814],[5.220650510375943,53.363748126249696],[5.218938190001287,53.362029311248854],[5.21816142176774,53.362047586205904],[5.21771056803777,53.36148554443935],[5.217745966604968,53.36071124790217],[5.217231786699591,53.35980066279562],[5.216845978987839,53.35916128467258],[5.216557128260185,53.35856074987534],[5.217335116402017,53.35821338901584],[5.217630541617912,53.357149076770604],[5.217437461339736,53.35687778615103],[5.217145776308183,53.35699352523437],[5.216275180792049,53.35621794493437],[5.215465241106735,53.356468457203434],[5.215192889545055,53.357169393556894],[5.213048955422217,53.35637685124878],[5.21228883591265,53.356295458453324],[5.212087000164598,53.35642897167139],[5.211078309029931,53.356976114656234],[5.210114483552077,53.35748316940079],[5.209558466233371,53.35782599586298],[5.209486627424342,53.357870285064614],[5.209321753640155,53.35792337722669],[5.208417092998752,53.35849182062625],[5.206883854445381,53.3595241534307],[5.206732270037286,53.35980881760939],[5.206228706528096,53.36034786102186],[5.205851405012278,53.36066217727273],[5.205297809929895,53.36117115803168],[5.204947199237839,53.36139681000769],[5.204035064333989,53.362413646716426],[5.203436408014753,53.36309155108586],[5.203105811672649,53.36401995369223],[5.20291422660294,53.36474447180477],[5.202146727349788,53.3664981220731],[5.202158746394713,53.36992864182486],[5.200682170305321,53.37028179637135],[5.199874177014137,53.370296652540475],[5.199852424071064,53.3691047100202],[5.199719175543024,53.36878236014363],[5.199940078417357,53.367526371231655],[5.200482918703912,53.36654469323083],[5.200729675769694,53.3655303426533],[5.200002822518381,53.36548089286679],[5.200467588475346,53.36387092567984],[5.201335719202106,53.362374333620075],[5.201958409741671,53.36158604895543],[5.202023378954707,53.3614868186878],[5.201769181542788,53.36147121561872],[5.20151511616304,53.361425188491566],[5.201095774281382,53.36132181440904],[5.200956324167705,53.361287437103215],[5.200651073044486,53.361317379294235],[5.200600295394455,53.36130209774413],[5.200473347602387,53.36125626579215],[5.200168374696608,53.36122537771484],[5.199939659780367,53.3611945984921],[5.19980428183748,53.36116377561841],[5.198771638032478,53.36082772873707],[5.198390583240622,53.36075108189514],[5.197881866528324,53.36079590971011],[5.197500061185734,53.36088657056111],[5.196762578652925,53.36091582968117],[5.195923041315647,53.361020973005324],[5.195541704227837,53.3610051547353],[5.192938146222654,53.36171585648936],[5.190866243896412,53.362576100669635],[5.190198436265683,53.363555312987245],[5.189962182083091,53.36402173906593],[5.189406036059966,53.36440453585111],[5.18732048011795,53.36663944482955],[5.187176994291846,53.36719146711711],[5.186493525613433,53.367651939697836],[5.185765830563071,53.36854286443034],[5.184830321614302,53.37014342877838],[5.184394044230589,53.370975891585104],[5.183669381875538,53.371836599691385],[5.182741889977516,53.372552344182445],[5.18211433186111,53.37320481678333],[5.18077702326802,53.37390030448171],[5.180769724444747,53.3754230300474],[5.180480625450036,53.375594921947744],[5.176284563383648,53.37615898924067],[5.178926833595439,53.37861433924106],[5.181921723931124,53.38086016790181],[5.188068943743887,53.385281836057224],[5.193327532274137,53.38790454090134],[5.202758588646804,53.391910553875725],[5.207281545194699,53.39343451440532],[5.2111430019025,53.39446719704475],[5.219566816687741,53.39718669115174],[5.221791083152224,53.39760988555286],[5.230529894330752,53.39997893964287],[5.23693183004983,53.40078065588197],[5.241930156253589,53.40095016774708],[5.249661043140311,53.40151940703076],[5.251066042219829,53.40182442497019],[5.25269360147788,53.40140788421197],[5.256182491128216,53.4017367319187],[5.274686590584822,53.40474297226923],[5.277771235076681,53.40509591958431],[5.282378395093006,53.40577687713245],[5.285082567145657,53.40629666869232],[5.286125751977773,53.40673702916743],[5.286633466423013,53.40676078755283],[5.287141723772083,53.40655115083461],[5.295965766041381,53.40812194495003],[5.296316863241321,53.40833226939282],[5.296809806681492,53.40826991598509],[5.300378037556362,53.40889542798953],[5.306523276829157,53.41001245352912],[5.322676294312853,53.412713853810835],[5.334120663961688,53.4140031413349],[5.336347339934629,53.414074118827905],[5.339205786680952,53.41449413902101],[5.342138543809257,53.415036484429244],[5.342948455931345,53.415080342450146],[5.35478402631627,53.417324746262885],[5.357948315495394,53.41774566944548],[5.360721998124062,53.418143090440665],[5.36583963254851,53.419124381338555],[5.372988989467458,53.420782578137256],[5.375098826298131,53.42099286414644],[5.377208668524792,53.42127313245228],[5.387406589337204,53.42318741647269],[5.388149020852888,53.42358419441482],[5.388673471326073,53.42346388041134],[5.395221718708545,53.4246342290459],[5.411361727821737,53.4278296308627],[5.419139530355401,53.429438268523946],[5.421470456580914,53.42998187478665],[5.422529216576977,53.430498710300554],[5.42392454880803,53.43078559147555],[5.42329705264318,53.42828625113066],[5.42560581143794,53.42802695790469]]],[[[5.90349098322263,53.46675494607576],[5.903385789477136,53.46529186909576],[5.904349471699511,53.46530515832212],[5.905327006469443,53.46525739912215],[5.906367249261603,53.46556653119043],[5.90943284471701,53.465553281903134],[5.909957623155453,53.46549002531563],[5.910658231744951,53.46547827706765],[5.911823081166461,53.465229287009244],[5.912402096199026,53.46482603635127],[5.913620618789506,53.46441944175667],[5.914101789433799,53.46414782647866],[5.916208343596205,53.46331970714798],[5.916597534898925,53.462917269221364],[5.917786624873856,53.4622761016972],[5.91858231929004,53.46145977987615],[5.918910078338386,53.46105153121287],[5.919548540370127,53.460743807277154],[5.919885545445682,53.46048967882742],[5.920111413251963,53.460227334356],[5.919711468273944,53.45975868640995],[5.91856597049105,53.45919749446098],[5.916544657638791,53.45863142798779],[5.913690164455566,53.45796444075114],[5.912902006853613,53.45796788284658],[5.912054085660844,53.45785832513197],[5.910345672504746,53.45780477563478],[5.908389663688739,53.4576469247157],[5.906988911352099,53.457423069674604],[5.906106685062301,53.457300419062584],[5.905652227715803,53.4571368552165],[5.905111471536845,53.4570782004688],[5.903790359889936,53.45645664234844],[5.903074367252525,53.45639002312179],[5.902706881384407,53.456173801083835],[5.902136117248408,53.45604557424773],[5.90124196814021,53.4557270667405],[5.90042257902234,53.455556324209034],[5.89987872698924,53.45523631359518],[5.899351667735862,53.45509917229219],[5.898925510882046,53.45485705983418],[5.898354567997361,53.45471139385347],[5.897563152603164,53.454435972942704],[5.896791210349719,53.454569918701935],[5.896324401342836,53.454589314225004],[5.89522868796861,53.45449811595782],[5.894220141366697,53.45437168827518],[5.893254036684436,53.45413182735673],[5.892654551656825,53.45403851948683],[5.89199442769055,53.453753805241945],[5.890970796533156,53.4535838632934],[5.889876445688523,53.45360585724854],[5.888740664441533,53.453828378014556],[5.88737490377375,53.454356747571225],[5.886862222076673,53.45471054638728],[5.885962597415817,53.455904547358976],[5.885518245962007,53.45660331269897],[5.885164391139392,53.45734149648123],[5.885023588092082,53.457999200990166],[5.884994382893995,53.458610450342256],[5.885330069060656,53.45925239331095],[5.885655725961705,53.45964305898557],[5.886008568521511,53.45985939367374],[5.886157153245679,53.460085270323894],[5.885485830645881,53.460096764259276],[5.872862649159318,53.460374817767786],[5.871580040548189,53.460545502330284],[5.858300055416562,53.46085079655142],[5.857379517541521,53.460767275165836],[5.846360540807847,53.4609404550808],[5.842595467079922,53.46103314957931],[5.836418628446873,53.460821134870116],[5.833877637737626,53.45791223224425],[5.835494601565463,53.45783319619603],[5.836735378019586,53.457868356926106],[5.837497884488251,53.45795102770241],[5.83843336845179,53.45807819445519],[5.839323430107772,53.45804871984457],[5.839847408946324,53.45790736889432],[5.840428827599055,53.45767868219676],[5.840804721229575,53.45733752079572],[5.841826953190853,53.45738594096818],[5.842514325580709,53.45751401267608],[5.842822125733671,53.45763481007802],[5.843345980228467,53.4574847290655],[5.843620238457286,53.45719621755687],[5.843808780835637,53.45708224799196],[5.845194586796824,53.45700730003198],[5.845951388280382,53.4568040562912],[5.846950439359145,53.456051057442785],[5.847807883711501,53.45570803486499],[5.848124672680761,53.45530608648771],[5.848459505248678,53.45522640210527],[5.848817614359368,53.45522410476847],[5.849231893107276,53.45511890244348],[5.849650637410029,53.45469914582919],[5.849677195889194,53.454455121005076],[5.849996290965537,53.454270952806134],[5.850329326483183,53.454025749868364],[5.850327258307494,53.4538341093755],[5.850120308512694,53.45359097297713],[5.849491456440439,53.45347143570416],[5.848632088141671,53.45363153588921],[5.848237772345156,53.45360690859396],[5.847885919478577,53.45346015614746],[5.847506471999195,53.453461606829364],[5.846678162615973,53.453795810267025],[5.845496503579208,53.45384387131219],[5.844647813304612,53.453638018110425],[5.843832117823442,53.45378921186113],[5.84365837495247,53.45392054707396],[5.843734962129317,53.454260003794474],[5.843575818351588,53.454391274971634],[5.843167268120965,53.45440153748341],[5.842449462906741,53.454151614576524],[5.842055407791184,53.45415310328427],[5.841663766288669,53.45438108239325],[5.841416118346544,53.45442557568733],[5.840582865756438,53.45429804690066],[5.840226347126077,53.45453726422391],[5.84020874337442,53.454804721902434],[5.839888223816758,53.4548581923377],[5.839913238101319,53.45515030602917],[5.839591983702098,53.45515151301622],[5.839139815690129,53.45492310637049],[5.838433469393919,53.45496410236076],[5.837786505077544,53.454857357094035],[5.83745819564535,53.45486887293074],[5.837097376981263,53.4545550297184],[5.836443356444661,53.45464751801682],[5.836409212162813,53.45493332074972],[5.835969749079826,53.45492183178154],[5.835591322547199,53.45480473916817],[5.835120827404761,53.45461213662857],[5.835325311929405,53.454047329537815],[5.836716806832644,53.453628253913095],[5.838515734869693,53.45362152687004],[5.839030689198852,53.45336987815485],[5.839444685311401,53.453368764917776],[5.841436749513662,53.45339961632099],[5.842245299423376,53.453227432335595],[5.842976801914912,53.45294026638312],[5.843731032129403,53.45292555885609],[5.844770240426367,53.45269668653903],[5.845655385545741,53.452799747588166],[5.84667115715556,53.45272114020084],[5.848752666685797,53.45260479653721],[5.849330055144139,53.452525878307576],[5.850478600273827,53.451792805351346],[5.851202546134257,53.45173570467044],[5.851505681929596,53.4517121461174],[5.85171700895639,53.451579665999496],[5.852311520538739,53.45148257139913],[5.852661558420344,53.45144538719439],[5.853538537814177,53.45113417098599],[5.854370853260138,53.45100060071143],[5.855561770988284,53.450984124897786],[5.856157624790009,53.45093835510259],[5.857488514931664,53.4508361105405],[5.85849821599981,53.4507645787348],[5.859493771588216,53.45074149652141],[5.860360201003119,53.45066140005433],[5.861858038837687,53.44958168799479],[5.862237967111701,53.4493928090989],[5.862294004998957,53.4491835976634],[5.862840438346086,53.44857373450856],[5.86312648458985,53.448100184393354],[5.862928878979933,53.447659929094364],[5.862302710518221,53.447298168725915],[5.860917344520107,53.44699340178666],[5.859565287115817,53.44678540927343],[5.858746871554802,53.44763012094832],[5.858017004817844,53.447580728720425],[5.856612730139846,53.447247261528794],[5.854512801529589,53.44726347858344],[5.852821443401131,53.44725012744341],[5.849963168169651,53.447385540561974],[5.849338747966351,53.446290749301795],[5.848864710759288,53.44561335822103],[5.848352605518087,53.4451580040904],[5.847142566318087,53.444824590202856],[5.846065013979619,53.44456447956975],[5.842679484202897,53.444158120372826],[5.84178543725242,53.443935948818854],[5.838588551152033,53.443555501879594],[5.835442170503097,53.44351118750032],[5.833981985348929,53.44306808477897],[5.832569072110192,53.44265282189235],[5.82994714565239,53.442244033404165],[5.827490292631646,53.44188656262023],[5.82377465962082,53.44125532065256],[5.820758283584228,53.44011685327062],[5.818217992348021,53.439621377085054],[5.815633181108477,53.439535162727566],[5.813612092839638,53.43913317965456],[5.811733920644011,53.43911177359859],[5.804864324213765,53.43756593569155],[5.80340981904976,53.43765507084386],[5.801529821837402,53.437437290204144],[5.797824068824391,53.437758347809314],[5.796418892204022,53.438099528513],[5.794256173748621,53.43777046196008],[5.792801374472795,53.43783143761246],[5.790505234181476,53.4382876876085],[5.789287426136963,53.43821563985655],[5.788251015660517,53.438211108901235],[5.786561722698056,53.43830083122728],[5.780452759796148,53.437676168479264],[5.77895227746461,53.437877291188975],[5.776328871710093,53.43850253320716],[5.77618346031498,53.43799839952224],[5.774540337606383,53.438003696364056],[5.773378036035738,53.43926893383284],[5.772629380109394,53.4395516626001],[5.771785326864331,53.43966649318741],[5.770657563228784,53.43955795800075],[5.769887177394966,53.43959834324559],[5.766578782001502,53.44021563677603],[5.75775336857153,53.44035525065025],[5.753010334186315,53.440229588359976],[5.750808014108801,53.44074086126939],[5.747806776762323,53.44117038139103],[5.740962477256611,53.44245217495531],[5.739506062060555,53.442344313341955],[5.733079394880575,53.44306377677768],[5.727726635964184,53.44305100039253],[5.725610480089178,53.44263646314722],[5.721847357615687,53.44174991829021],[5.720619885455757,53.44088430288153],[5.718296866171021,53.437975260453754],[5.716689278469542,53.436493914457834],[5.715650477953784,53.43571182076747],[5.714330073811463,53.43493048345031],[5.704963246600753,53.431563551652424],[5.703406599566315,53.4305304205312],[5.702321674067306,53.429804398016046],[5.701850863376423,53.429609398082505],[5.700768634367773,53.42924779266082],[5.691418222735923,53.427870126044816],[5.689397822735791,53.4275668517164],[5.682199388659281,53.42506170851264],[5.679239009255974,53.42453629946964],[5.676380841765728,53.42470161374794],[5.646165744627842,53.426910724526614],[5.643632113449123,53.42705631388028],[5.641523699940628,53.42767752198204],[5.638808821831945,53.42894472019562],[5.633472640171428,53.43150677137511],[5.630191945877134,53.432410501347775],[5.629817992053156,53.43269158469914],[5.629307652139619,53.433757871853985],[5.625561924701514,53.43550340423789],[5.623867606430784,53.43472181781543],[5.622557647243966,53.43553734828479],[5.618166468334074,53.43955457834413],[5.617607288835785,53.44034057787405],[5.616672503671021,53.4411272915586],[5.615513653930141,53.443932792318726],[5.615477767335867,53.444997539716844],[5.615380396878964,53.44536273428054],[5.615371548085238,53.446259988106256],[5.615388297649101,53.44684846473308],[5.615374371652122,53.44752112422153],[5.615362179890379,53.44810969142979],[5.615345196638333,53.44892940227928],[5.615740895396844,53.45133306841637],[5.616403892200343,53.452369027216925],[5.618067003582967,53.45392127785753],[5.619564496115568,53.454970026998296],[5.623713230379601,53.457821308271946],[5.625492430282073,53.45680861621175],[5.624497733048418,53.455296807616286],[5.628637186694855,53.45643792751848],[5.630706772346774,53.456966380613046],[5.632987907229224,53.45777161163469],[5.634472420004423,53.45838839102599],[5.636589940828229,53.45905680816456],[5.63720097344447,53.45911121996423],[5.637906739758447,53.45933440943696],[5.639927611308706,53.459526413831604],[5.641430889108513,53.45952777806436],[5.642787089835907,53.45935106013117],[5.64453041745923,53.45931146216459],[5.650693992891234,53.45947754356692],[5.65336842307789,53.459310196107104],[5.654991036981881,53.45919895192296],[5.657815380781385,53.458977343974965],[5.660699950684961,53.45877347622076],[5.665057667067429,53.45860203471283],[5.66632044585817,53.45863499123481],[5.668033408844901,53.458559246976655],[5.668049030333204,53.460945374855505],[5.668054198780138,53.461734769822804],[5.668264523161253,53.46171633643154],[5.669742465225727,53.46155302947446],[5.670577323857303,53.461405918068685],[5.67595393869633,53.46085176692239],[5.676466144120227,53.46088956822618],[5.678088269817465,53.46070625219541],[5.680194751547568,53.46059616748084],[5.683406100791307,53.46024476834559],[5.685118816698254,53.460182645836],[5.685480849839546,53.46031140963696],[5.686020603035096,53.460283647706895],[5.686951982763765,53.46003863455842],[5.694975772550055,53.45965957970882],[5.713277998908634,53.45896554472107],[5.73458824100975,53.458583024998156],[5.741803568534992,53.458669646434195],[5.748087045086451,53.45875863147665],[5.768437699059102,53.45961871263008],[5.777618393863495,53.46001211645108],[5.778612045440732,53.4601883014232],[5.7790298919971,53.46010862219125],[5.800658592133176,53.46133465030345],[5.808539916767629,53.461827638170725],[5.824755162814333,53.46270742308218],[5.828873581922518,53.462885092912956],[5.830978539096644,53.4629311767179],[5.845298248857651,53.46379257891804],[5.848666894564232,53.463923256092215],[5.855945710074997,53.464352549256155],[5.869725072711513,53.46506075070943],[5.874627993490663,53.46525631008298],[5.880856276094715,53.46566154340645],[5.886513031227064,53.46603293027787],[5.897070426469747,53.466482524926654],[5.900017291927432,53.466406799697545],[5.900892407200855,53.46667218798873],[5.90349098322263,53.46675494607576]]],[[[6.189324151520607,53.48713150639138],[6.189733760801676,53.48693154810378],[6.190438699419539,53.48705012793426],[6.191715799389261,53.48681972348479],[6.191998173852077,53.48644803002354],[6.192499240624368,53.486715871285696],[6.193404357370224,53.48648793401341],[6.194729705797184,53.4866269831864],[6.195217784394741,53.48620460223589],[6.195924526775977,53.486281240392046],[6.197365087519562,53.48609156744239],[6.199589453838391,53.48568213144587],[6.200167131962365,53.48562892637859],[6.200535827299688,53.48545386172399],[6.20057154763558,53.48515777707323],[6.19998826899449,53.48491516973325],[6.199858670095542,53.48462019099087],[6.199443044802913,53.484499725835796],[6.200305345548363,53.48419805893225],[6.201171829914347,53.48411825394596],[6.201704423881664,53.483868113199215],[6.203189877710104,53.48373479902392],[6.204141294917755,53.483440030454894],[6.204305264757275,53.48370258712126],[6.205501413068818,53.4835712049492],[6.206072009029867,53.48314820062208],[6.207470521780617,53.48279353646147],[6.208451037341796,53.482195161855394],[6.208197891534319,53.48192569718858],[6.207786513587418,53.48202711053076],[6.207863037316527,53.48170609042395],[6.209219231367268,53.48130238303117],[6.208843049512729,53.4810830603594],[6.209376978844348,53.48090684186534],[6.210039125556414,53.48095162411103],[6.210213407190862,53.48141886472702],[6.211039451925048,53.48138856614345],[6.211285032325521,53.481263620073754],[6.211197398431353,53.48096427740751],[6.210943064898261,53.48067426002652],[6.210400154907437,53.48038211611743],[6.21075750523631,53.47946155537838],[6.210365606816797,53.477262325799394],[6.210172785716701,53.47632493749219],[6.209944744765996,53.475802876361456],[6.209551347577374,53.475520687515214],[6.208950779673845,53.47532892584097],[6.208112170046469,53.475174391278586],[6.205264765953062,53.474534972495675],[6.201788761475316,53.47379290412877],[6.198193189896114,53.473033741221485],[6.195470440026197,53.472660327429644],[6.191372508306121,53.47237272549483],[6.186511123489543,53.47231057310191],[6.178811734795583,53.472307981971866],[6.175589143694066,53.472329109030895],[6.171682872943037,53.47249704400301],[6.169504951321289,53.47252901121373],[6.165901531578593,53.4724318519295],[6.163996180780939,53.47233597754415],[6.1597313640978,53.472092978665806],[6.159559257964658,53.47207682157176],[6.159133512992061,53.47163442733399],[6.158562732675351,53.47142442544046],[6.158261149363337,53.47124830675096],[6.157512638140347,53.47111065290909],[6.156631289300009,53.471085231639684],[6.154118998793604,53.47064148827851],[6.15308547495745,53.47051570206351],[6.151822776430603,53.469989574310425],[6.151097455448719,53.46980638600158],[6.150715630296988,53.46981854591808],[6.15047344513466,53.46962423164828],[6.149817032861345,53.46962838786456],[6.149163466341898,53.46979276296302],[6.149262021880521,53.4695636483983],[6.148532455915432,53.4695474869253],[6.147670028941257,53.46971317338027],[6.146117540328341,53.4696695449266],[6.145850271716977,53.46974245276665],[6.14519417153272,53.46976438116798],[6.143376293072747,53.46990043571012],[6.140647836302453,53.470861187131234],[6.139910453154432,53.47103477820937],[6.13999609027334,53.47113233362431],[6.139229394188726,53.4711950928489],[6.137617825319338,53.47234089114894],[6.134140404734339,53.475661566340285],[6.133181358581962,53.47737079748116],[6.133016561043576,53.47880533983079],[6.133051849366969,53.48022036732397],[6.133528164149736,53.48215531555137],[6.134390380471715,53.48338132949955],[6.135636459217277,53.484655539551504],[6.137842139359304,53.48617303624314],[6.139798862292663,53.48710448823683],[6.142001054525497,53.48840826617038],[6.14626099290632,53.491265882517446],[6.147016131141195,53.491759659944556],[6.147379408991625,53.492042248900276],[6.148885010965964,53.492762733467195],[6.15238325576801,53.49471690767969],[6.156083131372533,53.49612918222818],[6.15806256360562,53.49672826857343],[6.160911403330575,53.49740439922614],[6.164552353363903,53.49802184277049],[6.169911048141685,53.498419835192536],[6.179891160501829,53.49857095844377],[6.187602012331733,53.49862817275401],[6.189089886316554,53.49891764888988],[6.189790865824959,53.49881436431611],[6.191686601106121,53.498481231795026],[6.193255743645471,53.49837213045933],[6.195072012096726,53.49821205209546],[6.194842548703911,53.49700554819445],[6.194586134769626,53.49656349332578],[6.194497430409576,53.496243590522774],[6.193539641478044,53.495880193191276],[6.1930553071113,53.4949487157603],[6.193313478982841,53.49484624005576],[6.192796575574289,53.493740264051134],[6.192151054616337,53.492388611774004],[6.189324151520607,53.48713150639138]]]]}},{"type":"Feature","properties":{"id":5,"statcode":"WS40","geometry_g":"polygon","gag_id":"WSHD","hierarchie":"0","hierarch_1":"Regionaal overheidsorgaan","inspire_id":"NL.40.40_Waterschap Hollandse Delta_p","sde_id":"1","land_code":"NL","inspire__1":"NL.40.40_Waterschap Hollandse Delta_v","inspire__2":"NL.40.40_Waterschap Hollandse Delta_l","wbh_code_o":"40","einde_leve":"1899/12/29","laatste_wi":"1899/12/29","admin_code":null,"waterschap":"Waterschap Hollandse Delta","publiceren":"40","Aangemeld":1,"Actief":1,"KVK":52605825,"tnostatus":2,"CPT":2956,"GMW":27,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[4.07733495933717,51.80955161792419],[4.077696093718062,51.80914453315865],[4.078368523494667,51.808827376809205],[4.079670656864914,51.8084738786718],[4.080338038514049,51.80833008171359],[4.08145411420809,51.80800288067771],[4.08198770687395,51.80766247978326],[4.083186145784415,51.807264690699064],[4.08406221899808,51.80714461297985],[4.085072302637351,51.80685284663747],[4.08588261421007,51.806601954622906],[4.086693743574044,51.806307967475774],[4.087636174030677,51.80593568458381],[4.088725697077286,51.80568812372568],[4.089492907210209,51.80571829151459],[4.089946534390717,51.805723308440946],[4.090473816572262,51.80559906695662],[4.090936772564009,51.805279523983465],[4.091699369748332,51.80509335837316],[4.092436586234802,51.80495000636401],[4.093773455082808,51.80459673658509],[4.094647741231751,51.80415861131564],[4.096133887295553,51.80346088070983],[4.097617517026225,51.80284955820456],[4.098383143023436,51.802554991882424],[4.099083483250142,51.80247622782585],[4.099936633162359,51.80192943974642],[4.100398046600346,51.80167487759087],[4.10133429364259,51.80151197544731],[4.101866422810303,51.80121482613934],[4.102814701173289,51.80100894553644],[4.103346197666307,51.800733460522345],[4.103910383773228,51.80052310894626],[4.104476822746107,51.80024800113605],[4.104555772124391,51.79993091540817],[4.105107075355312,51.799807130422465],[4.105604822621555,51.799487910831516],[4.106628493486912,51.79908771760519],[4.108242249861003,51.79841290668401],[4.110570316995196,51.79755771371527],[4.111899261752231,51.79707434198822],[4.113556808527478,51.79646471133231],[4.114895090162479,51.79604644266586],[4.115729173935669,51.795780894573205],[4.116361725885652,51.79563625921144],[4.117376068805965,51.79556078933452],[4.117933846460088,51.79558824690389],[4.1190159800927,51.79518883746555],[4.119609491692573,51.79517383294271],[4.120164830660978,51.79528796561248],[4.12089329313379,51.795447322072064],[4.121537966090955,51.79486999829053],[4.120366934030922,51.79431617366971],[4.119051868110098,51.79391252811716],[4.11937615096929,51.79355472872555],[4.120520106051592,51.79382671160535],[4.12138428350305,51.794132310248564],[4.12709642794131,51.792512715065584],[4.131479035082622,51.79139760580398],[4.137082456004147,51.7899211441859],[4.140974362916347,51.788865487263635],[4.143600786701679,51.78813591718549],[4.145540108660382,51.787405725504144],[4.149467190558545,51.78593233999055],[4.153337719841826,51.78435680698737],[4.154148427825842,51.78406235444053],[4.157303372197923,51.783128221657925],[4.157831972603416,51.78293891825561],[4.158403758613328,51.78244708626734],[4.158344479244434,51.7820570318754],[4.1589109454975,51.78175998736938],[4.159376523224396,51.78131710510515],[4.160073859025974,51.780934712646925],[4.161272662972535,51.780471362785256],[4.162466750287091,51.7801808605477],[4.164036860091829,51.77978587776153],[4.1647441722953,51.77943220813624],[4.165212198116676,51.77889590573459],[4.165885316584967,51.77851348488013],[4.166617012504561,51.778564459075234],[4.167267609980675,51.778614327084284],[4.168069355150406,51.77864434321725],[4.16898133794571,51.77845923313343],[4.169718461407676,51.77829372043086],[4.17054740953583,51.77819419057203],[4.17076770714169,51.777785107593076],[4.171360229463949,51.77781292996617],[4.17181242013899,51.77786097356115],[4.17226869493529,51.777757311518734],[4.173222381719428,51.777319688336796],[4.173875708650274,51.7772830936576],[4.174539433608382,51.777246602870854],[4.174993949433515,51.77720794592115],[4.175522981722295,51.77699714760156],[4.176294993638147,51.77683195525243],[4.176787341051289,51.77668554917672],[4.177723377038467,51.77650036187649],[4.178529729187978,51.7763571867236],[4.179023798067464,51.77614601240374],[4.179970628366686,51.77596091850911],[4.180835607115396,51.77581833114327],[4.181748481256597,51.77561119604427],[4.182760534828865,51.775600174722086],[4.183354933167008,51.77554124456686],[4.184222434380092,51.77531891358565],[4.18481682718545,51.775259975101584],[4.185476480989393,51.77537486975659],[4.186141154744035,51.775316902768665],[4.18659852449801,51.77516983956793],[4.187195203813592,51.7750247162631],[4.187954030073682,51.774945766912865],[4.188515038791863,51.774843370232844],[4.189322062420785,51.77465677206611],[4.189399972475945,51.774354591304984],[4.190064633173571,51.774296344085485],[4.191324423353995,51.77504522143757],[4.192906819433009,51.775898535026336],[4.191201152035294,51.7744380094285],[4.190387967449624,51.77393189049187],[4.190902635631132,51.77385068802026],[4.191527764939361,51.77396519646524],[4.190516115411961,51.77305265485218],[4.190968365035522,51.772689257257795],[4.19258844915955,51.773419860726925],[4.192720346974461,51.7737174712639],[4.193095781703008,51.77402427232377],[4.193533646245985,51.774613264465614],[4.193727360623426,51.77387947139489],[4.193465707965441,51.77323420780423],[4.193478872282236,51.77273651971644],[4.193490889806797,51.772282175994185],[4.193711516776101,51.77185163418794],[4.194482674424349,51.77130359247295],[4.195368046452709,51.770793094335765],[4.196544839816566,51.76983108409264],[4.198695693639558,51.76853957382183],[4.20209074491709,51.76635167645091],[4.204846119734135,51.76461169918885],[4.206726213773713,51.76339705793079],[4.207669273468404,51.76334151485305],[4.207714197946686,51.762959245325035],[4.207791964147602,51.76265705151469],[4.209694324619376,51.761507363079836],[4.216408054889839,51.75730324944212],[4.217293707750403,51.75677762430968],[4.217912821288887,51.757101745739],[4.218781480270515,51.75681413939924],[4.219347377873255,51.75649512391574],[4.219671884119132,51.75608724709859],[4.220267509207141,51.75598504514349],[4.220761720326192,51.75575202127171],[4.221397991599011,51.755412017805135],[4.221579438456606,51.755132523871644],[4.222096633085125,51.75494282095112],[4.222769859603503,51.75452343308107],[4.224257972592328,51.75360759785812],[4.225374612233007,51.75316420528974],[4.226226409756823,51.752573401791736],[4.227352700246542,51.75217344305108],[4.22791681672249,51.75191914468719],[4.228239543896452,51.751576261461125],[4.228796029205093,51.751213751204205],[4.233116120428989,51.749553348964284],[4.234102057684807,51.749173620840786],[4.234774158501219,51.74879054239711],[4.235656115329635,51.74839481200436],[4.236488646453184,51.7481433675036],[4.237192866657434,51.74786898087452],[4.237966914487996,51.74759501670802],[4.238873584812121,51.74758248210212],[4.239927797935416,51.74683536584928],[4.240286934316764,51.746412546297584],[4.240750961161594,51.745984558065594],[4.24111011881887,51.74557670419855],[4.241616730550705,51.74484589496315],[4.242478021444792,51.745243739460705],[4.244729483640201,51.744017414980014],[4.243329620417947,51.74285663413323],[4.245344507559291,51.741757799907425],[4.245896781164163,51.74197944232127],[4.247059559978761,51.74243851339811],[4.247347541612977,51.742080272731194],[4.246456407753039,51.74146565111681],[4.246777831477074,51.74116580310731],[4.247313757402282,51.740651519295405],[4.247743132334567,51.740207940125835],[4.248033995986778,51.73973462620155],[4.248675831805651,51.739156589413824],[4.249336624816101,51.739228040860645],[4.249751517471254,51.73892909227587],[4.250215383992244,51.73850080780799],[4.251746397697428,51.737223745049455],[4.252562139067025,51.73666905048645],[4.25322797482203,51.736091221614124],[4.253620175944512,51.73573371627145],[4.254223594735365,51.73530676510898],[4.254374608808019,51.734853762158956],[4.254936727702311,51.73466435065499],[4.25540104548211,51.734214372084104],[4.255725440061752,51.73379142876966],[4.256152664706419,51.73342780172143],[4.25666892381744,51.733259616899446],[4.257204101008219,51.73276695905477],[4.257594782510772,51.732467749786956],[4.258020236393421,51.732190552659134],[4.258516156734908,51.73187067689301],[4.25870521887658,51.73127325580311],[4.259619663094328,51.73093572664102],[4.260036026834949,51.73057198120974],[4.260256229031648,51.730141313884495],[4.26015962063801,51.72981573074594],[4.259831793386729,51.729429600458445],[4.260715057189956,51.72990752593697],[4.261252675509586,51.729313450986666],[4.26185390316194,51.72895147531851],[4.262281993890619,51.72856589834214],[4.262504980882187,51.72800544328192],[4.262548454320727,51.72764456114396],[4.26336066239666,51.72721956843461],[4.264163669362084,51.72672944782799],[4.265074750637191,51.72652191200756],[4.265601161322067,51.72637546491758],[4.26546896252049,51.726092901373676],[4.265958324875013,51.72603255166929],[4.266557327914648,51.725756983710355],[4.266571108686652,51.72520123066645],[4.267115162014136,51.725314564436594],[4.267634586695123,51.725449337799574],[4.268162586584245,51.72523786036656],[4.268382799902797,51.72478575796635],[4.268872680592403,51.72470372280425],[4.269646669532596,51.72440813173702],[4.270171435354901,51.7243266818818],[4.270179457509401,51.72400210459489],[4.270805173396334,51.72361863883686],[4.271612797666316,51.72337316363853],[4.272105859232568,51.72316133512721],[4.272878851041636,51.722887391820926],[4.273205297427373,51.722371257659766],[4.274142360431144,51.722098864996674],[4.274805197298868,51.72206180387885],[4.275401433206982,51.72189429778779],[4.276208102765284,51.721685427504475],[4.276804856111136,51.7214964988998],[4.27728637425679,51.72131292730097],[4.277812154486218,51.721188097380534],[4.278615085778763,51.72113066284145],[4.279452371568191,51.721095483920166],[4.280220519294227,51.721016032127736],[4.280700061958665,51.72091242989064],[4.281709286558081,51.720965311927046],[4.280887241760598,51.72039495963543],[4.280389238033039,51.719827403973646],[4.280190355332032,51.71941441905087],[4.279784077092333,51.71891947083792],[4.280583782121077,51.71899206070804],[4.280981391518827,51.71940021186095],[4.281111546794019,51.71976944976685],[4.281903868421698,51.720144676949985],[4.282314891682043,51.72042985025946],[4.288127706732839,51.71834898741226],[4.28927961271379,51.718273075821216],[4.289906962204901,51.718257275437345],[4.290468615902637,51.71808936851078],[4.291124771857958,51.717879245327225],[4.292276765942131,51.71778188579679],[4.293636017567137,51.71777290205157],[4.294949159479701,51.717763473595504],[4.295580574287527,51.717596192630346],[4.296317127340063,51.717393242009926],[4.298093866084991,51.71695530962859],[4.298969705233189,51.71674718560448],[4.301218384150117,51.71551279724088],[4.303796456735284,51.71405018283771],[4.304430894013718,51.71375307373346],[4.305305523710103,51.713140237476054],[4.306572381448763,51.71261075703758],[4.307872539964014,51.71214686170247],[4.309520757223845,51.71123143518449],[4.309705448144865,51.71078538233107],[4.310726848329812,51.71031863359066],[4.312198864400428,51.709488261976084],[4.314236759567462,51.70875596195436],[4.315636836107868,51.708011600863394],[4.316730954235234,51.70741565593993],[4.317475439935385,51.706866316753555],[4.318290339713316,51.706289485700935],[4.319194054965368,51.70590830133954],[4.319897116667034,51.70563341255173],[4.320842920134121,51.70540382798912],[4.321544437856281,51.70519369114514],[4.322231069205834,51.70515683789214],[4.32268260711456,51.705225717816845],[4.322863578678562,51.70493109889089],[4.323676845815781,51.70441924893219],[4.324453784176757,51.70395016228272],[4.324982281794945,51.70369533767859],[4.325563142727469,51.703722023655715],[4.32604659002931,51.703899826231996],[4.326609456860374,51.703666725908526],[4.326829078947024,51.70319257642905],[4.327458140163393,51.70311181606698],[4.327624533406955,51.70343771419045],[4.328220230946577,51.70329187219229],[4.328946782083849,51.70303856217905],[4.329787172115005,51.70283659927401],[4.331211937220742,51.702972550976455],[4.332013311595523,51.70296480465832],[4.332521023331927,51.703135831506884],[4.332971636684126,51.70322634077853],[4.333601192580084,51.703123873745994],[4.334785086654361,51.70313451615439],[4.335848418924488,51.703382263057016],[4.336443687810047,51.7032358595786],[4.337316991556762,51.70313555881077],[4.33860661715506,51.70308233451974],[4.339429729218818,51.703176152750174],[4.340823001671788,51.70316692945312],[4.342866481847136,51.703185165424564],[4.343983524869389,51.703086987787906],[4.34534325670165,51.7030190879325],[4.345959995888435,51.703002894404726],[4.347010251820952,51.70277428514628],[4.348057099966682,51.7026754463233],[4.350589476808794,51.70265452825316],[4.352771967987227,51.70269549883092],[4.355142213171084,51.702608274967666],[4.356244479173008,51.70268275679253],[4.357669661837449,51.702803422095144],[4.358922902426047,51.702814429984635],[4.360863616119048,51.70276667439683],[4.362150194765285,51.70286439250009],[4.363006270234697,51.70304504473843],[4.364191145874708,51.703012301130855],[4.364918017761465,51.703213230116404],[4.365719616663966,51.70317686757936],[4.367318695486847,51.702844731525985],[4.36822444273295,51.70283093580913],[4.368992050391176,51.70277283514022],[4.370134167020203,51.70260933598485],[4.371177973255389,51.70266174942718],[4.372812966861837,51.70276262974368],[4.374683422910008,51.702735456923236],[4.376447778717125,51.70277237210899],[4.377702407078539,51.702739835769165],[4.379270069350282,51.70273165706512],[4.380932123795825,51.70268117104493],[4.381700199297257,51.702601056075615],[4.38225897837725,51.702519398714394],[4.382989695878895,51.70256902042702],[4.38343200772891,51.702551134250115],[4.38398640191104,51.702685691106204],[4.384471997339673,51.7027763012255],[4.385312287094052,51.70256723113604],[4.386162375771439,51.70247798130486],[4.386970504505002,51.70268953142859],[4.387555487382929,51.703019174148544],[4.388171747369381,51.70349385584914],[4.38864971295964,51.703930709716865],[4.389365248961539,51.704650878435345],[4.389938998514303,51.70500209037415],[4.390057070466892,51.704375476341674],[4.389959516206138,51.70407167489097],[4.390686992543373,51.704251029150285],[4.390659263238722,51.703926144241706],[4.391142974586899,51.70410342170409],[4.391345186195669,51.7044081118716],[4.39196040899669,51.70493257099869],[4.392406398530374,51.7052393300773],[4.392813790118516,51.70573389001424],[4.393016495265504,51.70601690421066],[4.393149373007422,51.70632100175244],[4.39399666665933,51.7068910327941],[4.39503576111828,51.708754048816495],[4.39564111593566,51.70973311814265],[4.394899909237588,51.7101745880618],[4.394238829905802,51.710125631744006],[4.394401862700296,51.71064650252533],[4.393878904918505,51.71066348882773],[4.394395211402579,51.710949415902604],[4.395229917402858,51.71099958351603],[4.396103243552244,51.71089884548884],[4.39714127561762,51.71071278191041],[4.398577168148552,51.71037883996788],[4.399840968821305,51.70993504216403],[4.400358168041584,51.70968649485802],[4.400814652144969,51.70951691796274],[4.401205595989617,51.70915246430804],[4.40026672981945,51.70907978368762],[4.399207637184748,51.70861614300419],[4.398835118708541,51.70813712588384],[4.398603957235735,51.70755762171265],[4.398514916043869,51.706842541819135],[4.398668174410209,51.70621621594847],[4.398924570162809,51.70564082632543],[4.399105192495536,51.70533937933949],[4.399186302023282,51.70482083329154],[4.398668141209066,51.7046216205899],[4.398007553946535,51.70457268921622],[4.397875591220984,51.70422550699747],[4.397778043741965,51.703900035311115],[4.397647781429069,51.703494286374244],[4.397690240670439,51.70314831918112],[4.397980710585965,51.702609864088174],[4.398057572931596,51.702285864380734],[4.398723800128142,51.70207522855112],[4.399213201110381,51.70199264706825],[4.399678907570506,51.70139734203065],[4.400374861650469,51.70092733192286],[4.400909035382313,51.70039066456808],[4.401404538520576,51.7000270907232],[4.401690234140558,51.69970484603503],[4.401979077262049,51.69923785211916],[4.403615044310927,51.698775467715755],[4.404797903868708,51.698828749390145],[4.405250967816958,51.69881087034695],[4.405119386636883,51.698463441528666],[4.404357067866028,51.69828388515062],[4.400788120131017,51.696356317705686],[4.402274014634797,51.6952867469052],[4.402005642858231,51.694815065953286],[4.399506318491668,51.69334419596806],[4.398946268644828,51.693490699313976],[4.398283474559593,51.69355013731214],[4.397609381297388,51.69410703071601],[4.397118172465071,51.69427604212885],[4.396644385880714,51.69414222868911],[4.394132909451876,51.69274262458819],[4.393864725495424,51.6922858935696],[4.393941123392183,51.691983570264604],[4.393288725083181,51.69204306897124],[4.393278266075851,51.6925191142285],[4.393848714411772,51.693015056310664],[4.394844645993877,51.69365086025199],[4.394871410944019,51.69559201088373],[4.394161357037542,51.69621361238534],[4.393257506188421,51.69663898256113],[4.392623890433559,51.696936575246916],[4.392097758573891,51.69710501131551],[4.39160902244627,51.69715918194189],[4.391061141159033,51.696749873619],[4.39091489761363,51.697073279034136],[4.389781648879289,51.696825696407636],[4.387596136123863,51.69486613989367],[4.386277524570938,51.693577960693574],[4.386093031450343,51.69405251829259],[4.386538874251205,51.69435929966232],[4.386970100608615,51.69483911733754],[4.387172391361413,51.69513710663171],[4.387823267599227,51.69561879618779],[4.387461947431961,51.696221655456114],[4.386793422175669,51.69651891793141],[4.38628542039967,51.69665548353083],[4.385440283953909,51.6967886471986],[4.384984355916369,51.696936232686156],[4.384136700826009,51.69746343401154],[4.383194977547409,51.69801795343804],[4.382347138004316,51.698551592777136],[4.381749198656893,51.69882775514157],[4.380934907705285,51.69941999531613],[4.380271522610461,51.69950100587693],[4.37955255112296,51.699429789855394],[4.378406998288252,51.699268443852624],[4.37757115128421,51.69926124232337],[4.376945538197775,51.69921275096796],[4.375850919630402,51.69879865504328],[4.376574226437065,51.69867508928219],[4.377057827587551,51.69885242472104],[4.377579692731951,51.698878601221935],[4.378380653446787,51.69888550227791],[4.379354628174607,51.698937241874354],[4.379899686215464,51.698985027658416],[4.380704019639798,51.69884045694122],[4.38123358814827,51.69852035658106],[4.381380386101047,51.69817529045958],[4.381527591143654,51.69783048563749],[4.381464571166759,51.697526972990474],[4.380598145519014,51.697346367344196],[4.381333658534929,51.69715784487991],[4.380642020935539,51.69694235258081],[4.380155053995787,51.69691648874769],[4.380927910135379,51.69659848218011],[4.381382335191348,51.696537609991076],[4.382290360078846,51.69641533818939],[4.383064088919425,51.696075647071346],[4.383681262095831,51.69601616112272],[4.383584249214438,51.69569068122153],[4.382590580645359,51.69544422445071],[4.382040126448133,51.69513653027972],[4.381177927448815,51.694767833275144],[4.380622674065584,51.69467660935908],[4.379455564405787,51.69440695787375],[4.378629943399069,51.69394513570459],[4.377382252880452,51.693696446621075],[4.376582351209468,51.69364619204424],[4.375478335949668,51.693658337918],[4.374257375879974,51.69375617353299],[4.373594553654587,51.69381521467645],[4.373017120532569,51.69365873008347],[4.37242605579186,51.693610255228464],[4.371968659966357,51.69382280993958],[4.371541279147517,51.69425188461432],[4.371427906564896,51.69464058499729],[4.371594735500862,51.694959712590276],[4.372112667257884,51.69515904464396],[4.372979431801473,51.69533971649642],[4.373592247001201,51.6954748292267],[4.374527876676744,51.69567776356081],[4.375455289462153,51.696248366602255],[4.375797350315258,51.69653261451766],[4.375275029905137,51.696528103154066],[4.374760937810699,51.696155914245765],[4.374103409192548,51.69597706479741],[4.373236142079215,51.69581807421919],[4.372382035610612,51.695572480620065],[4.371483723315538,51.695261721976536],[4.370787519011311,51.69523426325187],[4.369843160188331,51.695420647771655],[4.369323368401957,51.695784136362754],[4.369300181006595,51.69526444418085],[4.368852982931429,51.695022618203545],[4.368109584868762,51.69557874051669],[4.367985939941136,51.696421805643695],[4.368042682290168,51.69699985605245],[4.368064886567297,51.6975626372443],[4.368260161302263,51.69814860218168],[4.368701951313443,51.698650257879514],[4.369148697912012,51.69891375830976],[4.370104722964967,51.69928310059804],[4.370973572267696,51.699355675122234],[4.372082210747792,51.69962490473313],[4.370929385372197,51.699788071542876],[4.370446287111966,51.699589037901234],[4.370104722964967,51.69928310059804],[4.369381870963491,51.69938521040178],[4.368583824640189,51.69924846528018],[4.367899537208576,51.69870805336834],[4.367422797561804,51.69822802641388],[4.366534235451046,51.69748427678145],[4.366646748887762,51.69711750956046],[4.36669465909772,51.696540112237734],[4.36659971917378,51.6961281829586],[4.366577533730528,51.69556540055991],[4.365970182129659,51.6951706817279],[4.365413492062395,51.69514414938537],[4.364507408065222,51.695179596729616],[4.363741805599831,51.695172909347335],[4.363014173873318,51.69499312669399],[4.362466733219662,51.69505337190477],[4.362386197376802,51.69552880308407],[4.362165588032726,51.69604636468751],[4.361973556984255,51.69682353415867],[4.362164825977957,51.69761928400343],[4.362398258610538,51.698075785057746],[4.362665592856149,51.69857593746986],[4.362257001625866,51.699691088962716],[4.36175313667885,51.69887092515623],[4.361253294050865,51.697892597691265],[4.360923097957931,51.697088919640755],[4.36111114523335,51.69646991257021],[4.361335695200835,51.69577922396667],[4.361673050277777,51.694728485111376],[4.361681385830432,51.6943608101521],[4.361830693356008,51.693929336817924],[4.361305951604398,51.69403287263339],[4.360425016205794,51.69447961193699],[4.360482153025826,51.69503599204578],[4.36003205610327,51.69492391478449],[4.360425016205794,51.69447961193699],[4.359380485507999,51.6949612962222],[4.358892074579767,51.69500036460388],[4.359018862456893,51.695542647206956],[4.359317584062962,51.696194311486146],[4.359336384288195,51.69690209991636],[4.35875891441268,51.69625444093196],[4.358458727588641,51.69566753783846],[4.358332433203025,51.69510383878158],[4.358028173706998,51.69469651458051],[4.35775795551318,51.694326391742365],[4.357333390234524,51.69462563196752],[4.356934980269024,51.69530781667696],[4.356639215174727,51.69604096809118],[4.356829894762082,51.696858400254065],[4.357235271068518,51.69740287717363],[4.357705973941455,51.698143026394476],[4.357903013008285,51.69866399137709],[4.358130160201124,51.6993950307327],[4.358642672875839,51.6998323127428],[4.359196953319295,51.69996724461235],[4.359353746418649,51.70024991570401],[4.358840215446084,51.700331861132845],[4.358390564489232,51.700198103705745],[4.357343874057397,51.700275359484515],[4.35684800944354,51.700639003839136],[4.354037049758187,51.700679019855286],[4.351956317528964,51.700769037812805],[4.349832468784466,51.70072856991267],[4.348314526391499,51.70056363061942],[4.347619176221758,51.70051410601777],[4.349016754934371,51.70033165943184],[4.35231617061944,51.70025272512772],[4.35429314405727,51.70014036676156],[4.355989024643664,51.70013363076967],[4.356897184612278,51.70001181422661],[4.357430381555689,51.69954036702459],[4.357303595992324,51.69899834087715],[4.356720216501106,51.6986102362543],[4.356195402945129,51.69871400687907],[4.356293780870648,51.69898945768865],[4.355570414537187,51.69911289713225],[4.356195402945129,51.69871400687907],[4.356518758133735,51.69828381396546],[4.355769898031575,51.697995926766204],[4.355262862797097,51.69732074097566],[4.354889919624624,51.69688467386268],[4.355070647970442,51.69659000338879],[4.355355660719431,51.69631122005573],[4.355540491258159,51.695836453979204],[4.355450096295648,51.69522971241175],[4.355740450251444,51.69469806741326],[4.356790018612616,51.694014908513054],[4.357813508957467,51.693417963045356],[4.358481275476557,51.69314227764148],[4.358942579250417,51.69277858035176],[4.359527173325256,51.69261725720412],[4.359020608268494,51.69239655035565],[4.359239765300503,51.69194375717273],[4.359296757221254,51.69097056483798],[4.359421990299385,51.691599286397455],[4.359239765300503,51.69194375717273],[4.359568436248362,51.69233632480484],[4.359527173325256,51.69261725720412],[4.360610109334414,51.692453590806466],[4.361519499166786,51.69228839384918],[4.36221817035833,51.692186379454256],[4.36281018676349,51.69219155897833],[4.362384621900494,51.69099762506003],[4.361845979459336,51.69017715605458],[4.361544809606326,51.68963360729366],[4.361208775434302,51.68908975226079],[4.3613202571591,51.68878775622197],[4.361901445164184,51.68926872390944],[4.362100447313547,51.68970350463296],[4.362573603578314,51.690335268347155],[4.362384621900494,51.69099762506003],[4.363027318635529,51.69134957488825],[4.363330473900823,51.691806683289165],[4.364344119989644,51.691620698663144],[4.36491005412384,51.69123621469973],[4.365161569805998,51.69089208205498],[4.365904700855069,51.69036436371104],[4.366225947200384,51.690020836876215],[4.366541346070488,51.6894393193028],[4.366968660486267,51.68903168132223],[4.367260719747576,51.68843499077154],[4.367441971764966,51.68811191861856],[4.367521048846485,51.687679826669786],[4.367423194235649,51.68739768033819],[4.367120515450607,51.6869189075283],[4.367611751013516,51.68675027985792],[4.366817280438771,51.68648348529173],[4.366379361891484,51.68631321489171],[4.36560492170867,51.68666775740281],[4.364517256312249,51.687047689640934],[4.364453875121351,51.686765841725716],[4.365049732147002,51.68659788039094],[4.36560492170867,51.68666775740281],[4.365753043184004,51.68628607652854],[4.36624770027852,51.685965739282686],[4.366462840513334,51.685686320282755],[4.366530567730512,51.68529748531285],[4.36638061335996,51.68471191134351],[4.366760343351899,51.684368892902725],[4.366961813026281,51.684695298045355],[4.36698302149154,51.68530142783332],[4.367076967007075,51.68575670495922],[4.367527886674127,51.68584734270882],[4.367991075022633,51.6853749808685],[4.367965948822665,51.684942238709624],[4.36763133685963,51.68433338188975],[4.367499446632168,51.68401429325974],[4.367507249651431,51.683668033308436],[4.367480673834597,51.68329979585294],[4.3669624049652,51.683122376227296],[4.366289811201616,51.68255366672724],[4.366774603910778,51.68219014491345],[4.367268567671942,51.681898185111514],[4.366022869426504,51.68203855712284],[4.365794851355663,51.6813441703969],[4.365559512320329,51.68097437010551],[4.365054407601456,51.680233950619616],[4.365141645522143,51.67944089229284],[4.364924898027446,51.67824878822184],[4.36452531719844,51.67745122111624],[4.364114650914112,51.67714466178112],[4.363537515840497,51.67649031654582],[4.362423815376234,51.67542687993006],[4.359569129882358,51.67285497791074],[4.3587833817971,51.6721987770964],[4.358001927310994,51.671354734830814],[4.356398027116253,51.67043170499906],[4.355260197160598,51.66996722262393],[4.353671653444291,51.66941229725706],[4.353060581501894,51.66921876859045],[4.352407072869912,51.66886666535228],[4.351399337901825,51.66881439867068],[4.350328907654887,51.668437174176994],[4.349129790351729,51.66808021906415],[4.345683676847761,51.66706069076037],[4.343989626081864,51.66659140500329],[4.342860399235541,51.666213330405206],[4.341305997998445,51.66570163745971],[4.34040849075293,51.665390641764816],[4.339785895414003,51.665233586109466],[4.338240185729638,51.66481535139536],[4.334408670471249,51.66393681069009],[4.33161510375869,51.6633273841645],[4.329409283986155,51.662874690048824],[4.327882757092691,51.662672753183394],[4.325811332910673,51.66243772829915],[4.324527510183173,51.662274593915846],[4.322219209980509,51.66175579911795],[4.319899754583662,51.66123711472399],[4.318111004843605,51.66080942748002],[4.316829203714746,51.660581451416355],[4.316134857241622,51.660516775960424],[4.315546524742434,51.66082933476185],[4.314765722481549,51.66147149079428],[4.314038723278252,51.66131334072934],[4.314017113922203,51.66077196796316],[4.314023620655966,51.66049744008038],[4.312613340696241,51.66024656139195],[4.311576134970834,51.65997741676482],[4.310709270722023,51.65983937999245],[4.309387639633796,51.65980554135899],[4.307904416417201,51.65972709929161],[4.30524010576702,51.65955101616617],[4.303850764444036,51.65945145485285],[4.302670716099759,51.65931071747478],[4.300248406573091,51.65920179652453],[4.298105513839976,51.65905206944928],[4.295281027058942,51.65831167210765],[4.293204786855657,51.65784427431132],[4.29166045210822,51.65739704471453],[4.290554380044788,51.65708371110802],[4.289241650032854,51.65670365320651],[4.288076070825087,51.65643309371198],[4.287209873771555,51.65627321067466],[4.286244649956137,51.655903093487844],[4.285185751376955,51.65554679632571],[4.284495901418045,51.6553023571488],[4.283490243241077,51.65516306797918],[4.282725974723556,51.65511250299125],[4.282113980036909,51.654976916707376],[4.280767184133707,51.654553084279065],[4.279618367716561,51.65458531733535],[4.278201993215855,51.65461526243247],[4.277645325488074,51.65460998693715],[4.277119789595152,51.65475649263097],[4.276667118799844,51.65477387719915],[4.275904461788043,51.65465824834279],[4.275111362330495,51.65480246245485],[4.274348058389083,51.65473017334065],[4.273859478412341,51.654790561700445],[4.272886049096735,51.654759620273815],[4.272333115277847,51.65460260838207],[4.271399450557974,51.654810235051116],[4.270769894913898,51.65493404226099],[4.2697937894962,51.65501144114834],[4.268884171275735,51.65521901853769],[4.268160734284611,51.655363593298624],[4.267219460064591,51.65544130289272],[4.266590956979182,51.65552174261951],[4.266069539349683,51.65551674959468],[4.265340782708484,51.65542331210323],[4.26402461904173,51.655626955641004],[4.263121398845147,51.65557518712768],[4.262387815360837,51.655676272792746],[4.2617351178706,51.655778130736145],[4.260829912943189,51.655806070147236],[4.259678893547959,51.65592479975635],[4.258524751179689,51.65615187789302],[4.257663385696864,51.6562517018667],[4.256474261017295,51.65649984195966],[4.255356431856913,51.656683883655155],[4.254420070491268,51.65697780390391],[4.253579491023353,51.65720760966746],[4.253089771671227,51.65731125681153],[4.252179072214874,51.65754037320264],[4.251692063485708,51.65753564990865],[4.251034596197037,51.65782553884129],[4.249919434219034,51.657901163899744],[4.249118134941255,51.65793673212822],[4.248316834446889,51.65797229486706],[4.24756213247863,51.65798637016669],[4.246797982975433,51.65791415121441],[4.246423516846779,51.65759255589482],[4.245687716250399,51.65779519623281],[4.245194706197886,51.65802833110436],[4.244436851550715,51.658150746532996],[4.243875774297832,51.65831843457452],[4.243420326870286,51.65844379679319],[4.242794881244415,51.658416263180236],[4.242094831160144,51.658582325994495],[4.241535926827398,51.65866357056003],[4.240891905769755,51.658419063724395],[4.240438089287457,51.6584796526321],[4.240254960017513,51.658845613973156],[4.239513589558958,51.659249716450994],[4.238955643306547,51.659309021597245],[4.238322638263223,51.659562691085604],[4.237872080616375,51.6599193133024],[4.237346355715937,51.6600656397403],[4.236787288791189,51.66016853788984],[4.235777276825787,51.66020170578303],[4.236134267814319,51.65983746096963],[4.236384760759084,51.6595653332133],[4.236948633772233,51.65928931714611],[4.237822953502584,51.65912473820347],[4.236887730172461,51.6589426415387],[4.236049773083962,51.65906421571375],[4.235209744117724,51.65925079750906],[4.234341659597275,51.659610006191315],[4.23353867009451,51.65971022829043],[4.23311047055367,51.66013234567221],[4.232749175271083,51.6606480275825],[4.232548315137128,51.66170647206189],[4.232011684025311,51.66227874746207],[4.231377913489921,51.66257547061933],[4.230748976913898,51.66308876165681],[4.229372964464867,51.66383260788349],[4.228278384531975,51.664442445175425],[4.227578989440778,51.664998378286555],[4.226732162415084,51.66544445560308],[4.225777464434521,51.66603423672867],[4.224862422387232,51.66643626674069],[4.224228132094648,51.666732946628244],[4.224421686784771,51.66734082761551],[4.223442122570294,51.66795873042632],[4.222657286695085,51.66870166371144],[4.222048891162093,51.66934492518981],[4.22129646477914,51.67018133730607],[4.22103746008399,51.67077800570411],[4.220817033408382,51.671230278779134],[4.220629784822195,51.671747916087185],[4.220385840691976,51.67217827542713],[4.219888252063245,51.67257771833937],[4.219739894256694,51.67292257377343],[4.220372072637092,51.672712352096504],[4.221022872249619,51.67269741553309],[4.222210396560287,51.67253581249844],[4.222306614026001,51.6728614266879],[4.221465156289717,51.67309125384732],[4.22127958064994,51.67354387473229],[4.221342051555094,51.67382579734162],[4.211245941305004,51.67648158089382],[4.210612399330868,51.67675651808889],[4.209508203609376,51.676788773471685],[4.207195800517062,51.67737145055438],[4.203738027208217,51.67822381342194],[4.201730057074783,51.67871603756519],[4.198480052377025,51.679094459928436],[4.195279285931713,51.679429678299606],[4.194612450232572,51.679639413725],[4.194149238521711,51.68004580887332],[4.19031392719125,51.68330435175585],[4.189824929317658,51.68336438779955],[4.183160642767797,51.683425866152824],[4.177259393844386,51.68358130623293],[4.173262724348675,51.683713111223234],[4.171394705578271,51.68367231028127],[4.170488720979328,51.68370599882577],[4.169822291481893,51.6838939196945],[4.168022493522319,51.685188543815755],[4.166818699445674,51.68593345712762],[4.165343227095497,51.686820305876026],[4.164847146433822,51.68713978806831],[4.163062521345009,51.686175555736966],[4.157689185218984,51.682273923972794],[4.155296579618518,51.68367774678184],[4.158700230368797,51.685327514228135],[4.159196903778401,51.68595081567229],[4.163859056543374,51.688349137585284],[4.163227292551967,51.6889557248335],[4.162690024878776,51.68956820056656],[4.159574066492233,51.692998702448214],[4.157535552714075,51.69509147615997],[4.15631471059215,51.6964619399892],[4.15578046972812,51.69695647607573],[4.154824605092539,51.69753019070711],[4.153912479367537,51.69799157839547],[4.151957018959089,51.69850054415911],[4.148064649511721,51.69936708394487],[4.143641042215762,51.70035018492673],[4.136555375445576,51.70194759627797],[4.134461336480011,51.702572733653824],[4.133666368687019,51.70302179836508],[4.132964432990259,51.70341069096577],[4.132054466771262,51.70363218092647],[4.130823753936358,51.70391629165267],[4.130081481516359,51.70384225916045],[4.129604045465738,51.703804100813976],[4.129072541849546,51.7037983931777],[4.128656530178279,51.703463585700426],[4.128741692075598,51.70422427940521],[4.129045895718148,51.70475608951538],[4.129243802279547,51.70528675635564],[4.129225427488005,51.70594723650189],[4.128531681633313,51.70603888606776],[4.128547308916329,51.70547747748875],[4.128462148110543,51.70471678374233],[4.128266092011346,51.70412006677575],[4.127856521276646,51.70355408832163],[4.127576971894185,51.70404659056147],[4.126989553413632,51.70413937417648],[4.126893376473133,51.70377496663395],[4.126306880995102,51.7038347224425],[4.125867860959263,51.70432550400338],[4.125588285115371,51.704818001370604],[4.125059535530545,51.70471320415632],[4.124247506815927,51.705232993421724],[4.123111003350178,51.705947480112094],[4.123559846504177,51.70700940725884],[4.111504202976056,51.70839829866325],[4.108844561195029,51.70843537229365],[4.105553601423272,51.7082342419144],[4.096581701658437,51.707739328194926],[4.095499421459524,51.70653817365749],[4.092254249736844,51.70660144519137],[4.090981416073976,51.70648826556933],[4.08985573006419,51.706806143988516],[4.08802954233749,51.707446586020374],[4.087170532246146,51.70773436267792],[4.086592484145976,51.70749670715054],[4.086563035477548,51.70852043638797],[4.085912817341512,51.70894265830578],[4.085227498769557,51.70873683896614],[4.085824566081827,51.70831403035017],[4.08578947067217,51.70768599283894],[4.084943757998122,51.70751142319943],[4.084720677785565,51.707872318166565],[4.082443614755155,51.70754967014734],[4.082470297125592,51.70662501212528],[4.08121439589082,51.707767211087486],[4.078973317881558,51.70803951126291],[4.078483456319621,51.70843044865111],[4.078102767012299,51.70872350227509],[4.076501404938131,51.708936834712944],[4.070200914845737,51.70800728010166],[4.064138435178695,51.70985494703043],[4.061564657783705,51.71058563711232],[4.060587477934945,51.7112682935178],[4.059468065783705,51.71317159657482],[4.058963426004619,51.71405780064369],[4.058726519349525,51.714880969669274],[4.057886606672824,51.714508065608435],[4.058243439483509,51.71322377896813],[4.058626237563665,51.71286474424088],[4.058744202237802,51.712469671623936],[4.058861194519594,51.71210762161381],[4.05909032273661,51.711548637646914],[4.058346105569086,51.71154019790152],[4.057394114115334,51.71136422350357],[4.05643338011151,51.71148545039526],[4.05457479031922,51.71139825368994],[4.05356673580434,51.71132071341351],[4.052552835434415,51.71144130326771],[4.051486746521007,51.711528255539214],[4.050637191677181,51.711485530971174],[4.050468930379694,51.71178091978517],[4.049823212997272,51.712037823854956],[4.049754423548751,51.71256558745141],[4.049583219611557,51.7129600446468],[4.049413968630518,51.71328845450082],[4.049510517152399,51.713619899505076],[4.049814825940785,51.714118888072775],[4.049800171058349,51.714614234901106],[4.050104489618695,51.715113223598706],[4.050506352052796,51.715910631209695],[4.050700455188204,51.71654049751861],[4.05030584259359,51.71729578293397],[4.050068760892594,51.718118934458225],[4.049677055394526,51.718775147862914],[4.049451683047829,51.7192020201772],[4.048902410329491,51.71979036427428],[4.048361928671424,51.72008149777612],[4.047704335997954,51.72073466702176],[4.046938427893262,51.72145266125923],[4.045792459684782,51.72243057569583],[4.045023548665301,51.72324762655893],[4.043824319702116,51.724224911233414],[4.043334960759618,51.72458267671608],[4.04278652651641,51.72513796788295],[4.042617178341922,51.72546636804899],[4.041752624135341,51.725918923252316],[4.041529107584558,51.726279733694035],[4.040934340578375,51.72660324407869],[4.040539475616355,51.72735849581438],[4.040354354231031,51.72821525962471],[4.040323840379562,51.72923897204986],[4.040421339462083,51.72953740049487],[4.041317517706947,51.72981197212668],[4.041626760353818,51.73014586601805],[4.042583016588473,51.73018987757625],[4.043278285225209,51.73006571584536],[4.043976495112773,51.72984248240073],[4.044725914441593,51.72968589909655],[4.044284776192277,51.730209392768586],[4.043372859099254,51.73046321212475],[4.044107566650471,51.730801977777936],[4.044201167757361,51.73123249591042],[4.043725482281215,51.73112794092754],[4.043251765002077,51.730957337214356],[4.042667757929737,51.73091760305625],[4.042339825597582,51.731211148420726],[4.041009313642876,51.731228905510335],[4.04086649761361,51.730665682174276],[4.039949628995076,51.7310845898922],[4.039509406783352,51.731575041892654],[4.03918145064817,51.73186857832472],[4.038405357375689,51.732916744764296],[4.037941431474964,51.734199741093256],[4.037690223141055,51.73548518542094],[4.036069948326529,51.736292372295864],[4.034725443972144,51.73677237752087],[4.03320550979261,51.73777888990571],[4.032483356378093,51.738794607762216],[4.032449683631754,51.73991738431427],[4.032790337651496,51.74097841876825],[4.033343782261905,51.74204191026929],[4.033811640776139,51.742410691021576],[4.034172129951911,51.74281126504565],[4.034855751129333,51.74308342898209],[4.035654664551767,51.74305961081363],[4.036930357941293,51.74310734865309],[4.037674103189593,51.74314894955994],[4.038258263718546,51.743188708199625],[4.038196191174812,51.743485302137074],[4.037556858620497,51.74351097633583],[4.037174618847978,51.743836916237555],[4.036272263728462,51.743760450386034],[4.035585659105146,51.74358736271421],[4.034841908659916,51.74354574943574],[4.033925711493652,51.743931585050085],[4.033382863957579,51.744288692956935],[4.032943429368984,51.74474609652008],[4.033093120031172,51.745078168431476],[4.032871418739173,51.74537291544517],[4.032343403724883,51.745234676009645],[4.031702061187571,51.74532636284417],[4.03087037910688,51.746439907643705],[4.030538290232399,51.74686550990773],[4.030209170391105,51.74719204244334],[4.029733351554253,51.7470874294731],[4.029026859698623,51.747574759301],[4.028718584264426,51.74720780947634],[4.028940323126701,51.74691307142065],[4.029167022644287,51.746453217806774],[4.029756180789193,51.74632790562032],[4.029771068948192,51.74583256378358],[4.030047974382297,51.745472393192216],[4.030592847724398,51.74504925539476],[4.030609709917828,51.74448786780135],[4.030622604213254,51.744058571275175],[4.030793100647206,51.74369716730622],[4.030281978611609,51.742997530968225],[4.029653565338879,51.742659910173145],[4.029590445944605,51.74298952260476],[4.028941185408991,51.74334537657416],[4.028408238961564,51.743372233750186],[4.027929481653276,51.74336668226313],[4.027239932499814,51.74329261451778],[4.026771122717669,51.742956830895],[4.026521067315545,51.74242537861831],[4.027053007747763,51.742431553160394],[4.027586937854226,51.74237167980874],[4.026637402612925,51.742096386336996],[4.02606023295257,51.74182540937736],[4.025585474314728,51.74168775744331],[4.024574804053814,51.74167601114501],[4.023717731919738,51.741864249003264],[4.023064452328026,51.74235216206587],[4.022463354532852,51.74287371397146],[4.021911444370653,51.74352797311399],[4.021682689312366,51.74405385708023],[4.021552333779272,51.744845162552615],[4.021326563790752,51.74527197814945],[4.021101788352714,51.74566577106144],[4.020767615196008,51.74615739068853],[4.020802828993043,51.746752419619185],[4.020467645079068,51.747277060498284],[4.020133452949429,51.747768678164604],[4.020217862732458,51.74849641821446],[4.020147666951365,51.74905718310736],[4.019968066595243,51.749715775189635],[4.019571645893659,51.75050397458753],[4.018958391484036,51.75142177903194],[4.018508733242132,51.75220935352113],[4.018551928744755,51.75254020086913],[4.017964661538602,51.752599411038254],[4.017435608188299,51.75249412748022],[4.018480705968111,51.75313398749638],[4.0181414405552,51.75379071239589],[4.018441665769918,51.75442187045687],[4.018474852229002,51.75508294466926],[4.019154560766595,51.75548729055948],[4.019841282033996,51.755660474689094],[4.020585217217278,51.75570218377213],[4.021175518785988,51.75554389318769],[4.021914459113251,51.75575070741867],[4.023127309227188,51.7561282042298],[4.023757852943854,51.756399813796556],[4.023748877774997,51.756697018133934],[4.024276001512892,51.75686831959299],[4.02475888743976,51.75674179584794],[4.02544066947549,51.75708006017303],[4.025911606364441,51.75734980374216],[4.025424732900802,51.757608423790955],[4.02616870565071,51.75765009756233],[4.02642182702913,51.75808248153487],[4.027156853934277,51.75842135361091],[4.027733247092843,51.75872534770301],[4.027826747383212,51.759155877267176],[4.026711248187818,51.75907686849897],[4.02623332011571,51.75903828727286],[4.025553494657275,51.7586339812722],[4.024550418814378,51.7583580521177],[4.023849677213117,51.75864721339379],[4.023365770768633,51.75880675547753],[4.022083658503868,51.75895700429617],[4.021230244058621,51.75901313190547],[4.021059612227044,51.75937452087991],[4.020725334303375,51.759866139273726],[4.020288619938182,51.76022442536029],[4.019748468886072,51.760482400144674],[4.019002454136871,51.760506730667124],[4.018873002422938,51.76126500837513],[4.01880477208491,51.761759726409466],[4.019060846499766,51.76209305860517],[4.019368143116171,51.76249305545212],[4.019456568182094,51.763088704612606],[4.019817091571076,51.76348932110687],[4.020339281023141,51.76382575376333],[4.020918695236909,51.764030713044754],[4.021442896060365,51.76430109471111],[4.022236199882697,51.76447550504779],[4.022718174818944,51.764382012286546],[4.02323340982222,51.7649495908587],[4.023224429005865,51.76524679396001],[4.023054787083937,51.7655751633986],[4.022310686862749,51.76553346854535],[4.021923155260144,51.76602447032023],[4.021753500913143,51.76635283780337],[4.022058851113127,51.766818872770884],[4.022096094505711,51.767347854916046],[4.022294008488523,51.76784567287422],[4.022761044988351,51.768247519499305],[4.023762333794605,51.76858951052742],[4.024296576432044,51.768529653440645],[4.024886036631358,51.76840436621611],[4.02546951558795,51.76847721358843],[4.025027771466107,51.76900062950839],[4.023799597006049,51.76911849118853],[4.022843535861032,51.7690413015105],[4.022357516833879,51.76926688492905],[4.021920723711423,51.769625176445665],[4.021747057766954,51.770085633157834],[4.022272332288297,51.770322989070664],[4.022251358738028,51.77101646470677],[4.022224391691272,51.77190807486763],[4.022257645498662,51.77256914699612],[4.022129210862458,51.77329440523355],[4.021522690015664,51.773981061440026],[4.021565926981195,51.77431190703754],[4.021338008051428,51.774804765874634],[4.02099362069527,51.77562661027059],[4.020692453418548,51.776779299348405],[4.020561980666824,51.77757060047757],[4.020740920192457,51.778695849252394],[4.020677682922665,51.779025454266794],[4.019539684560366,51.779672872319956],[4.019000295329691,51.77989782016538],[4.018450884159837,51.78045299058577],[4.01796071117511,51.780810644984605],[4.016987362266895,51.78129478965934],[4.016439915887519,51.781783905455136],[4.015625248878312,51.782302928409166],[4.013990832831575,51.78350606881864],[4.012623553167247,51.78467928368624],[4.011364707921881,51.78578768672529],[4.010544871256802,51.786471786136964],[4.009409563972947,51.787020036499456],[4.008214927313692,51.78776578388731],[4.007460375148901,51.788054218119676],[4.006649534250637,51.78844108726924],[4.005402576455965,51.78915315689117],[4.004485198346039,51.7895387570129],[4.003882241518441,51.790093229712255],[4.002896379442794,51.79097352324198],[4.002022053375691,51.79168995517233],[4.001735508166372,51.792347256750546],[4.00112435948122,51.793165892962925],[4.000728236290647,51.7939210004103],[4.000492881371922,51.794644972648655],[4.000524813430784,51.79533906990603],[4.000509582707527,51.79583440404726],[4.000978741904824,51.79617029201698],[4.001179590725727,51.796569077302486],[4.000743378923585,51.79689426454295],[4.000206738402161,51.79702005725314],[3.999240979778522,51.7972398738995],[3.998588661291785,51.797661599175015],[3.997610671653681,51.798277668864415],[3.995879880640974,51.79911604429552],[3.994476752618222,51.799694011206626],[3.993125828723909,51.80030561583711],[3.992206076969705,51.800757162502215],[3.991448138677653,51.80114455805025],[3.990095085419164,51.801822172512125],[3.987044713229168,51.80224828372192],[3.983084887401688,51.801077785086584],[3.979403595006872,51.80123186928061],[3.976582745746406,51.80113191325525],[3.973869470550239,51.80100015057981],[3.972435535206258,51.80085072764558],[3.970946274134986,51.80076668796575],[3.968101830572026,51.80311079273787],[3.957256688161982,51.804003166166815],[3.955128168705214,51.803911132335344],[3.953053974531531,51.80378668900184],[3.951573066800202,51.803438229842726],[3.950566299621728,51.803260731577254],[3.949395535090529,51.803213352789214],[3.948387727890491,51.8030688579475],[3.947701619403412,51.8028622333533],[3.947557642754317,51.802364947833],[3.946874713383015,51.802059253165346],[3.946193903976614,51.801687511354245],[3.946261941205391,51.801225863274524],[3.946112708655672,51.80089368351536],[3.944849219686429,51.80041567061363],[3.942476812397224,51.79962667867327],[3.94021206602564,51.79880593194039],[3.938309598533347,51.79831996331828],[3.937145347498436,51.798074333693535],[3.936100375992723,51.79743375241177],[3.935609367648404,51.79779105855343],[3.936390172394573,51.79836230786105],[3.934906382810196,51.798112703268124],[3.93540696830009,51.79745820630667],[3.934724195990296,51.79715244132363],[3.933307577137795,51.79812593233591],[3.930281472569143,51.797791072699304],[3.928318422150763,51.797535430527184],[3.925715238948679,51.7973048163049],[3.924938871357435,51.79660141010516],[3.9207795327353,51.796714658043385],[3.919409920736581,51.79623504073729],[3.918242601381189,51.796088287478085],[3.917287235244954,51.795977215010105],[3.916599225042539,51.795836451852914],[3.916076368887324,51.795532581830265],[3.915174273781373,51.7954221592254],[3.914207063851725,51.79567429591179],[3.91334959233137,51.79582869796029],[3.912446418314842,51.795751276057445],[3.912194184338756,51.79531865157462],[3.911239929182207,51.795174508279054],[3.911887621867137,51.79491837839799],[3.912542864120052,51.79443109587177],[3.913071080518233,51.79456987494622],[3.913553597615188,51.794476833458496],[3.913304598992363,51.79394514804282],[3.911621039321181,51.79329631721144],[3.910771171570095,51.793219552537614],[3.909973476099188,51.79317647406102],[3.909563689542547,51.792675789348905],[3.908456242988564,51.79233148282905],[3.907505313300399,51.79208824629649],[3.906969558417317,51.79218059002784],[3.90632187899983,51.792436692893006],[3.905316622646841,51.79222578698909],[3.902965994522368,51.79242730841788],[3.900716404383862,51.79279523745488],[3.89931444539535,51.79330601998595],[3.897642921020462,51.793912467115895],[3.897121308090909,51.79357549254214],[3.896639857389455,51.79363544483998],[3.89600410924143,51.793528258563704],[3.895167372755739,51.7930551285802],[3.894158877756504,51.792943189829],[3.893468799995302,51.79286833342302],[3.89267769399164,51.79262701051782],[3.892089746156361,51.79268558702301],[3.891094412104762,51.792177370200896],[3.890628308795106,51.79177500424591],[3.890482804756502,51.79134369268419],[3.890068868782605,51.79097502457327],[3.889656035935682,51.79057333450019],[3.889567082749593,51.79004363835666],[3.889750943495075,51.78931921592194],[3.890087960589593,51.78879495817567],[3.890796593775716,51.78830847708161],[3.891400911677724,51.78775459147362],[3.891956349521985,51.78706793981935],[3.892763764575565,51.78681395170404],[3.893201745909016,51.786456147095095],[3.893960273047597,51.78606938738088],[3.89450035206359,51.78584501778044],[3.894937217824575,51.78552022805106],[3.895123159097262,51.784729754336155],[3.894395261363574,51.784191931684376],[3.892429006965164,51.78244906561559],[3.891319753313242,51.782170640434416],[3.890795035479066,51.78193270146465],[3.890213799095317,51.781793142230654],[3.889527187082654,51.78161920067883],[3.8887972142706,51.78114738465821],[3.888270327537424,51.780975475537225],[3.887606512716345,51.780917436255194],[3.887062897799988,51.780447993039715],[3.886073632709506,51.78056747352259],[3.885278384737048,51.780458185191584],[3.884622828235196,51.78015247127604],[3.884042184195994,51.77999637179406],[3.883329006999141,51.77982205292471],[3.882827673690628,51.77968348220688],[3.882711102129447,51.77918645959914],[3.882259708672444,51.77914763269104],[3.882007483902775,51.77952429913725],[3.881104141200669,51.7794631470275],[3.879986758429075,51.77943227341589],[3.878791179990234,51.779350829113305],[3.878331506023985,51.779559643389604],[3.877634478539027,51.779699330450065],[3.877188057783423,51.779511889945944],[3.876905301839876,51.780003775204186],[3.875614925949375,51.78036705291365],[3.874857447522151,51.78072067271978],[3.874213627258218,51.780861025873115],[3.873646335642186,51.781101468163996],[3.873236533498123,51.78141001223907],[3.872399161664414,51.78176258495939],[3.871621116671534,51.78193422478952],[3.870703331295063,51.78150942036867],[3.872566088247695,51.7850199921983],[3.870417181317837,51.781505719495506],[3.86879271660481,51.778976057942586],[3.868798053767299,51.77897409266909],[3.869252222832609,51.77873220856721],[3.869099742423541,51.77851550597544],[3.868565739380863,51.778558144733],[3.866989482500049,51.776340879270705],[3.867397057725983,51.77609839924302],[3.868631922777015,51.775800563710355],[3.868797170559672,51.77563752840011],[3.868295928919085,51.77549889495448],[3.866573185627525,51.77526183731012],[3.866069730182651,51.775189236773116],[3.865917833506653,51.77495602037514],[3.862435810331932,51.76926176590247],[3.859609028399423,51.7646826181097],[3.86011591237418,51.76386334011287],[3.85941112102664,51.76266488632215],[3.858290256458368,51.76274937982165],[3.857295655511114,51.76146454498619],[3.856363280106531,51.759916230418675],[3.855301282906194,51.75799817993933],[3.856049516148794,51.757591659204984],[3.856634744896148,51.75728236900254],[3.857118997572514,51.75712996596975],[3.857824194596956,51.757059936179225],[3.858467391278746,51.756929474119715],[3.858796701365314,51.75663645033454],[3.859273552246954,51.756702285464456],[3.859231487723398,51.75699905514043],[3.8588728505959,51.75721246433932],[3.858797181309456,51.75756815630515],[3.858980099957837,51.75782811339896],[3.859520566988247,51.75789477673886],[3.85981183644976,51.75777959315482],[3.860078885222941,51.75744600883208],[3.859892610448019,51.757285116033465],[3.860163253923027,51.756832858145565],[3.860669449228932,51.756978044326814],[3.860628726799882,51.75723534419272],[3.860874329873,51.75753586027671],[3.861350530701811,51.75762129321554],[3.861300446819174,51.75815565837481],[3.862041141741238,51.7589186570575],[3.863245639352219,51.76071487204199],[3.863698170717651,51.76028277855657],[3.863573149771847,51.75966174168653],[3.863924228312192,51.759364083597006],[3.864714221534701,51.759012506409796],[3.864971153440635,51.75860806434947],[3.865662161123711,51.758330041801365],[3.866522677403166,51.75806918321665],[3.867140920096896,51.75779020812549],[3.868000072871119,51.757544548069035],[3.868830351554852,51.757464716348004],[3.869272552355651,51.75734965834498],[3.869086222795416,51.75709044766393],[3.869522843014661,51.757141267009985],[3.870247028834232,51.7565921388394],[3.870349369712425,51.75644248156191],[3.870664692547937,51.756476758145034],[3.871135736178418,51.75619585787912],[3.871793944374237,51.756174172280055],[3.872039143501959,51.7561169494744],[3.872139953717396,51.756012694471],[3.871955553872426,51.75570809068337],[3.871887459489995,51.75555622884221],[3.871649866484959,51.75538694869203],[3.871362625982442,51.755247221806584],[3.870979039445972,51.75509128000797],[3.871200818516598,51.75498833247051],[3.871634468069375,51.755114725061055],[3.871968220462531,51.75533067188275],[3.872471486083702,51.755563777214384],[3.872787315021543,51.755582826881174],[3.873354410906408,51.75536355122987],[3.873898490227968,51.75509881018561],[3.874224922401272,51.75480131984866],[3.87435329282219,51.75460657161887],[3.874293793098369,51.75419802550494],[3.874174952466133,51.754120871349585],[3.874610293234626,51.7541719134567],[3.874640384074476,51.754006093329394],[3.874629012584267,51.75361313729865],[3.874585437088801,51.75346159343815],[3.874318584497925,51.7534581495108],[3.874336529851527,51.753654786240006],[3.874278286044087,51.753941027812566],[3.874015155950811,51.75380161859125],[3.874105507906673,51.75328944871912],[3.873273056578901,51.752704971080654],[3.872631012432989,51.752258701639576],[3.871919889437313,51.751690491668676],[3.871544531581488,51.75127786003269],[3.871286994231903,51.75097256707172],[3.870542061061381,51.750706390489356],[3.869766626665823,51.75060576484975],[3.869083281560035,51.75067253640332],[3.868419581846811,51.750859826698736],[3.868098624333406,51.75100664915755],[3.868095569348296,51.75109745681838],[3.868655525864396,51.75108948496232],[3.868773845935126,51.75118160705401],[3.868697553778264,51.75128643483597],[3.868283491210821,51.75129603871157],[3.868034841554669,51.75144405602738],[3.868171228606888,51.751604806333226],[3.868058567435003,51.751900662939256],[3.867789359651523,51.752313470161624],[3.867492399049053,51.752587065127045],[3.867132924146246,51.752839975838725],[3.865966283923962,51.75334050070568],[3.864835640951593,51.753722244628584],[3.863287191466604,51.75417390907136],[3.862641242898114,51.754387464855874],[3.86180555381112,51.754554932288976],[3.861037730482624,51.754584425451164],[3.859921083781129,51.754550266538644],[3.858515212985,51.75457142798944],[3.858220606328655,51.7547856701385],[3.857793693147537,51.75513677853187],[3.856662938175912,51.75551844400644],[3.855822757009114,51.75580478884451],[3.854500339721658,51.75618392876225],[3.853336173500529,51.756604870587104],[3.852925362832225,51.75648051586973],[3.852417181305413,51.75639462971062],[3.851841617858689,51.75640696521632],[3.851263100960728,51.756518365654294],[3.850490930965193,51.75668658448597],[3.84965136580782,51.75695302077838],[3.848648789888554,51.75731641730364],[3.847940197622056,51.75748545487791],[3.84745591056446,51.75763781894644],[3.846880745726904,51.75765013548111],[3.846340564764948,51.7575635445084],[3.845549871397385,51.7573353211847],[3.844506671395274,51.75702427791417],[3.841977851961949,51.75637723381561],[3.839219432380903,51.75809868615781],[3.840053038129581,51.758372684559504],[3.84232905335129,51.75905695777622],[3.848875144149966,51.760986573005475],[3.850592155810137,51.7616667022746],[3.852384543015212,51.76263917407244],[3.854415622795928,51.763970643345026],[3.855942933015391,51.76524594465317],[3.857021885453686,51.766399749968684],[3.858019942313022,51.76758552440885],[3.861250217139232,51.772830665162935],[3.862834279251721,51.775593194639335],[3.8641819030819,51.777477196198284],[3.865111562114336,51.77912450973588],[3.866068007178733,51.779979317907014],[3.867433045611406,51.77947671375698],[3.866074662401343,51.779979404238134],[3.865317701300841,51.78011824100021],[3.864412698867985,51.78010649207665],[3.864481406728438,51.7804377368313],[3.864980340601325,51.78143527025149],[3.865282937454888,51.78272757010491],[3.865326592845126,51.7838017800532],[3.865257639193513,51.78505622151602],[3.865219759595182,51.78617892643328],[3.864726518199312,51.78737830778657],[3.864188366447215,51.78832933974359],[3.863852167877308,51.78882050078407],[3.870864653217038,51.78715819257437],[3.863858822949719,51.7888205872272],[3.862079464858788,51.79162196965496],[3.860706132573299,51.79363576704541],[3.860030216049959,51.794717128199785],[3.858939756638971,51.79623906102306],[3.858041779318776,51.79758179967639],[3.857094971990018,51.79879175419765],[3.856562125486227,51.7995776465628],[3.856159044792375,51.80046433541461],[3.855663720101302,51.80171320652423],[3.855293669816614,51.8031949572023],[3.855134407266388,51.80474553008597],[3.855136315301452,51.80704149906474],[3.855204696201459,51.808165587194026],[3.855232716536092,51.80890924443508],[3.855479426706934,51.809490581059535],[3.855644556231983,51.81012040452039],[3.856180906970404,51.810804626054576],[3.856555774414637,51.81153629064005],[3.857455542849113,51.81250604436038],[3.85898401126495,51.813797815525035],[3.860470475257695,51.814758668596625],[3.861406531428848,51.815448065227514],[3.863569532469901,51.81689668211426],[3.864821455662157,51.817705774185775],[3.866289890097126,51.81841855362959],[3.867631847460085,51.818931466318965],[3.868505426936723,51.819107952035736],[3.870119955705773,51.819442670380596],[3.872531525486711,51.81985372870143],[3.874841559100528,51.82011477088996],[3.87656439874045,51.820401243558344],[3.879018312873255,51.82114306181879],[3.880760686240686,51.82164445130576],[3.881551132092118,51.821918875814674],[3.882022426480888,51.82217268376555],[3.881798253286867,51.822500157808214],[3.882508790196659,51.82277355044905],[3.883627801578875,51.82278789440938],[3.885278023612765,51.82285858024334],[3.886550298335662,51.823073067963335],[3.888060728628162,51.82334013578251],[3.889328090944305,51.82370318647248],[3.890782529108458,51.824052092351174],[3.891840068192907,51.824313334674166],[3.89324180534778,51.82464502047167],[3.89493391830931,51.82506296866432],[3.896099723463409,51.82527599782363],[3.896950715249048,51.82533636009093],[3.897928932120137,51.825580022818166],[3.898854414245674,51.825806490845125],[3.90017958288286,51.82603801695059],[3.901347072001953,51.82620146204495],[3.902220382532482,51.82639420744658],[3.903706547397749,51.82659469541033],[3.904557574786382,51.82665500353715],[3.905409691973571,51.82668228405914],[3.906710987259274,51.826830847387384],[3.907902456991696,51.82707711547949],[3.911875556840894,51.82785389631317],[3.914283107381094,51.82841269438602],[3.919544941142127,51.82973393524086],[3.925675771152711,51.83139610923835],[3.93106300003145,51.83298266591854],[3.936141439216137,51.83423480846194],[3.94259755399365,51.83576797030149],[3.948644548567072,51.83676720776947],[3.957352887995096,51.83793072003524],[3.962342725573876,51.838652088546596],[3.967027459083601,51.83890707135577],[3.975558655398169,51.83894391660139],[3.982381979074518,51.839025781353634],[3.989316045763855,51.838976431531485],[3.993375588166385,51.8387604358111],[3.997223901736234,51.83847572962875],[4.000860975514255,51.838122335535715],[4.005350892525808,51.83777887203616],[4.009094460284587,51.837426477454635],[4.01253022957749,51.836673950211676],[4.016601517878287,51.836060882304515],[4.019069571971485,51.83556113346126],[4.022621644094503,51.83447932817373],[4.024238710960438,51.83390350663155],[4.026509315308405,51.83287276555458],[4.028556659964156,51.83216973635952],[4.029851781185897,51.83165617812797],[4.030629792966089,51.83060808674637],[4.031076970205399,51.83065570832751],[4.03348005509176,51.831623500141646],[4.034234281299753,51.831531031185534],[4.033856428261782,51.83106110206462],[4.033242955741565,51.83082240181769],[4.031563809700124,51.82968979851463],[4.028946294353878,51.82764652523738],[4.028587655299765,51.82713628248672],[4.029105090978197,51.826717217512375],[4.030139787673442,51.82707320505317],[4.030119355285709,51.82665914066947],[4.035739792580476,51.8238204959993],[4.036680898250061,51.824519495244594],[4.037311546369145,51.82418260525959],[4.038177319590753,51.82472794304803],[4.038308633234741,51.82502271925012],[4.038320293520154,51.82512741385404],[4.038326103192977,51.825183740990525],[4.038319508508149,51.82523708758265],[4.038305050647259,51.82528879491208],[4.0382863242848,51.82533000116277],[4.038267588388273,51.82535698691923],[4.03299846762965,51.828077891225504],[4.033313745682995,51.82954792698586],[4.034522694652967,51.829541737515854],[4.035511554595892,51.829249373553544],[4.037011379875339,51.828751643843674],[4.038066179490146,51.828439887181496],[4.038989618569872,51.82814687159627],[4.039759561056397,51.828014029253595],[4.040575041274663,51.82804364892648],[4.041322546501468,51.82817364946157],[4.042290603653183,51.82858967053007],[4.042941484414081,51.829152638905256],[4.043742925715835,51.829667777449124],[4.044413536282775,51.82932153171175],[4.044444377062916,51.829345723615674],[4.044746517915907,51.82920052846033],[4.044835703013212,51.829142964575595],[4.044904510087235,51.82909832985535],[4.044972467708869,51.82905420137292],[4.045197917791761,51.82893858048763],[4.045483861613484,51.82879164937498],[4.045468020410066,51.82877706812006],[4.045600881729393,51.82870846688209],[4.04511690308806,51.82740751402793],[4.044886854281484,51.82636354051608],[4.044529622865151,51.825185330307185],[4.044386586632312,51.82450662746544],[4.044456696312441,51.82407191823068],[4.044531157656927,51.82381998943707],[4.044648173590101,51.82352686170569],[4.044656916765136,51.82350714095444],[4.044782056430203,51.82329663972683],[4.045152194568836,51.822936468258],[4.045721878193549,51.82244824743198],[4.046470067631399,51.82195070812582],[4.046072995009228,51.82205344507631],[4.046081242485749,51.82204381817376],[4.046077367792518,51.82200609472573],[4.046065313981259,51.82197731037082],[4.046029854497984,51.82195135536354],[4.045968269586296,51.821935683189785],[4.045890857776896,51.82193402437488],[4.043998024045854,51.82243833548521],[4.043203000069554,51.82264782395018],[4.042801548138671,51.822758843757676],[4.042436400652687,51.82286744028819],[4.041234454300242,51.82330520187858],[4.041042088928512,51.823354963200785],[4.040430227061796,51.82306457329844],[4.040782888464838,51.82218934872315],[4.039237203784952,51.82095708956278],[4.042402842123038,51.81934481119225],[4.043520717181015,51.818487121484786],[4.042707404594585,51.817902033891436],[4.043653007456248,51.817346126397126],[4.044241390256333,51.817332474072586],[4.048186704220316,51.8202406744217],[4.049080796711923,51.82092806908877],[4.049327040275585,51.82033471836283],[4.049875475833169,51.819956434166336],[4.050832748945428,51.81962332321531],[4.051791395916458,51.81922931419441],[4.052778115450974,51.818997688673186],[4.053451231558062,51.81882313874115],[4.055197551356247,51.81830772329206],[4.056188602098548,51.81791404663969],[4.057133260703352,51.81739853906514],[4.057600475199308,51.817059817585616],[4.058263930516726,51.81670292907113],[4.058931036555577,51.816235878840246],[4.059433496342282,51.81581651238252],[4.06027805316824,51.81536049602197],[4.061142283207536,51.81484378920897],[4.062041000933509,51.81425804318362],[4.06264122629975,51.81383976743228],[4.063616411936973,51.81338520209331],[4.064671857472102,51.813032698429176],[4.065873352865311,51.812569309909016],[4.068891400493482,51.811679344535094],[4.070921094893983,51.8111395262506],[4.072259572344306,51.81074341849184],[4.073421960347552,51.810388422693414],[4.07485573752233,51.80993502777064],[4.075735445211699,51.80970691809731],[4.076261552246034,51.80962608437511],[4.076857157408709,51.80954628251992],[4.07733495933717,51.80955161792419]],[[4.232984973493981,51.66095333178047],[4.233515135344692,51.660633901334215],[4.233470359649239,51.66102315157319],[4.232984973493981,51.66095333178047]],[[4.023107679377768,51.763824962473564],[4.023440962009068,51.76336636057046],[4.02392092800885,51.76333890805594],[4.023107679377768,51.763824962473564]],[[3.889883441642975,51.79335117680522],[3.890064022851799,51.79272581750543],[3.890553142900762,51.79243474498742],[3.889883441642975,51.79335117680522]],[[4.363787534135303,51.68235866152112],[4.36455479831966,51.682300588881645],[4.365565221728131,51.682266053012256],[4.36454795264077,51.68260350178383],[4.363133204603567,51.682526104867044],[4.363787534135303,51.68235866152112]],[[4.026966886029523,51.75765936182007],[4.027662620408576,51.75753529567439],[4.028359344907783,51.75737820223261],[4.028296193054387,51.7577078133189],[4.027859559552017,51.75806612798109],[4.027275216316021,51.758026316022416],[4.026966886029523,51.75765936182007]]],[[[4.437904365048951,51.8323264455268],[4.437923836697081,51.832291893332176],[4.438064131620303,51.832137287388065],[4.43825170878365,51.83215041675903],[4.43867781463992,51.83213063540241],[4.442215265435231,51.83181775250437],[4.443119069049349,51.83170089710736],[4.443244988326978,51.83167481375788],[4.443435640138032,51.83152125186013],[4.444185791927785,51.830386905389226],[4.444248579992107,51.83033218486036],[4.444415369880983,51.83018397762957],[4.444544775242237,51.830110437165274],[4.444771458328391,51.83006567802358],[4.445087925610723,51.830049509154435],[4.445908667127737,51.83001880368727],[4.446782198791261,51.829993160911556],[4.447678091446433,51.82995375517885],[4.448551524168527,51.8299327439029],[4.448912963193018,51.82991692436553],[4.449233646449188,51.82999819673439],[4.449468933369983,51.83004007632003],[4.449848446942281,51.830056397783245],[4.450106498035379,51.83004516825398],[4.450293707673891,51.83001556575322],[4.450660029921036,51.82996519962809],[4.450839373942441,51.82995334045211],[4.450940196504872,51.82993195120826],[4.451119194042787,51.82989660541828],[4.451678028794786,51.82994222184385],[4.451949823731099,51.82997109738048],[4.452859908558715,51.83005047309358],[4.453246684012758,51.83005806733279],[4.453555494921043,51.83002929862457],[4.454855310310723,51.82989318140992],[4.456723122062627,51.82966129668779],[4.457410674675894,51.82958506882088],[4.457959426469703,51.82951380202624],[4.458885684381413,51.82939442361614],[4.45962269192399,51.82928257447044],[4.459981883456358,51.82923380030086],[4.460251376614251,51.82919244530713],[4.460514124541642,51.82915490794439],[4.460655204805609,51.82914015098871],[4.460822264546533,51.82911772736749],[4.461046700532624,51.82907988642931],[4.461303945041723,51.829026433147604],[4.461458006817272,51.82898790681795],[4.461605573325696,51.828961457734614],[4.461797953809448,51.82894310390754],[4.46232321158329,51.82889976128142],[4.466089294999135,51.82879105559239],[4.466546293747728,51.82939747233967],[4.466724864492199,51.82944351691687],[4.466853879628601,51.829489173555935],[4.466988740578581,51.829574875381105],[4.467022915567408,51.8296554002839],[4.467062313525765,51.8298473191317],[4.467038656119296,51.82994519666241],[4.467051084024819,51.830030067062246],[4.46709312063378,51.83009271900916],[4.467233991296774,51.83012904783267],[4.468093246658452,51.83008803870688],[4.468247921154942,51.83008060431046],[4.46839646000211,51.830067703201564],[4.468476434967751,51.83004703911999],[4.468516988158567,51.830019099181165],[4.46854075769447,51.82997683357386],[4.468526855422913,51.82982111426516],[4.468508926764387,51.82957697695813],[4.468543723455543,51.8295453793349],[4.468612305621429,51.82953185123452],[4.468715093388343,51.829536139702924],[4.468995240171059,51.82950297665004],[4.469229326290519,51.829502356391636],[4.469439708180497,51.82939768055646],[4.469444017882173,51.82930881182296],[4.469366711839135,51.82921904781854],[4.469267480606594,51.82914240141143],[4.46917601407356,51.8290526550717],[4.469106152889924,51.82894501366119],[4.469223590428904,51.82884348176678],[4.469461226848209,51.82883192063492],[4.469705123503339,51.82886066632606],[4.469869901968663,51.82888866374511],[4.47007099941502,51.82891255726893],[4.470257161187511,51.82895401124024],[4.470436512514504,51.82898225024567],[4.470623127734991,51.82900151370393],[4.470802388818717,51.82903413890061],[4.470996319690395,51.829062362335875],[4.47140436291071,51.82915031971102],[4.471570013322373,51.82915599952559],[4.471669739168628,51.829188002907884],[4.471907158933183,51.82920766058854],[4.473275059678564,51.82932477010046],[4.472956583524776,51.83005660223699],[4.472868094413911,51.830065976866955],[4.47283643856883,51.8301276652182],[4.472871348133049,51.83017245262544],[4.472964414750223,51.83020440301231],[4.473251813595046,51.83022444721434],[4.473474067491589,51.830252887050015],[4.473511939778475,51.830254343225256],[4.473943157078626,51.830288924619076],[4.47436669822532,51.83033234727883],[4.475285918078279,51.83041523337506],[4.475681087637564,51.83044062485046],[4.476076315112684,51.83048369289997],[4.476435163626172,51.830513316777825],[4.476880689974398,51.83056141692224],[4.477135938588177,51.830564945023184],[4.477658716211012,51.83066525326642],[4.478035967905377,51.83064985400692],[4.47834548022632,51.83068889579935],[4.478854471842709,51.83072948066032],[4.479333713877208,51.83077886519482],[4.480130242536331,51.830853667519754],[4.480381502215128,51.83086928546469],[4.48103185051119,51.83086063154915],[4.481231145799041,51.830871330496365],[4.482933594547998,51.83082162109395],[4.483103505291688,51.83082292995749],[4.483221684818925,51.830828356168325],[4.483481400853298,51.830775389365314],[4.483659907522315,51.83072192542638],[4.483755875338409,51.83071337416709],[4.484095877084033,51.83070695867809],[4.484465681221668,51.83070980339589],[4.486208389813604,51.830666678010815],[4.48719676416198,51.830604325786105],[4.48796481456776,51.83056221386941],[4.491705365252012,51.830337395376965],[4.492041429257242,51.830319314182645],[4.492256465796942,51.830292309251874],[4.4925645967626,51.8302336267897],[4.493587413320451,51.830029680150865],[4.494022907240461,51.82995415749496],[4.494348247231476,51.829888504647265],[4.496078401598601,51.82955133596086],[4.496253035811559,51.82960840225452],[4.496696662782736,51.83089123127476],[4.496747568669589,51.83094981019189],[4.496819810336876,51.830982615490534],[4.497086095890296,51.83095470055887],[4.499048721922038,51.830721184800744],[4.500304420926977,51.83057700490125],[4.502174668135735,51.83035860873186],[4.505077415035224,51.830012337252114],[4.505317896590116,51.82998291897307],[4.505374017174929,51.830009663447754],[4.505408057191305,51.830058047076356],[4.505427739436785,51.830158967608924],[4.505534512681574,51.83047073132039],[4.505596344712878,51.83056745243439],[4.505602064627268,51.8306157527273],[4.505572976505211,51.83065488816246],[4.50563854729637,51.83092247237907],[4.505709828744847,51.83126016271494],[4.505758014133074,51.831330717288616],[4.505834617955482,51.831375033859636],[4.505947722650859,51.83138465705596],[4.506124813644623,51.83135966454953],[4.506744808164104,51.83124186670196],[4.508074676340524,51.83098887141745],[4.50867758831482,51.83087080782122],[4.508883504698804,51.83081983352583],[4.508990049930119,51.83078127683843],[4.509033553328995,51.830728957570706],[4.509041581150859,51.83065895437117],[4.509067331746764,51.830598632571196],[4.509198175259481,51.83061690134601],[4.509224356621074,51.830619935849285],[4.50929984881151,51.83061456519246],[4.509800146946447,51.830482566031016],[4.510189082607463,51.83037979759201],[4.510703610908879,51.83024390090703],[4.510754033887626,51.83032827601912],[4.511224855175076,51.830469465908834],[4.5113169752259,51.830465765920145],[4.511347893050167,51.830460835256645],[4.511444674136384,51.83043162286431],[4.511566225236262,51.8303494344869],[4.512290842753217,51.83014013221669],[4.512390550708607,51.83011029547018],[4.515121252931002,51.829330114277255],[4.515242304444651,51.8292947563733],[4.516816826013282,51.82885483805969],[4.518548366629722,51.82836986837115],[4.518668987685746,51.82835656767854],[4.518812548428455,51.8283199533436],[4.519009740357293,51.82826670356843],[4.519303676723442,51.82818552425524],[4.519522462050116,51.828113852542934],[4.519556828394618,51.82810275283734],[4.519612029717013,51.8280693549064],[4.51964366132007,51.828005589360664],[4.519716770308625,51.82797232464209],[4.520268867598666,51.82780737392782],[4.521317877172093,51.82748789815012],[4.521396937386104,51.82746990152333],[4.521542774192584,51.82744465530964],[4.523187374463358,51.827231229055485],[4.526572794431398,51.826801142620354],[4.526597089012869,51.826793836688964],[4.526604083499748,51.82679827540478],[4.526728253938447,51.82675144450893],[4.52680209219883,51.826701405868185],[4.52685700217292,51.82668297056305],[4.526972348574549,51.826683816009336],[4.527360816798669,51.8266453724821],[4.527488380929979,51.826638823755815],[4.527578804988114,51.82665806588884],[4.527614600005928,51.82668103733111],[4.527644552310242,51.826726417281286],[4.527670717574862,51.82683938049131],[4.527678058973829,51.826869369629044],[4.52774677361682,51.827087932824625],[4.52779954514819,51.827159801702095],[4.527853941620471,51.82719013445731],[4.527932496891572,51.82719845162505],[4.528041671218106,51.82719538025433],[4.528190474712644,51.82718898532849],[4.529453966067303,51.82706274478971],[4.530984594136377,51.82690489176556],[4.532942333158347,51.82671245172369],[4.534623944016756,51.82658558459601],[4.537294108296179,51.82646585588819],[4.537961909316214,51.8264330131822],[4.538428915547728,51.82642529462774],[4.538707568709167,51.826423438815326],[4.540104055803919,51.82648616961403],[4.541478748973102,51.82657866206994],[4.541557223442345,51.82659135605215],[4.541575487558749,51.826594585174085],[4.541635789846853,51.82662134145877],[4.541655575277451,51.82665451505984],[4.541664857364306,51.8266703239757],[4.541669660438605,51.826725066979876],[4.54166997505434,51.8267304885809],[4.541598556094545,51.82698545223013],[4.541244088838292,51.826921480323946],[4.540794417487646,51.826870755238765],[4.540214705203953,51.82684773463248],[4.539257868631997,51.82683618144578],[4.538700705851927,51.82683215494696],[4.538556152011993,51.826812013187855],[4.538243009051164,51.826809748621265],[4.537232901255876,51.82690669449248],[4.536345666040849,51.826980780409734],[4.535886746941208,51.82700093590549],[4.535343856165792,51.82703493146194],[4.534693140226224,51.827110721269946],[4.534427494467226,51.827107243638665],[4.534292853884976,51.82709155607447],[4.533795446902714,51.827120713625895],[4.533210250624215,51.82716729512139],[4.532272777353708,51.82725440412403],[4.531962271581995,51.82728852773422],[4.531686402268742,51.82734096775861],[4.531381043798537,51.82741099891078],[4.531222186728261,51.827464290983876],[4.530957013592053,51.82756738632088],[4.530856801263497,51.82762471919956],[4.530684219047011,51.82778655340417],[4.530558136250283,51.82795595192836],[4.530496529959459,51.828129434439106],[4.530430536604513,51.828205079686214],[4.530616895184052,51.82823895590314],[4.530931997677157,51.828270157614476],[4.531107592936626,51.82827866367493],[4.531241334709581,51.82829796181704],[4.531364044402482,51.828306081809274],[4.532176158533542,51.82835174177136],[4.532293174529165,51.82835259412756],[4.532946768930857,51.828411803295424],[4.533384242508294,51.82846917890934],[4.53405553418937,51.828517671942855],[4.534703583315769,51.828584057077926],[4.535179170489617,51.8286303481628],[4.535827800120479,51.828688214414804],[4.536191631249478,51.82871975540759],[4.536602185027281,51.828747376783326],[4.536952617149585,51.828782818317855],[4.537409269861628,51.828839542976624],[4.538136327653371,51.82893512564],[4.538711620211009,51.82901734879807],[4.539094909344526,51.82907753652427],[4.539935566035054,51.82922334636207],[4.541011795707932,51.82944465461749],[4.541988425928493,51.82966949287171],[4.542104613120317,51.82969252184479],[4.542626977077016,51.82977744126074],[4.543007052355085,51.829831916609756],[4.543613262430418,51.8299100800047],[4.544112721147659,51.829950570137484],[4.544576641158018,51.82997609469437],[4.545124408291123,51.82999473491812],[4.546934279390042,51.83000770509659],[4.547446781449112,51.82999666357406],[4.547899733841337,51.82998506548538],[4.54865057472904,51.82994617480961],[4.549211101860823,51.82990579135466],[4.549998581106457,51.829845089803435],[4.550618657424748,51.82980512435966],[4.551143781957209,51.82976460879921],[4.551322839777119,51.829721626967746],[4.551454977345123,51.829670956186405],[4.551467603621977,51.82964136967678],[4.551113035113624,51.82949123557207],[4.550521362104384,51.82928031385676],[4.549882355462437,51.829061827202096],[4.549242530893624,51.828865265585875],[4.547928878853363,51.82842027604244],[4.546957986783581,51.828110885513084],[4.546270990848162,51.82789926062108],[4.545714758492655,51.827710761608074],[4.545169919605228,51.82755924418159],[4.54486106597039,51.82750541632866],[4.543983373679019,51.82731434453443],[4.543650647361471,51.827267826027665],[4.543246577900322,51.827228018789654],[4.542391111284312,51.82711838214095],[4.54251280695113,51.82671384795782],[4.542700881613222,51.82672294335624],[4.5428617629855,51.82671635876727],[4.545230343109395,51.826665761982596],[4.547874514105692,51.82662095995596],[4.548003961185081,51.82662498219344],[4.548493901355465,51.826660483323565],[4.548777597737724,51.82667851020955],[4.549525270593672,51.82673984692497],[4.549847844071928,51.82675014866952],[4.549988950510667,51.82679915439685],[4.550169080573679,51.82683243824263],[4.550748793933098,51.826900569234255],[4.551496473209997,51.82696189430187],[4.551664733927036,51.82693909310145],[4.551794564805991,51.82690001813235],[4.551964011169859,51.826813225812394],[4.552121734935733,51.82666235161454],[4.552305867180494,51.82647966594402],[4.553045348548639,51.82558868602998],[4.553218756398418,51.82530992447318],[4.553404062568751,51.82506324630631],[4.553564739324878,51.824752136702166],[4.553803448996625,51.82440983985174],[4.554053464242948,51.82413162101273],[4.554304757143036,51.82382915362145],[4.554226653024856,51.82361621718027],[4.554103028306876,51.82352295405008],[4.554046418955124,51.82343145731833],[4.55432897125484,51.82321746800561],[4.5545088980623,51.82323861526939],[4.554726089673736,51.823384152496374],[4.554955773233888,51.82352977879184],[4.555363955778494,51.82379666633588],[4.55569602371191,51.823991014977956],[4.555821539631618,51.824049709111435],[4.555922239903846,51.824054034970246],[4.555994135896921,51.824039576969625],[4.556066501480143,51.823999574376266],[4.556151478138905,51.82390804933149],[4.556176982058046,51.82381223167879],[4.556318669611961,51.82355853090575],[4.556467069173329,51.8232568792491],[4.556635339909537,51.82284853023008],[4.556796284442062,51.822521161076494],[4.557254232803141,51.82155564755191],[4.557316647245563,51.82133209418197],[4.557839614185671,51.82027155668726],[4.558204657837048,51.81953247512122],[4.558274074914119,51.81944858067085],[4.558315852721182,51.819350554783],[4.558431233481008,51.819235243719966],[4.558501843881606,51.81910903573709],[4.558553155095887,51.819081269489374],[4.558755498295525,51.81887883182197],[4.558869490585149,51.81877099368269],[4.559139620266788,51.81839174647752],[4.5605209611422,51.816498302584165],[4.560868785884693,51.81605843912014],[4.561131701961425,51.81573023324405],[4.561761065484982,51.81494448589196],[4.562493537894484,51.814188362365236],[4.56278513034816,51.81386164423988],[4.562863410310579,51.81379303454802],[4.562995953745677,51.813716805932096],[4.563397815374484,51.81346156910264],[4.564659539459925,51.812538311255686],[4.564878046678495,51.81238242682447],[4.565218035171198,51.81213991158575],[4.565281503624775,51.812084099028766],[4.565296287423815,51.81204962277513],[4.565255524924525,51.812001854079924],[4.564274442479264,51.81075836020255],[4.564217558066786,51.810567514318855],[4.564653925950534,51.81042709336373],[4.56491395599138,51.81048207542855],[4.565164424614908,51.810764598238386],[4.565684128668657,51.81141983656001],[4.565697571987413,51.81145889789635],[4.565692022019823,51.81148930940358],[4.565689710904954,51.81150193862719],[4.566012693469699,51.81178109570997],[4.566089369205526,51.81177724574435],[4.566131728026962,51.81176025223756],[4.566153091001926,51.81173020843278],[4.566154195263715,51.811669572519996],[4.56618271544315,51.81163519226741],[4.566393654556045,51.81152854111648],[4.566457691830128,51.811464216847],[4.566514811276433,51.8113910693235],[4.566571381032328,51.81134811120846],[4.567500944074872,51.810780943164794],[4.567979631322689,51.810464809874475],[4.568282940794504,51.810314672530055],[4.568261791352779,51.8102871703048],[4.568426747328534,51.810190259334725],[4.5689310232831,51.80993158887507],[4.569671282452084,51.80958424056539],[4.570039606716434,51.809429648292856],[4.57013087821588,51.809401123402765],[4.570379650227062,51.80936517896018],[4.570498531371857,51.80932936192615],[4.570765816883115,51.80923651448109],[4.570856069875401,51.809218303746725],[4.570905659258485,51.80921555210003],[4.571144590171786,51.809217214003944],[4.571170529347388,51.80921016922481],[4.571199021314151,51.8092000446628],[4.571275493578263,51.809161093269466],[4.571514780953531,51.80905101752347],[4.572267877224498,51.808705548937894],[4.572444078189442,51.8086306448582],[4.573187345906257,51.80836768108167],[4.573728400535863,51.808190533429936],[4.574329377620899,51.808014574160985],[4.575430230651523,51.80770478301318],[4.576200860237588,51.80749256844838],[4.576368790016675,51.80748340630162],[4.576593143844891,51.807484956420495],[4.576715986190149,51.807482966336416],[4.57672105978534,51.807478614863754],[4.576716459260061,51.80745664780406],[4.576530736132387,51.80688092608798],[4.576564428845373,51.80685922447694],[4.576639829847153,51.806833164690644],[4.576785180785931,51.806783072943006],[4.5767997487271,51.80678317355912],[4.576978344748812,51.80701433773245],[4.576978187111893,51.80702311057752],[4.576862466322692,51.80716166338615],[4.576862285484359,51.80717172595857],[4.576940480069472,51.807430324395426],[4.576952135459992,51.80743040487939],[4.577051773490129,51.807422318929376],[4.577056509757459,51.80741357769733],[4.577010583923114,51.80721249114716],[4.57701329527706,51.807200639305584],[4.577020214056909,51.80718623584069],[4.577126063334418,51.80708735585535],[4.577377017113809,51.80706792767159],[4.577590588385926,51.807043853608455],[4.57776352703872,51.807010724932645],[4.578103927442618,51.80685514006464],[4.578968755178415,51.806634783000995],[4.578962553982168,51.80660919242235],[4.578561591792477,51.80668333140196],[4.578570658128981,51.80657242939039],[4.578813034411775,51.806497197915654],[4.578867237538931,51.80646918481869],[4.578851323227709,51.80642804327429],[4.578842355988042,51.806394176553944],[4.578852188202243,51.80637979305434],[4.578825813278038,51.80631845090128],[4.579211772722805,51.8060824054806],[4.579355165852609,51.8060018458527],[4.579801754051081,51.8057504738963],[4.579575306942673,51.805564146027635],[4.57951027426361,51.805499700180924],[4.579220254036256,51.805260547455525],[4.578920618533929,51.80511680911597],[4.577429640312918,51.80450860672697],[4.576311331792794,51.80405805531338],[4.57587277058678,51.8038862531297],[4.575634222472138,51.80384176558807],[4.575491095977641,51.80381496965437],[4.575270582967723,51.8037860892929],[4.57503508967701,51.80378007292893],[4.574989209101815,51.803738981374266],[4.575014309738377,51.8035471594855],[4.574448622072431,51.80343150291238],[4.574393150121789,51.80334518509144],[4.574598730210478,51.803116936973225],[4.57454706837251,51.80309645060772],[4.574567940588464,51.80302382297636],[4.57454364126071,51.80296326900704],[4.574583163040794,51.802941349461506],[4.574657597203378,51.802899285152655],[4.574826759820224,51.80289013382677],[4.574869160526582,51.80289326604944],[4.575359647108833,51.803093301950504],[4.576171108481481,51.80343000352728],[4.577509103176297,51.803977812889826],[4.578331338871095,51.804318960205016],[4.579399959186317,51.80475624767101],[4.579629049529609,51.80481795230367],[4.580221473927278,51.804860221550314],[4.580342125550104,51.80486388904097],[4.580375057197203,51.804861277742056],[4.580451227988569,51.80483831744899],[4.580611530031714,51.80478961458458],[4.580647480363459,51.80478108778127],[4.580713243455922,51.8047815398202],[4.580753042271501,51.80479058730164],[4.581526694874368,51.805290342542484],[4.581749783668959,51.80543199997917],[4.581777985133694,51.80543787086863],[4.581817969089989,51.805436596560796],[4.5818822747067,51.805425425354],[4.582516870698181,51.8052744281771],[4.583436033809699,51.80501544383215],[4.584596216976949,51.80468558711464],[4.58539064573098,51.80446392749118],[4.589458605867867,51.80332110314219],[4.589598581034134,51.80329108759242],[4.58974310230172,51.80326290951487],[4.589806502300956,51.80325559838887],[4.590121098411399,51.80321360839203],[4.591014166055267,51.80308393278236],[4.591887863236516,51.802943023377395],[4.592785610878798,51.802806914820195],[4.59365698698674,51.80265539590785],[4.595515190305255,51.80234253804416],[4.596459593590329,51.8021793617002],[4.59661063429675,51.802158703167095],[4.596736262172581,51.80216316218647],[4.596900367797765,51.802157042516185],[4.598201947473735,51.80206232031307],[4.599053304327144,51.80200636689998],[4.599285053508374,51.801988052894735],[4.599516996296296,51.80195864312145],[4.599713877500253,51.8019109337806],[4.599976635624611,51.80180921588901],[4.600474127948217,51.801565591414345],[4.600586118427905,51.80151653653791],[4.600712913436525,51.80145390441484],[4.600813433029636,51.801418191732346],[4.6009016620785,51.80139504196847],[4.601010058615682,51.80138492972771],[4.601147433964468,51.801407785412245],[4.601406954028952,51.80146758662595],[4.60166759855211,51.8015346208445],[4.601877657687161,51.801590477272676],[4.602031876674841,51.80162608912592],[4.602160863522271,51.801628758979504],[4.602705587465366,51.801612273934815],[4.603888498200279,51.80154224305311],[4.605179617665179,51.80147266446689],[4.606476077842047,51.8014069777786],[4.607013971764511,51.80137597609609],[4.607453864146283,51.80133167622354],[4.607703278402496,51.80130236641332],[4.607926562840956,51.80126772119158],[4.608588387448706,51.80117044069952],[4.608982131390378,51.801098732291216],[4.609278502923106,51.801049602104804],[4.609990666790723,51.80092916349872],[4.61056574416079,51.80084136101343],[4.612824080758817,51.80046042760959],[4.613188015842792,51.8004029595841],[4.614258269801993,51.80022472949258],[4.614853016549768,51.80012955251672],[4.615038031587138,51.80009283513954],[4.615246510993199,51.80004698289852],[4.615376209540391,51.800007837205925],[4.615593268021398,51.7999470727444],[4.615931840970189,51.79983885071829],[4.616024331398,51.79980926552382],[4.616116620131496,51.799815807358335],[4.616711271132699,51.799920614341886],[4.617212982259885,51.79961836835068],[4.617320772694611,51.799545786957154],[4.617656347811304,51.79932012315895],[4.617849683455761,51.79918565311298],[4.618092162711023,51.798976151451804],[4.618397242894684,51.798707706905496],[4.618641763679304,51.79847576633381],[4.618819571052186,51.798299645250935],[4.619036783650529,51.79805797717789],[4.619285852907807,51.79775406798468],[4.619491742446137,51.79746819656416],[4.619578654902563,51.797325801213965],[4.619677966451989,51.79716387529242],[4.619835217292731,51.79682555758778],[4.619967676848391,51.79650101278343],[4.620132304673715,51.795997844550165],[4.620276877315272,51.795547963236785],[4.620403190013919,51.795143895733155],[4.62053964507144,51.794730605404126],[4.620671126197818,51.79431599162639],[4.621330899134438,51.79224835426208],[4.621347776360084,51.79218575630188],[4.621313935471724,51.792169019463124],[4.621074361497491,51.79225958162167],[4.620971833118377,51.79231774959198],[4.620913840232425,51.792350918569575],[4.620842470480632,51.792461158574255],[4.620830599258147,51.79257204611227],[4.620464586007979,51.79368652868785],[4.61979452752999,51.79574351319126],[4.619732299548589,51.79590310205076],[4.6196622765157,51.79593361105607],[4.619543367958889,51.795926639818504],[4.618859767331889,51.79586668181723],[4.618608003290443,51.795498848590356],[4.618541128424801,51.7953446086415],[4.618269970985844,51.794942841826185],[4.618087443570333,51.794615460169354],[4.617924582370083,51.794257498031115],[4.617828691468856,51.794072358231155],[4.61771241148499,51.79391159960468],[4.617566486729601,51.79373206665037],[4.617474439553164,51.79361456236981],[4.617376041281668,51.79355224046799],[4.617297821792532,51.7934779233014],[4.617259762795459,51.79339148137962],[4.617300970593401,51.793293432065894],[4.618008684051065,51.79252261033105],[4.618134465151262,51.79241892198],[4.618224661529432,51.79237641762187],[4.618289368766362,51.79236445437068],[4.618483380305213,51.79233501759847],[4.61878536365996,51.79236770426342],[4.619261381861938,51.79239559515953],[4.619505435154799,51.79233551625693],[4.619636626892339,51.79220708784961],[4.619784053598297,51.791980445756],[4.619978506677517,51.79163127450309],[4.620550319380624,51.790576459996146],[4.621147675396254,51.789486196107205],[4.621453154454586,51.78894420448695],[4.621747747588758,51.78840575451194],[4.622044798643439,51.78786912476794],[4.622787333258597,51.786531290318166],[4.623466222736651,51.78666474222939],[4.623600102070881,51.78669554812844],[4.623552528205949,51.78680207413143],[4.623314840629612,51.78725006344142],[4.623056976815658,51.787709792269695],[4.622829836877581,51.78809952764758],[4.622586788309305,51.7885683829668],[4.622313619154351,51.7890463321488],[4.622111895315619,51.78940887821692],[4.621911289006317,51.78975439936138],[4.621775503616307,51.790007184716785],[4.621699708745581,51.790182427217495],[4.621691430588193,51.79025333930768],[4.621712725938859,51.79029812264983],[4.62178001866127,51.79040333270699],[4.621822748445206,51.79050915729541],[4.62182557149929,51.79063717268185],[4.621835544587019,51.79073607344439],[4.621900275243067,51.790820623166745],[4.621985355880237,51.790883111498594],[4.622330096029188,51.79013621836543],[4.622487666120359,51.78982551162691],[4.623053870432773,51.78877761567785],[4.623385062729643,51.78818985143915],[4.623750702453908,51.78753315198332],[4.623904674202075,51.78726190296404],[4.62419364260211,51.78673373209595],[4.624442238645512,51.786255102823475],[4.624568755858204,51.785982900472526],[4.624743584044736,51.785535531978994],[4.625024100593252,51.78476756803823],[4.625066189041702,51.78464061932781],[4.625089007204116,51.784570575383604],[4.625016208109297,51.78454507141667],[4.624949169246496,51.784523474490726],[4.624754557730374,51.78446750147516],[4.623638679585668,51.784120897090524],[4.623533422184558,51.78407118004999],[4.623509523361951,51.784032832172855],[4.62352977065658,51.783991933068215],[4.623627829311709,51.7838769608928],[4.624198373209617,51.78320611048205],[4.624473345690787,51.78288893858377],[4.624592863622171,51.782931779436275],[4.624804591154125,51.78300850846399],[4.625050555637161,51.78270869540795],[4.625611606564572,51.78195726161822],[4.62508221056541,51.78167202405656],[4.62496668825303,51.78161450046425],[4.624696642995307,51.78154229505175],[4.624826639340253,51.78138340283883],[4.625200407050677,51.78149731277315],[4.625596852455215,51.78147562970039],[4.625541563345518,51.78137437020884],[4.625380721676758,51.78126571506948],[4.625094830489825,51.781072636634434],[4.625121860075616,51.781048813199654],[4.625097551005911,51.78098543110293],[4.625169168521494,51.78088344716697],[4.625271804847295,51.78081701923129],[4.625510637144441,51.7805938014272],[4.625633168467091,51.780137318823485],[4.625676078748533,51.77983799168106],[4.625672103663867,51.77970377554945],[4.625624148818153,51.7795377907666],[4.625500915611664,51.7792964803853],[4.625445124129829,51.779225151879174],[4.625287033232163,51.778880133682776],[4.625134677665036,51.77836818918221],[4.624931840265793,51.77754469704138],[4.624903954733234,51.777348392041574],[4.624777486051299,51.77604334343265],[4.62471825162282,51.77514181967374],[4.624761459187327,51.774800430852366],[4.624980914780338,51.77426948308799],[4.625085228475199,51.77395507189648],[4.625069038565543,51.77380529313948],[4.624936143494518,51.77361991818215],[4.624723270405761,51.77339195844312],[4.624608357660005,51.77322579661494],[4.624504286984012,51.772787194860136],[4.624526444929979,51.772583730148185],[4.62453157217037,51.772280286894066],[4.624530394243601,51.77198067408364],[4.624526104862811,51.77186529436956],[4.624520837463199,51.77180771229373],[4.624439913890789,51.77147661365688],[4.624343879131576,51.770907486023724],[4.623989460836794,51.76844897986665],[4.623892182728339,51.767978680351504],[4.62379670872829,51.76740181451238],[4.623854514212583,51.766910331127136],[4.62387937432089,51.766522373457],[4.623991887297944,51.76427077052863],[4.623989078628129,51.76406791806533],[4.623778449227524,51.76346423853647],[4.623722901025102,51.76310930420443],[4.623686704860242,51.76293797544358],[4.623677103876381,51.76274333668925],[4.623879311236303,51.76256581896226],[4.623945977242397,51.76253373695547],[4.624132134456072,51.76249365953326],[4.624534511937142,51.76243098833781],[4.624600487009626,51.762415159449084],[4.624643294851443,51.76239221267129],[4.624666056002673,51.762349522926144],[4.624723428306216,51.762128997970045],[4.624585395956959,51.76212681043634],[4.624584031817218,51.762207573722286],[4.624016711454721,51.76216259273964],[4.623576056728607,51.76212798273396],[4.623520663569347,51.76210826826547],[4.623047831742253,51.76188635358158],[4.622978844575323,51.761662425218624],[4.622894953599114,51.761164341083045],[4.622907317521991,51.760777849761794],[4.622943726562432,51.760444933611865],[4.623055633282641,51.760024769199774],[4.623185797771926,51.759631303432855],[4.62405171071338,51.7578036935092],[4.624101415150732,51.757642988564484],[4.624086908381862,51.75746792950713],[4.624228449033723,51.757187824776395],[4.625458753578503,51.75549418508407],[4.625926231511038,51.754994522452044],[4.62665985401811,51.754047821137505],[4.626827476534212,51.75379755890487],[4.627606207283655,51.75286120808974],[4.628196977559074,51.75217214627224],[4.62848003839794,51.75170689212926],[4.628546326808713,51.75162190348315],[4.628590768392304,51.75155045075686],[4.629274801565225,51.748745646542154],[4.629270050395323,51.74860755452357],[4.629280659725123,51.74839653070272],[4.629214782604149,51.74672310915591],[4.629071987929263,51.7461652941381],[4.628818785989687,51.74530019069434],[4.628840202688764,51.745262652775175],[4.62887079568057,51.7450004052881],[4.628856923974716,51.744786642372055],[4.628902795154045,51.744604749122615],[4.628991817131023,51.74450210138937],[4.629029374752484,51.744394476246754],[4.62905404246535,51.74423747775236],[4.629071002416234,51.744093847854096],[4.629044542515074,51.74393651958835],[4.629018387413329,51.743761127633256],[4.628956182644156,51.74360356724606],[4.628844737263356,51.74333343278608],[4.628788619968488,51.74323423358907],[4.628711943208748,51.74304741891856],[4.628302824744798,51.741567124817145],[4.628139445492122,51.74094956314342],[4.627890193096217,51.739852229441475],[4.627804260947581,51.739375811838876],[4.627785671431718,51.73919582399791],[4.627777673839891,51.738979261087266],[4.62771522090022,51.73849086600978],[4.627654393957727,51.7378811947963],[4.627601980547259,51.73748808826883],[4.62758833138022,51.73736051902598],[4.627477491055777,51.73680858568386],[4.627338733089091,51.73631040664241],[4.627270328357476,51.73602816191898],[4.627174911375231,51.73574574288991],[4.627014605223987,51.735367678387135],[4.626879874179388,51.73502590819089],[4.625841624464423,51.73206748528729],[4.625726770239817,51.731755777166796],[4.625611565346524,51.7314649700815],[4.625567679486916,51.73128249459856],[4.625477745116018,51.731070559269725],[4.625433127294065,51.730956207749735],[4.624732447357685,51.73014366649462],[4.624326414107641,51.72967677531226],[4.624078471939394,51.729347683925376],[4.623820941648566,51.7290205933617],[4.62360193074816,51.72875052644298],[4.623503568294404,51.72862008185749],[4.623327015324814,51.72839519371366],[4.623157414615108,51.728201575910894],[4.622838725440328,51.72785498764754],[4.622640043728916,51.727661179393046],[4.6223279322114,51.72736830922976],[4.620604575280577,51.72568172554504],[4.620206626250362,51.72530648359139],[4.619397888925129,51.72450584731303],[4.619319355455435,51.724359012939004],[4.619281545216486,51.72421218738825],[4.619242533698469,51.72411154653573],[4.619183865047247,51.72399400282843],[4.619130782551531,51.72393894634661],[4.618547037698959,51.723788799114516],[4.618121345764383,51.72343427045507],[4.617715788786642,51.72311780699722],[4.617609049654794,51.72304175286866],[4.617163152550379,51.72277663447812],[4.615840336774177,51.722206912354835],[4.615251736483192,51.721978008714835],[4.614682024943847,51.721762645109806],[4.614557164865932,51.72170195192442],[4.61417415919607,51.72157555741871],[4.613939001826952,51.72147749121486],[4.613528711601776,51.72122188457539],[4.612492854392043,51.72066588901309],[4.611252447882856,51.720046337101024],[4.606201260976279,51.717529466412415],[4.606032055999566,51.71746382300856],[4.605914536856471,51.71741246026727],[4.605789300642881,51.71737498042304],[4.605649449625607,51.717341789513064],[4.604574523592091,51.71710932884463],[4.604225495214417,51.71703990092123],[4.603958173574276,51.71700250241024],[4.603309781044467,51.71692281316662],[4.602807471228291,51.71685235546104],[4.597935111237296,51.7162516465671],[4.5969054420591,51.7160958053659],[4.595934259815122,51.71594551144443],[4.594794958480049,51.715764137089955],[4.594603633435838,51.715753036233295],[4.594476015806205,51.71575733430402],[4.594313116511162,51.715783586938805],[4.592200087859466,51.7164727432089],[4.591914084158164,51.716553381060216],[4.591386179900504,51.716710827448345],[4.591323681058749,51.716744725047114],[4.590339993440021,51.71702139021628],[4.590256730023755,51.717031145830376],[4.590149411425975,51.71701493259269],[4.590025603647468,51.716967897598074],[4.589779687602679,51.716801065113316],[4.58993021577537,51.71599255249575],[4.589652338254895,51.715659569976395],[4.589232042377059,51.71513413479632],[4.588335149591371,51.71506118581937],[4.58831524784994,51.71505898539112],[4.588298777606933,51.715050615042124],[4.588259900081175,51.715017317751055],[4.588260118940704,51.71500493261484],[4.588273589369907,51.7149949605524],[4.588386760514813,51.714938184667574],[4.588386942878969,51.7149278631212],[4.588370582084598,51.71491330021393],[4.588213217111691,51.71479093896129],[4.587141472584575,51.71396453963586],[4.587102627349193,51.71392943630968],[4.587116243827182,51.71391120732292],[4.587580335310003,51.71364960445862],[4.587661109183012,51.71354538347251],[4.58767213197741,51.713485846454304],[4.587524760894066,51.713339036239994],[4.587313888102862,51.713494240085986],[4.587136489047232,51.71361225245802],[4.586616608843794,51.713857214270064],[4.586627279731473,51.71388799668015],[4.586609882735325,51.713932005862226],[4.586493433552725,51.714009661198936],[4.58639038071131,51.71394082863852],[4.586357625358358,51.713937250124175],[4.586036287393966,51.71406640649567],[4.585999324258611,51.71399544477218],[4.585980451072516,51.71395867087857],[4.585935675554853,51.713859785786504],[4.585880834490594,51.71378973368173],[4.585779835947017,51.71369872205692],[4.585770489163514,51.71366356206482],[4.585406559718455,51.71335991432077],[4.585066209043685,51.71308558846426],[4.584847189671618,51.71292692958236],[4.584700121212002,51.712857278118705],[4.584546701047261,51.712817776504686],[4.584368840492162,51.712774493706235],[4.584215214689677,51.71274660294253],[4.583092847144138,51.712577875686364],[4.580592982015649,51.712198890237474],[4.579332252558392,51.71201007737139],[4.578883652663232,51.71193782309686],[4.578315071270873,51.7118151913465],[4.577136032476198,51.71154279106303],[4.576472760704057,51.71141949469845],[4.575977647123059,51.71134716535538],[4.575559311184051,51.71127897843014],[4.574839558057823,51.71117850781021],[4.574200255781127,51.71108581627778],[4.573434338411685,51.71098862927128],[4.572683728199735,51.710895156280706],[4.571927024853586,51.71079415283603],[4.571502746073686,51.71073365212183],[4.571091202629527,51.71065801233627],[4.570689767877801,51.71068979557027],[4.570437510708817,51.710649844512865],[4.570277532725094,51.710629632317506],[4.570099417991186,51.71060155220511],[4.569984086693422,51.7105702962332],[4.569591363705543,51.7105337500676],[4.56761681871294,51.71026731211858],[4.565692805951487,51.71003293659929],[4.565449628802169,51.70999665105288],[4.565241761180569,51.709960354743345],[4.565145861734727,51.709934391717105],[4.564953704267885,51.70987936624437],[4.563121272263614,51.70922572430304],[4.562929294309697,51.709161148758724],[4.56276717575409,51.709122073216406],[4.562637676814267,51.70911651642815],[4.562537394101576,51.7091488429167],[4.562443225582026,51.70921037317133],[4.562368239306857,51.70931332789914],[4.562077850967153,51.70988418009594],[4.561259847690687,51.711299303957766],[4.561192034341452,51.71137314769895],[4.561111683533854,51.711405613508376],[4.561023662072908,51.711425895586736],[4.56059158543606,51.711451492850045],[4.560355376859492,51.71146556743504],[4.559867576506608,51.71144896330289],[4.559458990681115,51.71143936811975],[4.558698000588792,51.71146005351032],[4.55826834629922,51.71144411095388],[4.557849676847415,51.71139547113039],[4.557242141234419,51.71133904075197],[4.557063954473708,51.71133777837855],[4.556181436484366,51.711416166816875],[4.555772189878805,51.71141997268126],[4.555279941611903,51.71139686565211],[4.553976117205889,51.711276633698866],[4.553671955994885,51.711281180406104],[4.553451700270728,51.71128606455892],[4.553294039475318,51.71129810313577],[4.552220729357838,51.71147265100367],[4.552021287736834,51.71149755163014],[4.551895020807724,51.71149665148749],[4.551759028768413,51.71148252123919],[4.551403861232574,51.7114146982887],[4.549475612146776,51.711029575452656],[4.549088762014617,51.710968229109476],[4.548702396229476,51.710880819874035],[4.548410439464463,51.71078737598672],[4.547951891610071,51.710627707153044],[4.546405919812684,51.70999417640744],[4.545979797859865,51.709789313398424],[4.544670093333837,51.709141198303485],[4.543121970418072,51.70836102895929],[4.541263352026595,51.707350728713614],[4.541066246379737,51.70725149981539],[4.540982174664348,51.70726044059712],[4.540946336436017,51.707311020239594],[4.54087371952026,51.707462494346245],[4.540453128226563,51.70878383089005],[4.540344657734826,51.70896420731215],[4.540196767685644,51.708920557816164],[4.540017674758459,51.708879521198014],[4.539673474816881,51.70882696717534],[4.539576304198897,51.708781103973266],[4.53956792074707,51.708762978331336],[4.539673666974183,51.70870593755063],[4.539806069765907,51.70848986464164],[4.539914128835961,51.708331422235766],[4.539986892022383,51.70817246561559],[4.540061407910348,51.70791984561917],[4.540200711853979,51.70731285722178],[4.54032514281529,51.70690111507163],[4.540422100162998,51.70669201141334],[4.540401012393738,51.70657598848649],[4.540263088798667,51.70646634714763],[4.538799387880501,51.705645182309354],[4.538349535350448,51.70540295819679],[4.536848636585818,51.70470820750499],[4.536501277487742,51.70458258977342],[4.536363376806411,51.70449462155212],[4.535685068232669,51.70401201910229],[4.535511735313244,51.7039310175888],[4.535415824195638,51.703929287436104],[4.535333715285257,51.70396662627838],[4.535266435140902,51.70403245897085],[4.535194294475796,51.70409180493728],[4.535167707231633,51.70415819150146],[4.535151214356834,51.70421794215845],[4.535123296952392,51.704884057060696],[4.535117423910235,51.70493123935871],[4.535086093836799,51.704962753102734],[4.535030269751526,51.704971637976755],[4.534979501998026,51.70497668718633],[4.534915751036635,51.70496538548378],[4.53487202607316,51.70494932509992],[4.534836190301692,51.704911387371226],[4.534858044871461,51.70375181292019],[4.534828089564595,51.703666434061496],[4.534744854883647,51.70358711974378],[4.533504185839723,51.70341421464686],[4.53172487611083,51.70328330016971],[4.531197186109213,51.703250800530945],[4.531207170278018,51.703052423490405],[4.531242150800185,51.70247694108948],[4.531294791120596,51.701780297586616],[4.531299269181094,51.701653363712055],[4.531351778586116,51.701643941348884],[4.531482589550027,51.70155689731518],[4.531486888758628,51.701549186569615],[4.531510638269946,51.701347555367676],[4.531403072137076,51.7013475435357],[4.531316688213257,51.70134742838773],[4.531237422960839,51.70134426851143],[4.531223084455838,51.701333841771145],[4.531216737405606,51.70131805310924],[4.531213170632975,51.701265124596176],[4.531205241065632,51.70115745408149],[4.531210754588391,51.70097581764552],[4.53120757031452,51.70096856908876],[4.531200793533042,51.70095355212932],[4.53118462371933,51.70093020841608],[4.531162053242985,51.700915849987226],[4.531126590063907,51.70090242926294],[4.530710505508739,51.700899387805485],[4.530658153189344,51.70090055381035],[4.530635245723678,51.70090399895479],[4.53061425894462,51.70091571625476],[4.530601532103585,51.70092981668679],[4.530565984815167,51.70124981287134],[4.530558880226011,51.701295954046515],[4.530550232683789,51.70131395493003],[4.530537580458799,51.701324185274586],[4.53052501964512,51.70132951283384],[4.530497978768618,51.70133189579733],[4.530385131879181,51.701325651048954],[4.529924239236092,51.70131995633759],[4.529853234114769,51.70131917870787],[4.529830321486735,51.70132288164018],[4.529780118467778,51.70134212710831],[4.529762824836125,51.701356194024335],[4.529747985923385,51.70159118057796],[4.529745029754716,51.701637610053275],[4.529663756470035,51.70272604092249],[4.528268150811376,51.70266575180723],[4.527917580878579,51.70264563269352],[4.527362698714957,51.702667625501455],[4.523523756341466,51.70299706061961],[4.523312878751042,51.70301305387875],[4.523227744228245,51.703056039369386],[4.523184968675547,51.70309933632605],[4.523211125889978,51.70318675412487],[4.523318500929869,51.703457996506756],[4.523477024060838,51.70396522714072],[4.523488645163221,51.70409615012457],[4.517851676620393,51.70467690307449],[4.517699860362061,51.70436403599509],[4.517626412592409,51.70431729764668],[4.517518348422925,51.70425636674352],[4.517456215351658,51.70424764734173],[4.516935192990412,51.70423551983956],[4.515811091895392,51.70428806646708],[4.515734867890171,51.70432078995094],[4.515685069656277,51.70436170922573],[4.515638818629723,51.70445555829557],[4.515563277430782,51.70466841493845],[4.515417943501714,51.70503275042271],[4.51534904369731,51.7051594633373],[4.515244810215187,51.70524462259662],[4.515096413067215,51.705315259490945],[4.514880770578452,51.7054052664197],[4.514580037691543,51.70551373524796],[4.514423235944612,51.70556779333962],[4.514319587468688,51.70562250435857],[4.514283069737778,51.70566378087793],[4.514250104147998,51.70575772840067],[4.514045447763067,51.70581633195448],[4.513184652155632,51.70608320164156],[4.512009346919155,51.706332232481415],[4.510596990511361,51.70663857488984],[4.508971391257163,51.70697349491261],[4.506684400055909,51.70744122912543],[4.50370936335085,51.70804334565816],[4.502239654928894,51.708345541743],[4.500933075013368,51.70861024457647],[4.499228558851518,51.70895862657569],[4.498699634732521,51.70907126143965],[4.498257708840152,51.70915332829223],[4.498102379425824,51.709194213349605],[4.497691196613522,51.709402704413755],[4.496698118942063,51.70994483584566],[4.496299822526089,51.7101521301134],[4.495707671514769,51.71047872082767],[4.495483216159722,51.71059107694664],[4.495407085362305,51.710617852624594],[4.495343652895556,51.7106325952407],[4.495307062094398,51.71063438145294],[4.495279234323634,51.71063416960631],[4.495239437475687,51.7106299950931],[4.495203922863304,51.710619402704914],[4.495034677123547,51.7105019849848],[4.494864985586554,51.71040727418103],[4.494814599447452,51.71039243888378],[4.494748647700999,51.7103875490151],[4.494642848445619,51.71038106563008],[4.494607503445541,51.710382861113885],[4.494569707950178,51.71038257315669],[4.494505679455438,51.7103854399804],[4.494374338958647,51.71041024550924],[4.494275930749076,51.7104291085076],[4.494186281854678,51.710446231412206],[4.493909724117406,51.71050425193123],[4.493512422110206,51.71061838297594],[4.492339204607974,51.71081329797538],[4.491558222579342,51.71096113649314],[4.490576621961987,51.71117040223465],[4.488001079623262,51.71177672560611],[4.484336206337233,51.71267576455801],[4.483528177245604,51.71292682490087],[4.482326567116128,51.713269034112635],[4.482011559280324,51.71335769757598],[4.481260105184186,51.71356221128372],[4.480594907817088,51.71373254919097],[4.480133618978705,51.71361620524668],[4.480007550522896,51.713439487914066],[4.479857932807676,51.713277038712995],[4.479774407700059,51.713257553690056],[4.479344205110572,51.71337267206399],[4.478714875096915,51.71351514899648],[4.478238846997304,51.71361571443445],[4.477701405169314,51.71375399531312],[4.477240736731829,51.7138549339311],[4.476956856479264,51.713923696647164],[4.476534684124876,51.71401073890576],[4.47632655483622,51.71411363654769],[4.476293432189181,51.714231830137685],[4.476312831069882,51.714403077683414],[4.476203137201764,51.71471319244264],[4.475395308873495,51.71492961810849],[4.475283835679537,51.714956878804],[4.475171754481794,51.71499368453124],[4.475095014646843,51.71504960254151],[4.47505337659418,51.715074826813286],[4.474924933267673,51.71522247182542],[4.474851813112851,51.71528435417047],[4.474811415256377,51.715309845997744],[4.4746947726349,51.71536674383076],[4.474505742458404,51.71536682029408],[4.474293035712598,51.71536671107971],[4.474126721348479,51.71537341529596],[4.47389584019824,51.71538864810947],[4.473769182509148,51.71540649981964],[4.473606774955288,51.71544600750471],[4.473305026246715,51.71549371828828],[4.472237179577208,51.71562396531412],[4.470702955555936,51.71586823182093],[4.469512435257334,51.7160442038185],[4.467918031134405,51.71628409199129],[4.467643517988101,51.71636064796832],[4.467439105899054,51.716422269220836],[4.46722902997004,51.71645597446074],[4.466994170809222,51.71646213036528],[4.466476271236605,51.71645341630016],[4.466419678329454,51.7164171011007],[4.46633022084346,51.71628091364745],[4.466043404847174,51.715126143962756],[4.465998069566107,51.71500630346177],[4.465982632815554,51.71498914979343],[4.465849307387529,51.71492642453484],[4.464980484207191,51.714932749942555],[4.462360180408596,51.71497816050176],[4.461947874465663,51.71502780896974],[4.461577627454719,51.715113142799794],[4.460537957799946,51.715346988787545],[4.460224741971651,51.715406189011915],[4.460054762340504,51.71540923069573],[4.459664988784226,51.715392984986735],[4.459346521896516,51.71536388214587],[4.459133847148738,51.71536219775745],[4.458977263234018,51.71540069942332],[4.458841323652472,51.715465686875255],[4.458705021869023,51.71554822047892],[4.45837648804092,51.71572600371239],[4.45821847958302,51.715813525249885],[4.45812692666251,51.715841185608404],[4.457918654555458,51.71584753412572],[4.457229766313216,51.715850842499925],[4.456181333874171,51.71584251626802],[4.455202075676194,51.71584427990645],[4.454513681054177,51.715843704681745],[4.453909397716497,51.715833990247475],[4.453534620032202,51.71583590695637],[4.453396712243844,51.71583480793305],[4.453235174652935,51.71587145659104],[4.453087652275039,51.71599389344763],[4.453017130611836,51.71606920179733],[4.452862400671102,51.71615829111241],[4.452653495342826,51.7162755924177],[4.452536272161808,51.716379174063555],[4.452488712006099,51.716469116851556],[4.452392781014689,51.716668093893524],[4.452318618054006,51.71691937344876],[4.452230973193806,51.7170993193806],[4.452103616623008,51.71733107812808],[4.452027689152374,51.717346213653514],[4.451940201195911,51.71741803126281],[4.451886165751818,51.717559793940815],[4.451837599338887,51.71769824556477],[4.451795645756421,51.71775803974088],[4.451778217568297,51.71779712582462],[4.45177340786809,51.71780870029198],[4.451675752374257,51.7177895983804],[4.45162508200817,51.717929323038206],[4.451569519505438,51.7179239758846],[4.451407396168912,51.717908229599956],[4.451384068103669,51.717911139990505],[4.451369633382801,51.717966251209965],[4.451358948077695,51.717980617453335],[4.451350922895855,51.71798700474839],[4.451343375636766,51.717990299155815],[4.451304360388173,51.717988438728455],[4.451283243635641,51.717984915369485],[4.451278424491856,51.71797687758076],[4.451287594320774,51.71791527292579],[4.451279973687792,51.71790205038742],[4.451246037940828,51.71789558590634],[4.451122068821159,51.71788324069818],[4.451165256582664,51.71768358535605],[4.450198922624399,51.71760102296144],[4.450187318585145,51.717659769353624],[4.449966289730145,51.71763967842714],[4.449904182198019,51.71762937553532],[4.449831943565338,51.717586732794636],[4.44976715932536,51.717565311514875],[4.449751859561085,51.717561834417346],[4.449647044551121,51.71756744716511],[4.449594916570659,51.71757683612662],[4.449513345595411,51.717603538636695],[4.449437068896981,51.7176354440389],[4.449231070803932,51.7177519895254],[4.448992358255727,51.71788323936691],[4.448955504249894,51.71789739585436],[4.448900435248559,51.717908309761135],[4.448775129810539,51.71792020993821],[4.448678372998656,51.71791788616603],[4.448558941829604,51.717907123392486],[4.448466589608824,51.71789270589207],[4.448374238894337,51.71787828833064],[4.448283225150691,51.71785949478462],[4.448218478783121,51.71783626616447],[4.448151508833543,51.717800116897564],[4.448094954391655,51.717762502268855],[4.448033473245563,51.71770213834895],[4.447977026244155,51.717659363047154],[4.44793055799644,51.71763628077909],[4.447891841985397,51.71761997001852],[4.447776002061257,51.71759633154092],[4.447690251118373,51.71758428910359],[4.447535164587225,51.71756988468723],[4.447460133208738,51.71756179870538],[4.447440235956803,51.71755957435114],[4.447398867626783,51.71755098526636],[4.44734211173133,51.717523174737906],[4.447274897907798,51.71747876482376],[4.447234130582188,51.717441276413815],[4.447175633006911,51.71737732329397],[4.447147124336063,51.717349739286306],[4.447108580540424,51.71732517236149],[4.447069973862686,51.717303700726426],[4.446976699535202,51.71727379111165],[4.446945232552056,51.71726863510847],[4.446820368521087,51.717259374856084],[4.446783743690957,51.71726243649519],[4.446762840384691,51.717268720117055],[4.446738926764684,51.7172798830657],[4.446720074882821,51.717307344121664],[4.446700653938513,51.71736215679293],[4.446684601426724,51.717434801885894],[4.446646668826684,51.71758056215183],[4.446630590871705,51.71761449775575],[4.446599822336287,51.71765554077562],[4.446527260898693,51.71768850695435],[4.445897795824317,51.71764990304615],[4.445762751331095,51.71757088263984],[4.44565462001756,51.71751633602981],[4.445568410084332,51.71750635311761],[4.445226789541022,51.71749147835064],[4.444909397960187,51.71758982948845],[4.444796345398152,51.71759201696159],[4.444078850964325,51.71755114730074],[4.443905919545017,51.71753581958345],[4.443887355874561,51.71752947671755],[4.443891346406315,51.71747763787429],[4.443949500618949,51.71745823498509],[4.443973755640084,51.71743081696276],[4.444004237403365,51.717343836770944],[4.444061028046078,51.71711100263843],[4.444081923164481,51.71702549316271],[4.444091603196963,51.716939893411535],[4.444351257040966,51.716960306276306],[4.444390849252367,51.716954431451114],[4.444427689216947,51.71694105023378],[4.444475969205803,51.71689705106328],[4.443732607037945,51.716682809849345],[4.443139204631498,51.71656938466541],[4.442867711528993,51.716539067585984],[4.442640486944613,51.716557365065825],[4.44251836314196,51.71659612262571],[4.442515303913355,51.71660332331284],[4.442452192573435,51.71662139559836],[4.442368159939929,51.71664652449734],[4.442360682356315,51.7166464641986],[4.442326329697245,51.71677934832036],[4.442310167897305,51.71687676653839],[4.442268263193892,51.71701320331433],[4.442292334128383,51.71709391364331],[4.44231581335788,51.71722287750042],[4.442266921367091,51.717395387382844],[4.442158104823866,51.71763218771338],[4.442151036880799,51.71765225975681],[4.442054917287009,51.71791754963759],[4.441885348018663,51.717900439275176],[4.440780158567379,51.717782872061555],[4.44039992504261,51.7179849622816],[4.440079772869113,51.71811527802115],[4.439414101492077,51.718198411766785],[4.438955427839269,51.718138443060695],[4.438390307149383,51.717904447499784],[4.438688363481646,51.71744131158979],[4.439011005901284,51.71772702064817],[4.439271944422406,51.71786461592219],[4.439499771126082,51.71791703993678],[4.439743546428828,51.71794197917573],[4.440460656026151,51.71748558043077],[4.440758666730827,51.71718218062173],[4.440867068817088,51.716945637080855],[4.440898715797413,51.716684214058375],[4.440812968045444,51.71643397260914],[4.440566478809489,51.71614217439444],[4.440252497579305,51.71597860384087],[4.439679311626086,51.71581319542076],[4.438967352783431,51.71578730660817],[4.438457576529259,51.715847438608435],[4.437377576539791,51.716076108592254],[4.437529348643178,51.716564307967914],[4.43741419621401,51.71680492334882],[4.437376385342107,51.7170621660271],[4.43763288802954,51.71719301966387],[4.437858433138371,51.717235105448275],[4.438143395007339,51.71723741395751],[4.438537590898894,51.717280864362266],[4.438585085134194,51.7173736360011],[4.438528202026135,51.717451111854125],[4.438200095298225,51.7177821327044],[4.437803023350876,51.71787543266706],[4.437391522985052,51.71833893764793],[4.436836155817388,51.71825391817402],[4.436506076434821,51.71824324024886],[4.436257911815803,51.71803193558715],[4.436187846916695,51.71766930173808],[4.435923719957942,51.717288833126446],[4.434505058705153,51.717557307739575],[4.434243995816657,51.71760370110354],[4.433353938856903,51.717727556166246],[4.430530950714567,51.71815280018233],[4.428384230152603,51.71846428664048],[4.427702335506488,51.71856657635865],[4.427269772789,51.71864716238649],[4.426590602963024,51.718796952423716],[4.425684285190781,51.71903855194547],[4.424454169777453,51.71936393627619],[4.42174651751311,51.720099596784245],[4.421471267513252,51.72016700597071],[4.421230926096936,51.720214573204956],[4.420018790871005,51.720570511598865],[4.419206216686796,51.71945798994995],[4.418888494005794,51.71914181432215],[4.418726355202065,51.718991312330445],[4.418609671205624,51.7189106053524],[4.418466651971515,51.71883742276782],[4.418307581412661,51.71877649414443],[4.41824230675096,51.71875918085886],[4.418669960184976,51.719296396373146],[4.418985028859755,51.71971706685554],[4.419121101060498,51.71988206272595],[4.41917160876821,51.71996815791624],[4.419246770058805,51.720144780175],[4.419243560051689,51.72017830156355],[4.419166475448854,51.720207858856085],[4.419089381143658,51.720237931987704],[4.419586632213022,51.720844106465535],[4.419173754178026,51.72097385772068],[4.419234965838482,51.72106468681812],[4.419052180357461,51.72112124125778],[4.418975375275833,51.72102125195169],[4.418728320348722,51.721090952493746],[4.418646698103451,51.72109956799206],[4.418536642292613,51.721097109427426],[4.418413596184349,51.72106099545188],[4.418325655124908,51.720996010353815],[4.418302235854333,51.72098368692829],[4.418150794494475,51.720818563023485],[4.417569128942195,51.72006148902296],[4.417144859088855,51.71952171676396],[4.41712186725145,51.71948952640682],[4.416958160822925,51.719276814842985],[4.416848020337271,51.719142999221],[4.416830207456831,51.71912117378345],[4.4168090223496,51.719120998334596],[4.416782651576472,51.71913007008601],[4.41677969868736,51.71915146556488],[4.416846398311508,51.71931537360737],[4.416761796879529,51.71934667296436],[4.416588303054301,51.71947375284186],[4.416543062347598,51.71951028159642],[4.41654451797259,51.719558552104886],[4.416425541687083,51.71972014724573],[4.416038673591972,51.7199543620945],[4.415801461448295,51.72010749412366],[4.41387068899238,51.72066566781803],[4.413265737458124,51.72085780362892],[4.412765866431259,51.72099377759475],[4.412440888667972,51.72107339787359],[4.411024553874633,51.721241220341604],[4.41001179236137,51.72132619898499],[4.409629838864017,51.72136946473447],[4.409547277727363,51.72144051822823],[4.409421780399841,51.72163327896575],[4.409284570971937,51.721829554515715],[4.409025048677454,51.72193680815395],[4.408308746449977,51.722203602860134],[4.407551282017491,51.7225095325056],[4.406997817424785,51.72272013100024],[4.406357362643061,51.72293722416438],[4.405872927224111,51.72297265248894],[4.405975173020629,51.72277995965275],[4.406022820930736,51.722460872377184],[4.405925504182349,51.72215863643695],[4.40587264167016,51.72191406338409],[4.405609503559015,51.72153688916321],[4.405124105071545,51.721005333902774],[4.40499197170204,51.72098642000536],[4.404887469038925,51.72099612496054],[4.404643188506123,51.720822462719205],[4.404498863987671,51.720580734667905],[4.404437015071913,51.720520602477784],[4.404372242585723,51.7204803168868],[4.404294013826513,51.72044740265109],[4.404171059586977,51.72042675801813],[4.404052697570749,51.72042421614749],[4.403930216266507,51.72043918887934],[4.403818288373683,51.72046560500071],[4.403714706943405,51.720490284275684],[4.403580643182938,51.72052193296333],[4.403474642735352,51.72054323701351],[4.403389727996432,51.72058845984513],[4.403333409616849,51.72063701945495],[4.403284524054249,51.72070680253631],[4.403277573311934,51.72079706777791],[4.403286655566213,51.72085701550002],[4.403436701927127,51.721083825470316],[4.403612567186668,51.721327109530044],[4.403724491798903,51.721491920850916],[4.40378813680333,51.72158406853892],[4.403696028543653,51.721596973183],[4.403656226380406,51.72161212360703],[4.403592799237416,51.72164359125414],[4.403565824995753,51.72168026839496],[4.403583108834884,51.7217260912513],[4.403756536055341,51.721967031828086],[4.404092756338824,51.722441340472464],[4.404224796187227,51.72265586846992],[4.404458961608522,51.72314222357074],[4.404520264169927,51.72320854457182],[4.404542979632784,51.72325312199603],[4.404529449922049,51.72330204099633],[4.405002534833714,51.72334936235947],[4.40503084164458,51.72336611606718],[4.405239121659473,51.72368657395071],[4.405343518367777,51.7236820292612],[4.405693411564792,51.72406380130903],[4.405765337965361,51.724215114681876],[4.405632985013369,51.72445452370833],[4.405410011920917,51.724599753105124],[4.405411502073096,51.724645959303935],[4.4036221735363,51.72506734436505],[4.401660447829564,51.7256180914323],[4.398926835579324,51.72636617088455],[4.396522163080593,51.72708058161115],[4.394941009638035,51.72762720747917],[4.39414573500576,51.72798124771522],[4.394020513811024,51.728063025884126],[4.393896267481963,51.72815719907821],[4.393808017159311,51.72822071005033],[4.393758119394821,51.728240932180825],[4.393699428013223,51.7282641764628],[4.393527854878045,51.72829936736995],[4.393412944031959,51.72834690947925],[4.392783555124155,51.728413312782905],[4.392514309941525,51.72844896328506],[4.39216495730811,51.72853683710113],[4.391655382849337,51.7287103169221],[4.389754825148938,51.729337773814834],[4.388453534264178,51.729756371489],[4.388198568638756,51.72984116726268],[4.387600767809002,51.730131555734935],[4.386972380732925,51.73043277711763],[4.386232528715915,51.730812527891764],[4.385510060616816,51.731232422991035],[4.385422786274594,51.73132612937613],[4.385360023348977,51.731401463985634],[4.385346296560637,51.73147695978541],[4.385070877430925,51.73193989949208],[4.38367182932291,51.73231967311324],[4.380490506176563,51.73315200847422],[4.377518037111727,51.733913799113466],[4.376013691684571,51.734331543197804],[4.373862769161401,51.73490832559683],[4.371630198737211,51.73549081277809],[4.371422114208535,51.73553959000331],[4.371375024354293,51.735582021012775],[4.371373736516055,51.735639300707795],[4.371502711475763,51.73604042256501],[4.371729467045643,51.73671439403279],[4.371782093871492,51.736943497410984],[4.371745578957939,51.73701466561165],[4.371629918375939,51.737056502599806],[4.371337220005653,51.737133966773044],[4.371072662314353,51.73717993114527],[4.370693975403661,51.737236518989675],[4.368234801553913,51.737520200245754],[4.367126722040227,51.737646304249346],[4.366673056718923,51.73785680873755],[4.365604660234811,51.73835976427824],[4.36505557484268,51.73863497996262],[4.364693964120076,51.738321887417015],[4.364288198514079,51.7379397615745],[4.361153972257016,51.739190572778774],[4.360817236626418,51.739247238127454],[4.355686170834004,51.74157718618003],[4.355279565496413,51.74125205546027],[4.355000409058387,51.74137114673915],[4.352418639682304,51.74249187950381],[4.352152707994506,51.74266811380406],[4.352073838006821,51.742699417514324],[4.351987641352836,51.74272394701864],[4.349870090188898,51.743680979142226],[4.348267749528647,51.74426705301709],[4.3456322388841,51.74521580371322],[4.34479767492065,51.74545845303529],[4.342538394091266,51.74607808897256],[4.338691770753395,51.747108531991884],[4.335922966854398,51.74783780678472],[4.332863422958636,51.74867537233959],[4.332226348169358,51.74884099780068],[4.331253727204251,51.74906088787854],[4.327653292084015,51.74988983119848],[4.326472268954451,51.75016509001768],[4.324909615183113,51.75050810623996],[4.320556647900429,51.75150136862305],[4.317718704936146,51.75219397438437],[4.317566179473998,51.75231387460356],[4.317577595416233,51.75258675681796],[4.317726064721371,51.75318244325156],[4.317835912968581,51.75374113125754],[4.318357548278979,51.754241637512585],[4.318576946991464,51.754441317929654],[4.318138799680596,51.75457668038451],[4.317757186836504,51.754677459001186],[4.317585027069349,51.75471305021999],[4.317231566521116,51.75481898755046],[4.317126241135692,51.754859316767245],[4.31685020372426,51.75469860115694],[4.316803589701137,51.75447236561499],[4.316833118737862,51.75441947365498],[4.316925128519035,51.754326892616525],[4.317107198091118,51.754206488925],[4.317213403938013,51.754111456473616],[4.317263913623093,51.75399785111028],[4.317297721528672,51.753922288010315],[4.317197044244484,51.753468200421025],[4.317098030183535,51.75311942090024],[4.316875879574804,51.752580352088735],[4.316781656382537,51.752327874948534],[4.316702923474266,51.75229902728817],[4.316517750198,51.75234017558053],[4.315704828932494,51.75256965426953],[4.315066486185998,51.752766143922855],[4.312868506852221,51.753188092434556],[4.311169723455756,51.75349406598953],[4.309656199712644,51.75377229757393],[4.307942456630436,51.75407602140988],[4.307405951570488,51.75420218008118],[4.307138631499048,51.75430449380891],[4.306009800895974,51.754543124741836],[4.304345551704061,51.7548614465826],[4.302635535882206,51.75516254783301],[4.301860391539369,51.755302989020464],[4.300972568865057,51.755408316850094],[4.300639670899308,51.755487298123015],[4.296794766053581,51.756389938410955],[4.296198727873218,51.75651652434775],[4.296181345338918,51.756530298431564],[4.29637808815721,51.75695845846801],[4.296545076038207,51.75724130801652],[4.296767573343013,51.75765370716503],[4.284832440309321,51.759966651992535],[4.284283838254251,51.76007168762667],[4.284197729062686,51.75969822544608],[4.284056322805242,51.75932424288375],[4.28389831146164,51.75910236467074],[4.283524088238453,51.75877703010714],[4.283430115215362,51.75870853086554],[4.283334906089093,51.758690601826],[4.280657424558145,51.75908885351799],[4.275534114958807,51.759878854733586],[4.27526011751349,51.75992709634553],[4.275039961594572,51.76000113816843],[4.274159952000881,51.76027227689371],[4.274008604927207,51.760321679933035],[4.273872643672396,51.760303614253495],[4.273573918169124,51.76024142086283],[4.273370008935823,51.76022993554892],[4.273092423040147,51.76032226759783],[4.269415850685703,51.76223079736379],[4.269248345557798,51.76227720149893],[4.269105408534104,51.76225519217335],[4.268876208879694,51.762122681353006],[4.268278553829981,51.76167051806006],[4.268165779188999,51.76153911596382],[4.267986817757247,51.7614101796105],[4.267837219221397,51.76140539667554],[4.267672344968151,51.761362530722224],[4.267538526054737,51.76139222140102],[4.267447218474763,51.761451737682],[4.266501507861359,51.7624566586559],[4.265991279032797,51.76300637320189],[4.265813914554505,51.76323177827693],[4.265832075250473,51.763237371537926],[4.265265504251435,51.76422939254894],[4.265160140545484,51.764485938192834],[4.265074324576593,51.76465879744059],[4.265033410201041,51.7648491199442],[4.265019110666104,51.765072987627654],[4.264932388557591,51.765282227127905],[4.26493057968548,51.765354985174916],[4.264862781506787,51.76553911474541],[4.264520375319541,51.76696477007608],[4.264013634989316,51.76882550415501],[4.263874675513569,51.76904404875356],[4.263576601839645,51.769388296656665],[4.263018935087669,51.77010116022708],[4.262590634050231,51.77062970954341],[4.262340901880393,51.77098628998412],[4.262159460117918,51.771289845457936],[4.260613199983442,51.77354291851508],[4.260516860538257,51.77391929134093],[4.260494598866319,51.77404449960059],[4.260350462717098,51.77440234842213],[4.260250357025153,51.77456293781026],[4.258583476355643,51.77564215626103],[4.25845994448389,51.77575761424461],[4.256662516516026,51.777427819921485],[4.25642244351594,51.777760738095886],[4.256236588440708,51.77787249606244],[4.255207618874891,51.77812579971307],[4.255027586996303,51.77822083821993],[4.250118510894983,51.782836411716254],[4.250061026993963,51.78290501701019],[4.250053279478513,51.78294829753219],[4.250051913880339,51.783002479067065],[4.250906591129146,51.78369464846269],[4.251157530887666,51.783874889552266],[4.251219884705846,51.78391033281172],[4.251301536343475,51.78393951141836],[4.251431825504111,51.783953935139635],[4.251541627926882,51.78397228906546],[4.251758157369616,51.78396586919736],[4.251989289429488,51.78392475098068],[4.252087048251092,51.78392569717003],[4.252167397133616,51.78405628366811],[4.252026079875002,51.78413285288302],[4.251869201621799,51.78426553086103],[4.251711012185735,51.78445032588221],[4.251701440968552,51.7845495904148],[4.253819686031052,51.789837283902024],[4.253849478805186,51.790009704163765],[4.253913208567487,51.79015638736706],[4.253978520660328,51.79022360013876],[4.254085751672033,51.7902455403561],[4.255218359055299,51.79011892524585],[4.255595306696296,51.79008901316599],[4.255843993083031,51.790095798822364],[4.256019911566804,51.7901168509369],[4.255656114994589,51.791148717584335],[4.255633426296215,51.79125688806796],[4.255637991982853,51.7913402884911],[4.255696514678325,51.79141285432868],[4.256482747923269,51.792504327666585],[4.256574690145627,51.79258857117234],[4.256666425791996,51.79268107004152],[4.260478386168947,51.795603479195684],[4.261092319106544,51.7961686102529],[4.261477977762586,51.796508575653924],[4.261603755252928,51.79665533378565],[4.261868307520843,51.79691181232242],[4.26213851827483,51.79719182861721],[4.262357996092252,51.79748684158488],[4.264722560788732,51.80042825222961],[4.266169296506586,51.8019569503222],[4.26638658848513,51.80209064163282],[4.266628808098047,51.80220960194542],[4.26799137119626,51.802941589228574],[4.268394728444263,51.8031431171728],[4.268572587010732,51.8032057171621],[4.268816456592222,51.803258623964226],[4.271320956201691,51.803535379218964],[4.271747373528343,51.80354588578188],[4.274074158188301,51.80345159702231],[4.27424489520368,51.803432054682816],[4.276863517338548,51.80294718195474],[4.277042157466142,51.80289390411996],[4.277614760406877,51.80278267397113],[4.277776502227488,51.80272252573302],[4.277783762812206,51.80266427036338],[4.27776939596703,51.80257148826021],[4.277792102028338,51.80164859164424],[4.277837805163463,51.801364374699546],[4.277837670041228,51.801149918440984],[4.27778629832931,51.80097084960017],[4.277823468255135,51.800813521326624],[4.277896805971974,51.80053962986812],[4.277909478544915,51.80046439308832],[4.277856743268774,51.80037460289719],[4.277153271789708,51.79971606814308],[4.277055339845541,51.799653204662086],[4.276848569136899,51.79951395526927],[4.276475928344748,51.79936642566768],[4.276333126535074,51.79931707255039],[4.276111915901979,51.79930800926198],[4.275880894378057,51.79925782090595],[4.275680720611509,51.79929024758286],[4.275424770653851,51.79935646847354],[4.275112616449351,51.79942318797273],[4.274827270571968,51.79899363717248],[4.274243501779009,51.798125376988395],[4.274157729745475,51.79799165730887],[4.274068313922933,51.79788758145723],[4.273970969806827,51.797801236840506],[4.27387201357458,51.79772958753176],[4.274009763337556,51.79764598985624],[4.274215526382648,51.79760613475468],[4.27425339713519,51.79758946147246],[4.274256882088735,51.79756626845255],[4.274188154563783,51.79748406711494],[4.273855689737649,51.797278070092496],[4.273612957549046,51.7971464738292],[4.273443332745755,51.79705453901305],[4.273346830286468,51.79698471844984],[4.273294490867182,51.79693002696346],[4.273062881358268,51.796685242569815],[4.273038115949791,51.79664320075372],[4.273044648606177,51.79661461716953],[4.27307757338401,51.79656228329554],[4.273269711470481,51.79643352571729],[4.273959645789573,51.79680988759094],[4.274151238059249,51.7968718356483],[4.274315324856727,51.796901522087595],[4.274565497164161,51.79690028245411],[4.27534047522826,51.79681601599474],[4.276098962259651,51.79674216842565],[4.276195744486532,51.796750053442224],[4.276246659099868,51.7967613738151],[4.276357846560841,51.796843460941226],[4.276594731982311,51.79858173115187],[4.27666739875955,51.79877468004074],[4.27684061652178,51.79894096788331],[4.278621220790444,51.80033021578473],[4.278761161796608,51.80049618621638],[4.278842973392128,51.80075786626499],[4.279426573225424,51.80251901760787],[4.279500952889635,51.802626043956934],[4.279636589534285,51.802696486717046],[4.279902126116719,51.80271499386891],[4.28145573219076,51.80267648469365],[4.282520761371918,51.80263309840176],[4.285546559646048,51.80236090119159],[4.287991821998344,51.80211544651708],[4.289719095282323,51.80193522740602],[4.291000158171967,51.80180526766079],[4.291467422880341,51.801761631963316],[4.292079099615706,51.80171908455893],[4.292301751598191,51.801686581713184],[4.292536805327272,51.80160619332473],[4.293154319303134,51.801322917547004],[4.293611927512588,51.801230925373005],[4.294313898927627,51.80112056196951],[4.295834529898056,51.800893682781435],[4.296111940475289,51.800902972609066],[4.296365705433707,51.800960558710656],[4.296772616992729,51.80112279578285],[4.297102715900196,51.80124276746206],[4.297390859378333,51.80127305809327],[4.298648391817384,51.8011332473811],[4.298826939599834,51.801134129993805],[4.299019873465452,51.80114262918639],[4.299120741639967,51.80118872680521],[4.299858473431443,51.80166628178046],[4.300635809476481,51.8022110388931],[4.301095524386091,51.80251517048058],[4.3011751909088,51.8026640389985],[4.301166083906114,51.8028002138308],[4.300945895480076,51.80340437624047],[4.301008587095587,51.80358405594918],[4.301291582828809,51.80405351976082],[4.301572201000794,51.80439728186627],[4.301804209758455,51.804685367386604],[4.302118880515716,51.80499821688997],[4.302386344974217,51.80519707995671],[4.303576693515321,51.806107187001274],[4.30439716014507,51.80669851040495],[4.305139847581724,51.80713168864207],[4.305948135985938,51.80755540337707],[4.306830408900054,51.807984696337606],[4.30729966978094,51.80820734097405],[4.307454731030631,51.808234058790035],[4.307627599748037,51.80819513311362],[4.308043789850663,51.807904507084736],[4.308302541680288,51.80770378782921],[4.3084516971244,51.80762928800979],[4.308566280033221,51.80762517994127],[4.308745044614883,51.8076877268404],[4.309515018620766,51.808009385639714],[4.310434806447846,51.80840364089643],[4.310971013327563,51.80856081996453],[4.311470290747657,51.80871301243184],[4.31284582436713,51.80900897332786],[4.31529172645932,51.80958567194874],[4.317477925648721,51.81009104796355],[4.319343042510189,51.81053204080833],[4.320402418940308,51.810768775759314],[4.322130997462613,51.81105261062455],[4.323434394913027,51.81127088764167],[4.324665293011903,51.81149210629169],[4.325125294177556,51.811565174607274],[4.325462942006098,51.811600747310514],[4.325801516802481,51.81161464856244],[4.326210263713985,51.81163666854617],[4.327671512222623,51.81167696905765],[4.329489348558884,51.811708854268204],[4.330650602183364,51.81175905876884],[4.330983691196317,51.811758443986214],[4.331312052836122,51.811710818933065],[4.331688230337535,51.8116125249669],[4.332436509526886,51.81135860702469],[4.332825650652524,51.81125758813756],[4.332987717676136,51.811199430914186],[4.333161957913378,51.811243835275995],[4.333246554249121,51.81127607925504],[4.333557603887852,51.8114166799991],[4.333762689725312,51.811495167272575],[4.334213322216049,51.811666954593655],[4.334568276624066,51.81179968839363],[4.335056825140672,51.81198832990366],[4.335144717141318,51.81202214995583],[4.335742207578094,51.81227060386369],[4.336044897205007,51.81239538141338],[4.336063876609231,51.812402776813535],[4.336199614409556,51.81249173545873],[4.336316996102411,51.81260014269603],[4.336394239724449,51.812680060119185],[4.336497089388385,51.81278678821926],[4.336641431634306,51.81295324313797],[4.336671834306292,51.8129886120741],[4.336797967544205,51.81311464552921],[4.336891709288412,51.81321922695462],[4.336980183006498,51.81331756771519],[4.337625628482434,51.81395741127025],[4.337813494717896,51.81411470493822],[4.338137363909563,51.8143857316257],[4.338452260275961,51.81464893495037],[4.338516802173538,51.81470241484696],[4.338833573718551,51.814974666034104],[4.338956451672136,51.81508002290795],[4.338980132349731,51.81513597624388],[4.338978908380946,51.81518861038818],[4.339253577830828,51.81539158077623],[4.339383181561155,51.81547635217594],[4.33942639145949,51.81551622136498],[4.339470011578921,51.815556353083906],[4.340063892694261,51.815891462951],[4.340612658347126,51.816000100857934],[4.341088650662377,51.81608692640233],[4.341445695412265,51.81613191496426],[4.342318812684314,51.816241371077766],[4.343384199748602,51.816391240487754],[4.344410117785402,51.81653765272932],[4.345668742138501,51.81670470190423],[4.348481651407684,51.817111313283455],[4.349150558631942,51.8172119431664],[4.350839253317043,51.81745577316187],[4.351659012432189,51.81756984879033],[4.352505003901023,51.8176841499663],[4.353422805572253,51.81782669094582],[4.353987870401014,51.81789876497129],[4.354450954108921,51.81789664703054],[4.355808788030019,51.81775297609946],[4.356002376939308,51.81773635515566],[4.357648023929118,51.81749738438353],[4.359344231553531,51.81726812452455],[4.361221522291186,51.817021842473366],[4.36272987519327,51.816812052257035],[4.363975182429694,51.81663349803742],[4.365052219668876,51.81649346513556],[4.365625902971455,51.81642413810351],[4.367110861954843,51.81619757177806],[4.368258511972916,51.816045736560106],[4.368737046764865,51.81605918093351],[4.369048859194863,51.81604330567299],[4.36973568216104,51.81605236049479],[4.370653759850814,51.81607270405263],[4.370818958646727,51.81609581194474],[4.371023134094526,51.816163128736626],[4.37123646808911,51.81626742780792],[4.372013016072084,51.816785374874705],[4.372140228580664,51.8169237657539],[4.372334624720888,51.81711125372879],[4.372553119196325,51.817338174922085],[4.372866269749994,51.81767017252061],[4.373166982836038,51.81799999700235],[4.37332831086702,51.818139972139925],[4.373515245084452,51.81827087723869],[4.373803253839002,51.81840678445458],[4.374107980261154,51.81855857676255],[4.374538859226606,51.818729779165565],[4.374869518626574,51.81885805157682],[4.37654533907689,51.81949907656938],[4.376945215011623,51.81964239069429],[4.377187555941023,51.819754411744476],[4.377438050200158,51.81987424463699],[4.377771248649297,51.82007582122802],[4.378116882939843,51.820280083615174],[4.379534668628057,51.821142329769785],[4.380349723994683,51.821584937587986],[4.381309090951361,51.82209277712608],[4.382061423119833,51.82251109353871],[4.382191292987951,51.82256975396943],[4.382325612589292,51.8225969685335],[4.382493831214244,51.82261673096989],[4.382764164073415,51.82261388352803],[4.382879844917443,51.82261797024732],[4.383162803595118,51.82262787559796],[4.383246220535709,51.82275297569932],[4.383260869209212,51.82297400459222],[4.383267799743909,51.823335869323],[4.383322487289035,51.82353556292626],[4.383405297381336,51.82361317354566],[4.38455135092078,51.824138066056165],[4.384578384041561,51.8241584259663],[4.386118404616041,51.82496589352018],[4.386548179751393,51.825210332139235],[4.386785251526349,51.82533699756335],[4.386942569348909,51.825435628535175],[4.387124451140436,51.82555330764467],[4.387341349506509,51.82570715518277],[4.387631913382617,51.82590085569379],[4.387759786156674,51.82597523517074],[4.388080859588634,51.82614545184495],[4.388467547510424,51.8263619033231],[4.38858443817484,51.82642457560892],[4.3886253242803,51.826440148961524],[4.388813292652114,51.82649026412892],[4.389265055598362,51.82666468675266],[4.389533722267465,51.82675703468448],[4.389925179002337,51.82694668352055],[4.390033876193567,51.82700334931708],[4.390567138319606,51.82724065195438],[4.390666047241648,51.82730678209009],[4.39096288161692,51.827462850264],[4.391047144866765,51.82753221042704],[4.391518640645602,51.8277568556248],[4.392010919423235,51.82796477141855],[4.392283549081028,51.828085663075264],[4.392476635413966,51.82814975123658],[4.392890343695056,51.82829480468793],[4.392937174800879,51.82834307200685],[4.392995577382679,51.82837659928585],[4.393114010097075,51.82838869928547],[4.393256920547006,51.828386296061545],[4.393405501060513,51.828391167779564],[4.393481969463326,51.82841762157374],[4.39359886204411,51.828499642873865],[4.393944048047995,51.82874927313393],[4.394456624090719,51.829133350044536],[4.394477568041071,51.82914681733224],[4.394510877167433,51.82918516360329],[4.395131787329197,51.82956770241152],[4.395136032298704,51.82952619053825],[4.395167176211974,51.82949264729086],[4.39533871115952,51.829306355914404],[4.395446066362822,51.82915965040519],[4.395523346884227,51.829016820214555],[4.395540826247998,51.82897954876243],[4.395557905264974,51.828809112747535],[4.395613246013599,51.82843306618385],[4.395634267132341,51.82832950247887],[4.395684712017672,51.82808115536637],[4.395709095049046,51.82788162001437],[4.395693902767807,51.827814911527156],[4.395655068013355,51.827762712797956],[4.395579012556411,51.82771755343789],[4.395729550611727,51.827671212617794],[4.396086337413198,51.82765874261029],[4.39636768844588,51.82766756950468],[4.396361469916734,51.828594351652754],[4.396352172268798,51.828865627498836],[4.396462449653662,51.8290025573862],[4.39656636951433,51.82906872475914],[4.396497096827099,51.82920736515219],[4.398396914524423,51.82942803046786],[4.399321561543385,51.82954149314958],[4.3993346462109,51.829780570368634],[4.399360334076142,51.83024271953545],[4.399373512329118,51.830572506589036],[4.399375481518193,51.830653683296156],[4.399889687827782,51.83058626824632],[4.401394894936622,51.83024692171261],[4.402054704898534,51.830187172294806],[4.403403483972502,51.82991461504967],[4.403499071592771,51.829885997261556],[4.403557809488667,51.8298473931052],[4.403810263393317,51.829138931375326],[4.403897073808662,51.82914985212418],[4.404398282522775,51.8292189527834],[4.404485544656333,51.829228199544325],[4.404333189002285,51.82972085708055],[4.404343241986425,51.82973732807081],[4.404500772969745,51.829771292181945],[4.404584892934178,51.829771996448414],[4.405594122536703,51.829617345285676],[4.406183064556449,51.82954059232814],[4.407734361212916,51.829376388225725],[4.408573570044375,51.82934003398317],[4.408697785733558,51.82933552075232],[4.40947018213925,51.82930698974494],[4.409460881129966,51.82937091246166],[4.410178689194948,51.829343599371825],[4.410177089123778,51.829417392252616],[4.410574953046713,51.82941257479787],[4.411613439147389,51.82923269570752],[4.411731212465191,51.82902554702529],[4.411731642400338,51.828986454208675],[4.411732326071587,51.828724009616614],[4.411695016976259,51.82867737785157],[4.411592242237085,51.82861510414262],[4.411573373434682,51.82833236812721],[4.411559069989013,51.82831973396127],[4.411477683268339,51.827269773000445],[4.411810295950954,51.82723847326572],[4.412199911217358,51.82694029326928],[4.412713712547835,51.826869464325775],[4.412754800025822,51.82701096561407],[4.412430883578458,51.82708311396559],[4.412276876182302,51.82711744708037],[4.411879774468182,51.8274728559838],[4.41198931636311,51.82858872713992],[4.411863120433136,51.828684838821154],[4.411873559575803,51.82889524732045],[4.412015272145645,51.82889048945773],[4.412243001348459,51.82887560713233],[4.413186230658543,51.82876627781591],[4.413863822550599,51.82869138345012],[4.414357044980377,51.828648504672806],[4.414903692904145,51.828619615405266],[4.415591452499188,51.82857511761658],[4.416038089490862,51.82854862034607],[4.418612004761248,51.82845247108999],[4.420259976508175,51.82837909251914],[4.421710262211414,51.828337354337975],[4.422004526614768,51.82834648481749],[4.422847616634741,51.828380253135904],[4.423479296065656,51.828425699230515],[4.423556263664983,51.82842955729983],[4.423966624271414,51.82846311858843],[4.424065200007522,51.82864470065028],[4.424395444728014,51.82952353227357],[4.424424287309956,51.82961615498795],[4.424472529492518,51.82969745349673],[4.426522900591673,51.83095140432432],[4.426719333834273,51.83107623709072],[4.427746057724793,51.8318972726132],[4.428006959339045,51.83212469271967],[4.429573398310493,51.83299244347684],[4.431388072154348,51.833962322621126],[4.431499287040787,51.83400167904099],[4.431796500511568,51.834050291539626],[4.432665369269269,51.834111295472816],[4.433917539138259,51.834129213496034],[4.434390392202312,51.83410595572023],[4.434889450199321,51.8340253618107],[4.435451456682681,51.83390282440599],[4.438168686520548,51.83316521949764],[4.437904365048951,51.8323264455268]]],[[[3.983948708135027,51.985080433850676],[3.990032138114561,51.98654283881653],[3.999645550677581,51.988653456787574],[4.005908809336565,51.989044359292905],[4.010904991629944,51.98842950397283],[4.018298676319394,51.98689030244431],[4.023512558307063,51.98572774759981],[4.029443270738224,51.98735197230452],[4.035174505112887,51.98731718344216],[4.038564887174181,51.98672124267399],[4.03823252148792,51.98444952295145],[4.040589846317184,51.98402759385549],[4.043275901222931,51.98354159451303],[4.054805799722865,51.98161904950615],[4.056205078955374,51.981364688995896],[4.057594453330581,51.98110555437549],[4.057997298845103,51.981022362214006],[4.058293502575303,51.980955513686354],[4.058973577058004,51.98076860828726],[4.059631971556971,51.98057977694296],[4.060402920751527,51.98032975800883],[4.060822045575816,51.98019022286836],[4.061390042419299,51.980005136667934],[4.062551672072118,51.97962956722799],[4.063293164432467,51.97938526288412],[4.06375755780301,51.97922648386014],[4.063804318660029,51.97914300753633],[4.063959367415896,51.97900126413849],[4.064125829661593,51.97888339122371],[4.064304223572218,51.97878603979653],[4.064454152929792,51.97873275676394],[4.064646588501943,51.978669370248234],[4.064721389628365,51.97864117875895],[4.064637610826764,51.97854862149445],[4.064128963681366,51.97870626076953],[4.063972965821073,51.97875276557815],[4.063947620652521,51.97864860651587],[4.063895172650639,51.978499883263126],[4.063857227745009,51.97842616373971],[4.065004709876429,51.97817402826683],[4.070462788752854,51.97688424806286],[4.070512293193434,51.976763767042094],[4.070167201457207,51.97684622799318],[4.070360604263316,51.97673510049596],[4.07047371265695,51.9767398499852],[4.070654707291861,51.97670974665313],[4.070978064927005,51.97664162158251],[4.072509013910117,51.97626337735464],[4.072663557753764,51.976223167201795],[4.07278542286981,51.976200012766235],[4.073940607115942,51.97590942382639],[4.074139196106687,51.975863381381075],[4.074816594655009,51.9756915813958],[4.07537199641387,51.975547321822965],[4.075533568215282,51.97550950912146],[4.075671000032184,51.97546833116457],[4.076292717245096,51.97524248179526],[4.076557942421017,51.97513240175681],[4.077131512885739,51.97488072042466],[4.077591057301967,51.9746269928919],[4.078280975919757,51.97423982354311],[4.079142590753336,51.97371042694365],[4.079988705413545,51.973110011635235],[4.080650068571043,51.9724965705663],[4.08102293939273,51.97208960449042],[4.081342931004016,51.97169030856696],[4.081583184007164,51.971317224627754],[4.081869721684349,51.97084671569978],[4.082076677020503,51.970397001393295],[4.082248458060285,51.969949863810584],[4.082396277580838,51.96940697421537],[4.082464995580816,51.96886862564413],[4.082480741086221,51.968327109483496],[4.082443681068304,51.967776749115],[4.082346104014611,51.967281719105635],[4.082274736472097,51.96691988508684],[4.082211216413011,51.96669053011347],[4.082207985983448,51.96649990884162],[4.082152343889412,51.9662870276425],[4.082036495098467,51.96603257382572],[4.081682289999784,51.9654841126424],[4.081478877673034,51.96520958951515],[4.081366183382771,51.96514846571213],[4.081243356612506,51.96511974682986],[4.080039977088924,51.96444963732743],[4.078327264546855,51.964004354906706],[4.07745792967633,51.96455932535545],[4.075302190879871,51.967106732052535],[4.074218753259105,51.967986528969774],[4.07257761741715,51.97003902791372],[4.071825548020457,51.97042905259567],[4.071319884878077,51.97014850921505],[4.068063227487142,51.96901372735353],[4.06643541255778,51.96848386384156],[4.064462975158743,51.96777546871384],[4.054560693351624,51.97017523023753],[4.05248875260881,51.96990662892926],[4.044258308985188,51.972637346546726],[3.998190441467618,51.98242055316415],[3.989291829200878,51.982997820591656],[3.984583455240606,51.98082405576045],[3.984036560680098,51.979507500601144],[3.982856267656959,51.97807092889596],[3.980545208130652,51.97697314961253],[3.977212765776379,51.97370194292545],[3.977633309680323,51.97181571702177],[3.97952649978271,51.97148544414927],[3.98190840965529,51.9713004276828],[3.983375931329471,51.97081378971136],[3.982691626348452,51.96956493203246],[3.973545920031147,51.96935245793507],[3.970786573646833,51.96755214865267],[3.968378945965728,51.963683200097904],[3.967348935981227,51.95753872921393],[3.973344098613703,51.946985398560756],[3.990320268554273,51.96309338066584],[3.991459050991109,51.96376385319224],[3.992184621805263,51.96539691741365],[3.988590541798985,51.966521007206126],[3.985896474482893,51.96798760039427],[3.989040277077494,51.968776080767235],[3.994372174719927,51.96656643595944],[3.996460436407439,51.95636314692869],[3.981327697611321,51.94194757087174],[3.981553055839462,51.938082935881404],[3.997294715588353,51.95067304926293],[3.999248683728336,51.95141342628575],[4.00719102151213,51.95832483580833],[4.012816784580365,51.95562872326466],[4.015072792786507,51.95787798097103],[4.013975245226952,51.95974875910345],[4.014617418968957,51.96173820192281],[4.012247913131999,51.96223592319398],[4.008725156124834,51.96153418767108],[4.003130930181189,51.96323753197201],[4.002116623548935,51.97163330739264],[4.004914155863544,51.97357039651549],[4.010754446936306,51.97453712050447],[4.035094862974016,51.96922350841866],[4.053140635858766,51.9649814250318],[4.05292527280938,51.961965038105646],[4.050006440252235,51.96177040023038],[4.045623915520054,51.96148680742998],[4.044015273091355,51.96182010861972],[4.033142439642945,51.96396440247542],[4.031806366502851,51.964186697457784],[4.031421077218377,51.96420380549496],[4.031068907197803,51.96428619950765],[4.030856877655269,51.964348660585735],[4.030290065217804,51.96457980784826],[4.029939853987714,51.96459731578049],[4.029164687970458,51.96478282526029],[4.028705723010477,51.964928755816764],[4.028392128520757,51.964882034768735],[4.028222372481419,51.96470716346],[4.027704550577876,51.964051478744565],[4.027617428584374,51.9636451669898],[4.027635254366657,51.96355324093379],[4.027670094553696,51.963382282659445],[4.027589437021716,51.963314250548166],[4.030633213670691,51.96085705470893],[4.030744783343282,51.96086982638652],[4.030981548172045,51.9607762953394],[4.031113888248346,51.960682334573754],[4.031241753538552,51.96058432183324],[4.031371949972569,51.96040917088648],[4.031708066630984,51.95994438459364],[4.031900545222947,51.959753950926086],[4.032065517015131,51.95963055761115],[4.032341607523074,51.959437860461854],[4.032490900062776,51.959307962852755],[4.032656059346579,51.9591782478229],[4.03273094470313,51.95910530203353],[4.032827484331906,51.9590069258989],[4.032987240433632,51.95887624566094],[4.033073145240876,51.95878419937052],[4.033164449688888,51.95867931107084],[4.033208340098271,51.958609104003806],[4.033261761750741,51.95855526558391],[4.033269610242725,51.95847509509625],[4.033239553659216,51.958432941656916],[4.033189224226414,51.95838423082081],[4.033021601599189,51.95826345777377],[4.032859665447009,51.958120426870295],[4.032749515546815,51.95797773422817],[4.03271512099373,51.95791320668016],[4.032711822011148,51.95784258568308],[4.032724588673961,51.957765568676585],[4.03275512419961,51.95769494995251],[4.03294017831207,51.95730713220181],[4.034055999006301,51.95741430279847],[4.034078354441986,51.957351719528624],[4.03384489668266,51.957336386801686],[4.033892222610807,51.95711060096611],[4.034105825604632,51.95711938208341],[4.03418857747911,51.95707633258859],[4.034600717885249,51.95710868813086],[4.035086960293868,51.95714937787567],[4.038134448935013,51.95740387061319],[4.041736896503966,51.95770747521922],[4.04440528098675,51.957888432634775],[4.045367841226241,51.957953615481436],[4.046968289825098,51.958087741170516],[4.048119753581933,51.95817802268365],[4.05074817308877,51.95838418788026],[4.052635627704381,51.95853233684033],[4.056092747420762,51.95881243109631],[4.06007910716839,51.959108719556696],[4.061746726824007,51.95923424048542],[4.064814059062255,51.95947690778582],[4.066328256042164,51.95959302430173],[4.067170129485802,51.95965912474547],[4.070723941046472,51.95993832384765],[4.071985070045268,51.96003850141502],[4.072312660966582,51.95945092276238],[4.072422180307477,51.95947692247283],[4.072488231586319,51.95944669215053],[4.072529861119266,51.95939451036112],[4.072719323943955,51.95908707177083],[4.073151550389902,51.95829213735552],[4.073740889594962,51.95720940083009],[4.074167632636032,51.95641504693448],[4.074777275884756,51.95527898231723],[4.075269110774991,51.95434276657174],[4.075433295125733,51.95404136379415],[4.076514114767282,51.95205748879517],[4.076589837842179,51.95191006992222],[4.076612507824776,51.951834578476706],[4.076528607719422,51.95173273742361],[4.076718233412797,51.951360388527426],[4.063456715364819,51.949637338228],[4.048085871912851,51.94762218904089],[4.048393410389373,51.946972249996264],[4.04834982863341,51.94682323288329],[4.048019076027165,51.946641266176314],[4.047348302138504,51.94657426692459],[4.046681547992253,51.946358659318896],[4.046349499862942,51.94620648150878],[4.046356595290886,51.94596887683199],[4.046462782221333,51.945643366944246],[4.046947706632259,51.94550050346117],[4.047812266463479,51.945510355817234],[4.049258183801829,51.945378168700785],[4.050552575764906,51.945482055281914],[4.051124671137116,51.9456370796319],[4.051893635519526,51.94564581556552],[4.062665761535839,51.94704486638105],[4.063522022650774,51.94735142178486],[4.063907852501373,51.947296407942595],[4.064094264951418,51.94737618646342],[4.065700051910289,51.947587412216365],[4.067490985092332,51.9478228895389],[4.06967317706374,51.948117693611145],[4.071102062772015,51.94831060478151],[4.073294385803224,51.9485890672698],[4.075267752818176,51.94884388330826],[4.07658468730188,51.94902489793657],[4.077151893967123,51.947434011638585],[4.076491319959048,51.94682985797727],[4.074397091326039,51.944912630586046],[4.072613980615987,51.943285948853614],[4.071950686863357,51.94269322263934],[4.071629631767523,51.94240613752352],[4.071570240232288,51.94242366715113],[4.07118938233719,51.942168299804266],[4.070965340629257,51.9419764961312],[4.070740020379032,51.94182842027662],[4.070542632673537,51.94173885230507],[4.069989257086836,51.94152877555249],[4.069744186270642,51.941442027643745],[4.069318035665844,51.94129363365879],[4.068946169947068,51.94120210694968],[4.068517185107446,51.941136133058166],[4.068245946200988,51.94110173402064],[4.067919595234956,51.94102452125069],[4.066589051920169,51.940718993200754],[4.064672897296981,51.94026492311336],[4.064095207385347,51.94013054798832],[4.062163503769584,51.939681551747775],[4.061468311493706,51.93952519350193],[4.061026295265512,51.93940652619957],[4.060579274845391,51.93923115487565],[4.060305983157649,51.93915374550409],[4.060093684602257,51.93916012353565],[4.060009977162032,51.93918098562],[4.059974011233584,51.93921116107022],[4.059909460648914,51.93919133548985],[4.059822354964433,51.93917177028999],[4.05969213743643,51.939141653821146],[4.059576506060231,51.939112475907244],[4.059431716703751,51.93908090462392],[4.059323136380707,51.93905335494635],[4.05917846184455,51.93901791296626],[4.058961546105359,51.93896862197324],[4.058852854242093,51.93894481282954],[4.058672142580685,51.938899672607],[4.05848841736068,51.93885759484686],[4.0582739876793,51.93880897610017],[4.058165715320235,51.938785170157956],[4.058057131240798,51.938757747802185],[4.057912349394784,51.93872604526783],[4.057796720231842,51.938696866507925],[4.05773152882803,51.938684644586246],[4.057622949064168,51.938657093327244],[4.057478164022005,51.93862551966208],[4.057362533975984,51.93859633956147],[4.057304397248046,51.93858561660985],[4.057189186111823,51.93855644197479],[4.057123576360564,51.93854421497979],[4.056996751725968,51.938512456482904],[4.056935294705958,51.938501051246256],[4.056877730665668,51.9384850443742],[4.056791037314174,51.93846573956316],[4.056754585326416,51.938455908069535],[4.056689811825083,51.93844369029428],[4.056566716404207,51.938412876957024],[4.05650152956036,51.93840052585185],[4.056392952700601,51.93837297347713],[4.056067354395309,51.93829986475177],[4.055959190021558,51.93827244608821],[4.055893582479469,51.93826021842532],[4.055770909212747,51.93822927958084],[4.055712769509966,51.93821868524663],[4.055590092645971,51.93818787561624],[4.055524489139856,51.938175519244496],[4.055409280252023,51.93814634197234],[4.055343673019699,51.93813411490207],[4.055264087367875,51.9381145029399],[4.055213567200896,51.93810038189529],[4.055126879128335,51.938080947357534],[4.055018300082588,51.93805352222093],[4.054953110381184,51.938041298763245],[4.054765248754439,51.937998136277784],[4.054656672491178,51.93797058228844],[4.054591483010207,51.937958358630816],[4.0544758580066,51.93792917661567],[4.054331079940739,51.93789746966847],[4.054222501830203,51.93787004379939],[4.053969567398114,51.93781078666761],[4.053781286620142,51.93776774638623],[4.05364065296854,51.937737117558164],[4.053464489109583,51.937693827677585],[4.05311727402423,51.937617885519835],[4.053003358224665,51.93758743057628],[4.05265614714364,51.93751135764241],[4.052548868751002,51.93748239701089],[4.052194606664425,51.9374048232402],[4.052101825868268,51.93737976907233],[4.052026770501033,51.937362399730304],[4.051733489463196,51.93729816326863],[4.051625380069715,51.937269062898665],[4.051321317825209,51.9372023800798],[4.051233952174623,51.93717777329449],[4.050887166004075,51.937101699911146],[4.050806026434334,51.93707832589319],[4.050268833994338,51.93696072995345],[4.050154506045383,51.936930266631556],[4.050067370635269,51.936911984652106],[4.05004491639251,51.936908890428136],[4.049752962082978,51.93684234123419],[4.049625346154548,51.93680940427875],[4.049367768801868,51.936752277698695],[4.049238919413026,51.9367186817497],[4.048960998352253,51.93665770903053],[4.048857871414801,51.93662969567532],[4.048559625956395,51.9365642332789],[4.048439494280744,51.936532412217666],[4.048174018785317,51.936474161076994],[4.04809827041761,51.93645213654014],[4.047800023428509,51.93638680072608],[4.047691501561307,51.93635769199709],[4.0474144193237,51.93629672604082],[4.047317098575784,51.9362700674555],[4.047210924412624,51.93624627613408],[4.047128926916725,51.93622379229326],[4.047008658601158,51.936196613861675],[4.046868474883774,51.93616520800037],[4.046680629003107,51.93612203173961],[4.046572059884722,51.93609459972745],[4.046427293390173,51.93606288307809],[4.04624660982641,51.93601759441897],[4.046173958475612,51.936003732973774],[4.046065807196336,51.93597630525543],[4.045921045309858,51.935944458582874],[4.04579094674353,51.93591097310558],[4.045667711738543,51.93588530739127],[4.045487025798548,51.935840146970406],[4.045414378811945,51.935826156554135],[4.045233693367655,51.935780995745176],[4.045089342240063,51.935749410719744],[4.044980778872728,51.9357218478413],[4.044915599173302,51.93570949033158],[4.044799984893507,51.935680297917294],[4.044654801352052,51.935648703745926],[4.044546654280689,51.935621145216466],[4.044408936554614,51.93559118396715],[4.044365858725574,51.93557972314671],[4.044009172711192,51.935500419362185],[4.04425576191553,51.93511470665341],[4.044247498212185,51.935014093013756],[4.044140694115905,51.93470434478525],[4.044132012056719,51.93460372634952],[4.044146059316862,51.93452491585158],[4.045417315621835,51.932555361361345],[4.045488298095923,51.932513073294615],[4.045581590710976,51.932492588971506],[4.047239658186021,51.932694088497],[4.048842422430634,51.9328886126901],[4.05044426102849,51.93325498142262],[4.05404196683669,51.934077672240036],[4.056288318374005,51.934591272738764],[4.060843990706329,51.93565441072065],[4.064179941658567,51.936432155590694],[4.068325671270525,51.93739180179418],[4.06885193508437,51.937513578988685],[4.072137693630947,51.938260855651315],[4.073448539265669,51.93853913249992],[4.073703323818113,51.938593207420695],[4.07502704959173,51.9388743206688],[4.076609191420785,51.93914307315296],[4.078368573373547,51.93940552005182],[4.07939759963813,51.93954200770022],[4.079710096645756,51.939464319807094],[4.079923786074882,51.93926669108346],[4.079906648747728,51.93906649447651],[4.079658298596042,51.93887714649991],[4.079349629988757,51.93883784052982],[4.078389298149787,51.93869437469471],[4.077810608769291,51.93860792818805],[4.075626674704503,51.93824383094267],[4.073186539896287,51.937761212377396],[4.070467046311594,51.937139152189054],[4.068205980575605,51.93661933787638],[4.063403438581076,51.93550880363024],[4.060328581979568,51.93479914572564],[4.057425490224642,51.934129158644474],[4.054162416992274,51.9333671426429],[4.050597213372818,51.932534371833],[4.049871221157048,51.93236585072101],[4.049023333712686,51.932169226673864],[4.045718521234411,51.9317657380118],[4.04548898952118,51.93176311828199],[4.045379145352387,51.93180664013702],[4.04527962143929,51.9319100243975],[4.044905523313455,51.93251209757344],[4.043729183171119,51.934406341355846],[4.043713614514638,51.93452203909433],[4.043921837419354,51.93502830755498],[4.043895287585156,51.935106329723375],[4.043680453794381,51.93542130557906],[4.043398088586979,51.93535588200132],[4.040839898776519,51.934760912420465],[4.040627989640163,51.93471306399682],[4.040242740318217,51.93462606641439],[4.040130400938601,51.93461316583837],[4.040081843173521,51.93465919196455],[4.039319626695912,51.93590663010612],[4.038412238780617,51.93739860056378],[4.037843000790624,51.938334683839344],[4.036429037792338,51.94067311408328],[4.036181745298646,51.9406208510709],[4.035962070646049,51.94058051825466],[4.035928656631977,51.94059471574605],[4.035918949559488,51.94061202364644],[4.035925584370999,51.94062745543875],[4.0359828238659,51.9406540501849],[4.036375389870649,51.94074914496554],[4.036238109891734,51.94098189887938],[4.036145740268593,51.94095709483477],[4.036027365764448,51.94095005674566],[4.035941424045292,51.940947520109994],[4.035873712804728,51.940949710089114],[4.03578004886594,51.940981795873064],[4.035645981560619,51.94109380754884],[4.035485606614827,51.94133068188122],[4.035411813572275,51.941382351618834],[4.03512810014967,51.9415272237912],[4.035054461736974,51.94157373342834],[4.034969727376764,51.941683601462955],[4.034866899738058,51.941853522019564],[4.034671476293565,51.94224173966656],[4.034626396091246,51.94235206365619],[4.03460395575709,51.94247322941459],[4.034601185474034,51.9425652012782],[4.034584379587391,51.94266565667349],[4.034530781974001,51.94273988136492],[4.03445107255635,51.94283535474624],[4.034221226430478,51.943104591367344],[4.03404334334418,51.94324293638409],[4.033798172015771,51.94339702350042],[4.033664180728629,51.94338141538408],[4.033579687195135,51.94349696286222],[4.033515630409752,51.943599454906504],[4.033466265204448,51.943671663914145],[4.033435216141753,51.94388434663229],[4.033449245492912,51.943959220086505],[4.033481583644996,51.94411934047785],[4.033471927555937,51.94420413597234],[4.033302377956927,51.944356769966994],[4.033087100170228,51.944543974894394],[4.032983054206301,51.944670781492476],[4.032833548195565,51.94485100105087],[4.032789594140628,51.94499295181276],[4.032761882331852,51.94513637963882],[4.032764199131018,51.94522569978664],[4.032780489435461,51.94529479406662],[4.03281300122006,51.94544910953424],[4.032638315247791,51.945522583847044],[4.032394372084719,51.945635389906315],[4.03198962416306,51.94576285897577],[4.031531938182143,51.945873200221996],[4.03110445853859,51.94586827035312],[4.030757131044342,51.94586426368625],[4.030414293869375,51.9457116570274],[4.030019021868168,51.945525410165764],[4.029673194695796,51.945471867622814],[4.031141304303453,51.942933617060554],[4.031024515101747,51.94273561795943],[4.030984370120553,51.94270986343694],[4.030906609763887,51.94268522381533],[4.03093484770434,51.94259367522989],[4.03033340845127,51.9424597622051],[4.03032642641062,51.942345354657064],[4.030601524622517,51.94190580308215],[4.031193159377338,51.94093981788926],[4.032592607627978,51.93860747575],[4.033359297165533,51.937357937047885],[4.03455151095134,51.93538358582189],[4.036397011412812,51.9323534659486],[4.036737022288253,51.93179193140419],[4.036849270450189,51.93164095725037],[4.037269317785684,51.93149971190531],[4.03746916321119,51.93117038116258],[4.038184094659441,51.93000912451337],[4.038273982414309,51.9299212499924],[4.038752632088826,51.929704539696],[4.040339581629934,51.92897380263706],[4.040427274320083,51.92895893591695],[4.040574694141892,51.92899869108788],[4.040451305351868,51.929187736639264],[4.040429017633012,51.929234966410235],[4.040449309942926,51.9292542967069],[4.041066971644471,51.92939918357516],[4.042449716321364,51.929715151584716],[4.042506243918102,51.92970947520048],[4.042633399025794,51.92949195386492],[4.044049672527334,51.92983190047222],[4.045800262364399,51.930230743640024],[4.047378390293923,51.93059030358311],[4.050305513844831,51.93126791340809],[4.053030800680178,51.931898769767656],[4.054299499799948,51.932194462753564],[4.058082053071559,51.93307628971923],[4.061085720801515,51.93375978391907],[4.06354205972614,51.93431845416797],[4.068289377165496,51.935414428257076],[4.069409478314055,51.935672933479786],[4.072356144506991,51.936346981299636],[4.073923737120509,51.93668141660552],[4.075049591841839,51.93691657684888],[4.075203049881508,51.936937386384876],[4.075317039197562,51.936894270510244],[4.07537004634719,51.93683769851453],[4.075473583055484,51.93610889638459],[4.07548897191576,51.935925062684625],[4.075603006481597,51.93589459222906],[4.076023539372747,51.93590547709644],[4.076454314488519,51.93592305568734],[4.076432398747198,51.93631637132244],[4.076629167552402,51.93635521162989],[4.076554204169677,51.937078397582724],[4.076565975912338,51.93713285353082],[4.076619141169399,51.937170995229735],[4.076767169291159,51.937206195082794],[4.077608472658805,51.937349509976876],[4.078424930371584,51.93747163771793],[4.079468390977759,51.937612802913605],[4.080378484918919,51.9377171198412],[4.081383691714326,51.93782442160501],[4.082787149117713,51.937948779494114],[4.082847968579014,51.93795358397615],[4.084519015225746,51.938079857838034],[4.085423847626483,51.938135946191885],[4.085973534162878,51.93815725864893],[4.086484856243073,51.938176981752804],[4.087769175734885,51.93822047627941],[4.089043546510511,51.93824707210301],[4.090945341882639,51.938234636369884],[4.093047981155992,51.938178316682645],[4.09401416248619,51.93813423784034],[4.094379145276518,51.938117605754044],[4.096025926404553,51.938014410894695],[4.097484582616532,51.937875579755264],[4.098393747780477,51.93778103115011],[4.100440930846948,51.93753144959737],[4.100694055357756,51.93749860650589],[4.103640590714638,51.93711622405891],[4.106295563607175,51.93676607557042],[4.1067527905348,51.936705893921975],[4.106905761720823,51.93668562366103],[4.10712391517896,51.936590319998494],[4.107125179883453,51.93654594510554],[4.107117297002143,51.93651489057928],[4.107096697428877,51.936431954849006],[4.107067062636566,51.936314467820736],[4.107003957568126,51.936126163441],[4.10708764143956,51.936105138392165],[4.107033910130497,51.93591022565832],[4.107065111089971,51.93585559647148],[4.107137733981393,51.93579780466897],[4.10723947299116,51.93575852488596],[4.107394424054171,51.935741888328984],[4.10751756730892,51.9357396934518],[4.107533069336703,51.93575987305903],[4.10759111349827,51.93590158228254],[4.107543531008168,51.93591577425685],[4.107677404884276,51.93631659639411],[4.10769239388839,51.936347340791116],[4.107733831350644,51.93643166461205],[4.10775199085225,51.93646837997385],[4.10779384189842,51.936508836491264],[4.107843584950399,51.936536088351865],[4.107929192075025,51.93655018105637],[4.108174117853555,51.93652626506109],[4.110519894450491,51.9362113682257],[4.112712740352292,51.93582585756116],[4.112714392890463,51.935929624228734],[4.116468259591048,51.93542599096458],[4.118997466091736,51.93510168275207],[4.123466905925711,51.93450438038561],[4.128805655013475,51.93380976467322],[4.1303447913728,51.93360583905226],[4.133986621917396,51.93312316134058],[4.14015755167162,51.932320640955886],[4.142562511523014,51.932007800396974],[4.14347996704737,51.93186215241223],[4.144398886690623,51.93167844823423],[4.14519992702735,51.9314849751712],[4.145650039072854,51.9313761800974],[4.147264030053787,51.93091965791604],[4.148584732130706,51.930485573555835],[4.149333980890285,51.93018558886706],[4.150050883214375,51.929862291767265],[4.150667751251813,51.92957858338411],[4.15136782529806,51.92924413278628],[4.152010060515964,51.92893294187055],[4.152296768919862,51.928798919374046],[4.152584378621772,51.92869277738488],[4.152739226238475,51.928663177238136],[4.152944746803453,51.92864288328462],[4.153422096305778,51.928604539144544],[4.154655141265612,51.92853076408544],[4.15513593351224,51.928473351680964],[4.15610284932842,51.928346576338285],[4.157031416721183,51.92821758672431],[4.157951773512506,51.92808334148581],[4.158231864871739,51.92803775325764],[4.158539140236654,51.927975028479075],[4.158937353825522,51.927883963007325],[4.160447214150496,51.92751649788817],[4.160831245396246,51.927409535369385],[4.161252517322679,51.92728386352216],[4.161563741711325,51.92718310761646],[4.161879610807029,51.927065107825705],[4.16264137888335,51.92679046154566],[4.163378978926076,51.92651388048207],[4.164259843643112,51.92614162295245],[4.16489829904725,51.925857032512674],[4.165345687996227,51.92564490684054],[4.165652593434369,51.92548731912015],[4.166234814961736,51.92516704084452],[4.166894476049294,51.924776852603834],[4.167034491650423,51.9246777880139],[4.167151784089252,51.924585455762525],[4.167257763120006,51.92449468334304],[4.167352991006687,51.92440018652127],[4.167457075641919,51.924286942128944],[4.167544328006453,51.92417868453703],[4.167618978170241,51.92405803765006],[4.168131961367727,51.92318089254115],[4.168204051515478,51.9230621540959],[4.168264870120987,51.92297426714565],[4.168337133217684,51.922895273132816],[4.168426136203716,51.92281464674797],[4.168658669657693,51.92261266666972],[4.169165293295871,51.92218436270893],[4.169955907096813,51.9215026067677],[4.17127347899588,51.92037906447077],[4.172042621655438,51.91971733053562],[4.172203114755509,51.91960079452678],[4.172419740894967,51.91946109554313],[4.172652593913188,51.919338596449414],[4.172901860124025,51.91922646104852],[4.173236700084515,51.91911366024139],[4.174902230205891,51.918637940845166],[4.175896357828278,51.918343153512964],[4.176132278577633,51.91826025203282],[4.176394369822916,51.91816815326759],[4.176947214250722,51.918048942048124],[4.179639050189389,51.91630911943213],[4.18151822259449,51.91520555687637],[4.183779493308556,51.91405736124088],[4.186277421222094,51.912855927592545],[4.188375451356421,51.911920818034794],[4.191126929518668,51.91088832301782],[4.193944100050963,51.909891270477594],[4.195958636254963,51.90913544053653],[4.197397885062184,51.9085467877197],[4.199782017496005,51.907378757601684],[4.202450892414165,51.90604025838784],[4.204130751492205,51.90521149514185],[4.205845658683153,51.90434847865699],[4.206867302644573,51.90385964263002],[4.207411428594837,51.90360174848789],[4.208198164680381,51.903096735824015],[4.209111736306328,51.90244730985418],[4.210019291273114,51.90202672291938],[4.21161941856577,51.90125253958056],[4.212347223099981,51.90084407120521],[4.213116575306835,51.90055343532896],[4.213795749755556,51.90029699089954],[4.215255622183613,51.899729360875455],[4.216163427828888,51.89929479382899],[4.216755791857742,51.89892636933488],[4.217688378178906,51.89838790708757],[4.218292336073618,51.89800578314532],[4.219044650899893,51.897500485084365],[4.220119965316399,51.89665180642177],[4.221038989209117,51.89578040477698],[4.222199448824618,51.894669065493176],[4.223330556539841,51.89338413178343],[4.22445783736901,51.892244699851894],[4.226362095629871,51.89008698850429],[4.227818128406497,51.88835476555343],[4.228651410421479,51.887302328945125],[4.229205184114003,51.88626816327703],[4.230097974886257,51.88463423138998],[4.230329169390123,51.88349275200928],[4.230598368517813,51.88260816601742],[4.230977498436136,51.88179408243973],[4.231952797680157,51.87957165035243],[4.232939066650118,51.878250491014846],[4.235375642113869,51.87581386378429],[4.238099281678736,51.87396206803483],[4.240851824736581,51.87273437057297],[4.241959799608995,51.87231549749069],[4.243970963161152,51.87157301762335],[4.247247678961384,51.870446921203204],[4.252366114243742,51.868618020423874],[4.259412532906957,51.86623916590232],[4.261431529627007,51.86564846773161],[4.262465810216374,51.865478247451996],[4.264859859962384,51.86510592264797],[4.267294219494768,51.86492129078137],[4.269490694777638,51.864831248405295],[4.270642783732112,51.864883757525995],[4.278270079986068,51.86520558155589],[4.281814321683178,51.86539861069781],[4.283740029121062,51.86540291521766],[4.286462506843544,51.86533143253295],[4.289278730082655,51.865073407707776],[4.291000028634504,51.864878131983396],[4.291678990083869,51.864829500093094],[4.293135445908887,51.86472540035077],[4.293820562579375,51.864680554681314],[4.294481206626699,51.86464786507186],[4.295021808492749,51.86463199114392],[4.295607996497905,51.864627118561266],[4.296779307952121,51.86463390531131],[4.298337289562566,51.86465013526185],[4.300533236753595,51.86466479874803],[4.303080684109497,51.864674924459564],[4.305585580544136,51.86468653831591],[4.307375905706541,51.86470301454996],[4.307509680184179,51.86470424457042],[4.308096037410656,51.864709634169266],[4.311852150697321,51.86476125141517],[4.314337063076713,51.864806947640446],[4.315056024763902,51.86481028771573],[4.315604936046118,51.86481284662012],[4.316789235131727,51.86482738971583],[4.317955143251584,51.864826526960336],[4.319142450156664,51.86483733158392],[4.320397640353149,51.864850676222176],[4.321699363382637,51.86485294622331],[4.322973445696239,51.86486062874516],[4.324067820855164,51.86487054132644],[4.326223143812644,51.86489377508952],[4.326775926637469,51.86489128470683],[4.327221464201491,51.86487608144923],[4.32811753321925,51.864775133459766],[4.328798051108661,51.86467610768044],[4.328947670060301,51.86465061768933],[4.329230370642008,51.86460245451393],[4.329883476935086,51.86448123971864],[4.330002121978734,51.86443443710662],[4.330058893994868,51.864377657856636],[4.330085638474019,51.86428602769193],[4.330063205381384,51.86419408337113],[4.32997499752442,51.86413406361951],[4.329895388523681,51.86411605658835],[4.328958142290731,51.86410761429571],[4.328399834692681,51.864079614019275],[4.327600728270109,51.86402853560525],[4.327385264256128,51.86400930095018],[4.32739031050749,51.86372418462414],[4.327391160961812,51.86368806379525],[4.327387397100644,51.86360002951968],[4.327387952471311,51.86355874365638],[4.327392199800022,51.863307556198436],[4.327395111150098,51.86313080789936],[4.329318435227616,51.86309008583196],[4.331278079795695,51.86310011039654],[4.331605304283704,51.863099181665106],[4.332733943400782,51.8631036442924],[4.332888774876299,51.8630954855168],[4.333267069248983,51.86303178492428],[4.333540565215748,51.86295785184299],[4.333724643859321,51.86287537468817],[4.33391856447385,51.86276421092805],[4.334091853786773,51.86262615200134],[4.334230794540268,51.8624953984886],[4.334323159885186,51.86237777450396],[4.334363066433053,51.86225761625869],[4.334329511457002,51.862106218878814],[4.334259103634693,51.862069200217014],[4.33418973572362,51.86200548190369],[4.334039575890266,51.861832005446246],[4.333823810204337,51.86164787713547],[4.333873007486668,51.86161167309941],[4.333804001517481,51.86153260282908],[4.333768151597952,51.86146157126554],[4.333767114844239,51.86138117447338],[4.333796915387836,51.86130105521596],[4.333853769222551,51.86124040334649],[4.334462538969299,51.86096276565985],[4.335105366158558,51.86067213980559],[4.335640850844316,51.86042648470166],[4.336457178190451,51.86005882442519],[4.3366040176888,51.85998181647827],[4.337240817935569,51.85955525414924],[4.337525147304988,51.85935508588401],[4.337704692284251,51.859197981467354],[4.33807573649442,51.85885355523667],[4.338096688905612,51.85883077471644],[4.338177104192165,51.85874233155036],[4.338199349701114,51.85871775668009],[4.338387100015657,51.85853027260356],[4.338818099835953,51.858116315041926],[4.339004987428262,51.85791191853226],[4.339097782143218,51.85784655297483],[4.339077743711479,51.85783011665641],[4.338442577045956,51.857472703237484],[4.337529274265216,51.85689009031891],[4.337587352022925,51.85686583588075],[4.337650399556907,51.85682510859728],[4.337675346627251,51.85677397667793],[4.337678408217242,51.85676781064035],[4.338193428480587,51.85712957446797],[4.338454420243205,51.85696429295996],[4.338590069268748,51.857045117082684],[4.338324171044834,51.85722416122543],[4.339089436017731,51.85770376957315],[4.339171083260702,51.85774127221883],[4.339525392201181,51.85738069174896],[4.339816628640559,51.85706174186667],[4.339797838969946,51.85690209013957],[4.33956595190569,51.856622731433944],[4.339408149358714,51.856580549402096],[4.339074711461819,51.85642079950016],[4.338607821013836,51.85622927553405],[4.338255032270014,51.85604173722082],[4.33823593473714,51.85569872803634],[4.338313191293744,51.85563825721518],[4.338830884028265,51.85558068682802],[4.339112881953907,51.85560462326955],[4.339532013690618,51.855770816095394],[4.339788666308302,51.855881105636065],[4.339853057282271,51.855889938182045],[4.339919307921851,51.8558905291109],[4.340015773757642,51.85588209847876],[4.340145011361729,51.855844283819295],[4.340391407086218,51.855607126027174],[4.340725686711605,51.85528236336679],[4.341149143800796,51.854885878452365],[4.341639102169386,51.854388952694755],[4.342129755760006,51.85391551390593],[4.342399644632615,51.853652754639455],[4.342705667688038,51.8533950902586],[4.34311668390322,51.85310223031425],[4.345395146425719,51.85141743713689],[4.346197391471329,51.85081913415153],[4.346663507081858,51.850484168862415],[4.347071995139006,51.85017217581527],[4.347577487946614,51.8498095560553],[4.347926957411596,51.84954465023457],[4.348405556079037,51.84919120843675],[4.349545162565417,51.8485779317056],[4.349953925587847,51.84837909243603],[4.350314651596537,51.848203311194695],[4.351729722601919,51.84751347796991],[4.352972660275626,51.84691462787266],[4.354881288141767,51.84601116921271],[4.355929474411221,51.84550722038633],[4.357066870712966,51.84494559350698],[4.35731873015958,51.84486380317299],[4.358581172792498,51.84451719419626],[4.358886890618471,51.84443032442612],[4.358976186787485,51.84436968768623],[4.359018242746309,51.84429779736218],[4.359066432127517,51.84419447779998],[4.35907315053159,51.844119182173905],[4.358992383968195,51.84398866791442],[4.358701497936907,51.84360870118231],[4.358623988547037,51.84346337710429],[4.358666262187959,51.84338194163001],[4.35879495906658,51.843310810436215],[4.359178356344589,51.84317894299808],[4.359398205643044,51.84311170693028],[4.359642203388044,51.843063391454336],[4.359903490006428,51.84304258107641],[4.360045010876059,51.84304846490838],[4.360126334277872,51.843081434214476],[4.360177718819511,51.84314846409903],[4.360545462807954,51.84364819673736],[4.360652219490934,51.843717000547585],[4.360869793894959,51.84374961277195],[4.361008365441798,51.843757017542025],[4.361242759345222,51.84370977615497],[4.362497084582467,51.84333260345589],[4.363939632387414,51.84286699338765],[4.366618043855699,51.8419703102388],[4.366939923543568,51.8418674312903],[4.367266839542628,51.841762788443624],[4.367849497424806,51.84156875293412],[4.368424387493735,51.841367936892034],[4.368645849982131,51.84128366535659],[4.368862948431754,51.84115277479659],[4.36904334771279,51.84100505014393],[4.369196897218563,51.84084715599411],[4.369294993054526,51.84076491005546],[4.369397599470733,51.84072270308505],[4.369778488865146,51.84069942453041],[4.370626400625357,51.84062057704381],[4.371477950436144,51.84052807734007],[4.371761113868923,51.840496849075215],[4.371947751068392,51.84047846384475],[4.372829577537082,51.84039176418958],[4.373042277581422,51.84034444138157],[4.373489146780874,51.84018443080352],[4.375012766713726,51.83953112760637],[4.375232063242441,51.839597921187504],[4.375465953684754,51.83964561457611],[4.375626447496262,51.83965951391646],[4.375774218767479,51.839664916732815],[4.375962349958618,51.83965402131693],[4.376147333833168,51.83963484034809],[4.376418446520366,51.83960182066642],[4.376742510105546,51.83952977222078],[4.37780976590903,51.83923534170927],[4.37906421172213,51.838896703462666],[4.380021643401501,51.838649825778454],[4.382903794663561,51.83793142511057],[4.383234342409136,51.83777296320921],[4.383957486244132,51.83741940489245],[4.385139594207543,51.83684511759638],[4.385170044737975,51.83684331277721],[4.385268415488791,51.83691550665191],[4.385461957932824,51.83707277136523],[4.386216953009871,51.837684112512385],[4.386263279250777,51.83771779806554],[4.386339823706051,51.83774128891714],[4.38643029769645,51.83775664123866],[4.389598826811851,51.8379063204839],[4.3909987948065,51.83797020975984],[4.391895764039438,51.838004914703994],[4.39218102303346,51.838009397787886],[4.393394437868611,51.8379946445845],[4.393531654282884,51.838006257617636],[4.393678733870132,51.83804285779096],[4.393854745994763,51.838127572243664],[4.39408266674099,51.838219823252906],[4.394299494239989,51.83828617277685],[4.394473323193075,51.83831886868401],[4.39465746954799,51.8383370715322],[4.396560876441972,51.83839263290065],[4.397508529851782,51.83841520731275],[4.398787391749505,51.838436821251285],[4.399239692771348,51.83844191870304],[4.399342471194744,51.838447299698316],[4.402862557783084,51.838564739920024],[4.408083687588015,51.838773565147626],[4.41112006684906,51.83891446437832],[4.413357466591589,51.83901562613024],[4.416579055706258,51.83922398417817],[4.418842432819382,51.83935828839087],[4.419800676668007,51.83943225298558],[4.420545309168597,51.83952096713511],[4.421185795341877,51.83949320800943],[4.421746661630718,51.83944827351066],[4.422875460977826,51.83902813613612],[4.423791337817165,51.83858972545236],[4.42435924937973,51.83821451708741],[4.424872781152925,51.83788840879034],[4.42525090833746,51.83766028408636],[4.425787205752172,51.83751603376016],[4.426156165851656,51.83771724654943],[4.426823278327152,51.83768967480463],[4.427065297175282,51.83759255837118],[4.427656308018594,51.837382683207],[4.427928144551997,51.8371371648901],[4.428121415711392,51.83682494113835],[4.42828732667425,51.836545525040016],[4.428322065260499,51.836165941068145],[4.427985740906947,51.83568423015615],[4.426884177007755,51.83483290764135],[4.426097219915154,51.83423189196876],[4.425490515931672,51.83392963485684],[4.425101284239094,51.83343096559469],[4.424317904501685,51.83266480583796],[4.423451059489525,51.832063116479375],[4.422609477961262,51.83152769118571],[4.422319126955219,51.83139317687584],[4.422082790786497,51.83122607356974],[4.421925706966414,51.831092653977414],[4.421960140879607,51.83072958506231],[4.421319781216676,51.830757349668836],[4.420686505189456,51.83045484847916],[4.419573503088803,51.830148389921604],[4.418964415456752,51.8299616913265],[4.418379853051595,51.829874287486945],[4.417873115836648,51.829886619886715],[4.416804559910333,51.82999340205256],[4.416109480040251,51.830086749759666],[4.415600248796399,51.830214663492],[4.41445136808938,51.830337275582444],[4.413010736886037,51.83039139130531],[4.412155016059277,51.83051641381138],[4.411697642142777,51.83071080549448],[4.409586395043533,51.830957496833264],[4.407235970499353,51.83116912028346],[4.404725970378293,51.83136284583305],[4.403470780624588,51.83146794550418],[4.401575925962161,51.83156766122119],[4.400773457510143,51.831693048189564],[4.400236787051754,51.83185369748961],[4.399619432373481,51.8320466971266],[4.399006054955641,51.83205805092426],[4.397859983957183,51.83204839649034],[4.39706076280589,51.83202514101424],[4.396556900804425,51.831905277511304],[4.396028569584984,51.83168610852931],[4.395370979613502,51.831284167848594],[4.393974058239248,51.83056216483143],[4.393024062648177,51.83012470434172],[4.391626120316626,51.829452213022584],[4.390357822457484,51.82894596511792],[4.389224266454865,51.82837478574657],[4.388115560605082,51.82788638728808],[4.387009811038873,51.82726587485629],[4.386326449647711,51.82683063111533],[4.385748230978993,51.82646234478093],[4.385167084255827,51.82622615909755],[4.384533380967711,51.82595648980694],[4.38331487823923,51.825615751136965],[4.382524744512636,51.82535841029549],[4.382096999705902,51.825191909344966],[4.381509584319534,51.82495823234471],[4.380980130445367,51.82474027481133],[4.380425659621185,51.82448648779994],[4.380205602593995,51.82438214911071],[4.379964275186037,51.82426059427676],[4.379693455307148,51.824117108883634],[4.379488615931219,51.82400283362662],[4.378915603935898,51.82366655835638],[4.378515625671823,51.82341434733205],[4.377806662118215,51.822826833140844],[4.376500247516045,51.82210410576745],[4.376247048815499,51.82195586051588],[4.375861261041711,51.82174066575299],[4.375475136679948,51.82154069230332],[4.375139963398994,51.8213713509042],[4.374867666812152,51.8212394542403],[4.374581630894563,51.82110743838148],[4.374248921034289,51.820958502624975],[4.373644686590936,51.820680768823486],[4.373208066219574,51.820467964842415],[4.372825392929754,51.82026362570837],[4.371946421965551,51.81974196077808],[4.370006514939317,51.818516645500495],[4.369480036641264,51.818191047583085],[4.369216835807049,51.818063603943955],[4.368962154003017,51.817927716567105],[4.368671306618362,51.81782609533159],[4.368325678493945,51.817790063145246],[4.367926388541694,51.81777007930206],[4.367659572910838,51.81778427782834],[4.367178482832209,51.817846161579716],[4.366081582230989,51.81803481550441],[4.364715605720566,51.81833672862837],[4.363457689770545,51.8185735032664],[4.361879271364865,51.81884049733968],[4.360621326625958,51.819077242377304],[4.358909273314866,51.81935954395391],[4.3570358172451,51.81970646850202],[4.356071677230279,51.819912711059025],[4.35524264646663,51.82003755295277],[4.3545761329875,51.820048206340154],[4.354072520497024,51.81992816006188],[4.353356504819909,51.819773208714054],[4.352720429121244,51.81961895767949],[4.351897085747811,51.8194960839581],[4.348395160895859,51.81880448925583],[4.346166164670049,51.81838834841638],[4.344521090317095,51.81807645136779],[4.343139417863187,51.81789900436867],[4.341863566199136,51.81775551654721],[4.340907065791324,51.81763137904284],[4.339182123833364,51.81731869456697],[4.338360011327344,51.81714618707114],[4.337723641529144,51.81700836793316],[4.337480388754273,51.81715483815125],[4.335732312222047,51.8166932497031],[4.335206769026,51.8163747318295],[4.334680846247394,51.816072723668285],[4.334101261447301,51.815786747949446],[4.333576124906094,51.815451708918964],[4.333079184909882,51.81505085683964],[4.332031659088471,51.814265179295305],[4.331663699478642,51.814047158900706],[4.331214658650145,51.81387795609672],[4.330498044368188,51.81375589155675],[4.328289900633281,51.8136038547314],[4.326428109378647,51.81345490875605],[4.324914224634911,51.8132430183888],[4.323186055290575,51.81307871395834],[4.321305080254509,51.81261570322973],[4.32010780746302,51.812538756125306],[4.318596723749976,51.81221119579712],[4.316208882574618,51.81177651761598],[4.314724492024885,51.81144915068379],[4.313105743378664,51.811170082633474],[4.311118001579821,51.81072244639371],[4.309128718514138,51.81034082803141],[4.308307640036689,51.81013508478125],[4.30780663496446,51.809915765065405],[4.307593520861416,51.809913804338144],[4.306930313300436,51.809792086377556],[4.305662731868265,51.809317952151154],[4.304977655913356,51.80899782604586],[4.304557387615753,51.808746203883366],[4.303874312098394,51.808343507994195],[4.302719312890643,51.807622636689075],[4.300852704579988,51.80658135659187],[4.299461255729214,51.805726132420595],[4.298389093361863,51.80489037051852],[4.297394483804211,51.804154418125194],[4.297157956520232,51.80402008936505],[4.296893596964134,51.80393505198113],[4.296529887632005,51.80355179540277],[4.296374070126717,51.80338518312505],[4.295820726824854,51.80313229235924],[4.295530939051224,51.8029974647625],[4.295129816149047,51.80305979776394],[4.294000739572652,51.80347870713052],[4.292767904488146,51.80378102293049],[4.291242062586202,51.80408059000519],[4.290626635114993,51.804190453438366],[4.290173026486404,51.80421924590207],[4.289855809143116,51.804117180861766],[4.289590258502417,51.80408166456324],[4.289400994707505,51.80419550783081],[4.289235150691095,51.80444170063022],[4.288972814680852,51.804274082369474],[4.288571670081696,51.80433639196571],[4.28798166111739,51.804496029283584],[4.287551058103829,51.80467367352494],[4.287305293164564,51.80491911544252],[4.287538976632143,51.805169050777025],[4.287800909816439,51.80535318591012],[4.288302572727948,51.805539565184795],[4.288831679677727,51.80569316700203],[4.289570264763999,51.80599737354718],[4.289987612096256,51.80636463692925],[4.290218505597705,51.80673015559688],[4.290239115339368,51.80697809293791],[4.29005024421742,51.80707542530412],[4.289728587201076,51.80715499881928],[4.289437183782333,51.80708620737118],[4.289281381891353,51.806919585795555],[4.288916103181513,51.80660235610622],[4.288600482797663,51.80643423832066],[4.287543060772933,51.80609400462458],[4.286723771249863,51.805822061396235],[4.286485654738615,51.80575376232844],[4.286119598652511,51.80546954952951],[4.28586009314869,51.80518633581428],[4.285572742815158,51.80495240883551],[4.285282168574259,51.80485058157034],[4.28493670849595,51.80481430418952],[4.28478052589104,51.804664189422695],[4.283740515968815,51.8047039611338],[4.283498772162893,51.804784269137585],[4.283412397255675,51.80504771805217],[4.283425694157692,51.80559288361892],[4.283026552185991,51.80557261126419],[4.283051218622476,51.80456534522811],[4.282380469533207,51.80475722686637],[4.281607624699103,51.804766463028685],[4.280808143372274,51.8047754429119],[4.279319374855055,51.804645778644684],[4.278410102365474,51.804785836208644],[4.277286112514239,51.80498992108199],[4.276347751014047,51.80522878616042],[4.275489289392892,51.805468400021404],[4.274470998348122,51.80570649279419],[4.273880512868786,51.80588257077704],[4.27321500918998,51.80585973803915],[4.271162776585269,51.805889783094486],[4.268874089708632,51.80578540760543],[4.264828731952601,51.80454108000749],[4.26450704907722,51.804620584312744],[4.264369347325413,51.80480094658437],[4.264524639924051,51.80498411368204],[4.264947114723039,51.80513680338747],[4.26616456905186,51.80546225380643],[4.265553926471998,51.80644740147983],[4.263429572947184,51.80616281075282],[4.264173849442358,51.80516243644864],[4.263804648050056,51.80501025406525],[4.263513298529294,51.80494139836651],[4.263517413689739,51.804776273404514],[4.263734203862349,51.8046297018226],[4.263974747679874,51.80459897268506],[4.264085814525242,51.80441835499373],[4.263958395423987,51.80418590609142],[4.26298935275292,51.803515967604355],[4.261863004714519,51.80274541411488],[4.261236146230956,51.802243906045355],[4.260716660847117,51.80171039410256],[4.259991354689793,51.801951173243474],[4.259487371843349,51.80186374837767],[4.260401180333664,51.801542199874284],[4.260512666400651,51.80134507375186],[4.26038527433603,51.801112620066576],[4.260126781192577,51.800796325405116],[4.258414858561629,51.798946541439925],[4.257009821685953,51.7976116989139],[4.255100129447562,51.796222419566966],[4.253635376126045,51.79515122160362],[4.252956700106394,51.79459961769041],[4.252643790449163,51.794332328608135],[4.252190257974084,51.79436097355562],[4.252246840351681,51.79422938950889],[4.252464031444526,51.794066326788034],[4.25192268610708,51.79335088106292],[4.251328934792607,51.792601891860684],[4.250781386019034,51.79213412693399],[4.250466008006176,51.79196590699452],[4.250019991461976,51.79169731968955],[4.249578977684824,51.791230582636075],[4.249318117349948,51.79101333822419],[4.249027297141343,51.79092793413535],[4.249137139800975,51.79079686830168],[4.248388708433196,51.78984816506033],[4.247198093159352,51.78848224802241],[4.246988006891204,51.78836459089575],[4.246591541230585,51.78824512016472],[4.246861138206583,51.78811560986347],[4.246733437439994,51.787899653967656],[4.246061219972335,51.787100324392846],[4.245488838676854,51.78656622705429],[4.244861130570159,51.786114169638815],[4.244572024745066,51.7859627049839],[4.244232599784795,51.78569513413987],[4.243812468318481,51.78545980802421],[4.243042042191886,51.78538622889074],[4.242430944814082,51.78533071572877],[4.242113549911671,51.7852450356169],[4.241470379716838,51.78540391879849],[4.240912111960021,51.785365431385294],[4.240462020356568,51.78526193218912],[4.239924079436777,51.78547138587936],[4.239468948040222,51.78556603232301],[4.239070425871298,51.78552909837179],[4.238933101787251,51.785692919344044],[4.238323265547106,51.78558784787138],[4.237758687635226,51.785797030788544],[4.237222412964923,51.785940422559705],[4.236876295340287,51.785937028409066],[4.236501868307792,51.785999421474386],[4.236046303147647,51.786110567178206],[4.235779214578954,51.78614097797482],[4.235538750524719,51.786171650498765],[4.235160524674237,51.78638265070512],[4.234597609766515,51.78652576889368],[4.234088363730527,51.7866528953355],[4.233818737641654,51.78678237619736],[4.233336110397349,51.78690976116322],[4.232953643168182,51.78728587808216],[4.23233661484679,51.7874614855372],[4.231608184822296,51.78766463897742],[4.230910903394526,51.787886158781625],[4.230050878291007,51.7882062013596],[4.22949179935767,51.78845772294085],[4.228905375338289,51.78886639499855],[4.228576713937185,51.78910599359256],[4.228317527189125,51.78934627683526],[4.228216363716888,51.78968799544104],[4.228210490383487,51.78991658817522],[4.228273322466324,51.79015979570818],[4.228360176263982,51.79037511066605],[4.22826414818645,51.79051687421847],[4.227449397304842,51.790837603409955],[4.2270763699984,51.79100527360734],[4.226773916027873,51.791131059066814],[4.226451474447497,51.791127868646285],[4.22608290165378,51.791138414620505],[4.225847625146943,51.79132189639773],[4.225650077789849,51.79183401764608],[4.225314444265933,51.792358963868125],[4.225121293400901,51.792700026672044],[4.224792949591494,51.7929254241052],[4.224002490315905,51.79318907875101],[4.223630212807516,51.7933425507695],[4.223235373139408,51.793467152784196],[4.222980878097026,51.793507466937264],[4.22276851044993,51.79370536396409],[4.222578292484592,51.79393186839608],[4.222181970490905,51.79411348591657],[4.221787901262054,51.794223896839526],[4.221578478871314,51.79430749557514],[4.22106652223756,51.794502411277975],[4.221017797590584,51.79461625232766],[4.221383817502947,51.794705570217],[4.221565929816058,51.79479305959918],[4.221446972658116,51.794935106739715],[4.221239028502619,51.79496142786586],[4.220943190049269,51.794829709545446],[4.220620998446283,51.7947836659649],[4.220569266994075,51.794997608447595],[4.22091064882237,51.79518681426263],[4.220836406787519,51.79538608110879],[4.220713719958013,51.795656093832655],[4.220801704621191,51.79584277981865],[4.220811671916344,51.796342503565896],[4.220143781035534,51.79632166673075],[4.21982352015308,51.7962328004497],[4.219481483959361,51.796100876724815],[4.219040420243977,51.79622500467245],[4.218600513597466,51.79632049663884],[4.21827692560818,51.796360112380555],[4.217909412065232,51.796328061708905],[4.217656006845332,51.79632553549405],[4.217119923169878,51.79653438848727],[4.216716929460152,51.79698741204791],[4.21640805618167,51.79734175720356],[4.216057492549892,51.79753826295501],[4.215777857053254,51.79766399029578],[4.215371827784612,51.798216852596205],[4.214679958905728,51.79825277906061],[4.214442419725734,51.79853608845159],[4.214341499097471,51.79886360408555],[4.214448217330641,51.7991934535833],[4.214096892461745,51.79941833386634],[4.213744349410148,51.79965791085261],[4.21353117353152,51.79988417129603],[4.213159920241779,51.799994781019656],[4.212559618470793,51.80004580547589],[4.212192041031442,51.79999928450775],[4.21163681250663,51.800093595531],[4.211082321876057,51.800159523444044],[4.210757212338295,51.80025613718713],[4.210639006376003,51.800383471218154],[4.210384746888838,51.80038092088232],[4.209879798143834,51.800318820597475],[4.20925771966903,51.80032676981543],[4.208794818286242,51.8004078005336],[4.208376193206377,51.80054656615239],[4.207795445643733,51.80074073430194],[4.207472194639597,51.8007658719442],[4.207103910453853,51.80076216778763],[4.206917229199881,51.80081758153178],[4.206731424044344,51.80088719775336],[4.206541095147909,51.80111367564323],[4.206423195430911,51.80121287867214],[4.205708387314472,51.80124852168342],[4.205082511194774,51.80138492930519],[4.204365823246759,51.80149203099941],[4.203878137661769,51.80164427833986],[4.203624705049948,51.80164172173805],[4.203439561584197,51.801654047645684],[4.203250711475178,51.80182350139835],[4.203177132309321,51.80199411830971],[4.203147116848728,51.80226530657261],[4.202910570908284,51.80249131132947],[4.20276790724493,51.80266123056579],[4.20269206792989,51.80291776210015],[4.202595595926613,51.80308814750823],[4.202431531596587,51.80320107440417],[4.202130396369443,51.803255066719935],[4.201740286478893,51.803194091546665],[4.201557812741123,51.803120503754855],[4.201327675498643,51.80311817767705],[4.201049085800244,51.80320129902804],[4.200837329722112,51.80337051737657],[4.200582005421521,51.8034394209456],[4.200263276522019,51.80330767701857],[4.199826523185934,51.80323177158956],[4.199434956929423,51.803242001817026],[4.198857480575668,51.80329344562182],[4.198455551825066,51.80331776158924],[4.198136569264137,51.80354318044537],[4.197170532837753,51.80349054531881],[4.196731640303283,51.8035431263791],[4.196245337344847,51.80360967648743],[4.195734712447908,51.80376165741402],[4.195408030441138,51.80391550400217],[4.195197764092791,51.80402743557613],[4.195031761071857,51.80419710847159],[4.194870703065448,51.804195471714195],[4.194752776473764,51.80429440495066],[4.194883399613596,51.80458116002726],[4.193719536932496,51.804169572529126],[4.193442066132182,51.80420958940947],[4.193254602451062,51.80429336160402],[4.192312621831226,51.804212285405015],[4.191137390388368,51.804214761723934],[4.190053419742685,51.80426073951835],[4.188990019725173,51.804378403337076],[4.187722434103564,51.80439409618493],[4.186986157088922,51.804357920094894],[4.186338017004368,51.80445116150472],[4.185809371663849,51.80440290915283],[4.185378063261771,51.80417009764932],[4.185361260069904,51.803941531589246],[4.185134892556002,51.80378204643182],[4.184951710962689,51.803751523365044],[4.184784528403502,51.80396400993152],[4.184183378763549,51.804043527038715],[4.183559717975505,51.8041086161224],[4.183027195229343,51.80417463739796],[4.182747812930762,51.80428583743776],[4.182352035515974,51.80445313350737],[4.181999737783991,51.80470681293083],[4.181693222412937,51.80496070376972],[4.180956516220246,51.805796252708504],[4.179916002296541,51.80681370930092],[4.179391410631656,51.80743697405493],[4.178992911860217,51.80770436301984],[4.178594758591056,51.80794310731182],[4.177589257554032,51.80848966515517],[4.176208468742876,51.80928989677532],[4.17541168436731,51.809767362316784],[4.174521781366979,51.81030089416635],[4.173224795000825,51.81140183763291],[4.172372505819038,51.812221427985435],[4.171358010115096,51.81311055963791],[4.16982180487174,51.8145375135077],[4.168287375516526,51.81586433407966],[4.167317341984271,51.81679699237886],[4.166522363992402,51.81749145568236],[4.166264336377132,51.817685938607795],[4.166011112275028,51.817826017712974],[4.165245081757543,51.81821934550012],[4.164843778429797,51.81842988206804],[4.164283104163689,51.818728049368374],[4.164077120797376,51.81883016428157],[4.163780091304648,51.81898810482271],[4.163461771580976,51.819147887428485],[4.163082506475567,51.81934367989724],[4.162871112870737,51.819445477396684],[4.162824447216324,51.819461765333244],[4.16224247870889,51.819546533387715],[4.162016670553528,51.819581079537144],[4.161179246597202,51.819703176153915],[4.160966757451797,51.81973786034861],[4.160523138927655,51.819818903940465],[4.160350792430124,51.81986278106209],[4.159907625811429,51.820034151973594],[4.159754870117385,51.82012313803481],[4.159714451446077,51.820169942980534],[4.159685929247454,51.82022332304551],[4.159669492372278,51.82032225131931],[4.159674804243556,51.820433020314255],[4.159698850332481,51.820543984378666],[4.159729214889512,51.820621723732806],[4.159733073798346,51.820678798204284],[4.159712620194707,51.82069587508057],[4.159530613632272,51.82084958942657],[4.159489541503714,51.82087445009027],[4.159439917646612,51.82089225459633],[4.159347587499648,51.820903159750856],[4.159105990143853,51.82092076120333],[4.159027356264922,51.82093335829206],[4.158950762450877,51.820962750626904],[4.158911638665245,51.8209925360202],[4.158897402086045,51.821025936692536],[4.158893573176154,51.821059445404444],[4.158947403745136,51.82117768985216],[4.15897972315462,51.821275321503066],[4.158998623151746,51.821376426371394],[4.158986150854158,51.82148262160532],[4.158981595042452,51.8215122519381],[4.158904707151669,51.82164409617121],[4.158749457627849,51.82177847575091],[4.158620141933663,51.821847576119396],[4.15838962595083,51.82196258552583],[4.158008590615674,51.82212995436413],[4.157674540198713,51.82225420111394],[4.157270445943116,51.822304935826544],[4.15690263681718,51.82235372764887],[4.156337196005414,51.822426251918564],[4.156040703636154,51.82244069051196],[4.155505538147158,51.8224263002702],[4.154969364268415,51.822403122582685],[4.154422126205198,51.822327695706555],[4.153578236103483,51.822257405656266],[4.152637996237589,51.822116674555424],[4.151008879504592,51.821872420422046],[4.149815658693181,51.82169390362838],[4.148171233356913,51.82149254658103],[4.147566922919445,51.8214337758],[4.146818295993389,51.8215043189563],[4.14654650853022,51.82165009598191],[4.145906661140417,51.82185340067619],[4.145422172089691,51.82204053916515],[4.144723189513414,51.82230385961834],[4.144096222156038,51.822567938849424],[4.143017457688177,51.822844773518334],[4.142355308972415,51.82282897691883],[4.14183405667238,51.82282344634385],[4.140790789138588,51.82279482127362],[4.140230629011603,51.82267531775147],[4.139880339018846,51.82260191552189],[4.139544517760418,51.82250234276247],[4.13934190268006,51.8221943712924],[4.138859922782256,51.82177864975686],[4.138434343768247,51.82137178571801],[4.138357086232332,51.82110901855271],[4.138248272585611,51.8209331447711],[4.138407773487635,51.82081277410587],[4.138501242461704,51.82049040267874],[4.138619137764649,51.820308425014495],[4.138671584730585,51.81993348540824],[4.136931502192142,51.8196266907936],[4.137002378865408,51.820134044342105],[4.136746010196807,51.82021854113962],[4.136600214708904,51.82040021963739],[4.136370935545572,51.8205288774401],[4.136173115520913,51.82054431752716],[4.135878507054956,51.820506078557116],[4.135563099275719,51.82019715540088],[4.134211202393797,51.820112790321424],[4.133483040432604,51.81995662035907],[4.132937886810875,51.81979362765854],[4.13260081595687,51.819755184513944],[4.132254527372864,51.81952437701627],[4.132127001671082,51.81955785291537],[4.131981425449065,51.8197310116983],[4.132074327435959,51.81992401223344],[4.132280215587733,51.8201272534864],[4.132599974313302,51.820279065176955],[4.132963901935546,51.820370184043384],[4.133470652579995,51.82040192264794],[4.133947955516852,51.820459410803856],[4.134481390274171,51.820535044245595],[4.13488886368243,51.82061784841167],[4.135350732439298,51.82073632832851],[4.135825369259617,51.82089004123566],[4.136100912869437,51.82112008461357],[4.136280706424189,51.82124406955905],[4.136205500106057,51.82141798359056],[4.136896086850793,51.82192394146857],[4.136166118894667,51.82232649913451],[4.134533790080421,51.821181820206036],[4.134171798163256,51.82102078849401],[4.133962424969774,51.82095738949468],[4.133710100413993,51.82091107931226],[4.133511066325934,51.820970117096834],[4.13331106122201,51.82106398306447],[4.133209235617512,51.82117644769338],[4.1332891321996,51.82134324284957],[4.13348209756447,51.821502471557686],[4.133764970736733,51.821977768136215],[4.134002973670628,51.82253929725805],[4.133499593059061,51.82290941742519],[4.132834171074063,51.82199388762164],[4.13210984869568,51.82098120396132],[4.131285318549437,51.81988950492754],[4.130646900395699,51.81984576567403],[4.129591115241503,51.81988039241395],[4.129070356921596,51.81988823028517],[4.128986464960362,51.81988010429556],[4.128905574309201,51.81985394553603],[4.128844626026094,51.81979961237271],[4.128802902834721,51.819727937338506],[4.128736324308566,51.81957702384213],[4.128674721591618,51.81933738715154],[4.128633372073029,51.81926726311408],[4.128603750697653,51.819254300159],[4.128522061594323,51.81925677875866],[4.128488691233329,51.81927371172488],[4.128468792218754,51.819300337622046],[4.128468086055842,51.81932562144024],[4.128480941303011,51.81946176473428],[4.128483521179746,51.81956321507192],[4.128447767370801,51.81957599367607],[4.128437243095235,51.819594977647796],[4.128497878034925,51.82013758388932],[4.128543083468322,51.82041265947075],[4.128555040056709,51.82043188458198],[4.128572529487538,51.82044678225902],[4.128617824181811,51.82076340908395],[4.12863070702806,51.82085387261537],[4.128652632552149,51.8210081780315],[4.128720555587567,51.82157331386592],[4.128795680973253,51.822134140070375],[4.128851854438357,51.82258327502022],[4.128867355809312,51.82260976459478],[4.128886876402439,51.822656426992744],[4.128916056483857,51.82278964840377],[4.128930171433737,51.822910578116925],[4.128946294690386,51.822974494982525],[4.128937306568714,51.82298317305992],[4.128853845048707,51.82298924573279],[4.128795062095398,51.82299145420689],[4.128546178139631,51.82300065719414],[4.128428606415953,51.823005331735516],[4.128393139953311,51.82299282113913],[4.12839381738972,51.82296856989341],[4.128392370876456,51.82281164532495],[4.12838327849452,51.82266005838237],[4.128341075031178,51.822366950135354],[4.128229344718656,51.821521591810324],[4.128202877299921,51.821350979543034],[4.128171899176218,51.8211480589766],[4.128154642814472,51.821035353890835],[4.128084674853419,51.820588393280666],[4.128097282330003,51.820554462712735],[4.128132375767824,51.82055045157896],[4.128144406553214,51.82053716143894],[4.128059731915743,51.820094945748195],[4.128026732021127,51.819889939465135],[4.128017785106861,51.819792807569414],[4.12796123135707,51.81974523160652],[4.127957492062036,51.81968531825033],[4.12794537789088,51.81961215288785],[4.127872043300753,51.81961368872298],[4.127833292062419,51.819599594721836],[4.127826426719968,51.81957706846678],[4.127850114523127,51.81956390346321],[4.127889235853687,51.81953490313209],[4.127863835844514,51.81934107473346],[4.127814090454105,51.8193180882775],[4.127748250309501,51.81931970446557],[4.127685472192398,51.81934587000194],[4.127661467176059,51.81937038775026],[4.127655391240094,51.81945368031352],[4.127652182612147,51.819568488676644],[4.127607520657438,51.81964672228297],[4.127594673690996,51.81968916579592],[4.127581820916392,51.81973186813693],[4.127579781256222,51.81984952876385],[4.127583915085711,51.820074097080536],[4.127592714278509,51.8203105876377],[4.127597711998056,51.820399934691316],[4.127099454486949,51.820377294341725],[4.126647125740487,51.82042482492591],[4.126176243683209,51.820629321541],[4.125616194653955,51.82099905729878],[4.124970164227577,51.82141999727773],[4.124579258254577,51.82175696558794],[4.124205793688279,51.82200637576284],[4.122892193202888,51.822114298849236],[4.12255132615945,51.82120168931438],[4.122252368525127,51.82081419487282],[4.12210443380666,51.82055065438033],[4.121809344951176,51.820529923741915],[4.12166526596389,51.82063340644847],[4.121742671619383,51.820887411584295],[4.122063470352258,51.821520313574744],[4.122238323921932,51.82181898409731],[4.122063730047448,51.822000592526344],[4.121959179732204,51.82220902131855],[4.122256693888823,51.822766830182054],[4.12255807654789,51.82348391102015],[4.122800444003296,51.82403363950807],[4.12270037238331,51.824052690995146],[4.122810007632959,51.82430136487165],[4.122894476268693,51.82448215266571],[4.122984330804822,51.824470991420014],[4.123043068871035,51.82445562322164],[4.123333746087426,51.82510974582067],[4.123592553991437,51.82569758702918],[4.122749749590573,51.82584025666769],[4.122304333457391,51.82592126582795],[4.122203982185298,51.82595012123403],[4.122151064277332,51.82599548793773],[4.1221495504283,51.82604940922568],[4.122181617914312,51.82612369280033],[4.122028742655379,51.82618385344148],[4.122070713885389,51.82627618016737],[4.122259352527532,51.82629214970789],[4.122277383950578,51.82633234555185],[4.122414652582212,51.82663525515023],[4.122554729810126,51.8269123874479],[4.122547282831753,51.82694030886787],[4.1224838414811,51.826989562558744],[4.122397815969973,51.82702734608351],[4.122247903982625,51.82707089347355],[4.122030495605088,51.827100422368396],[4.121868943069533,51.82709868064125],[4.121785556710694,51.827086942251725],[4.121742619000298,51.82707344657587],[4.121622318817468,51.8268189782374],[4.121609737568513,51.82679239064186],[4.121554840899231,51.82665605117229],[4.121487991598546,51.826589392780974],[4.121403510775165,51.82654254447658],[4.121290258201297,51.82654132288751],[4.12098558870991,51.82659339217931],[4.120823902499433,51.82662610085802],[4.120744509990703,51.8266353085415],[4.120665737457577,51.82662245861804],[4.120604539099737,51.82659186106049],[4.120554279717387,51.826557382195865],[4.12016858200781,51.82657309041707],[4.119825078079804,51.82656938129037],[4.11976684198872,51.826566816964935],[4.119732729077443,51.82655057702864],[4.119702759309695,51.8265203162651],[4.119692309102937,51.82649207316688],[4.11968692668562,51.82647614351753],[4.119674703364682,51.826422074770704],[4.119638498163859,51.82636181045917],[4.119626917633981,51.82632929691169],[4.119613039308566,51.82628966148744],[4.119570597354859,51.82619939360383],[4.119565487196861,51.82617378900261],[4.119555909209048,51.826129296354935],[4.119526762576867,51.82605504358148],[4.119511825254144,51.82597900799496],[4.119453042062087,51.82586262669627],[4.119380773606424,51.82575190677124],[4.119319728347782,51.82559756429028],[4.11930744763968,51.82554555881927],[4.119302338903483,51.82550511467153],[4.119292514464775,51.825469394693975],[4.119205974868827,51.82536264924892],[4.119190250571362,51.82531460679663],[4.119178699741417,51.82523667234833],[4.11915346731656,51.82515652522057],[4.119113137691478,51.825080086645634],[4.118983112026309,51.824861125036286],[4.118944361987771,51.824772961633364],[4.118889223930209,51.82466036165543],[4.118766297676501,51.82438160321853],[4.118707463996484,51.8242671563468],[4.118705092945733,51.824233064833884],[4.118725827342916,51.824221417676014],[4.118850573815194,51.82419876545805],[4.118741054314326,51.82393202315072],[4.118578786975583,51.82395607648773],[4.118570210673692,51.82395004813308],[4.118558777553472,51.82394192404951],[4.118539588170423,51.823883908149945],[4.118367540816568,51.82348616155814],[4.118109095864869,51.82293263677615],[4.118240623275289,51.82290567087827],[4.118112068443147,51.8226348512544],[4.118043419320146,51.822647270968005],[4.117988581807244,51.8226572582944],[4.117653123276387,51.82198470162419],[4.117633308914546,51.82193416238935],[4.11762009888104,51.82190046955891],[4.117615831967154,51.821844937761995],[4.117628367271355,51.82179913619523],[4.117661916079643,51.8217613044613],[4.117835064577823,51.82163155964472],[4.117872654901645,51.82161286846531],[4.117897574898516,51.82160049275278],[4.11798712092653,51.8215557821153],[4.118591530248583,51.82128437186173],[4.119430875462174,51.82090684764033],[4.119547696960295,51.82085468800924],[4.119611584206609,51.82081898941694],[4.119645365394543,51.820787611268],[4.119643787324184,51.82074010818775],[4.119619985784114,51.82071275370484],[4.119580166532741,51.82067748369375],[4.119528708391979,51.82065628205748],[4.119441960127687,51.820646053540685],[4.119341168682333,51.82064651344131],[4.11926385668673,51.82067096952623],[4.11850690096347,51.82100654296214],[4.117448766728066,51.82149266561129],[4.117284924418487,51.821587669793985],[4.117179576095261,51.8216611131164],[4.117115285817359,51.821711000168335],[4.117050320599887,51.821784880448725],[4.116995924786175,51.82188261857472],[4.116923496366197,51.82202919458628],[4.11685598344233,51.82219337360323],[4.116814396059941,51.82232428333297],[4.116786747906231,51.82243340733313],[4.116761974698864,51.82263262997527],[4.11676617596352,51.822764293384516],[4.116829497713406,51.82285220848952],[4.116994073092021,51.82320419652073],[4.117256909318678,51.82374925577907],[4.117532568133421,51.82432722722423],[4.117725055799814,51.824827134917776],[4.117391339745171,51.82531902687601],[4.116409704845035,51.82610120528869],[4.11591934044921,51.82647577988296],[4.115565002258561,51.82675272562773],[4.115346695089712,51.826932043780864],[4.114998410435889,51.82699433657237],[4.114223761368317,51.82705200341843],[4.113339251712543,51.82722408968036],[4.112936731751323,51.8273188207078],[4.112640803243646,51.82741470714979],[4.112345339193912,51.82749408183157],[4.112055015733695,51.82739182768579],[4.111738043973746,51.8272892822957],[4.111258851332988,51.827267556387895],[4.110752074020358,51.82727856243826],[4.11032336935249,51.82735648276932],[4.109895129849322,51.82741788963378],[4.109599194282709,51.827513768380705],[4.109251833973616,51.82754302031745],[4.108720278863796,51.827487680795315],[4.107576761973647,51.82739263387881],[4.106855393485211,51.8274508331414],[4.106345796932443,51.82756088952929],[4.105487424926355,51.827749720046086],[4.104711341296198,51.82785685867349],[4.103827720718932,51.82799585025128],[4.103317640204211,51.828122405282095],[4.102885620273243,51.82831587946321],[4.102481656452836,51.82846010913064],[4.101999628780099,51.8285374155005],[4.101252057433729,51.82857877655623],[4.100798089618068,51.82860683538256],[4.100289408619981,51.82868384260382],[4.099889680592965,51.82867945868639],[4.099519903422429,51.828559783932796],[4.099065462708445,51.828604347875505],[4.09850017657936,51.82879634327329],[4.098045732528891,51.82884090235586],[4.097192974925775,51.828831532016515],[4.096713771979249,51.828809746671816],[4.096426787130092,51.82859187221956],[4.095919518641692,51.82861932595702],[4.095379921162611,51.828844623092664],[4.094894088668048,51.82905399281393],[4.094624758438557,51.82915012706136],[4.094359691213305,51.82909765723542],[4.094095573855071,51.829012163242666],[4.094006622091658,51.82932500279154],[4.09375872488028,51.829603056604235],[4.092893621177648,51.830022956087426],[4.092296421141948,51.83039625533205],[4.091864807085813,51.83057317687369],[4.09162306099386,51.83063657563909],[4.091055342734241,51.830911092913134],[4.090243014254065,51.8313480730239],[4.089917031289864,51.83155918880509],[4.089591522305482,51.8317537919176],[4.089211281804081,51.83199733992565],[4.088835321434705,51.832092281766435],[4.088432231100795,51.83220344011952],[4.088213789783199,51.832382707215736],[4.08780402792027,51.832725024355675],[4.086717498571777,51.833423213240785],[4.085684713692146,51.83410547212796],[4.084706158633588,51.83475528897161],[4.084025526585024,51.83524323843847],[4.081264713828102,51.837590976053896],[4.079732806961136,51.838928301732324],[4.079295786444172,51.839286803253856],[4.078422686967542,51.83997077885317],[4.077333434766999,51.84075143576132],[4.07608372906085,51.84154680861974],[4.075487198609076,51.84188699745893],[4.074892583596048,51.84216113746373],[4.074162753064078,51.84249983025639],[4.072454325602597,51.84256329104917],[4.069570245028241,51.841492990373744],[4.069572914390408,51.84149158293828],[4.066809371147593,51.84046835627795],[4.064883897150958,51.839752971979024],[4.061586062953165,51.83855959337025],[4.059792076204675,51.83791167648427],[4.058893640041733,51.83763724255197],[4.057611500232335,51.83681339766522],[4.056150157104019,51.83573975316211],[4.055825936768978,51.83588472806981],[4.055721765822591,51.83580096172992],[4.054699414890747,51.8362957060358],[4.054441965798842,51.83642233723179],[4.054172236729762,51.83655566843643],[4.053638606204961,51.836822263984295],[4.053337844204273,51.836962336938846],[4.053416177238157,51.83707445829302],[4.053787720957682,51.8373579191399],[4.054124297294022,51.8376265284812],[4.055609019056655,51.83871310936614],[4.056581750108705,51.8394059785026],[4.057204683755756,51.839812024391264],[4.057753961125997,51.84014497237872],[4.058458914632282,51.840553617760776],[4.059310351295868,51.84101088641705],[4.059941720100797,51.84131610516479],[4.061430388884609,51.84200844244651],[4.062281209704824,51.842361161695244],[4.062722320658767,51.842535050095194],[4.064067257405584,51.84298868878494],[4.065679219837735,51.84354429125364],[4.067626112155371,51.84251795391569],[4.065685884918176,51.84354436628871],[4.066600625981497,51.8448594916551],[4.067044165812908,51.84610324471076],[4.067370445827705,51.84770904811927],[4.06744369337533,51.84884953381159],[4.067396222756932,51.84955922431068],[4.067220769345218,51.850085790077074],[4.066960971111231,51.85076005962259],[4.06667934689233,51.85126891441789],[4.066207690615715,51.851891248005664],[4.065711781625096,51.852430722420145],[4.06515477736289,51.85323377691808],[4.064524071188773,51.853821279608084],[4.064300576364461,51.85416561504626],[4.06404750552924,51.85460871815088],[4.063498211965094,51.855147581824355],[4.062841278328739,51.85571826296246],[4.062321051233122,51.85617486478289],[4.061904557608671,51.856731737634156],[4.061435207428228,51.85727149427076],[4.061018206206742,51.857844874489004],[4.060416479079233,51.85835009866508],[4.059866610733022,51.85890545635551],[4.059510698310119,51.85921525270945],[4.058854627532793,51.85975288776634],[4.058633984988412,51.85999814358313],[4.058440007249774,51.86024370165701],[4.058110740356923,51.86055379541182],[4.057757728714489,51.86076451799221],[4.057107470604728,51.86110400736595],[4.055859283057666,51.86181660295108],[4.054309881583047,51.86279003604644],[4.05366862483856,51.863724215912484],[4.053029788559997,51.864575835475925],[4.052531134262761,51.86519780892612],[4.052083844972757,51.865886431689766],[4.050815833586092,51.86725942391688],[4.049657376115332,51.86853454923102],[4.048642527675959,51.869464446618984],[4.047714537373724,51.87016409001705],[4.046705514183395,51.870895834534515],[4.045780417385717,51.8714963954161],[4.044989650202901,51.872065450381704],[4.044170710119706,51.87268372826659],[4.043706897045499,51.87302527713722],[4.042940777193071,51.87366066796506],[4.042089181276375,51.87447676004449],[4.041098743499294,51.87547294082468],[4.040383920957545,51.876174970737964],[4.039143915633931,51.877482094053825],[4.038239319089062,51.87828103442378],[4.037528369761695,51.87885095709157],[4.036814428773845,51.87951994182791],[4.036077754724382,51.88005652599796],[4.03525904243175,51.88065822968994],[4.034332598640485,51.881291720226564],[4.033569682912336,51.88181147056841],[4.032479135483152,51.88257519029419],[4.031716674108418,51.88307841611682],[4.031251165893859,51.883469448650835],[4.030892869969324,51.883845200348595],[4.030559257395963,51.884287302623285],[4.030109447427074,51.88504188346001],[4.029628954928174,51.88592824199584],[4.029394067874401,51.88663575270308],[4.029265405588648,51.887361008070656],[4.029319532738069,51.88822051127294],[4.02946069227803,51.88884978391884],[4.029752988508514,51.88977810761712],[4.029976703355337,51.89032574891222],[4.030531387762162,51.89140575253012],[4.031298091206737,51.892537750820686],[4.032510047712819,51.89395566630479],[4.033880218424158,51.89544145751118],[4.035716480277798,51.897411583324455],[4.03726823557007,51.89908110695516],[4.038492937734806,51.900086181827916],[4.039484899826056,51.90084082118139],[4.041083379628852,51.901850155872125],[4.042026487291935,51.90245556187325],[4.043229137150488,51.90331168160029],[4.043899950108633,51.90409564316116],[4.045376100578629,51.90563205454486],[4.046692675617866,51.90715010977972],[4.047234067660272,51.907800439432904],[4.047749273001535,51.90843395182096],[4.04803406750722,51.908734499125536],[4.048744032412398,51.90910595736769],[4.049451060669715,51.90957647874038],[4.050279797966349,51.91044478247435],[4.051101697189254,51.911544237120566],[4.051611110506904,51.91237586562347],[4.052013751009653,51.91320627946243],[4.052374775919771,51.91363981648392],[4.053001817307235,51.91410940586125],[4.053999719307491,51.914682300561076],[4.054469532740586,51.91505099805437],[4.055206348999866,51.91542272024659],[4.055246046984418,51.91588563932493],[4.055010912443857,51.91660970980837],[4.054679738254082,51.91696932348011],[4.053967890180335,51.9175558527753],[4.053097776378894,51.918074514439795],[4.052500542589837,51.91839806761128],[4.051203169497132,51.91891186231178],[4.049960154093996,51.9193932274996],[4.049417266789148,51.91968435061443],[4.048276100560709,51.920332024439354],[4.047514648905864,51.92078581647223],[4.045779056594846,51.92165792382829],[4.043724928648369,51.922460299168456],[4.042266125441373,51.92300518427984],[4.041241481699688,51.92332378940545],[4.040486836966939,51.92354637971765],[4.039518548071546,51.923766515661576],[4.03876983236123,51.92379096111758],[4.038130909576948,51.92371756202829],[4.037281329353705,51.92354264000279],[4.036276496074229,51.923200758402636],[4.035857176857333,51.9229316696738],[4.035065997459821,51.92259223478892],[4.033897002585706,51.92238057790249],[4.032776449253789,51.92233463664145],[4.031708308317678,51.92232232228179],[4.030748975713389,51.922245186950725],[4.029953857359792,51.92203780600978],[4.029107335552557,51.92176375759914],[4.028153014956482,51.921521490517456],[4.02682186382332,51.92137395555513],[4.026025778867292,51.92119957059483],[4.025441319839142,51.9210936987603],[4.025019082220298,51.9209236371373],[4.024654257391589,51.92062210519669],[4.024666273267853,51.92022584126495],[4.024514072373994,51.919959807758225],[4.024201660019955,51.919691915156974],[4.023727039467031,51.919488208017974],[4.022663983231695,51.91931070222062],[4.021809530543586,51.9193007781864],[4.020897659635367,51.919422314932774],[4.019769155430772,51.91964042467196],[4.018858277803406,51.91972892405318],[4.017898017289501,51.91968470644996],[4.017265226971253,51.91941306177254],[4.016579042114726,51.919140791803265],[4.015687318326194,51.91860184901327],[4.015168419592496,51.91810028664569],[4.014386561679895,51.91746351565522],[4.013607753920938,51.9167276733768],[4.01240783862407,51.9157886978003],[4.011884966576267,51.91541920850859],[4.011149520966272,51.91501419457543],[4.010621610932232,51.914809808581495],[4.009612116227468,51.91463281069549],[4.008493809140243,51.91452059404283],[4.006624903644115,51.91449865251336],[4.005070289904701,51.914678580679045],[4.002229034295476,51.91500850079609],[4.000350941261557,51.915283655726334],[3.998793215436939,51.915562566308694],[3.996910992384386,51.91596975295771],[3.995243356681143,51.916346417410274],[3.995247210112321,51.91634727030151],[3.993519219093669,51.91682149110513],[3.991699698007211,51.91687995189912],[3.98950025449373,51.91725438725481],[3.986696296557018,51.91806173176696],[3.986054454143402,51.91808711530573],[3.985353028394674,51.91830998680415],[3.985076747815342,51.91860399592221],[3.984851805309285,51.91896468472572],[3.984783974272275,51.91942635006725],[3.982017680996764,51.92366925551617],[3.980788920303371,51.925926442333996],[3.978783719107677,51.92880882123844],[3.977451925377633,51.93096506019673],[3.975065947531059,51.93407611061971],[3.965224136502753,51.94834362159597],[3.962678369314677,51.95194207516284],[3.962176968655227,51.95358114729461],[3.960502455475559,51.95780287453879],[3.960310069429516,51.959475447257944],[3.961228895625314,51.963502445804245],[3.962629291999197,51.96550829542234],[3.963951715913835,51.96791048304692],[3.965598497427826,51.96970619233177],[3.970620884880304,51.97514475657377],[3.977437170979009,51.981170344493485],[3.980279587471796,51.98343280956909],[3.983948708135027,51.985080433850676]]],[[[4.506063106122645,51.91483016825373],[4.506071446282697,51.9147879092128],[4.506098163524757,51.91453185921473],[4.506137383408375,51.9145321532313],[4.5061834202974,51.914227216389705],[4.506142170858187,51.914224068536264],[4.506146827733397,51.914135461225776],[4.506397000986987,51.91412417508572],[4.506491315074829,51.914059852103954],[4.506638482908396,51.914066632086005],[4.506653016807268,51.91398506591293],[4.50657999799186,51.91398477679998],[4.506599151416503,51.91379524762412],[4.506616325060587,51.913301971294274],[4.506670995603582,51.91287555439514],[4.506721629403479,51.91263387568305],[4.506901303386151,51.91206723805654],[4.507030088194847,51.911755179515744],[4.507354847560216,51.91123685168677],[4.50755209248162,51.91094427127112],[4.507674587430129,51.91078274125113],[4.507728175188679,51.91077359446296],[4.508242592744947,51.91092569651944],[4.50825728421358,51.910963870018094],[4.508256658648865,51.91099586427451],[4.508256358474438,51.91101121655649],[4.508217468500323,51.9110582791604],[4.508186035738169,51.91108668841119],[4.508093142971485,51.91114276632947],[4.508092492047657,51.91117605117501],[4.508106678123661,51.911218735943706],[4.508090915220281,51.911256681656866],[4.50778939034385,51.91176086361212],[4.507646102290304,51.91202533152155],[4.507431986439681,51.911985794720245],[4.507221838986609,51.91255349574278],[4.507366978738017,51.91257832337812],[4.50727655359057,51.912870541924285],[4.507126894096373,51.913481403677544],[4.507059713477482,51.913779730444794],[4.507049060786202,51.91396145192847],[4.506984413877292,51.9140025154245],[4.506878952998457,51.9139968222042],[4.506866948754668,51.91407711747026],[4.506981180274297,51.91408235953565],[4.507031625925748,51.91414867135027],[4.507311591166321,51.91417154056414],[4.507279554039508,51.91440123023152],[4.507269529052671,51.914444379207005],[4.50723877239145,51.91469394889491],[4.507238070270602,51.914729813101204],[4.50718606311855,51.9150629625193],[4.507183673414659,51.91509971745376],[4.50719455620444,51.91516199094797],[4.507307625079023,51.91516283748343],[4.507376579629519,51.915221675154164],[4.508244472311321,51.914926757536854],[4.508463793943937,51.91485020651095],[4.508847804654558,51.9146739849824],[4.509343174384908,51.91443640292175],[4.509886951242993,51.914134278945],[4.51016646663795,51.91398785268568],[4.51032708798194,51.913903893012915],[4.510723004064769,51.91365136906587],[4.510769484143497,51.91362165203839],[4.511399695424759,51.91318700778198],[4.511830267044799,51.91288983707711],[4.51187235977136,51.91284963576553],[4.511863914706058,51.91281189668382],[4.511228537159543,51.91244149561833],[4.511232521555062,51.91238694675156],[4.511260426718831,51.91236818765243],[4.511303016550603,51.91236669833988],[4.511956693532085,51.91259014221525],[4.512032710174127,51.912607740108676],[4.512081182356954,51.912604230507725],[4.512136839033118,51.912574581274896],[4.512266740899856,51.91246058368331],[4.51253092174401,51.91220062263518],[4.512818306144888,51.91190599518618],[4.513030640300935,51.911651195114615],[4.513229329937909,51.911389841998755],[4.513619713743917,51.91084024427317],[4.513675463149554,51.91076272562482],[4.513739924709096,51.91058037073426],[4.513797875570527,51.9105827366924],[4.513847564086666,51.910452013676306],[4.513864583493275,51.91039214139628],[4.513893266218258,51.910290293104204],[4.514017789138572,51.90978671698263],[4.514214627747946,51.90897542796799],[4.514092113490024,51.9089245837226],[4.514146879253934,51.908768608539575],[4.514189477459039,51.90861615460771],[4.514205749324394,51.908487246987605],[4.514218439300937,51.90830644337997],[4.514180703457946,51.90803662296808],[4.514043452298596,51.907391363185994],[4.514020895004291,51.90728539210736],[4.513993726494842,51.90715900035135],[4.513471352265406,51.90707408803418],[4.51368848657037,51.90680706452435],[4.513844406721418,51.9066198414605],[4.513973199503831,51.90641151425745],[4.514129382760346,51.906146101722896],[4.514179786762297,51.906042737400824],[4.514185648012135,51.9059127196],[4.514150512358618,51.90583142888264],[4.514077396996848,51.90575088787897],[4.513993327518708,51.90569736102283],[4.513911696180637,51.90566862692775],[4.513844684757096,51.90566051548172],[4.513769923608313,51.90566473464868],[4.513655358036071,51.9057420741421],[4.513576757088396,51.90581503642631],[4.512749402666056,51.9066106666274],[4.512679650130335,51.90659324428714],[4.512599109068009,51.90665857894204],[4.512632039247809,51.90668153311304],[4.51245861531134,51.90684604374661],[4.512391747986571,51.90683044944574],[4.512225503837685,51.906990368715796],[4.512261553278572,51.907024572223584],[4.511938131350761,51.90735015406806],[4.511458308160536,51.90782243674579],[4.511367882814163,51.90779531266484],[4.51125536617869,51.907916921967484],[4.511278144350003,51.90792560765736],[4.511215916437684,51.90799301314141],[4.511237007471117,51.9080025887304],[4.510988572839742,51.90824756867492],[4.510756047068316,51.908468280355926],[4.510711002985055,51.90851026599518],[4.510434843101993,51.908764585814204],[4.510248853655017,51.90893080621052],[4.510162484264529,51.9089736437041],[4.50992458173509,51.909063220374726],[4.509853994743585,51.90910978892054],[4.509770118910734,51.90919586969065],[4.509570503816721,51.90941863149755],[4.509521411697523,51.9094541343544],[4.509481216023442,51.90946131816296],[4.509429632329621,51.909453448887916],[4.508924295885895,51.90928567875468],[4.508999163182099,51.90921230423137],[4.509601498020665,51.90862172363989],[4.510332304886428,51.9079251347064],[4.510444150387395,51.907816681650964],[4.511308765410701,51.90697489509989],[4.512290313238092,51.90601836268391],[4.512360101187521,51.90594817427913],[4.512433137118801,51.905946912137956],[4.512529294237005,51.90587227454964],[4.512824175167127,51.90559770274667],[4.512842865670988,51.90558055201236],[4.512906173244417,51.90552166962013],[4.512994130591442,51.90546103529888],[4.513407994959986,51.905053157234576],[4.513851378977198,51.9046285947342],[4.513970091708511,51.90450935080104],[4.513997910976383,51.90445175286656],[4.514019145463775,51.904389460626994],[4.514066517902172,51.904356136384244],[4.514082790507381,51.90431303323703],[4.514105530282279,51.90423772032078],[4.514116225068629,51.90420257478758],[4.514140235575717,51.90416920547881],[4.514292753417901,51.90392028133496],[4.514191993793246,51.90390998500393],[4.514231582808002,51.90384782908115],[4.514340498338,51.903867733778114],[4.514428763358856,51.90370503916496],[4.514330231908478,51.90368740492834],[4.514315732963943,51.90363916982638],[4.514216281483376,51.90356152985235],[4.513933363558367,51.90332872412581],[4.513954118334818,51.90305482125668],[4.513994031190766,51.90299744262425],[4.513994589903237,51.90296867298165],[4.514029143516074,51.90280054762766],[4.513991519714918,51.902718592936786],[4.513817849977624,51.902467245029165],[4.513944389907038,51.902352833202684],[4.513925409841074,51.90232056466322],[4.513956333162075,51.902296408066476],[4.514395608760446,51.90195284182666],[4.515091702613129,51.901401896779134],[4.515245329796266,51.90148226075678],[4.515413553607122,51.9013691894764],[4.516050101507594,51.900897665411094],[4.515915860109368,51.90080725301027],[4.516212425954667,51.90061513433971],[4.516643059475936,51.900349946599],[4.517023209826855,51.900127994034165],[4.517286586196236,51.899990722360116],[4.517782567838627,51.89973233602325],[4.51826207294288,51.899505954154215],[4.518347176454711,51.89957045191736],[4.518418553603946,51.899524916979495],[4.518341228077208,51.89946808842949],[4.518449357515797,51.89942037310288],[4.518485984628637,51.89944619163751],[4.518830711509614,51.89932964637918],[4.519188452204342,51.89920868031935],[4.519246736018408,51.899236335890365],[4.520283132668658,51.898900770550924],[4.521395908307801,51.89854046919122],[4.522934778266205,51.89806019982315],[4.52324160716043,51.89796103926581],[4.523486183312017,51.897888774791454],[4.524893922865547,51.897653443642604],[4.524969248775715,51.89766251232575],[4.525340073359778,51.89759736449283],[4.526476967375275,51.89738970374323],[4.52777289433633,51.89728487029415],[4.528263808179148,51.897265234913526],[4.528544331161045,51.897253995419035],[4.528877653338115,51.89725191484122],[4.529254305543122,51.89725247239065],[4.529757407387516,51.8972717572914],[4.530419612291279,51.89730355482197],[4.530555397637378,51.89731396322682],[4.53063619982514,51.89732022956422],[4.531131977369988,51.89737377676882],[4.531511790501652,51.897405575083674],[4.531527781196198,51.89737627328531],[4.532096313311871,51.89742066896528],[4.532203327967662,51.89738661017264],[4.532648664797704,51.89743862257679],[4.532809800836629,51.897453987539414],[4.5328539559582,51.897501016623636],[4.532991667878782,51.89751982357784],[4.534431410936787,51.89766124508935],[4.534429502033725,51.89769594022566],[4.534439753359309,51.89772723959248],[4.534623877672224,51.897762251912695],[4.534802668608897,51.897792580788305],[4.535356463505573,51.89788872305806],[4.535826696047333,51.89794812987002],[4.53616600910952,51.89800439250653],[4.53624008861259,51.897947253002606],[4.537239739522732,51.89811293580778],[4.538221485776056,51.89829938213046],[4.538499706319856,51.89834397148318],[4.538662152040965,51.89835649921815],[4.538778313680727,51.89834598349001],[4.538877129713538,51.898304117470005],[4.538968774893886,51.898244393884575],[4.539131143499649,51.898084022752954],[4.539422875302013,51.89778807252875],[4.539673635315074,51.89754111471187],[4.539582633467611,51.89750045946411],[4.539634707367235,51.897437611270945],[4.539732565394755,51.8974686386935],[4.539811775125932,51.897338116947196],[4.539845531533527,51.89727332982946],[4.539820684344349,51.89686529190402],[4.539810113306528,51.89676225098687],[4.540047997873175,51.89677764354583],[4.540453368199967,51.8968035325314],[4.540500326292879,51.89710089445485],[4.540470834667392,51.89727151489043],[4.540415607709321,51.89741330646053],[4.540353587422845,51.89756137169532],[4.540205494317859,51.8977392666029],[4.53993806472728,51.897985459953816],[4.539522220924081,51.898337675288495],[4.539429440490902,51.89845764776309],[4.539434429119184,51.89854710064904],[4.539472747296498,51.89861653616195],[4.539530481126163,51.89867398327496],[4.539609038097519,51.89871106475657],[4.539693584702278,51.89874018944324],[4.539864128590747,51.89876580573211],[4.539994855194563,51.89882365041483],[4.540046563666637,51.89886879593559],[4.540131036970147,51.8989019197466],[4.540382434980156,51.89897560092005],[4.541262452724349,51.89922735180823],[4.542805960635783,51.89964515086328],[4.543020286983503,51.89969417270914],[4.543154033055685,51.899724810568465],[4.543531732052465,51.89984855127732],[4.543866639910656,51.89996308125382],[4.543862464825305,51.899985501451695],[4.545029388775863,51.900444825296674],[4.545206621958922,51.90051473754479],[4.545384687189948,51.90058478581891],[4.545551984718502,51.90065062729116],[4.545708515886196,51.900712262916485],[4.545793406561105,51.90074577301144],[4.545805779186985,51.90073102307322],[4.546154588843685,51.900928224196946],[4.546111382089699,51.900963268360954],[4.546148002264508,51.90099036800709],[4.546270207666055,51.901080788854415],[4.54659525980209,51.90132168701911],[4.546683660332416,51.90139070441952],[4.546723931343421,51.90146802283729],[4.546877776008904,51.90174059859993],[4.546992027895113,51.90189960391499],[4.547077148302352,51.90198795109738],[4.547224083143578,51.90207235450993],[4.547371336617251,51.902139727347276],[4.547604654188708,51.90222268201238],[4.547756128188296,51.90228750386379],[4.547801413647622,51.90231982708381],[4.547817721081636,51.90236252208349],[4.547787372894054,51.90246862529184],[4.54761877072353,51.9028965676843],[4.547751054204064,51.9029168671768],[4.548516051598387,51.90303419729619],[4.548554037107326,51.90292118128941],[4.54870375608964,51.90247632817362],[4.549199283941173,51.90254734553455],[4.549791639071798,51.90263853292754],[4.549762541527155,51.90274490260884],[4.549767847770802,51.902796035704306],[4.549769747935232,51.902850757078525],[4.549672070154728,51.903189921319736],[4.549795685543724,51.903205253393644],[4.550516145661619,51.90329541463642],[4.552114209359689,51.90346071225562],[4.552927824299212,51.903544682929116],[4.55400734766811,51.90364240316027],[4.554854573544977,51.90371395348643],[4.55514458123043,51.9037329095704],[4.555181773264363,51.903706980794325],[4.555400809317881,51.90316493568503],[4.555436149856903,51.90290080811036],[4.555466216730561,51.90289921420019],[4.555573621480666,51.90216709495219],[4.555553872773054,51.90208450652014],[4.555549489091231,51.90200576791604],[4.555595570303893,51.90181487424755],[4.555653613435542,51.901766641857705],[4.555757232411243,51.901735376262174],[4.556137006003898,51.90168193564262],[4.556394779027813,51.901661177953294],[4.557698829525822,51.90159361912711],[4.557805363164594,51.901562500846254],[4.557805462375038,51.901624951288696],[4.557810259856915,51.9025409547926],[4.557775575171543,51.90297385725342],[4.557638094012228,51.90298630599385],[4.557591568857627,51.90354079821872],[4.557596720739822,51.90364599221442],[4.557690289045983,51.903684716187996],[4.557987523349757,51.90362862216699],[4.559589176645683,51.90317037979265],[4.560001855661693,51.90305212892952],[4.56159821626155,51.90258453228197],[4.563118669697057,51.90211418853996],[4.563758156744275,51.90200202992379],[4.564135043036943,51.90194635001931],[4.564192775885646,51.90198301108495],[4.566591567159265,51.901749859799914],[4.567040434522603,51.901704221010924],[4.568537059659805,51.90155259779925],[4.568552372281399,51.90151348062739],[4.568620831096402,51.90151098947871],[4.568634081802301,51.90156230640435],[4.568682939212098,51.90155955013692],[4.568722605775139,51.90151169840518],[4.569836373771121,51.9015835777034],[4.57062181587333,51.90163368240366],[4.570631011229485,51.90154084574292],[4.570637056681232,51.90143766550675],[4.570389804447238,51.90138485193405],[4.570262546957231,51.900881017226794],[4.570297241067967,51.90085416208413],[4.570370290724139,51.90085157329809],[4.571454136900356,51.90091639075724],[4.571546719941781,51.90091780735874],[4.571562644280639,51.90084488857741],[4.571602717579954,51.90054440236163],[4.571634695883906,51.90052926987273],[4.573000007271294,51.90060002623621],[4.573024877693978,51.900608843856034],[4.573160655977913,51.90062062307483],[4.573201116243654,51.90041342609925],[4.574140751045245,51.90040186776851],[4.574345026938353,51.900408958259],[4.575946553788772,51.900381317082875],[4.576357101059574,51.9003774415815],[4.576380181461717,51.90145717680635],[4.57636564265202,51.901615651739164],[4.577179729484671,51.90162758795665],[4.577271057568431,51.901606153901156],[4.577902807819039,51.90145786648544],[4.579037265476721,51.90119161890069],[4.579102073493357,51.901113745517435],[4.579399628602106,51.900990892194756],[4.579410556280645,51.90098632197669],[4.579566554097612,51.900987394247224],[4.581368515142751,51.90011153852065],[4.581517450555075,51.90001759551729],[4.581460274730745,51.89997255951484],[4.581723188269409,51.89982662533275],[4.581773752645386,51.89984490699481],[4.581905408586502,51.8997607802275],[4.58182662423599,51.89971108041134],[4.582269032074386,51.899418380463366],[4.582344174741348,51.89936857397569],[4.58237582947226,51.89934788856643],[4.582304619139627,51.89927127407182],[4.582687319160748,51.89891132749967],[4.582816646879262,51.898957113926144],[4.582860503319609,51.89893057670349],[4.582924931053933,51.89896675840184],[4.583493254354363,51.89853646876722],[4.583435837156298,51.89850485123353],[4.583468295506265,51.89829914491012],[4.583706785665227,51.8983052918502],[4.583715651324715,51.89822935517329],[4.583917855787145,51.89823512502396],[4.584013153708399,51.89817771333275],[4.584092737268968,51.89818264465545],[4.584129844841286,51.897926648731975],[4.584275793298748,51.89781242501442],[4.584557373368951,51.897858088477136],[4.585303372150153,51.89639794267906],[4.585454688513527,51.896379879752615],[4.585723201944925,51.896339132329615],[4.586090273117826,51.89596384228868],[4.586367180937099,51.89561541944639],[4.586227917967351,51.89554234340712],[4.586473381343771,51.895296541599386],[4.586503956558516,51.89526604110667],[4.586579479419611,51.895264491039185],[4.586899646309298,51.89501610075376],[4.58695428021384,51.89501647286196],[4.587236861539332,51.89514574750417],[4.587295966089461,51.89510576385142],[4.587119015773042,51.89501759471199],[4.587372152924179,51.894855839610614],[4.587834253181971,51.894529834934],[4.588012352205408,51.89443608218455],[4.588191970019553,51.8943505964765],[4.588675876394938,51.89406434802214],[4.589154061218843,51.893771220160986],[4.589491645933318,51.893644614345725],[4.589920222672061,51.89349062537257],[4.590166990290766,51.89340481838008],[4.590322694287329,51.8933503929138],[4.590756060621377,51.89323178758003],[4.59177744816735,51.89295174830369],[4.592251421919222,51.89282412260781],[4.592270857383853,51.89281006101625],[4.591481056352452,51.89242434094161],[4.591000569201378,51.892189609981735],[4.591030258314519,51.892161682961934],[4.591125825077884,51.89208775252048],[4.59141941947584,51.89223063950314],[4.592470857169276,51.892726900843414],[4.59251871956356,51.89270903153539],[4.592596813907683,51.892679754224],[4.592876897560958,51.89257261927937],[4.592975368251643,51.89254670549988],[4.593262066799576,51.89249006498226],[4.593620752418229,51.89244281237051],[4.593783959496904,51.89241178644593],[4.593826506897282,51.8923878160716],[4.593834101741139,51.892335611811376],[4.59371296930892,51.89220395944562],[4.593538907159337,51.89199930670624],[4.593411041602608,51.89184748113495],[4.593244377515989,51.891649200539234],[4.592807671202801,51.89115516869791],[4.592749832377207,51.8911004573663],[4.593060472305308,51.8910100443795],[4.593147006913975,51.891093077702514],[4.593213906016276,51.891178042962174],[4.593213017862332,51.89122835815649],[4.593146897595853,51.89128829620506],[4.593136356487977,51.891318417861186],[4.593228684303994,51.891427682315985],[4.593404422987238,51.891608090087225],[4.593465137668476,51.89168901345746],[4.594033530067419,51.892284572386934],[4.594122630040498,51.89238788000603],[4.594222379433072,51.89245500279313],[4.594267867523747,51.89245350306851],[4.594326292837952,51.8924515755803],[4.594723477214367,51.89239696690885],[4.594932957415062,51.8923671548476],[4.595617826349074,51.892247001267656],[4.595846477629136,51.892194220397656],[4.596055387864427,51.8921493060606],[4.596107622205245,51.89214359402516],[4.596633745404915,51.891990237451346],[4.596997010421029,51.89187191142824],[4.597402427315027,51.891751802952186],[4.598007330677462,51.891576776822504],[4.598458480280787,51.891440843561746],[4.598598780539705,51.891407593402775],[4.599314785287157,51.89119898486659],[4.59958793045474,51.89110559405669],[4.599927924905244,51.8910052960563],[4.600346424809719,51.89089932878576],[4.600827154346542,51.89076435850034],[4.600939930153403,51.890730791897845],[4.601020865575471,51.89068165862226],[4.60125979016722,51.891329040339656],[4.601294994512083,51.891343081492806],[4.60137316185536,51.89133302378987],[4.601543713224591,51.89131081096314],[4.60161392742005,51.89130237720018],[4.602077424057206,51.89122289754663],[4.602240479083052,51.891199988233105],[4.602889618935381,51.89109361733973],[4.603476481819919,51.89099482736802],[4.604230182862406,51.89087108293298],[4.604305144705538,51.89085338943859],[4.604423518598244,51.89078566489244],[4.604433810251805,51.890745476906375],[4.604412831559508,51.89065682413488],[4.604301219068459,51.890336091814326],[4.604314496915633,51.89031605201281],[4.604366833628908,51.890304272359984],[4.604578326868923,51.89030168139218],[4.605060682072716,51.8902879911946],[4.60549720780413,51.89027167054254],[4.605520938941016,51.89027402255996],[4.605521985930129,51.89021377323658],[4.605635411236881,51.89021452781542],[4.605626531948616,51.89026956375643],[4.605674993887373,51.89026472484615],[4.606068254736492,51.890242050535086],[4.606524584671865,51.890213988228716],[4.606527253441882,51.89018033000161],[4.606681213843265,51.890176449596495],[4.606756025584226,51.89052790191918],[4.607527408917195,51.89041767210165],[4.60751215278816,51.890287253495224],[4.608231599946478,51.89023770460242],[4.6089907643913,51.89015822243497],[4.608963003363638,51.89005133257168],[4.609477310535841,51.89002261093337],[4.610086035945678,51.88998431757512],[4.61009024163917,51.88993402427603],[4.610161655138381,51.889928432864195],[4.610217464495205,51.889908673688325],[4.610270423127594,51.88986076747661],[4.610739658412545,51.88978529166179],[4.610883695586095,51.88975218012242],[4.611136330874539,51.88970946323357],[4.61102489462558,51.88959350619531],[4.611288895600843,51.889472157721855],[4.611441134168114,51.889592125897956],[4.611575302539788,51.88955081992423],[4.611830332156521,51.88946592557277],[4.6118561508235,51.88949228886108],[4.611894899497116,51.889494479822474],[4.61204849246964,51.889463365174066],[4.612234267713704,51.889428205586064],[4.612325969838691,51.88940674690539],[4.612194853631502,51.88927104797101],[4.612198499754304,51.889253008448854],[4.612476600091077,51.88913600824784],[4.612637619290877,51.88927899964478],[4.612659391814526,51.889298239548744],[4.612688339223268,51.88931249400715],[4.612755890019063,51.88928894052504],[4.61286837410071,51.88924736070887],[4.612945904605816,51.889273935124706],[4.613014119633821,51.88928444922428],[4.61324899006613,51.88923167560428],[4.613288499482104,51.88921387229223],[4.613272686411107,51.889187575230686],[4.613070988784478,51.88900909200267],[4.613067996543069,51.888989072561074],[4.613221727265872,51.88892557212219],[4.613267077590476,51.888956062813364],[4.613421095130922,51.88906984785946],[4.613524203240802,51.88913684686941],[4.613575739160264,51.88914724990951],[4.613637556470859,51.889141721740984],[4.613800877626963,51.889102540435104],[4.613898905216713,51.88907699368856],[4.613877839863566,51.88899234204503],[4.613884477234249,51.888970192780484],[4.614015582325591,51.88891273555539],[4.61406457852722,51.88890092871605],[4.614116495673315,51.888913399618005],[4.614226031830022,51.888970375727155],[4.614274577264708,51.88898488816717],[4.614607508392715,51.888904500231064],[4.614659978161543,51.88888471699573],[4.614595928422383,51.888825975730015],[4.614371503173416,51.88865934421901],[4.614143219948478,51.888498880955076],[4.614149784722644,51.888480859679945],[4.614645804794142,51.88820439139815],[4.614813077818563,51.88810484989987],[4.614851965427563,51.88812316912143],[4.614894396131548,51.88812938324856],[4.614992868349083,51.88807777416152],[4.615041238354806,51.888078092073975],[4.615202138175197,51.888179790752496],[4.615263128181559,51.888222384172195],[4.615253052685235,51.88825057465936],[4.615200444437829,51.888278485673595],[4.615111979560425,51.88833016069968],[4.615094783964387,51.88838436874064],[4.615116717698542,51.88844283297446],[4.614906321465986,51.88855215602475],[4.614693109205589,51.888679652293234],[4.61488549522618,51.88881781499085],[4.61493418246223,51.88882407022755],[4.616299553145168,51.88848492148797],[4.616413736037026,51.888465542391515],[4.617292063076436,51.88824382598884],[4.61753084844046,51.888181005824],[4.617829400723439,51.887939873475496],[4.61835817960399,51.88752618945203],[4.618486731412442,51.88742238941557],[4.617577513012696,51.88694032482982],[4.616952776231319,51.886625661434714],[4.617133656535127,51.886461434631855],[4.617671767242819,51.88672056327623],[4.617786554247829,51.88664118945206],[4.617553771401359,51.886524314396596],[4.617526735076453,51.88644710733161],[4.617736745754041,51.886286167034385],[4.61836291171862,51.886590513070125],[4.618927310349035,51.88687367907384],[4.619072478312016,51.88694443135107],[4.618781888445092,51.88715968489108],[4.618842284771488,51.88718833658206],[4.61900610448472,51.88707044503418],[4.619172935989996,51.88694702426284],[4.619290659522015,51.88684211977269],[4.619529380927023,51.8866114305579],[4.619656472100923,51.886495103929875],[4.619763544865291,51.88640329054959],[4.619779293699326,51.88638455593616],[4.619757999441346,51.88636170794282],[4.619730512161816,51.88635959313018],[4.61969054253243,51.886380234197894],[4.619505302335265,51.88650727737798],[4.618205849921639,51.88587389865135],[4.618456274278813,51.885690511805784],[4.618404540408244,51.88566746437572],[4.617696719994951,51.88540800146654],[4.617999332167829,51.885196571277284],[4.618018818741031,51.8852031509086],[4.618414964359673,51.88535038370888],[4.619005718273427,51.885578884919966],[4.619334726383844,51.88570193387219],[4.619646578524421,51.88582848324111],[4.620016514597241,51.885972572191456],[4.620034667697087,51.88598404518015],[4.62001837128709,51.886034904340335],[4.620011471163139,51.8860726645934],[4.62006307873783,51.88610319352491],[4.62009367953508,51.88609384560547],[4.620171270462062,51.88601900045902],[4.620233339942723,51.88594947228476],[4.620408260094132,51.885620174683815],[4.620462248679533,51.88551098341462],[4.620472257473075,51.88546201751254],[4.620584353800983,51.885491135155675],[4.62065135836862,51.885499056306344],[4.620688597276539,51.885467171188445],[4.620795051488929,51.885484897370446],[4.62083164927729,51.88546616918875],[4.620955813805448,51.88534995151262],[4.621281600733124,51.885025507022945],[4.621316177948975,51.884978508836504],[4.621331800178699,51.884942740621284],[4.621780138369627,51.88452271024988],[4.62185410240947,51.88446461406879],[4.621927454743108,51.88444238301688],[4.622028612738728,51.88442807494],[4.62208060454835,51.884411381889684],[4.622117939527469,51.88437381972479],[4.622233729758359,51.884210193129086],[4.622559660589937,51.88377813678394],[4.622684715554907,51.883608892822814],[4.62273205303873,51.88352249466793],[4.62278991329141,51.88350390424127],[4.622860858409472,51.883476108263174],[4.622913394510035,51.88342729119897],[4.623064778193309,51.883229960539225],[4.62340031558741,51.88277151439293],[4.623469589075455,51.882670032705555],[4.623632097279067,51.88243122725202],[4.62378725454879,51.88218308314761],[4.624084967637391,51.88171664822958],[4.624172837762345,51.881575675794146],[4.625511093680736,51.87954508088146],[4.625681497731098,51.87930645233091],[4.626104330466448,51.87873708453491],[4.626117026378817,51.87870129762061],[4.626451798555671,51.87828425568579],[4.626916449732642,51.877681608388954],[4.627476654875381,51.876950292771035],[4.627657619319011,51.87670231046733],[4.627930255038727,51.876358537951035],[4.628064536209354,51.87618366979555],[4.628210137086061,51.87602977771602],[4.627772557460356,51.875870309846015],[4.627259654134672,51.87570274056229],[4.627153444167705,51.87567186143233],[4.627113652335569,51.875682828973176],[4.627040192672167,51.875786350416035],[4.626912261645104,51.87595532242284],[4.626887954502163,51.875962777575424],[4.626014739851898,51.875726808073],[4.62457439181513,51.875326512546856],[4.624243584573284,51.87523946387668],[4.624554329849302,51.874812851937655],[4.62462704613545,51.874704166810226],[4.624682651180503,51.87462117606619],[4.624904735695481,51.87430882207882],[4.625155630820053,51.87396904326252],[4.625189811490842,51.873920105198756],[4.625274363475482,51.87380169073797],[4.625320632856143,51.87377747522457],[4.625387970997873,51.87376462226109],[4.625451621538331,51.87377264754464],[4.626115332476475,51.87394507355156],[4.627492893567433,51.87430907513091],[4.627838196681541,51.874401756164914],[4.627980833522786,51.874447966570614],[4.627754478922511,51.87476752374089],[4.627623026517497,51.87494782820648],[4.627600744359325,51.87500819836304],[4.627606647725905,51.87502901019256],[4.627809672176299,51.87510386888191],[4.628260386381927,51.87522574473042],[4.628573369234685,51.875307118247214],[4.62861575498134,51.87531539187444],[4.628682656689899,51.87532859766723],[4.628719466146674,51.875321351412765],[4.62881263984608,51.87521047317161],[4.629188269396304,51.87474091584217],[4.629300224641266,51.87460383607513],[4.62930708256046,51.87456801114543],[4.629243300286728,51.87454295543016],[4.628882281974391,51.874442435175176],[4.628520786923741,51.87434565269497],[4.628411819511478,51.87430533767727],[4.628394227100375,51.87428548227321],[4.628384815586637,51.87427497037818],[4.628444002058227,51.87420167819254],[4.62850556388244,51.874160528530794],[4.628515583512079,51.87415969078803],[4.628563602430377,51.874155226163964],[4.62861218440248,51.874166894379016],[4.628718712872281,51.87420345238987],[4.628862663235435,51.87424592823394],[4.629208768850726,51.87434067510048],[4.629384278057135,51.87439070935355],[4.629445682169833,51.87440839514428],[4.62947944579144,51.874383968788],[4.630680992633461,51.872845318243954],[4.632478596511324,51.87058548181497],[4.632682497995058,51.870333768677895],[4.632776226114147,51.870213471672685],[4.632897806353028,51.870048065077626],[4.63299108273045,51.869929700255895],[4.633074876041881,51.869854886479246],[4.633267707041336,51.86971625840243],[4.633247585379711,51.86964826137741],[4.633211475755189,51.869613966210856],[4.633175080891933,51.86959670088598],[4.63315750936053,51.8696004585902],[4.633114002965606,51.86960959847612],[4.633055969355949,51.86961490309807],[4.633011543770118,51.8695295888563],[4.632869676230667,51.86943810013693],[4.632867202677924,51.8694116333641],[4.632957243198105,51.869312215622756],[4.632970381543977,51.869274494647975],[4.632947703646058,51.869234737856],[4.632918232704822,51.86920229194439],[4.632915243716629,51.86918162762795],[4.632943291883501,51.869149680533205],[4.632983553590774,51.86911032701577],[4.633008683431629,51.86907836116566],[4.633005917069182,51.86904440856826],[4.632991357463829,51.86901773565108],[4.632951850229389,51.8689872890923],[4.632909775182717,51.86896069743897],[4.632911483174193,51.86885877716323],[4.632894062289252,51.86880382825093],[4.632852306738932,51.86875827168516],[4.63283165136058,51.86872226893091],[4.632828632165876,51.868703411134575],[4.632888491332261,51.868688570613756],[4.632904032326815,51.86865667173998],[4.632889788574452,51.86861116243172],[4.632836667987357,51.868497535556024],[4.632809885095694,51.8684540094934],[4.632782375688874,51.86845383279772],[4.632758739586615,51.868421553754914],[4.632747157624215,51.868391286494514],[4.632778153879659,51.86835755165686],[4.632766478928657,51.86833283249238],[4.632703270138225,51.8682739768877],[4.632526031717804,51.86812935960847],[4.632414503864219,51.86804361303406],[4.632368878115362,51.86803003010111],[4.632298695106931,51.86803912766952],[4.632221850094975,51.86807256767443],[4.632156934164347,51.8681156329573],[4.632198911413234,51.86799874567101],[4.632265374488481,51.86783866261199],[4.632532425730386,51.867747994408425],[4.632682465680737,51.8676997994688],[4.632687922068412,51.8677224140037],[4.632603562514541,51.86785606086084],[4.632618352186777,51.86789383179594],[4.632669498433253,51.867926288504414],[4.632720991469439,51.86793797375544],[4.63279920439606,51.867996925729386],[4.632860123940267,51.868018219206746],[4.632972763041751,51.868037780994555],[4.633027142745728,51.86805129046643],[4.633087718077235,51.86809322673823],[4.63312931547091,51.86814820141315],[4.633249842095051,51.86831903316594],[4.633399200066013,51.86851069495127],[4.633447082254631,51.86856377458719],[4.633855110273774,51.86846846022464],[4.634202860114032,51.8686621672226],[4.634241450237365,51.86867273718126],[4.63434654961755,51.86869457107096],[4.634662912894806,51.86877117637771],[4.634715002701346,51.86874725335838],[4.634759051863413,51.86873050387764],[4.634895920165135,51.868647383540626],[4.635539999277659,51.868320551646015],[4.635668695993666,51.86825221567453],[4.635741214502341,51.8682031333676],[4.635822722506047,51.868114883880004],[4.636034986238237,51.86780993019333],[4.636288412500264,51.8674360806708],[4.636333738760932,51.867367727770485],[4.636453857303781,51.867263724894215],[4.636527851378994,51.86722587745637],[4.63682108269299,51.86718942997312],[4.637170705812443,51.86717076008413],[4.637288728403213,51.86719241680513],[4.637406054830343,51.8672558733474],[4.637545827259606,51.867323085575904],[4.637601686538565,51.86734795682652],[4.637663790298326,51.86734835317381],[4.637799414698895,51.867314252794344],[4.639526938136779,51.8664531648702],[4.640288228239236,51.8660673138191],[4.642059527328162,51.865073956748454],[4.645046929581637,51.863200297083104],[4.64555741579201,51.8628267611767],[4.647193019726141,51.861604866244306],[4.648244998480486,51.86069049157148],[4.649243944919932,51.85970351912175],[4.650228739303252,51.858636323775364],[4.650309982558595,51.85858689989151],[4.65035692803654,51.858519583691404],[4.65035220073094,51.85845194415896],[4.650318845560605,51.858401929696655],[4.650221325718525,51.858376286162475],[4.649962952703558,51.85834976227606],[4.649882104195344,51.85834964210129],[4.649864687705239,51.858293405865275],[4.649882221505522,51.85808797445115],[4.649896066841706,51.85767517343935],[4.649900873302298,51.85753430572816],[4.649904768145777,51.857423753683285],[4.649927232761359,51.85709526180852],[4.64992754419463,51.85699991222528],[4.649984773580577,51.85699162623739],[4.650574987173511,51.857010942389074],[4.651006035512558,51.85700280697137],[4.651303021202691,51.856986734296456],[4.651461298940914,51.85691546994706],[4.6515612935805,51.85684048662805],[4.651748057008685,51.856351867971576],[4.651804651249667,51.856203840569954],[4.651845957555944,51.85617532659137],[4.651950607758796,51.85617236843535],[4.652002757014589,51.856194371951304],[4.652017618171125,51.85622852835489],[4.652212865815421,51.85593466418186],[4.652318786782781,51.85577713954631],[4.6523656063005,51.85571717626527],[4.652356231094926,51.85557660711902],[4.65230497059443,51.85552570723244],[4.652200915786856,51.85549228339359],[4.651778064819057,51.85535660852241],[4.651105205379549,51.85519381768588],[4.65021716677648,51.85504038176572],[4.650223337833497,51.85501977627142],[4.650046185423839,51.85499698731133],[4.649307813158353,51.85494190017576],[4.648382297143441,51.854939694210046],[4.647653581548707,51.85498194335523],[4.647629657326291,51.855043080882155],[4.647554412489373,51.85500660832117],[4.646615569583051,51.85510520387711],[4.646359192385285,51.85513597280396],[4.646278904897802,51.8551273369165],[4.646254601128204,51.85511015187411],[4.646234175276288,51.854933255798734],[4.646898956562982,51.854850999438604],[4.647182864048382,51.854818597017655],[4.647797434292074,51.85474853584049],[4.648409177371841,51.854698323073876],[4.64888092051611,51.85469767754835],[4.649340762668758,51.85471127695951],[4.649566298148597,51.854731402873796],[4.649911910272673,51.85474789587701],[4.65029270959316,51.854778672317785],[4.65073319679172,51.85482917533256],[4.651037588900457,51.8548690187649],[4.65118709413233,51.85449267909232],[4.651320995259085,51.854510034023576],[4.651404162658591,51.85452087684032],[4.651548201063315,51.85452990772588],[4.651578173942974,51.85453177367484],[4.651592817260677,51.85455379949998],[4.651762650061796,51.85466750448235],[4.651921960801746,51.85476204695337],[4.652104999150705,51.854858286484315],[4.652272436509637,51.85494023501715],[4.652483419462751,51.85503510009506],[4.652735032578931,51.855142863246144],[4.65294737020113,51.855231414239334],[4.652980704870906,51.8552316226684],[4.653436667100761,51.85504893089918],[4.653795651869413,51.85475634600675],[4.653923218842484,51.854650952632035],[4.653959003427852,51.854654272671375],[4.654000510716138,51.85461324340918],[4.653855728374435,51.8545474386166],[4.654009691107701,51.85435653563111],[4.65400994948727,51.85434066689495],[4.653838735579059,51.85426024599598],[4.654046396689443,51.85407290433319],[4.654175913082786,51.85412919440477],[4.654199246930667,51.85412934006182],[4.654491620243751,51.853780854833154],[4.654644276187502,51.85359304035301],[4.654633402363519,51.8535698761956],[4.654566515930799,51.85353165446166],[4.654536099746784,51.85353146468698],[4.654343555796672,51.853712062995896],[4.652938514453679,51.85309104926155],[4.653662934608885,51.85246618019618],[4.653691267414215,51.85246635718599],[4.653775231534217,51.85250481643714],[4.654851803240355,51.85295229394115],[4.654882637021623,51.85295248624011],[4.65496514899605,51.85287532632425],[4.655017612396103,51.85282662220573],[4.654961983805855,51.85278808347592],[4.655138778082724,51.8526275142441],[4.655189611006157,51.85262783114331],[4.655338535062762,51.85248979678124],[4.655505647947754,51.852334973324936],[4.655470125041281,51.85231565559166],[4.655581901109707,51.852206936900714],[4.655630650919413,51.852207240631905],[4.656039635003867,51.85183560777637],[4.656039892649115,51.851819739029445],[4.65588444466617,51.851769611192346],[4.65598147473471,51.85164505936825],[4.656251507400549,51.85172118907321],[4.656378243947913,51.85156340296107],[4.656307120492677,51.85152967172721],[4.656338362536927,51.85145322360949],[4.656607587210119,51.8510654938435],[4.656649293876205,51.85101181966583],[4.656688139928297,51.85098032064164],[4.656734697579841,51.8509615139054],[4.657121586737073,51.850383683253014],[4.657104055763004,51.850359833439285],[4.657104722966423,51.85031867768108],[4.657360664350669,51.84992699218735],[4.657636113171492,51.84951401009775],[4.657642527285314,51.84950385682634],[4.658081242228254,51.84960967445746],[4.658217097473888,51.84922240264694],[4.658435059374836,51.84860184292158],[4.658436418416994,51.848517854254226],[4.658325184002828,51.847667259371796],[4.658302346007628,51.84755937966935],[4.658271101813584,51.847456092208006],[4.65822423165334,51.84734006339154],[4.658095432230799,51.847060176921005],[4.657891241380481,51.846624602441146],[4.657706809255909,51.84625559892224],[4.658104571949616,51.846186716786534],[4.658566401520313,51.847128130724684],[4.658612229033992,51.847128415106674],[4.65867930292721,51.847128831300466],[4.658690001036918,51.847111479477185],[4.658800191149084,51.8460689747582],[4.658896876503373,51.84508831875043],[4.659000556695187,51.843958292997094],[4.657455908007046,51.843560328869685],[4.657392530554707,51.84353774284601],[4.657321446171907,51.843502334203414],[4.657396793306765,51.84345467464103],[4.657512651025973,51.84329811040857],[4.657527134303932,51.843278459542034],[4.658860390652222,51.84360866209648],[4.659029665330073,51.84365241985128],[4.659068406763232,51.84365266012194],[4.659093946111214,51.8436449480445],[4.659114639480743,51.843627657265905],[4.659122547205423,51.843602416733965],[4.659435209419952,51.8422236309038],[4.659454953694914,51.84213614269361],[4.659514633703659,51.84187174825088],[4.659527240830553,51.841813376776685],[4.659598237401863,51.84149318345107],[4.659628813813473,51.841354022750686],[4.659685343127015,51.84100083673658],[4.65970874984909,51.84081544068659],[4.659733490566561,51.84047005754869],[4.659737412302006,51.840149834971726],[4.659700216673495,51.839692845994904],[4.659615782880012,51.83891080229732],[4.659764121909364,51.83890849551082],[4.659780906238361,51.83841081043187],[4.659799655860846,51.83804939115468],[4.659801205657885,51.837953404599276],[4.659707470634584,51.83795385567334],[4.659691901477959,51.83780873170597],[4.659692880657744,51.83774809489972],[4.659668663863826,51.837648335223115],[4.659638520363728,51.8375544749188],[4.659748524707177,51.83755257597217],[4.659724131923746,51.836999412038615],[4.65971561090975,51.836882201965466],[4.659691191664717,51.836537029979645],[4.659743940348356,51.836495035556936],[4.659826446462725,51.83649322412193],[4.659885316872722,51.836510620576284],[4.659963409143733,51.836550071100724],[4.660045171346494,51.83659444671855],[4.66005151343577,51.83669190238139],[4.660065924512506,51.836779730832305],[4.660100306630742,51.83684329584717],[4.660174670089776,51.83659757144394],[4.660291612117272,51.83619134219968],[4.660357923534955,51.835979889205966],[4.660370962877921,51.83589455341253],[4.660360360868624,51.83569965589649],[4.660358330916135,51.8356706117577],[4.660177871089931,51.83567646230749],[4.660173898028012,51.83556121567681],[4.660303849106144,51.835562020404645],[4.660290489511693,51.83533149452757],[4.660189337283946,51.83532725469544],[4.659996928454635,51.83501536453567],[4.659878757668784,51.83500753590143],[4.659886427425502,51.83486784660994],[4.660027674049621,51.83486536616778],[4.660069963482907,51.834671183625474],[4.660070760928829,51.83462177070873],[4.659994641179311,51.83461510600625],[4.660015263732803,51.834498721840745],[4.66003297162955,51.83438231961592],[4.660069451519768,51.83418668086913],[4.660125159575413,51.8340385152653],[4.660183765145486,51.83391720502374],[4.660189828747691,51.83385118041287],[4.660130351727551,51.833819974649565],[4.660043954722621,51.83380498753675],[4.659867979768729,51.83379151097475],[4.659869077305589,51.833723520349444],[4.660254929928192,51.83374036147905],[4.660353081214392,51.8335430407289],[4.660514520168766,51.83321811584855],[4.661235550668134,51.83182056074556],[4.661239414950745,51.83178755400643],[4.661007471764282,51.83173244355364],[4.660997807318235,51.83171186804198],[4.661069607301424,51.831572704793196],[4.660988254817376,51.83155516981256],[4.66101361404096,51.83150642477469],[4.661081552907519,51.83137420474316],[4.661360138597952,51.83142960257849],[4.661432263997122,51.83129598892466],[4.661756978388195,51.8313577356637],[4.661833947386906,51.83120776536921],[4.661667259755849,51.83116131731174],[4.661710527358681,51.83108674872224],[4.661718662853072,51.83107299331585],[4.661854010185952,51.83109989325977],[4.661991892445838,51.83112461457527],[4.662038995673057,51.831122325824985],[4.662065163344366,51.83107500486737],[4.662736365510356,51.830129246282134],[4.662737792866978,51.83011815858718],[4.662265513953589,51.82998698989362],[4.662379350998761,51.82982331089491],[4.662775370988415,51.82993104250014],[4.662802688058952,51.82988992165987],[4.663255432198616,51.829344604989444],[4.663551521563628,51.828983604237266],[4.66391344415359,51.828542753136624],[4.664009397397074,51.828454832083665],[4.664083358146159,51.82838767681023],[4.66463868695561,51.8278063426808],[4.664670588554398,51.82779079720941],[4.664754811389019,51.827784864451004],[4.664798285463892,51.82777480943619],[4.664840313505292,51.827751069254674],[4.66507371619819,51.82745419323059],[4.665256134886829,51.827323964907606],[4.665405755920018,51.82723921051957],[4.665401916057887,51.82716693153362],[4.665455801892523,51.82710481324391],[4.665751463346281,51.82689863768119],[4.665794432981316,51.826946126423145],[4.665780089267646,51.82706164686144],[4.665673545578462,51.82770742158963],[4.665643274105952,51.827829296156565],[4.665577858208398,51.8284033252811],[4.665516139934361,51.82892834751613],[4.665364018797959,51.83015691808205],[4.665512689275372,51.83015809019507],[4.66553040701389,51.830118071047735],[4.665561124574916,51.83002045697624],[4.66557420800966,51.82982764075142],[4.665584547673001,51.82980615669784],[4.665743057880573,51.829608944553],[4.66630451137511,51.828956674818144],[4.666431985999281,51.82892881346698],[4.666464321094128,51.828886174751474],[4.666723388294914,51.82854661582639],[4.667057766678313,51.82810713482953],[4.667146777399054,51.82793194447053],[4.667254386554372,51.82786989694124],[4.667266887037062,51.82771307562682],[4.667552156902184,51.82771405103229],[4.667590468386345,51.82771428591279],[4.667596218213693,51.82745858835136],[4.667645748019198,51.82712135515756],[4.667668152350297,51.8270484623176],[4.667694068226985,51.826964237419325],[4.667755560962363,51.82676462110645],[4.667840913784412,51.82642683345354],[4.667859046000972,51.82636062442813],[4.6679111956654,51.82604172873872],[4.667940075877397,51.8257977853147],[4.667928227922089,51.825444176000474],[4.667880923508934,51.825016030210165],[4.667786857480972,51.824569275275934],[4.667619918197337,51.82404414086404],[4.667469788342584,51.8237443921743],[4.667462120953502,51.823729119256335],[4.667342271100131,51.82348916709672],[4.667256097642731,51.823357030093725],[4.667023584944807,51.82300103490723],[4.666922102066585,51.822888932026764],[4.66639953884015,51.82228651872273],[4.666037292364303,51.82194546562887],[4.665599225849119,51.82160678476787],[4.665350011617875,51.821463063212164],[4.665136169568995,51.8213987821819],[4.664955975579229,51.82136567469241],[4.664937327030667,51.82141200978623],[4.664943936143282,51.821493338598515],[4.664918012833034,51.82175975066572],[4.664869393699659,51.82188331802258],[4.664742298453567,51.822122527851995],[4.664624708764653,51.82228824986958],[4.664551034470852,51.822364181091196],[4.664464363374294,51.82244545060606],[4.66440788349284,51.822513745675714],[4.664375244834342,51.82257547840491],[4.664361278649118,51.82264145461966],[4.664381412779969,51.82271022149028],[4.664459230119736,51.822895469089275],[4.664412553306734,51.82289776230073],[4.664395861621053,51.82287391773695],[4.664165931854884,51.82287766282098],[4.664149200347681,51.82285639952201],[4.663936167683797,51.82287108588686],[4.663927043861433,51.8228947714363],[4.663761068236203,51.82290948948093],[4.663747567608155,51.822946308350495],[4.6633427430756,51.82297555316451],[4.663120816338568,51.82250710328544],[4.663166011110569,51.82246738340827],[4.663081422251384,51.82228931913156],[4.663045273758529,51.82225838720875],[4.663104744495726,51.82223733591719],[4.663174945932732,51.82217041598629],[4.663258501067501,51.822049903431136],[4.66331150561345,51.821990619288066],[4.663503819384192,51.82183955245028],[4.663666704209922,51.821705851568005],[4.663794292919465,51.8215918032727],[4.663910100964541,51.82145935973353],[4.664025503049364,51.82132613965491],[4.664344234560495,51.82136732789295],[4.664405285167567,51.82127351339824],[4.664438434025446,51.82123191302699],[4.664463628501521,51.82119284341276],[4.664369582705394,51.82116284612602],[4.66438192872829,51.82112008485126],[4.664347924759928,51.820877560625895],[4.664343041873114,51.8208444989826],[4.664314070481296,51.82080741935174],[4.66358566912751,51.82045042553159],[4.662719916100351,51.820012582850296],[4.66253824423711,51.81991649682737],[4.662521853316729,51.81987407424738],[4.66248397168544,51.81984751880323],[4.662428554202643,51.81984975723999],[4.662351391363429,51.81988360215855],[4.662300543901836,51.819938253853955],[4.662270876156648,51.8199705862381],[4.662029869950064,51.82017192859405],[4.661881558803618,51.820279912606225],[4.661142702897579,51.82085803406552],[4.661121363536365,51.82086435322434],[4.660934048520774,51.82075661734782],[4.661100976141564,51.82063068695629],[4.662033406761723,51.819952087474604],[4.662104441274982,51.81991097890707],[4.662121134028557,51.8198568902172],[4.662186895519374,51.819806976077096],[4.662307331818045,51.81972333522933],[4.662318426389057,51.81970662998842],[4.662322110366287,51.8196847185786],[4.662309460211555,51.81966864060607],[4.662280955842317,51.81965452940547],[4.66224559388382,51.819652505156334],[4.662215109222914,51.81965799409637],[4.662174914155647,51.81967168003866],[4.662069575719243,51.819748704887346],[4.662036698635833,51.81974746895426],[4.661277648360641,51.819666908508424],[4.661008441361905,51.819628340986704],[4.660831442824746,51.819578473116955],[4.66073973493085,51.819533003466546],[4.660681664045179,51.81946735565468],[4.660623397835637,51.819413835923235],[4.65938850832242,51.818785817381716],[4.659362673571044,51.81876114144696],[4.659495624018832,51.81867629209536],[4.659502814000391,51.81864356305802],[4.659463393481458,51.81863506072824],[4.659330377858747,51.81872403993682],[4.659310393527367,51.818723915994156],[4.658669114972751,51.81833956216413],[4.658669394378446,51.8183222741745],[4.658355763991797,51.818121881098826],[4.657999690320207,51.81789412888362],[4.657681480508036,51.817693963491244],[4.657556586936086,51.81761551229381],[4.65739703818873,51.81751723305983],[4.657470342056678,51.817464529818146],[4.657424654854308,51.81743173007696],[4.657011014302093,51.81715974665736],[4.656980660908483,51.817208588361815],[4.656946760781707,51.81724502158613],[4.656773794480778,51.8173582641522],[4.656714674294324,51.81735789618343],[4.656616400168691,51.81733276872071],[4.656093421568417,51.8170763591662],[4.656047822781349,51.81706394666323],[4.656008270368129,51.8170637002433],[4.655968454275544,51.81707970909858],[4.655821581808474,51.81720137075393],[4.655710651355135,51.81713513301373],[4.655750796893482,51.81709873996613],[4.655672288053429,51.81706160646421],[4.655625480304629,51.81709795885449],[4.655579794818712,51.817065158396865],[4.655560562468006,51.817044394191875],[4.655538522554663,51.81699135569202],[4.655539385288618,51.816938201099674],[4.655520197500223,51.816889050903654],[4.65548179021795,51.81684390937638],[4.655442418025322,51.81680701972298],[4.655483046708136,51.81676650037727],[4.655145611514705,51.81654633864233],[4.655065678205968,51.81649448675769],[4.655098966136973,51.81647017868193],[4.655054690806076,51.81645312959115],[4.653895366004418,51.81571997857821],[4.653913099464423,51.8157048643486],[4.65385423689288,51.81566320700974],[4.653829601573833,51.81566744044171],[4.653631749486097,51.81554440088955],[4.653610900610881,51.815546335267115],[4.653508289579877,51.81560891752787],[4.65339211267842,51.815532838993285],[4.653459058441474,51.81546151796872],[4.653465723723151,51.81541020637649],[4.653432971438487,51.815375938070794],[4.65289014048535,51.81506287529891],[4.65213282698212,51.81462614775422],[4.652062449984333,51.81460144914219],[4.651992585599284,51.814596367017785],[4.6519750833816,51.81459728926919],[4.651937577638025,51.81459937696701],[4.651374862669062,51.814281279158],[4.651347605247533,51.81426768903212],[4.651313968151373,51.814287864458095],[4.651286382192857,51.81429440152944],[4.651237119087446,51.81427706082599],[4.650592740251178,51.81388670740463],[4.64978541924487,51.81335365313055],[4.649491038116842,51.813126262261605],[4.649266426656999,51.81306240022707],[4.649167029601024,51.81305583991905],[4.649094809038881,51.813093061801794],[4.648989309546065,51.813154073212154],[4.648893940731431,51.81323192296361],[4.648804565672773,51.81329974571261],[4.648710285897097,51.81333657058328],[4.648649753494548,51.813346511356464],[4.648440106779437,51.81333487004877],[4.648341307253778,51.813317216263314],[4.648292101328652,51.813296520091356],[4.648363812935568,51.81321413540087],[4.648393088358453,51.813180772111515],[4.648442960799802,51.813160699724804],[4.648509825346152,51.81312008994614],[4.648789971163779,51.81286895705522],[4.649058028817326,51.81297464083295],[4.649082623633392,51.8129727308295],[4.649227242463868,51.81291273927456],[4.649230716835635,51.812903987260235],[4.648770517726359,51.812531555494594],[4.648722392189588,51.81247035065826],[4.64872335159049,51.812411778276775],[4.648770069263915,51.81235555764348],[4.648865698276287,51.81231254800865],[4.649030520674652,51.812289843073195],[4.649129087168392,51.81227085151483],[4.649161080222007,51.8122493755966],[4.649151313951818,51.81221008931251],[4.64903052045097,51.81208649454751],[4.648984992693219,51.81204466151093],[4.648939881191123,51.812002830175956],[4.648773365622293,51.81184927131111],[4.648739266802615,51.8118214452657],[4.648646835754582,51.81174551044884],[4.64860863329181,51.81171404508226],[4.64852335627312,51.811633510733735],[4.64830446605199,51.8115005238007],[4.648222589740838,51.811542845655765],[4.647991091508609,51.81131558799015],[4.647622076822159,51.810969531546874],[4.647223960325898,51.81059593689098],[4.647154129089724,51.81051317623562],[4.646904241917571,51.810620499925534],[4.646727942808097,51.81065783764328],[4.646653487538577,51.810603176738965],[4.646526796502189,51.81050973424306],[4.646430121407158,51.81043919103708],[4.646334232272982,51.810371490443664],[4.64622558287783,51.810294936227514],[4.646127221506172,51.81022567199636],[4.646146044262812,51.81009366598642],[4.646224450834656,51.81005983955985],[4.645872667685235,51.80973066007748],[4.64574742369458,51.80957477596609],[4.645452267911224,51.8093213052372],[4.645299094672252,51.809193115343575],[4.645118760545188,51.80904591496382],[4.645054677547222,51.80906950861827],[4.644868787717156,51.80893104658004],[4.644808052644814,51.80890305085492],[4.644279486686238,51.808515717268044],[4.64423334675176,51.80848626399148],[4.64387452116561,51.80823238694142],[4.643617150711191,51.808036439422956],[4.643678433589079,51.80800586076897],[4.643640484545246,51.8079594282581],[4.643651922646494,51.807947371381445],[4.643702323824696,51.807920337220445],[4.643318845084761,51.80764720481158],[4.643115961001191,51.807505019627676],[4.642954095102433,51.80742502822378],[4.642159204195385,51.807084251230954],[4.641637482549914,51.8068646862655],[4.641336110931891,51.806737871129876],[4.640533433774941,51.80639109914846],[4.639539817159582,51.80596181663865],[4.639328638264297,51.80586911860021],[4.638904630083674,51.80568293691546],[4.638848256122628,51.80571870570937],[4.638791856385299,51.80575602216784],[4.63811127543035,51.80550394413458],[4.638055844135634,51.80548294587284],[4.637750152184019,51.80536667444734],[4.636649615649566,51.80496171598728],[4.636180345301667,51.80499509963059],[4.635492277260193,51.8050438528276],[4.63531056399698,51.80505713970592],[4.635404164888086,51.80521050983446],[4.635215398736324,51.805446970790115],[4.633816119553754,51.80523438783014],[4.633529275260483,51.80561008343297],[4.633405243450107,51.80565883338928],[4.632907295178435,51.805514734420576],[4.632840920921961,51.80547611466883],[4.632826108107473,51.80544092389672],[4.633073863584467,51.80508794583163],[4.63314971423021,51.80505772515525],[4.633413357818699,51.80467542931424],[4.63368562401639,51.80429989923269],[4.634043378913648,51.80379021060567],[4.633855697518515,51.8037373943342],[4.633620642415406,51.803679886118104],[4.633536075517761,51.80365895654504],[4.633164006692345,51.80355566591745],[4.632571226932254,51.803408633226844],[4.632193443811803,51.80332362445096],[4.631387107844071,51.803153276198906],[4.630450463192337,51.80295988975283],[4.629958827303064,51.80286355875374],[4.629801217163963,51.802830026559306],[4.629770890212319,51.8028264761989],[4.629748514870254,51.802845169416024],[4.629009542195801,51.80396733314758],[4.629067049250295,51.80398834912683],[4.628561136886436,51.80474015503406],[4.628116234798108,51.804685666215434],[4.627766128747564,51.804415536856],[4.627827863888572,51.80438316353667],[4.627634161902104,51.804193785723285],[4.627559617607067,51.80417110998308],[4.627408470372777,51.80409968223101],[4.627260472459579,51.804014338564706],[4.627408750623686,51.803761886988724],[4.627688611191535,51.80325945496499],[4.628008863783836,51.80270618814131],[4.628031149501936,51.80266813925704],[4.628100130489844,51.80250188071793],[4.628103929551445,51.80247403486373],[4.628116218175387,51.802386891398555],[4.628081281431287,51.8023110540297],[4.628018441445803,51.802260842729524],[4.627924829211143,51.80223365732658],[4.627706519392748,51.802196116014045],[4.626796687320494,51.802093193369345],[4.62628522315168,51.80203826606337],[4.625618590885027,51.80197820091827],[4.625153810147467,51.80194421608206],[4.624577719277434,51.80192060254224],[4.624151652353814,51.80191112323143],[4.623231798187893,51.80190926593308],[4.622666372336691,51.80191951814941],[4.622114852996385,51.801944309502545],[4.621754053925575,51.801964149420854],[4.621174598750636,51.80201610770669],[4.620919419823375,51.802042053893004],[4.620774738117808,51.80205659197704],[4.620333515547276,51.80210609440666],[4.619758638400231,51.80218233352113],[4.619080779352497,51.80229299218638],[4.618875440311174,51.80232519457083],[4.618693530407236,51.8024236136363],[4.618657033576782,51.802464664315416],[4.618624655842503,51.80255709458556],[4.618623191474662,51.80264301815961],[4.618672229722347,51.80269649962703],[4.618773735089415,51.802748775944195],[4.61928924056869,51.80290853329083],[4.619537156999161,51.80299170224474],[4.619716028598436,51.80307183749547],[4.619896577717836,51.803200241230314],[4.620060171860052,51.803346596677926],[4.62067706130308,51.803909581648796],[4.62129057028672,51.80447641084955],[4.621931898201104,51.80504832242272],[4.622120058109772,51.805219608947084],[4.621983319250614,51.805280651385864],[4.622376029846992,51.805638814754204],[4.622504426949678,51.805578750298274],[4.622932929964785,51.805986949734994],[4.623019946127983,51.8060597723279],[4.623186447213739,51.806207691861914],[4.623723981584225,51.8067169824478],[4.624173914130515,51.807139252742495],[4.624241761436373,51.807213498505774],[4.624257200862131,51.80728508079853],[4.624157792358481,51.80823950393467],[4.624092806300139,51.80880783987568],[4.62407709152981,51.8089246377715],[4.624035133940176,51.8089439773853],[4.623441366057594,51.809000241526604],[4.623344290639629,51.80900477006827],[4.622766868163555,51.80905442802289],[4.622779891495158,51.808630008846436],[4.62277570913378,51.80853295195399],[4.622776697762573,51.80847463777494],[4.622770240350492,51.80836440477413],[4.62277504442149,51.808252955253735],[4.622782205197738,51.80814977902287],[4.622783080078061,51.80809817328188],[4.622775005253269,51.80793606032195],[4.62277687311943,51.807825882448384],[4.622920832966781,51.80783043276241],[4.62292826738036,51.807539134242845],[4.622924107271717,51.80746530344785],[4.622896656391745,51.80743931892579],[4.622738900498561,51.80743829126432],[4.622737149899612,51.807369636583594],[4.62271914038263,51.80730242383279],[4.622681480410003,51.807240245272126],[4.621855156793179,51.80645500853561],[4.621694061176769,51.80630763921751],[4.621652468728136,51.80625653033516],[4.621591032078772,51.80619729289299],[4.621339603211411,51.805976560913294],[4.620204600517749,51.804962465622985],[4.619707880247839,51.80450452013335],[4.618922508408555,51.803789206027886],[4.61888713610319,51.803764200573596],[4.618812963455697,51.80369558747882],[4.618782959220047,51.80367319781062],[4.618541480031564,51.80352968496092],[4.618313695737942,51.803413099001205],[4.618005081652298,51.803301143154656],[4.617583468013722,51.80317631774755],[4.617310765234556,51.803106659272174],[4.617210801178908,51.803110389802754],[4.616985471359862,51.8031672324505],[4.616712688468242,51.803248536011374],[4.616559143654245,51.8032942357733],[4.61492306912046,51.80374385363721],[4.614059963099268,51.80397455078502],[4.613166455314128,51.80420555611895],[4.612908284121397,51.804283592678054],[4.612632115706615,51.80436718715163],[4.612553547705347,51.804409506079146],[4.612497366683116,51.80445713409887],[4.612499540446607,51.804500244039986],[4.612596685177762,51.804636623377355],[4.612737926119796,51.80479884237124],[4.61323619475001,51.80538095329241],[4.613374207664762,51.8055132150162],[4.613502913941937,51.80562993121529],[4.613432448074545,51.805660949588656],[4.613920325535839,51.80583061289799],[4.614614479537711,51.806060470068424],[4.614851869592075,51.80615106266278],[4.614898623365026,51.80621640116923],[4.61488783041291,51.80628755413449],[4.614828763163474,51.80638213037914],[4.614629156456422,51.80632146281833],[4.614414580267061,51.806551269632706],[4.61449651828178,51.8066281936799],[4.615088574623216,51.807156980712485],[4.615710033570622,51.80774427864778],[4.615811314046421,51.80783449021278],[4.616689735599687,51.808611595044376],[4.617590432909666,51.809426774305216],[4.618185228717028,51.80997001344304],[4.617730225687402,51.81016367072549],[4.617174651060662,51.81039537448533],[4.616443689404147,51.80973252901146],[4.615996032668226,51.809325985900074],[4.61596614381239,51.8092966291334],[4.614855650439937,51.80828780383162],[4.614798764830381,51.80823065748441],[4.614296766372596,51.807765944341014],[4.613756418016692,51.807280590657676],[4.61329800584051,51.806872934110835],[4.612357041645076,51.80601023105908],[4.612204049343445,51.805877611226705],[4.612105777425188,51.80578251299344],[4.611975304390278,51.80564771891803],[4.61177588332517,51.805407181323865],[4.611456876601429,51.80502830899204],[4.61132927269887,51.80487211387917],[4.611188542536612,51.80484976486495],[4.611105923727811,51.80483708992302],[4.610938188295498,51.80483598034076],[4.610678856410563,51.804860070130715],[4.610433222234193,51.80491057174494],[4.610146386856035,51.805008798950354],[4.609234715088729,51.80530107244304],[4.608868703333935,51.80540393288987],[4.608085708138517,51.805620149655375],[4.607442207336699,51.80578541880413],[4.607338983280426,51.8058087327139],[4.607259073688311,51.80583194263238],[4.607167410764793,51.80586075165006],[4.607332227138214,51.806103131890865],[4.607723094649006,51.806730228785696],[4.607758384099081,51.806783880572524],[4.607874163473291,51.80697354789471],[4.607971419827093,51.80712696455969],[4.608137890180807,51.80727413060777],[4.60804558582827,51.80731583938895],[4.608225941806484,51.80747858060326],[4.608588293932309,51.80780562181506],[4.608663887485891,51.807767415205326],[4.609302213873784,51.80833782744736],[4.609779626944078,51.80877710855865],[4.60985587620414,51.80884574110565],[4.610469856256866,51.80940540486159],[4.611072666234259,51.809937636914604],[4.611452215228574,51.81028387929678],[4.611741103816072,51.81055210410512],[4.611646126103203,51.8106038627319],[4.611940846792756,51.81087212556867],[4.611526416446244,51.81105260770214],[4.611499823308568,51.811049593274355],[4.611456301239464,51.811014209977664],[4.610973117103122,51.8105934775173],[4.610889183139064,51.810632405266986],[4.611345394405309,51.811023798506305],[4.611064059189195,51.81111483927954],[4.611070279223813,51.81114042818425],[4.611028623550258,51.81116595840724],[4.611048360102907,51.81120453913672],[4.610860883747851,51.81128458675358],[4.610691269442531,51.81112527545089],[4.610773314844405,51.811075238758114],[4.61071176601009,51.811022962038614],[4.610445259523062,51.81112313133106],[4.610279179170865,51.81097622928204],[4.60911409461261,51.809927247001994],[4.608885019850139,51.80971618519683],[4.609016289615022,51.809660282975386],[4.608795384798551,51.80945830703917],[4.608612602314613,51.80929090530648],[4.60847839203183,51.809348336320575],[4.608132083296131,51.80903172316238],[4.607815470764271,51.80875556313962],[4.60735421301455,51.80834605762333],[4.606718662476998,51.80776094396487],[4.60652535866071,51.80757695299197],[4.606441189106732,51.80748529931389],[4.606340830836629,51.80734295731991],[4.605995075962658,51.80682789516001],[4.605725098470064,51.806432558757756],[4.60566113208759,51.806352393618184],[4.605577760564947,51.80635906343085],[4.605405239715727,51.80634552760325],[4.60522774520892,51.80635466662743],[4.604792308287586,51.80642711743355],[4.604488382871425,51.80647747593607],[4.604160564439298,51.80653722294746],[4.603676893092991,51.806630249249075],[4.603390921645648,51.806677370207574],[4.602826561094955,51.80676624231397],[4.60209886636324,51.80688756585232],[4.601776452661208,51.80694734149089],[4.601711648231753,51.80696342360741],[4.601122122773474,51.80711043983868],[4.600855425027437,51.80717394169612],[4.600563573779834,51.80722359705355],[4.60002196185094,51.80729634938537],[4.598936333880754,51.807436154926734],[4.597747801928405,51.807580160624106],[4.597591765384634,51.80759975516444],[4.597593280314853,51.80794117586417],[4.597210917349172,51.80790531331343],[4.596812738323709,51.80789308315474],[4.596571416061111,51.807885780094196],[4.595831051014409,51.80787304810705],[4.595185843837789,51.807870242748365],[4.594760251338722,51.807878207959455],[4.594602163653435,51.807895978842076],[4.594092087128051,51.80790259610304],[4.593666954023413,51.80793172086764],[4.593244162574909,51.80796963475492],[4.593128689826458,51.807978659200316],[4.592962298112778,51.80801882198076],[4.592807006278656,51.80806680258174],[4.592364107161618,51.80825347580666],[4.5922873512071,51.80819153752769],[4.592187035460316,51.80814363370905],[4.592005124916558,51.80811943391555],[4.591778308868062,51.808139314990775],[4.591422794594246,51.80816271030079],[4.591214211015068,51.80818735932136],[4.590936971845325,51.80825721933368],[4.590879874891717,51.8082844435071],[4.590744868480646,51.80843294272499],[4.590720302430245,51.80845677594275],[4.590550802904463,51.80848401177125],[4.589712716613325,51.80855883287655],[4.589555982512381,51.80857041202914],[4.589412970275094,51.808559375983855],[4.588091017934469,51.8086644425893],[4.587934776946637,51.80867163552744],[4.587319641050306,51.80859234917764],[4.587126468861613,51.808569355833455],[4.587013368506318,51.80856187451142],[4.586835422668028,51.808572273471356],[4.584959292310313,51.808728231799236],[4.584735558963352,51.80873831452795],[4.584329356716149,51.80873218130219],[4.584146085886918,51.8087376372862],[4.584024570821873,51.80875848198689],[4.583897318214039,51.80879760996521],[4.583815819683541,51.80883885781463],[4.583720289496792,51.80892000769778],[4.583344349056207,51.80931793952565],[4.583146891922268,51.809535161769176],[4.5823266899032,51.80932928626399],[4.581611035735313,51.80914399243873],[4.581518478339611,51.809128388882705],[4.58142862175004,51.80912467525299],[4.581339784404855,51.809133871917254],[4.58125037409979,51.8091518376076],[4.581158142618377,51.80918784855945],[4.580828246521798,51.8094075117337],[4.580722306058262,51.80946510542812],[4.58070312681224,51.80949000550541],[4.58029177883258,51.809771041682396],[4.580145578714449,51.8097984227432],[4.580008033761778,51.80983076563046],[4.579820854825819,51.809891412237754],[4.578449719486915,51.81029796002875],[4.577507609578871,51.810528876909494],[4.577257444631804,51.81057282684838],[4.577049063691372,51.81060829081375],[4.576867188240593,51.810674646654604],[4.57630255904553,51.81084209624641],[4.575509045265581,51.81107350797966],[4.575125902288467,51.81119601572238],[4.575063509466131,51.81121597043493],[4.574998605786721,51.81123668166813],[4.57446806556332,51.811406166068274],[4.573661570263403,51.81166379726872],[4.573430419808716,51.811737805292516],[4.572655319115777,51.81198532553574],[4.572069868821836,51.81217428766033],[4.572075229883019,51.81220013074348],[4.573277566529974,51.81300949019712],[4.573300603896414,51.8130248751469],[4.57323841874688,51.81317153773078],[4.573031950794394,51.813284683382335],[4.572572833026658,51.81348587909568],[4.570598612173319,51.81433097644183],[4.570355988456545,51.8144397372862],[4.569690929859907,51.814745808134184],[4.568917075229923,51.815218855099175],[4.568316513132694,51.81559478636854],[4.567594483921676,51.81603257463871],[4.567329132681099,51.816245425835966],[4.565787606124242,51.81721139772055],[4.565548327158009,51.817363525841635],[4.565281710879326,51.817553396409124],[4.565038782272149,51.817745754126264],[4.564810536552695,51.81795473109513],[4.564557954937991,51.81819656805484],[4.564373136815204,51.81839862252243],[4.564251464681498,51.81856292715424],[4.564079159528946,51.81878648733719],[4.56400350006224,51.81893924386338],[4.563919466965268,51.81916290699847],[4.563796247508199,51.81950293784633],[4.563712613816471,51.81979576408236],[4.563689922567898,51.81987534508774],[4.563588860147322,51.82027875544802],[4.563468769909811,51.82074344968552],[4.56340484320879,51.8210513811865],[4.563366567857269,51.82125446260885],[4.563384956894328,51.821843223515785],[4.563419985157068,51.82282022061142],[4.563436916820169,51.82316975057608],[4.563231291817304,51.82387074196726],[4.562871597349774,51.8242971095228],[4.562116235964765,51.82506649369165],[4.561764134202227,51.825418331521384],[4.561399692142334,51.825806984837804],[4.56092673464472,51.82627616121108],[4.560428953880085,51.82680399857407],[4.559992186730792,51.8272290396458],[4.559748843448232,51.827507833929566],[4.559590555302729,51.827713423461105],[4.55944283085686,51.82795598883506],[4.559344087848912,51.82816199705066],[4.559291994149157,51.82839052748012],[4.559273382283803,51.828519425345846],[4.559023631914457,51.828511728150076],[4.55882547266985,51.8284842660068],[4.558452151039543,51.82846976014915],[4.558312666938772,51.8284450332045],[4.557876682225244,51.82887084685115],[4.557521823655469,51.82918807375916],[4.557480383500609,51.82924455384185],[4.557473991324102,51.829297668184324],[4.557495106224252,51.82937239628559],[4.557629113717789,51.82951372722495],[4.558686119596788,51.83083083968106],[4.558718236772448,51.830896355312404],[4.558706299018239,51.8309339474297],[4.55867247528678,51.830961320354035],[4.558301996935931,51.831062831412105],[4.558232758365033,51.83106814919046],[4.558177204975938,51.83105407955234],[4.557719944273653,51.83048479828016],[4.557820791340681,51.830459317647666],[4.557190443071051,51.82965488129471],[4.557157684899095,51.829669616832454],[4.557093782246449,51.82961148854404],[4.557083947092481,51.829602774497616],[4.55700693294312,51.82957810128417],[4.556901572784125,51.829577356040225],[4.556767804634853,51.82960389285724],[4.556645252736415,51.82965463741858],[4.556207878708131,51.82990585809414],[4.556019736293675,51.830012523231524],[4.555932241668855,51.830059257322006],[4.555670124155055,51.83022475168022],[4.555511354345605,51.8302969157849],[4.555374877204069,51.83037981743138],[4.555216044444411,51.83045533529975],[4.554714925077185,51.83075190444987],[4.554669239828234,51.83078990221593],[4.554668531870884,51.8308282189808],[4.554707603783462,51.83087765563254],[4.55481196607759,51.83100019975927],[4.554703775085461,51.831062269316824],[4.554935526932068,51.8313010686106],[4.555060273455718,51.83126711529745],[4.555600978220412,51.83185003010444],[4.555588701868016,51.831905812764155],[4.555453257884393,51.83195504544195],[4.555259972912816,51.8320238680222],[4.555223740258112,51.83202361121879],[4.555203750428401,51.83202346953367],[4.555130967066518,51.83199508307843],[4.555008954306932,51.831903381308244],[4.554740097275965,51.83166638377037],[4.554412240570023,51.83175966892257],[4.554731266137271,51.832211985616084],[4.554741419999964,51.83222599290056],[4.554723831014865,51.832253738708935],[4.552733295297504,51.83276991487667],[4.552710999194115,51.83275930514083],[4.552367523774051,51.83227868048459],[4.552340603428763,51.83224790925315],[4.552250392418923,51.83210365775016],[4.553837305788231,51.83120437608855],[4.55400973660938,51.83131721002177],[4.554223304433046,51.831187631882464],[4.55410663653495,51.831077387304425],[4.554007520709462,51.83107668379776],[4.553985691556789,51.83106336840101],[4.553998089074535,51.831091197519655],[4.554099585241858,51.8311434001614],[4.554104734322442,51.831202790397626],[4.554059878557965,51.83121847202497],[4.554034498946364,51.831194421328156],[4.553901277888763,51.831145992515395],[4.553850638448558,51.831114021330336],[4.553780186119741,51.83111739168819],[4.552126660706246,51.832060069261026],[4.55161823191336,51.83225451041248],[4.550987581076408,51.83250343335422],[4.550717047651391,51.83260447119487],[4.550428066624692,51.83268950635234],[4.549849757844246,51.83285557207282],[4.549557682643236,51.83295000235421],[4.549307582602147,51.833049504577026],[4.548838618735059,51.83318125007885],[4.548352163837659,51.8332902880491],[4.548041945087543,51.83337452110286],[4.547701260211626,51.83343956736759],[4.547385632794056,51.8334785986587],[4.54705772001717,51.833528767245035],[4.546548082390023,51.833562666435235],[4.545433848899161,51.83371906450155],[4.54481104827408,51.83376788574717],[4.544286571722024,51.83379328122818],[4.54373549170796,51.83379345218795],[4.543554168597477,51.83380040713641],[4.542966282022256,51.83380856703309],[4.542338307403084,51.83379992039616],[4.541903398402993,51.833780143976796],[4.541216906581278,51.833737909457156],[4.540763303797911,51.83369334956453],[4.540178404439106,51.83363132550464],[4.539597909485949,51.83355668491825],[4.539050212461524,51.833465763359996],[4.538050673055211,51.833281508457056],[4.533177779821851,51.832374691888084],[4.531373433217039,51.83204400805274],[4.531241442615078,51.83201969187414],[4.531165988376423,51.83202301219645],[4.53112103034889,51.8320655221635],[4.531134653057348,51.83233503512491],[4.531163414787322,51.83248737104477],[4.53114884423243,51.83259655220419],[4.531015293954971,51.8326541580612],[4.530876732120111,51.832668630487454],[4.530706396312493,51.83266738773276],[4.530530600726199,51.83264662169679],[4.530425496861466,51.83254443773821],[4.530370341987415,51.832465972055395],[4.530283091569973,51.832410626701424],[4.530157466386068,51.832401967496466],[4.529849385253194,51.83237236301732],[4.529219466077507,51.83237950246411],[4.528747416579828,51.83236430909408],[4.528595940709413,51.83237894325842],[4.527311265552027,51.832385022458034],[4.526930288169136,51.83222481481231],[4.52690971111129,51.831404680700025],[4.526897110925295,51.83132291262358],[4.526664680800907,51.831323660996404],[4.526590482649747,51.83134853550607],[4.526544714764334,51.83149864888608],[4.526519330862862,51.83156284855685],[4.526532698776707,51.83212770944758],[4.526502772665438,51.83221161698314],[4.526453600727455,51.83227822288932],[4.526384629603167,51.8323346188336],[4.526259334621191,51.832395892441035],[4.526132660641716,51.832398575868275],[4.525995899425586,51.83238415319524],[4.525986003115425,51.832378920124135],[4.525917540606912,51.83234332107783],[4.525864598336544,51.83228022501679],[4.525829755780546,51.832250807911215],[4.525821967309954,51.832244299503685],[4.525721195592098,51.83222110866903],[4.525447161350819,51.832219097165435],[4.525043105655095,51.832220646060854],[4.52460979906093,51.832248817343284],[4.524418583311856,51.83225050865054],[4.524342762741219,51.83225124121602],[4.523881661532191,51.832230044900285],[4.523679419021445,51.83224197662961],[4.523426026485588,51.83227133751929],[4.522567693632559,51.83226501814687],[4.522423255648873,51.83228176002048],[4.522031369960904,51.83240867579444],[4.521871765464652,51.832434338042795],[4.521741129593631,51.83249143803435],[4.521665663932537,51.832538622872455],[4.521216619385802,51.83264859845127],[4.520564426673766,51.83283887785453],[4.52051830474189,51.83285466591712],[4.519372387566621,51.83318154806303],[4.519291916646003,51.833423529192935],[4.519326843484953,51.83355655910691],[4.5193372729886,51.83368540787797],[4.519340814861985,51.833825946885355],[4.519318727099828,51.833977909920506],[4.51914546141126,51.83436629833119],[4.519032091368267,51.83443474912289],[4.51895879744205,51.83449872139056],[4.518905676733775,51.83457497231313],[4.518737665628626,51.83520907168586],[4.518695816732396,51.835305534508315],[4.518580057226363,51.83549783544987],[4.518541531088632,51.83561638669401],[4.518468853074999,51.835885908132504],[4.518457037519901,51.836066590691885],[4.518449731216698,51.83625104955107],[4.518431287749254,51.83636497453042],[4.518304057835156,51.836849442879874],[4.518283238228273,51.83691380402599],[4.518180028465372,51.83708142345111],[4.517998171119275,51.83739581282692],[4.517976506301694,51.83748236008557],[4.517978197626961,51.83758895090449],[4.51801612734298,51.837695810043876],[4.518125065633786,51.83785751684207],[4.518159786288685,51.837914805060514],[4.518167389419196,51.83793098993217],[4.518138815903131,51.8379653582783],[4.518062436578335,51.83799447019781],[4.517897612808231,51.83803041032296],[4.517645079545876,51.83807808711186],[4.517620730116986,51.83808784205559],[4.517524417538808,51.83815693372898],[4.517392414666851,51.83824047014114],[4.517248758120124,51.83830198469953],[4.517004720508974,51.83836262648791],[4.516891206185174,51.83839481609105],[4.516803794276973,51.838412748742456],[4.516870722975428,51.83831221454641],[4.516987813322086,51.838094893161085],[4.517084987496903,51.837873424926514],[4.517163382240908,51.83761052741454],[4.517249612669206,51.83726536676178],[4.517516232318272,51.83616413886091],[4.517732292814719,51.835307691661995],[4.518164475333719,51.83350396011974],[4.518150370020317,51.833501017029874],[4.517954740994865,51.83351518115814],[4.517157251557796,51.83374346157198],[4.516719812377886,51.83387673221535],[4.516446153849225,51.83394102366779],[4.514401415807682,51.83456195453022],[4.514299843910463,51.83460158593095],[4.514203747278301,51.83465957983111],[4.514112839747299,51.834750772823305],[4.514063865564371,51.8348275683937],[4.514062297898277,51.8349084586097],[4.514123277082795,51.83507200491331],[4.513949961833566,51.835116521736765],[4.513862885418173,51.83513897064593],[4.513385223172692,51.83526160696108],[4.513008867864826,51.83535828651865],[4.512862762834654,51.83539577828636],[4.512617142325953,51.83545265709537],[4.512570589266,51.83540456893651],[4.512471085384902,51.83533750634821],[4.512365390574233,51.835288977382625],[4.512271573870303,51.83522944107995],[4.512163818015407,51.83513689729367],[4.512034958200968,51.835058648259114],[4.511899346782108,51.8350062832213],[4.511793668644131,51.834978398432995],[4.511698767617561,51.834953304051936],[4.511291488905444,51.83486213861844],[4.511040839609082,51.83481355954202],[4.510761551550081,51.83484528059397],[4.510486559745469,51.83489174144652],[4.510380846707704,51.83490850069868],[4.510217511328952,51.83491102167681],[4.51010506022384,51.83491018150334],[4.509629307774421,51.83499849580113],[4.50951644010792,51.83499765195054],[4.50923033135561,51.835080026903285],[4.509021415964129,51.835155623145596],[4.508859549231043,51.83525363678349],[4.508957314183692,51.835324173513015],[4.509968978559274,51.83616565702641],[4.508043101274049,51.83704710382086],[4.50801846394357,51.83702885450824],[4.507047776640871,51.837459637263876],[4.50599628758729,51.83756929539333],[4.503414237771357,51.837873232488874],[4.501763878619055,51.83805821176113],[4.501128840971925,51.83813058010427],[4.501019032808401,51.83814317060667],[4.500933574023954,51.8381462674894],[4.500805926381992,51.838133949055006],[4.499225604143827,51.8379559437496],[4.496761806508836,51.83766915731828],[4.49581035057907,51.83756387290449],[4.495743293114344,51.83756336368889],[4.495706267333484,51.837581921265304],[4.495681063258337,51.837634632620365],[4.495684404328173,51.837718397784016],[4.495634522294065,51.83783930770602],[4.495518628291675,51.83818035652402],[4.495410051532918,51.838509461643326],[4.495120421146172,51.83927215061085],[4.495062310879532,51.83938757840142],[4.495017352266694,51.83944904200372],[4.494960357199036,51.83948718881308],[4.494784561077033,51.839571011665164],[4.494690080719281,51.839608744837875],[4.494595321293578,51.839681570835246],[4.494499458512344,51.83978896922861],[4.494429159323651,51.83988881989232],[4.494370630080041,51.84000424415904],[4.49424053704804,51.840283249898604],[4.494207535856365,51.84037190002434],[4.494187336533621,51.840445164294685],[4.494131607101809,51.8407345414587],[4.494118345692962,51.84077302055535],[4.494066479559673,51.84080449670607],[4.493776364871603,51.8409385451943],[4.493443056831463,51.84108671455602],[4.493395753075351,51.84114016054689],[4.492618299075202,51.8415001670479],[4.492484279975322,51.84155656446311],[4.49228668360143,51.84158370300574],[4.492176714778203,51.84158286466365],[4.491432504318476,51.841380675944755],[4.486735078743501,51.84009663078051],[4.486167379709087,51.83994466496176],[4.484042495010837,51.83935441002557],[4.483548583141907,51.83922157898906],[4.476662565268295,51.83698569452584],[4.473170425142662,51.836002310803806],[4.47329082247836,51.83583744458005],[4.47394311595713,51.83538717269369],[4.474016623549391,51.83533651986288],[4.474140043107731,51.83512509612576],[4.474135760361222,51.835089707909006],[4.474078743548692,51.83506668442873],[4.473412890439862,51.83495350470286],[4.47192334704158,51.83470551566412],[4.470702052028449,51.83449960270628],[4.469720002890536,51.83432780367089],[4.468097534755877,51.83406363092504],[4.467543852948106,51.83398677945276],[4.467193921236381,51.83394777899141],[4.466115470248048,51.83380642039682],[4.465337731016699,51.833727928640265],[4.464356251125935,51.83361144412106],[4.463928072141186,51.83359001212409],[4.462663318646607,51.83349554226747],[4.461534180207964,51.83345038585939],[4.460604947561573,51.83340692622857],[4.460362907706372,51.833428756698936],[4.460282689847073,51.83344050991563],[4.460249982335093,51.83345109039348],[4.459860865692238,51.83357601553506],[4.459821716712298,51.83357570624151],[4.459773528968799,51.833569390177786],[4.459668067860181,51.83347191228698],[4.459562403412379,51.83340462716121],[4.459397020617864,51.8333852551471],[4.459335856954659,51.83342244937432],[4.45924251338882,51.83346480765824],[4.459384201322417,51.833704376007354],[4.459420600066964,51.83381795297001],[4.459351346811093,51.83380295328889],[4.458491710790626,51.83412131263463],[4.458231049959603,51.8342177004994],[4.457844220807224,51.83437244326804],[4.457617416573654,51.83446303304906],[4.457569533811418,51.83448226663276],[4.457510480863995,51.83451792695723],[4.45747460027115,51.83456112637333],[4.457444250307654,51.83461882097277],[4.457378695759098,51.83468694603017],[4.457278303892501,51.83474769836763],[4.457148638979564,51.83479376729959],[4.457002423811764,51.83481428534576],[4.456829850261825,51.83482014380942],[4.456829349408173,51.834844397173754],[4.456675893323289,51.83499363091511],[4.456522964266168,51.835177706756866],[4.4563333871654,51.83536136234568],[4.456118344799512,51.83554765432891],[4.455921087784524,51.835699635427495],[4.455800024110018,51.83577273860035],[4.45567000527696,51.835835706658386],[4.4554973978161,51.83594375455684],[4.455333191585464,51.836008127312496],[4.455253013236531,51.83603781290446],[4.454963385674293,51.8361642857312],[4.454747116061864,51.83626850259708],[4.454446291583412,51.83639243395511],[4.453895442793535,51.83662082661581],[4.453108791539363,51.8369506944981],[4.45273081333145,51.837058265341234],[4.451881811121973,51.83722027588225],[4.451155388224433,51.83733680697618],[4.449743015999516,51.837586048800006],[4.44900759312587,51.837714107498286],[4.447516916898565,51.837981535670274],[4.446874708491303,51.838133681176096],[4.446307523002545,51.838303715518364],[4.445048800495234,51.83869297011848],[4.444805880879169,51.838775019402924],[4.444729093620248,51.83884124056191],[4.444772545554094,51.840806469354064],[4.444765937948602,51.841122284138244],[4.444761341186628,51.84134198633443],[4.444846870403975,51.84147544565278],[4.44472448938216,51.84174929864662],[4.444573562095159,51.84179453772799],[4.444356643162535,51.841827763358324],[4.444214580244815,51.84186739580655],[4.444006170590844,51.84191204387773],[4.44395562252057,51.84191860501643],[4.442450932590599,51.842190631042506],[4.441912644587129,51.84229068382685],[4.440727408056729,51.84252642241234],[4.43957054008915,51.84277953783837],[4.439436668044297,51.84233059121315],[4.439333711408237,51.84233298608263],[4.439250968341052,51.842344962622],[4.439051279955466,51.84241044653246],[4.438203119761193,51.842604365140566],[4.437380292057902,51.84280183726282],[4.437053576517041,51.84290448281218],[4.436639797739257,51.843006422544036],[4.436257171344242,51.84307338757764],[4.436021824515842,51.84311057718619],[4.435673035116825,51.84317316902463],[4.434395612508942,51.84341145139099],[4.433820862905809,51.84352007388656],[4.433061202342214,51.84364473986918],[4.432308761377637,51.84374313665468],[4.431719340547056,51.84383588825358],[4.43125256142508,51.843921378426906],[4.429860080426509,51.84419983479325],[4.429221262123611,51.84432262270564],[4.428910049214507,51.844380597728936],[4.428565635743428,51.84445197921258],[4.428435722428554,51.84448743385069],[4.428092151277284,51.844558303971354],[4.427674888738133,51.844607022680506],[4.427117664604827,51.844712917962305],[4.425950898553909,51.84495498099313],[4.424950019881819,51.84517400542803],[4.424798084984778,51.845206436878414],[4.423061418105135,51.84556044240692],[4.422768825042133,51.84525404136447],[4.423165453809813,51.84402866569625],[4.423319046422677,51.84356825404263],[4.422552559724394,51.84334879860099],[4.422650315682382,51.84308354062533],[4.422664301099376,51.843033591020514],[4.422738806235913,51.84276452840298],[4.422796953142752,51.84244217016804],[4.422824734578901,51.84233156089922],[4.42290199926453,51.84206974610508],[4.42287963994655,51.84196595111456],[4.422792352647869,51.84189813741161],[4.42270015764193,51.841845509600084],[4.422578322592035,51.841795734840645],[4.422411330016575,51.841772942931016],[4.422278454047977,51.84177185083427],[4.422167261213392,51.841789259786964],[4.42200382973871,51.84183359324096],[4.421308720716635,51.84211458308319],[4.420522085134252,51.84240849271763],[4.418462606697751,51.84305318766166],[4.417308711284154,51.84337449647354],[4.416169804382784,51.84367617568947],[4.414806771103644,51.84397598773632],[4.414258685375454,51.84406280089062],[4.412761786823022,51.84425167415328],[4.412016437069718,51.844327807325705],[4.411291477911126,51.84438578231017],[4.409880864485308,51.84445649932683],[4.409157022539901,51.8444627285389],[4.407925475946298,51.844479817162814],[4.407831236880206,51.844521740012596],[4.407790353556061,51.844600752986146],[4.407772310775367,51.84474073047441],[4.407700432425618,51.84534451406331],[4.407614564042889,51.84536547435024],[4.407405817025089,51.84536566769684],[4.407075561393418,51.84535891094022],[4.406895311182568,51.84535160003897],[4.406775295671717,51.845352533147235],[4.406708591848993,51.84537352427657],[4.406650582119374,51.84541613618337],[4.406527588111533,51.84553472059884],[4.406478442697418,51.84576346958153],[4.406437654641455,51.8459719015243],[4.406401683613141,51.846016504187794],[4.406314492755382,51.84609809791928],[4.406242959665081,51.84618769310107],[4.40621309520454,51.84625802353361],[4.406168824060567,51.84639674969211],[4.406136997775064,51.84655712712765],[4.406118308572415,51.84668819635143],[4.405968398040335,51.84683713550699],[4.405854605476505,51.846953860822275],[4.405645641993298,51.84698282364998],[4.405462208797333,51.846987483261465],[4.405309023588626,51.84696155733503],[4.40522060817974,51.846927140920045],[4.405139003549396,51.84680968438561],[4.40512047914232,51.846742046131844],[4.405118291988824,51.84661299661188],[4.4052506031514,51.84623939636209],[4.405604382056633,51.84547307090718],[4.405581131457631,51.84539287704836],[4.405498924040214,51.84530315814959],[4.405474412723334,51.84529985560662],[4.402963064731104,51.845118442815846],[4.401284363359657,51.84502448712777],[4.4005041671889,51.844978061271355],[4.399999192789718,51.84494000967659],[4.399776328405546,51.84493813541832],[4.399469572768051,51.84490484613195],[4.399286956782515,51.84487259984152],[4.397519045840919,51.84464880718874],[4.396440497001127,51.844434034578285],[4.395507631327232,51.84424499728494],[4.394892180720077,51.844153733288486],[4.394407689833063,51.84409428245084],[4.393093523564261,51.84398496845361],[4.392191719278978,51.84393745825707],[4.390417238882409,51.84393840450036],[4.389444902779796,51.8439716932824],[4.389185852457399,51.844004845680026],[4.388882857722035,51.84404691477796],[4.38775784604364,51.844219792625275],[4.387518781662638,51.84427220847927],[4.387352828832937,51.84431556996418],[4.38719039237343,51.844406959345825],[4.386962524950575,51.84455546940235],[4.385673229330323,51.84537015102557],[4.38557405121283,51.8454269823623],[4.385490873440591,51.845438917406035],[4.385377217397532,51.84543485089906],[4.385222819979909,51.845407984924165],[4.384974099473335,51.845332185034025],[4.382888860730644,51.84465514196624],[4.382046207535224,51.84443993083632],[4.381638549385679,51.844410762890575],[4.381504416206208,51.84440961390639],[4.381364510726628,51.84442441471774],[4.381066429712055,51.84446986046627],[4.378984160155235,51.84481844653473],[4.377895047229721,51.84500431354537],[4.376217372141523,51.84529387692687],[4.374938667933471,51.845516406370706],[4.372821802711488,51.845898262423226],[4.372292817048147,51.84598323846644],[4.37201270094684,51.84602559050134],[4.37179485488431,51.8460781579627],[4.37156617489303,51.8461306312985],[4.371350785414621,51.846166574364624],[4.369291448732485,51.846562800418006],[4.369063571495597,51.84661643723954],[4.367312564103547,51.84697427044092],[4.365519720132889,51.84731997133861],[4.363174683784633,51.84781541023298],[4.36226672855209,51.84805432573445],[4.360827444047318,51.84847839674231],[4.359669081802673,51.84884310205552],[4.358655740550049,51.849151647838816],[4.358187061436042,51.8493116694559],[4.357959192533654,51.849436640180095],[4.357830876012184,51.84959964369197],[4.357508884118916,51.85012327102196],[4.357077700739183,51.85042864944595],[4.356957355553911,51.850461528601194],[4.356882152449706,51.85047015876464],[4.356669208496406,51.85047061261985],[4.355752525217462,51.85043172456527],[4.355522758102977,51.850438995886286],[4.355388114196316,51.850459361008724],[4.355206861742777,51.85051338086625],[4.354955246782645,51.85061929804192],[4.353885179828379,51.85118123880782],[4.353107271975441,51.85161309970895],[4.352707671257869,51.85186596626635],[4.352331574950929,51.85218381220896],[4.350876784049408,51.8535794951546],[4.349403595728818,51.855028159394905],[4.348962770745544,51.855458068667645],[4.348626082540304,51.85579947707414],[4.348277852788791,51.85613510588303],[4.347795273086956,51.85658554432344],[4.347641859776535,51.85673192786586],[4.347211463143463,51.857141922563706],[4.34635078947068,51.85795571497351],[4.345780028081721,51.85783839646144],[4.345510144338576,51.85777651895727],[4.345426016461382,51.857755901591155],[4.345210964238231,51.85770186372438],[4.344915835789297,51.85757834192488],[4.344506514619208,51.85797664311351],[4.343763207219831,51.85866887829696],[4.342953456239171,51.859403614684354],[4.342281906969897,51.86001893007895],[4.342084348590426,51.86019846225608],[4.341999855002642,51.86028325908538],[4.341970422725505,51.86031228674794],[4.341889349640226,51.860393371839756],[4.341859481203113,51.86042317044109],[4.341638326185209,51.860631523476634],[4.341531707629692,51.860753670776305],[4.341571107047415,51.860798021700475],[4.34208717924822,51.860902358404196],[4.343344126985285,51.86114089292082],[4.343809494654124,51.86125728658717],[4.343770880960419,51.86135874976041],[4.343692081479992,51.86153959779411],[4.343010600799469,51.86148605661949],[4.342975305075487,51.8614803233122],[4.342020692328933,51.86137841093295],[4.341483670548995,51.861314404273685],[4.341359105721023,51.8612760042103],[4.34122970855721,51.861212400858115],[4.341174645310827,51.861196425983785],[4.341124078909552,51.86120216893],[4.341005786351634,51.86127053506047],[4.340826655129482,51.86142790613514],[4.340555921971881,51.861688719029026],[4.340601068261495,51.8617189279213],[4.340600111465657,51.861760080762025],[4.340576109398953,51.86178851197023],[4.340149004157424,51.86221334953481],[4.339607291474938,51.8627625817446],[4.339388035953795,51.86299585148899],[4.339144851056312,51.8632541968203],[4.339103551967276,51.86329150546948],[4.338906394094262,51.8635421332868],[4.338846914135817,51.863733602094264],[4.338812291641871,51.863931614729815],[4.338713377095393,51.86409808635948],[4.338544821910134,51.86431954897151],[4.338282336192833,51.865137333547565],[4.338153500900622,51.86549644061485],[4.337956370502425,51.86604925897485],[4.337885909505323,51.866246564581985],[4.337802491965352,51.86648104508107],[4.337706192628883,51.86673166783786],[4.337401769439215,51.86739810777426],[4.337381122355692,51.86744334263377],[4.337123300104905,51.86791664988424],[4.336879005583863,51.86836375518286],[4.336632133991933,51.86881393362246],[4.336346746621658,51.86930660561385],[4.336071555491215,51.869808658269974],[4.335990261206744,51.86995154368462],[4.3356645748333,51.870526820534245],[4.335564020002923,51.8706910815433],[4.335510030296371,51.87073575952664],[4.335432929629471,51.870752617329295],[4.335383638541519,51.87077462762251],[4.335358819130098,51.87080201763083],[4.335353655952447,51.87084455209728],[4.335413749096802,51.8708776069509],[4.335458407819639,51.87087542615781],[4.335556107722504,51.87085126858431],[4.335616601271069,51.87084935896264],[4.335676974261211,51.870852608792674],[4.335647784144005,51.870870799078574],[4.335401176648825,51.87096962311513],[4.33521669141709,51.871032486346095],[4.335124312629588,51.871060820835886],[4.335083890646137,51.87109581320962],[4.335057608257747,51.8711322230565],[4.334914625463965,51.871113909758925],[4.334826679638088,51.87111312174655],[4.334733502992621,51.871122092851174],[4.334615796173082,51.87116387667218],[4.334499828499299,51.87122038550177],[4.334425423447219,51.87128229971143],[4.334398507904583,51.87132799383021],[4.334337247753124,51.87143389554611],[4.334269249558805,51.871542705876266],[4.334251052075777,51.87157209034524],[4.33423402163842,51.87162290596996],[4.334279919714869,51.87169247853195],[4.334623770461424,51.871945882587184],[4.334893423000373,51.87212765388042],[4.334974067223802,51.87220902176772],[4.334869981156804,51.872452605087446],[4.334678946128066,51.872706118590294],[4.334646865623494,51.87277654004808],[4.334491123435507,51.87298262827136],[4.334364249903631,51.87297052358333],[4.33431948946628,51.87297696023255],[4.334274321493385,51.873000813815565],[4.333821021549392,51.87345120036526],[4.333736267143195,51.87349198806028],[4.333651903852732,51.873498199572616],[4.333551612733682,51.873490331651375],[4.333461819017193,51.87347920404497],[4.333227864594468,51.87342858868511],[4.333138573854948,51.87341385178154],[4.332593606803177,51.873256314483726],[4.332515730496222,51.87323484079367],[4.332409766835537,51.87321995360827],[4.332330995545042,51.873236665856915],[4.332223069786371,51.87328769671544],[4.332125923325775,51.87337688807026],[4.332096115387471,51.873439072007564],[4.332077000743014,51.87354302932536],[4.332148484949466,51.87360599376397],[4.332298493454794,51.87366282466748],[4.332430433679258,51.87367226780684],[4.332428338751084,51.873743862250926],[4.332414639028149,51.87379470662885],[4.332338223223738,51.873817633435785],[4.332239128845549,51.87381196935087],[4.332098124580112,51.87378012138549],[4.332002993050748,51.87378326682623],[4.331951680025575,51.873802418821775],[4.331893612002914,51.87386073613255],[4.331847446476164,51.873927031101424],[4.331840090207304,51.87397406176786],[4.331877101834167,51.874013619466794],[4.331927404688414,51.87403755510436],[4.332016935940278,51.874059907834784],[4.332091131227914,51.874078381521564],[4.332432156036707,51.87413241201832],[4.332570966289826,51.87416901301019],[4.332645450709832,51.87422852084855],[4.332645967630949,51.87425987988309],[4.332599701050859,51.874294948381596],[4.332490914568656,51.874329197465485],[4.332382770472964,51.874336097013355],[4.33228184848763,51.874319449127135],[4.331916372698319,51.87424132742921],[4.331821787824333,51.87422112252078],[4.331758339392707,51.87422442301966],[4.331725689387542,51.874247742716655],[4.331647061947632,51.87436484273651],[4.331501532960152,51.87461463060575],[4.331342620874854,51.87491939582641],[4.331301968360016,51.87501722398126],[4.331307716931093,51.87505650079156],[4.331447080507791,51.875140721697726],[4.331618143411437,51.8751888400179],[4.331787853680702,51.875241332544434],[4.331872159730452,51.87530879984976],[4.331879677575325,51.8753971246058],[4.331801153321531,51.87556312918772],[4.331401703604763,51.87604405401296],[4.330882167485225,51.87664918840051],[4.330356414856354,51.87725220073071],[4.330331164555004,51.87729765093126],[4.329895225222401,51.877750888080385],[4.32984436573587,51.87780372040071],[4.329671892342831,51.87797494176134],[4.32963267660425,51.87802904019946],[4.329681605168668,51.87805838383631],[4.329749867211324,51.87808119215055],[4.329820646329139,51.87812105446584],[4.32984469528132,51.87816230376056],[4.329778398611495,51.87832196480591],[4.329663333612048,51.87853421890093],[4.329618183164556,51.878574715740534],[4.329505106203958,51.8785958903953],[4.32932846283911,51.878589525578214],[4.32925439403023,51.878600858725974],[4.329189262421239,51.87864001405772],[4.329127184095793,51.87869106767848],[4.329053510588587,51.87882743619937],[4.328801520357676,51.87936529355273],[4.328557591339103,51.87984386892231],[4.328396711137332,51.88019519234461],[4.328299146053404,51.88040747432498],[4.328233388549939,51.880543913696336],[4.328191109499925,51.880692564070394],[4.328174726787586,51.88083938404408],[4.328129127164234,51.88114684384535],[4.328051272717648,51.881513624862045],[4.32797035720504,51.881691604707505],[4.327893135543546,51.88190742446647],[4.327842310551431,51.882153287820756],[4.327800938528688,51.88240504327042],[4.32775336843026,51.88258345313461],[4.327687590021085,51.88279137488766],[4.327641502303811,51.88297766880443],[4.327620111529797,51.88314224972571],[4.327615809075549,51.88332492044825],[4.327615730100501,51.883646984152776],[4.327615511348108,51.883815626680445],[4.327604771173378,51.883988303825014],[4.327536884102166,51.88428562588609],[4.32746070023137,51.88459874485198],[4.32741738892115,51.884790999109484],[4.327409966974847,51.88484048016935],[4.327358869841616,51.88502685729504],[4.327339022459698,51.88505506534525],[4.327292464384305,51.885119548221674],[4.327241523405395,51.88524618521161],[4.327205007334361,51.885291533087944],[4.327137602436938,51.88542666704637],[4.327096001216142,51.8854931298988],[4.32691448973662,51.88576297523815],[4.326809922587747,51.885917643666],[4.326634192543063,51.8861543796145],[4.326308173635317,51.88657453149783],[4.325862519405969,51.88704508592092],[4.325732625074097,51.887177073767745],[4.325535961085309,51.88734613437031],[4.325582833953018,51.88739223534287],[4.325373166265524,51.88784711410173],[4.32509367131803,51.888468328316286],[4.324814407721973,51.889079479025874],[4.324528926614255,51.889688637508364],[4.324240102912864,51.89029776505407],[4.324139771416464,51.89053711483447],[4.324107946175317,51.89066598820806],[4.324102312249779,51.89076322735455],[4.324134286088658,51.89089267714341],[4.324204122650643,51.89100840630233],[4.324332095551614,51.89115253164261],[4.324512149212835,51.891281385597914],[4.324708335444459,51.89139825637967],[4.324852092710517,51.89143929836704],[4.324970564795504,51.89143843429053],[4.325048507036581,51.891405332448606],[4.325133498604853,51.891338617181084],[4.325158220351661,51.89124542120513],[4.325255381903281,51.89039830166723],[4.325252345002289,51.89035027411405],[4.325251736686862,51.890340720551045],[4.325203920448849,51.89019319220794],[4.32521125292308,51.89014758113437],[4.325253605788347,51.89012022228545],[4.325396604173991,51.890051966406865],[4.32544464765305,51.89004852908371],[4.325476429305144,51.89006262334579],[4.325463275947553,51.8902134721115],[4.325567127834053,51.89030176526848],[4.325415329875692,51.89035407003432],[4.325353519147893,51.89037531766769],[4.325333025496262,51.89043074527644],[4.325248124264908,51.89116494413523],[4.325240661664706,51.89135739212893],[4.325285622342148,51.891431605008684],[4.325357520801747,51.89149548045305],[4.32542108004168,51.891523926045096],[4.325555250978381,51.8915470743145],[4.326529610186833,51.89161548724391],[4.327281067547331,51.89167388200828],[4.327539373906306,51.891880727773774],[4.32938111831701,51.89197384195823],[4.330383043516739,51.89202350345806],[4.330788342489433,51.892045858209144],[4.330864021956924,51.89205570022784],[4.331562816823907,51.89208378756383],[4.333068455058089,51.892156919587386],[4.333075873627013,51.89210730877663],[4.33318800075095,51.89211025010874],[4.333177617424506,51.892161769645604],[4.333321802366343,51.892167192657354],[4.333326024477423,51.89212942395199],[4.333582247351841,51.89214165757441],[4.333574827882869,51.89219126840542],[4.334205931557308,51.892242603923165],[4.335367227139312,51.89234436133737],[4.335480836915869,51.89235531390366],[4.33640931251754,51.89246091192956],[4.336891538273351,51.89251154580352],[4.337650034409569,51.89259122726475],[4.337591239779888,51.892769282447134],[4.33771436395491,51.89278367251374],[4.337732321236746,51.892711187962796],[4.337975764213889,51.892735040054326],[4.338033911677278,51.89256678583483],[4.338162902979621,51.89254419522403],[4.338367886696876,51.8927147988803],[4.338552294078758,51.89264096135781],[4.338560170124772,51.89258941900719],[4.338683092836336,51.892540839691264],[4.338962907894482,51.89279365770954],[4.340044368265559,51.89233052998693],[4.339893682824956,51.89217434887068],[4.34115979504987,51.89164343722909],[4.341239210398747,51.89160027382691],[4.342936619277341,51.89086866800972],[4.343278576527734,51.89072680466519],[4.343197484753138,51.89062672943687],[4.34341180517473,51.890521279043455],[4.343660909769601,51.88967149617694],[4.343668917094543,51.88961401927958],[4.343776078650424,51.889273424158354],[4.343990948921015,51.88851456242477],[4.344151689208934,51.88802141067269],[4.344169103129953,51.88797188886046],[4.34434098953301,51.88739354612799],[4.343525514499764,51.88666333952786],[4.343478115786103,51.88662124122438],[4.342662482562393,51.88588109151214],[4.342183139215833,51.885439926484665],[4.342588662180435,51.885252824932564],[4.340947724620897,51.88378041962907],[4.340172906139289,51.88308229253124],[4.339642987106029,51.88261279561384],[4.340036953322794,51.88236611550932],[4.340093930957022,51.882336816997466],[4.340497437459122,51.882092156631494],[4.340546446327835,51.882064722214245],[4.340955775229093,51.88182049869954],[4.341040703883502,51.881772609663976],[4.34116784007978,51.88170290364003],[4.341286518811428,51.88169196018932],[4.341811952630842,51.88215741061122],[4.341624072117207,51.882239221394435],[4.342140124682418,51.88269607063003],[4.342225572655426,51.88266173438871],[4.34235481175903,51.8826092065744],[4.342940262525444,51.88311286271555],[4.343007487999343,51.883180943868034],[4.343070675495535,51.88322537604831],[4.343602168543478,51.88370080657597],[4.343663832350374,51.88373903241141],[4.344311260433092,51.88432271488047],[4.344753496153854,51.88470999306243],[4.34487241250408,51.88479711282687],[4.34503162696972,51.88494484730183],[4.345842686648675,51.88485668542677],[4.345916622944485,51.88463514881722],[4.345954730647663,51.88452013163917],[4.34633383973207,51.88318465912342],[4.346475216816865,51.88269739738696],[4.346516052321364,51.882590533776764],[4.346728381301705,51.881811901957896],[4.346855131048826,51.88139780054658],[4.346885688213237,51.881320652179404],[4.34691053970747,51.88121971079954],[4.347220768382707,51.881256135798445],[4.347252993436788,51.88117887266497],[4.347605587852433,51.87988716017796],[4.34731464027701,51.87984677911101],[4.347507104348817,51.879222936480076],[4.347772894701103,51.879251095147964],[4.347934105458859,51.87871626595458],[4.34769407424432,51.878692206236686],[4.347728558137184,51.87858928605608],[4.348128675343412,51.8786325681607],[4.347887270900751,51.87949829980026],[4.349300771822241,51.8796439593723],[4.349425379193231,51.87966493128915],[4.350100666082318,51.87974624977076],[4.349982650035614,51.88012662520459],[4.349957758480122,51.88022963070762],[4.349808978322588,51.88076870176046],[4.349906080132075,51.88080723639631],[4.349857116728945,51.880977642242684],[4.349738673953806,51.88097853150782],[4.349675137378803,51.8812202921456],[4.349294355816284,51.88116931561612],[4.349011471509431,51.88209816614594],[4.34940360722923,51.882145373220105],[4.349204979822719,51.88289238893186],[4.348744180632336,51.88283876739421],[4.348422396109425,51.88391630451317],[4.348879253902513,51.883960472903],[4.348846840506789,51.88406392762684],[4.348799174821867,51.88425008589181],[4.348679128685008,51.88468128067765],[4.348299652827139,51.88596295188945],[4.34813680663523,51.88654950792397],[4.347778360239508,51.88774994434082],[4.347619620888885,51.888302600949295],[4.347232296718152,51.888261495697456],[4.347184801729215,51.88843978408299],[4.347117297260954,51.888437251135294],[4.346874701036398,51.88927922795348],[4.347300444902167,51.889336545264335],[4.347043545044922,51.89023787903945],[4.346604765387352,51.89178921112001],[4.345810632586206,51.892131720471106],[4.344583756257782,51.89264522399993],[4.343350227600538,51.89317452569608],[4.343356878196815,51.89337316453239],[4.344703734898263,51.8936950570087],[4.345375528386623,51.89386385405872],[4.346400937030792,51.89416287653129],[4.347143925599515,51.894373971181935],[4.347042983790475,51.89450030222876],[4.347556644444055,51.894635944888975],[4.347675422475725,51.894495834805156],[4.34824760085923,51.8946624439342],[4.34844762850693,51.894724599262766],[4.348607855546223,51.894776338426745],[4.348687794263123,51.894800786581236],[4.34875986531846,51.89487690714569],[4.348880626948468,51.89492171631845],[4.348994378236591,51.89472814206615],[4.34919891550326,51.89475769090825],[4.349233835400178,51.89505193248825],[4.349400054371282,51.89509714270743],[4.349426135430537,51.89506950204978],[4.350422499141893,51.89536423241499],[4.351403483879154,51.89563907720717],[4.352049656118575,51.89579973824346],[4.352681656761643,51.89596014326983],[4.353372835763801,51.89612312855633],[4.353992598884666,51.896253741003946],[4.354940316895844,51.89643497295099],[4.355882200169335,51.89659808277847],[4.357169008828347,51.89681788484577],[4.357311342232975,51.89677745550929],[4.3573687549819,51.89678402356422],[4.357455276277494,51.89679458789368],[4.357532063871901,51.89681126111023],[4.35754268840942,51.89683909577534],[4.35756235991984,51.896890880655256],[4.357614869299408,51.89691121167568],[4.358082028411028,51.89696704636964],[4.358317002670286,51.89694316858765],[4.358905863200943,51.89702174240834],[4.359864624236784,51.89712277453654],[4.360728634367565,51.897208518714706],[4.361625917688054,51.89726203141306],[4.363377141869027,51.89733098157878],[4.364668802259233,51.89735822914198],[4.365367040406045,51.897360175127574],[4.365431489297084,51.897350928732514],[4.365525980544812,51.897286202511864],[4.365599530257134,51.8971517470614],[4.365926566830995,51.89667394863226],[4.366147715283492,51.89634013191369],[4.366132946203169,51.89629252062906],[4.365623832178012,51.895163845809435],[4.365283460786921,51.894356505344405],[4.365014426201285,51.89373262221084],[4.36494869111118,51.89359682577374],[4.364940034758381,51.89353726641687],[4.364716925354971,51.893058554592805],[4.364015616842313,51.89148949387344],[4.364010537807752,51.89143770771918],[4.363854202378228,51.89110473553884],[4.363686762345333,51.890709989915194],[4.363495454557143,51.890301229081736],[4.363429179464803,51.890262846021216],[4.361846242752734,51.88979433452547],[4.361745598591737,51.88976352031237],[4.360611144024498,51.889418131090586],[4.358159548024175,51.88867565467193],[4.35767672408953,51.888524457471654],[4.357599903294847,51.888509849607445],[4.356358665978029,51.88813161185053],[4.354903532864275,51.88769767559536],[4.355399492667453,51.886075461004744],[4.356365211876275,51.88637193787194],[4.357712130224321,51.88677703694468],[4.360204853383165,51.88752168987627],[4.361210392280281,51.88783034532707],[4.363671718358203,51.888566906622756],[4.363792082752483,51.88840911767376],[4.365058241057223,51.88820762713035],[4.365175906507877,51.88818671522742],[4.365297978228482,51.88817384166143],[4.366342259629191,51.88799040649907],[4.368159086843334,51.88768837602107],[4.368261837530453,51.88768139659837],[4.368884098054577,51.887569503189596],[4.370421548304072,51.887319467000474],[4.370529960028103,51.887301825223254],[4.370600977381422,51.88744411564457],[4.370650452798348,51.887543124134275],[4.371043273632048,51.887470781294546],[4.370940113713937,51.88723750342033],[4.371207268735905,51.88718949167513],[4.371304772422671,51.887174722981314],[4.373321588880434,51.886822471877394],[4.37420496691824,51.886670093888824],[4.374310427367812,51.886653713096386],[4.374666226190714,51.88659510302166],[4.375965766717753,51.886369654285254],[4.376344150590265,51.886307878910166],[4.376427434589698,51.88649891647182],[4.377385868402203,51.886346128501245],[4.377296396642197,51.88613336082978],[4.377938050579356,51.88602868314621],[4.378055041563892,51.885646981632874],[4.378366822884303,51.88567236909637],[4.378672655126375,51.88466106877614],[4.379522646769819,51.88476771736819],[4.379277010350391,51.88558728008326],[4.379656349789106,51.885631307828604],[4.379487542551835,51.88626030557754],[4.379355688355044,51.88669168654957],[4.379233455973773,51.88706573159535],[4.379026756147018,51.887635822916295],[4.377822378512212,51.887838382743794],[4.37651966128809,51.888055308772294],[4.375266280921221,51.88826606554239],[4.374614846247838,51.888377354733436],[4.374498076390092,51.8883957030772],[4.373910657058417,51.88849773331769],[4.371847385039065,51.88883552845768],[4.370381547019146,51.88908904206844],[4.369786160195129,51.88919214418744],[4.369583298818658,51.88921812869313],[4.368539502001909,51.88939785575579],[4.368014994303504,51.890219363981366],[4.36798802565005,51.89028674271667],[4.367465308230684,51.89112039366826],[4.367488942460805,51.89120008224444],[4.367662777586746,51.89160868375656],[4.367800758506429,51.891961491702745],[4.367822197874789,51.892009290118786],[4.368043141871214,51.89252952473455],[4.368064397585473,51.89258545106425],[4.368201123391356,51.89292031112889],[4.368449638642017,51.893494332639726],[4.36819672546304,51.89353781638117],[4.368471817804616,51.89415400327371],[4.368652917707822,51.89459260174492],[4.368904260823304,51.894544974787586],[4.36926615858401,51.895362554809886],[4.369292154265877,51.895430263236605],[4.369503399235561,51.89588292834476],[4.36953816611345,51.895968648216346],[4.369686212991523,51.89609909000856],[4.370126486582045,51.89651399545718],[4.370165446747702,51.89656194505682],[4.370211799408971,51.89659653911832],[4.370663722756079,51.89703167212125],[4.370735780911735,51.8970547470807],[4.370963827618174,51.897004849369715],[4.371095901390042,51.89697489458528],[4.371230330748443,51.896951412245436],[4.371416537149592,51.89687018424376],[4.371610755739985,51.89676657456203],[4.372055428985638,51.8964702910558],[4.372605722452133,51.89607737061663],[4.372690748604453,51.89600636362181],[4.372746929974793,51.895919623260326],[4.372791111896596,51.895884134578324],[4.372886374667601,51.89584005394441],[4.373006404356481,51.89580754178803],[4.373122541525796,51.89579964164197],[4.373248916145622,51.89581866784866],[4.373313318133522,51.89584838446597],[4.373369961392878,51.89588913087753],[4.373568938000067,51.89598116889349],[4.373727100716932,51.896051952661885],[4.3738827872038,51.89612155259451],[4.373988506110018,51.89616878674761],[4.374471766568885,51.89639927355659],[4.374592344520079,51.89643502159574],[4.374733051986454,51.896447460413576],[4.374885122206162,51.896455480050314],[4.375033740769095,51.896450051149834],[4.375047724438023,51.89647739714416],[4.375534051389147,51.896405069584226],[4.377138075339612,51.89615564773229],[4.377163716990919,51.896146835240245],[4.377150227601785,51.89609742964512],[4.377416626816857,51.8960479786139],[4.377548450401536,51.89601027234042],[4.377697571085977,51.89598239286789],[4.3778612356326,51.89595696087691],[4.378020480505787,51.89594258657072],[4.378147814313965,51.89591903540536],[4.378318969561085,51.895875731599006],[4.378431657699974,51.895854247653666],[4.378831221366106,51.89587445172606],[4.378950544048921,51.89587328246238],[4.379135792769517,51.895852549936514],[4.379462603968379,51.8958060629664],[4.379767180390097,51.895783901606464],[4.380299181792944,51.895720204112585],[4.380502562769266,51.895690592806076],[4.380778292200981,51.89565269741936],[4.381054038327368,51.89563260759771],[4.381633196984567,51.89554905057636],[4.381989177966798,51.89548500108877],[4.382229558733811,51.895442154422696],[4.382272129922126,51.89547838955966],[4.38233303316433,51.89549684506814],[4.382394288079051,51.895499563132105],[4.382488988749753,51.89548024420265],[4.382591429482374,51.895431829669185],[4.382669446380246,51.89535636904293],[4.382706562302944,51.89530068657771],[4.38266320878935,51.8951501243887],[4.38266695114817,51.8950572536576],[4.382679591558481,51.894976846572426],[4.382548029972337,51.89487249701187],[4.382409707012094,51.89473479917076],[4.38231772650802,51.89465117461106],[4.382260661185668,51.89461030039561],[4.382217639664156,51.89459431962535],[4.382148731910155,51.894598116753215],[4.381984823822846,51.894634778803294],[4.381640123121766,51.89469828028752],[4.37997028465468,51.89496590935093],[4.379391231664301,51.895044943046884],[4.378078088520877,51.8952341858816],[4.377850188985715,51.8952411308265],[4.377669147525831,51.89524176956228],[4.377485557441119,51.895188708109465],[4.37740367438509,51.89513871474079],[4.37734341123329,51.89507329435454],[4.377243348289206,51.894848436689855],[4.377125700117411,51.89453375105334],[4.377054756844718,51.894312497295125],[4.377053469204785,51.89420268161947],[4.377130624361418,51.89414734511602],[4.377457658459095,51.89394189998791],[4.377806646777806,51.89387315764925],[4.378097466424761,51.89381294671289],[4.378384241208328,51.89378418389006],[4.378705042869745,51.893763326038155],[4.378995058081601,51.893738847576664],[4.379808601403119,51.89361821452272],[4.380268015553505,51.89355389488627],[4.380722235480511,51.893479336472055],[4.381198289291325,51.89339825306907],[4.381724465722749,51.893313855543845],[4.382384175626045,51.893207887402255],[4.38289774523864,51.89314621486606],[4.383300430301857,51.89310036680333],[4.383492256023001,51.89310200575721],[4.383694323475432,51.89313069940688],[4.383838344475871,51.893181219070556],[4.383941717835437,51.89324029494164],[4.384018125880885,51.893311527146786],[4.384088087409928,51.89342863921424],[4.384117967584424,51.893547603222125],[4.384132452600346,51.893702305890955],[4.384154096495069,51.89387268245068],[4.384208546185048,51.8940121135125],[4.384553546682165,51.89477659838738],[4.384659694557094,51.89489853488502],[4.384830074642593,51.895058051657124],[4.384931026880527,51.89505749354532],[4.385490243339296,51.894988456857604],[4.386500726672088,51.89488390778164],[4.387001474382018,51.894836687977175],[4.388769219176252,51.894684758026045],[4.389428369024129,51.89460416518315],[4.389777144150908,51.89454441756926],[4.390082450791447,51.89448868748811],[4.39050617538684,51.894397057453055],[4.391200953698504,51.89423288722311],[4.391583463785944,51.894137550182194],[4.392211539693278,51.89397151794999],[4.392998041507248,51.89375185620051],[4.393335162422071,51.89365277385407],[4.39340831729586,51.8936265546152],[4.393903910438711,51.89347177935573],[4.394414346133214,51.89330577361074],[4.395149514435101,51.893048760900946],[4.396583371827473,51.892523317471074],[4.398036294156989,51.892001887821216],[4.398196494586944,51.89194310822488],[4.398803244636464,51.89172008875257],[4.398264379635998,51.89069569575905],[4.398233941702458,51.89063840790114],[4.397904530539629,51.88999035182947],[4.397899252904128,51.889794180264914],[4.397797663638176,51.88957771425189],[4.3977825098745,51.88954610313108],[4.397709599524286,51.88941000709605],[4.397691321084786,51.889368821672065],[4.397577427947588,51.889161929223995],[4.39738238745726,51.88879538668843],[4.397807242235343,51.888289036162604],[4.398090623323922,51.88793826517725],[4.398350909405176,51.887632460083005],[4.39853954795833,51.88762630655974],[4.399099820060721,51.887579924033275],[4.399340793776165,51.88756440255263],[4.399439457572816,51.887553360575865],[4.399950766901563,51.88751456239511],[4.400130032674869,51.887498392163224],[4.401585654463493,51.88737732496513],[4.401729721263736,51.88736872672743],[4.402078992349341,51.88734017262459],[4.402258236409913,51.88742012675657],[4.402447960196817,51.88721191274767],[4.402603783600969,51.88702818941542],[4.402872614499096,51.88671134934125],[4.403070686805003,51.88648346295523],[4.40289498332485,51.886413346554676],[4.402778247476538,51.88652617367358],[4.402687160887662,51.88649599160173],[4.402898844958241,51.88623686462423],[4.402935511855596,51.88614298025269],[4.402850127485229,51.88606187832858],[4.40258575590069,51.88583218163786],[4.402339925194514,51.88563192998372],[4.402239293436213,51.88559973132364],[4.401889483333201,51.88552028280247],[4.401772679622519,51.88548394894946],[4.401630173433902,51.88540249637041],[4.401511728689631,51.88532692287782],[4.401402842969619,51.88523375197724],[4.401443122120944,51.8849751252667],[4.401485230044525,51.88478528769271],[4.402125868040138,51.884837757827526],[4.403051811082237,51.88490629155999],[4.403024525213233,51.88502890027948],[4.403043043862723,51.88505924901801],[4.403090062599032,51.88508312632527],[4.403333171848337,51.88510271074183],[4.404236892925078,51.88517711375512],[4.404385656600701,51.88518222995352],[4.404465131986321,51.88517115269141],[4.404497375003101,51.88514600371696],[4.404672733843954,51.88494540810732],[4.404702316674983,51.8849083661372],[4.404970761036614,51.88458893739932],[4.405331570372966,51.88416434547854],[4.405865100107602,51.883525457402904],[4.406027679451243,51.883336623732085],[4.406065398136836,51.883060297554096],[4.406009093323984,51.88302253697217],[4.406063986160317,51.882742612171775],[4.406147675104103,51.88234692836027],[4.406238911953973,51.88193001828625],[4.402054798879742,51.881589457336574],[4.401380534149895,51.8815323177511],[4.399444966736448,51.881376832770606],[4.398305086386762,51.8812749857329],[4.395894589386543,51.88108202405594],[4.394653329049058,51.88098328592632],[4.393201510532275,51.88086520407916],[4.39353291811882,51.87934002332149],[4.393567160195047,51.87922444271334],[4.393693717888221,51.87923351332667],[4.396652572815144,51.87947617796511],[4.397912930284145,51.879576992245724],[4.399056144752199,51.87967693611157],[4.399691837605293,51.87972331450371],[4.400675317626498,51.87980615825744],[4.403030280981102,51.88000036270945],[4.403907676517229,51.88007261302835],[4.404132801380502,51.88009346475058],[4.404318754498912,51.8801133428752],[4.404704832860019,51.88013412082859],[4.40510592230726,51.879906639053196],[4.405925433724996,51.879440203523195],[4.407151083742273,51.87874244431269],[4.408503210851033,51.87797888875922],[4.408838723478119,51.87779329879254],[4.409425048128762,51.877462830757956],[4.409938397816175,51.87717084796718],[4.410133741383605,51.877084215909335],[4.410235632845793,51.87705770942636],[4.410494867323945,51.87700489842908],[4.411750757930799,51.87673288592044],[4.412911081143407,51.87648355168341],[4.416929253774828,51.875606760338016],[4.418861535631956,51.87518916404979],[4.41996445999495,51.87494909324029],[4.423524609863692,51.87416830317505],[4.424374369395236,51.873988952136294],[4.425083178447356,51.87521487282157],[4.424825600918888,51.875269536211604],[4.424858731240257,51.87533845190889],[4.425119602983138,51.87528575072684],[4.425170345930285,51.87538900417902],[4.422586598025003,51.87595541823231],[4.419894338938377,51.87652372087255],[4.418403907035861,51.876847303966166],[4.417121549251857,51.87713039410491],[4.414221986206856,51.87775375732485],[4.41365910282925,51.87844753667631],[4.413297540648167,51.87889343674073],[4.412807118877835,51.87951310373981],[4.412420474760619,51.87996111579877],[4.412375859828734,51.87998035834115],[4.412469508437065,51.88014216548992],[4.412497631525617,51.880191301838856],[4.413227888670528,51.88003078033793],[4.414287021068871,51.87979814112603],[4.415485599926951,51.87953735678647],[4.416658692274904,51.87927828410635],[4.419023511739407,51.87876425833622],[4.420177719612004,51.87850899599289],[4.42135688367923,51.87825586288128],[4.422498183391898,51.877998535527226],[4.42362333790636,51.877754613593645],[4.42506038880861,51.877450655819274],[4.426284813867258,51.8771841668172],[4.427390684978522,51.87923008226352],[4.426682898476272,51.8793957786439],[4.419010817771396,51.881059348926065],[4.416858519566643,51.88153564718824],[4.415134147867628,51.88190886915666],[4.414415613742315,51.8820661450505],[4.413440241877517,51.88227960836611],[4.411829567461865,51.882637467304306],[4.410345958143315,51.882961264011776],[4.409660259628788,51.88310265442839],[4.40943601784238,51.88338568731354],[4.409050547816778,51.88387253727305],[4.408931030656159,51.88403760398174],[4.408982978797564,51.88406500405305],[4.409024224236346,51.88416263661134],[4.409305568201551,51.88426484880513],[4.40890737137573,51.88474204348452],[4.40857367280912,51.8851294523307],[4.40892566405399,51.88570347401806],[4.409059876903118,51.88574497763838],[4.409106024080106,51.88578987737993],[4.409140376912497,51.885840227727165],[4.410547467360795,51.88553064753394],[4.41187313323817,51.885244246278106],[4.412004570522057,51.88543307684797],[4.412803058160822,51.8852455120295],[4.413164366639993,51.8851606387685],[4.413055556755102,51.88498580313103],[4.413821494984967,51.88481796082311],[4.417130556523096,51.88410018185518],[4.420102018464545,51.88344701508464],[4.421778055687635,51.88309229028375],[4.423458884911531,51.882726742268204],[4.425082162594192,51.88237966723171],[4.426727685733856,51.88202462227094],[4.427487987811848,51.88186206464132],[4.427580767614377,51.882008626975434],[4.427889081785181,51.88254868585798],[4.427681617433165,51.882598087568276],[4.42774500485996,51.88269563622527],[4.427955275809437,51.882651547250866],[4.428039420184511,51.882792619303636],[4.428114306930108,51.88285942364258],[4.428187080987962,51.882927500582284],[4.42820715131195,51.88300314729256],[4.428142422711917,51.883085842893635],[4.428069477135267,51.88312356943206],[4.427999504005709,51.88313925619789],[4.427767823957083,51.88315078362501],[4.42771559303641,51.883155775490906],[4.427115373990102,51.88328041856081],[4.427040812640188,51.88329606635999],[4.42646679622528,51.88342375897676],[4.42590376512746,51.88354456965416],[4.425820448675495,51.883560145936094],[4.425618924346922,51.88360443125723],[4.425600952469409,51.883625832188876],[4.425693092789595,51.88380219685162],[4.425491926127603,51.883849195022854],[4.425289075313512,51.88389695210117],[4.425114308809957,51.883937843053985],[4.423652488779345,51.8842592767061],[4.423557775421403,51.88428120920247],[4.423205779412858,51.88436089988073],[4.422261460426331,51.884565014768235],[4.422191008134818,51.88458340339597],[4.421471948743006,51.88474484676952],[4.420913529599146,51.88486309179119],[4.420828372711596,51.88488652004539],[4.419535970779966,51.88518065158341],[4.419458099691738,51.88519484799617],[4.418272201547322,51.88546119828581],[4.417915211570353,51.885539542113044],[4.417894048052409,51.8855540768372],[4.417973122672079,51.88567756634236],[4.417990473406128,51.88572390227191],[4.418515263311396,51.886645379680125],[4.418571927036607,51.8867640385124],[4.417162729462122,51.88707550315288],[4.413984336643214,51.88777694708259],[4.413490005624533,51.88751350014203],[4.413416128700787,51.887477790832364],[4.412124924727549,51.886806703214944],[4.412056165555464,51.88680432572178],[4.411631158578605,51.88690273154048],[4.411308189160525,51.88696895128092],[4.410011219288542,51.887256488491616],[4.409900163519694,51.88728137076103],[4.40823283173116,51.88764606377714],[4.407097915017242,51.887901629999874],[4.406001627735229,51.888144604464756],[4.405260955422215,51.888297381164065],[4.405228110626722,51.88831181599412],[4.404696255259625,51.88894736142753],[4.404388358276997,51.8893151035769],[4.40366052910151,51.89017635632772],[4.403034412815638,51.89090529760773],[4.403369646574587,51.89148151711081],[4.403464966101326,51.89147121854789],[4.403556915507172,51.89165314712783],[4.405197290318106,51.89128997159354],[4.405233152621781,51.89129027134646],[4.405284971794823,51.89138115479405],[4.406027041182512,51.891224001918225],[4.405923083801405,51.891056813818324],[4.405977561224198,51.891045010726216],[4.406742317790274,51.89087991423292],[4.406894849622286,51.89084699349275],[4.407011735297472,51.89103351483828],[4.407032504338,51.89103743017528],[4.408242263297938,51.890776939972596],[4.408248919231997,51.89075854402041],[4.408164917692045,51.89063229675032],[4.408446962629785,51.89056987404782],[4.408725965293336,51.89051310179325],[4.408825058469066,51.89048257305432],[4.409053010385019,51.89043350349315],[4.40912765503439,51.89056818825785],[4.409157181057248,51.89057217612305],[4.410370453392067,51.8903024025044],[4.4103038548426,51.890200301712426],[4.411041702002353,51.890043857076556],[4.413614903805249,51.889469475639814],[4.413818563009349,51.88942471245866],[4.414107290272492,51.88936116935203],[4.414239292121606,51.889332070012905],[4.415097510070634,51.88914304781224],[4.416384923024175,51.88885485944791],[4.416616717363341,51.88880090453007],[4.41670398345568,51.88877685131125],[4.418156049369423,51.88845271350795],[4.418243086052669,51.88859407442473],[4.419285569554126,51.888368090774165],[4.41929931539106,51.888349494652026],[4.419218676020594,51.88822070330372],[4.420148784438619,51.8880029475016],[4.420363365386512,51.888361353088065],[4.420379153369606,51.88840290179494],[4.420591675962638,51.8887602589651],[4.420032576952774,51.88888830036684],[4.41995725892617,51.88889980892161],[4.41790443530256,51.88934920555036],[4.417834293472508,51.889352755388686],[4.417595694478988,51.88941272132439],[4.417513544007798,51.8894316560395],[4.417453095085363,51.88944986645583],[4.416817211114988,51.889579194994496],[4.416762248716453,51.88947835450521],[4.416497229031544,51.88952571334818],[4.416552037795054,51.889633648486914],[4.415927186610534,51.88977325583691],[4.415848458772015,51.889788089114994],[4.415160415978932,51.889937492706075],[4.415049838845547,51.889959415701576],[4.414624847546385,51.89005602581865],[4.412538423657103,51.89051124436212],[4.412437898949415,51.890531055929415],[4.40876488231553,51.891331608124595],[4.408568790370421,51.89137294246664],[4.40850201749455,51.89124064565343],[4.408270546235022,51.89129794289944],[4.408341721713687,51.891419566313644],[4.407168889140547,51.89168810774992],[4.407081030794279,51.89154750560292],[4.406460702517825,51.89168748803548],[4.405131005520887,51.89197624772947],[4.403394857648695,51.89236920059235],[4.40225276666202,51.892621821940836],[4.402260992934687,51.8926461482312],[4.402319989300458,51.89273283514502],[4.401326277050487,51.89295159521793],[4.400766588007216,51.893615017485324],[4.399524232880927,51.89506933587964],[4.399474444175492,51.89515227098699],[4.399481785393773,51.89521684751964],[4.399519745047035,51.89527368226356],[4.399601139799834,51.89532804342454],[4.400487916379954,51.89551845950043],[4.403381385493613,51.896169295031065],[4.403481358160286,51.89617555147912],[4.403577094608188,51.896165643683865],[4.403644682426012,51.896145952220664],[4.403719855724369,51.896103613884414],[4.403786796137611,51.89601811044991],[4.403864842625508,51.89601605443264],[4.403926083256517,51.896000438266036],[4.403983505834373,51.89596866142401],[4.404077015764785,51.89586983217179],[4.404540713360254,51.895322492536124],[4.404968199036603,51.894847622096826],[4.405104138630874,51.89469650264871],[4.405087686522539,51.89466681697775],[4.405053066644846,51.89464768964911],[4.404975611449933,51.894622783935965],[4.405212153253721,51.894334313475106],[4.405879041425601,51.893553315269806],[4.406477005179811,51.89342643911345],[4.408112438498858,51.893062278086106],[4.409044655925709,51.89286965917899],[4.411112506551606,51.89241215441115],[4.411186726190771,51.892393932188114],[4.412760737434881,51.89205061607014],[4.412844570545923,51.892204599015045],[4.412865322013539,51.89224786722549],[4.413112524028552,51.892677523521385],[4.411441906840341,51.89466595513655],[4.411410346280724,51.89469795038303],[4.411390642388095,51.89472178694545],[4.411093928850784,51.89507467187016],[4.411054494385981,51.895085053553146],[4.411006653493078,51.89507923669697],[4.410600652677907,51.89497096108316],[4.410535528758809,51.89495429106639],[4.41021622373881,51.89486828280798],[4.410142286229197,51.89485411908061],[4.409809752429207,51.89476270976108],[4.409595670907488,51.894709961900176],[4.409492029372444,51.894680712712315],[4.409215449181555,51.89460576654916],[4.409142885204931,51.894586065705795],[4.408577703855706,51.89443284573793],[4.40849601766667,51.89441061724999],[4.408175358774745,51.89432962407176],[4.408084752566935,51.89429570827442],[4.407512736673431,51.89415016737385],[4.40742018687775,51.89412887946389],[4.406543795503862,51.894322984436606],[4.405880946899145,51.895109955413695],[4.405599504761358,51.89544901884498],[4.405239927855948,51.89587039568643],[4.404829620400898,51.89636063693119],[4.404838454456133,51.89637632352356],[4.404907250289047,51.89639676855325],[4.40624334917848,51.89679579729546],[4.406372336661974,51.8968105515653],[4.406752649964172,51.89685372521922],[4.406972008498471,51.8968942641436],[4.407139175913409,51.89693720690052],[4.407663767964794,51.89707835397826],[4.407767325278906,51.897111603179646],[4.408092085260633,51.89721585688108],[4.408295444639418,51.897301679716286],[4.408570557514476,51.89744474304908],[4.408780252944061,51.897546230524675],[4.40884744794264,51.89758291801145],[4.409121871712506,51.89758520273453],[4.409349371930384,51.89759690313433],[4.409522904381156,51.897615895232754],[4.409701891234585,51.897652609906544],[4.40979934741731,51.89767883928914],[4.409743591790258,51.89776830972166],[4.409752799893663,51.89778606377856],[4.409908412691201,51.89782348616138],[4.409934025117928,51.89781582856447],[4.410060031267155,51.897679975600646],[4.410862311265547,51.897885351301895],[4.410889691733191,51.8978922880866],[4.410940030226298,51.8978985131423],[4.411509220561896,51.89708105981279],[4.411675186358032,51.89683340927956],[4.41170018521657,51.89679632663336],[4.411548069992097,51.896386296084906],[4.411322435115809,51.89578907599925],[4.411326449315552,51.895757883902995],[4.411358908897379,51.895722928030246],[4.411918169040728,51.895054033296766],[4.412994875658055,51.89377640393105],[4.41456625209891,51.8918978374186],[4.414775472966124,51.891654153253086],[4.415482125602687,51.89149406696978],[4.415504899130557,51.891501739436904],[4.415385640049515,51.891635718668205],[4.416061482323461,51.891859368341485],[4.415814867458637,51.892154615690046],[4.415890173209222,51.892182593139],[4.415590390065179,51.892544753826144],[4.415703143678233,51.89257691167064],[4.415793662179285,51.89247985525855],[4.41586012707441,51.89249227544818],[4.415973632856125,51.892354376690896],[4.416046025964967,51.89236271720873],[4.416278994415096,51.892100646779035],[4.416342630686175,51.892089559978125],[4.416439529498773,51.891986620468906],[4.417115928641017,51.89220433327578],[4.417186668553793,51.892134595868896],[4.418556221780173,51.892586791634024],[4.419922635324875,51.893031074774484],[4.420013621923257,51.8930670492765],[4.420097641522399,51.893116643769055],[4.420139577364638,51.89316434303471],[4.420153788822285,51.8932211040487],[4.420130236517149,51.89330774771983],[4.420067240768995,51.89340542140063],[4.419853500406893,51.89333656550061],[4.419844610416023,51.89332333175148],[4.419898119262343,51.89325951472834],[4.419898402262436,51.89324635650563],[4.419440518846119,51.893106716840066],[4.41941864388092,51.893134793954545],[4.419473161518951,51.89315975916746],[4.419442070483882,51.89318969567113],[4.419146676084208,51.89315526276155],[4.418869458013615,51.89307091469561],[4.418729777921703,51.893030021933285],[4.418661916789942,51.89308236542092],[4.418454608813269,51.8930636242018],[4.418404352679401,51.89313120855479],[4.418277629907267,51.893069777436885],[4.417626492282822,51.89363355819214],[4.415740484219434,51.89528943796606],[4.415018032882976,51.89590745300594],[4.415163026910752,51.895972910251366],[4.415131931056332,51.896002845591106],[4.414606006888414,51.89619281302003],[4.414544381822294,51.896226366978446],[4.414515919389213,51.89636587091661],[4.41447762293184,51.89655509967864],[4.414414987939561,51.896866705887895],[4.414403797030514,51.89692119255062],[4.414348718784453,51.89723053856573],[4.414330885068809,51.89726432555764],[4.414254590138333,51.897628849994604],[4.414241277912203,51.897684996389515],[4.414178605399727,51.8980367300947],[4.414170081623612,51.89808362707143],[4.414098462867111,51.89842470587756],[4.41407280342596,51.898492363566284],[4.414032119165712,51.89854118744682],[4.413966994368538,51.89858206589281],[4.413874879856637,51.8986171737197],[4.413764159183087,51.89864464322572],[4.413660358064449,51.898660815263895],[4.413535198450965,51.89866158493272],[4.413376916727445,51.8986508538],[4.413475702098906,51.89871218713051],[4.41359250993543,51.89876967058126],[4.413703418567075,51.89881058895204],[4.41383813650994,51.89885002713992],[4.413987612536895,51.8988822327458],[4.414196548977675,51.8989039623902],[4.414430913728074,51.89892654758351],[4.414696085199611,51.89895196888387],[4.415006351321693,51.898975439095985],[4.414964081798376,51.899155473661025],[4.415107732093849,51.8991677589107],[4.415843482695084,51.89923022966131],[4.415843050759741,51.89925022534341],[4.415996654082067,51.8992653019162],[4.416732368564405,51.899329573539276],[4.416704544363135,51.89951708265369],[4.416869547093015,51.899525800048565],[4.416886309010646,51.899425681545814],[4.417367107885,51.89947248907743],[4.417349969034365,51.89957079777603],[4.417499961884292,51.89957926184998],[4.417517018277172,51.899484694500906],[4.418443577731545,51.89961710954798],[4.418406412421634,51.89983189590776],[4.418811981771764,51.89986620655007],[4.418818720676486,51.8998244559483],[4.419545338764106,51.89986618351262],[4.419596984273716,51.899869964348206],[4.419603843262607,51.89982266679029],[4.419827620329087,51.89983354131778],[4.419875871520973,51.899626715531014],[4.419925093428522,51.89941344732999],[4.420054881290459,51.8987902676841],[4.420135011420019,51.898419965474865],[4.420002736049811,51.898402489175695],[4.419976658826854,51.898393113999816],[4.419997387665128,51.89824386693296],[4.420124137543409,51.89824671698453],[4.420141929258457,51.89823408939562],[4.420154585640236,51.89818864626987],[4.420183197436947,51.89802204549742],[4.42000667224606,51.89800614119849],[4.420033729206021,51.897873075764956],[4.420187078109333,51.897104414152544],[4.420208532713196,51.89705723667262],[4.420241701389982,51.897008349737476],[4.420290306191647,51.89695945948547],[4.420326003520475,51.89692878672756],[4.420388199849048,51.89690736308711],[4.420473953858473,51.8969154233458],[4.421280829912905,51.897044250829495],[4.421352609619325,51.897062130914016],[4.421350066043402,51.8971805602914],[4.421517825944675,51.89719651908884],[4.421572984002488,51.897094909663146],[4.422080944233681,51.89717740464799],[4.422104063953945,51.89718856182151],[4.422264142198667,51.89721258595035],[4.422924577013691,51.89732381270814],[4.42338361173679,51.8977430560591],[4.423389551936546,51.89775781409979],[4.42331791092873,51.89779180732619],[4.423374469369797,51.897838721941994],[4.423412331353317,51.89786277380247],[4.423465142756664,51.89787043310131],[4.423618049676939,51.897878912394376],[4.423781751478627,51.897889802713706],[4.42380550502409,51.89779348356839],[4.423841468182504,51.897711456980915],[4.423888925734446,51.89763804063396],[4.42394293626906,51.8975897100704],[4.423971208041714,51.89757458713344],[4.424023920041859,51.89756740661578],[4.424102561871852,51.89757656726798],[4.425086588137066,51.89773211046106],[4.42525613398233,51.897762272774436],[4.42528362722961,51.89778352990629],[4.425286184500418,51.89781993669915],[4.425109269887526,51.89869963554889],[4.424956044784277,51.899427142380496],[4.424834852557352,51.89945685924641],[4.424831229860909,51.89947024808823],[4.424925682315853,51.8995399245644],[4.424917869616888,51.89961263318133],[4.424787501106855,51.89964227485006],[4.424783921092319,51.899653600206435],[4.424891009620858,51.89971770196683],[4.424881422665576,51.89979529945127],[4.424763193679643,51.899822975784105],[4.424759944994553,51.89983830387902],[4.424854645313135,51.899896497418624],[4.424844075200083,51.89996157171101],[4.424822016517737,51.8999786810412],[4.42471024708663,51.89999686140434],[4.424709959899001,51.90001027846313],[4.424810629084436,51.900081940338886],[4.424815283399465,51.90015681578768],[4.424777461646151,51.90016979597704],[4.424731041100867,51.900175222527274],[4.424662974626854,51.900178535551746],[4.424665688932204,51.90018810661121],[4.424785577236261,51.90023889389733],[4.424766384799792,51.90037550879636],[4.425131694031727,51.900400693806],[4.425221162706574,51.90041097423956],[4.425383561099958,51.90042469026698],[4.425946222928774,51.90046774609081],[4.425947574272522,51.90040453248754],[4.427721452879546,51.900535802687166],[4.428200327963686,51.900576098761206],[4.428913698207277,51.90059443483329],[4.429215592607538,51.900600509144276],[4.429276108762326,51.900599195759554],[4.429291652703385,51.900574548404926],[4.429311196555484,51.90053832190433],[4.42934246952302,51.90051935156238],[4.429373957526141,51.9005099308848],[4.429475930173671,51.9005012132596],[4.430224021142997,51.90047582502476],[4.430980183049105,51.900443530482335],[4.431073434658461,51.90043293464913],[4.431191623001098,51.900407058401775],[4.431284868914418,51.9003771076422],[4.431352193147782,51.90034991405177],[4.431467776144446,51.90028956491021],[4.431537401309244,51.90023258392428],[4.431606727242931,51.90017005166972],[4.431711355276025,51.90005593650065],[4.431768749188279,51.899985565957316],[4.431892744828981,51.89982373818526],[4.431778214409522,51.89981493636715],[4.43116476584295,51.89976710870418],[4.429824009783206,51.89965077485807],[4.429826259119164,51.89960395516253],[4.429795724402307,51.89958822313123],[4.429933715301199,51.89878884478775],[4.429949473258625,51.89877361847048],[4.430610750421851,51.898964807282184],[4.430529703301334,51.89906853274987],[4.430655638472587,51.89910981534541],[4.430617744974092,51.8991458935797],[4.430614215668478,51.899174509505386],[4.43134584485849,51.8994122014854],[4.431392096567936,51.89941464156229],[4.431424101446124,51.89936122609675],[4.430907926282567,51.8991922549845],[4.430996837233386,51.89909143192467],[4.431344311420503,51.899189998999304],[4.431412129145138,51.8991982927407],[4.431616099367713,51.899081243655935],[4.43174956394033,51.89912155439087],[4.432359248455827,51.89928741113396],[4.432668269451931,51.89937004910704],[4.432707141949462,51.89936636486633],[4.432818011425024,51.89925281628411],[4.432985283617361,51.89903675880697],[4.433242890814231,51.89871137282285],[4.433316601227864,51.89873687385204],[4.433376790564209,51.898672202562814],[4.432551005547268,51.89842898428318],[4.430704882206927,51.89789294713868],[4.429682041037244,51.89760023333188],[4.428674272379472,51.897305569661356],[4.426708242667085,51.89674371765515],[4.423771885816006,51.89589698001376],[4.423101049654194,51.89570760996486],[4.422861305993891,51.89562525628888],[4.42275432198699,51.8955763787081],[4.422668728128069,51.89552200018288],[4.422718019654687,51.895518662771735],[4.422825874098028,51.89554638603128],[4.422831714734102,51.895487983214025],[4.423370082225021,51.8948516367157],[4.423950851430828,51.894182216756676],[4.426399559525869,51.8949675451319],[4.427574997427428,51.89535727447957],[4.428697124104235,51.89572462161114],[4.428779487848814,51.895637294734954],[4.428896009287152,51.895473861197154],[4.4289468492077,51.89545646989399],[4.428977175575099,51.895462265128145],[4.433478082929017,51.896453063647506],[4.434110277943761,51.89657883694217],[4.434800769862425,51.89602005803458],[4.435065167105483,51.895805947132935],[4.435670324418822,51.8953167938185],[4.436353193111801,51.89474194498393],[4.436515385227181,51.89458700222217],[4.437028938223363,51.89383220219203],[4.436957547151118,51.893795883488494],[4.437257331719965,51.89344553989963],[4.437049493966427,51.8933725051624],[4.43473882688904,51.892622711822725],[4.433298751909203,51.8921645843071],[4.427118174129511,51.8902225286204],[4.426777231251577,51.88988039198844],[4.427894035599821,51.88857418287677],[4.430618768147698,51.88944954816174],[4.432911902823524,51.890189217863885],[4.435208411320617,51.89093067549514],[4.437398148105146,51.89163612866104],[4.438202715909173,51.89189191626047],[4.438297161526717,51.891922614558354],[4.438520951469951,51.89163462062752],[4.438595478924078,51.89166051153258],[4.439109992563615,51.8909557743661],[4.439744104347849,51.89007677606342],[4.439718011498366,51.890068179066866],[4.438320461344007,51.88961226159441],[4.436131751907499,51.888921284611015],[4.434268931751879,51.88832361831314],[4.431746563108113,51.88752198231054],[4.430773612861485,51.88769844950402],[4.430360788537052,51.88777469922123],[4.429790679873777,51.88759896103755],[4.429192782691464,51.887396670559674],[4.429083666875285,51.887311394447416],[4.429089469927968,51.88727389452935],[4.429503333262732,51.886796114998916],[4.429658628113017,51.886847444186614],[4.429826913469685,51.886641077568584],[4.429671619156018,51.88658974770453],[4.430225934006049,51.8859194370175],[4.430496958095601,51.88599983655604],[4.430683467247157,51.885779422876126],[4.430405035985002,51.8856944474424],[4.43066913458091,51.88537479708539],[4.430719917207479,51.88535959786907],[4.432311966240041,51.885876541569566],[4.432826780630269,51.886043689826366],[4.433392956366983,51.88622751091619],[4.433648092337386,51.88631022629077],[4.433571675566381,51.886393604783066],[4.433773279036531,51.88646388522494],[4.433742114642474,51.886497954330686],[4.434842995400562,51.8868364270097],[4.435019212394558,51.886628568611634],[4.436152134100062,51.8869907719384],[4.436485510224117,51.88710133980748],[4.436299158840058,51.88731531163384],[4.436514944747965,51.887385831549],[4.436628499479635,51.88726171950349],[4.437222264190368,51.88746368056003],[4.437390371186341,51.88752103927923],[4.437448041637207,51.88753518291911],[4.437518231699109,51.88745007429665],[4.437843659131865,51.887562121884855],[4.437784217384764,51.887631962858414],[4.437819263959377,51.887650955417044],[4.437818999847941,51.887663469316685],[4.437746664255785,51.8877316572979],[4.43775640987183,51.887744123554455],[4.437786849270221,51.88774436955627],[4.437817483271423,51.88773532627778],[4.437853233557053,51.88770129406622],[4.439121316650124,51.88810352710882],[4.439227371096088,51.88813715706817],[4.43925787456543,51.888134306556175],[4.439291088983374,51.88810180042679],[4.439340063955814,51.88805368023093],[4.439613617548596,51.88801537172314],[4.439610886759593,51.88802618841378],[4.439696386971669,51.88804571679208],[4.439797044662056,51.88805839921288],[4.439907682363567,51.888072451916365],[4.440008653834876,51.888070169404756],[4.440115639286494,51.888039806582135],[4.44022424874842,51.88795216742297],[4.440326471825638,51.887850800205015],[4.440399568078043,51.88772648791271],[4.440431718105203,51.887645458439685],[4.440428289459656,51.88757059350585],[4.440378801477779,51.8875045178684],[4.440231476122919,51.88733146240017],[4.44015690344658,51.88726841054556],[4.440097233952505,51.88723038231391],[4.440034679109853,51.887210523258474],[4.439557032984286,51.88705880249503],[4.438194183828531,51.88662303431346],[4.438083996643337,51.8865878221262],[4.437357244689449,51.886344532840056],[4.436527177274468,51.88607691966848],[4.435514948802605,51.88574692210498],[4.434905748106145,51.88554663382796],[4.434845686609632,51.885527437588344],[4.434284075518413,51.885344821852165],[4.43425398625758,51.885347803863766],[4.434204898230234,51.885401210977385],[4.434068105918685,51.88553945408335],[4.434025901302305,51.88554349819626],[4.432970350954399,51.885212611932225],[4.432928888174183,51.88518169423182],[4.433040023281103,51.885034212064],[4.433073830876653,51.88497384262066],[4.432945009807294,51.8849327968683],[4.432361485453863,51.88474199377377],[4.431984150304184,51.88462125065619],[4.431900750531375,51.88458186387003],[4.431830016975622,51.88453509593392],[4.431768704307167,51.88447679100666],[4.431718258421278,51.88437805997253],[4.431698374354855,51.88427364217777],[4.431706058205902,51.884206350462996],[4.431781877627702,51.884092130319594],[4.431889218709046,51.883946683091274],[4.432138606510418,51.88367077983611],[4.432359516376607,51.883420192642184],[4.432383910892775,51.88339071339921],[4.432686727948737,51.88303343860257],[4.433161629218555,51.88246595017402],[4.433210776417603,51.88242931802733],[4.43364513556241,51.88192472316086],[4.433828913283413,51.88173331451092],[4.434096515754177,51.88140349165607],[4.434296043716981,51.88117698464333],[4.434371384225889,51.88108482295252],[4.434722017613861,51.880811284273925],[4.435052171208686,51.88091408836543],[4.435097077334031,51.880920129698765],[4.435786343323016,51.88070313656527],[4.43749765024717,51.8801679614774],[4.437514850333815,51.880064231015226],[4.437948684357854,51.8800158676541],[4.438032939744302,51.88001461320973],[4.438953409422086,51.87990527532874],[4.439355402570681,51.87986400440302],[4.439421726737222,51.8798627328125],[4.440200932322832,51.879768760465765],[4.440786486398016,51.87970302981855],[4.440882487980696,51.87969825446421],[4.441472783303234,51.87962507450532],[4.442223511277252,51.87953653774174],[4.442307879457208,51.879529861780895],[4.442656164964697,51.87948440550145],[4.442884722704555,51.87944172778688],[4.443220710868069,51.87938610619191],[4.443691336745772,51.87933246944838],[4.443755703342216,51.879325115830945],[4.44511991617388,51.8791700027783],[4.445199327845691,51.879160962282306],[4.446034816335344,51.87906611280888],[4.446532947682399,51.87901281363561],[4.446608587636903,51.87900464536146],[4.447975148452214,51.878855970220954],[4.448047030234727,51.878848028952156],[4.449423226411905,51.878696703920305],[4.449498870697065,51.87868827584566],[4.450391963944048,51.878589468768794],[4.450833664597312,51.87854241059192],[4.45089760143023,51.8785355656044],[4.451565797638924,51.878464116464244],[4.451737800834607,51.8784536157802],[4.452280729059607,51.87855135642335],[4.452917680745397,51.87871951832334],[4.453122453692227,51.87879753291862],[4.453331555503674,51.87918938194226],[4.453357630864353,51.87923887850334],[4.453952512559486,51.880350425692235],[4.453323721064413,51.88047084566335],[4.453103664275734,51.88050599773826],[4.453030868033904,51.88051767688017],[4.452681112087343,51.88057386147935],[4.45249825381437,51.88060466473598],[4.452418330442947,51.88061822207909],[4.451314060525468,51.88080452247277],[4.451246692391637,51.880815856342615],[4.4506027253268,51.88092349543379],[4.450235353376639,51.88098430628154],[4.450121123060172,51.88100326575251],[4.449865050776458,51.88104560945678],[4.449823239130179,51.881071081800066],[4.449670405512669,51.88128172937117],[4.449269008000705,51.881854386300525],[4.448867384988493,51.88243736192723],[4.448757061010764,51.88258873585748],[4.448724427377324,51.88263389383096],[4.44859306129774,51.88281438955192],[4.448528988626338,51.882907424174014],[4.448402115653691,51.883092342128116],[4.448371574798441,51.88313713021054],[4.448234368648597,51.883337578073366],[4.448216508828247,51.88339407922656],[4.448224346888192,51.88341814201171],[4.448262513833677,51.88344760769392],[4.44832619541712,51.883453278053985],[4.448998216383261,51.883342133265906],[4.449072704262113,51.88332956673039],[4.449504546229813,51.88325766141504],[4.449600490906907,51.88349610043171],[4.449814639690796,51.88346516479554],[4.449714544783124,51.88322578946198],[4.450277718932952,51.88313480069947],[4.450373110885256,51.883119561400356],[4.450834193781757,51.883045045742215],[4.450897685041642,51.883200129709905],[4.451192549258191,51.88315783482429],[4.451101571031302,51.88294085615597],[4.451097199580867,51.882930498569735],[4.452574608907764,51.88268988007962],[4.452980975455108,51.88261930722172],[4.452999927599437,51.882650425291274],[4.453443832131136,51.88257937542174],[4.453525417835253,51.88256621709799],[4.453840036418936,51.882516073467805],[4.453917018428825,51.88250378256849],[4.454109468445605,51.88247318270177],[4.454202768408925,51.88245818166748],[4.454824464672972,51.8823593779738],[4.455158749937352,51.88254731795926],[4.455578240098209,51.883312695901445],[4.456239359691533,51.88447301200457],[4.456756885250554,51.88539967615748],[4.455147233885207,51.88571981291928],[4.455182599410892,51.885884735126865],[4.455283762516525,51.88603405158497],[4.455627812522327,51.886617801269836],[4.455885370508724,51.88704886808294],[4.455921335244083,51.8870439918197],[4.456026975443415,51.887219019588606],[4.456289710098175,51.887662254162606],[4.454712077120857,51.887922512048114],[4.45252477458562,51.888299961538515],[4.450432139909537,51.888655674040514],[4.448294783471368,51.889014475185675],[4.446307484443486,51.889355602539176],[4.44521514762635,51.889538070802544],[4.444193814192643,51.88971529392704],[4.444095750898603,51.88983721391719],[4.443570021231307,51.89056407580347],[4.443612782248656,51.890633063203815],[4.445427635338782,51.89032505114564],[4.446468396827997,51.8901566182613],[4.44675704609379,51.890812852380414],[4.446757814093788,51.89085595446483],[4.446051083826664,51.89096590646174],[4.445990901899242,51.890991746267254],[4.445973122542111,51.8910441191417],[4.446167828151048,51.89146592896409],[4.446235360489228,51.89148750187131],[4.446294444542727,51.89151416845303],[4.446318363217324,51.89156700385259],[4.446326572660056,51.89159326297991],[4.446420552462064,51.89158666092556],[4.448013965805905,51.8912982530537],[4.449117883247966,51.89110191575454],[4.450151749018299,51.890924363218424],[4.451235876226423,51.89073610537464],[4.451905248521714,51.8906167938205],[4.45237577019364,51.89053318552681],[4.45322457595187,51.89038884185933],[4.453184730204672,51.89029923663494],[4.453470206128902,51.89024924857091],[4.454564924080067,51.89007175447829],[4.455732616421928,51.88987418335446],[4.456558335257032,51.88973595538528],[4.456644131215834,51.8897215391986],[4.457691230272079,51.889546348132285],[4.457819253143794,51.8895268449326],[4.457979911408446,51.889502180379736],[4.458640112620955,51.889401079950844],[4.458825870207956,51.88973647724297],[4.459175787195794,51.89044374396935],[4.45805316437712,51.89064002844363],[4.456991284921906,51.89082284696958],[4.455876849835444,51.89100549821312],[4.453717073807133,51.89137622151303],[4.452610778075997,51.89156729312648],[4.450448026217018,51.89193806145801],[4.447137364830024,51.892511349392585],[4.447202825390539,51.89269199890275],[4.447367142351029,51.892672797403094],[4.447588854211447,51.893140497303264],[4.447623924306454,51.893218711593065],[4.447640261167579,51.89325522891563],[4.44788419309538,51.89379768507647],[4.447700400859598,51.893830537489706],[4.447777229806405,51.894006245599535],[4.448772180076796,51.89383820049009],[4.449878370382251,51.89365567893459],[4.450990187657875,51.893462870007596],[4.452107762420228,51.893273580487225],[4.453203332581662,51.893078944087925],[4.45534320492272,51.89272691069495],[4.455452642740553,51.89294054882019],[4.456113516056004,51.89282991886167],[4.459437852201172,51.892256357915805],[4.460200304440051,51.892133604645],[4.460704590615074,51.893042983703516],[4.460202307012807,51.89312921345271],[4.457950259833663,51.89352147922125],[4.455712633047098,51.89390026842895],[4.453519174835095,51.89427936620885],[4.451275983725993,51.89466125314223],[4.45012524392405,51.8948590443848],[4.449071573999158,51.895041858320766],[4.447965095778097,51.895236369301806],[4.444517694089737,51.89583274870445],[4.442869480476118,51.89611989473622],[4.439762139134149,51.896645450007185],[4.439098682125158,51.89675532221032],[4.439033809394294,51.89684486118833],[4.438074743238989,51.898153739224284],[4.437635357629865,51.898753017278345],[4.437467563813772,51.89897514088648],[4.437083659832838,51.89949460786775],[4.437083125568762,51.89951989355841],[4.437245215189336,51.899568042094266],[4.437467443796432,51.899316552814426],[4.43751930430569,51.89933000395545],[4.438020895593088,51.89945986068167],[4.438233798508441,51.89943267772971],[4.438404553820108,51.89976205102223],[4.438456762568368,51.89977873063859],[4.439699217015367,51.899572501609896],[4.441164852759714,51.899325735535676],[4.442740524742888,51.89910228620909],[4.443280090038838,51.89901346293496],[4.443332565255839,51.89897775578695],[4.443469794081145,51.89893860081148],[4.444193365913404,51.898787767711475],[4.444499591634881,51.89872596852725],[4.444786211137982,51.89868413901827],[4.445222059458963,51.89862750609414],[4.445651067683532,51.89859868741861],[4.446125362108241,51.898578487904324],[4.446339993993607,51.89854794863843],[4.446386880041312,51.89848019706046],[4.446349186241121,51.89842763796025],[4.446284293524677,51.898418989754646],[4.446161007870988,51.89841000240265],[4.445557337138016,51.89843329474718],[4.445324869083244,51.8983793027563],[4.444569533340337,51.89849375926899],[4.442812572243207,51.89882983853009],[4.44266392060343,51.898856772325416],[4.442407235893517,51.89826788093944],[4.442825701456112,51.898204664971466],[4.44355506696296,51.89807543126379],[4.444692497179896,51.897881209682815],[4.445773780193892,51.897698526432656],[4.446013345167887,51.89765244726358],[4.446082866475619,51.897639197331365],[4.44606971355576,51.89760993141386],[4.446229659581515,51.897581148501324],[4.446861336547441,51.89747472376905],[4.446963265787896,51.89764714912988],[4.447461257795934,51.897650229727546],[4.447464341883213,51.89750264483974],[4.447459959510797,51.89745280375553],[4.447451023314431,51.89708202972465],[4.447950791393648,51.897039704784746],[4.447994943940992,51.897262375878384],[4.448032766789007,51.897308870742584],[4.448136925741204,51.8978340800491],[4.448418995530614,51.89800975042842],[4.448472711408428,51.89801430814713],[4.449028087625996,51.89798622872634],[4.449167363407073,51.89796850198221],[4.450447671550711,51.89788258913033],[4.451460120963604,51.89781930347358],[4.452491678687489,51.89775977371262],[4.453038672989202,51.897733285092194],[4.453176192949448,51.897719669099324],[4.454318932511697,51.897649007046674],[4.454421707861544,51.897641307013515],[4.454952195727879,51.89760603393686],[4.454978076956107,51.89770572181566],[4.455242866801001,51.89768988701492],[4.45524493080133,51.897590292314035],[4.457032676569522,51.89747310630132],[4.457102154354406,51.89746178570749],[4.457127571131264,51.89744301965994],[4.457141935734778,51.897413972837725],[4.457139738170892,51.897318602379315],[4.457072401362169,51.89674233924353],[4.457054247003425,51.89669239044642],[4.456987597363336,51.89622425879402],[4.456957516090589,51.89594428410638],[4.457415000847097,51.89586803627778],[4.457593267611926,51.895840156874485],[4.458169250583649,51.89574174691588],[4.458197048679799,51.895748934821896],[4.458213304708127,51.895769707904826],[4.458225453770976,51.89645366108881],[4.458249772863171,51.896952423658675],[4.458271320747661,51.89712084883332],[4.458309831377353,51.897336503951614],[4.458320134762043,51.89738290642174],[4.458344756394492,51.89752374321721],[4.458369246625415,51.8975497427247],[4.458402399614034,51.89756032752005],[4.459760055950881,51.897626018117876],[4.460760480533351,51.89765958781904],[4.460763315551829,51.89748142011747],[4.460760225367336,51.897084758460224],[4.460755167511571,51.896844336908394],[4.460739791298055,51.896436611125395],[4.460742663344161,51.89577071217837],[4.460767899598306,51.89576058844464],[4.461195376912253,51.89574344317748],[4.461646442145507,51.895735384663574],[4.461660772178811,51.896153811318094],[4.461685282980888,51.89686805362245],[4.461716517077909,51.897782602705604],[4.463077173593586,51.89790582650713],[4.463867457050862,51.8979757797473],[4.463991122379621,51.89798668677238],[4.464171830151934,51.89800268718742],[4.464165161564807,51.898022763375295],[4.465160380394862,51.89812760756715],[4.465300764184587,51.89813696619668],[4.465874054057356,51.89823165443639],[4.466870311407486,51.89840849053554],[4.466928736276527,51.89840727083543],[4.467540519345389,51.89819064658786],[4.467567233128753,51.89816943721738],[4.467733429294575,51.897650748874966],[4.468099258049171,51.897650514416625],[4.468269032753624,51.897650422987056],[4.468669481266141,51.89765032806403],[4.46875716630684,51.89768688410574],[4.468912487544141,51.897679582129236],[4.469012757487273,51.89767184976365],[4.469125700806381,51.897635829786736],[4.469307656317246,51.897570284988504],[4.469461145870637,51.897509678930035],[4.470660945356871,51.89688912248841],[4.472177056191242,51.89611669843296],[4.472237037199076,51.89616181007206],[4.47230154443872,51.896127990553964],[4.472208403388367,51.8960520409137],[4.472293501620403,51.896010769158295],[4.472320634855921,51.89600968964694],[4.472421939190308,51.89607396072076],[4.472497393908221,51.89603506587441],[4.472412703872674,51.89597427883122],[4.473389794712602,51.89547144122268],[4.473466427021528,51.89551822960634],[4.473533850812227,51.8954844321002],[4.473476508623119,51.89543263242312],[4.473684136283434,51.895313991514975],[4.473613239877055,51.89525176471094],[4.473701408821456,51.895243934281446],[4.473735142853176,51.89522600327831],[4.474227635280404,51.89496441789061],[4.474183268329003,51.8948487211165],[4.474300988977998,51.89478228207098],[4.474409155927895,51.89481667035277],[4.47446248898196,51.89481940737743],[4.47464208373343,51.89482815702154],[4.475070202339626,51.894593551305235],[4.475123010756568,51.89462221836239],[4.475157257869695,51.89464054804715],[4.475375318537402,51.89454185574588],[4.475309589950065,51.89449218513792],[4.475374275573776,51.89444933341742],[4.47534905699409,51.89441765452808],[4.475423331542916,51.89437500663784],[4.475470397129959,51.894398855037004],[4.475569930990761,51.89434466102955],[4.475529580613311,51.894318800055395],[4.47563245612876,51.89426437394716],[4.475672843129543,51.89428842842721],[4.475774407573268,51.894236959217636],[4.476095395070161,51.89430757647672],[4.476171384959468,51.89432429427365],[4.476506495336602,51.894397858562456],[4.47657708783458,51.894413372910336],[4.4766918011167,51.89422742764854],[4.477027828996463,51.8942968681196],[4.477103948577282,51.89430726451438],[4.47767534062803,51.894432718408616],[4.477642163770665,51.89450574970928],[4.477695771528938,51.89451558402672],[4.477720358956994,51.89447538871351],[4.478336553975962,51.89461305673376],[4.478335878742727,51.894646469952896],[4.478405244993588,51.894660813260636],[4.478420259652295,51.894640283993695],[4.479366635725387,51.89484836966658],[4.479433086870748,51.894862560401236],[4.479640593916565,51.89491435581148],[4.479713257231948,51.894930659090825],[4.479976210555139,51.894983914052126],[4.480036324867393,51.8950020555142],[4.480362394004235,51.8950694742084],[4.480425884359676,51.89508570534624],[4.480773977645471,51.89515729376198],[4.480842153107111,51.895168657445794],[4.481652932007068,51.89533826005937],[4.481606824554273,51.895432354129184],[4.481905887087554,51.895494786416776],[4.483158775566401,51.89574933112346],[4.483978902893774,51.8959112474773],[4.484039417912832,51.895909648837815],[4.484105318632766,51.895805899242674],[4.484298417658406,51.89584867315459],[4.484376069421006,51.89586604287537],[4.484847515002656,51.89596463071545],[4.484804394145082,51.89605565230925],[4.485771240429017,51.89626513313047],[4.485804267758481,51.89617816319512],[4.486901235574195,51.89640979418374],[4.486965960319494,51.896427063128954],[4.487460289999783,51.89652917034898],[4.487564992200835,51.896549713172014],[4.488472048019766,51.896746586188904],[4.488649464925954,51.89678136149516],[4.48916405589892,51.896892647445576],[4.489243062587251,51.896904993277424],[4.489819545913461,51.89702952324171],[4.489982842742459,51.89706122149249],[4.490232853008832,51.897116289793544],[4.490302605241867,51.89713256425581],[4.490853773722135,51.89725083206026],[4.490924900618189,51.89726092248843],[4.492753788661874,51.897649043532944],[4.492792862867208,51.89761398732368],[4.492889225880909,51.89763459043281],[4.492860520658288,51.89769372555748],[4.492850310999656,51.89772461498636],[4.492857360770666,51.89772673336139],[4.493682206757501,51.89790668125875],[4.49381677560847,51.897935962427596],[4.49444268223039,51.898072587319646],[4.494586386708693,51.89810400082884],[4.494618806885398,51.8980468287939],[4.494640715642228,51.89801486764132],[4.494705542974153,51.898027230607525],[4.495054614247323,51.898093751067904],[4.495091646763108,51.89807738687923],[4.495171583350302,51.89823231255752],[4.4952870076811,51.8986801451596],[4.495311950769108,51.898768590488054],[4.495320491948509,51.89880065435342],[4.495374235835786,51.89899331535502],[4.495396921894761,51.89902729330846],[4.495466900442366,51.89903246978701],[4.495522346365888,51.89916037073369],[4.495651300068859,51.89970456152453],[4.495685571477436,51.899869591516605],[4.495694731079581,51.899912628104616],[4.495867968746465,51.90074837273623],[4.495979683756257,51.9011734671463],[4.495886478863118,51.90118243747785],[4.495892749515122,51.90124493522494],[4.49591543965766,51.90127878365329],[4.495735203736867,51.901363995085],[4.495649872606125,51.90137560473416],[4.494950225217259,51.901231588050784],[4.491770584689181,51.90056238586372],[4.490940633661948,51.90038535307118],[4.488784890995136,51.89994102948559],[4.480094094176585,51.898093655698915],[4.477890217269995,51.89762682490693],[4.476506153070472,51.89733972440362],[4.476426843453281,51.897342465176905],[4.4759640584305,51.89745474494524],[4.473825277514847,51.8979555464898],[4.471513685658462,51.89850063825796],[4.47152325761132,51.898563163237874],[4.470627940902292,51.89877450101886],[4.470560745227631,51.89879668516775],[4.470552771198412,51.89890139518446],[4.470571885489637,51.89890502834544],[4.47054355732236,51.899087383683764],[4.470600871532404,51.89909970136481],[4.470600287755878,51.899128341328414],[4.47057526510089,51.899148532662764],[4.47051869720671,51.89924279885556],[4.470537538133565,51.89925984922508],[4.470957297583518,51.8993773137905],[4.471380117127632,51.899487962935744],[4.471848650531162,51.89962761028319],[4.471939939607515,51.899630902073845],[4.474328670657286,51.89906949765886],[4.475453158838472,51.8988085574021],[4.475684242447186,51.8992001472058],[4.475671583997259,51.899289595989764],[4.474903502438211,51.89950092046487],[4.474361789322677,51.8996573542453],[4.474163762591282,51.899733620636304],[4.473990029436544,51.89980504269421],[4.473926711388486,51.89984171104035],[4.473862634461998,51.899895276830115],[4.473831607785059,51.89994406668487],[4.473807168762404,51.899997165718844],[4.47380531344847,51.90008850413322],[4.473820652926662,51.90013429978957],[4.473849655360304,51.90018510501846],[4.473887305345275,51.900221009360465],[4.473968231104594,51.90026215340804],[4.474742618759205,51.90056325975361],[4.475820624159438,51.90097148744846],[4.476998763562462,51.90142112529285],[4.476960191415028,51.90145127683456],[4.477866554852581,51.9018293827472],[4.478061463096149,51.90178366665313],[4.478732140639408,51.90205852460015],[4.478843592765066,51.90209654663448],[4.478985134515495,51.902111188559324],[4.479775753764891,51.90214865031405],[4.480750655575431,51.90219152933754],[4.480899344055733,51.90199655144293],[4.480956249315181,51.90200886087795],[4.481031890281746,51.901940156184146],[4.481218656819841,51.90194637024036],[4.481247199348899,51.90206194211383],[4.481402362251898,51.902063138284966],[4.481428996384098,51.902294176643444],[4.481474743118191,51.90234265775561],[4.481852855657668,51.90248014851875],[4.481941725887603,51.90247954330707],[4.482111206970736,51.90247413873251],[4.482147133433584,51.902596089928956],[4.48297635604647,51.90254002346295],[4.483015024015291,51.90265012492771],[4.486435281143334,51.902388142543174],[4.488097718565341,51.90226307052879],[4.488384960423908,51.902251720152876],[4.488537972302955,51.90225624504313],[4.488723178388489,51.90227804867826],[4.48892480160332,51.9023133950247],[4.489724815790255,51.90248685862538],[4.491836477439286,51.90293069881296],[4.492948155453599,51.90316664214676],[4.494049133817579,51.903395784372464],[4.495261346469682,51.903654275548774],[4.496264802625658,51.90385852814021],[4.496390700222884,51.90388425555791],[4.496423384554253,51.9038980511484],[4.496521873368991,51.90433865797634],[4.496621808694164,51.90479062932208],[4.495823618948254,51.90513205238549],[4.494807975735315,51.90556149329141],[4.493652481614187,51.90605734514583],[4.492077893827378,51.90673011867568],[4.491855445634991,51.90662907152902],[4.49095862693019,51.906221858795924],[4.486541155253077,51.904162845105944],[4.485290083335629,51.90357636065162],[4.484907096308311,51.90388876746809],[4.484741753854059,51.90381240306464],[4.484617450939879,51.903811448373126],[4.484529476824008,51.90380883734241],[4.484501941459515,51.90376733689416],[4.484470851169613,51.90375742076886],[4.484198886868572,51.9037553311844],[4.484086587968821,51.90375911266189],[4.483703513488122,51.90376390996181],[4.483545799742171,51.903764761962066],[4.483339226228199,51.90387181577791],[4.483256758031581,51.90384434280685],[4.483027935972482,51.90402038439131],[4.482856774727636,51.904129774554875],[4.482870856012017,51.90419710710225],[4.482776194246522,51.904278053972135],[4.483043558698785,51.90440526992189],[4.486539097583327,51.90620239132373],[4.488254811701188,51.9070713781843],[4.48939556028304,51.9075271835707],[4.490620466422476,51.90801123323201],[4.490780671250552,51.908074518121964],[4.490822063449889,51.90809109178352],[4.49090921193988,51.908009951765955],[4.491471941984737,51.90822481694645],[4.491564697800168,51.90826010447089],[4.491509412105441,51.90831258453355],[4.491478064736301,51.90833634464132],[4.492142799319049,51.90873004457905],[4.492575463626933,51.908960946449604],[4.492644107184049,51.90897101681683],[4.492751320100126,51.908971832867685],[4.492844459683558,51.90892505872244],[4.493029941438741,51.90885060161364],[4.493415760326429,51.908688895278644],[4.493555411018756,51.908820922273634],[4.493629059146533,51.90889412564911],[4.493743641225406,51.90900699376828],[4.494139024462816,51.909350893191935],[4.494345301709371,51.90953181005766],[4.494149200562832,51.909615737274436],[4.49405788175839,51.90965491372902],[4.494383143329078,51.90985338005055],[4.494440531098808,51.909884008269906],[4.494801980975509,51.91008829705297],[4.495125672925682,51.91028210397832],[4.495173923515011,51.91031072720048],[4.495565531985281,51.910530467607444],[4.495677345391633,51.91048886569028],[4.495851579353655,51.910623989944185],[4.495969061462505,51.910570043374264],[4.4961745315248,51.91072927448688],[4.496055476747451,51.91077830598453],[4.496157637711591,51.910865788584594],[4.496123436623438,51.91088617368961],[4.496204426696343,51.910947173127106],[4.496136028066697,51.91098768540483],[4.49644308448404,51.91115826684067],[4.496422384460745,51.91117114180596],[4.49647071205947,51.911195894519736],[4.496491375193201,51.91118495453979],[4.497056380417431,51.91149890421758],[4.497042004255553,51.91150847259528],[4.497093176819347,51.91153711804186],[4.497107974060301,51.911527423409346],[4.497204962500312,51.911581318164146],[4.497742198974115,51.911886280288485],[4.498383420023673,51.91225060498822],[4.498340110512991,51.912288470540275],[4.498083010979497,51.91246045675041],[4.498007264071032,51.912450592934334],[4.497948751314363,51.91247647190588],[4.497954229372063,51.912515996335244],[4.498025662390484,51.912554084507015],[4.498083889133493,51.912584846689846],[4.498298199794667,51.912698722606116],[4.498362203651058,51.91273275439653],[4.498454701287407,51.91278183931537],[4.498494296945953,51.91278407400549],[4.498534268963835,51.91276734531749],[4.498543932150717,51.91274290253436],[4.498536278752622,51.9126656854451],[4.498779756727275,51.912507272526646],[4.498832243538422,51.912490637442225],[4.49889899718589,51.912491142005244],[4.498977929469067,51.91250877040914],[4.499470173517932,51.912811191182556],[4.499609252754411,51.912889271392],[4.499731410909165,51.91295780527605],[4.49997655523819,51.91309539395999],[4.500093742645733,51.9131622126393],[4.500607419826233,51.913457693724894],[4.500659830750966,51.91344492779535],[4.503936872755281,51.91528361461802],[4.504239881571388,51.91545079026671],[4.505021947277357,51.91549046858822],[4.506079675118621,51.91553891778857],[4.5060992970459,51.9154106808811],[4.506167180141472,51.914970557579686],[4.506051301920954,51.91496401160988],[4.506063106122645,51.91483016825373]]],[[[4.670687372437032,51.81933197163129],[4.670666804102919,51.81931610420495],[4.670615803510445,51.819328696056225],[4.670401296697539,51.81914932693257],[4.66961232084462,51.818489560609],[4.669544845793459,51.818517017397205],[4.669468179776114,51.81844171250188],[4.669387082095626,51.81835709065943],[4.669343284380957,51.8183095981007],[4.669240127579151,51.818198261726714],[4.669209135890267,51.81815729862439],[4.669157336054674,51.81808937163275],[4.669031740650651,51.817922931162755],[4.66893886673784,51.817793592903776],[4.668908319132388,51.81775082661155],[4.668865145752505,51.817690435349085],[4.668788468185892,51.81756377674358],[4.668773547895178,51.81753323448806],[4.668754996885076,51.817495444910406],[4.66866584422742,51.81731554994738],[4.668602548375056,51.817185360591075],[4.669094020240149,51.817123855363555],[4.669145071909035,51.817264808075606],[4.669211274678381,51.81739553086467],[4.669315271382086,51.81753242091925],[4.669524667469842,51.81777059710191],[4.66963132209572,51.8178713749542],[4.669832784047529,51.81803260038749],[4.670093181644591,51.8182321213707],[4.671109151999243,51.818993137390486],[4.671288526084299,51.81912996956966],[4.671281750309565,51.81913715332848],[4.670903031678059,51.819229290957736],[4.670893732418122,51.819238008040365],[4.67087214447516,51.81928639081637],[4.670832721226195,51.819330278256515],[4.67083433632807,51.819359706225946],[4.670838696899107,51.819452116568534],[4.670839279203107,51.819467861976044],[4.670857143830401,51.81949661520216],[4.671159094614106,51.81985973569093],[4.671175241789887,51.8198655114453],[4.672595359600939,51.819801136554304],[4.672934149213371,51.819758813738176],[4.674536029902919,51.81954894597784],[4.67507495828238,51.81941028713306],[4.675638100959677,51.81926738436947],[4.675640338313218,51.81925759220108],[4.675622735490389,51.819212067557],[4.675620868050778,51.81917205758014],[4.675633048058652,51.81913910078459],[4.675663839526679,51.819087676357206],[4.675806275306807,51.81900673577988],[4.675873600713047,51.81898856428252],[4.675804559884956,51.8188779555821],[4.675874110183957,51.818850764862766],[4.675909053537879,51.81882646186255],[4.675919482865904,51.81879891279355],[4.675894838828794,51.81877734524729],[4.675363594440467,51.818482779233086],[4.675383245625035,51.81837219222909],[4.674991985020742,51.81796776811997],[4.67456672102982,51.817528555890135],[4.674579690656824,51.81734025466626],[4.674512248684531,51.817313264748876],[4.674567419652594,51.817194636564196],[4.674752120830171,51.816757579328915],[4.674746090784502,51.81671754405305],[4.674810242611371,51.816689289297074],[4.674892443930334,51.816678175784645],[4.675061129202002,51.81696460853529],[4.675350719564239,51.81768969594005],[4.675326903297085,51.81772129225672],[4.675250239253275,51.817750761267696],[4.675265910852181,51.81778672650398],[4.675323394595342,51.8178115908823],[4.675601790906722,51.817742829652715],[4.675764752250311,51.81797039040944],[4.675955582837983,51.818226248052504],[4.675827188014989,51.81828843547196],[4.675835850901507,51.8183199707776],[4.676118058715576,51.818537674078186],[4.676370006883227,51.818694033648335],[4.676451376366909,51.81865659159211],[4.676390860797749,51.81861261389676],[4.676418106863396,51.818601166455004],[4.676838996645085,51.81842126912739],[4.676804799429849,51.81834545219547],[4.676951292861268,51.81829730836665],[4.677068552416821,51.81836046757257],[4.67848401841894,51.817661434358435],[4.678548113335326,51.81768969164254],[4.680137609137256,51.81690911227633],[4.680172405080078,51.81686751743661],[4.680163602483157,51.816818175075376],[4.680878767730657,51.81645655928402],[4.6810172406681,51.816361653456475],[4.681577821814591,51.816298963124716],[4.682337042077823,51.81620752838648],[4.682730705310095,51.81616834559775],[4.682935719694155,51.81615796360748],[4.683308026466543,51.81615322920256],[4.683486126904731,51.81615997451253],[4.683712363771659,51.81617707271036],[4.684584771021385,51.81624965098968],[4.684822701410434,51.81626449438044],[4.685073531883742,51.816279930415405],[4.685589073940005,51.81630159408246],[4.686443686464486,51.81631392520334],[4.686645825539427,51.816408290456046],[4.686915512425515,51.8165231858342],[4.687122584279896,51.81659487074623],[4.68747292057165,51.81669140836693],[4.687659669185472,51.816731229507354],[4.687856883590957,51.816767501072654],[4.688013901606879,51.816791403545146],[4.688092896915474,51.81679884124902],[4.688163161070291,51.81680545297096],[4.688297462380389,51.81681760730787],[4.688415544548286,51.81682837504806],[4.688659608929643,51.81682389278929],[4.688812555565666,51.81681499642108],[4.689167287614454,51.816762399173925],[4.689400760773317,51.81671578907122],[4.689849090846558,51.81658787840585],[4.690201870514288,51.8164728168651],[4.690423241596083,51.81640084328297],[4.69097037301385,51.81623764478439],[4.691172873002029,51.81617433166716],[4.691224087386126,51.816147282022435],[4.691261869570615,51.81610028148606],[4.691271825481306,51.81604872947046],[4.691266194514349,51.81600895544179],[4.691236466284296,51.815803883676395],[4.691227599975677,51.815757897275205],[4.691323140102007,51.81571846520634],[4.691955333562778,51.81546544670141],[4.692406484500284,51.81528825375368],[4.692420551826557,51.81529401426957],[4.692812766245097,51.81583438110332],[4.69303376243735,51.8161378717068],[4.693087577735555,51.816212252007396],[4.693071121669372,51.81622634776034],[4.692533721772065,51.816271940476554],[4.691624740508281,51.81635610153863],[4.691596711045258,51.816364709232786],[4.691118794115071,51.81660264117597],[4.691109188525583,51.816631486319935],[4.691152372945868,51.81666606382501],[4.691184715439753,51.81667477149003],[4.691268005995475,51.816673717576975],[4.691992615255361,51.81663878750633],[4.692321380433389,51.816622670959994],[4.6923961596127,51.81666053165974],[4.692428129886362,51.81666639816095],[4.692905340183532,51.81663619077599],[4.693122504144427,51.816620959553525],[4.693206287692437,51.81661500387113],[4.693269066568677,51.81659395692955],[4.693324154552491,51.816558670503305],[4.69350875813356,51.816440540820615],[4.693818072346668,51.816254246118476],[4.693967262178221,51.81616454972136],[4.694451393701123,51.815873225169206],[4.694618657597184,51.8157722810711],[4.694677429814824,51.81571379087855],[4.69469222291629,51.815672331723746],[4.694804179300917,51.81516023645562],[4.694846534496628,51.81497778299479],[4.695018667679096,51.814966153139295],[4.695372930552709,51.81494269542552],[4.696076041908594,51.81489574311],[4.696088314300783,51.814910008462796],[4.696422458915905,51.815302671056074],[4.696507909842214,51.81543220157927],[4.696537072569853,51.815512628372915],[4.696533890908047,51.81563879861283],[4.696530589176953,51.81577271006855],[4.696516783184724,51.815777016178],[4.695198724847024,51.81598446966451],[4.694735588614336,51.81631875837717],[4.694639590358521,51.816388124516806],[4.694547240032131,51.81643686787381],[4.694511420641975,51.816464784649284],[4.694515005243599,51.81650248173688],[4.694525860998717,51.816527577404536],[4.694585701827423,51.81656225194307],[4.69463608614701,51.81656203333272],[4.695083889369296,51.816521579863945],[4.696110837372885,51.8163740884526],[4.696376299628549,51.816331524284514],[4.696786600536192,51.81626555400813],[4.697146779521622,51.816182513885984],[4.69707574326664,51.815927137640664],[4.697109669253079,51.8158868225963],[4.697264654875725,51.81582605821773],[4.697633286911722,51.81568010082193],[4.69779353957104,51.81562865736433],[4.698083279780635,51.815550103892924],[4.69831329963519,51.81545597419581],[4.698413969473192,51.81548907971871],[4.698522285234492,51.81548507094843],[4.698641428947661,51.81545351247926],[4.698702776878531,51.81538961704585],[4.698703848755848,51.815319431875146],[4.698622696947645,51.81518063843008],[4.698508984452221,51.815074684441875],[4.698342318733289,51.81483758614112],[4.697090329814636,51.81312474273182],[4.697112972204221,51.81311429533739],[4.696745243468821,51.81249563841356],[4.6966538858309,51.81226285113859],[4.696631852545141,51.81217911172379],[4.696630699328399,51.81209136578876],[4.696651005294807,51.81198877912215],[4.696803308728613,51.811612914010865],[4.696888042033275,51.81127226338554],[4.696886349587457,51.81121961047549],[4.696908436540306,51.81113664658002],[4.69683923744511,51.81103379131601],[4.696804894791921,51.810938367061574],[4.696717145250947,51.81090507724407],[4.696564234853195,51.810885855848795],[4.696457495742168,51.81089632410641],[4.696184928140642,51.81099716760786],[4.695911609407371,51.811119682197784],[4.695551210723697,51.810730991564455],[4.695637481229245,51.81067059916233],[4.695750543333447,51.810573462533654],[4.696191883591888,51.81002717798871],[4.696335932357928,51.8099996399584],[4.696477576115927,51.80999324779136],[4.696589327688793,51.81000861545397],[4.696835667009703,51.810097803206155],[4.69703472084336,51.81017561674795],[4.697157653121718,51.81024936891831],[4.697262515989902,51.81033411211591],[4.69741943022221,51.81049967346942],[4.697488801006056,51.81059143291039],[4.697551391927252,51.810745344066135],[4.697611775451755,51.81101639853462],[4.697667714155616,51.81160535192971],[4.697684108264714,51.811622221983406],[4.697668108508067,51.81264118864035],[4.697682848190891,51.81290242705483],[4.697694050812952,51.81304106912719],[4.697733289836683,51.813143230980046],[4.697798072061115,51.813263091419905],[4.698132117118568,51.81371690830468],[4.69850974252715,51.81423471935804],[4.699091555400122,51.81501436229759],[4.699220777500346,51.81508634325644],[4.699350640294012,51.81511626454668],[4.699553804329155,51.81511745514288],[4.699794395431093,51.815066995622814],[4.702163133367375,51.81426668160859],[4.702471178308402,51.81407829305059],[4.702784801280452,51.8139611595629],[4.702885058237461,51.81391168104807],[4.703219898318399,51.813713124219504],[4.703296201850703,51.81367821566668],[4.70349788771163,51.813611780042635],[4.704582230086838,51.81329707182361],[4.704808651951622,51.813218907431626],[4.704932811211789,51.813157954629844],[4.705183450110515,51.81304767365276],[4.70532241784678,51.813026030255585],[4.705973177121927,51.81305200170429],[4.706309315648101,51.81304182408599],[4.706641227695977,51.81300813816064],[4.706809725564304,51.81298847096961],[4.707394300691296,51.812903087781486],[4.708384578457767,51.81280482324935],[4.708760055015285,51.812753318849694],[4.709117095277283,51.81265422511731],[4.709651434610618,51.81255899269896],[4.711515638517895,51.81234574943832],[4.712024028514914,51.8123146121364],[4.712485976584194,51.81232655874268],[4.713088570708819,51.81231557072796],[4.713342896565035,51.81226335570867],[4.71376573942316,51.81213391691883],[4.714484969627112,51.811839472690465],[4.714643030785767,51.811737414689304],[4.715022526754263,51.811415213266166],[4.715336892562607,51.811105025002135],[4.716062520226895,51.80984754691819],[4.716896068815596,51.80933671735558],[4.717592934141343,51.80888987329632],[4.718221821525655,51.808450379530775],[4.718315762172305,51.80834769308633],[4.718378730451579,51.80825618449311],[4.718398989002676,51.80815333597764],[4.7183707933697,51.80797744015955],[4.718342202281576,51.80782812148755],[4.718369929780357,51.80761460964269],[4.718509968850252,51.80751915377354],[4.718834992046774,51.807413396155646],[4.719158027631861,51.80766632342666],[4.719270302452995,51.807871341758585],[4.719335528569815,51.807936485147536],[4.71942280421973,51.807974399748716],[4.719548726585057,51.80798879337956],[4.719658820734922,51.80797574260597],[4.720158944961714,51.80788052591781],[4.724405331305961,51.807128099413084],[4.725248068216678,51.80700228117748],[4.725157655374858,51.80680926148378],[4.725302879188419,51.80678479210139],[4.729429238283632,51.8060289266536],[4.732492259473692,51.80550646450325],[4.732742628426939,51.80546450809374],[4.732947053998117,51.80543313259167],[4.733314015441094,51.80538847042535],[4.734048044787171,51.80534920543188],[4.734397632215191,51.80529695923886],[4.734508868920216,51.80526170889255],[4.734602679467296,51.805222490123285],[4.734608610878,51.80521529715028],[4.734690517402346,51.805193301738555],[4.734768901483311,51.80515580376795],[4.734901314082469,51.80509538127661],[4.735130526155976,51.80499059478809],[4.735313640962313,51.80490696988046],[4.735671566105418,51.80476702730424],[4.73593012866248,51.80467607932664],[4.736159471475718,51.80459064588487],[4.736438916988622,51.80449465138327],[4.736852542145263,51.80435965944297],[4.73702788853154,51.8042948271905],[4.737209514422405,51.80422744882642],[4.737378858653226,51.804145809121366],[4.739413361262542,51.80346056914001],[4.739766940667387,51.80333168660889],[4.74055346341209,51.80305422842863],[4.740883728691999,51.802925214063805],[4.741524149115254,51.80270500661009],[4.74228268182627,51.802433059191664],[4.742928294330769,51.80219816365886],[4.743681940978377,51.80194656751877],[4.744444904800623,51.8016831463205],[4.746178637105619,51.80105910697544],[4.746805190304086,51.80084447229773],[4.747200883999203,51.800707281501325],[4.747671987971125,51.80053540523363],[4.747973789595941,51.80041499056862],[4.748266181938473,51.800282910589544],[4.749097147449119,51.79985725589643],[4.750135583622304,51.79932820947449],[4.751386718037269,51.798677988609704],[4.752056841497313,51.79835027670151],[4.752859229802548,51.79793914981507],[4.753218001748231,51.797760707942565],[4.753454595947063,51.79762831449467],[4.753663372794454,51.7974317722622],[4.754129411696007,51.79693443577409],[4.756112509979856,51.794884295574754],[4.756749476021682,51.79424258397563],[4.757877160387004,51.79269953676518],[4.758135186197821,51.79234041822106],[4.758147826123954,51.79229945561104],[4.758209860505218,51.79217798603073],[4.758292544678723,51.79206772357533],[4.757337643040393,51.791461333486694],[4.757188884139921,51.791356281020335],[4.757142606980952,51.791302872849116],[4.757114710591387,51.79124440300755],[4.757138876724938,51.79106337867028],[4.757316598401051,51.79061402696761],[4.757428457176343,51.79029180177756],[4.757517420276495,51.79005951336202],[4.757552491440997,51.78999157497816],[4.757588052418752,51.78979899927797],[4.757602964373952,51.789654827079815],[4.757601057479587,51.789493274087334],[4.757611223232904,51.78942081556768],[4.757596026854374,51.78937660702937],[4.757564486630423,51.78913205936775],[4.757550248280137,51.78901921338746],[4.757507203452668,51.78873434746763],[4.757445882193005,51.78853660639126],[4.757439227419635,51.78850663672758],[4.757473321863422,51.788478691626075],[4.757691999090285,51.78828400209861],[4.757728552387126,51.78822897388894],[4.757641596053318,51.788138704548125],[4.757566112316464,51.788121009804854],[4.752753435835536,51.786227020844606],[4.752736963523992,51.78621480338702],[4.752750002088405,51.78614571533216],[4.7529260268537,51.78561146128304],[4.752977695299181,51.78545819853209],[4.752846857908064,51.78544200725529],[4.752829156230305,51.78531004551622],[4.752516049579978,51.785295707559605],[4.752373758833128,51.785265518697734],[4.752204489831219,51.78520112118295],[4.752002107531626,51.78509473886207],[4.751779227698224,51.784966827029],[4.75163081885004,51.78489841318799],[4.751318665975057,51.78481672441489],[4.75102119657354,51.78469692170861],[4.75014115679288,51.784405188745],[4.750005053677453,51.784379159974904],[4.749672640075941,51.78434767784383],[4.749373508996061,51.7843166337165],[4.749129177368796,51.784294143882384],[4.74893161715312,51.78428894061448],[4.748794199136355,51.784385221618244],[4.748690955148717,51.784477559100104],[4.748614877773387,51.78456127057137],[4.748482917711327,51.78474222336901],[4.747892462240783,51.78459862498173],[4.747425494480348,51.784197126269014],[4.746175978596549,51.78305899036841],[4.745877905696234,51.78280782191847],[4.745669372523172,51.782638429449456],[4.745499983241615,51.782525249112936],[4.74536016341751,51.782468486669835],[4.745120884329193,51.78235492243884],[4.744582388672328,51.78207146757124],[4.744333509804051,51.78190185254242],[4.744293953584752,51.78184563736916],[4.744254935658344,51.781751749214486],[4.744185122626217,51.78101590902933],[4.744121656863732,51.78053557892579],[4.744084117546365,51.780367120875376],[4.743758559651256,51.77976974390619],[4.743560845297639,51.77936841520984],[4.743525967533489,51.77933441840082],[4.743453043698761,51.77916783062278],[4.743315810742135,51.7788140579695],[4.743072041934193,51.77828809327475],[4.742820371103681,51.77776234258292],[4.742566582433414,51.77735605864139],[4.742233308689634,51.77666108978882],[4.742006349219592,51.7761248925194],[4.741864070506644,51.77580541159556],[4.741736912335694,51.77559233241685],[4.741689496822911,51.775475430171646],[4.741580803750498,51.775105812507],[4.741425058843349,51.7745940056637],[4.741277222257668,51.77408224122538],[4.741193587771542,51.773676891879404],[4.740908503317829,51.77278631952296],[4.740730967554617,51.77211259020414],[4.740636830724013,51.77183130686523],[4.740163403343963,51.77018204318369],[4.739721437315896,51.76860365749208],[4.739425479018785,51.76760541204389],[4.739362704375106,51.76745848980352],[4.739298936697415,51.76735181868011],[4.739219093712848,51.76723499408817],[4.738891352413974,51.766800681330984],[4.738459808932363,51.76618102506638],[4.737508704138919,51.76487567452256],[4.737541951826189,51.76484850529495],[4.737521863656629,51.76479936350737],[4.737564192011448,51.764747986856776],[4.737670061433662,51.764645092132206],[4.737775661640288,51.76453187503068],[4.737776181262335,51.76449574974602],[4.737735004041081,51.76446713548034],[4.737681313675753,51.76444103254043],[4.737502527034184,51.76440907527715],[4.737295234993024,51.76436379945191],[4.737162414426285,51.76431661342016],[4.737068553195793,51.76430757722352],[4.736476135244938,51.7638594024458],[4.735377463291961,51.76304661847835],[4.735351212638284,51.76305008510798],[4.734646047521899,51.76254992090074],[4.734453007071749,51.7624113027027],[4.734387222199171,51.7623304231345],[4.734294998385745,51.76217972150595],[4.734249815461703,51.76205457048415],[4.734186005594802,51.76183718987884],[4.734070185848943,51.761477847236755],[4.733852187265394,51.760765430748215],[4.733792444759314,51.76069826075681],[4.733560467238185,51.760463685642044],[4.733228537119876,51.760182101856984],[4.732478932922378,51.7595105858205],[4.731962986126499,51.75910152339287],[4.731456739401284,51.75868373903519],[4.731164185729007,51.75849862474421],[4.730793438768263,51.75828623449867],[4.727794169284334,51.756711519539984],[4.72692448658696,51.75627076849278],[4.726225273718838,51.75586039018657],[4.725853952012103,51.755605143451255],[4.725831545472539,51.75557353418592],[4.725517437643351,51.755329962680754],[4.725116985505319,51.755076871844054],[4.724795209080117,51.75484641629822],[4.724344833701497,51.754539105883914],[4.723433898002988,51.75399642152314],[4.721686649294289,51.75284564857846],[4.721546747748228,51.75249234924526],[4.721527404327841,51.75233792151096],[4.721496094873602,51.75220536094131],[4.721467980948753,51.751997207399455],[4.721366414471525,51.75192050448477],[4.720779263578033,51.75150324540228],[4.720455596202647,51.75126321912501],[4.719463122214007,51.75056262406457],[4.719449593956329,51.75054964463764],[4.719440025936194,51.750212567885775],[4.719413663513389,51.750195901897634],[4.71891791775141,51.74961683681544],[4.718534587495864,51.74913982667077],[4.718306401215725,51.748827050344815],[4.718282665801589,51.74877349687072],[4.717992470978325,51.748521268138454],[4.717543857155273,51.74821471583208],[4.717276959913061,51.748045969694374],[4.71691421632667,51.74772468051594],[4.715968049534683,51.747133993695954],[4.715312519667454,51.74676560460602],[4.715068898972572,51.74668214574159],[4.7132269326638,51.746451707074485],[4.712514715309115,51.746345935526875],[4.712239711558715,51.74633222407889],[4.712024223120311,51.746286339010176],[4.711407233585309,51.74592898841069],[4.711004398770513,51.74570705880363],[4.710746472540805,51.745441578683575],[4.71070867706961,51.745355943573564],[4.710584460918932,51.74532271095129],[4.710473121556186,51.745317939775674],[4.710359996328035,51.74532141521292],[4.710177647104076,51.745283718894306],[4.709968217151563,51.74524999346762],[4.709621797419599,51.74520334839733],[4.709242846166604,51.74513612687556],[4.708706831735414,51.74506386668507],[4.708256032910626,51.74499209759403],[4.707883553244549,51.744937037610825],[4.707452232606633,51.74486950680146],[4.707178023974103,51.74483127312465],[4.706831012194835,51.744796743917334],[4.706037428697124,51.744741298943936],[4.705765735795776,51.744757009759056],[4.701958911098576,51.74485146087465],[4.70040760373807,51.744898381634464],[4.699127375083938,51.74494274384149],[4.695630176772626,51.745067451686396],[4.695100062420124,51.74507283913148],[4.694563094601795,51.74509134407692],[4.694144860528052,51.745093259656066],[4.693552195874556,51.74511117270821],[4.69314095988714,51.74511751261071],[4.692729177342144,51.7451323637509],[4.692269306543764,51.74513841247412],[4.691920556977575,51.7451363445986],[4.687888418211274,51.74476991925659],[4.687366257100267,51.744718288361085],[4.687068721224112,51.744684254801264],[4.686971870245976,51.744683676335306],[4.686875150799731,51.744701420303684],[4.686814502234726,51.74475215351215],[4.686850340238617,51.744853783865786],[4.687022348122794,51.745289122490234],[4.688268214245501,51.74848821211087],[4.68842164036663,51.74862150994397],[4.688838107333942,51.748709150700115],[4.689314139320617,51.74878966055049],[4.68985002958971,51.74887078250122],[4.690498883888935,51.74895979938973],[4.691475181547417,51.74911372228704],[4.692754048471179,51.74930142859807],[4.692690500096788,51.749432661413145],[4.692093756361753,51.7500631712246],[4.691488724854439,51.75069079110439],[4.688475406126592,51.753799751605555],[4.687646623931288,51.75463891510382],[4.686976085009299,51.755326763420214],[4.6866404412059,51.755680878022616],[4.686154249925925,51.756330856903496],[4.685924244829717,51.756575668107395],[4.685221852873139,51.75730279890525],[4.684127617871667,51.758464209944954],[4.683724432263048,51.758880102406074],[4.683016398670059,51.759617767774415],[4.682566785740014,51.760102794636516],[4.681916461897211,51.76076415609317],[4.681724819759451,51.76062674955286],[4.681510194375067,51.76057642730903],[4.680941200745237,51.76039700603071],[4.680643018373144,51.76026514916785],[4.68017641922996,51.760026987675644],[4.679411763502413,51.759649739888694],[4.6788726632951,51.75936855679838],[4.678226424827863,51.75902530618742],[4.67779347957492,51.7588435953803],[4.677345261641608,51.75870772557428],[4.677148606852701,51.758652600719145],[4.676961694594916,51.75861250167081],[4.676558203930315,51.75854141362731],[4.676164601399741,51.75847631940747],[4.675785371276177,51.758396343936155],[4.675449895200999,51.758310697579354],[4.675124361961764,51.758201110739186],[4.674942500675198,51.75813110487002],[4.674779711792825,51.758064569192975],[4.674621967145188,51.757994709349745],[4.674459924773032,51.75790727537335],[4.674350041253972,51.7578348674412],[4.674035214108876,51.757653344719365],[4.673729658934039,51.7574904581584],[4.672899404715121,51.75703406018286],[4.671854590500311,51.75642099785006],[4.671034076696034,51.755955871971544],[4.66977944257926,51.75528344543319],[4.669630619934726,51.755176473044],[4.669490724850869,51.75510955318128],[4.668836381618171,51.754735233381766],[4.668108953187883,51.75432949454968],[4.667191824957762,51.75380026668503],[4.666665928953115,51.753378208373924],[4.666569838745084,51.753224589020704],[4.666521216823371,51.75317087278091],[4.666429901310623,51.75310889318665],[4.665395081578707,51.75253196124575],[4.66530000779284,51.752471248400006],[4.665031577643392,51.752304953903504],[4.664750429290535,51.752154064417134],[4.664548599894432,51.752061210001344],[4.664365617087956,51.75193389174102],[4.664182931119677,51.75181405904621],[4.664017998850173,51.7517020766783],[4.663848088793346,51.751563483649456],[4.663702167769791,51.75143278041253],[4.663531664882398,51.75130527895868],[4.663398221993552,51.75117439437656],[4.663179532818974,51.750966597778095],[4.663105862758275,51.75091969256681],[4.662499370219164,51.75036860342731],[4.660865465288701,51.748918528130325],[4.660483153528057,51.74857165162628],[4.660302934726819,51.74842911885662],[4.659919223116304,51.74819551878516],[4.65972317427283,51.74808101449403],[4.659421730475767,51.747928180186115],[4.659316376541328,51.74786146329001],[4.658924091251093,51.7476703863828],[4.658385792548605,51.74709853855461],[4.658300096524789,51.746998911067394],[4.658090004690385,51.746827802592364],[4.655725167626975,51.74534936448289],[4.655499022788907,51.74522072992866],[4.655310971471489,51.74510162354379],[4.655115743811713,51.7449636333996],[4.654920026510744,51.74483028525398],[4.654822093711741,51.744768255982386],[4.654634616431726,51.74463960332003],[4.654461914283849,51.744497108333356],[4.654245052725077,51.74428362872268],[4.65386344254151,51.743899057169436],[4.65147894627248,51.741782229899506],[4.650758878010142,51.74120223778612],[4.649790272529382,51.74023926749165],[4.649297914531171,51.73976830830762],[4.648955027871517,51.73946086649987],[4.646071864612641,51.73652970500621],[4.645879293739721,51.7363857805769],[4.645602738413489,51.73614223045148],[4.645202150294717,51.73585892730464],[4.644738580696613,51.73548825742896],[4.644630237824315,51.735429508097766],[4.644475348896353,51.735370463726284],[4.64348193550391,51.73512236289482],[4.643186901756664,51.735043072843624],[4.643000134932988,51.73502717791811],[4.642712599397588,51.734972192286214],[4.642541781679342,51.73494684915407],[4.642378201179943,51.73493626189613],[4.642246033268232,51.734911163930185],[4.642097911093529,51.734895771150285],[4.641911062956825,51.73488477734574],[4.641647218727466,51.73482993883186],[4.641531079765606,51.734790491653456],[4.641033448789749,51.73459739273786],[4.64087864841148,51.734533440758675],[4.640738981175085,51.734484295088585],[4.64057580500614,51.73444944986116],[4.640412393100325,51.73442879618609],[4.640248816437754,51.73441820596902],[4.639985133387028,51.73435381683437],[4.639830498961159,51.734280057757516],[4.63944237580407,51.73417590747958],[4.639287335697599,51.73412666109048],[4.638773989109459,51.73392983961626],[4.636985805007149,51.73319248778677],[4.636529727250175,51.7329769262524],[4.636503200879008,51.73289753280537],[4.636527821523685,51.732866465258056],[4.636533829291869,51.73272999016791],[4.636581474197656,51.73256384729053],[4.636751861695785,51.732063787569565],[4.636799162311283,51.73191828693678],[4.636900324879271,51.73165752094485],[4.637077744302132,51.73130924453776],[4.637112041005825,51.73124598074248],[4.637125766797073,51.731220262681816],[4.637193524688625,51.7310689575125],[4.637269897200645,51.730899385583946],[4.637392894280628,51.73062482355567],[4.637540260580239,51.730384223198755],[4.637563769890928,51.73034489032873],[4.637591622958317,51.73029423060208],[4.637605566714155,51.73028038446987],[4.637613409205331,51.730258499294536],[4.637939372319561,51.7297230470348],[4.637910474033181,51.729711507649114],[4.637892194618192,51.72968610083252],[4.638070207988246,51.72940130912057],[4.638600519720431,51.72857065063786],[4.639149137104097,51.72773752503365],[4.640806501776276,51.72523820892874],[4.641366289145688,51.724403080326944],[4.641722071675146,51.7238683224333],[4.641829252550263,51.72369326619319],[4.641819486376205,51.72360520563487],[4.641766219266403,51.72355970624442],[4.641710628720987,51.72352916017947],[4.641612841732136,51.723512538028245],[4.641513811601627,51.72349564990655],[4.641431586390971,51.72349280486404],[4.641364657971675,51.72349470072803],[4.641297502408196,51.723510273348275],[4.641236908015212,51.72355633811728],[4.640837550296718,51.72413804145416],[4.640292899735779,51.724961909417765],[4.639292097861913,51.726506463015006],[4.639186827233349,51.72661520807302],[4.639034998072156,51.72677526854009],[4.638935426677506,51.72694133889891],[4.638861877976234,51.72711686525407],[4.638829969933308,51.72723691710178],[4.638813343903161,51.72728739084052],[4.638757299879567,51.727459674292575],[4.638683557314851,51.727646812808366],[4.638526666534639,51.72788632184929],[4.638396338796092,51.72807748522181],[4.638246543636933,51.72831497450134],[4.637858692254214,51.72892461191456],[4.637369187604615,51.729774366872874],[4.637228671584764,51.73005294623633],[4.63698933531031,51.730526500591964],[4.636532970705012,51.73143065667736],[4.63637333470722,51.73173388654242],[4.636131638317237,51.73212329708086],[4.636024834110451,51.732273061505694],[4.635950246300336,51.73238483898799],[4.63584455778955,51.73246751451178],[4.635772883773042,51.73250395757382],[4.63567788089272,51.732518831632085],[4.635575147935793,51.73252359219709],[4.635455883826559,51.732522827304585],[4.635351731002984,51.73251312729604],[4.635260486045245,51.73247693016753],[4.635221686281794,51.7324359072049],[4.634833755046542,51.73219703590331],[4.634730903627997,51.732134183109714],[4.634439122407988,51.731986505943176],[4.633520944466805,51.731570807237944],[4.633453715213561,51.731540181557406],[4.633461872048064,51.73152449284857],[4.633435009670557,51.73144070907851],[4.63336869967005,51.731379896817714],[4.633339511591501,51.73133583839827],[4.633083934564186,51.73033911815579],[4.633036060174383,51.73011997531421],[4.632957689346009,51.7297610267909],[4.63290615260817,51.72948741070811],[4.632824409069883,51.7289821199121],[4.632850519816343,51.7289115803471],[4.632878586355062,51.72882350454668],[4.632873480494762,51.72873108668249],[4.632875160130854,51.72863045358937],[4.632876146357613,51.728571364924086],[4.632876891422407,51.72852672508785],[4.632837076309937,51.72817344390176],[4.632794745154989,51.72774685726941],[4.632801359206514,51.727649353467726],[4.632811142167809,51.72761096508279],[4.632832220714058,51.727568004896106],[4.63284222518967,51.727541231454474],[4.632873133002924,51.72748207649908],[4.633001008429463,51.727215034373465],[4.633042458868245,51.72712162531124],[4.633059949296022,51.72706961005438],[4.633060556370521,51.72703322732693],[4.633033671770572,51.7269011860325],[4.633023696733755,51.72682654272302],[4.633013163700028,51.726735637790576],[4.633002532242165,51.72667544153641],[4.632989374427234,51.72656748864136],[4.632983139005693,51.72654267449886],[4.632977581057045,51.72647734952678],[4.632968804390566,51.726380778567616],[4.632959229708781,51.72633194375211],[4.63296016409002,51.726275951378376],[4.632970749801627,51.726164537788584],[4.632994472399201,51.726012951528446],[4.633045725848387,51.725830059179536],[4.633166882661183,51.72536762194633],[4.633213062139234,51.7252148902321],[4.633279176188818,51.725037770706116],[4.63335856514127,51.7248122213128],[4.633418396942833,51.724662931053025],[4.633576057955953,51.72430343593726],[4.633621239757631,51.724210309532],[4.633930826399493,51.723635536554674],[4.633889257721619,51.72363656014151],[4.633951922716997,51.72354148036714],[4.633956305453448,51.72352783208554],[4.634001180435258,51.72345302452411],[4.634039064430358,51.72339881748058],[4.634070292870969,51.723345083608905],[4.63410431682037,51.723298077829874],[4.634143665819592,51.723230718773024],[4.634179879497905,51.72317701780654],[4.634273758313539,51.723028978692334],[4.634356382237578,51.722907963025094],[4.634450259912365,51.722759923763036],[4.634505619775917,51.72267924895562],[4.634538508489657,51.722625525623805],[4.634593866582885,51.722544850763576],[4.634662971910503,51.722437167433874],[4.634693895289085,51.72237672220056],[4.634775306548644,51.722228602626366],[4.634801242802491,51.72216812534342],[4.634810932661993,51.722135155529784],[4.63481337005863,51.72211349469741],[4.634807850383904,51.72209565245343],[4.634754218054695,51.72199776167857],[4.634700177881797,51.72192438430131],[4.634669376204513,51.72187773600201],[4.634633817014614,51.7218424108901],[4.634587038310248,51.72180701460999],[4.634565590298283,51.721797586938656],[4.634522579704243,51.72178544008596],[4.634349590932789,51.72174407163082],[4.634286301151014,51.72172714899609],[4.634081129558894,51.72167215398817],[4.633844114685346,51.72160817994411],[4.633776273932619,51.72159019586072],[4.633633654891495,51.72157147291527],[4.633546093306347,51.72156497450745],[4.633488794428758,51.72156254125861],[4.633449742550867,51.721562290077486],[4.633409404531442,51.721564353315564],[4.63337153407989,51.72156798028423],[4.633326107460087,51.72157620404126],[4.633237661475571,51.72159782835864],[4.633206342905464,51.72160717475321],[4.633126873226146,51.72163866352119],[4.633032223623641,51.721683472121946],[4.6329803060313,51.72165733204377],[4.632933532252016,51.72164670915444],[4.632859329901199,51.7216364247449],[4.632600957425312,51.72158263342842],[4.632390405150863,51.721526568884144],[4.631130557999779,51.72123200109395],[4.62846364032558,51.72060471086217],[4.628128391890982,51.72052744455203],[4.628117672554563,51.72054724576405],[4.628073867054507,51.720656895059946],[4.628067937884068,51.72068833993365],[4.628052902885209,51.720742435129765],[4.6280407397075,51.72082338679856],[4.628038436422968,51.720886338443556],[4.628029710504189,51.72093582999404],[4.628026991881009,51.72099877894745],[4.628018491289044,51.72103485167345],[4.62801637793132,51.72111122393131],[4.628007158630484,51.721165356797336],[4.628004942665932,51.72119837359509],[4.627995349215604,51.72132424457039],[4.627962889866565,51.72164893184755],[4.627961187371689,51.721725564740694],[4.627952460489645,51.72179982851661],[4.627951654366893,51.721847822599635],[4.627941076912157,51.72188388276063],[4.627928458125032,51.72199192820295],[4.627920715674993,51.72203239326589],[4.627918368124007,51.722073151262244],[4.627910362020024,51.72210458266757],[4.627897483714811,51.7222528836721],[4.627889476116686,51.722284315065934],[4.627886302198473,51.722324809727624],[4.627879200377967,51.72235185955541],[4.627876555127915,51.72241042243747],[4.627869456173881,51.72243721430444],[4.627866279325146,51.72247796782361],[4.627858271664641,51.72250939921444],[4.627856007839493,51.72254525435902],[4.627847995826385,51.72257694369939],[4.627835344188505,51.72266227960426],[4.62782782550402,51.72268932672709],[4.62782597696247,51.722725185460476],[4.627817969229261,51.72275661684758],[4.627786046956259,51.72295021304012],[4.627778039154612,51.72298164442364],[4.627770260879851,51.72304894710613],[4.627758058371237,51.72310744804606],[4.627744761312275,51.72320645621631],[4.627717751950642,51.72335492358695],[4.627704318859014,51.72346193180107],[4.627698350916162,51.72347092506998],[4.627691492385302,51.72358236242641],[4.627693947975609,51.72363399023866],[4.627695809351922,51.723646904827255],[4.627738383744919,51.72375917850847],[4.627788956178699,51.72384053758324],[4.627944869218105,51.72410709048122],[4.627968779371186,51.724143116096194],[4.628004772907885,51.72420192839306],[4.628094854302483,51.72435554176401],[4.628136850175314,51.72442807025568],[4.628213599990287,51.72455914585084],[4.628288573880142,51.724672145101],[4.628310671573018,51.72471719084979],[4.628337339636993,51.72476226529059],[4.628370578280776,51.72481202858105],[4.628503074517236,51.72503817181424],[4.628533897936502,51.72508327400774],[4.628562491616882,51.725137393703356],[4.628583984303342,51.725169016102114],[4.62863125863999,51.72524906264629],[4.62865603962922,51.72528277104288],[4.628792617201817,51.72551358575294],[4.628788747356395,51.72554607588878],[4.628679109562385,51.72556704369782],[4.628446071960913,51.72561198565069],[4.628439085936146,51.725607295008764],[4.628420466948747,51.725602529946094],[4.628387081320026,51.725586313718814],[4.628346025730504,51.725581403365865],[4.628274484316381,51.72558558460293],[4.628084829187142,51.725595710907186],[4.628003325591299,51.72557453836135],[4.627918514413304,51.72552753838582],[4.627615613837494,51.72503164906939],[4.627361534136926,51.72462278413528],[4.627135903354341,51.72417797444156],[4.627099482610026,51.724119933037336],[4.62677918715679,51.72332535383506],[4.626561895790952,51.722731438640096],[4.626508488076942,51.722473032423196],[4.626489209946935,51.722285297475445],[4.626453830417294,51.7216223709539],[4.626441474337332,51.7208259186325],[4.626930739383633,51.72071322466081],[4.627464976792737,51.720569853805316],[4.627802323594925,51.7200027606212],[4.627411952326359,51.71994242495896],[4.627158921586992,51.719917816776],[4.62692988069406,51.719924331025624],[4.626855248555424,51.719939845965015],[4.626690144542868,51.71997387134389],[4.626457841334943,51.72005081326222],[4.62630011625612,51.720140109623266],[4.626141393119792,51.72026398012545],[4.626034781043211,51.72040212426239],[4.626005071319059,51.72048863909211],[4.625960545434694,51.72091208392837],[4.625962993263491,51.721334285116335],[4.625953993745923,51.72142454796081],[4.625987680271567,51.72186682270208],[4.626055145375457,51.72217848118046],[4.626140144518226,51.722657991741976],[4.626266426747943,51.72303015993035],[4.626648456752879,51.72390875241754],[4.627037554024375,51.724812679344325],[4.627406555441378,51.725602928024834],[4.627808301889416,51.72642358097993],[4.628142660339287,51.72727398844717],[4.62850718105037,51.72820974994581],[4.628630363407574,51.72852099335961],[4.62910907355676,51.728447704997095],[4.629180421228842,51.72862880801001],[4.628854976167464,51.728681927075876],[4.628813943412323,51.7287002422981],[4.628801476568385,51.728774482780395],[4.628811029361574,51.72887389774899],[4.628840998400044,51.728970089308746],[4.62902067058714,51.729605304266215],[4.629063072022062,51.72972841402614],[4.629088591341234,51.72976780440129],[4.629160395827346,51.7298227193685],[4.629293465817781,51.73011492925289],[4.62932252800973,51.730166213085006],[4.629355951971276,51.73018036454334],[4.629612132449062,51.73021892337807],[4.629645361900323,51.73024468611756],[4.629655144657589,51.73033042423256],[4.629691923983165,51.73036756454626],[4.62992020759582,51.73053342414232],[4.629983103048568,51.730673698822656],[4.630301084042649,51.73151367088714],[4.630367345689765,51.731651644370665],[4.630385821577875,51.73171473015713],[4.630605857709996,51.73212543289365],[4.630700295013579,51.73236784453413],[4.630782094961043,51.73262049635644],[4.630867992271756,51.73282698206151],[4.63096737906477,51.73312155228203],[4.630967679666919,51.73317806943493],[4.63096789103352,51.733240005352584],[4.630978126000761,51.73329890840672],[4.631004656736798,51.73340230323748],[4.631008434312518,51.7334745848869],[4.631014404607308,51.73358971765348],[4.631026388328795,51.73361869751945],[4.631103120752377,51.73372731957906],[4.631133650447473,51.73379048298347],[4.631143554295631,51.7338940284966],[4.631145617605824,51.73394462171715],[4.631111506714053,51.73404581857763],[4.631056947143633,51.734077465795046],[4.631197111194947,51.73446881413271],[4.631322976289336,51.734820585916495],[4.631374348113666,51.735004397220735],[4.631665868312867,51.734969374170156],[4.631701348871018,51.735059666021634],[4.631421499493717,51.73509269969374],[4.631833952096279,51.736500490893874],[4.63193822218865,51.736851864746164],[4.632114516928115,51.7374449884201],[4.63218681985986,51.73774454516313],[4.632287589713438,51.7377335807028],[4.632428767057436,51.737767005890454],[4.63247345585503,51.737803938217446],[4.63249998432123,51.73780823757598],[4.63255948197682,51.737829523161565],[4.632570122249874,51.73786443039032],[4.632546946864617,51.73790815094],[4.632471588640458,51.73796547080854],[4.632313474795541,51.73805012831542],[4.63224124581553,51.73811908079927],[4.632264492462327,51.738145811255116],[4.632288693027014,51.73828944787194],[4.632504251388945,51.73912049517647],[4.63270859498134,51.73995147068934],[4.632820099456342,51.740443017124875],[4.63289794637999,51.740784671966374],[4.633000155883854,51.74128544825948],[4.633020131031095,51.74138363896851],[4.63306856519934,51.74161981614291],[4.633212961088431,51.742457371981],[4.633353659846934,51.743292581965534],[4.633467435529664,51.74419703619994],[4.633549634787034,51.74497612840709],[4.633582311056113,51.74580831971566],[4.633572222034163,51.74616385976199],[4.633558600203662,51.746656406446185],[4.633490451925481,51.74750162763055],[4.633493224679518,51.74755970843645],[4.633403514276415,51.748351630374],[4.633217898709677,51.7493096411829],[4.633089810164932,51.74988454633497],[4.632839707864685,51.750968848232176],[4.632638723987436,51.7517254735505],[4.632583173723067,51.7519147889386],[4.632481241732364,51.75221735186585],[4.632335658303592,51.75256918154865],[4.632312009271947,51.75264076954529],[4.632009751128146,51.75341067599133],[4.631639916617127,51.75424259743735],[4.631503989164069,51.75456326221307],[4.631299098677178,51.755029285436585],[4.631005780765568,51.75558609084914],[4.630772343898063,51.756042898013774],[4.630547975861805,51.75650414885677],[4.630108420781823,51.75742387077552],[4.629900103707643,51.75786948378237],[4.629696727149462,51.75831770810995],[4.629156863534169,51.75968657436869],[4.629047063710092,51.759984695952674],[4.628862159117377,51.76057006746409],[4.628736202690599,51.76103762942397],[4.628626525383492,51.76147665116025],[4.628546230728896,51.761825026942844],[4.628449941809722,51.762308521626004],[4.628378126176979,51.762696693257176],[4.628312918630843,51.76308748827366],[4.628252302977782,51.76347728015371],[4.628184988605289,51.76386960930416],[4.628126863587439,51.764259418115714],[4.628035963776547,51.76504023074685],[4.628008512446389,51.76536185154982],[4.627989935277042,51.76560095095093],[4.627989484851841,51.76589978026047],[4.628016244662518,51.766287040960584],[4.628052218179248,51.76652210698456],[4.628121539994425,51.76677751738952],[4.628229546000424,51.76710698301786],[4.628389219633474,51.76750516843959],[4.628478130358815,51.7677336087337],[4.628538949369125,51.76792599758032],[4.628615913715855,51.76819719908385],[4.628660881833966,51.76839232396501],[4.62872756709354,51.76870603772586],[4.628757152715346,51.76892557899742],[4.628789268073625,51.769217392729374],[4.628803341448689,51.76941954378145],[4.628815358756251,51.76947174908863],[4.62885017988506,51.76950345738528],[4.628905848487409,51.76953220384967],[4.629088603968897,51.769547578675414],[4.629235752630233,51.76955317432795],[4.62930953912092,51.76956810243264],[4.629359697752485,51.76960300632244],[4.629374132359763,51.76965987257789],[4.629367469624488,51.769759440206734],[4.629342871125954,51.76986198855377],[4.629315353728542,51.769915487071295],[4.629258573815414,51.76995279647626],[4.629146563328628,51.76996007248006],[4.628928122400745,51.76993956365347],[4.628892220464318,51.76994733150105],[4.62888016790545,51.77002105753663],[4.628841643613237,51.7705315063188],[4.62881050479016,51.77109748500887],[4.628779637350019,51.7714492769003],[4.628765398199426,51.77170259755122],[4.628760990042052,51.7718163729524],[4.628784055525917,51.77192903524082],[4.62882543781551,51.77201601016028],[4.628897416928277,51.77208924854079],[4.629001889872185,51.772159599430424],[4.629102386069976,51.77219431287859],[4.629187085547567,51.77220363428396],[4.629209333010827,51.772216423454914],[4.62921372595734,51.77225206348716],[4.629207032426254,51.772502078325715],[4.629205739874746,51.77255419844205],[4.629203885464558,51.772639861848226],[4.629202481509203,51.77272346344868],[4.629201662531216,51.77277223112346],[4.629200635763061,51.772808610055996],[4.629193725340342,51.77289811223645],[4.629158081897156,51.772964718617736],[4.629029376891158,51.77312336687516],[4.629019077877055,51.7731916858184],[4.629026931777244,51.773318442933544],[4.629123053482239,51.773613766798874],[4.629195555260694,51.773879002674455],[4.629248821190758,51.774125534431136],[4.62934942485479,51.77467430057258],[4.629412492470079,51.77508037575268],[4.629447480905761,51.77532549849313],[4.629501135097422,51.775747253864964],[4.629541470980937,51.77602079846747],[4.62956946683492,51.77633555224712],[4.629618764315358,51.77674437601639],[4.629664995943168,51.777187244594955],[4.629692226750588,51.777547669672096],[4.629699287953616,51.77836627545592],[4.629716499879376,51.779596290557635],[4.629712610685673,51.77990232230072],[4.629630154140919,51.78070022122215],[4.629516264366689,51.78148682037742],[4.629324749645259,51.782708519466084],[4.629254701542617,51.78311373414979],[4.629178239180843,51.783504456128185],[4.629102677241685,51.78396537514344],[4.629068132579527,51.784139341084774],[4.628974161239645,51.78413563706098],[4.628970131637203,51.784177415848035],[4.629027000854278,51.78433390887762],[4.629066444278122,51.78438835603532],[4.629400707831339,51.78484985858072],[4.629463031202844,51.78492948525039],[4.629488137207699,51.784921131497136],[4.629542378119672,51.784986512693585],[4.629201867845263,51.7851443078535],[4.628975534296388,51.7852672294343],[4.628737900077797,51.785418721030084],[4.62848161803938,51.78566454161323],[4.628357105672226,51.785819086770516],[4.628314173262447,51.78589777510074],[4.628294011902598,51.78593377220551],[4.628130130641343,51.78630121867846],[4.627888814446828,51.78681938574992],[4.627647262462851,51.787351227158155],[4.62743240169206,51.78778027584312],[4.627163452440955,51.78828277842832],[4.626886536307833,51.78878858425408],[4.626580942499669,51.789316653753154],[4.626312709617527,51.78980032043257],[4.626055057921788,51.79029773331392],[4.625748612980321,51.79089959983941],[4.625325738511433,51.79181605590787],[4.625132462675141,51.79229504532188],[4.624897445460562,51.79290434164156],[4.624746664077802,51.79330619014123],[4.624592366242998,51.793768142127405],[4.624436572965561,51.794293825090186],[4.624359006565459,51.79462311830143],[4.624322910715488,51.79493642410727],[4.62431531304191,51.79538565317513],[4.624325603684608,51.79561384335229],[4.624329513422468,51.795702640603615],[4.624389932937694,51.79606741062452],[4.624485250033477,51.79631292655033],[4.62461832380453,51.796639202578234],[4.624725387525664,51.79685460238396],[4.624910926436275,51.79717967024656],[4.625146459187836,51.79752648177757],[4.625327983040718,51.797769202264135],[4.625493721906481,51.79796098331428],[4.625681101392878,51.798152903687225],[4.625864403324642,51.79829060604103],[4.62609742815859,51.798441533094895],[4.626347071116913,51.79859437418115],[4.626619336956194,51.798713813656065],[4.626880829508912,51.79880582907893],[4.627115338886882,51.798869023830804],[4.627374573166533,51.798922314459254],[4.627756451048246,51.798959108632395],[4.628091215695781,51.79897598423787],[4.628335145313934,51.79897420765158],[4.628581948711457,51.79894999799963],[4.628881839871814,51.79891219574827],[4.629221018689695,51.79883980895509],[4.629451899157486,51.798772399062344],[4.62968894719907,51.79868464211077],[4.629920428366109,51.798581365672966],[4.630222732463498,51.7983995789079],[4.630626213547412,51.79811599577375],[4.630960488068371,51.79783919122999],[4.63118014423472,51.79764628953158],[4.631551701242981,51.797280176984806],[4.631729534210773,51.79709913427039],[4.632054372032379,51.79671388072803],[4.632198780090694,51.796515590325605],[4.632341472426933,51.79629535352136],[4.63252056160314,51.79598915869093],[4.632695443223896,51.795635712460374],[4.632770482010209,51.79545400704372],[4.632884811943922,51.79508778466123],[4.632991145261427,51.794527709318444],[4.633025522597833,51.79396510659205],[4.633007905807419,51.79352526300773],[4.632963184804239,51.79321324282875],[4.632861501508513,51.79282343824205],[4.632782747759038,51.79258061547776],[4.632684669664695,51.79229896020088],[4.632502625099749,51.791937024764145],[4.632337281304954,51.79167145139827],[4.632262719327247,51.79155149159507],[4.632005066248742,51.79120713248774],[4.631492925612012,51.790503981689696],[4.631408297437229,51.79043866458168],[4.631164541016134,51.790134907972735],[4.630687192367996,51.78951739582094],[4.630324549128333,51.7890332622352],[4.628850158052296,51.78710714542483],[4.628793238357314,51.787027811371374],[4.628780375983082,51.78697611667563],[4.628823495101194,51.786886333692365],[4.62907928497928,51.78632335684779],[4.629205575043906,51.78606301778275],[4.629330271556329,51.785897376331],[4.629470950786336,51.78577106304969],[4.629608339479092,51.78566717862262],[4.629775726679732,51.78558568093941],[4.629967582926628,51.78553376022329],[4.630328487077996,51.7859956899356],[4.630824212419781,51.78665616099968],[4.630921547478411,51.78678220482455],[4.63097084268914,51.78682019891931],[4.631036648752212,51.78684126756995],[4.631136043820092,51.78686926277384],[4.631190743441075,51.78690754958469],[4.631483887893241,51.78726762253839],[4.631516364017665,51.78731608868121],[4.631898530726921,51.78780215022697],[4.631882329718742,51.787949654409985],[4.631895282303965,51.787996188891256],[4.63194936625347,51.788071373718736],[4.632391645339692,51.78862130260012],[4.632589863589459,51.78886128085841],[4.632633418369847,51.78889433484712],[4.632686087802398,51.78890499538885],[4.632763279205166,51.78891736237639],[4.632799158489246,51.788936689683695],[4.632845445351131,51.788980598876826],[4.63324410927522,51.78950211638218],[4.633270897842872,51.78954254548546],[4.633587775196315,51.78995360301173],[4.633647589959312,51.790034759090545],[4.633615953852855,51.79011016637047],[4.633587231454595,51.7901605614424],[4.633600156260596,51.79020890137042],[4.63364064844207,51.79027599808973],[4.633955110335037,51.790682651636146],[4.634120429324053,51.790900223651256],[4.63428160129348,51.79104215741566],[4.634448658306682,51.791155742309776],[4.634625578925237,51.791251843341556],[4.63475589781032,51.791322612495094],[4.634940099143654,51.79140637237768],[4.635094847541303,51.79143471819765],[4.635202585880156,51.79143721561247],[4.635308476638833,51.791425765862144],[4.635427880384827,51.79140253209965],[4.635489202025754,51.79136860339593],[4.635548315849617,51.79131736979813],[4.635661872988499,51.79114545714515],[4.636110999689904,51.79046370713148],[4.636250102677097,51.79025686098101],[4.636270444992521,51.79018473531002],[4.636227769655003,51.7900985289864],[4.635953782157888,51.789759235353344],[4.63592123934583,51.78971438352376],[4.63541917988908,51.789077894032545],[4.635392492876264,51.78903127194223],[4.634812120056494,51.78830086061742],[4.634307764241509,51.78765428761285],[4.634264020272362,51.787607555771864],[4.63393316235186,51.787187120285694],[4.633646012831777,51.78681573747884],[4.634497627359901,51.786549728334926],[4.634597978008017,51.78652043793866],[4.635538985042371,51.78623280159492],[4.635772173833446,51.78652203033046],[4.636127362465791,51.78698132546648],[4.636173733638415,51.78702033053721],[4.636612797693346,51.78759086721551],[4.636867436951746,51.78791713324893],[4.637114458792629,51.78822631725034],[4.637193729657219,51.788288758244974],[4.637290132982391,51.788321889498654],[4.63737037489324,51.788326015908375],[4.637381633833558,51.78832453911796],[4.637470431800782,51.78831452604738],[4.637536986272199,51.78829095238676],[4.637599176755471,51.78822941567006],[4.637829273288218,51.78787941121852],[4.638186704174548,51.78735345069153],[4.638476466468605,51.78694292460352],[4.638510101084942,51.78689694710025],[4.638578426042105,51.786791579528355],[4.638956005411115,51.7862288420246],[4.639020827793813,51.78615880632546],[4.639691338806385,51.786147597094754],[4.639768709778009,51.78614886494495],[4.642151302593638,51.78609537895024],[4.643320147244121,51.78606744262826],[4.64373300751227,51.78606154416625],[4.643807895727142,51.786062018787824],[4.644508660181712,51.786057941810334],[4.644522009569028,51.78625802096361],[4.644546035843002,51.78682073868907],[4.644564729456786,51.78735348746482],[4.643755441227387,51.787376747594365],[4.642589004575236,51.78740805737719],[4.6418830815073,51.787420864095665],[4.641810601376535,51.787425564883044],[4.641636216528097,51.787427811250296],[4.641334304892664,51.78744214988129],[4.640658453307815,51.78744817327194],[4.640497597632472,51.78746263253681],[4.640439092423446,51.787477743189385],[4.64037990523453,51.78753413918899],[4.640277448636886,51.78769064396056],[4.639638818671007,51.78863932427531],[4.639533582389434,51.78863684685357],[4.639346740729384,51.78888829479969],[4.639454563066946,51.78888536866865],[4.639283707609418,51.78917640049414],[4.639274303554269,51.78924162925117],[4.639301410668281,51.78928825221824],[4.639380833295531,51.78934191877737],[4.639485506730923,51.789378455518296],[4.639668044305115,51.789386844897585],[4.640285747663342,51.78937607036657],[4.642515669551303,51.78933011998229],[4.643707061927974,51.78930258145532],[4.644698914410489,51.78928821828248],[4.644712719837179,51.789637715236886],[4.644725771075805,51.789679087532214],[4.644747754404304,51.790037410115005],[4.644769418452166,51.79056682285569],[4.644578319436663,51.79057258043475],[4.644398577750166,51.79054563674238],[4.643625493117688,51.79056551288487],[4.643270708459894,51.79058003738888],[4.642646917385116,51.790605756192164],[4.64254440635215,51.79061439536762],[4.641463984902205,51.790648047025776],[4.64034706121987,51.790674489193485],[4.639197184064301,51.79070561396381],[4.638554424672951,51.79072060944078],[4.638371503547137,51.790734925919345],[4.638274868154431,51.79076553406079],[4.638260223835433,51.790770343019545],[4.638173013003681,51.790834816944276],[4.638082732349859,51.790958882632154],[4.63778140665362,51.791412429364705],[4.637753189769734,51.7914576673356],[4.6374832997214,51.79187218912843],[4.637406424855658,51.791990662692236],[4.637380059739084,51.79207462055584],[4.637406235959374,51.79215220505333],[4.637465704558884,51.792229744340034],[4.637559161846111,51.792290468954974],[4.637685490054946,51.79235140351088],[4.638049237789835,51.79247475560703],[4.63857531175149,51.792646625475165],[4.638889344978896,51.792756755270055],[4.639142878009481,51.79282624155727],[4.639365451327647,51.79288056191932],[4.63949850096356,51.792912892985186],[4.64018045392871,51.79304600804878],[4.640299419443211,51.7930493461821],[4.64064565425002,51.79304974329173],[4.640704106852048,51.793038244746384],[4.641505063275988,51.79302166235315],[4.642737638162465,51.79300110419762],[4.646167877526858,51.79293275940017],[4.647153952893188,51.79292014626377],[4.647172895886026,51.793109937542845],[4.647198163384861,51.79359911538968],[4.647237968967714,51.794216896546935],[4.647035648265527,51.79422078158118],[4.647055892779333,51.7946356072256],[4.647091207584059,51.795222651890896],[4.647271477448303,51.79521862766941],[4.647296682118467,51.79553413225484],[4.64730911131516,51.795765945945895],[4.647324433990605,51.79604964724049],[4.647328097,51.79615624860216],[4.647297132803706,51.79616637506332],[4.646488219579731,51.7961826899266],[4.64641922487337,51.79617709298462],[4.646163947109033,51.7961865774093],[4.643847379153677,51.79624237137135],[4.642683740291622,51.79626673364569],[4.641511717380848,51.79629464455704],[4.640685720637443,51.79631184274367],[4.640408529030255,51.796136663794265],[4.639991397359186,51.7962692296252],[4.639905468255942,51.79615539569777],[4.639718273161478,51.79592401556472],[4.638797307395009,51.79474243573221],[4.638756555244043,51.79469030634043],[4.63858700868613,51.79447452087204],[4.638232250871014,51.79400930144804],[4.638108980586798,51.794039481451705],[4.637744523812483,51.794133408585296],[4.637677944994191,51.79413298323952],[4.637532310318689,51.79405644226552],[4.637258078052491,51.79390501653522],[4.637098740076804,51.793826838658276],[4.637023979219839,51.79381784470746],[4.636940755565878,51.793817312504586],[4.636842971589046,51.79386649183545],[4.636770215510452,51.79391221861475],[4.636736006171315,51.793967223806355],[4.636732797630769,51.79401004084172],[4.63676479915677,51.79408766272918],[4.63682692502745,51.79418070328867],[4.636960584054653,51.7943516175655],[4.636989516016896,51.794388704884895],[4.636417360344184,51.794559233581886],[4.636634380754567,51.79484758181206],[4.63801885519269,51.7965843832345],[4.638207453702938,51.7968059683552],[4.638713391905518,51.79663939493249],[4.639134106063854,51.79716954794258],[4.639408462078948,51.79756612459407],[4.639105767185397,51.797623547392114],[4.639376950976883,51.79813622999299],[4.639503119362903,51.798358704868065],[4.639586603776501,51.798344011788764],[4.639662357744525,51.79844410474327],[4.639456297873104,51.79852175661921],[4.639325414794552,51.79855859859588],[4.639197525022736,51.79859055706498],[4.638306155803361,51.798957763203276],[4.638098714576009,51.7990431458753],[4.637930318728924,51.79883252829318],[4.637876229121564,51.798756314477245],[4.637523739794778,51.798303236222665],[4.637401246821825,51.798160780461686],[4.636986601394774,51.79761672574062],[4.636905096233423,51.79751246481858],[4.636154899522006,51.796550272533125],[4.635781959336626,51.796077704236154],[4.635320944660327,51.79549644401958],[4.635220438601729,51.79538406102661],[4.635107781736275,51.79532656609501],[4.634969995791955,51.795303489552644],[4.634869865349621,51.79531833146316],[4.634738531604675,51.79538251900653],[4.634679394297409,51.795434783954946],[4.634602413955943,51.79558370521661],[4.634438017759967,51.795958123881526],[4.634260362422494,51.796328844650205],[4.634024585974442,51.79674048083758],[4.633838298670464,51.797029599851825],[4.633671108513768,51.79727161627621],[4.633518107421064,51.79746133733825],[4.633275256059631,51.797747769394995],[4.632965578334888,51.79804796366134],[4.632678823754127,51.798296178039124],[4.63218728576244,51.79869403697022],[4.631822697958249,51.798966779270316],[4.631609603237091,51.799115596078686],[4.631161718439687,51.799391155361064],[4.630974004531211,51.79951536075558],[4.630886948716815,51.799593765536066],[4.630841756445506,51.79965773009343],[4.630783942591073,51.79977941883985],[4.630775823512823,51.79994091002426],[4.63082578346989,51.80011387311575],[4.630906240116421,51.80025529089173],[4.630985064824923,51.80034508664484],[4.63112495245586,51.80044224391346],[4.631328099057288,51.80053980766867],[4.631584461118392,51.800616296370805],[4.631992705803956,51.80072008300331],[4.632663570013909,51.800874846147494],[4.633303574575361,51.801033536564695],[4.634315637647393,51.80129525458569],[4.634653712879633,51.80138929176695],[4.635007532390002,51.80148781539714],[4.635633921778576,51.8016652442792],[4.636620241431235,51.80197477531392],[4.637364211862305,51.80221591205519],[4.638532117184674,51.8026210361168],[4.639047293531608,51.802804704093184],[4.639727187782491,51.80307096573319],[4.640544258276905,51.803399255582335],[4.641016674231754,51.80360225516949],[4.641765604222517,51.80392416690794],[4.641963634896296,51.80400619737991],[4.64207145311534,51.80403088107721],[4.642104809541244,51.80402748033899],[4.64212720594721,51.80400723616699],[4.642119363159484,51.803978025197054],[4.642061976833967,51.80392424357838],[4.641890735104385,51.80373245152753],[4.641693524889384,51.8035252691464],[4.641547455940516,51.803372087514084],[4.641142597920783,51.80290991400218],[4.640683656305489,51.80234597890476],[4.639714333832817,51.801109134173615],[4.639403329586118,51.80071232493435],[4.638966944267247,51.80014620386012],[4.638773850807675,51.79989336645073],[4.638472659739016,51.79950822973512],[4.639267788951488,51.79917240776805],[4.639454768539641,51.79909102114887],[4.639544293016663,51.79903843241066],[4.639594917641181,51.798997465338154],[4.639659331270971,51.798953232411876],[4.639888152355024,51.798858434463675],[4.639956814166267,51.79883409799081],[4.640097071153177,51.79878415462245],[4.640172755794516,51.7988886332857],[4.640163521885711,51.798943540487],[4.640140498863573,51.799001714475835],[4.640136986804359,51.79903782045698],[4.640337650087509,51.79931134819905],[4.641136996999275,51.80038014567161],[4.641360957759014,51.800629819845255],[4.6416102600138,51.80090778388935],[4.64206671259819,51.801445893970914],[4.642531571212563,51.80197966815646],[4.642752865140369,51.80221538833374],[4.642646580265167,51.80224929349377],[4.643100021318272,51.80279486424537],[4.643195486402337,51.802760890064754],[4.643392507245813,51.80297968123556],[4.643285992644989,51.80302752071618],[4.643395293274682,51.80313891948363],[4.643507521059628,51.803098084162386],[4.643600335280325,51.80319957245627],[4.643754356499615,51.8033757689416],[4.644054651449808,51.80371856440514],[4.644514054701945,51.80423268427619],[4.64478840652049,51.80455905569313],[4.644922055855315,51.80468376920411],[4.645083625186727,51.804806593542146],[4.645119552108442,51.804824110537695],[4.645150051461411,51.80481733627826],[4.645292108861076,51.80475991316795],[4.64564873567749,51.80464010723333],[4.645810015876162,51.80460345024132],[4.645874028902398,51.804609015107125],[4.645928380349128,51.80464522881006],[4.645988715960462,51.80469722130851],[4.645734891142095,51.804792647094324],[4.64537503246,51.80495707706001],[4.646364277431068,51.80578110943492],[4.646809595509458,51.80616713463504],[4.64673946603626,51.806204368252665],[4.646892771613455,51.806324041275715],[4.647518970644511,51.80682449206362],[4.64809619853022,51.80729108244685],[4.64834481757696,51.807488513738264],[4.64894751148771,51.80797719528901],[4.649101981596941,51.808102808811185],[4.649196465472227,51.80818004612018],[4.649298352654053,51.808262748293366],[4.649441322365768,51.808378998318375],[4.650032309676992,51.80884669912377],[4.650127654273819,51.80892239231708],[4.6507967146355,51.80945380243719],[4.650834088667381,51.80948500392718],[4.650907201850784,51.80954558988457],[4.651110119726348,51.8096877616249],[4.651170419818268,51.80971730008688],[4.651231080741288,51.80972464859259],[4.651292439999633,51.809714710793564],[4.651317205596435,51.80970222170669],[4.651461260147983,51.80985460426969],[4.65136722482766,51.80990252842641],[4.651391224132883,51.80993700044584],[4.651335439305206,51.80996245628005],[4.651318620981906,51.80997267342923],[4.651332453967702,51.8099923726075],[4.651728921725057,51.81031562238562],[4.651807411881316,51.81032746881484],[4.652020870329292,51.81035977327785],[4.652082330895233,51.810369190152194],[4.652367742193533,51.81063574330211],[4.652815065333913,51.811083691493394],[4.653011502041445,51.8110877592937],[4.653313248273786,51.81122099762799],[4.653220796842572,51.811273836503034],[4.653393172872781,51.811349492807246],[4.65379745383157,51.81150117760195],[4.653822358874416,51.81150571973086],[4.653868052944438,51.81148639286586],[4.653895943838427,51.811486567157296],[4.654258095087914,51.81164340545942],[4.654366110286679,51.811657499268584],[4.654428427836382,51.81166563037744],[4.654471216668298,51.81167131683996],[4.654587120870814,51.81168674958064],[4.655131120449156,51.811310801154875],[4.655221482127946,51.811360911388384],[4.655835323901499,51.81168343895403],[4.656806454925862,51.81223295421121],[4.656949970344757,51.81224029855037],[4.658111369339782,51.81227642219908],[4.658103720888535,51.81238888695924],[4.658009472611367,51.81239862396637],[4.658002955132947,51.81246696849097],[4.657628864394504,51.81242928906064],[4.657526800567458,51.81243304186164],[4.657363407907025,51.81257344029839],[4.657363232468941,51.81258427776511],[4.657397584762985,51.812648231078484],[4.657741757745139,51.81324854552214],[4.657738251594076,51.81325936228454],[4.657205059669377,51.81348210410144],[4.65716294087833,51.813486229470186],[4.655160492890251,51.812117152942136],[4.654815365791775,51.8118858454593],[4.654794277105526,51.81187693998236],[4.654560074111378,51.81183960776975],[4.654414322011972,51.81181624666527],[4.65437279409358,51.811809794130774],[4.654096240042284,51.81176548734779],[4.653958377271314,51.81174346573645],[4.653884864716768,51.81175823142315],[4.653835213671003,51.81179043683116],[4.653810158010765,51.8118207303319],[4.653819679179237,51.81187523972409],[4.653864832867465,51.811914746750354],[4.655566982289256,51.81308275393609],[4.657073892345802,51.81412591255455],[4.657091377569998,51.814126021339014],[4.65812412895053,51.81367568289957],[4.658141576446336,51.81367811396992],[4.658488554816177,51.81389987430314],[4.658342101238006,51.814073926836876],[4.658347885479595,51.81412815463694],[4.658386427779862,51.81413923256096],[4.659025523025166,51.81385572558148],[4.659050530213482,51.813905685244684],[4.659195566518351,51.813896521339956],[4.659293685875079,51.81418873274881],[4.659180349770227,51.81424583503035],[4.658966064969457,51.81436630754218],[4.658821228536212,51.81446605046987],[4.658754584622516,51.81446770151561],[4.658698241150797,51.8144761256191],[4.658659765843876,51.81448672532361],[4.658327835366957,51.814776009914645],[4.658271830473412,51.814840691590966],[4.658351600116823,51.814877057275424],[4.658907522434535,51.81520669168028],[4.659692097131217,51.81568741339695],[4.66001500477437,51.8158798605655],[4.660057228143473,51.815869283637575],[4.660106005302369,51.8158912620527],[4.660190168884032,51.81583604375815],[4.660302533730988,51.81576190363174],[4.660881042268623,51.815337369881846],[4.661015910500486,51.815236014897],[4.661055014057331,51.815212257082095],[4.6611471105937,51.815155538442816],[4.661168558002449,51.81514225193019],[4.661584092255278,51.81501243934941],[4.661776672561349,51.81502446847579],[4.662112207001233,51.815053379572554],[4.662202378162354,51.815064517239286],[4.66229176118676,51.815072811343235],[4.662440005770964,51.8150974678582],[4.663305460577909,51.8154181539051],[4.663602152562802,51.815532754680454],[4.663681601227327,51.81556343658767],[4.663853280930117,51.81563262187262],[4.663740116786896,51.81573101819068],[4.664403645454898,51.81607832045013],[4.664488677894422,51.816020523796645],[4.665323305822079,51.816526289408564],[4.66564631243281,51.816792524851486],[4.665566151505729,51.81683203067762],[4.665696024410297,51.81693837420244],[4.665567183010113,51.81705370762283],[4.665549779695973,51.81707450287373],[4.665548383522864,51.81716171678956],[4.665605523149213,51.817337804801234],[4.66707046701534,51.818398638498614],[4.667336902821867,51.818584525520755],[4.667536099730301,51.818704710425564],[4.667770065945509,51.818838011362395],[4.66812708152851,51.81901025866106],[4.668296959926222,51.81908923203441],[4.668344092043641,51.8191104229833],[4.668776950742917,51.819305324922965],[4.669214616186245,51.81951238396074],[4.669223640460615,51.8195209550319],[4.669252932656693,51.819564229496635],[4.669333968861483,51.8197051075159],[4.669354671071126,51.81971245923188],[4.669573893536837,51.8197525086743],[4.669820616818525,51.81979143503165],[4.670056126699062,51.81982848562838],[4.670335325518917,51.81986760933299],[4.670393155312748,51.819870801164264],[4.670443254361852,51.8198625912705],[4.670506027831714,51.81984284629371],[4.670537456290208,51.81983039385066],[4.670559247003225,51.819821753070755],[4.670645701571452,51.81977918567269],[4.670687727280112,51.81975492655637],[4.67073228667645,51.81970229758017],[4.670759195158698,51.81963356101227],[4.670762438387801,51.81956055058468],[4.670754123311355,51.819507340846776],[4.670731262568979,51.81947855710532],[4.6707297315542,51.81947003189536],[4.670724040510697,51.81938277381987],[4.670687372437032,51.81933197163129]]],[[[4.234123082191945,51.91437113569433],[4.235515273912458,51.91376542790949],[4.236717651617309,51.91366159066441],[4.238032597365098,51.913741038077],[4.238873702246503,51.913453257133455],[4.24142414004987,51.91253827357215],[4.242098054814903,51.91224329156675],[4.242611575393619,51.91224919766359],[4.243082322941997,51.91221416792719],[4.243211277736052,51.911590516528136],[4.243034168311819,51.91112246635402],[4.243262664853902,51.91083384975244],[4.244882520076261,51.910799929096136],[4.245352878594701,51.91077959713943],[4.245800316662918,51.91069233038509],[4.247223925962909,51.910251953205936],[4.248529640664716,51.90983596434594],[4.251434440198904,51.908900198272335],[4.253742195019681,51.90807447580747],[4.255260039386995,51.9074974905406],[4.258841429744413,51.90609050801815],[4.261930662285951,51.90488528654488],[4.263539406067151,51.90425164682873],[4.265037022458983,51.903873053456365],[4.264951594832514,51.903699084008146],[4.265091964030173,51.903644157844255],[4.266032833585194,51.903272620712784],[4.267229547915146,51.90279564418641],[4.267588618740813,51.902650033752316],[4.267857401832096,51.90252820643081],[4.270068203734065,51.90146537151546],[4.27146204296169,51.90077409648829],[4.271778250939787,51.900656710751754],[4.27314198608306,51.900185002280686],[4.274709506073044,51.899669916728065],[4.275414283302919,51.89944278102351],[4.275683562565018,51.899349843952514],[4.275681873507317,51.89930002169666],[4.275775449205124,51.89926090673143],[4.276884411066109,51.898967261261774],[4.277199070783951,51.89886081483409],[4.27724268378046,51.89878393580738],[4.277945376985882,51.89855560400014],[4.278085845224699,51.898560155334366],[4.278333362892293,51.898469588463094],[4.278727043282864,51.89833859317536],[4.278938605019094,51.89828510523001],[4.279358661758273,51.89830248549037],[4.279457133022946,51.89830147860569],[4.2796175293414,51.89825899048376],[4.282021458776472,51.89749891570898],[4.285683432942107,51.896327882541044],[4.285838717334649,51.89628920873261],[4.286049607159586,51.896262411684944],[4.286288840739584,51.89627045961627],[4.28644564213459,51.89628909057897],[4.286931741126153,51.896385514935886],[4.287017881435618,51.8963939343723],[4.287184742287561,51.89639356142496],[4.287943658097765,51.89625059952551],[4.288699582256206,51.89609328172151],[4.289124664297284,51.89600667513071],[4.289838995206418,51.89586121958114],[4.29104037399862,51.89563630545226],[4.29323517607144,51.89526295486936],[4.29471319475851,51.8950156749586],[4.295082449855212,51.89494259196618],[4.29516691708356,51.89496828019551],[4.295553959914088,51.89493561912552],[4.295923690924631,51.894206795144946],[4.296163564200291,51.89425689381816],[4.296253455941691,51.89423089015814],[4.296482581669758,51.89427701772052],[4.297201795490612,51.89442704706424],[4.297282185369165,51.89443166442258],[4.297324445453352,51.894340185467264],[4.297557643753446,51.89402892879292],[4.298099611489947,51.89412621164579],[4.298162245044635,51.8940200822493],[4.297926901679447,51.89397235241459],[4.29762906591632,51.893904429499415],[4.295807924256848,51.89356300916509],[4.294376451281963,51.89327021784077],[4.294192220103749,51.893110568382056],[4.294197710195463,51.89305629720796],[4.294224112430676,51.892999638948524],[4.294586271334004,51.89289178150459],[4.296288681212602,51.8932257966521],[4.297639529710698,51.89347252592344],[4.298017671232769,51.893548419607676],[4.298379693650776,51.893618226355215],[4.298457284247423,51.89363507524953],[4.298578132632519,51.89345013037342],[4.298866089782166,51.89349537816501],[4.299311941278761,51.893582863242614],[4.299565979796473,51.8935818597351],[4.299675556114641,51.89355242303591],[4.300949479723339,51.89303053013367],[4.301523137976226,51.89278241367673],[4.301998376203059,51.89256809451792],[4.303150260014912,51.892002341338404],[4.304111360436902,51.89151197965596],[4.304568067170459,51.891269350177694],[4.305135530422555,51.89094761050296],[4.305063596701493,51.890921141474436],[4.304868862537624,51.89078076721366],[4.304760999795354,51.89065280503316],[4.303980516046291,51.891039418292074],[4.301904455903133,51.89205264564887],[4.301088799107426,51.8924602054043],[4.300881989497627,51.8925610031771],[4.299790767300477,51.89235839098874],[4.299074324155778,51.89221549976331],[4.297676560557751,51.89194396366516],[4.296301599295433,51.89166152654943],[4.2949331304783,51.89137010144457],[4.294944741998016,51.891304144827956],[4.294612756557515,51.89123499319833],[4.294578042603566,51.891290411969244],[4.294501718928558,51.89127318572919],[4.294592714747161,51.891098548105965],[4.295023822643485,51.8912078475026],[4.295079136404609,51.89111132918502],[4.29473447602042,51.891031737104406],[4.294611098085104,51.891028525854615],[4.294772218814433,51.8907141520079],[4.294908363024298,51.89074122441049],[4.29497044156045,51.89079547933442],[4.295276472722261,51.89081690440875],[4.295301076438945,51.8907655201106],[4.294816914345104,51.890659857930366],[4.294936043808129,51.890425739017715],[4.295257549533802,51.89049685714062],[4.295302118986481,51.89044772318794],[4.295561362189972,51.89048935856886],[4.295592586353583,51.89044009960111],[4.295353708657548,51.89038420286652],[4.295358497966661,51.8903243762141],[4.295028918928107,51.890310989700005],[4.295140457356029,51.89009744592231],[4.295385712931029,51.889615595605456],[4.29572162489295,51.8896600070608],[4.296750596995763,51.889863627765436],[4.297722359886127,51.89005328919523],[4.298810210305027,51.8902718893353],[4.298885789770087,51.89014755633647],[4.299000182605381,51.889815196572904],[4.299535320975546,51.889917055407324],[4.299594587172456,51.88981179746562],[4.299782458227733,51.88944166592335],[4.299865821903471,51.88935740444421],[4.300017652713421,51.889028744916175],[4.300141214124407,51.88879982336832],[4.300255717238041,51.88866952772358],[4.299235170728768,51.888462918946104],[4.298274766239214,51.888270407834945],[4.297768161044695,51.888162355408504],[4.297089031656136,51.88801437809692],[4.295959837251939,51.88780066752287],[4.294398824087337,51.8875087364461],[4.294420852495978,51.88746029652463],[4.293167544370641,51.88720656554411],[4.293106198290253,51.887259671996844],[4.292726986134571,51.88719601036449],[4.292524338840239,51.88712599275607],[4.291987946609039,51.88803686674813],[4.29143240598536,51.889082269712034],[4.290865698398894,51.89015698504798],[4.290662285486767,51.89052850742468],[4.289415257023318,51.89028821520951],[4.288932115756396,51.890192731706],[4.287683466413887,51.88993421208524],[4.287377633389843,51.889870962076586],[4.287033152002801,51.8905352219563],[4.286935615880161,51.89066914800261],[4.286599006281461,51.8914373518325],[4.286481890519782,51.89151909361323],[4.286153924413814,51.89227434580647],[4.286030570123358,51.89237228618397],[4.28561128391303,51.89331326194365],[4.282851429899885,51.89274851130687],[4.284030007564104,51.89049247947277],[4.284638960367138,51.889317546281696],[4.284772826725295,51.88930099627423],[4.285817236757684,51.88919543765645],[4.285866817576321,51.88909525711114],[4.285966631076166,51.889089741409215],[4.286929827502565,51.887257211132656],[4.286963024136697,51.88719584490232],[4.287489200027019,51.88617779983036],[4.287417149022009,51.886105641137625],[4.286469730408236,51.88591483171152],[4.285686169736324,51.88575974448017],[4.285612790390112,51.88575905637989],[4.285208630298051,51.88651036562274],[4.285044005629959,51.88681243477297],[4.284425226395806,51.88667191739842],[4.284279457126367,51.886953130932135],[4.28439193023085,51.88697534788772],[4.284449358215887,51.88687833828849],[4.28454864835058,51.8868939799303],[4.284978259773225,51.886925625026485],[4.284496437825064,51.88784988063103],[4.284182450471015,51.88844306400282],[4.284052555258064,51.888501845010424],[4.283659194461594,51.888606924669105],[4.283541033689711,51.88861239547886],[4.283036995133119,51.88851991733388],[4.282950547132187,51.88850774985033],[4.282487924959583,51.88842714119397],[4.28191603047867,51.88831285815678],[4.281788044428803,51.888293847573344],[4.281258145430573,51.88818485997618],[4.280972135779441,51.88785906872809],[4.280973373118779,51.88780875719957],[4.281308921921531,51.88718830119152],[4.281713269077848,51.886432232664305],[4.281733852787961,51.886341329029094],[4.282140848963315,51.88557870401684],[4.282113595763149,51.88551676953038],[4.281855674398335,51.88545692374996],[4.281737769205137,51.88543529772116],[4.281657932417684,51.88547673990454],[4.281408337617371,51.88594342472661],[4.281116044948687,51.88650119177187],[4.279552108072787,51.88618116443678],[4.278854810263024,51.88604632855935],[4.278692484769631,51.8860334419615],[4.278593993932241,51.88610399676297],[4.278505970082143,51.88625748944858],[4.27813248723718,51.88618247964569],[4.27660250928229,51.88896442617216],[4.27604159322808,51.8900098363494],[4.274971032293294,51.89203132818701],[4.274935032305055,51.89210402040091],[4.274957182558488,51.89215287505662],[4.275032252752115,51.892169972725114],[4.275285851458548,51.89223714804243],[4.275315911460529,51.892624014942164],[4.27543407130234,51.89282152153394],[4.27547305663349,51.89294860047316],[4.275545058260389,51.893106830413394],[4.275591605857941,51.89324856193686],[4.275595208261371,51.89330537062063],[4.275591713562118,51.89344675807958],[4.275549398481774,51.8936737131672],[4.275501664969846,51.893816100482475],[4.275579369529343,51.8939630303183],[4.275601599633133,51.89400866032862],[4.27560803591156,51.89406885051793],[4.275524289013831,51.894487027809426],[4.275517357406898,51.89456489784018],[4.275510293926094,51.894850638381925],[4.27555636350611,51.89509623695711],[4.27557829807794,51.89527192884169],[4.275686026384024,51.89536869091816],[4.276129995056539,51.89546385821523],[4.277132553664217,51.8956747553469],[4.277210288957486,51.895719360641],[4.277218913475043,51.89579247510601],[4.277083335368791,51.89608022756005],[4.275161105487779,51.8956966279903],[4.274930593173976,51.89611186677216],[4.274561973811185,51.89605637682996],[4.274393438276848,51.896394136444535],[4.273597133382196,51.89622581672262],[4.273514473268235,51.89617806472659],[4.273417725730145,51.89604230884084],[4.273368508993705,51.89580635712026],[4.27328275177844,51.89524373530642],[4.273250785286843,51.89517027064711],[4.273175674483254,51.89512091261976],[4.271684989235023,51.89481437988248],[4.271593231443149,51.89479725108446],[4.271176482109588,51.89471522792524],[4.270232996211369,51.894529356992294],[4.26963494058531,51.89440844385396],[4.269602518894381,51.89433677971449],[4.269928374501852,51.8936951021265],[4.270294462615873,51.893011740227124],[4.270319108867538,51.89295984541669],[4.270457512464741,51.89269406319318],[4.270492980115305,51.89262627075622],[4.2706497860863,51.89232479164793],[4.270713151623975,51.89220848986592],[4.27089085545392,51.892241146616854],[4.270978782006855,51.89207630365403],[4.270814165909771,51.892037319981824],[4.270971680794357,51.89172384774314],[4.271481604263179,51.89085655718071],[4.272031685196317,51.889832355766984],[4.273132581574566,51.88775117650019],[4.274277670466677,51.88559892232567],[4.27478403191906,51.88463416444468],[4.272948744192488,51.884262832455136],[4.272330430628474,51.884140061616606],[4.272232249824778,51.88428196897409],[4.271911000499384,51.88422059670298],[4.271862557309187,51.88417291109627],[4.271724396590672,51.88422850242682],[4.271650636140873,51.884360963619],[4.270284959262759,51.884089791647355],[4.263296538108366,51.88268996342218],[4.263494237932175,51.88233778736557],[4.263793852296461,51.88179510119437],[4.263835042890205,51.881732010934456],[4.264123364575088,51.88120702142616],[4.264159494055603,51.881129430982604],[4.264468418857787,51.88051379886963],[4.264570711212228,51.88032471049929],[4.264874218676608,51.879725154589885],[4.264904277939036,51.879673570542025],[4.265045225490395,51.87938897937918],[4.265067445516483,51.87933396568569],[4.26521088496369,51.87904965611765],[4.265230481929643,51.8789995208593],[4.265614873218772,51.87821557216962],[4.266790567986325,51.878405375598405],[4.267056166520958,51.87837216661816],[4.267538616402371,51.878287475795716],[4.267628065617346,51.878278650848536],[4.267888407499809,51.87823880901313],[4.267992106390539,51.878243797305274],[4.268361476893381,51.87831325187054],[4.268513882766248,51.87872386836273],[4.268580071668238,51.87881211219788],[4.269169672649928,51.87894598506486],[4.269250596088317,51.878961464977984],[4.270247660622109,51.879159339361756],[4.270336550655395,51.87917308748273],[4.271372862241768,51.879386035079335],[4.271458835843938,51.87939975553849],[4.2724273141471,51.87959088740509],[4.272892005039864,51.87968458751866],[4.272978434778349,51.87969676237534],[4.273286231444474,51.87976135999304],[4.273435404798305,51.87978238774372],[4.273545783519182,51.87977040202866],[4.273729198834847,51.879671495221054],[4.273838162140868,51.87961562395712],[4.273835528448624,51.87951985683642],[4.27358525446687,51.878815930879206],[4.273473257488705,51.87847228620469],[4.273430004689478,51.87840039169576],[4.273355203061857,51.878154390565975],[4.273074350220792,51.877406302332304],[4.273054790824433,51.87735424558091],[4.272717335905743,51.87646768267888],[4.272431946257861,51.87570161463651],[4.272386286766235,51.875642857694636],[4.272312694924452,51.87543260943752],[4.272155057505203,51.8753499509617],[4.271987876079819,51.87489532876935],[4.271947266073217,51.87483481279107],[4.271868554218414,51.87462941911439],[4.271938832091033,51.8745358921422],[4.27195664052139,51.874456576574794],[4.27171706618916,51.87386152287132],[4.271668898759975,51.873786355679194],[4.271481412324796,51.87331037774528],[4.271255668318891,51.872696099115785],[4.270771004502771,51.87139393455806],[4.272824744986341,51.87108698472239],[4.273471861259142,51.87099892976426],[4.273954550969033,51.871221056235264],[4.27431388449529,51.87216640424416],[4.274602186539199,51.8729331409924],[4.274727234295714,51.873271488993815],[4.274808476519667,51.87349303461048],[4.27485175198405,51.87354699306522],[4.2750143916148,51.87354530715608],[4.275443079995248,51.87465518067731],[4.275786229828837,51.87553224052643],[4.276020452249575,51.87605949252207],[4.276041977035855,51.876116470879126],[4.276293048775567,51.87678904369835],[4.276687197495832,51.87781419703278],[4.276707093794883,51.877869611037724],[4.276935493441596,51.878498612873656],[4.276358847138285,51.878582451373674],[4.276698686152003,51.879477282858666],[4.277050758513092,51.880417649434825],[4.277185949883289,51.88078589681567],[4.277775467246624,51.880705400933245],[4.278185658627451,51.881742184179316],[4.279980801888876,51.882132540142614],[4.280278241314876,51.88219547280333],[4.282648839899929,51.88267250037734],[4.282732200836,51.88269109055516],[4.284706231155617,51.88308486238427],[4.287209703166308,51.883588980245364],[4.28781800363368,51.88371325527915],[4.28777436989875,51.88379233129099],[4.287988466007699,51.883836657866176],[4.288032023763701,51.883760677779144],[4.288927566458603,51.88393963588439],[4.289129064705232,51.88364590543323],[4.289182903770652,51.88359286030479],[4.289436201994689,51.883090193973906],[4.290353372920269,51.88327114928665],[4.290430563642085,51.88328645020226],[4.291431158928764,51.883483918378644],[4.291561916158852,51.88350862182962],[4.293305715322975,51.88385713328257],[4.293381817658133,51.8838658421613],[4.294682026837551,51.88412491037471],[4.294760132401866,51.88413699168049],[4.295901389941143,51.88436514875493],[4.296155510521004,51.88513241434372],[4.296231969476116,51.88533286710607],[4.296514185103184,51.88538903610758],[4.296512611798042,51.885453924730236],[4.297306012835262,51.88561716047744],[4.297827319763557,51.885719673117194],[4.298701610955647,51.88590106834934],[4.300448874400634,51.886250408178306],[4.300548570035891,51.88626668542923],[4.302120044030889,51.886591533848176],[4.302223535911561,51.8866060388464],[4.304435746917628,51.8870464503701],[4.305065453902047,51.887168898288245],[4.306343061585568,51.887420659798714],[4.306893886384076,51.88752869440481],[4.307014918854255,51.887507614487],[4.307132323234265,51.88742920983904],[4.307142949824797,51.88729924242613],[4.306817501886572,51.8862117330852],[4.306800790882559,51.886160869862955],[4.306367829116748,51.88470630464023],[4.30635145701242,51.88464138029469],[4.305940303535489,51.88326959458988],[4.305848234128861,51.882953649908806],[4.305826698105213,51.8828780960965],[4.305766852548054,51.882678835551246],[4.305683879709025,51.882383490909156],[4.305653687096883,51.882286438398424],[4.30563848184092,51.882225136439395],[4.305424388305226,51.88152135794882],[4.305336995147385,51.88116726161062],[4.304453285096539,51.88099873211684],[4.304281172410372,51.88095985466035],[4.304186464884586,51.88094465932608],[4.303430899129166,51.88078839952992],[4.30249503700612,51.880604405532],[4.301631076039341,51.880430488119444],[4.301540590821693,51.880413264888354],[4.299010933900555,51.87990650033528],[4.298904567825832,51.87989080527844],[4.297973027630548,51.87970204097272],[4.296111394806713,51.87931727811711],[4.295665001260093,51.87922384020363],[4.293735684825543,51.8788291193704],[4.293320748298159,51.87874564288415],[4.293164118467853,51.87870521584908],[4.291452175347279,51.87835803079164],[4.290120903595614,51.87808082897067],[4.290290121307297,51.87770731058777],[4.290399939577566,51.87749556085424],[4.290769133867489,51.87678623053641],[4.290812918909634,51.876700445434686],[4.291255870919358,51.87585528507463],[4.291448754813447,51.875896052977176],[4.291577123355959,51.875915186275286],[4.292949551204398,51.87621224003519],[4.29732417887957,51.877121562605446],[4.297481383057061,51.877155408592074],[4.298031579856782,51.87728335110575],[4.303582329556717,51.87836192043564],[4.303981543922032,51.878440957491485],[4.307602562846303,51.87728900312294],[4.307939535445552,51.87662525991752],[4.308182359556853,51.87609690956138],[4.308227546524216,51.87600338883975],[4.308719316873116,51.8749339684011],[4.308958695387776,51.874392035699664],[4.309213909999118,51.873850119317694],[4.309475042333508,51.87326980447966],[4.309835485321526,51.87249401311744],[4.309861553195292,51.87243257517685],[4.310060078552228,51.87202871751866],[4.310290002236479,51.87151469610133],[4.310554949546416,51.870930543188145],[4.311004823951119,51.8709634402368],[4.311143992379833,51.87098394197732],[4.311229314805257,51.870937497334815],[4.311272913249988,51.87085763854973],[4.311343849110527,51.870698029955165],[4.311394831382079,51.870623142260484],[4.312713147000702,51.87077559826727],[4.313388292769971,51.87085454716956],[4.314072587411784,51.87093460860592],[4.31390160331925,51.87130414390571],[4.313874382442373,51.87136170151736],[4.313670679710759,51.87180938884889],[4.313528741838564,51.87213196276455],[4.313473925893534,51.872245268500706],[4.312904750878803,51.873471936802325],[4.312850462377769,51.873580472123784],[4.312654964418536,51.87401545850073],[4.312416133933509,51.87451895129754],[4.312253573476167,51.87488378723772],[4.312345914871988,51.87491030937444],[4.312231411008577,51.87516577831133],[4.312016335135126,51.875651809962214],[4.311896349644864,51.87568284085721],[4.311538068426607,51.876490657854376],[4.311319897439116,51.87694866100278],[4.311292632791143,51.87700776551995],[4.310747255796351,51.87821064169023],[4.310360250903759,51.87906709551666],[4.310327681863074,51.87912124858892],[4.310273881573582,51.8792611425714],[4.310048486495486,51.87975843089735],[4.309765905005269,51.88036254966754],[4.309702954579489,51.880501327520186],[4.309763428624358,51.880727172206754],[4.310186784955329,51.88215054064427],[4.310247726799698,51.88235703512203],[4.310356870007219,51.88272745490934],[4.310856493048703,51.884398357649374],[4.311206084183905,51.88559588327623],[4.311353872878458,51.88607736675624],[4.3115393407902,51.886709903246995],[4.311580473182065,51.88683840959359],[4.311619030507692,51.88695256841727],[4.311708300798242,51.88723067665794],[4.311713231343245,51.887286076786694],[4.311875534567671,51.88782382035249],[4.3120246111375,51.888304410257724],[4.312162221678628,51.8887762503056],[4.312281475870627,51.88916121279218],[4.31226567355696,51.889595519449244],[4.312307159800311,51.889692027973986],[4.312373637473768,51.88973753970109],[4.312456272011973,51.88975261783215],[4.312563402085509,51.8897200501305],[4.312618057704936,51.88959706593085],[4.31264696804025,51.88943436307514],[4.312732163146558,51.889045464237974],[4.312819185747445,51.888649873574856],[4.312855829586336,51.8885300801137],[4.312983772199614,51.888481572571635],[4.313361308673342,51.88851225000222],[4.313495947806786,51.88851515799337],[4.313763692396843,51.888532830329474],[4.314864992169392,51.88862624297854],[4.315031903244964,51.88869254093309],[4.315074876989612,51.88874428799506],[4.315062924950364,51.888808307998104],[4.314651268273042,51.88922893651183],[4.314540093838668,51.88934379282301],[4.314320066281723,51.889528493412726],[4.313903614064489,51.88993978546102],[4.313904965277823,51.889988055969496],[4.313996764284433,51.89005612039746],[4.314084171103375,51.890081047933265],[4.314208393977736,51.89008373048765],[4.314331680576254,51.8900207282814],[4.314425033095723,51.88990132280567],[4.314519606390718,51.88980063803681],[4.315100251208016,51.889184519552785],[4.315344372123698,51.888933585527894],[4.315816868725736,51.888409638412945],[4.31611725103344,51.88807250654437],[4.316436318924315,51.887721092679584],[4.317005307568764,51.88722460071318],[4.317555442556729,51.88674870786716],[4.31793088536894,51.88642838468098],[4.318212371387153,51.886183204352704],[4.318507970349459,51.88594073338527],[4.319216361806145,51.886069755623204],[4.319559309960493,51.886133776830654],[4.319634242958386,51.886139360415065],[4.320264524545101,51.8862563124541],[4.32137085500946,51.886452419750874],[4.321536745972073,51.8863857956354],[4.322032713880234,51.88534190864701],[4.322434798721883,51.8849864574756],[4.322551159218191,51.88435164199427],[4.322775773853196,51.88321264654478],[4.322902501887732,51.88263276264638],[4.323044237868011,51.882052886010676],[4.323190286721537,51.881519629063455],[4.32311803008669,51.88145407150614],[4.323209520854397,51.88120006133536],[4.323311395592762,51.881159306749744],[4.323400989684268,51.88109121508281],[4.3234705756912,51.88100513591957],[4.323602252059919,51.88074439257074],[4.323954840005043,51.880010940823475],[4.324078253225046,51.87978199342038],[4.324132106139681,51.879691125974695],[4.324175651520533,51.87959526174044],[4.324196008256892,51.87952783367055],[4.324259296407651,51.879478728891854],[4.324449289471548,51.879361351468226],[4.324534861988322,51.87935735074218],[4.324608538433054,51.8793274368171],[4.324685562823181,51.879244004969046],[4.324601068318651,51.87918465953289],[4.324539194405213,51.87910332583033],[4.324530016946379,51.87890930767243],[4.324567643122514,51.8787638416644],[4.324673718234099,51.87863318842857],[4.325001373925811,51.87840686141729],[4.325255822702736,51.878119872111895],[4.325666394706131,51.8776835843645],[4.325763707607314,51.877606011712984],[4.325810716307882,51.87753985614725],[4.326274307801085,51.876445980314216],[4.326750383735218,51.87535221626024],[4.327281040355633,51.874258941942486],[4.327553878625248,51.87372050081761],[4.327832134849782,51.873181849949255],[4.328421967342744,51.87210510461813],[4.328797158602413,51.87141468094682],[4.328831256258952,51.87134750444376],[4.328877163582989,51.871256821229466],[4.328902074115579,51.871208013574254],[4.328936609369777,51.87113993759271],[4.328983953771773,51.87100578314977],[4.329018883893236,51.870885453331624],[4.329024246925058,51.87078150108028],[4.328986472165989,51.87068593517916],[4.328912063041797,51.87058823237338],[4.32861653804849,51.8703202784493],[4.328449174772948,51.870168964102945],[4.3283005979052,51.87003433343084],[4.328087394018813,51.86984699182193],[4.328068549785972,51.86979740231408],[4.328130018974569,51.86973627971977],[4.328503675735722,51.86976610053417],[4.329416956248453,51.86982374851709],[4.329740638791026,51.8692127284946],[4.329808424899364,51.86906004813161],[4.329831539780445,51.86892786939353],[4.329837147759276,51.86879566157149],[4.32980553783726,51.8686860872719],[4.329764893470323,51.868606237243554],[4.329688939262261,51.86850335951466],[4.329563556707496,51.868375133557315],[4.329405582777744,51.8682502274751],[4.329259907019295,51.86815188290847],[4.328992402710387,51.86802250538401],[4.328794757543241,51.86793607873824],[4.32854876655351,51.867849215950315],[4.328315573160753,51.86778543665494],[4.328048793010098,51.86773180546455],[4.327750337633471,51.86769569327502],[4.327477269161405,51.86767903592666],[4.327193948001907,51.86767286632306],[4.325816599318292,51.86767461979022],[4.323978924988495,51.86768096460853],[4.32324970179173,51.867668940898874],[4.32287398152411,51.86765676225346],[4.322397315475456,51.867629731562445],[4.322323136340212,51.867628800978004],[4.321714980806384,51.86762689758446],[4.320577571697133,51.86760070170175],[4.319382607439163,51.867575778265746],[4.318267997953781,51.867555057318334],[4.317610254128641,51.867534875004125],[4.316849070307212,51.86749968210298],[4.314989262636504,51.867350458079244],[4.313850543710435,51.867257217014],[4.312977394479431,51.867180330039766],[4.312550836675629,51.86715010496997],[4.312552453646705,51.86701257108133],[4.312553523128794,51.866915419730724],[4.311453399472732,51.866882379690516],[4.310201399527825,51.86687271026027],[4.309131731489622,51.8668734764921],[4.308755481738764,51.866866409224365],[4.307604586284794,51.86686473733756],[4.307579616597768,51.866984637687366],[4.307578566463626,51.8670457891911],[4.307575481601235,51.867191825791515],[4.307569942762332,51.86763126055718],[4.307444129801808,51.86762790964739],[4.307316238202212,51.86762441094611],[4.305817427104482,51.8675977164078],[4.304714372629646,51.867564714860144],[4.303537009421091,51.86753617965761],[4.302457019029435,51.86748027335432],[4.301320133571889,51.86743286318868],[4.300211465906321,51.867390864674476],[4.299403332503638,51.867349833070904],[4.298273085373381,51.86730400365617],[4.296734629423006,51.86722805017295],[4.293061846740955,51.867067178677786],[4.291274982835586,51.86699038770058],[4.289959699190695,51.866926105344255],[4.286622217706756,51.86677797058743],[4.284890466810829,51.866698373531875],[4.281537684315106,51.86654659569442],[4.275391416728583,51.8662839196237],[4.273633486643339,51.86620248905458],[4.271689780236382,51.86611565396881],[4.270516299401228,51.86606721004326],[4.269908082523656,51.86605174727114],[4.268937764716892,51.866047414926044],[4.268231978735932,51.86606662804722],[4.267699181739653,51.86608593736075],[4.266771961680858,51.866141998106706],[4.266220222082702,51.86618537785043],[4.265712371708685,51.86624065857502],[4.265233948151077,51.86630267060428],[4.264612679714283,51.866392605221186],[4.263930752285487,51.866507763057],[4.263063891321893,51.866666824727936],[4.262412722929046,51.866801880562484],[4.261901021281873,51.86691065761507],[4.261410288525471,51.86703098755512],[4.26081605398069,51.86718929124122],[4.260510042536069,51.867273969403996],[4.259965323772414,51.86745235620712],[4.259364319368832,51.86766413637019],[4.25727170812386,51.86839267397419],[4.255527898651255,51.869007502304434],[4.254249948660981,51.86944679855654],[4.25327801828002,51.8697847764621],[4.252114712473026,51.87018928481623],[4.250032535800519,51.87090798852304],[4.247971128797999,51.87162698660689],[4.245875233189755,51.872355290464384],[4.243766017339023,51.873096460883495],[4.242942840919431,51.87338238290617],[4.242537999773998,51.8735304396213],[4.242185433684367,51.87367203627691],[4.241811624506798,51.873829168189836],[4.241338998402236,51.87405191518294],[4.240767387463886,51.87434672770303],[4.240463972146123,51.87452247750512],[4.24018948149462,51.87469192811468],[4.239981343198339,51.874826283850474],[4.239823845209998,51.874936746573475],[4.239671261312354,51.87505061182686],[4.239467998722389,51.87520617639989],[4.239264241082211,51.87538109017877],[4.23901450726494,51.87560936189673],[4.238783034257884,51.875840908386536],[4.238615658527769,51.87602766034698],[4.238239114245062,51.87650295159898],[4.238061862726305,51.8767497359367],[4.237289121221843,51.877847993550574],[4.236516086778666,51.87893991949632],[4.235780863830076,51.8799866625562],[4.235363105375597,51.880587090342146],[4.235293213717425,51.88069479347254],[4.235315020490235,51.88077139563032],[4.235401782503064,51.880867989135886],[4.235460942606877,51.88091889280609],[4.235663596024041,51.880984234765975],[4.236241320222779,51.88105815664175],[4.236856152556507,51.881132308745265],[4.237039835041305,51.88114055985838],[4.237157976901704,51.88111900663378],[4.240993771708207,51.87978100023181],[4.242637906248297,51.87919134934012],[4.243770230404489,51.878804438031466],[4.244561944393711,51.87852968813334],[4.244658656852883,51.87853062893973],[4.245171870982596,51.87858271741669],[4.245294845023542,51.87858391303885],[4.245458863643536,51.8785287325606],[4.249325291856976,51.87719720598786],[4.251209506905324,51.87653659994251],[4.252053527260099,51.876250950946705],[4.25218257936969,51.87624239107457],[4.253592392421911,51.87774350544833],[4.252623658603224,51.878096219369105],[4.25254028066942,51.87812870491725],[4.251444909778815,51.87850909010732],[4.251361224237367,51.87853718429247],[4.250592964598575,51.878792980911896],[4.250342340779503,51.87887649171813],[4.250203566348711,51.8788734710792],[4.250111568638124,51.8787849658971],[4.248775027642045,51.87925254045177],[4.248803910503179,51.87934701498696],[4.248773462370393,51.87941330097207],[4.248306033252094,51.87957806242394],[4.247500497871345,51.87985541269204],[4.247232972501568,51.87994726917211],[4.24653740756795,51.88017922915734],[4.246439244429728,51.88021892079231],[4.2458153664699,51.88043544277122],[4.245053087671162,51.88069951989225],[4.244160469049814,51.88100542099547],[4.243639118131367,51.8812068001309],[4.243361009262674,51.88130422233966],[4.242912914417228,51.881461408544865],[4.242783778199813,51.88148905389648],[4.24210092500272,51.881727562281995],[4.241919710601449,51.88152398730852],[4.237251751190868,51.8831438187474],[4.237346266108931,51.883296359118035],[4.237225320996362,51.883345755745864],[4.237158491998988,51.883447812431584],[4.237168062887693,51.883497584255394],[4.237291981739872,51.883674412463236],[4.237305536719642,51.88376409431219],[4.236164933394112,51.88436970486917],[4.235998754699581,51.884247300068694],[4.234867009258476,51.88484782346842],[4.235034371378283,51.88497282133899],[4.234701677784503,51.88531098073972],[4.234191102117611,51.88582042856256],[4.233159603195765,51.88686747229302],[4.232135643108893,51.88791135599927],[4.230666812353716,51.88941847100475],[4.230591336829344,51.889499018842805],[4.230537174398953,51.88956171203676],[4.230457946615203,51.8896908690309],[4.230295690138015,51.89008063134572],[4.229969874216324,51.89091046421196],[4.22989906169109,51.89123106047267],[4.229664947457945,51.891203721151264],[4.229565603767524,51.89157939171703],[4.229482916450134,51.8916158680669],[4.229361828484163,51.8920584213273],[4.229282322584557,51.89260306332554],[4.229119434869058,51.89275733100335],[4.228902815979884,51.89355649414756],[4.228866975484076,51.89370104645004],[4.22876833051978,51.894032980563296],[4.228739797656922,51.89423386299657],[4.228878757219884,51.89465252748983],[4.228875026280321,51.894732621097965],[4.228935921112678,51.894781350761384],[4.22917540608721,51.89484384127107],[4.229328034448346,51.89482908706803],[4.229515246248558,51.89460512380627],[4.229616422541131,51.894433989010615],[4.229663254442977,51.894348514014006],[4.229688444822947,51.894293536043236],[4.229751982695324,51.89407751460837],[4.23000353208528,51.8932334026648],[4.230124868605351,51.89282968946913],[4.230166071409126,51.892752159106315],[4.230238293936793,51.892700998935695],[4.230351633606551,51.892689082703434],[4.230602957461683,51.89271258988768],[4.231267349934438,51.892795516282675],[4.23159948740778,51.89283930116124],[4.231700981448411,51.89286636417297],[4.231754105959009,51.892941596640014],[4.231731127645137,51.8930242103241],[4.2315165345302,51.89371384897573],[4.231522245409091,51.89379997100723],[4.231573618634193,51.89384602487177],[4.231724699037667,51.89387512440921],[4.231799387115953,51.89384166543995],[4.232220059072379,51.8939140603382],[4.232089470321448,51.894223876439554],[4.234314907174521,51.89465774091788],[4.236255994000955,51.89503935666177],[4.236397975564926,51.894788615987295],[4.237566934882374,51.894568832203916],[4.239655588309062,51.8941704094842],[4.241063032760404,51.893904275142184],[4.241975886175496,51.89373188498137],[4.24206553997587,51.893716500386944],[4.24460724797456,51.89322963018186],[4.245756844023527,51.893013577203426],[4.247600183925364,51.892661147001895],[4.249152958746527,51.89236755113044],[4.249248147372238,51.89234744061905],[4.250273618551644,51.892155947988506],[4.250347172108563,51.89215020834759],[4.250884608398279,51.89309889986654],[4.250966697315437,51.893267178599764],[4.251231603906235,51.893810260544974],[4.251229801936716,51.893881599047525],[4.251173362214682,51.89393627929438],[4.251165764558823,51.894022399967014],[4.250902071118819,51.89407507671887],[4.248843161238979,51.894456180514055],[4.246391574413903,51.894924791810986],[4.245895300069029,51.89501958487746],[4.244776575411413,51.8952334883781],[4.242846457364481,51.89559793358604],[4.242375707646532,51.89568896126013],[4.240960928956667,51.89596278231319],[4.23915439539979,51.89630398468991],[4.237134360216145,51.89669016790466],[4.235934708015604,51.89691713125057],[4.23518560049703,51.897060886425706],[4.234365390940848,51.89721181002576],[4.233524482084864,51.897372590633665],[4.233396736685547,51.89713262350405],[4.232500114976516,51.8973023978372],[4.232426299035716,51.89731792996365],[4.232035914907725,51.89749422330306],[4.232367503044373,51.8976582587444],[4.231424313105332,51.89842202489507],[4.230341669831619,51.8992866045997],[4.230214551153086,51.899233481489894],[4.229309293502218,51.89993089394352],[4.228934203883254,51.90032178093376],[4.228864750448375,51.90047542052773],[4.2286315226098,51.90130229131785],[4.228522081753264,51.90164766689184],[4.228471940400932,51.901764077011435],[4.2283236214838,51.90232287838793],[4.228058341320508,51.903298998185804],[4.228058155799379,51.903298979276414],[4.227717964600429,51.904551377903],[4.227413780575977,51.905652645401325],[4.227099491843513,51.90674065051302],[4.226798406259229,51.9078338171928],[4.22632349950656,51.90943675517373],[4.226205391046265,51.9098577864633],[4.22601471715382,51.910422617697044],[4.225905171746256,51.91070579528559],[4.225556184151921,51.911502870170224],[4.225350827541874,51.91194097306012],[4.225137039721705,51.91238221839435],[4.224935526336607,51.91276822922706],[4.224684724639116,51.91323659171053],[4.224475416864415,51.91358484702877],[4.224060578718751,51.91426397405963],[4.223728913413717,51.91476030903989],[4.223317855130492,51.9153248892141],[4.222956415462551,51.91579395821532],[4.22241844011957,51.91647250504847],[4.221928773920819,51.91704159231199],[4.221399562430873,51.917622414248065],[4.220853546588208,51.918190937251595],[4.220291513940191,51.91874884716872],[4.219712448657398,51.9193032305427],[4.219414313161915,51.91958207823143],[4.219261047782986,51.92019604495962],[4.218996282732737,51.921711363069676],[4.21887910107415,51.92247807659193],[4.21645495383035,51.92376067712155],[4.215382767105722,51.924301610534734],[4.211930253303148,51.926034769743595],[4.20958805490582,51.927217532592714],[4.207243183712553,51.928386158317004],[4.205908790639466,51.92904773015037],[4.204545719255957,51.929734806124685],[4.20345464595523,51.93028447447083],[4.202288952793756,51.93086086475559],[4.201613802210594,51.93119780278371],[4.198610181197402,51.9326970364406],[4.195347117964346,51.93432143569955],[4.193686097032247,51.93514807690035],[4.190898813548866,51.93654634359878],[4.188300804081317,51.93783911807475],[4.186968312079813,51.93850217562354],[4.188148369718509,51.93943577649382],[4.189598232793778,51.938927967733825],[4.190607874342756,51.938612567078714],[4.191196894141708,51.938365913005036],[4.192427133877162,51.93791854661709],[4.193563848961828,51.93750170127664],[4.194481561545651,51.9370925589928],[4.197311853271416,51.93613232641984],[4.201256426011748,51.93480430016854],[4.201688825279332,51.93469820931278],[4.203820422187134,51.9340050981921],[4.205787877953925,51.93331223556055],[4.206222283939895,51.933160598990206],[4.208172238832553,51.93247952055541],[4.209542164920759,51.93199389351706],[4.210054213349108,51.93180960123849],[4.211913276702011,51.931103679878035],[4.212703196654743,51.93076486181696],[4.213287254409047,51.93050772664626],[4.214072114348371,51.93015400984388],[4.214744545070815,51.92983710301642],[4.215219704669593,51.92960893602225],[4.216709196222753,51.92886970654258],[4.217799649082307,51.92830416771864],[4.219032065027212,51.9276236423616],[4.219978902102427,51.927056656265194],[4.220506690801762,51.926712473882],[4.221271780661097,51.92619902888231],[4.221773776587413,51.9258507134754],[4.222261732019615,51.92549632223994],[4.222668266064292,51.92515879931468],[4.222976729573699,51.92482030366492],[4.223681881928082,51.92373385770817],[4.224316515978081,51.92269380712666],[4.224549048410918,51.92227236211612],[4.224762075506726,51.92191098271363],[4.225099657423021,51.92141341357336],[4.225573691058824,51.92078738495064],[4.226007524492973,51.920262893078785],[4.226299016791723,51.91993286688217],[4.226741148094684,51.919442003239865],[4.227100050415187,51.91907083351151],[4.227412696082933,51.918761400565394],[4.227748659482267,51.91843774425501],[4.228483370331934,51.91781504947977],[4.229316378002059,51.91715047958317],[4.229884837285665,51.916742914388095],[4.231140641254517,51.91592855798476],[4.231711638005833,51.91559958949579],[4.232450219808368,51.91519587795609],[4.233192223962861,51.914804583249904],[4.234123082191945,51.91437113569433]]],[[[4.113199318908328,51.96531411786698],[4.121758387273558,51.96294402327729],[4.121286144176455,51.96231338094122],[4.121345521063929,51.96223737321518],[4.121339446764604,51.96220091976992],[4.121006444142323,51.96177345532825],[4.120966170604251,51.96164618124764],[4.120975864613808,51.96156912278114],[4.121013733445372,51.961515077845824],[4.121088765089564,51.96146156154292],[4.121791616060613,51.96124692899332],[4.121925021472564,51.96121210484309],[4.122457740915077,51.96104557431054],[4.122569489410768,51.960978774954754],[4.122968009050291,51.95985181168657],[4.123246406254748,51.95908859540483],[4.123531318313356,51.95834583674723],[4.123610808215635,51.95813365438962],[4.123919437530013,51.957334374168106],[4.125466197168438,51.95605663204163],[4.125587262373489,51.95594012189548],[4.125610889082858,51.95587224482832],[4.125491015251584,51.95517365520256],[4.125474833420746,51.95512522243374],[4.125409148281181,51.95469818656333],[4.125381067788491,51.954656981021095],[4.125337442265781,51.95463393214156],[4.124934501512262,51.954629607504835],[4.122397278582996,51.95459318280335],[4.122324587863804,51.9545788524671],[4.122266993208346,51.954532812531305],[4.122263589285446,51.95447574242785],[4.122300919804633,51.95306192156881],[4.122356762549726,51.95186559448064],[4.122409394077184,51.951820869645154],[4.122461262373539,51.95180323349317],[4.123378826871475,51.95180406685374],[4.123814178597903,51.951813389951944],[4.123879512542595,51.951836673564706],[4.12395741780823,51.95193273805275],[4.124148408790821,51.95219556961015],[4.124176109219047,51.95225019040761],[4.12415792467757,51.95237696598448],[4.124172239283862,51.95264009204488],[4.12423590948693,51.9529898157601],[4.124325106869026,51.95347142825296],[4.124377064550671,51.95368824907777],[4.124425915034467,51.95374825850206],[4.124506838920965,51.953781643964575],[4.125086268847369,51.95379238070909],[4.125167620085612,51.953766027504145],[4.125198157425494,51.953734612754786],[4.125184525865209,51.953684659368804],[4.125141769815213,51.953378129775956],[4.12511912906866,51.953277239740025],[4.125319062379472,51.95326699841525],[4.125284706510945,51.95304791558135],[4.125071703183916,51.953062532704486],[4.125054360637283,51.95299602279649],[4.125057756910468,51.95294947746538],[4.12496551760637,51.95260551255106],[4.124970105579211,51.95244233317106],[4.124983101876226,51.95224750065013],[4.124956768930957,51.952129409734574],[4.124323934802375,51.95121175723168],[4.124262072483492,51.95113934945581],[4.124004268877251,51.950801992107934],[4.1240119523851,51.95060310327188],[4.124029461967517,51.95015889533472],[4.124065995343128,51.948340798214964],[4.124200221919701,51.94826056101947],[4.124348970027143,51.94825790057073],[4.125183130288966,51.948266727423636],[4.126641027156548,51.94828236650105],[4.127591416429839,51.948301455487005],[4.127582598257753,51.948213875875624],[4.127586796108056,51.94815353170993],[4.127632253979672,51.94748587641233],[4.127744853113849,51.94321847878163],[4.127749049889691,51.943068842539724],[4.127866606976437,51.9430610694906],[4.127924795573938,51.943070725064835],[4.128040684169281,51.94304796612104],[4.128578495828757,51.94306366052384],[4.131569651882508,51.943075772354504],[4.131552323702839,51.943650695387376],[4.131548979294695,51.94371053192721],[4.131522418078632,51.94454097454809],[4.131507104682089,51.945028821294784],[4.131117402768122,51.9450320135224],[4.130956679130127,51.945030296336974],[4.130956954249587,51.945318949959464],[4.131514780750817,51.94532181209312],[4.131495766343185,51.94600175157902],[4.131494518162254,51.94604638466409],[4.131453153748019,51.94752545629755],[4.131504749335878,51.94757697580867],[4.13143046389534,51.94802315887553],[4.131413310106279,51.948502081988764],[4.130977746865492,51.94850142940356],[4.130964854752996,51.94964879774789],[4.131371926801993,51.94965314617262],[4.131334900108131,51.950693158063224],[4.132521328218274,51.95145887044007],[4.132529929821591,51.951479865574555],[4.132531354908221,51.95216118405188],[4.132510827094872,51.952895688891644],[4.132480780940025,51.9536120266203],[4.13247103064276,51.95369192412946],[4.13246725954548,51.9541406666928],[4.133336414456598,51.95470994841218],[4.133530740118512,51.95484079690943],[4.133560206139594,51.95489246688837],[4.133542777325155,51.95551655054581],[4.133456003786725,51.957890635750985],[4.13381654362325,51.95802325556267],[4.136402979097451,51.957215166378305],[4.136506213526606,51.957182974033365],[4.137314142120937,51.95621967554704],[4.137317713117522,51.95610642170176],[4.137383063419152,51.95407430609885],[4.137366751770173,51.953985098068586],[4.137383248755881,51.9534675874592],[4.137439985291062,51.951669577121834],[4.137467506541987,51.95161115889001],[4.13749398854578,51.95159002013506],[4.137529089392546,51.95157439342214],[4.140774121645216,51.95160883605874],[4.140817722677849,51.95158787802975],[4.140853709033841,51.951540259314186],[4.140940137919817,51.95154117538416],[4.140956190527143,51.95159476522401],[4.140981633897133,51.95161103553691],[4.141370504011531,51.95160973674298],[4.141491436933524,51.951616437520514],[4.142752942910152,51.95162437565974],[4.142946001120987,51.95153028807246],[4.143024550484117,51.95149898939401],[4.1440103878656,51.95100979541421],[4.144737747139741,51.950654122204],[4.14635973324573,51.949843106172096],[4.146473669518062,51.949785469266835],[4.148371368758293,51.94883307473949],[4.149370693754419,51.94831997764073],[4.149457415382424,51.94831005149292],[4.149508594769094,51.94833201041564],[4.14951662280153,51.94835893374143],[4.149491706013397,51.950202056881196],[4.149476028582833,51.951088874265466],[4.149501325406616,51.951110560711875],[4.150257815237482,51.951257361585405],[4.150768811953161,51.95100699016934],[4.151732316304471,51.95055181950387],[4.151816456741289,51.950392958873486],[4.15185985199178,51.95033367223294],[4.151916387843018,51.950282523041004],[4.152008219224544,51.95022361664217],[4.152159034162618,51.95014597346128],[4.153246088437935,51.94958576408515],[4.153307792022302,51.94957441114204],[4.153456395065214,51.94956190609898],[4.153611201396733,51.94955165929304],[4.153703378783156,51.94954075529176],[4.153803774220281,51.949519614325],[4.153898217776947,51.94948705579663],[4.154751004727028,51.94906166870054],[4.156232389163581,51.94832827151915],[4.157129837895964,51.947871591740935],[4.15720509884947,51.94782257220285],[4.157218065870111,51.94780657868834],[4.157245290871598,51.947773184879914],[4.157482701654835,51.94727772530698],[4.157937937268075,51.94637627804154],[4.158607942822635,51.94502687266061],[4.158635245369967,51.94497528628349],[4.159204857871946,51.943813992644124],[4.159236636986797,51.94372077486332],[4.159301104244748,51.94177548206962],[4.159299344463756,51.941717656488],[4.159376054740795,51.93909518886917],[4.159434619177034,51.939075930052034],[4.160738931128307,51.93909354357818],[4.162958383208446,51.93911474134301],[4.163700604365421,51.93912040418376],[4.164292140159181,51.93947714410357],[4.16545966207126,51.93948928291873],[4.165569335061995,51.939494422754656],[4.165833523169961,51.93948323276644],[4.165866516853469,51.93946757491777],[4.16588986803257,51.939438010517975],[4.165894630711496,51.939370317174124],[4.165912110891728,51.9386814556977],[4.166783461756904,51.9382063681011],[4.166832260406979,51.93819293885721],[4.168744254675872,51.938202964808305],[4.168783089736154,51.93818736669441],[4.168803046173732,51.9381597019006],[4.168814092542442,51.93812188055889],[4.168846899791112,51.9376820851634],[4.168861566750646,51.93761849451265],[4.168910489246,51.937585064935895],[4.168981552121502,51.93758193063363],[4.171980172953029,51.93761296542761],[4.172008853216529,51.937633133198496],[4.172037156570308,51.93766723287074],[4.172038892301286,51.93771112212296],[4.172020022539897,51.93823880576378],[4.172134177553228,51.93830966378695],[4.172133531917189,51.938333528570126],[4.172025207732854,51.93840208705167],[4.17200210643214,51.93936392740311],[4.172003825221654,51.93942381616902],[4.171992188120093,51.93985389620296],[4.171986193275112,51.93990570583393],[4.171983770877644,51.93999523019968],[4.172011980961581,51.940017457888445],[4.172543038789602,51.94015843132984],[4.172597721960118,51.94015899628881],[4.172620138952318,51.940148388828284],[4.172741534739352,51.94009067443309],[4.174884109766665,51.93901728945165],[4.176162575607004,51.9383831019984],[4.176562557138471,51.93818205721734],[4.17657504492968,51.93809057165782],[4.176728183017825,51.938016534969634],[4.176873226136668,51.938026028605144],[4.177347208702572,51.93779000059099],[4.178923890812453,51.93700943097069],[4.180871919470494,51.93603342374631],[4.18277722964343,51.93509036668652],[4.182864393632086,51.935047129552636],[4.184041527773625,51.93446240110695],[4.184691880406155,51.93413847104844],[4.185741811254654,51.93360958616311],[4.185986930171729,51.93348254131748],[4.186046060951171,51.933441338180835],[4.18607279021719,51.933409740487576],[4.186077208867771,51.933244492507576],[4.186038874021174,51.93322616578189],[4.184525147431835,51.93320875341985],[4.184453168174881,51.933184016117615],[4.184416104452523,51.93313383014715],[4.184422940776275,51.93283170218082],[4.184437734982367,51.93226358843844],[4.184451308817028,51.9322399844373],[4.184487319774815,51.932220353056465],[4.18455843187747,51.93221501566953],[4.185466594910451,51.9322243033581],[4.185461480501084,51.93241547955957],[4.185770324623896,51.93241863648059],[4.185774237796176,51.93222551264723],[4.186582652915878,51.932233772202],[4.18668046701497,51.932244706826985],[4.188404977454478,51.932262306074456],[4.188463307215826,51.9322510299226],[4.188519088690108,51.93222566253602],[4.18882894582697,51.93206559436649],[4.18939627282783,51.93176853434243],[4.190230438311754,51.93134283156164],[4.190279856942951,51.931305528476074],[4.190312896660427,51.931271928402516],[4.190649619514068,51.9307296723161],[4.190795581616968,51.930500058548425],[4.190841661209485,51.930462720348736],[4.190925699496985,51.93041080071479],[4.192404450569341,51.929667896350125],[4.194575322891335,51.92859250917796],[4.196775050966685,51.92749543867805],[4.196899798872371,51.92741902377744],[4.196919787859062,51.9273892907642],[4.19692746555827,51.92735156134461],[4.196967447288777,51.925889626333195],[4.196983836870499,51.925286687898044],[4.196991682773607,51.92522689557113],[4.196994885469312,51.9247120828525],[4.196995961188533,51.92451389797217],[4.196987259052931,51.924480002814015],[4.196959258107394,51.92444978382562],[4.196886509270136,51.92439136866825],[4.196636991185954,51.92419916197628],[4.196073731435568,51.92376570787237],[4.19602270755529,51.92372235150073],[4.195637288737028,51.92342966687],[4.195582981783533,51.9233842131224],[4.195475715217593,51.92330544638526],[4.195336693701027,51.923196551530026],[4.195280013076096,51.923146170020246],[4.19518382796188,51.923011644615144],[4.195143312459811,51.9229655556652],[4.194598271098547,51.92253873044982],[4.194545111551042,51.92249728708999],[4.194009578312119,51.922090040269545],[4.19349940299769,51.92170266176085],[4.193110284370752,51.92140915608944],[4.194223962311203,51.92091645885464],[4.195685013205765,51.92203916513042],[4.195921217610951,51.92219769090091],[4.196014241003605,51.922231149938014],[4.19614297913748,51.9222398094796],[4.196219821121261,51.922222394242546],[4.196233652345591,51.922157243967284],[4.196274351395474,51.92216488179081],[4.196832254374374,51.922595054717995],[4.197002307816136,51.922588260609224],[4.197029839827187,51.91997302284617],[4.197053630535765,51.91926383506423],[4.199035233324833,51.9192782074939],[4.199895437929276,51.91929206220606],[4.199982315448638,51.919289455666146],[4.201189608528177,51.91929300018462],[4.20128469336582,51.91929563703531],[4.201561321464267,51.91929842801353],[4.20160614666345,51.91929204131275],[4.201640534548051,51.9192699361736],[4.201655171203315,51.919237180184005],[4.201704321735671,51.91789611113662],[4.201714534489867,51.91730330318466],[4.201733457470693,51.91669664816905],[4.201764771916902,51.915398754026484],[4.202000106351261,51.91527325516128],[4.202574777380515,51.91498691662332],[4.203049876434322,51.914995059460466],[4.20315338487976,51.91499442501397],[4.204801773646975,51.91500934397634],[4.204888734261297,51.915003250535214],[4.206830465601887,51.91501915647472],[4.206975602324246,51.915022420932225],[4.207227442826982,51.915014626759564],[4.207329396599255,51.91496197210226],[4.207911367768535,51.91461864800296],[4.207959245614095,51.91460699947359],[4.208869844687072,51.91462129476947],[4.208967837643968,51.91462408407191],[4.211102711145926,51.914641984304374],[4.212027217889628,51.91465110333327],[4.212138755990417,51.914662541683995],[4.214910606503835,51.91468996615842],[4.215036182101348,51.91469121873264],[4.215966992022198,51.914698692259314],[4.216245915347916,51.914708440059435],[4.217869453501231,51.91546964519663],[4.218215479589758,51.915627153857905],[4.218331267952093,51.91566791854056],[4.218367654134433,51.915664796268565],[4.218430198727638,51.915618708430124],[4.218824857146386,51.91527011311719],[4.218879473511927,51.91522394532428],[4.219454271364408,51.91471971767125],[4.219483381634131,51.914659361314136],[4.220098052136572,51.91412972005456],[4.220733353373364,51.913560279994265],[4.221085768945726,51.91323009631403],[4.221166528581498,51.9131410906328],[4.221244681672743,51.9130399291963],[4.221389895414112,51.912814787063205],[4.221521842974542,51.91258628698988],[4.221946490483802,51.91172274829844],[4.222184069961218,51.911185743013775],[4.222395449988874,51.910693382425904],[4.222548850487804,51.91026444627902],[4.222843178735435,51.90937238662828],[4.223019501370707,51.90881528886726],[4.223326951550075,51.90773793602517],[4.223492166797482,51.90717427605284],[4.223652324304184,51.906612372555806],[4.223823193539684,51.90605560696004],[4.223976372383691,51.90552124651696],[4.22414203481131,51.904955784103414],[4.224752709552742,51.90286296511994],[4.225178622152807,51.901363419976796],[4.225206589747711,51.901249760104186],[4.225219578644508,51.90119917851678],[4.225250796122571,51.90107277550565],[4.225272208028412,51.900986792853615],[4.225287094530381,51.90092732724824],[4.225632761457549,51.89973898932169],[4.22593785791266,51.89868328401124],[4.226238645507965,51.89761618028843],[4.226863306112564,51.89638001453032],[4.22752772775155,51.895040236178815],[4.227556213337444,51.89497083944124],[4.227669936816377,51.89452369923599],[4.227948270806355,51.894551477851664],[4.227974723359173,51.89439909179801],[4.228001583110711,51.894166193714454],[4.228053842979177,51.893983481442504],[4.228067109582089,51.89397045053349],[4.228128201483658,51.893962924454115],[4.228165847608713,51.89384548774374],[4.228211185607453,51.893818063495196],[4.228261006140397,51.89363287574618],[4.228582115982769,51.892566740375],[4.22858508386119,51.892548705198344],[4.228488796144649,51.892481560894225],[4.228602491628306,51.89208345128908],[4.228597576160379,51.892063790445526],[4.228631228069192,51.89198799203715],[4.228653294362769,51.891957112840096],[4.228719217694655,51.8919562141207],[4.228783284782971,51.89173594022901],[4.228839516335048,51.89149597577471],[4.228818752911836,51.89149241631809],[4.228797992752579,51.891472598347015],[4.228869207201424,51.89116903916956],[4.228806040094681,51.89116015806025],[4.228790532986681,51.89114684334427],[4.228791373611123,51.891114206002285],[4.228821325332968,51.89093914422379],[4.228835741909713,51.89089760852009],[4.228730513456336,51.89080521579144],[4.228917881160283,51.889781115595],[4.228919176796428,51.88973080481181],[4.228906624412431,51.88969997075944],[4.228878608264327,51.88967040450598],[4.228834748138864,51.88964068111774],[4.228741304017146,51.88960904938374],[4.228696816045285,51.889603707122475],[4.228636354880639,51.889603110856896],[4.228582394593055,51.889609289023916],[4.228528279994966,51.88962140023432],[4.228483160589399,51.88964056847872],[4.228451389377121,51.88965961038391],[4.228421529491916,51.88968538058278],[4.228367401754356,51.889762782868324],[4.227624767202897,51.89077533781066],[4.227444900643948,51.89103821065073],[4.227207475146976,51.891398064375885],[4.227020883820303,51.89171119373852],[4.226707872472319,51.89225210860228],[4.226512596548242,51.89259444139643],[4.226377333576985,51.89285775330118],[4.22618024743531,51.893270004491114],[4.226004383916286,51.89368401303896],[4.225869312103092,51.89403661746023],[4.224995789777845,51.89652568622022],[4.224910266207651,51.89676819783583],[4.224697129482486,51.8973482890823],[4.224580452644116,51.89768236504697],[4.224348578018414,51.898341497239876],[4.224111853910435,51.8990103871406],[4.223816687124513,51.89985792653695],[4.22377285506052,51.89993968681077],[4.222413571962506,51.89975241099776],[4.219824686589108,51.89939742292762],[4.219994570657981,51.89883110335351],[4.220060386506956,51.89864194825043],[4.220053244007414,51.89859568331246],[4.220012607550521,51.89855411772782],[4.219948261705822,51.89852599436734],[4.219847553997544,51.89851660699891],[4.219769733567794,51.89854151108401],[4.219666003235159,51.89860035211265],[4.219212334803752,51.898914040338916],[4.21892543205987,51.89910280363716],[4.21809684562034,51.89960437392037],[4.217793871596196,51.89976910317783],[4.217361692863085,51.90000944869326],[4.21654606877757,51.90044442749178],[4.216139573622631,51.90065921861483],[4.215413709380033,51.90102669531595],[4.213970778522542,51.90174288667615],[4.213032501862329,51.90220732607473],[4.212362838945594,51.90252954012367],[4.212294786026278,51.90256344067394],[4.212196711324068,51.902612654110456],[4.212086798928707,51.902667813114725],[4.211057867229345,51.9031833312494],[4.210191565218259,51.90362124346173],[4.209244868187287,51.90408556869307],[4.208457366948349,51.90447638686584],[4.207650683114695,51.90488223209426],[4.206165809304882,51.90561326217347],[4.205294363574287,51.90605276446009],[4.203570690756297,51.906912974728044],[4.202786191337152,51.90729694586886],[4.201435296173768,51.90797275115619],[4.200180891417745,51.90856396574694],[4.199545235623716,51.908855353510425],[4.197298101599603,51.90985740925258],[4.196688393997476,51.91011291462717],[4.195743366694458,51.91050372924771],[4.195196088942728,51.91070166629703],[4.194670686771755,51.91090846764211],[4.19446619408462,51.9110039419876],[4.194259061408463,51.9111045507245],[4.193695404546968,51.911384509145684],[4.1927874373004,51.911839032780605],[4.190959365952076,51.912763032965245],[4.190177536533683,51.91314849620414],[4.188618980517089,51.913929912777796],[4.188077452456031,51.91420671560045],[4.187957557392039,51.91425852520314],[4.187890531085016,51.91426816429176],[4.187807927625277,51.91426732127276],[4.187728103390683,51.91425618347147],[4.187362427585506,51.91416690123878],[4.186925315433482,51.914064887802645],[4.186803955811834,51.91404648622555],[4.186682506808552,51.914047052427236],[4.186601625239563,51.914059903975804],[4.186498593162248,51.914089560821566],[4.185217735258525,51.91471983217238],[4.184362963036962,51.915145674078076],[4.183888693355928,51.915387144828095],[4.183297478759196,51.915678772344904],[4.182820650369563,51.91592189000456],[4.181961763092148,51.9163905119443],[4.181520383533902,51.91664947259145],[4.180926796353659,51.917028290783705],[4.180213719483858,51.91752046136018],[4.179551472398113,51.91798411696667],[4.178826452162554,51.918500286034316],[4.178315981251946,51.9188594299698],[4.177896260962222,51.91914930954329],[4.177382621376518,51.91951706172788],[4.177019427254455,51.91976868171312],[4.176329014270423,51.92031486957199],[4.175404095947073,51.921075155785836],[4.174509658045597,51.9218183293567],[4.173999197849886,51.92225164938787],[4.173382160302775,51.92278270647269],[4.173143802288064,51.922984764126994],[4.173063341260552,51.92305851479858],[4.173022757843325,51.92310841934102],[4.173013101514383,51.92315683655249],[4.173028752908395,51.92321093474187],[4.173066254764027,51.92325958022025],[4.173104823579955,51.923284237561255],[4.173157529296078,51.92331084682686],[4.173224145905138,51.92333243819861],[4.17390953817956,51.923531777286],[4.173978936141878,51.92355855848592],[4.174023437733185,51.923579921121124],[4.174042491947936,51.92360076309564],[4.174040524087113,51.92367364720945],[4.17367199830122,51.924136173005934],[4.171915286453671,51.92637005859915],[4.171613977741825,51.926737916508415],[4.171305904079165,51.92707796147531],[4.171061048695304,51.92733375485806],[4.170832482535243,51.92754287762306],[4.170456237368509,51.92787189183124],[4.170193628068832,51.92808930581124],[4.169901851430368,51.92830473979059],[4.169475896550447,51.92860368709101],[4.169029212002044,51.928897257395626],[4.16869041542026,51.929091296934295],[4.168276669123799,51.92930894669746],[4.167924240821868,51.92948206885357],[4.167586419143487,51.92963985686749],[4.167255602462105,51.92978558760799],[4.166838991947219,51.92995455624739],[4.166459436631081,51.930096294582945],[4.166107109584785,51.93021908953113],[4.164934878619486,51.93058833190068],[4.164638070233269,51.93066498869722],[4.164552412912151,51.9306831942729],[4.164298084355898,51.93074816303333],[4.163619739918086,51.9309005907815],[4.163531074368003,51.93090663528274],[4.163163270498577,51.93098409813253],[4.162528422899832,51.931118003707574],[4.162412070157422,51.93114427568439],[4.162079817950863,51.93121913738156],[4.161902147925425,51.93125883506199],[4.161406697620819,51.93137844582585],[4.16102578808627,51.93147692577141],[4.160610095056963,51.93159555922357],[4.160222586912718,51.93172158143109],[4.159215235263223,51.93205777847224],[4.157157339456892,51.93276608208005],[4.156016667375568,51.933166793053736],[4.154949644123791,51.93353007121052],[4.152829367418239,51.93425493656196],[4.151214670269231,51.934810754573924],[4.151064118415063,51.93483510791513],[4.15076298236488,51.934505869944864],[4.150659648775386,51.934498460978936],[4.150507509871455,51.93433788946384],[4.147551024869932,51.93511786215931],[4.143900447620828,51.936067069866894],[4.143809696788156,51.93608765881779],[4.143661801809143,51.936121321116886],[4.143591637779602,51.93613722409061],[4.142646117489052,51.9363734162081],[4.140542197542008,51.936933070419066],[4.137260728540075,51.937795922433935],[4.135744913071917,51.93819283595382],[4.133974805648784,51.93863424771202],[4.132829929367156,51.93890346203334],[4.131507439086637,51.939207802760585],[4.131117872017892,51.93929757784552],[4.128828345148975,51.93981013746133],[4.127356301260827,51.94012999218806],[4.12673224533162,51.94025762810078],[4.125743233283933,51.94048986435846],[4.124753485820611,51.94074789146732],[4.124137516487091,51.94095857057004],[4.123671430921836,51.94115485671945],[4.123530713616556,51.94121424860325],[4.122985328927739,51.94148322996759],[4.122512150924734,51.94175311504649],[4.122048199285473,51.94208064710336],[4.121762178467852,51.942317315425974],[4.121549962180107,51.94251322877056],[4.121368398393062,51.94270302024494],[4.121111965778837,51.943000782263674],[4.120907833018581,51.94328000955529],[4.120745872803981,51.94351478628713],[4.120558948051037,51.94390916803355],[4.120379935576761,51.944393056302026],[4.120233493355466,51.94518762565909],[4.120202700895024,51.94553891415296],[4.120216361069265,51.945794808584296],[4.120329887252296,51.94625578376367],[4.120355371188245,51.946359028360845],[4.120293674778718,51.94636997668648],[4.120261106249568,51.9475242320505],[4.120301641841894,51.94753808785553],[4.120194318081427,51.94767112795213],[4.120171100082506,51.94775397629976],[4.120031571603129,51.9508629912625],[4.120061622560236,51.950908090126106],[4.120998186422368,51.95144890017659],[4.121007126256853,51.95148731992945],[4.120966457174489,51.95329943528909],[4.120924678318485,51.95438081426554],[4.120903258124021,51.955051306779986],[4.120852398515833,51.95664692103505],[4.120850411538932,51.95671735302867],[4.120837623460909,51.957170643494244],[4.120842859696836,51.95723676566266],[4.120822848008667,51.95769436591223],[4.12082820802583,51.95775610180391],[4.120815171834574,51.95821816474443],[4.120792134611229,51.958279594824454],[4.120783937615035,51.95836286385373],[4.120730790827843,51.95842551849635],[4.120618789849035,51.958471796541595],[4.120480629205391,51.958512502586146],[4.119310464390281,51.95884273848669],[4.119232730146566,51.95887364286507],[4.119171822421938,51.95891518031806],[4.119170182538144,51.958973228072175],[4.119186112705909,51.95901559492719],[4.118927892933866,51.95909190863199],[4.115282995180898,51.96010353184855],[4.110577158024011,51.961398634445686],[4.107370279918538,51.962286896177716],[4.106757417066571,51.96146756200435],[4.106594842032192,51.96123585153879],[4.106609157656205,51.961202587490405],[4.106643820863038,51.961173673730194],[4.106725611659211,51.96116204779311],[4.106875713370365,51.96111348741182],[4.107019251352606,51.96106072576607],[4.107122280224466,51.96100752391769],[4.107171140361053,51.960949473328306],[4.107200786896684,51.96086205273146],[4.107240356521163,51.960748932224455],[4.107801208985586,51.96059374159321],[4.10815987992827,51.96055557736766],[4.108499334584788,51.96059075337871],[4.108663768677276,51.96059615393553],[4.10969372150147,51.96030927601813],[4.109764286787193,51.96022229930525],[4.109728903405004,51.96007120168894],[4.109542656672192,51.95983420515273],[4.109317416509042,51.95957304329637],[4.109272053429179,51.9595084198339],[4.109050116222486,51.95916070965267],[4.108985924334821,51.95905317118573],[4.108940168652172,51.95887034743116],[4.108788954582243,51.958591664667665],[4.108682060338184,51.95835553015874],[4.108620202961997,51.958151498327005],[4.108628828085435,51.958039330850056],[4.108717409694192,51.95792106606227],[4.108809037225294,51.957915868644676],[4.108836223103443,51.95792932522406],[4.109443540657359,51.95776921254091],[4.112526466360807,51.9569231674665],[4.114262578581218,51.95644699494788],[4.114258815766281,51.95634398424162],[4.114810038162934,51.95614259057059],[4.114904365220055,51.95608619019998],[4.116024426668596,51.955045894473464],[4.116119772097775,51.95489440600416],[4.116228969411768,51.950949049707184],[4.11630768609278,51.94809448281215],[4.116241799581303,51.948046801314945],[4.116299465221598,51.946245578320955],[4.116384809459658,51.94359895689477],[4.11775424475623,51.94230701182442],[4.117764507355558,51.940747474378995],[4.119515975234275,51.93967344494816],[4.123316406073639,51.939289064335824],[4.125759689571016,51.93904175128474],[4.126632250542301,51.93892594635983],[4.128203792842307,51.938689749957945],[4.130154285016452,51.938324677808104],[4.131027804620593,51.93812884984379],[4.132242899343773,51.93785665963183],[4.134964687193393,51.937199733343256],[4.136773497055804,51.93673046134762],[4.141930392051425,51.935383624112646],[4.141992243404888,51.93536634324015],[4.142124778992929,51.93532942361014],[4.142227441567773,51.935300833228844],[4.14241888560511,51.93524737594234],[4.142522746920749,51.935205636088774],[4.142613379344962,51.93514414266696],[4.14267586460451,51.93507383487575],[4.142702759780135,51.9349770853509],[4.142656932694184,51.93488317957615],[4.142569049930882,51.934785214879575],[4.142390598644544,51.93468629110016],[4.142134566863612,51.93458473856384],[4.141954927631519,51.93451367328195],[4.141469706740859,51.93438156241915],[4.141051707747771,51.93427945239538],[4.140671866007613,51.934186520701715],[4.139929921145958,51.93406858406244],[4.139062936487976,51.93398841257608],[4.138345379620959,51.9339545972323],[4.137499593619724,51.93398302883621],[4.136700248038768,51.93406782050126],[4.134898186059494,51.93429883573508],[4.130873802856187,51.934827778505685],[4.124038530467835,51.9357190674806],[4.118590074137708,51.93642893104837],[4.117142135750568,51.9366210431165],[4.112124341656446,51.93728661364294],[4.11133663156827,51.93738413431728],[4.111043335057303,51.93742043582917],[4.109226210267008,51.9378337396496],[4.108987556470209,51.93773965839973],[4.107192596935339,51.93797471576635],[4.107093694362169,51.93798757391068],[4.106943655846926,51.93800736040333],[4.106787754181556,51.9380277273719],[4.106752132859691,51.93803237154609],[4.105960464800297,51.938136007716096],[4.102891155922189,51.93854665673447],[4.102867906010358,51.938512853231],[4.101033086217343,51.93875241367362],[4.094578390078847,51.93959441725124],[4.090687264669918,51.94010190703604],[4.086244978986302,51.94067801152305],[4.086231186628739,51.940664052344644],[4.086215711439646,51.9406793650357],[4.085218937302081,51.94078265619697],[4.085102140397725,51.94089375316482],[4.085116922397936,51.94093120779453],[4.083934866393986,51.94206627176334],[4.08320233323449,51.94278939584362],[4.083086272262402,51.94290359580874],[4.083085021046639,51.94294667988434],[4.083708429488664,51.94473157954198],[4.083951710881397,51.94542823112242],[4.084534332179021,51.94705228119701],[4.085042634368586,51.947150818068124],[4.088967312853587,51.94469750540291],[4.090148994970995,51.944672095440666],[4.091953082891084,51.943539566375726],[4.094824365942874,51.945280628126724],[4.09280111923251,51.94646820878566],[4.095918268063052,51.94830795076685],[4.095915507920356,51.948403922431126],[4.086996124759487,51.95390371393075],[4.087009260086911,51.95394050547731],[4.086995298681815,51.95398990051909],[4.086971066074329,51.954047827806725],[4.087004687105005,51.954098394405705],[4.087798268853541,51.95634967667047],[4.088455195760982,51.958129366355905],[4.088521815641694,51.95823784665833],[4.089824357093494,51.959766326861995],[4.08990475143616,51.95980308515128],[4.090252823450506,51.95981402136781],[4.090471635141277,51.959816821774474],[4.090640798645787,51.960019853476325],[4.090687076231363,51.96009533267737],[4.091056282373743,51.96115375138372],[4.090552491950393,51.961240200388495],[4.090615559129489,51.96150090187241],[4.091320826904514,51.963450271564874],[4.091475927042466,51.963489916665225],[4.095657038710431,51.962339234306995],[4.095775638573024,51.96235524663002],[4.096792544336605,51.96377599008677],[4.096729446770972,51.96389271982844],[4.092117367270111,51.96514889267345],[4.091978266934489,51.965220523842525],[4.09204624444981,51.965398437639024],[4.09229301758401,51.9661126561718],[4.092519011329367,51.966823289654336],[4.092877521914012,51.96758957586955],[4.093053710393241,51.96788365140455],[4.093450971456722,51.96836441975953],[4.093861115413903,51.968775391624526],[4.094388543403235,51.96919087651168],[4.094873603061179,51.969482020759735],[4.095826743122245,51.969943467541995],[4.096956875077222,51.97032426547006],[4.098049502224875,51.97057134808768],[4.098416859064696,51.97032117452635],[4.101200779371746,51.96955111286525],[4.105472929035327,51.968368945466175],[4.106161566761561,51.96726829553185],[4.10626711542182,51.967229831673954],[4.107525837887248,51.966881977123045],[4.113199318908328,51.96531411786698]]],[[[4.29470585583097,51.74838789231767],[4.294736300010197,51.748384047341936],[4.294803452621246,51.74837512490427],[4.294882752623987,51.74837973461265],[4.294929154939775,51.748403651131696],[4.294985108803664,51.748445205228805],[4.29500722307758,51.74851070299629],[4.295026069264314,51.74857384751554],[4.295168119329726,51.74878601390477],[4.295359583997261,51.74905231812654],[4.295428762675503,51.749131674053835],[4.295478558128021,51.74917007378716],[4.295533578631491,51.749198715907816],[4.29559388031297,51.74921527723916],[4.295705355858584,51.74921321852408],[4.295888565146806,51.74920202130179],[4.29604130692227,51.74917841024823],[4.296199348148076,51.74914194531162],[4.297113847550376,51.7489775462012],[4.298158195537312,51.74877305662959],[4.299628255510857,51.748500248281275],[4.300076467381458,51.74841304937104],[4.301145480332004,51.748219083405424],[4.302548838445607,51.74798691219053],[4.302691638472583,51.74794410311549],[4.302707043346639,51.747925923095],[4.302679898323395,51.74787896173313],[4.302582754782454,51.747561411799005],[4.302605755631123,51.747486526725794],[4.302875489975683,51.74736901999801],[4.304264986923574,51.74670778840546],[4.304351000698399,51.74667503469799],[4.304435960317564,51.746668851147135],[4.304530895319923,51.74666276057101],[4.304590937128193,51.746759574317],[4.30522944295097,51.74794303918134],[4.305346124950367,51.74800114944394],[4.305439454364101,51.74802755966545],[4.305541930255341,51.748019214155214],[4.305799258101096,51.74796816870971],[4.31482239113542,51.745903157275194],[4.316644005670861,51.74550586697675],[4.319077089164225,51.742754342351844],[4.319293441457575,51.74244766350208],[4.319452849366346,51.74235156589459],[4.319527083248328,51.742306305946016],[4.319663055492781,51.74230470568385],[4.319694990803474,51.742307835305326],[4.320018897676091,51.742832599325105],[4.320325196237672,51.74308235998589],[4.320988949004669,51.74351085735805],[4.321165818615633,51.74360846801281],[4.321314253593955,51.74350168700363],[4.32171397856543,51.743174993931],[4.321806902295465,51.74313041841739],[4.321942322421426,51.74308184147534],[4.322121579721634,51.74304295387141],[4.322267115656492,51.74300608240798],[4.322576791887678,51.74321896299155],[4.322730880006612,51.74329546017492],[4.322922343607871,51.743356038821815],[4.322998312407075,51.743360599299244],[4.324070748642163,51.743029423025156],[4.327152966903187,51.742031259425715],[4.330886187906752,51.74099036746682],[4.334529969513752,51.73994494067071],[4.334765772837052,51.73992228341235],[4.334844716734481,51.73990595970745],[4.336528945359222,51.73951745123809],[4.33674989555732,51.73945414120502],[4.350913788833404,51.7364214802019],[4.351873017644793,51.73611692204652],[4.352480626595003,51.73601080273617],[4.353727954523054,51.735848128577025],[4.354414630031207,51.7357011480564],[4.354697098108515,51.735599377072475],[4.3548447058897,51.73561512911646],[4.355930036342404,51.735192163204744],[4.356812203222073,51.734710110358165],[4.357142753450175,51.733975459706656],[4.357250722174951,51.733888407357476],[4.357370694652192,51.73380352518177],[4.357474517033929,51.733679532443354],[4.357436251540297,51.73362603482768],[4.35742079963659,51.733574543565744],[4.357153693978118,51.73349554998716],[4.357124788630052,51.73328677722279],[4.357303473147502,51.73314228141882],[4.357330544001533,51.73312161611341],[4.357333948999619,51.73297222511072],[4.356998180898494,51.73196745570762],[4.356826316782921,51.731831233555454],[4.350677617285106,51.73108048622287],[4.350546035791037,51.731091452218145],[4.350329388861007,51.731132890853445],[4.349994990353115,51.731053543351244],[4.349884241356136,51.73098985253578],[4.345746460721388,51.72983959031558],[4.345431834168655,51.729750599180456],[4.342926376726759,51.729116161853106],[4.340342610555989,51.728420841044795],[4.34025525618399,51.72842444822768],[4.33977762067873,51.72866353839267],[4.338913633854426,51.728860719396835],[4.338046700832157,51.728915929744915],[4.337965251715644,51.728862038053784],[4.337902797375529,51.72883128444744],[4.334867395440028,51.72883193746605],[4.334042493101975,51.72845652179186],[4.333971963896435,51.72830878833159],[4.333828260787749,51.727271093617105],[4.333737985885448,51.72720395863494],[4.333695751546641,51.727179578918616],[4.327143385825067,51.726619834824305],[4.326646072248551,51.726632883507065],[4.326169630100745,51.72665953892262],[4.322115051385715,51.727045989547435],[4.322015399682745,51.72706005155267],[4.318327437979694,51.7271761498686],[4.318032689882971,51.72723359106641],[4.317718684404786,51.72731459786644],[4.317674435676568,51.72732296830812],[4.316577745014758,51.72774444552148],[4.315773746188262,51.728036973770195],[4.315651618169366,51.728069922294615],[4.313770762822127,51.728838528653746],[4.313694396507161,51.72886931354999],[4.313647627720638,51.728966177202906],[4.315413336980332,51.73131812323042],[4.315449544974347,51.73138606881012],[4.315443101684628,51.73146497849015],[4.315423312744619,51.731545831818075],[4.315289830185587,51.73167158062519],[4.315166974896962,51.731752265111005],[4.315070083346348,51.73180712122421],[4.314951525809247,51.7318117140658],[4.309366708564892,51.73185906420891],[4.309155355952679,51.731903315331344],[4.30893839683928,51.73195602990028],[4.301454639621805,51.73477034409707],[4.301388071288502,51.73479037273243],[4.299735236887901,51.73547493270403],[4.299077421013213,51.73577954226523],[4.296705116321159,51.73683906245543],[4.294399716144448,51.73784315755505],[4.292046880324674,51.73884495870112],[4.289729132766838,51.73985246040076],[4.287356489830991,51.74090791978166],[4.285111850513908,51.741874984495226],[4.282744812054851,51.74293040347206],[4.28034201528727,51.743981566841065],[4.278063267829497,51.74498766102676],[4.277850396209919,51.745089907359905],[4.277728684207717,51.745170563069166],[4.277612563556504,51.74526056278516],[4.277465823379446,51.74537840229462],[4.277361798686517,51.74546670946357],[4.277152876004964,51.74566189676372],[4.277036149043659,51.74577640632909],[4.276980978418846,51.745839110878634],[4.276918611100636,51.74592394148455],[4.2768069308574,51.746086757864184],[4.276695571600396,51.74621964146179],[4.276639757762701,51.746308404745115],[4.27659552861916,51.74638256789588],[4.276557720630604,51.74646608307349],[4.276525231437178,51.74657003516548],[4.276521120022792,51.74673722524711],[4.276524464255905,51.7468379050227],[4.27653395542211,51.746942254887784],[4.276673452681202,51.74784630533481],[4.276892400791776,51.74895188731895],[4.277089482738794,51.74996641985192],[4.277130475614499,51.75024397535617],[4.277256095696097,51.75098608385577],[4.277293229163461,51.75118385898002],[4.277326239638945,51.75129565778333],[4.277360114584337,51.751389142155126],[4.277418237128233,51.751460402949284],[4.277495106938088,51.75151326059147],[4.277553870149776,51.75155846331239],[4.277660166769767,51.75161521213474],[4.277796802249576,51.751672506872275],[4.277939263781553,51.751729598588796],[4.278284457638895,51.7518446087402],[4.278689618128031,51.751989862635526],[4.278881147526818,51.75204690029815],[4.27902411411398,51.75206657538978],[4.279206231903396,51.75208352269666],[4.279443369381197,51.752095054113276],[4.279626429683551,51.752090590310736],[4.279863903156243,51.75207141439718],[4.281422957852346,51.751773091874355],[4.283384902644777,51.751457381753646],[4.285129117718201,51.75115172216908],[4.287117113501924,51.750788452548406],[4.289035810180977,51.75043533843348],[4.290825245799928,51.75009621090708],[4.291333595035261,51.75001657516269],[4.291462936199028,51.74998088021825],[4.291651561826238,51.74995219161791],[4.291864350475377,51.74993869542026],[4.292097046226629,51.74991015990226],[4.292275401080923,51.74989350250168],[4.292424468198657,51.749867281030205],[4.29270722220884,51.749814694818355],[4.292886246852746,51.74977042990196],[4.293117408949447,51.74970213526042],[4.293247019620136,51.74967237640596],[4.293425816777565,51.74963739882561],[4.293827486738532,51.749567337991934],[4.294199457568098,51.74952177384094],[4.294363290813131,51.74948665531135],[4.294448000284731,51.74945673451278],[4.294508069251419,51.74941419693426],[4.294549186970761,51.74934722458679],[4.294558352405206,51.749294922213714],[4.294551933581784,51.74923369937869],[4.294524649759428,51.74914131446658],[4.29447681344122,51.74907351292861],[4.294414766078546,51.74899164212678],[4.294324089883049,51.74885582662954],[4.294309869047745,51.748824983546236],[4.294247191671532,51.74876917258588],[4.294163800008867,51.74859006935112],[4.294161476772699,51.74856578869392],[4.294191583329454,51.74854155333953],[4.294212200269294,51.74853142244888],[4.294242913076875,51.74851648301115],[4.2944675276104,51.74844347821627],[4.294601421662404,51.74840833916517],[4.29470585583097,51.74838789231767]]],[[[4.712115496278042,51.8217207222961],[4.712187257243804,51.82168371715139],[4.712225607850177,51.821681099095],[4.712267997315305,51.821686762106786],[4.712297362759243,51.82170009212117],[4.712339832402211,51.82172820557268],[4.712415381067391,51.82179986315495],[4.712425732306913,51.82180379406895],[4.712447465763945,51.82179849976911],[4.7124878715717,51.82176983000803],[4.712557084009617,51.82170829439615],[4.712623823370356,51.82164519668781],[4.712664805119676,51.82163356183411],[4.71270929661068,51.82163794599957],[4.712776912324285,51.82165536620427],[4.712836751545931,51.82166370991327],[4.712887550047961,51.82166400177032],[4.712910940667319,51.82165923285309],[4.712938923061643,51.82165371638878],[4.713121145444952,51.82152573576993],[4.71343466531364,51.82130560846828],[4.713759409658245,51.82108657753327],[4.713736566877953,51.821054705811704],[4.713271989905069,51.820794758465645],[4.713261897292452,51.8207735403769],[4.714027670955645,51.819992932676904],[4.714590146941313,51.81941243754546],[4.714890766500334,51.81910655820989],[4.71530136192649,51.81868544159584],[4.715473897769103,51.81850759768624],[4.715784301718323,51.81818706307884],[4.715987268714607,51.817978683743235],[4.716035897260635,51.81792864168361],[4.71638581797832,51.81786199965676],[4.716470306074457,51.81806041040707],[4.716489457874181,51.81806051985716],[4.71665589555862,51.81804030985968],[4.717405224721245,51.81793904505985],[4.717348668273504,51.817766083033554],[4.717830401533154,51.81771128542104],[4.717902279022533,51.81774988713824],[4.717974068395903,51.817766296277846],[4.718077785185291,51.81776379105895],[4.718321309049455,51.81773963171865],[4.718515555919584,51.81786563742641],[4.718540787261774,51.81793313298597],[4.718544214071312,51.81803895497735],[4.718593043700188,51.818059361402355],[4.71933926040913,51.81797122678855],[4.721019427501488,51.81776968682159],[4.72259483332297,51.81758404535852],[4.722603500619389,51.81758925570915],[4.72273182788164,51.817979128746174],[4.722874837287849,51.818446501063846],[4.722886640013281,51.818493275468605],[4.722894277015988,51.81856841327301],[4.722945160255487,51.818732307743275],[4.722993301725525,51.81891270237102],[4.722940248755229,51.81892427249615],[4.722922805055176,51.81894946326626],[4.72293931337915,51.818987748471365],[4.722877063845515,51.819001847152165],[4.722863290154887,51.81894757766368],[4.722846238096512,51.81894619127334],[4.72244946438408,51.81899942604564],[4.722374860532345,51.81900416474131],[4.721998583321947,51.819051062957286],[4.7219067140192,51.819068863745954],[4.721663508204816,51.819099225511685],[4.721027258765568,51.819183870702105],[4.720852548546399,51.819200168537776],[4.720353185793599,51.81926365223059],[4.720317096027631,51.81928254351049],[4.720316576863797,51.8193176357568],[4.720369816957025,51.81951870463746],[4.719699840452707,51.819602635083555],[4.719265149423858,51.81965693423547],[4.718816690548357,51.81971295919167],[4.718728542367954,51.81976045554619],[4.718715148798156,51.81979315269813],[4.719004850070735,51.82078392530534],[4.718987802022344,51.82081040761677],[4.718283545302125,51.82090187678301],[4.718271517283729,51.82089871164967],[4.718036540148454,51.82090691991677],[4.717336899966384,51.82099582820041],[4.716900626131331,51.819727321430086],[4.716864640176371,51.819711117042004],[4.716766236826293,51.81972010269749],[4.716681642119715,51.81978052010024],[4.714091010088172,51.82155143011887],[4.71405207155571,51.82159352796845],[4.714057098903781,51.82161936225858],[4.714068471647382,51.82163852382682],[4.714216650832936,51.82167085623196],[4.714979404159363,51.82170696790642],[4.715899397336779,51.82175429569734],[4.716038349721093,51.82176309023125],[4.71695627927656,51.82180936603177],[4.717205099869445,51.82182265793299],[4.718018423337214,51.821874779376564],[4.718942506869667,51.82192752674341],[4.719326179548567,51.821945451453495],[4.719339106866856,51.821944235145004],[4.719388566144117,51.82189445351905],[4.719434766892245,51.821811622832314],[4.719480140759498,51.8217563995812],[4.719527623611935,51.8217275097012],[4.719582838451647,51.82171079213479],[4.720556667236472,51.82158162290726],[4.721502015340811,51.82146312166939],[4.721545233567261,51.82144091679798],[4.721583972107106,51.82141197559957],[4.721582297117027,51.82138435484531],[4.721600457493208,51.82119788455773],[4.722211630766934,51.8211778652234],[4.722488887042183,51.821154663113376],[4.723308559724133,51.821086272508545],[4.724086664485244,51.82101273895014],[4.724225549148566,51.82099778176161],[4.725056346321395,51.820908798536465],[4.725499949024985,51.820871817774346],[4.726730512545491,51.820781462392],[4.72731786339415,51.82073831650933],[4.727453455503403,51.8206921123268],[4.727387307053784,51.82051729562873],[4.72726987075424,51.82011974822384],[4.726970307167305,51.819193196327795],[4.726917509063007,51.81901690567815],[4.72692381583417,51.81901281268454],[4.728190667231649,51.81885761634026],[4.728209219636069,51.81889875087115],[4.728372671424012,51.819424551850084],[4.728389680903295,51.81942877580324],[4.728519839598286,51.81941221673191],[4.728693167187727,51.819917944417554],[4.72890769417327,51.82056815404547],[4.728921648971623,51.820610553428935],[4.728967785172973,51.82064487545067],[4.729010041607512,51.82065982140229],[4.729078193781235,51.82066923533417],[4.729193071486963,51.82067271803409],[4.730343297251576,51.820665225841715],[4.730937552411611,51.82066235692147],[4.731124597147113,51.82065695148812],[4.731209894307501,51.82066155672574],[4.73224556787208,51.82065676103927],[4.733259590861503,51.8206518346866],[4.734547331723397,51.820464687464835],[4.735326813182483,51.820380248662524],[4.736187080602436,51.82026657690834],[4.736193750481748,51.820237195069666],[4.736315247802652,51.82018600011522],[4.736424888926274,51.82009061239404],[4.736482944051859,51.820020743091256],[4.736738376630306,51.81862324743244],[4.736833938299251,51.818608809169646],[4.737440722292207,51.81863023442032],[4.737440127210118,51.81867151942842],[4.737382584539366,51.818734940013336],[4.737334988966399,51.818830415116125],[4.737256675277419,51.8189192680676],[4.737204585851633,51.81895097816839],[4.737101239789649,51.818985500922764],[4.737023111449695,51.819061452488846],[4.736990827992866,51.81916346340452],[4.736922691582219,51.819239469359616],[4.736869871207275,51.81935065618699],[4.736888798184286,51.81945295081746],[4.736954731463372,51.81952970046657],[4.736948120441034,51.81961275728464],[4.736946877218322,51.819698940418384],[4.737024014363883,51.81980723471633],[4.737036600129282,51.81991620328847],[4.736960384382007,51.82020583373684],[4.736989766917561,51.8203050896858],[4.737074266453066,51.82042271445653],[4.737540842815386,51.820697545058664],[4.737651031677836,51.82073737852548],[4.738013869068189,51.820756159628104],[4.739931890143692,51.820752817686554],[4.740740530246825,51.82075443575307],[4.741183553002511,51.82075687502755],[4.741274996679918,51.82076847474474],[4.741356244302675,51.82079421130013],[4.741471153680577,51.82085368028581],[4.741638770154296,51.820896406553466],[4.741805622185354,51.82090532401637],[4.741878127490129,51.82090185218958],[4.741966060378643,51.82089691639348],[4.741990232023762,51.82089550053516],[4.742047914310549,51.820880334733815],[4.742125659681196,51.820859859042606],[4.742422526606856,51.82077478434801],[4.742659009520874,51.82074821315673],[4.743111789914188,51.820708894516166],[4.743410532120375,51.820696340520314],[4.744024308527423,51.82069686694831],[4.745189263968411,51.820678213516715],[4.745911656626378,51.82065403470637],[4.746489194974472,51.82062596422338],[4.746940060327938,51.82060390995582],[4.747171466417128,51.820582721218884],[4.748060681864664,51.82048124869287],[4.748735677754245,51.820392797340894],[4.74953185644,51.820274033922644],[4.749632738875063,51.820266066168685],[4.75014689272471,51.820184989826004],[4.750832130422353,51.82004884266346],[4.751473980815386,51.819918132817584],[4.752336259991862,51.819717131045856],[4.753331441124267,51.81945129501281],[4.754008064141091,51.81924514972689],[4.754307847952106,51.8191574801799],[4.754612451009898,51.81905280424364],[4.75510077411585,51.818882022599276],[4.75542110729769,51.81875394656999],[4.755601996800713,51.818681890458265],[4.755916520231802,51.81855223308343],[4.756047322470269,51.81848868154558],[4.756076484137906,51.81845787173324],[4.756116340267413,51.818377057406224],[4.75612779468075,51.8182429308698],[4.756121758413542,51.8176331170927],[4.75608732962205,51.81735603988137],[4.756031142070703,51.817235484613526],[4.755940955497512,51.8171343586843],[4.75581203630931,51.81706373208117],[4.755716291278886,51.81703250919706],[4.755622867974428,51.81701394209678],[4.754911962276153,51.816906376845296],[4.754095347431122,51.81679565645655],[4.752810585021007,51.81660704932789],[4.750795517557489,51.816330344083006],[4.750594070103999,51.816295704272505],[4.749998112424669,51.81621711862844],[4.749570913280995,51.81615880030717],[4.749536970202965,51.81614468085039],[4.749692287341503,51.81573160641084],[4.749722279808705,51.815642223909265],[4.749792016619304,51.81548054525961],[4.749835868531065,51.81544155892807],[4.749860135495917,51.81543317490674],[4.75054456093095,51.815526434260036],[4.753083104232362,51.8158813259189],[4.753539292123177,51.81595088350103],[4.753548552099309,51.815973384336615],[4.755647289726568,51.81628120035053],[4.755672221159231,51.816225337307046],[4.755777908064021,51.8162006165237],[4.757464598557188,51.81643934671535],[4.75757007412509,51.81645952484788],[4.757604965723604,51.816852985819686],[4.757845330882875,51.816904079943555],[4.757967483511312,51.816922798405045],[4.757966709159892,51.81697827639316],[4.758019456124371,51.81704745949968],[4.758166642399612,51.81715198590085],[4.758219789458343,51.817162592348566],[4.758439790412965,51.81718131961523],[4.758523202870025,51.81717144394417],[4.758739553369184,51.817093637796816],[4.759282718361497,51.816898875863366],[4.759442535812573,51.816843991595874],[4.75969493145557,51.816748828943865],[4.760472012462474,51.816469638028785],[4.761046201079318,51.81625851798462],[4.761477201826752,51.8161039206607],[4.761762580795652,51.816001703495836],[4.762057159255462,51.81589643896922],[4.762092310591784,51.81588372306691],[4.762185007930649,51.81586460543839],[4.763399292432303,51.81549095239365],[4.764234001171532,51.81522623597245],[4.765396750641536,51.81490364154517],[4.765690930751134,51.81482623497563],[4.76575212964633,51.8148265590513],[4.766066729083494,51.81474771182906],[4.766811233766373,51.81456120656751],[4.767420467089501,51.814461977974844],[4.769376468938916,51.81412804788282],[4.769553435248169,51.81409620604467],[4.769622946528123,51.8140671539761],[4.769700019311375,51.8139723379424],[4.769788812045639,51.81390338887487],[4.770071916999612,51.813812751996316],[4.770102433841432,51.81389497384528],[4.770152758431362,51.81389885096701],[4.770506894058159,51.81382019974751],[4.77148901063694,51.81360936587512],[4.772613842679512,51.81337372299093],[4.774199394910494,51.81302693374478],[4.774571803564924,51.812981139052496],[4.776429034178606,51.81258438493658],[4.776680325128049,51.81253562961568],[4.776888160658374,51.8125292276368],[4.777602013321363,51.81238662063505],[4.778974375378679,51.812067561407005],[4.779999539937094,51.81180759159383],[4.780207091670447,51.811760151163455],[4.780919526249241,51.8115973894599],[4.781196676537389,51.81154437165641],[4.781269770735197,51.81152668470944],[4.781300264675092,51.811519101177964],[4.781378513655373,51.81148957044548],[4.781495678110413,51.811445274519],[4.781540521891141,51.811423055160795],[4.781597197205705,51.81138799372122],[4.781651389883499,51.811351630480395],[4.781689496926713,51.811304086906986],[4.781720562390962,51.811253926367236],[4.781816782647594,51.81097107994],[4.781821056088608,51.81093187847453],[4.781812410511026,51.81089364135647],[4.781780016062497,51.810856830456125],[4.7817309627353,51.81082045044313],[4.781663998652918,51.810784751910724],[4.781610357420885,51.81074912119197],[4.781574948201112,51.81071977857652],[4.781531961955171,51.8106656233908],[4.781518376839776,51.810623232295946],[4.781509585773875,51.810564867150006],[4.781510209681913,51.81051842092898],[4.781520588215581,51.810458605985886],[4.781537537923835,51.81040553403975],[4.781597457437089,51.81031475019313],[4.781654320441436,51.810265497608974],[4.781732554794585,51.81020577479135],[4.781796557306428,51.81015191366995],[4.781912132457397,51.81007070737456],[4.781960121204086,51.81003121452465],[4.782059037167854,51.80995043721201],[4.782120618226457,51.80989088623438],[4.782154199873732,51.80983919071486],[4.782187888774907,51.80977949589269],[4.782212166073684,51.809707624235564],[4.782222757420261,51.80960084493707],[4.782222697763798,51.80948110760579],[4.782215923664794,51.809241340658374],[4.782205799056393,51.80912722952689],[4.782258053960192,51.809110983272085],[4.782310107302057,51.809078736262016],[4.782359847170572,51.80903280116296],[4.782395870795832,51.808985247517526],[4.782439045426844,51.808901086022736],[4.782461222417028,51.80883049334884],[4.782467746169555,51.80868550143039],[4.782456097540177,51.80865395885863],[4.782461912761863,51.8085928295471],[4.782498390344319,51.80848024844138],[4.782510925325462,51.808414767319995],[4.782509680591228,51.80835231176256],[4.782489491936289,51.80833672488098],[4.782504719249205,51.80831873987198],[4.782720543449169,51.80811856935282],[4.782818086741672,51.808015592395385],[4.782932595162783,51.807889220019234],[4.782978008638309,51.807824166115864],[4.783000441534714,51.80773447928762],[4.783003763358563,51.807641854562064],[4.78299303897874,51.807572383139785],[4.782952697431115,51.807507403621706],[4.782887088239417,51.80743300425926],[4.782794178464702,51.80737678659756],[4.782706045933299,51.80733685023979],[4.782593702018632,51.80730195032496],[4.782561367801692,51.80729172009765],[4.781053599623099,51.806919828016234],[4.780970134862981,51.806904429049254],[4.780824939662541,51.80686703505904],[4.780562654357477,51.80683832625028],[4.780328157867882,51.80678627696507],[4.779502335259769,51.80659568851411],[4.778554322456295,51.80636033369314],[4.77838009543899,51.80631530217049],[4.778336390525263,51.80631507541074],[4.778215409704976,51.80636528443637],[4.778039299453125,51.80642888331748],[4.777935653714388,51.80642834523256],[4.77785383939081,51.80641424427108],[4.777695800307304,51.80637265033372],[4.777350373280121,51.80624363552967],[4.776757338398112,51.80601707747213],[4.776023067629468,51.805738428096085],[4.775364466676529,51.80549784436908],[4.774971695820941,51.805361607674826],[4.774895418604539,51.80530779312469],[4.774815900099095,51.80527795937577],[4.774733252613835,51.80523340119302],[4.774713285331279,51.80520181439818],[4.774711076517431,51.80511922548842],[4.774682274597967,51.80506385188002],[4.774620540127285,51.80501191886659],[4.774528977043919,51.804980216231456],[4.774464020544737,51.80498168287411],[4.774428148622316,51.80498717275585],[4.774380472804594,51.80500343943796],[4.7742429256391,51.80507807337214],[4.773862192015454,51.804853125272615],[4.772586044789628,51.804173443467754],[4.771876802035799,51.80380354777815],[4.771620866683867,51.80370775763767],[4.771478427498621,51.80368326870233],[4.771211789433472,51.80367025689333],[4.770716249601971,51.80368520203543],[4.770554918917817,51.80367248397487],[4.770269541268733,51.80362969565906],[4.769756805043637,51.803532550994845],[4.769005903866931,51.8034104088679],[4.768796786734422,51.80339175851309],[4.768591768236515,51.803408226309514],[4.768075621740956,51.803529627776776],[4.767664774566562,51.80365158298826],[4.767406175239744,51.80375034235414],[4.766897319622495,51.80403719003015],[4.766185907805309,51.80452347257195],[4.765367961962003,51.805127373936706],[4.765146906813888,51.805279744805],[4.765069756473884,51.80535029995738],[4.764960304270346,51.80568028735684],[4.764614351326014,51.80661751107093],[4.764515985164297,51.8066567295716],[4.764472827181716,51.80667714468416],[4.764256092728743,51.80684734234584],[4.7640439892537,51.8070438855401],[4.76386545599801,51.80719080260602],[4.76380712310828,51.80728494052095],[4.762985872275743,51.80742998797015],[4.762860036931363,51.80758879620711],[4.762682270751802,51.807770035866675],[4.762619864763266,51.80782750766492],[4.762402726672183,51.80799589396635],[4.762329469188878,51.808055371618174],[4.762214300334592,51.808105079216645],[4.762117729275475,51.80813449960805],[4.761999012598428,51.80813980235504],[4.761919414324033,51.80814608734638],[4.761820912644851,51.80816465874439],[4.761570594877906,51.80820383882322],[4.761390049934848,51.808224810131556],[4.761240814237522,51.808239497951185],[4.761050906999558,51.808275128654955],[4.76086597656132,51.808312075480636],[4.760668726303812,51.808366761774074],[4.760516414311901,51.80842297849589],[4.760412991815002,51.80846603796659],[4.760295211812335,51.8085237287061],[4.760095161567113,51.808630009872665],[4.759894887812031,51.808752289228224],[4.759784124688909,51.8088141463339],[4.759703480391258,51.80886558390122],[4.759659997485961,51.808879028446135],[4.758496046960826,51.80923613856912],[4.758259129801533,51.809298866144005],[4.758159555667181,51.80930452648314],[4.758139009288743,51.80925538528086],[4.758048544339803,51.80920483824622],[4.75707016826568,51.80900140341387],[4.756825105672691,51.80893196077627],[4.756764482523606,51.8089207966406],[4.756695941761803,51.80894004064907],[4.756427334134599,51.80897653088235],[4.75601718434914,51.80883471893471],[4.7558399527207,51.80879712166008],[4.755778366205502,51.80879524155977],[4.755671422444531,51.80879208544808],[4.75509887732903,51.808861258687834],[4.755035106620378,51.808866850350576],[4.754875712350058,51.80889308685168],[4.754491907561007,51.80895088678502],[4.754301887014377,51.80899398900061],[4.754151813768034,51.809038339205564],[4.754073520242523,51.80898114474579],[4.754012879590998,51.80897126985641],[4.753874164318129,51.80900716517964],[4.753561854961589,51.80913166769241],[4.753317967165019,51.8092160246131],[4.752608418367372,51.80949450050261],[4.752550656978941,51.80945754515445],[4.75228525023616,51.80956191176026],[4.751786788939512,51.809779075300895],[4.751757978631196,51.80984420719288],[4.751549331471661,51.809938298980406],[4.751502826594608,51.80995920806355],[4.751461587494199,51.809990467279896],[4.75146141286907,51.81000285264293],[4.751407332132763,51.81002965582809],[4.751191229885047,51.81012086798778],[4.751127095103682,51.81015200299756],[4.751099395038619,51.810167851686245],[4.751073233568881,51.81019274136621],[4.751066171871823,51.81022108912752],[4.751097258231558,51.81031931801182],[4.751172319360111,51.81045804253125],[4.751253682897676,51.81059267178363],[4.751311926738059,51.810684079798115],[4.751309160534275,51.810703161116585],[4.751217533306357,51.81076485589785],[4.751146074062086,51.81081349879401],[4.751088316696252,51.81083512064516],[4.751041245269963,51.81086660607349],[4.750972931777232,51.81089875024092],[4.750857872090621,51.81093941468328],[4.750754589790266,51.81097137000074],[4.750479190985516,51.811045485610116],[4.750260350530067,51.811094361025475],[4.750138440396618,51.81111872987996],[4.749896849649983,51.81118657742426],[4.749797884105873,51.81123713391055],[4.749703683814478,51.811303974803636],[4.749663099423898,51.81134762325765],[4.749624480621249,51.81142895904742],[4.749561228534868,51.81160357604208],[4.749527491585917,51.81169293729086],[4.749482134111964,51.81177965565079],[4.749385778500393,51.811910480804706],[4.749126087633614,51.81208015927111],[4.749028751035412,51.8121330475271],[4.748747137805815,51.81226312346364],[4.748563093241876,51.812323796522136],[4.748413365207373,51.81234259387486],[4.748297552717752,51.81234764063694],[4.748196056584641,51.81234141082255],[4.747655210269541,51.812226469217634],[4.747284991553459,51.81214574496598],[4.747207758032497,51.812131388751546],[4.747121087637212,51.8121365932731],[4.746970843010512,51.81219177097946],[4.746844246075394,51.81225275563976],[4.746752103472491,51.81229147733665],[4.746601097525347,51.81240006795487],[4.746508078072924,51.81250045915339],[4.746218029859286,51.81287176347336],[4.746178076517429,51.81295851008888],[4.746167813542801,51.8130361282395],[4.746131912452909,51.813160055902834],[4.746100916543691,51.813319622339215],[4.746099558960716,51.81341509467425],[4.746093906608444,51.81346125538293],[4.746063985478647,51.81354521815636],[4.745988618850088,51.813750733733265],[4.745786286142661,51.814071937270185],[4.745761699763957,51.81410276956374],[4.74575582669627,51.81416441283263],[4.745676252281837,51.81416810634714],[4.745619290986157,51.814191794559555],[4.745566003533604,51.81419150323327],[4.745542017771872,51.814180017677224],[4.745264120245693,51.81410598410049],[4.744681805305881,51.81316038348036],[4.743981556361021,51.811874275638246],[4.743906588663436,51.81173038661377],[4.743793532979748,51.811542419774035],[4.743668143866984,51.811314385836525],[4.743555605906716,51.81109029363727],[4.743292724757973,51.810578420233014],[4.743223494278091,51.81047043129746],[4.743090938841226,51.81027822734987],[4.742845124736567,51.80994192326776],[4.742750715121082,51.8097899268196],[4.742656075999772,51.809653928773784],[4.742472551525818,51.80944544528617],[4.742235266476247,51.80918298958887],[4.742121256941501,51.80906262639972],[4.742039182421713,51.80895069562036],[4.741983148478146,51.808822650242256],[4.741915522716795,51.80860293175535],[4.741797308284883,51.80831119680442],[4.741660348973784,51.80799122960631],[4.740909781734885,51.80650973607912],[4.740245851692944,51.8052599321488],[4.740057742504277,51.804937875050115],[4.739974995475369,51.80487367851403],[4.739872991304989,51.80481711848902],[4.739744832502416,51.80478467077333],[4.739596770671741,51.80477585383746],[4.739390124872228,51.804846452318245],[4.738501810516259,51.805136759221604],[4.738153642349157,51.8052065730735],[4.73799482863672,51.80525059632238],[4.737647587642818,51.805313704695095],[4.737471499201122,51.80534317969468],[4.737242087482298,51.80537545656642],[4.736705649775166,51.80551080103497],[4.736401582525448,51.80558188696702],[4.736249195039529,51.8056130403256],[4.735881537566358,51.80567706212192],[4.735642045587296,51.80571547308858],[4.735682335900298,51.805750276056706],[4.735706997770627,51.80577208906384],[4.736049110730057,51.80606455801909],[4.736604310127905,51.80653368446973],[4.736471195938644,51.80658481524269],[4.736742681516461,51.80681056963118],[4.73695904842557,51.80701950315521],[4.737885972644549,51.80801169484849],[4.738417802183992,51.80863241830521],[4.738569183870119,51.808845375899416],[4.738744125767224,51.8091281387984],[4.738889614628874,51.8094326727444],[4.738963460088488,51.80962429926513],[4.738900966703631,51.8096275665647],[4.738953402615302,51.809773657093515],[4.73900700991197,51.810041039348725],[4.73903731972028,51.81030726099855],[4.739007338658138,51.81077107728641],[4.738885810771577,51.81123180719661],[4.738730199233924,51.8116017720944],[4.738698078994513,51.811664043944795],[4.738601295621699,51.81185137215461],[4.738405916267946,51.8120913157377],[4.738125038947626,51.81239942775157],[4.737823559063517,51.812692458143395],[4.737595637644058,51.81287880183677],[4.737269655977929,51.813109245845574],[4.73682518413572,51.81335683881506],[4.736582969421645,51.81346568504874],[4.736474716659838,51.81349476168401],[4.736264294904731,51.813535399017226],[4.735945657959703,51.81357362968609],[4.73541264680463,51.81363776527602],[4.734919621272703,51.81370057196066],[4.734714454163186,51.81372317219325],[4.734644814813208,51.81373078486306],[4.734142665743637,51.81379095692563],[4.733973975004187,51.813795953278294],[4.733851173109123,51.8137658508188],[4.733731038186602,51.813724151577475],[4.733594658309088,51.813654233641124],[4.733467905336147,51.81355211259791],[4.733403780909832,51.81349524120625],[4.733255629662399,51.81340461221971],[4.732879127334927,51.81321284378275],[4.732259173045135,51.8129567503957],[4.73208098769379,51.81289898368402],[4.731927425436406,51.81286586976529],[4.730658664527844,51.812650012335695],[4.730370021784185,51.8126014306975],[4.730107488869745,51.8125609953203],[4.729887064916211,51.8125450519258],[4.729621530035684,51.81253917699373],[4.729384336899548,51.812559782626046],[4.7292132253048,51.81258824133808],[4.729065755688455,51.8126227675805],[4.728851367586419,51.81270672333819],[4.727945728895948,51.81308459261319],[4.727778941928356,51.81315874924994],[4.727672047474479,51.8131800835105],[4.727245232338458,51.813241681308504],[4.727167958701386,51.81325879433195],[4.726968061670778,51.813290959286874],[4.726982974691249,51.81332459054401],[4.727065477430457,51.81331989338593],[4.727137840659373,51.8133822338579],[4.727181631050355,51.81346247624016],[4.727247398312369,51.813662580604756],[4.727245978114409,51.81375960125982],[4.72720710460951,51.81382699330874],[4.727151789565237,51.81387984095848],[4.727099846225027,51.813901483751216],[4.727051818474777,51.81391153613878],[4.726985167844518,51.813913999810005],[4.726949909440964,51.813905027651984],[4.726884619803823,51.81384298484402],[4.726776430547936,51.81378199135635],[4.726719763361357,51.81375664091707],[4.726667766705044,51.81375350966094],[4.726603613358347,51.8137559871704],[4.726499145949282,51.813781978454514],[4.726367714239873,51.813829752763674],[4.726353018810964,51.813838185839764],[4.726303061473068,51.813866290603116],[4.724857562610091,51.81431644638474],[4.724793724737626,51.81424073440163],[4.724747275093424,51.81425672994802],[4.72468913382766,51.81427498123763],[4.724050430270572,51.81351243506417],[4.722520795737929,51.81176139530332],[4.722070747075412,51.81122518838251],[4.722044025883374,51.811173941934506],[4.722026535776593,51.8108639191676],[4.72202768919627,51.81078573536804],[4.721973444216437,51.81073768744419],[4.721859242399627,51.810661946258335],[4.721603308317298,51.810514177907315],[4.72109593657497,51.81022459932312],[4.719961032862271,51.80955211270448],[4.719853231219322,51.80949446948827],[4.719827120371338,51.809486579082176],[4.719805161060646,51.809451358956714],[4.719707838554487,51.809417000045485],[4.719610580852588,51.80940638311184],[4.719442457274474,51.809402071085344],[4.719284710437484,51.80942801161569],[4.719049888428864,51.80951415496552],[4.71874493196933,51.80961331839872],[4.718401325557012,51.8097360006689],[4.718101112447605,51.80985196227135],[4.71783909637441,51.809974851011496],[4.717674331412709,51.81008074554679],[4.717654184500282,51.81009172707388],[4.717565202515845,51.81014050765124],[4.717405750145746,51.81028101232111],[4.717245848222997,51.81045170525033],[4.717096668125351,51.81062917010592],[4.716963989083888,51.81081679269804],[4.716902448785279,51.810923791616894],[4.716874085929543,51.811011368609975],[4.716883763232615,51.81108858236251],[4.716909720944916,51.81116279251935],[4.716962586441919,51.81124722003235],[4.71707440166653,51.81139907895265],[4.717159753084061,51.811510788124224],[4.717206659640063,51.81163208345063],[4.717211848693507,51.81173120561694],[4.717171967002052,51.811893552711176],[4.717075004087315,51.81208679857995],[4.716826226334091,51.812298272694875],[4.716361285732924,51.812543348978664],[4.715582908067485,51.81303539420166],[4.715356540970787,51.813250864884175],[4.715229000726681,51.81331619665547],[4.714877295629797,51.81342101673552],[4.714327882014483,51.81354999277993],[4.713885565424307,51.8136166144563],[4.713301378881302,51.813676226716005],[4.710114051253446,51.81396806247769],[4.709736689410056,51.81397827103055],[4.709572678675254,51.81381010483536],[4.709521803723327,51.81381548829205],[4.709254277465476,51.81383097481953],[4.708721994756958,51.81384389758568],[4.708606996302438,51.81384968472778],[4.708606837074532,51.813860263439125],[4.708660510961366,51.81405618012513],[4.708673542458976,51.81410322112563],[4.708185194815408,51.8141842642276],[4.708154113235063,51.81403647739632],[4.708098291604164,51.8139280291073],[4.708043797032828,51.81386965161409],[4.707978440441823,51.81384140318141],[4.707899738736895,51.81384223842137],[4.70775929409748,51.81385123110075],[4.707701151854679,51.8138692160184],[4.707634397698197,51.81387837812356],[4.707492810773726,51.813908008086834],[4.707369182042243,51.8139338723002],[4.707279800417238,51.81395270793561],[4.705499676567369,51.81432688375661],[4.70528990091084,51.814322568437085],[4.704947606687065,51.8143812217989],[4.704579923115811,51.81446682185899],[4.703544646068902,51.81483884712057],[4.701053589123876,51.81590633467407],[4.700307946199081,51.81625731474227],[4.69996273877286,51.8163964496887],[4.699731597337363,51.81648206020069],[4.699479217503318,51.81656780467987],[4.699278452681171,51.816627270850006],[4.699073269134518,51.816676130233496],[4.698912523078747,51.81670512250315],[4.698676207910164,51.81674760543451],[4.698200296407105,51.81682919694674],[4.697213674525192,51.81698055628172],[4.696648725390637,51.81705748863258],[4.696029289167271,51.81713048395743],[4.695056515083407,51.81721971608759],[4.694732655239742,51.81724154648478],[4.694305460196711,51.81726818520704],[4.693830428359544,51.817291701150495],[4.693011733634848,51.817325054233926],[4.692394744204954,51.81734669181426],[4.690287545727411,51.81742167898132],[4.688341408340024,51.81747436173754],[4.688273930013277,51.81747602459519],[4.68813021658406,51.81748007195747],[4.68805940166035,51.817481972791505],[4.68785737202331,51.81746064079892],[4.68748630160658,51.81741197837077],[4.686760158393754,51.81730339278898],[4.686708834063084,51.81744450049804],[4.686544795285789,51.817443521289384],[4.686493919418284,51.81723419262831],[4.684970618237166,51.816979419714244],[4.68397506989831,51.817085970538194],[4.683764113028717,51.81710328585167],[4.683667184461589,51.81712438189127],[4.683140337170375,51.81723941164234],[4.683019531833648,51.81726965368696],[4.682963332439045,51.817322218326616],[4.682967800336126,51.8173560496874],[4.682972209215983,51.817393752109346],[4.683066236107942,51.81747844294312],[4.683165994229331,51.81751620143725],[4.683281272302676,51.81751998951114],[4.683949123187809,51.81746799485656],[4.685421616329711,51.817323008656714],[4.685470729851343,51.81735091368643],[4.685614957545026,51.8179827221622],[4.684026845768432,51.81814430787859],[4.683192439320134,51.818222399446796],[4.68316984303591,51.81812291315588],[4.683072393959531,51.8181238763874],[4.683062542952463,51.81811478548067],[4.683013441128414,51.81792611015968],[4.682989090895584,51.81791228780819],[4.682885542749233,51.81790392450692],[4.682360278662257,51.817943608360785],[4.682226834293557,51.81795648400347],[4.682219408149304,51.81795205203099],[4.682200219072119,51.817901099600945],[4.682181931061309,51.81784576611425],[4.682156619571494,51.81784019479692],[4.681005631381712,51.81795327058392],[4.681018986370717,51.81805760502254],[4.680893084572399,51.81806742794188],[4.680862235001801,51.81796350414787],[4.680412867072837,51.818128535287585],[4.680138456505268,51.818235522943596],[4.680142849497804,51.81827400020427],[4.678725412078613,51.81883394910693],[4.678591262331565,51.81889145945725],[4.678588696048432,51.818895830429526],[4.678649257214293,51.81896354900592],[4.678297194466422,51.8191092891755],[4.678484033188316,51.81911712670918],[4.678656532027111,51.81913648982542],[4.678816464321513,51.819160680153715],[4.678968243701395,51.81917372546185],[4.679132287109736,51.819174715265085],[4.679437459571916,51.819177587899055],[4.6806455994985,51.81919286725868],[4.680665559854496,51.8191945352693],[4.680675577192552,51.81924620665814],[4.680807872994666,51.819200553198954],[4.680893004590716,51.81918867918616],[4.680982916425622,51.819217090485125],[4.681084733421462,51.81928299043288],[4.68118323414612,51.819534155362305],[4.681197661006537,51.819543531925994],[4.681289171397909,51.81954975960338],[4.681773388377436,51.819579767319944],[4.682406528238999,51.819619440362814],[4.683270526183255,51.81967468883409],[4.68385877640673,51.81970918147108],[4.683924510199822,51.81971293084456],[4.684122636387912,51.81971798840326],[4.684352693391758,51.81970491527349],[4.684530514559427,51.81967707790541],[4.684616322289915,51.819648431509854],[4.684693548502795,51.81960941111402],[4.684764817749517,51.819551775463985],[4.684788773143217,51.819510887420286],[4.684791654430821,51.81945955157526],[4.684668456549451,51.81889496298247],[4.684594495510633,51.8185910470043],[4.684598783826385,51.818583073670844],[4.68485699970858,51.81855287756647],[4.68572318475507,51.81846644824229],[4.685942787927003,51.81925870115652],[4.685968704864469,51.81938607693579],[4.685963570958312,51.81942165841324],[4.685937784440058,51.81944653504718],[4.685877831467619,51.81947275716051],[4.685653446679342,51.819522769204056],[4.685640812346636,51.81953198345686],[4.685633860640032,51.819550521452065],[4.685654008654012,51.81956689966812],[4.685692645286915,51.81959938729789],[4.685692436467257,51.81961280521258],[4.685681313026623,51.81965867254968],[4.685685352286047,51.81966669659593],[4.687023208750605,51.81982977672023],[4.687253464908054,51.819857471623976],[4.687673670554729,51.819907459456616],[4.68777403449612,51.81990676683459],[4.687766439980209,51.819805822149604],[4.688152663102851,51.81981844575663],[4.688142528664124,51.820122890377355],[4.688185413862017,51.82012314580258],[4.688183036661493,51.82016906545494],[4.688439046546151,51.82020104079022],[4.68878109172557,51.82024333329181],[4.689278159234192,51.82030486830587],[4.689286981550613,51.820299759484065],[4.689346494332867,51.82016747322582],[4.689354945772658,51.82015952357766],[4.689389107148612,51.82015843682036],[4.68984356977008,51.820228489944064],[4.689959319502609,51.82022917763705],[4.68997226706878,51.820226673912536],[4.690416908778026,51.82028557087619],[4.690492792472656,51.82036008334128],[4.692523765430953,51.82064669277586],[4.692996538397054,51.820718132787384],[4.693004683303641,51.82073005137052],[4.693034153059136,51.82089847787287],[4.69304862653844,51.82090501462682],[4.694149657980446,51.82106480649897],[4.695108565919532,51.82120620149386],[4.695136502650611,51.821203785585965],[4.695208114262813,51.8211773704235],[4.695827747070434,51.820878065187884],[4.696491281060643,51.820566628717486],[4.697199005634572,51.820223965597705],[4.697515382168117,51.82006660479619],[4.697587328355432,51.81999090092426],[4.697588038923136,51.81994445537894],[4.697533974876975,51.8198855596019],[4.697430886036702,51.81979231141902],[4.697926551533154,51.819537426406036],[4.698166583870648,51.81941625948872],[4.698770768111815,51.81911684902948],[4.698783277499782,51.81911563163589],[4.698915831358542,51.819215502583546],[4.69897703170429,51.81924347279292],[4.699087822289657,51.819241542669644],[4.699127404321615,51.8192126137728],[4.699139739200575,51.81919565440427],[4.699140184264149,51.819166496952555],[4.699116972028639,51.81913229750043],[4.699012053739841,51.81904962141143],[4.698774535451273,51.81887016968145],[4.698742384572163,51.81879411333028],[4.698712555642759,51.818511625678404],[4.698719256028711,51.818509084344385],[4.698759744901554,51.818502612728714],[4.698972158781673,51.81849895522159],[4.699658294956276,51.81847639733309],[4.699670863170807,51.81847130967996],[4.699673605934006,51.81845532685874],[4.69967323095568,51.81839803643419],[4.700375164838798,51.81837685677487],[4.701335283656465,51.818354085429235],[4.701418223708147,51.81834889286836],[4.702104690304169,51.8183317418715],[4.702185481032726,51.818330922680076],[4.702351726100795,51.81832389299003],[4.704042153111881,51.818275682774974],[4.705235575086398,51.81824417364263],[4.705499397089285,51.81822764186479],[4.706667723540916,51.81820345634739],[4.706803959927575,51.81819831013649],[4.706929778672418,51.81819362113022],[4.707023102796948,51.81819003264312],[4.70708851602707,51.818187315138765],[4.707197669988403,51.8181833022964],[4.707208455628475,51.818185945425846],[4.707287492722513,51.81929526600805],[4.707287635643367,51.819423778285724],[4.706541308906874,51.81943338655471],[4.706449301006585,51.819432336974806],[4.706358958028201,51.819431296981044],[4.706248214017275,51.819430138553535],[4.706169113590264,51.81942916364182],[4.705992059656007,51.81943484524942],[4.705821927006089,51.81945088932494],[4.705500316853281,51.819460892144626],[4.705282124895998,51.8194609153799],[4.705077212121597,51.81949146530197],[4.704998520037913,51.819491007922615],[4.704979605893481,51.81947515617674],[4.704905077586055,51.81947472293758],[4.704894569855048,51.81948111299792],[4.704881261527152,51.81950761593471],[4.704872875445148,51.81951143768915],[4.704847040962319,51.81951257736283],[4.704519224330966,51.819519961672576],[4.704510935910784,51.81951733282271],[4.704506953374548,51.819505439259736],[4.704469471819475,51.819505737179334],[4.70302077930643,51.819536266789704],[4.702166003127493,51.81955786110904],[4.70205313071811,51.819559782887104],[4.701914800717745,51.81956542642473],[4.701838791054047,51.81960756178459],[4.701823669008421,51.81961624729124],[4.701786887859913,51.81962532225762],[4.700146371645818,51.819673792374346],[4.700028098211134,51.819674906666364],[4.699915655939979,51.819675797012046],[4.699911692832032,51.819662612633074],[4.699902992358064,51.81965972306978],[4.699607292901265,51.81966341032961],[4.699496398936688,51.819672050364],[4.699444966094834,51.819686200025195],[4.699137961114753,51.819803106426185],[4.699077857762302,51.81983965603118],[4.699035332512965,51.819870372574],[4.699006704807525,51.819890849831836],[4.698942074984675,51.81995111363175],[4.69883037633056,51.820012391211556],[4.698560120534548,51.82014938193997],[4.697965954532618,51.82044627043117],[4.697752789145685,51.820552884858486],[4.697425628297562,51.820707344308474],[4.697305442388917,51.820751539783075],[4.697324427032637,51.820789843224084],[4.697326711221192,51.820803791745135],[4.69717693841781,51.82090381063243],[4.697062208135333,51.82099964893066],[4.696986501330036,51.82110319965727],[4.696978184174997,51.82115682643336],[4.696992225047642,51.82121884255839],[4.697052980469029,51.82127597120121],[4.697118944311749,51.82131919623964],[4.697232078575445,51.8213549575272],[4.697508039986887,51.82139012599191],[4.697916446455038,51.82145084619941],[4.69850729797779,51.82153534367007],[4.699135461756426,51.82163089540434],[4.700233484472031,51.82177203195909],[4.701203468227245,51.821871895430014],[4.701762183276507,51.82193451252286],[4.702013416528468,51.82195326909413],[4.702144677497899,51.821892617726654],[4.702243705289128,51.821897841009736],[4.70293441519209,51.821933868518684],[4.703022884044558,51.82192148196506],[4.7031181936592,51.821842556372786],[4.703180217126186,51.821816596425705],[4.703244080477542,51.821806646044784],[4.703312693610449,51.82181298105488],[4.703355247764885,51.821835163973496],[4.703394854280218,51.82188700569163],[4.703429466871595,51.82193856032856],[4.703490556294545,51.82197426941592],[4.703575804600562,51.821981991941776],[4.703628268393249,51.82198229750558],[4.7036780844983,51.82196504000835],[4.703930896069017,51.82196212466375],[4.704047162857339,51.82192899608443],[4.704083085552508,51.82192172212602],[4.704154130027276,51.82193245724867],[4.704222321214334,51.82196665943858],[4.704274122435687,51.82198321860615],[4.704371049878192,51.82198971774045],[4.704459063125057,51.82197990719353],[4.704528012796348,51.82196405050413],[4.704646881765379,51.821951581568825],[4.704758585542298,51.821944747176225],[4.704852181503523,51.82195122654249],[4.705025288304026,51.821959458758144],[4.705219010597388,51.82198122874273],[4.705311381358062,51.82198615277993],[4.705467941743799,51.821987062245995],[4.705615167342102,51.82197191752306],[4.705757705826498,51.821963713393544],[4.70589475106864,51.82196089645294],[4.706002978930933,51.82196358842853],[4.706089555850336,51.821966155562954],[4.706168645124754,51.82196816323961],[4.70653172432054,51.82197078535842],[4.708419519761129,51.82204287674928],[4.709360141417823,51.822075409031186],[4.709684361284614,51.82208682874234],[4.709760975242188,51.8220872709662],[4.709804100476616,51.822071778075326],[4.709872528538709,51.82203501307603],[4.709932664856741,51.8219958784276],[4.709925209271604,51.82193777243483],[4.709853982913994,51.82016555699539],[4.709877458359817,51.820155112850685],[4.710601379741121,51.82014096590673],[4.710626502409408,51.82015943316252],[4.710659495168784,51.8202362658333],[4.710997802695012,51.82111198879175],[4.71109802550351,51.821370620814925],[4.711368439395477,51.822054216709994],[4.711385194352628,51.822075474221215],[4.711448626877226,51.82209416097174],[4.711516792969539,51.822102553292886],[4.711568284282331,51.82208452728168],[4.711612499065549,51.8220517512673],[4.711623778493938,51.821993754127824],[4.711597362125494,51.821894766679954],[4.711693409081416,51.82187673910113],[4.711747201715907,51.821844018159695],[4.711790028186519,51.82182052383982],[4.711835174276416,51.82180891323831],[4.711893010858462,51.82178421448277],[4.711935717371329,51.82176871840286],[4.711997499887282,51.82175849421938],[4.71205513920992,51.82174695450452],[4.712115496278042,51.8217207222961]]],[[[4.828577130277614,51.81736785285677],[4.829277611147496,51.8172891237462],[4.831103681511952,51.817030447927394],[4.832342436147945,51.816823158866264],[4.833037492296506,51.816710319602365],[4.833164472215197,51.816677372014325],[4.833225670207004,51.816644113820026],[4.83317264482339,51.81652051457212],[4.832517337395205,51.81489194705681],[4.832500711417613,51.81478813160928],[4.832485370468884,51.81468148364694],[4.832411824651291,51.814534046459734],[4.832178386946757,51.81418508759294],[4.832035022468349,51.81399370839908],[4.830598268453878,51.81237149473648],[4.830562639218845,51.812323585739406],[4.830058346308082,51.81176070332094],[4.828928858278408,51.81044984764056],[4.828846281927754,51.81039448885982],[4.828676009874795,51.81029381304383],[4.828466019913535,51.8102068819507],[4.827863933165472,51.80998053941107],[4.826884004214184,51.80960762419165],[4.825332439780683,51.809006942886334],[4.82464210605711,51.808749195532855],[4.824413056293596,51.808689518847714],[4.823914652976817,51.80859758354798],[4.822907699839424,51.8083932708211],[4.821891928271612,51.80819587487225],[4.820414536561753,51.807896374902995],[4.820016036175659,51.80783922649025],[4.81981631605425,51.80783155106726],[4.819605689285812,51.807830532517784],[4.819472443576848,51.807833242505836],[4.819152824419216,51.80785930778579],[4.819019692359991,51.80788601728549],[4.818575047607442,51.807956118212346],[4.818447036873083,51.807972787379754],[4.818140875365649,51.808053880223476],[4.818035212283266,51.80808097888082],[4.817862905303262,51.808111109569516],[4.817640187777652,51.80814434988615],[4.817173375809266,51.80812350394642],[4.816863988133441,51.80813025851312],[4.816726198539597,51.80806430119702],[4.816453359013114,51.8079133040818],[4.816348874454195,51.80784725032132],[4.816139007962884,51.8077533296832],[4.816000959096069,51.80770801519028],[4.815956923276652,51.80770083290114],[4.814355665413712,51.80775160586454],[4.81395583621352,51.80776694294979],[4.813711822721261,51.807772459792375],[4.813390053833942,51.807770886884015],[4.813157628255412,51.807749106112674],[4.812952391373105,51.80771713545306],[4.812549102635939,51.80761194013039],[4.812443504576898,51.80760110050663],[4.812321541687285,51.807600503097014],[4.811988994678229,51.80759551900586],[4.811861245931949,51.807591538222006],[4.811797732736641,51.80757754980425],[4.811742217786809,51.80755663353082],[4.811384022519516,51.807376046124446],[4.811212504837941,51.80734423785886],[4.81111851926353,51.80733680857128],[4.810863398125494,51.80733220134693],[4.809504636754855,51.80730126368023],[4.808783400138724,51.8072873884476],[4.807912813925914,51.80726606254985],[4.807239596428205,51.80724080251359],[4.806579711603653,51.807279344374],[4.806106848281891,51.80734151751049],[4.805578205783086,51.807467925115304],[4.804150577977977,51.807869338279374],[4.80365635924772,51.80800468203442],[4.803544659945472,51.808047222277196],[4.803481663710897,51.80809000378055],[4.803404040619582,51.80820135465927],[4.80330256905745,51.80851489993569],[4.803266683141738,51.808617942604286],[4.803272756476026,51.80869538874524],[4.803353617741927,51.80888055756845],[4.803338462374231,51.80895789808506],[4.803218931119308,51.809090717176716],[4.802475292217766,51.809710728033366],[4.802440521109676,51.80972758633386],[4.802301629865548,51.8098440503864],[4.802218923156693,51.80989757140181],[4.801898174014845,51.81007299673914],[4.801598099006008,51.81019484908356],[4.801516122028338,51.81022411577517],[4.800821406050584,51.8097360229271],[4.800687599980341,51.809685292379726],[4.800423010223346,51.80963958410981],[4.799839993056608,51.809558477680454],[4.799275218181616,51.80948339489768],[4.797893562583085,51.80932034218846],[4.796642478457398,51.80916928559764],[4.796399937099106,51.809156968392216],[4.796048780489927,51.80920526190747],[4.794986321026343,51.80940041247522],[4.793072594507534,51.80974736950169],[4.792739108731221,51.80981251619267],[4.792325279572681,51.809877254698726],[4.792037264450912,51.80990366437536],[4.791533691596739,51.809923302220206],[4.788347761908589,51.81001288967893],[4.788114230528389,51.81001169774082],[4.787863315458445,51.80997145013635],[4.787585862160603,51.80989210087514],[4.787121096601257,51.80971708773541],[4.786567013331473,51.809496972005775],[4.785815386926078,51.80923119784172],[4.78543972902246,51.809118051823724],[4.784822581725309,51.80891437709341],[4.784571899867416,51.808857350899856],[4.784464087075826,51.808856797203994],[4.784400093988862,51.80897259300428],[4.784086956463152,51.80997481183998],[4.783923726436998,51.810506595291116],[4.78379150027048,51.81083674050316],[4.783700029028132,51.81107677601469],[4.783659039060782,51.811153207315215],[4.78358201426034,51.811247000783794],[4.783454916562427,51.811349309470906],[4.783305158631043,51.8114649213798],[4.783119347360925,51.81163015149312],[4.782977948383131,51.81174322538986],[4.782860040686582,51.811873967612506],[4.782839094011395,51.81194585653789],[4.782833918619589,51.812052405778104],[4.782959061824897,51.81222052734429],[4.783068713817529,51.81227089582921],[4.783394009671047,51.81235334048335],[4.784225278309528,51.8124572232521],[4.784581672938179,51.81245595727124],[4.784932990229673,51.812429632736674],[4.785239632224572,51.81238166000497],[4.785500405687245,51.812370352153614],[4.785831445609459,51.81239708036213],[4.786397494580469,51.812471460391244],[4.786551781979786,51.812546827540814],[4.786681095287432,51.81271548236049],[4.786745956407289,51.812753231915096],[4.78697613529763,51.81278847251959],[4.789329891405168,51.81302241248418],[4.790057534457233,51.81309346945339],[4.790951857711059,51.81318523810259],[4.791123886089679,51.813210627427985],[4.79129270874329,51.81328941666249],[4.791561410491896,51.81334006870258],[4.791738488476104,51.813361354296376],[4.79167384823679,51.813558695076274],[4.791678172063569,51.81357807032898],[4.792155656484724,51.813708486941636],[4.792258136110218,51.81373558572229],[4.792566170010872,51.81326645807611],[4.792708190629518,51.813041638822824],[4.792731991357917,51.81303634016979],[4.793949847257597,51.81331526566611],[4.793905903577193,51.81339581399545],[4.794330886183948,51.81349834430292],[4.794373877769076,51.81349004569662],[4.794435907473771,51.813490359013336],[4.795314947698355,51.81370098007548],[4.795353032727987,51.813717687756004],[4.795357246373137,51.81374557808985],[4.795323499793717,51.813778955072074],[4.795279729438215,51.813814862109815],[4.79522590957914,51.813886845332156],[4.795104526030765,51.81403100123592],[4.794953342370757,51.814225068517786],[4.794865591111346,51.8143443616011],[4.794811398948671,51.81444447070872],[4.794733223596729,51.81456381292585],[4.794795013205068,51.81461418761389],[4.794865976280613,51.81469531624308],[4.794951169066636,51.81477083945117],[4.795022043774657,51.814826937047464],[4.795126546416826,51.81492216973037],[4.79520267632815,51.81495868065282],[4.795316999412603,51.8150036428505],[4.796746457317968,51.81521702758881],[4.797131357459932,51.81526618665797],[4.79750910737943,51.815320986617806],[4.798035342273131,51.8153876263397],[4.798127185815878,51.81540073248246],[4.798175071685656,51.8153684575545],[4.798228979505947,51.81525776594801],[4.798241381094111,51.81513705860194],[4.798279083027881,51.81505570344986],[4.798338100793822,51.81496800323953],[4.798911604356854,51.81501758668047],[4.800375583782437,51.81542696296727],[4.801069556386774,51.81530604874218],[4.801814346580903,51.81515106373834],[4.802040962319784,51.81507761655347],[4.802944568032532,51.81461865502238],[4.803268083178666,51.81445691759301],[4.803606001198254,51.814790712612705],[4.803580055597552,51.81486516086594],[4.803608582077851,51.814977297610326],[4.804372717316791,51.8160300806173],[4.804645693585142,51.81626781185948],[4.804870385329439,51.8163435041699],[4.807117758558554,51.816712036708864],[4.808211719910113,51.81686143170202],[4.808413787879564,51.81688384720845],[4.80877864264943,51.816907321814085],[4.809189715231687,51.816930765833206],[4.809728371872573,51.816940642377446],[4.809908093789541,51.816919850585634],[4.811165724836918,51.81690461087227],[4.813188369897256,51.81710702851417],[4.81410265053349,51.81707975601695],[4.815087766858209,51.81704843439396],[4.815459401316335,51.81703011726042],[4.816004552751252,51.81698761219339],[4.816307017571155,51.816973343045206],[4.816477633920009,51.81698088188205],[4.816677800096099,51.81702236918828],[4.817011114529603,51.81713675850878],[4.817480949557058,51.817288194426055],[4.817727465262686,51.81735235563059],[4.818076768018421,51.81738811296543],[4.818498462938592,51.81742834849561],[4.819128952404917,51.81751965593602],[4.819423364238824,51.81754998233708],[4.81951072959027,51.817555824137635],[4.819947815628159,51.81759741874887],[4.820908168949886,51.817648506416646],[4.821820563704373,51.81770580539329],[4.822422943593517,51.81774844575923],[4.823412698955401,51.817779525416356],[4.824526390677295,51.81768887470346],[4.82657276844206,51.817530416821754],[4.828577130277614,51.81736785285677]]],[[[4.825981726820533,51.80269575448002],[4.824838446076955,51.80135046985405],[4.824493603886039,51.80100018685075],[4.824405135488664,51.80095176449206],[4.82415730665706,51.80089922296132],[4.823733709829876,51.80085667541279],[4.823161606980998,51.80077393026689],[4.822802735162962,51.80074794808996],[4.822572449923632,51.80075716177537],[4.822021367327779,51.80082418362874],[4.821357384748543,51.800932462573044],[4.821166155089457,51.80098031225257],[4.820955659260973,51.800971296820194],[4.820151287323551,51.80108895499826],[4.818894897431625,51.80127228843651],[4.81861000467948,51.801320712178125],[4.818501159250572,51.80133747422144],[4.816850895758834,51.801562228103386],[4.815728700656076,51.80169714902035],[4.814559884112278,51.80183183171146],[4.81411759699288,51.80188438051924],[4.81204260461151,51.802086605680636],[4.81150629448666,51.802135070350104],[4.810406696294488,51.80222566570606],[4.809301772525211,51.80230925749246],[4.808467997200646,51.80234617929555],[4.807302286474098,51.80236571262233],[4.805588055625991,51.80237916321144],[4.804695337870953,51.802370864477645],[4.804208638704743,51.80238005973705],[4.802949340710244,51.80236218396882],[4.802197081185721,51.80233959770118],[4.801695794010649,51.802318260074884],[4.801212870815964,51.80229314063048],[4.800476767669602,51.80224456070215],[4.799692466719345,51.80215754323208],[4.798743566364918,51.80205317952865],[4.797719137622165,51.80193191399013],[4.796810763991356,51.8018166417923],[4.796040227770065,51.8016966378356],[4.795720026975044,51.80164238163246],[4.794633839347598,51.801470972869495],[4.794149065212037,51.801366076257075],[4.793921951285033,51.80132338198758],[4.793893582595697,51.801359881440504],[4.793869008885323,51.801392788460156],[4.793854192858134,51.801443292345304],[4.793803572237538,51.80200068946173],[4.793677019937946,51.802856013115544],[4.793628693168169,51.80323872034965],[4.793627905274423,51.80329858486626],[4.793656272191512,51.80332556558909],[4.79392391786906,51.803452075323854],[4.795421334998138,51.804041031106344],[4.797360014031375,51.80491707788735],[4.798328525198119,51.80534102053654],[4.798945644737211,51.80557971914786],[4.799257034259317,51.80567366258834],[4.799669882255433,51.805744372577465],[4.800483599965816,51.80584676188973],[4.80098365060388,51.80587016305334],[4.80123369382468,51.80588044452638],[4.802123927741277,51.80592514275409],[4.803127509164172,51.80592833547949],[4.80435330507221,51.805937268836054],[4.805590776492268,51.80571864475052],[4.806055411471617,51.8056476592372],[4.806577083917205,51.80570520675043],[4.806824280199383,51.80567804366836],[4.807061698846073,51.80566657342473],[4.807259918568395,51.80566058526923],[4.809836386147111,51.805807735874275],[4.812120595144576,51.80595907512573],[4.812522874485104,51.8059788522301],[4.812870020625091,51.805980551766254],[4.813900401718005,51.80597139723426],[4.81486298028642,51.80595828957607],[4.815002281627693,51.80593729296155],[4.816670015151368,51.805891479890356],[4.818632724299186,51.80585791110955],[4.820639086733363,51.80582839074717],[4.82081122109972,51.80581115826544],[4.820747523411174,51.80534790355822],[4.820574001993621,51.80398480400451],[4.820532232022791,51.80359881373956],[4.820503996915123,51.80352693780183],[4.820327462173378,51.80333202995246],[4.820121550451442,51.80312304398097],[4.820053171536544,51.80303291138394],[4.820002679886636,51.8029106079192],[4.819997258900335,51.8028783253258],[4.819993693019643,51.80279779565034],[4.820046388530832,51.80277792224674],[4.820058838928536,51.80274778980875],[4.820117594550686,51.802709366284176],[4.821833548829381,51.802193798812745],[4.821870029709348,51.80220558691235],[4.822025674450812,51.80220762653726],[4.8223626722599,51.80268509875731],[4.8228819929182,51.80339517853477],[4.823463174203198,51.80408619981352],[4.824547205329424,51.805278187395594],[4.824946530048243,51.80570176041473],[4.825680074153943,51.80639711183943],[4.825986394844163,51.80663572787868],[4.826225697442483,51.80680744535691],[4.826604736957885,51.80705698688766],[4.827411943452967,51.80748946611351],[4.828048308817199,51.80783571022128],[4.829394068919052,51.808549695058026],[4.830668231816482,51.80916552293639],[4.830910572154699,51.80916099476392],[4.836473402429145,51.80907110886804],[4.83688185173118,51.809066057011144],[4.837058851528939,51.80902585683632],[4.837691256614366,51.80874831663115],[4.839167539434399,51.80812299118925],[4.83928346766908,51.808106500996615],[4.839340988414991,51.80789490842566],[4.839357916327785,51.80763228976171],[4.839383901483714,51.80669258394408],[4.839374283152879,51.80659344651148],[4.83912245303708,51.80642092358707],[4.837857827386139,51.80560008086139],[4.8369826494077,51.80510387415309],[4.835903865097582,51.80464799250799],[4.835172904378024,51.804445340014155],[4.834792787723998,51.80434961987564],[4.834292848064167,51.804317331639645],[4.833918377572665,51.80423660211388],[4.833453862545272,51.80409919159383],[4.83294726601761,51.80389758280265],[4.832651561148591,51.803809738236],[4.832409686321583,51.80377866122471],[4.832166329927515,51.803732866922175],[4.829466889939069,51.80350330305483],[4.827817337048327,51.80336694076464],[4.826545796842906,51.80302514580906],[4.82626899709439,51.80292473029281],[4.826104758929032,51.802810144410564],[4.825981726820533,51.80269575448002]]],[[[4.853653230477896,51.81715344234425],[4.854269786874875,51.81709044020983],[4.854591867962654,51.81707125823023],[4.855121953856187,51.817102564201186],[4.855463884360673,51.81727133107115],[4.855512855868144,51.81728497190253],[4.855542855067495,51.81728330199729],[4.855605859885783,51.817271974187626],[4.855756637205885,51.817232400938686],[4.855932136485354,51.81717952131729],[4.856051372172906,51.81716638401114],[4.85626967358883,51.81715601738829],[4.856445138595205,51.817141328226846],[4.856847624480439,51.81687038604677],[4.857110607188023,51.81674254816531],[4.857399459239828,51.8166452769269],[4.857544562784447,51.816556646024786],[4.857689553628382,51.816477562055816],[4.857818988326695,51.81641130988652],[4.857878581729999,51.81637132261366],[4.857971433518776,51.816335614611965],[4.858617416010675,51.81606963544252],[4.858856681112624,51.81597523295381],[4.859012126260857,51.81592741878483],[4.859095478280742,51.81592056887533],[4.859330860636202,51.81587311393707],[4.85955783092457,51.81583284659269],[4.860664016200448,51.81566130651621],[4.861868549574183,51.81548142256633],[4.862729357620028,51.815356762378],[4.863172942502897,51.815306359475],[4.863324652408997,51.81529284384172],[4.863631199243446,51.81528337334714],[4.864326576818527,51.815277441623074],[4.864976470688692,51.81528033508534],[4.865415014240692,51.815269641372915],[4.865529234346963,51.81525750404193],[4.865763958910393,51.815266030943775],[4.866791976493036,51.81529846347431],[4.866906230512023,51.81528348637676],[4.867011677962268,51.81523776262544],[4.867086779083595,51.8151519062501],[4.867058500264919,51.815040818437474],[4.866730786246306,51.81414315169633],[4.866658666110929,51.81393484175222],[4.86592070755004,51.81287200552988],[4.865861880790487,51.81277471662263],[4.865857634073386,51.812709927293234],[4.865914866034315,51.81251302973576],[4.865900936950693,51.812457487048654],[4.866051266932596,51.811950050000895],[4.866245222539201,51.8113419083114],[4.866358837453449,51.81091275617414],[4.8663915739275,51.81067368779767],[4.866436064555901,51.81049815129047],[4.866400164304363,51.810434511358395],[4.866142880311298,51.81036292170311],[4.865768500468475,51.81033725953285],[4.865376911465903,51.810287779130384],[4.864930634308821,51.81025147304348],[4.863929528471224,51.81020598370435],[4.862191979746402,51.810160548153846],[4.861976919601035,51.81014590892111],[4.861472963500206,51.81005823707537],[4.86073512411264,51.80992822614822],[4.85990939673227,51.809767107271966],[4.859672713757634,51.80971494916141],[4.859480162056342,51.8096627310526],[4.858917139291056,51.809465110698945],[4.858186493217762,51.80918467125922],[4.857752680836102,51.80901007832643],[4.856817092853685,51.808564584635704],[4.855631902599296,51.8080356341931],[4.85524714457818,51.807903832826135],[4.855131705285727,51.80787931008397],[4.854916240623099,51.80786491489921],[4.854800641599033,51.80785406807491],[4.854505349896613,51.80786640502568],[4.853876417297844,51.807860193959804],[4.853578049115677,51.807886190667496],[4.853351694640972,51.80791251513142],[4.852881555303154,51.80799579006021],[4.852627187898615,51.80803230802736],[4.851950677920461,51.80810612324364],[4.851160841128626,51.80818793362542],[4.8507023356047,51.80823744885372],[4.850574351160191,51.8082879581848],[4.849530456908369,51.80886818533601],[4.848802696006225,51.809258378180104],[4.847826312301605,51.809794256528086],[4.847768541838517,51.81002985046449],[4.847340905596544,51.812367127875376],[4.847356308897493,51.81240203562992],[4.847165190112438,51.81348162157373],[4.846990944836741,51.81412517596577],[4.846960296745307,51.81452862854069],[4.8469265238313,51.81505386683985],[4.846833190140155,51.81568514915565],[4.846637251406962,51.816053261545434],[4.846528287852048,51.81628603924123],[4.846295797165055,51.817166990111176],[4.846224876412267,51.817351944020984],[4.848291905406539,51.817373840086965],[4.849952530017405,51.81736287287726],[4.851814595709791,51.81735899520865],[4.85218960451945,51.817335931897425],[4.853653230477896,51.81715344234425]]],[[[4.662311678123721,51.84697467440677],[4.663142194366098,51.846318791065904],[4.664826546933136,51.84500327808035],[4.665663260549252,51.844346125315184],[4.666377288554496,51.843777886895346],[4.666905837365688,51.84334411359165],[4.667257917391523,51.84305505806158],[4.66803490729024,51.842402682674525],[4.668443225698749,51.84203461633445],[4.66878890311457,51.84172783998476],[4.669026669382042,51.84149988376689],[4.669420461512153,51.84110114492603],[4.669667476673999,51.84084137382517],[4.669836790735899,51.840647190406294],[4.670014771528622,51.84043189772034],[4.670246022920631,51.840088936274554],[4.670390092292688,51.839857695008654],[4.670535040438395,51.839597298864],[4.670720053941886,51.839201281876186],[4.67084430328105,51.83888011621913],[4.670979437501294,51.838424440610495],[4.671083339482473,51.83804650769166],[4.671157985228625,51.83762207503459],[4.671165501281703,51.837437482369374],[4.67115280881568,51.83716154424881],[4.67110466662651,51.83670475040946],[4.671053818412831,51.83641825693526],[4.670870065006783,51.83592373449285],[4.670713348295837,51.83561530516418],[4.670597042495277,51.83541137625701],[4.670451876443236,51.83518882091622],[4.670084646234891,51.83470762779663],[4.66925045956576,51.83360089049253],[4.668971934814232,51.8331744278753],[4.668683571503927,51.83271229218065],[4.66846402732137,51.83232296185557],[4.668205183443114,51.831734300631666],[4.66805937609772,51.831266326296905],[4.667931699461609,51.83073253103361],[4.667918590480208,51.83069271005433],[4.667873030877076,51.83067668903932],[4.666565271990443,51.83072518225459],[4.666207328404551,51.830735629503494],[4.666138190965911,51.8308136533543],[4.662003074815638,51.83609741514284],[4.661923105173525,51.83609692110628],[4.661838286590786,51.836112911914086],[4.661805740923698,51.836142258328096],[4.661804895493668,51.8361947675353],[4.661846797818005,51.83623115455721],[4.661941384812339,51.83628102735232],[4.661762097453818,51.8368089334912],[4.661645170426052,51.836852853950106],[4.661486169305941,51.836845162012565],[4.661469708271237,51.83685847941814],[4.661496541834592,51.83689941784455],[4.661611008610598,51.836930704797155],[4.661686994176787,51.836971818425425],[4.661702799302497,51.83699914094331],[4.661697220674515,51.837009299603814],[4.661445391477244,51.83699754989797],[4.661324905895432,51.83700364354902],[4.661302503071301,51.83702389129997],[4.661356829044143,51.83706487031267],[4.66143849991994,51.837089116983144],[4.661602915770786,51.83709697188536],[4.66172826825057,51.837124841998794],[4.661683931777819,51.83716198598183],[4.661574060168385,51.8371815646498],[4.661448381342399,51.837173949190436],[4.661426331082072,51.837198069659706],[4.661449745671367,51.837270211751246],[4.661412118336373,51.837330493460705],[4.661404464531867,51.837417669364015],[4.661421509230635,51.837497384570135],[4.6614516632598,51.83753911745343],[4.661481761099845,51.8375583999144],[4.661511487117021,51.83762671048968],[4.661553657310213,51.83767238903667],[4.66159565369353,51.83770309858433],[4.66157610674637,51.837778717077995],[4.661545273704816,51.837804977413484],[4.661275719090667,51.83780718144877],[4.661232986878787,51.83782214309061],[4.661201678381703,51.837852141475075],[4.661198912430696,51.83786864012613],[4.661195236141061,51.837890035560264],[4.661204974754391,51.837906095592295],[4.661224847615518,51.83793950797237],[4.66128528274275,51.837989170076405],[4.661358348723131,51.838004718296325],[4.661449924971876,51.83800902553394],[4.661524199199258,51.83797542216364],[4.661646058524364,51.837987529826094],[4.661729342455733,51.838041203424396],[4.661712969604598,51.83841115348303],[4.661694262865003,51.83866741588087],[4.661659773914309,51.838713781946794],[4.66164064219706,51.83876359748166],[4.661639451593702,51.838837522704274],[4.661656507611984,51.83891659344185],[4.661663333462444,51.838984246485275],[4.661662506498289,51.8390355944543],[4.661597199041245,51.83921066823365],[4.661589213422586,51.83929268079311],[4.66158127317797,51.83963042622068],[4.661599605655361,51.839707826665865],[4.661598182213479,51.8397962014988],[4.661576707332951,51.83983632535274],[4.661534275556845,51.83988431956952],[4.661512955743782,51.839940573609674],[4.661505597684562,51.84006116843666],[4.661483837851921,51.84011896759694],[4.661470199200774,51.84016391374391],[4.661453081066147,51.840347285207194],[4.661447615007362,51.84045382807538],[4.661437159368608,51.840508084565236],[4.661413082168171,51.84055451491893],[4.661381608286066,51.84059457692096],[4.661357348049421,51.84065236059753],[4.661354568137072,51.84072150210313],[4.661370821963461,51.84085037222858],[4.661369294091456,51.840945197558604],[4.661273563157147,51.841327560005034],[4.661257057777145,51.84170550895351],[4.661256361014508,51.84182627436809],[4.661100232752709,51.84313829458232],[4.661033195561283,51.84360108936967],[4.660851535292322,51.84510042734315],[4.660715100436755,51.846171673607444],[4.660187934735231,51.84615254024709],[4.6600532771658,51.84703502971915],[4.659999341066193,51.8474079725956],[4.66023957403521,51.84747061896741],[4.659949880025463,51.84835524479797],[4.659727628461232,51.848933201472235],[4.659815928731343,51.84893529725694],[4.660828002325192,51.8481098504791],[4.661165892352786,51.84785285339232],[4.661703308738219,51.847469608711044],[4.662267526948807,51.84707736584545],[4.66226820597685,51.847035178238386],[4.662311678123721,51.84697467440677]]],[[[4.137925475248121,51.96413520924877],[4.139290127270634,51.96342116866353],[4.140429855350772,51.96284705382159],[4.141115780379419,51.96251715699763],[4.141266863244176,51.96243204597867],[4.142932097344939,51.961555468527656],[4.144381496933862,51.96083762171134],[4.144641783476249,51.96070049881564],[4.147754387066087,51.959125449036144],[4.147798630430521,51.959051075591745],[4.147946855032758,51.95897779792256],[4.151661341735294,51.95709169156229],[4.152045823108794,51.95688721111797],[4.153820446176251,51.95599705043415],[4.154581887537096,51.95561715712292],[4.154899925842893,51.95545855255577],[4.155446387786836,51.95517988686333],[4.1559162987831,51.95495086849188],[4.156368435301591,51.95476063178822],[4.156780119353781,51.9545526786625],[4.156955703398136,51.954699292448],[4.15708492131025,51.95483083971648],[4.157231172710424,51.954904757882055],[4.157385996495517,51.95494018339019],[4.157552215822901,51.95486463064872],[4.157577712176391,51.95478773480917],[4.157555915373456,51.954729570325966],[4.15744941878733,51.95462239064538],[4.157325098633853,51.954601735129714],[4.157233414167296,51.95453329139091],[4.157228254629723,51.95443194551854],[4.158430272905787,51.95444928714243],[4.158502574223887,51.95440191228861],[4.15983506786808,51.95445918311382],[4.160365627705605,51.95418007086312],[4.160475290728139,51.95417153726955],[4.160610181570415,51.95409578197212],[4.160737379625059,51.953995816851396],[4.163140879381296,51.95274729455362],[4.164167382951103,51.952245323963986],[4.164263137077902,51.95133662967001],[4.164436067556795,51.95125907234263],[4.16451393040696,51.95070038986001],[4.164837810169371,51.950508657876476],[4.16514934879829,51.950356023373224],[4.168133078837316,51.948874975115714],[4.168463341990734,51.94870858940061],[4.16935825894318,51.9482639207818],[4.170258332374019,51.94781323388023],[4.171666418225099,51.94712314424402],[4.17192503162754,51.946995492788375],[4.172617855708714,51.94665529259141],[4.174667156425173,51.94563023743679],[4.175099153720686,51.9454215272017],[4.175341771291179,51.94529783302289],[4.176109248175951,51.94491283247592],[4.178038437675431,51.943953708823415],[4.17863841838985,51.94366180954449],[4.178745632923832,51.943603555759715],[4.181906494852558,51.94202333728171],[4.182025800775585,51.94196546249462],[4.183006139329043,51.94150169584426],[4.184092235466996,51.94100158278882],[4.185113222232748,51.94056195672622],[4.185540829836794,51.94038877761928],[4.185815117562861,51.9402809989706],[4.185960193505019,51.940227125734495],[4.186762111336945,51.93992150613332],[4.18812982056838,51.939442426197935],[4.186951808198114,51.938510393941264],[4.186295490849912,51.93883698592588],[4.184075335411938,51.93993352588198],[4.181753449363069,51.941098143502025],[4.180722579861227,51.9416086080795],[4.178981233385386,51.94248286642292],[4.176903158365199,51.94351557102911],[4.175761582181709,51.94408562738628],[4.174831615947203,51.944550241252635],[4.172173921990174,51.945869018130864],[4.170766211363001,51.94657782740434],[4.169265168657573,51.94732333111999],[4.166814141781242,51.94855522435929],[4.166707482169755,51.94860740823623],[4.165960909936677,51.948694496803675],[4.16582210596128,51.94874621657614],[4.164524029917132,51.94939402573837],[4.163034674354388,51.950132474777185],[4.162492349810194,51.95040128348409],[4.160871496067784,51.951211499008664],[4.160223926063464,51.95154036067822],[4.160021640612079,51.95162199309165],[4.159483310697027,51.95162114774326],[4.159325835435056,51.95166776234009],[4.158573079851419,51.95206996975396],[4.158439918404523,51.952372583514354],[4.158230495420121,51.952531557855956],[4.157877187979964,51.95271341602164],[4.157800075612072,51.95273828810195],[4.157435872662599,51.95273835046034],[4.156484693512675,51.953231890460835],[4.156433457565861,51.95359252116477],[4.156358129537932,51.95365883008798],[4.155579591578713,51.954039458094265],[4.150616598007452,51.95653321858604],[4.149783182988738,51.9569462639887],[4.145183035570734,51.95925612937166],[4.142392936591632,51.960631425789636],[4.141723350421662,51.96096098693118],[4.14131457860007,51.96116466080289],[4.140304628187846,51.96167061028144],[4.139573035509139,51.96203563188913],[4.139206204931376,51.96221754933993],[4.13899737698896,51.96232101191698],[4.138923467788157,51.962364873720325],[4.138485491830109,51.96258125945442],[4.138161138659394,51.962737689294315],[4.137996188011293,51.96282548693399],[4.137916731160253,51.96284348232162],[4.13774803064072,51.96276581748782],[4.137365731597615,51.96246768607477],[4.137263021274437,51.962375625474806],[4.136949341609083,51.96214880362442],[4.136911403604064,51.96208607601493],[4.138301954445743,51.96137038791496],[4.140014946049286,51.96050468087916],[4.140330657111876,51.96034273577506],[4.14038083003619,51.96028094345498],[4.140338411503542,51.960229009436034],[4.140179287225536,51.960197773187105],[4.140048781770626,51.96023406716196],[4.138203682724096,51.96116392125551],[4.136232089540986,51.96214788585457],[4.133911834364641,51.96331726733519],[4.132432454830465,51.96406744118731],[4.131390418520474,51.96460923224221],[4.129618410663146,51.965631219208916],[4.127564150228705,51.967001260211894],[4.126545706141683,51.96773978122196],[4.1259469868347,51.96818601546414],[4.125308443304208,51.968740466602185],[4.124693061387018,51.96925825988215],[4.123793027970793,51.969987317950135],[4.122984491850297,51.970789741338166],[4.122954860643447,51.97098129768906],[4.123124875000805,51.97120532283248],[4.123293072954056,51.97130106676567],[4.123450323908225,51.97134043525459],[4.123687583152778,51.9713429841806],[4.123956813981923,51.97130819716335],[4.124128721614543,51.97125739756906],[4.125847432087157,51.9705831840195],[4.127668630008217,51.96961997396596],[4.12816041971781,51.96936626708251],[4.128897842353499,51.968979828912],[4.133726194078386,51.966403986179415],[4.13713184331096,51.964550525279364],[4.137925475248121,51.96413520924877]]],[[[4.775963997700815,51.79682880721424],[4.775563634931951,51.79676685216749],[4.775159389001884,51.79671519801281],[4.774670264205975,51.79669251729275],[4.774421546207585,51.796711346756005],[4.773995562716421,51.79675866729202],[4.773682339955061,51.79677715804534],[4.773433894943509,51.79677585864842],[4.77300101784019,51.79674856190793],[4.772696529415732,51.79673690390572],[4.772440100334258,51.79671078707373],[4.772080105853997,51.796649289597006],[4.771903589968352,51.796653267326946],[4.771808088061676,51.79669818411333],[4.771516127130701,51.79689690250367],[4.770983238357558,51.79724454218264],[4.77062657440419,51.79751775412301],[4.770500258022837,51.79765489107394],[4.770414570293589,51.79777314606731],[4.770338798910326,51.79792706421637],[4.770348102076117,51.79797717520124],[4.770412727073691,51.798181894400635],[4.770568027356278,51.798603854988066],[4.770764625903281,51.79898861452886],[4.770934575780084,51.79934407379782],[4.77111861467684,51.79964335066207],[4.771435879005804,51.80006203092433],[4.771846010510836,51.80056893695932],[4.772070991875782,51.80085784646741],[4.772870987357981,51.80186509426917],[4.7731363334535,51.802125053032114],[4.773495481215396,51.80243556474907],[4.774170608798502,51.80298745803454],[4.774576459130224,51.80332349977747],[4.774709596566592,51.80341993241176],[4.775217314763576,51.8036728942884],[4.775798729274497,51.80395539787569],[4.777666771204149,51.80485540207737],[4.777907193424615,51.80496090405842],[4.778047559557316,51.80501608214616],[4.778202175409119,51.805033400334494],[4.779069062104939,51.80510886113483],[4.779723843009096,51.80517057250529],[4.780261469204475,51.80521515866615],[4.780778369936895,51.80528440962456],[4.781053659363059,51.80533589395231],[4.781255138405108,51.8053663533019],[4.781470110733308,51.80538397792847],[4.781590818764745,51.80538460095807],[4.781689136513744,51.80537865721403],[4.781796381547934,51.805296891201415],[4.781904467782615,51.8051524231868],[4.782310999091733,51.80457441437317],[4.782668330131338,51.804094985699706],[4.78271752140264,51.80399640410264],[4.782728811983564,51.803930400573236],[4.782697798006303,51.80388404930477],[4.782629410832432,51.80383105436281],[4.782444644184571,51.80373436381278],[4.782074928304327,51.8035546588354],[4.781779279503838,51.80340810817813],[4.781721157152722,51.80336574523816],[4.781650188786772,51.80331918751317],[4.781481505291598,51.80320296620031],[4.781374068292735,51.803113383082625],[4.781289431457588,51.803061851283886],[4.781158985497894,51.80301188954473],[4.781200960396712,51.80289288604852],[4.781298242745204,51.80280874637911],[4.781451577765948,51.80273496054037],[4.782111209291338,51.80261888478237],[4.782404739973448,51.802550723851844],[4.782911965024329,51.80243901922127],[4.783418842033893,51.802322149361146],[4.783700779952651,51.80224902226672],[4.783999098144755,51.80213365768931],[4.784329762704891,51.80199600863141],[4.784983840513864,51.80167112267248],[4.785621297495555,51.80140575845574],[4.786299300512504,51.801095697703005],[4.786533211272093,51.80100244767739],[4.786589927990733,51.80096299762009],[4.786590790464646,51.8008982302036],[4.786467537590846,51.80052703442819],[4.786374229479674,51.800282696015785],[4.786219167520218,51.799893788613645],[4.786109978950701,51.799654529877195],[4.78606278076176,51.79960448314958],[4.785638767690594,51.799502959056625],[4.785179164409645,51.79938628480245],[4.784595045722026,51.79924393696146],[4.783987954687535,51.799076695513314],[4.781600920813261,51.798494615504964],[4.780394075995437,51.79817510314627],[4.779523055954348,51.797921831092665],[4.7780648305689,51.79748125519048],[4.777050435264795,51.79715290060964],[4.77617972790847,51.796879476995294],[4.775963997700815,51.79682880721424]]],[[[4.767582875254368,51.80297762963033],[4.767970043834675,51.80288212907731],[4.768029213447807,51.80287753803004],[4.768308807469671,51.80288623898903],[4.768820930285303,51.802905970612464],[4.768954748770061,51.80292138471815],[4.76919243598474,51.802981214675526],[4.769820772289024,51.80311664586917],[4.770304492890474,51.80320460598221],[4.770568072767793,51.80322792630962],[4.770729796902891,51.803211744461414],[4.770828941452001,51.80317562144558],[4.77093226428354,51.80310777972484],[4.77101993702018,51.80302772740598],[4.77102864781545,51.80296893732773],[4.771021340146139,51.802925029162076],[4.770998635212785,51.802880783064744],[4.770576968806966,51.802303365420165],[4.770409866535667,51.80210430185319],[4.770348420213485,51.80200153118726],[4.770076152551547,51.80173146510556],[4.769868515537325,51.80151412403455],[4.769274898673686,51.80085115457877],[4.769010471055705,51.8005870624059],[4.768611895156252,51.80021104188912],[4.768262211527262,51.79985153469796],[4.768047831094723,51.79967182958878],[4.767923538870671,51.79953930801591],[4.767769665778906,51.799257474909524],[4.767674062365264,51.79906652662143],[4.767647624716121,51.798961100706954],[4.767552140885244,51.79876163622926],[4.76738725751644,51.79843329487039],[4.767234061833244,51.79810269235805],[4.767095710037522,51.797842874316586],[4.767020448314783,51.79771680400824],[4.766631318543053,51.79708070756836],[4.766461896267115,51.79681091870199],[4.765944859232849,51.796035051417796],[4.76568207912167,51.795654836191815],[4.765334563477779,51.79514230461853],[4.765164569395706,51.794884897947576],[4.765113889923603,51.79484798533956],[4.764494771815288,51.79459671035314],[4.763143551487659,51.79402026262994],[4.762773613651895,51.79386784903926],[4.761817810425776,51.793469482458335],[4.761374491338704,51.79332776968567],[4.760935130782665,51.793200784440664],[4.760680030142689,51.79314084446343],[4.760389211591719,51.793075809809245],[4.759939579045122,51.79296966807915],[4.759630751327554,51.79288311715109],[4.759511726278112,51.79291344621739],[4.759377155614913,51.79307401085893],[4.759294117938823,51.793149950005485],[4.759284334723621,51.79319505739585],[4.759425068174701,51.79324948610568],[4.759624735143392,51.79331558433765],[4.759738120038383,51.793361608522986],[4.759824124944991,51.79340155009905],[4.759860352768224,51.79342987192354],[4.759869413969111,51.793466564299614],[4.759206228900538,51.794560779900884],[4.758509251355201,51.79568835889879],[4.757828548808519,51.79681034292913],[4.757190069184397,51.797797329386036],[4.756451518242469,51.798825062771215],[4.756338000102855,51.79899605872805],[4.756318322126384,51.799034144675176],[4.756323110377321,51.79904888029954],[4.756370185849828,51.79907545478786],[4.759397114722916,51.80004262011225],[4.760765679099087,51.800488626869964],[4.760855006884629,51.800530134981344],[4.760937838455991,51.80070966630224],[4.761097210514238,51.801162370036295],[4.761146892035808,51.801331402669014],[4.761170086412823,51.801369718148344],[4.761207429981361,51.80140811000898],[4.761695384253335,51.80169844229173],[4.761925592950687,51.801846243907804],[4.761958237701391,51.801893384269995],[4.762057934646023,51.802207966849075],[4.762272906881459,51.80291489066717],[4.762400157783611,51.803284069961265],[4.762427730972424,51.80333685948311],[4.762469534102016,51.803384047553195],[4.762999587599239,51.80376259597311],[4.763266740985829,51.80394878309902],[4.763341883661294,51.80399331041564],[4.763478170021911,51.80404100041045],[4.764086618661977,51.80419983933967],[4.764989895078741,51.80444075247114],[4.765076235805878,51.80442804914323],[4.765554288819199,51.80405175959055],[4.765896944530768,51.80380429420541],[4.7661889913327,51.80360430029539],[4.766792987668898,51.80323976774078],[4.767149582355724,51.80309765869248],[4.767582875254368,51.80297762963033]]],[[[4.843693141019731,51.8032067190655],[4.84349842251332,51.80233669638146],[4.843257458513776,51.80112582848168],[4.843227292895224,51.80100414624907],[4.841957003801423,51.80072703690461],[4.841299413848729,51.80058643739396],[4.840904571448804,51.800608598362246],[4.839218451414065,51.80030191148661],[4.837709309871657,51.80009228233761],[4.837067301685138,51.800041018088926],[4.836799854386052,51.799924156562426],[4.836281238801835,51.79989127218133],[4.835113906172934,51.79981172430732],[4.833362586739264,51.799736119788214],[4.832454595256357,51.799755313162365],[4.831954797119972,51.799749594635905],[4.831567324059246,51.79978182353941],[4.829091085014868,51.79996619139332],[4.827434288454794,51.8001221635953],[4.825944088429189,51.80026832807394],[4.825470009478352,51.80036928064289],[4.825487671139351,51.80045503885903],[4.825944725944123,51.80068534507525],[4.826193053467319,51.800597504417155],[4.826321723496982,51.80059270031977],[4.826489902269782,51.800691048055235],[4.826685978851121,51.80082204316732],[4.826785826459918,51.800892710925815],[4.826849282280835,51.80097791281217],[4.826955405184684,51.80121350659403],[4.827002098694678,51.801341465182446],[4.827077345701937,51.80144917487706],[4.827524544417025,51.80183787199335],[4.827871639065367,51.802109708066546],[4.827951795407881,51.802157572226],[4.828048151333845,51.802208093243294],[4.828204921666216,51.80225374166224],[4.828422039414079,51.802299935229534],[4.828808373467642,51.80236164264886],[4.829136700335069,51.80240191204905],[4.829394562800886,51.80241836295622],[4.829914363015776,51.80245825035896],[4.83055902582669,51.80249898670608],[4.831145546852673,51.80252912063607],[4.831549088852833,51.802545999074475],[4.831971851444494,51.80259057904222],[4.832104379054245,51.80261107616521],[4.832370508051442,51.80263246288951],[4.832495432170997,51.802628150236366],[4.832933659417218,51.80260002932126],[4.833050307163846,51.802625611598245],[4.833380274880635,51.80270226255532],[4.83353295025956,51.80274298123973],[4.83366921062324,51.802798589149354],[4.834017837299459,51.80298293469799],[4.834147590450025,51.80306018818725],[4.834337556326497,51.80311501653239],[4.83589163215887,51.80360566022729],[4.836946689431604,51.80399124010011],[4.836965752046482,51.803998297417785],[4.837150645751191,51.80406006442651],[4.838448180149912,51.80453218261263],[4.83929953414111,51.804865435861245],[4.840645836175489,51.80554213452397],[4.841166820810336,51.80583177206778],[4.841687519201265,51.8061113423502],[4.842126299819332,51.806315178777524],[4.842538521855508,51.80647811730452],[4.843021887751224,51.8066444808555],[4.843466751655564,51.80679363340147],[4.843703231059963,51.80685975744352],[4.843945453132136,51.80689855542625],[4.844127646944499,51.806909720267214],[4.84432648854961,51.80688664175019],[4.844515330769753,51.806795131752274],[4.844554299304082,51.80673931507218],[4.84409147519385,51.804728492993235],[4.844041191213607,51.80461781429301],[4.843795120542182,51.80362136604467],[4.843693141019731,51.8032067190655]]],[[[4.755673146754217,51.799097510541635],[4.755444923664997,51.799077959523096],[4.755152201903818,51.799205927057876],[4.754942014213044,51.7992951131936],[4.75474447933936,51.799372497682874],[4.754496363778356,51.79946534997522],[4.754229325486895,51.79954235789103],[4.753943719828617,51.7996076525919],[4.753326239505184,51.7998319228659],[4.753033615708767,51.79995214287317],[4.752017259276893,51.80033346882509],[4.751108165577499,51.800722335540186],[4.750044882292846,51.80118209717244],[4.748810058964293,51.8017322665368],[4.748699830935142,51.80178585828256],[4.748649949407679,51.80184003632336],[4.748649036065486,51.8019045454031],[4.748705348526012,51.80219000154892],[4.748958510590426,51.80324243470996],[4.749105291368702,51.80372398854459],[4.749219478638634,51.80415581877229],[4.749240242897908,51.80424754099444],[4.749562779803129,51.805076100676395],[4.749657436576766,51.80509390461318],[4.750421117848625,51.804898832989124],[4.75086217134334,51.80479387544478],[4.751226245629287,51.80471611029771],[4.751490063684609,51.80463393041951],[4.752774599168414,51.8043110883003],[4.754156121505702,51.80395727371598],[4.755494051946394,51.80371262309491],[4.755779291225351,51.803675192695145],[4.755964329570729,51.803629479816124],[4.756002425358975,51.80361394388277],[4.756011150856751,51.80358534679446],[4.75600771443631,51.80353345949722],[4.756008512558044,51.80347643371427],[4.756044554049002,51.80328050585205],[4.756093989169673,51.80304955575608],[4.75611111123957,51.80301584255573],[4.756166364573538,51.80296401292617],[4.756196167726748,51.80294610877643],[4.75626752478373,51.80293333225229],[4.75647727541468,51.802906073846216],[4.756586831944212,51.802870276766164],[4.756633122470728,51.80283413961521],[4.756663182923734,51.802797916131276],[4.756680447326473,51.80275388108596],[4.756698637853774,51.802673465991575],[4.756747927021666,51.80242290167162],[4.756761261525733,51.80206453601719],[4.756790077980289,51.8014918102682],[4.756810132300184,51.80098019596387],[4.75683573556632,51.80063737995384],[4.756844401902907,51.800315116199904],[4.756867090160649,51.79991267287111],[4.756848325526456,51.7998258660382],[4.756430181549256,51.79963652974272],[4.756106115886847,51.79947608316084],[4.755925260253132,51.79937292132016],[4.75583509209553,51.79930276086261],[4.755779822282133,51.79923717549044],[4.755673146754217,51.799097510541635]]],[[[4.544634525155482,51.90085823941578],[4.544667117020895,51.90081086180054],[4.5446614518021,51.900779208848334],[4.544636306728178,51.90076315811723],[4.544578821015679,51.90075874594338],[4.5445406946719,51.900789826897125],[4.543524680139738,51.90046899739894],[4.542995503825504,51.90032545946659],[4.542925530850555,51.90029747380165],[4.542393488848588,51.90006243099623],[4.541982887515612,51.899869419473305],[4.541246065912151,51.8996993480828],[4.540955237373464,51.8996148051308],[4.539990957560842,51.899384766116725],[4.53945651833408,51.899256141240485],[4.538719631220432,51.89909056934317],[4.538566046328443,51.89898417377695],[4.538439641757001,51.898962615541244],[4.53838559488478,51.898953064747914],[4.538128772154765,51.89887959806121],[4.53793280526514,51.898830699936646],[4.537600482849328,51.89873513866318],[4.537340587932592,51.8986478422776],[4.537156296907228,51.89862134893884],[4.536701867044923,51.898586061717964],[4.536516143157665,51.89854716966858],[4.536256160611337,51.89848670870219],[4.535964134228677,51.89846627093193],[4.535509449350193,51.898444654450245],[4.535288301883357,51.898404084368636],[4.535126507177879,51.89835723511424],[4.534931826201641,51.898284857386685],[4.53483216257687,51.89826116742139],[4.534418699968717,51.898221524047955],[4.534284745619508,51.898180423505465],[4.534180184458212,51.89815114960444],[4.533957091375628,51.89812527199643],[4.533879164037342,51.8981432866529],[4.533753528707892,51.8981034072556],[4.533563158515828,51.89808976649115],[4.533353029518028,51.8980842397632],[4.533228215911977,51.89806707574011],[4.533051732666033,51.89802501929656],[4.532875324707221,51.89797909349479],[4.532658988123742,51.89794900458685],[4.532481548472562,51.897935457001374],[4.532336590127406,51.89794665946956],[4.53227674640446,51.897978868361136],[4.532090620474545,51.89789558101232],[4.531904307573041,51.89784416236847],[4.531680832603691,51.89779466520332],[4.531519440795162,51.89777078183035],[4.531144925908976,51.897745344816244],[4.530672473009782,51.89773725643466],[4.530575712408888,51.89773655105401],[4.530310455744049,51.89773461693553],[4.530218392582194,51.89775007396025],[4.530181038694483,51.89778399457163],[4.530142404829749,51.89786319365462],[4.530061176163988,51.898032403272786],[4.529874396658379,51.89842122255371],[4.529812714175968,51.8985496714858],[4.52972886571418,51.89872492553925],[4.529704147690437,51.898774292723715],[4.530318870750544,51.898891031755625],[4.530690331970544,51.898967802485274],[4.531311610690705,51.89913490556132],[4.531972589979696,51.89929842284813],[4.53254796635093,51.89944492738543],[4.53332023644547,51.89965750410465],[4.533795347475901,51.89979037054739],[4.535267389827897,51.90016852581316],[4.536258907763236,51.90043570217952],[4.537449902597229,51.90074366622442],[4.540026204333452,51.90141089466869],[4.541330068454098,51.901731245247895],[4.542303139213422,51.90194043291575],[4.542975656642974,51.902093649072945],[4.543666456711851,51.90225099256426],[4.543855874175,51.90229428617312],[4.544067729306934,51.902342385822465],[4.544286225702925,51.902392338553994],[4.544464846758958,51.90243297307676],[4.544552913944512,51.90245295907525],[4.54483372194146,51.9025170347839],[4.544967736224068,51.90253386581399],[4.545127685884272,51.90254688347702],[4.545333029135961,51.902541902695575],[4.545583231598778,51.90250266425977],[4.54577688523136,51.902408957021855],[4.54592679449661,51.9022674544497],[4.546019731700035,51.902093931551214],[4.546074249045677,51.901900263179954],[4.546090587245923,51.90171819286922],[4.546030251742769,51.90153157285209],[4.545967646156345,51.90144403056451],[4.54585430354997,51.90134812504596],[4.545734138689276,51.90126017139454],[4.545480747082663,51.9011581012358],[4.545391146957412,51.901131008365375],[4.54521568092872,51.90107801141256],[4.545027771892271,51.90102118212602],[4.544836983189528,51.90096226808932],[4.544643703802548,51.900902690492934],[4.544601816018373,51.90088961630884],[4.544634525155482,51.90085823941578]]],[[[4.385109372989834,51.84091903644427],[4.386096051666609,51.840912487422294],[4.387256313833744,51.840912312285646],[4.388603699684908,51.840927910224465],[4.389873150058786,51.84096373435076],[4.390371556059288,51.84097622573515],[4.390299151771844,51.840445290213275],[4.390318576710113,51.84033939121096],[4.390390222773726,51.84020800079084],[4.390503824437126,51.84008212710088],[4.390692968577986,51.83983702454025],[4.390472828504839,51.8398072845193],[4.389064880466094,51.83964977366404],[4.386507621593919,51.8393578099327],[4.385068953819608,51.83919663441974],[4.382512584256076,51.838904461472495],[4.38244881157852,51.838905980402735],[4.382420204070279,51.83891850972191],[4.382062601673179,51.83907531836892],[4.380612419992521,51.83967282509353],[4.377537601598998,51.84095093119396],[4.377415176842971,51.84102265265742],[4.377370462739361,51.84106588057743],[4.377359581184141,51.841105270902716],[4.377364522733607,51.84118221561476],[4.377390151445416,51.841246952415446],[4.377439620854065,51.84128892573459],[4.377515744486391,51.84133125862679],[4.377599002094359,51.84135274813861],[4.377666200725111,51.84136584224763],[4.377769966246633,51.841364541249966],[4.378082789265064,51.84132981156706],[4.378459802941099,51.84129356789634],[4.379324396098664,51.841213769013855],[4.380759442035528,51.84111020990803],[4.381462566460124,51.84105946180382],[4.382714177509263,51.84099843654126],[4.38420124455934,51.840934119947285],[4.385109372989834,51.84091903644427]]],[[[4.661719105292254,51.815445260122345],[4.661484096513537,51.81535297109378],[4.661445275529413,51.81535918309767],[4.661344027481361,51.81538952291758],[4.661236926248708,51.81542137609148],[4.66114572066801,51.81544868216182],[4.661075249847513,51.815481018882686],[4.661039859985428,51.81550686348452],[4.660765026227373,51.81574154240327],[4.660891240931728,51.81581561100297],[4.66085903889291,51.81585024913015],[4.660766778404534,51.8159170311562],[4.66057721324809,51.81613107626483],[4.66054455738145,51.816193839771806],[4.660675140510388,51.81628109686888],[4.661072218356564,51.81652225683858],[4.66145122755281,51.816722272185196],[4.661994091683709,51.8169865225856],[4.662080344783784,51.81703427935848],[4.662788287434185,51.81739063982576],[4.663626245120629,51.81781902119011],[4.663666303491019,51.81783965447375],[4.663845575653545,51.81792927283674],[4.663993866625329,51.81800347499545],[4.664046737084703,51.81803012231951],[4.664289801144824,51.81814051936219],[4.664375367134703,51.818179496344236],[4.664651088240636,51.818304803723],[4.665182914510775,51.81853258505341],[4.665550372598728,51.818676001415774],[4.665638097584885,51.81871034629382],[4.665769787213551,51.818755541931694],[4.665951579148739,51.81881833414526],[4.666396033300852,51.81896428568215],[4.666700989323695,51.819058800863104],[4.667136144266825,51.81918766074986],[4.667488534581148,51.819284528682324],[4.668155845778084,51.81945196824822],[4.668489421331629,51.81952781562982],[4.668599364196632,51.81955300364026],[4.66861569337522,51.81954742637637],[4.668684305738068,51.81944875356132],[4.668677735147348,51.81944303609171],[4.668189891783979,51.81924934479986],[4.668140649667095,51.81922994668602],[4.668086860593685,51.81920845689255],[4.667405623665537,51.818922483296625],[4.666858566716517,51.81868274819801],[4.665963810022479,51.81826204104053],[4.665181223315953,51.81788433847828],[4.665164276814799,51.8178764922753],[4.665068281686497,51.817812678012125],[4.665025488271873,51.81775486830193],[4.664996103411879,51.817691721816786],[4.664996884725807,51.81764295407808],[4.665018147473358,51.817615214637414],[4.665053142638287,51.81758807564243],[4.665496676539974,51.81734848999475],[4.665416234956846,51.81717148469463],[4.665399924930886,51.81712390260973],[4.665391727462398,51.81711585227196],[4.66409791583672,51.81642300629933],[4.663652795001051,51.81619085113865],[4.663279918065624,51.81604945995217],[4.663204597626113,51.8160208670452],[4.663072998750819,51.81597076660368],[4.662103578739067,51.81558982547075],[4.661719105292254,51.815445260122345]]],[[[4.403489834069211,51.70453240218461],[4.402393043700082,51.704220216343714],[4.401771636558884,51.70395537608145],[4.401044594603846,51.70375441745435],[4.400980764752035,51.70350071603031],[4.401266068898524,51.703178469946536],[4.400533371608582,51.70323733306671],[4.400151917824615,51.70316908732902],[4.399783201231759,51.70299307456649],[4.399614408465886,51.70275345609556],[4.399343326718793,51.70240510254617],[4.399032591587711,51.702294093448955],[4.398509727812693,51.70231135954354],[4.398332482781022,51.70243967078857],[4.39836215631408,51.702678117778774],[4.398142876521168,51.70315214176496],[4.397961306985096,51.70349693443468],[4.398125981349505,51.70392465156682],[4.398604523158752,51.70433979106173],[4.399158511315786,51.704495950256245],[4.399815322786025,51.704717748634216],[4.4002920617782,51.70472176597561],[4.40088377518643,51.704748426570035],[4.401442960485342,51.70466668116931],[4.402000791354083,51.70462801881976],[4.402735862855302,51.704461035290784],[4.403014513216229,51.70446337669245],[4.403147981861662,51.70472411335592],[4.403180034674071,51.704854448740406],[4.403585128801403,51.704944302996],[4.404416381601873,51.70516779705059],[4.404901574344378,51.705279996653665],[4.405839899018644,51.70537431311142],[4.406220384731041,51.70550756598136],[4.406709809440263,51.70542495236529],[4.406401429488024,51.70518443358408],[4.405290986824851,51.705001968918374],[4.404528557325743,51.70482241259117],[4.403489834069211,51.70453240218461]]],[[[4.770376631833375,51.794612556328126],[4.769289225605618,51.7941240144007],[4.769196251074045,51.79419732842604],[4.769067012188808,51.7942443879279],[4.768989260014109,51.79429997554033],[4.768955981309261,51.79435966886253],[4.768948700116671,51.794435498912364],[4.7690416330608,51.794699462020596],[4.769311473579655,51.79520383065501],[4.76946263992373,51.79543997288589],[4.76960341535488,51.79549284078083],[4.770666692592943,51.795861515469696],[4.771512649985485,51.796145429954485],[4.772150138443278,51.79636631321254],[4.772361777827626,51.79641129228841],[4.772695765707883,51.79645691094552],[4.772940192727105,51.79647806110136],[4.773339066145549,51.79649614751866],[4.773757190035887,51.79650633426502],[4.774169394955459,51.796492747875725],[4.774388621690496,51.79646963555195],[4.774614573552893,51.79641094685543],[4.774551280045408,51.79629087909294],[4.774252754652373,51.79614687469229],[4.773810921895065,51.79598276521851],[4.77303599176038,51.79570827092794],[4.771953849791617,51.7952873920767],[4.771493245260119,51.79509736994385],[4.770376631833375,51.794612556328126]]],[[[4.448162769040694,51.717378012455505],[4.448255519203046,51.716933077325194],[4.448287719091049,51.71688301321496],[4.448405870988069,51.71689531483392],[4.448902112227517,51.71694677324811],[4.448965954612895,51.71695347789704],[4.449021597008906,51.71703495644926],[4.448990214752029,51.717165802325596],[4.448997801025216,51.71718057264646],[4.44901048049229,51.71719022227346],[4.449028720502035,51.71719217510818],[4.449603620246148,51.71713716375683],[4.450018252386656,51.71709712617005],[4.450245546307369,51.71707546024807],[4.450277218204167,51.71707081002053],[4.450291507338405,51.717062924084594],[4.450296030408435,51.71704515397364],[4.45029326115366,51.71703842155366],[4.450272656434639,51.71703025749556],[4.450254448530017,51.7170267563092],[4.450241700771132,51.717020460960654],[4.450241807711764,51.717015301240075],[4.450345033353349,51.71656502886653],[4.450358252986757,51.71654861820769],[4.450397464796644,51.71654093153108],[4.450480803121557,51.716549082050435],[4.451086136387992,51.71660888755223],[4.451145031433955,51.7166137456011],[4.451289373493559,51.71662522070729],[4.45133631247977,51.71662559563454],[4.451346869278233,51.716617421775986],[4.451355027745575,51.71660458415299],[4.451370123065506,51.71655773728394],[4.4513799026412,51.716526847447504],[4.451405077935724,51.71633427348035],[4.451400484616214,51.7162952695513],[4.451371642869916,51.71618329713937],[4.451311701726628,51.71604836654365],[4.451287515135469,51.71595243078209],[4.45126709009629,51.71581523506241],[4.45127024170767,51.71566300212844],[4.451281161468672,51.715617153848385],[4.451212264215558,51.715573764678695],[4.45105730395859,51.7155134303903],[4.450896581056583,51.715470597240845],[4.450728892930796,51.71548319270798],[4.450498771665671,51.71562174047109],[4.450375881845293,51.71563779027852],[4.450158220330126,51.715636049727614],[4.449896739190953,51.71562389326682],[4.449800594248138,51.715672415194646],[4.449716460418878,51.71570271000074],[4.44966736767819,51.715726058894816],[4.449383750909586,51.715879659951035],[4.449264461086973,51.715982446970685],[4.449155518199277,51.71612712358446],[4.449053056004101,51.71621972306101],[4.44895202855238,51.71624317178018],[4.448801294834076,51.716259513843774],[4.448645253426342,51.716251295736946],[4.448562408850484,51.71621940615069],[4.448467989144059,51.71620471408304],[4.448400263217838,51.716225075340056],[4.448232992252533,51.71623741171245],[4.448099250958189,51.716215694841864],[4.4479312712719,51.71624221961315],[4.447779318647815,51.716317130924615],[4.447666986662028,51.7163647455844],[4.447615571486489,51.716419817815535],[4.447553735027792,51.71643661224188],[4.44747528236512,51.71645327336955],[4.447375713910133,51.71646641038319],[4.447394983554235,51.716598694075934],[4.44740139059052,51.71667022949098],[4.447413637328841,51.71672065076906],[4.447433301277301,51.71677396935979],[4.447470595052893,51.71685865618778],[4.447494798560807,51.71693343103285],[4.447496628804938,51.71698531666178],[4.447489694963372,51.717059067826625],[4.447475873440002,51.71710437563016],[4.447448726837084,51.71715112626075],[4.447387627763143,51.71721231323723],[4.447349777741579,51.71725433248439],[4.447314905701012,51.717293020917765],[4.44737924852647,51.71733560099637],[4.447396062576009,51.71736618785211],[4.447423882592688,51.71740692705038],[4.447478173611867,51.71743342695288],[4.447521618172763,51.71744203356012],[4.447613062108521,51.71746005720306],[4.447623410616029,51.71746194697385],[4.448404536949815,51.717539692182456],[4.448422744934342,51.71754319275758],[4.448430777252928,51.717536547734284],[4.448443987153472,51.717520653177466],[4.448444362215843,51.71750259191707],[4.448439913354584,51.71747674979429],[4.44843217039223,51.71746946151213],[4.44839862529569,51.71746429015014],[4.448263094533354,51.71744849368054],[4.448208497547665,51.71743670126902],[4.448161959717621,51.71741697412245],[4.448154334725305,51.71740400932346],[4.448157441352661,51.71739448612032],[4.448162769040694,51.717378012455505]]],[[[4.447353990933231,51.717071656128006],[4.447360252238635,51.71701028729873],[4.447347597457154,51.71687960457034],[4.447330232028084,51.716835594521605],[4.447309884698263,51.71679517322409],[4.447259713825216,51.71671038304134],[4.447247442596277,51.716681123424436],[4.447214934681899,51.71648628161062],[4.447197598102286,51.71632098155769],[4.447176385922942,51.716222230042824],[4.446848721107455,51.71627585924302],[4.446626858045882,51.71635614249987],[4.446406522427412,51.71644288990093],[4.446283153167845,51.716461770307134],[4.446140416577825,51.71647301169912],[4.445985733362989,51.716439510438704],[4.445858145351415,51.71634171178607],[4.44574393640158,51.7162200189923],[4.445671895495818,51.71626795638614],[4.445510509661923,51.71655620826482],[4.445451347932845,51.71658411999139],[4.44528817381928,51.71663906684303],[4.445004748192591,51.71688220815123],[4.44499692338956,51.71693866080637],[4.445175354440678,51.71708874103884],[4.4452610392493,51.71710388150187],[4.445419309881089,51.71708502471273],[4.445546384904325,51.7170478527316],[4.445702633586806,51.71698639847028],[4.445768324661509,51.716984087582915],[4.446191647447495,51.71702568146005],[4.446611960695746,51.71707215403536],[4.446727198951933,51.71708469194123],[4.446860272633541,51.71709866279266],[4.446885938515677,51.71712312735238],[4.446970847280575,51.717175679690406],[4.447035559871948,51.71720045664312],[4.447121895073453,51.71722437510945],[4.447220460556839,51.71725948853311],[4.447260669612589,51.71722394054642],[4.447288606249121,51.71719913212129],[4.447320870341694,51.71714597118125],[4.447353990933231,51.717071656128006]]],[[[4.128189213279351,51.70306215665642],[4.128656530178279,51.703463585700426],[4.128517302084517,51.70273534427296],[4.128314818383092,51.70236979550546],[4.128189213279351,51.70306215665642]]],[[[4.07733495933717,51.80955161792419],[4.077709688152939,51.809880460759516],[4.077788621863132,51.809556681972374],[4.07733495933717,51.80955161792419]]]]}},{"type":"Feature","properties":{"id":1,"statcode":"WS60","geometry_g":"polygon","gag_id":"60","hierarchie":null,"hierarch_1":null,"inspire_id":"NL.60.60_Waterschap Limburg_p","sde_id":"1","land_code":null,"inspire__1":"NL.60.60_Waterschap Limburg_v","inspire__2":"NL.60.60_Waterschap Limburg_l","wbh_code_o":"60","einde_leve":null,"laatste_wi":null,"admin_code":null,"waterschap":"Waterschap Limburg","publiceren":"60","Aangemeld":1,"Actief":1,"KVK":67682065,"tnostatus":2,"CPT":191,"GMW":46,"BHR":0,"ASV":null},"geometry":{"type":"MultiPolygon","coordinates":[[[[5.888601950820029,51.778564661959],[5.888943435803691,51.77853184879114],[5.889134812583618,51.7785134658887],[5.889483173835612,51.7784866170716],[5.88982208137827,51.77843847790635],[5.889886318148505,51.77842934874016],[5.890130969983542,51.778398709057605],[5.890375256237209,51.778360007696726],[5.890859772966445,51.778288049958334],[5.891305708400201,51.77822205374805],[5.891635435805582,51.778163216466595],[5.891874963057835,51.77811383606629],[5.892225085579438,51.778051871183784],[5.892307503918945,51.77803729618882],[5.892752966500699,51.777960546179806],[5.893409337849443,51.77785292504665],[5.893652630769198,51.77762559619568],[5.893708119368246,51.777569249862644],[5.893867329601003,51.77741741920043],[5.893909436536469,51.77737725608362],[5.893979518361621,51.77732109821824],[5.894353085476943,51.77696989054953],[5.894779139646245,51.77656933191323],[5.895726442764562,51.775678675342625],[5.897335649271123,51.77415274172277],[5.897400583489043,51.7740919301121],[5.897414046228399,51.77407931448818],[5.897443273687086,51.77405264403335],[5.897531285431462,51.77397230760167],[5.898462048890541,51.77312249945795],[5.899422051491912,51.772233743330375],[5.899624850375063,51.772053966446435],[5.899885210237842,51.77182315203606],[5.899899881416968,51.771808625257],[5.899933091836564,51.77177571665414],[5.900011458793433,51.77168763640026],[5.900445902484265,51.77120421721666],[5.900794353467182,51.77081150833419],[5.90081626835196,51.77078681957733],[5.900926685918102,51.770662383291295],[5.901036773238492,51.77054335047701],[5.901815453017635,51.76966824954593],[5.901936080831619,51.76953127333205],[5.902169448665948,51.76927217733238],[5.902555403931883,51.76884366754984],[5.902938174457153,51.76841728278233],[5.903724192703381,51.76754168702328],[5.903756406935173,51.7675057974864],[5.90429617751526,51.7669035107717],[5.904675932590601,51.76647979406098],[5.905194597061638,51.76589233751941],[5.905375878645065,51.76568381912493],[5.905405063386457,51.765664400601864],[5.906272660429921,51.765087314755036],[5.906722723430122,51.76478785256825],[5.907131716057519,51.764517648888045],[5.907152145793383,51.76450418324771],[5.907194457590787,51.76447631968878],[5.907251476586602,51.76443872813167],[5.907279992747589,51.76441799976789],[5.907296230979727,51.76440787847662],[5.907367066615542,51.76436374478207],[5.907526725101903,51.76425878650966],[5.907572403238987,51.76422516416322],[5.908034514371336,51.76398832075181],[5.908062278716621,51.763974049338024],[5.90868932087807,51.763651887662654],[5.908709769446731,51.76364137890708],[5.909342994336388,51.76331602220222],[5.909863616300506,51.763048511420116],[5.909919229153317,51.76301993137979],[5.909927106000715,51.76301588733984],[5.910571386736152,51.76268482978083],[5.911114673577279,51.76240566183112],[5.911330474837717,51.76208352576557],[5.911347432944999,51.7620582099746],[5.911491298444433,51.76184344036749],[5.912019067319351,51.76105457678646],[5.912148092965876,51.76085841624043],[5.91222921587856,51.76073946640197],[5.912407786047441,51.76047303552071],[5.912674593419065,51.76007454389976],[5.913100436447964,51.75943853368585],[5.913272273598133,51.759181875263515],[5.913393355654962,51.75900102054646],[5.913383156874782,51.758510136460366],[5.913383148177311,51.75850939044636],[5.913372701427906,51.758109031554156],[5.913371499489203,51.758036993388025],[5.913362869045538,51.757519082499606],[5.913360863282261,51.757399210649204],[5.913332048292298,51.75570884630741],[5.913329470318818,51.75551501884929],[5.91340030633348,51.75539807378861],[5.91376187018042,51.75480118002209],[5.913785032835897,51.75476305418355],[5.914060549063815,51.754308071499],[5.914239910054613,51.754011989579894],[5.915281899217144,51.75229181572285],[5.915284896987342,51.75228685848402],[5.916211633596815,51.75206940594607],[5.916395588618027,51.75202632892535],[5.916462877223875,51.75201063654567],[5.916522077894343,51.75199683231314],[5.916598508276497,51.75197897725085],[5.916645533391736,51.751967987461526],[5.917610872998856,51.75174247537623],[5.919226685840928,51.75136890081341],[5.919299678891974,51.75135202136859],[5.919442819662546,51.75131892244511],[5.92203770332311,51.75071892924242],[5.922093941353192,51.75070592670258],[5.92218835005621,51.75068409384547],[5.923019011338869,51.75049260741007],[5.923210269228467,51.75044851548335],[5.923278320697809,51.75043282467261],[5.924036300346091,51.75025808566431],[5.924778104455664,51.750086301284696],[5.92683989008139,51.749608805459836],[5.926867487700489,51.749602413300714],[5.926932777478296,51.7495872903716],[5.926948908611662,51.74958355770503],[5.926978152478298,51.749576780415104],[5.926985965329044,51.74957497366906],[5.926993604841471,51.74957320367545],[5.927493912653688,51.74945732680013],[5.927728006834371,51.749403106522244],[5.93020098044205,51.74883029811507],[5.933184696960939,51.74813910545784],[5.933267164173189,51.748115000215925],[5.933323325542342,51.74809858593634],[5.933287007096765,51.74807702073264],[5.933282514707288,51.74807435407338],[5.93314306080745,51.747991535630376],[5.932527942009617,51.74762006017001],[5.931845206450875,51.74720639764709],[5.930738259772271,51.74653518948749],[5.93065613770669,51.74643505972484],[5.930287621708919,51.745982124264316],[5.930249555011184,51.74593533518761],[5.930242176919899,51.745926272904825],[5.930195798345796,51.74589992648703],[5.930065027794073,51.74512440152194],[5.930035998998363,51.744951271470896],[5.930014644364768,51.744823875886446],[5.929948351661683,51.74442846818391],[5.930323614666326,51.74426998580418],[5.930713299919351,51.744106949991796],[5.931153656406447,51.74383054690907],[5.931850794313949,51.74354154222262],[5.931911420822756,51.743516406856585],[5.931957417769708,51.74356644836806],[5.932037366317066,51.74364984155489],[5.932184883666902,51.743486677238415],[5.932331414274981,51.74332462292094],[5.932360505978099,51.7432924521296],[5.932391455005171,51.743258214294855],[5.932307852976082,51.743203215411555],[5.932258827424548,51.74317096761154],[5.932253024550429,51.74306928839087],[5.932197597032544,51.74305604532026],[5.932321074978802,51.742753651065485],[5.932561024942542,51.74245033706574],[5.932750646535055,51.74200714230625],[5.932771055658577,51.741951497603914],[5.932766959696343,51.74193844722349],[5.933144241258891,51.74184285762415],[5.933677529444909,51.741919363463545],[5.934249724632512,51.74200304690817],[5.934367262257906,51.74198129389991],[5.93444935431144,51.74196663656421],[5.934486763453073,51.74195789567238],[5.934601846163313,51.74189489612508],[5.93462268414219,51.741876012548325],[5.934783302636243,51.74171151627258],[5.934958768420876,51.741466484217185],[5.935222658763275,51.74112997458908],[5.935890720901509,51.74102861120208],[5.936133892630099,51.74105735930909],[5.936700211127436,51.74131302864455],[5.937072735516093,51.74148539951346],[5.937286462498496,51.741528575335316],[5.937391741859649,51.741549069433134],[5.937471144091247,51.741564525504444],[5.937820742728588,51.741578100796],[5.938298685873225,51.74159314779838],[5.938366502277034,51.741595300664734],[5.939524023501678,51.741814852932585],[5.939577117314382,51.7417970568363],[5.939826288354665,51.7417203863834],[5.939979056273481,51.741673140604036],[5.940042660328995,51.74165407225472],[5.940207451035667,51.741621483824055],[5.940358444422676,51.741590182755054],[5.940693410308155,51.741535594899304],[5.940708344634113,51.741573932742725],[5.94082647199061,51.74155692543855],[5.94087522319313,51.74154990865538],[5.941015115051083,51.74152723434795],[5.942880683336701,51.741710416283894],[5.94288684426307,51.74171101626786],[5.942965313558589,51.74171872485229],[5.943347209220435,51.74175630088046],[5.943962151965938,51.741816813041595],[5.944104697169522,51.74184967215201],[5.944248590961807,51.74188620102644],[5.944467314440216,51.741961609196345],[5.944556828384818,51.741983106671526],[5.945053382691848,51.742102368613565],[5.94613442433621,51.742361410261935],[5.946504515271695,51.74250436108422],[5.946745996569621,51.74259763363605],[5.947094615703256,51.74269247014194],[5.947350773854875,51.742815495585965],[5.948083457265722,51.74316307732061],[5.948199214436245,51.74321157407537],[5.948543248045766,51.74336320941444],[5.949500590986353,51.743783304680804],[5.94985483241089,51.743940019708184],[5.950238196353783,51.74410961825337],[5.95031620898436,51.74414412821836],[5.950737214565111,51.74433038891812],[5.951009978447184,51.744191910231756],[5.951340003457219,51.744272118238],[5.951550876884753,51.74429566867161],[5.951715769682978,51.7443255615247],[5.951905791361322,51.74436174193185],[5.951952585590886,51.74437064884265],[5.952354306212548,51.7445124131047],[5.952361709190917,51.74451502904294],[5.952435683437828,51.74453674828444],[5.952466159398104,51.744553769545654],[5.952478212833727,51.74457045721305],[5.952485169896942,51.744601065888816],[5.952459138820402,51.74468001276903],[5.952425832466807,51.74475614534279],[5.952392257919731,51.74484556439451],[5.952353793165792,51.74494804053557],[5.952351185881557,51.74495838104681],[5.952332437685025,51.745032690588154],[5.952270217398322,51.7455464211717],[5.9522675038688,51.74559339984425],[5.952269297963888,51.74568815830649],[5.952272752196005,51.74583804501028],[5.952276647568204,51.745914420579524],[5.952284769003499,51.74601375969038],[5.952293642204332,51.74612225458653],[5.952396540873223,51.746303966774185],[5.952535022477668,51.74657732603352],[5.952556343290424,51.74661939780688],[5.952762478332774,51.747009363413085],[5.952974807276279,51.747423001756445],[5.953098405840795,51.74766025297555],[5.953287975954926,51.74802415871573],[5.953319816159767,51.747932653469206],[5.953160431875526,51.747494275020664],[5.952921486532566,51.74715930814824],[5.952810626429344,51.74696312721],[5.952703927470487,51.746464386834354],[5.952733068100386,51.74609955056435],[5.952592130890902,51.7457838669325],[5.952509629512305,51.74548257964153],[5.952501020588714,51.74520786574328],[5.952567621346582,51.744873068504724],[5.952564080984728,51.74484473544898],[5.952294355419547,51.742684064175215],[5.952371361928259,51.742280804282586],[5.952528075759631,51.74204654154496],[5.952819672596052,51.741839905748364],[5.953128996363569,51.74155414653605],[5.953130470177618,51.74144877465557],[5.953129992351077,51.74144761742989],[5.953024320200711,51.7411964370741],[5.953028639591989,51.74108704251867],[5.953127190215225,51.740936366464545],[5.953618190742234,51.74049652592872],[5.953708183804125,51.74034489299808],[5.953831510404584,51.74013709958986],[5.954472180861283,51.73966569142465],[5.95467120690566,51.739425495050874],[5.954822865196096,51.739173168449106],[5.954951933194231,51.73889527956465],[5.95498216701943,51.738622660484594],[5.955003003393448,51.738389115597165],[5.955155225742251,51.73811759504341],[5.956140650608392,51.73848143786498],[5.956857072353493,51.73865452046155],[5.957491924518139,51.73855885794216],[5.958323430046931,51.73840044558813],[5.959169068786304,51.73828843857515],[5.960850646340442,51.73875952737111],[5.961110256286484,51.738781563499444],[5.962443000127556,51.73873382350333],[5.963677401151504,51.73872986854405],[5.965787378451196,51.73876814104942],[5.966313196231399,51.738717768502504],[5.966995226247897,51.73865242756899],[5.968029824034405,51.73851525082769],[5.968412760849784,51.73850366199569],[5.968744723526558,51.73854625682433],[5.968967586277236,51.73860836754462],[5.969294220950058,51.73879237869565],[5.969546069588035,51.738883593362864],[5.970860766364485,51.73910787975978],[5.972649471074334,51.73928026534511],[5.973362010351997,51.739305592170254],[5.973846430533754,51.73928956777116],[5.974501171125449,51.73923231070089],[5.978404513364086,51.73877553400283],[5.979192111424537,51.73875185392421],[5.980254218376808,51.738767264236785],[5.980792154908724,51.738790822853694],[5.981469465554536,51.738820485545666],[5.983735877504961,51.73906417375289],[5.98442735403097,51.739208793065735],[5.984990060037274,51.739288448204015],[5.985495305237234,51.73926765820087],[5.986523628371915,51.73903820735602],[5.98731752408488,51.73892510217123],[5.98782360252316,51.73888896318963],[5.990542815977998,51.738788188158395],[5.991674649014871,51.73871662900702],[5.992083584252157,51.738658528071745],[5.992615177354019,51.7385962144612],[5.994196777393806,51.73830941839867],[5.994735196769334,51.738072733600184],[5.995256822400957,51.73779778781253],[5.99527802658221,51.73778661271305],[5.995399562522194,51.737726072396654],[5.995843434646694,51.737432813165434],[5.996249229558495,51.73721073368103],[5.998144063600074,51.73630096743348],[5.99870983596335,51.736086152750296],[5.999223151006611,51.73580927292719],[5.99950775474453,51.73562015628952],[5.999579780481922,51.73557229267821],[5.999885069115518,51.73542801933269],[6.000518753661384,51.73520509241125],[6.001534755394898,51.734919718026994],[6.002296548188973,51.73458867694401],[6.003575677975103,51.733793898947724],[6.003820175028485,51.73370619518594],[6.006940209842305,51.73270091404556],[6.00698432912899,51.73268797064866],[6.007944370901582,51.73239204988634],[6.009590138942096,51.73184504864923],[6.009652305153511,51.7318297971439],[6.011051618889905,51.731486545552556],[6.012453486789837,51.73105743956319],[6.01343334999788,51.730757493600436],[6.013970986069158,51.730519761931816],[6.015215424302492,51.730032561963725],[6.016248919944506,51.72955893989023],[6.017284610454115,51.72911450104683],[6.017485261937852,51.72904080200135],[6.018499835362591,51.72885402789345],[6.018997450402739,51.72878138615846],[6.020739765203253,51.72841216790261],[6.021036099415688,51.72834871367935],[6.022497052542755,51.727925971401156],[6.024065894428155,51.72741452605618],[6.025330304569708,51.72700229965566],[6.025974112293161,51.726805093246234],[6.02688406509781,51.7264851816282],[6.028965486760696,51.72575337033775],[6.029522213517457,51.72548477463262],[6.030224804568244,51.72501006463715],[6.030901429679961,51.72461559139213],[6.032039897788858,51.72399452013319],[6.032259396873485,51.7238188857207],[6.032181934332595,51.72323379689699],[6.032730700999614,51.72195875485433],[6.032936878126957,51.72147969772587],[6.033000400303117,51.721416058012004],[6.033480285826085,51.72113111176568],[6.03365875537995,51.72108628896684],[6.034325704650035,51.72131784964238],[6.034521849562078,51.72138547552255],[6.03452323129576,51.72138595327684],[6.034619642387709,51.721418948314756],[6.034931962081013,51.72127475953362],[6.035034809970679,51.721226757313204],[6.034977051808936,51.721022943117454],[6.034976777538785,51.72102198284217],[6.034861681213892,51.72061628460864],[6.034859089715241,51.72060713045225],[6.034757701396843,51.72035295992402],[6.034742329182899,51.720314393448305],[6.03494788929887,51.71945610221267],[6.035138970059485,51.718781494076126],[6.035283160447562,51.718272564332786],[6.035417748850929,51.71779763789009],[6.035421398828387,51.71778474585001],[6.035424374446289,51.7177742755063],[6.035761781271435,51.717855427422016],[6.036102883286224,51.717914670376366],[6.037105395987611,51.71806701668087],[6.037217948968059,51.718078670678615],[6.03735272351113,51.718081814748686],[6.037755692104519,51.71808657942287],[6.038386460965265,51.71811377068117],[6.038386692645752,51.718128843471014],[6.038391088366818,51.718424835445866],[6.038346528091527,51.71849698392331],[6.037717870141778,51.7195154829107],[6.037736404124627,51.71979562113393],[6.037880914356471,51.71992978398051],[6.038429017969764,51.71969204248665],[6.03928773548821,51.71931955450561],[6.039289648287787,51.719318725883234],[6.039828791510479,51.71908484785856],[6.039830790464848,51.719083973803606],[6.042542359148656,51.71789981468567],[6.043749149761309,51.71740315291587],[6.044364359647683,51.71714995105427],[6.044602590253596,51.717051895483635],[6.044861980561716,51.71694516334733],[6.044939227493752,51.716913358929034],[6.044713181710341,51.71662742046056],[6.044475151334937,51.71635104989534],[6.044082084149883,51.7159652208941],[6.043986790870558,51.71583457388663],[6.043956543828284,51.715789548200156],[6.043883256692321,51.71566854844971],[6.043583584394361,51.71501009645025],[6.043682703589496,51.71497597701396],[6.043261501280932,51.71456260872044],[6.043105271698763,51.71435469368527],[6.043024780607874,51.71425047973474],[6.042009243568566,51.713344597566376],[6.0412395963367,51.71355922532315],[6.040909153712559,51.71362288565421],[6.040381585024228,51.713677568257694],[6.039785792920991,51.71373755446398],[6.039198297317878,51.71374986021253],[6.038721111096462,51.713751419129935],[6.03834318309735,51.71373545359113],[6.038243293309558,51.713731235898926],[6.037833070132772,51.713704329189355],[6.03779197785112,51.71343613629467],[6.037742052883092,51.71294231262678],[6.037721975291411,51.71274371948094],[6.036967573063307,51.71283078339756],[6.036734848922142,51.712845422586454],[6.036559495015336,51.712850835410535],[6.036294751611487,51.712858604096866],[6.036135466779561,51.71284943740824],[6.035979428138003,51.712826499779325],[6.035753589388953,51.71282184503752],[6.03550729605139,51.71284481756098],[6.035395813528973,51.712812023561355],[6.035150396905904,51.712725588780366],[6.03501011069366,51.712696171731764],[6.034956309226584,51.71269697268366],[6.034811598999815,51.71273444694755],[6.034737655886407,51.712741327683226],[6.034598833391351,51.71271508405649],[6.034529724562206,51.71272004131794],[6.034463526709671,51.712743364380245],[6.034422927714902,51.712779957107465],[6.034399366285858,51.71281802869512],[6.034383237429563,51.71285374011609],[6.034330924535467,51.71287261785573],[6.034239708221215,51.7128919082629],[6.034154444915906,51.71291768253489],[6.034075396335296,51.71293891008176],[6.034037059695916,51.712957692514856],[6.034028119292198,51.71296288343952],[6.033971793692014,51.71299561681666],[6.033908032325272,51.713039600157714],[6.033829263533353,51.71310366622156],[6.033636496790212,51.71325647790951],[6.033511165417528,51.71332374905168],[6.033355079117436,51.71333393161342],[6.033161062733406,51.71333368952527],[6.032903219507014,51.713290913862984],[6.032711365588913,51.71325362559478],[6.032492112624102,51.713232002505954],[6.032337800790925,51.713210380844856],[6.03220503225109,51.713181485317456],[6.032118912769191,51.713131155353075],[6.031970049939896,51.712982285898335],[6.031900557704629,51.71297461456999],[6.031883731739776,51.71297275664094],[6.031835926089069,51.7129749703365],[6.031520026932082,51.712989598518035],[6.031485277489469,51.71297689986973],[6.031334629020058,51.71292185466944],[6.03119528194769,51.712863771867944],[6.031066759942381,51.712799687847955],[6.030958696407652,51.712733423829256],[6.03058291432293,51.71256855937717],[6.030445495909308,51.71254112560404],[6.030082497063281,51.712400890335616],[6.029726709589539,51.71222118987883],[6.029551412633421,51.712133774430114],[6.02938757443366,51.71214093807321],[6.028905106307392,51.71202814058727],[6.028575670328059,51.711892948201516],[6.028396044510527,51.71178675034948],[6.028325425736833,51.71173315074294],[6.028267797158811,51.711636459997756],[6.028238572924038,51.711487793809205],[6.028260900481586,51.71092682069454],[6.028164590887578,51.710789901393085],[6.027951501997079,51.710608075181405],[6.027489641410818,51.7104001574371],[6.027045276488769,51.710180888423864],[6.027000841196855,51.710160358270265],[6.026858463074159,51.710038413094395],[6.026646456426062,51.709789280103905],[6.026448817435992,51.709453039561716],[6.026335825719815,51.70927050220853],[6.026179424034147,51.70899139314206],[6.026053905098536,51.70868807957023],[6.026080026483953,51.70852676039876],[6.026087299621511,51.70851211405611],[6.026219916776375,51.708245000879295],[6.026296756240014,51.70813846077406],[6.026440681481118,51.708024543240846],[6.02672380119132,51.70779995142755],[6.02678743436438,51.70771728523184],[6.026966891447659,51.707381601075625],[6.027057198456243,51.70714839875542],[6.027123710873943,51.70674699465218],[6.027123531604742,51.70641649841812],[6.027131899365147,51.7060755465296],[6.027134479354912,51.705722284744866],[6.027167722085907,51.70509049269426],[6.027092790119552,51.7048447910171],[6.027064389516244,51.70477927461594],[6.026880020780534,51.70446548792173],[6.026879549856743,51.7044649242048],[6.026860202476457,51.70440834701928],[6.026839271681694,51.70435335150565],[6.026828844340264,51.70429428964685],[6.026820627159671,51.704264644786285],[6.026908532394367,51.70409723506492],[6.026992736109992,51.704012811392026],[6.027016942933878,51.703988535426774],[6.027229147469581,51.703818136131],[6.02742575874408,51.70364696776863],[6.027518763036589,51.70355177204516],[6.02765386660339,51.70341378439806],[6.02770130310551,51.703360689232326],[6.027821634486976,51.703214494582326],[6.027870668307498,51.70315980859161],[6.027972115981242,51.703010292392385],[6.028034378914193,51.70286425345787],[6.028058562797235,51.70280170341321],[6.028097836273333,51.702617794923086],[6.028118848065483,51.70243967623214],[6.02810094329703,51.70219714161868],[6.028067380700898,51.70191135805641],[6.028013160557836,51.70155513503462],[6.02798486104463,51.701394634436085],[6.027959529895865,51.70128739375462],[6.027918759803857,51.70117478139116],[6.027740194482389,51.70079826786032],[6.027724975373716,51.700713452608845],[6.027765597198198,51.70054918616625],[6.027949178740126,51.70023347747583],[6.028109851663466,51.70002136309176],[6.028356450350985,51.699795079190025],[6.028647625603154,51.69950939575682],[6.028678798868659,51.699478816118614],[6.028811244444376,51.699355439273795],[6.028921752997527,51.69926114418158],[6.029079873465035,51.699156116121785],[6.029359400285287,51.69903576146589],[6.029627832227376,51.698907368165685],[6.029855621914954,51.69881404661515],[6.030370698938362,51.69863283714354],[6.03049635081766,51.69853978768875],[6.030588563724504,51.69843794210256],[6.030632501032272,51.69834590776625],[6.030678629744914,51.6980907518894],[6.030713003832233,51.697865485193624],[6.030793004343192,51.69747996830731],[6.030921741580805,51.69707559471763],[6.030958752245813,51.69696148604284],[6.031081166546276,51.69653686843287],[6.0311117018953,51.6964282334916],[6.031157026387771,51.696147400976685],[6.03116487564395,51.69587994304482],[6.031013675622435,51.695206125278425],[6.031021921081971,51.695001999762745],[6.031022796323844,51.69498017030794],[6.031060748171992,51.69477789490583],[6.031090169155269,51.694652025685535],[6.031170653573667,51.69431329207733],[6.031270483639054,51.69385331980614],[6.031359786519014,51.69349112186713],[6.031447699416134,51.693244652454645],[6.031742495415023,51.69265513972162],[6.031780620184848,51.69253333921303],[6.031786804942278,51.69240814601447],[6.031788711785359,51.69232275152015],[6.031740673936112,51.69216812210072],[6.031657249327944,51.69205437945765],[6.031280567516436,51.69165703784383],[6.031209966045912,51.691567134375866],[6.031117700309422,51.69140822664339],[6.030912877221073,51.69097848692725],[6.030869159881561,51.69089338822941],[6.03074505161918,51.69069903290414],[6.030622860232317,51.690529547734165],[6.030607901245231,51.690509908658],[6.030437621130648,51.690286413577795],[6.030279499570804,51.690131651252564],[6.030119083148774,51.690007660772935],[6.029892299768698,51.68989997145197],[6.029375372252781,51.68977595001562],[6.028706087552959,51.68964179499014],[6.028355691739485,51.68962227632763],[6.028247761127192,51.68962444937862],[6.028278441070528,51.689520758121766],[6.028300045955664,51.68941044690965],[6.028305624310218,51.68929487515854],[6.028410540457704,51.68915256619757],[6.028542597464538,51.689048733056865],[6.028640982497381,51.68892425735648],[6.028652808280753,51.68887501518785],[6.02869301675419,51.68880085353136],[6.028713412168419,51.68878481373328],[6.028838258340173,51.688690682652776],[6.028896074599355,51.68861912103976],[6.02890966777726,51.68859967580487],[6.028953647176119,51.688501861996215],[6.029056096833518,51.68836639739148],[6.029133940292097,51.68832629429671],[6.029203187341748,51.68829596410471],[6.029252327588921,51.68823372626322],[6.029276991727865,51.688182238340616],[6.029307592663989,51.688064048386856],[6.029324566182276,51.68803315987596],[6.029459209562234,51.68791019243898],[6.029574652487505,51.687834449161585],[6.029704811533381,51.68767585670652],[6.02977480433218,51.68750878539406],[6.029799003375498,51.68749486384338],[6.030063191757626,51.68740958443684],[6.030124006239785,51.687382347177525],[6.030174289646183,51.68733964417449],[6.030175995263348,51.687331446066004],[6.030176103536198,51.68733092412451],[6.03018369121229,51.687293974690384],[6.030172715941919,51.68713434103923],[6.030244490714735,51.687094818833124],[6.030262182365671,51.687086029543686],[6.030376770109798,51.68699411941229],[6.030473461266202,51.68690881535339],[6.030596967126131,51.68677089657357],[6.030776067963837,51.68655616887915],[6.031073422445925,51.68621381562129],[6.031148490983676,51.686113268152624],[6.031221555637102,51.68601216536686],[6.031271858169693,51.685942549482476],[6.031635464705093,51.68545094071576],[6.031760379843014,51.685301830907925],[6.032131058220305,51.68489212296749],[6.032169515444736,51.68485399657965],[6.032234402641467,51.68479629987938],[6.032236330744628,51.68476317472862],[6.032231300067433,51.68472577332463],[6.032209606769298,51.684688104180246],[6.032169605909739,51.68464838758945],[6.031872320989772,51.68443933797463],[6.031857230338796,51.68442354695862],[6.031852353807403,51.68441012665429],[6.031850366897774,51.684397544367734],[6.031858671276763,51.68438057283491],[6.031881303909651,51.684356340390494],[6.032301825445419,51.68400893696503],[6.032274896936151,51.68399554830948],[6.032230827310319,51.68397366984845],[6.032293663346899,51.68391926529848],[6.03100422214245,51.68333841018495],[6.030567699139499,51.68316293187661],[6.030555567041707,51.68316090417642],[6.030364325109684,51.682947007258115],[6.030467572756766,51.682859680601894],[6.030538028465755,51.68280009355813],[6.030504414031713,51.68239580283305],[6.030431779003155,51.68152213655886],[6.030285332682832,51.67976061691596],[6.03006702909166,51.6795979152542],[6.030194776033234,51.67934362311366],[6.03025434917903,51.6789399258891],[6.030087309177188,51.67872451127675],[6.029928210492455,51.67848480118596],[6.029918117882074,51.678453225205146],[6.02982312999601,51.67809944630354],[6.029842949426365,51.678079867868014],[6.029884527133793,51.67803877674957],[6.029924036775234,51.677999692473186],[6.030015828047448,51.67791273465588],[6.030774063284671,51.67719496053045],[6.030956103144738,51.67702488114162],[6.031371901534337,51.67663638302401],[6.031437298425215,51.676664984851385],[6.031556489180878,51.676550081773144],[6.031690151195973,51.6764138135323],[6.03194485936768,51.6761652022126],[6.031961138380953,51.67615094627212],[6.033261307023158,51.67611752999148],[6.03446259844766,51.67524653483725],[6.034672530284293,51.67514586825748],[6.034683629152627,51.6748707510256],[6.034461937067285,51.67478595480981],[6.034431901436749,51.6747581658794],[6.034283126070513,51.67467683126322],[6.033985124326772,51.674684770485065],[6.033963923157227,51.67468533707544],[6.032722632169405,51.67471831078041],[6.03180948801192,51.67474144661882],[6.031540485327248,51.67458274824226],[6.032349532013643,51.67405568563602],[6.034946843506288,51.67398803728359],[6.035032039961434,51.67392235235386],[6.035571185838227,51.6735371561775],[6.036001731962575,51.67322532348583],[6.036641692763574,51.67276012976633],[6.037438064032836,51.67256459825811],[6.037724222327475,51.672493084602976],[6.037749503353041,51.67248676881237],[6.038911153632458,51.67219644137241],[6.040448347036922,51.67181411033305],[6.041357417699676,51.67158354992962],[6.042529690610277,51.67129120341302],[6.0435125027429,51.67104708068529],[6.044090174926577,51.670902221961725],[6.045229316304627,51.670616416226096],[6.046548564647326,51.67028873089701],[6.04766684495468,51.670006946917105],[6.048727144560853,51.66974209117024],[6.049452750743995,51.66955644147507],[6.050523998107289,51.66929036583828],[6.051814878615971,51.66897044901584],[6.052153453842672,51.66888431906066],[6.052772128965809,51.668726923595585],[6.053563012488986,51.66852650398623],[6.054668009697227,51.66825068792289],[6.055920954466777,51.66794028124189],[6.056100228435103,51.66789512187623],[6.057433106666826,51.66755937009812],[6.05881850493732,51.66721256008253],[6.060520372054559,51.66678478505972],[6.061611928322654,51.6665118568054],[6.061819394271639,51.666462921666785],[6.062065011240262,51.666397829059036],[6.062741415075786,51.66623113980918],[6.063716468093589,51.665984338451246],[6.064926085179154,51.66568366731885],[6.066084258284691,51.665392738248],[6.066555029765233,51.6652751207385],[6.066803195155013,51.665213122443916],[6.067102158868222,51.66513995208156],[6.067696229223253,51.66499299327676],[6.068338037090999,51.66483246817971],[6.069005803133462,51.66466827369959],[6.069675559141713,51.66449929073625],[6.070529272718196,51.664283557900966],[6.070721748973975,51.66423875735075],[6.071708872468612,51.664005346655294],[6.072225647493127,51.66387790001236],[6.072384317318368,51.66383917326345],[6.073112303807877,51.66402436553276],[6.073791166268282,51.664196223486954],[6.074484232535958,51.66437123007348],[6.074803611981603,51.66445281495404],[6.07528071883046,51.664653238398266],[6.075672197647124,51.66480399722051],[6.075724362174758,51.66482573984435],[6.076202915954411,51.66428704742606],[6.07635700203553,51.6641761892156],[6.07655959094618,51.66409917555773],[6.077427591225784,51.663877914805134],[6.077625251997109,51.663823894727955],[6.077920924479212,51.66369685516461],[6.078402143432783,51.66346482658655],[6.078435560916691,51.66344871903742],[6.07852048434097,51.663429233060015],[6.07863804622074,51.66340226427245],[6.078850797143873,51.663404287991675],[6.079314042590843,51.66348610685707],[6.079493740210919,51.66348830690701],[6.079555037797787,51.663478721771284],[6.079662708819342,51.663461895899594],[6.079645388717753,51.663421000473825],[6.079574188921889,51.66326420765432],[6.079459656826939,51.663011976377774],[6.079263498002748,51.662574941629266],[6.078987086469644,51.66194906789059],[6.079291533308082,51.66174941531916],[6.079545072848751,51.66159325431405],[6.079868795357711,51.66153336089139],[6.08012334693775,51.6614897773509],[6.080843850356108,51.66150771124466],[6.080952032009667,51.66151604977856],[6.081343937870028,51.661546274254796],[6.081470854118953,51.66157834847212],[6.081489977865298,51.66158317885622],[6.081804835040435,51.66161446113478],[6.082223869303636,51.66166148351498],[6.082618484074334,51.66171077985921],[6.08281511659829,51.661765791224695],[6.083096450619072,51.661719489191476],[6.083187144314217,51.66184907174633],[6.083196042449027,51.66195964401721],[6.083475316907903,51.6620894619462],[6.083569233708841,51.66210618859353],[6.083635656898405,51.66211897090417],[6.08364792330992,51.662124300174966],[6.083972018602458,51.66230185038575],[6.084246028855794,51.66244901925537],[6.084395729012833,51.66258807417091],[6.084676496332031,51.66284805620575],[6.084890486730793,51.66293250685154],[6.085344921834239,51.66291407531394],[6.08584501775936,51.662757148591645],[6.086536991297087,51.662539872970854],[6.086787670534158,51.662271982451855],[6.087196264006216,51.66183942480391],[6.087266404494162,51.66153555213305],[6.087337295283245,51.66145871418768],[6.087377013036985,51.66141852131338],[6.087462493935782,51.66122068755843],[6.087463366334113,51.661151891001815],[6.087476713464277,51.660780510493716],[6.08736585072617,51.66043717220979],[6.087348876284303,51.660379754392594],[6.087316525439516,51.66026824403729],[6.087663827601283,51.660018586974914],[6.087855643314309,51.6598829391272],[6.087863463601187,51.659877418119805],[6.087888443596044,51.65984975380933],[6.088035568964793,51.65985688180684],[6.088309059037036,51.659856726728954],[6.088971702402166,51.65984500642951],[6.089592958308376,51.6598448477128],[6.090892383213659,51.65980996675056],[6.09201990014426,51.65978229118018],[6.092847164294114,51.65976064040742],[6.093671144043242,51.65973880585882],[6.09490632262296,51.6597031535394],[6.095034690037131,51.6597029614215],[6.09537526029666,51.65958489126634],[6.096082342014259,51.65933976379865],[6.096562320991,51.65917578464483],[6.097070630416699,51.659000251809424],[6.097503158980712,51.658850381397265],[6.098081102338434,51.658658843823154],[6.098230802954421,51.658609232902215],[6.099058191976814,51.65832409307626],[6.099654531842582,51.65811586037251],[6.099841065646459,51.658319471864985],[6.100159395990454,51.65864620001154],[6.100462394421021,51.658957191442795],[6.100879973237888,51.6593842750885],[6.101390262232378,51.65995800137579],[6.101908854737873,51.66053961187659],[6.10196558358578,51.66060827256149],[6.102004932291898,51.660594998430234],[6.102540461133556,51.66047857482044],[6.102837958746601,51.66050472910707],[6.103427401198865,51.660272726043715],[6.10359858818738,51.66020545754403],[6.103995370105719,51.66004954370471],[6.104342473397072,51.65991545219914],[6.104621516016954,51.659800518623136],[6.105135458121249,51.6595934372832],[6.105875700897216,51.65929191177883],[6.10603907053837,51.65923885406777],[6.10605685466393,51.65923567064427],[6.106078291473611,51.65923042431617],[6.106218310365912,51.65920135714716],[6.10650491733844,51.65916920457066],[6.107070091182123,51.65912832669957],[6.107771567301954,51.6590765483807],[6.108386474764079,51.658991483432466],[6.108895869894354,51.658843506020176],[6.109781914905855,51.65858717801014],[6.109812039374016,51.65857846159503],[6.110185098783525,51.65847053859238],[6.111807058300248,51.65800186935015],[6.112466201256667,51.657813344136116],[6.113639693796432,51.65747532105913],[6.114592277076692,51.657197167842305],[6.114646249940987,51.65718511988108],[6.114722622357573,51.65716310784025],[6.11532969894176,51.65698713286817],[6.115715934128295,51.65687516402396],[6.116596728171949,51.65662058753735],[6.116872170245049,51.65653738651937],[6.116887839009793,51.656533980922426],[6.118063743691205,51.655984211020574],[6.118087565781771,51.65597292506002],[6.117748230773584,51.65562312213736],[6.117455903009102,51.65531757356642],[6.117072247080961,51.65491884938943],[6.116706979616083,51.654542526365326],[6.116425437533898,51.654259748640975],[6.116287029088353,51.65406801630989],[6.116277298841992,51.65405247231672],[6.116140795910762,51.653834507504506],[6.115950007740344,51.65352173379848],[6.115820700412757,51.65332506329993],[6.115771107850758,51.65322735782141],[6.115779866455062,51.65312776989249],[6.115810854786236,51.65300601190173],[6.115877537551984,51.65274157652381],[6.11603057842133,51.65242071961519],[6.116278837102443,51.65190908338122],[6.116526876939162,51.65138869280669],[6.116592858135387,51.651291903181026],[6.116771561995301,51.65111780782195],[6.116863756270071,51.6510327648007],[6.117076646522801,51.65087388061761],[6.117256424997104,51.65074065903895],[6.117247614646336,51.65073105999594],[6.117179548758165,51.650702891164755],[6.116973705792977,51.650595167534085],[6.116286954245099,51.65025230882725],[6.116338503997286,51.650171986921286],[6.116201542774829,51.65011690278795],[6.116069409463147,51.6500592086236],[6.115882407115523,51.64997795471208],[6.114934200492904,51.64956641441635],[6.11482292777385,51.64951811727592],[6.114144427379602,51.649222745748084],[6.114138286842101,51.64922007825862],[6.113422349145035,51.64886476388039],[6.113376181411237,51.6488421288904],[6.112699907388861,51.648504119152456],[6.111931540372364,51.64812163295131],[6.11085643308383,51.6476126068467],[6.109626902337031,51.64697745835226],[6.109412157217021,51.64686652254217],[6.109622020395574,51.64667145454684],[6.11058642836006,51.645775025431924],[6.111295123927125,51.645094572849736],[6.111498096315244,51.64489967886815],[6.111682643542018,51.64472994153117],[6.109565103057826,51.64310347970648],[6.108040473270338,51.64193232533833],[6.107865159919275,51.64153307843518],[6.107468356270175,51.640623775067766],[6.107079530125623,51.639732740514724],[6.106945073614297,51.63940984370533],[6.106069328239755,51.63739626275924],[6.105529146515113,51.63614127795081],[6.10502605282873,51.63497239189816],[6.104967818610896,51.634875355120144],[6.104860180034684,51.63462860661849],[6.104149713921365,51.632999870166834],[6.103561581791804,51.631658922148425],[6.103379495813036,51.631243763753524],[6.102746959957016,51.629804502822374],[6.102495837688386,51.62927876210057],[6.102096521436411,51.6284427238631],[6.101614206898621,51.62743286155848],[6.101592342627311,51.627358783187844],[6.101503563995211,51.62719479355324],[6.101495212260533,51.627177136530086],[6.101242788458806,51.6266439313342],[6.101022966649667,51.626188648694054],[6.100925448491289,51.62598666217062],[6.100694368720649,51.62549930349451],[6.100479383484035,51.625049644313016],[6.100200094441565,51.62446787215994],[6.100012221661719,51.624078541778225],[6.099797673319495,51.62382935695291],[6.099533138554896,51.62353377913059],[6.099532653134599,51.62353321578964],[6.099257046162039,51.62321471131289],[6.098896819695207,51.62280161015178],[6.098808057662446,51.622699093112544],[6.098496401055897,51.622339142890645],[6.098398154382543,51.62222566289991],[6.098215027493965,51.622015727191275],[6.098122545145587,51.62190875580886],[6.097690121333442,51.62141274521683],[6.097229172333616,51.62088353962378],[6.096507335581003,51.62116125261295],[6.095852893744635,51.62141092104411],[6.095161994189608,51.62167524256183],[6.09478498907171,51.62181947594686],[6.09451551562519,51.621922563077355],[6.094017750082209,51.622122230348324],[6.093934099210252,51.62215404401011],[6.094105086338477,51.620437309797914],[6.094317054925781,51.61823190922314],[6.094361130309965,51.6177732743977],[6.094381344823801,51.61755113660172],[6.094301265409133,51.616697033018525],[6.094268096193018,51.616247997865926],[6.094355422995087,51.61519578341799],[6.094138527931157,51.614431334650874],[6.093997820975651,51.6137394144624],[6.093983904053338,51.613670994544684],[6.093863313559402,51.61341337477075],[6.093644874755261,51.61291377289556],[6.093622656385039,51.61260724346619],[6.093532236801712,51.61231847448498],[6.093281065331555,51.611648515156006],[6.092441449567175,51.609254385358895],[6.09239640085765,51.60912593667338],[6.092184409779204,51.608519631415895],[6.092119115617116,51.608296040812036],[6.092048475350781,51.60804796979234],[6.092011249497959,51.60790440847901],[6.091943759825735,51.60764626886295],[6.091847265382741,51.607300617729585],[6.091778995196331,51.607055300822424],[6.091742697294952,51.60693511383676],[6.091680231493593,51.606759470460794],[6.091591622088841,51.606514105193696],[6.091475267033458,51.60619340959042],[6.091420059589247,51.60604440127442],[6.091399163034893,51.605994629995685],[6.091387557454648,51.60593612851327],[6.091423874392439,51.60584855609486],[6.091786022337021,51.60568597722989],[6.092572887008076,51.60532175061428],[6.093418118764518,51.60492897706079],[6.093797462241216,51.60475177102573],[6.09432453974332,51.60450554381624],[6.094513391824851,51.604418270281364],[6.094754368249286,51.604306914476616],[6.095132168729511,51.60413324601832],[6.0955587348501,51.60393413905201],[6.096170628027037,51.60364637337373],[6.097035427698506,51.60324612878067],[6.097369032748547,51.603094105816425],[6.097418199564031,51.603073024919475],[6.097956416355315,51.60281427289015],[6.09838194035826,51.60260827636518],[6.100514019677862,51.60162043674619],[6.102643138440285,51.60063194667568],[6.103478632794217,51.600198430535094],[6.103649958851677,51.60010953256134],[6.107201407533183,51.59847084193463],[6.108841803768155,51.597705374887944],[6.109720884532233,51.597295149298326],[6.111576974939621,51.596427239250666],[6.111807489572954,51.596319445323054],[6.113253001716977,51.59564369978314],[6.1140757948945,51.5952590493621],[6.117084653030179,51.593847546973215],[6.117458756684929,51.59379105263904],[6.119032621301882,51.59370302531534],[6.119284226301036,51.59366724724843],[6.11982226493381,51.59345489399792],[6.120783419284409,51.593047845265865],[6.121485515951782,51.59274453880948],[6.12148727205552,51.59273890972253],[6.122769598489531,51.59108976407092],[6.122938398021156,51.59087267174068],[6.122973464514697,51.59082814477976],[6.123159462487085,51.590589631200295],[6.124211501392669,51.58924052066285],[6.125954804565633,51.586999083226644],[6.126030063458087,51.58690122183955],[6.126288738068006,51.58657311874145],[6.126435526647535,51.586386938295924],[6.127844979829783,51.58459574179119],[6.128489726885028,51.583776451048315],[6.129813959342973,51.58205632407791],[6.130548009303937,51.58110277104811],[6.130559995757628,51.5810876114296],[6.131354043193234,51.580548968073465],[6.132811781528452,51.579559940642504],[6.134185941991753,51.57865614037339],[6.135142007076908,51.57794431548289],[6.135773099118571,51.57752385470554],[6.137220478101485,51.576559494145705],[6.137356777947807,51.576466051519716],[6.137447002264236,51.57640419493276],[6.137866415217371,51.57612218921736],[6.139169564298897,51.57524595879117],[6.14078516169401,51.57415823943955],[6.140786633200772,51.57415737600362],[6.140795653987928,51.5741533177663],[6.142156375685492,51.57335760042419],[6.142800687180264,51.57298417147237],[6.143614962452963,51.57251221698301],[6.146985790574474,51.57059073849581],[6.147025129213137,51.57057109360849],[6.149248466546506,51.56967989920989],[6.149282601626086,51.56967002249877],[6.149369413515294,51.56963176575285],[6.150887874031246,51.56902596710123],[6.151652713238975,51.56872042131016],[6.152386337088198,51.568427335768426],[6.152896604393538,51.56822347726312],[6.153403141048178,51.568017627444895],[6.15596679111334,51.56699836176918],[6.157032549237673,51.56657549921312],[6.158439588198121,51.564567332095464],[6.158923128243051,51.563889878948615],[6.159177070990354,51.563534100039085],[6.161374248143507,51.560455509840125],[6.162141780959122,51.559374102965116],[6.162651045699556,51.55865653406484],[6.163102279737283,51.558018235258146],[6.163737963356935,51.5571268114248],[6.163805761091692,51.55703116778404],[6.164224650315047,51.55643937251761],[6.164617618047876,51.555881375835924],[6.164887867172484,51.5554877127742],[6.164927399317421,51.55544016772343],[6.165341095374155,51.55485836257931],[6.165827165490449,51.55417476803401],[6.166826504617978,51.552769250911716],[6.168466614776044,51.55046638811569],[6.168481792806761,51.55043177798485],[6.168532191543012,51.55035677860571],[6.168546767515411,51.55034248754895],[6.168561910704574,51.55032764436999],[6.170206081687975,51.54800790140039],[6.171621872440794,51.54601385503156],[6.171754283574941,51.5458265076528],[6.172396791651275,51.54491745996694],[6.173885766829313,51.54281933987286],[6.173956972513734,51.542715666900584],[6.174751873072637,51.541599219242336],[6.174954432710652,51.54131048484912],[6.175483995817738,51.540555595771934],[6.175533218858483,51.54049554082408],[6.17599253089592,51.53984008305597],[6.176333799256088,51.53935783851918],[6.176454612063893,51.539187130579705],[6.176902020331379,51.53855572308636],[6.17934896711173,51.537505699966],[6.179950931972107,51.537242391708936],[6.180007922401419,51.537217464977275],[6.180805336393637,51.536874342678686],[6.180912733970358,51.53682811968354],[6.181036540358486,51.53677481860695],[6.181335482903127,51.536646122726125],[6.181890673415319,51.536407086991225],[6.18289072442166,51.535983027898624],[6.184550769556638,51.53525865587914],[6.186290970615826,51.53451047507607],[6.187813303199522,51.53385125152272],[6.188674093737858,51.533479010480605],[6.190690730606153,51.53236941414858],[6.190974184174626,51.53221235866401],[6.191622137984262,51.53185333570573],[6.192154561084717,51.531560644184204],[6.1925641339227,51.531337383448765],[6.192856956074883,51.5311778406787],[6.192943716863182,51.53113882317735],[6.194244141352669,51.530441367930024],[6.19438415894821,51.53036626802225],[6.194510882977041,51.530304653446606],[6.194528896477935,51.53029160274542],[6.194784573199662,51.53016571495914],[6.194933224928954,51.53009160639334],[6.196562879026009,51.52927279717688],[6.196620781834743,51.52924109618141],[6.196671778632285,51.52921489934787],[6.196686054970748,51.52920731255748],[6.197031301532302,51.52901189821262],[6.197374436785071,51.5288227088789],[6.197425413110929,51.5287946061842],[6.19771595884166,51.528627264379764],[6.198045687522564,51.5284430111564],[6.198523511737811,51.528174499058814],[6.198971013063159,51.52792635808964],[6.199291927820647,51.52774459857476],[6.199441603279936,51.52765927676321],[6.199929000567489,51.52738144255182],[6.200441557968452,51.526841374495255],[6.200518057516707,51.52676046204404],[6.200602110463367,51.526670831527426],[6.20064405196823,51.52662610672753],[6.201082114594955,51.52615901501618],[6.201557166776394,51.52564889395903],[6.201574699988327,51.52563016444243],[6.201746848568212,51.5254494083647],[6.201924500747331,51.52525741332075],[6.202160808892647,51.52500800936032],[6.202620381462713,51.52452474314417],[6.203154363894689,51.52395760005139],[6.203221876941429,51.52388553980969],[6.203925927081946,51.523133496088604],[6.204638054936501,51.522372797926955],[6.205369147311425,51.52159352592212],[6.206512782458236,51.52037619703237],[6.206855720909547,51.52001009467273],[6.207255227458889,51.51958362827149],[6.207708718836272,51.51909594344358],[6.207745206733845,51.519047595789665],[6.208075507327139,51.518609891072266],[6.208359789253817,51.51823317591135],[6.208433628482146,51.51813578193809],[6.209036024871823,51.51734120190509],[6.20906139711666,51.51730774596393],[6.209072851578282,51.51729182668323],[6.209114969305316,51.517237065737724],[6.209977180600848,51.51609942818691],[6.210763683360022,51.5150564151088],[6.211493863893557,51.51409129750144],[6.212023713343265,51.51339094203937],[6.212308119739721,51.5124174791905],[6.212575294835949,51.511494565794344],[6.212638346212003,51.51127858108029],[6.212688072075469,51.51110546034924],[6.212786968806678,51.51076520943089],[6.212997260827308,51.51004658630188],[6.213073229493508,51.50978696707549],[6.213081730566002,51.509730770435596],[6.213103233222953,51.509585409502336],[6.213215129546989,51.50882880205697],[6.213218103019984,51.50880851973956],[6.213219218439106,51.50880093409314],[6.213361347802134,51.50781766979428],[6.213486509868048,51.50687363659803],[6.213500907164318,51.50676545054939],[6.213577451681511,51.506190051005746],[6.213605180303253,51.505981650699056],[6.213661156223858,51.505560936150665],[6.213724220732291,51.50508649783993],[6.213782772208629,51.504645944136556],[6.213791379528981,51.5045830138749],[6.213804718656941,51.504480875888625],[6.214101103438589,51.50329045326325],[6.214194910170945,51.50291258180115],[6.21387833556735,51.50059088788347],[6.213702672046388,51.499302564127774],[6.213822276301873,51.499219107988004],[6.213798589727571,51.49908150069854],[6.213746256455095,51.498777412470744],[6.213700752753608,51.49851307933226],[6.213574143456672,51.49777740472454],[6.21333796204461,51.49638944266089],[6.213288704710695,51.49610054188944],[6.213204103211933,51.49560441513535],[6.213199333286407,51.49557648397995],[6.213096630308729,51.49512308429591],[6.212797760980396,51.493501687646074],[6.212790611381903,51.49334738736649],[6.212787370728675,51.49327753845969],[6.212786396042942,51.493256367169266],[6.21279757595351,51.49244745402291],[6.212807952066806,51.49174659481702],[6.212794117179232,51.49160951986862],[6.212763707353179,51.49130815254176],[6.213321878954294,51.490623301195924],[6.214325057041341,51.48939232007835],[6.215414833894026,51.48800488136439],[6.215423502246818,51.487993835236985],[6.215446440167771,51.48796463784089],[6.215454165861029,51.48795480293287],[6.215523134016318,51.48786700286772],[6.215540728441767,51.487844836854016],[6.215885137591425,51.487406090593296],[6.216202835819004,51.487090835790696],[6.216793318273276,51.48650489585575],[6.216866333729708,51.48643243747372],[6.21686996449503,51.48642783623744],[6.217256460696899,51.48593762090436],[6.217557518261051,51.48555577287892],[6.21771717741917,51.48535324614262],[6.21787956540206,51.485147274927265],[6.218514848219623,51.48434144947288],[6.219032072941313,51.484983268156554],[6.219083149137062,51.48486954315554],[6.219095032613942,51.48484307558011],[6.219423021432973,51.48411265983123],[6.219426120224666,51.48410576110789],[6.21943464202031,51.48408679635918],[6.219637974912041,51.48363516539537],[6.219643813218653,51.48362219749175],[6.219838606297952,51.4831895400282],[6.219845163920796,51.48317497591884],[6.22011822713303,51.48256843253453],[6.220471823908879,51.48178300654152],[6.220475102766247,51.48177573795069],[6.220488701092051,51.48174551852816],[6.220661884122624,51.48136082664998],[6.220685262480474,51.4813088827173],[6.220686631720149,51.48130582564792],[6.220914459282218,51.48079933687264],[6.220925359490066,51.48077510540383],[6.221108115185523,51.480368779663365],[6.221118254641485,51.480346252542894],[6.221284353292411,51.479976972576466],[6.221293717482216,51.47995614092322],[6.221364468801592,51.47979883008361],[6.221381592903831,51.47976075587513],[6.221397977011231,51.47972158129913],[6.221600323901835,51.479237916630986],[6.221618006816124,51.479206786932046],[6.221628870510235,51.4791876704273],[6.221657542809043,51.47913721656905],[6.221669368653881,51.47911640323725],[6.221740337725674,51.47899151413045],[6.221744769788471,51.47897257844309],[6.221749896088791,51.47895068039015],[6.221826709416813,51.478622524759835],[6.222026752571112,51.47835277044592],[6.222107678206474,51.47817358785775],[6.222159290613529,51.478059318202966],[6.222898143339388,51.47642330578155],[6.22293645949229,51.476338498236],[6.223332055482776,51.47546251177753],[6.223341751350273,51.475441030355356],[6.223556763491319,51.47496489393686],[6.223544808886076,51.4747216905926],[6.223543545066517,51.47469599991556],[6.223543455783227,51.47469427465511],[6.223542191800104,51.47466857499005],[6.223502043412859,51.47385145113199],[6.22350002022521,51.47381263287172],[6.223499242826668,51.47379774356274],[6.223494937380671,51.473715407617554],[6.223494890924236,51.473714446120574],[6.223494150075951,51.473699979035565],[6.223493344250703,51.47368432585967],[6.223486726732944,51.47355528132408],[6.22344914987759,51.47282159345058],[6.223448138656079,51.47281591061902],[6.223444208057138,51.472793915577114],[6.223394021442881,51.47251289949742],[6.223389817670063,51.47248935130271],[6.223318678530569,51.47209101622207],[6.223317972154273,51.472087039127466],[6.223317796014295,51.472086069570466],[6.223314041022667,51.472065008128254],[6.223279691700656,51.47187269048253],[6.223276113378294,51.471852625559436],[6.223239068261892,51.4716451716511],[6.223235554805949,51.47162550178081],[6.223147829888283,51.47113428454143],[6.22314593675994,51.471123682016774],[6.223011880180506,51.47037289570795],[6.223010130829902,51.470363065210734],[6.22298021219868,51.47019556151079],[6.222955849788597,51.4700649181242],[6.222869557644693,51.46960437007724],[6.222868504222026,51.46959873248774],[6.222855116508799,51.46952725741788],[6.222854031503005,51.46952146724035],[6.222844282669327,51.46946945440525],[6.223222249849028,51.4691514554123],[6.223315222619338,51.46906197725136],[6.223675938123173,51.468714840950476],[6.22330140101919,51.46815597826746],[6.222804637642435,51.46713199650771],[6.222546220436944,51.4665393099214],[6.222295220820539,51.466162307320985],[6.222293992381914,51.466130647626045],[6.222293743165795,51.46612412334628],[6.222234027468336,51.464575185882424],[6.222232026094105,51.464523351255835],[6.222231861611361,51.46451909161425],[6.222226204828258,51.464372322622665],[6.222226017549361,51.464367604701685],[6.222219354260061,51.464194990348794],[6.222219157915158,51.464189778093875],[6.222209022663578,51.46392673158192],[6.222208781716552,51.46392065669545],[6.222207930429791,51.46389856765532],[6.222204275938039,51.46380367822555],[6.222204029716883,51.463797315726524],[6.22218653988898,51.46334355580555],[6.222175971231882,51.46306941087866],[6.222166082395922,51.46281270886626],[6.222165754116373,51.46280422553357],[6.222159333734182,51.46263776693664],[6.22214335629522,51.462222478366115],[6.222116575350004,51.46152645751954],[6.222116242310198,51.46151771353704],[6.222102554706987,51.46116211395701],[6.222102114672407,51.46115067401872],[6.222099936143503,51.46109386969136],[6.221953339459195,51.460668171512204],[6.221948916249542,51.46065531283203],[6.22192911145604,51.46059778065163],[6.221924627907045,51.46058476958801],[6.221777259559281,51.46015682944313],[6.221752212164555,51.46008409826007],[6.221366813520723,51.458964910536274],[6.221058544790361,51.45806966336469],[6.220931685270125,51.457688228855346],[6.220714967547393,51.45710151459397],[6.220364154557584,51.45603278383783],[6.220254690827337,51.455705788028645],[6.220180512224005,51.455600794988726],[6.220123128380225,51.45551958393569],[6.220006106139676,51.45534950117395],[6.220045391612592,51.454862884933554],[6.220072632478462,51.45456892755932],[6.22009245985582,51.45435501686101],[6.220107574833938,51.45419182918368],[6.220078783280829,51.4541909560574],[6.220080366677112,51.45416661133222],[6.220091592951439,51.453994552236296],[6.220104603263675,51.45379496484631],[6.220155727019316,51.45301101329927],[6.220180758556138,51.45262704605679],[6.22018942056908,51.45249417063676],[6.220197983152633,51.452362940925305],[6.220207195073836,51.4522215938666],[6.220219376499498,51.45203494763334],[6.220220825766462,51.45201271629247],[6.220232138156417,51.45183912839676],[6.220236981742305,51.4517649339439],[6.220256379195615,51.451467068283186],[6.220279935075038,51.4511055482428],[6.220282327245393,51.45106880179887],[6.220322640470489,51.45044997563114],[6.22041225462028,51.44907389910765],[6.220412313057977,51.44907316158598],[6.220440341945189,51.448697559569474],[6.220453942485543,51.44851545159663],[6.220468582269815,51.448319385148764],[6.220498240764658,51.44792203586696],[6.22051293680754,51.447725133018295],[6.220575847730088,51.44688245196926],[6.220593478017867,51.44664625484988],[6.214242528532646,51.44673684396948],[6.214189329442144,51.44665435090712],[6.214042907295051,51.44642730922344],[6.214001455219618,51.446362683981754],[6.213987524894973,51.446340993214186],[6.213949062861833,51.44628337621414],[6.213936678901537,51.446263661065],[6.21400293659179,51.445448979286745],[6.214123883257785,51.44361695792377],[6.214220237166034,51.44215959538988],[6.214279619443105,51.44126152535514],[6.214470248185105,51.43835724134582],[6.214516853698099,51.437662954042274],[6.214707851850577,51.434817814375485],[6.214730564527757,51.43440550395696],[6.214736832884281,51.43429612531207],[6.214761502693266,51.43388074469733],[6.214565960958432,51.433168066656414],[6.213936563740745,51.430873977743666],[6.213485754202555,51.42923333081942],[6.213333258863014,51.42868226598956],[6.21278426161426,51.42669833576552],[6.212548258678757,51.42584729320975],[6.212090795770055,51.42419652133276],[6.211846794272013,51.42331597784161],[6.211273802286978,51.42123104707675],[6.210850189590451,51.41971075032873],[6.210650531814466,51.41899419353439],[6.210437333986518,51.418232849510304],[6.210400327827475,51.418099838648445],[6.210000047504588,51.41666390741802],[6.209600918256438,51.41522502726705],[6.209323766384379,51.41422584069388],[6.208610210666459,51.41164559165404],[6.208360216621541,51.4107392304953],[6.20785999716928,51.40892555536006],[6.207121011705635,51.406253410034296],[6.207041507661609,51.405965931918146],[6.206889270802114,51.4054188929586],[6.206369088522377,51.4035394168726],[6.206082456626336,51.4025037216364],[6.205878805429746,51.40176759753234],[6.20526405152696,51.39954542455116],[6.205257044437449,51.39952010652371],[6.205321041992541,51.399534839918864],[6.206301212756483,51.39976049482547],[6.207336690439217,51.39999886748342],[6.208380346669538,51.400239115019154],[6.210713277379973,51.400776141438456],[6.21089680983266,51.40081838779938],[6.21127671917406,51.40090582716521],[6.2113626124626,51.400925598156256],[6.21182364940858,51.40090582448758],[6.211937422229613,51.40090093849514],[6.21287394057887,51.4008607610971],[6.214203441057381,51.40080371171884],[6.214227421791828,51.400802678621105],[6.216411221213833,51.40070893165082],[6.216563866188417,51.40070245219125],[6.216613536373666,51.40070031892551],[6.216787518326985,51.400692842369494],[6.217639449296541,51.40065624897401],[6.217990858893272,51.400641151119416],[6.219323433280213,51.400583895533664],[6.22039441553253,51.40053786152051],[6.220685800331236,51.40052534196522],[6.220726394837181,51.40052359544912],[6.222772114021696,51.400435642547805],[6.223541841410464,51.40040254364657],[6.225849824577729,51.400303252011],[6.226668110860313,51.400268039172374],[6.226032742393752,51.39953164117544],[6.226769353796719,51.39937424205975],[6.226695812717793,51.399309052372445],[6.225922052571653,51.398623189436634],[6.225454013666542,51.39819789278395],[6.224896136945338,51.39769093571532],[6.224358047208538,51.39714179185157],[6.22432205207605,51.39710506020261],[6.224306705019524,51.39708939454301],[6.223703539669724,51.39655303014721],[6.223443204664215,51.39635156465918],[6.22220604260065,51.39545981583074],[6.222136702342229,51.39539262460717],[6.22168177571297,51.3949529893859],[6.221126384754414,51.394487912992176],[6.22096485819843,51.39437679467918],[6.220567350704401,51.394043022608706],[6.219855383045301,51.393445184977914],[6.219414757803828,51.39314135415462],[6.218845808633221,51.392686701354016],[6.218794630066632,51.392645806546895],[6.218033554011011,51.39198406323246],[6.217642547934745,51.39160256578932],[6.214424764835681,51.389634273749],[6.214449150685943,51.38962421264292],[6.216367466135615,51.38883248335341],[6.215605788616651,51.38821522487733],[6.215480095974501,51.3881133638366],[6.214742647042621,51.38751571262617],[6.214764233631045,51.38748445704202],[6.215011568030892,51.387126372362026],[6.215064260414312,51.38700024050231],[6.215582258086428,51.38576010831649],[6.216132230851118,51.38449682394732],[6.216260047694901,51.38419662240776],[6.21630651997502,51.38408747865008],[6.216319814656615,51.38405620984103],[6.216377938931563,51.383919494462795],[6.216465306773301,51.38371455937599],[6.216678521714086,51.38321441616018],[6.216952446571208,51.382569304394956],[6.217197436772036,51.381992337698335],[6.217209256653632,51.381964558067594],[6.21726846453898,51.38182531753547],[6.21729404576072,51.38176515099278],[6.217391260256751,51.38153655758497],[6.217954184108946,51.380214553589155],[6.218021366955011,51.38005677417368],[6.218383330428622,51.379206339974765],[6.219889791816577,51.37566663864414],[6.220217621342868,51.37489115966256],[6.220299239919719,51.37469810120241],[6.220331264595163,51.37462233669247],[6.221209029503575,51.37254589070642],[6.221889134338872,51.37095498063741],[6.22221468722405,51.37018983133429],[6.222689674659165,51.369073393438924],[6.223765405946112,51.36653182084861],[6.224058961759903,51.36583962665574],[6.224125996842976,51.36568155680602],[6.224417725517098,51.36499368054162],[6.22540480987457,51.362662984020304],[6.22603558192714,51.36117326045851],[6.226389998823378,51.36033615734655],[6.224612683372439,51.35932091509385],[6.224534576578814,51.35927629721493],[6.224452233164071,51.359229264692615],[6.223867127266784,51.358895010084105],[6.221661443198937,51.357635544449266],[6.220061112405836,51.35672156750525],[6.219884301372494,51.35662058929215],[6.218808246824919,51.35600599556719],[6.218482829770901,51.355820400788375],[6.216492912537074,51.354685460816505],[6.21508520452728,51.353882318930104],[6.213075385377689,51.35273375435708],[6.212285498599366,51.35228234564071],[6.209296678426734,51.35057415345162],[6.206908916821305,51.3492103445666],[6.205378830738915,51.348335819419574],[6.204515873499302,51.34784256919756],[6.20344369643154,51.34722970480363],[6.203282635163256,51.347137634369936],[6.203257981511237,51.34712354139678],[6.200058808540493,51.345295595389565],[6.19679784450793,51.34343033679798],[6.196748762554825,51.34340226342704],[6.196108338455015,51.343035912839035],[6.195949318390837,51.34294477105698],[6.19559652432655,51.342742565535],[6.195431445469222,51.34264795037119],[6.194290527800311,51.34199401305904],[6.194251829582218,51.341971844439904],[6.192997227286697,51.341253277671285],[6.192649507933999,51.34105412945903],[6.192640852345264,51.34104917340415],[6.192436134063172,51.34093193295145],[6.192425057144809,51.34092558233387],[6.191939270933978,51.34064708694259],[6.191924888577947,51.340638844440655],[6.191750357838924,51.34053881507343],[6.191703584980782,51.340511928189315],[6.191682358987968,51.340499732784714],[6.190878389623156,51.340036187628684],[6.189910646849254,51.33947820285776],[6.189909588411969,51.33947758990557],[6.189902367637198,51.33947339682223],[6.189881749249566,51.339461421632876],[6.190306647962864,51.33901757674011],[6.190365855782698,51.33895190752808],[6.190837625752048,51.338428633266396],[6.190849929777078,51.33841830976811],[6.1910004059561,51.338292044031974],[6.19101532352695,51.33827773828184],[6.191296076669598,51.338008643897396],[6.191554332138021,51.33771147843302],[6.191581190232828,51.33768010072676],[6.191735073725773,51.33749494084273],[6.192213992907497,51.336967026988724],[6.19321923692184,51.33577755662461],[6.193976369480006,51.33516815565233],[6.19423645463553,51.33487897167087],[6.194165822399858,51.334865932566416],[6.19347413015561,51.33473826944573],[6.192356067059148,51.33467058701168],[6.190911519525232,51.3349442167205],[6.190788927868343,51.33495004274977],[6.188303824099211,51.335068167399456],[6.186566369757579,51.33482612944487],[6.186215284831955,51.33477722024967],[6.185394554997557,51.33466287147444],[6.184668062560013,51.3344965168759],[6.183473274669444,51.33422292097224],[6.183098422501299,51.3341370849176],[6.181106900629062,51.333953108660786],[6.180221529409155,51.33387130926136],[6.178905247661179,51.3335723267952],[6.178976761426861,51.33346187697092],[6.178340687965695,51.33325833656379],[6.178240128211104,51.333226155626804],[6.178085471273937,51.3334104038708],[6.178029880955931,51.33340545089789],[6.176409574760855,51.333261058625325],[6.175201314719792,51.33315336319114],[6.174133672486482,51.33305819763879],[6.171364053372226,51.333208212750755],[6.168623948918341,51.332982337009476],[6.168613516515798,51.33298148114365],[6.168557389577141,51.33298868948791],[6.168519388031743,51.332874324675956],[6.168484124709284,51.332768193458236],[6.168197501881379,51.33190558213817],[6.168206491623241,51.33183379794082],[6.1682273354018,51.33166724322099],[6.168239416793911,51.33157066436688],[6.168254062239808,51.33145368106893],[6.168348936958568,51.33124963064086],[6.168490452071039,51.33094529058933],[6.168690926242317,51.33071740234071],[6.16888413583265,51.33049777852893],[6.168959350551154,51.330379426657224],[6.169009358637258,51.33030075101511],[6.169060246578804,51.330220676134054],[6.169130752331713,51.33010977176152],[6.169131801179145,51.33010733766495],[6.169228616452362,51.32988375814017],[6.169378581454428,51.32937369889483],[6.169359376061464,51.32935818689967],[6.167079407618984,51.327516425419944],[6.166491896394505,51.327182576353046],[6.165967742908247,51.32688519179598],[6.165477501366063,51.32651882971786],[6.165387022531391,51.326451216332124],[6.165350167046697,51.3264235964989],[6.164311701752218,51.325645066297525],[6.164187638099407,51.32555204827739],[6.163301304447192,51.32448201166041],[6.163245733263384,51.32441491902138],[6.163237765104512,51.32440529089135],[6.163158656438641,51.324309787793695],[6.16307776259721,51.324212211072876],[6.16208932853528,51.32301996503135],[6.16187583418716,51.32240086948039],[6.161600120403544,51.321601443955835],[6.161536191344523,51.3215406894819],[6.161147780520115,51.32117160064564],[6.160290992415575,51.320357417165305],[6.159590030580573,51.31969128664461],[6.159584137025147,51.319550493814575],[6.15956503870652,51.31909428982244],[6.159548087502192,51.31868957901105],[6.159532171278712,51.318309599277185],[6.159515893047406,51.31792091151778],[6.159464285306568,51.31668823951472],[6.159438817403248,51.3160798386158],[6.15942049174804,51.3156420210819],[6.159157250680035,51.315423795178475],[6.157548981876181,51.31409050049222],[6.156335214253896,51.313083659259945],[6.155532140357415,51.31241828739],[6.155372783603164,51.3122207703344],[6.154871372753122,51.311599247198565],[6.154239760110652,51.31111458476114],[6.154194677403272,51.30960696370828],[6.154131069841045,51.30923670911607],[6.153873338805312,51.30773611593531],[6.1538278055064,51.30747100425262],[6.153823880202502,51.30744816188526],[6.153776911993496,51.307397700896175],[6.153022569105247,51.306587051301925],[6.152987343966378,51.3065491873392],[6.151746772195515,51.305222284659024],[6.151714457968109,51.30518770917888],[6.150751842129237,51.304159340136124],[6.15072420263694,51.30412981254854],[6.150706709823363,51.30411106821251],[6.149920250370068,51.30326754774469],[6.149687345067133,51.30301773915032],[6.147278799156596,51.300430346362695],[6.147162279251673,51.3003044242042],[6.146933621636097,51.30005730615971],[6.145775114291713,51.29880009990979],[6.145579147406787,51.298587437040986],[6.145144758483245,51.29811600320302],[6.144812913112541,51.29786188537049],[6.144313484641273,51.29747959404151],[6.1432525441526,51.29666147394419],[6.142676428508345,51.29621809870753],[6.142502599658954,51.2960846605654],[6.142494318091748,51.29607806239855],[6.142191383090821,51.295845053674896],[6.141708670513499,51.29547387923171],[6.141504345650188,51.29531663650662],[6.141286109879946,51.29515040460421],[6.140686546030938,51.29469126094019],[6.140231452535232,51.294341565299774],[6.139824284686378,51.29402868283554],[6.139245776236034,51.29358395798274],[6.138508800534277,51.29301368735387],[6.138153206284558,51.29274064730476],[6.137810392067888,51.29247732184044],[6.137631188818087,51.29233788851781],[6.137081278505829,51.291912205255045],[6.136676210806882,51.29160235469087],[6.136593890403828,51.29153933211694],[6.136085209940578,51.29115266093698],[6.134445687634561,51.28988432561127],[6.13394994013604,51.28950079825021],[6.133933825090466,51.289488406857835],[6.1335653403893,51.289203929707924],[6.1332122801924,51.28893319568888],[6.133113140989312,51.28885796348907],[6.132851818573081,51.28865666514785],[6.132630435728154,51.28848694966064],[6.132495864884096,51.28838379015199],[6.132143832431563,51.28811376548178],[6.131396523023758,51.28754064013219],[6.131075403960222,51.28729315690658],[6.130966383223105,51.28720926667948],[6.129011010725711,51.2857024168147],[6.128866501005408,51.28542548596565],[6.128304161522066,51.28434786409245],[6.127616781229201,51.28303345431796],[6.127063045959437,51.281973705039945],[6.126526005194235,51.2809458481904],[6.126336614176656,51.28058335388544],[6.125852831671419,51.27965722650739],[6.125847213145849,51.27964656518913],[6.124757988605956,51.27754999794827],[6.12465954272357,51.27646316078698],[6.124512500205641,51.27483964267581],[6.124502291094454,51.274728998036],[6.124315475910907,51.27459859089553],[6.122657756526852,51.27343977575237],[6.120590937912847,51.27199434786064],[6.120221389251982,51.271735886264395],[6.118768850975821,51.270719503499386],[6.118002581857017,51.27018431085118],[6.11603526362345,51.26881018039093],[6.116023178622514,51.26880174346604],[6.114216698149511,51.26753982804985],[6.111865089984762,51.26589696402861],[6.109507444551766,51.264249380328145],[6.10784130641969,51.26308497079011],[6.107182434078215,51.26262448755081],[6.106187540966537,51.26193756739779],[6.104240029145486,51.260579693506436],[6.103514625050531,51.260075256895256],[6.101436314104847,51.25862995053686],[6.096440260738913,51.25515504578852],[6.095028929927861,51.25417459678701],[6.094630089132562,51.25389751804428],[6.092628577692728,51.25250540662202],[6.089033662265784,51.250003365544],[6.088624940729105,51.249718874187266],[6.08854483584326,51.24966311286084],[6.088127028283815,51.24937227437307],[6.085617249245993,51.24762570181574],[6.082372486690683,51.24635720330405],[6.079613676844502,51.24527835750271],[6.07910376828722,51.24507894147215],[6.075855245981826,51.24380866686953],[6.074609958608117,51.24332150331312],[6.072663740487611,51.24256008813551],[6.073773107068271,51.24091727827977],[6.073841590464852,51.2408180664232],[6.074272303456426,51.24019411018085],[6.074556899046351,51.23978510800333],[6.07547563908646,51.23846469411599],[6.075489810647303,51.23844433994942],[6.076293725673291,51.237346619240924],[6.077033647756804,51.236304653937545],[6.077393164058536,51.23579835213064],[6.07784426636948,51.235162611340165],[6.078466539172942,51.23428606851597],[6.07959346317729,51.23270070742962],[6.080018264559122,51.23210124148706],[6.080050928081503,51.23205513979956],[6.080237819730766,51.23179107842657],[6.080872187119936,51.23089477315203],[6.08105321601766,51.230638440021934],[6.081079511065219,51.23060116732698],[6.081185907059054,51.23045013658382],[6.083103801007233,51.22772832232588],[6.083236183230476,51.22754058462106],[6.083381990521447,51.22733382644551],[6.083422595437963,51.22727752758652],[6.083423198286074,51.227276687994895],[6.083545917816519,51.22711838399557],[6.083931397863126,51.22642807072203],[6.084111695019049,51.22610517314453],[6.084122454008351,51.226085908041206],[6.084136627549661,51.22606053688163],[6.084646578614768,51.225147193686595],[6.08542824703919,51.22374255599421],[6.085970677720912,51.22276771529792],[6.086024933496248,51.22267020853334],[6.08359400064165,51.22204219676867],[6.082440588928486,51.22226362440842],[6.080963031489671,51.222446947306565],[6.079886857638342,51.22247154082969],[6.079204605176913,51.22248711919138],[6.074296869968645,51.22244515461091],[6.073259342912799,51.222436252829915],[6.070694327237683,51.22208556282179],[6.06904734572401,51.22115172777523],[6.067987601645612,51.220550801609],[6.068083556153396,51.219162503229214],[6.068100097690412,51.21893664668953],[6.06813673153813,51.21837903093584],[6.068280498219175,51.21619014921287],[6.068342919932708,51.21524529629805],[6.068359490757022,51.214994611792555],[6.068432939021191,51.21388277672157],[6.068468061484758,51.213351111973914],[6.069259014619219,51.2132454633808],[6.069494592809286,51.21321398542227],[6.069567913576131,51.21258606613638],[6.069602811487375,51.21228739818346],[6.069673997483474,51.211677784031636],[6.06985929197167,51.210091002285445],[6.069894883934468,51.209786334442875],[6.069942905740395,51.209379397170736],[6.070132940949658,51.20776912556883],[6.070143686325769,51.20767677194577],[6.070143773638007,51.20767590848479],[6.070316887100294,51.20618324962573],[6.070317458147603,51.206178356230744],[6.070324064953319,51.20612138979834],[6.070412476865698,51.20535916568289],[6.070468426451551,51.20488178831704],[6.070857988456155,51.201557911328955],[6.070995305448873,51.200384168146144],[6.071026942365626,51.20011367246568],[6.071031816865406,51.20007210541281],[6.071055797175145,51.199855247452525],[6.071293349703843,51.19780231577174],[6.071530480387231,51.195886495793836],[6.071807576393743,51.19364758915095],[6.072085792421293,51.1913887013525],[6.072283507097553,51.18978332359764],[6.072293534164596,51.18970473616466],[6.072297672594649,51.18966575323532],[6.072606073010499,51.18716989630594],[6.072640382656235,51.18689090758397],[6.073133298500563,51.182883278680244],[6.073141519986274,51.18282474738831],[6.073145428415433,51.18279438627263],[6.073531727435376,51.182391121300874],[6.073694548097553,51.18222114719207],[6.074851114784418,51.181013729623764],[6.076820835891701,51.17895844677176],[6.077441769832188,51.17831102602226],[6.077863849494113,51.177870921281695],[6.07851512355241,51.17719181662638],[6.078806790556482,51.17675078545601],[6.080191629603108,51.174657610875464],[6.080279189165789,51.17452510218066],[6.081050791028659,51.173357401843326],[6.081494626432675,51.17268569434711],[6.081638782196261,51.17246764801008],[6.082190258239623,51.17163351812647],[6.084776298301354,51.17130131408174],[6.087630330536596,51.17093433889498],[6.087824340165946,51.170923361777895],[6.087833269207324,51.170922858466916],[6.087882095559716,51.1708392263446],[6.088083653299622,51.17071485117582],[6.088105280861797,51.170713498161156],[6.088122318730226,51.17075710916432],[6.088394119100519,51.170807416517945],[6.088426927745424,51.170733948604635],[6.088406497225872,51.17070601707385],[6.08844790018905,51.17070000513748],[6.088516298345955,51.170778183571365],[6.088537582534381,51.17075996906655],[6.08858697544374,51.17070321950955],[6.088667061561081,51.17073404480572],[6.08871517733686,51.17070320938715],[6.088881375004906,51.17070627757856],[6.088947068663542,51.170738439104014],[6.088878578617511,51.17082922890562],[6.088902312482256,51.17084032186114],[6.088945175898709,51.170818534107504],[6.088994040546037,51.170822661506804],[6.089026375125169,51.17089688660218],[6.08924307214144,51.17097539100021],[6.089305762918498,51.17095234166547],[6.089297020788903,51.1708846619097],[6.089228150670967,51.17087389577228],[6.089259803722064,51.17083527621466],[6.089204717287438,51.170710409466366],[6.089095476532029,51.17066840752775],[6.089070299104767,51.170586273773914],[6.089146949098046,51.17053824945577],[6.08930743841379,51.170528991568496],[6.08937575592052,51.17051487926807],[6.089450900088871,51.17056847623173],[6.089534132282718,51.17057687217416],[6.089659997411198,51.17055219116622],[6.089703160311404,51.17046031358413],[6.089660186582383,51.17039168128927],[6.089792309203976,51.170408734475245],[6.089876594653064,51.17038319907106],[6.089930642265695,51.170379393333036],[6.089996887897369,51.1703551265681],[6.090035131787199,51.170370688954854],[6.08997529786067,51.17044017688943],[6.090013706073099,51.17046366664428],[6.090033207754892,51.17044768294653],[6.090065771253228,51.17045084781769],[6.090062773112829,51.170479163535155],[6.090142161993243,51.170477487578076],[6.090201107588547,51.17044991195322],[6.090180191857312,51.17040249537435],[6.090250758147135,51.17041107532547],[6.090316845990756,51.170381182177984],[6.090378555293709,51.17039776199783],[6.090390009261919,51.17042488457927],[6.090356292151419,51.17045002435878],[6.090420335986077,51.1704892514574],[6.090480094519698,51.17049795063514],[6.090477661274106,51.170550056999154],[6.090489212920527,51.17058168250128],[6.090548793075911,51.17058246335789],[6.09058503061678,51.17051091569517],[6.090587287725298,51.17045198769453],[6.090795327540387,51.17047684993738],[6.090845598006371,51.170466360810494],[6.09093495377472,51.170506710738074],[6.09095359699582,51.170532684053775],[6.09084944577886,51.17063063963706],[6.090895594628534,51.17067680656854],[6.090853778800683,51.17074261714179],[6.090826779687614,51.170746142604656],[6.09078618369578,51.17078706403109],[6.090800917724274,51.170800539282205],[6.090869230029051,51.170788889138805],[6.090944909539413,51.170783990053835],[6.090958486271314,51.17074435590956],[6.091082185221918,51.17079010682273],[6.091198887915005,51.17076470660902],[6.091177904886687,51.17071391072447],[6.091230381592135,51.170720469307156],[6.0912745537412,51.17075985233728],[6.091321222707793,51.170749465737295],[6.091411951692474,51.170773941276586],[6.091485217502393,51.17074313200689],[6.091445362515507,51.170735382371326],[6.091459091813896,51.170704790241835],[6.091534210662068,51.1706773406053],[6.091499483215407,51.17065710105134],[6.0914493234236,51.17067201241024],[6.091421917754436,51.17065741852011],[6.091455269283311,51.17054509569712],[6.091538273966113,51.17054702844624],[6.091568192750826,51.17051853146564],[6.091857076106844,51.17053675302765],[6.091780957567699,51.17059034015379],[6.091833568351584,51.17060377428609],[6.091882094287233,51.17059794264029],[6.091902839533798,51.17063413261097],[6.09199284750687,51.17062933468263],[6.091987140123035,51.17069159162905],[6.092115807413663,51.17072282092468],[6.092310998272847,51.17066691976266],[6.092356169129126,51.170599982633135],[6.092308979567198,51.17058762148343],[6.092216723479666,51.170643410297785],[6.092079635585957,51.170639262336536],[6.09208406257873,51.17060071732273],[6.092040395669637,51.17058496378742],[6.092035185373552,51.17052592824914],[6.092114075106874,51.17051316146564],[6.092069149326748,51.17045638948244],[6.092302499451757,51.17038914627535],[6.09236414199481,51.170405986131826],[6.092431803382738,51.170392981667995],[6.092491664747152,51.170412079537975],[6.092593604621796,51.17041241336135],[6.092735478494985,51.170439597588974],[6.092813750506385,51.17048899347872],[6.092834086967173,51.17051156733291],[6.092747806009163,51.170524397479824],[6.092774999148369,51.17054002609232],[6.092703150042898,51.1705605980177],[6.092618602902498,51.170586703378],[6.092619688592816,51.17061641463921],[6.092838612549671,51.17065715373539],[6.092868135476436,51.170637369227684],[6.092879975616682,51.17061788990078],[6.092951292028978,51.17064823517818],[6.092920419661555,51.17068720158566],[6.092950623040407,51.170696798182746],[6.093050188791636,51.17065427717212],[6.093082228331104,51.170666118833026],[6.093120689607666,51.1706529588189],[6.093063467207426,51.17062233023925],[6.093043724457798,51.170550034286755],[6.09312106773595,51.17054178872752],[6.093164611989168,51.170583017619926],[6.093225092740355,51.17054101265977],[6.093281358559042,51.170479697805405],[6.093344281674424,51.17046263158653],[6.093356069519164,51.1704453458604],[6.093443050294224,51.17046315473631],[6.093559433365039,51.17040875535388],[6.093630423175371,51.170423443245404],[6.093702106344822,51.170405136998234],[6.093841751082041,51.170417510463196],[6.093892355306146,51.17045754553455],[6.094034295305444,51.170488035754595],[6.094059974934884,51.17052049182417],[6.094013958951589,51.17057230616835],[6.094068193795655,51.170617811392304],[6.094122973165711,51.1706225298761],[6.094143106285333,51.170588212930326],[6.094231805488697,51.17060708045858],[6.094182102067777,51.17065435086812],[6.094227026285907,51.17068298627234],[6.094151266346276,51.170685415993226],[6.094094552314433,51.17073613588905],[6.094139461845773,51.170764744449315],[6.094202649304007,51.17075462470674],[6.094265625075569,51.17079760464321],[6.094370886784806,51.17077775421034],[6.09444313536322,51.170657840627],[6.094524138935855,51.17065422818424],[6.094546632519847,51.170697957862615],[6.094644492868137,51.1706691991394],[6.094651837441361,51.17062155729031],[6.094747609889549,51.17069577198583],[6.094702753630068,51.17072816315306],[6.094724538154897,51.17074813900875],[6.094784022332027,51.170732468283994],[6.09484297257973,51.170756370661024],[6.094811094287247,51.17080882730821],[6.0948362686221,51.17082422503522],[6.094887307228394,51.170820003847616],[6.094949471109156,51.17083253339846],[6.095019339449435,51.17079759863094],[6.095062370332401,51.17080633446499],[6.095062046224037,51.17087526461883],[6.09510456639349,51.17090094794437],[6.095034124006309,51.17092926131718],[6.095121130293013,51.17095603987825],[6.095199806777206,51.17093223372231],[6.095232177454197,51.170949735888364],[6.095240798876039,51.1710498125737],[6.095210919857768,51.171054803850595],[6.095221093548463,51.17109513871363],[6.095405356007376,51.171106770907784],[6.09536247899724,51.17104222113252],[6.095436082177184,51.17102415380528],[6.095454376899548,51.170991214176794],[6.095558635237555,51.170990668316854],[6.095582546956348,51.17096777115999],[6.0955850615131,51.17108810148178],[6.095525768601845,51.17111154699414],[6.095529261919257,51.171160947593236],[6.095604106255911,51.17112600909792],[6.095687666603548,51.17113699648055],[6.095762482324011,51.1711020670461],[6.095837405983629,51.17111767345194],[6.09588835407614,51.17115388521153],[6.095990206578978,51.1711308540034],[6.096006212971092,51.171086790793],[6.095970112068714,51.17106942846014],[6.095964843992985,51.17102457818143],[6.096003370387389,51.17101381689512],[6.096027063427901,51.171031407749055],[6.096096793398808,51.17100328689066],[6.096214421966426,51.17102038528933],[6.096310707147417,51.17094799284276],[6.096382907074068,51.17097703620544],[6.096499930968772,51.17093000998278],[6.096515182259387,51.1708713530612],[6.096559749011536,51.17083232902393],[6.096411081461347,51.17076545924334],[6.096350180735853,51.17079121619869],[6.096310689391672,51.17077836920585],[6.096281743941272,51.17080582773442],[6.096211985183896,51.17078669334235],[6.096182011080011,51.170788287582226],[6.096121355925803,51.17077347524711],[6.096121293784421,51.17072500656326],[6.096384016976836,51.1707119687288],[6.096459855389921,51.17066464565763],[6.096566029126211,51.17063634692508],[6.096647265990564,51.17066172132727],[6.096700609557447,51.17065493236773],[6.096742067977864,51.17071271256266],[6.096825251334772,51.170739117683354],[6.096874944085909,51.17068392682644],[6.096951532913754,51.170677777778096],[6.096960438180711,51.17072383729434],[6.096987472650968,51.170730027373],[6.09699634279426,51.1706813333113],[6.097119008120621,51.170758797578024],[6.097118866430333,51.17080048975243],[6.097156791084303,51.170810945965485],[6.097214140685145,51.17076917379041],[6.097184162533215,51.170686369931374],[6.097225872995187,51.170655012792764],[6.097139115230471,51.17062862980511],[6.097162614839469,51.170587469046396],[6.097291273644743,51.170538438253836],[6.097373740411212,51.17059431353614],[6.097473245819297,51.17057866640726],[6.09758312232783,51.170601204262525],[6.097632085823135,51.1705719510065],[6.097834589710641,51.170537254958596],[6.097945900282509,51.170454773368895],[6.097953474063797,51.170418465112554],[6.097860213885147,51.17036274616692],[6.097974338625512,51.1702598061822],[6.098051852727,51.170277453803656],[6.098092049322077,51.170347843923025],[6.098301498114303,51.17030742345824],[6.098335302514514,51.170255897895025],[6.098327780778854,51.1701995465103],[6.098467839801205,51.17016847668733],[6.098769934705039,51.17016357016052],[6.098878843130086,51.17011169219288],[6.098971996544829,51.17011436646437],[6.099085279773979,51.170037579742214],[6.099210021013058,51.17002382596019],[6.099512777246848,51.16989481030863],[6.099685740306206,51.16983274066067],[6.100089183635648,51.16988698632178],[6.100102117130008,51.16994088632659],[6.100145684679912,51.169954704800304],[6.100263237423819,51.16993661632835],[6.100290277566465,51.16998459580477],[6.100305302920418,51.17004519778344],[6.10044278375587,51.170032362251455],[6.100641882525544,51.17012202805255],[6.100680353036883,51.17027339247893],[6.100632562960229,51.17033292401029],[6.100638267293101,51.170428559681746],[6.100576972983672,51.17046469467274],[6.100592440184872,51.17058037894342],[6.100470491916347,51.17071230538842],[6.100492451308798,51.17072312822282],[6.100658220176062,51.17083010488076],[6.100585388363924,51.170891219460586],[6.100671991667461,51.17094798390146],[6.100727415536256,51.17094349949506],[6.100777929470186,51.170906468823176],[6.100852015558865,51.17091961414037],[6.100881680071025,51.17085488134545],[6.100997093275041,51.170913329268636],[6.101082776528905,51.17090261808379],[6.101118037855536,51.17093115741435],[6.101058501000133,51.17096722792167],[6.101130395778245,51.171014149489686],[6.101219635232799,51.17100223877853],[6.101216141545105,51.171136152507096],[6.101254530254779,51.17115338229663],[6.101287502173617,51.17112572697236],[6.101345847448029,51.17114817355525],[6.101431796207036,51.171230785047015],[6.101531229366219,51.171204060347975],[6.101467150015621,51.17126156198411],[6.101486057087071,51.17128479034559],[6.101436190851878,51.17133862691122],[6.101434615893771,51.17138812144681],[6.101590387956052,51.17142209506774],[6.10169590172354,51.17141211543357],[6.10184463328273,51.17144847816956],[6.101862015924078,51.17147847563347],[6.101967820590483,51.171475235768604],[6.102027397139397,51.17148304022279],[6.101989390477125,51.17151976974819],[6.102002181985513,51.171568969138846],[6.102069809976437,51.171597956218946],[6.102038518076552,51.17162330022365],[6.102075411284734,51.17164728974292],[6.102110213156828,51.171619622922755],[6.102133861960243,51.17161400302455],[6.102270284117948,51.17158158467081],[6.102361872502873,51.17158088597999],[6.102410596667723,51.17154282288272],[6.102457080407278,51.17158122564014],[6.102413082159032,51.17164728759297],[6.10246605050571,51.171668706014216],[6.102493094613725,51.17162771110496],[6.102548665306958,51.171624348562716],[6.102564913790673,51.17158244929952],[6.102621087137977,51.17159482288081],[6.102636832635959,51.171672040934965],[6.102608990694086,51.1716939479971],[6.102669195608931,51.17171635550037],[6.10269613747104,51.17180458811233],[6.102742639307452,51.17179916890622],[6.102762354656575,51.17170999269243],[6.102797156301206,51.171682334655436],[6.102893865432289,51.1717624427506],[6.102978891776478,51.171776472154335],[6.103013088057653,51.171821871995654],[6.103195297030629,51.17175194663068],[6.103219196338456,51.171721137578416],[6.103276752797187,51.17172223900708],[6.1033147847208,51.17172934862166],[6.103360652416705,51.17175203292657],[6.103263349399941,51.17183374122156],[6.103342416301083,51.171833298729695],[6.103437269710078,51.171779723300205],[6.103519045702994,51.17180170071574],[6.103594141342557,51.17179234740094],[6.103607674762753,51.171815671487096],[6.103546343125156,51.17185396565392],[6.103560015063946,51.17188066878372],[6.103745557811325,51.17184664233993],[6.103791654352356,51.17191877396969],[6.103852857433623,51.17196476204005],[6.104200776116455,51.17203205561465],[6.104293499887886,51.17201336125528],[6.104370565305896,51.17196349949122],[6.104502089508336,51.17192604790507],[6.104710089194182,51.17195564974908],[6.104784166236064,51.17192046735114],[6.104914859779931,51.17193783581636],[6.105196307738397,51.17197616079818],[6.105292207239096,51.172035282426755],[6.105432192269925,51.17202958083496],[6.105507813683328,51.17207667443627],[6.105590902985732,51.172086533991695],[6.105587869212111,51.172143948011595],[6.10573025625386,51.172196678186914],[6.105853071408299,51.17216650615943],[6.105897880493131,51.17207579880785],[6.105993379709669,51.17212480962677],[6.106043745882814,51.17212510021804],[6.106098009600188,51.17217704487284],[6.106155475020647,51.17226267872712],[6.106207166217039,51.17225169773288],[6.106240689398479,51.17228037213166],[6.106411253781311,51.17231801417285],[6.10645436817686,51.17227344005402],[6.106580939660686,51.1722904546342],[6.106678842101164,51.17235404827384],[6.106813912706336,51.17240239981939],[6.106788061438137,51.172473663573626],[6.106821613740026,51.17250233762652],[6.106877414779762,51.17245980617662],[6.107041712685002,51.17247618200596],[6.107094711088092,51.172452814555406],[6.107136270681808,51.17245775267168],[6.107116608004427,51.17250417727803],[6.107140660187487,51.17252064002566],[6.107193736728679,51.17249951931526],[6.107427278100425,51.172537245925525],[6.107499785858015,51.172464092664484],[6.107541683385786,51.1724768939843],[6.107452223108133,51.17257506112414],[6.107491538354253,51.17270032285821],[6.107566850215348,51.17273841898415],[6.10754795769143,51.17276009195497],[6.107430026008505,51.17277891824284],[6.107527900156029,51.17288521846368],[6.107698340104129,51.172918364861204],[6.107760639899762,51.172902705978636],[6.1078513952439,51.172922557173024],[6.107914802722693,51.17289001883449],[6.107933387858387,51.172904330993774],[6.107861160848937,51.17298534822696],[6.107890050146715,51.17303208299684],[6.10798602253041,51.17300350451833],[6.108019872929442,51.17308387257319],[6.107920344226836,51.17311364172442],[6.107943904527915,51.17316157812525],[6.108009266699797,51.173132389523694],[6.108143615140843,51.17316274788329],[6.108209300889561,51.173141422604616],[6.108280271594371,51.173161603016695],[6.108299146287022,51.17313880640199],[6.108339367676816,51.17315499773643],[6.108396754961906,51.17315066828317],[6.108405121314861,51.17319078853487],[6.10841240519175,51.17322571981896],[6.108567106424788,51.17322539744369],[6.108600070812318,51.17319562764613],[6.108663356455573,51.173203567480215],[6.108729597233323,51.173195731067814],[6.108727915093269,51.17318878396879],[6.108720926376239,51.17315990950969],[6.108788919335058,51.17310708082537],[6.108913553290823,51.1731634591044],[6.10893030460239,51.173187526661955],[6.108946046185975,51.17321012628186],[6.108932806786304,51.17323844324101],[6.108995262639134,51.173269993373864],[6.109066135240309,51.173242981248784],[6.109207901559003,51.17336759672191],[6.109188367904769,51.17341847946689],[6.109408739498468,51.17348671201088],[6.109503420044542,51.173470545241585],[6.10960537404165,51.17341044847201],[6.109659824542417,51.17342302714139],[6.109691220314823,51.173489872433855],[6.109787858304112,51.17347815184149],[6.109918971060495,51.173382780038],[6.109875272503904,51.17332288799244],[6.1099991256869,51.17327143696173],[6.110213056489285,51.173556237035974],[6.110343147143562,51.17357756736023],[6.110360225833106,51.17364686573192],[6.11067267197691,51.17365043949016],[6.110720119507295,51.17371584516462],[6.110902631271646,51.17370257297972],[6.111040607416534,51.173787738799646],[6.111263715579636,51.17384786061838],[6.111387446954545,51.17393553288344],[6.11129530984981,51.173965195921724],[6.11105381523459,51.173985101669],[6.11117494058947,51.17405260991129],[6.111089046840204,51.174104607696414],[6.111175176108972,51.17414914218869],[6.111208189344142,51.1741216276024],[6.111254057428482,51.17414665496462],[6.111178907473441,51.174243378440714],[6.111665050050085,51.17441680324469],[6.111441475595174,51.174618267363826],[6.111492125548503,51.174673522069575],[6.111610916452097,51.1746355395709],[6.111705755310217,51.17471808812263],[6.111840579410149,51.174677578337715],[6.111932595162514,51.17473435464105],[6.112066738600585,51.174677012288974],[6.112274898966354,51.17476546915919],[6.112385459410424,51.174747825598516],[6.112494302577185,51.17477626170174],[6.112593945034112,51.17484413632857],[6.112655149390993,51.17484868013523],[6.112691125168979,51.174761629909405],[6.112778201550999,51.17482971769512],[6.112700630675147,51.17486361460842],[6.112714909463954,51.17495093526832],[6.112781373829852,51.17499693077325],[6.11282521571145,51.174971469511995],[6.112868988546273,51.174988679840666],[6.11279619947149,51.17505279520809],[6.112788582888948,51.17508660577733],[6.112822054060476,51.17511521570316],[6.112817151135945,51.17517142809534],[6.112944983545384,51.17527024654005],[6.113030409007028,51.17525193240358],[6.113168742215211,51.17525514902003],[6.113238509692918,51.17533814066769],[6.113330223190108,51.175342169826656],[6.113338336480588,51.17540938441932],[6.113439741150748,51.17543120523235],[6.113519275434572,51.17553311160845],[6.113574923197379,51.175631059283624],[6.113614007802532,51.17569986003137],[6.113771675097255,51.1757364213902],[6.113822705748088,51.17576939776644],[6.11397815277283,51.175869822194215],[6.114119069800698,51.176023426867545],[6.114291734627945,51.176119248597054],[6.114300969365194,51.176169592587875],[6.114296403573142,51.176232535761955],[6.114335576738503,51.176268912093924],[6.114481482792407,51.176324773768044],[6.114510846744441,51.17638375607572],[6.11459353806707,51.17638683395623],[6.114682419595421,51.17658287763285],[6.114777778266624,51.1766317563399],[6.114844943678846,51.17673612140268],[6.114896054572654,51.17688679088912],[6.115004866782847,51.17699943460113],[6.115081483596041,51.17715865463126],[6.115243427178431,51.17734000137074],[6.11531374193956,51.17747688691744],[6.115488910316397,51.17762994268576],[6.115464793090666,51.17764128528937],[6.115421952757372,51.17766143770245],[6.115414366570357,51.17769526623595],[6.115513582637901,51.17779237357557],[6.115553120517513,51.177880425465034],[6.115989123139189,51.178127785334624],[6.116432706349608,51.17829750222016],[6.116540256413165,51.178373467988074],[6.116730711698038,51.17850798932483],[6.116818056106245,51.1785345338875],[6.117084554314285,51.17867816838729],[6.117339544447597,51.17878511824049],[6.117407650189907,51.17885004082653],[6.117402413733958,51.17885349858247],[6.117378018162796,51.17898758929672],[6.117372559272015,51.17910111980305],[6.117746403043897,51.17917701048817],[6.118159169235325,51.179303632188656],[6.118365584799219,51.17945196556216],[6.119120305173176,51.179778649674326],[6.119342316341088,51.179910945424986],[6.121708069787762,51.18097864885541],[6.122005464058645,51.181067072610475],[6.122177648090208,51.18114672342241],[6.122405948373641,51.18130281265985],[6.122598701840454,51.181358457658945],[6.123887596919478,51.181687742192715],[6.125153658960842,51.18195675084957],[6.125514176818594,51.18207239717085],[6.126346766302051,51.18233947252005],[6.127523581474951,51.182695138781355],[6.128577731181678,51.18322102046706],[6.129624643846538,51.183740107224295],[6.130934316068209,51.184108562549284],[6.131685357440104,51.184319841202964],[6.133694994033672,51.18488665307704],[6.135574346732675,51.1854165154645],[6.138109671652442,51.186241716644865],[6.138845885656061,51.186481459692544],[6.139659920440149,51.18674653781026],[6.14038652998247,51.18698314223634],[6.141855549408442,51.18741984703309],[6.145199516423439,51.188413830377996],[6.145308909450551,51.18844635837997],[6.149899243771619,51.18981117504221],[6.153616489141704,51.1908485091163],[6.153728416988976,51.19087878322374],[6.159681266687468,51.19248862037258],[6.161089737099037,51.19286945693301],[6.165065339892408,51.194373407970524],[6.165170493874894,51.194414116891856],[6.169399693904401,51.192224468741436],[6.172236842508361,51.190755208474606],[6.173545965007518,51.19007720522157],[6.173941981820327,51.18987207118805],[6.175845875982551,51.18888583861805],[6.178924427958322,51.187290814005806],[6.180724338681041,51.18635849660379],[6.180598860727067,51.186321751953706],[6.180205420622807,51.18620652743967],[6.180127917438407,51.18618382846408],[6.179737398038827,51.1860694543897],[6.177254646487213,51.18534227875607],[6.175786854441846,51.184912286281495],[6.174379868662655,51.18450007540736],[6.174196094424405,51.184446234988954],[6.173846988265496,51.184331300034415],[6.173054795781748,51.184070492888374],[6.170868221812995,51.183350571659716],[6.170307493586585,51.18316596735833],[6.169143217133374,51.182782638319786],[6.167711379081385,51.18231119526778],[6.166082467281332,51.18180749968911],[6.165793001357246,51.18171798459999],[6.163839333746503,51.18111381390627],[6.163448115360794,51.180992864032156],[6.162227747586762,51.18061556704695],[6.159467054346604,51.179762087447244],[6.158792085577527,51.179553404329624],[6.158175027837946,51.17936249103386],[6.156252710489137,51.17876770284744],[6.155907102044492,51.178660763459874],[6.155335260152586,51.1784826600996],[6.155020710909173,51.17838469061355],[6.15249950591349,51.177599371870336],[6.151882824491055,51.177407272303476],[6.151029113456082,51.17714132753596],[6.14729393768339,51.17597988433741],[6.146968961189938,51.17587882423019],[6.146023609690101,51.17558493778702],[6.145091695549465,51.17529521687519],[6.144523997265119,51.175118714601886],[6.143191192003859,51.174704323603294],[6.138801761368263,51.17333922585924],[6.139698706230254,51.17299228233485],[6.141981070790934,51.1721093964965],[6.14501834096519,51.170852018485],[6.14589073365547,51.170490840267895],[6.146071660947866,51.17041593867728],[6.146263707235615,51.170336424640475],[6.146547081903323,51.17021909835614],[6.14663507344155,51.17018266552911],[6.147116170270915,51.16998348453442],[6.147345519415877,51.169888524053526],[6.147433935766025,51.16985191704228],[6.14753240632982,51.169811145115084],[6.14764727905053,51.16976358681223],[6.147744400111215,51.16972337187443],[6.147938343572045,51.1696430695565],[6.148042877189458,51.16959979446639],[6.148261358868726,51.16950933497644],[6.14847347763662,51.16942150563871],[6.148710674356648,51.169323299868125],[6.148832730188579,51.169272762837714],[6.14893882402337,51.16922882948682],[6.149085432398665,51.16916812628671],[6.149207118673519,51.16911777106544],[6.149207132522684,51.16911774400722],[6.149347922380886,51.16905885848823],[6.149626689677647,51.16894227397878],[6.149774052867714,51.16888063906766],[6.149910780208618,51.168823451506356],[6.150043261645159,51.16876804454514],[6.150785478231505,51.16845761860748],[6.150863801504348,51.1684248597289],[6.15110493314511,51.16832400731812],[6.151258596755391,51.168259731214356],[6.151436284911002,51.168185408808306],[6.15190858861455,51.167987865689405],[6.151975863480934,51.167959727285265],[6.152386298587325,51.16778809167125],[6.15256689419552,51.16771257079059],[6.152741681758314,51.167639470022785],[6.152970395695821,51.1675438193414],[6.153089267537882,51.16749410780686],[6.154136200468309,51.1670562793532],[6.154211679263456,51.16702470556234],[6.154315895669333,51.16698112123658],[6.154466327613394,51.166918210558975],[6.155680402342991,51.16641045211631],[6.156027281950999,51.166269274624916],[6.156160753394037,51.16621495073765],[6.158251666659572,51.165363977068694],[6.159218257154948,51.16497058351243],[6.161954596890813,51.163856849298504],[6.164264649827036,51.16291652553033],[6.166599704613833,51.161966459116485],[6.173346078413111,51.15928573452617],[6.173417440835756,51.1592573761297],[6.173606566344062,51.159182213927444],[6.175421882678028,51.15846399048101],[6.173695959065177,51.15725685415546],[6.173380143912863,51.157078751288886],[6.17011344850057,51.15523639175134],[6.168926809972655,51.154820997301194],[6.167397549979056,51.154285631963575],[6.167275240608462,51.154242811370835],[6.166656383857861,51.15395235691069],[6.164461216728819,51.152890531736816],[6.162848521915134,51.15267119289882],[6.162911851329762,51.15228759023157],[6.162977979869773,51.15188698835545],[6.163229285611952,51.15036464496015],[6.1632433403836,51.15027951385593],[6.163454688947065,51.14875922571771],[6.163456915465853,51.14874213148413],[6.163378371039121,51.14874237786149],[6.163330328152286,51.148749539712966],[6.163317554679105,51.14875144089307],[6.163116108686566,51.14875985259331],[6.162927854099452,51.148775034527354],[6.162870884897823,51.148768178840704],[6.162839488501381,51.148780209268715],[6.162747037818749,51.14880499854207],[6.162684546933987,51.14882070640351],[6.162602378573459,51.14882894981584],[6.162460230211125,51.14881114761295],[6.162400964118261,51.14885873621473],[6.162358720298222,51.148884340600915],[6.162313636699231,51.14888479436283],[6.162232323929921,51.148899710725075],[6.162161592145775,51.14891661492601],[6.162014233879067,51.14892887064055],[6.161986133705281,51.14897535215532],[6.161912882667212,51.149016615576585],[6.16178567765445,51.14903999992177],[6.161649987905029,51.14906960725815],[6.161620742594383,51.14907362268251],[6.161532097478712,51.149078366811736],[6.161444558866768,51.14907668525712],[6.161437807255482,51.14906362412334],[6.161227706444612,51.149142052638986],[6.160976312274816,51.14921777154844],[6.160986858506551,51.14930338564976],[6.160963247213751,51.14932540454615],[6.160863141101844,51.14936674736176],[6.160833391765236,51.14939940530913],[6.160769776605246,51.14940190560447],[6.160707874558759,51.14939325692308],[6.160701796732977,51.14939643461461],[6.160683023626344,51.14940702300988],[6.16063523758377,51.14941846984492],[6.160585419433867,51.14944079805076],[6.160569412627222,51.14943318299634],[6.160545580033101,51.14943188548095],[6.160542787212199,51.14942135084377],[6.160563124148147,51.14939668407008],[6.16057765465767,51.14938028101695],[6.160615518242473,51.14936012690435],[6.160632629813335,51.14924321718414],[6.16048150174949,51.14926933931422],[6.160113362359083,51.1492054505134],[6.160075147926732,51.14924128383661],[6.160031795591711,51.14925121770737],[6.159992845911374,51.14927138784618],[6.159962422989216,51.1492725341678],[6.159898438349907,51.14923606857548],[6.159924154221127,51.14918535158525],[6.159975719919666,51.149088492161525],[6.159788938609375,51.149105582865516],[6.159768395468329,51.149086563712835],[6.15974520257562,51.149065503675025],[6.159695743839946,51.149057364953805],[6.159652746822252,51.14904932705331],[6.159570624039472,51.14906798641221],[6.159540556053125,51.14909193568003],[6.159452300430539,51.14909265749009],[6.159309985235633,51.149100615382444],[6.159212956804435,51.14912359848726],[6.159099892122708,51.149087018284206],[6.159039676162059,51.14910977450862],[6.158953710853507,51.14910305569711],[6.15895155671319,51.149102440774904],[6.158879309114898,51.14908194928636],[6.158833677205713,51.14901318906179],[6.158770929598001,51.14894989107859],[6.158752263387101,51.14890389189581],[6.158777956735787,51.14882113806484],[6.158653236929983,51.14884023262584],[6.158583279533476,51.148849704478515],[6.158582425777817,51.1488720571194],[6.158593858199028,51.148892413458874],[6.158606240423434,51.14892081774521],[6.158608859268813,51.14893293566904],[6.158587190889017,51.14894815438022],[6.158579156458179,51.14896588936532],[6.158549221465361,51.148973953703894],[6.158516750784279,51.148977405477574],[6.158505722138277,51.148979393417804],[6.158458658264471,51.14896150303945],[6.158397459665591,51.14891722454995],[6.158329425251046,51.14893483661548],[6.158189545448363,51.14898399210835],[6.158033700606825,51.149005009577174],[6.157890916282693,51.14896285446621],[6.157812923178335,51.14892868304379],[6.157690765641783,51.14884665886296],[6.157496011926923,51.148965312977985],[6.157389689024255,51.14893094266597],[6.157334942796307,51.148871653930165],[6.157347222239675,51.148853908857134],[6.157362719693015,51.14882522065163],[6.15737931885903,51.14881706528912],[6.157463092418558,51.14878005871458],[6.15751866467543,51.14875309124726],[6.157517561240768,51.1487103013386],[6.157440025729285,51.14866331712891],[6.157345527317799,51.14865222209401],[6.15729947553233,51.14865543999333],[6.157261406154387,51.14864717077036],[6.157235534598456,51.14862907643459],[6.157211034768114,51.1486160788204],[6.15716458495174,51.14857082095111],[6.15704730738134,51.14850440482284],[6.157084722994176,51.14861949622917],[6.157095895792436,51.148651693112576],[6.157086004729624,51.14866868521538],[6.156984754620008,51.148687083026736],[6.156905269484642,51.14865762220346],[6.156763091327923,51.148603748867096],[6.156713590826748,51.14858196366521],[6.156646435279595,51.14857440835873],[6.156595364138242,51.148575744555174],[6.156526162346251,51.14856377109879],[6.156483643387916,51.14854666782429],[6.156461903400158,51.148524357014075],[6.15645498729384,51.1485039435828],[6.156365481926461,51.14838899028219],[6.156318772198609,51.14836655718917],[6.156287465791694,51.1483524628465],[6.156230942125574,51.14831407609794],[6.15616339952528,51.148297884528674],[6.15607132494503,51.148320535563144],[6.156076251718493,51.14837751196979],[6.156115408895385,51.1484115192294],[6.156152973077199,51.14842719921053],[6.156159241471175,51.14844990917522],[6.156147798398835,51.148486903287925],[6.156124775750437,51.14850407215601],[6.156113376320268,51.1485069612369],[6.156080135763323,51.14851137027519],[6.156048358372623,51.14851354031304],[6.156014230598052,51.14850763569176],[6.155909595355331,51.14847491584858],[6.155816157999806,51.14843323154706],[6.155710058063064,51.14838043052758],[6.155651251916637,51.148375588038874],[6.155643902615973,51.14836257547714],[6.155597648735038,51.14830670852583],[6.155538071887704,51.14826005367429],[6.155488562669885,51.14832399728975],[6.155488293316866,51.14834634603465],[6.155447428808201,51.148370878049164],[6.155427325505042,51.1483899960818],[6.155367324980818,51.14842056052191],[6.155305554803074,51.14844016990526],[6.155286497673119,51.14843553172723],[6.155265969975023,51.14843269210881],[6.155261205315046,51.14839389959793],[6.155244249852738,51.14836622636521],[6.155215361876809,51.14833178234038],[6.155155456754923,51.148307359568825],[6.155145254139732,51.14829891434331],[6.155098047089491,51.148227879858695],[6.155140773584311,51.14817964931177],[6.155205234292819,51.14816626067167],[6.155272631710091,51.14816952739572],[6.155343480298003,51.14817234876189],[6.155392515852459,51.1481330655094],[6.155264850433465,51.148087076684725],[6.155213361216828,51.14809415010222],[6.155141136994901,51.1480911040377],[6.155117920246336,51.14807016909296],[6.155067486918339,51.14806602602551],[6.154905810507454,51.14804842463599],[6.154848330698331,51.148043384202516],[6.15482464570426,51.148033760612904],[6.154773198428551,51.14802452728778],[6.154765761680904,51.14800797353511],[6.154777349354416,51.14798983778829],[6.154801990792748,51.147943803400274],[6.15475118458729,51.14788397504033],[6.154673996569547,51.14795163398729],[6.154634464955519,51.14799350591419],[6.154588174755146,51.14803632140518],[6.154558730101275,51.14808572245306],[6.154510272545825,51.1481673492913],[6.15450438097375,51.148203084031444],[6.154487391925386,51.148197326395156],[6.154447190692127,51.148158911831814],[6.154415053664557,51.148130125259335],[6.154382486049797,51.14808753422963],[6.154312437653209,51.14804617960976],[6.154276081253656,51.14802231994599],[6.154161685252753,51.14796894308874],[6.154049019411763,51.147989229545935],[6.154095982606374,51.14803378410291],[6.154113370530482,51.148060016383816],[6.15412754024559,51.148069828811515],[6.154129856070496,51.1480792790627],[6.154133789363113,51.148093159257684],[6.154118046801428,51.1481132640311],[6.154090247375875,51.14813711599312],[6.153997093642374,51.14823043600229],[6.153962403357436,51.14822333894142],[6.153895883637292,51.14816476457843],[6.15384574419617,51.148155108707755],[6.153711815261142,51.14813707076184],[6.1536815720914,51.14818578469136],[6.153715614584685,51.148208023794446],[6.153658947355535,51.148243122829626],[6.153578295342388,51.148252338649634],[6.15353102022261,51.1482147704915],[6.15348388273795,51.14820344065456],[6.153418977240044,51.148182483835114],[6.153272296245579,51.14809393795055],[6.153271584119835,51.14818321362186],[6.1532646576372,51.148222937303494],[6.153229738909242,51.148256984743796],[6.153179199650761,51.14829448815802],[6.153110873285011,51.14828950942394],[6.153042184832144,51.14827566976352],[6.153025302656617,51.14823859310807],[6.152919688575961,51.1482224350017],[6.152848744964142,51.14821990942491],[6.152793068643579,51.148177299531625],[6.152724718067948,51.14812025573761],[6.152634260858507,51.148089093485126],[6.152537531930525,51.148079510435295],[6.152469886667504,51.148083650795115],[6.152399513534716,51.14803127650651],[6.152438494816314,51.14799399342847],[6.15250404255403,51.14796089497162],[6.152519896157734,51.14793712212644],[6.15252085560017,51.1479046381064],[6.152409552350616,51.14793211427631],[6.152333724061505,51.14793575115747],[6.152288144959242,51.147907259325535],[6.152211359587985,51.147901481833784],[6.152130272194647,51.147904272296344],[6.1519818250889,51.147907740086254],[6.151857138181008,51.147931402593926],[6.151817094947633,51.14797531744995],[6.151796736632212,51.14800495379896],[6.151760830587294,51.14802181110636],[6.151691782304619,51.14804727345661],[6.151664663246526,51.1480708596687],[6.151645804328891,51.14809441846274],[6.151623363604775,51.148093397609536],[6.151578416499275,51.148070231888525],[6.151569446230743,51.14803703119038],[6.151539596202211,51.1480201753176],[6.151518474597688,51.148014255679634],[6.151451854239908,51.14800698150618],[6.151349237153495,51.14798534585516],[6.151263669048791,51.148026368960444],[6.151127515259001,51.14809188756515],[6.150944692807412,51.14818199258465],[6.150805020403651,51.14821730353901],[6.15070764791132,51.14829539408498],[6.15065828731635,51.14834632737698],[6.150634530791097,51.148402872318094],[6.15069054082685,51.148436429000164],[6.150732590502646,51.14845982985497],[6.150757134601967,51.14851773817951],[6.15074439727032,51.148563972076786],[6.150665254599016,51.148584097724594],[6.150517536769613,51.14854902248117],[6.150445043611303,51.148579702439534],[6.150351113885226,51.14855712786759],[6.150197081007449,51.14844901217974],[6.150113129986308,51.14838098578432],[6.150046501628053,51.14832849558549],[6.149988425824256,51.14831337087115],[6.149909654181794,51.148318823324686],[6.149811867046394,51.14840131151446],[6.149770844347906,51.14846815434029],[6.149734331826717,51.14849761774385],[6.149685419913878,51.14851194397724],[6.149605735934055,51.14854942145547],[6.149542932466058,51.14858356995159],[6.149501856922567,51.14858611385946],[6.149416394364583,51.1485492531728],[6.149376609475716,51.148538277919016],[6.149238780799092,51.14853151479148],[6.149142049002917,51.14854158813388],[6.149088389630543,51.14856783787001],[6.149075290252738,51.1485966530404],[6.149057477914849,51.14864635388582],[6.149022312970163,51.14869419995755],[6.148919433856928,51.14871970281378],[6.148879488018165,51.14870850371746],[6.148806113863421,51.14868698861596],[6.148744664990425,51.148633061401476],[6.148742390857636,51.14861312946262],[6.148732968268916,51.14851028383313],[6.148672914648643,51.14848532834848],[6.14863238458799,51.14846904515862],[6.148641344287698,51.148363777767834],[6.148507800639736,51.14842236353214],[6.148474387964402,51.14844488459176],[6.148452270917191,51.14847461277593],[6.148479107336451,51.14854165746302],[6.148536235984973,51.148563459066686],[6.148532198116064,51.1485793872907],[6.148491835771068,51.14858874890562],[6.148379303608045,51.148613029125464],[6.148317177016599,51.148603557317585],[6.148188513530079,51.14857892542663],[6.148124060802519,51.14856189093395],[6.148080171278257,51.1485343302455],[6.148018099310511,51.14849190381544],[6.147990042972854,51.148479736591156],[6.147950067200458,51.14846929245906],[6.147908659576071,51.14846645349786],[6.147838527942327,51.14848621255199],[6.147825233763678,51.148537834244884],[6.147798957173607,51.148566690637296],[6.147748955463602,51.148595513647585],[6.147680348138581,51.14861930772393],[6.147656005814881,51.148627746119466],[6.147624423351904,51.14861495468279],[6.147609819231636,51.14857623531107],[6.147550609152955,51.14854694995921],[6.14753236484872,51.148504164365775],[6.147476343299815,51.14841969188685],[6.14741480654905,51.14844065288666],[6.147313030349435,51.148441274211336],[6.147203543149798,51.14840946823663],[6.147129914722115,51.14843298023206],[6.147087842807284,51.14842367316187],[6.147037314189939,51.14842152281641],[6.146929932982911,51.14842111976669],[6.146819837413934,51.14841300373409],[6.146730706399449,51.148407384281704],[6.146680342407526,51.14838579823463],[6.146630052393354,51.14836090368726],[6.14657581119975,51.14833041676006],[6.146490252314321,51.1482936084974],[6.146427679905811,51.1483167780785],[6.146387295368669,51.14834210377662],[6.146333580513504,51.148371130233656],[6.146279125745306,51.148384790113965],[6.146265276922917,51.148354515410084],[6.146258770198146,51.14833178851325],[6.14626133150739,51.14831381151629],[6.146294153479158,51.14825461936559],[6.146309422684045,51.148174525401984],[6.14622905245225,51.14811264834054],[6.146150920673733,51.14809455156699],[6.146056790330631,51.148105495260246],[6.146023556473324,51.14811813540362],[6.146002515294828,51.148109256820845],[6.145959380756876,51.14809355603763],[6.14590534351882,51.14807277571288],[6.145868028776032,51.148036487751355],[6.145836689512822,51.14801500176856],[6.145843450170657,51.14799427364356],[6.145918228675142,51.147989344440155],[6.145985297048835,51.14798745894698],[6.146031980082448,51.14797832657092],[6.146041550567293,51.14795120678849],[6.146044918773183,51.14790420765707],[6.14599874829553,51.147910621976315],[6.145835508217093,51.14775048677717],[6.145739026510653,51.1477600702433],[6.145653515736342,51.14785937424584],[6.145599524222962,51.14786038309798],[6.145577677811687,51.147842538561],[6.145451005194134,51.147873362481896],[6.145388955748623,51.14792042115742],[6.145323919689638,51.1479571168704],[6.145251771871277,51.14799501857012],[6.145068377672403,51.148026014590656],[6.145048146603872,51.148010784233406],[6.145053412848568,51.14797308547095],[6.145065484279219,51.14794765738076],[6.145082291634597,51.14794421272156],[6.14511830273946,51.14792578370873],[6.145156108366995,51.1479009157536],[6.145193902700115,51.14787016897839],[6.145218636459655,51.14784127830662],[6.145262967165062,51.14783422909217],[6.145299843761268,51.147827552134814],[6.145333069203639,51.14781353691872],[6.145359300338138,51.14778445665775],[6.145361323050943,51.14776759784882],[6.145367828892024,51.14774960410703],[6.145407600680958,51.14772351868956],[6.145416235621323,51.14770723695276],[6.145441817187743,51.14769162660906],[6.14545059673238,51.14767111904112],[6.145458919942999,51.14765759899508],[6.145470261795503,51.14763820732198],[6.145435868249161,51.14759702804785],[6.145418502983425,51.14759263789323],[6.145420785127173,51.14758630364323],[6.145307967071409,51.147529123394996],[6.145260698125751,51.14753131072047],[6.145229700650625,51.14751750803876],[6.145230889329658,51.14750380086721],[6.14521745685655,51.147459725032334],[6.145197262701577,51.147423334083484],[6.145190620907131,51.14741490070435],[6.145176969782713,51.147413003221054],[6.145110075121845,51.1474063115013],[6.145039591837131,51.147375273673255],[6.14496210896076,51.14733056409179],[6.144940362323235,51.14728148161103],[6.14490203440128,51.14722527108855],[6.144875861874471,51.147189449453855],[6.144848522009692,51.147167766318965],[6.144825268992743,51.14714085181481],[6.144777250090095,51.14713827061841],[6.144739656345035,51.1471386956667],[6.144680710366584,51.14715380438281],[6.144674122419942,51.14720756630904],[6.144660899603719,51.147236840221595],[6.14463972526243,51.14727098416688],[6.144629445129601,51.14727937514485],[6.144616387071441,51.147290040509816],[6.144529910758232,51.14728059067838],[6.144479791255806,51.14723121673877],[6.144497850553169,51.14721790293955],[6.144491882892222,51.1471844663966],[6.144450230344483,51.147161483199845],[6.144375111245544,51.147155213247636],[6.144297315839629,51.14718166309545],[6.1442604787267,51.14719244750414],[6.144210301551954,51.14720286042601],[6.144012708211338,51.147228032522705],[6.144107723570555,51.147251800670624],[6.144112585113747,51.14725541856098],[6.144109170208066,51.14726847503691],[6.144100312600436,51.14727300036488],[6.144067517871219,51.14729494081985],[6.143978690248739,51.14729370397675],[6.143878863016001,51.1471469959985],[6.143782329408997,51.1471880850261],[6.143740467993778,51.147206201166625],[6.143682125416371,51.147172926031246],[6.143681801377686,51.14710291193354],[6.143616358607654,51.14714876924667],[6.143580199414338,51.14716080749872],[6.143513928159023,51.14718152759864],[6.14346001952671,51.14719794226073],[6.143394832914862,51.14720468614525],[6.143353860970741,51.14720565411329],[6.143280948974352,51.14717631200463],[6.143282353152694,51.147127905473674],[6.143218942261329,51.14710186338924],[6.143061757008264,51.147074436150604],[6.142854242518489,51.14704383048585],[6.14280729887787,51.14705013171142],[6.142799241969225,51.14702340557173],[6.142661590452104,51.14698275354328],[6.142472893550973,51.146893613513875],[6.142380984402283,51.14688917739369],[6.142304319391418,51.14688097451105],[6.142197019067435,51.14685570268986],[6.14207880215207,51.146829674741795],[6.14202229659251,51.146768934087476],[6.141913782209047,51.146713232763595],[6.141756476334653,51.14664352875615],[6.141675532139436,51.14665754738644],[6.141645469634799,51.14665445270209],[6.141551700900004,51.14661245352151],[6.141494147969464,51.14660101570966],[6.141289924221647,51.146613974090826],[6.141245299257561,51.14655778529993],[6.141191594212161,51.146551778741724],[6.141101795299219,51.14656180038013],[6.140957263569746,51.14657895504678],[6.140886525349893,51.146565229399975],[6.140724867898415,51.146531562630244],[6.140590561475671,51.1465439222108],[6.140392384153928,51.146495066610434],[6.140390705586317,51.14645893228243],[6.140488430747131,51.14639977922537],[6.140383621043472,51.146382462921956],[6.140293758557772,51.14636593051433],[6.140140525920979,51.146308225346424],[6.140056662409932,51.146272291311256],[6.139873684076563,51.14624472138093],[6.139772694806638,51.14623289008901],[6.139716778088739,51.1462270589898],[6.13969188506348,51.146203632887335],[6.139651795346863,51.14617465110817],[6.139577659254453,51.14615060022132],[6.139508078873431,51.14614380583055],[6.139400750878296,51.14614457307226],[6.13945046337951,51.14619131800238],[6.139455980073116,51.14621926536312],[6.139489845157642,51.1462390377433],[6.13949182914024,51.14626419439869],[6.13948853767605,51.14627351945287],[6.139463041112074,51.14628479517827],[6.139456464304963,51.14628723787909],[6.139453858010357,51.14628604123417],[6.139411211066483,51.146269328096864],[6.139352875129044,51.14627198023649],[6.139192824323018,51.14629791671521],[6.139113590427211,51.14630554920376],[6.139028900737687,51.146309899982185],[6.138934514604212,51.146312075186046],[6.138837073391989,51.146315321815166],[6.138761942334448,51.14630731342108],[6.138726624967091,51.14628785585918],[6.138715547104868,51.14627374274216],[6.138705591549069,51.1462487365486],[6.138701670562722,51.146216967444204],[6.138680007071409,51.1461934932581],[6.138606706167809,51.14622134845681],[6.138558240886103,51.146243820232186],[6.138521559936074,51.14625807160392],[6.138479529380532,51.146258927846986],[6.138416147598281,51.146232676219526],[6.138288520552063,51.1462234969655],[6.138252339643895,51.14624910725166],[6.138211013360072,51.14625807600797],[6.138127238243168,51.146281656907455],[6.138090551281784,51.14629817343671],[6.138076067757626,51.146295147876685],[6.138015173894744,51.146281204011345],[6.137932503162209,51.14625081600664],[6.137867882850397,51.14622308888605],[6.137733920464592,51.14616377277401],[6.137660517613353,51.146130304331436],[6.137565497214351,51.14611812691661],[6.137537399428235,51.146103161840585],[6.137494592648191,51.14608098365806],[6.137454342814487,51.14603948033316],[6.137445926623711,51.14603080628805],[6.137418234418673,51.14598728915382],[6.137341830154917,51.14597215071844],[6.137285112429099,51.14596536179141],[6.137236733847062,51.14597828602037],[6.137217015565533,51.145955733867325],[6.137162518391172,51.145909881850116],[6.137107704805108,51.14588316067408],[6.136947553947866,51.14581539224029],[6.136885492884378,51.14575963799175],[6.136771979353834,51.145699190961224],[6.136707520762176,51.145677781500275],[6.136639292186589,51.14567931856223],[6.136631483097091,51.14570784645891],[6.136613869331312,51.1457214168364],[6.136584953626716,51.145727239629],[6.136562124891752,51.14573738284859],[6.136532541555058,51.145735569194976],[6.136522270636163,51.1457340803614],[6.136521679661294,51.145724133232626],[6.136529555712348,51.145650641393466],[6.136573506577474,51.14563086936632],[6.136542961008331,51.14554903189715],[6.136402261126564,51.145514504759184],[6.136259711156102,51.145487450346245],[6.136236142733972,51.145543379799584],[6.136281222040246,51.14555512540469],[6.136346125893329,51.1457169151248],[6.136310480916159,51.145728983749116],[6.136150708391787,51.14571938029865],[6.136137448872669,51.1457151510519],[6.1360446124905,51.145691344384296],[6.135971097457634,51.14564648640674],[6.135956006640575,51.14561407011852],[6.13596390172413,51.14558553272542],[6.135982028386488,51.14555782826252],[6.135963711833184,51.1455274103808],[6.135928643653089,51.14551524053488],[6.135873628375122,51.14551728522583],[6.13578860571627,51.14555725962592],[6.135692373550336,51.14551796836152],[6.135635938220616,51.14549688413171],[6.135555416442098,51.14549383444927],[6.135445812723808,51.14548727759825],[6.135374181715067,51.14549048085018],[6.135322367999628,51.14549254959632],[6.135220617247664,51.145464493926795],[6.135175033521136,51.14544807682538],[6.135065738724204,51.145442928916125],[6.135012744685789,51.14543130572794],[6.1349528793639,51.14536013797787],[6.134902469779092,51.14530710326037],[6.134871970436452,51.145281473951314],[6.134785615533284,51.145246630871085],[6.134748851959841,51.145204888437384],[6.134727006010324,51.14517707296082],[6.1346770210275,51.145150984754906],[6.134587851226691,51.145106478382615],[6.134554682903093,51.14509772973454],[6.134533240798324,51.14510087909417],[6.13450219034041,51.14514765149883],[6.134510515164261,51.145226306534894],[6.134491777823261,51.145293827446835],[6.134479719724138,51.145322148822665],[6.134448369029095,51.14532587431438],[6.134380997998111,51.14531420852504],[6.134322623851999,51.14529775653742],[6.134299008283024,51.145292047590644],[6.134249315069053,51.145312017503386],[6.134187241391204,51.1453202823242],[6.13412012225935,51.14531707351203],[6.134083329631337,51.14532097773687],[6.134000603202315,51.14535370881152],[6.133937472875073,51.14537082557443],[6.133871293997206,51.14537183545103],[6.133837321862011,51.14534176960808],[6.133826689081273,51.14531096939007],[6.133839133834479,51.14527300028707],[6.133889466206291,51.14521321369072],[6.133883854489193,51.14519590979291],[6.133841973041844,51.14515576409148],[6.13378324470222,51.14510430154541],[6.133726307687979,51.14506632908987],[6.133683856784699,51.14505796348203],[6.133643530078044,51.14506247458056],[6.133610765018998,51.145084690540045],[6.133472239739219,51.14517940922502],[6.133406584551324,51.14519328787102],[6.133348738290187,51.145191708972874],[6.133257550192973,51.14516188477397],[6.133188282539383,51.145147794433946],[6.133158281195437,51.14514308811673],[6.133139956491284,51.14515428940753],[6.133134324842424,51.145180627708164],[6.133129020039921,51.14520333231033],[6.133113878395826,51.14521958300361],[6.133034508011894,51.14523019660836],[6.132996139427194,51.145232097052066],[6.132919148687866,51.145266057976954],[6.132844817428862,51.14528514278159],[6.132773710117888,51.145261607469514],[6.132721485639361,51.14523571258858],[6.13270086530045,51.14521553859517],[6.132707826231894,51.14518479610973],[6.132730730108594,51.14515811321498],[6.132727048605018,51.145138199018525],[6.132678974026869,51.145113517970216],[6.132614048888657,51.14507551535727],[6.132572456934668,51.145040805753226],[6.132490902057482,51.14500396154907],[6.132411656879023,51.14499849241756],[6.132346760156955,51.14500010445788],[6.132319226336425,51.14500566562497],[6.132278410400772,51.14503288586632],[6.132268464068264,51.145061085586825],[6.132305694066471,51.14509913128039],[6.132337136413873,51.145123964163794],[6.132328589129992,51.14515471680607],[6.132288793173422,51.14517610556525],[6.132234021281509,51.14518961706856],[6.132174547968907,51.145189045816295],[6.132117057409356,51.14518384141371],[6.132064066587239,51.145173232632715],[6.132042898860417,51.14514219420838],[6.1320521232086,51.14510823712359],[6.132049958635184,51.145096367413316],[6.132034336538069,51.14509270119152],[6.131994034007254,51.14509518901293],[6.131932269017431,51.145104870926424],[6.131901426974706,51.145121464864886],[6.131890080991711,51.145143560937875],[6.131914245598868,51.14516112347979],[6.131907339500271,51.145183820315495],[6.131885074946359,51.145210301185166],[6.131847470345384,51.14523553206348],[6.131800094512909,51.14524424069315],[6.131745071298369,51.14524931280789],[6.131694537315003,51.14525097620949],[6.131642633076548,51.145265089293964],[6.131598767223258,51.145275222583095],[6.131569060173151,51.14527191626923],[6.131557925287944,51.145263834534276],[6.13155615752872,51.14524734187222],[6.131562006516614,51.14523347913491],[6.131555926165545,51.14519425370864],[6.131536380107025,51.145159204646355],[6.13150626297897,51.14512793584384],[6.131472885177961,51.145102692655655],[6.131413367995674,51.145068529014964],[6.131387036899276,51.14504512834887],[6.131350711175782,51.14502933358947],[6.131308695171727,51.145046906881205],[6.131292005695749,51.1450540972482],[6.131168131609486,51.14507605136121],[6.131066298563643,51.14509565282031],[6.131027140312215,51.145115859486914],[6.130964437037946,51.1451629325758],[6.130939316035419,51.145187786552974],[6.130906887316322,51.14520438139953],[6.130863714713417,51.14520526018315],[6.130826959036038,51.145206160778436],[6.130753657581294,51.14521739914822],[6.130682895091484,51.14523187526961],[6.130634226965134,51.14524198500835],[6.130612496620556,51.14523970607002],[6.130583878013214,51.14522152455957],[6.130585005519888,51.145197588349035],[6.130585248322653,51.14516843513375],[6.130569188296366,51.14513681540892],[6.130522337056237,51.14511877757718],[6.130454115364626,51.14509684940586],[6.130363873910509,51.14506622584325],[6.130335479616638,51.14505748139467],[6.130302131230333,51.14506316918715],[6.130292596994456,51.14506479430814],[6.130251928283551,51.14507292003551],[6.130196289729645,51.14507617056661],[6.130165404290284,51.14505919002098],[6.130113479801426,51.14503671690326],[6.130081612781559,51.14502354500631],[6.130032712600455,51.145020181313434],[6.130002152137026,51.14500561671434],[6.129977085157406,51.14498080534495],[6.129975990730953,51.14495907669638],[6.129977427294148,51.1449365587941],[6.129991989807641,51.144914478291454],[6.130029677593757,51.144880204447865],[6.130065063174423,51.14485115001123],[6.130074871074624,51.14482403006304],[6.130072231751353,51.14479425706332],[6.130054894420117,51.14476403875225],[6.130029128063682,51.144745461316944],[6.129994339552557,51.14474073087624],[6.129963567186357,51.14474928759489],[6.129943955732965,51.14476491025931],[6.129927700089597,51.14479805818239],[6.129907594469738,51.14483438590435],[6.129873463974778,51.14486505929244],[6.12980905605574,51.144925194833725],[6.129780091525495,51.14494923715312],[6.129698173998082,51.14495965801699],[6.129633925691328,51.14495806427442],[6.129587566208095,51.14495892700531],[6.12952799383333,51.14497342975672],[6.129476741663681,51.14498635114148],[6.129458204363708,51.14498709888118],[6.129411877989173,51.14498293642217],[6.129364626022782,51.14497455498295],[6.129338394013475,51.14497668227315],[6.129256178104449,51.144983679883936],[6.129146600481638,51.14493347484165],[6.129053632360884,51.14488613897108],[6.128987749816991,51.14484793371297],[6.128962925657412,51.144834581680705],[6.128923997939488,51.14482662330731],[6.128865763170562,51.14483369217643],[6.128769659222233,51.14485854061682],[6.128656672553732,51.14487509197643],[6.128598414972455,51.14488518119472],[6.128549210253606,51.14488241210357],[6.128464890623214,51.14487150730753],[6.128396378687497,51.144883765337596],[6.128348909412996,51.14490352974896],[6.12829478913347,51.14491584867021],[6.128260615815095,51.14491292958233],[6.12823068996362,51.14489514237139],[6.128196974254909,51.144874520804656],[6.128167568055525,51.144834014803415],[6.128124377044183,51.14479828906875],[6.128087390064503,51.14478571561202],[6.128055751468262,51.14478400280847],[6.127961100518738,51.14482896790397],[6.127920980122171,51.14484895492908],[6.127907740145162,51.144863601733874],[6.127930362487699,51.14487513426024],[6.127971223992172,51.144882496337395],[6.128002769281756,51.14489525736442],[6.127995006150775,51.144905689304686],[6.127963835554992,51.14492591588476],[6.127908116110246,51.144939215650325],[6.127842861513833,51.144943452273864],[6.127795506038165,51.14494813202107],[6.127762142275431,51.14496351842076],[6.127684748202402,51.14500813051723],[6.127630784498813,51.145039936498904],[6.127585874347669,51.14505891121444],[6.12753689719005,51.145067610334856],[6.127462785998696,51.14506055896886],[6.127413672595933,51.14504572544141],[6.127357574866328,51.145024032786104],[6.127316725838811,51.145015672623245],[6.127287578198847,51.145022222693356],[6.127266284275488,51.145047905438766],[6.127240279594406,51.14506149190812],[6.127203921893661,51.14505072096863],[6.127198014634616,51.14502999379528],[6.127197947218799,51.144997417726366],[6.127212273044712,51.14496588255339],[6.127239398414531,51.1449313803006],[6.127280502686101,51.14490857365323],[6.12730079023914,51.14488873124543],[6.127297170988647,51.14486277581506],[6.127271101026462,51.14484480197742],[6.127212694552185,51.144832355774554],[6.127155851553487,51.144822928905455],[6.127093688870842,51.144802632128744],[6.127041192994912,51.14477030024353],[6.127006892522063,51.144740836785665],[6.126971933144768,51.14471660018285],[6.126938159980088,51.14470301708492],[6.126904954509355,51.14469628904384],[6.126887319827858,51.144704275837725],[6.126864158598719,51.144720495893615],[6.126852524465181,51.14473815268473],[6.126852956528206,51.144764101463494],[6.126842244197545,51.144783981678195],[6.126818786781685,51.14479778554366],[6.126802065180258,51.1448110071533],[6.126728992759115,51.14483471839283],[6.126663752343549,51.14483894527466],[6.12659223457736,51.14482606988066],[6.126556256150457,51.14480865338011],[6.126533967434044,51.14479651619369],[6.126507818654925,51.14478960826951],[6.126492691917274,51.144799817320205],[6.126480713901072,51.144820092090775],[6.12647534968348,51.144850850986266],[6.12645814656474,51.14488477750768],[6.126442848924126,51.14491811659255],[6.126450684426701,51.14497788017416],[6.126458588354954,51.14502857331831],[6.126447250245459,51.14504865523982],[6.126421895773795,51.145060035055856],[6.12638645135636,51.145054498691884],[6.12630147468617,51.145007181667644],[6.12626874361642,51.144983757667084],[6.126239037131524,51.14498044998874],[6.126220072867826,51.14499285879058],[6.126195220859651,51.14502215063371],[6.126171285549019,51.14505868185121],[6.126141985770127,51.14508332765773],[6.126101910248821,51.14509728207884],[6.12604401844264,51.145101731519276],[6.125960261303709,51.14510268693706],[6.125892755119269,51.145109121139704],[6.125839673810521,51.14511056448258],[6.125811245202796,51.14510585525518],[6.125769689992982,51.14506511131822],[6.125738662076617,51.14502760839628],[6.125695850224672,51.14498424760951],[6.125661339413659,51.14494432178426],[6.125648140164543,51.1449153170057],[6.125663334231384,51.1448950578254],[6.125684822513118,51.14488586014843],[6.125721282258616,51.144882562972725],[6.125814267275125,51.14489027744049],[6.125917751380779,51.144901259993894],[6.125952197458814,51.14490959846181],[6.125978785874246,51.144903856051506],[6.125993350156804,51.144881767058244],[6.126003717375335,51.144863507157325],[6.126021847867773,51.14483479747038],[6.126052302334094,51.144784210795144],[6.12607201056958,51.14475852937596],[6.126072848272152,51.14473419954305],[6.126046847635785,51.14470717296902],[6.126027770946942,51.144693037645546],[6.126006741112152,51.144684523944484],[6.125975650967441,51.14469469067409],[6.125927601210911,51.144708623860254],[6.125885925271817,51.14472257041197],[6.125837075427,51.144715186507874],[6.125767975333792,51.14468199784299],[6.125727431433717,51.14467302392412],[6.12569638717886,51.14467715860153],[6.125670088208216,51.144689344290626],[6.125649716894666,51.14471823896611],[6.12563669279148,51.144746358795146],[6.125619001408054,51.144762390999325],[6.125593669939076,51.1447707591401],[6.125556992133541,51.14475959420296],[6.125554036623342,51.14473041640452],[6.12555282844867,51.144680139069216],[6.125565521213099,51.144653630405365],[6.125591688687829,51.144619925673865],[6.125610753495628,51.14459243262747],[6.125618587866636,51.14457395515222],[6.125601110146785,51.14455882078989],[6.12549885492305,51.14451487610834],[6.125481874989422,51.144480025469775],[6.125494941451084,51.14444386913448],[6.125503755815414,51.14442056727883],[6.125494662359855,51.14439982432555],[6.125455046023093,51.14439608505944],[6.125390787978454,51.14439649360451],[6.125309352193425,51.14438619742704],[6.125239164797501,51.14436889011097],[6.125167454526818,51.144339511083345],[6.125119007570617,51.14432247901619],[6.125082283924538,51.14431732792924],[6.125049593157406,51.14432748660489],[6.125004358652194,51.14438768638656],[6.124965634065746,51.14439320005846],[6.124781564902222,51.14442481555302],[6.124754275088096,51.144479435871304],[6.124761439900947,51.144503795760556],[6.124801201697045,51.14452905424016],[6.12487488640137,51.14454878463703],[6.124906086798066,51.144564164519224],[6.124922176217621,51.14459075092777],[6.124921717367994,51.14460845337737],[6.124908492522593,51.14462409753018],[6.124886989629077,51.144633277178066],[6.124845811727641,51.144627525077425],[6.124816082616019,51.14462723751717],[6.124744570863628,51.144652960137705],[6.124685580558147,51.1446753041855],[6.12463782457373,51.144690646258915],[6.124582740690414,51.14470173806067],[6.124539593414702,51.144700609765295],[6.12448246954716,51.144688774296185],[6.124444182561326,51.1446806125965],[6.124353195537875,51.14470386078065],[6.124328064516813,51.14468910741277],[6.12428077499604,51.14464713189112],[6.124253731208904,51.144628947825304],[6.124221547298433,51.14461638759906],[6.124196581364974,51.14458252233384],[6.124184317259105,51.144554733974786],[6.124190929086733,51.14452860564696],[6.124224981716053,51.1445080022277],[6.124272712650412,51.14449466505155],[6.124342790229671,51.14448643562159],[6.124492784511978,51.14447844481158],[6.124516798793274,51.144473483154336],[6.124531078479115,51.1444469825069],[6.124550158284466,51.1444194985309],[6.12456823272292,51.14439882568333],[6.124611530684217,51.14438086915499],[6.124634417627288,51.144358206109764],[6.124618601353106,51.1443370473427],[6.124582242968409,51.14432526881291],[6.12453520878604,51.144330358690155],[6.124487748969913,51.14434810790077],[6.124416310436168,51.144366800380986],[6.124343994413337,51.144376230628076],[6.124291897720897,51.14437486241763],[6.124253538324067,51.144373748568576],[6.124211242330745,51.14434727448265],[6.12420405669636,51.14432694180866],[6.124216381296287,51.14430505602812],[6.124269979386775,51.14427887214605],[6.1242927813208,51.14426426393978],[6.12429679814483,51.14424296124602],[6.124278787556525,51.1442159554718],[6.124257978216779,51.144179286202764],[6.124211765386659,51.14412243585302],[6.124181024941545,51.144089371312134],[6.124173791213959,51.14407405485816],[6.124176184422271,51.144055764832615],[6.124184781391175,51.144017983023105],[6.124165278886925,51.14397992112219],[6.124155055326631,51.14393946315957],[6.12415309343888,51.143904463076524],[6.124168117564297,51.14386468085148],[6.124191713872817,51.14383279057648],[6.124224863591378,51.14380492969495],[6.124232115262791,51.143778608531264],[6.124208948551918,51.143756210927],[6.124149770059185,51.14372044138511],[6.124077861543542,51.143678595071755],[6.12400409213171,51.143630306351184],[6.123947556889978,51.14358468586155],[6.123928183488399,51.14356712723434],[6.123895622664776,51.143562201056476],[6.123778833900313,51.14357593124586],[6.123724486930689,51.143576761410806],[6.123692757198113,51.14358712934781],[6.123681985122028,51.14361404810872],[6.12366949679585,51.14365603449245],[6.123633969578509,51.14370319190745],[6.123614829157722,51.14373671678996],[6.12361724812623,51.143753007670185],[6.123663620805868,51.143752147234025],[6.123721145811236,51.14375432626503],[6.123743372791361,51.14377249606195],[6.123722692411532,51.14379999005773],[6.123688889975573,51.14382905048472],[6.123653582824788,51.14384804366771],[6.12361242696935,51.14383826387806],[6.123539997019551,51.14381914497765],[6.123505184980016,51.143816426306],[6.123462015225419,51.14381830011493],[6.123426203195974,51.14381738558],[6.123388045259002,51.143793141223234],[6.123358847429462,51.14376711413926],[6.123328915306949,51.14375233706366],[6.123299246048802,51.14366477359621],[6.123284586252273,51.143581061182914],[6.123305869424455,51.14355639500978],[6.12335370413043,51.1434933927892],[6.123384311844639,51.14342370401855],[6.123397129821856,51.143379090759716],[6.123390985407624,51.14334790159528],[6.123363742982466,51.143317250708535],[6.123339809093528,51.143311146041455],[6.123305211479531,51.1433208938296],[6.123272747494374,51.143342511667505],[6.123226876386888,51.1433612750509],[6.123188165043605,51.1433657902594],[6.123121783587014,51.14335130709241],[6.123081717190917,51.14332564546691],[6.123054854560277,51.14328835814815],[6.123039901598506,51.143239839877715],[6.123032144509684,51.143209658705345],[6.123007025352206,51.14319289142381],[6.122970042603868,51.14318130512253],[6.122920141590187,51.14318578328007],[6.12287307086812,51.14319388406742],[6.122815336396408,51.143217846239445],[6.122744353434422,51.14326046378486],[6.122713573574987,51.143273036754735],[6.122630455865206,51.143271774417],[6.122616859923091,51.14325443966329],[6.12261538587699,51.143237342749195],[6.122630994106678,51.143205413498066],[6.122650974559492,51.14318416256445],[6.122652040362643,51.14317129241649],[6.122633594688157,51.143158977332064],[6.122578533589161,51.143129446318525],[6.122515187992051,51.14309746877612],[6.1224397937772,51.143050178162994],[6.122410766187993,51.14304365610561],[6.122383574445007,51.14304559014533],[6.122356337993165,51.14305455393501],[6.122338252289156,51.14307723107656],[6.122330406055392,51.143097712969904],[6.122310149382012,51.14311153161421],[6.122287759173229,51.143113471188144],[6.122255918991804,51.14309728564192],[6.122215958573375,51.14305855290403],[6.122189736772094,51.143021072561055],[6.122183154505471,51.14300354953399],[6.122194436920036,51.14299151362756],[6.122218488236301,51.14298354086151],[6.12224431662938,51.14299107202029],[6.12229476454463,51.14299845629696],[6.122327987890001,51.14300016961922],[6.122349467271128,51.142994001939925],[6.122381232629799,51.142979616017804],[6.122392242361391,51.14296215240433],[6.122409939812473,51.14286788854968],[6.12238681199877,51.142842478993884],[6.122346733987419,51.142817823970624],[6.12229041695896,51.14278567595875],[6.122234738159337,51.14275232832974],[6.122200647015059,51.14273834136968],[6.122164246064938,51.142733609811565],[6.122138950686939,51.14273794985766],[6.122119382164599,51.142746541448595],[6.122094266818479,51.14276839110447],[6.122076525053061,51.142788450201415],[6.122051858941394,51.1427946110321],[6.122023779590702,51.142789287416335],[6.121996467025365,51.14276668189873],[6.121999424518863,51.142716611895835],[6.122010780248049,51.14269754607004],[6.122035809930301,51.14268374221527],[6.122077814865555,51.14266717913248],[6.122105812371919,51.142645949463194],[6.122060282383198,51.142623486233525],[6.12199173345368,51.1426011596749],[6.121936519836075,51.14258972437666],[6.121890185875499,51.1425875725361],[6.121854911232786,51.142600542273605],[6.121830733181051,51.14262560403809],[6.121804255737854,51.142657898589356],[6.121772149916348,51.14267690690315],[6.121720919462403,51.142685797615044],[6.121680204853484,51.1426999523172],[6.121649093580865,51.14271413614998],[6.121622117371996,51.14272954330316],[6.121588263303154,51.142725011193235],[6.121584043429349,51.14269523903199],[6.121606929373846,51.14267157880227],[6.121624350342278,51.1426511083085],[6.121605265327714,51.14263899486689],[6.121563458677836,51.14263042301271],[6.121525706476083,51.14263412258406],[6.121430789909802,51.14267063428051],[6.121339429100206,51.142702529988426],[6.121304318614364,51.14269538092428],[6.121288491811082,51.1426752195684],[6.121293422355787,51.14265915184908],[6.121330984150495,51.14263995635688],[6.12137735230228,51.1426370922892],[6.12141549667196,51.14262574056602],[6.121428164485659,51.14260023929786],[6.12142800816451,51.14257972717044],[6.121368475902814,51.14250996170473],[6.121371780820143,51.142495899840085],[6.12140262283579,51.14247828394944],[6.121430534913015,51.14246510921352],[6.121453955011479,51.142454309031606],[6.121455008788733,51.14244245473968],[6.121436669078524,51.14241705966358],[6.1214042505094,51.142395034632564],[6.121386197637174,51.14237506714857],[6.121368852786938,51.14234485660512],[6.121357361313303,51.14230178160875],[6.121337114600464,51.142275976087994],[6.121304623021876,51.14226099894224],[6.121262818567085,51.14225343374629],[6.121223466058009,51.14225712535997],[6.121187530112676,51.14227431496158],[6.121154495925072,51.142287090541394],[6.121110616146846,51.142297210970774],[6.121063655050422,51.14229424475829],[6.121008159008062,51.14227940393925],[6.120975453999498,51.14225195118663],[6.120970994246806,51.14221071043536],[6.120977970865479,51.14213932888533],[6.12098310913053,51.142095106020356],[6.121006951756097,51.14203203166912],[6.121031285692895,51.14198988082121],[6.121065832092091,51.14194654178266],[6.12112572177994,51.14189383770484],[6.121175974109994,51.141846129532325],[6.121222681042152,51.141801014632776],[6.121241763389398,51.14177452897641],[6.121247380196119,51.141752227476644],[6.121236993484811,51.14173088111744],[6.121198745226374,51.14171869100099],[6.121143520513474,51.14170827116897],[6.121107179528997,51.14169650044272],[6.121080828537249,51.141674086396186],[6.121092430070642,51.141661455299],[6.121117300711702,51.14164934259589],[6.121132231662985,51.14164207491732],[6.121178017752881,51.14163235592441],[6.121206475985276,51.14163103440453],[6.121246380746987,51.14164852660083],[6.121272096510879,51.14165979814789],[6.121296050658791,51.141661875993435],[6.121316950403179,51.14164808042556],[6.121317586768115,51.14164766290356],[6.121319375206519,51.14162454962007],[6.121315151875112,51.14159275492505],[6.121312873252069,51.141558359074494],[6.121324035095295,51.14152179277233],[6.121346352279586,51.14149028870728],[6.121376347569401,51.14145638993302],[6.121417935303283,51.141412880414045],[6.121425530540691,51.14138294364088],[6.121431356259083,51.14133348475228],[6.121433807614753,51.1413071491782],[6.121457298744233,51.14128831229211],[6.121495877286858,51.141261280808585],[6.121509125652096,51.1412426255485],[6.121514908372952,51.14120121216782],[6.121519703701819,51.14116060506113],[6.121497846019706,51.14113679634853],[6.121490957920057,51.141118879698006],[6.121455111625638,51.14108439050865],[6.121410647810788,51.14104805011459],[6.121367490593775,51.14101030813202],[6.121332961555487,51.1409723947199],[6.121304476340265,51.14093712183481],[6.121281324985095,51.14091371678212],[6.121228482807597,51.14088600488901],[6.121146612875826,51.140850763827686],[6.12104404922097,51.14080640372676],[6.120996270524733,51.14078614764167],[6.120942374936274,51.14077029889413],[6.120856938765704,51.14074167816364],[6.120706179767696,51.14068671852624],[6.120585398576948,51.140641502291274],[6.120537430358798,51.14064336937894],[6.120506698265927,51.140649909784976],[6.120473498293443,51.140644177676215],[6.12041742186109,51.140621483780485],[6.120382764714353,51.1405996523901],[6.120334049186167,51.14057617486555],[6.12028973018014,51.14056136201575],[6.120203488349662,51.14055205447037],[6.120103203785757,51.14054208042181],[6.120047910779188,51.14054071252518],[6.12001908557077,51.140547654264346],[6.120002741919935,51.140553240767304],[6.119990393034141,51.14057814658673],[6.119991471584957,51.140601870989194],[6.119981126489347,51.1406171278513],[6.119958771425956,51.140614032866374],[6.119912878922981,51.14059821403609],[6.119866308791336,51.14058559958153],[6.11979356812073,51.14056808039208],[6.119762454827681,51.140542648797485],[6.119738591782775,51.14048888277091],[6.119719626529018,51.14046268235857],[6.119696703540414,51.140451743427356],[6.11958622364596,51.14043592742017],[6.119496169764144,51.14042679621209],[6.119450133808185,51.140427059594565],[6.11939999727033,51.140421074431075],[6.119372925419035,51.14040892110563],[6.119329732869016,51.140374198933614],[6.119274190321441,51.14032576534693],[6.119215861860718,51.1403042626462],[6.119165251161973,51.140278369528495],[6.119043306850973,51.1402389120534],[6.118995278114209,51.14021721847231],[6.118952527291595,51.14020840893508],[6.118914186067606,51.14020731120161],[6.118887645653973,51.14019890286693],[6.118839522145644,51.14017663451718],[6.118797563476407,51.14013411083017],[6.118766499999079,51.140107267370624],[6.11875276881941,51.140093852270915],[6.118720441348165,51.14007826211958],[6.118660973653484,51.14006594418482],[6.118573429462922,51.14003667886259],[6.118518183773227,51.14001849134857],[6.1184736831338,51.14000296881616],[6.118425409821618,51.13997036378267],[6.118381415758892,51.139938181234825],[6.118359804914262,51.139924357268846],[6.118307545744452,51.13991693775987],[6.118272497075676,51.13991440779463],[6.118230504675803,51.1399289918273],[6.118206794680805,51.13997542595242],[6.118186456182331,51.140004750579536],[6.118141827925663,51.14003598998626],[6.118085890639314,51.14007492331855],[6.118044169956185,51.14010660282732],[6.117979345004273,51.14012130352362],[6.117969115400451,51.14015823218031],[6.117965943896788,51.14018792513776],[6.117946876525223,51.140204648002076],[6.117914163805045,51.14021513741026],[6.117879765125425,51.140205870404294],[6.11783590714527,51.140183134330776],[6.117809130831725,51.140158978344466],[6.11778370470979,51.140127173127176],[6.117777767642189,51.140111452606384],[6.117747569518504,51.14009855450365],[6.117700475874521,51.14010147563144],[6.11763921561783,51.14011390643592],[6.117587427274755,51.14004172621712],[6.117569438563165,51.14003192441029],[6.117532110531447,51.14002084195488],[6.117498455024387,51.140017862526875],[6.117445667482103,51.140023947570626],[6.117404531857404,51.13999895592921],[6.117378577240729,51.13998332532587],[6.117390457858441,51.139965739855626],[6.117409560901906,51.13995125514273],[6.11747713606775,51.1399261910202],[6.117505612371803,51.13991707674617],[6.117542082632044,51.1399173507271],[6.117563414772642,51.13991006121885],[6.117566086582769,51.13989656077251],[6.117518263822078,51.13985090036843],[6.117483364786462,51.1398092307152],[6.11746379713961,51.139789982298495],[6.117460668050793,51.13977021698701],[6.117466861659384,51.13975353922023],[6.117437027993783,51.13971500185376],[6.117409851644262,51.13966384505937],[6.117395806332029,51.13962793207851],[6.117330366987622,51.1396030393264],[6.11727356532459,51.13963524487251],[6.117202439517671,51.13966614714565],[6.11718490806466,51.13969230776363],[6.117160282874179,51.13972256705923],[6.117129799225972,51.139743838132524],[6.117101730244297,51.13973091748879],[6.117093657587988,51.13966349611209],[6.117062759814772,51.13965419786859],[6.116961436151271,51.13967669625115],[6.116923487176975,51.139675972938974],[6.116883245327116,51.13961004816149],[6.116863156268873,51.13960653383308],[6.116801946225355,51.13963199806573],[6.116717225648583,51.13961305106453],[6.116703745185391,51.13956588011008],[6.116697523102854,51.13952767960769],[6.116674440924251,51.13951293869918],[6.116593935757272,51.13948678283924],[6.116530011464712,51.139470878201664],[6.116517566934586,51.13944844768876],[6.116513773872904,51.13943003488813],[6.116561481492695,51.13941092102744],[6.116591258019068,51.1393865083636],[6.116605153373042,51.13935361088252],[6.116610247579714,51.13930096572353],[6.116606290181378,51.139269501796754],[6.116568963245801,51.13926023482495],[6.116521805852468,51.139267191980906],[6.116467454469109,51.139271030144805],[6.116443701175453,51.13925990702154],[6.116407967819005,51.13920429122087],[6.116378742795209,51.13915360550188],[6.116357875630858,51.139143363144235],[6.11631989118875,51.139139475699174],[6.116296515909538,51.139158472618526],[6.116268189605922,51.13918603127129],[6.116236184541418,51.139203275561584],[6.116190484568465,51.13921203023891],[6.11611320132188,51.13921238062804],[6.116023914408697,51.13929284518852],[6.115990408921189,51.13930378848697],[6.115958104099692,51.13929583815833],[6.115933522278887,51.139275713062254],[6.115919163126372,51.13924966291113],[6.115918192068454,51.13924789815501],[6.115908470036161,51.13921150840981],[6.115894739715742,51.1392007807096],[6.115795367086195,51.13921022266008],[6.115766484738825,51.13918921661866],[6.115738938609248,51.139156956832316],[6.115710841911679,51.13914133930202],[6.115650633271073,51.13913262910902],[6.115590267612102,51.13911130817519],[6.115523379920506,51.13908057160023],[6.115504278566419,51.13903387623802],[6.115448377565285,51.139026478293665],[6.115409149859945,51.13904060349897],[6.115361384838517,51.13905700254048],[6.115326951565906,51.139049973284706],[6.115285924676935,51.13902810842281],[6.115251963636377,51.138995870772895],[6.115213943994759,51.13898884599509],[6.115117294140338,51.13898523611209],[6.115049184544152,51.13897204464281],[6.114990340562203,51.13895564887043],[6.114928738950987,51.13895008422925],[6.114868665575679,51.13895349906772],[6.114784288509894,51.13895792014713],[6.114722149903641,51.13896987849879],[6.114642322237494,51.13899811902366],[6.114576483657451,51.13899930458197],[6.114474111312183,51.13899525359316],[6.114348391088441,51.13901468442266],[6.114280466042615,51.13902036843645],[6.114181708199288,51.13901899128114],[6.114026455871352,51.13901874977594],[6.11388832744506,51.139017070499676],[6.11383604101824,51.1390096221892],[6.113703874619853,51.13895575068225],[6.113556251246611,51.13878186351654],[6.113477347558219,51.1386859761126],[6.113434574929177,51.13862500100546],[6.113398472610204,51.13859188629442],[6.113355354137712,51.1385695933732],[6.113281665605802,51.138564067502145],[6.113218006466184,51.13856478920836],[6.113120466393034,51.13853641829429],[6.113058179757404,51.13852814224241],[6.112968731960267,51.13852177983311],[6.112882029107664,51.13850103563391],[6.112706522311157,51.13846582556673],[6.112618029531938,51.138485552244624],[6.112533653849858,51.13848187251403],[6.112468595040289,51.13848172162349],[6.112354306646455,51.13849211676169],[6.112232818453791,51.1384935676607],[6.112021191022825,51.13848376055846],[6.111931632348923,51.138454952290516],[6.111862055269896,51.13842470683046],[6.111806037147701,51.13839348678621],[6.111737705789787,51.13833983488164],[6.111673822623382,51.138307297515354],[6.111576307372398,51.13826771576323],[6.111498341427652,51.13825638153317],[6.111403237116411,51.13824645757441],[6.111322441730291,51.138237819623946],[6.111278072689034,51.13822947581174],[6.111213567037733,51.13820546373153],[6.111246684685343,51.13815628465274],[6.111158625571169,51.138134612766024],[6.111104962473193,51.1381249425227],[6.111056135707083,51.138173752071395],[6.111041798646886,51.138168861504056],[6.110971450993225,51.1381322650341],[6.110864054754988,51.138101212006],[6.110701432263851,51.13805012478537],[6.110702941129457,51.13798442313379],[6.110601868483449,51.13794386494964],[6.110409101875901,51.137877584815314],[6.110281632546625,51.13784116395823],[6.110140561852296,51.13780117808799],[6.109924878973596,51.13773042844887],[6.10976002231756,51.13767613573448],[6.109683415054608,51.13765751966523],[6.109541826836437,51.13764271472318],[6.109332302032747,51.137622758957725],[6.108987921003403,51.137582642788615],[6.108787340973215,51.137561758490854],[6.108645255556001,51.13755438053296],[6.108338959769021,51.13754375267916],[6.108026671619893,51.13753913896458],[6.107956579954884,51.13753504362392],[6.107869910565891,51.13752072268772],[6.107790490057524,51.137514896326294],[6.107748019246413,51.13749448502657],[6.107700224955511,51.137447121516345],[6.107663644716422,51.13743879091577],[6.107613667849384,51.13744450348127],[6.107586412204129,51.13749231475241],[6.107492334750771,51.13751583860193],[6.107354603695017,51.13753829378969],[6.107290022813866,51.13752296346471],[6.107276925672388,51.13750506652863],[6.107276482378494,51.13747313106138],[6.107279618214566,51.13744073293021],[6.107247127714238,51.137417104378635],[6.107195454942905,51.137403950205076],[6.107114101824977,51.13741884621753],[6.107002404090004,51.13746318079025],[6.106960411321687,51.137479648452356],[6.106921962392425,51.13749248950748],[6.106877559398624,51.137489178117804],[6.106775585766281,51.13746105411021],[6.106763969004253,51.13750118146773],[6.106752862632509,51.13752463091002],[6.106729394206701,51.137535140772755],[6.106679948158721,51.137530053755995],[6.106604272684305,51.13748780657514],[6.106542898257989,51.137446360657144],[6.106504013517583,51.13742771551352],[6.106458181777747,51.13742440382677],[6.106407518185836,51.13743463264703],[6.106331418720151,51.137468435563584],[6.106214794690252,51.137468285947534],[6.106079527268972,51.13746375711325],[6.106062255882854,51.13745757169726],[6.106055194810731,51.13740991035255],[6.106071238645007,51.13737964364825],[6.106097822740504,51.13733356280144],[6.106103249808863,51.13731057107724],[6.106091545856414,51.13729218896135],[6.106058573196456,51.13728610076747],[6.106022288079813,51.13730117539728],[6.105960496444497,51.13733622885654],[6.105902164482897,51.137360446998535],[6.105837913709764,51.13737165858818],[6.105766533529458,51.137384730062934],[6.105724070291005,51.1373638235808],[6.105696580420267,51.137341035591575],[6.105708008802353,51.13728423476129],[6.1057283321034,51.13725259325791],[6.105728936694412,51.1372510523829],[6.10574356378316,51.137213324564584],[6.105696057718349,51.13719246726145],[6.105644279867482,51.13717071948745],[6.10561950742698,51.13713621087832],[6.105593404370898,51.137109809661446],[6.105545317858263,51.13709659660954],[6.105494975661458,51.13707618824918],[6.105464698714587,51.13705881089938],[6.10544073189236,51.13703103908093],[6.105401560171463,51.136989410261954],[6.105370170547859,51.13699499788867],[6.105341855815436,51.13701631535975],[6.10532349273289,51.13703534197595],[6.105204011892829,51.13703243139368],[6.105126034309414,51.13703108883253],[6.105068576643752,51.137013412024395],[6.105028264217697,51.13699203354822],[6.10498367181118,51.136974726606624],[6.104955419875074,51.13700190447634],[6.104909449806042,51.137095818951536],[6.10474668699125,51.13711835387498],[6.104676693209885,51.13706922065147],[6.104778341961674,51.13696779784656],[6.104775119822199,51.13694079658038],[6.104759928974056,51.136926912447464],[6.104729793033592,51.136918541096584],[6.10467202785174,51.13693056592182],[6.104595731097567,51.13694809867975],[6.104564277979414,51.136949623415504],[6.104506954037601,51.1369395772353],[6.104465142965196,51.136913704294116],[6.104389202787995,51.136850638603626],[6.10425626906309,51.136853608110094],[6.104184741886406,51.136852656554346],[6.104129568055641,51.136843954261586],[6.1040319247112,51.13681385947535],[6.103962933525124,51.13678587094543],[6.103911744824635,51.13675509372894],[6.103932496327487,51.136703206488434],[6.103910239425697,51.13669613464657],[6.103816602245845,51.13669842957788],[6.103798148322424,51.1366557734338],[6.103812212000098,51.136636800566116],[6.10388243650883,51.136595475751314],[6.103887276046067,51.13658330162686],[6.103871357102019,51.136569430863034],[6.103713996247412,51.13651222481248],[6.103778940512129,51.13644932289541],[6.103788528491765,51.136418215427895],[6.103677614594816,51.13641206826914],[6.103650062674593,51.13643651780795],[6.103614512640361,51.13645200963568],[6.103580139564834,51.13644768225453],[6.103568381476745,51.136422998877244],[6.103577836476909,51.136383352620854],[6.103574741621178,51.13636538456568],[6.103536580319478,51.136344432768276],[6.103496562039956,51.13634734044854],[6.103386180571266,51.136328587035365],[6.103296536941746,51.13630837522257],[6.103266015643485,51.136323826936675],[6.103254802161104,51.13634233270445],[6.103275014118607,51.13635572761889],[6.103350504112178,51.136385474281376],[6.103413717030093,51.13640673003977],[6.103459855221592,51.136435282372695],[6.103445903677414,51.13646145475973],[6.103401129830926,51.13648193843207],[6.103367883358851,51.13650956022193],[6.103307182998166,51.136567024302394],[6.103284659574037,51.136592350633755],[6.103261183123365,51.136602365444396],[6.103230465962609,51.13660342683738],[6.103167210847317,51.13657855762811],[6.103014634163305,51.13650647116784],[6.102912027347498,51.13647776340006],[6.102806303945844,51.136433334871896],[6.102757727683308,51.13643628605787],[6.102741688138535,51.136467864676284],[6.102724283906996,51.13649989216814],[6.102684447220645,51.136515392150606],[6.102636542923824,51.13651654132813],[6.102588548411329,51.13650914242618],[6.102542473200025,51.136486441252494],[6.102461746568631,51.13643784925969],[6.102428599145821,51.13642046184214],[6.102381262986761,51.136410371064144],[6.102326901973776,51.1364088541757],[6.102302143746948,51.136428324210904],[6.102289976725084,51.136478315516534],[6.102283235389165,51.13656111950175],[6.102267552436776,51.13661471910346],[6.102215750350226,51.13669686574925],[6.102179224260933,51.136745173288695],[6.102120668024888,51.1367486261321],[6.102061957525487,51.13674308182655],[6.102005839377964,51.13671772757609],[6.101971978311869,51.1366994724813],[6.101915944313557,51.13667860322067],[6.101847772807811,51.136661880700565],[6.101825313591279,51.136640858653806],[6.101823650375858,51.136572497949366],[6.101834853079958,51.136502727665764],[6.101787586991596,51.136497139743675],[6.101702808000021,51.1365196038783],[6.101587521265679,51.13650238012171],[6.10155736054065,51.1364978734079],[6.1014664136408,51.13648846408817],[6.10141966351857,51.13651974604686],[6.101329901184067,51.136492782649455],[6.101348345558785,51.13643016812377],[6.101340306474097,51.136417623873825],[6.101325214534518,51.13641186481615],[6.101209307159295,51.136407085389415],[6.101097013688958,51.13640408144062],[6.100995211985181,51.13638663933976],[6.100930829437574,51.136383835050836],[6.100874338806024,51.13638502729873],[6.100847046641916,51.136377536371185],[6.100820863472673,51.13634485122071],[6.100784682703386,51.13626457640623],[6.100752439156341,51.13626026206789],[6.100721202699949,51.136275717505114],[6.100640865854237,51.13635975572141],[6.100564355398242,51.136411418674214],[6.100517374578122,51.13642695281875],[6.10045297107512,51.13642280003171],[6.100390382900307,51.13639752071119],[6.100325603173211,51.13636820074436],[6.100304510972748,51.136343142902696],[6.100301361546745,51.13632249635547],[6.100320820488085,51.136283741770704],[6.100390041224335,51.136222685227175],[6.100414217678058,51.13621355661724],[6.100426034942975,51.1361887730421],[6.10043619320863,51.13614915868848],[6.100415219290625,51.13613263976527],[6.100385014571931,51.13612067208328],[6.100336992676327,51.1361132993894],[6.100270821807942,51.136137940389624],[6.100121697669662,51.136212485764915],[6.100096674218601,51.136213070901],[6.100082184734982,51.13620192352521],[6.100056333516132,51.13614454316783],[6.100098049367237,51.136110146496],[6.100106419947247,51.136095272104946],[6.100089080701918,51.136082784878624],[6.099873434698263,51.13611053674138],[6.09982055512214,51.136012880383255],[6.099806861619617,51.135957232149735],[6.099874668253606,51.135895267707795],[6.099921806763206,51.13583925503326],[6.099900471074194,51.135798467727405],[6.09987504991313,51.13571996035677],[6.099807845431864,51.135722152721726],[6.099748686019151,51.13573915461731],[6.099720369025646,51.13576044375701],[6.099710806370382,51.135792431652156],[6.099687559277661,51.13581818420738],[6.099661197404001,51.13582642717013],[6.099509920519469,51.13580357033128],[6.099458914609415,51.13573915291677],[6.099410114992139,51.13567787711191],[6.099369021801042,51.13565565650312],[6.099327339469435,51.13564243756081],[6.09924245365924,51.13556024072147],[6.099214170116416,51.135532979522075],[6.09919185139402,51.135523677868996],[6.099147367433008,51.13551497957267],[6.099095871624871,51.13551756959256],[6.099042142210605,51.135514321395384],[6.098914322983441,51.13547920267568],[6.098840965093862,51.1354733690026],[6.098720631254546,51.13545752171434],[6.098456685858205,51.135388691674045],[6.098351097077252,51.13534605610829],[6.098294487991119,51.13535151764355],[6.098161070382266,51.13532018083468],[6.097840269598888,51.135214905274694],[6.09778339959834,51.135203486672054],[6.097669272383469,51.13516483996725],[6.097571640496056,51.13512203814543],[6.097180050631037,51.13501049704105],[6.096934092746675,51.13493391284037],[6.096663830824057,51.13485629009102],[6.096575582693547,51.13481873364748],[6.096397471048657,51.13477964066641],[6.096303312126103,51.13475900160933],[6.095873867783644,51.134758711404466],[6.094438005335545,51.13475805591497],[6.092670539747703,51.13475710599078],[6.09246099431573,51.1347837912591],[6.092296203086331,51.13484065931976],[6.092066951172687,51.135056216097595],[6.092030644855695,51.13503469196011],[6.091995980600744,51.13504756801065],[6.091752572982529,51.13491217784635],[6.09168819946709,51.13479235764025],[6.091683794735623,51.134540447650735],[6.091569653338009,51.1342664611637],[6.091359116017387,51.1338245681372],[6.09118984763762,51.13325887868992],[6.091145044751472,51.133165690992506],[6.091071915843272,51.13301312242592],[6.090952790681732,51.13284702544401],[6.090944600839662,51.13283560503609],[6.090761349900764,51.13266343343454],[6.090637617333355,51.132547145537046],[6.09016599877099,51.132120540455055],[6.090120814903262,51.131953662276885],[6.090072859492474,51.13177649039826],[6.090065254383619,51.13161084089814],[6.09001640860795,51.13149498884176],[6.089830516600083,51.13125601602997],[6.08963927653951,51.13102874310255],[6.089553045491058,51.13094282594682],[6.08951546934814,51.13093888235578],[6.089447158633759,51.13093089082733],[6.089318372857588,51.13091721539525],[6.089190368820106,51.13016436382971],[6.08857303143986,51.12979035662841],[6.087643659388609,51.12953358611991],[6.087444703408247,51.12948599376237],[6.087275978487539,51.12934848087747],[6.087190135981307,51.12932509660594],[6.087151174051073,51.12931448173407],[6.087103220395896,51.129302536746444],[6.087137183225885,51.129225034966545],[6.08718765457516,51.12916216671492],[6.087201015503727,51.129145528282514],[6.08730415354627,51.12905046714149],[6.087397546267582,51.128989029873914],[6.087506566215874,51.128937835685406],[6.087679308365513,51.12888906148397],[6.087903259430361,51.128862459591254],[6.088191037773479,51.128868587584094],[6.08843565502828,51.12881264538682],[6.088565339607955,51.12875081714189],[6.088614538787334,51.12871708053326],[6.088694237300354,51.12865617441017],[6.088724858419546,51.12862575012923],[6.088745418996126,51.12859416412757],[6.088785722846368,51.12852237653402],[6.088806586395389,51.128469466614966],[6.088842260569299,51.128380771573795],[6.088845637785251,51.128365245014194],[6.088856770206362,51.128314038903376],[6.088869025002257,51.12825400772889],[6.08887447252618,51.128186008438675],[6.088874669966409,51.1281437316466],[6.088839831502609,51.1280204503764],[6.088772284659186,51.12789749262975],[6.088652213894915,51.12778314915762],[6.088416114966485,51.127628309606635],[6.088378864854652,51.12764929937045],[6.08832140871764,51.12763146152556],[6.087737420462245,51.1274501989873],[6.087162226639256,51.127492483597806],[6.086521250295175,51.127539602274055],[6.084424102862026,51.12601868256524],[6.086446726342104,51.125655133385344],[6.086992116088408,51.1245949119304],[6.086602717950443,51.124516537013804],[6.083639168101925,51.12391996199129],[6.08355282865581,51.12390258275636],[6.083501234174863,51.12389219527957],[6.083480300453843,51.12390301784274],[6.083210400185235,51.12404252881795],[6.082989385180305,51.124357985769706],[6.082756314371928,51.124690647688645],[6.082554491424651,51.12497871595385],[6.082438772237873,51.125048553002664],[6.081203633566644,51.12579392849276],[6.081078076052459,51.12587091536016],[6.080901168116171,51.12597938305429],[6.080744469558948,51.125696660489716],[6.080638003311967,51.12545408843617],[6.080589119143881,51.12541037898695],[6.080161873995826,51.124884004844475],[6.080049692391,51.12457560351786],[6.079995031365999,51.12446220912656],[6.080009703471628,51.12425194825326],[6.080119263565908,51.12392313051991],[6.080137138270276,51.12386946697037],[6.080405715909395,51.12336037670493],[6.080380347347941,51.122463302726324],[6.080422816638209,51.122419991474466],[6.080551014650245,51.122141706371096],[6.080291958986953,51.12207765135164],[6.080178911750631,51.12204969615954],[6.079878036146707,51.1219752917833],[6.078981249778443,51.12175348642998],[6.077190326644899,51.12131051347475],[6.075801843405015,51.120967062134184],[6.075698186561118,51.120941069429186],[6.075641878049272,51.12087784177599],[6.075614328693006,51.120840835409666],[6.075601362331761,51.120748495779225],[6.075591658778973,51.12067946340887],[6.075637302860103,51.12060951847972],[6.075757339841581,51.1204255914044],[6.075764013864353,51.12041535821653],[6.075899296989216,51.12020807685234],[6.076071505982915,51.11994780139439],[6.076187939495167,51.1197590591299],[6.076205392770421,51.11971233825176],[6.0762080043653,51.119678838494885],[6.076220076450041,51.119567545173936],[6.076178752602865,51.11946722086208],[6.07616942807179,51.119452111665986],[6.076148334759917,51.119417952593075],[6.076088232067531,51.11934449116251],[6.076033279040958,51.119299188835676],[6.075960226474759,51.11923649218828],[6.075935819186346,51.11921849709746],[6.075883446758432,51.11919193955834],[6.075713549289096,51.119118149547795],[6.075634547046919,51.11909492300279],[6.075530124085763,51.119064215451786],[6.075258229260738,51.119052982236106],[6.074907431628374,51.11903849444947],[6.074665320505188,51.11902849465269],[6.074547338288356,51.118992616921076],[6.07422668266809,51.11898229029017],[6.073495313997942,51.11882918277122],[6.073120788748129,51.11859023825264],[6.073018303495997,51.11858104579845],[6.07294759745597,51.11856615520433],[6.0729198276698,51.11852466397384],[6.072918763661011,51.11849833231735],[6.07296268880282,51.118411642995056],[6.072969978678712,51.11837086150769],[6.072918468614679,51.11831001327543],[6.072882898903244,51.11829807919942],[6.07273974167061,51.11829007961546],[6.07271424071483,51.118288657149364],[6.072562694377018,51.11834736076576],[6.072467670524428,51.11832606944072],[6.07238354333661,51.11828651086727],[6.072250906028277,51.11821770051959],[6.072168714881199,51.11822082839211],[6.072018285040825,51.118244251642224],[6.071850147968618,51.11821800673581],[6.071548829072142,51.11808914580659],[6.071347164761245,51.117951058240465],[6.071311021990351,51.11796199522638],[6.071270244186067,51.11797434383434],[6.070667231828786,51.11815587969158],[6.068804640012764,51.11809000350139],[6.068756786255609,51.11808753386857],[6.067293033276336,51.11803520131337],[6.06479123214355,51.11743032644473],[6.064003388495901,51.11724012155594],[6.063700705415605,51.117167052358035],[6.063400058432899,51.11709446490987],[6.063241751974207,51.11705624879252],[6.06304447467866,51.117008614146435],[6.06240107612827,51.116853261737326],[6.062130860580322,51.11673444307005],[6.061879936974707,51.11662409617763],[6.060865043238513,51.116177815270284],[6.060293408652687,51.115926436143326],[6.059262402432149,51.11505671576226],[6.058399551629206,51.11432881400777],[6.057794326000561,51.11381822901959],[6.057372273803232,51.11331509595001],[6.055635673972411,51.111220847290795],[6.055255863762241,51.110763703036014],[6.055252535414699,51.11075969510316],[6.055238001979541,51.11074225012471],[6.055371752261523,51.11063145420221],[6.055447478003116,51.11058422120698],[6.055674724904389,51.110442467585315],[6.055928584906963,51.110362359856154],[6.056079890718171,51.110360130528555],[6.05637703656,51.11026268414106],[6.056745559723445,51.10968520559686],[6.056832118475098,51.10954955583812],[6.055863918370494,51.108900538194575],[6.054460401957733,51.10784614746955],[6.052695494048114,51.10645208558451],[6.052628230592942,51.10637336772094],[6.052596390611146,51.106285628452824],[6.052545773342275,51.106290592985765],[6.052258089195323,51.10610802062138],[6.051835955940795,51.1058401296154],[6.051603338976085,51.10569242335452],[6.050748526643589,51.10514970194879],[6.049966937195634,51.104653469945944],[6.049932627026089,51.10463167870576],[6.049050028174048,51.10407120644939],[6.049049379770479,51.10407079665177],[6.047117006576591,51.10284287865798],[6.045871657787568,51.1020519254487],[6.045243210663813,51.101653492269776],[6.044400894121465,51.10111944509058],[6.044296016512432,51.10111553554636],[6.043930874516789,51.10119599615663],[6.043389193578498,51.10131535188085],[6.043014422418846,51.10122034410024],[6.042943511211689,51.10120251509339],[6.042517328509965,51.101095346428586],[6.042219519708924,51.10099373493464],[6.041967252766806,51.1009019514015],[6.041435450495579,51.10040903493725],[6.041190746818111,51.10021525343913],[6.039260913266584,51.09837472382147],[6.038985010988045,51.098185194093645],[6.038250125753481,51.09755105355152],[6.037738685390227,51.097201291379996],[6.037711455066893,51.09718266595908],[6.036692007607921,51.096594166002326],[6.036673678160056,51.096625541452426],[6.036605079050655,51.096594859326956],[6.036463169404538,51.096531417886105],[6.035103225394198,51.09590729773647],[6.035078425123495,51.09589586733852],[6.033793685640385,51.095569909655666],[6.033718715788452,51.095550884157895],[6.033562235421203,51.09551568302223],[6.031804507723881,51.09512025440123],[6.029991585961835,51.09465676148835],[6.02990537348832,51.09463488337959],[6.029814238661956,51.094627486828315],[6.02964511686561,51.094613753326655],[6.029561842283957,51.09460699621921],[6.029487971220036,51.09460099600811],[6.029336599198797,51.09458870091917],[6.029258126492298,51.09458233051287],[6.028807172129363,51.094565345957406],[6.028089650740298,51.09453832647861],[6.027871943603326,51.09453012633392],[6.027822812049187,51.094528276216394],[6.027331379174359,51.09445413247119],[6.027117563182426,51.09442186379903],[6.026965001267786,51.0943988482757],[6.02654446601473,51.0943353937139],[6.025905940810791,51.09423905149919],[6.025742231712157,51.09418828369384],[6.025010570829284,51.09396143407894],[6.024487109015197,51.09367757865552],[6.023931422309431,51.093376234320345],[6.022482956226312,51.09325761816959],[6.02137089214686,51.09298584243663],[6.02067560751577,51.09283829267502],[6.020498864439384,51.09294114813551],[6.020241601394769,51.09307638967849],[6.019779136995815,51.09331726500316],[6.019209428449061,51.093606373516685],[6.018877280580714,51.09378167946688],[6.018676386710486,51.09389875839286],[6.017867325788273,51.0944018968922],[6.017574916934053,51.09457260540216],[6.016906160475327,51.0937734277098],[6.016632364264371,51.09344837833137],[6.016332439102707,51.093092287105925],[6.016108187600905,51.092826043672474],[6.015713551977801,51.09235750823785],[6.015637497394391,51.092325011433886],[6.015253493231508,51.092160946826],[6.014686343739103,51.091918633464246],[6.014374506008806,51.09165016371334],[6.014085851295766,51.09145910713329],[6.014015172654195,51.09142392846694],[6.012672097757964,51.0909517748754],[6.01199816267954,51.09095304218034],[6.010931871972059,51.091184062450786],[6.010913013669019,51.09119019546549],[6.010882651728096,51.09118693387575],[6.010279430322045,51.091081003550414],[6.01021260453002,51.09106973064462],[6.009694570644215,51.0908972076191],[6.009523681412404,51.09084419033774],[6.009258099365765,51.09057465881827],[6.009142531572608,51.09044840748437],[6.008826094165603,51.09004657764257],[6.008320442064988,51.089613192949926],[6.007822123827625,51.089276263906136],[6.007131966833239,51.0889255441427],[6.006320348634051,51.088421477821086],[6.00627326310535,51.088384433685285],[6.005316609027677,51.08763174316234],[6.003825027106428,51.08679201730666],[6.002856963933563,51.086407862859794],[6.001927817712281,51.086008338708005],[6.00089194022746,51.08561049547643],[5.999844991692185,51.08520838680627],[5.999247546959351,51.084806765503146],[5.997793546585383,51.084245702385324],[5.99735242772038,51.083937192585054],[5.996785127065675,51.083540416045125],[5.996186110670388,51.08315655866983],[5.994708659953671,51.08206089638271],[5.992712955198969,51.080325361115534],[5.992194373476363,51.07985481400877],[5.991943656891101,51.07950286259351],[5.991921049773387,51.07947113241939],[5.9918397369115,51.07935699146984],[5.991802394046821,51.079300672262534],[5.990856866003199,51.0778840131875],[5.990569064865429,51.07749796781404],[5.989645919596486,51.07636186423539],[5.989455224122034,51.07615021074464],[5.988979833087171,51.07551837833907],[5.988673411475582,51.07499351795175],[5.988451780498109,51.07461388401647],[5.988401567071272,51.074608283474745],[5.986469010179229,51.074030529889754],[5.984981518900355,51.0735858075997],[5.984270154286955,51.07356165083381],[5.983545466425338,51.073384601442164],[5.983042074331935,51.07332907473886],[5.982311742190856,51.07313196524917],[5.981955230902112,51.07319344493862],[5.981764204996722,51.073176698049004],[5.9813942782421,51.073055615362314],[5.9809280459155,51.072534277161125],[5.980534541241292,51.072459668700866],[5.980294000214844,51.07231711103739],[5.980189258151748,51.07220518529542],[5.980190643095752,51.07219529032044],[5.980218568643902,51.07199616715425],[5.980182564087056,51.071891530575435],[5.980052581838479,51.07175510391319],[5.979918039393635,51.071740941748416],[5.979718552169642,51.07139106666938],[5.979581113869244,51.07134358772151],[5.979761753453126,51.07118922281153],[5.979894948811062,51.07107339319783],[5.980154141433109,51.07084797271174],[5.98026010371486,51.070755833066215],[5.980369730866423,51.07066025876053],[5.980506946262619,51.07054108194458],[5.980605218795196,51.07045572306276],[5.980759147496485,51.07032162858714],[5.980941154762632,51.0701632996543],[5.981219386765833,51.06992150919679],[5.981411833054882,51.069754226940844],[5.981729704703398,51.06947789417595],[5.980940842933339,51.069021788740855],[5.980896283240199,51.068996038659364],[5.978663146799671,51.06770233684862],[5.978743811243912,51.066885185449216],[5.978472857902227,51.06643801640331],[5.978410201857685,51.066369210471734],[5.978194597285176,51.06613246062925],[5.97811277762283,51.06605880825057],[5.978024290467984,51.0659791671578],[5.977630712169878,51.06562484791932],[5.977368644142072,51.065413142735096],[5.976534311027541,51.06473925604538],[5.976118696546655,51.06464563461946],[5.975934306027892,51.06453906251076],[5.975926055650573,51.06452975584318],[5.975889863090818,51.06448841042965],[5.975017688211762,51.063495595854086],[5.974817586249543,51.06320806334537],[5.974782855830333,51.063158170642446],[5.974336939010564,51.063103169309635],[5.974062474323642,51.06306932176039],[5.973161840882667,51.062906411169486],[5.972047786634153,51.06201168884103],[5.971878736658281,51.061875917647235],[5.971725296449952,51.06191345614534],[5.9709698409911,51.06163267023995],[5.970930364620942,51.06160068838105],[5.970736932854257,51.061443995046695],[5.970278573429227,51.06093410809238],[5.969978388416061,51.060703880974565],[5.969995555322138,51.06051619451335],[5.970600084162267,51.0602352151755],[5.970783690980268,51.05971949190987],[5.970887838001376,51.05922583179559],[5.970880212692625,51.05830908319364],[5.970779810697373,51.05801753628135],[5.97037275652161,51.05723124985599],[5.970278731405022,51.05710947245146],[5.970128414333247,51.056914807609964],[5.969508977029855,51.05660006937061],[5.96892699038921,51.05615560865857],[5.968113504422099,51.05556218900071],[5.96898919627203,51.0550732022084],[5.969607787299043,51.054928160644764],[5.970130473359552,51.05459833490315],[5.970311371840001,51.05418545996056],[5.970235527666601,51.053872485208316],[5.970008230127444,51.05363919509555],[5.969971094117703,51.05360108865912],[5.969819371153615,51.05344535284445],[5.969655549521192,51.05281775572331],[5.969555850751336,51.05261861108006],[5.969386479129866,51.05228030711514],[5.969031740838851,51.05182490783835],[5.968456646232137,51.05137897215782],[5.968228140377683,51.05107080641965],[5.968214606306122,51.050857116119914],[5.968500959846975,51.05003103107806],[5.968486583908445,51.04989761668677],[5.968477546790496,51.04981433407898],[5.968648070258658,51.049585338525254],[5.969297637213843,51.049143686183314],[5.969134004645019,51.04878890323408],[5.969017422093211,51.04862507973886],[5.968824584702662,51.04848689774955],[5.968561336314378,51.04827239246303],[5.968480829468843,51.04812951165915],[5.968462143292816,51.04809634608912],[5.968440748256618,51.04792647159383],[5.968470611202062,51.04786330907366],[5.968505482718363,51.04779023354671],[5.968793905505742,51.04718643498717],[5.969197797198035,51.04677217319394],[5.968552746525726,51.046280925292194],[5.968280467912574,51.04636687666187],[5.968216395854077,51.04625025104829],[5.968014690100507,51.045882713237646],[5.967875629207456,51.04497543220675],[5.967837825147138,51.04475916673289],[5.966970739668621,51.04418380640538],[5.966900280991957,51.044137056451696],[5.966532123354549,51.04405898468201],[5.965786643160823,51.04405839284696],[5.965084497327951,51.04365199719289],[5.964969935165308,51.04358569014173],[5.964820249809203,51.043653314084786],[5.964730313588129,51.043693942913826],[5.964495228750495,51.04380019501914],[5.963839580237322,51.04368525288463],[5.963801329007651,51.04365838629435],[5.96262430931595,51.04283167468785],[5.962589737815925,51.042746540822435],[5.962470148624758,51.04245301476053],[5.961717222445611,51.04199040005863],[5.961683168304573,51.0419694447076],[5.961542348145378,51.0419738279375],[5.961384280615937,51.04197865598152],[5.961230204090712,51.041983374158484],[5.96049175043435,51.04200617485094],[5.960282786763388,51.04193134102014],[5.960177231384714,51.041893569711114],[5.960042743816811,51.04184533427513],[5.959888922672993,51.04179027267783],[5.959410273067093,51.04161878932269],[5.959046777543067,51.04148862468451],[5.958362397902103,51.04120309270868],[5.958177223412643,51.041125890652665],[5.957830093506484,51.040981079469404],[5.957849450504999,51.040932263910285],[5.957972655758729,51.04062261620399],[5.958237720243333,51.039955766674865],[5.958261392514834,51.039921581826405],[5.958767513825295,51.03918882265259],[5.958946441895435,51.038929776751246],[5.959062386938689,51.03879437011532],[5.959306076469349,51.03850947544455],[5.95946738725556,51.03823865020837],[5.958964767243396,51.03726978102807],[5.958411021210817,51.03663725969181],[5.95819784185047,51.03626598637362],[5.958112891159265,51.03611799671949],[5.958091936254882,51.03604915443857],[5.957870358280306,51.03532159869602],[5.957791691055745,51.03512818352824],[5.957734641137233,51.03498805645803],[5.957778301152757,51.03472608243565],[5.957736062676354,51.03472287452739],[5.957622187214539,51.03471399653403],[5.957445608058332,51.03476467328629],[5.957074407098813,51.03487121143582],[5.956787304088895,51.034953613264555],[5.956313580569992,51.03508196556612],[5.956212089984425,51.034921561069616],[5.955848382847483,51.035000291536356],[5.955701221478553,51.0350321152378],[5.955611900237034,51.035153095484745],[5.955465930080244,51.03535093949211],[5.955373243864234,51.035476610316415],[5.955162766388884,51.03576169352968],[5.955158279865592,51.03576782801804],[5.955104296719523,51.0358412627946],[5.955060831386549,51.03590053332395],[5.954711258615982,51.036132183368146],[5.954668126751809,51.03616070980762],[5.95449432900377,51.036275900297504],[5.954448997621836,51.03629949348053],[5.954006440656803,51.03652925922516],[5.952206220651852,51.03665697191273],[5.951641634958855,51.036772444178155],[5.951276145119866,51.036847123868675],[5.949801300060552,51.036967192775556],[5.949297320138084,51.03690923177154],[5.948579758562334,51.03682677443362],[5.948273232758626,51.036791583471384],[5.947802934565147,51.03674792520174],[5.946444712388622,51.03662180857664],[5.946519521374213,51.03702963692595],[5.945764926432082,51.03689098000113],[5.945485436645183,51.036839561135416],[5.945268425299622,51.036802582740314],[5.945012575620238,51.03676066712603],[5.944823893730761,51.03672959216337],[5.944556013822583,51.03668546819378],[5.944259818962472,51.036678981672374],[5.943861090257462,51.0366702901331],[5.943824687262788,51.036666330013624],[5.943460936269304,51.036626187514926],[5.943211394245868,51.036598736876904],[5.943099186092783,51.036586393840935],[5.943028833446986,51.036238138897986],[5.942999726321169,51.03609436503421],[5.942963364513781,51.03608195481571],[5.942827937795261,51.03603568160629],[5.942539333144977,51.03593701736993],[5.941790199099779,51.035681002449465],[5.941578616060574,51.03560866455169],[5.941393103982734,51.03559400070705],[5.941266384136117,51.035583909605705],[5.940853691558598,51.03555127395271],[5.940837788715891,51.03565157692239],[5.940506535480148,51.035586190745555],[5.940308470422301,51.03554713508855],[5.9400685339166,51.03549973928853],[5.939718991343356,51.035430752621984],[5.939398888723005,51.03536764727266],[5.939182676664376,51.03532499066837],[5.938166930694043,51.035124784749804],[5.938129488525332,51.035117232200044],[5.937902103861969,51.03629874397665],[5.936410996825448,51.038297413872584],[5.936374799035558,51.0382867986044],[5.936369766281392,51.03829518218623],[5.936077162355083,51.0387824216667],[5.93594798284156,51.03899742010091],[5.935777279918454,51.039281560268385],[5.93576623525189,51.039299950025956],[5.935656068962921,51.039483486657225],[5.935516960906466,51.039715161159506],[5.935273970583758,51.04011964516264],[5.935167293074572,51.040297142214726],[5.934607335778794,51.04122951647838],[5.934451074814848,51.041374437253445],[5.93419411687483,51.04161277889624],[5.934109073646225,51.04169156391616],[5.933872420427821,51.041911022103776],[5.933312369520176,51.04243034746385],[5.933055117850436,51.0426689575968],[5.93270463523328,51.04299394038854],[5.932374177312154,51.0433004904505],[5.931922273369572,51.043719432973404],[5.931821341759639,51.0438130328448],[5.931507034912324,51.04410449295188],[5.931095805761065,51.044443239448896],[5.930645733608555,51.044813897596114],[5.929736673423817,51.04556280103238],[5.929066403508244,51.04611488271371],[5.92857675449859,51.04651817683728],[5.928275503190179,51.046766240297835],[5.928078339424511,51.04692860205327],[5.927191248306643,51.04750281714761],[5.926316631804164,51.04823094827049],[5.926306200004334,51.048253469179635],[5.926269288766605,51.04833346277833],[5.92626322508926,51.048346614854296],[5.926259247539075,51.048360116788814],[5.925490750223932,51.05008102820344],[5.925230449980377,51.05066400190827],[5.925211258727163,51.0507058896267],[5.924441495355027,51.0524349796535],[5.924251142302956,51.05283730842743],[5.923479674538128,51.054467790848896],[5.922545862177899,51.056438800220675],[5.92211914425523,51.05734164290996],[5.921606874422942,51.05842546644238],[5.920427160454524,51.0609042087995],[5.920379256032257,51.06100483571566],[5.91997881423428,51.06184597507642],[5.919693002262748,51.06244631189767],[5.918731722116578,51.06395283043136],[5.918596077064663,51.06402487832874],[5.917372104541066,51.064674952674864],[5.915033474436576,51.065916460198935],[5.914340381447573,51.066284375482134],[5.914184199942837,51.06636692972007],[5.913207776082432,51.06688301381368],[5.912464184062848,51.06637473307901],[5.909959822071223,51.06466276870408],[5.9091605742565,51.06411611035054],[5.907056313485856,51.062676768937315],[5.905754467116126,51.06191045622613],[5.905733645268259,51.061898198522364],[5.905644728968532,51.06184585793733],[5.905629884809522,51.06183873314517],[5.902695635099453,51.060431480064146],[5.900694707786901,51.059386647010754],[5.899647915399583,51.05884000392939],[5.899551632141917,51.05879101717838],[5.897240880699685,51.057615275197335],[5.897188840012918,51.05758879794977],[5.897132284814999,51.057557792128065],[5.896944825483154,51.05745504578847],[5.896372450406537,51.05714132066754],[5.895676244557508,51.05647177824013],[5.895258138575386,51.05606966595748],[5.895085437562509,51.05590356982777],[5.894344394187545,51.055190844267415],[5.894260814498196,51.055110453161724],[5.892295538777323,51.05323458969332],[5.892286031114453,51.05323115239206],[5.892243518550386,51.05321576873733],[5.892199030069757,51.05319967455809],[5.892000428729466,51.05312781888129],[5.891002956019283,51.05298654559138],[5.890869271631921,51.052967611417934],[5.890560211284546,51.05290324444751],[5.889031576120158,51.05250509895008],[5.88829657625118,51.05236304363421],[5.88823866597733,51.05235185098708],[5.888166303507334,51.05233887802515],[5.887541764904717,51.05222694793564],[5.887198823287408,51.052179176987494],[5.886352150473739,51.05213045561858],[5.885873502089498,51.052102905747155],[5.88507506969707,51.05208232766035],[5.882870332732259,51.051988041939396],[5.882051876606351,51.05208125664559],[5.881195898478289,51.0520285462856],[5.880633088314987,51.051945637929975],[5.879349315591013,51.05180402649481],[5.875845187255608,51.051555750972994],[5.875188150355502,51.05147258410715],[5.875036810003225,51.05148354927583],[5.875022061300921,51.05148467202623],[5.873740634340626,51.05158248975677],[5.872084691505656,51.05157837068512],[5.871692191349697,51.05157739575809],[5.870387844561083,51.05159030885025],[5.868690429133082,51.05168572268548],[5.866969976375303,51.05158416075512],[5.866803185838594,51.05157431581063],[5.866736986241973,51.051570409786876],[5.866917341624842,51.051238143119775],[5.866816535709451,51.05121559347294],[5.866372187528943,51.051116197526],[5.866315266469605,51.05110346174639],[5.866439738245581,51.05036046207794],[5.866560629952692,51.049643823605294],[5.866691404250457,51.048890550206224],[5.866745355149371,51.048594950969495],[5.866856750059822,51.047979234150816],[5.867056246421713,51.046842442101266],[5.867087448529186,51.04667555938658],[5.867123958080263,51.046567819800586],[5.867232055353525,51.04636186743444],[5.867285245601966,51.04627986593118],[5.867390251183942,51.04616185588965],[5.867488344076201,51.046064728698504],[5.868596614467,51.04502919194904],[5.869592512930894,51.04408867563183],[5.869784664697535,51.04390719845692],[5.870504128442063,51.043236404782114],[5.871488339722779,51.04230914339628],[5.871536089144263,51.0422641340992],[5.871982237887961,51.04184382559623],[5.872162996173373,51.04167351137674],[5.872169730713159,51.04166717297471],[5.872245835478116,51.04158799469004],[5.874180551944776,51.03957502833561],[5.874531592791813,51.039209771075306],[5.8746079539011,51.03913806892874],[5.874689973029333,51.039074262184265],[5.874818346004493,51.03899723544026],[5.874928163839915,51.038946615202086],[5.875046918761862,51.03890656418521],[5.87675286171104,51.03838574457666],[5.876868505533079,51.03834569583555],[5.877021693733261,51.03828465199374],[5.877241236747201,51.038190239195],[5.877428882896311,51.03811034316904],[5.877562269127825,51.038038856313065],[5.877685020656206,51.037956807362555],[5.877791161466607,51.03786934533458],[5.877887497334036,51.03777158744236],[5.877986569032175,51.03764962866953],[5.878028208218883,51.03758348259095],[5.878115311448678,51.03735524430638],[5.878128820783705,51.03727167991328],[5.878128925553622,51.03710888990968],[5.878114187165844,51.03703560264352],[5.877798719186069,51.03561983314153],[5.877674977955275,51.03506582960214],[5.877438774360464,51.03400812145535],[5.877121346230584,51.03258506849281],[5.87690949503129,51.031632687578416],[5.876879950573692,51.03157429445814],[5.876828698653023,51.031488028467344],[5.876763250976577,51.03139258179405],[5.876572257390908,51.03120712871323],[5.875947545306769,51.0305786608249],[5.875499107695579,51.030127508836706],[5.874877305464095,51.02954225077246],[5.874736795344019,51.029410003495364],[5.874657952254318,51.02933579890961],[5.874620902668734,51.029274964835004],[5.874618364027132,51.029270795658604],[5.874599696764637,51.02920533587157],[5.874604883796563,51.029186311460116],[5.874606695446338,51.029179696977835],[5.874882525034236,51.02830444411762],[5.875180569335706,51.027383711929986],[5.875231486229243,51.02722636204352],[5.875255626425909,51.02715176013383],[5.875293869588302,51.02703599244706],[5.875359451216611,51.026820611128514],[5.87541218955454,51.02671288137308],[5.875508437578178,51.026556077488365],[5.875773458438966,51.026182360404135],[5.875827955241443,51.02608469963317],[5.876060767494788,51.02566753034085],[5.876424130894288,51.025067235369384],[5.876609019701671,51.02473387328538],[5.876651074188829,51.024613783342325],[5.876665409368386,51.024554395853464],[5.876678414746536,51.02446508083785],[5.876682969732893,51.024383981439186],[5.876648596135357,51.024113281124045],[5.876643291053111,51.02404319885358],[5.8766456324076,51.02396839206813],[5.876657019772734,51.02386764996727],[5.876659343966531,51.02384626447271],[5.876693970877326,51.023759644705244],[5.876774213979139,51.023654917295254],[5.877395960766292,51.022788641555245],[5.877873698549979,51.02212371306396],[5.878185120378994,51.02168953206619],[5.878185387138345,51.02168915340084],[5.878265675148968,51.021579930281966],[5.878463492301448,51.021310799222505],[5.878615304951239,51.021104821389656],[5.878757332859293,51.02089956801706],[5.878844287028863,51.02074748395029],[5.878895656360782,51.02064375844974],[5.878928135040502,51.02055944827743],[5.878954019936695,51.02046624905483],[5.878984936992832,51.02033977840971],[5.879001885725954,51.020222526758225],[5.878993094111737,51.02008374798185],[5.878982053441722,51.01993319425865],[5.878959326074193,51.019826690952506],[5.878917460692428,51.01968561651385],[5.878849721227307,51.019543815865234],[5.878798432892014,51.019437182007074],[5.878730229954516,51.01930664638927],[5.878638253531227,51.0191371096965],[5.878595764682363,51.01895610895287],[5.878580127358553,51.01882473909153],[5.878562054336886,51.01870016619997],[5.878563307123637,51.0184740622729],[5.87861537695768,51.01831857564851],[5.878630009214254,51.018283465750564],[5.878661135321053,51.018208743587714],[5.878716179894004,51.01810777116432],[5.878807866204788,51.01796292110748],[5.878913648250415,51.017836968824795],[5.878988003101209,51.01777618474802],[5.879125102081329,51.01765369493364],[5.879360855206472,51.01745202497487],[5.879593751461182,51.017245917148124],[5.879788530212773,51.01707900083121],[5.879842432000601,51.017032811277836],[5.880052075333909,51.01687149434622],[5.880615672019101,51.01640487146478],[5.881074668150919,51.016024248333785],[5.881421154622429,51.015733120682626],[5.881749403898182,51.01545465432556],[5.88196792939077,51.01526845955583],[5.882352148740717,51.01496098789128],[5.88253659420374,51.01481693395923],[5.882684285930202,51.014684659585576],[5.884016442303651,51.01357796393392],[5.884261729033377,51.013381573448484],[5.884331972804297,51.0134073490091],[5.885364391799639,51.013786014555635],[5.885445825764619,51.01381601108104],[5.88555972029588,51.01380244239646],[5.885936697272483,51.01375751178248],[5.886095818903017,51.013738543306964],[5.886409109406262,51.01370121131764],[5.887010356891894,51.013629548506664],[5.887200487772938,51.01360688513559],[5.887396367971271,51.013583540441864],[5.887590258661939,51.01356071637742],[5.888256966285882,51.01348255303543],[5.888344077652097,51.01347233343771],[5.888832546958843,51.01333908023376],[5.888886608571998,51.01332452680603],[5.888943527251578,51.0133093227672],[5.889270702258065,51.01322191744268],[5.88946082321096,51.01317112401021],[5.889940745161928,51.01304259539154],[5.889983937429988,51.01303100102394],[5.89035986081252,51.01292965497263],[5.890686084021077,51.01284170144482],[5.890908872983899,51.01278150507013],[5.891018996643863,51.01275183922167],[5.891837282875062,51.012532687712444],[5.892059833103813,51.01247308342634],[5.892440004859696,51.01237145141233],[5.892698436260173,51.01230430951858],[5.89277860505837,51.01227070067561],[5.892822587727751,51.012253348875426],[5.894503652407823,51.01153969517608],[5.895204760992454,51.01124437504463],[5.895226900936983,51.01123504633366],[5.895610702922204,51.011073926101005],[5.895617986995195,51.0110703075526],[5.895739649441592,51.01101905805158],[5.895737222190578,51.01095917538311],[5.895693254035161,51.00987409741122],[5.895653271048822,51.008934461003726],[5.895613486410283,51.00802170964487],[5.895603072764247,51.00778275735018],[5.895602842442671,51.00777737398453],[5.895598214322637,51.00766773818925],[5.895584035621399,51.00731211695884],[5.895522444853951,51.005766316151686],[5.895512522372752,51.00550849390971],[5.895488687966298,51.00489325147384],[5.895476655495868,51.0045305465257],[5.895552477460932,51.004512424756506],[5.895904274647313,51.00442823633603],[5.896055078705663,51.004392121720215],[5.896542081727755,51.004274824454285],[5.89879085106177,51.0037367263143],[5.898879801323611,51.003716908402474],[5.899775117157269,51.003508901848924],[5.900071735057481,51.003439983343576],[5.900574338048533,51.003323211263826],[5.902042913036905,51.0029819822756],[5.903249961976912,51.00270076839716],[5.90524657370794,51.00223476998601],[5.905517501038557,51.00217195698094],[5.905070617485241,50.999888524501515],[5.905065684066102,50.99986274827534],[5.904897996295523,50.99899165074684],[5.904557390507839,50.997222125021956],[5.904508014161371,50.996963877339184],[5.904371491445794,50.9962444902311],[5.904351098359949,50.99613818809625],[5.904350980517558,50.996136570611895],[5.904347134507277,50.996046347744866],[5.904330871615544,50.995811629054955],[5.904296594256116,50.99531676975911],[5.904288265806575,50.99519642696109],[5.904279804414509,50.99507438584516],[5.904271103869556,50.99494879516235],[5.904260158288427,50.99479064754611],[5.904249638976231,50.99463875433345],[5.904240037447104,50.99450011572007],[5.904234411636671,50.99441881782978],[5.904228786450949,50.99433757387013],[5.904221871409869,50.99423782742619],[5.904213730251398,50.99412018047268],[5.904173149976944,50.99353419237604],[5.90416257996284,50.99338153532404],[5.904133912554426,50.99296753350154],[5.904133183196732,50.992957100589415],[5.904104106735756,50.99253705102651],[5.904060275516695,50.99190472141389],[5.904026898857309,50.99142616399563],[5.903990411076118,50.99090375439317],[5.903960286017122,50.99047250026902],[5.903957760901531,50.990436519793164],[5.903939626334771,50.990176748235065],[5.903927770232055,50.99000703588643],[5.903920560613371,50.989903758088985],[5.903912606222271,50.98978993059076],[5.903904650160261,50.98967595028749],[5.903902564666707,50.989646152244795],[5.903851069476889,50.98893430459368],[5.903841917050421,50.988807574309256],[5.903834200317791,50.98870094589328],[5.903826500781464,50.98859457807969],[5.903806076617625,50.98831207468627],[5.903792747094329,50.98812769894012],[5.903765871746359,50.98775613486926],[5.90374632682021,50.98748595139277],[5.903725483750002,50.987197741877466],[5.903703590424957,50.98718211783777],[5.903697173136744,50.98717753512367],[5.90366386228921,50.98715719784592],[5.903643042747134,50.987143348818435],[5.903576733127861,50.98710127954475],[5.903489503011087,50.98702995457571],[5.9034128019281,50.986971742435045],[5.90333059989551,50.98691063334872],[5.903192772561511,50.98681274654626],[5.903103253078386,50.986756919441554],[5.903003527658039,50.986683699162676],[5.902863188624906,50.98657502743392],[5.9027448989586,50.986495947886624],[5.9026508579787,50.98642919202535],[5.90254070746467,50.986349428847745],[5.902441044150157,50.98627140771734],[5.902314039816579,50.986187179878485],[5.902186366719919,50.98609530528313],[5.902013358045833,50.985969680811145],[5.901933413545996,50.98591401700063],[5.90181682110904,50.98582976033065],[5.901670636637396,50.985711072493935],[5.901583938712447,50.98566654877668],[5.901457929076273,50.985585668468495],[5.901365130147809,50.98552396683653],[5.901338487077626,50.98550625103714],[5.901202558348417,50.98540673545618],[5.901052992495993,50.985293617022194],[5.900911733195712,50.98518335599712],[5.900757550532385,50.985073700427975],[5.900558171687301,50.984927255474716],[5.900436283046782,50.984838832056624],[5.900320730148353,50.984757922168015],[5.900264374993285,50.984734494933555],[5.900164132304313,50.98468952677988],[5.900019938044696,50.98463260908019],[5.899861919480494,50.98456187346225],[5.899835027264642,50.984549830446745],[5.899809644860555,50.984542940396665],[5.89975843713038,50.984511076485845],[5.899710608987692,50.98447704924111],[5.899635501579598,50.98442816708861],[5.899577387569836,50.984383497441875],[5.899513272496709,50.98434086783323],[5.899334646390193,50.98418773111852],[5.899150777122546,50.98404323770348],[5.89888723493235,50.98385140067183],[5.898517048312685,50.98356321398496],[5.898208273450394,50.98332670230001],[5.89768236619307,50.982982138094506],[5.897545515984596,50.98287130525449],[5.896559054434129,50.982000762959075],[5.895885828008182,50.98149669149908],[5.895723439764391,50.98137417520425],[5.895711968004044,50.981369506377725],[5.89566978574827,50.98135234291575],[5.895351716773138,50.98130884807813],[5.895007521756225,50.98126177246538],[5.894529828569897,50.981196448843264],[5.894358765769013,50.98117305373281],[5.894267893713473,50.981160633382885],[5.893981159479497,50.98112145611514],[5.893802396612797,50.981097042170994],[5.893738899435729,50.98106309899958],[5.8933322506206,50.9808457354087],[5.893307871032346,50.980832628204],[5.893043492639658,50.98069051746687],[5.892871648042315,50.980598124486434],[5.892875817590356,50.98043282665832],[5.892610018228191,50.98031276202564],[5.892634360892158,50.98029133403334],[5.892655220424295,50.980276914631496],[5.893241548006044,50.97990970898934],[5.893785017807608,50.979559128590964],[5.894175179138372,50.97898152696567],[5.894202823037421,50.97893798937485],[5.894240399326964,50.97889386895767],[5.894842429508913,50.97822877380462],[5.895204742017276,50.97782951442841],[5.895663473730817,50.97729857411831],[5.895982083349656,50.97715203943474],[5.896167497936678,50.97710175859786],[5.896725910172229,50.976555526184065],[5.896796834091075,50.97648614310368],[5.896867354373332,50.97608879124802],[5.896927932436975,50.97575178092425],[5.897023298972661,50.97519229394333],[5.897023847198932,50.975187788070386],[5.897085619536377,50.9748650108849],[5.897863261517003,50.97483560644077],[5.899735827196856,50.97476488803714],[5.899753104606367,50.97476423627936],[5.900461847632322,50.97473746540973],[5.901464560200951,50.97466883604845],[5.902428477785595,50.97458158370798],[5.903556213269531,50.974567122612086],[5.904694937957308,50.974552511541624],[5.904828488736598,50.97456530822278],[5.90560091677561,50.97472032828852],[5.907333631678595,50.97515321534277],[5.907386232137213,50.97516635464352],[5.908007833398475,50.9753534075131],[5.909234615090305,50.975730822323726],[5.909306011136589,50.97575278407993],[5.909577038648458,50.97582626007481],[5.911729250908923,50.976409713221294],[5.911935367074766,50.97648761261127],[5.913132353201264,50.976939990309816],[5.914019532474132,50.977275210097346],[5.914247764425773,50.97736144542083],[5.914716743378744,50.97754484222335],[5.915136254535359,50.977672910920084],[5.915590353172504,50.9778245511453],[5.916016783904264,50.977909887574306],[5.917173112585334,50.978083482175585],[5.917877680027583,50.977911587220746],[5.917890302888047,50.977908509092764],[5.918554101029785,50.977746630729044],[5.918664324593399,50.97779130346453],[5.919370061061576,50.97807734532767],[5.919451961025652,50.978110542719776],[5.919564432380552,50.97815613013674],[5.919655803029044,50.978193167080796],[5.92288741536388,50.97950288669415],[5.922896256788794,50.97950646835013],[5.922993112205934,50.979545724549894],[5.922993886406185,50.979546179405176],[5.925330868245294,50.98092062409909],[5.925348919758117,50.980931237087596],[5.925670952838669,50.981120629891564],[5.927651528878619,50.98228539917886],[5.92832068756791,50.98261467763672],[5.928436674072475,50.98267174595192],[5.930262046506946,50.98356992738961],[5.930856573323948,50.98386245275664],[5.931032438968995,50.983948972912195],[5.931203105898842,50.9840329463764],[5.931547206145155,50.984202254867114],[5.933631786142921,50.98522790510478],[5.933830008578903,50.98532542593677],[5.933886447308824,50.985353196154044],[5.934073865970487,50.98537415461942],[5.935705169735928,50.985556557794546],[5.941337443192912,50.986201045921156],[5.941728450057108,50.98624581845161],[5.94190424520851,50.98626595697854],[5.942247521622384,50.98630526630827],[5.942377211236046,50.98632011480152],[5.942383257879812,50.98632080493768],[5.942605815018013,50.98634625546773],[5.946717020139779,50.98681636861313],[5.947273539782522,50.98688001769869],[5.949117283293835,50.98709087761599],[5.949766181354809,50.987165078074305],[5.950134485401936,50.98720719091201],[5.950548861228576,50.98730641020681],[5.950790080072745,50.98736415954168],[5.950925237044896,50.98739706669178],[5.9517353814107,50.98759068986714],[5.952956268939381,50.98788320325842],[5.953407295864829,50.98799125828948],[5.955185082694711,50.988416992081845],[5.955736849913254,50.98756410768358],[5.956150386585507,50.98692520809991],[5.956569775299909,50.986276749921466],[5.956841167218456,50.98585747300916],[5.956955480092887,50.98568086162641],[5.957225965307687,50.985262532093564],[5.957392312124108,50.98500525776911],[5.958465016674974,50.984436003653414],[5.960879580374011,50.983155724699145],[5.960829645731696,50.98310239767892],[5.960827682903095,50.983100294989086],[5.960786347393597,50.98305595929],[5.96110055960254,50.98293556852176],[5.961394001476963,50.982794065866344],[5.965010890034498,50.980939539879294],[5.965111420544193,50.980873418734255],[5.965132210142976,50.980859741635],[5.965240624860515,50.980772816482514],[5.965282157467832,50.980728113726094],[5.965328298386757,50.980678444011076],[5.965391731885734,50.9805974062883],[5.965425845088,50.98055381919508],[5.965453438174448,50.98051718616189],[5.965597965308247,50.98033044646735],[5.965714368873437,50.9802039653934],[5.965844851975878,50.98008295107496],[5.965991527643127,50.97997012555622],[5.966152687212732,50.9798654973166],[5.966325914641002,50.97976943793555],[5.9665099307441,50.97968213353684],[5.966706579789755,50.97960303550236],[5.966911340523787,50.97953495298338],[5.967127217799636,50.979479039459754],[5.967346472185033,50.97943128859319],[5.96757584893537,50.97939589138814],[5.967810754705379,50.97938123056838],[5.968046253749649,50.979379780106065],[5.968280246726654,50.97939442700624],[5.968508912160272,50.97942698825632],[5.968731157359783,50.97946982873651],[5.969911330561433,50.97971062688837],[5.970005337299965,50.979729677974134],[5.970099386944719,50.979748737756914],[5.970308800269269,50.97979116338327],[5.971007474196275,50.97993334629712],[5.971534194978253,50.98004053558173],[5.971540690703255,50.98004186014735],[5.971874739331629,50.980108580549604],[5.972053344526002,50.98014561234349],[5.972387189608495,50.98021300647534],[5.973590617999085,50.98045765887242],[5.973937146824008,50.98055352438132],[5.974268251756732,50.9806692428166],[5.974300776080753,50.98068275021254],[5.975347719160583,50.98111745872285],[5.975438623017554,50.98115520928652],[5.975681759134766,50.981256161070064],[5.975958468311635,50.98138122994956],[5.975976881182175,50.98139021523386],[5.97612904250118,50.98146450871759],[5.976226867812543,50.981512264177944],[5.976499434611042,50.98163609438311],[5.977001122491388,50.981844458514686],[5.977097268904427,50.981884392383044],[5.977190410215753,50.981923163921486],[5.978327602656756,50.98239650605807],[5.97957532130152,50.98291626636822],[5.979855194994149,50.982986746634644],[5.981357233343274,50.98321725982274],[5.981583733050279,50.98322319904864],[5.981817447349145,50.983192245913315],[5.982042092922342,50.983142722668426],[5.982243219972775,50.98306834837943],[5.983875100468981,50.982281946770634],[5.984222246805429,50.98211458062149],[5.984232703353939,50.98211491325025],[5.984466564835108,50.98212231003829],[5.98466033749389,50.982130578334385],[5.98527565760848,50.982151798883244],[5.986315652445031,50.98218764771729],[5.988809050747277,50.98227224543378],[5.989402009835402,50.98229067475333],[5.992643972784464,50.98241560246886],[5.99857878048141,50.98263458363002],[5.999522675925546,50.98267046163084],[6.003888533607838,50.98283619448225],[6.00823632841998,50.983019145653465],[6.008464418204251,50.98302873627512],[6.013770873401533,50.983251225199346],[6.017363528484996,50.983401717746546],[6.017226181883788,50.9836784188289],[6.017663936383095,50.983724092275416],[6.017726442209154,50.98373061066419],[6.018466032001818,50.98380776219274],[6.018700580999865,50.9838185379679],[6.020276124573496,50.983690644210085],[6.021199564008505,50.98359355484145],[6.022434421493283,50.983368805428306],[6.02283777756679,50.983280378915026],[6.022930749381035,50.983269711081675],[6.025665135939686,50.983204386603035],[6.025691941916617,50.98320374444691],[6.026511844641963,50.98327202412263],[6.026530749267732,50.98319751759981],[6.026548573701821,50.983127277835024],[6.026507797921977,50.98307240914969],[6.026644068552971,50.98257726043484],[6.026735837165728,50.9821808680245],[6.026790740505222,50.98167479723751],[6.026821857209887,50.981648242613815],[6.026894542816303,50.98164137809671],[6.026802351752253,50.98130938308884],[6.026288576961273,50.980407563357325],[6.025709237766053,50.97939059389783],[6.024787445520996,50.977775579741134],[6.02373369916923,50.97592711970855],[6.023630160187287,50.97574547219181],[6.022854857753233,50.97438751528359],[6.022645337018842,50.97402049261542],[6.022080463188291,50.97279408092873],[6.021984808590248,50.97258740827881],[6.02139265645564,50.9714454509458],[6.021163203317538,50.97100291919372],[6.019455136997307,50.96894863831172],[6.018789415713139,50.96794756815204],[6.018246102500864,50.966968129062465],[6.018150592880571,50.966795961424296],[6.017307850113031,50.96527358535618],[6.015944729626112,50.96346638148801],[6.015320735107403,50.96253806525731],[6.015288221354886,50.96248970092695],[6.01526685056395,50.962457905831464],[6.015207062406833,50.96236438476345],[6.014065368252554,50.96127426163293],[6.013466461917563,50.96081603326789],[6.013229146349055,50.96063445301263],[6.013000479916362,50.9603977588233],[6.011893532589794,50.96023905736999],[6.011271360499141,50.960132557595834],[6.010687441294406,50.96003170036644],[6.009874818660221,50.95978582805191],[6.009080818220813,50.959484729426826],[6.007736958123259,50.958820010615185],[6.006640439232129,50.958056152944245],[6.006624335429229,50.9580418656676],[6.006053605982832,50.95753539341877],[6.005198493406015,50.956776551052215],[6.005260794847403,50.95675257740533],[6.007335739318822,50.95593741561018],[6.009383956723022,50.95521431760612],[6.009398224999055,50.95523815170442],[6.009511677438004,50.955218844821275],[6.010422032283542,50.95488764701622],[6.010463898492911,50.95485784779884],[6.010611346641682,50.95479511967039],[6.011224551670995,50.95458147337881],[6.011534231231367,50.95446555351093],[6.011800983303399,50.954300964160986],[6.01223197271767,50.95417899450992],[6.012220815770526,50.95416431275567],[6.01285202796447,50.95396790937809],[6.013197566655358,50.95388379214506],[6.013371607828288,50.95382010767985],[6.013381803868835,50.95381637602872],[6.014228834991168,50.95350642598277],[6.014783603450336,50.953303414556714],[6.016151668429473,50.952802673541235],[6.016486564956147,50.95268013125854],[6.016852931066899,50.952642632746766],[6.015496928552931,50.94900504305589],[6.015078656475181,50.947882876271564],[6.015760309895224,50.94501078219505],[6.015879327819146,50.94450845891448],[6.016462809877936,50.9420458039284],[6.016956828406277,50.94000809395809],[6.017110329617235,50.93937488144065],[6.017168946447781,50.939061924454045],[6.017781495175723,50.93648224707596],[6.018011446806057,50.9355078431727],[6.018201745132624,50.93470139002052],[6.018236479666937,50.934694827444865],[6.020590061794731,50.93425012168078],[6.022466285740655,50.93389556887592],[6.027314334152583,50.93298503127311],[6.029281486832156,50.9326155002663],[6.030276072131945,50.93242893962039],[6.03411790477977,50.93170602671008],[6.038134027469669,50.93094799128032],[6.038385628382129,50.930900498217426],[6.038589334683906,50.93086204746064],[6.039792709801348,50.9308523921306],[6.041038159334876,50.930471617090305],[6.041501784317239,50.930329864804506],[6.041789149604357,50.93024199912852],[6.043524599460806,50.92969786273647],[6.044151018088157,50.929448099122304],[6.044414925833439,50.929340799894355],[6.044729217988293,50.92914682919715],[6.0448557195746,50.92905046711119],[6.044894440829692,50.92906274183952],[6.044998889285965,50.9289559877406],[6.045046702586337,50.928867533542004],[6.045309744438438,50.92851097120952],[6.045582249388088,50.92808010499597],[6.046945792749211,50.928344438420915],[6.047194559519707,50.928424820325766],[6.047526710612422,50.928575200043845],[6.048592765127412,50.92905155457286],[6.049147386740207,50.92938169739015],[6.049577966516074,50.92953204763321],[6.050870883261162,50.92990541676146],[6.050888823557541,50.92989576752655],[6.050893947249536,50.92989300547731],[6.051346982322812,50.92964928469526],[6.051949773515002,50.92933116274597],[6.052392219899857,50.929097665254154],[6.05325569886819,50.928641961762246],[6.053474042260782,50.92852615765378],[6.054570781899984,50.92794445014278],[6.055337595268922,50.92753771230332],[6.055683301696166,50.92737590882179],[6.056122021771233,50.92717056315346],[6.056160533633323,50.9271525422506],[6.055792604925782,50.926306731840505],[6.055663550333447,50.9260100298668],[6.055647837884464,50.92597390376323],[6.054651489817465,50.92367827049548],[6.054502068779626,50.92333815082496],[6.054022851636714,50.9222473331925],[6.054673729115759,50.92216391109632],[6.055606212723582,50.92204439519995],[6.055995336607514,50.92199453210514],[6.056836594640862,50.92188671580839],[6.056850577057375,50.92188492698159],[6.057003140788546,50.92186487043943],[6.057078684378048,50.92185493176215],[6.057481106946394,50.921802442780795],[6.057846962779628,50.92175471276795],[6.058764253546912,50.92163504367335],[6.058858392553609,50.9216227576475],[6.061818252743523,50.921236459837765],[6.062001586407177,50.921422902487016],[6.062279901455737,50.92163620741954],[6.062490961305076,50.921773317473686],[6.062563755971932,50.921820624521814],[6.062966659554372,50.92203499848671],[6.063286973408394,50.9218822014953],[6.063603694043349,50.921766819055165],[6.064483454920529,50.92144624788013],[6.065766517320427,50.92105840492946],[6.066377682120661,50.920888971693856],[6.066825246129601,50.920754744407134],[6.067371777629166,50.92072617534188],[6.06818430083031,50.920652999180646],[6.068209147766174,50.92066957260286],[6.068307724244224,50.920737740736904],[6.069743647472776,50.9217307690233],[6.069824109962848,50.921786404108865],[6.070030439891097,50.92192908364378],[6.070676021756762,50.92237469843197],[6.071775066879392,50.923133287834936],[6.07494853095222,50.92276695523201],[6.075366159591321,50.92274888557325],[6.075423479749029,50.92274640531473],[6.075446973418718,50.92274538467028],[6.075577545665597,50.92275593428478],[6.077464850231281,50.92257848507045],[6.077674948518251,50.922531711138795],[6.080280588062407,50.921951568579324],[6.081591464561223,50.921660285252855],[6.08212753544852,50.921541162452286],[6.083550384449059,50.92103562220776],[6.083557202679264,50.92103319907841],[6.083715676999418,50.92097689071927],[6.083839338507969,50.920932953916456],[6.084031331802707,50.92082945749863],[6.085075853493601,50.92026638952714],[6.085379351974042,50.92010279164947],[6.08683108195359,50.91937211207825],[6.087388379704528,50.91917358880019],[6.087642423792875,50.91909303750251],[6.089436005775818,50.91852520472439],[6.090016416023432,50.91936215914385],[6.090161523926639,50.919571532113046],[6.090331373089068,50.91965061082896],[6.090371218093804,50.91966916487032],[6.092472877173443,50.92064760937741],[6.093597147018846,50.92117098163063],[6.093608820074111,50.9211763847225],[6.093726052740394,50.92123069117258],[6.093988775210917,50.92094566144082],[6.094081263773476,50.92082796891255],[6.094149026191326,50.92070224730318],[6.094180595312351,50.920571892669],[6.094183956580347,50.920438294508315],[6.094158626651414,50.92030702900263],[6.094097655906822,50.92017930716529],[6.093536764409213,50.919219912439125],[6.093414853126573,50.91903118481966],[6.093350145035417,50.91893039869671],[6.09323731734004,50.91877394017104],[6.093148849570085,50.91866399520889],[6.093030541893961,50.918514572404916],[6.092330693429348,50.91770001545003],[6.092146657916174,50.91751192575313],[6.091969780966963,50.91736423400226],[6.09177440381432,50.917225823481054],[6.09158329632372,50.91710997617991],[6.091575775378114,50.917105410566606],[6.09154864836007,50.91708894590384],[6.091300229907306,50.91696811644352],[6.091037902981152,50.91686767736146],[6.089872515714112,50.91645290274433],[6.089562218258426,50.91633946578149],[6.089339209378116,50.916233849229855],[6.088933375174911,50.915924839786605],[6.088689990978401,50.91571318466568],[6.086983621707312,50.914247691404675],[6.086838685351781,50.91409458511635],[6.086741845063351,50.91390613054018],[6.086738385616993,50.91388611482583],[6.086710622536805,50.91372583682296],[6.086738124275627,50.91355299959654],[6.086742758486421,50.91352471894597],[6.086770525692027,50.913423963426915],[6.086806000515406,50.913221764635665],[6.086798606311214,50.913014961943844],[6.086744175902466,50.91281942826207],[6.086654453466976,50.91264072867946],[6.086644925226,50.912621819346796],[6.086497708958349,50.912411555985564],[6.086349919569479,50.91225828658153],[6.086036483762133,50.91201846404357],[6.085814332556528,50.91188299195195],[6.085136623957976,50.91153958247017],[6.085075572016274,50.911508641796466],[6.084863617523086,50.91140123318486],[6.083881774003551,50.910903689546934],[6.083154811898097,50.91054313533951],[6.082965598242355,50.91044970832416],[6.082833357030229,50.910378941508476],[6.082794951771445,50.910360843696694],[6.082761481051976,50.91034090940747],[6.082703935235727,50.910307483416574],[6.082547129532794,50.91021804083344],[6.082349062450724,50.91009257507484],[6.082268350052843,50.91003888287865],[6.082210995798069,50.91000396331085],[6.082198233829302,50.90999488910211],[6.082190362960151,50.909989605864986],[6.082177327234655,50.90998029059358],[6.082142989311976,50.90995275659037],[6.082107303812729,50.909925428429666],[6.08205627711975,50.90988579647221],[6.082017020012462,50.909853536759876],[6.081956379992494,50.909808083640456],[6.081926404838467,50.90978322908535],[6.081921397123978,50.90977829719075],[6.081901759090933,50.90976105722153],[6.08188141477669,50.9097422304256],[6.081849629455538,50.90971423155836],[6.081832834806939,50.90969697450723],[6.081816046203026,50.90968106577666],[6.081798908944037,50.90966560858978],[6.08177069754819,50.909639844500944],[6.081718556978127,50.909589432210076],[6.081702846756354,50.90957621370893],[6.081678560601003,50.909553356471484],[6.081642145111219,50.90951998291322],[6.081618929489876,50.909496454047904],[6.081601070558167,50.909481216901],[6.081583193832244,50.909461952758754],[6.081528541403986,50.90940614404366],[6.081501001904467,50.90937207895509],[6.081497063894549,50.90936736535014],[6.081483092120067,50.909349659835684],[6.081460229430194,50.90932500518889],[6.081435176472183,50.90929272297745],[6.081399756559874,50.90924608450609],[6.081349291929413,50.909181288489],[6.081312909462671,50.90913586928978],[6.081288023286492,50.90910047583182],[6.081274164891108,50.909079893113216],[6.081264564135924,50.90906637722242],[6.081254088710479,50.909048578795485],[6.081246404571602,50.909035824465676],[6.081197096576687,50.90895617151782],[6.081174875283295,50.90892307224102],[6.081146456197319,50.908883412161366],[6.081126000483685,50.90884858537574],[6.081116755265463,50.90883222679764],[6.081099641855563,50.908803159928716],[6.081087212013222,50.90878301807436],[6.081065217593578,50.908742285704186],[6.081047287503518,50.90871184839907],[6.08103332073077,50.90868497396014],[6.081002955913434,50.90863216552954],[6.080991223627551,50.90861112956541],[6.080984233462032,50.90859723843607],[6.080941028980944,50.908521593862716],[6.080909519769808,50.90846451347734],[6.080883821099821,50.90841661203481],[6.080851222357945,50.90835797406989],[6.080838003687628,50.908333567115164],[6.080815457481034,50.90829014128947],[6.080790981465134,50.90824222350865],[6.080759847225877,50.908181680048365],[6.080559919458858,50.907800303898846],[6.08034895485052,50.90733683353273],[6.080221482396081,50.90701794616044],[6.080101867339827,50.90669388783726],[6.079988402212701,50.90634368834641],[6.07997279952165,50.90629482735324],[6.079864125921477,50.90593978092518],[6.079813392992388,50.90577028131039],[6.07974130024164,50.90553196344778],[6.079718650159251,50.90543490931583],[6.079709578174998,50.90533698287238],[6.079714152098826,50.90523892081732],[6.079732340771145,50.90514149639423],[6.079763998908918,50.90504545655794],[6.07980888172789,50.904951548854314],[6.079851280069962,50.90488256468927],[6.079926248742966,50.904770903208544],[6.07994897423376,50.904771414352346],[6.079957801843315,50.9047238992637],[6.079945478032878,50.90470788263799],[6.079956010428837,50.904632760930475],[6.07999044723813,50.904492595078885],[6.080155947024807,50.90407648919903],[6.080190135414428,50.903881851074594],[6.080125325528885,50.90371207636184],[6.080102407574176,50.90369108933089],[6.080025581816136,50.90362071562986],[6.079933909138544,50.90353667751653],[6.07991351905642,50.90351360782957],[6.079904842344289,50.903361385122615],[6.07995384595634,50.90332064094678],[6.079989536099392,50.90318828807156],[6.079909414794355,50.90291675889596],[6.079790278070686,50.90271683636426],[6.079601410806892,50.902483442307016],[6.07920980717213,50.901887383706665],[6.078712639616221,50.901303910300854],[6.078174649642662,50.90051806529508],[6.077760678061568,50.89986865066429],[6.077448393862615,50.89921242549058],[6.077398353107548,50.899107282417326],[6.077365563091296,50.89887214455079],[6.077364478397469,50.898580276372215],[6.07736235748463,50.89798930354117],[6.077362318470133,50.89797811239931],[6.077271040192674,50.89724281280856],[6.07726725937234,50.89721804354585],[6.077317347809826,50.89702446207805],[6.077236613527471,50.89689399110951],[6.077206056215603,50.89684461671132],[6.076770618714923,50.896452216027456],[6.07669098173209,50.89637613092151],[6.076694689770004,50.89632927584399],[6.076681554678462,50.89630342070717],[6.076690742933478,50.89621608221931],[6.07669682135419,50.89608030227043],[6.076660601557993,50.895924611973676],[6.076620916670812,50.89581298868682],[6.076587296149659,50.89568290168549],[6.076559397477144,50.89562774929594],[6.076556257765615,50.89560495378452],[6.076488248856884,50.89540957742138],[6.076475307029216,50.89521061888489],[6.076482772090169,50.89514784878113],[6.076482583283056,50.8951151387361],[6.076476539652171,50.89507964101361],[6.076466580876128,50.89504943420471],[6.076464592856257,50.89504574255947],[6.076463728190905,50.89503254279015],[6.076436254108684,50.89492093658095],[6.076429061703044,50.89489514489074],[6.076460332843736,50.894859002353655],[6.076489944084896,50.894822114617945],[6.076509449287991,50.894791885060265],[6.076533415128399,50.89475005101618],[6.076545040827171,50.89472328424634],[6.076546030216385,50.8947210041197],[6.076553165473622,50.89469907325195],[6.076554004229528,50.89465615450675],[6.076551904758037,50.89464021144575],[6.076548362385181,50.894630452463616],[6.076525485918384,50.89459752704122],[6.076517100413694,50.894590871174465],[6.076506263291681,50.89458661201511],[6.076462639285601,50.89457684016538],[6.076444784340744,50.894574726253495],[6.076427492442977,50.89457606078113],[6.076354551431931,50.89458666196451],[6.07632121562516,50.89459391696259],[6.076156789361507,50.89459822230345],[6.076093716066016,50.89450502187701],[6.076145771559694,50.894394730786885],[6.076160160683564,50.894377907470684],[6.076169937368514,50.89436536344632],[6.076189364505189,50.89434229868417],[6.076216994954667,50.89430507224272],[6.076223537067574,50.89429198116918],[6.076227596701488,50.894282078018],[6.076229534960614,50.894273841488335],[6.076229266585259,50.89426154606055],[6.076226288575863,50.89424863753845],[6.076217953344886,50.894235805870736],[6.076205548887242,50.894225551330884],[6.076189492752334,50.89421632531334],[6.07611364058863,50.89418219617375],[6.076096536794307,50.894178972081775],[6.075945585911255,50.89414984748807],[6.075922698959412,50.89414290936723],[6.075805094819301,50.89410726674427],[6.075778507200945,50.89406558995242],[6.075752123679216,50.8940242535239],[6.075787904313168,50.893919614703435],[6.075804524407886,50.89390276017338],[6.075816146253238,50.89389291090055],[6.075837690034259,50.893876458530336],[6.075884481870538,50.89383937878167],[6.075899954389334,50.8938218209344],[6.07590651826952,50.89381210064468],[6.075909494305391,50.89380769626817],[6.075923032907463,50.89378243732322],[6.075931240091634,50.893752302095606],[6.075924286437613,50.893725331388985],[6.075908730071653,50.89370001195136],[6.075886189182745,50.89366665293443],[6.075863184869936,50.89364035307945],[6.075816589335885,50.8935960627357],[6.075706301990054,50.89349326418711],[6.075602758475822,50.89341000356205],[6.075364989001986,50.89313753980715],[6.075254359610544,50.893057476188],[6.075181736904202,50.892952646313965],[6.075206066805356,50.89278233883304],[6.075296421827522,50.89270332696279],[6.075422344797496,50.89263632852642],[6.075552528532007,50.89255959641965],[6.075689072814439,50.89249963583811],[6.075746732619693,50.8924489539413],[6.075783324419255,50.892412276526855],[6.075824412300237,50.89237975224541],[6.075862836552009,50.89234779213902],[6.07590139701864,50.89231830319842],[6.075935548862756,50.89229245409341],[6.075966453859396,50.892264269178725],[6.075999895510428,50.89224131875845],[6.076026518057073,50.89222047641722],[6.076114654910932,50.89215301905263],[6.076131393405655,50.89213748515893],[6.076139441689218,50.892127252627496],[6.076170928896195,50.89207709494209],[6.076189599932287,50.89202622254776],[6.07619401944668,50.89197177649186],[6.076194374853971,50.89189542135141],[6.076196928689334,50.891850263111564],[6.076198776156241,50.89182925367769],[6.076200243331061,50.89180083952853],[6.076203741302369,50.89176945588458],[6.076213970391278,50.89173292636454],[6.076221665950198,50.891708556146334],[6.076228213453241,50.89168535235409],[6.076244197401599,50.891651611114774],[6.076259869429697,50.89162555737233],[6.076263934398905,50.89161793740731],[6.076288934164803,50.89157882093515],[6.076298411216448,50.89156242237895],[6.076299690015952,50.89155953826365],[6.07630194704302,50.89154790197137],[6.076302630226415,50.89154319662634],[6.0763024561478,50.89154009643976],[6.076300249061051,50.89153218124233],[6.076284076866391,50.891509373473156],[6.076272584691083,50.89149734266583],[6.076258826269192,50.891484875904425],[6.076240368809463,50.89147276073824],[6.076204422263366,50.89145438549218],[6.076192502594588,50.891447049509445],[6.076165475421769,50.89143781692672],[6.076125184553312,50.89142261370004],[6.076097205508348,50.89141435758835],[6.076067841952778,50.891406658047316],[6.075996825913255,50.89138775447593],[6.075960259058943,50.891378299989526],[6.075900024804695,50.891360941201334],[6.075857148351405,50.89134579822118],[6.075816075255025,50.89133054561019],[6.075780938814137,50.891317882449165],[6.075746535580142,50.8913057812235],[6.075716065971672,50.89129442064363],[6.075669105704916,50.891276074831715],[6.075628993270214,50.891258515239564],[6.075602445021694,50.89124706836886],[6.075541621969076,50.89121685855331],[6.075440236358289,50.89116652085829],[6.075388381465251,50.89114491406202],[6.075378639750707,50.891134931246306],[6.07537763423156,50.89112943592795],[6.075378775964369,50.8911135095225],[6.075380559018941,50.891098657987946],[6.075380672382127,50.89107856677989],[6.075383389338675,50.89106057250976],[6.075383264648535,50.89104549860956],[6.075383592026648,50.89102737473093],[6.075377899485572,50.89100583487027],[6.075375813850161,50.89098409376991],[6.075376091280404,50.890961655443014],[6.075382102315385,50.890913824886546],[6.075389305392371,50.8908916779514],[6.075396932240165,50.89086649019467],[6.075401129608043,50.89084961074808],[6.075403916541401,50.89082198878526],[6.075406143859572,50.89079496342938],[6.075410031684788,50.8907744722248],[6.075409276024597,50.89075137485434],[6.075409198341675,50.89072799478958],[6.07540636047582,50.890709188596645],[6.075407460018321,50.89069807158529],[6.075404935079678,50.89068501652451],[6.075401747428322,50.89066658096374],[6.07539803531604,50.89064823841366],[6.075390174193137,50.89063282401195],[6.075370923713714,50.8905826357992],[6.075366408577442,50.890573367980075],[6.075366833543149,50.89056467303762],[6.075371252091808,50.89055406663526],[6.07537359387399,50.890549072767975],[6.075383371179763,50.89053947721437],[6.075397465668574,50.890531572884065],[6.075408686325792,50.8905244227525],[6.075418513439153,50.89051913265588],[6.075428859839636,50.89051244616561],[6.07544478896065,50.89050176228549],[6.075456479534846,50.89049371943703],[6.075468297106176,50.890484660068736],[6.075483826861989,50.890470059332316],[6.075494830075963,50.890458802488865],[6.075509772958161,50.89043914440414],[6.075516697278781,50.890421197007235],[6.075522623878627,50.89040687813534],[6.075524485941557,50.890385877616055],[6.075529880475329,50.89036731907685],[6.075532933383818,50.890353763396135],[6.075539210098064,50.890343874043076],[6.07554628824567,50.89033053711318],[6.075556658862894,50.89031688395102],[6.075562953311482,50.890309142874784],[6.075577608733875,50.890295005770255],[6.075588419410148,50.890286096206395],[6.075604007664475,50.89027447947093],[6.075616021025459,50.89026521217383],[6.075632502814531,50.89024965291146],[6.075645491157795,50.890238096589094],[6.075649197752871,50.890234092378094],[6.075668653780421,50.89021306804245],[6.075694067805196,50.890177931383874],[6.075705271861396,50.890162987812815],[6.075713379858182,50.89014818851595],[6.075732915551948,50.89011341943285],[6.075741487603376,50.89009637909746],[6.075742824050894,50.89008590788437],[6.075747443426981,50.89007161475992],[6.075751120179675,50.8900617858168],[6.075755215324939,50.89005237686848],[6.075761691634148,50.89004444592853],[6.075771956561673,50.89003611489526],[6.075787562440567,50.890026646413425],[6.075801601767645,50.89001791536848],[6.075817398827365,50.89001174472702],[6.075831318378175,50.89000833591099],[6.075844637469522,50.89000468796367],[6.075861745041841,50.89000063093064],[6.075877308902524,50.88999598081925],[6.075893187132541,50.88999144569177],[6.075913155793906,50.88998100736691],[6.075931802993531,50.88997058589583],[6.075958880330282,50.889954603935905],[6.07597572054795,50.88994213472391],[6.076012156234211,50.88991611917711],[6.076034197669289,50.889897901945915],[6.076070876455426,50.88986339926628],[6.076096278630538,50.88984086524102],[6.076109817717197,50.88983004268805],[6.076134682958039,50.889806765760675],[6.076157686134544,50.889780605443285],[6.076175913689334,50.889756325311396],[6.076193120207797,50.88973219508317],[6.076216702297772,50.88970196825342],[6.076234196756888,50.889677135157584],[6.076246899506612,50.889655009340885],[6.076264741220609,50.88962200312214],[6.076277800391318,50.88959518289282],[6.076287565653309,50.88957430607104],[6.076300290290269,50.889537429081095],[6.076318767696424,50.88948508361261],[6.076329206811752,50.88944838203847],[6.076340117530958,50.88939467935347],[6.076343065599315,50.88935692574296],[6.076343841791399,50.88932315823366],[6.076342517877795,50.889291515663885],[6.076344069036908,50.88925348272619],[6.076343392043557,50.88922424536856],[6.076346140261258,50.88918452434604],[6.07634659174924,50.88913372451504],[6.076351569958627,50.88910346466884],[6.076355395020932,50.88905398410743],[6.076361465047661,50.889027376300604],[6.07636947949208,50.88899964226594],[6.076384660163364,50.888955927941566],[6.076396632149983,50.88892196787828],[6.076408708974983,50.888893139938595],[6.076428414688839,50.88885172681108],[6.076449111617991,50.88881580008539],[6.076473145051629,50.88878252322281],[6.07649095842367,50.888754326280264],[6.076515419633914,50.888724966086855],[6.076541811144473,50.88869448873087],[6.07657105349826,50.888664587655846],[6.076596027513959,50.88864294598581],[6.076621520604831,50.888619898924134],[6.076650370733083,50.88859038669579],[6.076678956260343,50.888565055947225],[6.076705362780415,50.888547999120846],[6.07673205738235,50.88853024841389],[6.07676139750491,50.88850978521345],[6.076784421813013,50.88849273954263],[6.076805231681122,50.88847968023106],[6.076827505268443,50.88845994231108],[6.07684714049028,50.888447213601054],[6.07686784743549,50.88842820413815],[6.076886405252568,50.888411841278526],[6.076900504839897,50.88839480385276],[6.076915426462898,50.88836522179357],[6.076929127842797,50.88833863137448],[6.076940815660215,50.88831234061043],[6.076948123904697,50.888289698549706],[6.076956752656318,50.88826221250315],[6.076962818503559,50.88823344731542],[6.076967439979351,50.88820789084368],[6.076972158144579,50.888178333666275],[6.076975581068695,50.88816008345317],[6.076981624088662,50.8881326487805],[6.076986498831757,50.88811550455196],[6.076996457385186,50.88808666221405],[6.077012169201828,50.8880471784814],[6.077024214652321,50.88801056614199],[6.077061192148707,50.88792761035927],[6.077090651845019,50.887872304787734],[6.077110672261149,50.88784444515686],[6.077124057771766,50.88782337587695],[6.077140129362586,50.88780041186134],[6.077152220905181,50.88778501340029],[6.077184645891498,50.887747506421185],[6.077202104599919,50.887731797277844],[6.077222729849918,50.88771115222933],[6.077245447816525,50.88769266105453],[6.07727673288827,50.88766544432722],[6.077313226118961,50.8876367852365],[6.077337966109205,50.887616663949515],[6.077356868087429,50.88760340018285],[6.077378488161997,50.88759038986619],[6.077406579079373,50.88757293629686],[6.07741549416391,50.88756944029142],[6.077430479540848,50.88756322932392],[6.077451958416221,50.88755123559909],[6.077479546584819,50.88754295384715],[6.077498361099435,50.88753716947203],[6.077528216924653,50.88752657297737],[6.077552285722153,50.88752148534823],[6.077572195601689,50.887521492363426],[6.077592174522513,50.887522316967015],[6.077608909578717,50.88752384409753],[6.077637844488698,50.88753058396772],[6.077671702489168,50.88754439579561],[6.077695837219644,50.887559919644374],[6.077708773500185,50.887572579908785],[6.077738812768768,50.88761428058225],[6.077753208206163,50.88767520335216],[6.077751891518099,50.887714583270736],[6.07774491794404,50.8877548599105],[6.077701601800737,50.88789008016213],[6.077702653830882,50.88790534628511],[6.077707773686684,50.887923698337296],[6.077722643537567,50.88795259926805],[6.077734858074349,50.88797021680775],[6.077761799976365,50.887992897150596],[6.077778783944629,50.88800252190925],[6.077795677137958,50.8880089201369],[6.07789112745536,50.88803512860968],[6.07795783881545,50.88804013266066],[6.078004520540937,50.88803712120255],[6.078046267042871,50.888030040192994],[6.078162864149057,50.887994394300385],[6.078209689149483,50.88797718818598],[6.078291257333928,50.88793501861953],[6.078363574932404,50.8878919694093],[6.078462683069067,50.887834818026015],[6.078615242788677,50.88772939045123],[6.078643631614754,50.887702415389896],[6.078769492683866,50.887555473945625],[6.078831569306396,50.88746815164861],[6.078868809997316,50.8873925916927],[6.078879663098082,50.887359033573674],[6.078885987515018,50.88732863971508],[6.078891104055121,50.88726306991751],[6.078891196534315,50.88724548677266],[6.078889586394862,50.88722808460152],[6.078876860977601,50.88719246516067],[6.07884355924889,50.88712744870128],[6.078830098347908,50.88709205837983],[6.078817987247073,50.88705189578688],[6.078811261542475,50.8870174000528],[6.078813936961983,50.8869491840953],[6.078816455904397,50.886942768826486],[6.078830024010683,50.88692542871146],[6.078851464959549,50.886909039303085],[6.07896951264547,50.88685563052651],[6.078988144252505,50.88684999981518],[6.079229277155055,50.88680642568022],[6.079252837359922,50.88679872492287],[6.079274061436922,50.88679160444907],[6.079294677297526,50.88678087401032],[6.079310444192836,50.886767089336516],[6.079331931246994,50.886743346515075],[6.079336510958829,50.88673504917976],[6.079338768762678,50.88672733204886],[6.079338365029586,50.8867183903547],[6.07933614649022,50.8866964253898],[6.079320413326883,50.88666875234211],[6.079302432073979,50.88664659404593],[6.079293321238727,50.88663792917741],[6.079098032694412,50.886470426893524],[6.079081805040917,50.88645243798473],[6.079069832460982,50.886433902256485],[6.079063013743393,50.88641410419852],[6.079061670828579,50.88640317255122],[6.079067931744113,50.88636189331641],[6.079104524790224,50.886331498168],[6.079180448694165,50.88626944197821],[6.079239489929939,50.8862168803122],[6.079274314961283,50.886185156318206],[6.07934851027494,50.88611492132987],[6.07935018399182,50.8860976073829],[6.079352300073799,50.886073764734654],[6.079355171766191,50.88604913551693],[6.079353241196788,50.88602076862221],[6.079342205543664,50.88598696389986],[6.079329556707219,50.88596216687396],[6.079311134755393,50.88593807857078],[6.07928842845271,50.88591447434222],[6.079263969950553,50.88588963111462],[6.079223865328725,50.8858495641436],[6.07919718996135,50.88582091381725],[6.079175375673321,50.88579898518361],[6.079140505554377,50.88576874786187],[6.079110743645255,50.88574370261344],[6.079085651790284,50.88572210818659],[6.079081542380572,50.885719085478556],[6.079060737019907,50.88570380268924],[6.078981944828024,50.88564997108414],[6.078964264661546,50.88563555950267],[6.078957410188399,50.88562001347629],[6.078946359358465,50.88560228123885],[6.078921686307838,50.88558112473612],[6.078889825087621,50.885558222392646],[6.078851079671467,50.88553584661574],[6.078808045231967,50.88551744266699],[6.078770600965535,50.88550415600671],[6.078730205525771,50.88549212746819],[6.078697344992941,50.88548412591057],[6.078655337736409,50.88547549585589],[6.078626433006381,50.88546689533042],[6.078568870862158,50.885448173629484],[6.078510439385741,50.885426427784616],[6.078470004661259,50.88540795423867],[6.078422245709031,50.88538528161556],[6.078388499153685,50.885366471433315],[6.07834823910786,50.88534351126327],[6.078311717367335,50.88531585443431],[6.078286321083609,50.885297623562046],[6.078263274715608,50.885273077317215],[6.078252915483746,50.885260716337434],[6.078246570652877,50.885250731449894],[6.078242917511013,50.885240191137164],[6.078233140700145,50.88522591200742],[6.078224886087691,50.88520793827041],[6.078222904704543,50.885191347324934],[6.078222792480926,50.8851819274666],[6.07822176171535,50.88516999616084],[6.078222020056729,50.885155890791395],[6.078222718290123,50.88514650204733],[6.078225320512821,50.88513519624856],[6.078241739938413,50.885103267910054],[6.078246641344915,50.88509176859311],[6.078254762125388,50.88507698701457],[6.078261972780009,50.88505835456896],[6.078266301433616,50.88504180682471],[6.078270847986,50.885029383754215],[6.078275891750786,50.885011240674366],[6.078280654482166,50.88498950365173],[6.078282106163225,50.884971570804005],[6.078286702915032,50.88493396010314],[6.078290613043707,50.88491698338402],[6.078296330169311,50.884902063350324],[6.07830697261203,50.884887716153585],[6.078317810056275,50.88487881515752],[6.078326420624634,50.88487304666859],[6.078341408802916,50.88486899293565],[6.078356734084046,50.884863723664054],[6.078366136265574,50.88486148314013],[6.078398527571014,50.88486474137312],[6.078413076782396,50.884869355702406],[6.078420778831494,50.88487316597852],[6.078434090270934,50.884878632673406],[6.078445084256265,50.88488211764662],[6.078456615254289,50.88488635448995],[6.078472312301753,50.88488980236388],[6.078489520837021,50.88489169508463],[6.078508792079542,50.88489278443751],[6.078525119164778,50.884890844095075],[6.078540589096069,50.8848866975663],[6.07855459885011,50.88488278448972],[6.078569350133895,50.88487809392035],[6.078579412566886,50.884873440365794],[6.078596860244272,50.88486470657877],[6.078609663245245,50.88485896694193],[6.078623372849781,50.88485493879348],[6.078642330796058,50.88485027700204],[6.078652137393559,50.884848474500764],[6.07867297613771,50.884843199193995],[6.078717059981209,50.88484058050643],[6.078731669977081,50.88483689753509],[6.078745224097758,50.88483387707581],[6.078756674744035,50.88483083323551],[6.078765011812563,50.88482578547328],[6.078775774967978,50.88481952766016],[6.07877998282152,50.884813929286636],[6.078785032683734,50.884805719052586],[6.078789236853143,50.88479797231672],[6.078790475797886,50.884791492789404],[6.078792380523287,50.88478392160552],[6.07879519631483,50.884774556152145],[6.078800668204391,50.88474989342408],[6.078807797173726,50.88472961643492],[6.078817812674519,50.88470375796037],[6.0788258373117,50.8846873139406],[6.078837127782484,50.88465929046736],[6.078845812338314,50.88462139461585],[6.078852592038603,50.88459106096034],[6.078854867325519,50.88456834999162],[6.078858646605505,50.88451030304461],[6.078873295534961,50.884464542057685],[6.078881696944381,50.88445334538867],[6.078890753601,50.88444320550893],[6.078907177507277,50.88442683710032],[6.078919871673651,50.88441382593423],[6.078932380518737,50.88439887423929],[6.078943905150362,50.88438272389591],[6.078952648460617,50.884366832890336],[6.078967330873408,50.88433663174432],[6.078976466372812,50.88432036085094],[6.078994629784189,50.88429393226261],[6.079020014430066,50.884265770536494],[6.079045316476567,50.88424159144995],[6.079068473532836,50.88422221635481],[6.079077351905252,50.884214414680876],[6.07909172976398,50.88420662505378],[6.079105648332686,50.884197579704725],[6.079118615073479,50.8841895018769],[6.079128622312968,50.88418402161098],[6.079140222416267,50.88417863069461],[6.079152255365934,50.884173677651276],[6.079163747734309,50.8841658333651],[6.079173659327537,50.88415870867047],[6.079188834378036,50.884145314080705],[6.079211035805741,50.88412475811878],[6.079640855793098,50.88367886347963],[6.079644992081373,50.88367229468443],[6.079664267302072,50.88364613799321],[6.07968155126958,50.88361700885438],[6.079697123849384,50.883581768412995],[6.079715344309583,50.8835411546386],[6.079731619383127,50.88348733859854],[6.07973704308315,50.883450001545164],[6.079739570535794,50.88340523889564],[6.079739324078114,50.883357427587654],[6.079716553608175,50.88326108439996],[6.079712620858071,50.88324326467294],[6.079698154900965,50.88320619952193],[6.07966762577373,50.883167774314465],[6.079638493568829,50.88313533643575],[6.079562585540021,50.883064130112395],[6.079523490612287,50.883027769692134],[6.079491991262685,50.88299191212772],[6.079453024733024,50.882943226921626],[6.07944263153895,50.882912429701925],[6.079420514315617,50.882829305449924],[6.079395615714483,50.88271506874387],[6.079397362204896,50.88262091592258],[6.07941537609437,50.882544643852476],[6.07945052497378,50.882473959295275],[6.079496296562814,50.88240287854881],[6.079526442343041,50.88236916892915],[6.079580337006765,50.882308233112404],[6.079599111272751,50.88228376937188],[6.079637005493318,50.88223040820784],[6.07967988308516,50.882185323081174],[6.079718288286936,50.88216612622771],[6.07977869628435,50.88215401581946],[6.079841774391798,50.882158914659115],[6.079912768283413,50.88218762300675],[6.080001874812246,50.88223121656117],[6.080043235062453,50.88226420134123],[6.080060991847483,50.882301831023064],[6.080062558484663,50.88237041711741],[6.080060632766088,50.88244965818507],[6.080099550755736,50.88253874928056],[6.080143035435105,50.88260066605714],[6.080221847721936,50.88265609678357],[6.080263963185347,50.882680645228156],[6.080314559523696,50.882699344894014],[6.080365949521915,50.882713158724314],[6.080413968226829,50.88272198583409],[6.080483705154587,50.88273120410903],[6.080514918853531,50.88273372271097],[6.080558667396613,50.88272972999754],[6.080630657609726,50.88271957225025],[6.080666328239013,50.88271133115767],[6.080709604710037,50.88269669817556],[6.080713257337279,50.88269485149564],[6.080764002642733,50.88265899549346],[6.080813010320449,50.88261054723312],[6.080852621394925,50.88255519777765],[6.080900355446853,50.88249004646328],[6.080947770971537,50.8824207171284],[6.081003864304282,50.88235206383208],[6.081071121069931,50.8822878110969],[6.081145255026475,50.882237773702265],[6.081245001940778,50.88218445437319],[6.081325697074682,50.88216357394326],[6.081357570058356,50.882155121711335],[6.081391670752291,50.88215593280563],[6.081422651877854,50.88216381003462],[6.081437476267769,50.88217164940051],[6.081461862948136,50.88218133704571],[6.081512485416011,50.882196098823705],[6.081579295134866,50.88221577030231],[6.08164602086378,50.882238363690156],[6.081733501167063,50.882272895724235],[6.081791495546748,50.88230260685859],[6.081873605843389,50.88236750011382],[6.081914088975497,50.88240253900411],[6.08194495696043,50.88242842185423],[6.081978687135233,50.88245281329755],[6.082024715197422,50.88247480268673],[6.082085723533417,50.88249796052489],[6.082146321527415,50.88251744427254],[6.082204025190606,50.882528702415684],[6.082306176999066,50.8825418867388],[6.082378980051208,50.88253953450623],[6.082452827309904,50.882530074595856],[6.082537154751639,50.8825069422002],[6.082609217236016,50.882475164101656],[6.082663345501788,50.88244422191156],[6.082722174550103,50.882405547805654],[6.082756350028815,50.88238106284181],[6.082830351767822,50.88232422942819],[6.08291547729037,50.88224456876201],[6.0829315243569,50.88222596376531],[6.082946944644943,50.8821949666266],[6.082971979173171,50.882138077098865],[6.082963245756188,50.88208455485448],[6.082944936994608,50.88204911327028],[6.082911883038417,50.88201962124492],[6.082868686514142,50.8819912689035],[6.082815017957115,50.88197900701827],[6.082682942493876,50.88195165655569],[6.082621593058173,50.881936977766216],[6.08254934751937,50.881913950695726],[6.082460368102261,50.88187231794678],[6.082418865254441,50.88184601375198],[6.082378986934335,50.881815286151145],[6.082320008986491,50.881761697300135],[6.082289672932875,50.88172390984351],[6.082250692340134,50.881668735559025],[6.082244064536952,50.881646554440614],[6.082262758589695,50.88163767776765],[6.082298798000437,50.881634198151076],[6.082333092614166,50.88163564602399],[6.082382432660054,50.8816312684365],[6.082424749940839,50.88162099127561],[6.082529630914391,50.88159085870099],[6.082581786326619,50.88157526373741],[6.082653775910559,50.88154724346977],[6.082746197902423,50.88150784598266],[6.082804071533872,50.88147659354855],[6.082851034419554,50.88144642247429],[6.082908636697892,50.881399962134715],[6.082995096361001,50.88133166453627],[6.083109319178059,50.88126044018473],[6.083192988882296,50.88122492433743],[6.083254828588442,50.88120044353597],[6.083340101777934,50.88116668877551],[6.08340223995124,50.88114316792736],[6.083433554192086,50.88112692496968],[6.083485269818634,50.88110009592105],[6.083495386415554,50.88109535171725],[6.083569899166348,50.88106040309883],[6.08364500053111,50.88102775208636],[6.083708435441805,50.881008277328895],[6.083749740689609,50.88099406856728],[6.083801198417965,50.88098033798651],[6.083896868039467,50.88096143304148],[6.083956441451064,50.880955411060654],[6.084010401404855,50.880950276829694],[6.08405420059069,50.88094222841607],[6.084097897598772,50.88093305696932],[6.084134393931896,50.88092222097544],[6.08416820793901,50.88090782348907],[6.084222580714962,50.88088481642352],[6.084259830643332,50.88086835768684],[6.084301029379049,50.88085464376735],[6.084328972262597,50.88084667284095],[6.084344717984944,50.880843036242695],[6.084374734384899,50.88083594272335],[6.084391652719473,50.88083280243751],[6.08441754263706,50.88082720798736],[6.084448035014428,50.88081681259518],[6.084508533433345,50.880797696683594],[6.084552984110801,50.88078292033672],[6.084589669884905,50.880768640246735],[6.084642524285781,50.88074013184507],[6.084688414726094,50.880716240847356],[6.084725449961562,50.88069592694823],[6.084795191417462,50.88065373416172],[6.084884919012876,50.880593244893845],[6.084905601812197,50.88057308351377],[6.084919392388976,50.880553808680304],[6.084939431524567,50.880522055291486],[6.084952263972446,50.880491064501804],[6.084959442075184,50.88046955532428],[6.084961960603474,50.8804415122451],[6.084959403428475,50.88042457430819],[6.084959008809564,50.88042196087287],[6.08495474147681,50.880399972413315],[6.084946022980753,50.88037207802859],[6.084942137873271,50.88034810966979],[6.08493748635271,50.88032325601777],[6.084939486059654,50.88029284295772],[6.084941172505778,50.880275582780214],[6.084941455247939,50.88027265963045],[6.084962076661329,50.88024278143776],[6.084985173730384,50.880215009722804],[6.085005196498907,50.880199149076425],[6.085024916985045,50.88018397341879],[6.085049901275602,50.88017394369462],[6.085071907655901,50.88016430947438],[6.08510821700893,50.88015526312097],[6.085207029123392,50.88014137199348],[6.085217138653229,50.88013995363204],[6.085315376847062,50.88012098705731],[6.085406726708003,50.88010127993537],[6.08547623957544,50.88008453613839],[6.085520527401334,50.88007315826336],[6.085595320621166,50.88005135762796],[6.085695695876812,50.88001490309315],[6.085777772382587,50.87998613677632],[6.085834113058418,50.87997219600937],[6.08588699757449,50.87995708953816],[6.085937359070146,50.8799452163688],[6.08602399819787,50.87992880923459],[6.086074006399985,50.87992459681875],[6.086137930841153,50.87991888900007],[6.086174637092074,50.87991639293615],[6.086205015258463,50.879912613715],[6.086251654486578,50.87990265959666],[6.086273943507019,50.87989765280355],[6.086302362146299,50.879889256035334],[6.086333501637827,50.87987661795468],[6.086387146899882,50.879816884963034],[6.086438178950434,50.879760062222445],[6.086469622904893,50.87972432038059],[6.086482544001515,50.879709626045724],[6.086540672989576,50.87964198246621],[6.086681171658662,50.879450357999616],[6.0866927652722,50.879431509734744],[6.086781374714585,50.879284191422286],[6.087208252038206,50.87847387852538],[6.087089503437469,50.878240198483724],[6.087025675980573,50.878114944639044],[6.086533850190665,50.87755108758371],[6.086321880788805,50.87743259892644],[6.085452981429394,50.87669173841989],[6.085073788452638,50.876368407597404],[6.08545878751296,50.87604617213077],[6.085694182271278,50.875848636352],[6.085720739043369,50.87582246161666],[6.086035420898432,50.875540047939836],[6.08631644808612,50.87518467490022],[6.086632435592938,50.87465631102953],[6.086662269893282,50.8746064210922],[6.086726537998948,50.874558129668195],[6.086735084596559,50.87454080099981],[6.087291344789965,50.87341391036624],[6.088102386510639,50.87242694285747],[6.088073365215603,50.87229291209278],[6.088066855691118,50.87229083911587],[6.087977673592047,50.87225463230709],[6.087798611660462,50.872183022738525],[6.087359663486154,50.87200747310581],[6.086244320416377,50.8715613968354],[6.086140889793992,50.871476086629805],[6.086346232788167,50.87121685938391],[6.086535598216435,50.871066226319975],[6.086593190525947,50.871004213078386],[6.086618792980729,50.870931067081145],[6.086626133886606,50.870904495971416],[6.086675231208179,50.87072685388108],[6.08672172141473,50.87044719274341],[6.08672495285635,50.87036583121081],[6.086732943157278,50.87016504822389],[6.086706114584383,50.86988430245798],[6.086642958555962,50.86960611357866],[6.086541349150972,50.86933076405779],[6.086406339929866,50.869063616674595],[6.08623535566477,50.86880342841358],[6.086203222276727,50.86876008865528],[6.085781854771072,50.8681918029154],[6.085772299271026,50.86817892538956],[6.085587219286653,50.86792930259802],[6.085475351704955,50.867778431676506],[6.085471654110635,50.86777343811142],[6.085419338373323,50.86770288429363],[6.085279153590326,50.86751380988761],[6.085201246385403,50.86740873967678],[6.085123484280559,50.86730384832056],[6.084877567531308,50.86695305122815],[6.083752227604514,50.865345392335676],[6.083465969279985,50.86493641549158],[6.083461367765511,50.86492984523385],[6.083396583520796,50.86483732444955],[6.083188253247385,50.86481195302366],[6.083087375271093,50.86479966088392],[6.08302944424561,50.86479261152141],[6.082706941190485,50.864747359282624],[6.082401249286493,50.86470446807494],[6.08212603309933,50.86466585147847],[6.081940250003265,50.86463978497985],[6.08184711438501,50.8646294138448],[6.081579573676721,50.86459961304661],[6.081537622880933,50.864595415382034],[6.081027115951254,50.86454436568644],[6.081026936630689,50.86452955280465],[6.081025065748591,50.86438003115004],[6.081022185581016,50.86414892192732],[6.081013429532139,50.86344502383584],[6.081010664959821,50.86323489437193],[6.081005501230285,50.86284091724189],[6.081005395858982,50.86283293559633],[6.081004628108285,50.8628110788295],[6.081004155206196,50.862797526177204],[6.081043455860185,50.86268088213137],[6.081043455052216,50.86268082820189],[6.081042640926347,50.8626482927203],[6.081040567741573,50.862563951900356],[6.080973868250577,50.86253550626132],[6.080470208371827,50.862320713511764],[6.077827239251399,50.861177572041505],[6.077746426200369,50.86114057038314],[6.077670131970586,50.86109990111909],[6.07759880003778,50.861055777347445],[6.077532789198062,50.861008448628574],[6.077480043816832,50.86096491495719],[6.077431813070638,50.86091934076449],[6.077389033050919,50.86087354524511],[6.077358528102327,50.86084515115024],[6.077339194929048,50.86081921628747],[6.077318080032605,50.86078808739725],[6.077298581880371,50.86075584320079],[6.077268037741892,50.86069525953494],[6.077253675443828,50.86065977558867],[6.07724205219573,50.86062510228642],[6.077218294034729,50.860527128613846],[6.077041426561339,50.859762407010344],[6.076997308792497,50.85957328896847],[6.076930265555761,50.85928382810158],[6.076809723843324,50.8587655015508],[6.076742868887345,50.85847803503631],[6.076751253734161,50.85847840751451],[6.076297192329713,50.85652129572288],[6.076047559581339,50.85544526636771],[6.075939114892772,50.854923523039616],[6.0758047324873,50.854276968408286],[6.075460091440353,50.852618744018415],[6.075338617349746,50.85203248251392],[6.075038700094611,50.85058490081633],[6.0748735985409,50.849787988538026],[6.074758762109083,50.84923368803957],[6.074242161068437,50.84673268176764],[6.074170977228479,50.84653786281481],[6.074083258551521,50.84654935070289],[6.074051900446496,50.846560323878776],[6.074047138074853,50.84656184435636],[6.074036779953578,50.84656517791182],[6.073754976211391,50.84668269371353],[6.073728023508964,50.84669393727499],[6.073619716275796,50.84673799752287],[6.073479342795506,50.84679510237194],[6.073470964007047,50.84679882863245],[6.073432173366252,50.84681608415838],[6.07315406505665,50.84693981494151],[6.073103989690878,50.84696209926948],[6.072992986344867,50.84701210769043],[6.072943374912257,50.8470331307301],[6.072688206092198,50.84714129910697],[6.072685666370402,50.847142383863094],[6.072607546847225,50.8471789830194],[6.072559263110743,50.84719955755781],[6.072432528929174,50.84725357792131],[6.07241571023847,50.847260760979744],[6.072415089402618,50.84726102534195],[6.072260166906832,50.847313855252594],[6.072186717762118,50.84733890249423],[6.072103591048661,50.847367243081614],[6.071980073871542,50.847409387340434],[6.071821689240484,50.84746340574373],[6.071751517392641,50.84748734562384],[6.071650480488332,50.84751727513311],[6.071649307133353,50.84751762366394],[6.071436517461613,50.84758068301699],[6.071274846500385,50.84762858060367],[6.071111436588684,50.84767700961535],[6.071072093288501,50.847688676429975],[6.070986377430877,50.847719656325815],[6.070779947186658,50.847794272708384],[6.070667226685655,50.84783502133332],[6.070568728442187,50.84787062494458],[6.06987989706356,50.848099151213304],[6.069733872506217,50.84813372236574],[6.069601008269685,50.84817297983799],[6.069495796930529,50.84820407370328],[6.069376787324858,50.8482411816643],[6.069259731576358,50.848276956585416],[6.068929285800262,50.84837793802093],[6.068921482963241,50.848380321186006],[6.068812026190453,50.848411484406775],[6.068743037690462,50.84843112770095],[6.068485535642428,50.84850444100157],[6.068448743484065,50.84851491431941],[6.06841660339228,50.84852406579036],[6.068377718500624,50.848535135705],[6.068151323280787,50.84859959053518],[6.068057263896527,50.84862636557794],[6.067951284392352,50.8486565366833],[6.067841006262539,50.848687937531615],[6.06774280354382,50.848715896298174],[6.067534209103812,50.84877529215978],[6.067374331545579,50.848833708858926],[6.067246923606111,50.848880266561814],[6.067155134890522,50.848913805243214],[6.067052710967601,50.848951226737995],[6.067044067397001,50.848954387777184],[6.066946388918663,50.84899008234151],[6.066578320056693,50.849095970516],[6.066137203616749,50.84922287144017],[6.065939360000481,50.84927978321691],[6.065725702483284,50.84933992464708],[6.065311862208092,50.849456405815346],[6.06510805937115,50.84951376461352],[6.065063599399702,50.849526277378814],[6.064902542403513,50.84958502115971],[6.064380739583962,50.84977536551076],[6.064237618810199,50.8498275761308],[6.064050497129927,50.849851863577165],[6.064013364730607,50.84985668336468],[6.063951077422253,50.849878486864384],[6.063906890975779,50.84990685423925],[6.063897431608423,50.8499125187689],[6.063879724105195,50.849934834326],[6.063816317567525,50.84996362878417],[6.063730508350752,50.84998396978468],[6.063658607720054,50.850002863002345],[6.06362816692007,50.850003077079485],[6.063607404809158,50.85004862914497],[6.063581355201062,50.85007437334283],[6.063556488310465,50.85009748581688],[6.06351885523947,50.85014195001795],[6.063482485508833,50.8501494259264],[6.063456785333599,50.850162151929034],[6.063446594354339,50.85018190651888],[6.063410114807736,50.85020229130083],[6.063398027820304,50.85020791722484],[6.063380341829724,50.85021616473889],[6.063340632258475,50.850218581332705],[6.063282722207095,50.85021831775458],[6.063224207734623,50.850250588998634],[6.063170445345952,50.85026015309157],[6.063116526857595,50.85025609968463],[6.063097833350299,50.850268290243115],[6.063031931677561,50.85029353020904],[6.062957885513026,50.85028317622356],[6.062897694520982,50.85027743348526],[6.062870525935597,50.85028588017002],[6.06281703092231,50.850290417665235],[6.062795989920251,50.85028574947626],[6.06276284402459,50.850237770942094],[6.062755864496804,50.85022751928419],[6.062723129815151,50.850236951298385],[6.062713896232402,50.85023961207364],[6.062699146740188,50.850249622152774],[6.062645545941142,50.85025371972422],[6.062624989141473,50.850257911862926],[6.062585329389954,50.85027251703646],[6.062566857817219,50.850316500426025],[6.062527914668058,50.85031695265332],[6.062505814168848,50.85031265915125],[6.062483070617929,50.85031977648561],[6.062399071566241,50.850328977495295],[6.062380186195275,50.85032801810062],[6.062270674215817,50.850333592626434],[6.062209733155849,50.85032899551741],[6.062188926487131,50.85034722990838],[6.062179807691375,50.850369468086505],[6.062127537952455,50.85040743731427],[6.062065245971562,50.85040076255987],[6.062059804463079,50.850390807509086],[6.062012298394633,50.85037563267455],[6.061976592696727,50.85038485709315],[6.061986169189259,50.85039988479406],[6.06196578359216,50.85043143843467],[6.061939104343843,50.85044815195452],[6.0618804318952,50.85045405859992],[6.06183030435349,50.85046948867146],[6.061753298071782,50.85045673313868],[6.061680202699151,50.85046779365424],[6.061673138506845,50.850468293309895],[6.061619845280832,50.85047208298288],[6.061583641598099,50.85046759291953],[6.061556727091137,50.85046425318916],[6.061411360170752,50.850485425271856],[6.061239733442476,50.85050337040718],[6.061063293325796,50.85052232314935],[6.061025800950552,50.85052978684823],[6.06100631703664,50.850532588133504],[6.060966677375302,50.850536909178096],[6.060926378920214,50.85054279814012],[6.060879563009424,50.850547727285694],[6.0608534107854,50.85055481921675],[6.060823183227323,50.85057656004531],[6.060795356456119,50.85061106928211],[6.060779632186755,50.850626343378394],[6.060749020367615,50.85065291353693],[6.060725584657935,50.85066226383682],[6.060699789437694,50.8506616860078],[6.060683639642068,50.85067894914618],[6.060652835487521,50.850691317727474],[6.060606321219399,50.85070235754687],[6.06057039967975,50.85069969928512],[6.060535205441204,50.85070116274217],[6.060472156882653,50.85071767425091],[6.060441325568404,50.850727202399426],[6.060419207501903,50.85073342576901],[6.060388033230392,50.85073401181292],[6.060332380094349,50.85075034534454],[6.060287210334245,50.850777701289545],[6.060235570682648,50.85079173718123],[6.060170621403753,50.85081720367774],[6.060132654931673,50.85083018012234],[6.060103827114768,50.85083785376638],[6.0600825728165,50.85084293942538],[6.060062450263044,50.85086533136978],[6.060052303326438,50.85087845149217],[6.060041476806569,50.850891710404426],[6.060021374967886,50.85091553147716],[6.060000134693046,50.85092060805022],[6.059961098114076,50.85092052960179],[6.059931762210449,50.85092451166706],[6.059893233496551,50.85092811574353],[6.059824896022731,50.850916827628836],[6.059795361836427,50.85090519686416],[6.059766835731405,50.85090236048971],[6.05974202136743,50.85090577685948],[6.059697438929758,50.850892435806735],[6.059591146696179,50.85088026268716],[6.059563165737337,50.85090715880996],[6.059553656596193,50.85091629303734],[6.059504597318385,50.8509359497169],[6.059418245124605,50.85094260935419],[6.059355621374316,50.850957131205156],[6.059191205563157,50.85101716295601],[6.059137737824585,50.851007019496926],[6.059024760686329,50.85104403673614],[6.058959836030819,50.85105070634045],[6.058884569989424,50.85105515277963],[6.0588060525227,50.85105178861237],[6.058737341090993,50.85106661516413],[6.05867352202656,50.851066293707746],[6.05857395919014,50.85106873268695],[6.058478059093791,50.851070134551776],[6.058059488538813,50.85106132798853],[6.057604181310831,50.85104946094802],[6.057573391691435,50.851033468229126],[6.05734873453122,50.85103833939926],[6.057221185179953,50.85104284511867],[6.056942482462132,50.851046689356096],[6.05669884300021,50.85105275690517],[6.056795330038674,50.851240311516],[6.056506625983991,50.85135695303792],[6.056637033336062,50.85154721485059],[6.056747774508704,50.851536056367436],[6.056953113046385,50.85158556507222],[6.056788350413737,50.85187740450487],[6.057221969570278,50.852020963939516],[6.057184840781109,50.852139115200686],[6.05696661032681,50.85283343396482],[6.056910943792111,50.85298366651206],[6.057084053831826,50.85413989341865],[6.057075795491809,50.854312198069884],[6.057025871731915,50.85438729404402],[6.057010305292149,50.854410710766864],[6.056857055304246,50.854434736307184],[6.056800436681643,50.85438859994641],[6.056780289718291,50.85437218580502],[6.056603949633264,50.854351049012244],[6.056569091828757,50.85437402904207],[6.056571749876186,50.854389924236564],[6.056605264429252,50.854590419285586],[6.05664931005588,50.85464504227986],[6.056633301323596,50.85468700588249],[6.05663292640323,50.854702334350804],[6.056633637555002,50.854718132948996],[6.056647093445678,50.854851308425616],[6.056657697968099,50.85495619395447],[6.056734426280882,50.85504263760216],[6.056785949534863,50.85510267358434],[6.056807438759519,50.85512645095763],[6.05697333199999,50.85530979211754],[6.057117026541355,50.85547522069176],[6.057148667602977,50.85551159573427],[6.057097091632794,50.85566597557804],[6.057046534519527,50.85583485779154],[6.056963910912944,50.85611771789866],[6.056872114780107,50.85644103677081],[6.056822241609711,50.85663573141945],[6.056798138585251,50.85672984235104],[6.056554000778513,50.85711821586029],[6.056511073555685,50.85714606070404],[6.056415383154445,50.85717366262025],[6.056363857144217,50.85719318839261],[6.056342987528077,50.85719760593718],[6.056270568698704,50.85720716689318],[6.055862131929013,50.857225341505604],[6.055436956258282,50.85724486988728],[6.055392073743713,50.85724650461217],[6.055077665341563,50.85725770582798],[6.055071266840874,50.85725618768775],[6.055032222706681,50.857251028795936],[6.055015373166234,50.85724665857478],[6.055002557824914,50.857243334744055],[6.054962184156544,50.85723362606989],[6.054932874235921,50.85722690975436],[6.054913054194219,50.85722237689367],[6.054878945235399,50.85720785883507],[6.054821936418858,50.857181059153376],[6.054744215497981,50.85714990249676],[6.054669081212525,50.85711788588649],[6.054507781488531,50.85704915200501],[6.054465874392348,50.85703254843454],[6.054327195719846,50.85697741898281],[6.05416167717989,50.85691052475015],[6.054116072916284,50.85690146619967],[6.054095474110481,50.856900038907064],[6.054068500359163,50.856907601454836],[6.054060126651094,50.856909941956545],[6.054039887139994,50.85689401327748],[6.053937535368148,50.856930505754015],[6.053910198648673,50.856907921154075],[6.053884577294505,50.8568910436788],[6.053756640501779,50.85678588159255],[6.053726775630042,50.85676820155729],[6.053679117333072,50.8567407361567],[6.05362413751144,50.85670483628524],[6.05357198204118,50.85666584586129],[6.053511990770678,50.85661721938987],[6.053459497614743,50.85657646002358],[6.053409315456734,50.85652851407232],[6.053382030014022,50.856488724053335],[6.053360094051632,50.85646342947538],[6.053353891892518,50.85644592761662],[6.053342569997622,50.85643582625978],[6.053331057316701,50.85642628332089],[6.053327941360783,50.8564189662266],[6.053328325547024,50.85641210538424],[6.053331196256075,50.856400394118],[6.053345321161324,50.85637630303882],[6.053343386416691,50.85634842123062],[6.053338436364851,50.856324170385356],[6.05332523546264,50.85630289750183],[6.053312562975644,50.85628281711311],[6.05330284665803,50.85626486806921],[6.053288701927968,50.85625498971855],[6.053278247864405,50.85624499122426],[6.053269542692394,50.85623810184631],[6.053252235719308,50.85622953612948],[6.053234897865272,50.85622672356621],[6.053217941854835,50.85622281213922],[6.053206544062229,50.8562242171631],[6.05316867951065,50.85626250381485],[6.053160780457962,50.85626723259906],[6.053147310237545,50.85626376851224],[6.053128428620711,50.85625729730156],[6.053113092238856,50.856245529108456],[6.053099976594638,50.85623808083428],[6.053086727956894,50.85622829617728],[6.053060508382831,50.85621915253228],[6.053039847272317,50.85621534331933],[6.053026553540247,50.85621131189335],[6.053010465451114,50.85620751229494],[6.052996641813249,50.85620514688744],[6.052986510351864,50.856199802825934],[6.052981452287153,50.85619568801162],[6.05297467401671,50.85618848188837],[6.052975911950855,50.85618173298838],[6.05298367940372,50.856171800327324],[6.052993741087889,50.85616043418731],[6.052998479136996,50.85615414154919],[6.053001126687319,50.8561516003855],[6.052990818643505,50.856146814661024],[6.052970509369727,50.85614475627021],[6.052947726875238,50.856150451670956],[6.052924594715734,50.8561486162749],[6.052913755375062,50.856148364073164],[6.052895535603853,50.85614544866902],[6.05288000712835,50.85613710637118],[6.05286078901437,50.856125989727126],[6.052842113757252,50.85611608347324],[6.052834953670487,50.85610997620164],[6.052832013270514,50.85610498624198],[6.052825882338096,50.85610131806023],[6.05280788305727,50.85609496756423],[6.052782176916363,50.856089919897556],[6.052761690951296,50.856088410818174],[6.05274436737982,50.856085598099426],[6.052730176269275,50.85608434042613],[6.052717428384084,50.85607579333063],[6.052705415420448,50.856065021713384],[6.052690095964371,50.85604750038952],[6.052667070810907,50.85602839640348],[6.052649632461135,50.85601462670624],[6.052633561232792,50.8560050739809],[6.052614019461631,50.85599217933161],[6.052602139387168,50.8559837350973],[6.052588698974757,50.855977394285375],[6.052567362071883,50.85597002922299],[6.05253833394079,50.855961099382675],[6.052522214873444,50.855963043883996],[6.052502788051516,50.85596111516865],[6.052479862293673,50.85595584468773],[6.052467244615254,50.855955368962704],[6.052455552792891,50.85595211928827],[6.052441392716776,50.855945108423356],[6.052432997288929,50.85593999702841],[6.052417837788429,50.855927670406814],[6.052417901189211,50.85591329658656],[6.052415984848131,50.85587676721488],[6.052412193406919,50.85586591230637],[6.052410827872939,50.85585883680941],[6.052403183145612,50.85584864229241],[6.052385361787676,50.85583884790993],[6.052367908095548,50.85582795474805],[6.052359689297117,50.85582228501199],[6.052357325648466,50.85580701726368],[6.052358125166102,50.855787533440754],[6.052357160764061,50.85576784402951],[6.052359470496916,50.85576353398569],[6.052356515970086,50.855758544095536],[6.05232319884408,50.855731786668755],[6.052321718470851,50.85571374521778],[6.052326708066369,50.85569826437403],[6.052324314605706,50.85568586429646],[6.052319274757176,50.855673119882375],[6.052307500853836,50.85565030155234],[6.052295520530901,50.85563090922816],[6.052284570374315,50.85561106152523],[6.052275705804337,50.85559898632166],[6.052269266860655,50.85559067255551],[6.052263695674955,50.855582461665584],[6.052253933268693,50.85557313327861],[6.052243640935901,50.85556547090924],[6.05222877434955,50.855560675383806],[6.05219308305347,50.85555548726523],[6.052164347984538,50.85555408845187],[6.052131449841816,50.85555155399025],[6.052099244298236,50.85554681322436],[6.052067568955787,50.85554042440841],[6.052045879002367,50.855534166931655],[6.05202384991991,50.85552901705138],[6.052006351189653,50.855523877072244],[6.051991997738591,50.85552316857336],[6.051970630224307,50.855521565544656],[6.051950673411618,50.85552128477679],[6.05193996451246,50.855529121858936],[6.051927638193638,50.85553904470494],[6.051898389103454,50.85557901628462],[6.05188798813718,50.85559148992955],[6.051883928400679,50.85559557631028],[6.051873059466311,50.85559820067038],[6.05186010395184,50.855595946994406],[6.051848430451519,50.85558406768761],[6.05183780050274,50.85557464537396],[6.051830832768347,50.855565103126935],[6.051827892511249,50.85556011314154],[6.051821790259562,50.85555645373139],[6.051809012825938,50.85555077420662],[6.05178771697717,50.85550368625442],[6.051789529074989,50.85549240359763],[6.051783767309248,50.85548476008922],[6.05177644492497,50.85547920201675],[6.051766298228142,50.85547673442587],[6.051736693873495,50.85547809114563],[6.051713045010148,50.85548079793748],[6.051697955152783,50.85548518142411],[6.05168515953459,50.85548813145639],[6.051673070729887,50.85548887511327],[6.051651379511709,50.855485494058776],[6.051626014321567,50.85547646203846],[6.051602604240282,50.855467104161114],[6.051580799831958,50.855449889631316],[6.0515697866183,50.855444433656785],[6.051555303362616,50.85543566269244],[6.051541819174444,50.855432189511326],[6.051508730471557,50.85543022227673],[6.051488245096525,50.855428730947715],[6.051474245029953,50.85542691470385],[6.051456760598969,50.85542177455987],[6.051426511667789,50.85541383126089],[6.051404100961875,50.8554097891059],[6.051381014678439,50.855402209151116],[6.051375074764179,50.85539798247632],[6.051360736921414,50.85539439732093],[6.051316472671781,50.855387532288354],[6.05123245871861,50.85537667070951],[6.051105061444188,50.85536194123232],[6.051094356438946,50.85536113975874],[6.051083310643099,50.855364304401846],[6.051074542531696,50.85537181564284],[6.051050784499855,50.8553946493568],[6.051044089783328,50.85540414425383],[6.051042807608098,50.85541376987453],[6.051022740399038,50.855436501488754],[6.05101691506001,50.85544324075028],[6.051003972448118,50.85544386339312],[6.050997662238958,50.855446497452476],[6.05098189677302,50.855447343048034],[6.050974546090483,50.85544178508765],[6.050964782846143,50.8554353510644],[6.050956240714217,50.85542791224771],[6.050948242889353,50.85541881632458],[6.050943889411422,50.8553756490459],[6.05091826709093,50.85538731108642],[6.05087177322556,50.855407201037615],[6.050838429860436,50.85542016584626],[6.050810383258858,50.85542518090992],[6.050794441050443,50.855426575825035],[6.050783248396742,50.85542742211349],[6.050770308836686,50.85542230971381],[6.050756884305934,50.855413083122116],[6.050725527650853,50.85537736990655],[6.050705828329604,50.855356394707684],[6.050691379270659,50.855336117485905],[6.050676606403792,50.85531405330449],[6.050673844565441,50.85530564643644],[6.050672801345177,50.85530320740808],[6.050667743583727,50.855299092492146],[6.050659845842286,50.85530094460909],[6.050652330123849,50.8553017068611],[6.050641637935609,50.85530378176051],[6.05063971264146,50.85530123093629],[6.050632776533949,50.85528594444898],[6.050652602282002,50.85523841356513],[6.050653147998672,50.85523387996425],[6.050651798227539,50.85522391887989],[6.050637462027869,50.8552174661265],[6.050544309055383,50.85518124451612],[6.050511415759574,50.855170098080144],[6.050473493022405,50.8551548275591],[6.050447290186483,50.85514280674188],[6.050425985371863,50.85512969711558],[6.050398079349883,50.85510881388916],[6.050382347941741,50.855098144265654],[6.050370291752977,50.855090249145526],[6.050344619102306,50.855076571283284],[6.050303388991757,50.85505742742961],[6.050284878817624,50.85504410399015],[6.050266191903164,50.855031329892],[6.05024806638188,50.85501114561387],[6.050242012387529,50.85499596191322],[6.050243812071989,50.854981802865055],[6.050244773844817,50.854964664265836],[6.050254442568507,50.85494863531537],[6.050273626449762,50.85492866853256],[6.050286808056194,50.85491598132736],[6.050304546916196,50.85490618042649],[6.050311917205196,50.85490022337405],[6.050317376432903,50.85489171541011],[6.050321791170535,50.85488365389909],[6.050319543789856,50.85487645759067],[6.050317457534907,50.854871588515834],[6.050306827803605,50.85486214808416],[6.050154138237311,50.85476988845904],[6.050145067668423,50.85476123010628],[6.050145805816106,50.854753270585725],[6.050151456008283,50.85474421320406],[6.050166902013766,50.854732969249916],[6.05018339106435,50.85472415533828],[6.050198995309457,50.85472099160657],[6.050220717197539,50.854718610790165],[6.050238055735703,50.85471854731008],[6.050254174467637,50.85471660312784],[6.050265043287808,50.85471397892015],[6.050272397923917,50.854710898448225],[6.050293655169968,50.85469292432307],[6.050300945154945,50.8546644951671],[6.050318783362979,50.85462592881104],[6.050322525306878,50.85460856751718],[6.05032433902336,50.85459439939828],[6.050319827241062,50.85458575985599],[6.05031038898017,50.85457820028643],[6.05028468693363,50.85456740805815],[6.050257412898426,50.85455294832837],[6.050235579719522,50.85453861919124],[6.050221981663876,50.85452418888836],[6.050210649585184,50.854508334311866],[6.050204420480433,50.854490832445286],[6.050192851378299,50.854441549039656],[6.050193428395744,50.854431262285175],[6.05019059383199,50.85442669413735],[6.050186814671812,50.8544206212501],[6.05017806783176,50.854413740870875],[6.050169877951746,50.85440807081559],[6.050160086380508,50.854401618910245],[6.050148723211412,50.85439152647169],[6.050141308367911,50.85436062876406],[6.050128180404293,50.85431057224611],[6.050118632341013,50.85428342620406],[6.050106128791613,50.85425417569783],[6.050101971764427,50.85424154298588],[6.050093769163403,50.8542329965101],[6.050081890128204,50.85422456100385],[6.050068936524749,50.854219430630025],[6.050044454517746,50.85421051904952],[6.049931936746885,50.85418043961771],[6.049904807050481,50.85417406011271],[6.049883457204027,50.854166694634564],[6.049856182076399,50.85415511130611],[6.049829246139777,50.85414242037709],[6.049803002901975,50.854127523160514],[6.049785181426002,50.85412061386038],[6.04977240463775,50.8541149341096],[6.049738628644604,50.85410654315841],[6.04969713184213,50.85409945490467],[6.049659310271289,50.85409515015264],[6.049616751877309,50.85409426139157],[6.04958558913787,50.8540948264697],[6.049563692353442,50.85409488900129],[6.049543898852862,50.85409406754342],[6.049516769260097,50.8540876879472],[6.049491037409034,50.854079745236184],[6.049482126702737,50.85407629056235],[6.049477070786923,50.85406930808583],[6.04947654507696,50.854062335613875],[6.049481507048992,50.854046855054804],[6.049476613564961,50.85403931432824],[6.049467350960425,50.85403409083122],[6.049459500419871,50.854027313132335],[6.049447061403732,50.854023402248956],[6.049309997002102,50.8540016698025],[6.04918778741147,50.853978989189464],[6.049153304838757,50.85397281341408],[6.049119660095041,50.8539696171878],[6.049004087943744,50.85396620680395],[6.048810065862555,50.85395152359409],[6.048690821552044,50.85393956737198],[6.048674895772801,50.85393810339279],[6.048655281791719,50.853930952482806],[6.048538736673453,50.85387330742815],[6.048530536090096,50.85386189333267],[6.048526884246052,50.85384184173112],[6.048527421971877,50.85382579324673],[6.048520268826238,50.85380817073208],[6.048512745134637,50.85379741795125],[6.048504351938448,50.85378942078503],[6.048488930811905,50.853780528959724],[6.048454965866961,50.853769810559],[6.048418367471391,50.85376163312598],[6.048380883828978,50.85375908787337],[6.048358117812561,50.85376191477895],[6.048337792747741,50.8537656266234],[6.048316776479385,50.853768668240114],[6.04829749744144,50.853769057145804],[6.048267559388844,50.85376288208724],[6.048272834098089,50.85374341765569],[6.048284426561604,50.853706927842005],[6.048239932233271,50.85369772580957],[6.048171984847841,50.85365613556107],[6.048129570979849,50.85368923292784],[6.048099955410557,50.8537136186641],[6.048091540541124,50.85372002200859],[6.048072791709321,50.853718753865515],[6.048034424642233,50.85371898217022],[6.048002369161075,50.85371369108198],[6.047986253693402,50.85370987296835],[6.047979770043209,50.85370731219864],[6.047998890857796,50.85367293675082],[6.047981183518869,50.85367698414219],[6.04795718494821,50.853675035852966],[6.047934055919467,50.85367033194787],[6.047903237515812,50.853661168481935],[6.047861880170575,50.853644891993085],[6.047824213705908,50.853628522486744],[6.04778775419917,50.85361114829009],[6.047762337155533,50.85359636275088],[6.047727114742215,50.85357511618669],[6.047709749686635,50.853572293966835],[6.047644386294184,50.853568469514116],[6.047607240738706,50.853567710895824],[6.047588138555115,50.853567550342866],[6.047580433684508,50.85356598531942],[6.04756358917818,50.853552858683216],[6.04750725601607,50.853500118240206],[6.047480418832185,50.853475353945754],[6.047469177927878,50.85346182674206],[6.047452862095057,50.85344991957787],[6.047436734424921,50.85344324294843],[6.047363916976794,50.853416574853924],[6.047306020434862,50.8533975970245],[6.047279350643353,50.8533895513116],[6.047252480528085,50.85337342560443],[6.047227549528092,50.85335984170301],[6.047218774800458,50.8533529522728],[6.047213485598004,50.853346510372376],[6.047197858067431,50.85334104437273],[6.047153823523946,50.853330185319564],[6.047122038274058,50.853320910308916],[6.047106233852812,50.85331598464813],[6.047098516465824,50.85331154317684],[6.047092346753054,50.85330210396316],[6.0471024863946,50.85329017158641],[6.047108447714566,50.853279997940604],[6.047107379450051,50.85327179706029],[6.047105971949747,50.853264703766115],[6.047080166973785,50.85326253189243],[6.046958318082279,50.85325200003584],[6.046914767904046,50.85324522813348],[6.046892641080995,50.85324007784026],[6.046864164670963,50.85323179963768],[6.0468481600457,50.85321879395259],[6.046835644220633,50.853200482813655],[6.046809768371578,50.85317238694221],[6.046803950534905,50.853164716543375],[6.046792867557092,50.853159269505596],[6.04675982928042,50.85315672533425],[6.046732965697196,50.85315499988493],[6.046721710187152,50.85315438991898],[6.046717674234884,50.853154179228504],[6.046689194607775,50.85315165397612],[6.046678113169762,50.8531433214423],[6.046671779454364,50.853137316948896],[6.046666667011164,50.85313031669612],[6.046670144791743,50.85311924934879],[6.046684521139841,50.85310267248363],[6.046703630993508,50.853088423737844],[6.046743836127368,50.85305675077385],[6.046713045043425,50.85303549660185],[6.046673482453768,50.85300158197991],[6.046643563965575,50.85297179222957],[6.046605920150221,50.85292601910813],[6.046582169778421,50.85290855406659],[6.046562666937029,50.85289219741172],[6.046550704839493,50.85288084957729],[6.046541562529899,50.85287505885373],[6.046525218871485,50.852863160708296],[6.046506930944163,50.85285733224988],[6.046484070465653,50.85285150289768],[6.046457870983753,50.85284753533142],[6.046429552481348,50.85284733725393],[6.046407027931101,50.852846153295616],[6.04635639328367,50.85283845975546],[6.046312934791548,50.8528311118082],[6.046298498609933,50.85282751760167],[6.046280737743014,50.852825794086],[6.046270003330173,50.85282786882332],[6.046261045474754,50.852833043633524],[6.046253632521429,50.85283900965894],[6.04624623053722,50.852850737584696],[6.046253602441154,50.85286783762524],[6.046279462546742,50.85289885514096],[6.046293018039195,50.85292538536705],[6.046300596707971,50.852939050419316],[6.046300240034044,50.852945920065956],[6.046297969508256,50.85295600970467],[6.046293040011253,50.852962860476325],[6.046288654955461,50.852968054163696],[6.04628302022536,50.852974243767775],[6.046275107083335,50.85297899013904],[6.046265256204777,50.8529782912199],[6.046250466527051,50.8529758046722],[6.046236914004517,50.85296944579046],[6.04622475787312,50.852964418311345],[6.046204874833353,50.852946283937435],[6.046153631205264,50.85290277252559],[6.046138316236076,50.852893304487424],[6.04612317625164,50.852886154617664],[6.04610998961424,50.852881555484174],[6.046087099086808,50.85287860271204],[6.046061048017308,50.85287408587973],[6.046053200415992,50.85287345642697],[6.046025307003174,50.8528711973417],[6.046005944431359,50.85286868288857],[6.045962987693204,50.85285966898151],[6.045948376432174,50.852853747572254],[6.045932191877342,50.85284703510281],[6.045905471873183,50.852827429479],[6.045880342148785,50.85280281689225],[6.045863307279518,50.8527902304375],[6.045856795220879,50.85278765173359],[6.045846578302858,50.852785175038036],[6.045836564876015,50.85278502533896],[6.045822111265148,50.85278719313562],[6.045787555065024,50.85279771838435],[6.045757232263421,50.8528093611132],[6.045742248380109,50.85281318590051],[6.045725854054116,50.85281568834485],[6.045705784462377,50.852815380179315],[6.045683422415483,50.852813637835254],[6.045664075799531,50.852808246747145],[6.045649847917868,50.85279832300205],[6.045643353244698,50.8527899732351],[6.045635845534977,50.85277628975843],[6.045638043813672,50.85275811042507],[6.04564356190699,50.852746707884236],[6.045643240014371,50.85274204441524],[6.045627230623484,50.85273765906248],[6.045608410747644,50.85273635497022],[6.045569668379503,50.85273709697187],[6.045524456319522,50.852735242018724],[6.045470583266459,50.85273747243469],[6.045446601927109,50.852740692216166],[6.045422119094278,50.85274559579507],[6.045406797405387,50.85274763364688],[6.045391284715654,50.85275022091444],[6.045381273029454,50.852747194679154],[6.045361132485033,50.85273589328439],[6.045340316870088,50.852721054054705],[6.045315856043691,50.85270051855455],[6.045305707717839,50.852688872618884],[6.045300539474087,50.85268292434],[6.04528938382779,50.85266934250845],[6.04527850734954,50.85264942182652],[6.045282334100718,50.85263490974045],[6.045289043830248,50.85261442152188],[6.045298517854824,50.85259659629553],[6.045302270381296,50.852587855583224],[6.045304962358109,50.85258242886797],[6.04530205274586,50.8525745350921],[6.04529299732966,50.852565849311155],[6.045279734941904,50.852558904380274],[6.045259752398619,50.85255571915538],[6.045212769537566,50.852565146393836],[6.04518762365073,50.85256935255362],[6.045175139042814,50.85257117646897],[6.045167771695918,50.852571362223976],[6.045154097433164,50.85256841074847],[6.0451427619447,50.85256115819774],[6.045144983821258,50.852551626178894],[6.045146016045049,50.852537318771155],[6.04515129946097,50.85251838478988],[6.045155391475023,50.85249755191647],[6.045155879472231,50.85248491956396],[6.045148823208218,50.85247301331348],[6.045141005392255,50.85244947960296],[6.045128024116757,50.85243332829713],[6.045111748419132,50.85241617997876],[6.045106735557821,50.85240917010268],[6.045091444318167,50.85239734666884],[6.045082578227409,50.85239098795085],[6.045068108835033,50.85238503865707],[6.045045874556403,50.85238327748551],[6.044975328310864,50.852395337657306],[6.044874118339977,50.852412030786205],[6.04485288064945,50.85241845290639],[6.044815936182665,50.852433791588304],[6.044799550452656,50.85244489634593],[6.044790843187552,50.85245472592942],[6.044788384102332,50.85247056059429],[6.044785396365042,50.852485166770194],[6.04477927667569,50.85249821768206],[6.044775833303889,50.85250873644475],[6.04476658152991,50.85252022310344],[6.044759168050849,50.85252616206835],[6.044755477280494,50.85252625497305],[6.044743947187962,50.85252529580521],[6.044713785760711,50.852506293769075],[6.044696035895226,50.85249932934887],[6.044670784360759,50.852493090754486],[6.044663077735071,50.85249438405652],[6.044652869685528,50.852500527676774],[6.04464826508345,50.852506270880205],[6.044649396109179,50.85251392309414],[6.044652954009999,50.85252247838675],[6.044662394177159,50.85253527001189],[6.044688613858768,50.852560694662166],[6.04470393657296,50.85257774059147],[6.044708625526316,50.85259394809571],[6.044710550214793,50.852607492593116],[6.044711255123405,50.85261913835542],[6.044708341768182,50.85262798214366],[6.044697868526153,50.852640455547025],[6.044688984394704,50.85265083445885],[6.044674319854697,50.85266215413509],[6.044654096722184,50.85267103344013],[6.044626915992639,50.852678954526226],[6.044602911843723,50.85268557211237],[6.044578525925244,50.852693306502914],[6.044513131543019,50.85270420447885],[6.044499496307047,50.852707005677466],[6.044478610357094,50.85270420299282],[6.044467623069621,50.85270447220707],[6.044437925940896,50.85269817793489],[6.044419849027006,50.85269518847868],[6.044405816523159,50.852691007455356],[6.04439430109236,50.85267907257463],[6.044377520581484,50.85265835838192],[6.044341121151036,50.85262004733591],[6.044283466911865,50.852582953748],[6.044255702198854,50.85254870158035],[6.044229861689128,50.85252796694674],[6.044212685592436,50.85250838759559],[6.044197743684013,50.8524931462311],[6.044183771797952,50.85248322085241],[6.044175830546418,50.852476982655915],[6.044166123349656,50.852473388277296],[6.044155164640786,50.85247366628865],[6.044136718578576,50.85247467900058],[6.044115268992251,50.852482189860375],[6.044046050963229,50.85250582876404],[6.044012242684479,50.85251803916785],[6.043996014613243,50.85252625743945],[6.043982213016318,50.852535351836714],[6.043971929264707,50.85253916767026],[6.043963925903149,50.85254156826085],[6.043956275918848,50.852542852204834],[6.043946804159476,50.85253583165347],[6.043936127110187,50.852526930254],[6.043913113746957,50.85250026471438],[6.043887368372455,50.852465191976854],[6.043875339341654,50.852452073411946],[6.043871637204412,50.85243834123951],[6.043870154882764,50.8524289381549],[6.043878648909351,50.8524110646794],[6.043889669747834,50.852402147892555],[6.043905399772663,50.85238985144964],[6.043921981317477,50.85238052553317],[6.04393544319244,50.85237251175538],[6.043946257230512,50.852367038932705],[6.043955894120256,50.852359667123984],[6.043959472267929,50.85234862625755],[6.043952752505385,50.85234140130344],[6.04395229877047,50.8523344373902],[6.043949241241651,50.85232711072987],[6.043926900252248,50.852317817150464],[6.043886511451984,50.8523055698187],[6.0438483745304,50.85229189840605],[6.043819313845996,50.85227537984524],[6.043796519324207,50.85225913131499],[6.043780976440134,50.852245556279605],[6.043772008654344,50.85223401137482],[6.043766763811213,50.85221662942959],[6.043771756022609,50.85220115794023],[6.043775703739975,50.852186132844736],[6.043811599376572,50.852133855579176],[6.043827757234149,50.85211468011609],[6.043828586979068,50.85209808167167],[6.043827136604929,50.852082916443216],[6.043823259651755,50.85206686609515],[6.04381696981175,50.85204989459356],[6.043810535599333,50.85202774623585],[6.043829057843829,50.85201809469409],[6.043841491042953,50.852007641756124],[6.043857407926401,50.85200052193378],[6.043866146605384,50.85199590587451],[6.043872635393666,50.85198984637319],[6.04387740278467,50.85198356293501],[6.043877095529276,50.851978917356796],[6.043847710998905,50.851971596411275],[6.043797307448749,50.85196207567234],[6.043770187024605,50.851956198069274],[6.043751891538803,50.85195379403764],[6.043721557242606,50.851963620515775],[6.043680559213966,50.85197549411465],[6.043640827161798,50.85198351320974],[6.043610701468112,50.85198701919291],[6.043588240127286,50.85198925914528],[6.043570649687101,50.85198750728037],[6.043556589585342,50.85198336226801],[6.043542338340457,50.85197975768033],[6.043525835373178,50.85197758613968],[6.043510346649814,50.851977844863164],[6.04347080558508,50.85198531448528],[6.043445547595547,50.851990617563544],[6.043430589329211,50.851989228274526],[6.04340405990359,50.85197594926748],[6.043361706299542,50.85195829252777],[6.043340351567769,50.85195143825187],[6.043319834888766,50.85194760851547],[6.043280856153808,50.85194765893965],[6.043266779900359,50.85194638148119],[6.04325964626317,50.851946017458445],[6.043220042684143,50.85193102378885],[6.043202320175505,50.851926962439386],[6.043187715456123,50.851924465463384],[6.043167696753353,50.851924713889424],[6.04314997250845,50.851923538017154],[6.04313066271874,50.85191869462917],[6.043099749978639,50.85190773262296],[6.043075972629143,50.85189424915775],[6.043052534616618,50.85187965811316],[6.043009867384383,50.85184584975632],[6.042986766988101,50.85183303660928],[6.042964518315634,50.85182321196989],[6.042942781782378,50.8518174654362],[6.042906249942984,50.85180979826539],[6.042883597500716,50.8518125785062],[6.042861668322762,50.851810275844414],[6.042843222052295,50.851760086896704],[6.042840106178588,50.85175564601418],[6.042832622828032,50.851750636625454],[6.042785102223382,50.851746123959025],[6.04273479115068,50.851736080871234],[6.042698068255164,50.851728954059595],[6.042679110350822,50.85172588842739],[6.042664479352708,50.85172052403751],[6.042654056875521,50.851710515428756],[6.042647350848636,50.851683163907786],[6.042641335916401,50.85165648264469],[6.042640365342168,50.851631040233634],[6.042634664010521,50.85162050147103],[6.042622315087166,50.85161082738633],[6.042600907892485,50.851598238278115],[6.042578468259165,50.85158895398905],[6.04255078135356,50.851576130801014],[6.042489878925092,50.85154512233182],[6.042455447962118,50.85151931225962],[6.042427606034958,50.85149552331772],[6.042400822950373,50.85147129689531],[6.042382244541652,50.851449873487006],[6.04237216369581,50.851435898759846],[6.042363462840684,50.85142612307202],[6.042361733032842,50.85141726970237],[6.042364224151157,50.85140665753113],[6.042367056650717,50.85139207027865],[6.042371992573845,50.85137660815959],[6.042371674985578,50.85136620067533],[6.042366847414644,50.85134715333604],[6.042354166964429,50.85132708080708],[6.042345494531292,50.85131730495691],[6.042331735451859,50.8513063084585],[6.04231217241116,50.85131064415885],[6.042285829624629,50.85131352609683],[6.042266282827986,50.85131499420029],[6.042250928808063,50.85131472164049],[6.042236104903787,50.851312774117446],[6.042217138786893,50.8513010789986],[6.042176054255362,50.851264636577994],[6.042156724173243,50.851248287199695],[6.042141406179637,50.851236499488124],[6.042112309062825,50.851222335832986],[6.042102194143358,50.85121699073401],[6.042090504113283,50.851213731020295],[6.042079165815145,50.85121224913867],[6.04207340011777,50.85121321665796],[6.042056802606109,50.85122542787471],[6.042027034390454,50.8512531927835],[6.042007626213064,50.85126848516901],[6.041981056353846,50.85128343158694],[6.041955900526397,50.851293938403806],[6.041930746760896,50.85130157770648],[6.041894254671395,50.85130773510397],[6.041864737491433,50.85130906184477],[6.041853913283381,50.851308790547286],[6.041845548132975,50.85130366923169],[6.041844525521974,50.851292600551446],[6.041844053475788,50.85127125430515],[6.041846000123188,50.851262299208166],[6.041840065639836,50.851252328035834],[6.041832759188392,50.851246760262335],[6.04182648132943,50.85124364066598],[6.041815996611989,50.85124227078226],[6.041803274351572,50.85124233383253],[6.041744557006226,50.85125535879297],[6.041736523393999,50.85126063588695],[6.041733001721488,50.85127168535178],[6.041727569482998,50.85128017477435],[6.041719519833262,50.85128833743288],[6.041703440224486,50.851296006211896],[6.04167743270852,50.85130352444658],[6.041647897271195,50.85131059521821],[6.041630069976982,50.851315172669274],[6.041617510209992,50.85131467745997],[6.041619971130122,50.85130694196229],[6.041600223137896,50.851303215439316],[6.041577005747169,50.85129614665845],[6.041554849277957,50.85128577289808],[6.041540899355961,50.85127532571668],[6.041531654240052,50.8512672160161],[6.041525569409307,50.85126067049488],[6.04152069565716,50.851247376354856],[6.041522465652612,50.85123897958255],[6.04153018411251,50.85122043649612],[6.041531263041247,50.85121136945875],[6.041525487203597,50.8512065930253],[6.041520621740575,50.851201928296064],[6.041514860103996,50.851197151781705],[6.041505436068139,50.85119245891882],[6.041425795884437,50.85117688222144],[6.041335315401232,50.85116391070043],[6.041059633415997,50.85111528459173],[6.041041972788324,50.85111355970783],[6.04103129494959,50.85111560667231],[6.041016099516308,50.851120528704385],[6.041003830566926,50.851127555591944],[6.040965838679051,50.85115824321968],[6.040934839953771,50.85117834717122],[6.04090087990555,50.85120494894148],[6.04086395287381,50.851226578572884],[6.040855539084851,50.851230077929365],[6.040847316341845,50.851233027874926],[6.040839977840363,50.85123323116988],[6.040822672634656,50.85122751311883],[6.040813941858744,50.8512206229598],[6.040803975666979,50.8512147375659],[6.040798230317971,50.85120708443824],[6.040794401657738,50.85119337086505],[6.040795485017159,50.85117856881663],[6.040791833082138,50.85116429692508],[6.040788353836815,50.85115521970942],[6.040781003039521,50.85115253759546],[6.040772800812631,50.851146875940685],[6.040768614303197,50.85114000503234],[6.040755871875374,50.85112857112762],[6.040727925980439,50.85111343879289],[6.040710978703395,50.85110087805944],[6.040690192572347,50.8510889772441],[6.040670272073236,50.85108005588588],[6.04065402602067,50.85107391832809],[6.040642147358893,50.85106834935721],[6.040623606693994,50.85106362705197],[6.04060246094103,50.85106146335984],[6.040571297836057,50.8510648845258],[6.040532119147437,50.85106782063106],[6.040489941090533,50.85107153773912],[6.040455983602731,50.851075172423535],[6.040439542197341,50.85107531926294],[6.040429380953631,50.85107573624052],[6.04038723523631,50.851073691168104],[6.040382097185715,50.851073855034095],[6.040358691792246,50.85107458055023],[6.040326502578419,50.85107270392724],[6.040312695186445,50.85107032793147],[6.040297300836149,50.85106718784394],[6.040284170292321,50.851065482197285],[6.04026090460075,50.851067051872064],[6.040210670783149,50.85106743451497],[6.040170242315114,50.85107136634899],[6.040155699489999,50.851071214775736],[6.040135583930407,50.851068595728684],[6.040095534048671,50.851057073277495],[6.040081905844404,50.85105128940469],[6.040070878767002,50.85104870890883],[6.040057073584521,50.85104346537363],[6.040044827215549,50.85103900406737],[6.040032241586331,50.85103565931379],[6.040015434598123,50.85103404631006],[6.039989714062483,50.85103473089093],[6.039974461749432,50.85103965310692],[6.039964649708662,50.851044697415745],[6.039958674594125,50.851051967313005],[6.039947604259463,50.85106949548116],[6.039941575813528,50.85109112113915],[6.039928844261285,50.85113083459065],[6.039922161820587,50.85114031078889],[6.039907949699838,50.85115053064304],[6.039898121357049,50.85115845152365],[6.039884602338386,50.85116646515247],[6.039873394236591,50.85117018696075],[6.039806830487509,50.85118166417773],[6.039761284836982,50.85118725176744],[6.039740447857945,50.85118684802197],[6.039712755947294,50.851190734769524],[6.039704695801168,50.85119313538579],[6.03968544602708,50.85119351370535],[6.039674083964825,50.851186305718485],[6.039514046430677,50.85105187021961],[6.039117515442267,50.85091670989413],[6.038936559303446,50.8509272765357],[6.038766855955775,50.85093124445688],[6.038548169562121,50.85098010959925],[6.038191988982868,50.85099285774217],[6.037941306516029,50.8510031053131],[6.037738154530961,50.851012599476604],[6.037599694946384,50.85101890678656],[6.037550063312526,50.851017675852056],[6.037526300356885,50.8510151847388],[6.03750793704196,50.85100992159671],[6.037495542436268,50.851006009185284],[6.037479329418832,50.85099410004952],[6.037416121211212,50.85095532639639],[6.037385058352624,50.850938583777996],[6.037345057795673,50.85091837671114],[6.037319744189053,50.85090353438046],[6.037298956150384,50.850894464509764],[6.037277623378917,50.850887051677375],[6.037249671546591,50.850880512038934],[6.037236380460727,50.850876460816615],[6.037217165406247,50.850868173119885],[6.037198478663203,50.85086110495554],[6.037182730558513,50.850859045125254],[6.037154380135782,50.85085648084968],[6.037132880223976,50.850855370229986],[6.037113825517696,50.85084940078056],[6.037098430951376,50.8508462243134],[6.037073807826514,50.85083200727868],[6.037056362726049,50.850815259931494],[6.037044677271398,50.8508062197471],[6.0370231695618,50.85079645272956],[6.037008496282803,50.85079104292041],[6.036986663326273,50.85078238337312],[6.036931762676524,50.85076588248683],[6.036906941904546,50.850760853301],[6.036881401876621,50.8507551629649],[6.036848736490043,50.85073753030828],[6.036808539331787,50.85072352658255],[6.036780749477731,50.85071637466824],[6.036769561603085,50.850711421662176],[6.036754022639895,50.85070300536523],[6.036703766067374,50.850666288950244],[6.036692240892247,50.85065955800699],[6.036629310198014,50.85064252679567],[6.036600958929857,50.85063989047766],[6.036580680175703,50.850637757137264],[6.0365431313246,50.850621212530534],[6.036509931154459,50.85061099871995],[6.036476028355485,50.8505972561634],[6.036449827795049,50.8505879918146],[6.036434640314182,50.850581344337],[6.036396933440767,50.850559595931294],[6.036386837221575,50.85054843433819],[6.036374783968442,50.85054049281213],[6.036365904850816,50.850534106538234],[6.036341793776411,50.85052397647542],[6.036318706532356,50.850522056617955],[6.036302090200012,50.85051983974121],[6.036291428529969,50.850518991714296],[6.036274139764373,50.85051033348586],[6.036238147931612,50.8504974745237],[6.036142791006196,50.850456507571096],[6.036112208994125,50.850446665477676],[6.036089829027736,50.85044252131807],[6.036074255328287,50.85044276154623],[6.036062518194226,50.85044521850299],[6.036050958213044,50.85044714411242],[6.03604379608662,50.850446752838494],[6.036006995993865,50.850456271997544],[6.035984578498327,50.850463642955226],[6.03595972495876,50.850464366720026],[6.03594537268263,50.85046361128477],[6.035932767912322,50.85046596522913],[6.03591873164218,50.85047560830648],[6.035905884138371,50.85049003585587],[6.035898512188917,50.850495956038195],[6.035887305871302,50.85049677399793],[6.035873624890397,50.850499340722045],[6.0358513897278,50.85050351054172],[6.035829873108593,50.85050524929167],[6.035814780276699,50.85051245327262],[6.035801434938833,50.85052276663505],[6.035786679381891,50.85053174854478],[6.035771088997396,50.85053485632106],[6.035744164835731,50.85053069264361],[6.035725093533217,50.85052757257712],[6.035704126357154,50.85052190127385],[6.035687686834987,50.85051912599821],[6.035665099482967,50.85051842571204],[6.035637998558581,50.85051482032026],[6.035610687529902,50.850517508410306],[6.035586524923024,50.85051890239549],[6.03554468690986,50.85051849882453],[6.035496377982465,50.85051839220841],[6.035455922027933,50.85051933819596],[6.035423184478231,50.85052186790183],[6.03539250352064,50.8505293030576],[6.035369689599951,50.85053778176704],[6.035348111315929,50.85054526475271],[6.035327754849193,50.85055177905981],[6.035305869914229,50.85055459845871],[6.035268736409246,50.850556541512596],[6.035239163443493,50.8505548735344],[6.035217988263927,50.850552601156274],[6.035195412484848,50.85055475921976],[6.035137308606418,50.85055384441147],[6.035096896825389,50.850551859607314],[6.035042676947902,50.85054741726847],[6.035004474846287,50.85053590068383],[6.03494594627533,50.85052796773992],[6.034908036486694,50.85052110579455],[6.034857934255238,50.85051257726476],[6.034774202484773,50.85049254239363],[6.034739643742153,50.8504866863693],[6.034708084933966,50.850480085421715],[6.034692024696025,50.85047904275994],[6.034676799517657,50.850483901200555],[6.034648131662235,50.85048806187159],[6.034619112237404,50.850490435690816],[6.034600929589385,50.85049602980522],[6.034588479753339,50.85050642790181],[6.034561963669455,50.85055178213725],[6.034545950032736,50.8505703352426],[6.034522484293297,50.85058095681931],[6.034496976363296,50.85058668182491],[6.034475297299617,50.850590012287356],[6.034458394019153,50.850590628291656],[6.034411697041781,50.85058597274532],[6.034352559703874,50.85058020027249],[6.03428157431496,50.85057505140718],[6.034064787259238,50.85050591663521],[6.033923781209587,50.850460951479434],[6.033914739840553,50.85045512324513],[6.033913735660514,50.85044116892628],[6.033914988567853,50.85042004672668],[6.033919401692342,50.85040050689222],[6.03390636540989,50.85038721315851],[6.033890357725459,50.850374673144586],[6.0338713785152,50.85036287786086],[6.033850835484436,50.85035603527849],[6.033801877058043,50.850347023476836],[6.033762149026807,50.85034619396529],[6.033728363817529,50.85034385700618],[6.03371441905825,50.85034482490556],[6.033114102999374,50.85012912739371],[6.033092901964541,50.85012396031022],[6.03307875467115,50.850122619088715],[6.033069149023937,50.8501241739204],[6.033059272196465,50.850129703409564],[6.033047505605214,50.850141257104525],[6.03304522189601,50.85015467247973],[6.033048524884498,50.85017057356673],[6.033053820358369,50.85019189288515],[6.033053749266017,50.85020105308542],[6.033051562798444,50.850208202576226],[6.032937332784893,50.85016176524491],[6.032854140280939,50.85012937507485],[6.032820551480635,50.850119719698824],[6.032745922921911,50.85008233766691],[6.032651598036166,50.85004585659344],[6.032613998429253,50.850031648144665],[6.032600780033029,50.85002665214005],[6.032550750999601,50.850002921787386],[6.032517245771173,50.849986002736095],[6.032439992507679,50.84994058999501],[6.032371948414789,50.84988043776303],[6.032361191727889,50.84986765249791],[6.032349227377009,50.84985583579565],[6.03231377341832,50.84983356112183],[6.032110937801132,50.84971554351547],[6.032106972448116,50.84971323748305],[6.031894067157247,50.84958681701638],[6.031890988751279,50.849584982447894],[6.031634286639713,50.849430490363034],[6.031725301752064,50.84934556715482],[6.031199372116377,50.84909837901443],[6.030979794632771,50.84900335671246],[6.03070112920426,50.84888235209802],[6.030550176614951,50.848816853397146],[6.030416154212117,50.84875780429952],[6.030143200403371,50.84863991272543],[6.030046912216799,50.84859767851212],[6.029904798822049,50.848529505030946],[6.029750478491014,50.848455466482434],[6.029595843929607,50.848381258684995],[6.029444104996458,50.84830694470539],[6.029258255770494,50.84821589368418],[6.029161148780183,50.848166705795336],[6.028975008476758,50.84808018640013],[6.028901601301397,50.84804953688881],[6.028635437135691,50.84793842675521],[6.028011801901279,50.84767939748308],[6.027839301420121,50.84763019493493],[6.027133347510731,50.84746346680782],[6.026863650031162,50.84740440954542],[6.026493556583202,50.84733010424809],[6.02612957245127,50.84725702246456],[6.026032739028159,50.847237584067585],[6.025647472752727,50.8477219547165],[6.02368671546225,50.84705354013743],[6.023213898726239,50.84689203927311],[6.022719079526349,50.84663337845888],[6.022652887448325,50.84658585792487],[6.02239551152771,50.84649680714607],[6.022322447829092,50.846485531888334],[6.022205005178198,50.84646739906723],[6.022076239072151,50.846417642082976],[6.021990095368202,50.84638435247314],[6.021845423616241,50.84637784776849],[6.02170890672934,50.84637170262627],[6.021609018612053,50.84636739680839],[6.021507210715219,50.846370130838615],[6.021024737016518,50.8463817752833],[6.021023826417664,50.84638163645212],[6.020878865860777,50.84635919462167],[6.020187933846728,50.84631390018061],[6.020023647096338,50.84630476794918],[6.02002198441093,50.84630466019442],[6.019884933629966,50.84629577417779],[6.019769511992728,50.84628828878223],[6.019457906400699,50.846277337029754],[6.019332913775679,50.84627391264169],[6.01932669252118,50.84627373991524],[6.019222934497415,50.84627090042898],[6.019068702747564,50.846268174957174],[6.019016664256381,50.84626286823888],[6.01894571562549,50.8462556333308],[6.018889547987423,50.846124503114424],[6.018871539239248,50.84608246109018],[6.018844394114442,50.846019084155124],[6.018841695676429,50.84601277963275],[6.018746563327513,50.845790641881074],[6.018741740641428,50.84577848813398],[6.018676545463974,50.845614120873094],[6.018566800133759,50.845337454634276],[6.018392685917108,50.84489846586776],[6.018000713722124,50.84391020657799],[6.017998773202662,50.843905327151994],[6.017965625090841,50.843822144061214],[6.017958980649989,50.843805460780025],[6.017907001760816,50.84367498143455],[6.017126268639402,50.84171525047055],[6.017119904181325,50.841699275749406],[6.01688639950834,50.84112938711782],[6.016286261464316,50.83966457192459],[6.015942540468135,50.838796217401345],[6.017137740870093,50.83813319822603],[6.017759922676281,50.837769355763776],[6.01845015851616,50.837329100326876],[6.018434581490116,50.83730376451437],[6.018019255491591,50.83662871107204],[6.01772246656095,50.836146299998056],[6.017579150834114,50.83591669375406],[6.017439348139536,50.83569270428396],[6.01735651801867,50.83556001090241],[6.017092140850395,50.835136461282495],[6.01702370721791,50.83502680890897],[6.016973078901425,50.83494569841941],[6.016940632692032,50.834893712067945],[6.01672920236156,50.83454486834324],[6.016685031629848,50.834471965467834],[6.016563629484292,50.83427168660977],[6.016388958157728,50.83399838338981],[6.016315690767062,50.83388374106864],[6.01685691760906,50.83295910702753],[6.016904139056669,50.83287843419465],[6.017336508029318,50.83213793722495],[6.01735967268533,50.83209825933978],[6.017360449774516,50.83209695169829],[6.017462917395317,50.831922680599455],[6.017541467337399,50.831789107198716],[6.017541980618297,50.83178823246666],[6.017547183046151,50.831779385886854],[6.017639674686326,50.83162208632846],[6.017640215737982,50.831621166499474],[6.017971361032949,50.83105803278214],[6.018113194495145,50.83081681192649],[6.018123141202219,50.83079990325793],[6.018284408447299,50.83052564041096],[6.018541960413682,50.83008762019891],[6.018640701834528,50.82991969664261],[6.018716623038774,50.82979056836403],[6.018698459956913,50.82977943136888],[6.018676976110928,50.8297662450469],[6.018768690385293,50.829695180253],[6.0190263462315,50.829573678906996],[6.019773868229727,50.8293639034448],[6.020670619774914,50.82911223450292],[6.020979526275911,50.82902554088311],[6.022574827202956,50.82857780333707],[6.022881619863075,50.82849169152666],[6.025232655363324,50.82783177018924],[6.025239865778834,50.82782974381135],[6.025270262827779,50.827821216213295],[6.025264948977923,50.82778573900117],[6.024911759718226,50.82760188588445],[6.024538760418995,50.82740771371489],[6.024525708092405,50.82741839271768],[6.02274447675629,50.826605753918116],[6.023952537047837,50.8251078648452],[6.023954853346947,50.8251049845915],[6.023955593116481,50.82510408161537],[6.024195620585811,50.82412693105468],[6.024267805155414,50.82383302434621],[6.024379522529378,50.82311032214709],[6.024432773536769,50.82276583976014],[6.024486511718816,50.8224465328469],[6.024491064733744,50.82241745529453],[6.024500925938427,50.822354361064335],[6.024508895497426,50.82230334949079],[6.02453258697303,50.82221504574145],[6.024698402056473,50.82159526552107],[6.02500114876313,50.821547751017164],[6.025135251418756,50.82145487352538],[6.025765382466926,50.82083064875884],[6.026231425040145,50.820368968251664],[6.026360219826221,50.82023117367829],[6.026379433298999,50.820122030841475],[6.026354928768781,50.820032635956494],[6.026306744954027,50.81995487795632],[6.026005600277156,50.81960282607429],[6.025744330475028,50.81930200610902],[6.025641813322859,50.81918397174165],[6.02482931779917,50.81885182914084],[6.0246561890631,50.818782930876274],[6.024485224664526,50.81871144057534],[6.024250552618573,50.81861653436847],[6.023722950808732,50.818403166700314],[6.023767726756401,50.8182641299269],[6.023594794458599,50.81816377650712],[6.023290494430747,50.817973456100304],[6.02327847188858,50.8179659355708],[6.023133500403317,50.817875252518036],[6.022246300487154,50.81703166067369],[6.022128342135362,50.816883361267934],[6.022101372040094,50.81681006937692],[6.0224690025915,50.81670530452418],[6.023394441896302,50.81639575548361],[6.024110776107502,50.81611090298517],[6.024489466804089,50.815923731495666],[6.024330205542751,50.81574384107954],[6.024089806607477,50.815410595994635],[6.023770535696101,50.81505773952793],[6.023558191986545,50.81469942130686],[6.023528836926791,50.81464989181155],[6.02502898229189,50.814132034093646],[6.025013193688115,50.81411782874685],[6.024950082303014,50.81406103406808],[6.024758321499101,50.81388848788238],[6.024420511280259,50.813693582313306],[6.024358241749011,50.81366698569967],[6.024322461307962,50.8136516949684],[6.02382489219412,50.81342566769495],[6.023779361507708,50.81340600793463],[6.023710464443469,50.8133730383363],[6.023464699861155,50.81325349000775],[6.023329842398413,50.81315538958509],[6.023327858296295,50.81315451958749],[6.022289871794025,50.812696460599255],[6.02163827532089,50.812331914180824],[6.021041466302231,50.81205855354852],[6.019770013440669,50.81142908314799],[6.01907724000646,50.81107080646538],[6.018083399781396,50.810618338419744],[6.017999595494998,50.8105808714547],[6.017166592565586,50.810152632590054],[6.016679291377779,50.809880207588954],[6.016500509494185,50.80978026215275],[6.016341604287898,50.80967087763568],[6.015392642860739,50.80901766088643],[6.014974342438803,50.8087044750534],[6.014833986238227,50.80858666389931],[6.014803693726096,50.808561236814526],[6.014773458841702,50.808535872331774],[6.01450903744818,50.80831402193985],[6.014033615137573,50.80785038860756],[6.013859919114645,50.80767540744651],[6.01358508928053,50.80730402572157],[6.01313184854946,50.80668081288472],[6.012709057922295,50.806416974889075],[6.011959532361349,50.80575356259416],[6.011447177102159,50.80526867086195],[6.011419042924468,50.805242044699106],[6.011392850697706,50.80521741258051],[6.011377850920991,50.805203309007666],[6.011364244735215,50.80519051029521],[6.011275769248939,50.80510731881664],[6.010563982340316,50.80441477622043],[6.010132745393967,50.804083422320446],[6.01007906871966,50.80404653331345],[6.009994652532127,50.80398853308261],[6.009686021580942,50.80382904204143],[6.008748654608055,50.80335927315895],[6.008432390942786,50.80319377028591],[6.008269389412247,50.803109053649436],[6.008060421075038,50.80300045741351],[6.007890292527621,50.80291200317916],[6.007637370340145,50.80275279167574],[6.007006477865142,50.80258204379602],[6.006186988593025,50.80233382040861],[6.005885164827307,50.80223727760302],[6.005266027797529,50.802040739847],[6.004757909168439,50.80187106668276],[6.003692726404456,50.8014715420186],[6.003628689413585,50.80146244532134],[6.003563074991751,50.80146380219665],[6.002369799540575,50.8021801481664],[6.002168531387314,50.80230115070704],[6.000432529630085,50.80334565744851],[5.999937900928764,50.803604198171996],[5.998915709498466,50.80412072849158],[5.998943892772685,50.804181794171036],[5.998849948283858,50.804214526069025],[5.997174873671791,50.804919434922056],[5.997165139394319,50.80492353135705],[5.996345662804127,50.80528354890896],[5.995410825370406,50.80569423658431],[5.995007503673889,50.80587712748431],[5.993813012652528,50.806482340948506],[5.993056577012358,50.80691463485965],[5.992786203412733,50.80712243922582],[5.992039881658497,50.80754856090338],[5.991806353455822,50.80771041618535],[5.991580217587766,50.80788445731874],[5.991384969916751,50.808044763127675],[5.990683119981338,50.80838003455647],[5.990157914905667,50.808619276611886],[5.989451336956024,50.80893047474038],[5.987512495153219,50.809638648700755],[5.987038991373309,50.80982673026989],[5.986907823316989,50.80987882810872],[5.986820704335081,50.809900044808806],[5.986370552009182,50.81014229578967],[5.985647059877741,50.81052079569457],[5.985514529596958,50.81057424734192],[5.9854491178063,50.81055934977096],[5.984890474934131,50.81042623807215],[5.984360705613828,50.81022694150158],[5.98371184557039,50.80984395669397],[5.983518481985121,50.809729824222764],[5.983422070318331,50.80967277445118],[5.983047316972993,50.809446415060656],[5.982864159531349,50.809335779511045],[5.982338321848333,50.80906531481336],[5.981934185366522,50.808881144598395],[5.981369426957799,50.80859496541868],[5.981447410516086,50.8085140232087],[5.981428035046608,50.80849659438798],[5.981146047987319,50.808178936228344],[5.98103891375263,50.80807728244719],[5.980892633438149,50.807931963601284],[5.980699421809456,50.80777753715874],[5.980381116020977,50.80747013138417],[5.980256210064065,50.80727643127071],[5.980219582530165,50.80720666718198],[5.980173474541139,50.807118829994465],[5.980153107663948,50.806846209405236],[5.980147545340814,50.80675954839943],[5.980145668723841,50.80673037985889],[5.980150949260792,50.806566394080534],[5.980155545528284,50.80637551683921],[5.980159192864376,50.80622360263228],[5.980162685165867,50.80618717940979],[5.980180167379186,50.80600446991847],[5.980200240113486,50.80579470832937],[5.980140400808892,50.805730115165325],[5.9798381679997,50.80551350388672],[5.97965152620279,50.805370368140906],[5.979419156715232,50.80519215788216],[5.9793949170339,50.80517356712269],[5.97923826379139,50.80507911401821],[5.979046772547633,50.80496365220737],[5.979021512051719,50.80494841948294],[5.97870077355389,50.80467032569104],[5.978349113830094,50.80484522612837],[5.977973825857274,50.80503187803595],[5.977930690724468,50.805053330539124],[5.977897737404171,50.80506113965673],[5.977340903456446,50.80427718184343],[5.977033307461237,50.80377087654917],[5.976863253608412,50.80352760454936],[5.976680955696422,50.80336996967805],[5.976550548680621,50.80324362105199],[5.97629143370986,50.80301284776263],[5.976011868750419,50.80271296315866],[5.975741896562425,50.80235271311211],[5.975636837441714,50.80192060976072],[5.975669927509187,50.80143171155631],[5.975646374690013,50.801151645721106],[5.975586856449833,50.80089666249302],[5.975545278061365,50.80071853334634],[5.975474871116629,50.800457133476414],[5.975470504854364,50.800235847580524],[5.975366949551421,50.799821085069524],[5.975213472707911,50.79916045896857],[5.97514112975926,50.798645220642015],[5.975141775880614,50.79849474221936],[5.97495104202274,50.79809462562898],[5.974862413107886,50.79803674721983],[5.974868902705814,50.79803287591985],[5.974916334406711,50.798013982516984],[5.974993152862743,50.797987128158425],[5.975021552747741,50.7979740395427],[5.975054742382996,50.79797292680127],[5.975094744002059,50.79797883571194],[5.975105793647746,50.797983363842484],[5.9751264154509,50.79798775336307],[5.975153608621063,50.79798577221787],[5.975276108781535,50.797941866805346],[5.975308281824616,50.79792881284323],[5.975346831948323,50.79790973076838],[5.975446815967041,50.797839584194996],[5.975505518124328,50.797801279929686],[5.975538496009859,50.797790190385406],[5.975579400617386,50.79778342908873],[5.975629256092059,50.79777787164627],[5.975713770151075,50.79776066769897],[5.975857667766179,50.797715304304276],[5.975913016273302,50.797689952029764],[5.975930633359469,50.797675515866686],[5.975959155287147,50.79762960771545],[5.97598382920896,50.79757107170873],[5.975997162002917,50.797548747090985],[5.976010775890122,50.797537396555214],[5.97609325183014,50.79749711008723],[5.976215236223224,50.79745855473109],[5.976408410724101,50.79738009371354],[5.976431083518523,50.79736841826139],[5.976447135004873,50.79735804402463],[5.976459865928532,50.797344190020524],[5.976471909450286,50.79732088313887],[5.976510490132047,50.79728306753017],[5.976599209378536,50.79721402912801],[5.976666757489285,50.79717327907874],[5.976729000273743,50.79714922159314],[5.976743067332037,50.797145653094354],[5.976811071634279,50.79712854158946],[5.976866943845442,50.797106548051104],[5.976919700234649,50.7970759859386],[5.976936729029346,50.79705994360055],[5.976954149852591,50.797037921601756],[5.976971550559629,50.796987539542464],[5.976983965931222,50.79694441904586],[5.97699227884986,50.7969344977366],[5.977003531870915,50.796904821664036],[5.977035123704111,50.79683498694131],[5.977042439616403,50.796823623497254],[5.977095415907037,50.79677692500189],[5.977134399126724,50.796728455212026],[5.977172796480842,50.79670195741303],[5.977192607231597,50.796692786369086],[5.977214252364948,50.79668845099993],[5.977236276266769,50.79668824861237],[5.977262497864596,50.79669135069179],[5.977274719039538,50.796697670421324],[5.977281309859994,50.796704018912244],[5.977336474383658,50.79674910436095],[5.977373597180791,50.79677294217992],[5.977401397954958,50.79678422509992],[5.977430504095951,50.79679220239575],[5.977478102700878,50.796797757046015],[5.977539708279735,50.79679726243513],[5.977586434233908,50.796796655075624],[5.977603352448173,50.796799813617255],[5.977640129666013,50.79681877211354],[5.977678051246436,50.796850749748195],[5.977711051254099,50.79687603777928],[5.977739344758787,50.7968814483101],[5.97777089544876,50.79687086880291],[5.977794537545001,50.79686073422636],[5.977929344391072,50.79681468661055],[5.978039835313607,50.796754830331174],[5.978054005515198,50.7967371035356],[5.978076935466689,50.79671226660824],[5.97808768207185,50.79669077297002],[5.978100259628168,50.79666604292852],[5.978117917873224,50.79664378582465],[5.978144293098041,50.79661774471615],[5.978174562224997,50.79657338216096],[5.978193442386111,50.796544619777066],[5.978211009493544,50.796521895699236],[5.978239720683375,50.79649775726462],[5.978260828454643,50.796487995117644],[5.978271838727488,50.79648609604147],[5.978286327775695,50.79648561739597],[5.978329831918246,50.796494878119454],[5.978402000267172,50.79650525956431],[5.978432486050514,50.79649907193718],[5.978448664834108,50.79649206762781],[5.978465116103672,50.79648196073075],[5.978537816673484,50.79643839662797],[5.978578611151367,50.79641755811931],[5.978602596395573,50.7964065586793],[5.978652539827274,50.79639691848878],[5.978717141333648,50.79639783715226],[5.978763713614971,50.79639744583719],[5.978805359327035,50.79639777188564],[5.978863372633205,50.79639812194972],[5.978871776061656,50.7963953372731],[5.978909898692534,50.79638520919331],[5.978950947269215,50.79637430204996],[5.97907132355804,50.79635130279803],[5.979120531473537,50.796332937894626],[5.979153833718684,50.79631407020097],[5.979158587035157,50.796297551102384],[5.979138574034546,50.796278597070156],[5.979108247605036,50.79627502205877],[5.979076428194322,50.796272263695855],[5.979058081443915,50.79626162488751],[5.979050634939508,50.79625158641982],[5.979044765567172,50.796225090076696],[5.979057739321135,50.79618477104501],[5.979068594651775,50.79615850361986],[5.979079172743017,50.796153865048474],[5.979080081184485,50.79614280397457],[5.979075574778592,50.796134206654465],[5.979055004644984,50.79608935827359],[5.979037290941403,50.7960616282086],[5.979039230793147,50.796046921322194],[5.979046710816534,50.79603290516583],[5.979052147879213,50.79602440071935],[5.979072129055251,50.7960219701967],[5.979090429016344,50.79602450120155],[5.97910663553985,50.79602747440103],[5.979125943081686,50.79602893954],[5.97915634993548,50.79602771403015],[5.979230046903495,50.79602566438113],[5.979283401611196,50.79602553472809],[5.979297124518211,50.79602393626263],[5.979338095151269,50.7960102877476],[5.979354719682203,50.79600044950334],[5.979365550477556,50.79599005667654],[5.979370385752645,50.79597218880505],[5.979358632695223,50.795959215067825],[5.979317837724783,50.79593438994688],[5.979243392933579,50.79588560193572],[5.979238649240061,50.79586841239387],[5.979245629363929,50.79585412911786],[5.979269826254108,50.795850858957564],[5.979303817691704,50.79585824443496],[5.979353587695036,50.7958728570384],[5.979379538581263,50.79587255320861],[5.979402287328692,50.795866944326555],[5.979411501810183,50.79585993064151],[5.979421698385737,50.79584985567451],[5.979434702081234,50.79583413922588],[5.979453884750332,50.795798049080695],[5.979459397107967,50.795747673659235],[5.979463665383698,50.79573539083438],[5.97947354519525,50.79571605885947],[5.979555874634875,50.795604793833895],[5.979576483146991,50.79559152831094],[5.979595555862633,50.79558572250754],[5.979667398898313,50.795579601097835],[5.979694209444861,50.79558665474464],[5.979711927528522,50.79560804747081],[5.979716901468905,50.79561993232678],[5.979734896849605,50.79563971460346],[5.979751316467705,50.79564272257486],[5.979774329558369,50.795641166283396],[5.979796276273649,50.79563273890473],[5.979806449517977,50.795623068526226],[5.979837523434622,50.79558636898208],[5.9798795662521,50.79553900617649],[5.979951813430328,50.79546461137289],[5.980018279180833,50.79539618789735],[5.980045978585754,50.795356260601],[5.980050350238391,50.79533654335435],[5.980050489335913,50.79532189962633],[5.98004700528787,50.79530452387281],[5.980040069499617,50.795294500825676],[5.980014769566262,50.795272463901256],[5.979988100855549,50.79526096006682],[5.979922013905109,50.79524466963338],[5.979899016706024,50.79523746163853],[5.979889477197515,50.795224566487036],[5.979883810666893,50.79520176360751],[5.979891097495478,50.79518819783474],[5.979906407819817,50.79517765612564],[5.979953252291433,50.79515870073018],[5.980175655538585,50.795099095015395],[5.980234351248865,50.79509304074342],[5.980254644203042,50.79509284666479],[5.980286137662298,50.79509457264388],[5.980327821558439,50.79509686652545],[5.980424943206497,50.795113392856564],[5.980524691732965,50.79513680913359],[5.980577805470777,50.79515451421213],[5.98060754018774,50.795162882990624],[5.980626643832849,50.79516949959883],[5.98065573247331,50.795170599616185],[5.980673942502204,50.79516944535802],[5.980708014830022,50.795161000448196],[5.980728544080489,50.79515377570607],[5.9807922725111,50.79512316442008],[5.98082622653343,50.795109910989844],[5.980916725857068,50.79507883844603],[5.980936601768805,50.7950748710282],[5.98098284450215,50.79506878150762],[5.981001248886248,50.79506730259602],[5.981043667744677,50.795068289041986],[5.981072123559252,50.79506981468883],[5.98110181976124,50.795079603793866],[5.981124563431457,50.79509026461376],[5.981143674943891,50.7950974923454],[5.981169547829921,50.795095561511445],[5.981187947845631,50.795089309455044],[5.981200724055523,50.7950824750672],[5.981222361923222,50.795065473536674],[5.981278688054376,50.79504051814845],[5.981322549273148,50.795016804401264],[5.981366985316566,50.79500918690722],[5.981395857717833,50.79500891253945],[5.981442248890446,50.79501110090288],[5.981462099180431,50.79501621237564],[5.981490711912226,50.795028883422226],[5.981507436579339,50.79504021335091],[5.981523061620054,50.79505316694793],[5.981550506401566,50.795092019840475],[5.981594339492931,50.79517018700614],[5.981605108710388,50.79518050484783],[5.981620313184866,50.79518830093324],[5.981634786944154,50.79519330521057],[5.981654616242031,50.795197877421096],[5.981674143452445,50.79519547574997],[5.981686999724896,50.79519046565496],[5.98170009713432,50.79518213739121],[5.981772733505009,50.79511071478038],[5.981813170853509,50.79507770590787],[5.981826611822761,50.79506741626773],[5.981841576272918,50.79506312340835],[5.981870458957065,50.79506364888656],[5.981886880927608,50.795066845310195],[5.981902988309211,50.79507537380456],[5.98192545432359,50.79509423382857],[5.981974345757659,50.795146522558376],[5.98202593179905,50.79520432560223],[5.982044368360745,50.795219736615195],[5.982062480075511,50.79522750868201],[5.982090481828259,50.7952334320185],[5.982125056357772,50.79523541129752],[5.982159601516789,50.79523178160626],[5.982177613026662,50.79522178299664],[5.982185915632019,50.79521559178099],[5.982192487940951,50.795209400488716],[5.982208226579452,50.79519027180934],[5.982213516087283,50.795178055531494],[5.982225813172382,50.79515156464158],[5.982240896426273,50.79512999433662],[5.982261251447333,50.79511915665674],[5.982310159388645,50.79512736329899],[5.982465497262369,50.795197701508044],[5.982491873453947,50.7952073635433],[5.982560011038055,50.795224235211656],[5.982612339121553,50.79522706667761],[5.982654968206566,50.795223422134185],[5.982768748732329,50.79520404860003],[5.982832732497117,50.79519342631631],[5.982864186136003,50.79518651340727],[5.982893235439787,50.79518012525998],[5.982942117145911,50.79515865921094],[5.983004511911552,50.7951248085632],[5.983066893266153,50.795078876787265],[5.983090067202735,50.79505011840862],[5.983096157345652,50.795016333441886],[5.983098555866958,50.794998792594285],[5.983113348504996,50.79495794235211],[5.983124810151402,50.794939330004546],[5.983141558785502,50.79492709950777],[5.983168312396622,50.79491977030508],[5.983325214143818,50.79489541856434],[5.983406224967106,50.79487993494617],[5.983467863218352,50.79487004353228],[5.983514130860221,50.794862622501896],[5.983559974713937,50.794853127190855],[5.983760288192259,50.79484746349103],[5.983913001491857,50.79485036913529],[5.983935593330573,50.794852490674586],[5.983953089017681,50.794852049717306],[5.983972933704308,50.794845681884546],[5.983986745165756,50.79482895398071],[5.98401526666721,50.794791484448304],[5.984039054894784,50.79477635895756],[5.984072424906337,50.79476961559519],[5.984109126536516,50.79477159227687],[5.984163245012438,50.79478353758264],[5.984185130413863,50.7947979955794],[5.984202523838629,50.79481606338471],[5.984211305848206,50.79483613529036],[5.984259932398621,50.79497346899607],[5.984275990626704,50.79498255473069],[5.984302684095629,50.7949826864139],[5.984327145297716,50.79497797559157],[5.984371530895535,50.79495986708259],[5.984461650749526,50.79487197448709],[5.984541468843703,50.79480904350928],[5.984559614588006,50.79480181243215],[5.984593322587024,50.79479488739191],[5.984624354370805,50.79479710896901],[5.984638210097491,50.7948091724024],[5.984646256883916,50.79485694307008],[5.984661096479194,50.79487381949552],[5.984679867225458,50.79487987984138],[5.984704693283021,50.79488038064944],[5.984713631395649,50.79487951641787],[5.984893271246817,50.79484118393962],[5.985008250551007,50.79482693468798],[5.98507020364327,50.79480958893871],[5.985091360322127,50.7948004904668],[5.985113617908611,50.79478437490171],[5.985124896266332,50.7947670127674],[5.985119906527878,50.79474960001011],[5.985103168628464,50.794736203208856],[5.985067802659144,50.794711307064944],[5.985040312520959,50.794701067100064],[5.985026871550572,50.79468267333867],[5.985027790991539,50.79467147732211],[5.985041329706643,50.79464902473356],[5.98505131773287,50.79463718850776],[5.985095164514798,50.79458941893264],[5.985100501295971,50.79455782207286],[5.985105317855209,50.79452437617954],[5.985181092838661,50.79439984634846],[5.985197163231302,50.79435485429563],[5.985198348545476,50.794336780345134],[5.985201647340572,50.7943011220318],[5.98523968644514,50.794282551650355],[5.985248042527457,50.79428165443465],[5.985256993258173,50.7942817788811],[5.985267160838895,50.79428388358696],[5.985269312499576,50.79429677160681],[5.985274630200093,50.79431872208516],[5.985309816693682,50.79436931853709],[5.985344565292393,50.79440244270368],[5.985367197841927,50.79441433475366],[5.985385325778398,50.79441784544805],[5.985402320645347,50.79441707427275],[5.985424264350612,50.79441183691694],[5.985445127933858,50.794397625177936],[5.98553937386451,50.79429889664048],[5.985619977348284,50.794211277151085],[5.985663780829198,50.79416022661042],[5.98570849769771,50.79410742746144],[5.985712498242456,50.79409761775204],[5.985727905749559,50.79407824760135],[5.98574195215217,50.79406660602038],[5.985748375810227,50.79403684623472],[5.985742152872906,50.794021696124105],[5.985737073003625,50.7940116008758],[5.98571310791437,50.79399095156526],[5.985663620935915,50.79394770140197],[5.985658768647621,50.79392885871082],[5.985664011234483,50.79391198623248],[5.985664926840842,50.79390930277768],[5.985666744799297,50.79390400784854],[5.985677355637923,50.79389320207151],[5.98569675725596,50.793873424704536],[5.985714925130808,50.79386245392124],[5.985775010367159,50.79384335563116],[5.985795926010223,50.7938365055182],[5.985842694140965,50.793833908029704],[5.986096448025035,50.793829815006255],[5.986172277187083,50.793833925277816],[5.986185529776844,50.79383441386941],[5.986216901950735,50.79383558154285],[5.986263555304951,50.793833982254014],[5.986347063354863,50.79383198503468],[5.986377590431181,50.79383470314978],[5.98639765428211,50.79384646449911],[5.986402042577543,50.79386010495774],[5.986402560623303,50.7938683721161],[5.986401296073755,50.793891255586445],[5.986406734124896,50.79390601421957],[5.986420048040312,50.793916740894886],[5.986454715194906,50.79392046225363],[5.986477361889606,50.793916973897254],[5.986501652302145,50.79390898252658],[5.986525769877192,50.793899688647954],[5.986577060081908,50.793878262488015],[5.986607676057636,50.793861509987416],[5.986619656988468,50.79385358247017],[5.986663649791893,50.79381949273663],[5.986709113143463,50.793790555018376],[5.986730202865124,50.793784018445876],[5.986757942630303,50.793783955360404],[5.986782332808891,50.79379466944453],[5.9867970774811,50.79380416615059],[5.986816802084992,50.79381930004969],[5.986842713842329,50.79383471643898],[5.986870048564419,50.79384501071497],[5.98689598466912,50.79384365356083],[5.986909477431485,50.793842972257295],[5.986973383805637,50.79383974598952],[5.986993439162069,50.793839866572704],[5.987029226260617,50.793847941590606],[5.987065009274698,50.79386228192607],[5.98709468035258,50.79388105858583],[5.987120022529735,50.793899579063954],[5.987129428594828,50.79390860007389],[5.987142754299182,50.79392022550162],[5.987191093431515,50.79398208815273],[5.987292430669919,50.79405589145504],[5.98732040355706,50.79406945429257],[5.987345869936187,50.79407453557621],[5.987366790462443,50.794074651599736],[5.98739508088682,50.79406232455437],[5.987401583755142,50.79405631310314],[5.987430457446945,50.794040836880995],[5.987463312963992,50.7940261939104],[5.987478557639137,50.79402499106525],[5.987490894060261,50.79402043247111],[5.987529185862183,50.79399736553688],[5.987546142387593,50.79399254921118],[5.987560322410454,50.793993464295234],[5.987574561281193,50.7939989274872],[5.987591964013988,50.79400557875312],[5.987754297912962,50.794066039572336],[5.98783568780527,50.79409211583641],[5.987841181272313,50.79409358842707],[5.987914673616057,50.79411324263838],[5.98794173378093,50.7941121580619],[5.987955562321368,50.79411221198506],[5.987967537032621,50.79411148451987],[5.987985654121681,50.79410757896765],[5.988183648913774,50.79406881329113],[5.988269532556436,50.79404982216986],[5.988281959186718,50.794043474217716],[5.988312504702905,50.79402789019545],[5.988371965380566,50.79399130127765],[5.988407672926454,50.79397350604493],[5.988435127562901,50.793960185319],[5.988459517050059,50.79394782438323],[5.988621435755939,50.79384487576569],[5.988656887595972,50.793827063808784],[5.988678230226728,50.79381270516386],[5.988708438217633,50.79379626884207],[5.988755090801626,50.79377820975691],[5.988947661533141,50.793672395359664],[5.988985884648933,50.79365504527859],[5.989062388494772,50.793621513343425],[5.989160627473458,50.79356455071167],[5.989181476658115,50.79354825292819],[5.989212406950906,50.793542698345234],[5.989229252038684,50.79354134310361],[5.989240412792491,50.79353801294857],[5.989323792723764,50.79350324047788],[5.989340718243653,50.79349169131468],[5.989355485258197,50.79347664770554],[5.989455209230941,50.79338008068987],[5.989475190556647,50.79336249296703],[5.989517079737527,50.79333261095387],[5.989531872112667,50.79332499207451],[5.989570809913686,50.79330701783289],[5.989625170587431,50.79328520575249],[5.989676128482625,50.793264561982895],[5.989742984776268,50.79323847783308],[5.989766824613836,50.793227530753846],[5.989876090365216,50.793179993341376],[5.98995603764982,50.793136528014436],[5.990054815102313,50.793082968623544],[5.990073864536289,50.7930711835424],[5.990090243403421,50.793065614783345],[5.990132290177051,50.79305555239059],[5.990153711865473,50.79304515719155],[5.990187854909859,50.79301948624873],[5.990409398027444,50.792879135349665],[5.990544262951087,50.79278049617523],[5.990592341210088,50.79275441972745],[5.990774693090733,50.7926628222511],[5.990857331041885,50.79261918942235],[5.99091298871694,50.792585989922735],[5.991171096668499,50.792440817110176],[5.991489946585475,50.79226318140053],[5.991678814117027,50.792159278458314],[5.991893796782075,50.79202873002606],[5.991984132497834,50.791982862776365],[5.992229877264859,50.79187434639323],[5.992328116046501,50.7918212103453],[5.992350830865807,50.791808920277816],[5.992381213326389,50.79178974942776],[5.992411505527303,50.79177235885789],[5.992890179864874,50.791505052724396],[5.99325136711093,50.79130384574208],[5.993331663092532,50.791254991838635],[5.993351611142848,50.79123938118546],[5.99341151230676,50.79119800520877],[5.993438439223342,50.79117709037703],[5.993558846433429,50.79109833521597],[5.993895110042709,50.79091550464716],[5.994107466908311,50.79079870998195],[5.994137205763861,50.79078248143995],[5.994165536477734,50.79076810302839],[5.994539042830736,50.79057933090029],[5.994618727576337,50.79052731519174],[5.994650467286458,50.790504711805056],[5.994680481558762,50.79048030171317],[5.994712393315466,50.790454596210616],[5.99476990296214,50.79042027945224],[5.994845239857065,50.790383909282504],[5.994865511066748,50.79037463388724],[5.994986318491359,50.79032461284834],[5.995076768985498,50.79030531394485],[5.995150419279473,50.79029502944651],[5.995185323842273,50.790293209724176],[5.995256139287194,50.79028952899417],[5.995360797035715,50.790255997447595],[5.995812254856643,50.79008934603962],[5.995870063975838,50.79007038929796],[5.995903997059042,50.790050740364585],[5.99591927044838,50.79002589526285],[5.995938951035348,50.78998027140361],[5.995941195063932,50.78993512596741],[5.99592453718753,50.789774419100425],[5.995877614691329,50.78945567488334],[5.995836478737534,50.78914774984432],[5.995779888970301,50.78877190468596],[5.995773408197361,50.78870052148648],[5.995773981616093,50.78856149509228],[5.995774295269806,50.788542158170344],[5.995774515180996,50.78852756791724],[5.995779127146813,50.78823908764832],[5.995768551520778,50.78805981347307],[5.995760969577137,50.78793905069069],[5.995758838635354,50.787736531496094],[5.995757549151688,50.78756573892357],[5.995758855013427,50.787546369807416],[5.995769133892631,50.78751486325004],[5.995788233727589,50.787484496754786],[5.995810661160915,50.78745917350988],[5.995852305400454,50.78742322291027],[5.995924890785562,50.78738184168739],[5.996055972351213,50.787307135581706],[5.996087007867195,50.78728944348102],[5.996238507036586,50.787218944227924],[5.996335642953217,50.787190916731305],[5.996438110758382,50.78716938701741],[5.996554620422273,50.78712868157156],[5.99657755852801,50.78711961652416],[5.996599692654084,50.78711087931717],[5.996619548965698,50.78710361932678],[5.996628270455535,50.78710042716796],[5.996667009508753,50.787087359535214],[5.99670993162186,50.78707752382018],[5.996727002321421,50.7870751864883],[5.996742346098557,50.787073082992265],[5.996774929515015,50.787070708726134],[5.99680299563017,50.787069886418664],[5.9968483586913,50.78706883796772],[5.996921253735114,50.78705761246689],[5.996940028434816,50.787052218847556],[5.996960597284214,50.78704631237068],[5.996989077606466,50.787034925793776],[5.996992440351139,50.78703292147717],[5.997011519924583,50.78702159351767],[5.997033257426178,50.78700426486801],[5.997049631517031,50.78698237117232],[5.997061339114566,50.78695499187814],[5.997064519939055,50.78694238153782],[5.997072468906574,50.78690198808626],[5.997078085812144,50.7868697329758],[5.997080402616623,50.7868377739497],[5.997079801784235,50.7868114754023],[5.997081639279681,50.78678944272785],[5.997083207901841,50.786779321855626],[5.997083741164752,50.786777817882026],[5.997428847688314,50.786592602054384],[5.99745586995623,50.78656633733385],[5.997680893131059,50.78668808124877],[5.997690245863273,50.786693002711],[5.997896353383521,50.78674466033001],[5.997982381287978,50.78675304156594],[5.998119915044978,50.78681231551264],[5.998125907222571,50.78681508837438],[5.998216233432855,50.786856975553405],[5.998367170346037,50.78692611110941],[5.998425673592094,50.78694946946553],[5.998469807741807,50.78696709696954],[5.998509351226271,50.78698285208269],[5.998530083758056,50.78696893528781],[5.998546739053561,50.78695121975947],[5.998592068025426,50.78691530259296],[5.998664098174739,50.78686754040936],[5.998713456529591,50.78684148972778],[5.99878792914545,50.78681553076198],[5.998837567381715,50.786795662955605],[5.998918523811975,50.7867678268291],[5.998952361792552,50.78675307648128],[5.998977026023603,50.786740541059075],[5.99899619042289,50.78672601224738],[5.999014187892416,50.78670901764755],[5.999015486726126,50.78669997685309],[5.999020516375463,50.786688893776876],[5.999020952366313,50.78665635139872],[5.999013596822142,50.78662115360463],[5.999005902964631,50.786591485818334],[5.999006674525386,50.78654244690432],[5.999008336641527,50.78652869396573],[5.999036496142677,50.78651347029098],[5.999041978753662,50.78651093332389],[5.999044387063272,50.78650430468426],[5.999064790372655,50.786486955750206],[5.999092745646029,50.786477755752934],[5.999151632753531,50.78646356478207],[5.999171538833813,50.786459054711685],[5.999317603541157,50.78643185309022],[5.999352849335994,50.78642173347064],[5.999365822357154,50.786416226382364],[5.999389509693943,50.7864006038437],[5.999414048511572,50.78638073399301],[5.99944141869175,50.78635191409218],[5.999449442123496,50.78633345316068],[5.999450940279077,50.78629545783401],[5.999426992885887,50.78625266245204],[5.999404583111309,50.7862146320575],[5.999394412310735,50.786197148491084],[5.999385114139439,50.786174869177664],[5.999386006004068,50.78615648200798],[5.999392696867909,50.7861466485655],[5.999404692135385,50.78613259814554],[5.999420133223191,50.78612070478894],[5.999437857474311,50.78610882629392],[5.999452116553998,50.78610084940055],[5.999466668899792,50.786090381006204],[5.999477407473421,50.78607028766436],[5.999500419935251,50.78604759436129],[5.999561633539619,50.78600021255901],[5.999620984120475,50.78596424760511],[5.999679314392253,50.7859251149251],[5.999711145668369,50.78590342652089],[5.999742516908104,50.78587911576863],[5.999769016799385,50.78585637694804],[5.999790772735289,50.785828746317776],[5.999800861133862,50.785808827184354],[5.999812544028031,50.78578616694559],[5.999835996449443,50.785752783356386],[5.999843217116115,50.785745499944376],[5.999849005240639,50.78573818817518],[5.9998597180577,50.78571831066907],[5.999858319157781,50.78570901450645],[5.999849280355779,50.785680612366235],[5.99983403277169,50.78565880510803],[5.999817319022263,50.785641940569164],[5.999798636386763,50.7856241606076],[5.999790593808426,50.78561107038274],[5.999785377320721,50.78560260347565],[5.999782149379326,50.7855890202863],[5.999787635468039,50.7855813865193],[5.999796299453117,50.78557065267934],[5.999812244218961,50.78556363760831],[5.999838578483507,50.7855627428455],[5.999861827994373,50.78557200399821],[5.999886193786911,50.785586337992186],[5.999908263335355,50.78559858973321],[5.999930585500754,50.785608494008784],[5.99996045827938,50.78561462779717],[5.999983159828936,50.785615675914826],[6.000018973045288,50.78561314875818],[6.000035418774722,50.785600045465685],[6.000060500464175,50.78557301737527],[6.000084873085664,50.785550280780676],[6.00009568631465,50.78554231310417],[6.000124553261039,50.78552597077478],[6.000138851150329,50.785519881273366],[6.000156449859523,50.78551570688016],[6.000174067915334,50.7855129975836],[6.000209519908019,50.78550782053878],[6.000246442078746,50.78550766950214],[6.000253500722108,50.78549778911196],[6.000258802836953,50.78548589552723],[6.000255551444671,50.78547162032453],[6.000245985934325,50.7854505919659],[6.000229537082027,50.78542158198245],[6.000201040791854,50.7853811660168],[6.000186292952296,50.78534996267932],[6.000207801107112,50.785350846295955],[6.000221973204001,50.78535026769015],[6.000252235445133,50.78534939692797],[6.000285649648933,50.78535634780735],[6.000325971903015,50.785365635091715],[6.000351769983522,50.785364949804276],[6.000373488692967,50.78536030405594],[6.000397519719347,50.78535036950113],[6.000427605713494,50.7853307935827],[6.000445772700625,50.785320269915005],[6.000471686171688,50.785303637555614],[6.000510047772741,50.785291172890965],[6.000545377251155,50.785287470584],[6.000573013249306,50.78528744965903],[6.00059268216858,50.78529508469947],[6.000607608957629,50.78529689310398],[6.000616729485571,50.78529604464376],[6.000639689490348,50.78528983716039],[6.000658225928235,50.78528152278333],[6.000675565610259,50.78526741687467],[6.000692205971863,50.78525082473352],[6.000725148707321,50.785222109757434],[6.000754311481841,50.78520779720501],[6.000791723549016,50.78519538243561],[6.000831894937578,50.78518360918802],[6.000861905817175,50.785174460759855],[6.00087665175244,50.78516795529322],[6.000885297628638,50.785158021485074],[6.000892240883381,50.78514050104394],[6.000896754314636,50.785123667686676],[6.000909464815751,50.785091914025806],[6.000931493526548,50.7850420969502],[6.000930511528075,50.78502681193062],[6.000930641273868,50.785008743411424],[6.000948873365687,50.78498922135891],[6.000955857591722,50.784985525732054],[6.000966897210879,50.78497968715592],[6.000987873500636,50.78497896442765],[6.001008785553307,50.7849787454193],[6.001076984286655,50.78497834698326],[6.001091636492131,50.78497548251995],[6.001107047450484,50.78496780492257],[6.001123814978516,50.78495334242844],[6.001161944726977,50.78486764563854],[6.001183666446251,50.78485467593444],[6.001207700309702,50.78484713226068],[6.001234647085409,50.784844337248956],[6.001242105161425,50.784838949158896],[6.00124901473761,50.7848081791329],[6.001249231050508,50.78478273020827],[6.001256645316568,50.78477081635782],[6.001270784709192,50.78476027801761],[6.001291441541459,50.78475149382619],[6.001313836170216,50.784741163276585],[6.001334918937095,50.784732421757305],[6.001356145409622,50.78472275360602],[6.001380923478757,50.784715736287644],[6.001415878477725,50.78471056151301],[6.001461999789916,50.784708059984965],[6.00149000908045,50.78470841439075],[6.001519788883818,50.78470969422491],[6.00154623526115,50.78471302329067],[6.001564303588412,50.78471436541121],[6.001584172374221,50.784714610285526],[6.001603801433743,50.784714955310456],[6.001626571862534,50.784712667829154],[6.001649493237016,50.784711071691014],[6.001671962157699,50.78470528909544],[6.001705259212581,50.78469805559104],[6.001737523333166,50.78469312874979],[6.001762430911401,50.7846894725351],[6.001780664217873,50.78468506979176],[6.001793486348633,50.784678934003416],[6.001803359519009,50.78466854414603],[6.001814655162738,50.784651000486214],[6.001828141679223,50.784624366305486],[6.001828877670814,50.78460499115718],[6.001848471879147,50.784569515278335],[6.001864860182817,50.784542506090865],[6.001882825032513,50.784524261745325],[6.001899014875703,50.78451117752456],[6.001916650319625,50.784498040662264],[6.00193929911274,50.78448336696491],[6.001963603513818,50.78447272049799],[6.001984248776319,50.7844630822912],[6.002004226829238,50.78445124533477],[6.002018454259999,50.78443880976076],[6.002027767016076,50.784424656488625],[6.002032376825221,50.784408712480726],[6.002033296343482,50.7843882127326],[6.002031665784846,50.78436573999773],[6.00202743507815,50.78434500698748],[6.002026476348253,50.78432722291867],[6.002030535680557,50.78431254029726],[6.002040543554418,50.784293061852914],[6.002049691116328,50.78428142637024],[6.002063343055816,50.784263016188916],[6.002095944264602,50.784225763113575],[6.002131452325702,50.784191730580694],[6.00215951967713,50.784175086370425],[6.002186825627436,50.78416518793575],[6.002215297257365,50.78416193512527],[6.00224021391253,50.78416112826184],[6.002262932552484,50.78416244550712],[6.002288099616438,50.78417197461606],[6.002308204888651,50.78418152169017],[6.002327653669393,50.78419288802957],[6.002342999191597,50.78420170537567],[6.002364458584971,50.78421071487824],[6.002386646689748,50.78421586422674],[6.002428919749016,50.784217257055765],[6.002457334799447,50.784215083163595],[6.00248975208023,50.784206766452876],[6.002515924779811,50.784196954878475],[6.002533837312905,50.78418976714341],[6.00256770575136,50.78417754146558],[6.002584538667247,50.78416378853743],[6.002590072968681,50.78415342173141],[6.002591786118789,50.78413718751041],[6.002590362347241,50.784105733698915],[6.002602891143336,50.78407321675337],[6.002618843908557,50.78406687542211],[6.002692851314641,50.784044826598915],[6.002729416350325,50.784032802237164],[6.002749456603159,50.78402461434134],[6.002774816919557,50.78401343172515],[6.002798787040397,50.784003272267256],[6.002827334868366,50.78399615364177],[6.002847886764335,50.783995540704026],[6.002852964521809,50.783996727146686],[6.002873858654136,50.78400160464119],[6.003008391918304,50.78406036739029],[6.003051916481648,50.78408021666446],[6.003076668033567,50.78408620616312],[6.003112396766888,50.784085961691936],[6.003152446318842,50.7840854244961],[6.00318490053347,50.78408311202542],[6.003226687827503,50.78407568897217],[6.003259251867751,50.78406562740146],[6.003275094196481,50.78405845059401],[6.003298849787176,50.784042817892896],[6.003333977637229,50.78402401433266],[6.003369268826462,50.784012176343076],[6.003402614649703,50.78400333306078],[6.003432752311581,50.7839984890014],[6.003470951679727,50.78399744020675],[6.003506370637919,50.783995228681704],[6.003524184456763,50.78399023462816],[6.003534934358858,50.78397970510777],[6.003541019175205,50.78396169469173],[6.003548278135227,50.783942410564144],[6.00357077064722,50.783922433885216],[6.003594638168256,50.78391097140818],[6.003624236030772,50.78390178850633],[6.003649269389988,50.78389590194657],[6.003667672674499,50.783890455275724],[6.003685251078298,50.78388375454914],[6.003706665497819,50.78387335685312],[6.00373033222509,50.783862794316825],[6.003761428452503,50.783859670936586],[6.003787768600158,50.7838635663603],[6.003821711582572,50.783877273098135],[6.003889751472092,50.783902393534404],[6.00393898786638,50.78392631094615],[6.003958309791356,50.783933443883654],[6.003980186317602,50.783933282107846],[6.004034409328332,50.783920578743384],[6.004090115167414,50.78387008678411],[6.004111789486495,50.78385364703527],[6.004138936879396,50.78384146578516],[6.004167683533206,50.78383866047176],[6.004198359901465,50.783833822323054],[6.004217199315408,50.783825991156796],[6.004239009422392,50.78381337097148],[6.004255206956729,50.78380093358242],[6.004261927955861,50.7837924030937],[6.004261518644978,50.783785079268526],[6.00424902360484,50.78377737955727],[6.004224247135323,50.78377058143563],[6.004196436688118,50.78376807826822],[6.004142060099583,50.78376814403541],[6.004120938298246,50.78375787460328],[6.004123828537103,50.78373529684486],[6.004150750521796,50.78371896389085],[6.004183816283114,50.78370827913875],[6.004218393443331,50.78369609413285],[6.004230071799158,50.7836903596977],[6.004245127911481,50.78368165883161],[6.004271884130849,50.78367845962279],[6.004345970912433,50.783682746999474],[6.004367918085494,50.783691106317676],[6.004376636477523,50.783713361366324],[6.004387875259946,50.783726820719465],[6.004415261721729,50.783733694747056],[6.004447176430467,50.78374094907026],[6.004459594891591,50.78374608731238],[6.004472442143125,50.78375361432798],[6.0044998324614,50.783755445501654],[6.004532149304598,50.783754553643256],[6.004551822781129,50.78374973825839],[6.004568259114375,50.7837403378212],[6.004602781180833,50.783713357146304],[6.004627963677469,50.78367606210764],[6.004670441129851,50.7836129122017],[6.004679562121407,50.78360040471991],[6.004683607380128,50.783579402830206],[6.004690580397106,50.78355891563579],[6.004693603848396,50.78354743853057],[6.004695704090671,50.78352944935668],[6.004734238822537,50.783512074376155],[6.004785219798459,50.783506192644445],[6.004826784443345,50.78349594766307],[6.00485275750426,50.78348824903236],[6.004879646044553,50.783477956675426],[6.004899849362816,50.78346715174145],[6.004925488305444,50.783450331074434],[6.004944249262369,50.78343769110814],[6.004971605037249,50.78342522089915],[6.005003072446662,50.783425511007295],[6.005042510127952,50.783432311428676],[6.00508351699793,50.783450474491325],[6.005135081433716,50.783473515996604],[6.005170368466158,50.783489120809065],[6.00520062992397,50.78350319741137],[6.005216721867398,50.78350841479339],[6.005236976306761,50.78350677827862],[6.005257345273327,50.783497770189854],[6.005286428961246,50.783477703966],[6.005353228057835,50.783445840094934],[6.0054088040425,50.78342513764362],[6.0054548492428,50.78340745254875],[6.005485876331037,50.78339384793077],[6.005511864803983,50.783376674691546],[6.005531901535977,50.78335763663924],[6.005547047829692,50.783339766367305],[6.005557283383438,50.783320475162256],[6.005568104254802,50.78329722567433],[6.005576914865939,50.78326782950285],[6.005582386841259,50.78325284255276],[6.005580852801664,50.783237740303655],[6.005561080483866,50.78319573283538],[6.005557948979258,50.783173537850935],[6.005566073350741,50.78314478357173],[6.005591772388367,50.783115476750744],[6.005623177045382,50.78310362292316],[6.005647458568649,50.7830966972332],[6.005677064259705,50.78309349142721],[6.00570044265662,50.78309327633629],[6.005711992776595,50.78309177624311],[6.005735531764565,50.78308126791122],[6.005757769161104,50.783069912593376],[6.00578392137959,50.7830522799775],[6.005797564204216,50.783035451456975],[6.005804609335661,50.78301509864196],[6.005810886247726,50.78299668257059],[6.005814631957409,50.782979844138595],[6.005820192371325,50.782961926298164],[6.005829803728957,50.78294688120724],[6.005851297276346,50.78293291406458],[6.00587401462642,50.78292353372709],[6.005902550934461,50.782911380574674],[6.005926553588072,50.782903755179674],[6.005951154467071,50.78289952440633],[6.005970503701015,50.78289914207893],[6.005983618772749,50.782896977378556],[6.006012772710852,50.782862024854275],[6.006037867455378,50.78283528302794],[6.006056826637535,50.78281096514128],[6.006074766138929,50.782784612218855],[6.006090611645956,50.7827713584597],[6.006109288754372,50.78276204467165],[6.006116042235363,50.78275917695247],[6.00613071937182,50.782752940848155],[6.006148731300343,50.7827437205083],[6.006164725024107,50.78273095134905],[6.006179282571607,50.782710432401416],[6.006184138112122,50.78269283293494],[6.006181513479266,50.78267145324668],[6.006177230444955,50.78265223980041],[6.006173167309108,50.78263994668457],[6.006162902866993,50.78263258579533],[6.006148168778299,50.78262178810545],[6.006145032509177,50.78260563375184],[6.006157245640773,50.782584749834776],[6.006179113386423,50.782572281783345],[6.006210392408966,50.78256167793501],[6.006236356838212,50.78255232506601],[6.006260927813753,50.782540552637904],[6.006283909543401,50.78252443806099],[6.006300504150241,50.78250357558589],[6.006312317900494,50.78247933191725],[6.006319350860823,50.78244958565858],[6.006315874910121,50.78242816559234],[6.006313796964373,50.78240525485101],[6.006318741322243,50.78239219433397],[6.006314562413585,50.782377600666756],[6.006311485394463,50.78235951337081],[6.006329819362544,50.78234256075904],[6.006356925813138,50.782336986097626],[6.006386838024723,50.78233128851906],[6.006433893117369,50.78232564283853],[6.006474237255313,50.782326046747976],[6.006516680335492,50.78232542363352],[6.00654967555456,50.782321255582914],[6.006579967009446,50.78231210415465],[6.00660629358756,50.78229803004862],[6.006627970599527,50.78227660092818],[6.006632918119151,50.78226803486702],[6.006635692571742,50.782254941029834],[6.006637697245982,50.782235163525485],[6.006635632971745,50.782222850715506],[6.006626936548211,50.78221398928775],[6.00661286039575,50.78220468029806],[6.006599968557655,50.78220124374312],[6.006570821846851,50.782200546111945],[6.006541028400597,50.782188570780626],[6.00652656212267,50.7821606477096],[6.006539352522053,50.78212035346295],[6.006558927309826,50.78208483193068],[6.006566001816441,50.78205715289763],[6.006564585402465,50.782025384474444],[6.006562180149134,50.781993891023696],[6.006557871704167,50.78196321678739],[6.006557775124301,50.781962354363934],[6.006554888909358,50.78193625687635],[6.006556951180592,50.78191548128885],[6.006578680960184,50.781891642849644],[6.006608620807717,50.78187741452896],[6.006642899101532,50.78186954510094],[6.006665448089674,50.78186353637362],[6.006695964101993,50.78185636128346],[6.006734076105224,50.78185421521705],[6.006769295295386,50.78186266467897],[6.006797652966848,50.78188499396189],[6.006830595052441,50.781903424393384],[6.006864840754086,50.78191010822183],[6.006903716397805,50.781912056973894],[6.006936811081434,50.781911115319225],[6.006970753008198,50.78190566563262],[6.007004123966095,50.78189249747233],[6.007037710163184,50.78187421342133],[6.007111834074193,50.7818294549765],[6.00713731394131,50.78181040540191],[6.00715476703319,50.781795479905256],[6.007180677640657,50.781772589717015],[6.007197176862856,50.78175525130085],[6.007215166618661,50.78172849342489],[6.007231100758799,50.78171025015124],[6.007308877879194,50.781644995083504],[6.007350137110176,50.7816078108734],[6.007356092835487,50.78159937420132],[6.007361537063497,50.78159404147149],[6.007384847130018,50.78158134071973],[6.007404518782096,50.781577540608765],[6.007641172224394,50.78156894343001],[6.007680025625845,50.78156500426162],[6.007710411042658,50.78155763184652],[6.007733391309075,50.78154678452461],[6.007870745667621,50.78144334737919],[6.00792355383976,50.78141632135565],[6.008052889927431,50.78136115293295],[6.008059787985384,50.78135851803513],[6.008107270098841,50.78134036571047],[6.008254667215145,50.78131896141866],[6.008408406724993,50.78129155414326],[6.008533840209653,50.781249961544376],[6.008675231566807,50.78120467835483],[6.00869228592683,50.78119708977229],[6.008779543042892,50.781162354188645],[6.008824395666108,50.7811469303906],[6.008869674068844,50.78114106855165],[6.008976417016766,50.78113315888962],[6.009019753139238,50.781129428847024],[6.009042001052356,50.78112216281817],[6.009066501921031,50.78110526645062],[6.00908284172945,50.781091973659024],[6.009096398627089,50.7810773295272],[6.009107361103987,50.78106058695618],[6.009116684598076,50.78103474737933],[6.009123701862304,50.781009270791564],[6.009127555155186,50.78099527218498],[6.009132471916451,50.780986571346],[6.009139848811021,50.78098158768223],[6.009156003642539,50.78097565784641],[6.009166317006406,50.78097290560985],[6.009293559905987,50.780961703147845],[6.009318638533421,50.78096253886084],[6.009335206393421,50.78096309681453],[6.009396248060652,50.78097500195168],[6.009435559068983,50.780977747522236],[6.009506747358176,50.78097763360512],[6.00952582264714,50.780973800389084],[6.009543395044591,50.7809678538709],[6.009557603455013,50.780959516433654],[6.009567225953879,50.78094225069009],[6.009640631466309,50.78083892232159],[6.009714551081892,50.78075386572018],[6.009719906442426,50.780738762341436],[6.009705594437649,50.780713993963204],[6.009697973698385,50.78069021425852],[6.009705368102821,50.78067597181993],[6.009718178803987,50.78066385753834],[6.009732904349997,50.78065074414596],[6.009975577966472,50.78046245606067],[6.010039582447313,50.7804299842868],[6.010064559598688,50.78042539104327],[6.010091117249696,50.78042975127755],[6.010108128938296,50.78044543517062],[6.010135753013916,50.78047009573708],[6.010181535129848,50.78050077084752],[6.010220017393695,50.78051046010922],[6.010298582738077,50.780516004913316],[6.010322502166825,50.78051394322307],[6.010342791793533,50.78050658862969],[6.010429237175707,50.78046755045241],[6.010491791549098,50.780456983396306],[6.010511871306313,50.780450897351315],[6.010526042135361,50.780436618284035],[6.010525820971947,50.78042331579435],[6.01051652333838,50.78040138793354],[6.010468026394456,50.78030052371122],[6.010466851763741,50.78028906910737],[6.010468209219056,50.78027190182751],[6.010477546089993,50.78026190962928],[6.010503219091172,50.78025107418606],[6.010519197045096,50.7802478418054],[6.010540325848435,50.780248087320444],[6.010559223427205,50.7802521651899],[6.010590663318639,50.78026323169806],[6.010625307869613,50.780274325842655],[6.010651311497648,50.78027121910036],[6.010666055866358,50.780261647142375],[6.01070182480909,50.78022556105126],[6.010744495914039,50.78018928486876],[6.010765592784964,50.78017765607853],[6.010785473805875,50.78017367447878],[6.010813270372569,50.78017527723034],[6.010853787050328,50.780183382223704],[6.01098217725812,50.780220820032106],[6.011011974579382,50.7802299267125],[6.011028678146587,50.780236380457296],[6.011043543079996,50.78024211602497],[6.011117304079731,50.78025944380399],[6.011158579249372,50.7802596253055],[6.011193882207235,50.780259569392825],[6.01122602430214,50.780261687903575],[6.0112631585835,50.780270242501736],[6.01134609155184,50.780292734176314],[6.011374247907954,50.78029261795436],[6.011404454054227,50.78028783435668],[6.011441436920882,50.780274582460656],[6.011463473337396,50.7802632450999],[6.011483393579466,50.780248476396835],[6.011503523282639,50.78022714460556],[6.011508653280527,50.780202711803156],[6.011526930385505,50.78015327250629],[6.011541130551015,50.78014120444265],[6.011557725482427,50.78013536177934],[6.011591145299496,50.780132340575],[6.011664164486699,50.780133518825785],[6.011815216059975,50.780157565440476],[6.011827679980458,50.78016082394742],[6.011834664607921,50.780164651428464],[6.01184816531303,50.780176470819654],[6.011864270495224,50.78019850557629],[6.011866288769569,50.780207303855796],[6.01188878758619,50.78021558684726],[6.01191864708727,50.780215605103145],[6.012023040031512,50.780213422317765],[6.012053100089167,50.78021254055612],[6.012076586589226,50.78020361326643],[6.01209005782512,50.78018901418769],[6.012095195980132,50.780165210542336],[6.012086584087283,50.780156358055436],[6.01206977652666,50.78014534761493],[6.012067452632198,50.78013596670907],[6.012067736987338,50.7801254930131],[6.012096277553995,50.78011495631229],[6.012134715740542,50.78011399323786],[6.012135410177423,50.780113971502],[6.012139281015305,50.78011398651091],[6.012288246051638,50.780114681449184],[6.012323913991302,50.780114362534874],[6.012357533339984,50.780109317508774],[6.012485489956679,50.78006291581271],[6.012580847042065,50.78002675816971],[6.012618823130241,50.780024125486634],[6.012670003998749,50.780025016864],[6.012684734602879,50.780024982025466],[6.01273742097161,50.780014494163275],[6.012803341220108,50.779999170428695],[6.012865966880157,50.77998766684299],[6.012969496041706,50.77997193250291],[6.012986429648906,50.779963885498994],[6.01300962175386,50.779943660469826],[6.013075117882633,50.779891636885054],[6.013099475246402,50.779883181082106],[6.013115645310386,50.77987949785114],[6.01320476862872,50.77987528434521],[6.013226834276583,50.7798724680377],[6.013254185279818,50.77986732189516],[6.013275156716639,50.77986011590053],[6.013295884577375,50.7798506190335],[6.013318596510233,50.77982739422662],[6.013344321271888,50.77979523601453],[6.013365629335105,50.779765690570144],[6.013371662271166,50.779745207935676],[6.013367988322745,50.77971038658138],[6.013397345971494,50.779546052718516],[6.01340331101202,50.77952579517494],[6.013425790799318,50.77950114235795],[6.01344075136991,50.7794918924739],[6.013463270660649,50.779482781376586],[6.013486713340665,50.779481162073985],[6.013501692141418,50.77947851898123],[6.013560098033071,50.779477977486536],[6.013741837770374,50.77950367988721],[6.013777364762229,50.779508709728525],[6.013945549499832,50.779533280831615],[6.014001540375607,50.77953133196221],[6.014215143991256,50.77953224884825],[6.014254988443569,50.779531520133396],[6.01429138762635,50.779529740424934],[6.014299262504861,50.779530192056384],[6.014314650703611,50.779535816494445],[6.014318893614769,50.77954028794256],[6.014329877404846,50.779550475730055],[6.014372394078618,50.77957123409787],[6.014395202336081,50.779574076589434],[6.014416545115705,50.779575488799416],[6.014434916015066,50.77957520924123],[6.014444726487404,50.77957200981378],[6.014451972188983,50.77956262192159],[6.014448000160142,50.77954147445322],[6.014437051441931,50.779506602753465],[6.014440862069929,50.779485377057625],[6.014461369571143,50.77947114398568],[6.014504907242067,50.779452048620364],[6.014524198688482,50.77944645156146],[6.014540597241497,50.77943871285992],[6.014565781726478,50.77941701148854],[6.014593354624941,50.7793863531029],[6.014604574471219,50.779361554480126],[6.014632629814297,50.77930365686101],[6.014642855213058,50.77929339881456],[6.014665579351591,50.779275342335765],[6.014689775627922,50.77926235662585],[6.014814001473725,50.77919098324763],[6.014815138252476,50.77919012311663],[6.014877594523636,50.77914943214393],[6.014908845762813,50.779127652777234],[6.014942447504,50.77908782873516],[6.015031898411718,50.779049256158615],[6.015052404875232,50.7790391669051],[6.015107790076991,50.77899668049894],[6.015154221286013,50.77897773095518],[6.015266411264729,50.778945317841014],[6.015358478688072,50.77894822390282],[6.015408494920057,50.778943807911446],[6.015458586328834,50.778904091771615],[6.015495851805724,50.778859510442956],[6.015543562622898,50.77882513768191],[6.015626142154501,50.77880584743203],[6.015715746320304,50.77877762879137],[6.015767814388223,50.77878445567734],[6.01578330430452,50.77878817370224],[6.015824253312709,50.778802054510415],[6.015874474600414,50.77881907591412],[6.015885801750442,50.778822151402736],[6.015927866052015,50.778816834633425],[6.016014356383972,50.77878483037542],[6.016064217806402,50.77877005064978],[6.016080794818084,50.77875668365549],[6.016093079851052,50.77874778957671],[6.016212982779081,50.77870292874451],[6.016255415028114,50.77871117422019],[6.016293586061112,50.77870942018238],[6.016363661195085,50.77867450276437],[6.016536789490604,50.77860055990048],[6.016548820024977,50.77859590995782],[6.016560173733704,50.77859153337192],[6.016574661819198,50.77858723858127],[6.016589018575543,50.77858476027834],[6.016605647822328,50.77858990123107],[6.016626951143545,50.77859679652341],[6.016650553286961,50.77860697823704],[6.016661538263551,50.77861932315205],[6.016701514343095,50.77862940661461],[6.016778051165764,50.77863295351773],[6.016940444056711,50.778643511043654],[6.017005932311252,50.77862585012028],[6.017015333415683,50.77862489995063],[6.017055443926418,50.7786208518823],[6.017086076227351,50.778643417932884],[6.017104094410485,50.77865165243615],[6.017118392589252,50.77866366462164],[6.017134100007861,50.77868027147573],[6.017163993582955,50.778671380107525],[6.017209131692026,50.778653344674595],[6.017334388304293,50.77860190948925],[6.017378217553998,50.77859295101205],[6.017404855365968,50.778568778104585],[6.01741300635321,50.7785613806373],[6.017416656080541,50.778556605549454],[6.017433876849127,50.77849357073398],[6.017440525847454,50.778443420885964],[6.017454385433152,50.778412683836734],[6.017496932142216,50.7784084784947],[6.017538466153924,50.77841322269935],[6.017565072774284,50.77837319336455],[6.017562861907259,50.7783074780139],[6.017562986157343,50.778282173358086],[6.017563215702201,50.77823225630144],[6.017601318814302,50.77820256445206],[6.017611924825275,50.77819429961556],[6.017623635309845,50.77818280170495],[6.017660459757381,50.778122644175305],[6.017655624688099,50.778054749842255],[6.017610821572984,50.778029537642766],[6.017644684505741,50.77799977903599],[6.017716602795957,50.77797441500219],[6.017815551790158,50.77795176181235],[6.017869957199228,50.77795222876474],[6.01791529818343,50.777946066386974],[6.017925872733734,50.777943842287556],[6.017944982100881,50.777930137588584],[6.017948196456305,50.77792045687869],[6.017949282582512,50.777903353906794],[6.017949740416616,50.77788696449606],[6.017952656745895,50.77787204483869],[6.017971762073534,50.77784135098552],[6.017989369102196,50.77783603221417],[6.018084819529663,50.77781156415056],[6.018113881324124,50.777804115315035],[6.018137618496165,50.77780233165432],[6.018199229637903,50.77779890280905],[6.018271965955229,50.77779099954562],[6.018334808965519,50.77777598608982],[6.018386089135492,50.77775619972887],[6.018403066455607,50.77774523925658],[6.018500198574186,50.77771935937542],[6.018612602892903,50.777685377738486],[6.018628960440235,50.77768097358804],[6.018652662812943,50.77767767986281],[6.01868261941599,50.77767661715559],[6.018688992641946,50.777710524693674],[6.01870218375976,50.77771097391944],[6.018715290783191,50.77770941007205],[6.018734957484635,50.77771481276539],[6.018796779569952,50.777702932805745],[6.018844466849061,50.77769522910256],[6.018876583259225,50.77769243763621],[6.018910308444168,50.777690140743296],[6.018947327711866,50.777670495065635],[6.018958038100505,50.77766263403746],[6.019017902561383,50.77761005357631],[6.019050849838156,50.77759227288498],[6.019081421490458,50.777568698301764],[6.019097906837902,50.77755181668044],[6.019092831757899,50.77754663983123],[6.019085858765001,50.77754159921268],[6.019068765763779,50.77753154418282],[6.019023596812714,50.77751176387672],[6.019005694847357,50.77749539401057],[6.018999374701427,50.777479985520614],[6.018997571157769,50.77747247161143],[6.01902967462574,50.777446866140565],[6.01905507950606,50.777437423543574],[6.019087427803845,50.77742668449038],[6.019156432352303,50.777405065924974],[6.019188775431846,50.77739915395434],[6.019231431121284,50.77739261922713],[6.019297540593873,50.77738641454569],[6.019493354287035,50.7773351480874],[6.019524952121391,50.77732240847746],[6.019565208826922,50.77730525279845],[6.019659106365587,50.77729389786486],[6.019686556306132,50.777301379167604],[6.019790324048038,50.7772829496729],[6.019818461757394,50.77727327620124],[6.019839982853738,50.77726078946437],[6.019855744691037,50.777251183782866],[6.019917784376937,50.77719084243173],[6.019957900251783,50.77718001562916],[6.020084875086493,50.77717297358929],[6.020138678666646,50.77715951883644],[6.02016046741831,50.77714795643741],[6.020163065921899,50.777137856557744],[6.020162967715342,50.77713273337682],[6.020158355558015,50.77712616074484],[6.020133911524754,50.77709686480011],[6.020155181110278,50.777095058292],[6.02021010588564,50.77710145401933],[6.02023632169083,50.777098487771276],[6.020240142760268,50.777091752055775],[6.020206894447559,50.77695638946859],[6.020365271017874,50.776898405216485],[6.02042618171609,50.77689673187025],[6.020487688231816,50.77689092928198],[6.0205383455414,50.77685472250617],[6.020446803945301,50.776802782811664],[6.020412030833228,50.77676041965472],[6.02040564724304,50.77672479537019],[6.020391542358549,50.776686435828026],[6.020387183465724,50.77668076071474],[6.020351309357385,50.77664289806773],[6.020339925654218,50.77663773788462],[6.020327837081809,50.77663598838881],[6.020251524356219,50.77664449684432],[6.020245341557186,50.77664230147105],[6.020228598218349,50.776633970581],[6.020222411703425,50.776627343659264],[6.020216871241453,50.77661611083751],[6.020217460016496,50.776612503028645],[6.02028868932573,50.77651608326376],[6.020333505118947,50.7764881694759],[6.020417408035819,50.77646449088993],[6.020498047157258,50.77646657458372],[6.020522379481815,50.77646586584401],[6.02067040326819,50.77643166885535],[6.020675999661885,50.77643037070893],[6.020707470495801,50.77641878205877],[6.020767328027936,50.77639400363709],[6.020787503363344,50.77638683659304],[6.020819938200122,50.776379404521144],[6.020844484297791,50.77637566525371],[6.02087565178795,50.7764062545224],[6.020955008630127,50.776386070237386],[6.020961966856672,50.776375487974406],[6.021008814238387,50.776301197606806],[6.021047026085746,50.77628597627202],[6.021090318999948,50.77630232330296],[6.021144033451412,50.776254404811596],[6.021214847222953,50.77625853749613],[6.021277334123802,50.77625296281489],[6.021339326852231,50.776309810301925],[6.021374523697359,50.77632399938523],[6.021433688379701,50.776333634243485],[6.021491878076282,50.77635906806789],[6.021517448797189,50.77632967746412],[6.021514336567534,50.77630422877416],[6.021476581072571,50.776279168130266],[6.02150601813497,50.77625363953255],[6.021518624303051,50.77622790674444],[6.021573122951826,50.776227041063734],[6.021608088766228,50.77622432307022],[6.021695655335984,50.77621361250313],[6.021749716900826,50.77621707284089],[6.021784058980645,50.776202951203395],[6.021930941453018,50.77619324485197],[6.021943408490619,50.77619883039485],[6.021971656037493,50.776192086199316],[6.022010780925061,50.776173165053706],[6.022068917988672,50.77616364072548],[6.02210161425956,50.77615047188453],[6.02210534414803,50.776143314125434],[6.022133294471657,50.77608996365187],[6.022168787804554,50.77602217134576],[6.02221291277444,50.77601538472995],[6.022279310061046,50.77605526326265],[6.022363260429779,50.77607144913249],[6.022408048729572,50.77607998500858],[6.022482235646067,50.77608612987076],[6.022551817871175,50.77611008921663],[6.022587021467888,50.77611543273525],[6.02261846936249,50.776110504524226],[6.022723954158757,50.77611422077449],[6.022771745093847,50.77612978734738],[6.022839413086905,50.776064658260296],[6.022912950311984,50.77604613166462],[6.022992997328136,50.77605678337446],[6.023029725260792,50.776062666693456],[6.023057505913643,50.776067394744366],[6.023171382235573,50.77606481703562],[6.023269334843097,50.77602683842177],[6.023364402260325,50.7760162740391],[6.023411219311074,50.77600111237987],[6.023434402689634,50.775992103535316],[6.023481092402234,50.775971791861835],[6.023585187175533,50.77596409897506],[6.023608723011874,50.775961155716566],[6.023645851137635,50.77595486555086],[6.023693907864034,50.77596912687524],[6.023735782950117,50.7759895527411],[6.023748520096978,50.775998282744936],[6.023782093343719,50.77602843549156],[6.023849477545478,50.776040936231915],[6.023961782569922,50.7760333685316],[6.024032383401853,50.776049887481875],[6.024081612662112,50.77604316189193],[6.024088214789061,50.77601494501607],[6.024088317435178,50.77597799073865],[6.024118383351016,50.77597051686895],[6.024144262759259,50.77597306183306],[6.024179536851467,50.77598353718741],[6.024197033049492,50.77598574185559],[6.024218554727732,50.775975492550565],[6.024235952394394,50.77595605228373],[6.024245950161902,50.77593871131443],[6.024251716606339,50.77591882283798],[6.024253097293152,50.77591406004876],[6.024257888010215,50.77590261761042],[6.024290868546847,50.77586993149512],[6.024342123231294,50.77583726140099],[6.024363806857445,50.77582229195864],[6.024386721015087,50.77580401676519],[6.024413744597585,50.775748423597626],[6.0244458555942,50.77574329347071],[6.024483918436697,50.77574831500699],[6.024525549840983,50.77573239048135],[6.024570240821122,50.77570698365348],[6.024586306400355,50.775699991439154],[6.024642151500628,50.77568056361331],[6.024707413840118,50.77565625668684],[6.024767309007733,50.77562928266144],[6.024785237845295,50.77562273857001],[6.024828032416472,50.77563061933084],[6.024869938695033,50.775630594675185],[6.024882738734023,50.775629445313555],[6.024900020208706,50.77562531382679],[6.024933246163077,50.77561570089269],[6.024965875966132,50.775594684220735],[6.025001387680853,50.77558221812385],[6.025012874553305,50.775596932568554],[6.025047252283003,50.77559273359727],[6.025089782124637,50.77558753675156],[6.025132818657926,50.77557588300034],[6.025142797064278,50.77557367051939],[6.025282396534998,50.775542777138725],[6.02535908376032,50.775551396284],[6.025406632884946,50.7755854444557],[6.025466757570788,50.77559479328327],[6.02561354304344,50.77555554497202],[6.025737231789623,50.775495497835244],[6.025814796435951,50.77545659605346],[6.025832257966311,50.775452166794466],[6.026047027594467,50.77554430246711],[6.026081722400449,50.775538429482154],[6.026114120067684,50.77553149051827],[6.026128965028912,50.775517205786144],[6.026159358470109,50.775396576229284],[6.026153072289318,50.77538481746411],[6.026240421130493,50.77531110085166],[6.02623459134661,50.775286152724426],[6.026268438337118,50.77524136206982],[6.02638703656099,50.775189594291724],[6.026433774569098,50.77515543811328],[6.026450620819819,50.77513516458568],[6.026469015304348,50.77511099025414],[6.026478471215247,50.775094524019536],[6.026487230553597,50.77507380086163],[6.026502076355389,50.775046212378335],[6.026510500434529,50.77503717675517],[6.026524794667616,50.77502821649951],[6.026541601801709,50.77501952098763],[6.026549261976882,50.77501884035809],[6.026605788803391,50.77501814983648],[6.0267768863103,50.77493684977718],[6.026852558184848,50.77486770984083],[6.026900970345493,50.77486044823027],[6.026899649381439,50.774838657258925],[6.026902284210057,50.77477266351143],[6.026924239518045,50.7747497278381],[6.026925085227465,50.77472879679545],[6.026903082765988,50.77456414159935],[6.0269183963639,50.77453349421517],[6.026917593458381,50.7745246085569],[6.026911719017113,50.774497467398675],[6.026899661636812,50.77446812223495],[6.026881690139877,50.774430360186095],[6.026881598315528,50.77442472460118],[6.026884552952886,50.77441898225016],[6.026897815962744,50.77441030631864],[6.026964418403266,50.774406305789384],[6.026983318638925,50.774403441456194],[6.026990564523473,50.77439327971304],[6.026992459160439,50.77438880169012],[6.026992465489019,50.77437280126159],[6.02695183098334,50.77429837287143],[6.026966396840191,50.7742803411694],[6.026982732974631,50.7742601243229],[6.026986513761355,50.77424232316301],[6.027048722830345,50.774212719329235],[6.027114406736089,50.77421512395948],[6.02718273333956,50.774225154543466],[6.02720260774182,50.77422200611644],[6.027250005365802,50.77420496097509],[6.027290505382669,50.774199684674606],[6.027380926990993,50.7741887202393],[6.027429109174955,50.77419876347643],[6.027479764501531,50.77420516143033],[6.027539110988708,50.77420957853542],[6.027583225959719,50.774209441763766],[6.027612301491148,50.77420223315166],[6.027643279178999,50.77418390359634],[6.027659866751481,50.77416446730016],[6.027645481880341,50.774125714665466],[6.02763142509742,50.77410457862111],[6.027605852532787,50.77406871955989],[6.027660784378151,50.77404806383742],[6.027721286594915,50.77398007714872],[6.027731042564098,50.77394533453786],[6.027755816601046,50.77391817622346],[6.027739957854842,50.77390000756457],[6.027712463029817,50.77386250521696],[6.027712827203599,50.77384368925037],[6.027755632168597,50.77385548806169],[6.027776970779042,50.77385881247143],[6.027793693692004,50.77386049952074],[6.027815265284123,50.773858105636144],[6.027854684043235,50.77384846648806],[6.027865123459615,50.77383346887502],[6.027863975899464,50.77380475543303],[6.027839992981233,50.77369711954415],[6.027861718590306,50.77366171724137],[6.027870509378728,50.773651555859786],[6.027876913925258,50.77364414036869],[6.027888000700836,50.77362674809159],[6.027890285421599,50.77360740010727],[6.027901614749686,50.77357984892948],[6.027930913623473,50.77350667782082],[6.027877245007341,50.77348013449185],[6.027758346559584,50.773421340965044],[6.027241508341868,50.77316595331254],[6.026729557107606,50.772853276474805],[6.0265149775571,50.77267324678304],[6.026331177946651,50.772480012310886],[6.025155814629596,50.77108396095596],[6.025080506993365,50.771040052327436],[6.024971189574804,50.77097630404988],[6.024963462046407,50.77096790607683],[6.024962555361592,50.77096691330763],[6.024898232126306,50.77089706461136],[6.024791936451915,50.77078492976491],[6.024699217169322,50.770691084359036],[6.02452527956469,50.770515024515745],[6.024489864614384,50.770475398793565],[6.024420775263144,50.7703990141863],[6.024403985116804,50.7703788996123],[6.024286453760437,50.770238043595846],[6.024211087391387,50.77014939657274],[6.024048325203241,50.76995794816267],[6.024005938206093,50.76990807735505],[6.024005247130649,50.769907299124995],[6.023916733585717,50.76980773089765],[6.02391322066514,50.76980377713913],[6.023867883315703,50.769749607840296],[6.023819591865977,50.76969191315291],[6.02373380274651,50.769589390371344],[6.023731500548215,50.76958689513704],[6.023464743388724,50.76929837187463],[6.02342210137289,50.7692380750463],[6.023382364794396,50.769181879147794],[6.023343177504409,50.76912645326218],[6.023248579170398,50.76897775732578],[6.023247236403989,50.76896665434263],[6.023236919214475,50.768880911356625],[6.023236583524234,50.76887813561085],[6.023236419857519,50.768877570206605],[6.023230920519699,50.76885794159926],[6.023238559690655,50.768853728632216],[6.023251038647423,50.768846864221906],[6.023257885242252,50.768839635322124],[6.023269503003175,50.76881853710886],[6.023251998600294,50.768772070616755],[6.023130614608225,50.76861327470148],[6.022923530201713,50.76842744426556],[6.022738416171459,50.76849003783243],[6.0224528637636,50.767965412327136],[6.022218352051313,50.767534566127836],[6.022212797744046,50.767524349238826],[6.022144476262329,50.76739882532624],[6.022142440762445,50.76739508811546],[6.021896274277514,50.76694281273608],[6.021696084812932,50.76657499634133],[6.021695052864793,50.7665731233157],[6.021670110292221,50.76654538555823],[6.021570167646709,50.76643424665417],[6.021564856799364,50.76642834310744],[6.021518742756062,50.76637705365666],[6.021441707094828,50.766278454266015],[6.02140881549782,50.76623635078652],[6.021326980698251,50.76616097823515],[6.021223787030619,50.76606594716495],[6.02096828883784,50.76588316574046],[6.020864064433022,50.765796634596605],[6.020821267994336,50.76574115578053],[6.020768977531267,50.76567337819162],[6.020619564747259,50.76552632930105],[6.020361704958178,50.76530508669254],[6.019942301631794,50.765029033234036],[6.019750872309138,50.76490303196527],[6.019736576751702,50.76489199092039],[6.01961608223033,50.76479895888566],[6.019473361652054,50.76470886199415],[6.019469415926659,50.76470637567743],[6.019187050303996,50.764528133113856],[6.019060536054853,50.7644071148213],[6.018928294308495,50.764192165968915],[6.018720513393265,50.76385444525939],[6.018594200081929,50.763681262348236],[6.018500787172021,50.763553185868524],[6.018404515334418,50.76342119676381],[6.018402764727217,50.763418572564845],[6.018361835711953,50.7633572488077],[6.018371892526218,50.76331404674977],[6.018374571049655,50.76330256217474],[6.018401205939981,50.76318813073595],[6.018403860129858,50.76318319925602],[6.018475720962165,50.76305001223692],[6.018527350299816,50.76282356732145],[6.018615891811935,50.76263305619608],[6.018654923217224,50.7624391303195],[6.018727854004548,50.762268030781755],[6.018749559211159,50.76216534785023],[6.018777261776878,50.76173246706542],[6.018854246946582,50.761557390118604],[6.018877068248823,50.761328405964235],[6.018963152912508,50.761072198606335],[6.018979729257161,50.76092594717166],[6.019053135335569,50.76065461775914],[6.019179808039562,50.76030892757912],[6.019192175968332,50.76021591388031],[6.019224677156155,50.75997150552506],[6.01936015246752,50.759575159029644],[6.019429272977807,50.75944740676213],[6.019509012787177,50.75916282857988],[6.019586553501745,50.758706393202026],[6.019639219603116,50.75857765226051],[6.019670509076223,50.758367318632764],[6.019856691348134,50.757771947524986],[6.019971845985887,50.75759081780876],[6.020073852890094,50.757371502979225],[6.020089837355318,50.75733713140406],[6.020245393381682,50.75696997782339],[6.020316365595298,50.75671861646901],[6.020440398912922,50.7563055220572],[6.020496162087353,50.7560509180963],[6.020596056293567,50.7558319379903],[6.020620488450901,50.75571359893102],[6.020659993546317,50.755522186691934],[6.020826247270379,50.75499470021387],[6.020882665289092,50.754694877934796],[6.020999846916919,50.75431730899558],[6.021009036259876,50.754287702798074],[6.02070575331458,50.754396030692725],[6.020649163457898,50.75441624281587],[6.020487354061573,50.75446312716577],[6.020254801744276,50.75453049859462],[6.02000153735508,50.754631574882204],[6.019965539846985,50.754640590383545],[6.019913513631051,50.75465362190681],[6.019822467621545,50.75467642252218],[6.019790488856555,50.754675662910145],[6.019724518304021,50.75467408277761],[6.019501935981776,50.75471826942811],[6.019329889146023,50.7547690105566],[6.018998101708693,50.75482727762343],[6.018895750534153,50.75483575702132],[6.018558745605553,50.75486365965787],[6.018324552254088,50.75486691782141],[6.018041098063787,50.75488446750774],[6.0178675874731,50.754890179701164],[6.017580743074148,50.754981636121414],[6.017474199405713,50.755003881287706],[6.01735162489827,50.75501434842094],[6.017137553442201,50.75498630260474],[6.016837333458704,50.754885645962545],[6.016621818749217,50.75486605669783],[6.01628201753294,50.75490941997004],[6.016136186172155,50.75492803070748],[6.015998611428249,50.75494001636134],[6.015963177502059,50.75493735086931],[6.015695904987979,50.75491721478502],[6.01553616461902,50.754893364682545],[6.015473332111736,50.75490588671194],[6.01543045452875,50.75491443485693],[6.015333971925551,50.75496084856564],[6.015244472214564,50.75500389828489],[6.015093190302533,50.755018744010364],[6.01470189909926,50.75502599532216],[6.014300216344825,50.755061257450556],[6.014081874265749,50.755052645346865],[6.013938417642937,50.75505621085258],[6.013480750209657,50.75506758474435],[6.013415375166849,50.75506920683698],[6.013293359206796,50.75505600766393],[6.013257143232929,50.7550520871276],[6.013130524342492,50.755036962139116],[6.013083700433144,50.75503136419417],[6.012669237826525,50.75493215205066],[6.012625792869522,50.754921753482286],[6.012189968150322,50.754778672340784],[6.011749940915289,50.75469170345556],[6.011479259559692,50.75463698652145],[6.011406223874315,50.754626325032106],[6.010783122241622,50.754535398313756],[6.010683264862156,50.75451752827594],[6.010660154208566,50.754513392322536],[6.010418920104782,50.754470217505094],[6.010362558371926,50.7544686880188],[6.01022825984172,50.75446504426671],[6.01007659914977,50.75444951174898],[6.009957234614463,50.75443729252947],[6.009640515696583,50.75438877932996],[6.00925010833721,50.7544384083666],[6.008853258769042,50.75443660894833],[6.008584301983147,50.75437802868266],[6.00828829033181,50.75433607012858],[6.008055097810864,50.754347257319665],[6.007767946330461,50.75431401402225],[6.007628651288967,50.75430012871177],[6.007520915834611,50.75428217244051],[6.007449395321718,50.754270259835124],[6.007002171392251,50.75419619276127],[6.006603471514844,50.75414685292693],[6.006419941991008,50.75410563434883],[6.006261956703342,50.75408637336875],[6.006129073083812,50.75407076194608],[6.006114242093187,50.75406902569122],[6.005672161201031,50.75406803313938],[6.005373029525915,50.75397867605809],[6.005213000975798,50.75396233701138],[6.005179759648304,50.75390495864282],[6.004522885181356,50.753799158462385],[6.004412671230265,50.753806714237825],[6.004311056935506,50.7537885514625],[6.004092424108433,50.75396231706669],[6.004063788810436,50.75401373413321],[6.004046119374596,50.75400632276814],[6.004026854284876,50.75399826373234],[6.003911477975309,50.75395002516236],[6.003779545398348,50.75393231153148],[6.003691194450097,50.75391842802494],[6.003612369439258,50.75388025035779],[6.003437800236862,50.75383056554037],[6.003389269000962,50.7538253323458],[6.003344318213782,50.75383791411869],[6.003247163411653,50.75402029728646],[6.003194769204828,50.754044343691476],[6.003033967221672,50.753966413395915],[6.002830421161545,50.754058997705556],[6.002829435154999,50.75405944342296],[6.002558914559054,50.754114190310176],[6.002486733524139,50.754111132283406],[6.002385751106041,50.754059354723964],[6.002217035233978,50.75396367631721],[6.002037101621795,50.753872605827844],[6.00178713909564,50.75374290481563],[6.001643672785373,50.753644789977415],[6.001509499134102,50.753587129763496],[6.001433773380889,50.75357955052067],[6.001321105226291,50.75363512643508],[6.001307224358345,50.75364199593238],[6.001202792066564,50.753693536819156],[6.001174639071949,50.75361013418278],[6.001171569881074,50.753562320255135],[6.001093914331749,50.75355238695738],[6.000969858529094,50.75353651591733],[6.000866952621201,50.753518042372185],[6.000754432417359,50.7534915207842],[6.000492728926559,50.75341550752212],[6.000294310205008,50.75338465069836],[5.999987731499836,50.75332794919161],[5.99983759927109,50.753254775917426],[5.999691110644108,50.753199983514634],[5.99947500282985,50.753086925234044],[5.999277888767398,50.75302587483218],[5.999235108065895,50.753053697758354],[5.999139398140435,50.75309300150246],[5.998983072073823,50.75319170185815],[5.998866885460096,50.75327185184798],[5.998648325172302,50.75338896727101],[5.998403605325805,50.75348018876565],[5.998297494060587,50.753530342615385],[5.998069360801049,50.753608243846394],[5.997900555692082,50.75366126395779],[5.997546600996081,50.753787399271744],[5.997213756073473,50.75386483663598],[5.996532430570856,50.75380561115255],[5.996503402227261,50.75379095956228],[5.996394549909207,50.753736036238685],[5.996204507565911,50.7536014495723],[5.996019393148805,50.75352383557481],[5.995845231572288,50.75350994017306],[5.995472746608376,50.753488469290325],[5.994570595412536,50.75319125349597],[5.994136868398042,50.75300037109292],[5.993813547853234,50.752901097656604],[5.993702372757181,50.752841509766164],[5.993535130373789,50.752790782751845],[5.993371874888081,50.75275997205965],[5.993269314541631,50.752765445507016],[5.993095979046373,50.75280265282286],[5.992817358804669,50.752982033238354],[5.992723440080361,50.753001528573485],[5.992627526068497,50.75300275076625],[5.992223777696422,50.75293805269943],[5.991987510689054,50.7529413851995],[5.991115401415262,50.752864133555185],[5.99086576239833,50.75286232012495],[5.990838213713746,50.752862122604995],[5.99069207985347,50.752887165830536],[5.990250355014891,50.75293449993999],[5.990212524937117,50.752934760483804],[5.990080573123491,50.752935674415795],[5.986286686955493,50.753206100879],[5.984522898775247,50.75339655705242],[5.984446744745288,50.75333447789689],[5.984060410419333,50.753174189609446],[5.984060054232085,50.753174038638974],[5.983898873613834,50.753096973687825],[5.983874650391146,50.75308540427653],[5.983645199036904,50.75300826036567],[5.983642210525118,50.753007260055874],[5.983561435456808,50.75296698441787],[5.983399828599669,50.752911791085246],[5.983277502918074,50.752862282458544],[5.98319046586904,50.75281983660623],[5.982327639471896,50.75334858635523],[5.982314071960666,50.753356899164295],[5.982255478742248,50.753313721684215],[5.982231513574803,50.75329240658153],[5.982198622245591,50.753308774199134],[5.982086487251527,50.753364562229386],[5.981912916249008,50.75345728763946],[5.981518623424292,50.75365563686699],[5.981183583515845,50.75381495549132],[5.980934442624183,50.753922315717006],[5.980796626363746,50.75397129510389],[5.980665583920113,50.75402144402007],[5.980634827905377,50.75402535052233],[5.98008692298123,50.7543272100635],[5.979844606066896,50.75444672188278],[5.979335340203774,50.75463236813753],[5.979118559802931,50.75464885098637],[5.979022021371212,50.75459912471924],[5.978893432940337,50.75456521240381],[5.9787291769775,50.754555698933345],[5.978515775092115,50.754523658997726],[5.978509200365756,50.754522569057464],[5.978456801966906,50.75451392940109],[5.978177287285676,50.75457921814219],[5.977982701016749,50.754592636861965],[5.977664930742551,50.75458255008684],[5.9775490274236,50.7545833316369],[5.977362986956461,50.75456673647212],[5.977243593244024,50.754573854786706],[5.977011076997839,50.754540732219795],[5.976828015618339,50.75449757662549],[5.976749531939554,50.7544902020356],[5.976660037486368,50.75445598870064],[5.976542976083924,50.754392270503985],[5.976495461504173,50.754353042621915],[5.976474024361324,50.75433536293615],[5.976417585396779,50.75437566979562],[5.97636802847982,50.75440220639936],[5.976291421463511,50.754437762098476],[5.976036714156181,50.75451628560943],[5.975479249269615,50.75468147709262],[5.975125370658232,50.75484251003541],[5.974986923181782,50.7548803753421],[5.974919650040666,50.75489220572723],[5.974782672677249,50.75494437369834],[5.974691797986853,50.755001538454465],[5.97461296208213,50.75506496110571],[5.974531968597899,50.75517854398403],[5.974359161746724,50.75518097814452],[5.97419145760142,50.75520482472486],[5.97414039381869,50.75521208674926],[5.974146985080524,50.755226822066945],[5.974262647699139,50.755484935660256],[5.974329585556272,50.75555861017717],[5.974355564769149,50.75561053300401],[5.974370600567763,50.75563077153543],[5.974425894083216,50.75566997870032],[5.974435031214524,50.755682076280976],[5.974442561228035,50.755703800203854],[5.97444227044269,50.7557402068964],[5.974449719892387,50.75575891993326],[5.974486110948772,50.75579932886573],[5.974493289424608,50.75583359414748],[5.974480051656908,50.75586591381508],[5.974477345928351,50.75588839993397],[5.974490721423601,50.75592749670755],[5.974505341326902,50.75595741842823],[5.974508701723898,50.75596429585049],[5.974512511393201,50.75596860014963],[5.97452068135449,50.75599946256587],[5.974524853578688,50.75602571601579],[5.974525502877261,50.75606361907969],[5.974527409308192,50.75607990633184],[5.974535254588464,50.75609181272093],[5.97458664927224,50.756118491085374],[5.974569513564552,50.75622693996734],[5.974615268345405,50.75639928585239],[5.974664840193308,50.75654287464972],[5.9747289211792,50.75664483370678],[5.974795878673167,50.75679828472727],[5.974884860994791,50.7571076266861],[5.974959270429729,50.757357131478464],[5.975014190564534,50.757567076250034],[5.975100732848775,50.75773490857136],[5.975122032285274,50.75786254196769],[5.975118265264241,50.757888494251944],[5.974621957960169,50.75823818265699],[5.973249466797705,50.75936119824727],[5.973119587714909,50.7594559806993],[5.972966739052957,50.75956901923628],[5.972895298527022,50.759606083546004],[5.972820588117979,50.75964795550419],[5.97276144997374,50.7596727683192],[5.972641541568615,50.759707606336114],[5.972529251682693,50.759749857434315],[5.972362675054868,50.75979483757696],[5.971905887177009,50.759905243990815],[5.97143005108724,50.76001573599798],[5.971200308935663,50.760073196129774],[5.970898519381292,50.76018620320053],[5.970749875394017,50.760221678918015],[5.97057712926249,50.76026317298281],[5.970368823305618,50.76029662153803],[5.97014517338052,50.76035641287926],[5.969993253618417,50.760401980761955],[5.969760431798558,50.76046955713249],[5.969733005401463,50.76047606868315],[5.96920530345077,50.76060133930861],[5.968850436416274,50.760635577807555],[5.968530385698476,50.76067967156188],[5.968372406286295,50.76069988305165],[5.968249804150706,50.76071245545813],[5.968032483079682,50.760734735952234],[5.967893615688265,50.76076014511508],[5.967834152944293,50.76077518604999],[5.967472489862141,50.76086912306194],[5.967101610399779,50.76093104168694],[5.966316973189336,50.760997714056145],[5.966309883973898,50.76099860356597],[5.965605613502412,50.76107307483565],[5.964861172431425,50.7611517788396],[5.964651169145508,50.76117930183786],[5.964100790428287,50.76125145697196],[5.964033538842212,50.76126027856439],[5.963439701402437,50.76137548894119],[5.963077165400575,50.761445829532484],[5.962963535275834,50.76146788882291],[5.9627641694417,50.761506564533555],[5.96275190534937,50.76150730883345],[5.961912188210566,50.76155874685096],[5.960926163162749,50.761537592171145],[5.960909124535351,50.76160386236942],[5.96087984010539,50.76172285059591],[5.960848764008211,50.76187694051882],[5.960836396839375,50.761917542063905],[5.960791335190542,50.76216253464699],[5.960761604905149,50.76230514797996],[5.960663447097304,50.762475184875676],[5.960380303846245,50.762367177627425],[5.96023610192743,50.76235380779545],[5.959791634263468,50.76225048294367],[5.959684477838999,50.76226796747738],[5.959681733720524,50.76226840356446],[5.959327703898396,50.76231121099406],[5.959320741339672,50.762312054501436],[5.959078575704518,50.76235485509064],[5.959071745218858,50.76235606647505],[5.95900763288223,50.76236682018113],[5.958606879938841,50.7622683979511],[5.95859762557468,50.76226612460895],[5.957974218025373,50.76211313349113],[5.957964686506411,50.76211021426549],[5.957786088202071,50.76202293362732],[5.95773224698558,50.76199643066988],[5.957728424124524,50.76199442705172],[5.957632584105571,50.76194439181714],[5.957623768925862,50.76193978809374],[5.957464219558808,50.76184556327643],[5.957417718313984,50.76182468694544],[5.957375848828277,50.761805900120216],[5.957338824658138,50.76178928265143],[5.956868837691965,50.761562942222646],[5.956255147106101,50.761250969622104],[5.955359375074585,50.760794896503334],[5.95526497293305,50.76074613766398],[5.955210006075077,50.760717742416084],[5.955117077862332,50.76070836569924],[5.955067532046723,50.76070141827172],[5.954988118123756,50.760679956776144],[5.954758565557431,50.760612194353136],[5.954650156764189,50.760579216522856],[5.954565084326614,50.76055160715539],[5.954515327133175,50.76053545586616],[5.954444344956444,50.76050461306595],[5.954411837043689,50.76048512298536],[5.954374246717139,50.760379031546016],[5.954225920554527,50.760445091694535],[5.954175090605093,50.760454815668744],[5.954120762327094,50.76045659260769],[5.954074479418116,50.7604545276994],[5.954069403041951,50.760454300935436],[5.95400469600954,50.760451041046565],[5.953777986452576,50.760332655051585],[5.953748599148858,50.7602982548145],[5.953663668195506,50.760195011239546],[5.953624230945878,50.76016159513174],[5.953582829867639,50.76014145630512],[5.953426753099921,50.76011815854712],[5.953324937321987,50.76009107084824],[5.953265953824605,50.760073651883644],[5.953208723848106,50.760081501160855],[5.953155944356315,50.76010451089343],[5.953116688949237,50.760132506086194],[5.953068010491958,50.76014781912967],[5.952970275842753,50.760155588159336],[5.952938197274129,50.760172437803064],[5.952910632118763,50.76018984061286],[5.952878721854165,50.76021585812282],[5.95282806677931,50.76026321729271],[5.952792599441175,50.76028692407364],[5.95276500871847,50.760303401113944],[5.952667596140138,50.76033881825374],[5.952544236812067,50.76038724350961],[5.952461553887217,50.76041959502961],[5.952375332221165,50.76046628317754],[5.952327890896112,50.76047965723118],[5.952275462346404,50.760487320739486],[5.952099526978703,50.76047892315018],[5.952024702576512,50.76047694314051],[5.951908609272699,50.760477313309224],[5.951832492870114,50.760507780537544],[5.951706585105245,50.76054836103505],[5.951563178814994,50.76051814923745],[5.951509888404079,50.76046888972837],[5.951465034750025,50.76045847506305],[5.951414763134148,50.76045937695288],[5.951291621859031,50.76046637881921],[5.951200708648495,50.76046994215493],[5.9511320119949,50.76046373380138],[5.950834614171281,50.760386946503615],[5.950633355299622,50.76033426501136],[5.950465538504106,50.76031744763275],[5.950390799896694,50.76031199642096],[5.950312183558322,50.76029530094913],[5.950148069731091,50.76027879763849],[5.949861637414158,50.760152344485576],[5.949769708098116,50.7601117580393],[5.949658126145721,50.76008669226849],[5.949613712316593,50.76007274209575],[5.949433840803234,50.76007032827492],[5.949387148524289,50.760053126131105],[5.949374533094148,50.76004707509319],[5.949262488036598,50.75998722405056],[5.949217938580256,50.75998195768975],[5.949171956514026,50.76000118412134],[5.949124003741898,50.760032060786564],[5.949079573048091,50.76004598515227],[5.948951084620266,50.76005725332292],[5.948924328035403,50.76005960377918],[5.948858238051097,50.76005909835011],[5.948810789659475,50.76005201219471],[5.948769914794763,50.76004590979292],[5.948696639811266,50.76002080057454],[5.948636544633539,50.760002710488926],[5.948559413211894,50.75999269436756],[5.948381719093494,50.75999452008355],[5.948325770183063,50.75998881439969],[5.948280165822863,50.759972469459065],[5.948206968340955,50.759937318924436],[5.948122833138244,50.759870724291616],[5.948092360661909,50.75984701573602],[5.948042989123151,50.75982382146596],[5.947992191116309,50.759803375726534],[5.947948614012871,50.759785888203844],[5.947813310976946,50.75977380801433],[5.94767409437278,50.75975684770198],[5.947482569204534,50.759846767730366],[5.947410204352828,50.759882930786304],[5.947370618586561,50.75990025576336],[5.947309140298608,50.75990021247349],[5.947152258829982,50.75986625827639],[5.946991119171746,50.75976118616174],[5.946865817098583,50.75977811756315],[5.946808370361288,50.75978567707115],[5.946736861668915,50.75977295377991],[5.946594605216845,50.75980832244315],[5.946531944078155,50.75981360591488],[5.946492788712596,50.75981844288835],[5.94644586560924,50.75979843613368],[5.946423319477263,50.75978206865069],[5.946174104752409,50.75958640914654],[5.946086597503053,50.75950898872707],[5.945939026602984,50.759391184074765],[5.94574497972432,50.75925860159104],[5.945725035432933,50.759180431521756],[5.945697519005035,50.75913370538246],[5.945650472519172,50.7590573832969],[5.945394150895136,50.75890653933538],[5.94533964759993,50.758880654076044],[5.945303249423593,50.75886014653109],[5.945184821120332,50.75881091137259],[5.94503267605904,50.75879919698522],[5.944982108443867,50.75880717179321],[5.944956931388464,50.75880529789504],[5.944848478593446,50.75876771777552],[5.94458522023772,50.758632483345224],[5.944360972346815,50.75853816639749],[5.944286122739041,50.75848771323476],[5.94424745293496,50.758472699564805],[5.944083110142201,50.758426920837],[5.943906662230879,50.75850621818737],[5.94372086198299,50.75839403337994],[5.943579318693173,50.758314867035196],[5.943425419801391,50.75833048531336],[5.943309490671645,50.75835003741251],[5.943121467685548,50.75837639063317],[5.94306230312248,50.75837057204819],[5.943032989783345,50.758356978115664],[5.943015874128108,50.75832410713404],[5.942993177000425,50.75827719535886],[5.942959555586465,50.758260044557865],[5.942875772679391,50.758243332961875],[5.94277993786906,50.75822728156432],[5.942721055604127,50.75823082790322],[5.942656880199831,50.75824917746748],[5.942553671924796,50.75822564662112],[5.942420028697546,50.75820372725683],[5.94236899596206,50.75817158560118],[5.942303560127908,50.758169850790786],[5.942265418446256,50.7581562631593],[5.942219762402142,50.75814000597724],[5.942126931602589,50.75811202927598],[5.942058132384923,50.758106328402185],[5.942007357990244,50.75808510688563],[5.941967439665937,50.75806039042124],[5.941948003053308,50.7580158448405],[5.941920739405131,50.75800414642931],[5.941760821144257,50.758003395622104],[5.941701921819182,50.7580031212325],[5.941668701823605,50.757986300720006],[5.941591915121786,50.75791808403172],[5.941548749124806,50.75794300186368],[5.941502314193195,50.757957625083016],[5.941468205526418,50.75796251702415],[5.941413978123995,50.757961851511],[5.941275408167003,50.757948547886684],[5.941223724867022,50.757889100510056],[5.941160991613317,50.75790123996604],[5.940485703040295,50.75778602242538],[5.940344460781106,50.75784217889098],[5.940175402426486,50.75782355476701],[5.940043974418754,50.75784111037488],[5.940057728026094,50.7578917420178],[5.93996265356601,50.757888233178825],[5.939871571282753,50.75786412951197],[5.939790241262611,50.757842603857384],[5.939685238380135,50.757858621303484],[5.939594568806207,50.757841796468625],[5.93949582286805,50.75784771621258],[5.93929445206303,50.757899242099306],[5.939192656563928,50.75790256039215],[5.93906726506304,50.757914162324745],[5.939024713021315,50.75792765135735],[5.939013037372874,50.757931356668465],[5.938995192064506,50.75793701509715],[5.938973265691293,50.757940310965544],[5.938969463587511,50.75793876506614],[5.937142743547369,50.75719463275075],[5.936311019440717,50.756855808574386],[5.936235749757176,50.75682519077277],[5.9362304961434,50.75682191682626],[5.936196976417772,50.75680107812922],[5.936173835125418,50.75678668006695],[5.93614996317351,50.75683036286789],[5.935971832813418,50.75690581779713],[5.935757714083835,50.756979429949425],[5.935713992644904,50.75692750198091],[5.935697664757391,50.756908055633886],[5.935573533116439,50.75684976795315],[5.935372489789688,50.75679575556161],[5.935107586716539,50.7567652643038],[5.935017524227131,50.75676714793072],[5.934860703317386,50.756746273666835],[5.934691283569656,50.756719301535256],[5.934558994572512,50.75670578929239],[5.934500852066489,50.75669984462979],[5.9343168536969,50.75670680231244],[5.934130623338472,50.756668627941295],[5.933927877266356,50.75666598377423],[5.933699618654874,50.75667376132881],[5.933585883405627,50.75666657822236],[5.933497636755037,50.75665897775294],[5.933403595736374,50.75664788996643],[5.933317584017986,50.75661101087701],[5.933184286818609,50.75655386064802],[5.932903749083077,50.75657704817738],[5.932568819325019,50.75660473476682],[5.932558739388944,50.75660556442217],[5.932421326819085,50.75662389469604],[5.932359113823919,50.75662245364944],[5.932181805811115,50.75665008679418],[5.932067019955541,50.7566668715985],[5.931959901579156,50.75668254143634],[5.93186517708404,50.75670498427388],[5.931737644184301,50.7567525889567],[5.931688769917592,50.756770833272896],[5.931418417013891,50.75684585316129],[5.931406413159181,50.75685060196338],[5.931276994566077,50.75690182856781],[5.931230157122899,50.75691735742619],[5.931187003967544,50.756931664389654],[5.93118024233221,50.75693390752497],[5.931105346193354,50.75694217067131],[5.931063829780197,50.75694256402705],[5.930981374232508,50.756913981192724],[5.930932532667741,50.75688784676566],[5.930654374716815,50.75677677717458],[5.930643924389081,50.756772601581325],[5.930515050971986,50.75672026349],[5.930423298482354,50.75666973713277],[5.930359900425729,50.75662148632445],[5.930217603551752,50.756482710749566],[5.930128424014958,50.756425529251246],[5.929937668354455,50.75627375854413],[5.929737262654339,50.75617649670316],[5.929663525172437,50.75614070779898],[5.929536637997805,50.75608104231762],[5.929466747156757,50.75605062856475],[5.929393299404528,50.75598378143553],[5.929345819721831,50.75595518597468],[5.929229899694278,50.75589657428931],[5.929098033214847,50.75581569091037],[5.928677777395305,50.755542449413625],[5.928276723294367,50.755299256226714],[5.928042934349638,50.755171109231036],[5.927890351645309,50.75506803803448],[5.927671143516506,50.7549335657169],[5.927173940130803,50.75464281808467],[5.926626052354842,50.754313913555684],[5.926570020475226,50.754280709663455],[5.926359548365657,50.75415597399931],[5.926034297835273,50.7539700109814],[5.925884875457691,50.75388457663322],[5.92565261924925,50.753751779419225],[5.924319147466601,50.75298932324226],[5.923179505490864,50.75233766613375],[5.922461235286512,50.7519269429783],[5.922451701413105,50.75192098259717],[5.922449690473861,50.7519198503306],[5.922403995308848,50.75189413820028],[5.922090505451021,50.75171772779169],[5.921488162678237,50.751378768163214],[5.92147655382013,50.75137224201678],[5.921450269826166,50.751357460064455],[5.921244003164867,50.751426101010274],[5.921153303980781,50.751441999493245],[5.920874234682505,50.751490922270825],[5.920610426034265,50.75149549450449],[5.920457395778183,50.75149782855403],[5.920045483979869,50.75142164411528],[5.919123447612891,50.751195412193006],[5.91863855291416,50.7510149911252],[5.91833486464776,50.75092325487138],[5.91707334806441,50.75063674254518],[5.916803235887582,50.75054909090902],[5.916220672389912,50.750450466374666],[5.915823322255752,50.75041109064409],[5.915181605309367,50.75037338887645],[5.915081037662561,50.750367484696426],[5.915078231611978,50.75040234750118],[5.91507804513228,50.750404640523875],[5.915071798270334,50.75048209949165],[5.915044711467951,50.75071817304369],[5.91493569046371,50.751193033862734],[5.914871555224591,50.75159549054105],[5.914844204400176,50.75175107862904],[5.914821325068996,50.75188119869041],[5.914815796696479,50.75205191422327],[5.914856659412322,50.752166497744085],[5.914856747385832,50.752166758020095],[5.914898020509414,50.75228252618648],[5.914921572298121,50.75232136743071],[5.914942172977867,50.752444681889656],[5.914979774467463,50.752560260071064],[5.915106298589529,50.752918410634386],[5.915173830139492,50.753444393047126],[5.915218777763443,50.75352423363693],[5.915315884781917,50.753955517437284],[5.915312546808539,50.75418040810139],[5.915365243173437,50.75435342811714],[5.915390076465748,50.75453350605019],[5.915382719136405,50.75472017631788],[5.914888405343151,50.754620655665036],[5.914871958525646,50.754617342030265],[5.913990980415696,50.75432761738764],[5.913980668626865,50.754324230684496],[5.913952282039603,50.754392630936096],[5.913764911166928,50.75484404554189],[5.913737386533363,50.754899785433466],[5.91371788790882,50.75494852231157],[5.91363105639901,50.75515773053503],[5.913595706964696,50.7552270163967],[5.913572453795854,50.755285837941805],[5.913564912905816,50.75530065008271],[5.913541735944174,50.755346194664874],[5.913547656737136,50.755379741219954],[5.91359806427207,50.75543127846099],[5.913654793844167,50.75561051016871],[5.913707079707194,50.75572646226462],[5.913703579711539,50.75574772799444],[5.913500952653198,50.75574635082683],[5.913310109930155,50.75575323433184],[5.913133063734707,50.75575962319781],[5.913003547512914,50.75573111612319],[5.912957400139775,50.755729168972934],[5.912897007160316,50.75572685521163],[5.912803141519997,50.7557031024859],[5.912546863186162,50.75567527087467],[5.912487180804359,50.755658095010226],[5.912388754706106,50.75561823661032],[5.912272357956253,50.75557313843902],[5.912238924888976,50.755560184687226],[5.912218301473838,50.75555219746328],[5.912111810462877,50.7555171486155],[5.912013537447385,50.75547824202541],[5.911697223813538,50.755376675831535],[5.911500065977734,50.75529851407867],[5.911374862262376,50.75524887066868],[5.911283011331142,50.755227696368266],[5.910918295716725,50.75523303705382],[5.910750279090977,50.7552382846594],[5.910654858895788,50.75522729249514],[5.910484835979256,50.7551060210449],[5.910411903724771,50.75506853532619],[5.910221427432309,50.754947922496164],[5.910058263900029,50.75483913189623],[5.909970121289064,50.75479352590628],[5.909684820446804,50.75462006437928],[5.909522114656383,50.754531603850516],[5.909471794589225,50.75449869844294],[5.909435080300518,50.754468518020175],[5.909315418790755,50.754402235832366],[5.909009888917461,50.75421877860511],[5.908820918648579,50.75438559472025],[5.908673540523688,50.75449342624874],[5.908580063553972,50.75458720719836],[5.908516516710211,50.75474816178725],[5.908516631346475,50.754789941674176],[5.908377197793463,50.755199350474086],[5.908363101455675,50.755281734457924],[5.908320159308507,50.75538733215756],[5.90829095989181,50.75548260248282],[5.908231292049719,50.755632051589934],[5.908216648865561,50.75569603774683],[5.908211518270276,50.75569343614455],[5.907068150927738,50.75511491476549],[5.906988433939493,50.75516101824984],[5.906917217187534,50.75519048990246],[5.906781595935225,50.75524785632268],[5.906684689786438,50.75528510199837],[5.906561362902646,50.75532934297252],[5.906408888558695,50.7554054097729],[5.906198530924578,50.75548181752609],[5.905996600134585,50.755505853657105],[5.905841249495264,50.75550212919281],[5.905832371176972,50.75550018253505],[5.905592117608352,50.75544755302767],[5.905419920877034,50.755365295735395],[5.90504089260652,50.75524108916739],[5.905020735273489,50.755241736902036],[5.904947854381628,50.75524407731931],[5.904850164185474,50.755223814001674],[5.904562728605041,50.7551091098607],[5.904570278401184,50.75505540331839],[5.904225327855908,50.754859291976516],[5.904165434516258,50.75470437590238],[5.903795715545005,50.754411141319984],[5.903416296675481,50.75416781035664],[5.903303635911985,50.754003817316296],[5.903170725079914,50.753853685674535],[5.903005598480579,50.753711742903256],[5.903534604495303,50.75346297425056],[5.903526462273903,50.753454543130545],[5.902857865552836,50.7527623396075],[5.902467927580051,50.75232014632291],[5.902185988646313,50.752003790907466],[5.902112331630795,50.75192671612849],[5.902057689972898,50.751849619412546],[5.902019010641371,50.751808991336695],[5.901630127952005,50.75140050792411],[5.901388466762173,50.751429576089016],[5.901023218266155,50.75149429558025],[5.900798395908448,50.75157650180065],[5.900673502512101,50.75162477048689],[5.900544774576029,50.75167226506788],[5.900350508885694,50.75175786714999],[5.900216269551832,50.751817017492094],[5.900088445684184,50.75187333463697],[5.899904220156893,50.75196368243237],[5.899595358111683,50.752074484669706],[5.899183498997873,50.7522562338569],[5.899088671556346,50.752286650352794],[5.898856606721502,50.75234361711251],[5.898636756263563,50.75238778303716],[5.89842866732825,50.752406305075084],[5.898328329808288,50.75243439025776],[5.897885786503333,50.75255824735907],[5.897551526960437,50.75267450485607],[5.897302470513361,50.75282839891691],[5.897226962247369,50.75287505233069],[5.896832989393577,50.753146477135104],[5.896464072618752,50.75354532444283],[5.896359946548166,50.75361334428826],[5.896264383761597,50.75367534866188],[5.896158475443593,50.753735951359374],[5.895634412690058,50.753972861905886],[5.895562092196815,50.75400554942211],[5.895549500612653,50.754011240908966],[5.89535177155018,50.75410062511855],[5.894457735656372,50.754484526713874],[5.89331647435212,50.754842862485624],[5.893048703823768,50.75491237873168],[5.892699400366829,50.75496925348765],[5.89244745445798,50.75503597540283],[5.892110601919381,50.75521900687995],[5.891936850908075,50.75529527340588],[5.891508681410298,50.7554706303369],[5.890933682445135,50.75570954871856],[5.89080789435949,50.755753064448605],[5.890649727562177,50.75581631703699],[5.890499503325146,50.755906411557596],[5.890262917321862,50.75603005127233],[5.890044174825863,50.75612655621769],[5.890042949038453,50.756127208757256],[5.889914140260534,50.756196876356135],[5.889780830236934,50.756291930052555],[5.889738421665686,50.75632771068054],[5.88972205214068,50.75635762505327],[5.889251618559723,50.75721708614966],[5.889243850243318,50.75723126844586],[5.889203371969411,50.757471987151526],[5.88918846364788,50.757548008094865],[5.88928989219501,50.75795098833825],[5.889664170270851,50.75875143848927],[5.890215504870432,50.76013116925164],[5.890182418019054,50.760661568080636],[5.890178975025722,50.76085008012346],[5.890158025172966,50.76199481679305],[5.890032339685146,50.762586114229705],[5.889922162464045,50.7631465750282],[5.889919368680317,50.76316081660913],[5.889759485654664,50.763748936774306],[5.889728219207051,50.76397676150296],[5.889672186829169,50.76422114368722],[5.889616614463011,50.76439019692906],[5.889390153106022,50.7652314638325],[5.889386664993373,50.765347975046055],[5.889386302115132,50.76536029140664],[5.889354929621632,50.765499935469535],[5.889137420283639,50.765819717311466],[5.888966511147414,50.76612374543837],[5.888900256019412,50.766170326161465],[5.88889040221877,50.76626843779331],[5.888707135821242,50.76664910458912],[5.88865324824121,50.76673850846163],[5.888532759206696,50.76690820266772],[5.888215054492083,50.76725682267975],[5.888030116213446,50.76753592116242],[5.887729875767583,50.76788805962306],[5.887274855588281,50.768649053374176],[5.887113098046522,50.76887043116944],[5.886945337428053,50.76919269008758],[5.886680995139754,50.76978710082239],[5.886643913797573,50.76985431836618],[5.886477025171675,50.77015679726169],[5.885800334163552,50.769857964356085],[5.884050879157951,50.76908534215793],[5.883302868444513,50.768755016898616],[5.882517797518738,50.76840830627056],[5.882515120858751,50.76840719414244],[5.882422318023811,50.76836573996498],[5.879383096351879,50.7670168565854],[5.876269090837939,50.765634628157045],[5.876228148280316,50.765616257518616],[5.875341401654038,50.76540821408513],[5.875057941077066,50.76534170796581],[5.873954965591492,50.76531125291994],[5.87311124877455,50.76533727924923],[5.873044673593083,50.76532351879693],[5.87243142853732,50.765194635437744],[5.872411695616045,50.76515089757018],[5.87078250887527,50.76488357227083],[5.869976067546776,50.765042562877554],[5.869589550410639,50.76503631324882],[5.869565048207123,50.765032568383496],[5.869559171054191,50.765031667084045],[5.869499489398077,50.765022361242224],[5.869088915632934,50.764958304065516],[5.868962922941654,50.76493864985336],[5.868847372932342,50.76488042559741],[5.868355055062879,50.76470747394838],[5.868015867765892,50.76458781584472],[5.867791663001444,50.76458118074243],[5.867761025191243,50.76458027455588],[5.86775722552381,50.76458015553884],[5.867674499330215,50.76457772229232],[5.867061493368377,50.76449150667452],[5.866722554309168,50.764394037297876],[5.866272092740174,50.764284670055545],[5.866248505032244,50.76427470937851],[5.865951914921938,50.76414938526076],[5.865615041297255,50.764007049580925],[5.865286112921715,50.7638515562611],[5.864895802678398,50.76366704822565],[5.864706251427863,50.763646205149406],[5.86345407554937,50.76350867909794],[5.863126933707981,50.76337294782046],[5.862632333219481,50.76301767790063],[5.862235407038952,50.76280123272086],[5.862195187323124,50.76277930355207],[5.860532167541929,50.76210136147134],[5.860313029133269,50.7620120204344],[5.860003240671954,50.76186104502166],[5.859979425206507,50.761849340163515],[5.859949778853631,50.761830081557314],[5.859258037716165,50.761377005500584],[5.85852284096719,50.760983663047355],[5.8581414395444,50.760779599109256],[5.857876379988206,50.760625900700475],[5.857497437132765,50.76039254787238],[5.857175726632945,50.76019443990668],[5.856884151680603,50.76001488732427],[5.854998423639953,50.75885358650421],[5.854853134582662,50.758761832507304],[5.853966879625975,50.758202140861336],[5.853698948246885,50.758070071791664],[5.85356027439038,50.7580283484665],[5.853463092018766,50.757999113722896],[5.853268944252393,50.75791562709183],[5.852963570751455,50.757713765100384],[5.85229675789466,50.757216735448765],[5.852199625863193,50.7571356606418],[5.851902664240836,50.756844439608415],[5.851779638000066,50.75667639352582],[5.851640290627108,50.75651712319651],[5.848969782544297,50.753464593098286],[5.848967762334667,50.75346235396367],[5.848920062532643,50.753407775616786],[5.84827191868353,50.75491515639224],[5.848202428837224,50.75509661351298],[5.848142684288606,50.75527915528556],[5.848103630435558,50.75542622525001],[5.848064292151134,50.7556117776716],[5.848040526944644,50.755760188837705],[5.848022367778116,50.75593948134058],[5.847993865474757,50.75653173666949],[5.8479641736199,50.75714842849046],[5.847948095480344,50.75733473298769],[5.847920261458214,50.75752023945013],[5.847888284540216,50.75766812605645],[5.847832984798334,50.757852052200214],[5.847752246641644,50.758061644147155],[5.847286502995569,50.75914834967963],[5.84719153920171,50.759351534933394],[5.847072869273457,50.75959948921623],[5.846996443396367,50.75975288303586],[5.846902789518736,50.75995550552325],[5.846440552010234,50.761032359838865],[5.846395861983331,50.761136466891614],[5.846309072926644,50.76134018519595],[5.846218005890303,50.761558527353564],[5.846165033324365,50.76168795293165],[5.846116219584611,50.76181231020972],[5.846070019579373,50.761932998608955],[5.846020442865963,50.76207055453595],[5.845976763546902,50.76219826217358],[5.845930801375742,50.762343102657795],[5.845888790814594,50.762484844241705],[5.845826779883263,50.762708131371085],[5.845769861678487,50.76293195554816],[5.845585287835321,50.76368410393682],[5.845546473340911,50.763833976621335],[5.845508711113805,50.763979916980574],[5.845455442448188,50.76417029691901],[5.845405284932896,50.76433847097108],[5.845360877964307,50.76448331404659],[5.845313999421546,50.76462619835065],[5.845258462460259,50.76478793967856],[5.845037663440417,50.76537084470232],[5.844891580447016,50.76533377855527],[5.84441890361972,50.76521374447178],[5.843945914344297,50.76508330957777],[5.843433153899659,50.764939546630664],[5.843225441005915,50.76487436204505],[5.842608582067969,50.76470600856131],[5.841689975170343,50.764479288868],[5.840875005502351,50.764275184146676],[5.840735142741804,50.76423869057183],[5.840603479021496,50.76420433993314],[5.839987732949901,50.76403484452582],[5.839565092222027,50.76391122357223],[5.839382301014709,50.76385575927651],[5.839199193193374,50.76379101942463],[5.839008052754855,50.76371929940674],[5.838585998627599,50.763541730419114],[5.838357597386731,50.763442064813944],[5.838138737251546,50.76334404240953],[5.837707776103153,50.76313588895645],[5.836871839256997,50.76265908886858],[5.836657748526619,50.762572838488445],[5.836434896850939,50.762474549764406],[5.836199873654967,50.762352990844946],[5.835865977590045,50.76215007105038],[5.835509376226498,50.761912972935505],[5.835140874359095,50.76168181660166],[5.834743277266379,50.76144150438796],[5.834360271994398,50.761220792936605],[5.834109705965228,50.76108075497431],[5.83398690991207,50.761012123933696],[5.833836607074383,50.76092590911272],[5.833737310403308,50.760870670178726],[5.833583031722438,50.760785036707794],[5.833403065941808,50.76067645488484],[5.833210126881645,50.76055389129775],[5.833008420092918,50.760418426282186],[5.832848765612595,50.76030247519838],[5.832657786912843,50.76015348487227],[5.832507012620701,50.760017552775665],[5.832343912553457,50.759865649868324],[5.831842465707926,50.75934398138341],[5.83178057040587,50.75928691580038],[5.831125689896901,50.75885741355161],[5.831020176439752,50.75877663190059],[5.830914712283422,50.75863125603087],[5.830759911554058,50.75855937378863],[5.830677567184985,50.7585391865797],[5.830011073564341,50.75856309369659],[5.829801418064927,50.758589462051084],[5.828790348802326,50.75870316008311],[5.82731047414895,50.75885937505613],[5.826554107146884,50.75893360982435],[5.826511842051376,50.75893600890364],[5.826395202333129,50.75894263706815],[5.826356908734043,50.758943906362404],[5.825334521393862,50.75893964741579],[5.824705878884984,50.75896282291408],[5.824406703288103,50.75895974063364],[5.823557722764217,50.758886547699625],[5.822711055618786,50.75882400957308],[5.822433118495284,50.75879613169372],[5.822118277461999,50.75875293136367],[5.821869857253214,50.75870807782915],[5.821579646768787,50.75864512466303],[5.821033444089022,50.75850926273748],[5.820594762148591,50.75838702620591],[5.820092068333365,50.75821587703752],[5.8198469906415,50.75812466010729],[5.819608464807341,50.758024716908245],[5.818907795900945,50.75770598798463],[5.817814931306605,50.75723815530725],[5.816902115876921,50.75688986812316],[5.816199147295606,50.75665427829288],[5.81592639405899,50.75656286829719],[5.815638825102162,50.756472087938135],[5.815145327988898,50.75633205654236],[5.814696362679687,50.75622023592817],[5.814416859360102,50.75616313085097],[5.814201847009698,50.756138362139716],[5.813527611981519,50.75608635491701],[5.813021911652343,50.75604075144044],[5.812587662999627,50.756010891595984],[5.812313489946425,50.75600313753556],[5.812209606723607,50.756000203191334],[5.811638267562935,50.75598994576051],[5.810793901375554,50.755954566164185],[5.810272660710321,50.75592614042779],[5.809758435376058,50.755891511321494],[5.809421191216826,50.755888529622716],[5.809233473109745,50.75589314423463],[5.808790082365249,50.755928194023845],[5.807695568213712,50.75604482561012],[5.807621046350454,50.75605437354785],[5.807481867955855,50.756089424515665],[5.807411720718548,50.756118893649294],[5.807329208453219,50.75617566192516],[5.80735635148461,50.756190448658046],[5.807245758836908,50.75629959820624],[5.80685155930297,50.75668864001058],[5.806410580591131,50.75712383728868],[5.805260788996824,50.758258498328345],[5.805092131846414,50.75842492625236],[5.805058405907463,50.75845820819193],[5.804049990533944,50.75945330577137],[5.804004998556485,50.75949785515098],[5.803971200043788,50.759531119055],[5.802287302701393,50.76118750228387],[5.802281036985502,50.761193664194806],[5.802274996087434,50.76119960956471],[5.802255426227904,50.76121885313564],[5.802245016152686,50.76122909290338],[5.801882444804172,50.76158572495469],[5.801676557130566,50.76178822797793],[5.801594693293405,50.76186874731596],[5.801534886348656,50.76192757824798],[5.801380542212467,50.76207937841972],[5.801302245943876,50.76215639707712],[5.801085001352233,50.762370067966316],[5.801006704104544,50.76244708642535],[5.800167924510316,50.763272065968664],[5.800167263445281,50.763272634630674],[5.800151291111136,50.76328861999998],[5.800092865970661,50.76334705871639],[5.798571661431338,50.764866264799444],[5.798509987530831,50.76492800420264],[5.798224397648419,50.765213293568095],[5.797726854770331,50.76571029531817],[5.797650341157387,50.76578672086707],[5.796462339162429,50.76697335804644],[5.796451450169489,50.76698422820493],[5.796413669077813,50.76702197145396],[5.795795462959197,50.76763943847417],[5.795509530546509,50.76792501891995],[5.795505259182045,50.767929294738565],[5.794892087443435,50.76854171431805],[5.79487249994644,50.76856126231154],[5.794783625388464,50.76864996341158],[5.794773312878517,50.768660390922065],[5.794438800444386,50.76899220801479],[5.793737159227765,50.76968820609991],[5.793241358989313,50.77017984287219],[5.793221596712466,50.77019901366685],[5.792131281993768,50.7697739133057],[5.791788330887036,50.76963494363575],[5.791453100957432,50.769492017793276],[5.790132517290179,50.7688912897061],[5.789734669913328,50.7687036332217],[5.789484414189469,50.768578661729116],[5.788996723183818,50.76832248818756],[5.788657348677686,50.768158777515715],[5.788538637622938,50.76810779206502],[5.788289772530077,50.768013429159495],[5.787921272485845,50.767888865045975],[5.787542211918094,50.76777220161898],[5.787409247434553,50.76773642861336],[5.787134084293091,50.767673893985375],[5.786454053653515,50.76755714562516],[5.786047912208175,50.7674849578518],[5.785238203412277,50.76732791286939],[5.784869867961114,50.76724744672077],[5.784502672647402,50.76716921369782],[5.784482859264995,50.76720090461773],[5.784476455286743,50.767211155953945],[5.784073655503696,50.76786415128241],[5.782597213665487,50.770257524855296],[5.781884663728761,50.77141249393911],[5.781346972163426,50.77134466732347],[5.780853212822249,50.77238203693531],[5.780682551440425,50.772681218934785],[5.78048365538286,50.77294425386256],[5.780399888077825,50.773096225831466],[5.780335283650877,50.773339989435854],[5.780272713890409,50.77356295489307],[5.780230066915673,50.773615855573595],[5.780014711819859,50.77388293675999],[5.779902913463054,50.77417714424434],[5.779840289328874,50.77420299339835],[5.779801369983209,50.77421906295774],[5.779714921139434,50.774309272242725],[5.779682811934044,50.774342783924034],[5.77956853946399,50.77476227694403],[5.77936871241366,50.77549582490311],[5.779332326048155,50.775640713744345],[5.779199850014212,50.776168314078106],[5.778983407965848,50.776899949233766],[5.77877057622137,50.77761500531283],[5.778708978239293,50.77778666732367],[5.778179745377591,50.779261407860886],[5.778113031373906,50.779447307222654],[5.777644139783538,50.780343265317846],[5.777587794319895,50.78045089943816],[5.777564407728878,50.78049558112905],[5.777545318944911,50.780532059452895],[5.777242614970973,50.78111046253236],[5.77664765019377,50.78224722191683],[5.777092114809539,50.78288786681989],[5.777367184498297,50.782955477629336],[5.776595374712645,50.783014541816165],[5.773575206613623,50.783245192168906],[5.77321655966819,50.783142184048906],[5.773005255663095,50.78309485387775],[5.772788284364021,50.783058220986426],[5.772566985127359,50.783034797747646],[5.772346831715279,50.78301615232585],[5.771747509092951,50.78298387532504],[5.77042686488489,50.782927033870834],[5.770023456504007,50.782902052684534],[5.769772534012968,50.78288650663751],[5.769159474004381,50.78282645925739],[5.769058920978531,50.78282162324565],[5.769030580607931,50.782820260771324],[5.768755219379406,50.78280700457995],[5.768559936093359,50.78279501139293],[5.768354179032177,50.782774899574044],[5.767152389081573,50.78264852215078],[5.76610763868874,50.7825730241837],[5.765810997957052,50.78254590709837],[5.76519519692942,50.782090680509505],[5.764718726241333,50.78173845671252],[5.764095172813399,50.781277478835285],[5.76351165560578,50.780846093229165],[5.7630097074377,50.78047500601313],[5.762640572120565,50.780202092373194],[5.762636863699868,50.7801993538481],[5.762325312920821,50.77996901184213],[5.762303675746263,50.779953010101295],[5.762041178701408,50.77975893971082],[5.762019142431439,50.77974265157021],[5.761443251581799,50.77931686686711],[5.760831230178038,50.7788643466025],[5.760145577907466,50.77852937422728],[5.760100657625423,50.77850743375172],[5.759563025514474,50.77795664335097],[5.75882644234355,50.778200591321095],[5.758534812297789,50.77796640874105],[5.758485100931826,50.777926685163564],[5.758369821374536,50.77769390350973],[5.758254123733328,50.77752040442803],[5.758093631448704,50.77731192977488],[5.757866434480571,50.77707108455766],[5.757635291363695,50.77683642688807],[5.75646180322075,50.77573596211543],[5.756221410100146,50.775505834645415],[5.755979924769156,50.77527711242829],[5.755850181297275,50.77514494154176],[5.7557821468234,50.775028654543156],[5.755776527563643,50.775019045446186],[5.755723587596686,50.77502550661747],[5.75489350180782,50.77512718310658],[5.754558013314127,50.77518937508463],[5.754389904350599,50.77506150443788],[5.754316967483862,50.775006014632886],[5.754106615497405,50.77484599900922],[5.754089016153308,50.77483261663885],[5.753493010514292,50.77437923392082],[5.753481515582342,50.7743704972934],[5.753452163313414,50.77434617675417],[5.752344973650318,50.77342847278953],[5.751868796117272,50.773679867208024],[5.751153766494908,50.772830791731614],[5.750536041211265,50.77229403708332],[5.750517934436419,50.772278956883305],[5.750363748800415,50.77215050628001],[5.750029833032142,50.77190773428012],[5.749657951245065,50.77178376897477],[5.749553859915836,50.7717490662741],[5.749388712663285,50.771694015575605],[5.749345612177706,50.77168034394729],[5.749253712810886,50.77165118479277],[5.748830886602107,50.771517794500035],[5.748800547750821,50.77150821755341],[5.748262527094108,50.77122057815114],[5.747088702187765,50.77048491253263],[5.746967355768144,50.770374054054884],[5.746583690882679,50.77002356131627],[5.7460626869782,50.769554949722355],[5.746341744376819,50.76938273698853],[5.746077964156506,50.76921164605084],[5.746064194569581,50.76920719444344],[5.745997359416635,50.769184930126364],[5.745037033037341,50.768868807591595],[5.744895818758489,50.768821766261695],[5.745271957017005,50.768401496367886],[5.744365126393686,50.76801104457958],[5.743821106124861,50.76751472774439],[5.743277040380502,50.76701835458811],[5.743260440006088,50.76700321468337],[5.743116981875964,50.76678082420148],[5.742801697405255,50.76629207589764],[5.742544497184708,50.76589334179771],[5.742241115450955,50.76542301840202],[5.742212241986491,50.765378244001305],[5.742175235963765,50.76532087429857],[5.742121435561158,50.76517834220884],[5.742028256647404,50.76498317575993],[5.741891651162281,50.76469702301559],[5.741627407615415,50.76474924168913],[5.741526028335556,50.764580464229226],[5.74116779002771,50.76398404050418],[5.741157712618285,50.76396725332444],[5.741139552964678,50.76393697174154],[5.741131925280273,50.763925471462805],[5.740554928946543,50.76306684738993],[5.740545753833304,50.763053104605696],[5.740518877157434,50.76301330348548],[5.740601197748683,50.76300658852894],[5.740758598318402,50.7630864485981],[5.740868700364596,50.7630931315846],[5.741059560260728,50.763059117249156],[5.741148232251715,50.76301362264622],[5.74123004522583,50.76285297527772],[5.74122431516971,50.76279850263282],[5.741086887794459,50.76266521535326],[5.741163356983434,50.762586328731565],[5.741240616499803,50.762466145002584],[5.741284224021459,50.762436231291126],[5.74129649826403,50.7623322649201],[5.741437429047993,50.762285764825066],[5.741377634029478,50.76216852737162],[5.741317336720703,50.76213219978393],[5.741310676505753,50.7620709793957],[5.741272020563791,50.76205508888841],[5.741240002672025,50.76204175779979],[5.741184270012446,50.76201855779553],[5.740875037193443,50.761889455454664],[5.740474541551865,50.7614648366023],[5.740464754824963,50.761454484469375],[5.740459597266004,50.761449044041036],[5.740427665326173,50.76141525391649],[5.740477149634508,50.761405277702025],[5.740719066284085,50.76135650081755],[5.741500068657803,50.76117836588929],[5.74157168333251,50.76116202910362],[5.741536984125845,50.76111297577831],[5.741499165714254,50.76106002188098],[5.741205274048193,50.76064854357025],[5.740829396691726,50.76017104117886],[5.740852343501313,50.75998529786188],[5.740715957053109,50.75975481090416],[5.740697422674249,50.75972345175045],[5.740658946727975,50.75965831076279],[5.740482892412219,50.75936030415104],[5.740311317827469,50.759073384763894],[5.740048455405001,50.75863381748633],[5.739996234866655,50.7585499945948],[5.739969321158007,50.75850677772311],[5.739788028617591,50.758215752426125],[5.739612017465067,50.75793317819273],[5.739422358515881,50.75762589014691],[5.739179037852946,50.75707382021948],[5.738545315052619,50.757099912929974],[5.738277056252745,50.75711252251664],[5.738181324358806,50.757120903593595],[5.738070821894974,50.75713056994904],[5.737617292062273,50.75717693674641],[5.737555526207204,50.757183254618774],[5.737032057171545,50.75723652805471],[5.736002783563512,50.75734076721736],[5.735470382094302,50.75744490129419],[5.735165097197781,50.75748094133294],[5.735084944147667,50.757482585196215],[5.734914162051872,50.75747214244083],[5.734802473347243,50.75745984057756],[5.734777426874909,50.757457102504574],[5.734732429193506,50.757450784030034],[5.734022444828873,50.7573478583104],[5.733710721147876,50.75733578774177],[5.732750461156706,50.75729858542256],[5.732744608619514,50.75729859395482],[5.732126052300344,50.75729932947614],[5.73170684129752,50.75730806016666],[5.731700550335972,50.75730818680914],[5.731106195255744,50.75732961777758],[5.730840501087779,50.75734071029762],[5.730816446248578,50.75734171674867],[5.730565489489386,50.75736044120685],[5.730462547569043,50.75739248689499],[5.730428573659964,50.757403167759335],[5.730387657879021,50.75741602656924],[5.730322568567405,50.757597964879565],[5.730246307295408,50.75785409406081],[5.730239934490653,50.757921807747934],[5.730252932784484,50.75821193697447],[5.730259981533727,50.75826641519556],[5.730229454545539,50.758271881232936],[5.730221727309573,50.758273270496794],[5.72997896772862,50.75832426611285],[5.729763053015324,50.75837209838615],[5.729620411300414,50.75840370382955],[5.729610367275262,50.75840608869485],[5.72900503462466,50.75854962743186],[5.727543459232052,50.759011539774264],[5.727477337534487,50.75903506967827],[5.727370917985337,50.759072947602995],[5.727312669186447,50.75909368565575],[5.727285361025492,50.75910340212536],[5.726980080214665,50.759212068057145],[5.726914014499278,50.759235579495254],[5.726634822610613,50.759330783384435],[5.726404043748752,50.75941489596154],[5.725613589127162,50.75993912455352],[5.725517068283022,50.76000177187266],[5.72489712733377,50.76040751748215],[5.724012334773522,50.76090588953981],[5.724179178037858,50.761040063959285],[5.72424917154253,50.761096354278465],[5.72465271368734,50.76142087582796],[5.72461963120542,50.76143975016657],[5.724596781139136,50.76145278781456],[5.724585899466499,50.76145899493464],[5.724567806573083,50.76146943888313],[5.724547087947709,50.76148130174603],[5.724327472678138,50.761459471347756],[5.724350207522722,50.761479351117444],[5.72435465768114,50.76148326622971],[5.724493719421347,50.76160477521255],[5.724076987045439,50.76178096839608],[5.723613978733074,50.76197671977092],[5.723893938660717,50.76222871382395],[5.723757819815702,50.762286450414166],[5.723477795859192,50.76240520873389],[5.723388403107767,50.76232401251462],[5.722317701569566,50.76278161822829],[5.722782396385199,50.76313307903878],[5.72202411020221,50.76349427619094],[5.722131097805234,50.763531179489085],[5.722292758769871,50.7635869353235],[5.722842093602707,50.76377640550605],[5.722847080732285,50.76377812584554],[5.722555155233308,50.763924476215216],[5.722549434780641,50.763927189477656],[5.722153266227045,50.76411497442544],[5.72173043279893,50.76424935186016],[5.721482461385798,50.76432815603312],[5.7213233508209,50.764378873136664],[5.721303709425895,50.76438513226731],[5.721130202473682,50.76444033124423],[5.720907046807895,50.76451133200984],[5.72026657871145,50.76471509743425],[5.719911472854512,50.76408268898548],[5.719790090090397,50.7638920265584],[5.719661966214522,50.76366434053483],[5.719611764959743,50.76357512734732],[5.719520937483422,50.7634472983231],[5.719429261954474,50.76332566496015],[5.719405795857066,50.76329453233671],[5.719343335208241,50.76323095444856],[5.719135208989011,50.763018904848835],[5.719116694905162,50.7630004231608],[5.718936770479498,50.762827519278645],[5.718166369854658,50.7620871382638],[5.717805217650341,50.761729268053244],[5.717677888623276,50.76160308822191],[5.71754679229848,50.76147317968955],[5.717473572734471,50.76140061582017],[5.717326049627433,50.76125442137608],[5.717265568350067,50.761211322214166],[5.716994942395761,50.76101847682109],[5.716958092769625,50.760992217926066],[5.71685772863244,50.76092069301871],[5.716577705054037,50.76072114986747],[5.716472513416061,50.760646186701656],[5.716187093093063,50.76044856363426],[5.716086005217809,50.76037856822254],[5.71607575119021,50.76037146931459],[5.716018784399003,50.76033202692563],[5.715870628908017,50.76020548197949],[5.715746236721352,50.760056397188485],[5.715632933358693,50.759878067089254],[5.714394726746598,50.76004170131375],[5.713561365148157,50.76015192632759],[5.713668500910425,50.76068364387638],[5.713152876259524,50.76075951045913],[5.71270938193035,50.760824762307365],[5.712624622908028,50.76083743282354],[5.71264818518213,50.76094579836794],[5.712292669389729,50.760960562077635],[5.712157107795712,50.760479763996535],[5.711664074847975,50.76052749727246],[5.711662298567819,50.760494360536654],[5.711642552419423,50.76048963399697],[5.711578010043474,50.76047492993521],[5.711451386515439,50.76051180723578],[5.711264249644938,50.76054070146185],[5.71110705981075,50.76057597430187],[5.710854643661686,50.7606735906792],[5.710628919291076,50.7607905205687],[5.710627561667903,50.760786865928786],[5.710235043279361,50.75981155609662],[5.708897551332108,50.75993495954959],[5.708782037538816,50.75956252468658],[5.708758403302295,50.75945259452635],[5.708673824599795,50.75905917440824],[5.708679247488713,50.75901140178479],[5.70864314963383,50.75901094501509],[5.708196038945931,50.75900460277752],[5.707406491788186,50.75901298016491],[5.707368235556844,50.75893584549581],[5.707046540979875,50.75828728732383],[5.70697636711696,50.75828553119432],[5.706290021089145,50.75826831151963],[5.705790677347912,50.758290095508706],[5.705788198107574,50.758290201228895],[5.705647269072467,50.75830109805371],[5.705494300806685,50.758312926787994],[5.705297189563701,50.758339313003894],[5.705265921393789,50.758344585714134],[5.705173560620139,50.758360157118936],[5.705149455125752,50.75836426848672],[5.704794765546617,50.758424759876824],[5.704773462647988,50.758428396036486],[5.704663312138923,50.758449535104006],[5.704635686080727,50.75845484256964],[5.704620670048919,50.75845772432849],[5.70446858482523,50.758486906652784],[5.704382932475614,50.75850334887534],[5.704347762155912,50.758509989369145],[5.704266962346816,50.75852524063866],[5.704171528217624,50.75854325564909],[5.704037768667269,50.75857283651698],[5.703960788079978,50.758589164732875],[5.70372245916997,50.75863970641575],[5.70354160088679,50.75867869230393],[5.703285693826338,50.75873478240756],[5.703184745872417,50.758756910594926],[5.702957718398997,50.758812875959485],[5.702609785929569,50.758898933262735],[5.702585692564804,50.75890490474341],[5.702552672820733,50.75891320174161],[5.702243317055692,50.75835015202158],[5.702051622004152,50.75796130716844],[5.701955603494042,50.757796885219406],[5.701639285304546,50.757358662430086],[5.701396020785293,50.75703312131133],[5.701386492257277,50.75702389777357],[5.701072724254824,50.7567203007863],[5.700784290105211,50.756474369196894],[5.700260436803503,50.756088805467805],[5.699736938708676,50.75569366535019],[5.699517744344663,50.755509448979154],[5.699408837661532,50.755409293795395],[5.699222184139858,50.75532889936562],[5.699027361100224,50.75527473804889],[5.698944039548144,50.75527049570556],[5.698816746716151,50.75526401696741],[5.698491752680031,50.755296013218796],[5.698045964659985,50.75535044640203],[5.697881804867573,50.755344614238645],[5.697711027210713,50.7553196535042],[5.697165398488181,50.75522404115609],[5.697120252367114,50.7552177354049],[5.696614844801463,50.755146048495064],[5.696007605606739,50.755026604738674],[5.695967480613828,50.75501884689463],[5.695291877732476,50.7548060448211],[5.695094101871156,50.75476499942106],[5.694788643042186,50.75477677125967],[5.692537109772361,50.75510943880644],[5.692417791999441,50.7551454489296],[5.692389719741251,50.75515392769148],[5.690574305250883,50.755413492465344],[5.690151360006388,50.75547386658841],[5.688475059473524,50.75571365322333],[5.688380311779768,50.755820076178054],[5.68830660743403,50.75589162155848],[5.68822560008994,50.755964588192214],[5.688222077506416,50.75596768053708],[5.688128206154259,50.75603675254968],[5.688085225818386,50.75606720179649],[5.688007192309805,50.75612246158349],[5.687948307997184,50.7561566016808],[5.687929461966666,50.75622237686763],[5.687929432689158,50.75645637329067],[5.687937795069319,50.7568942676877],[5.687981959390424,50.75705960937826],[5.688057160052953,50.75734114922846],[5.688057468736559,50.757456600529736],[5.687983739417949,50.757568523443695],[5.687977214113598,50.75757843711438],[5.687823108391555,50.75768193112787],[5.687758770116926,50.75769698413956],[5.687447395135862,50.757686846231174],[5.687180475055126,50.757637256973744],[5.686573003661057,50.757551193514736],[5.686419756803017,50.757546530225106],[5.686275581112084,50.75754213086781],[5.686094286766569,50.75755018705886],[5.685144773114399,50.75768045383432],[5.684999074067228,50.757679418624924],[5.684901991897847,50.75766450498168],[5.684788808492577,50.75762258548753],[5.684731762307371,50.7576014560835],[5.68452980760842,50.75753006616809],[5.684450187191771,50.75750892286842],[5.684088712816769,50.757491039731434],[5.683792661017437,50.75749011101364],[5.683521477780117,50.75749782783313],[5.682226692567166,50.75752207079674],[5.681960474204938,50.75793547452028],[5.681822683848925,50.75832039995014],[5.681757691218274,50.75869071543058],[5.681757066471969,50.75914924445649],[5.681905575546988,50.75977095291395],[5.682385287545773,50.7605052682088],[5.682840506673618,50.76115726797174],[5.683303024523189,50.76183837095694],[5.683868630501498,50.76245407738468],[5.684606756157969,50.7631537894406],[5.685813908158059,50.76417574329938],[5.687130539019089,50.76512061493587],[5.688131592142073,50.76584396587564],[5.688957303791233,50.7665082968194],[5.689776612861695,50.767162367499346],[5.690578276024651,50.76786436814005],[5.69132168566547,50.76846577027641],[5.692395003770698,50.76935911215056],[5.693963927107895,50.770894642636435],[5.694659679433689,50.771639003227236],[5.695285471608747,50.77230892435642],[5.695817052691713,50.7730110492429],[5.696419117997836,50.77376985213519],[5.697006870264194,50.77458024115994],[5.697481078555468,50.775544467283666],[5.697680620909274,50.77595259492041],[5.697922169169788,50.77645764035122],[5.698119234868248,50.777030311042964],[5.698380962763342,50.77780247553121],[5.698587699197519,50.77880829605048],[5.69870982438904,50.77970110356776],[5.698755791778011,50.78020419400039],[5.698782149524874,50.78112434316491],[5.698749375308132,50.78188549308188],[5.698677811405188,50.78268176805979],[5.698594280569203,50.783496022943346],[5.698405274309052,50.784412701964555],[5.69817485640683,50.78535898152225],[5.697906728934622,50.78604819225709],[5.697574534657619,50.78686477825057],[5.697277619743678,50.78749553276992],[5.696792158449716,50.78840448352497],[5.696349681880016,50.78932524830756],[5.695959279637144,50.79016864629536],[5.695633456203422,50.79102873649532],[5.695375553601354,50.79170576417854],[5.695106233049082,50.792444913444896],[5.694850299945704,50.79319386917029],[5.694567558293039,50.79405114495195],[5.694332038485489,50.79495270818407],[5.694082464249055,50.796015813276156],[5.69384126070198,50.79714970049431],[5.693732879018879,50.79791029492445],[5.693633892516567,50.79866226204468],[5.693636452557867,50.799494163872474],[5.693586665347008,50.8003749269739],[5.693617300644275,50.80157688972858],[5.693628087060509,50.802287025319806],[5.69363918820456,50.80318642855806],[5.693661591345544,50.80399362454104],[5.693679102635241,50.80479028664823],[5.693709202146239,50.805423858271546],[5.693758846188769,50.806148329852526],[5.693817154645638,50.80714740770729],[5.693857501814612,50.80819811108155],[5.693919551683783,50.80965342135911],[5.693937958772485,50.81008049105146],[5.693987251052665,50.81089343152394],[5.693889726885991,50.811526790823606],[5.692358875704699,50.81193308583747],[5.692231533986257,50.81196854149294],[5.691679623018526,50.81212217830052],[5.691170146738343,50.81184127134249],[5.690230254550227,50.81184661735851],[5.690032039259249,50.8118204583956],[5.68993114033059,50.81180572055076],[5.689757672704427,50.811782381664315],[5.689655243239884,50.81176788129713],[5.689585027941429,50.811756838103946],[5.689488276205189,50.81174273621069],[5.689283891559016,50.81171243029028],[5.689182285220492,50.81169574306978],[5.689053946678712,50.81167641998894],[5.688773560834932,50.8116265992848],[5.688614581816777,50.811869811122506],[5.687880154296085,50.81192341094803],[5.686885584838359,50.81206980769567],[5.686918605877877,50.8123144155188],[5.686668420907122,50.81230583291346],[5.686545578501879,50.81227647026826],[5.686221724117722,50.8122513853643],[5.685993877764171,50.81222402875736],[5.685925930189512,50.81249225992454],[5.685658262470313,50.812555999396075],[5.685336334016577,50.81262766262375],[5.685195644589235,50.812653679744415],[5.685142051284983,50.812668218075345],[5.68484024855475,50.81275011120743],[5.68456888304794,50.81282176783554],[5.684520804796367,50.812829100628605],[5.684270910894986,50.81308995176616],[5.68426439959113,50.81315431942871],[5.684291836974913,50.813289045111595],[5.68432435024215,50.81331915490724],[5.684335507846741,50.81334220049072],[5.684360155609965,50.81342016897598],[5.684197103506509,50.81340642196026],[5.683582053839535,50.81331803270599],[5.683284189320076,50.81326009965642],[5.68319716244681,50.81323602593797],[5.683092550732252,50.81320211849596],[5.682921990144259,50.813125431269896],[5.682821297420978,50.813040762711054],[5.682558353200046,50.81283823426161],[5.682416991302964,50.81266094074589],[5.68221489612444,50.812419532183135],[5.682098241035662,50.81234092627389],[5.681935958584088,50.812237753403856],[5.681681358418781,50.81213915730303],[5.681552382059603,50.812112924113116],[5.68124421379622,50.812131111368075],[5.680821726458327,50.81204037439374],[5.68060217495742,50.81203174572921],[5.680531532814263,50.812058352256386],[5.680409234495857,50.81216814650275],[5.680404866798755,50.812172966604365],[5.680240338238266,50.81231083205625],[5.680040333234465,50.812494908814934],[5.679901972055063,50.812694604398025],[5.679719803517104,50.81309989500735],[5.679652841909707,50.81337518513768],[5.679642607193071,50.813417107903646],[5.679588575310889,50.81356499379352],[5.679639934501359,50.813593960560645],[5.679661019516892,50.81362343542453],[5.679631376858388,50.81377131351339],[5.679628610509369,50.81379611166098],[5.679619758676081,50.814109043614636],[5.679420350604547,50.81471134025511],[5.679399065114784,50.81474466169636],[5.679296642642484,50.81479484460655],[5.679068809618034,50.814834036451835],[5.678958358841152,50.814844104299844],[5.678565150931462,50.81501758312001],[5.678488857832174,50.81505124987394],[5.678455918148289,50.81506577795604],[5.678389037267813,50.815511432109254],[5.678374928083273,50.8156054187421],[5.678419915007493,50.81561357504026],[5.678391531681095,50.81578883854787],[5.678282969198649,50.81646837874886],[5.67795818615293,50.816441690951926],[5.677504898825299,50.816404448806445],[5.677496892208134,50.816403803756174],[5.675422082850202,50.81623732205581],[5.674751207884713,50.8161924320129],[5.674668068554388,50.81617764561009],[5.674636690709036,50.81617206973195],[5.674147619734791,50.81611573932131],[5.673968917244088,50.81611448422111],[5.673637309887312,50.8160732932919],[5.67317325150222,50.81599551235413],[5.673141565152673,50.81602728534293],[5.673136821671166,50.81603347239805],[5.672930401435063,50.81630268570522],[5.672833865824222,50.81662604523597],[5.672823858707939,50.81666226792183],[5.672794863983467,50.81676715813544],[5.67279151417291,50.81678078446591],[5.672786614190701,50.81680074275167],[5.672750098674673,50.816949337168666],[5.672659073714109,50.816951368899765],[5.672519603331766,50.81695971352159],[5.670981057082183,50.81705174668735],[5.670863386865907,50.81705878630615],[5.670422917528165,50.817085134671174],[5.670425272477617,50.817145443813146],[5.66989621292166,50.81724759425302],[5.669671873166607,50.81724625541673],[5.669748602355103,50.81727551510064],[5.669899136400797,50.81735470674734],[5.669906545224491,50.81737132690258],[5.669812526121754,50.81743399324171],[5.669688106086868,50.8175909455718],[5.669582908374168,50.81765648851298],[5.669454000387132,50.81785027871568],[5.66944442357075,50.81784811783514],[5.669070896398504,50.81775857551056],[5.668878183785386,50.817741130902036],[5.668632755375111,50.81773496953269],[5.668569191540834,50.8177333805513],[5.668458183806166,50.81773033402241],[5.668377227005917,50.81773160976987],[5.668149976526653,50.817732675073024],[5.66807623409601,50.81773731285508],[5.668002014768216,50.817515649481265],[5.667999613107624,50.81736278263715],[5.667964101096257,50.81684798097009],[5.667944789502756,50.816777654519925],[5.667736529245603,50.81657717072674],[5.667700806026802,50.816542776409015],[5.667648245724896,50.81654442314069],[5.667287562629642,50.81660806713237],[5.666932640883101,50.816688433207],[5.666677756903131,50.81675803029749],[5.666397867980317,50.81682948502788],[5.666376482793026,50.81694927663704],[5.666494597546747,50.81704421854845],[5.666730356146227,50.817254597636556],[5.666691715954334,50.81725881699997],[5.666560580213318,50.81727312080776],[5.665994446379797,50.8172687627222],[5.665988720044588,50.81721787291902],[5.665535035910172,50.81723233336014],[5.665492820952047,50.81717999436381],[5.665324263152366,50.81722421178738],[5.665290222445631,50.81716731368722],[5.665191755473548,50.81703818377053],[5.664272350901014,50.81718706315881],[5.664242763902787,50.817217507307184],[5.664078283470178,50.81739345310471],[5.663917853616762,50.81756120914823],[5.663804780111947,50.81772072569558],[5.663730120631294,50.81781194310036],[5.663240816589192,50.81804118646198],[5.663183851773479,50.81806600584437],[5.662874899003963,50.81813189446689],[5.662644186514612,50.81818110125885],[5.662020723866013,50.81825936864685],[5.661793295016313,50.81828107815173],[5.661510458676175,50.818308069386624],[5.66134829279703,50.81832354658096],[5.66100412490721,50.81835230010481],[5.66072330140141,50.81836465985134],[5.660372046659073,50.81839487547078],[5.660089051530468,50.81840961185635],[5.659778300107242,50.81842895239722],[5.659009817715805,50.818481639907176],[5.658501589693587,50.81868297946653],[5.657598221180278,50.8190408476607],[5.657547834924145,50.81905815219489],[5.657425664330958,50.81910010117917],[5.657400208709431,50.81910754952527],[5.657228719346325,50.819157703579826],[5.656965053368349,50.81923481438214],[5.656804743673386,50.81926040225557],[5.656266553655088,50.819346286740064],[5.656249513225154,50.81934900509572],[5.656080472342117,50.819354396474374],[5.655875679599489,50.81936093144717],[5.65586299622255,50.81936133847714],[5.655857243291553,50.81936274512231],[5.655728028844007,50.819394317631236],[5.655677806356358,50.8194204839308],[5.655668497029563,50.81942525165705],[5.65547275939531,50.81952535631852],[5.655383887404546,50.81955714036081],[5.655045645337449,50.81968536844695],[5.654979090091671,50.819709181290065],[5.654749431430484,50.81979134079696],[5.654587370111422,50.81982868700565],[5.654180048036262,50.81997438487723],[5.654109447180156,50.82002027408705],[5.654037464676911,50.82005788775507],[5.654024448945433,50.82006468639163],[5.653990933472344,50.82008220208743],[5.654037051824234,50.82012420811803],[5.654134590666975,50.82017528187637],[5.65427631696702,50.82030748523586],[5.654615835556632,50.820578916749305],[5.654692979596741,50.82061928663963],[5.654868309427918,50.82071919557877],[5.6552327220773,50.820936239261464],[5.655164894820015,50.820966140583195],[5.655147233567577,50.82097204225309],[5.654797916596558,50.8210887716414],[5.654497730850538,50.821199112107806],[5.654339269311774,50.82126855764821],[5.654779011234983,50.821592026794164],[5.654984572696798,50.82174874670222],[5.655005246730193,50.821765651664045],[5.655317810826834,50.82202112558368],[5.655431084321266,50.822129627179784],[5.655444997380278,50.822142952239744],[5.655453536260224,50.822149629072186],[5.655692406852287,50.82240410455151],[5.655855818638301,50.82257630972083],[5.655865342056599,50.82258633705848],[5.655966651149004,50.822691674934745],[5.655968592758516,50.82269368391016],[5.655982979935342,50.82271285052764],[5.656202253152637,50.82291748268309],[5.656243672248372,50.822963193187135],[5.656244500635293,50.822964108116174],[5.656456035037739,50.823157755518636],[5.656079865524966,50.82341076773993],[5.65581883029851,50.82358635114567],[5.655747259364832,50.82363448182354],[5.65550647863782,50.823796417368655],[5.65617779007983,50.82428964514595],[5.656073786220563,50.824361393224784],[5.656070196934633,50.82436403529937],[5.655920958607893,50.824473893190984],[5.655916874018462,50.82447677911071],[5.655806435318661,50.824554959924775],[5.655705762481091,50.824626223519196],[5.655704589395711,50.824627053216076],[5.655288961681037,50.824926006461375],[5.655228091817059,50.824969788365],[5.655221873338266,50.824974252252325],[5.655196899187745,50.82499195522112],[5.655157551091655,50.82501984887875],[5.65509504751283,50.82506338281488],[5.655094298537246,50.82506393286902],[5.655006367186543,50.82512775952653],[5.654897335963713,50.82520690699703],[5.65489705327676,50.825207105405845],[5.654647283066882,50.82538711849616],[5.654642180885783,50.82539076178635],[5.654578311102012,50.82543626715368],[5.654497834146595,50.82549360422797],[5.654410954489003,50.82555551338141],[5.654387633859476,50.825572124704316],[5.654264257756332,50.825659547488485],[5.654109800324731,50.82576901060163],[5.653943045339867,50.82588717610244],[5.653933716759727,50.82589378643752],[5.653810058989613,50.82598188354594],[5.653800843594818,50.82598843967627],[5.653577836419004,50.82614718408437],[5.653535335193124,50.826177448514564],[5.653500720739431,50.826202094722056],[5.653033931224788,50.82652338707329],[5.653021166240701,50.82653218053335],[5.651878309304801,50.82748404060092],[5.651870083943022,50.827492580834814],[5.65185534024718,50.8275078686176],[5.651378085630671,50.82726739576809],[5.650996218180653,50.82709360687238],[5.650299737127944,50.82679655105582],[5.649308856257799,50.82637494532531],[5.649275438843846,50.826360728939335],[5.649203819527686,50.82642233887127],[5.649146634102124,50.82646902157922],[5.649107642137526,50.826500525863544],[5.648973168409439,50.826627932374585],[5.648896286022989,50.82670264174269],[5.648862247537355,50.82675439549149],[5.648840961691624,50.826810111378244],[5.648838691190669,50.82684786051726],[5.648840382428335,50.826878445594005],[5.648848200579038,50.826905789812784],[5.648871641035119,50.82694009193734],[5.648900138266382,50.82697767250504],[5.64896995518044,50.8270389528153],[5.649176555305409,50.827373587185605],[5.64945571841062,50.827757351105745],[5.649506971385424,50.82783831377914],[5.649983447217717,50.8283450805357],[5.650284682548114,50.82906207027523],[5.650305673476375,50.82911201821702],[5.650326687979364,50.8291661099416],[5.650296598744278,50.82941102458754],[5.650295306073756,50.82995328631905],[5.650419868991954,50.830136437176805],[5.650910781417966,50.83075236334134],[5.651092444753159,50.830972156347364],[5.651174042428771,50.83126112190894],[5.651360543683029,50.831831026512866],[5.651372049021237,50.83197690654028],[5.651382466885208,50.83199178616282],[5.651174014929055,50.832337585674225],[5.650942920843799,50.83271834902976],[5.650963659936679,50.832780989633314],[5.65085010732031,50.83293299787867],[5.650452764009201,50.833360881315215],[5.650330743303511,50.833519461184004],[5.650297682120773,50.833556444522706],[5.650054996815241,50.833827928582],[5.6500027668352,50.833886366786594],[5.649175020254063,50.83355899560382],[5.649162259503127,50.83355394586158],[5.648334321234827,50.833218155591695],[5.648277115536834,50.83328051439083],[5.648274371739451,50.83329234087308],[5.648223988625795,50.83351009172374],[5.648216852779304,50.833561164272844],[5.648121953766792,50.83423979990465],[5.648051628003284,50.83468739459277],[5.647954845412928,50.83500696742995],[5.647863274925329,50.83514054100197],[5.647212065649152,50.83582605663662],[5.647419042061936,50.835932314781026],[5.64676735495898,50.83638114467191],[5.646039358838109,50.836764415690176],[5.645553135049997,50.837029837807044],[5.645378713780917,50.83711826407319],[5.645244195803262,50.83718646603404],[5.643731648696941,50.83793611197625],[5.643875327727425,50.83806529463118],[5.643927443813613,50.83811214536278],[5.644073506439617,50.83824346181365],[5.644173373910366,50.8383332446751],[5.6442248343646,50.83837951245958],[5.644369443445701,50.83850951940761],[5.644519802965816,50.83864469991219],[5.644595489495909,50.838712738403274],[5.644602124113733,50.838718782079624],[5.644729622336885,50.838834759214805],[5.645042106842916,50.83911898055611],[5.645182220295935,50.83924641674144],[5.645345677467937,50.839395086104986],[5.64481426129301,50.839583356226846],[5.644031013934131,50.839860849546426],[5.643440491853341,50.840119042798364],[5.6434239931465,50.840126252454695],[5.643257991515729,50.840197200569236],[5.643116788515917,50.84025755863883],[5.64298362962128,50.8403144739926],[5.642976250776575,50.84031762742099],[5.642731587031937,50.84042219623564],[5.642596755960716,50.840479824956525],[5.641853782124157,50.84079316070622],[5.642737130801903,50.84142716865556],[5.642792917253273,50.841467207261964],[5.6427376276048,50.841517226424706],[5.641998367961875,50.84218602627472],[5.64199815609959,50.84218622449565],[5.64157978129177,50.842564775121744],[5.641224660310582,50.842886097267034],[5.641218472686286,50.842891692919615],[5.641239465445533,50.84289342655184],[5.641496356363441,50.84293909091881],[5.641843155279474,50.84300751403046],[5.64229360641047,50.843091051216916],[5.642253860763594,50.843128289699756],[5.640759441035992,50.84452852935808],[5.640457645128546,50.8448430084798],[5.64012426706027,50.84526107105803],[5.639855609214847,50.845579853612726],[5.639554752218029,50.84594134877024],[5.639169868269304,50.846313669145104],[5.639218947294612,50.8463338408672],[5.639203536660876,50.846392814091736],[5.639026661019316,50.8470647715348],[5.638874347964461,50.847643443297336],[5.638866139452907,50.84767447256384],[5.639712958819077,50.847693676990524],[5.640209991502438,50.847698693211214],[5.640766067400371,50.847696952999954],[5.640752973462595,50.84774570107603],[5.640286976061296,50.84946553572702],[5.640808226241254,50.84954892372619],[5.640985965140873,50.84959976074832],[5.641515773803985,50.84975180127268],[5.641776072602291,50.84982409142778],[5.642027597906653,50.84989394640032],[5.642034907485837,50.849895979730135],[5.642708499403613,50.85008053376474],[5.642528909422996,50.850307583549444],[5.642154631777781,50.85080840346774],[5.641884009846593,50.851160642450694],[5.641854544801628,50.85155297906016],[5.641836021187212,50.8517995829424],[5.641790964708997,50.85196736846796],[5.641748827046636,50.85217022188505],[5.641772427006753,50.85226832770928],[5.641784667738534,50.85239496207134],[5.641694763897981,50.85254154286803],[5.641551833123508,50.8526694177465],[5.641270819941222,50.85290083259126],[5.640900583543837,50.85324877583876],[5.640450776072167,50.85360951258341],[5.640326018183261,50.85372496852336],[5.640334926481834,50.853741407522826],[5.640934196908413,50.85421568231832],[5.64128726700957,50.85451631939967],[5.641921724333598,50.85524467038391],[5.642261976097399,50.85559778248399],[5.642731822501313,50.85602381200972],[5.642754024325344,50.85604539898805],[5.642818145461615,50.856107720435844],[5.643513623716342,50.856783765730476],[5.642823484709349,50.85707485981944],[5.641685579430111,50.85755480276107],[5.641867415391824,50.85766570169319],[5.642207692182332,50.85787322216086],[5.642559001101203,50.85809774206819],[5.642830056415082,50.85826517971491],[5.642955431395007,50.858342628600155],[5.643120479011313,50.85844438514568],[5.643646134416947,50.85878599935768],[5.643665731138106,50.858798468300826],[5.643719803845848,50.85883286533987],[5.643791449597196,50.8588784413792],[5.642834384880837,50.85904914737074],[5.64270470614334,50.8590722746956],[5.641801827117682,50.85924788606514],[5.641906643190379,50.85933136792648],[5.64208842109225,50.8594277766902],[5.641967420484794,50.859515801248584],[5.64230684887632,50.85971629407421],[5.642839779757328,50.860026219340874],[5.642863331781871,50.8600399111396],[5.642986747206933,50.860113975553936],[5.643616491063803,50.86048289227176],[5.643536779977031,50.8605380716314],[5.642845249547737,50.861016810343465],[5.642311010991589,50.861386639945],[5.642278715118903,50.86140746639275],[5.642498451287625,50.86155530563839],[5.642499491944086,50.86155600446714],[5.642715639093454,50.86170179279215],[5.642719288614738,50.86170425664759],[5.6428495300646,50.86179198710019],[5.642888776533746,50.86181842627262],[5.643065991975996,50.86193779205601],[5.643032099903849,50.86196791668052],[5.64330555648213,50.86215679525871],[5.643143182802183,50.86223545648115],[5.643826337042533,50.86278463235577],[5.643971686823673,50.862901469742354],[5.643997574777484,50.86291602803936],[5.644005396718144,50.862920424168074],[5.643444340591055,50.86322551822762],[5.643277319143779,50.86330678770591],[5.642859019476901,50.8635103575013],[5.642578035607538,50.86364709626199],[5.641664728769779,50.86416155380212],[5.642445915087007,50.86455895264059],[5.642866021574705,50.86477822312912],[5.643262770317231,50.86498530108209],[5.643349648616232,50.8650328931192],[5.644091084882078,50.8654390611634],[5.644896340735977,50.86585830476096],[5.645431530302232,50.866093911688516],[5.645921220255385,50.86629235037263],[5.646571465984838,50.86658466556986],[5.647201391389487,50.86688420489818],[5.647299023497122,50.86693062821374],[5.64800599149993,50.867384318768565],[5.648436883814687,50.8676555720466],[5.648694393223957,50.86783793916475],[5.648846206109883,50.86794726817825],[5.649106166980043,50.868148091865265],[5.649457107249287,50.86833549503678],[5.649472096102147,50.86834349703124],[5.649033121684265,50.86865963109364],[5.648756084799671,50.8687505599238],[5.647961485533792,50.868989974481345],[5.647787762227821,50.869074052115415],[5.647634359128253,50.86917713999802],[5.647366301896851,50.86939076956262],[5.647197169192651,50.86951871038446],[5.646835320828343,50.86979243312053],[5.646138182044878,50.870280102992815],[5.645653344734859,50.87064042603284],[5.645522156770737,50.870721951196145],[5.644504319014405,50.87119593630378],[5.644159306472087,50.871349846184465],[5.644184443637792,50.871366482535095],[5.645142064759546,50.87200024548065],[5.64552734777431,50.87225522481617],[5.645873351867153,50.87248421422031],[5.645924070019211,50.87251765596992],[5.646847818136801,50.87312681537633],[5.64693510441478,50.87307665046276],[5.647066998197486,50.87316309612655],[5.647082026961378,50.873172941051024],[5.647887826358633,50.8737078849523],[5.648546180569399,50.87332482318857],[5.64856624093963,50.873337568922345],[5.649405850118375,50.87387115841361],[5.649620830491606,50.87400764220761],[5.649624480535267,50.87400996202565],[5.649632336865758,50.8740149869179],[5.650322385650242,50.87445577607935],[5.651305789654223,50.87508053065511],[5.651323356283449,50.87509169058979],[5.652337893050044,50.87453220532512],[5.653299552999091,50.87399923301541],[5.65333621704495,50.87397891478559],[5.653364334233299,50.87399908388373],[5.653367415586785,50.87400129702749],[5.654066373779566,50.8745027718574],[5.654464820977439,50.8747938531779],[5.654479830298553,50.87480734665043],[5.654995091485139,50.87527017506143],[5.655617932395142,50.87582977679096],[5.655626401392441,50.87583738863537],[5.655766561260853,50.875963311092825],[5.65644239602307,50.87656860131836],[5.656702119044452,50.876375482601496],[5.656995522051883,50.876547347660456],[5.657137741288907,50.87643100596654],[5.657281896953943,50.876313077540786],[5.657907312546339,50.8766620619314],[5.65859634322532,50.87618468618156],[5.659597141317408,50.87669316716145],[5.660984391641666,50.87739344533852],[5.660985289422837,50.87739390164237],[5.661006607687078,50.87740465571972],[5.660658015256445,50.87772551877297],[5.660685352185486,50.87774015083348],[5.66071228999206,50.87775455911125],[5.661543765798111,50.87819954025014],[5.661622784865752,50.878474185950736],[5.661677708291313,50.87866504107483],[5.6629066087081,50.87885901721336],[5.663638561141813,50.878974555583014],[5.663647449580956,50.87897595456435],[5.663917276374018,50.879018752052474],[5.664280096809118,50.8791803201251],[5.664300085951711,50.87918951272863],[5.664619001303443,50.8793361466616],[5.664625893351978,50.87933869193873],[5.664775782047407,50.87939416176067],[5.66479165309254,50.879398968631776],[5.664997905830559,50.87946143995101],[5.665042800405523,50.87947504002791],[5.665337827388655,50.87957298300181],[5.665360463777716,50.87958049713318],[5.665670337700544,50.879682808064366],[5.66569045405404,50.879689447296236],[5.66602484104742,50.879796830851284],[5.666034393366685,50.879799899969804],[5.666155217008576,50.87984394139675],[5.666430019445775,50.87994953493334],[5.666433167382428,50.87995083969899],[5.666742733609488,50.88007902733397],[5.666744428628346,50.88007972436404],[5.666774839681542,50.880092298107144],[5.666855532382712,50.880128022298706],[5.666916396249222,50.880155353902026],[5.666925381565343,50.88015862207313],[5.667332214492149,50.88030666279284],[5.667353346513485,50.88031435096807],[5.667601884834334,50.88042027503266],[5.66762479137326,50.880430035273335],[5.667688030330641,50.880462286587395],[5.668270682698869,50.880759489372444],[5.668272022499236,50.88076017825488],[5.668498240140892,50.8808772468712],[5.668516328715823,50.8808867400043],[5.668597563313491,50.880929347107276],[5.668611982521626,50.88093825589354],[5.668736136147046,50.88101494293068],[5.668813780482952,50.88106289798683],[5.668825016493238,50.88106938751714],[5.668911211861066,50.881119209332866],[5.668927651016904,50.881130809805846],[5.669047120424004,50.88121509449328],[5.66908701974597,50.88124324011278],[5.669100998546982,50.88125912524039],[5.669242904542228,50.88142036228565],[5.669258490619806,50.88143650414964],[5.669294796221872,50.88147410572015],[5.669408689594674,50.881592075780844],[5.669502964752345,50.88168970697653],[5.669574933356015,50.88176424635094],[5.669631144240141,50.881822464511544],[5.669637497819997,50.88182048942753],[5.671316517423636,50.88129717223472],[5.671374860949125,50.88127898827961],[5.671416938002075,50.881265869035374],[5.671702250209522,50.881187090398676],[5.67197265334755,50.88111242870538],[5.671976270449303,50.88111143102562],[5.673064360967348,50.8810555051211],[5.673096292140299,50.88105386211393],[5.673316465849986,50.88104378932807],[5.673528447217851,50.881032424042345],[5.673644849445008,50.881026185119616],[5.673997038783485,50.881007307439894],[5.674234842739946,50.88099455544657],[5.674865217268377,50.880960763861324],[5.675119980349306,50.88094710492513],[5.675418179095893,50.88093111692082],[5.675580303453321,50.88092242497136],[5.675628454963125,50.88091984192503],[5.67574096460911,50.88091379037912],[5.67637958869052,50.8808794306213],[5.676406405742625,50.880877988256174],[5.676750514358468,50.88053766395669],[5.676872954424559,50.8805315594725],[5.677638261060785,50.880493423592675],[5.677670970828809,50.88049140882421],[5.67774590697833,50.88048687893783],[5.67774939443545,50.880528623278785],[5.677822484506517,50.88052425079196],[5.677965412831417,50.88051808466212],[5.677990259629044,50.88051743790104],[5.67819161175048,50.880513218937374],[5.678360529883176,50.88050968355484],[5.678461482949383,50.88050756860235],[5.678537219069593,50.88050598452363],[5.678756002847887,50.88050141503283],[5.679350512063145,50.880489001935786],[5.679270385228175,50.88070890032075],[5.678950142019957,50.88163609747114],[5.67889460504933,50.88256343524112],[5.678979319724943,50.88292610050451],[5.679106065738724,50.88346870584743],[5.679668650338276,50.88437263906667],[5.680148380765136,50.8851593854331],[5.680744119640107,50.88597424011144],[5.681285669264632,50.8868007353051],[5.681716909801042,50.887413574853916],[5.681894273529301,50.88766561922592],[5.682515650729906,50.88852426508801],[5.68358736848255,50.88915487619362],[5.684438990361429,50.88985345961364],[5.68528514428297,50.890603736700136],[5.685645139795743,50.89080399622986],[5.686344458511494,50.891193005786654],[5.68742111474224,50.89171291630609],[5.687644654651793,50.891784902607895],[5.687976846844633,50.89189187811834],[5.688797029863532,50.89215599125031],[5.6899511090537,50.89266300212904],[5.691257368950388,50.89311755618075],[5.692341837081462,50.89370769326308],[5.693138779409229,50.894508560420064],[5.693702520068303,50.89535363628276],[5.694415893168616,50.8961261317106],[5.69461029700131,50.896368853049374],[5.694699846155115,50.896480660834875],[5.695071462431453,50.896944619751814],[5.695743990779709,50.89774499132951],[5.696246310115264,50.898595881819375],[5.696294606746511,50.899548299864755],[5.696872250415288,50.90039269420935],[5.696985083383613,50.90085693519839],[5.697091077604589,50.90129305934549],[5.697148607042745,50.901914735043434],[5.697180727816728,50.90226172598775],[5.696735941457283,50.90317654269714],[5.696834257581096,50.904059972254004],[5.696568399796469,50.90497053387501],[5.696541056716155,50.90499947016523],[5.696206513677928,50.905353436969996],[5.695781689412669,50.90580293436507],[5.696336131953018,50.9067816867529],[5.696254637411165,50.907712698784195],[5.696534741109151,50.90860966541797],[5.697377112986831,50.90947860800566],[5.697855751413131,50.90984343901713],[5.698263999839852,50.91015461421945],[5.69946537939919,50.910762438751405],[5.699992406821819,50.910841986350555],[5.700955521043365,50.910987352394855],[5.702200251667286,50.911355118881296],[5.70341835241454,50.91171386608704],[5.704869297797643,50.91193820735632],[5.7064274979795,50.91200277246024],[5.707900567238856,50.91184651696287],[5.709270011869469,50.9115933618418],[5.710560208253248,50.911050072355586],[5.711590860666531,50.91029868567542],[5.712316524709542,50.90980370020793],[5.712443815695356,50.90971686969441],[5.71359836707528,50.909144444078485],[5.71419578975884,50.90878349065376],[5.714676835704372,50.90849285079981],[5.714854203395787,50.90845784036301],[5.716026856479308,50.90822636697638],[5.717319218398285,50.908090280326995],[5.718925463651588,50.907812424297624],[5.720381441828671,50.90807080406895],[5.721434359294826,50.90879847006828],[5.722777128433152,50.90916285570087],[5.72356864751564,50.90977152894196],[5.723717471631052,50.909885973599955],[5.724529439185479,50.91060667179842],[5.725228727580713,50.91139187405607],[5.725897201740063,50.91219864572044],[5.726645234788259,50.913070798781405],[5.72675072923871,50.91364862513285],[5.726813232236068,50.913990853975804],[5.726879565571984,50.9142562797855],[5.727041328821828,50.91490345145725],[5.727259489663984,50.91579792024601],[5.727066192308649,50.91673827270311],[5.726827476838221,50.917594622519424],[5.726550632099543,50.918507713448605],[5.726541004181051,50.9187516991273],[5.72651813876216,50.919331097695064],[5.726094917960197,50.92024048184988],[5.725907253777217,50.92119843400405],[5.726132925934946,50.922049466877525],[5.726505006453274,50.92296667747928],[5.726640797145635,50.92324583250137],[5.726930404912392,50.92384121311568],[5.727272520142101,50.924329174730474],[5.727534497573354,50.92470281714983],[5.728091005281917,50.925588828193604],[5.728539658853718,50.92592654711465],[5.729038806147987,50.92630226384594],[5.729747316309957,50.92706107504793],[5.730183447557743,50.927729812330085],[5.730286242102527,50.92788744176536],[5.731530312595141,50.928455797164034],[5.732088069413665,50.92924506548708],[5.732544549156523,50.93022169155576],[5.733127951142269,50.9306351172786],[5.733540534380163,50.93092748617275],[5.734549211828234,50.93157678417324],[5.735481583696313,50.93220841530408],[5.735513281364403,50.932229893157384],[5.736543131383238,50.93284998628458],[5.737879108774179,50.93327992758362],[5.738845733754385,50.93392149552138],[5.739699410930318,50.9345969279895],[5.740879508177457,50.93522479479495],[5.741525660381919,50.93610085009824],[5.741999252750163,50.93668304583315],[5.742154256723217,50.93687358380814],[5.742708100664654,50.93765364500977],[5.74285340165669,50.93777121333046],[5.74357533665646,50.93835534490882],[5.744019580022945,50.93925178358074],[5.744122416278014,50.9402248703078],[5.744217921154113,50.94116921522248],[5.744218700523463,50.941170651036224],[5.744673196445954,50.94201527984404],[5.745321335997532,50.94279575664768],[5.745992672282338,50.943411014582985],[5.746160634513285,50.94356494042863],[5.746266268756373,50.94448821844147],[5.74633020058184,50.945427625954665],[5.746232198318296,50.945658853887],[5.745877487293018,50.94649573811757],[5.746588388052453,50.94730342958163],[5.747772355166473,50.94786298962626],[5.749092834397657,50.94828008684509],[5.750304196523726,50.948769602104136],[5.751576922848348,50.94924210241796],[5.752946278681227,50.94960452946292],[5.754450876927326,50.94979248689363],[5.755507347272948,50.9498348026462],[5.755667357412836,50.949841205851115],[5.756514996536161,50.95012093477226],[5.756917774961284,50.950253852804636],[5.75718048650947,50.95036343266853],[5.758108125340988,50.95075036516021],[5.758821666199616,50.95165685126903],[5.75911055718348,50.95235984181733],[5.759185412155029,50.95254198545658],[5.759123942797364,50.95356790285249],[5.758798816577273,50.95442369856941],[5.758672149161715,50.954608466815536],[5.75823291986417,50.95524916381127],[5.757852416671879,50.95568814964928],[5.757550846217461,50.956036076176545],[5.757228904208606,50.95640696167584],[5.756801332342889,50.95689951530974],[5.756048341372496,50.95772313993007],[5.753828915922369,50.958992676479646],[5.753640963397066,50.95911893592273],[5.752840440452271,50.95965666418594],[5.751689933185258,50.96020870292338],[5.750523158836683,50.96074091583297],[5.749027493703466,50.96108250267495],[5.747619701644463,50.96143359448908],[5.747400906495911,50.96146678815525],[5.746227027266707,50.961644845420004],[5.744633751786266,50.96153885284914],[5.744083149179218,50.96134845045565],[5.743328040325523,50.961087321125184],[5.74303205021851,50.96096648608733],[5.742036718034066,50.960560134298134],[5.741013971656896,50.959898717908246],[5.740020826929667,50.95919585357552],[5.739989307942698,50.95916134251206],[5.73931166146575,50.95841939750784],[5.739013811905513,50.957434404733156],[5.737747575644685,50.956892172670464],[5.737330357926636,50.95673975276284],[5.736551617798147,50.956455243981],[5.735276183073271,50.95606357617962],[5.734159644557216,50.95545101141125],[5.732810061296717,50.95518574234777],[5.731240857188911,50.95487634600869],[5.729658216825164,50.95494000578528],[5.728754193267445,50.95495420940682],[5.728100472692591,50.95496446908346],[5.72656927542466,50.95527063424476],[5.725323979541601,50.9555582363315],[5.724115874602255,50.95595178525367],[5.723077459382448,50.956452156233084],[5.722012304687555,50.95713461950785],[5.721255399399844,50.95791640955024],[5.720540426780091,50.958753445206646],[5.720184074254457,50.9592200035275],[5.7199034031444,50.95958746586515],[5.719630351829833,50.96052758552531],[5.719786025079403,50.96151024937627],[5.720127509451544,50.962421277001766],[5.721005385341771,50.96317992533082],[5.721452804438042,50.963710774633235],[5.721779541805042,50.96409841904024],[5.722599111584065,50.96477821186397],[5.723457081679594,50.96548916863668],[5.72427287731164,50.966210668979],[5.725667259221262,50.96668543739678],[5.726458603107248,50.96744258981821],[5.726960229071591,50.96818917158357],[5.727044976887352,50.96831530619679],[5.728016977543032,50.96902751272057],[5.728544834673274,50.969873427275914],[5.728865876959195,50.97004892266313],[5.729628898156867,50.970466007815645],[5.730712739945878,50.97102505048249],[5.731926143188546,50.97158162996492],[5.732128743371697,50.97162142253644],[5.733358894640559,50.97186302145462],[5.73337695994012,50.971879956391476],[5.734211404266252,50.97266209626432],[5.73429629979034,50.97274166289261],[5.734882408697576,50.97358836306011],[5.735388763199301,50.97437237813129],[5.735441064497674,50.974673329727345],[5.73555025347865,50.9753016103548],[5.735839465590442,50.97615540090342],[5.735935219655811,50.97650817707574],[5.736079365768849,50.97703918235817],[5.73611735743741,50.97715079944135],[5.736377449909879,50.97791487771058],[5.73729532027509,50.9786909912755],[5.738314335182602,50.97937564393913],[5.739778919334125,50.97979834481419],[5.741172097722376,50.97989324186818],[5.742625950375487,50.980081779721374],[5.743179667623551,50.98011242984796],[5.743995358367497,50.98015756952686],[5.745280319458953,50.98026848110498],[5.74533709131172,50.98028494393662],[5.746645395668854,50.98066434653206],[5.747754095353022,50.98124949095696],[5.74835987648668,50.981607697337154],[5.748793421002254,50.98186405528484],[5.749884067038332,50.98253660761446],[5.750819689246045,50.9832840644231],[5.750995014745414,50.98350614110699],[5.751496317680897,50.98414109403235],[5.751994711975465,50.98496659103473],[5.752395292704318,50.98579266407559],[5.752475254118472,50.98608922436452],[5.752645890621894,50.986722041781526],[5.753773826023146,50.98737008038049],[5.754485674908504,50.988182306637846],[5.755132206583066,50.98898026401303],[5.755018632146718,50.99011537974258],[5.755466400455878,50.990574187069036],[5.75574423906118,50.99085887975623],[5.756521188351628,50.99160796445841],[5.757468018851403,50.992331332227806],[5.757517202864655,50.99235473482116],[5.758629574950105,50.99288393450194],[5.758927852314996,50.99304952344398],[5.759680022123812,50.99346708516155],[5.760705817235834,50.99416877920015],[5.761691177577431,50.99476353748244],[5.762141978457842,50.9950472062064],[5.762715570390108,50.99540813905067],[5.763732964203998,50.995994506474425],[5.764939250502413,50.99652002373704],[5.765718467037681,50.997314164094625],[5.766496410186549,50.998102622475706],[5.766712016379508,50.998375690487904],[5.767079120015925,50.998840632320366],[5.767497378998669,50.999524185333904],[5.767628378044395,50.999738265738735],[5.767634055680532,50.9998549496724],[5.7676729685562,51.00065384307916],[5.767616243639686,51.0015555777025],[5.767640912295873,51.00248754428241],[5.767591800593142,51.003404112503816],[5.767492640577606,51.004018638985535],[5.767438370120516,51.004355001097046],[5.767112864140976,51.00500063435441],[5.766445854192352,51.00608061297982],[5.766087824067085,51.00687196056506],[5.766069520633752,51.006912416431064],[5.766040478698766,51.00779971343574],[5.766031745961114,51.00851786327373],[5.766030783595873,51.00859669886083],[5.765968100119434,51.00963844484009],[5.76627704329805,51.010561580744366],[5.766616238143885,51.011419267662994],[5.766967733491255,51.01236752117403],[5.767346786488401,51.013007994001235],[5.767493014679882,51.01325506779464],[5.768173824997804,51.01394092973363],[5.769339201272842,51.01471326360834],[5.769850040847073,51.015591337110465],[5.770563042745019,51.016301348832165],[5.771559502308885,51.016992977874665],[5.771822678567204,51.01748766145387],[5.771972265135723,51.01776884031998],[5.772031335809131,51.01787987253463],[5.772929538796631,51.01859096252233],[5.773406611511608,51.018999212382546],[5.773751459505673,51.01929430000892],[5.774723961393795,51.01998768991367],[5.774832232967697,51.02006927938947],[5.775641033245615,51.02067874066465],[5.776015397593255,51.02158742948871],[5.776200290899621,51.02196748804706],[5.776434268994853,51.0224484164735],[5.776409742166,51.02330774594512],[5.775927334455317,51.0241208363566],[5.775858586330253,51.024236708893966],[5.775490991210652,51.025115076097144],[5.774912941685764,51.025986415956666],[5.774315092857027,51.026468240981295],[5.773972585533489,51.0267442645327],[5.77305369201315,51.0273078471988],[5.772854986296029,51.027429705676845],[5.772055629784293,51.02775442554592],[5.771787423009148,51.02786337122715],[5.770570096350557,51.02833950048192],[5.769226147485482,51.02877900019316],[5.767968382233613,51.0290595474632],[5.767344250259245,51.029137049038695],[5.766436599332534,51.029249740963905],[5.76513115495275,51.02950812098834],[5.763807659257156,51.02970488126078],[5.762428756907247,51.03003097593066],[5.760818628669711,51.030006244972775],[5.759728840934663,51.030621535874594],[5.759250520089062,51.03101202094761],[5.7589015174168,51.03129691953363],[5.75830161664801,51.03205237920479],[5.758124676333592,51.032933945034706],[5.758002406576181,51.033665670953795],[5.758386347221419,51.03501448071924],[5.758789145480836,51.03550793756106],[5.75909058396463,51.03587722240621],[5.759615353685983,51.03673990744522],[5.760632121602949,51.03736990209867],[5.761528601063012,51.03805429957405],[5.762405845690136,51.03875448297371],[5.762781043682951,51.03965691935129],[5.763055301794292,51.03998861870265],[5.763446175986857,51.04046133393368],[5.764495710270578,51.04108894142053],[5.765580919490676,51.04171660279847],[5.766407723930661,51.04252631547281],[5.766823674396695,51.04310930282427],[5.766986465591439,51.04333746455518],[5.767555627478496,51.044160237878074],[5.767745104553117,51.044467754683836],[5.768061049878307,51.04498052122744],[5.7682724573451,51.045886983871696],[5.769116612430199,51.04665913684215],[5.769727717390275,51.047474570381176],[5.770220356321861,51.04824905237688],[5.7702662326727,51.04832116237629],[5.770624277482328,51.048952705782796],[5.770759326601379,51.04919091373222],[5.770902226308226,51.050133374111866],[5.771329479822509,51.05097071138186],[5.771806210048198,51.05183907438675],[5.772022011830257,51.052729695408985],[5.772079580572861,51.05344232233825],[5.772094231461489,51.053623669259245],[5.772275955857624,51.05456492045768],[5.772072983111361,51.05546699913578],[5.772290271236086,51.05583340136871],[5.77256441795834,51.056295669378066],[5.772389646233334,51.057159092573336],[5.772485599945217,51.057935412815496],[5.772503009773092,51.0580762106796],[5.772316232090012,51.0589376421501],[5.772307579710727,51.058977545552146],[5.771669492570072,51.059891315185695],[5.772194214367194,51.06080661935911],[5.772334410224697,51.06111098458917],[5.772566572923726,51.06161501060625],[5.773558299985226,51.062353023049056],[5.773686423752979,51.062425855412705],[5.774655656660635,51.0629767850691],[5.776220640814842,51.06310943443923],[5.77768669210246,51.06303016847085],[5.779054677874258,51.06285997827396],[5.780477154123786,51.06259061952988],[5.781246467655113,51.06240040968498],[5.781818199648487,51.062259047737285],[5.782772598533447,51.06199226859561],[5.783241817742241,51.0618611100988],[5.784397524009012,51.06144654468066],[5.785622605527593,51.060891862297794],[5.786593142095442,51.060463690617205],[5.786799467561978,51.06037265941404],[5.787845177662472,51.05970135640744],[5.789192380120294,51.05946981394384],[5.790463623345553,51.05890539189029],[5.791818051193642,51.05868862537576],[5.793179365682898,51.058526381449006],[5.794686226175122,51.058678041405265],[5.796124258187199,51.05885194735583],[5.797453781714792,51.05915700783371],[5.798771761464539,51.05966865878643],[5.799338879987455,51.06007180059153],[5.799722228218209,51.06034430187335],[5.800342438728968,51.06118758870333],[5.800871883960098,51.06208716095547],[5.800886369772885,51.062111774791724],[5.80095168182151,51.0623317695874],[5.801167775051648,51.06305963781676],[5.801058575193428,51.06401959173733],[5.80089243193569,51.06437410420525],[5.800637403447101,51.06491827537308],[5.800249741966301,51.06578537695751],[5.799791121407889,51.06666369615036],[5.799647946693583,51.06683085950916],[5.799132771736798,51.06743233959088],[5.798257887591972,51.06817505000016],[5.798038282137568,51.06911336939484],[5.798126368582099,51.07011100377672],[5.797680846340308,51.07089955887285],[5.797182546738891,51.071334046707875],[5.796620159224337,51.071824399874885],[5.796901735839322,51.07274656429598],[5.797536020925182,51.07353911929088],[5.798387945488874,51.07428640441725],[5.799248218852969,51.075006866798105],[5.800501626859139,51.0756796297314],[5.800994937085058,51.07577877096637],[5.801171820275988,51.075814320005435],[5.802138664507191,51.07600862045375],[5.803209118363077,51.076450095328624],[5.804191287320647,51.07692540639874],[5.80488004322618,51.07792932432777],[5.804908081958732,51.07818234155759],[5.80497516167867,51.07878733103443],[5.80486554285791,51.07963349067764],[5.804600638153404,51.08029647619833],[5.804506660582474,51.080531694103435],[5.803995392501981,51.08140266840329],[5.803386055005025,51.082209541983154],[5.802565809464227,51.083020943113624],[5.801732040528075,51.083728475131835],[5.801070459901348,51.08417721692744],[5.800682214955136,51.08444054682334],[5.800111328636298,51.08480699007756],[5.799682107897166,51.085082498581656],[5.798847913191757,51.08578344928916],[5.797130533424664,51.08618063791149],[5.796434251938647,51.08698921995701],[5.795823617951592,51.0878500810654],[5.795344232034412,51.08885124313229],[5.795200539188844,51.089318811177684],[5.795107146952613,51.0896226943228],[5.795439847642765,51.09071565118163],[5.796022706084916,51.09147846284614],[5.797017955179417,51.092224714132676],[5.797916656855782,51.09286540972921],[5.79815329659209,51.09304939217942],[5.798754096455384,51.09351647322133],[5.799291515996089,51.09379879401695],[5.800058216544833,51.09420155668114],[5.80116439381612,51.09461810587273],[5.801366352502604,51.09469415912709],[5.802594110395993,51.095150899395456],[5.803949618829903,51.095524919533894],[5.805336737399633,51.095919034969455],[5.806781609706915,51.09617863098094],[5.808257995447435,51.09633903708133],[5.809745785379178,51.09631007680625],[5.811258358149932,51.096182308816246],[5.812622879269394,51.09593002858127],[5.81398709321643,51.09558469833167],[5.814846679875319,51.09530521421784],[5.81526555341167,51.09516901572579],[5.815443663965575,51.09510332372129],[5.816527395759125,51.0947035819906],[5.817814763031642,51.09426851208619],[5.819002909700518,51.09377384124743],[5.819144639871168,51.09372657134973],[5.82028174357641,51.09334731506267],[5.821329216954299,51.092668783038704],[5.822659476731068,51.09232430446041],[5.824143066893143,51.092350079227906],[5.825557254185429,51.09268551326004],[5.826850399770529,51.09324474512984],[5.82770364324268,51.09369438721988],[5.827932706040182,51.09381509211094],[5.828986994035152,51.094421590254896],[5.829716355518206,51.0948722107027],[5.830029380316051,51.095065599057776],[5.830999117066602,51.09572248793994],[5.831784815201087,51.096522602257906],[5.832391605059504,51.09732513284871],[5.832421075956916,51.09736410351037],[5.832833504548072,51.09816924724018],[5.832869489392114,51.098239492133786],[5.833349382315043,51.099104339871595],[5.833507298300265,51.09955530809479],[5.83367226510174,51.100026366144476],[5.833826792666557,51.100973112034005],[5.833795190081562,51.101325149292244],[5.833746787537935,51.10186440018794],[5.833777556476964,51.102660069460995],[5.833782435864457,51.10278616500723],[5.833405308707401,51.10375086691275],[5.832784643863921,51.104603782202005],[5.831957230124099,51.105258130889624],[5.831930081057255,51.10527961056397],[5.830979764846818,51.10588964050562],[5.829970299275346,51.10648513753405],[5.829828797183219,51.1065575526714],[5.828886480250006,51.10703975757644],[5.828527667542654,51.107174608051956],[5.827727644132805,51.10747526167981],[5.826495158747113,51.1078683447226],[5.825084711236006,51.108200341595484],[5.823591108491955,51.10835005153655],[5.822016446009808,51.108185443587885],[5.820200773919346,51.10819143329094],[5.817618197248518,51.10772507091233],[5.816252313510372,51.107542989764475],[5.81555915650661,51.10750529851352],[5.814627139183115,51.107454604410584],[5.812967999604433,51.10789181165597],[5.811918405278561,51.108345093925266],[5.81086299599932,51.10886689222781],[5.810132979579111,51.1097152392869],[5.809351786676082,51.110448521300796],[5.808358120596004,51.11120449325754],[5.808162476947578,51.11174472537534],[5.808025104158689,51.11212401549176],[5.807668965356885,51.11304629920107],[5.807835098671747,51.11403528401365],[5.808194348320452,51.11494788169736],[5.808274830441997,51.11517488276526],[5.808498249651599,51.115805047005146],[5.808721701211277,51.116237140512574],[5.808955363745879,51.11668897204658],[5.809364746081184,51.11752102329564],[5.809850331155547,51.118422189860595],[5.811105350067255,51.11906229561797],[5.811880672050107,51.11971987483221],[5.812731981600364,51.12043712622886],[5.813801593626452,51.1207130236012],[5.814104988439276,51.12079127988468],[5.815011969617058,51.12151451222753],[5.815694095157843,51.121985665452215],[5.815966518037244,51.12217383057428],[5.81683028824457,51.12289828713869],[5.817677496609353,51.12365111378407],[5.818219015072076,51.12456722960048],[5.818695086706613,51.12499610955944],[5.818908757731647,51.125188585192795],[5.819825595903082,51.12601448669742],[5.820704487025592,51.126752881050265],[5.821687622123139,51.127424001253026],[5.822740872768892,51.12805934397663],[5.823749881314472,51.12875623778245],[5.824899318731469,51.129345086221974],[5.826162272220021,51.12965582708149],[5.826275967525866,51.129683801964504],[5.827523715479317,51.13010532880105],[5.828773026725205,51.130330339021754],[5.830058768182493,51.13043559055435],[5.830331129395926,51.1304578862652],[5.831809120266066,51.13048450449981],[5.833212264999808,51.13067409064689],[5.834725966241303,51.13065532038067],[5.836198565195486,51.13075785977841],[5.837633618225796,51.13067292782044],[5.838973851515801,51.130679674460936],[5.840115906570699,51.130842597235684],[5.841351362416915,51.13147867890073],[5.841361192374681,51.131486011342034],[5.842329467420955,51.132208423467695],[5.842937068566636,51.13291411357643],[5.843389518041797,51.133763666578815],[5.84349711653809,51.13408342848428],[5.843703102216486,51.13469557206642],[5.843992254333461,51.135514051983634],[5.843857278933281,51.13639657443385],[5.843506652006001,51.13732685767008],[5.844366461096898,51.13857446074159],[5.844426510933263,51.13866159640368],[5.844754889626193,51.139138062908934],[5.845155880954669,51.14003213629406],[5.845840571221178,51.14075879312147],[5.846785158488264,51.14138068541071],[5.848125030137931,51.14197520321216],[5.848760869083099,51.14222830356861],[5.849135196574609,51.14237730703116],[5.8503974322535,51.142678260250904],[5.851643713893521,51.1429967021031],[5.851757079842125,51.14303957506735],[5.852544565044906,51.14333736997347],[5.855316267037752,51.14436390709013],[5.855783359462411,51.14462603610789],[5.855755874139658,51.1446380119487],[5.855227305326078,51.14486835484275],[5.854426519463511,51.145217302690405],[5.851756077096515,51.146378419151326],[5.851599366796799,51.146446597726175],[5.851579404457545,51.14645527995667],[5.850794380391221,51.14679683157338],[5.849074634035579,51.147544731144556],[5.848844749758044,51.147644703165575],[5.848397498036657,51.14795003598082],[5.848223368086137,51.14814326989903],[5.847228603401283,51.14866299896441],[5.84648578567366,51.14886890920382],[5.846005491372309,51.14871628885664],[5.84453471713874,51.14953171302313],[5.843699104242672,51.14999497256663],[5.843817543586853,51.150206465177384],[5.842862480001046,51.15047323249638],[5.842660276791308,51.150634837318876],[5.841415266295924,51.15157231298316],[5.84067119182019,51.152072307589705],[5.84028905329621,51.15232908418054],[5.839556325970297,51.15258183253165],[5.839337554315294,51.15265233062701],[5.837337233549119,51.15329689417555],[5.837336421609947,51.15329717597904],[5.836788952231895,51.15348652683602],[5.836354382954577,51.15368497565387],[5.836500098479402,51.15406160406771],[5.836645904446461,51.1544384656637],[5.836875350755548,51.15496783245664],[5.837084269403933,51.155370984312704],[5.837260999363033,51.1557125967192],[5.837640056761708,51.15563840671718],[5.838268486318761,51.156576116194074],[5.838556083129609,51.15700522535333],[5.838589565113073,51.1570551813509],[5.838598008237166,51.1570677869222],[5.838599516864686,51.157070028282405],[5.838605899548411,51.15707951372583],[5.838610686430396,51.15708661432532],[5.838440806758918,51.15710911762406],[5.838257186567761,51.15714434839598],[5.838069647709372,51.15718813354614],[5.837780412475142,51.15722539159657],[5.837365445203916,51.157296242534116],[5.837292366690013,51.15730872375086],[5.836748199681908,51.157383282232686],[5.836267913796131,51.157471164369184],[5.836063237019388,51.15753146222956],[5.835895749864505,51.157584065357355],[5.835818981885438,51.15760818254566],[5.835657080817175,51.15781860878712],[5.835478629674491,51.1580177726789],[5.83541866037776,51.15808326356542],[5.835341459339612,51.15818468662333],[5.83528165274384,51.15825224425626],[5.835236739809906,51.15830796893879],[5.835196671833051,51.158362146799455],[5.835153749353469,51.15838748129769],[5.835048778387119,51.158397144751426],[5.834968277383414,51.158409500314356],[5.834895744895334,51.1584474434564],[5.834751090722713,51.15853618214289],[5.834601806881153,51.158604623578306],[5.834463234673039,51.158657472772234],[5.834294299031493,51.15870432625932],[5.834224444394444,51.15870908964054],[5.834191268839305,51.15870786901365],[5.834089990493073,51.158685786579575],[5.833958281473655,51.15866543913878],[5.833877134939895,51.15867910880592],[5.833872839310716,51.158679835452226],[5.833806891687994,51.15869094769233],[5.833792306412593,51.15869340382168],[5.833753789141294,51.15870146217666],[5.833336468008581,51.158886619511684],[5.833239064968034,51.158925016717646],[5.833156553500932,51.15893656974295],[5.833009156673274,51.15894945049754],[5.832881214570218,51.159037403568554],[5.83285009609837,51.15907141113474],[5.832816648860981,51.15913059653721],[5.832776635091482,51.15922018959417],[5.832765501533414,51.15926607568258],[5.832751513640866,51.15934190574447],[5.832741810431529,51.15940261802023],[5.832732281630004,51.15948130741734],[5.832730979799553,51.159538661566614],[5.832700119264803,51.159643500599294],[5.832689031827277,51.15970889240616],[5.832685389546497,51.15974603051803],[5.83270480960002,51.15983224941368],[5.832720580217101,51.15991066196833],[5.832751458924072,51.16002865758423],[5.83279975330969,51.16009993399686],[5.832851713712976,51.1601512409724],[5.832911293283558,51.16022166502903],[5.832940037297035,51.16026694862334],[5.832969680229425,51.16033119532988],[5.832990386365867,51.16038783577516],[5.833011843761168,51.16043350688001],[5.833078257152484,51.16060404091463],[5.833109104737456,51.16070396887667],[5.833142309241889,51.16079633710737],[5.833161554891109,51.160849747128765],[5.833189688223849,51.16087624621565],[5.833252254936816,51.160915557048746],[5.833335567632096,51.16095667581624],[5.833390834286255,51.160980284052876],[5.833455428478621,51.16100754186677],[5.833526771920781,51.16103791981823],[5.833626286322878,51.161075092903765],[5.833661825165153,51.161088367708764],[5.833671968888248,51.161092157979326],[5.833698612229228,51.16110210512626],[5.833657060083368,51.16111140659096],[5.833580270156765,51.16112958070365],[5.833465654286495,51.16119186482283],[5.833389450146845,51.16123503467668],[5.833309062457447,51.16130374901531],[5.833282596028816,51.1613605706163],[5.833263353269326,51.161439926592024],[5.833245684385028,51.1615047145081],[5.833228002353323,51.161568154137434],[5.833197115797774,51.16164090304007],[5.833178876848867,51.16166173743548],[5.833095438118297,51.16172551944758],[5.833054267776011,51.161755071210216],[5.833015568570023,51.161788838252214],[5.832967624603028,51.161827494771956],[5.83293821465131,51.16187569825143],[5.832910800724011,51.1619233547285],[5.832886381888279,51.16198502238088],[5.832862226070868,51.16202961011744],[5.832826151224742,51.16208341226021],[5.832776761892823,51.16216468160954],[5.832762119034133,51.16218783925304],[5.832748326223296,51.16223966820895],[5.832733639125926,51.16230246704624],[5.83272007040799,51.16237739659938],[5.832722213920974,51.16239204027507],[5.832694561443556,51.16242989971871],[5.832641667178036,51.16245940641818],[5.832604921281749,51.16247357003683],[5.832557449468023,51.1624725835458],[5.832510931251368,51.162466739375326],[5.832453647099098,51.162456352128366],[5.832359431379376,51.16244098275954],[5.83228281638165,51.162427343637106],[5.832253625193993,51.16242448917814],[5.832220758177723,51.162425873578755],[5.832197498638507,51.16243027737957],[5.832174416893889,51.16243827605238],[5.832158048713584,51.16244570966347],[5.832144554400374,51.16245466037328],[5.832096561101035,51.162488372826076],[5.83207741569398,51.16250426662653],[5.83206223104356,51.16253057236913],[5.832024614334592,51.16261718963134],[5.831990039430528,51.162722671909364],[5.831979113528207,51.16276064689218],[5.831970564864136,51.162778387756134],[5.831939028259319,51.16281383489178],[5.831909215064315,51.162835342632334],[5.831872842477328,51.162858583371985],[5.83177484797864,51.16292547638234],[5.831713455967411,51.1629781166461],[5.831652597967728,51.163041631395586],[5.83162013795028,51.16307034030656],[5.831554768331966,51.16311086069974],[5.831439902118356,51.16314806474015],[5.831321342352232,51.16318770979342],[5.83127704229616,51.16320432888014],[5.831253019299266,51.16321853330469],[5.831224240982317,51.16324363246833],[5.831189818028307,51.163350282475996],[5.831186080778719,51.16336297110505],[5.831108242330391,51.16341513458782],[5.830982707603902,51.16344321028087],[5.830934483938869,51.16345328233695],[5.830867298305453,51.16346873026463],[5.830796015525176,51.16348922758431],[5.830722825070226,51.16351944015129],[5.830632317956726,51.16356257291323],[5.830566853018568,51.16359338510461],[5.830482573229971,51.16363002197052],[5.830399566689797,51.163650473906976],[5.830379178509245,51.16365621471736],[5.830324429651666,51.16367161486775],[5.830190208918781,51.16370340829078],[5.830114177656343,51.16373560886527],[5.830087221286917,51.163757015349354],[5.830076374205373,51.16380334951804],[5.830094037859107,51.163826383611195],[5.830147884671899,51.16386563948365],[5.830177247499802,51.16388620193935],[5.830188979716831,51.16390197763947],[5.830199871541656,51.16391955432293],[5.830197531609628,51.163943743372656],[5.830185186354066,51.16396815036616],[5.830159409102666,51.16399323781523],[5.830124911379254,51.16401835851863],[5.830074114761672,51.16405819326608],[5.829978449152567,51.1641150981928],[5.829896477756069,51.16413923126629],[5.82981130483337,51.16414270202898],[5.829706678278813,51.16414507830062],[5.829573973816999,51.16414153887861],[5.829483888320395,51.16413963477837],[5.829355213441523,51.164153697990464],[5.829320580122639,51.16416479629655],[5.82928023781726,51.16419173677671],[5.829246968656898,51.16424058321851],[5.829194224298533,51.16427125632143],[5.829071238770107,51.164282331229444],[5.829026428610947,51.164275849938754],[5.828966246614907,51.16426160676966],[5.82890012032475,51.16423875684121],[5.828820247012181,51.164198700478465],[5.828758757255484,51.16416738327899],[5.828705183027752,51.16414151917905],[5.828661458815989,51.16412901106143],[5.82860318138723,51.1641195245781],[5.828571153512866,51.16411910697459],[5.828513294697601,51.164138293422965],[5.828489687136486,51.16415123724861],[5.828323009885325,51.16422755696376],[5.828226686644545,51.1642609120408],[5.828181448472087,51.164284275173074],[5.828097101437601,51.16434401200854],[5.82805760294807,51.164444028553405],[5.828035124185797,51.16450011468416],[5.828018223081015,51.16454152774407],[5.828005226435866,51.16457267864394],[5.827971115143107,51.164623325690755],[5.827919285928337,51.16466010718461],[5.827877010808644,51.16469433551161],[5.82783484407781,51.1647249678549],[5.827772315895698,51.1647642168774],[5.82774165810789,51.164787434632814],[5.827720780259296,51.164816727729324],[5.827712512250797,51.16484902921452],[5.827734393655806,51.164894519895455],[5.827765961086521,51.16493628838172],[5.827813922518905,51.16497314065919],[5.827843395443347,51.16500520906776],[5.827864650852359,51.16504503909766],[5.827864318516271,51.16509978271212],[5.827845563459847,51.16512682055272],[5.827825126239645,51.16514244887957],[5.827785824336552,51.16517369955648],[5.827655526410067,51.16521266626528],[5.827603389484755,51.16523236988757],[5.827569982422379,51.165267103804005],[5.827551108461482,51.16531158049769],[5.827555601120526,51.16536262036888],[5.827583738272402,51.16553860606855],[5.827587078493704,51.165573829858715],[5.827588430809349,51.16560600496377],[5.827592636629261,51.16570612527108],[5.827589289146749,51.16571485719022],[5.82753405704444,51.16579947231614],[5.827509557385873,51.16585367833534],[5.827507244679777,51.165910676677946],[5.827502969120178,51.16595680590317],[5.827537160192235,51.16606337441503],[5.827558498761567,51.16612675508198],[5.827558620332663,51.166139428958495],[5.82754052102552,51.1661752733752],[5.827511749174366,51.16620145025003],[5.827460271843278,51.16624533142265],[5.827380409080969,51.16631098339238],[5.827324458209771,51.16635056679179],[5.827310834353433,51.16636113542536],[5.827225900984918,51.166404963496674],[5.827177582143799,51.16643534923793],[5.827126415982677,51.16646700418957],[5.827052084110907,51.16651312908508],[5.826988387572722,51.16655013487831],[5.826830361459457,51.1666352287716],[5.826687282571119,51.166713614105596],[5.826587836760869,51.166764957404425],[5.826526960126331,51.166797907272695],[5.826417234493926,51.16683433179639],[5.826345542059164,51.166859088648735],[5.826282656101146,51.166876315426684],[5.826228779602468,51.16689377777912],[5.826190463275701,51.16690875429001],[5.826138402006121,51.16693663685233],[5.826111079485679,51.16695004367359],[5.826022355413773,51.16698642440531],[5.825971373259772,51.16700756114665],[5.825906525410765,51.16704394146964],[5.825755285494367,51.167136379145404],[5.825660724798751,51.167205411312366],[5.825615872228382,51.16723964853516],[5.825540308378314,51.167291799662884],[5.825488350119806,51.167330558100296],[5.825432595647046,51.1673610610597],[5.825370911916129,51.16739949658629],[5.825319989911256,51.16742701492487],[5.825288775821084,51.16743720023136],[5.825210311928403,51.167455204298456],[5.825138231840708,51.16746797068364],[5.825100358972095,51.16747556528144],[5.825041269971083,51.16748029149853],[5.824972930991555,51.16749556056597],[5.824920676494437,51.16751831963957],[5.824845830388357,51.16755590560483],[5.824786534398454,51.167589927265],[5.824727308470451,51.16761630807412],[5.824645514712672,51.16764502108214],[5.82457559160811,51.16767413877229],[5.824531835286757,51.16770351744382],[5.824459678456771,51.16775331792201],[5.824408816290605,51.167802229191295],[5.824367215419433,51.16783276824147],[5.824310992123769,51.16784120469892],[5.824035080214247,51.1677722643243],[5.823726840224416,51.16768353442261],[5.823568804665003,51.16760322832034],[5.823172715141277,51.16729684643598],[5.823049997217441,51.16717146259975],[5.822915618936589,51.166947244600436],[5.822802900193281,51.16674541743231],[5.822680078172205,51.166608797489125],[5.822341359695572,51.16632017543649],[5.822208371443842,51.16624202087021],[5.821680464950397,51.165978824843116],[5.821069765834283,51.16565301355005],[5.82102617840911,51.16563070416117],[5.820559764157683,51.165391992790234],[5.820279715324191,51.165258204153886],[5.819984044200853,51.16508826582437],[5.819764746314516,51.164954591119006],[5.81937353275182,51.164675055001766],[5.819072880640834,51.16450070138394],[5.819050096466037,51.16448749154718],[5.818690732953125,51.16427983569597],[5.818364744865567,51.164145727752874],[5.818084368648953,51.16403039824704],[5.817349189326785,51.16377963707829],[5.816990358371808,51.163667157349586],[5.816829138759428,51.16361661612666],[5.816521037406743,51.16349236059023],[5.816226653286456,51.163351873568566],[5.816079262479565,51.163260281907924],[5.815971206055893,51.163170792059105],[5.81572455284546,51.16278293315282],[5.815746523699259,51.161690702352416],[5.815709926049005,51.16159870131631],[5.815636895324949,51.16153952727254],[5.815627100287331,51.16153159026765],[5.815591098477735,51.16150953851259],[5.815375490785798,51.161377459974126],[5.815052010293709,51.16118089675282],[5.814994363811638,51.16115863691549],[5.814890606002557,51.16111856911495],[5.814790374069212,51.1611009604553],[5.814722326705978,51.16108548044546],[5.814689995755147,51.161067621697136],[5.814663347804137,51.1608924365101],[5.814642843303959,51.160609362067255],[5.814635713293916,51.160227360640185],[5.814713425839784,51.1593618942339],[5.81472619282967,51.159197800049085],[5.814775197644755,51.159087505755174],[5.814846062198532,51.159022075371496],[5.81505657612783,51.158848173948925],[5.815027987680448,51.15884827928167],[5.81469464888339,51.15884977659953],[5.814614894724606,51.15881249663749],[5.814549067140339,51.15878172725636],[5.814513974600907,51.158804867948724],[5.813857874098013,51.15874615605684],[5.81352340362084,51.15892744987402],[5.813491060221212,51.15894498907542],[5.813276639630097,51.15903439746212],[5.8131169841846,51.159100970578045],[5.812927942541106,51.1591865188849],[5.812771378379614,51.15927518385956],[5.812662276497854,51.159348843071236],[5.812517323311781,51.15945652159546],[5.81216883621021,51.15973542818215],[5.81216371366355,51.15973952788279],[5.811397329052566,51.16028554632314],[5.811379221921377,51.160298448594475],[5.811352521718464,51.16028641112845],[5.81134954550672,51.160287653476566],[5.810831686741161,51.16050586135054],[5.810015537064221,51.160849766285004],[5.809294652642877,51.16117949431428],[5.809079125580551,51.16127807657448],[5.808971523272843,51.16133561876315],[5.807798094969728,51.16196318190471],[5.807797269800374,51.1619636163598],[5.807695098546544,51.162018243266196],[5.807599826577565,51.16206916865245],[5.807463057054052,51.16214230286595],[5.807340868774474,51.16220762675815],[5.807339645878416,51.162208341304286],[5.807181290342904,51.162301949053195],[5.807047177433042,51.16238122156097],[5.806663932253504,51.16260776004512],[5.806319686626239,51.162811243846086],[5.806292385702009,51.16282737854117],[5.806282830423225,51.162833031076076],[5.806282247426522,51.16283337475753],[5.806265437879236,51.162843044533716],[5.80626334735566,51.16284424759901],[5.805790396837736,51.162385093391286],[5.804943749864642,51.162871456308764],[5.804935544058328,51.16287617802318],[5.804867799866622,51.16279965664958],[5.804794130421634,51.162747516412296],[5.804540014164315,51.162613147281434],[5.804458921588205,51.16256211217604],[5.804409854915144,51.16252714194453],[5.804366896941133,51.16248792497389],[5.804308482177957,51.16241532486988],[5.804277590454108,51.16238244663121],[5.80420609032307,51.16233290500804],[5.804158914314749,51.16230143354568],[5.804083593067093,51.16225613034166],[5.804020613245128,51.16221599634247],[5.803995607405457,51.16218579356692],[5.803987852207745,51.16216613575232],[5.803998165509133,51.16213688487345],[5.804026967965659,51.16209714052732],[5.803904193261079,51.1620054451273],[5.803868000835318,51.16195550692815],[5.803835910446455,51.16193225097669],[5.80379150257204,51.161906432429795],[5.803758441488471,51.161883323761515],[5.803749924426055,51.16187736771853],[5.803666027176152,51.16183209500857],[5.803487904979086,51.16169034981138],[5.80331994848288,51.16156600634457],[5.803224266362585,51.16146639281918],[5.803174045167404,51.16142998798536],[5.803071408627612,51.1613674334348],[5.802949966445784,51.16131195745088],[5.802809385288747,51.161242527187284],[5.802733956080978,51.161208648368195],[5.802721812827124,51.16120319961462],[5.802684076790763,51.16118625576515],[5.802110069771975,51.16092654292931],[5.802462994695215,51.16034029403954],[5.802348292725342,51.16026784030169],[5.801990171263719,51.160041620497694],[5.802538052045013,51.15951939474009],[5.8025792946838,51.15948009165307],[5.801745537862405,51.15909143458907],[5.801185975510205,51.15883058701957],[5.799786582378685,51.15816886246787],[5.799166596361994,51.15787829592144],[5.799131570761631,51.157861880643225],[5.799119368499356,51.15785608115898],[5.799098698146016,51.15784644649411],[5.799002090447977,51.15780112563903],[5.798893489245669,51.15774137513201],[5.798780611772234,51.1576669878084],[5.798704143899359,51.15765179795321],[5.798638336922303,51.15766182902391],[5.798564962601522,51.15772069647947],[5.798555454136463,51.157728370711574],[5.798486622257564,51.15778371636221],[5.798485018397026,51.15778498947499],[5.798401750760138,51.157851703203626],[5.798327820343846,51.157880459732525],[5.798245121151067,51.157887763834545],[5.798080393490867,51.157865515085206],[5.797992303804447,51.15782951168549],[5.797812401453497,51.157692797925016],[5.79774302443044,51.157655289943854],[5.797330709713003,51.157535846572344],[5.797329849673981,51.157535579943676],[5.797294737443281,51.15752536674591],[5.797196060277137,51.157504141897704],[5.797049888389279,51.1574786800641],[5.797009003136132,51.15747186697497],[5.796930497431428,51.157458876432784],[5.796812487258023,51.15741758438903],[5.796762707592952,51.15738153480127],[5.796757270087871,51.157376088742126],[5.796751169137056,51.15736997984577],[5.796742372962333,51.15736138154698],[5.796713442779711,51.15733268321395],[5.796675455829314,51.15729500995611],[5.796629268553814,51.15724501488204],[5.796619165150805,51.157234084075014],[5.796573267078037,51.15718444751433],[5.796493875489332,51.157161805746526],[5.796411629336805,51.157171713723486],[5.796374974548839,51.15718083177301],[5.796359570957305,51.15718466138055],[5.796190559292414,51.15722669553285],[5.796161863284883,51.157230661821316],[5.796149157059043,51.15723241445883],[5.796138106985931,51.157233945529214],[5.796021095784862,51.15725012405192],[5.795960847864243,51.15724233605518],[5.795942672395604,51.15723988315048],[5.795889141497681,51.15721589149149],[5.795870358164722,51.157201350674256],[5.795864528801743,51.15719683180717],[5.795850998294604,51.15718627255032],[5.795826096556217,51.15716685432004],[5.795769230261368,51.157137481016974],[5.795679437714557,51.15713465082149],[5.795607667590068,51.157165285683035],[5.795589250425607,51.15718386754722],[5.795578059900398,51.15719532277935],[5.795573639744551,51.157199778830474],[5.795534002839525,51.157240062552255],[5.795512186285472,51.157262162020615],[5.795453178747568,51.157281336032064],[5.795382259300224,51.157279068470224],[5.795372204925649,51.157273620598424],[5.795316156481408,51.157242967778494],[5.795307854108849,51.1572384306089],[5.795290523519836,51.15723453641241],[5.795234255627339,51.157224217165506],[5.795169416318929,51.15723055743056],[5.794846513627505,51.1573114228293],[5.794742930690017,51.15733317995708],[5.794541440188932,51.15733972974007],[5.794437861825499,51.15736202591192],[5.794316219210044,51.15741054296014],[5.794221157905237,51.15742615730703],[5.794122300042748,51.15741661602516],[5.793990122524751,51.15737321343768],[5.793880714641735,51.15730222499174],[5.793828368617638,51.15723436251633],[5.793809713178208,51.15720997809934],[5.793754511949202,51.15719093519077],[5.793560029345901,51.15716554822312],[5.793511504627141,51.1571740776858],[5.793472865051855,51.15720126940561],[5.793442604077371,51.15723840945256],[5.793416334370999,51.15729045706408],[5.793410177391949,51.15729573709614],[5.793364269001892,51.15733504424682],[5.793351071983843,51.15734596694886],[5.793294718819734,51.15736476203297],[5.793283801649988,51.15736840475274],[5.793201648091697,51.15737273702704],[5.793152808500887,51.15736185146672],[5.793151229508441,51.15736110192138],[5.793145674447699,51.15735847861245],[5.79308850136778,51.15733142420342],[5.79308244156694,51.157325063283146],[5.793033459840591,51.15727382710286],[5.793026751195226,51.157266830237305],[5.793007850011673,51.15724694098968],[5.792936231853415,51.15719793221893],[5.792846384572328,51.157172717722474],[5.792709595963329,51.15715728519654],[5.792569318231082,51.157135212922114],[5.792400368490944,51.15708744246178],[5.79233911467305,51.15706275701141],[5.792303814185567,51.157047239528346],[5.792254358787996,51.157047501946494],[5.792214279917817,51.15705743962465],[5.792156491651054,51.1570853269159],[5.792147339242041,51.15708971843974],[5.792079913278223,51.15712208879695],[5.792046950259331,51.15712849594317],[5.791982341049625,51.15712854141301],[5.791949919975286,51.15711535089264],[5.791891114855182,51.1570765441356],[5.791871254177633,51.157053143397846],[5.79181412785377,51.15698584500324],[5.791797338780622,51.15697036173834],[5.791763832690981,51.15693945787247],[5.791757347483087,51.156933457920836],[5.791681635495523,51.156873855770236],[5.791590807292232,51.15681826132196],[5.791454285460854,51.15674853358175],[5.791208007239611,51.156622737478415],[5.791016970050991,51.156517333279986],[5.790823188953208,51.1564574220182],[5.790764585440239,51.15642508598427],[5.790746588218863,51.15641031688885],[5.790704600754778,51.15634942834019],[5.790698938613529,51.15633296241847],[5.790690225083573,51.15630759013536],[5.790684796702906,51.15629169868868],[5.790678671740222,51.15621279764417],[5.79061285165358,51.15613994678187],[5.790510965763917,51.15609445745272],[5.790436029722957,51.15607404329863],[5.790349423674295,51.15605942249583],[5.79026459521706,51.15605189666969],[5.790233982906054,51.15604921637859],[5.790092597215177,51.156014380766415],[5.789972303080356,51.155956010857864],[5.789860543211784,51.15590911699075],[5.789680742132119,51.1558455598009],[5.789484893289152,51.155761203743594],[5.78937101952595,51.15571764261524],[5.78923610919137,51.155687547639744],[5.789217060572204,51.15568320904446],[5.789212076518078,51.15568208471351],[5.789128694034932,51.15566328999316],[5.789075353151743,51.15564405865231],[5.789062517852308,51.15561470945439],[5.789065982328121,51.15559899389931],[5.789067466765617,51.15559222013879],[5.78907943855052,51.15553923422998],[5.789071104974588,51.15551795943938],[5.789030058591232,51.15548259543941],[5.788919642266958,51.155441988234536],[5.788808521982935,51.155435271418284],[5.788719077202154,51.15543908641587],[5.788700103396306,51.155443286908564],[5.788685265971425,51.155446484319526],[5.788676634929209,51.15544838384893],[5.788584974884927,51.15546858413261],[5.788554308065595,51.15545961137609],[5.788524895355219,51.15541422933411],[5.788524156582742,51.15541310827822],[5.788518377006834,51.15540436410136],[5.788482735040059,51.15534947537157],[5.788434142157644,51.15531737323766],[5.788396694857725,51.15530123277027],[5.7883194851036,51.155298443306414],[5.788290079667989,51.15530294943495],[5.788274663467612,51.15530533979406],[5.788113646932775,51.155329986049956],[5.788054904364952,51.15533045852849],[5.787876597369658,51.15530653433505],[5.787703284790936,51.15526524411368],[5.787486700236414,51.155195428310165],[5.787416519807784,51.155162734995265],[5.78650820223957,51.15473964580663],[5.786428565068552,51.154687694295966],[5.786339217375046,51.154603865609786],[5.786042433133836,51.15425207215265],[5.786020373340535,51.154164236740854],[5.786017410173813,51.154152201827955],[5.786002899734445,51.15409427343173],[5.785954806102766,51.15402055006655],[5.785819148487631,51.153903531295605],[5.785796394334692,51.15388383388913],[5.785778108548682,51.153851986159836],[5.785724410358688,51.15375823675099],[5.785653980219589,51.15369636535137],[5.785630648294997,51.15367595078561],[5.785507217924449,51.15360068795776],[5.785410268259564,51.1535298286204],[5.785328562091832,51.15345316405565],[5.785295240316343,51.15340150239697],[5.785268752795124,51.1532973222764],[5.785237435622176,51.15322956364501],[5.785168936236846,51.15315941557139],[5.785086451834773,51.153108281906746],[5.784988825726102,51.15307463847541],[5.784717021645666,51.15301399558288],[5.784630164346155,51.15298597797181],[5.784516833928097,51.15292128639732],[5.784424990907628,51.152895173357756],[5.784311133112667,51.15288513573733],[5.784209264729567,51.15288970887365],[5.784205692402997,51.15288981097729],[5.784191619425354,51.15289044337285],[5.784162259002089,51.15289175725541],[5.784052213617866,51.15289285254963],[5.784002335416764,51.15289329268751],[5.783896154540549,51.15288012726287],[5.783875279007188,51.152877546867416],[5.783828789934915,51.15285667172286],[5.783808838601828,51.152840290238274],[5.783796833351805,51.15283044348586],[5.783778338042019,51.15280722547913],[5.783770246592439,51.152797095689614],[5.783763803019555,51.15276593529728],[5.783762042703369,51.15275739289139],[5.783760697820208,51.15268440783577],[5.783753189732714,51.15267562438363],[5.7837386069935,51.15265859533],[5.783698562173605,51.15263913634443],[5.783637765274145,51.15264959126163],[5.783596388701279,51.152674541820545],[5.783541786907353,51.15270726794156],[5.783518101153178,51.15271193311777],[5.783434563969685,51.15270412824668],[5.783418803600107,51.15269968759405],[5.783387826754979,51.152690894315185],[5.783384846966322,51.152690095484424],[5.783358197279688,51.15268254587454],[5.783271542286352,51.15262809927442],[5.7832500095011,51.15260066677561],[5.783249144161134,51.15259810789859],[5.783248543059748,51.152596357118824],[5.783245172881281,51.15258675052078],[5.783227578714645,51.152535394181356],[5.783196382109752,51.15248120779365],[5.783133741473876,51.15244357826614],[5.782987073647473,51.15239095408609],[5.782861150821115,51.15234068602531],[5.782846665317647,51.15233489262011],[5.782696493026549,51.152323359164306],[5.782483248718481,51.152307006491434],[5.782447605351727,51.15230065584547],[5.782409911539782,51.15228523340679],[5.782350645679393,51.15226098539161],[5.782219575504625,51.152193745186935],[5.782159093120764,51.15217426531571],[5.782019347829708,51.15214525710362],[5.781916743833631,51.15211396513374],[5.781860550896297,51.15207802088873],[5.781832094839413,51.15205978031215],[5.78177259548407,51.15203822945858],[5.781721276616067,51.152037235295445],[5.781678337534171,51.15204672961941],[5.781618423188672,51.152060056921066],[5.781513100629882,51.15207830251618],[5.781422483668003,51.15207807089774],[5.781331673642844,51.15207199709716],[5.781205136574768,51.15204977461274],[5.781149884029794,51.15204007434023],[5.780701547139958,51.15194244743987],[5.780508309893785,51.15189213529149],[5.779991521281594,51.15177855754945],[5.779692476596436,51.15173974815356],[5.779597512852003,51.15171579918694],[5.779505181769011,51.151682133266505],[5.779436228214822,51.15165791650255],[5.779382110664189,51.151647132892144],[5.779242893200158,51.15164607495356],[5.77915925618409,51.151659750752806],[5.778994306016505,51.15170821817534],[5.778939555180848,51.15170696469912],[5.778875205239104,51.15168623772968],[5.778810663679562,51.15160951070499],[5.77878120828057,51.15157446356627],[5.778759898227537,51.151556018361724],[5.778673250036535,51.15150147843592],[5.778576371904919,51.151470793438314],[5.778413987433975,51.15146810471344],[5.778284479892817,51.151465934244904],[5.778215819460235,51.15145924406921],[5.777882394061248,51.151360320370564],[5.777646233049746,51.15130385569139],[5.777625759734404,51.1513686354179],[5.777603170679138,51.151440091996704],[5.777506499643685,51.151746470073846],[5.777331080013218,51.1523024100258],[5.776667706231241,51.15440458993169],[5.776450376873023,51.15440462657805],[5.776340058071741,51.15442450221058],[5.776222096161521,51.154436403252724],[5.775864736591444,51.1545007917806],[5.775656467387683,51.15453277001936],[5.77532681105795,51.15459427765186],[5.775086675139764,51.15464415934587],[5.775077422100478,51.15464523296588],[5.774759249053121,51.15468219696623],[5.774813079158309,51.15470943332477],[5.775414846367743,51.15531819852292],[5.775556838659667,51.155461833231634],[5.775758493914916,51.15564435172751],[5.775650922559016,51.15568525145639],[5.776625137346559,51.156799214681335],[5.777161137296803,51.15741207466951],[5.777145070190016,51.15741876241393],[5.776448368669733,51.15770876182476],[5.777489088052665,51.158425906039675],[5.778244340124025,51.15870611891678],[5.778568289574297,51.15887432387749],[5.778891506926045,51.159127349383716],[5.779482636376317,51.159383064765805],[5.779505981507192,51.15965428796771],[5.779509616538543,51.15969659528607],[5.779509292928299,51.15974906441274],[5.779504928116889,51.160452844741606],[5.779505032404478,51.16045333877714],[5.779572113074062,51.160753654988916],[5.779537017194401,51.16128384721522],[5.779482395730789,51.16210885940366],[5.779448208673885,51.162625187677094],[5.779402447682862,51.16331632560711],[5.778442442043314,51.16329673225146],[5.777819416836992,51.16254034892293],[5.776845740047541,51.162929242564736],[5.776159777989277,51.16299176764865],[5.775963985440086,51.163049772270014],[5.776134004103365,51.16324003661342],[5.776795101302104,51.16319512340695],[5.776785732652845,51.16324173515209],[5.776772866411456,51.1633057790562],[5.776449314754033,51.16491567360788],[5.77636608770993,51.16532975506062],[5.775270880636409,51.165311873816975],[5.774037763886287,51.16529173607976],[5.774062402034296,51.16511079801231],[5.774120025474016,51.16480642279254],[5.774213183162905,51.16449455825087],[5.774460379770816,51.163936604197445],[5.774383445271273,51.16393416407641],[5.773286024709702,51.16443948651581],[5.773201118454596,51.16445821392671],[5.773018748184621,51.164498442899784],[5.772911102985562,51.16448226097746],[5.772530248921817,51.164380423060805],[5.772454667420061,51.16452224846782],[5.771732011533548,51.164474575685425],[5.771426944893349,51.164451252602845],[5.771020547743241,51.16429481498984],[5.770288481134731,51.16423237766075],[5.770248236815093,51.16422894183708],[5.770188621447206,51.16422385301475],[5.769975222468834,51.165810192337275],[5.769686332248272,51.16795750517688],[5.769615840565573,51.16859190166636],[5.769565030796412,51.169083310368265],[5.769676113889948,51.16939081316019],[5.770147370410466,51.16981531433903],[5.770150078776301,51.16981775037932],[5.770379957409985,51.16996773538548],[5.770447565105887,51.17001641171899],[5.770812868449572,51.17001466631174],[5.771011168882427,51.1700641689892],[5.771210327803011,51.1700795108066],[5.771364548962819,51.17007279844607],[5.77148270355064,51.17004481173018],[5.771555317284338,51.16997400885012],[5.771662350321527,51.1698507588167],[5.771746497938077,51.16975386790317],[5.771958407362757,51.1695164892318],[5.772020648803833,51.1694826466759],[5.772055076078504,51.169484078678465],[5.772199047646135,51.16953411890705],[5.77227218837038,51.169543404611865],[5.772357977070389,51.169543479682766],[5.772437800396472,51.16953125973368],[5.772558660423393,51.16950218428043],[5.772611525318489,51.169497694197126],[5.772645982969279,51.16951465868248],[5.772664735920037,51.16953437194375],[5.772672224410461,51.16957479698063],[5.772677676948439,51.169713297291054],[5.772698498855389,51.169741003769516],[5.772762573510463,51.169794364698205],[5.772797337781653,51.169813755114724],[5.772855016168589,51.16983756386406],[5.772939371061654,51.16986602111499],[5.77294578049576,51.169868184120375],[5.773247227177359,51.169941232742],[5.774682493222048,51.17028901419863],[5.775747380192552,51.17054703239468],[5.776214246865862,51.17050289824124],[5.776602590287093,51.17046596492608],[5.777037853752339,51.17055286525175],[5.777377434550045,51.17072053580491],[5.778035639604838,51.17104551738934],[5.778141907769414,51.171099452478025],[5.778354273523437,51.171203997058925],[5.779736026287208,51.17179916225066],[5.779701944944712,51.171833399177416],[5.77937252742707,51.17216434950048],[5.77741058690534,51.1724168932279],[5.776686255348676,51.17245662838195],[5.776098806461919,51.17248457477319],[5.775268569914435,51.17253049842293],[5.774174367836706,51.1726572159548],[5.774052345046508,51.172671348460824],[5.773864353765346,51.172693116298014],[5.773615576587687,51.17276405742437],[5.77356452538505,51.17286553177232],[5.773488948315312,51.17299216660579],[5.773434751641692,51.17307675229138],[5.773317760486293,51.17319282797985],[5.773274829521343,51.17322284069463],[5.773256775722626,51.17323545815087],[5.773009558731988,51.17334446961324],[5.772952188560922,51.17336977506312],[5.772983280809008,51.17341129023127],[5.773278650289916,51.173677044302714],[5.773439159877062,51.173821465056356],[5.774210240847089,51.17460865987485],[5.77430587040806,51.17472321887313],[5.774343738617705,51.17478457648743],[5.7747844487211,51.17549853038143],[5.775131241422842,51.17605926653662],[5.775388657122748,51.176466770609004],[5.77544806409204,51.17655852813038],[5.775441171257157,51.1765720344681],[5.775327866362883,51.17663407676377],[5.775322577629892,51.17665126316846],[5.775324286686544,51.17666734752524],[5.775926955708556,51.177450689184546],[5.776698742888721,51.178447009220285],[5.776728557825306,51.178485498432956],[5.776547003641852,51.17858429252883],[5.775720433962825,51.17903406754729],[5.775663221899918,51.17906519857488],[5.775276002824677,51.179275897539945],[5.773334643714305,51.18033221287403],[5.76716052472625,51.18369109021505],[5.767120042883044,51.18369554626711],[5.766524202766591,51.18376110770483],[5.766166995047141,51.18380040437909],[5.766163036865136,51.18380083976891],[5.765045712223792,51.18392377075471],[5.763780198271431,51.18406300087708],[5.762309944601498,51.18405115561703],[5.761957650212102,51.18404831067625],[5.759065005058797,51.18424733484707],[5.756014220538924,51.184457162310714],[5.755963345597123,51.18446066768567],[5.756868439889487,51.18540431722627],[5.756835492804453,51.18541049853786],[5.756790463686584,51.185418947518315],[5.75523862686578,51.18570830897107],[5.753251887256288,51.18607873410282],[5.753189303928843,51.1860904010773],[5.753140774016551,51.186099452934734],[5.753372413948687,51.18634142200746],[5.753361961841889,51.18634724377615],[5.753312748886472,51.18637468905122],[5.751867694245193,51.18716307142551],[5.75180908954366,51.18719504895734],[5.74969674340266,51.18834739687834],[5.749090010160792,51.18867837045634],[5.748986601945744,51.18857073646075],[5.748920676348623,51.188589027329485],[5.747890166701513,51.18887497589613],[5.74620654941683,51.189342128252456],[5.745641301441201,51.1894989583683],[5.74494943483506,51.1891357123943],[5.744799917279821,51.18905721471153],[5.744066096388128,51.18867192614615],[5.743484601123572,51.18836661606775],[5.743282220722358,51.188260359201124],[5.743222757301442,51.18805177545683],[5.743075193556795,51.18753469467287],[5.74212620994692,51.18765337446638],[5.741330918083572,51.18723702925902],[5.741318940536162,51.18723075560201],[5.741261106258877,51.18719857204316],[5.740098346323856,51.18655140765646],[5.739740491872263,51.184747713464226],[5.739634429576827,51.18475603539255],[5.738865524274954,51.185936542997965],[5.738672584985856,51.18623276114127],[5.738628972291738,51.18623433131072],[5.738584725690178,51.186246510220805],[5.7385191252654,51.18627187741609],[5.738449255253727,51.186335540983684],[5.73829185876073,51.186478948473074],[5.738282592331855,51.1864848282196],[5.73823421043194,51.186515527529444],[5.738225644407645,51.18646153044652],[5.738161682816751,51.18640203777314],[5.738031855177209,51.1863519126394],[5.736429756538266,51.18620231196608],[5.736165322962093,51.186187735751574],[5.736059466870598,51.18618607617016],[5.73385979699112,51.186206953861344],[5.733831028559421,51.18620443294811],[5.733808232694413,51.186197309895235],[5.73378940768064,51.186185680567476],[5.733776554560473,51.18616935921938],[5.733481063637315,51.18531827775433],[5.733476235914932,51.18530399988264],[5.733464858185949,51.18529360673992],[5.733450937206048,51.18528735604602],[5.733432173708108,51.18528381643828],[5.731825462652424,51.18523672885759],[5.731783239062356,51.18523271925455],[5.731706915334151,51.18522081070654],[5.730850921837239,51.185091569872625],[5.730798364306423,51.18508273650907],[5.730661406233657,51.185052939043516],[5.730465560932124,51.18500939173648],[5.730065418683229,51.184920406458104],[5.730021939883749,51.18492062467766],[5.729993238284885,51.18492691168604],[5.729971009722114,51.18493812344994],[5.729944730131501,51.18496229109809],[5.729935095775081,51.184974544353544],[5.729581861180135,51.185478781548525],[5.729504852952722,51.18558597574819],[5.729482833370143,51.1856060857568],[5.729460211485024,51.18562215255633],[5.72943355465932,51.185634186260096],[5.729396858451724,51.1856425641082],[5.72933141048003,51.18565057719206],[5.729274222523255,51.18565380182715],[5.729214707932557,51.18565190964401],[5.729160891641273,51.18564694444833],[5.72912253967772,51.185644270806854],[5.729081205589913,51.18564448235985],[5.72903302161725,51.18564678149043],[5.728954419120371,51.185655372403495],[5.728721029026761,51.18569848618295],[5.728635049852105,51.18571527841528],[5.728536741524515,51.18572824161215],[5.728506290124021,51.185730128860534],[5.728485018535167,51.185735494778584],[5.728474334962451,51.18574136891583],[5.728333981829912,51.185562813330364],[5.728238609625577,51.18556089111751],[5.727427423857079,51.185544510228176],[5.727082141525532,51.18553753896848],[5.726543665458123,51.185483652181574],[5.72676205916035,51.184958299263755],[5.726774130356701,51.184929265969004],[5.725430036790868,51.18466865494678],[5.72530256068445,51.18464393821516],[5.725190450953633,51.185268359781816],[5.725136887755689,51.18526850663894],[5.72444843216495,51.18527033676352],[5.724438948661364,51.1851087449267],[5.723913974007303,51.185080964298926],[5.723921061541123,51.18511123614857],[5.721865036895272,51.18489650210349],[5.72172768610505,51.184562854463685],[5.721727292862928,51.184561884801404],[5.721709097058165,51.18451834132746],[5.719676432200472,51.184699639527274],[5.71783548749915,51.184387831100814],[5.71778344834371,51.18437901734854],[5.717863433138681,51.18420503541451],[5.717773365356241,51.184208356978466],[5.717288194616522,51.18422626724717],[5.716446166013887,51.18395198065716],[5.716322518320343,51.18391170153375],[5.716201729137278,51.18380131022973],[5.716161418230952,51.1837644712883],[5.716153829667815,51.18376331524228],[5.715643293497891,51.1836857391335],[5.714479062073026,51.18350881719001],[5.713792345415685,51.18309624784447],[5.712805045808302,51.18250307779571],[5.711131907325909,51.1814978153305],[5.710311307721166,51.18100475323244],[5.710242023968476,51.1809631208966],[5.709605708077082,51.180580769006525],[5.709461858101762,51.18049433606533],[5.709339293044414,51.18042068896069],[5.708711700788864,51.181026028327985],[5.709077874009568,51.1814617816858],[5.707959499000433,51.18185283382962],[5.708003815810869,51.18205469057718],[5.705556750333117,51.18211418817016],[5.703889617746547,51.18225643675553],[5.703775455464907,51.18226617726485],[5.701842293364088,51.182431089962996],[5.701392101140875,51.18246948647832],[5.701288129143641,51.182478352025235],[5.70161135317159,51.183792993266785],[5.699359821201695,51.183743964720776],[5.699411006010908,51.183909491327455],[5.698913913662812,51.183939437912166],[5.69820708931486,51.1839820251395],[5.697856778839381,51.18359545408126],[5.697597568527105,51.183714619894765],[5.697532378632045,51.183655467801756],[5.696871028841851,51.18388725715626],[5.696436141460929,51.18393704540163],[5.696117970563166,51.18359951650719],[5.696074322677788,51.183553205275565],[5.695953708147068,51.1834252463551],[5.695758183188697,51.18316817301618],[5.695294848095404,51.18255894450652],[5.694940633892907,51.18266186186316],[5.694474650260003,51.18279724491238],[5.694180170581745,51.18288279727375],[5.694155289689096,51.18293267913252],[5.694136886656151,51.18296959096198],[5.694078699596707,51.18308630288428],[5.693558217408934,51.18318952036942],[5.693142094429741,51.1832474086557],[5.693027382524997,51.183263369304306],[5.692651957288605,51.18335056011624],[5.69212776494176,51.18354850522929],[5.69212652376803,51.18354897590699],[5.692044066844752,51.183569893631216],[5.691764854929781,51.18364071203215],[5.691539277815532,51.18374413554053],[5.691791439435613,51.183939610794496],[5.691700433976308,51.184019490446914],[5.691571319430245,51.18413281845809],[5.691391363167255,51.18423603222415],[5.690365919422924,51.18465453656716],[5.690460376545825,51.18509627070324],[5.689820489980574,51.185337941381526],[5.689695165942314,51.18537665013613],[5.689528737380863,51.185407016255425],[5.689411536731237,51.18541963595576],[5.689208892307909,51.18542384846222],[5.688762822472015,51.185407838801744],[5.687871559099717,51.185400261689495],[5.687557769672164,51.18509689162451],[5.687216348482908,51.18476680538782],[5.686901364578667,51.18471932160838],[5.686895079522719,51.18471837602123],[5.686761918611936,51.18469821602224],[5.686039364037396,51.184588804651156],[5.685322527080027,51.184480533676336],[5.684192890271083,51.18417969523497],[5.684048113902257,51.184141143725334],[5.684029315607408,51.184087348695364],[5.683585149469793,51.18404048264512],[5.682854854942641,51.183963422041366],[5.682576083767592,51.18404305322915],[5.681261619067739,51.18441852606762],[5.681156951556532,51.18444512827986],[5.681067480365147,51.18445497273352],[5.680994492238636,51.184447966320846],[5.680927875739641,51.18443087626414],[5.680861948842338,51.184387447166145],[5.680719982061756,51.18404775874656],[5.680563202453254,51.183672646652184],[5.680500136898899,51.1835217487103],[5.67993804847527,51.18340846937898],[5.679906872209802,51.1834021658874],[5.679884274056509,51.183397593591906],[5.67876214923072,51.18317070650691],[5.677890629409356,51.18299447187901],[5.677885760436141,51.18299348630569],[5.677745877957696,51.18296519792641],[5.677649902178232,51.18294578841046],[5.677381680301597,51.18289155512688],[5.677297205152509,51.18287463345636],[5.676595930569428,51.1827341437977],[5.676543962749488,51.1827260035575],[5.676541099548297,51.182725561249285],[5.676509988699497,51.182849684530886],[5.676506690802665,51.18294587316959],[5.676503175702691,51.18304844441444],[5.676498755720197,51.183177624833654],[5.676476091142243,51.183303075388906],[5.676433757765067,51.183666239441536],[5.676419117502372,51.18377144514534],[5.676378478436255,51.18392705299874],[5.676399288185803,51.18405859757318],[5.676405291121164,51.18409651546453],[5.676399718106576,51.18423342913612],[5.676359615040857,51.18442876624903],[5.676289913823565,51.18455739005725],[5.676228687526216,51.184646441906644],[5.676124781147417,51.18470359968845],[5.675672242425946,51.184862478406785],[5.675491625737846,51.18491452271454],[5.675081606753237,51.18503266409367],[5.674707929661266,51.185109814920004],[5.674442194376514,51.18515721429957],[5.673816097003145,51.18530734627033],[5.673541267153273,51.185387485344656],[5.673292914898209,51.185447603363286],[5.673257203363747,51.18545493631424],[5.672993937700389,51.18550901397759],[5.672469443827018,51.185600101722045],[5.672164613410176,51.18561756923251],[5.672020581883413,51.185640484468735],[5.671529483820862,51.1856972386518],[5.671036899108909,51.18576819672961],[5.670624306715377,51.185799316839045],[5.670298564077775,51.1857636076653],[5.670097024135299,51.18574100644734],[5.669892355025865,51.185672470627956],[5.669824257431186,51.18564674854669],[5.669530710006073,51.18556881029124],[5.669368250938503,51.18557244106442],[5.669144323258219,51.18558161413531],[5.668827868288456,51.18561617987041],[5.668628153080962,51.18565531589724],[5.668370364881126,51.18574070483398],[5.66833952247794,51.18575386721837],[5.668059345793195,51.18589246954262],[5.667855879190641,51.18592657957052],[5.667695638045485,51.18589550579432],[5.667541116047748,51.1858640584405],[5.667097131385691,51.18588445520414],[5.66659271062612,51.18589223154266],[5.666362948933684,51.18590671668857],[5.666111461535665,51.18592368053565],[5.665841087071908,51.1859701275382],[5.665785966542045,51.18597776542816],[5.665541999085757,51.186079115027574],[5.665430182299982,51.186136506894904],[5.665337270151514,51.1861885499803],[5.66519259018972,51.1862091661488],[5.665018442484242,51.18623398748424],[5.664495169443687,51.186294384401094],[5.664305881586361,51.18628494846537],[5.664093802195316,51.18626729684503],[5.663968830064424,51.18624979685114],[5.663867288825264,51.18622792627773],[5.663745239218428,51.186196935852394],[5.663466007425533,51.18611993697343],[5.663375860324734,51.1860899489308],[5.663212549823785,51.18599999950718],[5.66316383463684,51.18598591293122],[5.662951730424608,51.18594003439511],[5.662805763969941,51.18587988610285],[5.662633825610245,51.185829597035735],[5.662368507347614,51.18573467477863],[5.66223353097643,51.18569427513409],[5.662202447617247,51.18568661835183],[5.662015381382437,51.18568939822401],[5.661813090368434,51.18572933761726],[5.661601244089803,51.18575006316037],[5.661335249179047,51.18575927561614],[5.661185256971883,51.18576461834124],[5.66097887514155,51.18576636345024],[5.660892660810119,51.185747878891355],[5.660801004412926,51.18572822056462],[5.660647309757812,51.18566911249714],[5.660440124162976,51.18558147372806],[5.660216132061331,51.185508022499434],[5.660067193994089,51.1854283720235],[5.659941428002161,51.185375336769276],[5.659871755677932,51.18534595411457],[5.659806301485006,51.18531394577135],[5.65975613870628,51.18528942514879],[5.659532152296744,51.185168322864484],[5.659394768993248,51.18510725129],[5.659151543493526,51.185021708184436],[5.659008224080671,51.184996605327804],[5.658951415179718,51.184967911123294],[5.658640975987058,51.1848111260153],[5.658483618804506,51.18473392017402],[5.658387980932694,51.184741873909665],[5.658333983970066,51.184753236001804],[5.658241563214772,51.184773137234735],[5.658215393376578,51.18477382752207],[5.658043734043765,51.18474501430183],[5.658009238584492,51.18478179608559],[5.656778666915423,51.1860941408924],[5.656708335810893,51.18616913602153],[5.656525428516833,51.186364195173866],[5.65597484492853,51.1869530156624],[5.655553173744593,51.18740395290121],[5.654998044895855,51.1879976062036],[5.654645497287373,51.1883746094935],[5.654429453992495,51.18860563394774],[5.653994631538693,51.18907060928677],[5.652940419088547,51.19019785947495],[5.6523798060909,51.190797283489815],[5.651187292658427,51.192072303757236],[5.65115772006084,51.19210387675992],[5.651081215070949,51.19218557015157],[5.65052642144911,51.19277799657996],[5.650215826928013,51.19310965944358],[5.649740037714901,51.193617704930915],[5.654083224216217,51.19424169827481],[5.653918970000997,51.194657925090304],[5.653176652438285,51.19653893660252],[5.652878041931915,51.19729557920701],[5.652874150390949,51.19730543085859],[5.652835686394917,51.197402858687965],[5.652758575208954,51.1975982810211],[5.652733830106516,51.19766098961971],[5.646467671787399,51.19994410021397],[5.644735580581967,51.200447110799516],[5.643065303566911,51.20093213456514],[5.641662517799793,51.20133945161776],[5.638962397185281,51.20212340616965],[5.636797785644933,51.202751819642664],[5.636707985677589,51.202777891330726],[5.636381540891008,51.202861918269754],[5.631345078114819,51.204158200537385],[5.630448930583085,51.20438881861545],[5.621644814506549,51.20665404932481],[5.616158506804916,51.20806517749676],[5.612016713506531,51.20913025970974],[5.609945737451316,51.20966126237337],[5.608895384901852,51.209931317554855],[5.604027775642855,51.21118266669766],[5.601865783865959,51.21173837822916],[5.600686618258468,51.21204144212264],[5.598664616141527,51.212561097217325],[5.598059705210197,51.212716651223104],[5.596866967334474,51.2130233324111],[5.596153847163081,51.213206694295664],[5.595517012992154,51.2133704273216],[5.592404165119921,51.21417072075053],[5.589430993447845,51.21493501110279],[5.588357783614481,51.21521087076128],[5.587570782530585,51.21541272584652],[5.587054074293777,51.21554524777943],[5.58641714503774,51.21570859844946],[5.583582831953445,51.216435439991656],[5.582844055219978,51.21662487583969],[5.582625700100079,51.216681387353105],[5.58262228313074,51.21668226501383],[5.58233701626313,51.216755652617806],[5.575626835749643,51.218480406955145],[5.574263915953846,51.218825981309045],[5.573273455594872,51.219077109722896],[5.568717884388839,51.22023199656664],[5.566045354191194,51.220909401802416],[5.568670224589946,51.22138594352526],[5.57060351350765,51.221736885884766],[5.57166648835503,51.22192982810199],[5.571731279037631,51.221941590404406],[5.573286252305524,51.222227704068914],[5.57451624917904,51.22245400662449],[5.578580569508509,51.223201676635576],[5.583129804470201,51.22403834777237],[5.586004831634833,51.22456136642785],[5.586749490147116,51.2246968183345],[5.587612074902003,51.22485371611823],[5.589506933920041,51.22519834332552],[5.592134591634673,51.22567619370771],[5.592173059835541,51.22568319104098],[5.59432066365995,51.22607368488689],[5.594356291483849,51.2253542754265],[5.594389532564021,51.22468344562023],[5.594414455882235,51.224180388431726],[5.596729933230019,51.224679248670526],[5.600537663346405,51.22549948639522],[5.601911203636508,51.22579478205761],[5.601931666745238,51.22579918470648],[5.604730966499761,51.2264016651819],[5.605686343368291,51.2266074149569],[5.60986547752626,51.22750684668783],[5.60990986063748,51.22751640660808],[5.610051250279514,51.22754683226782],[5.610188985708491,51.22757647375444],[5.610346827791068,51.22761044502211],[5.612187595385357,51.22800656431499],[5.612384937545918,51.22804903164441],[5.615742919908764,51.228771548061644],[5.615931640875919,51.22881214767695],[5.61626254834625,51.228883343309946],[5.616467293264195,51.22892738913369],[5.616649838473937,51.228966660438694],[5.617429883489922,51.229134475514954],[5.617847576181125,51.22922433518688],[5.618781643490269,51.229425273722214],[5.619753522653851,51.23348566619257],[5.619786670285377,51.23362418010869],[5.619841775183028,51.23385440768081],[5.62021517844637,51.23541454582681],[5.620230831801544,51.235479916910016],[5.62034135865695,51.2359417192747],[5.620861910230196,51.238116420491764],[5.620935534690179,51.23842398583105],[5.620951497418741,51.23849065057794],[5.621584063487377,51.241132953869254],[5.621937375988102,51.24260865012131],[5.623013038990707,51.24710086903755],[5.623446747633711,51.248911859117065],[5.623452236349856,51.2489346705034],[5.623474118032872,51.24902560158694],[5.623476923081764,51.24906125442086],[5.623481168905252,51.24911520550529],[5.62367813352452,51.25159391355042],[5.624035290491793,51.256087581487556],[5.624392503924016,51.26058124760794],[5.624449484563343,51.26129799617425],[5.624450726030594,51.26131362514297],[5.624465604930132,51.26150307842703],[5.624466949422327,51.26152199708153],[5.624471786132438,51.26158998739041],[5.624543202898283,51.262487551842995],[5.624612183160762,51.26338440209906],[5.624682316072334,51.264281969037796],[5.624746306563798,51.2650749189814],[5.624754743714794,51.265179441332876],[5.624825740967263,51.26607682659313],[5.624897314625088,51.26697430049424],[5.624967457803172,51.26787168736313],[5.625041899579955,51.26876852604455],[5.625106168877772,51.269568576248204],[5.625114059601861,51.26966689741495],[5.625193555924662,51.270652804465804],[5.625260805081967,51.27145994957695],[5.625616284316568,51.272524482149656],[5.625972275701397,51.273601596863784],[5.626441386772942,51.274060229234486],[5.626745634106288,51.27435767098994],[5.627517302628082,51.275114552474],[5.628289996529203,51.27587079751503],[5.629062575034617,51.276627487119406],[5.629651518591359,51.27720819465357],[5.630607530199953,51.27814237950132],[5.630842220886905,51.27837240542613],[5.631018434948032,51.278545115160675],[5.631379468311327,51.27889896522142],[5.632149564922112,51.279654830611975],[5.632963053460207,51.28045266674418],[5.633693144543928,51.281169055832535],[5.634270742700357,51.28169735949409],[5.634346292261111,51.281766439577495],[5.634504666166738,51.28191124481781],[5.635725235952317,51.28302954441247],[5.636930191980619,51.28413348271717],[5.638549448345123,51.28561602046843],[5.639324676686857,51.28632463632066],[5.640631063940915,51.28751335041282],[5.641809085107004,51.28858520708861],[5.641925359293435,51.28869111005243],[5.642043217379826,51.28879817797218],[5.64206905138136,51.28882168996008],[5.642108112189504,51.28885723590458],[5.642276761688469,51.28901071821406],[5.642378456187224,51.289103259410055],[5.64242660913007,51.28914706397122],[5.642572610253393,51.28927988538858],[5.643093181218716,51.28975347496325],[5.643134534552917,51.289791091930006],[5.643139476817726,51.289795593425026],[5.643444672467501,51.29007323222382],[5.643453116175948,51.290080917010336],[5.643496487387019,51.290120372104205],[5.643836975546576,51.29043010296693],[5.643996789033944,51.29057548541476],[5.644107697992628,51.290676382308504],[5.645249395044904,51.29171488217468],[5.645559458035937,51.29199690016361],[5.649009835573986,51.295134990432835],[5.650489076450935,51.29648023914002],[5.651929054449235,51.29778969321634],[5.652321835179864,51.29814673212234],[5.652335672713298,51.29815931185018],[5.654618352380685,51.30023476590388],[5.655419761810844,51.30096336757884],[5.655812338216124,51.30132026937485],[5.656099479860819,51.301581305512656],[5.65966229683576,51.304605984966834],[5.660522337843613,51.30533604129163],[5.660651353724424,51.30544558108156],[5.664143808646926,51.30841040593031],[5.665931054847625,51.30992744507634],[5.666750569117918,51.310623008729635],[5.669922857817374,51.31331558403941],[5.670244437128231,51.31358850176569],[5.671269603912641,51.314408297648235],[5.671270324973554,51.314408925102946],[5.671641187393594,51.31472993450446],[5.672047906286974,51.31508199211264],[5.672110862804143,51.31509400880806],[5.672125725965613,51.31509684882886],[5.672141982046316,51.315099946111864],[5.672155581607234,51.315102564503185],[5.673238812382965,51.315311107474535],[5.673685716721914,51.315396372385685],[5.674070612989014,51.315469806406625],[5.674413016927826,51.31553513727705],[5.67563238381459,51.315767780428914],[5.675639420488598,51.315769093328505],[5.676851216355571,51.31599562113823],[5.677345875166937,51.316092968912365],[5.677909229968422,51.316199572239945],[5.6787217533113,51.31635330636175],[5.679672435628844,51.31653063381385],[5.6804944326851,51.316688035154584],[5.684000595766532,51.31736197030521],[5.687362729791494,51.31800303893438],[5.688432211956681,51.31820693689871],[5.690676813993892,51.31863483254414],[5.690689108480553,51.318637173524806],[5.690875350228208,51.31867266983673],[5.691811979332813,51.318851364212705],[5.699097603798267,51.32024105150833],[5.699799377230463,51.32037504332611],[5.700158258991043,51.32044356222583],[5.700262541016097,51.32046347059705],[5.700332105553763,51.32047675765786],[5.702795559012771,51.32094699524252],[5.703762504979824,51.3211315519075],[5.703824827301753,51.32114278916057],[5.703826723219022,51.32114312557705],[5.704073470430976,51.32118760476713],[5.706186238959225,51.32159003260902],[5.708029732794111,51.32194112861349],[5.709765459794058,51.322271676145725],[5.709859579433576,51.322289599598896],[5.709934780365963,51.322303916996425],[5.714139862008794,51.32310490312224],[5.714141083064065,51.3231051334011],[5.714310853932684,51.32313728573567],[5.714312060643983,51.32313751605306],[5.715064343247002,51.3232825819747],[5.715409843763534,51.323349203993885],[5.717056048342561,51.32366652910221],[5.717108772268734,51.323676716791375],[5.717160632935214,51.323686556340796],[5.718051173985633,51.32385543578943],[5.719447909747693,51.32412024028053],[5.719591312283296,51.32414743545607],[5.720096612648381,51.32424322321529],[5.720287826351938,51.32427944036964],[5.72298506012616,51.3248034679453],[5.724242899674017,51.32504783352564],[5.72637536320421,51.32544996451834],[5.726577130996739,51.32548800129194],[5.731527401552509,51.32642131423036],[5.732161581789438,51.326540866279096],[5.732342626135562,51.32657489155515],[5.732343330144846,51.32657502429972],[5.732716478628766,51.32664272657109],[5.734446412038493,51.326956600410384],[5.737915424813954,51.32761886844307],[5.738389653236762,51.3277089447137],[5.74183210021216,51.32836273595091],[5.74395440837926,51.328776837297966],[5.745374981368162,51.329044062840524],[5.745379148417563,51.329044850022775],[5.745895788598955,51.32914203722536],[5.746212843395341,51.32920168035704],[5.746219625613906,51.329202953828336],[5.746233736107048,51.32920560695125],[5.746342468153204,51.32922614355569],[5.746637153032208,51.32928180059505],[5.747051578273451,51.32936008017366],[5.747055860302855,51.32936088491823],[5.747319739060699,51.32941072981369],[5.749040513342574,51.32973778194801],[5.7497675077065,51.32987595210827],[5.750809105946925,51.33007381895178],[5.752477133183604,51.33039065700666],[5.753200928853357,51.33052813266273],[5.756631722316437,51.33118031041891],[5.760067885678115,51.331833152135154],[5.760082299832336,51.331835892498944],[5.760092848187907,51.331837899172235],[5.760181920046983,51.33185484538386],[5.760192497108029,51.33185685195614],[5.760205359230908,51.33185930064657],[5.760258086576732,51.33186931601633],[5.760265961892176,51.33187080988864],[5.760268836118594,51.3318713579842],[5.761635228486726,51.33213090071682],[5.763759412346418,51.33253434363738],[5.765617094776384,51.33288697372118],[5.765782153532863,51.332918302428055],[5.767393489692187,51.33322414525432],[5.769691162933635,51.33366067549438],[5.770448694285646,51.33380458505483],[5.771055766147665,51.33391989807218],[5.771061098314813,51.33392091420501],[5.774637866967436,51.334600225186044],[5.774655832913748,51.33460363508002],[5.77702103761288,51.335052569356506],[5.777028899672513,51.335054062142014],[5.777198904157033,51.33508632893406],[5.777207441722751,51.33508794528818],[5.777366537318941,51.33511814499571],[5.778315250728554,51.335298189827085],[5.780231155504002,51.33566177152776],[5.780240081417563,51.33566346724838],[5.7818654249088,51.335971876478894],[5.784203458490893,51.336415256147845],[5.784249584254639,51.33642399778747],[5.784904273679676,51.33654814609321],[5.785299601618958,51.33662311011328],[5.785821220958484,51.33672196422136],[5.785831139073455,51.336723844882584],[5.786134647915311,51.33678136749074],[5.788071228953444,51.33714836315509],[5.788076446836947,51.33714935193757],[5.78825162697095,51.33718254661423],[5.788277759558593,51.33718749932416],[5.789011472521372,51.33732657041912],[5.790886950542986,51.33768201778882],[5.792165829070266,51.337924382769515],[5.795597862741875,51.338574143328515],[5.799032867197002,51.3392241610136],[5.802469278793414,51.339874486086195],[5.803386759931596,51.34004803848134],[5.805896987633574,51.34052283566192],[5.808209648864084,51.34096062119584],[5.809330276742299,51.341172736284356],[5.812767972102939,51.34182288837474],[5.817591892250045,51.34273632916893],[5.817763765319273,51.34276887155205],[5.818149581958882,51.34284191678213],[5.820114844715136,51.34321397362911],[5.824033202838962,51.34395585842875],[5.830656055342996,51.34515357691237],[5.831839040823266,51.34536720702117],[5.83214183435324,51.3454218891307],[5.833970860953911,51.34575214747232],[5.834120412779444,51.345779178332144],[5.834683753911631,51.345881033787784],[5.840183689254177,51.34687517589267],[5.840193769767748,51.346877060292606],[5.843830277239303,51.34755729981836],[5.844579238452626,51.34769747202507],[5.845822445646141,51.347930130832886],[5.845955770935525,51.3479550800799],[5.846286143937601,51.348016906814],[5.846521445187072,51.34806094117846],[5.847474677241607,51.34823931851579],[5.848223458440516,51.348379333228316],[5.850025444497143,51.34871626067581],[5.850913942740543,51.348882372692074],[5.850926066270925,51.34888463455095],[5.85093249482887,51.34888584042453],[5.851050178476254,51.34890784386455],[5.854766100100793,51.34960308507581],[5.855649901083287,51.34976828103385],[5.858433400937886,51.35028850807137],[5.858603947021,51.35032038446819],[5.8587833240768,51.350353905771925],[5.85881821621799,51.3503604701599],[5.859024146231725,51.35039921394985],[5.859518736391754,51.350492266224876],[5.859527193417008,51.35049385890809],[5.859863446236673,51.35055711553461],[5.860242905879271,51.35062851038968],[5.860903277340277,51.35075273979707],[5.860937537293614,51.3507591892682],[5.862328183981847,51.351018569415494],[5.862332283076313,51.35101933472251],[5.863494070308146,51.351236011550405],[5.863497291578867,51.35123656467405],[5.864127613403931,51.35135589195011],[5.864349621130891,51.3513979043619],[5.864382113272266,51.35140405444433],[5.864398438436083,51.351407142641385],[5.865654131269712,51.35164473473073],[5.865794960838008,51.35167138332568],[5.865947944672528,51.3517003278794],[5.867305059046213,51.35195708994888],[5.86740742834143,51.35197646135791],[5.868329273415962,51.352150869758496],[5.870359647095207,51.35253496269487],[5.870519080735261,51.35256511496593],[5.872262551695191,51.35289488587438],[5.872832690018812,51.352999926775475],[5.872963638987475,51.35302405509069],[5.873402989146808,51.35310499118877],[5.873430663439973,51.35311008919269],[5.873461139333623,51.353115400214435],[5.873611433619321,51.35314160435822],[5.873629569601719,51.35314476460195],[5.873680415923038,51.35315410738276],[5.874421782569573,51.353290371577664],[5.874481288533808,51.353301331732816],[5.874543225211772,51.35331272214067],[5.874620934531156,51.35335465356899],[5.874657248042917,51.353374250109795],[5.874760990838023,51.35343023892258],[5.875262930146355,51.35370109225951],[5.875286537963427,51.35371383840559],[5.875289714716561,51.35371556893104],[5.875335748185233,51.35374058975284],[5.87552347085934,51.35384061286793],[5.875715930053294,51.353943159662435],[5.875847360020321,51.35401317984174],[5.876010077994807,51.35409987772913],[5.876165334668578,51.35417748302404],[5.87616699514267,51.35417837493875],[5.876319885826633,51.35426020573678],[5.877683480478061,51.35499004753522],[5.877823034860529,51.35506474144757],[5.878501349111861,51.35542777363121],[5.878536393550593,51.35544652937106],[5.878603493586652,51.35548244442371],[5.878699460558376,51.355532691710685],[5.878717975939975,51.355542968741425],[5.87881287855526,51.355595674385896],[5.878843843663343,51.35561287420184],[5.879440821052531,51.35594437875294],[5.88058534794346,51.35657991142803],[5.881152178181595,51.356894653889384],[5.881372715486835,51.35701704556587],[5.882186442010326,51.35746865132196],[5.882213394066399,51.3574836021097],[5.883319919922998,51.358097678351065],[5.883343926232075,51.358111005453466],[5.884293905843777,51.35863840345864],[5.884769539438111,51.35890245188551],[5.885207491828334,51.35914558061779],[5.885318370927366,51.359207129638776],[5.885673356640338,51.359404192929276],[5.887238711107019,51.36027319635376],[5.887273799243237,51.360292650426096],[5.888069370574324,51.36073427072665],[5.889176750556374,51.361348971192],[5.889224278706897,51.36137533743875],[5.889295022189842,51.36141459250565],[5.889732833727776,51.36165748921481],[5.890732929786314,51.36221233150607],[5.890778711741505,51.36223773387413],[5.890798547637828,51.36224877633113],[5.891177121174599,51.36245946495552],[5.892324941399496,51.3630982845886],[5.89254544186441,51.36322099699335],[5.892662193966645,51.363285965316976],[5.894545704905574,51.3643341394262],[5.89457211164704,51.36434838861763],[5.894711021968249,51.3644233618715],[5.894743120500746,51.36444068738475],[5.895127610983009,51.364648182387455],[5.895273397880183,51.364729309329874],[5.895306283105035,51.36474761104402],[5.895682239749056,51.36495682236984],[5.895778599051016,51.365010442770036],[5.898270582904207,51.36639714324095],[5.900356209847763,51.36755761484966],[5.904181977116388,51.36968607266354],[5.905549864536125,51.37044701449496],[5.906775424593669,51.37112758552034],[5.90686118712013,51.3711752844583],[5.908373795530371,51.3720164565455],[5.916392300634721,51.37647474626373],[5.918152628319735,51.377453302276045],[5.918248142998997,51.37750631480789],[5.918636308469849,51.37772207567527],[5.919128206765785,51.37799548377645],[5.919241940524745,51.37805869559164],[5.919871277441251,51.37840851653427],[5.921318697923519,51.37921304630288],[5.922384225181467,51.37980527887556],[5.922390789185536,51.37980892517505],[5.922524166388102,51.37988305495164],[5.922545217681552,51.37989476062353],[5.923309604113347,51.38031957494536],[5.924412457818741,51.380932480535684],[5.925061249135035,51.381293033527555],[5.92542332221487,51.38149424052581],[5.928442066789141,51.3831716673286],[5.928588145350813,51.383252832429775],[5.928594724923634,51.38325649628787],[5.930034021755086,51.384056201223316],[5.931170577251294,51.38468766408266],[5.931287598178677,51.384752673623936],[5.930794519148307,51.38532684726575],[5.930733747612042,51.3853976035446],[5.93071694306745,51.38541717880179],[5.929760770103869,51.386530574445494],[5.929463597595055,51.38687660019165],[5.929340572595045,51.38701984404923],[5.928969254055779,51.38745218303673],[5.928606558484121,51.387874476129134],[5.92754008571613,51.38911615129668],[5.92749126495584,51.389172989581844],[5.927123454480618,51.38960120733633],[5.926858171467096,51.38991005333547],[5.926586677493834,51.390226127548615],[5.92615059553132,51.39073379615545],[5.926136678241443,51.39075000453212],[5.925990545146177,51.39092011149141],[5.925866364640342,51.391064678287464],[5.924803867332889,51.39230151828661],[5.92366698293861,51.3936248760538],[5.922981815543178,51.39442237430271],[5.922934698615607,51.39447721625401],[5.922659393841641,51.39479764020938],[5.922260052084233,51.39526243691984],[5.922072852503379,51.39548031442574],[5.921888514628208,51.39569486160201],[5.921627158257519,51.39599903010987],[5.92088683093678,51.39686064351677],[5.920034152602747,51.39785296949291],[5.919104708336974,51.39893456625],[5.919087596061591,51.39895448276574],[5.918965228992249,51.399096867416105],[5.918886443582609,51.39918854470909],[5.918606913880244,51.39951382310145],[5.918369290674282,51.39979033401749],[5.917961241017848,51.400265132919074],[5.916498757527773,51.40196679510259],[5.916271303986478,51.402231444080094],[5.916257308776401,51.40224773249831],[5.915798862322798,51.40278110804533],[5.91517869359742,51.40344684726075],[5.915048639012787,51.40358645798706],[5.914901364869788,51.40374454671774],[5.913455597393317,51.40529646550831],[5.91284900332902,51.405947559800886],[5.912183815524482,51.40666153113598],[5.912179371839718,51.406666297265],[5.910973760479424,51.40796024611871],[5.909401711919653,51.40964734277565],[5.907503430698772,51.411684353997856],[5.906767981711602,51.41247349335983],[5.904692424621296,51.41470040001777],[5.902907788927514,51.41661496826028],[5.902561371411363,51.416986588846335],[5.902480653443496,51.41707317562017],[5.902129200919768,51.41745019247363],[5.90040244802552,51.41930240678219],[5.900259959128936,51.41945525096118],[5.900246592254644,51.41946958406402],[5.899242024753228,51.420547043246025],[5.898353929325395,51.421499532505564],[5.898145140053765,51.421723460790105],[5.896560124017636,51.42342328195076],[5.89604440398879,51.423976324801146],[5.895853195546333,51.42418136750759],[5.895821327272125,51.4242155382654],[5.895711642203653,51.424333159206796],[5.894411461460696,51.425727336844496],[5.894145669578087,51.42601232420238],[5.893769511532519,51.42641565207635],[5.89303959844237,51.42719826065667],[5.892324779897614,51.42796464623605],[5.891954486962931,51.42836164153341],[5.891780337072644,51.42854834723626],[5.891666339679693,51.42867057623405],[5.89153071281754,51.4288159819905],[5.891441582913415,51.4289115412069],[5.891426476786812,51.42892773249457],[5.89048572865392,51.42993625363297],[5.890285076435988,51.43015135928254],[5.890272669761727,51.430164662344936],[5.890209854360542,51.430231990004785],[5.890190285000823,51.43025297345044],[5.890113115662314,51.43033569791699],[5.889936031130515,51.430524966283436],[5.886888823802268,51.4337814936531],[5.886655723949159,51.43403079060472],[5.885714371881066,51.435037504110724],[5.882687148520981,51.43827459753272],[5.882574449863202,51.43839507706781],[5.882570668116559,51.438399120123606],[5.882566843908307,51.438403226281366],[5.8814985364046,51.439549860751555],[5.881206414474816,51.439863397094214],[5.878741067267073,51.44250920951508],[5.878486644824664,51.442782211209824],[5.877294006556006,51.44406201382371],[5.876660739111943,51.44474153090145],[5.876367906979706,51.445055390399716],[5.876269442058105,51.44516091852105],[5.875926560604436,51.445528407264405],[5.875774906740123,51.44569095813571],[5.875700174200605,51.445771037894254],[5.875698652749619,51.44577268921941],[5.87565239074992,51.44582224054389],[5.875604592904255,51.445873452222614],[5.875537127067048,51.44594576207638],[5.875536728841711,51.44594618621791],[5.875503507647441,51.445981777186475],[5.875440264919427,51.446049529951594],[5.87531976634024,51.446178637253],[5.875150416012228,51.44636010190369],[5.875006378795187,51.446514422089514],[5.87496597491246,51.44655771938738],[5.874964438928069,51.4465593617747],[5.874768881673809,51.44676148387825],[5.87423248106828,51.447315880695434],[5.873050740464531,51.448574173040576],[5.872097981085448,51.44958859684611],[5.871816756329466,51.44989865704461],[5.87171996294134,51.45006860606045],[5.871695277412881,51.45011196274487],[5.871611621305061,51.45042695442123],[5.871261283881139,51.45175810507631],[5.870918497631187,51.45307743886919],[5.870915539931265,51.453088839951086],[5.870219424726645,51.4557361679085],[5.870212412379829,51.45576277683689],[5.869836807369663,51.45718830170607],[5.869734450966688,51.457576744780845],[5.869518487614967,51.45839635596382],[5.869284271422686,51.45929614131857],[5.868588301529256,51.46196958777638],[5.868560603933049,51.46207599461204],[5.868041679094611,51.46406915338888],[5.867726204076063,51.46528168461473],[5.867494593078698,51.46617181006173],[5.867389490802438,51.46657521939655],[5.866951993884124,51.46825432836268],[5.866293822031192,51.47076113091862],[5.866211541649325,51.471074458497746],[5.866199890223855,51.47111884804375],[5.866012437710219,51.47183273426983],[5.865826459984659,51.4725409691335],[5.865750899297671,51.47282871363501],[5.865639591092506,51.473252605067856],[5.865492505259307,51.47381270635743],[5.865453228339402,51.47396227902165],[5.865266970612172,51.47467153871292],[5.865175237794096,51.47502087730145],[5.865030050544476,51.475573698201856],[5.864987504256074,51.47573571556604],[5.864798463920923,51.476455520637245],[5.864614262206441,51.47715687853906],[5.864422068222338,51.4778886688652],[5.864320190120156,51.47827660106639],[5.864309780567105,51.47831622125694],[5.864270149915066,51.478467116253505],[5.863938060900885,51.479731442876314],[5.863848356047658,51.48007292474975],[5.863685514157316,51.48069288113339],[5.862803950664466,51.484049015006285],[5.862791669800711,51.484095797735634],[5.862666544466594,51.48457213777217],[5.862448631830457,51.48540171016953],[5.86233920179169,51.48581829138002],[5.862335947742539,51.48583067319116],[5.862310289635332,51.48592835086933],[5.861663925917034,51.488388764604245],[5.861484601358782,51.489071337312666],[5.86147252542472,51.48911731904522],[5.861460255301106,51.489164011678945],[5.861305104953875,51.48975451264432],[5.860801376523755,51.491671706701744],[5.860728717477283,51.49194824459517],[5.860723724298076,51.491966548024514],[5.860714493836519,51.49198032931305],[5.860334044464102,51.49254869544603],[5.859715368854041,51.49347294677031],[5.859710958978535,51.49347953541791],[5.85964828471354,51.49357317351495],[5.859604937381859,51.49363795129606],[5.858595660967726,51.495145979671626],[5.857871978010889,51.496227472017566],[5.857594887170701,51.496641560204644],[5.856632568875726,51.498079727687625],[5.855625172022757,51.49958516899448],[5.854825194954054,51.50078054791123],[5.853980394468645,51.50204285095719],[5.85361673190063,51.5025862013542],[5.853415130095587,51.502887420248],[5.852573783724697,51.504144422511146],[5.852552220738668,51.50417664330498],[5.852524352229715,51.50429782405932],[5.85243892679615,51.50466940049263],[5.852424682132995,51.50473135388906],[5.852218784909046,51.505626798904096],[5.852202084759144,51.505699404744036],[5.851889340671901,51.507059454310635],[5.851887699607714,51.50706659791986],[5.851882886219334,51.507087497973366],[5.851857152178768,51.50719942060114],[5.851852532051748,51.50721950190656],[5.851373902441519,51.509300776011024],[5.851216666471455,51.50998442996603],[5.851201163113948,51.510051817393794],[5.851188473902334,51.51010701386556],[5.850848316673915,51.511585991383946],[5.849813543783169,51.516084474396735],[5.849165303355454,51.51890211193269],[5.848776449535388,51.52058295536706],[5.848700977381018,51.520909149849636],[5.848285724420005,51.52270392916521],[5.84773559231177,51.5250814399051],[5.847685245149941,51.52529904030671],[5.847680993380887,51.52531743906189],[5.847668302418763,51.52542022150018],[5.847665821240329,51.5254313323872],[5.847661879624422,51.52544905576233],[5.847601166975954,51.5257217261026],[5.847496624793085,51.52619134183609],[5.84748093950977,51.52626176757251],[5.847333669409793,51.526892279316336],[5.847148411805803,51.52768534012926],[5.846942758605374,51.52857403123881],[5.846710468562952,51.52957985117931],[5.846366756792615,51.53106800420203],[5.845960500583034,51.532858486326774],[5.845916290821711,51.53305328421176],[5.845682217577791,51.534078263651146],[5.845434661733256,51.5351622166016],[5.845397995284955,51.535322261146646],[5.845129131371182,51.53649568091941],[5.844811963497953,51.53787327960764],[5.844734052510186,51.53820911642669],[5.844724824577914,51.53824888279378],[5.844722172287719,51.5382603178684],[5.844682829450208,51.53842990068272],[5.844680522536907,51.538439851261806],[5.84466716396057,51.53849741352423],[5.844664290622446,51.53850980226918],[5.844648777289426,51.538576685300114],[5.844551812561728,51.53899452893098],[5.844267270576839,51.54024006136412],[5.843779364093203,51.5423791761051],[5.843619011316902,51.54307508133661],[5.843499651449813,51.54359303802268],[5.842898483480102,51.54620118224234],[5.842794759009283,51.546651131228906],[5.842752263462376,51.54683696817508],[5.842583867281689,51.54757348714034],[5.84250590269304,51.547914445915524],[5.842468667317513,51.54807730501709],[5.842279021675447,51.54884222974658],[5.842028215921011,51.54985381821918],[5.841627496364207,51.55161311426309],[5.841522380135859,51.55207198409124],[5.841172756142181,51.55359819058333],[5.841092085562774,51.553950358662455],[5.840516684876086,51.55645439712234],[5.840490502952109,51.55657035434808],[5.840439671938239,51.55679552128974],[5.839956896032191,51.5589338323731],[5.839798521327977,51.559617049378204],[5.83977955212181,51.55969889324074],[5.839627739509824,51.560353761085885],[5.839462965165411,51.56106869653328],[5.839120820707842,51.5625531408428],[5.838814412011875,51.56390624649796],[5.838612623664466,51.564813061811726],[5.838436523094383,51.56556702328],[5.838238544727365,51.5664146144173],[5.838338560186218,51.56640372947245],[5.838495815781616,51.56638661890785],[5.838560605289928,51.56637956418722],[5.838594073381679,51.56637592030789],[5.838761932515478,51.56635765381912],[5.83877840845327,51.56635670924891],[5.838835935381473,51.56635032064281],[5.845866706552065,51.56555954783316],[5.846064994676507,51.565537313201204],[5.848538897878526,51.565259887274046],[5.848565736453171,51.565256877943774],[5.848664245330883,51.56524582830069],[5.84871780715906,51.56523981902054],[5.852997350072852,51.56475977353866],[5.85586151000077,51.5644279979356],[5.857028134063172,51.56429211317707],[5.860216709419062,51.56392066068397],[5.86235047726999,51.563667365530065],[5.863122882804197,51.5635756648643],[5.867393742930301,51.563068511064245],[5.870892475539386,51.56264419296317],[5.871964973972458,51.56251714169699],[5.877526338959369,51.56185813455173],[5.885774387316075,51.560880246942496],[5.886476460155512,51.56079697937778],[5.890474540031259,51.560322676176646],[5.890646039525806,51.5603023238579],[5.890777820743851,51.56028692449979],[5.891466230123556,51.560204674555656],[5.891926678771764,51.55995712271466],[5.892953782212929,51.55940489774368],[5.893096412866204,51.5593281455244],[5.894853532337869,51.55838317694237],[5.894938246981963,51.55833759539429],[5.897029376013855,51.55721302059255],[5.897788525776763,51.55680475295404],[5.898670909784919,51.55633012521691],[5.900024269745353,51.555602125652435],[5.900133481847281,51.55554330917621],[5.900200127948219,51.55550751095765],[5.904892281953783,51.55298335342854],[5.906259415097197,51.552247822066235],[5.906662667982987,51.55203086563341],[5.908968605541204,51.552156858833335],[5.910950859080365,51.552265121119945],[5.912409573003831,51.552344765386266],[5.914412388036599,51.55245411701173],[5.91616163072857,51.55254958950245],[5.918123805894762,51.5526566436002],[5.918245432241076,51.55266328179787],[5.919790940545535,51.5527475720131],[5.920128840755074,51.55276598612334],[5.920540756585862,51.5527884658698],[5.92068431388173,51.552796286800536],[5.921384498809229,51.55283440862209],[5.922294901018716,51.5528840849263],[5.923070259223501,51.55292637366225],[5.925180641960251,51.55304134855599],[5.926618541895665,51.553119662014616],[5.928041874933351,51.5531972162449],[5.929492914646988,51.55327624252426],[5.929500417373662,51.5532766571356],[5.932549680553256,51.55344268764257],[5.934227115482183,51.553533901527445],[5.935112439799031,51.55358209435894],[5.935445013985705,51.55360019256977],[5.938049018867436,51.55411900051406],[5.938204833741977,51.55415008601135],[5.940452890818832,51.554597889463786],[5.940498567966157,51.554607111365456],[5.941668211367572,51.554839589011564],[5.944493954902618,51.555402774314054],[5.944589067935075,51.5554217363444],[5.945687062665765,51.55564040330855],[5.945977030035851,51.5556981630061],[5.947898825722812,51.556080857655225],[5.947906356927459,51.55608235859326],[5.948013484848242,51.55610368715329],[5.949007765865274,51.55630165222495],[5.949008864483914,51.55630187166168],[5.949566410523458,51.556412888404964],[5.952184325645682,51.556934110878956],[5.952275107032023,51.55695209885328],[5.952398704950299,51.556976759484634],[5.952975172402383,51.55708893589634],[5.95568987599886,51.55761769225158],[5.957319451172482,51.55793505603322],[5.9588510379617,51.55823328107508],[5.959199708653645,51.558300788271765],[5.959472899604877,51.55835423715373],[5.959785036141074,51.55841531479046],[5.963528321359113,51.559143968478864],[5.964022153770911,51.55924009360566],[5.967968362970923,51.560008133981896],[5.9693249984139,51.56027213425058],[5.970435890160615,51.560488302893475],[5.970492186810021,51.56049925785719],[5.970717719763651,51.560543075711884],[5.972405625659653,51.56087171377971],[5.975478481313753,51.56147175486133],[5.975596907155771,51.561494879990434],[5.976346230868999,51.561638160887426],[5.97791383259981,51.56211902121548],[5.97848266010893,51.56229349311263],[5.978505827466805,51.56230060286905],[5.978645120884372,51.56234331378009],[5.983531710409867,51.56384189898076],[5.983912983846431,51.56395878450072],[5.984693059436405,51.564198008288024],[5.986249180482059,51.564675193556724],[5.987044778217514,51.564898618698294],[5.987252238017161,51.564956879631005],[5.987365442707646,51.56498865793701],[5.990663075759271,51.5659147796029],[5.991119478589245,51.56604308296993],[5.99121190031438,51.56606906831981],[5.992961322846456,51.56656027546345],[5.993106096395663,51.56660092731739],[5.993110048627933,51.56660203042507],[5.993241807275846,51.56663902823018],[5.993245498956548,51.56664006077412],[5.993451092073992,51.5666977451503],[5.993902960743998,51.56686978278975],[5.99405822393539,51.56692893190935],[5.99419026256521,51.56697918569055],[5.994675523235959,51.56716389190901],[5.996332119317252,51.567794408497846],[5.996416785723972,51.5678266863905],[5.996679625644378,51.567926619675816],[5.99675633268922,51.5679558197203],[5.997777615005906,51.56834463823325],[5.998415889072401,51.56858763083463],[5.998644234114792,51.568674562551614],[5.998871136057282,51.56876137553547],[5.998980854456328,51.56879001480944],[5.99987770909649,51.569023789200514],[6.000679082147184,51.569232700602036],[6.001015755739835,51.569320470194185],[6.002814265105896,51.56978930406378],[6.002899220912231,51.5698114633458],[6.003083506764145,51.56985952621449],[6.003182703074189,51.56987770010364],[6.003487664076373,51.56997583206973],[6.004252871744821,51.570243516868445],[6.004284436152655,51.57022790740998],[6.004344727929737,51.570198087727434],[6.004386923521505,51.57017721757213],[6.005056574795627,51.569846018601346],[6.005060529262504,51.56984406509773],[6.005543297272528,51.569605285489715],[6.006174162028446,51.56929326066181],[6.007413386476283,51.56868031344451],[6.008249727581924,51.56826661963843],[6.008280873690116,51.56825120906534],[6.008340415282864,51.56822175982647],[6.009612975553004,51.56759226115449],[6.009800677522991,51.56749940446827],[6.011860707665755,51.566480304988374],[6.012036123572041,51.566393523870055],[6.012912628231427,51.56595944657382],[6.014736049753108,51.56505637681444],[6.014799579109774,51.56502491629994],[6.01535493749219,51.564749858347945],[6.016396191135953,51.564234122219396],[6.016551835606103,51.56415702279657],[6.016577045800321,51.56414453636044],[6.017207883297299,51.563832073896506],[6.017788779912665,51.56354432712991],[6.017796801145687,51.563540355723084],[6.017800324754305,51.56353861085168],[6.017938948154221,51.563469943051466],[6.017944620296087,51.56346713488485],[6.018005151566311,51.56343715397033],[6.018011153135441,51.56343418222307],[6.018212040092702,51.563334678842864],[6.020221794103843,51.56169399817188],[6.020231447593271,51.56168611659899],[6.02057543322795,51.56140515819483],[6.020586325389075,51.56140647444225],[6.021722438154971,51.56047402889278],[6.022032739218442,51.560219352603134],[6.023628316365482,51.558909718177794],[6.023631238358907,51.55890727527552],[6.025336063744022,51.557512886369146],[6.027374572920192,51.555851473318015],[6.027566307447763,51.5556947358319],[6.02853063372956,51.554906410255796],[6.028560568720859,51.554881931107076],[6.028618557107038,51.55483452020852],[6.028665213140344,51.55479639405496],[6.02867660253734,51.554787073011994],[6.029115545449546,51.55442824547158],[6.030673319565437,51.55315054093334],[6.030837854930821,51.55301639291465],[6.031668898096588,51.55233879855995],[6.031709348025009,51.552419448075376],[6.031716604109404,51.55243391604496],[6.032130699443546,51.55325964749961],[6.032211751385293,51.55342125996763],[6.032270322327322,51.55353805227414],[6.032689262773486,51.55396885697598],[6.032972077919513,51.55425969228829],[6.033034664377545,51.55432404805246],[6.033162517842085,51.55443741867613],[6.033277991045924,51.5545167089944],[6.033444653832927,51.55461224654958],[6.033490343291089,51.55467669553547],[6.033514216398951,51.5547472247997],[6.033373283377853,51.55487704824576],[6.03332163595469,51.554954260437626],[6.033335300165099,51.55502581699005],[6.033363283469325,51.55506802666172],[6.033386595400366,51.55510317895233],[6.033422137878635,51.55514257823601],[6.033455585325733,51.55517965199744],[6.033528824826031,51.5552335304988],[6.033687760859476,51.555447475594534],[6.03353171438406,51.55551551261468],[6.033405847938567,51.555662583228695],[6.033300788531434,51.55578534965389],[6.033230421478303,51.556002289062505],[6.033209466160207,51.55606690889189],[6.032987424099376,51.55635641768833],[6.032735252097324,51.556685211977246],[6.032666460427968,51.55677489621991],[6.0326311796023,51.556820889292105],[6.03261516942498,51.55683582730767],[6.032597778746562,51.556852049362874],[6.032727785772525,51.556866971723835],[6.033845172532936,51.55710933429705],[6.033957940090656,51.557169205047266],[6.034320654226923,51.55749726706821],[6.034433873020718,51.55752899977648],[6.034812312160279,51.55757202675396],[6.035970916595063,51.557688566434955],[6.036104528918596,51.55773856648011],[6.036869630454972,51.55802487915793],[6.037203768443625,51.55811971375864],[6.037307932509265,51.558149273823034],[6.03746881472929,51.55803502916284],[6.038014784783286,51.557737155025194],[6.038195699935429,51.55763843835419],[6.038795058214218,51.557362645276754],[6.039774169797769,51.55685856916629],[6.039968661396556,51.55673478487976],[6.040136805335236,51.556667058164365],[6.04091293929004,51.55663044817112],[6.042217043075936,51.55676660630568],[6.042394466935609,51.55681055574022],[6.04432775357024,51.55744752490372],[6.04438268987871,51.557487036533004],[6.043478511021926,51.55811351822597],[6.04291623134628,51.55854202766107],[6.042782235697606,51.558678870798886],[6.042866160624899,51.55869462474434],[6.042959743660402,51.55871211320549],[6.043769763642106,51.558863502768084],[6.044515225616471,51.5590028183597],[6.04458197247497,51.55901529689638],[6.044655197304401,51.559028979405475],[6.045516668504637,51.55830034625728],[6.045588482164121,51.55833113293026],[6.046425104816429,51.55764101536741],[6.046765669520032,51.55786534280664],[6.047080217600116,51.55800397263498],[6.047220809211703,51.55806593870223],[6.048120780938219,51.55846254527134],[6.047563839506026,51.55874974221112],[6.046841202323908,51.55913360334467],[6.046273731222327,51.55944161775548],[6.045456249999529,51.56008973810853],[6.04485171027789,51.56056901218531],[6.044343722819446,51.560982490013856],[6.043791659761493,51.56143026303585],[6.043500533610263,51.561692665160244],[6.042854504712853,51.56226384797135],[6.042081424861847,51.563038527673015],[6.041452863566234,51.56364744767721],[6.04142216030153,51.56368058168775],[6.040809456912445,51.564348349206846],[6.04071200096077,51.564455286275944],[6.040705259096222,51.564463845407175],[6.040589033510899,51.56461148096882],[6.04017695525597,51.565134939719876],[6.040123082897758,51.56521188863284],[6.039731852081618,51.56583284810389],[6.039308171026851,51.56654802856619],[6.038745830180587,51.56751575807596],[6.038585443390358,51.5678686283092],[6.038406560196596,51.56826855009718],[6.038270188102979,51.568564413630824],[6.038135915366072,51.568846871924784],[6.038007829260544,51.569120306756716],[6.038005463986763,51.56912535368003],[6.037870396661869,51.56941097115144],[6.03776571891148,51.569677443834735],[6.037658985504351,51.5699585796641],[6.03758970519819,51.57018800089452],[6.037554744253993,51.570424781710734],[6.037554573898627,51.570714852488884],[6.037559562381839,51.57097235495449],[6.037568129780605,51.57123801733997],[6.037585507613349,51.57156384691291],[6.037595485266864,51.57156757568357],[6.037657290945575,51.5726289842219],[6.037736955468373,51.57338531099159],[6.037762666578599,51.57361609108552],[6.037818242490861,51.574114761005454],[6.037960904496527,51.57482947806153],[6.038199463141983,51.57563084349935],[6.038436895165162,51.576353121946454],[6.038637867073304,51.57698312599625],[6.03871228127557,51.57721639393274],[6.039043878932504,51.57810336092874],[6.039313758952619,51.57881486772676],[6.039592173115174,51.57972497049268],[6.039784658600972,51.58087015193391],[6.039717894333378,51.58161595958907],[6.03957698686551,51.58210829145422],[6.039536570035827,51.5822495068624],[6.039419254288225,51.58259569224889],[6.039334200960029,51.582846694544266],[6.038961609300607,51.58357715571198],[6.038660328715404,51.58413089328816],[6.038572354842071,51.584285506051906],[6.038472942498425,51.58445247020949],[6.038186057516922,51.584900129998765],[6.038071842629714,51.585074439209876],[6.037968151857167,51.5852260468522],[6.03774912601193,51.58551733555923],[6.037632218881441,51.58567316928478],[6.037384795545416,51.58596974791908],[6.037144483835323,51.58625432233816],[6.036892816242631,51.58653508517967],[6.036594930708663,51.58685940341552],[6.036522204550573,51.58693795628597],[6.036460547728897,51.587004555409315],[6.036358815159016,51.58710714360803],[6.035874185669721,51.58759587779253],[6.035578177651946,51.58788294223546],[6.035420246306505,51.58802357639155],[6.035263706216461,51.5881646970009],[6.034956989783972,51.58842188641409],[6.034640910118898,51.588678443714386],[6.034156235665223,51.589059251024686],[6.033389723887026,51.58968291054619],[6.032758547337135,51.590140045785354],[6.032059932568028,51.5906435184199],[6.03054733061713,51.591633683583524],[6.029846719521993,51.592092290551065],[6.028785101953196,51.592855519575075],[6.02835498609146,51.59325976932629],[6.02771112920158,51.59386843482704],[6.027244145452762,51.594297961168245],[6.026947118863723,51.594687544187984],[6.026281488542417,51.59557685257042],[6.025945238095925,51.59615332698328],[6.025573028562708,51.59679140828114],[6.025285493156683,51.59737251355236],[6.024943469380397,51.59806370461938],[6.024425491042743,51.59941107493488],[6.024075842918935,51.6006579298731],[6.024047087282631,51.60076046901337],[6.023836847486421,51.60238921698191],[6.02378399667941,51.60303544022641],[6.023766879364697,51.603245332106766],[6.02374716824827,51.603877082648495],[6.023788872465887,51.60425654263622],[6.023854912714745,51.60501205147825],[6.023870005766687,51.605153453043954],[6.023933535546598,51.60574852534858],[6.023932665374089,51.60677603999609],[6.023955906770171,51.60738238782955],[6.024021913427165,51.60862823562208],[6.024051152785439,51.60905404659943],[6.024086160458323,51.609563619722756],[6.024088857500545,51.60964666153611],[6.024106131357858,51.610179432432844],[6.024120289064504,51.61061575249423],[6.024121578529934,51.611550041128645],[6.024118111295135,51.61262871567174],[6.024101260489873,51.613443372181486],[6.024105360130441,51.61414097029383],[6.024106754374261,51.614378896114864],[6.024066369552915,51.61480320741903],[6.023918098957002,51.61578046757052],[6.023853060141944,51.61612536214522],[6.023413811508457,51.617245239425145],[6.023097778418673,51.6179685785547],[6.022960114055405,51.61825380431079],[6.022939361256268,51.61829681164179],[6.022771845854421,51.61864262208555],[6.02271538916825,51.61875915396597],[6.022659502797497,51.61885150287092],[6.022589818073492,51.618948421112506],[6.022541856943755,51.6190087178156],[6.022020519946127,51.61966414408214],[6.020947473368443,51.6209231807816],[6.020630165691335,51.62129137269296],[6.020207009660009,51.6217117323076],[6.02005599254716,51.621858797156115],[6.019979894169928,51.621921141657566],[6.019802071957643,51.62205154216902],[6.018950138300129,51.62263673287839],[6.018152282841266,51.623162029900676],[6.017954604832092,51.62329217511802],[6.015637045187924,51.62479894619681],[6.015207119879087,51.625070020033654],[6.014286063291247,51.62561527759184],[6.014006917843739,51.62576888204929],[6.013611702205812,51.625986352587056],[6.012500620082712,51.62657863602465],[6.011528551886041,51.62709484086506],[6.010849730655999,51.62749136176622],[6.010678380651369,51.62760229790125],[6.010537500360242,51.62769725115588],[6.009730915279325,51.62824087343468],[6.008326897256477,51.62923872078505],[6.00824332567877,51.62931638709091],[6.008189816828442,51.629366109437086],[6.007671152350873,51.62984813426903],[6.007462855207226,51.63002559872489],[6.007227939040309,51.63021057470111],[6.006496909532514,51.63067170625156],[6.00543968776073,51.63126750160521],[6.004859124216987,51.63158005202816],[6.004470664844592,51.63177661958579],[6.00380899585871,51.63213663093019],[6.003633419239365,51.63222822604067],[6.001563019114557,51.63330829632486],[5.999296871218981,51.63486325043944],[5.997320806733715,51.63612887214861],[5.996792841577419,51.636455759302294],[5.996352334172236,51.63671914149683],[5.996256116114584,51.63676125146302],[5.99618803101607,51.63679105310364],[5.996016429999719,51.63687031031892],[5.993912799810376,51.637719396315454],[5.991401136047453,51.63873307796223],[5.988467738456054,51.63996404626276],[5.986735452032051,51.64069092221247],[5.986377973042223,51.64084081635703],[5.986204887139027,51.6409140172169],[5.985789956417278,51.64112015865293],[5.985510443569435,51.64124949838679],[5.985358477316313,51.64131185740279],[5.985083612233797,51.64142465102806],[5.984664329593434,51.641584186051176],[5.983877440640665,51.641863293699565],[5.982920728683878,51.64221804725617],[5.982122036284649,51.64251969294499],[5.98185044092318,51.64261310053116],[5.980989939440755,51.64283072921242],[5.980605101303348,51.64292082548163],[5.979537909627503,51.64313565346873],[5.979352502418022,51.64317297850003],[5.976607018682194,51.643783110859076],[5.975527097441853,51.64402308976467],[5.975082732594818,51.64412799292427],[5.974936392597129,51.64416705617284],[5.974752099432691,51.64424186030324],[5.974163005756862,51.64449604355212],[5.973931245792022,51.64461076978261],[5.973787991511347,51.644717591167584],[5.973072086109188,51.64512107828925],[5.972673659333389,51.64537757086883],[5.97238613325719,51.645570379535236],[5.971997204617757,51.64587377940256],[5.971665516802314,51.646132514636136],[5.969591678349887,51.647574671369085],[5.969393664565207,51.6477123664737],[5.968800869542458,51.648146549079996],[5.968543157835162,51.648361590845134],[5.968484415802436,51.64841061060574],[5.967931579633647,51.648864724932],[5.967469602354972,51.64928483108292],[5.966907588818199,51.649866814645414],[5.966620857324033,51.65017777971576],[5.966449135818955,51.65037417971709],[5.966431682971667,51.650395830072505],[5.966244195940622,51.65062845147312],[5.965611173819872,51.651466221568],[5.965204846399178,51.652096235679544],[5.965105473351566,51.6522503168453],[5.964855751888689,51.65273236572757],[5.964513738177738,51.65352223876272],[5.964256179082405,51.654154562402184],[5.964034336830112,51.65486406625811],[5.964024676507769,51.65490208223216],[5.96383816884809,51.655636049524325],[5.963677161936589,51.656281468798724],[5.96348206551365,51.657323610922006],[5.96337087795374,51.65826531302512],[5.963303483053372,51.65896107481827],[5.963281216704608,51.65919084611484],[5.963272795339539,51.659400144860385],[5.963243099896792,51.6601386780002],[5.963256410791583,51.660982419009535],[5.963276189949273,51.66142926743827],[5.963364692341485,51.662333428820155],[5.963540603796398,51.66362260455893],[5.963580557931482,51.66389298597128],[5.963753543492664,51.66506384826627],[5.9639008940333,51.66588524763605],[5.964049757795836,51.66689297525555],[5.964050500611395,51.66689795133899],[5.96413834111662,51.66749300231825],[5.964139094281027,51.66749765475634],[5.964224302633022,51.668026669592834],[5.964228244049399,51.66805122528792],[5.964281851426742,51.66838388473379],[5.964497594270938,51.670180562179844],[5.964643099703051,51.67197758552996],[5.96465210722058,51.67250440503378],[5.964658473720895,51.67287638014474],[5.964673807463206,51.6737730984894],[5.96458668960619,51.67557334520894],[5.964392770353629,51.67737204184275],[5.964067371076007,51.679173803791834],[5.963950208050046,51.67967262468006],[5.963737315101899,51.68057590496608],[5.963710839944037,51.680688223288016],[5.963325487583703,51.68187164869831],[5.96302990206603,51.68277934333993],[5.962404295607868,51.68457554657449],[5.961680730450627,51.68637406043118],[5.961383827590158,51.687128769271894],[5.960944405386613,51.68817672169018],[5.960173160211257,51.68997708580888],[5.959785329203569,51.69087770802227],[5.95955931082128,51.69140253893521],[5.959498588214875,51.69150021919037],[5.95938146437906,51.69171940545958],[5.959296966732194,51.691907627957626],[5.959197819386926,51.69214975518986],[5.959135083711663,51.69231597480044],[5.95906700650435,51.69253790535629],[5.958943033579526,51.69306226341345],[5.958904611309241,51.693173775873674],[5.95887348749369,51.69329515821015],[5.958731094551545,51.69385013149188],[5.958458751863808,51.69462464003199],[5.958224103507701,51.69526709108733],[5.958172083615863,51.695379928002474],[5.95785726982707,51.69606278675953],[5.957065136551503,51.697753711881305],[5.956898816058235,51.69811160543298],[5.956779269597752,51.69838425629946],[5.956567709799124,51.698940695544984],[5.956376371456869,51.6996330347151],[5.956314890218971,51.699883308607276],[5.956204777481395,51.70033147974251],[5.956124173985383,51.700777439975],[5.956079006423978,51.701142599570474],[5.956078792145018,51.7012727206454],[5.956078340241209,51.70152650903629],[5.956090238275237,51.70188572848222],[5.956235353119117,51.703484737314376],[5.95625736122331,51.70393442346309],[5.9562672692492,51.704377876323576],[5.956288529502027,51.705330032706954],[5.956297501166358,51.70570940084275],[5.956254824465288,51.70660595829729],[5.956178991686274,51.70724784802333],[5.955942556692377,51.70813087471836],[5.955940298472584,51.70813538001929],[5.955697288577872,51.70862293673485],[5.955557837514808,51.708875655824514],[5.95541663046114,51.70913152928971],[5.955291052661617,51.70930490069458],[5.954764554291217,51.70976677436251],[5.954100065415185,51.710279020986924],[5.953698189471734,51.710561591777996],[5.953203318429569,51.71091714916627],[5.952948906415493,51.711075320538406],[5.952163416911514,51.711518298558545],[5.951829717890197,51.71170058000061],[5.951499582406501,51.711855589690416],[5.951211161618093,51.711991017996276],[5.950746444595152,51.712203140376445],[5.950000078854151,51.712491220613245],[5.949417703078157,51.7127025547446],[5.948927124761243,51.712872547296676],[5.946890945956434,51.71339685171623],[5.946832082161188,51.713412009240606],[5.946061266919675,51.71361047424902],[5.945013046057085,51.71389025479347],[5.944976262017164,51.713900704021604],[5.944172242441975,51.7141290401495],[5.94313885810335,51.71440522769618],[5.942956755841019,51.71444681058151],[5.941296281986936,51.71477566315572],[5.940192309195542,51.71498573240734],[5.937676172441091,51.71535146906274],[5.937174709213399,51.71544155419657],[5.937074092022233,51.71546146010465],[5.935718999410667,51.7157295459848],[5.934024911752574,51.716098991340836],[5.933784909390837,51.716140398780276],[5.931637575910124,51.716510827283386],[5.930802811424842,51.716635961603636],[5.929207597211292,51.71690600301254],[5.928550331200964,51.7170018596038],[5.928461042094487,51.71701489233659],[5.927706363030512,51.717098196758705],[5.926424463491983,51.71720262122895],[5.92549877859637,51.71726575507675],[5.923049649225618,51.7174694328024],[5.922627644891213,51.71749166814677],[5.921103335264668,51.717571983085556],[5.920691698584966,51.71760226294769],[5.919472593282551,51.71767144929603],[5.919469627269011,51.717671498730155],[5.918321885466272,51.71769225056835],[5.917367480291273,51.71770949145542],[5.913465648583697,51.71779989691384],[5.91200190560243,51.71787657628523],[5.910572217819986,51.7180739822281],[5.909074552466548,51.71828075211598],[5.908167054980247,51.71840652529075],[5.907436834367409,51.71850772020145],[5.906765520032452,51.71863248708147],[5.906056453961771,51.71876426668431],[5.904689568383501,51.719088511447524],[5.902501043762285,51.719562405181996],[5.900763668908433,51.71993858766459],[5.899566798173329,51.720189938057715],[5.898238209765152,51.72054288304294],[5.897059864092576,51.720886709650244],[5.89378266018915,51.722063697280234],[5.89373686403281,51.722083912989504],[5.892459148178324,51.72264783142563],[5.892056633921406,51.72282547424668],[5.89162557147722,51.72304289638023],[5.890395368255041,51.72366335054497],[5.890033181164529,51.72386508233727],[5.888969820740195,51.72452805817037],[5.887959024370989,51.72519217476094],[5.887647358982731,51.72539807850556],[5.887271388666044,51.72571815060647],[5.886825374490913,51.72608929690447],[5.886634682132209,51.72626610705542],[5.8865481569133,51.72638917941596],[5.886467930710874,51.72650469240914],[5.886334559548821,51.72669524398652],[5.886027680180441,51.727169702468636],[5.88600059023747,51.72721217213764],[5.885404117649392,51.72831418768936],[5.885355152300115,51.72848238395035],[5.885317409370404,51.728744220676774],[5.885259428207029,51.72914633867443],[5.885158964048126,51.72960510362693],[5.885012006127699,51.72993011791534],[5.884826236503713,51.730530905380945],[5.884696311205636,51.730944016053606],[5.884667687348631,51.731085420440586],[5.884618180909445,51.731287811261275],[5.884552953220449,51.731670274509675],[5.88454664370362,51.73170725343233],[5.884508053516562,51.73200324107419],[5.884255995982516,51.733168154655154],[5.884081369651771,51.733919425427565],[5.88406884707852,51.73397332922968],[5.884065429498876,51.734044281736324],[5.884034551764771,51.734685191808055],[5.884002522084027,51.73531489793106],[5.883867420715668,51.73602277439973],[5.883842983489507,51.73616758539701],[5.883723524586051,51.7368752335116],[5.883565801664695,51.73755688675889],[5.883337809036514,51.738164339878075],[5.882057458568967,51.74066943730008],[5.881609418492556,51.741545972548195],[5.880598211721695,51.74435709244591],[5.880485699104043,51.7451703589981],[5.880450551605893,51.74542441650246],[5.880469481858979,51.74611271852824],[5.880493112102146,51.74697136132695],[5.880332250078864,51.748473608054105],[5.880326914888325,51.748549934574136],[5.880025538121108,51.749157751974636],[5.879829673599695,51.749471746727195],[5.879710170396843,51.74966791249372],[5.879567476620467,51.74990215232819],[5.879560505515788,51.74991359711632],[5.878241506549302,51.7510189834308],[5.877573681139302,51.75149269166116],[5.877007612929511,51.751897468782445],[5.876733592732118,51.75209341428339],[5.876222109079261,51.75239938179162],[5.875394269719021,51.75289456261897],[5.875194126786727,51.75301151966659],[5.874975316680208,51.753139367327385],[5.87458856935503,51.75336145727495],[5.874052462930957,51.75365914923882],[5.873334129042259,51.754049808598346],[5.873073527163932,51.75418990667177],[5.872764627392832,51.75435597453234],[5.87227345110893,51.7546063719662],[5.872083061329628,51.754692991779535],[5.871651707995134,51.75487733370589],[5.87149522722994,51.754964549429204],[5.871282707006749,51.75507573526389],[5.870183120480728,51.755666075458656],[5.869188334343693,51.756116471653925],[5.868425959099081,51.75640499184432],[5.867307110260204,51.75681406653029],[5.866996099071866,51.75691870881359],[5.866533605404354,51.757079699079924],[5.865746094106813,51.75732291227881],[5.865329619343582,51.75745359814366],[5.865166472387765,51.7575028019187],[5.86494909356114,51.75755986684819],[5.86451286691039,51.75767220376275],[5.864468921821136,51.75768172186205],[5.865175814338405,51.75838491041156],[5.865454707100086,51.75866233712586],[5.865507962386997,51.75871531409264],[5.865508679612503,51.75871602126176],[5.865689320915988,51.75889570227177],[5.865690565279309,51.75889694660126],[5.865696464642915,51.75890281002249],[5.865712142734921,51.75891840408298],[5.865592630837106,51.75897566377413],[5.865586788691285,51.759006626254916],[5.865599735607679,51.75904741743137],[5.865605669460087,51.75906609840641],[5.865685133339927,51.75907725237998],[5.865823359945678,51.759095177398315],[5.86595653593208,51.75911624191849],[5.865970333771462,51.75911842370185],[5.866049896884087,51.75914573845886],[5.866054926784687,51.759147461687434],[5.866056182215579,51.759148382379536],[5.866056488855246,51.75914861482923],[5.866098647063838,51.75917944411068],[5.866142396196675,51.75921277468419],[5.866241331336964,51.75931297929109],[5.866448424314011,51.75954426220588],[5.866655634359008,51.75978091044771],[5.866779446285499,51.75994012160847],[5.866894828161294,51.760108796146156],[5.866969410403744,51.7602382587133],[5.867057140876073,51.76036321805846],[5.8671850705525,51.76051299191574],[5.867306123964032,51.76064128417488],[5.867607120125401,51.76093514518885],[5.867868410511631,51.76118220305488],[5.868109920684662,51.7614092161202],[5.868224043909484,51.76151470492461],[5.868298269851148,51.761563972160566],[5.868396826056848,51.761644006174144],[5.868462866500313,51.76171484350833],[5.868527022717805,51.761799135431865],[5.868629294026595,51.76195847804649],[5.869162434940429,51.76274585095709],[5.869172929820251,51.762757385064],[5.869173222975538,51.76275770744657],[5.869244778740368,51.762860475991566],[5.869116523377837,51.76305855403108],[5.869029068891953,51.76319517119602],[5.86898042569738,51.76327114473177],[5.868730776131994,51.76363749276518],[5.868592074705297,51.76385619692088],[5.868573255770404,51.7638954193933],[5.868441203516259,51.76417268347748],[5.868361749625847,51.76433998116945],[5.868192451563912,51.76484155452389],[5.868197466327968,51.764887995800514],[5.868147651422212,51.76502015226361],[5.86811794438756,51.76509260509097],[5.868103029079622,51.76520459181468],[5.868080072354964,51.76526887329913],[5.868027619897677,51.7654227568803],[5.868030624390408,51.76544641142614],[5.868068791412476,51.7657463737795],[5.86807954312847,51.76583090300073],[5.868078667336322,51.76584387708201],[5.868061569731972,51.76609911438724],[5.868037014236967,51.76622004829953],[5.868034313918367,51.76622902096881],[5.867937513531436,51.76654989605028],[5.867844356050081,51.766717851770444],[5.867744627607859,51.766878283965845],[5.867565695302389,51.76717588248504],[5.867517146468503,51.76728993049468],[5.867457156224146,51.76741793065929],[5.867415439205956,51.76750695345675],[5.867402168637005,51.7676961270249],[5.867395991953877,51.767784123317256],[5.86731617099401,51.76839983371978],[5.867184304677761,51.769170441177764],[5.867103907381847,51.76968615603686],[5.867088724096375,51.7698604972491],[5.867080249804978,51.77106741582406],[5.867080285185817,51.77106801791214],[5.867145829014766,51.77206482253208],[5.867163764888514,51.772191379787245],[5.86717294461278,51.77225617661098],[5.867271819693856,51.77295370562705],[5.86729058604869,51.773086075042286],[5.867279245614172,51.77337376405427],[5.86738205618641,51.77337344180711],[5.867437257569973,51.77337327858001],[5.867439995873086,51.773373267361144],[5.867436991863046,51.77352933885846],[5.86743699836951,51.77352995005315],[5.867440631159858,51.77383717275922],[5.867440957525788,51.773865107831504],[5.867440965371961,51.77386584486037],[5.867440985370135,51.773867723385116],[5.867441471515362,51.77390794514875],[5.867441822664989,51.7739382081534],[5.867441966816228,51.77394358271489],[5.867443007627958,51.77398146518305],[5.86744720580322,51.77413355220101],[5.867449212499967,51.7742063602101],[5.867449234165181,51.774207034262446],[5.867452070155079,51.77431010331531],[5.86745502281073,51.77441732459822],[5.867646684894916,51.77490000621851],[5.867893277531418,51.775521020724334],[5.868220070867064,51.775537998830664],[5.868222941428128,51.77553814884504],[5.868860987133695,51.775571285292685],[5.869142354681839,51.77587023844949],[5.869465242578457,51.77609222196918],[5.870343054831787,51.77615992239834],[5.870345897230936,51.77616014438529],[5.872574570282454,51.77633878014825],[5.872577325767751,51.77633900244107],[5.87343644671487,51.77640722453553],[5.873439173132962,51.77640743794012],[5.873920530492282,51.776451749294715],[5.874873365042292,51.776560397723195],[5.87487571533531,51.7765606665905],[5.875082234133474,51.77658406733979],[5.875668771849356,51.776650521947985],[5.878284383337746,51.77694683124235],[5.878442601122107,51.776981394452235],[5.878626019579677,51.777021460662446],[5.879506029585603,51.77716011090988],[5.879865889490099,51.77724322628198],[5.881316063498333,51.777578166283824],[5.882551210582696,51.77783303731735],[5.883349069237013,51.77805433206599],[5.883621511285443,51.77812989597275],[5.884166719523267,51.77823785748355],[5.884337170992567,51.77827981240919],[5.884341965941432,51.77828099654085],[5.884394760009064,51.77828932075212],[5.884514030905902,51.778315492856294],[5.884809967825173,51.77837547604494],[5.885012756683485,51.77841155802241],[5.885108294221435,51.778426064289036],[5.88535734230974,51.77846387273304],[5.885501768096581,51.7784806877143],[5.885704231331617,51.7785042578148],[5.885756318667258,51.7785115237703],[5.886094556580748,51.778557067967455],[5.886156470495578,51.778556633676736],[5.88632597515804,51.77858346201114],[5.886374639856982,51.77859045463139],[5.886830333728659,51.778605276982084],[5.887323131431215,51.778627291912755],[5.887823638708674,51.77860752899772],[5.88810279578108,51.778596512028116],[5.888361512252093,51.77859254791209],[5.888601950820029,51.778564661959]]]]}}]} \ No newline at end of file diff --git a/frontend/types/algoritme.ts b/frontend/types/algoritme.ts index 83150b1a..b0d8f23f 100644 --- a/frontend/types/algoritme.ts +++ b/frontend/types/algoritme.ts @@ -1,35 +1,44 @@ +export enum Language { + NLD = 'NLD', + ENG = 'ENG', + FRY = 'FRY', + PAP = 'PAP', +} + export interface Algoritme { - id: string - slug: string + algoritme_id: string name: string + lars: string + standard_version: string + language: Language organization: string - department: string description_short: string - type: string - category: string - website: string - status: string + code: string + + [key: string]: null | string | string[] } -type AggregationValue = { - aggregation_value: string - count: number +export interface HighlightedAlgoritme { + name: string + lars: string + organization: string } -export type AggregatedAlgoritme = { - aggregation_attribute: string - // aggregationType: string - values: AggregationValue[] +interface AlgorithmFieldDisplay { + key: string + value: string + keyDescription: string + keyLabel: string } -export type AlgoritmeFilter = { - attribute: string - value: string | string[] +export interface AlgorithmDisplay { + key: string + keyLabel: string + properties: AlgorithmFieldDisplay[] } -export interface AlgNameIdOrg { - id: string - name: string +export type Suggestion = { + lars: string organization: string - slug: string + name: string } diff --git a/frontend/types/apiStandard.ts b/frontend/types/apiStandard.ts new file mode 100644 index 00000000..6899449e --- /dev/null +++ b/frontend/types/apiStandard.ts @@ -0,0 +1,15 @@ +export interface apiStandardField { + title: string + maxLength?: string + type: string + example: string + help_text: string + show_always: boolean + instructions: string + allOf?: { $ref: string }[] + allowed_html_tags?: string[] +} + +export interface AlgorithmIn { + [key: string]: apiStandardField +} diff --git a/frontend/types/brokenlink.ts b/frontend/types/brokenlink.ts new file mode 100644 index 00000000..cda60819 --- /dev/null +++ b/frontend/types/brokenlink.ts @@ -0,0 +1,12 @@ +import type { Language } from '@/types/algoritme' + +export interface BrokenLink { + id: number + name: string + lars: string + broken_links: [string, number][] + language: Language + create_dt: Date + organisation: string + batch: number +} diff --git a/frontend/types/dashboard.ts b/frontend/types/dashboard.ts new file mode 100644 index 00000000..65e8e8df --- /dev/null +++ b/frontend/types/dashboard.ts @@ -0,0 +1,42 @@ +export interface HtmlFiguresRecent { + date: string + html: string + static: Record + static_data: Record +} + +export interface OrganisationTop20 { + name: string + count: number +} + +export interface PublicationCategoriesCount { + category: string + count: number +} + +export interface MonthlyCount { + date: string + count: number +} + +export interface DashboardItem { + show: boolean + title: string + count?: number + description: string + showTable: boolean + graph?: string + icon: string +} + +export interface DashboardMap { + show: boolean + organisationType: string + title: string + count: number + description: string + clickOn: string + icon: string + geojsonFile: string +} diff --git a/frontend/types/filter.ts b/frontend/types/filter.ts new file mode 100644 index 00000000..190f1a5e --- /dev/null +++ b/frontend/types/filter.ts @@ -0,0 +1,20 @@ +import { OrgType } from './organisation' + +export interface OrganisationPresenceCount { + name: string + count: number +} + +export interface OrganisationFilterGroup { + type: OrgType + organisations: OrganisationPresenceCount[] +} + +export interface FilterData { + organisation: OrganisationFilterGroup[] +} + +export interface SelectedFilter { + name: string + value?: string +} diff --git a/frontend/types/filter/algoritme.ts b/frontend/types/filter/algoritme.ts new file mode 100644 index 00000000..eac04653 --- /dev/null +++ b/frontend/types/filter/algoritme.ts @@ -0,0 +1,19 @@ +import type { FilterData, QueryBase } from '.' + +export interface AlgoritmeFilterQuery { + organisation?: string + publicationcategory?: string + organisationtype?: string + impact_assessment?: string +} + +export type AlgoritmeQuery = QueryBase & AlgoritmeFilterQuery + +export interface AlgoritmeSelectedFilter { + key: keyof AlgoritmeFilterQuery | 'searchtext' + value?: string +} + +export type AlgoritmeFilterData = { + [K in keyof AlgoritmeFilterQuery]: FilterData[] +} diff --git a/frontend/types/filter/index.ts b/frontend/types/filter/index.ts new file mode 100644 index 00000000..9dcec62f --- /dev/null +++ b/frontend/types/filter/index.ts @@ -0,0 +1,20 @@ +export interface FilterData { + label: string + key: string + count: number +} + +export interface QueryBase { + page?: string + limit?: string + searchtext?: string +} + +export interface GenericQuery extends QueryBase { + [key: string]: any +} + +export interface GenericSelectedFilter { + key: string + value?: string +} diff --git a/frontend/types/filter/organisation.ts b/frontend/types/filter/organisation.ts new file mode 100644 index 00000000..ed38ae6d --- /dev/null +++ b/frontend/types/filter/organisation.ts @@ -0,0 +1,16 @@ +import type { FilterData, QueryBase } from '.' + +export interface OrganisationFilterQuery { + organisationtype?: string +} + +export type OrganisationQuery = QueryBase & OrganisationFilterQuery + +export interface OrganisationSelectedFilter { + key: keyof OrganisationFilterQuery | 'searchtext' + value?: string +} + +export type OrganisationFilterData = { + [K in keyof OrganisationFilterQuery]: FilterData[] +} diff --git a/frontend/types/footer.ts b/frontend/types/footer.ts index b69dad62..8faa5046 100644 --- a/frontend/types/footer.ts +++ b/frontend/types/footer.ts @@ -7,3 +7,17 @@ export type FooterPage = { export type FooterColumn = { [key: string]: FooterPage[] } + +export interface FooterFaqQuestion { + key: string + anchor: string + question: string + answer: string +} + +export interface FooterFaqQuestionGroup { + key: string + label: string + anchor: string + questions: FooterFaqQuestion[] +} diff --git a/frontend/types/layout.ts b/frontend/types/layout.ts new file mode 100644 index 00000000..6ccf6612 --- /dev/null +++ b/frontend/types/layout.ts @@ -0,0 +1,14 @@ +export interface tabsGrouping { + key: string + rows: string[] +} + +export interface genericCardGrouping { + mainElement: string + subElements: string[] +} + +export interface ListWithLinks { + title: string | null + link: string | null +} diff --git a/frontend/types/organisation.ts b/frontend/types/organisation.ts new file mode 100644 index 00000000..ab53937a --- /dev/null +++ b/frontend/types/organisation.ts @@ -0,0 +1,37 @@ +import type { Algoritme } from './algoritme' +import type { + OrganisationFilterData, + OrganisationSelectedFilter, +} from './filter/organisation' + +export interface OrganisationPage { + contact_info: string + about: string + name: string + show_page: boolean + algoritme_versions: Algoritme[] +} + +export interface Organisation { + code: string + count: string + name: string + show_page: boolean + type: string +} + +export interface OrganisationMappingResult { + name: string + code: string +} + +export interface OrganisationSearchSuggestionResponse { + organisations: OrganisationMappingResult[] +} + +export interface OrganisationQueryResult { + results: Organisation[] + total_count: number + filter_data: OrganisationFilterData + selected_filters: OrganisationSelectedFilter[] +} diff --git a/frontend/types/textLoader.ts b/frontend/types/textLoader.ts new file mode 100644 index 00000000..ed09e77b --- /dev/null +++ b/frontend/types/textLoader.ts @@ -0,0 +1,9 @@ +export type LanguageCode = 'nl' | 'en' | 'fy' | 'pap' +export interface SupportingTextField { + html: string + json?: Record +} + +export interface SupportingText { + [key: string]: any +} diff --git a/frontend/utils/getLayoutConfig.ts b/frontend/utils/getLayoutConfig.ts new file mode 100644 index 00000000..57c5da1b --- /dev/null +++ b/frontend/utils/getLayoutConfig.ts @@ -0,0 +1,12 @@ +import * as v0_1 from '@/layout-config/v0_1.json' +import * as v0_4 from '@/layout-config/v0_4.json' +import * as v1_0 from '@/layout-config/v1_0.json' + +export default function (version: string): Record { + const mapping: Record = { + v0_1, + v0_4, + v1_0, + } + return mapping[version] +} diff --git a/frontend/utils/getStandardConfig.ts b/frontend/utils/getStandardConfig.ts new file mode 100644 index 00000000..81bead0f --- /dev/null +++ b/frontend/utils/getStandardConfig.ts @@ -0,0 +1,13 @@ +// @ts-nocheck +import * as v0_1 from '@/standard-config/v0_1.json' +import * as v0_4 from '@/standard-config/v0_4.json' +import * as v1_0 from '@/standard-config/v1_0.json' + +export default function (version: string): Record { + const mapping: Record = { + v0_1, + v0_4, + v1_0, + } + return mapping[version] +} diff --git a/frontend/utils/index.ts b/frontend/utils/index.ts new file mode 100644 index 00000000..3f870b87 --- /dev/null +++ b/frontend/utils/index.ts @@ -0,0 +1,42 @@ +import { Language } from '@/types/algoritme' +import type { LanguageCode } from '@/types/textLoader' + +const changeHash = (hash: string | undefined) => { + const router = useRouter() + if (typeof hash === 'string') { + router.replace({ + hash: '#' + hash, + }) + } else { + router.replace({ + hash: '', + }) + } +} + +interface pageTitleInfo { + title: string + labelType: 'locale-index' | 'preditor-index' | 'plain-text' +} +const pageTitleInfo = ref({ + title: '', + labelType: 'plain-text', +}) +const providePageTitle = ( + input: pageTitleInfo = { title: '', labelType: 'plain-text' } +) => { + pageTitleInfo.value = input +} + +const objectMap = (obj: Object, fn: Function) => + Object.fromEntries(Object.entries(obj).map(([k, v], i) => [k, fn(v, k, i)])) + +const mapLocaleName = (language: LanguageCode): Language => { + if (language === 'nl') return Language.NLD + if (language === 'en') return Language.ENG + if (language === 'fy') return Language.FRY + if (language === 'pap') return Language.PAP + else return Language.NLD +} + +export { objectMap, changeHash, providePageTitle, pageTitleInfo, mapLocaleName } diff --git a/frontend/utils/legendData.ts b/frontend/utils/legendData.ts new file mode 100644 index 00000000..0e97c659 --- /dev/null +++ b/frontend/utils/legendData.ts @@ -0,0 +1,25 @@ +import { useI18n } from 'vue-i18n' + +export function useGeotopLegendData() { + const { t } = useI18n() + + const geotopLegendData = [ + { + title: t('dashboard.legendGreen'), + colour: 'rgba(85, 177, 165, 0.8)', + className: 'legendgreen-background', + }, + { + title: t('dashboard.legendYellow'), + colour: 'rgba(237, 208, 136, 0.8)', + className: 'legendyellow-background', + }, + { + title: t('dashboard.legendWhite'), + colour: 'rgba(255, 0, 0, 0.0)', + className: 'legendwhite-background', + }, + ] + + return geotopLegendData +} diff --git a/migration_instruction.md b/migration_instruction.md new file mode 100644 index 00000000..4fa2eea7 --- /dev/null +++ b/migration_instruction.md @@ -0,0 +1,53 @@ + +# Steps to migrate from current system to keycloak API with multiple roles, organisations +## Scripts for keycloak +### Prepare keycloak with roles & groups attributes +The `roles` and `groups` attributes are used to store role and group data for each user. This needs to be reported in the token, such that the backend can identify the user properly. + +1. go to `Clients` -> `authentication-client` in Keycloak +2. go to `client scopes` -> `authentication-client-dedicated` +3. `Add mapper` -> `By configuration` -> `User Attribute` +4. `Name`, `User Attribute` and `Token Claim Name`: enter all these fields with `roles` +5. All switches are `true` except for `Add to lightweight acces token`. + +- Repeat these steps for the `groups` attribute + +### Migrate group memberships to 'groups' attribute +Run script to +1. Get members for each group +2. Update those user to retrieve that group as an attribute. + +`python -m scripts.keycloak_migration_groups` + +### Migrate role to roles attribute +Run script to +1. retrieve all users, +2. update their `role` to `roles` attribute. + +`python -m scripts.keycloak_migration_roles` + +## PostgreSQL scripts +### Prepare the organisation table for new system +Run script to +1. retrieve all groups, +2. Report on missing organisations. + +`python -m scripts.database_migration_groups` + + +### Migrate to new publication flow system +Run script to +1. Update flow column based on 'released' and 'published' column. + +`python -m scripts.database_migration_state` + + +### Migrate action history to new names for actions +Run script to +1. Update the operation names to new ones, namely removing 'released' and replacing it with 'state-update' + +### Remove old and unused mappers (only when you know this keycloak realm is no longer used in the old fashion). +- Remove `role` & `group` mapper +- Remove `released` & `published` columns + + diff --git a/schema.json b/schema.json index a7fa8f8d..f290db1e 100644 --- a/schema.json +++ b/schema.json @@ -1,254 +1,343 @@ { - "$id": "https://standaard.algoritmeregister.org/schemas/registration-v0.2.nl.schema.json", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "title": "NL Standaard voor Registratie van Algoritmes en AI", - "description": "Standaard voor de registratie van de inzet van modellen, algoritmes en AI in beleid en besluitvormingsprocessen in Nederlandse overheidsorganisaties.", - "type": "object", - "properties": { - "name": { - "name": "Naam", - "category": "ALGEMENE INFORMATIE", - "type": "string", - "description": "De naam die gebruikt wordt om dit algoritme aan te duiden.", - "required": true - }, - "organization": { - "name": "Organisatie", - "category": "ALGEMENE INFORMATIE", - "type": "string", - "description": "De volledige naam van de organisatie verantwoordelijk voor de inzet van het algoritme.", - "required": true - }, - "department": { - "name": "Afdeling", - "category": "ALGEMENE INFORMATIE", - "type": "string", - "description": "De volledige naam van de afdeling of divisie verantwoordelijk voor de inzet van het algoritme.", - "required": true - }, - "description_short": { - "name": "Korte omschrijving", - "category": "ALGEMENE INFORMATIE", - "type": "string", - "description": "Een korte omschrijving van maximaal 150 karakters waarin hoog over omschreven wordt wat de rol is van het algoritme.", - "required": true - }, - "type": { - "name": "Type algoritme", - "category": "ALGEMENE INFORMATIE", - "type": "string", - "description": "Is het algoritme regelgebaseerd of zelflerend?", - "required": true - }, - "category": { - "name": "Thema", - "category": "ALGEMENE INFORMATIE", - "type": "string", - "description": "Het domein waarin het algoritme wordt ingezet.", - "required": true - }, - "website": { - "name": "Publiekspagina", - "category": "ALGEMENE INFORMATIE", - "type": "string", - "description": "URL van de publieke algoritmeregister pagina over de inzet van het algoritme van de organisatie zelf", - "required": false - }, - "status": { - "name": "Status", - "category": "ALGEMENE INFORMATIE", - "type": "string", - "description": "Is het algoritme in ontwikkeling, in gebruik, of buiten gebruik?", - "required": true - }, - "goal": { - "name": "Doel", - "category": "INZET", - "type": "string", - "description": "Het doel waarvoor het algoritme ontwikkeld is en/of hoe de inzet ervan bijdraagt aan het behalen van die doelen.", - "required": true - }, - "impact": { - "name": "Impact", - "category": "INZET", - "type": "string", - "description": "(1) De impact op burgers van de effecten van het algoritme, (2) onder welke omstandigheden dit gebeurt, en (3) wat de verwachte consequenties daarvan zijn voor het individu en/of de samenleving.", - "required": true - }, - "proportionality": { - "name": "Proportionaliteit", - "category": "INZET", - "type": "string", - "description": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", - "required": true - }, - "decision_making_process": { - "name": "Proces", - "category": "INZET", - "type": "string", - "description": "De naam van het bedrijfs- of besluitvormingsproces in de organisatie waarbinnen het algoritme wordt ingezet.", - "required": true - }, - "documentation": { - "name": "Projectpagina", - "category": "INZET", - "type": "string", - "description": "URL van de projectpagina van de organisatie zelf over dit specifieke gebruik van het algoritme.", - "required": false - }, - "description": { - "name": "Omschrijving", - "category": "TOEPASSING", - "type": "string", - "description": "Een uitgebreide uitleg tussen de 500 en 10000 karakters van hoe het algoritme werkt.", - "required": false - }, - "application_url": { - "name": "URL van de applicatie", - "category": "TOEPASSING", - "type": "string", - "description": "URL van de applicatiepagina van de ontwikkelaar/aanbieder van het algoritme.", - "required": false - }, - "publiccode": { - "name": "URL van code base", - "category": "TOEPASSING", - "type": "string", - "description": "URL van de code base van het algoritme.", - "required": false - }, - "MPRD": { - "name": "Koppelingen met basisregistraties", - "category": "TOEPASSING", - "type": "boolean", - "description": "Is het algoritme direct gekoppeld aan een basisregistratie?", - "required": false - }, - "source_data": { - "name": "Brondata", - "category": "TOEPASSING", - "type": "string", - "description": "Een overzicht van de databronnen die gebruikt worden door of bij het maken of trainen van het algoritme.", - "required": false - }, - "methods_and_models": { - "name": "Methoden en modellen", - "category": "TOEPASSING", - "type": "string", - "description": "Standaard methoden of modellen die het algoritme gebruikt.", - "required": false - }, - "monitoring": { - "name": "Monitoring", - "category": "TOEZICHT", - "type": "string", - "description": "Een overzicht van hoe de inzet van het algoritme wordt gemonitord.", - "required": false - }, - "human_intervention": { - "name": "Menselijke tussenkomst", - "category": "TOEZICHT", - "type": "string", - "description": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gecontroleerd en bijgesteld (kunnen) worden.", - "required": true - }, - "risks": { - "name": "Risico's", - "category": "TOEZICHT", - "type": "string", - "description": "Een overzicht van de voorziene risico's.", - "required": false - }, - "performance_standard": { - "name": "Prestatienormen", - "category": "TOEZICHT", - "type": "string", - "description": "Een omschrijving van de verwachte prestaties van het algoritme en hoe die worden gemeten.", - "required": false - }, - "competent_authority": { - "name": "Bevoegde autoriteit", - "category": "JURIDISCH", - "type": "string", - "description": "Volledige naam van de bevoegde autoriteit verantwoordelijk voor de inzet van het algoritme.", - "required": false - }, - "lawful_basis": { - "name": "Wettelijke grondslag", - "category": "JURIDISCH", - "type": "string", - "description": "Een omschrijving van de wettelijke grondslag voor de inzet van het algoritme, of URL van het formele besluit.", - "required": true - }, - "DPIA": { - "name": "Data protection impact assessment", - "category": "JURIDISCH", - "type": "boolean", - "description": "Is er een data protection impact assessment (DPIA) uitgevoerd?", - "required": false - }, - "DPIA_description": { - "name": "Omschrijving van de DPIA", - "category": "JURIDISCH", - "type": "string", - "description": "Een overzicht van de belangrijkste zaken die uit de data protection impact assessment (DPIA) naar voren kwamen.", - "required": false - }, - "objection_procedure": { - "name": "Bezwaarprocedure", - "category": "JURIDISCH", - "type": "string", - "description": "Een omschrijving van hoe burgers en bedrijven bezwaar kunnen maken tegen de uitkomsten van het algoritme.", - "required": true - }, - "schema": { - "name": "Schema", - "category": "METADATA", - "type": "string", - "description": "Het schema gebruikt voor deze registratie in machine leesbaar format.", - "required": false - }, - "id": { - "name": "UUID", - "category": "METADATA", - "type": "string", - "description": "De unieke identificatie (UUID) voor deze registratie.", - "required": false - }, - "url": { - "name": "URL van de bronregistratie", - "category": "METADATA", - "type": "string", - "description": "URL van deze registratie of van het algoritmeregister waarin deze registratie is vastgelegd in machine leesbaar format.", - "required": false - }, - "contact_email": { - "name": "E-mailadres van de contactpersoon", - "category": "METADATA", - "type": "string", - "description": "e-mailadres van de organisatie of de contactpersoon voor deze registratie.", - "required": true - }, - "area": { - "name": "Geografisch gebied", - "category": "METADATA", - "type": "string", - "description": "Het geografische gebied waarin het algoritme wordt ingezet.", - "required": false - }, - "lang": { - "name": "Taal", - "category": "METADATA", - "type": "string", - "description": "De taal waarin deze registratie is ingevoerd.", - "required": false - }, - "revision_date": { - "name": "Herzieningsdatum", - "category": "METADATA", - "type": "string", - "description": "De datum waarvoor deze registratie moet worden herzien.", - "required": false - } + "$id": "https://www.algoritmeregister.org/schemas/algoritmeregister-publicatiestandaard-v1.0.0.schema.json", + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "Algoritmeregister Publicatiestandaard v1.0.0", + "description": "Deze standaard beschrijft de minimale set van gegevens die gepubliceerd moet worden over algoritmes die door de overheid worden ingezet.", + "community": "https://github.com/Algoritmeregister/schemas/", + "type": "object", + "required": [ + "name", + "description_short", + "organization", + "theme", + "status", + "start_date", + "contact", + "publication_category", + "purpose_and_impact", + "considerations", + "human_intervention", + "risk_management", + "impact_assessments", + "data", + "technical_operation", + "supplier", + "language", + "schema" + ], + "properties": { + "name": { + "name": "Naam", + "category": "Algemene informatie", + "type": "string", + "maxLength": 99, + "display": "mandatory", + "description": "De naam die gebruikt wordt om het algoritme aan te duiden", + "instructions": "Gebruik een naam, bij voorkeur met een werkwoord, die aangeeft wat het algoritme doet. Dit kan de algemeen gehanteerde naam zijn van het algoritme binnen de organisatie, mits begrijpelijk voor externen die niet bekend zijn met het algoritme.", + "example": "Automatische Verkeersregeling Ringweg" + }, + "description_short": { + "name": "Korte omschrijving", + "category": "Algemene informatie", + "type": "string", + "maxLength": 349, + "display": "mandatory", + "description": "Een korte beschrijving van het algoritme.", + "instructions": "Een korte, duidelijke beschrijving van het algoritme en het proces waarin deze gebruikt wordt. Bij voorkeur in twee of drie zinnen. Doel van dit veld is om snel begrip te krijgen van wat het algoritme doet. Het veld wordt weergegeven in het zoekoverzicht. Vul dit veld in op B1-taalniveau.", + "example": "Dit algoritme zorgt met sensoren in het wegdek ervoor dat het verkeer zo makkelijk mogelijk doorstroomt." + }, + "organization": { + "name": "Organisatie", + "category": "Algemene informatie", + "type": "string", + "maxLength": 99, + "display": "mandatory", + "description": "De volledige naam van de organisatie waar het algoritme ingezet wordt.", + "instructions": "De volledige naam van de organisatie waar het algoritme ingezet wordt. Deze wordt gebaseerd op de TOOI-waardelijst: standaarden.overheid.nl Eén registratie kan maar over één organisatie gaan. Er kunnen dus niet meerdere waarden ingevuld worden. Indien een algoritme bij meerdere organisaties wordt ingezet, zijn aparte registraties vereist.", + "example": "Gemeente Noorderhaaks" + }, + "theme": { + "name": "Thema", + "category": "Algemene informatie", + "type": "array", + "items": { + "type": "string" + }, + "display": "mandatory", + "description": "Het beleidsterrein waarin het algoritme wordt ingezet.", + "instructions": "Beleidsterrein(en) waarin het algoritme wordt ingezet. Zie voor mogelijke waarden: https://standaarden.overheid.nl/owms/4.0/doc/waardelijsten/themaindeling-voor-officiele-publicaties", + "example": "[\"Verkeer\"]" + }, + "status": { + "name": "Status", + "category": "Algemene informatie", + "enum": ["In ontwikkeling", "In gebruik", "Buiten gebruik"], + "display": "mandatory", + "description": "De status van het algoritme: in ontwikkeling, in gebruik, of buiten gebruik.", + "instructions": "De huidige status van het algoritme: - In ontwikkeling - In gebruik - Buiten gebruik. Indien het algoritme zowel in ontwikkeling als in gebruik is, kies voor ‘In gebruik’. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven. Het is niet verplicht algoritmes in ontwikkeling of buiten gebruik te vermelden in het Algoritmeregister. De mogelijkheid wordt wel geboden voor organisaties die burgers willen betrekken al tijdens de ontwikkelingen van algoritmes.", + "example": "In gebruik" + }, + "start_date": { + "name": "Begindatum", + "category": "Algemene informatie", + "type": "string", + "pattern": "^[0-9]{4}-[0-9]{2}$", + "display": "mandatory", + "description": "Maand waarin het algoritme in gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme in gebruik is genomen. Schrijf de datum zoals in dit voorbeeld: 2023-01.", + "example": "2023-01" + }, + "end_date": { + "name": "Einddatum", + "category": "Algemene informatie", + "type": "string", + "pattern": "^[0-9]{4}-[0-9]{2}$", + "display": "optional", + "description": "Maand waarin het algoritme buiten gebruik is genomen.", + "instructions": "Maand en jaar waarin het algoritme buiten gebruik is genomen. Als het al goritme nog in gebruik is, moet dit veld leeg blijven. Schrijf de datum zoals in dit voorbeeld: 2023-01.", + "example": "2023-05" + }, + "contact": { + "name": "Contactgegevens", + "category": "Algemene informatie", + "type": "string", + "display": "mandatory", + "description": "De contactgegevens voor deze registratie.", + "instructions": "Het e-mailadres of de website voor contact over deze registratie. Dit moet een geldig mailadres of website zijn waar burgers, media of andere betrokkenen vragen kunnen stellen over het algoritme zelf of over de gevolgen op basis van uitkomsten van het algoritme. Begin een website-URL met https://", + "example": "Algoritmes@gemeentenoorderhaaks.nl" + }, + "link": { + "name": "Link naar publiekspagina", + "category": "Algemene informatie", + "type": "string", + "format": "uri", + "display": "optional", + "description": "Een URL naar een publiekspagina van de organisatie zelf. Op deze pagina kunt u meer vinden over de inzet van het algoritme binnen de organisatie.", + "instructions": "Een URL naar een publiekspagina over het algoritme van uw organisatie. Op deze pagina kan iemand meer vinden over het proces waarin het algoritme ingezet wordt. Dit kan bijvoorbeeld een pagina zijn waar de voorwaarden voor het toekennen van subsidies wordt toegelicht. Dit is een andere pagina dan de link naar het decentrale register. Begin een URL met https://", + "example": "https://gemeentenoorderhaaks/hoe-werkt-een-VRI" + }, + "publication_category": { + "name": "Publicatiecategorie", + "category": "Algemene informatie", + "enum": [ + "Hoog-risico AI-systeem (Categorie A)", + "Impactvolle algoritmes (Categorie B)", + "Overige algoritmes (Categorie C)" + ], + "display": "mandatory", + "description": "Om te bepalen welke algoritmes gepubliceerd moeten worden, is onderscheid gemaakt tussen impactvolle en overige algoritmes. Ook definieert de AI-verordening ‘Hoog-risico AI-systemen'.", + "instructions": "Tot welke categorie een algoritme behoort volgens de handreiking: - Hoog-risico AI-systeem (Categorie A) - Impactvolle algoritmes (Categorie B) - Overige algoritmes (Categorie C)", + "example": "Impactvolle algoritmes" + }, + "source_link": { + "name": "Link naar bronregistratie", + "category": "Algemene informatie", + "type": "string", + "format": "uri", + "display": "optional", + "description": "De URL van de locatie waar dit algoritme eerder al is vastgelegd; in machine leesbaar formaat.", + "instructions": "Als de organisatie zelf ook een Algoritmeregister gepubliceerd heeft , dan kan vanaf hiernaar verwezen worden. Decentrale registers kunnen gewenst zijn, bijvoorbeeld om de eigen doelgroep aan te spreken. Begin een URL met https://", + "example": "https://algoritmes.gemeentenoorderhaaks.nl" + }, + "purpose_and_impact": { + "name": "Doel en impact", + "category": "Verantwoord gebruik", + "type": "string", + "maxLength": 2499, + "display": "mandatory", + "description": "Het doel waarvoor het algoritme ontwikkeld is en hoe burgers en bedrijven ermee in aanraking komen.", + "instructions": "Het doel waarvoor het algoritme ontwikkeld is, geeft aan wat je ermee wilt bereiken. Zo is het doel van een parkeerscanauto om sneller foutparkeerders op te sporen. De impact beschrijft hoe burgers en bedrijven ermee in aanraking komen. Het gaat hierbij om wat de impact is als het naar behoren werkt. Risico's worden behandeld in een apart veld. In het geval van de parkeerscanauto kunnen geparkeerde auto's gescand worden. Er wordt dan gekeken of zij betaald hebben met een direct resultaat. Vul dit veld in op B1-taalniveau.", + "example": "Het doel van dit algoritme is om de doorstroom van het verkeer binnen de gemeente te verbeteren. De impact is dat weggebruikers sneller van A naar B kunnen komen door kortere wachttijden." + }, + "considerations": { + "name": "Afwegingen", + "category": "Verantwoord gebruik", + "type": "string", + "maxLength": 2499, + "display": "mandatory", + "description": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is.", + "instructions": "Een afweging van de voor- en nadelen van de inzet van het algoritme en waarom dit redelijk gerechtvaardigd is. Benoem daarbij ook welke andere alternatieven overwogen zijn. Neem de eventuele ethische afwegingen mee in het invullen. Zo kan hier worden vermeld dat de inzet van een parkeerscanauto sneller en effectiever is vergeleken met menselijke controle. In dezelfde tijd kunnen meer auto's worden gecontroleerd. De besparing in mensen kan voor andere taken worden ingezet. De verhoogde kans op een foute boete wordt hierdoor gerechtvaardigd. Bovendien kunnen burgers altijd bezwaar aantekenen wat goed te controleren is. Voor het invullen van dit veld kan gebruik gemaakt worden van de antwoorden uit het IAMA en de DPIA. Vul dit veld in op B1-taalniveau.", + "example": "De voordelen van de inzet van dit algoritme zijn bewezen door het gebruik ervan over de hele wereld. Op plekken waar dit algoritme gebruikt wordt, is de verkeersdoorstroming aanzienlijk beter dan op plekken waar dit niet gedaan wordt. Het alternatief is een standaardvolgorde aanhouden, wat bewezen trager is voor weggebruikers." + }, + "human_intervention": { + "name": "Menselijke tussenkomst", + "category": "Verantwoord gebruik", + "type": "string", + "maxLength": 2499, + "display": "mandatory", + "description": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden.", + "instructions": "Een omschrijving van hoe uitkomsten van het algoritme door een mens gebruikt worden, en op welke wijze deze gebruikt, gecontroleerd en bijgesteld (kunnen) worden. Geef het ook aan indien er geen menselijke tussenkomst (nodig) is. Bijvoorbeeld bij slimme zoekopdrachten in grote databases. Hier is veelal geen menselijke controle of de gevonden waarden de juiste zijn. Vul dit veld in op B1-taalniveau.", + "example": "Bij het maken van fouten door het algoritme zou een medewerker van de afdeling handmatig de verkeersregeling aan kunnen passen en stoplichten op groen kunnen zetten. Buiten normale werktijden is er 24/7 toezicht." + }, + "risk_management": { + "name": "Risicobeheer", + "category": "Verantwoord gebruik", + "type": "string", + "maxLength": 2499, + "display": "mandatory", + "description": "Een overzicht van hoe omgegaan wordt met geïdentificeerde risico's.", + "instructions": "Een overzicht van hoe omgegaan wordt met risico's. Risico’s kunnen onder andere zijn technische, juridische, financiële en ethische risico’s De risico's kunnen divers zijn en verschillen sterk per algoritme. Maar denk bijvoorbeeld aan discriminatie en uitlegbaarheid. Beschrijf ook hoe met die risico's wordt omgegaan, bijvoorbeeld door periodieke monitoring. ", + "example": "Er is sprake van constante monitoring. Daardoor kan snel opgemerkt worden als een sensor defect is, waardoor weggebruikers lang stil moeten blijven staan. Dit kan dan snel verholpen worden om de nadelige gevolgen te beperken. Met enige regelmaat wordt ook in de praktijk gekeken naar of de sensoren voldoende reageren op de auto's en of de wachttijden eerlijk verdeeld zijn. " + }, + "legal_basis": { + "name": "Wettelijke basis", + "category": "Verantwoord gebruik", + "type": "string", + "maxLength": 2499, + "display": "optional", + "description": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt", + "instructions": "Een omschrijving van de wettelijke basis voor het proces waarin het algoritme ingezet wordt. Geef waar mogelijk in het kort aan wat het doel is van deze wet, zodat dit ook voor niet-juristen begrijpelijk is.", + "example": "Het algoritme wordt ingezet voor taken uit de Wegenverkeerswet. Een van de taken is het waarborgen van verkeersveiligheid. " + }, + "legal_basis_link": { + "name": "Link naar wettelijke basis", + "category": "Verantwoord gebruik", + "type": "string", + "format": "uri", + "display": "optional", + "description": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt", + "instructions": "Een link naar de wettelijke grondslag(en) voor het proces waarin het algoritme ingezet wordt. Bijvoorbeeld: een wet, een verordening of een formeel besluit.", + "example": "https://wetten.overheid.nl/BWBR0006622" + }, + "legal_basis_title": { + "name": "Titel van wettelijke basis", + "category": "Verantwoord gebruik", + "type": "string", + "maxLength": 99, + "display": "optional", + "description": "Titel van de gelinkte wettelijke grondslag.", + "instructions": "Titel van de gelinkte wettelijke grondslag.", + "example": "Wegenverkeerswet 1994" + }, + "processing_register_link": { + "name": "Link naar verwerkingsregister", + "category": "Verantwoord gebruik", + "type": "string", + "format": "uri", + "display": "optional", + "description": "Link naar een openbaar deel van een verwerkingsregister die betrekking heeft op een algoritme. Daar kan meer gelezen worden over verwerkingen.", + "instructions": "Link naar een openbaar deel van een verwerkingsregister die betrekking heeft op een algoritme. Daar kan meer gelezen worden over verwerkingen. Daar kan meer gelezen worden over verwerkingen. Bijvoorbeeld een verwerking op https://www.avgregisterrijksoverheid.nl/", + "example": "https://www.avgregisterrijksoverheid.nl/" + }, + "impact_assessments": { + "name": "Impacttoetsen", + "category": "Verantwoord gebruik", + "type": "string", + "display": "mandatory", + "description": "Welke impacttoetsen zijn gebruikt, zoals Data Protection Impact Assessment (DPIA) of Impact Assessment Mensenrechten en Algoritmes (IAMA)?", + "instructions": "Naam/namen van uitgevoerde impacttoetsen. Indien er andere toetsen zijn uitgevoerd dan de DPIA of IAMA, geef hiervan de naam aan.", + "example": "Data Protection Impact Assessment (DPIA)" + }, + "impact_assessment_link": { + "name": "Link naar impacttoets", + "category": "Verantwoord gebruik", + "type": "string", + "format": "uri", + "display": "optional", + "description": "Link naar de resultaten van een uitgevoerde impacttoets, zoals een DPIA of IAMA.", + "instructions": "Link naar de resultaten van een impacttoets, indien deze is uitgevoerd en publiek beschikbaar is. Een voorbeeld hiervan is het impact assessment mensenrechten en algoritmes (IAMA) of het data protection impact assessment (DPIA). Begin een URL met https:// ", + "example": "https://gemeentenoorderhaaks.nl/Archief/toetsen/AVR-IAMA" + }, + "impact_assessment_explanation": { + "name": "Toelichting op impacttoetsen", + "category": "Verantwoord gebruik", + "type": "string", + "maxLength": 2499, + "display": "optional", + "description": "Toelichting waarom bepaalde impacttoetsen niet gedaan zijn", + "instructions": "Het is mogelijk dat er geen impacttoets nodig was voor het algoritme. In het geval van de DPIA bijvoorbeeld als er geen sprake is van persoonsgegevens. Met dit veld kan toegelicht worden waarom bepaalde impacttoetsen niet gedaan zijn." + }, + "data": { + "name": "Gegevens", + "category": "Werking", + "type": "string", + "maxLength": 2499, + "display": "mandatory", + "description": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme.", + "instructions": "Een overzicht van de gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme. Waar mogelijk, wees specifiek. Met name voor wat betreft persoonsgegevens is het belangrijk te weten om welk type gegevens het gaat (bijvoorbeeld adres, geboorteplaats, leeftijd). Benoem waar mogelijk ook de bron zoals BRP of BKR of organisatie eigen klantgegevens.", + "example": "Sensordata van de verkeersregelinstallaties bij kruispunten op de ringweg van gemeente Noorderhaaks." + }, + "data_source_link": { + "name": "Link naar gegevensbronnen", + "category": "Werking", + "type": "string", + "format": "uri", + "display": "optional", + "description": "Link naar aanvullende informatie over de gebruikte gegevensbron.", + "instructions": "Een link naar een beschrijving van gegevens die gebruikt worden door het algoritme en/of in het begin gebruikt zijn bij het maken van het algoritme. Hierbij kan bijvoorbeeld gelinkt worden naar metadata in publieke datacatalogi of naar sensorenregistraties.", + "example": "https://datacatalogus.gemeentenoorderhaaks.nl" + }, + "data_source_title": { + "name": "Titel van gegevensbron", + "category": "Werking", + "type": "string", + "maxLength": 499, + "display": "optional", + "description": "Titel van de gelinkte gegevensbron", + "instructions": "Titel van de gelinkte gegevensbron" + }, + "technical_operation": { + "name": "Technische werking", + "category": "Werking", + "type": "string", + "maxLength": 4999, + "display": "mandatory", + "description": "Uitleg van hoe het algoritme werkt.", + "instructions": "Uitleg van hoe het algoritme werkt. Beschrijf de input, werking en output van het algoritme. Indien beschikbaar, komt een URL naar een schematisch overzicht van het model (zoals een stroomdiagram van een beslisboom) goed van pas. Indien complexe machine learning modellen worden gebruikt (zoals Neurale Netwerken), komen URL’s naar extra documentatie of wetenschappelijke publicaties goed van pas. Dit veld is hoofdzakelijk bedoeld voor de lezer met technische expertise, en mag daarom complexere concepten en taal bevatten. Geef tenminste aan of het zelflerend is of niet. ", + "example": "Het model maakt gebruik van een eenvoudige beslisboom zodra een nieuwe bezette voorsorteerstrook zich voordoet (= wanneer de sensor een weggebruiker ontdekt). De beslisboom loopt als volgt: Eerst wordt er gekeken of er al andere partijen staan te wachten, en vervolgens of er op dat moment een andere voorsorteerstrook op groen licht staat. Zo niet, dan springt het stoplicht van de betreffende strook meteen op groen. Zo wel, dan wacht het tot er geen verkeer meer wordt waargenomen bij de andere voorsorteerstrook. Als er andere weggebruikers op andere stroken staan te wachten, sluit de betreffende strook achteraan in de wachtrij. Een grafische weergave van dit model is te vinden op https://algoritmes.gemeentenoorderhaaks.nl/VRI" + }, + "supplier": { + "name": "Leverancier", + "category": "Werking", + "type": "string", + "maxLength": 199, + "display": "mandatory", + "description": "Indien van toepassing, de externe leverancier van het algoritme.", + "instructions": "Naam van de externe leverancier van het algoritme. Als het intern ontwikkeld is, noteer dan ‘Intern ontwikkeld’. Het gaat hierbij bijvoorbeeld niet om het gebruik van open source packages die gebruikt worden in een groter algoritme. ", + "example": "Haaks Softwarebedrijf " + }, + "source_code_link": { + "name": "Link naar broncode", + "category": "Werking", + "type": "string", + "format": "uri", + "display": "optional", + "description": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven.", + "instructions": "Een URL naar de codepagina van de ontwikkelaar. Op deze pagina is de code van het algoritme te vinden. Indien er geen codebase publiekelijk beschikbaar is, dient dit veld leeg te blijven. Begin een URL met https://", + "example": "https://github.com/haakssoftwarebedrijf/vrisoftware" + }, + "language": { + "name": "Taal", + "category": "Metadata", + "const": "nld", + "display": "hidden", + "description": "De taal waarin deze registratie is ingevoerd.", + "instructions": "De code van de taal van de registratie. Dit veld is aanwezig, omdat het Algoritmeregister meertalig aangeboden kan worden. Op dit moment wordt alleen Nederlands (nld) aangeboden. De talen zijn in ISO 639-3 code.", + "example": "nld" + }, + "schema": { + "name": "Schema", + "category": "Metadata", + "const": "1.0.0", + "display": "hidden", + "instructions": "De versie van de Publicatiestandaard die gehanteerd is voor deze registratie. Op dit moment is dat ‘1.0.0’. Ten behoeve van de websitefunctionaliteit is het noodzakelijk om geen andere informatie in dit veld op te nemen dan een van de keuzes hierboven.", + "example": "1.0.0" + }, + "source_id": { + "name": "Bron-ID", + "category": "Metadata", + "type": "string", + "display": "hidden", + "instructions": "Indien van toepassing, de unieke identificatie voor deze registratie zoals door de eigenaar wordt gehanteerd. Dit is dus de verwijzing naar het algoritme in de interne database of het interne register van uw organisatie." + }, + "search_terms": { + "name": "Zoektermen", + "category": "Metadata", + "type": "string", + "display": "hidden", + "description": "Trefwoorden over het algoritme, om de vindbaarheid van een algoritmeregistratie te vergroten.", + "instructions": "Termen gerelateerd aan dit algoritme. Gescheiden door komma's. Dit veld wordt niet weergegeven op de website en kan worden gebruikt om de vindbaarheid van de registratie te verbeteren. Zo kan bijvoorbeeld de naam van het relevante ministerie worden toegevoegd om als uitvoerorganisatie beter vindbaar te zijn met de zoekfunctie.", + "example": "Verkeer, Mobiliteit, Infrastructuur, Waddengebied" } - } \ No newline at end of file + } +}